
    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_eb25391f6e301a0b0e658993.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_31bed2afab3f00ac0709d918.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_94fa59afb47ae34e0be99d33.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940918;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_d5111d410d2a0ab9b2d21b4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_391941423664e1a0153e6e80.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_7a6f4b1497f856d1de6d4107.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6d81f36e227c789f8df34e6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b616e57ec8e4cef9f7bd68fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_df662119e80165ab67136bf8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.949219;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_262a3007ad540b25a5bfb6ac.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_165c869fd135b7f82a2c2463.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.119629;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_eb1c6723307be7b1ac9c55e4.woff2')format("woff");}.fff{font-family:fff;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_013869a79f2d696c677f008b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.035156;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);}
.v3{vertical-align:-23.760000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:48.240000px;}
.ls31{letter-spacing:-1.692000px;}
.ls33{letter-spacing:-1.548000px;}
.lse{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.134000px;}
.lsb{letter-spacing:-0.828000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.457800px;}
.ls37{letter-spacing:-0.450600px;}
.lsa{letter-spacing:-0.414600px;}
.ls14{letter-spacing:-0.315600px;}
.ls9{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.262200px;}
.ls28{letter-spacing:-0.259800px;}
.ls34{letter-spacing:-0.250800px;}
.ls20{letter-spacing:-0.226200px;}
.ls39{letter-spacing:-0.223800px;}
.ls6{letter-spacing:-0.181200px;}
.ls7{letter-spacing:-0.178800px;}
.ls13{letter-spacing:-0.152400px;}
.ls4{letter-spacing:-0.109200px;}
.ls1a{letter-spacing:-0.106800px;}
.ls21{letter-spacing:-0.100200px;}
.ls3{letter-spacing:-0.089400px;}
.ls1c{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.017280px;}
.ls26{letter-spacing:-0.008640px;}
.ls2a{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.004320px;}
.ls25{letter-spacing:0.012960px;}
.ls27{letter-spacing:0.053280px;}
.ls30{letter-spacing:0.179280px;}
.ls2e{letter-spacing:0.206400px;}
.ls2f{letter-spacing:0.206640px;}
.ls22{letter-spacing:0.259800px;}
.ls1e{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.262080px;}
.lsf{letter-spacing:0.262200px;}
.ls3a{letter-spacing:0.269280px;}
.ls3b{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.281280px;}
.ls11{letter-spacing:0.305280px;}
.ls5{letter-spacing:0.305400px;}
.ls35{letter-spacing:0.328320px;}
.ls38{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.380160px;}
.ls2c{letter-spacing:0.380400px;}
.ls36{letter-spacing:0.414600px;}
.ls1b{letter-spacing:0.612000px;}
.ls18{letter-spacing:0.666720px;}
.ls23{letter-spacing:0.864000px;}
.ls15{letter-spacing:1.745280px;}
.ls17{letter-spacing:2.465280px;}
.ls12{letter-spacing:2.790720px;}
.ls32{letter-spacing:4.950720px;}
.ls2d{letter-spacing:4.986720px;}
.lsc{letter-spacing:13.265280px;}
.ls1d{letter-spacing:18.305280px;}
.ls24{letter-spacing:36.023040px;}
.ls16{letter-spacing:59.345280px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.wsf{word-spacing:-66.240000px;}
.ws1e{word-spacing:-59.760000px;}
.ws1c{word-spacing:-29.496960px;}
.ws24{word-spacing:-18.829320px;}
.ws6{word-spacing:-18.720120px;}
.wsc{word-spacing:-18.676920px;}
.ws2{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.305520px;}
.wsd{word-spacing:-18.262320px;}
.ws23{word-spacing:-18.163920px;}
.ws9{word-spacing:-18.152520px;}
.wsa{word-spacing:-18.109320px;}
.ws1d{word-spacing:-17.956920px;}
.wsb{word-spacing:-17.586720px;}
.ws14{word-spacing:-17.225280px;}
.ws18{word-spacing:-16.873080px;}
.ws22{word-spacing:-16.819680px;}
.ws1b{word-spacing:-16.666560px;}
.ws11{word-spacing:-16.613280px;}
.ws1f{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.513080px;}
.ws13{word-spacing:-16.506480px;}
.ws26{word-spacing:-13.770720px;}
.ws25{word-spacing:-13.410720px;}
.ws5{word-spacing:-13.229520px;}
.ws8{word-spacing:-11.609280px;}
.ws3{word-spacing:-11.519880px;}
.ws7{word-spacing:-11.430480px;}
.ws16{word-spacing:-11.383080px;}
.wse{word-spacing:-11.293680px;}
.ws15{word-spacing:-10.889280px;}
.ws19{word-spacing:-10.821600px;}
.ws20{word-spacing:-10.812960px;}
.ws10{word-spacing:-10.808640px;}
.ws21{word-spacing:-10.804320px;}
.ws1a{word-spacing:-10.800000px;}
.ws12{word-spacing:-10.791360px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-17.651520px;}
._a{margin-left:-15.398400px;}
._9{margin-left:-13.506720px;}
._8{margin-left:-11.012160px;}
._7{margin-left:-9.897960px;}
._e{margin-left:-8.846160px;}
._14{margin-left:-6.306720px;}
._10{margin-left:-4.432800px;}
._4{margin-left:-3.428160px;}
._5{margin-left:-2.320320px;}
._1{margin-left:-1.179360px;}
._0{width:1.308000px;}
._2{width:2.747280px;}
._17{width:4.291440px;}
._b{width:5.448000px;}
._1a{width:6.890880px;}
._c{width:7.989120px;}
._3{width:9.737280px;}
._18{width:11.459520px;}
._19{width:12.572640px;}
._1f{width:14.101920px;}
._d{width:15.292320px;}
._11{width:16.295880px;}
._21{width:17.346600px;}
._4e{width:18.422880px;}
._1d{width:19.506720px;}
._1e{width:20.661120px;}
._16{width:21.679680px;}
._15{width:22.798560px;}
._3e{width:23.904000px;}
._13{width:24.906240px;}
._12{width:26.090280px;}
._20{width:27.423360px;}
._1c{width:29.198880px;}
._1b{width:30.205440px;}
._27{width:31.254480px;}
._43{width:32.611680px;}
._24{width:34.555680px;}
._2e{width:36.632880px;}
._23{width:37.743840px;}
._2b{width:39.561120px;}
._2c{width:40.643520px;}
._39{width:43.086960px;}
._26{width:44.879760px;}
._2a{width:46.380480px;}
._29{width:47.389680px;}
._22{width:48.474720px;}
._2f{width:51.073920px;}
._3b{width:60.775920px;}
._3a{width:64.421280px;}
._36{width:72.488880px;}
._31{width:77.927040px;}
._38{width:80.436960px;}
._3c{width:82.679040px;}
._35{width:88.444800px;}
._2d{width:99.201600px;}
._42{width:101.400480px;}
._46{width:107.441280px;}
._47{width:109.894080px;}
._37{width:111.452400px;}
._4c{width:120.424320px;}
._4d{width:122.373600px;}
._34{width:124.061760px;}
._30{width:132.248880px;}
._28{width:142.527600px;}
._25{width:146.136480px;}
._4f{width:159.095520px;}
._44{width:174.476160px;}
._45{width:175.523040px;}
._3d{width:195.654240px;}
._3f{width:199.382400px;}
._40{width:200.394480px;}
._49{width:221.241600px;}
._4a{width:222.354720px;}
._48{width:226.719360px;}
._41{width:229.190400px;}
._32{width:250.513920px;}
._33{width:287.676480px;}
._4b{width:340.338240px;}
._6{width:628.911840px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(209,52,56);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y32b{bottom:-23.940000px;}
.y32a{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y2a1{bottom:5.760000px;}
.y28f{bottom:5.940000px;}
.y2c7{bottom:7.020000px;}
.y2cb{bottom:7.200000px;}
.y2bf{bottom:9.360000px;}
.y231{bottom:9.720000px;}
.y2bb{bottom:9.900000px;}
.y29b{bottom:10.080000px;}
.y21d{bottom:11.700000px;}
.y215{bottom:11.880000px;}
.y22a{bottom:11.925000px;}
.y77{bottom:12.960000px;}
.y7c{bottom:13.140000px;}
.y2aa{bottom:15.120000px;}
.y2a8{bottom:15.840000px;}
.y2b9{bottom:15.885000px;}
.y458{bottom:16.200000px;}
.y4bb{bottom:16.230000px;}
.y4a8{bottom:16.245000px;}
.y455{bottom:16.380000px;}
.y451{bottom:16.410000px;}
.y46b{bottom:16.425000px;}
.y2a3{bottom:16.920000px;}
.y2c8{bottom:17.100000px;}
.y4a2{bottom:18.540000px;}
.y2c2{bottom:19.260000px;}
.y29c{bottom:19.980000px;}
.y186{bottom:20.340000px;}
.y17f{bottom:20.520000px;}
.y22f{bottom:21.420000px;}
.y1ee{bottom:21.780000px;}
.y1f3{bottom:22.140000px;}
.y25c{bottom:22.320000px;}
.y230{bottom:22.500000px;}
.y317{bottom:23.085000px;}
.y315{bottom:23.220000px;}
.y225{bottom:23.394000px;}
.y222{bottom:23.400000px;}
.y217{bottom:23.445000px;}
.y24b{bottom:23.760000px;}
.y253{bottom:24.300000px;}
.y2e9{bottom:24.345000px;}
.y26e{bottom:24.480000px;}
.y218{bottom:24.525000px;}
.y21e{bottom:24.660000px;}
.y21a{bottom:24.840000px;}
.y234{bottom:24.870000px;}
.y22b{bottom:24.885000px;}
.y1b8{bottom:25.020000px;}
.y2ab{bottom:25.200000px;}
.y2ad{bottom:25.554000px;}
.y29f{bottom:25.560000px;}
.y1b5{bottom:25.740000px;}
.y1d3{bottom:25.785000px;}
.y254{bottom:25.920000px;}
.y233{bottom:25.950000px;}
.y255{bottom:26.100000px;}
.y295{bottom:26.145000px;}
.y1f8{bottom:26.640000px;}
.y1fa{bottom:26.820000px;}
.y2c6{bottom:27.000000px;}
.y2e6{bottom:27.360000px;}
.y250{bottom:27.540000px;}
.y1b2{bottom:27.720000px;}
.y329{bottom:28.440000px;}
.y2bd{bottom:29.160000px;}
.y1b9{bottom:29.520000px;}
.y29a{bottom:29.880000px;}
.y459{bottom:30.060000px;}
.y465{bottom:30.105000px;}
.y1c4{bottom:30.420000px;}
.y1bb{bottom:30.600000px;}
.y1b6{bottom:31.140000px;}
.y1d4{bottom:31.185000px;}
.y4a6{bottom:32.220000px;}
.y25e{bottom:32.580000px;}
.y25f{bottom:32.760000px;}
.y24e{bottom:34.020000px;}
.y29d{bottom:34.200000px;}
.y188{bottom:34.380000px;}
.y1b3{bottom:34.920000px;}
.y1d1{bottom:35.100000px;}
.y2a7{bottom:35.640000px;}
.y296{bottom:35.685000px;}
.y1af{bottom:37.080000px;}
.y17d{bottom:37.620000px;}
.y269{bottom:37.650000px;}
.y182{bottom:37.800000px;}
.y1ad{bottom:37.830000px;}
.y229{bottom:37.845000px;}
.y2a5{bottom:38.520000px;}
.y2c1{bottom:39.060000px;}
.y1f6{bottom:39.420000px;}
.y1bc{bottom:40.680000px;}
.y1da{bottom:40.710000px;}
.y1bd{bottom:40.860000px;}
.y1c0{bottom:40.890000px;}
.y457{bottom:43.740000px;}
.y4ba{bottom:43.770000px;}
.y45d{bottom:43.785000px;}
.y454{bottom:43.920000px;}
.y450{bottom:43.950000px;}
.y464{bottom:43.965000px;}
.y2a0{bottom:45.360000px;}
.y2ae{bottom:45.534000px;}
.y28e{bottom:45.540000px;}
.y297{bottom:45.585000px;}
.y294{bottom:45.945000px;}
.y4a0{bottom:46.080000px;}
.y2be{bottom:48.960000px;}
.y24c{bottom:51.300000px;}
.y2c0{bottom:52.560000px;}
.y1b0{bottom:53.640000px;}
.y17b{bottom:54.900000px;}
.y266{bottom:54.930000px;}
.y181{bottom:55.080000px;}
.y18b{bottom:55.110000px;}
.y196{bottom:55.125000px;}
.y1f2{bottom:56.700000px;}
.y21{bottom:57.420000px;}
.y211{bottom:57.600000px;}
.y460{bottom:57.780000px;}
.y4a5{bottom:59.940000px;}
.y214{bottom:63.540000px;}
.y2c4{bottom:65.340000px;}
.y298{bottom:65.385000px;}
.y293{bottom:65.745000px;}
.y24d{bottom:68.580000px;}
.y4b6{bottom:71.280000px;}
.y453{bottom:71.460000px;}
.y44f{bottom:71.490000px;}
.y45c{bottom:71.505000px;}
.y17c{bottom:72.180000px;}
.y268{bottom:72.210000px;}
.y2e5{bottom:72.360000px;}
.y49f{bottom:73.620000px;}
.y1f5{bottom:73.980000px;}
.y20{bottom:75.600000px;}
.y210{bottom:75.816000px;}
.y292{bottom:85.725000px;}
.y4a4{bottom:87.480000px;}
.y267{bottom:89.310000px;}
.y17e{bottom:89.460000px;}
.y18a{bottom:89.490000px;}
.y185{bottom:89.505000px;}
.y1f1{bottom:91.260000px;}
.y46d{bottom:99.000000px;}
.y4af{bottom:99.030000px;}
.y45f{bottom:99.180000px;}
.y44e{bottom:99.210000px;}
.y49e{bottom:101.340000px;}
.y291{bottom:105.525000px;}
.y1f4{bottom:108.540000px;}
.y2f7{bottom:109.260000px;}
.y2f6{bottom:110.160000px;}
.y3cf{bottom:111.060000px;}
.yf3{bottom:113.220000px;}
.y49c{bottom:113.400000px;}
.y199{bottom:114.840000px;}
.y4a3{bottom:115.020000px;}
.y1a2{bottom:116.280000px;}
.y58{bottom:116.640000px;}
.y2e3{bottom:117.720000px;}
.y2b4{bottom:122.796000px;}
.y18d{bottom:123.840000px;}
.y193{bottom:123.870000px;}
.y184{bottom:123.885000px;}
.y19c{bottom:124.020000px;}
.y190{bottom:124.065000px;}
.ye9{bottom:124.740000px;}
.y1f0{bottom:125.640000px;}
.y4bf{bottom:126.360000px;}
.y4ae{bottom:126.570000px;}
.y44d{bottom:126.750000px;}
.y4a1{bottom:128.880000px;}
.yb6{bottom:129.780000px;}
.yd0{bottom:131.760000px;}
.y401{bottom:133.200000px;}
.y28b{bottom:137.376000px;}
.y2ac{bottom:138.096000px;}
.y224{bottom:138.276000px;}
.y155{bottom:138.420000px;}
.y409{bottom:138.960000px;}
.y3ce{bottom:139.500000px;}
.y49b{bottom:140.400000px;}
.yf2{bottom:141.840000px;}
.y382{bottom:142.200000px;}
.y189{bottom:142.920000px;}
.y41c{bottom:143.100000px;}
.y3ed{bottom:144.900000px;}
.y75{bottom:145.440000px;}
.y366{bottom:145.980000px;}
.y126{bottom:147.420000px;}
.y33a{bottom:148.320000px;}
.y1f{bottom:149.760000px;}
.y1bf{bottom:150.120000px;}
.y1d9{bottom:150.480000px;}
.y4b4{bottom:150.840000px;}
.y96{bottom:151.200000px;}
.y2b3{bottom:152.130000px;}
.y57{bottom:152.640000px;}
.y418{bottom:153.000000px;}
.y3b{bottom:153.180000px;}
.y328{bottom:153.540000px;}
.y44c{bottom:154.290000px;}
.y312{bottom:154.980000px;}
.yb5{bottom:158.220000px;}
.y19b{bottom:158.400000px;}
.y19f{bottom:158.445000px;}
.y1a1{bottom:158.580000px;}
.y18f{bottom:158.625000px;}
.y28a{bottom:159.120000px;}
.y39f{bottom:160.740000px;}
.y3b3{bottom:162.180000px;}
.y142{bottom:162.360000px;}
.y392{bottom:163.620000px;}
.ye8{bottom:165.240000px;}
.y400{bottom:166.860000px;}
.y154{bottom:167.220000px;}
.y3cd{bottom:167.940000px;}
.y107{bottom:168.480000px;}
.yf1{bottom:170.280000px;}
.y381{bottom:170.640000px;}
.ycf{bottom:172.260000px;}
.y408{bottom:172.800000px;}
.y25a{bottom:173.160000px;}
.y3ec{bottom:173.340000px;}
.y365{bottom:174.600000px;}
.y41b{bottom:176.940000px;}
.y34b{bottom:178.920000px;}
.y74{bottom:179.280000px;}
.y1e{bottom:180.000000px;}
.y468{bottom:180.720000px;}
.y47a{bottom:181.080000px;}
.y2b2{bottom:181.290000px;}
.y4ad{bottom:181.830000px;}
.y44b{bottom:182.010000px;}
.y327{bottom:182.160000px;}
.y44a{bottom:182.520000px;}
.y95{bottom:184.860000px;}
.y1a0{bottom:185.970000px;}
.y417{bottom:186.690000px;}
.y434{bottom:187.230000px;}
.y125{bottom:187.950000px;}
.y56{bottom:188.670000px;}
.y141{bottom:190.830000px;}
.y252{bottom:191.730000px;}
.y391{bottom:192.270000px;}
.y3a{bottom:193.710000px;}
.y1ef{bottom:193.890000px;}
.y49a{bottom:194.070000px;}
.y311{bottom:195.510000px;}
.y153{bottom:195.690000px;}
.y3cc{bottom:196.590000px;}
.y16b{bottom:196.770000px;}
.y106{bottom:198.390000px;}
.yb4{bottom:198.570000px;}
.yf0{bottom:198.750000px;}
.y20d{bottom:199.110000px;}
.y20e{bottom:199.830000px;}
.y3ff{bottom:200.730000px;}
.y39e{bottom:201.270000px;}
.y289{bottom:201.450000px;}
.y3eb{bottom:201.810000px;}
.y364{bottom:203.250000px;}
.ye7{bottom:205.770000px;}
.y1d8{bottom:205.950000px;}
.y407{bottom:206.490000px;}
.y34a{bottom:207.570000px;}
.y1d{bottom:210.090000px;}
.y2b1{bottom:210.630000px;}
.yce{bottom:212.610000px;}
.y73{bottom:212.970000px;}
.y94{bottom:213.510000px;}
.y339{bottom:214.410000px;}
.y479{bottom:214.770000px;}
.y124{bottom:216.570000px;}
.y55{bottom:217.290000px;}
.y198{bottom:219.090000px;}
.y140{bottom:219.270000px;}
.y416{bottom:220.530000px;}
.y390{bottom:220.710000px;}
.y433{bottom:221.070000px;}
.y2f5{bottom:222.870000px;}
.y152{bottom:224.130000px;}
.y3b2{bottom:224.490000px;}
.y3cb{bottom:225.030000px;}
.yb3{bottom:227.190000px;}
.y380{bottom:227.550000px;}
.y20c{bottom:227.730000px;}
.y105{bottom:229.350000px;}
.y3ea{bottom:230.250000px;}
.y363{bottom:231.690000px;}
.y39{bottom:234.210000px;}
.y3fe{bottom:234.390000px;}
.y251{bottom:234.570000px;}
.y310{bottom:235.830000px;}
.y349{bottom:236.010000px;}
.y16a{bottom:237.270000px;}
.y4be{bottom:237.450000px;}
.y355{bottom:239.070000px;}
.y2b0{bottom:239.790000px;}
.y41a{bottom:239.970000px;}
.y1c{bottom:240.330000px;}
.y223{bottom:240.510000px;}
.y39d{bottom:241.770000px;}
.y259{bottom:242.310000px;}
.y326{bottom:242.670000px;}
.y288{bottom:243.570000px;}
.y123{bottom:245.010000px;}
.y93{bottom:246.090000px;}
.ye6{bottom:246.270000px;}
.y72{bottom:246.630000px;}
.y187{bottom:247.350000px;}
.y13f{bottom:247.710000px;}
.y499{bottom:247.890000px;}
.y478{bottom:248.610000px;}
.y237{bottom:252.255000px;}
.y151{bottom:252.570000px;}
.y54{bottom:253.110000px;}
.y3ca{bottom:253.470000px;}
.y415{bottom:254.190000px;}
.y38f{bottom:254.370000px;}
.y432{bottom:254.730000px;}
.yb2{bottom:255.630000px;}
.y37f{bottom:255.990000px;}
.y20b{bottom:256.170000px;}
.y2a9{bottom:257.655000px;}
.y3b1{bottom:258.150000px;}
.y3e9{bottom:258.690000px;}
.y362{bottom:260.130000px;}
.y104{bottom:260.490000px;}
.y2e2{bottom:261.030000px;}
.y1be{bottom:261.210000px;}
.y1d7{bottom:261.570000px;}
.y467{bottom:264.270000px;}
.y30f{bottom:264.450000px;}
.y348{bottom:264.630000px;}
.y354{bottom:267.690000px;}
.y3fd{bottom:268.230000px;}
.y1b{bottom:270.570000px;}
.y258{bottom:270.750000px;}
.y325{bottom:273.270000px;}
.y122{bottom:273.630000px;}
.y406{bottom:273.990000px;}
.y38{bottom:274.710000px;}
.y498{bottom:274.890000px;}
.y338{bottom:275.610000px;}
.y169{bottom:277.770000px;}
.y2af{bottom:277.815000px;}
.y92{bottom:278.490000px;}
.y71{bottom:280.470000px;}
.y150{bottom:281.010000px;}
.y53{bottom:281.730000px;}
.y3c9{bottom:281.910000px;}
.y39c{bottom:282.270000px;}
.yb1{bottom:284.070000px;}
.y37e{bottom:284.610000px;}
.y287{bottom:285.870000px;}
.ye5{bottom:286.590000px;}
.y2e1{bottom:286.950000px;}
.y3e8{bottom:287.130000px;}
.y13e{bottom:288.030000px;}
.y361{bottom:288.570000px;}
.y197{bottom:288.750000px;}
.y221{bottom:290.415000px;}
.y103{bottom:291.450000px;}
.y3b0{bottom:291.990000px;}
.y2cc{bottom:292.575000px;}
.y2f4{bottom:292.710000px;}
.y30e{bottom:293.070000px;}
.y2ca{bottom:293.295000px;}
.ycd{bottom:293.610000px;}
.yef{bottom:295.950000px;}
.y353{bottom:296.130000px;}
.y20a{bottom:296.490000px;}
.y2a6{bottom:296.715000px;}
.y41e{bottom:296.850000px;}
.y1ed{bottom:298.110000px;}
.y257{bottom:299.190000px;}
.y1a{bottom:300.810000px;}
.y497{bottom:301.710000px;}
.y3fc{bottom:301.890000px;}
.y121{bottom:302.070000px;}
.y324{bottom:303.870000px;}
.y24f{bottom:304.230000px;}
.y236{bottom:304.815000px;}
.y337{bottom:306.210000px;}
.y405{bottom:307.830000px;}
.y14f{bottom:309.450000px;}
.y3c8{bottom:310.350000px;}
.y91{bottom:310.890000px;}
.y70{bottom:314.130000px;}
.y37{bottom:315.210000px;}
.y3e7{bottom:315.570000px;}
.y477{bottom:316.110000px;}
.y13d{bottom:316.650000px;}
.y1d6{bottom:317.010000px;}
.y52{bottom:317.550000px;}
.y168{bottom:318.270000px;}
.y2e0{bottom:319.170000px;}
.y30d{bottom:321.510000px;}
.y414{bottom:321.690000px;}
.y38e{bottom:321.870000px;}
.y431{bottom:322.230000px;}
.y102{bottom:322.590000px;}
.yb0{bottom:324.390000px;}
.yee{bottom:324.570000px;}
.y37d{bottom:324.750000px;}
.y209{bottom:325.110000px;}
.y3af{bottom:325.650000px;}
.ye4{bottom:327.090000px;}
.y286{bottom:327.990000px;}
.y496{bottom:328.530000px;}
.y120{bottom:330.510000px;}
.y19{bottom:331.050000px;}
.y256{bottom:332.670000px;}
.ycc{bottom:334.110000px;}
.y323{bottom:334.470000px;}
.y3fb{bottom:335.550000px;}
.y2c9{bottom:336.315000px;}
.y336{bottom:336.810000px;}
.y3c7{bottom:338.790000px;}
.y220{bottom:340.095000px;}
.y404{bottom:341.490000px;}
.y90{bottom:343.470000px;}
.y3e6{bottom:344.010000px;}
.y13c{bottom:345.090000px;}
.y360{bottom:345.450000px;}
.y4b3{bottom:345.630000px;}
.y466{bottom:347.790000px;}
.y6f{bottom:347.970000px;}
.y4bd{bottom:348.690000px;}
.y14e{bottom:349.770000px;}
.y30c{bottom:349.950000px;}
.y183{bottom:351.570000px;}
.yaf{bottom:353.010000px;}
.y51{bottom:353.370000px;}
.y101{bottom:353.550000px;}
.y413{bottom:355.350000px;}
.y36{bottom:355.530000px;}
.y430{bottom:356.070000px;}
.y2a4{bottom:357.015000px;}
.y235{bottom:357.375000px;}
.y167{bottom:358.590000px;}
.y11f{bottom:358.950000px;}
.y19e{bottom:359.310000px;}
.y2df{bottom:359.490000px;}
.y1ec{bottom:360.030000px;}
.y18{bottom:361.290000px;}
.y2f3{bottom:362.370000px;}
.y39b{bottom:363.090000px;}
.y322{bottom:365.070000px;}
.y3c6{bottom:367.230000px;}
.y335{bottom:367.410000px;}
.ye3{bottom:367.590000px;}
.y285{bottom:368.490000px;}
.y3fa{bottom:369.390000px;}
.y1ba{bottom:372.270000px;}
.y1d5{bottom:372.450000px;}
.y3e5{bottom:372.630000px;}
.y13b{bottom:373.710000px;}
.ycb{bottom:374.430000px;}
.y270{bottom:374.475000px;}
.y403{bottom:375.150000px;}
.y8f{bottom:375.870000px;}
.y14d{bottom:378.390000px;}
.yae{bottom:381.450000px;}
.y6e{bottom:381.630000px;}
.y50{bottom:381.990000px;}
.y495{bottom:382.350000px;}
.y476{bottom:383.430000px;}
.y100{bottom:384.690000px;}
.y35f{bottom:385.770000px;}
.y26f{bottom:387.030000px;}
.y11e{bottom:387.390000px;}
.y26d{bottom:387.750000px;}
.y2de{bottom:388.110000px;}
.y412{bottom:389.190000px;}
.y38d{bottom:389.370000px;}
.y42f{bottom:389.730000px;}
.y347{bottom:390.270000px;}
.y30b{bottom:391.890000px;}
.y449{bottom:392.070000px;}
.y21f{bottom:392.655000px;}
.y17{bottom:392.790000px;}
.y195{bottom:392.970000px;}
.y3ae{bottom:393.150000px;}
.y208{bottom:393.870000px;}
.y321{bottom:395.670000px;}
.y35{bottom:396.030000px;}
.y2c5{bottom:396.615000px;}
.y419{bottom:398.550000px;}
.y1eb{bottom:398.910000px;}
.y166{bottom:399.090000px;}
.y3e4{bottom:401.070000px;}
.y13a{bottom:402.150000px;}
.y3f9{bottom:403.050000px;}
.y39a{bottom:403.590000px;}
.y463{bottom:403.770000px;}
.y334{bottom:405.210000px;}
.y14c{bottom:406.830000px;}
.ye2{bottom:408.090000px;}
.y8e{bottom:408.450000px;}
.y284{bottom:408.990000px;}
.y232{bottom:409.755000px;}
.yad{bottom:409.890000px;}
.y37c{bottom:410.430000px;}
.y35e{bottom:414.390000px;}
.yca{bottom:414.930000px;}
.y494{bottom:415.110000px;}
.y6d{bottom:415.290000px;}
.y11d{bottom:415.830000px;}
.y1d2{bottom:416.730000px;}
.y475{bottom:417.270000px;}
.y4f{bottom:417.810000px;}
.y346{bottom:418.890000px;}
.y316{bottom:421.590000px;}
.y352{bottom:421.770000px;}
.y207{bottom:422.490000px;}
.y411{bottom:422.850000px;}
.y38c{bottom:423.030000px;}
.y42e{bottom:423.390000px;}
.y3c5{bottom:424.110000px;}
.y16{bottom:424.470000px;}
.yff{bottom:426.270000px;}
.y320{bottom:426.495000px;}
.y3ad{bottom:426.855000px;}
.y1b7{bottom:427.755000px;}
.y4b2{bottom:429.195000px;}
.y3e3{bottom:429.555000px;}
.y26c{bottom:430.815000px;}
.y4bc{bottom:432.255000px;}
.y30a{bottom:434.235000px;}
.y14b{bottom:435.315000px;}
.y139{bottom:435.675000px;}
.y493{bottom:435.855000px;}
.y34{bottom:436.575000px;}
.y3f8{bottom:436.935000px;}
.yac{bottom:438.375000px;}
.y37b{bottom:438.915000px;}
.y1ea{bottom:439.275000px;}
.y165{bottom:439.635000px;}
.y2c3{bottom:439.665000px;}
.y8d{bottom:440.895000px;}
.y474{bottom:442.335000px;}
.y35d{bottom:442.875000px;}
.y2a2{bottom:442.905000px;}
.y333{bottom:444.135000px;}
.y11c{bottom:444.315000px;}
.y2dd{bottom:445.215000px;}
.y21c{bottom:445.245000px;}
.y4e{bottom:446.475000px;}
.ye1{bottom:448.635000px;}
.y6c{bottom:449.175000px;}
.y283{bottom:449.355000px;}
.y2f2{bottom:450.255000px;}
.y24a{bottom:450.435000px;}
.y206{bottom:450.975000px;}
.y3f6{bottom:451.695000px;}
.y3c4{bottom:452.775000px;}
.y15{bottom:454.575000px;}
.yc9{bottom:455.475000px;}
.y38b{bottom:456.735000px;}
.y31f{bottom:457.095000px;}
.y42d{bottom:457.275000px;}
.y3e2{bottom:457.995000px;}
.y345{bottom:459.255000px;}
.y462{bottom:459.795000px;}
.y3ac{bottom:460.695000px;}
.y314{bottom:462.315000px;}
.y22e{bottom:462.345000px;}
.y1d0{bottom:462.675000px;}
.y473{bottom:463.035000px;}
.y138{bottom:464.295000px;}
.y33{bottom:465.195000px;}
.yfe{bottom:466.635000px;}
.yab{bottom:466.815000px;}
.y37a{bottom:467.355000px;}
.y1e9{bottom:468.075000px;}
.y492{bottom:468.615000px;}
.y35c{bottom:471.315000px;}
.y1b4{bottom:472.035000px;}
.y11b{bottom:472.755000px;}
.y8c{bottom:473.295000px;}
.y2dc{bottom:473.655000px;}
.y14a{bottom:475.635000px;}
.y309{bottom:476.355000px;}
.y332{bottom:477.975000px;}
.y351{bottom:478.875000px;}
.y205{bottom:479.415000px;}
.y164{bottom:480.135000px;}
.y3c3{bottom:481.215000px;}
.y4d{bottom:482.295000px;}
.y6b{bottom:482.835000px;}
.y472{bottom:483.735000px;}
.y448{bottom:484.455000px;}
.y399{bottom:484.635000px;}
.y4b1{bottom:485.175000px;}
.y29e{bottom:485.745000px;}
.y3e1{bottom:486.435000px;}
.y31e{bottom:487.695000px;}
.y344{bottom:487.875000px;}
.y14{bottom:488.595000px;}
.ye0{bottom:488.955000px;}
.y2f1{bottom:489.315000px;}
.y282{bottom:489.855000px;}
.y180{bottom:490.215000px;}
.y410{bottom:490.395000px;}
.y38a{bottom:490.575000px;}
.y42c{bottom:490.935000px;}
.y3f5{bottom:492.015000px;}
.y32{bottom:493.635000px;}
.y3ab{bottom:494.355000px;}
.yaa{bottom:495.435000px;}
.yc8{bottom:495.975000px;}
.y1e8{bottom:496.515000px;}
.y194{bottom:497.235000px;}
.y21b{bottom:497.625000px;}
.y26b{bottom:500.655000px;}
.y491{bottom:501.195000px;}
.y313{bottom:502.995000px;}
.y471{bottom:504.435000px;}
.y137{bottom:504.615000px;}
.y447{bottom:505.155000px;}
.y8b{bottom:505.875000px;}
.yfd{bottom:507.135000px;}
.y350{bottom:507.315000px;}
.y41d{bottom:507.495000px;}
.y379{bottom:507.675000px;}
.y22d{bottom:508.245000px;}
.y3c2{bottom:509.655000px;}
.y331{bottom:511.635000px;}
.y1cf{bottom:512.535000px;}
.y11a{bottom:513.075000px;}
.y2db{bottom:513.975000px;}
.y3e0{bottom:514.875000px;}
.y149{bottom:516.135000px;}
.y470{bottom:516.495000px;}
.y6a{bottom:516.675000px;}
.y1b1{bottom:517.935000px;}
.y4c{bottom:518.295000px;}
.y281{bottom:518.475000px;}
.y308{bottom:518.655000px;}
.y2bc{bottom:519.765000px;}
.y163{bottom:520.635000px;}
.y204{bottom:521.535000px;}
.y31{bottom:522.075000px;}
.ya9{bottom:523.875000px;}
.y389{bottom:524.235000px;}
.y42b{bottom:524.775000px;}
.y398{bottom:524.955000px;}
.y249{bottom:528.015000px;}
.y2f0{bottom:528.375000px;}
.ydf{bottom:529.455000px;}
.y13{bottom:529.815000px;}
.y19d{bottom:532.515000px;}
.y490{bottom:533.955000px;}
.yfc{bottom:535.755000px;}
.y378{bottom:536.295000px;}
.yc7{bottom:536.475000px;}
.y1e7{bottom:536.655000px;}
.y446{bottom:537.735000px;}
.y3c1{bottom:538.095000px;}
.y35b{bottom:540.255000px;}
.y4b0{bottom:541.155000px;}
.y119{bottom:541.695000px;}
.y2da{bottom:542.595000px;}
.y3df{bottom:543.315000px;}
.y148{bottom:544.755000px;}
.y136{bottom:545.115000px;}
.y299{bottom:546.045000px;}
.y8a{bottom:546.195000px;}
.y31d{bottom:548.895000px;}
.y203{bottom:550.155000px;}
.y219{bottom:550.185000px;}
.y69{bottom:550.335000px;}
.y330{bottom:552.135000px;}
.ya8{bottom:552.315000px;}
.y40f{bottom:552.855000px;}
.y4b{bottom:554.295000px;}
.y3aa{bottom:556.815000px;}
.y388{bottom:558.075000px;}
.y42a{bottom:558.435000px;}
.y280{bottom:558.795000px;}
.y17a{bottom:560.055000px;}
.y307{bottom:560.775000px;}
.y22c{bottom:560.805000px;}
.y162{bottom:560.955000px;}
.y30{bottom:562.395000px;}
.y89{bottom:562.575000px;}
.yed{bottom:564.015000px;}
.yfb{bottom:564.195000px;}
.y377{bottom:564.735000px;}
.y1e6{bottom:565.455000px;}
.y3c0{bottom:566.535000px;}
.y48f{bottom:566.715000px;}
.y248{bottom:566.895000px;}
.y192{bottom:567.075000px;}
.y2ef{bottom:567.435000px;}
.y1ae{bottom:567.795000px;}
.y343{bottom:568.515000px;}
.y35a{bottom:568.695000px;}
.yde{bottom:569.955000px;}
.y118{bottom:570.135000px;}
.y26a{bottom:570.315000px;}
.y445{bottom:570.495000px;}
.y2d9{bottom:571.035000px;}
.y3de{bottom:571.755000px;}
.y3f4{bottom:573.015000px;}
.y12{bottom:573.735000px;}
.yc6{bottom:576.795000px;}
.y202{bottom:578.595000px;}
.yd4{bottom:580.755000px;}
.y1ce{bottom:581.115000px;}
.y40e{bottom:581.295000px;}
.y68{bottom:584.175000px;}
.y147{bottom:585.075000px;}
.y3a9{bottom:585.255000px;}
.y27f{bottom:587.415000px;}
.y31c{bottom:587.775000px;}
.y2ba{bottom:587.805000px;}
.y4a{bottom:590.115000px;}
.y88{bottom:591.735000px;}
.y429{bottom:592.275000px;}
.ya7{bottom:592.635000px;}
.yec{bottom:592.815000px;}
.y376{bottom:593.175000px;}
.y1e5{bottom:593.895000px;}
.y3bf{bottom:594.975000px;}
.y290{bottom:595.005000px;}
.y342{bottom:597.135000px;}
.y117{bottom:598.575000px;}
.y461{bottom:599.295000px;}
.y2d8{bottom:599.475000px;}
.y46f{bottom:600.015000px;}
.y3dd{bottom:600.195000px;}
.y161{bottom:601.455000px;}
.y135{bottom:602.175000px;}
.y216{bottom:602.745000px;}
.y444{bottom:603.255000px;}
.y397{bottom:605.955000px;}
.y2ee{bottom:606.495000px;}
.y247{bottom:607.215000px;}
.y2b8{bottom:608.325000px;}
.y2f{bottom:608.835000px;}
.y306{bottom:609.015000px;}
.yc5{bottom:609.555000px;}
.ydd{bottom:610.455000px;}
.y11{bottom:611.175000px;}
.y228{bottom:613.185000px;}
.y3f3{bottom:613.515000px;}
.y3a8{bottom:613.695000px;}
.y27e{bottom:615.855000px;}
.y67{bottom:617.835000px;}
.y28c{bottom:619.134000px;}
.y48e{bottom:619.995000px;}
.y40d{bottom:620.535000px;}
.y87{bottom:620.895000px;}
.yd3{bottom:621.075000px;}
.ya6{bottom:621.255000px;}
.y375{bottom:621.615000px;}
.y3be{bottom:623.415000px;}
.y4ac{bottom:624.675000px;}
.y146{bottom:625.395000px;}
.y341{bottom:625.575000px;}
.y428{bottom:625.935000px;}
.y49{bottom:626.115000px;}
.y2d7{bottom:627.915000px;}
.y3dc{bottom:628.815000px;}
.y134{bottom:630.615000px;}
.y34f{bottom:632.955000px;}
.y1e4{bottom:634.035000px;}
.y201{bottom:634.935000px;}
.y246{bottom:635.835000px;}
.y1ac{bottom:636.195000px;}
.y116{bottom:638.895000px;}
.y31b{bottom:639.975000px;}
.y265{bottom:640.155000px;}
.y10{bottom:641.415000px;}
.yc4{bottom:641.955000px;}
.y3a7{bottom:642.135000px;}
.y305{bottom:643.395000px;}
.y27d{bottom:644.295000px;}
.y396{bottom:646.455000px;}
.ya5{bottom:649.695000px;}
.y374{bottom:650.055000px;}
.y86{bottom:650.235000px;}
.ydc{bottom:650.775000px;}
.y66{bottom:651.495000px;}
.y3bd{bottom:651.855000px;}
.y2e{bottom:652.395000px;}
.y213{bottom:652.470000px;}
.y48d{bottom:652.755000px;}
.y3f2{bottom:654.015000px;}
.y387{bottom:654.195000px;}
.y4b9{bottom:654.555000px;}
.y2d6{bottom:656.355000px;}
.y443{bottom:656.535000px;}
.y3db{bottom:657.255000px;}
.y133{bottom:659.055000px;}
.y427{bottom:659.595000px;}
.y34e{bottom:661.575000px;}
.y48{bottom:662.115000px;}
.y1e3{bottom:662.835000px;}
.y245{bottom:664.455000px;}
.y227{bottom:665.790000px;}
.y145{bottom:665.895000px;}
.y115{bottom:667.515000px;}
.y2b7{bottom:668.670000px;}
.y3a6{bottom:670.605000px;}
.y19a{bottom:671.325000px;}
.yf{bottom:671.685000px;}
.y27c{bottom:672.945000px;}
.y48c{bottom:673.485000px;}
.y31a{bottom:673.665000px;}
.yc3{bottom:674.565000px;}
.y28d{bottom:675.150000px;}
.y2ed{bottom:676.185000px;}
.ya4{bottom:678.165000px;}
.y85{bottom:679.425000px;}
.y3bc{bottom:680.325000px;}
.y304{bottom:682.305000px;}
.y160{bottom:682.485000px;}
.y386{bottom:682.665000px;}
.y200{bottom:682.845000px;}
.y46e{bottom:683.565000px;}
.y179{bottom:684.825000px;}
.y65{bottom:685.365000px;}
.y3da{bottom:685.725000px;}
.y395{bottom:686.805000px;}
.y442{bottom:689.325000px;}
.y34d{bottom:690.225000px;}
.y373{bottom:690.405000px;}
.ydb{bottom:691.305000px;}
.y244{bottom:692.925000px;}
.y426{bottom:693.465000px;}
.y48b{bottom:694.185000px;}
.y3f1{bottom:694.365000px;}
.y144{bottom:694.545000px;}
.y114{bottom:695.985000px;}
.y2d5{bottom:696.705000px;}
.y47{bottom:698.145000px;}
.y3a5{bottom:699.045000px;}
.y132{bottom:699.405000px;}
.y27b{bottom:701.385000px;}
.y2d{bottom:701.745000px;}
.ye{bottom:705.705000px;}
.y191{bottom:705.885000px;}
.ya3{bottom:706.605000px;}
.yc2{bottom:706.965000px;}
.y2b6{bottom:707.730000px;}
.y84{bottom:708.585000px;}
.y3bb{bottom:708.945000px;}
.y441{bottom:710.025000px;}
.y1cd{bottom:710.205000px;}
.y15f{bottom:711.105000px;}
.y3d9{bottom:714.165000px;}
.y48a{bottom:714.885000px;}
.y226{bottom:715.650000px;}
.y319{bottom:715.965000px;}
.yfa{bottom:718.485000px;}
.y34c{bottom:718.665000px;}
.y64{bottom:719.025000px;}
.y243{bottom:721.365000px;}
.y303{bottom:722.805000px;}
.y340{bottom:722.985000px;}
.y178{bottom:723.525000px;}
.y113{bottom:724.605000px;}
.y2d4{bottom:725.325000px;}
.y1ab{bottom:726.585000px;}
.y425{bottom:727.125000px;}
.y394{bottom:727.305000px;}
.y3a4{bottom:727.485000px;}
.y131{bottom:728.025000px;}
.y1ff{bottom:730.725000px;}
.y1e2{bottom:731.445000px;}
.yda{bottom:731.805000px;}
.y46{bottom:734.145000px;}
.y143{bottom:734.865000px;}
.ya2{bottom:735.045000px;}
.y2ec{bottom:735.585000px;}
.y3ba{bottom:737.385000px;}
.y83{bottom:737.925000px;}
.y4b8{bottom:738.105000px;}
.yc1{bottom:739.365000px;}
.y15e{bottom:739.545000px;}
.yd{bottom:740.265000px;}
.y27a{bottom:741.525000px;}
.y3d8{bottom:742.605000px;}
.y2b5{bottom:746.790000px;}
.yf9{bottom:747.105000px;}
.y372{bottom:747.465000px;}
.y1cc{bottom:750.525000px;}
.y2c{bottom:751.245000px;}
.y212{bottom:751.290000px;}
.y302{bottom:751.425000px;}
.y33f{bottom:751.605000px;}
.y63{bottom:752.865000px;}
.y2d3{bottom:753.765000px;}
.y3a3{bottom:755.925000px;}
.y489{bottom:756.285000px;}
.y130{bottom:756.465000px;}
.y318{bottom:758.265000px;}
.y1e1{bottom:760.245000px;}
.y424{bottom:760.965000px;}
.y242{bottom:761.685000px;}
.y264{bottom:762.405000px;}
.ya1{bottom:763.485000px;}
.y177{bottom:764.025000px;}
.y112{bottom:764.745000px;}
.y402{bottom:765.105000px;}
.y1aa{bottom:765.285000px;}
.y3b9{bottom:765.825000px;}
.y45e{bottom:766.365000px;}
.y82{bottom:767.085000px;}
.y393{bottom:767.805000px;}
.y385{bottom:767.985000px;}
.y45{bottom:769.965000px;}
.y279{bottom:770.325000px;}
.yc{bottom:770.505000px;}
.y3d7{bottom:771.045000px;}
.yc0{bottom:771.945000px;}
.yd9{bottom:772.305000px;}
.y2eb{bottom:774.645000px;}
.y3f0{bottom:775.365000px;}
.yf8{bottom:775.545000px;}
.y1cb{bottom:779.145000px;}
.y15d{bottom:779.865000px;}
.y33e{bottom:780.045000px;}
.y2d2{bottom:782.205000px;}
.y440{bottom:784.185000px;}
.y12f{bottom:784.905000px;}
.y371{bottom:787.785000px;}
.y62{bottom:788.685000px;}
.y488{bottom:788.865000px;}
.y241{bottom:790.305000px;}
.y359{bottom:791.745000px;}
.yd2{bottom:791.925000px;}
.y176{bottom:792.645000px;}
.y111{bottom:793.365000px;}
.y1e0{bottom:793.725000px;}
.y3b8{bottom:794.265000px;}
.y423{bottom:794.625000px;}
.y46c{bottom:794.805000px;}
.y81{bottom:796.245000px;}
.y278{bottom:798.765000px;}
.y3d6{bottom:799.485000px;}
.y263{bottom:801.465000px;}
.yb{bottom:802.005000px;}
.ya0{bottom:803.805000px;}
.yf7{bottom:803.985000px;}
.ybf{bottom:804.345000px;}
.y43f{bottom:804.885000px;}
.y1a9{bottom:805.785000px;}
.y44{bottom:805.965000px;}
.y2b{bottom:806.685000px;}
.y1ca{bottom:807.765000px;}
.y384{bottom:808.305000px;}
.y15c{bottom:808.485000px;}
.y487{bottom:809.565000px;}
.y2d1{bottom:810.645000px;}
.yd8{bottom:812.805000px;}
.y301{bottom:813.525000px;}
.y3ef{bottom:815.865000px;}
.y370{bottom:816.405000px;}
.y240{bottom:818.745000px;}
.y358{bottom:820.365000px;}
.y175{bottom:821.085000px;}
.y4b7{bottom:821.625000px;}
.y1df{bottom:822.345000px;}
.y3b7{bottom:822.705000px;}
.y20f{bottom:824.220000px;}
.y61{bottom:824.685000px;}
.y12e{bottom:825.225000px;}
.y80{bottom:825.405000px;}
.y3d5{bottom:827.925000px;}
.y422{bottom:828.465000px;}
.yd1{bottom:832.245000px;}
.y9f{bottom:832.425000px;}
.y110{bottom:833.685000px;}
.y4ab{bottom:834.225000px;}
.y1a8{bottom:834.405000px;}
.y43{bottom:834.585000px;}
.y1c9{bottom:836.205000px;}
.y3a2{bottom:836.745000px;}
.ybe{bottom:836.925000px;}
.ya{bottom:837.285000px;}
.y43e{bottom:837.465000px;}
.y277{bottom:838.905000px;}
.y2d0{bottom:839.085000px;}
.y262{bottom:840.525000px;}
.y2a{bottom:841.245000px;}
.y300{bottom:842.145000px;}
.y486{bottom:842.325000px;}
.y2ea{bottom:844.305000px;}
.y18e{bottom:844.485000px;}
.y36f{bottom:844.845000px;}
.y23f{bottom:847.185000px;}
.y33d{bottom:848.805000px;}
.y357{bottom:848.985000px;}
.y174{bottom:849.705000px;}
.y3b6{bottom:851.145000px;}
.yd7{bottom:853.125000px;}
.y12d{bottom:853.845000px;}
.y7f{bottom:854.745000px;}
.y1de{bottom:856.005000px;}
.y3ee{bottom:856.185000px;}
.y3d4{bottom:856.365000px;}
.y43d{bottom:858.165000px;}
.y60{bottom:860.685000px;}
.y9e{bottom:860.865000px;}
.y4aa{bottom:861.045000px;}
.y421{bottom:862.125000px;}
.y1a7{bottom:862.845000px;}
.y485{bottom:863.025000px;}
.y1c8{bottom:864.645000px;}
.y15b{bottom:865.365000px;}
.y276{bottom:867.705000px;}
.ybd{bottom:869.325000px;}
.y1fe{bottom:869.505000px;}
.y29{bottom:869.865000px;}
.y42{bottom:870.405000px;}
.y9{bottom:870.945000px;}
.y4a9{bottom:873.105000px;}
.y10f{bottom:874.185000px;}
.y23e{bottom:875.625000px;}
.y3a1{bottom:877.245000px;}
.y33c{bottom:877.425000px;}
.y45b{bottom:877.605000px;}
.y43c{bottom:878.865000px;}
.y261{bottom:879.585000px;}
.y12c{bottom:882.285000px;}
.y484{bottom:883.725000px;}
.y7e{bottom:883.905000px;}
.y1dd{bottom:884.625000px;}
.y3d3{bottom:884.985000px;}
.y36e{bottom:885.165000px;}
.y383{bottom:889.125000px;}
.y9d{bottom:889.305000px;}
.y173{bottom:889.845000px;}
.y2e8{bottom:890.565000px;}
.y1a6{bottom:891.285000px;}
.y1c7{bottom:893.085000px;}
.yd6{bottom:893.625000px;}
.y420{bottom:895.785000px;}
.y275{bottom:896.145000px;}
.y5f{bottom:896.685000px;}
.y41{bottom:899.025000px;}
.y43b{bottom:899.565000px;}
.yf6{bottom:901.185000px;}
.y4a7{bottom:901.545000px;}
.ybc{bottom:901.725000px;}
.y10e{bottom:902.805000px;}
.y483{bottom:904.425000px;}
.y8{bottom:904.785000px;}
.y15a{bottom:905.685000px;}
.y356{bottom:905.865000px;}
.y3b5{bottom:908.025000px;}
.y28{bottom:910.230000px;}
.y4c3{bottom:911.130000px;}
.y7d{bottom:913.110000px;}
.y3d2{bottom:913.470000px;}
.y36d{bottom:913.830000px;}
.y23d{bottom:915.990000px;}
.y1fd{bottom:917.250000px;}
.y33b{bottom:917.610000px;}
.y9c{bottom:917.790000px;}
.y1dc{bottom:918.150000px;}
.y172{bottom:918.510000px;}
.y260{bottom:918.690000px;}
.y1c6{bottom:921.570000px;}
.y12b{bottom:922.650000px;}
.y2ff{bottom:922.830000px;}
.y274{bottom:924.630000px;}
.y32f{bottom:929.670000px;}
.yf5{bottom:929.850000px;}
.y10d{bottom:931.290000px;}
.y1a5{bottom:931.650000px;}
.y43a{bottom:932.370000px;}
.y5e{bottom:932.730000px;}
.y2e7{bottom:933.450000px;}
.y4b5{bottom:933.630000px;}
.yd5{bottom:934.170000px;}
.ybb{bottom:934.350000px;}
.y1db{bottom:934.530000px;}
.y40{bottom:934.890000px;}
.y4c2{bottom:935.970000px;}
.y3b4{bottom:936.510000px;}
.y482{bottom:937.230000px;}
.y7{bottom:938.490000px;}
.y3d1{bottom:941.910000px;}
.y7b{bottom:942.270000px;}
.y23c{bottom:944.610000px;}
.y9b{bottom:946.410000px;}
.y171{bottom:947.130000px;}
.y1a4{bottom:948.030000px;}
.y27{bottom:950.550000px;}
.y12a{bottom:951.270000px;}
.y2fe{bottom:951.450000px;}
.y439{bottom:953.070000px;}
.y36c{bottom:954.150000px;}
.y4c1{bottom:956.670000px;}
.y481{bottom:957.930000px;}
.yeb{bottom:958.110000px;}
.yf4{bottom:958.290000px;}
.y10c{bottom:959.730000px;}
.y45a{bottom:961.170000px;}
.y273{bottom:964.950000px;}
.y1fc{bottom:965.130000px;}
.y5d{bottom:968.550000px;}
.y32e{bottom:970.170000px;}
.y3d0{bottom:970.350000px;}
.y3f{bottom:970.890000px;}
.y7a{bottom:971.610000px;}
.y6{bottom:972.150000px;}
.y23b{bottom:973.050000px;}
.y1c5{bottom:973.590000px;}
.y438{bottom:973.770000px;}
.yba{bottom:974.670000px;}
.y4c0{bottom:977.370000px;}
.y480{bottom:978.630000px;}
.y129{bottom:979.710000px;}
.y2fd{bottom:979.890000px;}
.y41f{bottom:985.650000px;}
.y9a{bottom:986.550000px;}
.yea{bottom:986.730000px;}
.y170{bottom:987.270000px;}
.y10b{bottom:988.170000px;}
.y25d{bottom:988.350000px;}
.y46a{bottom:989.430000px;}
.y1c3{bottom:990.150000px;}
.y26{bottom:991.050000px;}
.y272{bottom:993.570000px;}
.y36b{bottom:994.650000px;}
.y32d{bottom:998.790000px;}
.y47f{bottom:999.330000px;}
.y79{bottom:1000.770000px;}
.y23a{bottom:1001.490000px;}
.y159{bottom:1003.290000px;}
.y5c{bottom:1004.550000px;}
.y5{bottom:1005.990000px;}
.y437{bottom:1006.530000px;}
.y3e{bottom:1006.710000px;}
.y2fc{bottom:1008.510000px;}
.y1fb{bottom:1013.010000px;}
.y128{bottom:1013.370000px;}
.yb9{bottom:1014.990000px;}
.y99{bottom:1015.170000px;}
.y16f{bottom:1015.890000px;}
.y456{bottom:1017.150000px;}
.y18c{bottom:1017.870000px;}
.y40c{bottom:1020.750000px;}
.y10a{bottom:1021.830000px;}
.y271{bottom:1022.010000px;}
.y36a{bottom:1023.270000px;}
.y2cf{bottom:1027.050000px;}
.y32c{bottom:1027.230000px;}
.y78{bottom:1029.930000px;}
.y25{bottom:1031.550000px;}
.y158{bottom:1031.730000px;}
.y47e{bottom:1031.910000px;}
.y5b{bottom:1033.170000px;}
.y2fb{bottom:1036.950000px;}
.y436{bottom:1039.110000px;}
.y4{bottom:1039.650000px;}
.y127{bottom:1041.990000px;}
.y3d{bottom:1042.710000px;}
.y3a0{bottom:1043.610000px;}
.y98{bottom:1043.790000px;}
.y1c2{bottom:1045.590000px;}
.y40b{bottom:1046.670000px;}
.y25b{bottom:1047.750000px;}
.y16e{bottom:1049.550000px;}
.y3f7{bottom:1049.730000px;}
.y109{bottom:1050.450000px;}
.y369{bottom:1051.710000px;}
.y2e4{bottom:1052.250000px;}
.y2ce{bottom:1055.670000px;}
.y76{bottom:1059.270000px;}
.y435{bottom:1059.810000px;}
.y157{bottom:1060.170000px;}
.y1f9{bottom:1060.890000px;}
.y47d{bottom:1064.670000px;}
.y2fa{bottom:1065.390000px;}
.y5a{bottom:1068.990000px;}
.y239{bottom:1070.250000px;}
.y24{bottom:1072.050000px;}
.y97{bottom:1072.230000px;}
.y452{bottom:1072.950000px;}
.y3{bottom:1073.490000px;}
.y16d{bottom:1078.170000px;}
.y3c{bottom:1078.710000px;}
.y108{bottom:1078.890000px;}
.y368{bottom:1080.150000px;}
.yb8{bottom:1083.930000px;}
.y2cd{bottom:1084.110000px;}
.y47c{bottom:1085.370000px;}
.y1a3{bottom:1086.810000px;}
.y156{bottom:1100.490000px;}
.y469{bottom:1100.670000px;}
.y1c1{bottom:1101.030000px;}
.y2f9{bottom:1104.630000px;}
.y59{bottom:1104.990000px;}
.y2{bottom:1107.150000px;}
.y40a{bottom:1107.330000px;}
.y1f7{bottom:1108.770000px;}
.y16c{bottom:1109.490000px;}
.y23{bottom:1112.370000px;}
.yb7{bottom:1112.550000px;}
.y47b{bottom:1117.410000px;}
.y367{bottom:1120.470000px;}
.y1{bottom:1140.990000px;}
.y22{bottom:1141.170000px;}
.y2f8{bottom:1142.610000px;}
.y49d{bottom:1145.310000px;}
.y238{bottom:1194.120000px;}
.h47{height:3.003750px;}
.h51{height:19.800000px;}
.h5f{height:23.400000px;}
.h6c{height:27.540000px;}
.h6e{height:27.576000px;}
.h6d{height:27.720000px;}
.hb{height:28.440000px;}
.hd{height:28.476000px;}
.hc{height:28.620000px;}
.h2c{height:37.260000px;}
.h58{height:38.160000px;}
.h41{height:38.340000px;}
.h43{height:38.376000px;}
.h5b{height:39.960000px;}
.h5c{height:39.996000px;}
.h3c{height:41.040000px;}
.h3f{height:42.120000px;}
.h56{height:42.156000px;}
.h54{height:42.300000px;}
.h45{height:42.336000px;}
.h5d{height:42.480000px;}
.h69{height:43.246406px;}
.h9{height:43.554375px;}
.h25{height:43.560000px;}
.h13{height:44.907539px;}
.h24{height:45.180000px;}
.h2b{height:45.216000px;}
.h57{height:45.540000px;}
.h40{height:45.576000px;}
.h2e{height:47.016000px;}
.h2f{height:47.160000px;}
.h30{height:47.196000px;}
.h6a{height:47.309062px;}
.h4c{height:48.240000px;}
.h3e{height:48.420000px;}
.h23{height:48.960000px;}
.h36{height:48.996000px;}
.h2a{height:49.140000px;}
.h3a{height:49.176000px;}
.h7{height:50.312812px;}
.h37{height:51.660000px;}
.h39{height:51.696000px;}
.h38{height:51.840000px;}
.h3b{height:51.876000px;}
.h20{height:53.573906px;}
.h28{height:54.720000px;}
.h26{height:54.756000px;}
.h27{height:54.900000px;}
.h29{height:54.936000px;}
.h62{height:55.080000px;}
.h67{height:55.116000px;}
.h65{height:55.260000px;}
.h66{height:55.296000px;}
.h4f{height:58.536000px;}
.h42{height:58.680000px;}
.hf{height:59.383125px;}
.h4d{height:59.400000px;}
.h49{height:59.580000px;}
.h50{height:59.616000px;}
.h11{height:62.327813px;}
.h6{height:63.879258px;}
.h2{height:65.884219px;}
.h5e{height:66.082500px;}
.h32{height:66.206250px;}
.h52{height:66.600000px;}
.h10{height:67.314375px;}
.h22{height:67.680000px;}
.h5a{height:67.824844px;}
.h19{height:68.940000px;}
.h1e{height:68.976000px;}
.h8{height:69.086250px;}
.h14{height:69.120000px;}
.h21{height:69.156000px;}
.h3{height:71.613281px;}
.h5{height:73.035703px;}
.he{height:74.004654px;}
.h31{height:75.093750px;}
.h35{height:77.580000px;}
.h53{height:79.380000px;}
.h4b{height:79.416000px;}
.h70{height:82.620000px;}
.h64{height:82.800000px;}
.h61{height:82.836000px;}
.h4{height:83.787539px;}
.h4e{height:85.176000px;}
.ha{height:91.794375px;}
.h3d{height:96.156000px;}
.h44{height:103.356000px;}
.h12{height:103.500000px;}
.h16{height:103.536000px;}
.h68{height:110.340000px;}
.h71{height:110.376000px;}
.h63{height:110.520000px;}
.h18{height:137.880000px;}
.h15{height:137.916000px;}
.h1f{height:138.060000px;}
.h1b{height:138.096000px;}
.h4a{height:139.716000px;}
.h2d{height:141.480000px;}
.h6b{height:142.380000px;}
.h1a{height:172.440000px;}
.h1c{height:172.470000px;}
.h1d{height:172.620000px;}
.h17{height:172.650000px;}
.h6f{height:193.170000px;}
.h60{height:193.350000px;}
.h59{height:340.095000px;}
.h46{height:374.475000px;}
.h55{height:493.275000px;}
.h48{height:633.165000px;}
.h33{height:892.980000px;}
.h34{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2b{width:16.920000px;}
.w50{width:40.500000px;}
.w39{width:54.360000px;}
.w56{width:58.536000px;}
.w29{width:61.200000px;}
.w3a{width:62.280000px;}
.w21{width:64.260000px;}
.wc{width:64.800000px;}
.w3b{width:65.196000px;}
.w5d{width:66.456000px;}
.w5c{width:66.600000px;}
.w58{width:66.780000px;}
.w46{width:68.400000px;}
.w5a{width:70.920000px;}
.w30{width:73.656000px;}
.w38{width:73.980000px;}
.w5e{width:77.580000px;}
.w57{width:80.460000px;}
.wa{width:83.880000px;}
.wb{width:83.916000px;}
.w35{width:84.096000px;}
.w1c{width:84.240000px;}
.w6{width:84.276000px;}
.w37{width:84.420000px;}
.w1b{width:84.456000px;}
.w36{width:85.500000px;}
.w4b{width:93.600000px;}
.w1a{width:94.860000px;}
.w15{width:94.896000px;}
.wf{width:95.040000px;}
.wd{width:95.256000px;}
.w22{width:96.696000px;}
.w2d{width:97.200000px;}
.w3d{width:98.100000px;}
.w31{width:99.540000px;}
.w4a{width:99.576000px;}
.w14{width:99.900000px;}
.w40{width:99.936000px;}
.w48{width:100.440000px;}
.w4d{width:100.980000px;}
.w47{width:101.376000px;}
.w2e{width:101.736000px;}
.w3e{width:102.276000px;}
.w9{width:102.960000px;}
.w26{width:103.356000px;}
.w32{width:107.280000px;}
.w34{width:107.460000px;}
.w33{width:107.496000px;}
.w27{width:107.820000px;}
.w7{width:110.520000px;}
.w23{width:111.240000px;}
.w59{width:112.176000px;}
.w13{width:113.400000px;}
.w3f{width:113.580000px;}
.w41{width:113.760000px;}
.w20{width:113.976000px;}
.w28{width:116.316000px;}
.w45{width:117.396000px;}
.w8{width:122.796000px;}
.w4c{width:123.696000px;}
.w25{width:126.900000px;}
.w1e{width:130.140000px;}
.w43{width:133.560000px;}
.w51{width:135.576000px;}
.w3{width:137.340000px;}
.w49{width:137.520000px;}
.w52{width:158.790000px;}
.w24{width:169.050000px;}
.w1d{width:170.130000px;}
.w2f{width:170.640000px;}
.w42{width:171.570000px;}
.w12{width:174.450000px;}
.w10{width:186.690000px;}
.w11{width:195.510000px;}
.w44{width:202.530000px;}
.w4f{width:204.150000px;}
.w1f{width:208.650000px;}
.we{width:233.130000px;}
.w5{width:264.450000px;}
.w55{width:286.770000px;}
.w5b{width:392.115000px;}
.w53{width:480.855000px;}
.w4{width:498.885000px;}
.w54{width:520.125000px;}
.w2a{width:690.045000px;}
.w4e{width:696.345000px;}
.w3c{width:696.525000px;}
.w19{width:743.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2c{width:971.070000px;}
.w18{width:1262.879981px;}
.w16{width:1262.880000px;}
.w17{width:1263.000000px;}
.x0{left:0.000000px;}
.x14{left:8.100000px;}
.x57{left:9.720000px;}
.x20{left:10.800000px;}
.x30{left:11.880000px;}
.x34{left:13.320000px;}
.x29{left:14.760000px;}
.x2e{left:16.380000px;}
.x78{left:17.640000px;}
.x31{left:18.900000px;}
.x3f{left:19.980000px;}
.x25{left:21.240000px;}
.x2a{left:23.220000px;}
.x2c{left:25.200000px;}
.x55{left:27.000000px;}
.x21{left:28.080000px;}
.x64{left:29.160000px;}
.x28{left:30.414000px;}
.x1f{left:32.580000px;}
.x5e{left:35.100000px;}
.x33{left:36.714000px;}
.x7e{left:38.700000px;}
.x2d{left:40.854000px;}
.x22{left:42.660000px;}
.x32{left:44.994000px;}
.x24{left:47.520000px;}
.x2b{left:49.134000px;}
.x23{left:51.300000px;}
.x56{left:53.640000px;}
.x6a{left:55.254000px;}
.x6b{left:61.920000px;}
.x62{left:66.600000px;}
.x3a{left:106.379981px;}
.x1{left:127.655987px;}
.x46{left:129.096000px;}
.x2f{left:132.114000px;}
.xc{left:133.415987px;}
.x12{left:144.215987px;}
.x4b{left:146.016000px;}
.x6e{left:150.510000px;}
.x6c{left:153.390000px;}
.x18{left:154.649987px;}
.x13{left:160.589987px;}
.x4{left:177.689987px;}
.x17{left:181.649987px;}
.x7{left:229.169987px;}
.x6d{left:240.345000px;}
.x4c{left:252.570000px;}
.x2{left:255.089987px;}
.xe{left:256.709987px;}
.x6f{left:260.145000px;}
.x15{left:265.890000px;}
.x58{left:284.250000px;}
.x41{left:299.235000px;}
.x5f{left:300.675000px;}
.x35{left:315.795000px;}
.xf{left:322.274987px;}
.x9{left:331.454987px;}
.xd{left:332.894987px;}
.x3{left:340.994987px;}
.x8{left:343.874987px;}
.x6{left:346.394987px;}
.x4d{left:355.035000px;}
.x5a{left:356.295000px;}
.x68{left:374.475000px;}
.x10{left:378.254987px;}
.xa{left:386.714987px;}
.x19{left:393.555000px;}
.x59{left:413.175000px;}
.x38{left:416.415000px;}
.x47{left:426.495000px;}
.x42{left:430.095000px;}
.x60{left:434.955000px;}
.x65{left:437.115000px;}
.x54{left:441.255000px;}
.x5{left:446.294987px;}
.x76{left:475.125000px;}
.x1a{left:478.545000px;}
.x39{left:482.144987px;}
.x26{left:489.525000px;}
.x69{left:510.765000px;}
.x36{left:512.025000px;}
.x7b{left:521.205000px;}
.x4e{left:526.395000px;}
.x45{left:527.505000px;}
.x48{left:530.565000px;}
.x63{left:537.045000px;}
.x77{left:556.305000px;}
.x1d{left:563.145000px;}
.x7c{left:588.525000px;}
.x1b{left:589.785000px;}
.x4f{left:600.765000px;}
.x5b{left:611.385000px;}
.x79{left:623.805000px;}
.x66{left:631.725000px;}
.x61{left:638.205000px;}
.x43{left:639.465000px;}
.x1e{left:647.790000px;}
.x7d{left:655.890000px;}
.x67{left:680.909987px;}
.x37{left:687.390000px;}
.x16{left:690.809987px;}
.x11{left:697.469987px;}
.x50{left:701.205000px;}
.x71{left:703.769987px;}
.x70{left:708.449987px;}
.x1c{left:713.490000px;}
.x27{left:723.390000px;}
.x7f{left:734.190000px;}
.x7a{left:736.890000px;}
.x44{left:754.170000px;}
.x49{left:756.150000px;}
.xb{left:765.509987px;}
.x73{left:791.429987px;}
.x74{left:800.429987px;}
.x72{left:804.929987px;}
.x75{left:807.269987px;}
.x51{left:809.205000px;}
.x5c{left:810.825000px;}
.x3c{left:851.010000px;}
.x5d{left:911.490000px;}
.x52{left:917.430000px;}
.x3d{left:946.770000px;}
.x53{left:1025.610000px;}
.x3e{left:1042.350000px;}
.x4a{left:1060.709981px;}
.x3b{left:1081.979981px;}
.x40{left:1127.520000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:42.880000pt;}
.ls31{letter-spacing:-1.504000pt;}
.ls33{letter-spacing:-1.376000pt;}
.lse{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.008000pt;}
.lsb{letter-spacing:-0.736000pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.406933pt;}
.ls37{letter-spacing:-0.400533pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls14{letter-spacing:-0.280533pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls28{letter-spacing:-0.230933pt;}
.ls34{letter-spacing:-0.222933pt;}
.ls20{letter-spacing:-0.201067pt;}
.ls39{letter-spacing:-0.198933pt;}
.ls6{letter-spacing:-0.161067pt;}
.ls7{letter-spacing:-0.158933pt;}
.ls13{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:-0.097067pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls21{letter-spacing:-0.089067pt;}
.ls3{letter-spacing:-0.079467pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.015360pt;}
.ls26{letter-spacing:-0.007680pt;}
.ls2a{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.003840pt;}
.ls25{letter-spacing:0.011520pt;}
.ls27{letter-spacing:0.047360pt;}
.ls30{letter-spacing:0.159360pt;}
.ls2e{letter-spacing:0.183467pt;}
.ls2f{letter-spacing:0.183680pt;}
.ls22{letter-spacing:0.230933pt;}
.ls1e{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.232960pt;}
.lsf{letter-spacing:0.233067pt;}
.ls3a{letter-spacing:0.239360pt;}
.ls3b{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.250027pt;}
.ls11{letter-spacing:0.271360pt;}
.ls5{letter-spacing:0.271467pt;}
.ls35{letter-spacing:0.291840pt;}
.ls38{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.337920pt;}
.ls2c{letter-spacing:0.338133pt;}
.ls36{letter-spacing:0.368533pt;}
.ls1b{letter-spacing:0.544000pt;}
.ls18{letter-spacing:0.592640pt;}
.ls23{letter-spacing:0.768000pt;}
.ls15{letter-spacing:1.551360pt;}
.ls17{letter-spacing:2.191360pt;}
.ls12{letter-spacing:2.480640pt;}
.ls32{letter-spacing:4.400640pt;}
.ls2d{letter-spacing:4.432640pt;}
.lsc{letter-spacing:11.791360pt;}
.ls1d{letter-spacing:16.271360pt;}
.ls24{letter-spacing:32.020480pt;}
.ls16{letter-spacing:52.751360pt;}
.ws0{word-spacing:-64.000000pt;}
.wsf{word-spacing:-58.880000pt;}
.ws1e{word-spacing:-53.120000pt;}
.ws1c{word-spacing:-26.219520pt;}
.ws24{word-spacing:-16.737173pt;}
.ws6{word-spacing:-16.640107pt;}
.wsc{word-spacing:-16.601707pt;}
.ws2{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.271573pt;}
.wsd{word-spacing:-16.233173pt;}
.ws23{word-spacing:-16.145707pt;}
.ws9{word-spacing:-16.135573pt;}
.wsa{word-spacing:-16.097173pt;}
.ws1d{word-spacing:-15.961707pt;}
.wsb{word-spacing:-15.632640pt;}
.ws14{word-spacing:-15.311360pt;}
.ws18{word-spacing:-14.998293pt;}
.ws22{word-spacing:-14.950827pt;}
.ws1b{word-spacing:-14.814720pt;}
.ws11{word-spacing:-14.767360pt;}
.ws1f{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.678293pt;}
.ws13{word-spacing:-14.672427pt;}
.ws26{word-spacing:-12.240640pt;}
.ws25{word-spacing:-11.920640pt;}
.ws5{word-spacing:-11.759573pt;}
.ws8{word-spacing:-10.319360pt;}
.ws3{word-spacing:-10.239893pt;}
.ws7{word-spacing:-10.160427pt;}
.ws16{word-spacing:-10.118293pt;}
.wse{word-spacing:-10.038827pt;}
.ws15{word-spacing:-9.679360pt;}
.ws19{word-spacing:-9.619200pt;}
.ws20{word-spacing:-9.611520pt;}
.ws10{word-spacing:-9.607680pt;}
.ws21{word-spacing:-9.603840pt;}
.ws1a{word-spacing:-9.600000pt;}
.ws12{word-spacing:-9.592320pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-15.690240pt;}
._a{margin-left:-13.687467pt;}
._9{margin-left:-12.005973pt;}
._8{margin-left:-9.788587pt;}
._7{margin-left:-8.798187pt;}
._e{margin-left:-7.863253pt;}
._14{margin-left:-5.605973pt;}
._10{margin-left:-3.940267pt;}
._4{margin-left:-3.047253pt;}
._5{margin-left:-2.062507pt;}
._1{margin-left:-1.048320pt;}
._0{width:1.162667pt;}
._2{width:2.442027pt;}
._17{width:3.814613pt;}
._b{width:4.842667pt;}
._1a{width:6.125227pt;}
._c{width:7.101440pt;}
._3{width:8.655360pt;}
._18{width:10.186240pt;}
._19{width:11.175680pt;}
._1f{width:12.535040pt;}
._d{width:13.593173pt;}
._11{width:14.485227pt;}
._21{width:15.419200pt;}
._4e{width:16.375893pt;}
._1d{width:17.339307pt;}
._1e{width:18.365440pt;}
._16{width:19.270827pt;}
._15{width:20.265387pt;}
._3e{width:21.248000pt;}
._13{width:22.138880pt;}
._12{width:23.191360pt;}
._20{width:24.376320pt;}
._1c{width:25.954560pt;}
._1b{width:26.849280pt;}
._27{width:27.781760pt;}
._43{width:28.988160pt;}
._24{width:30.716160pt;}
._2e{width:32.562560pt;}
._23{width:33.550080pt;}
._2b{width:35.165440pt;}
._2c{width:36.127573pt;}
._39{width:38.299520pt;}
._26{width:39.893120pt;}
._2a{width:41.227093pt;}
._29{width:42.124160pt;}
._22{width:43.088640pt;}
._2f{width:45.399040pt;}
._3b{width:54.023040pt;}
._3a{width:57.263360pt;}
._36{width:64.434560pt;}
._31{width:69.268480pt;}
._38{width:71.499520pt;}
._3c{width:73.492480pt;}
._35{width:78.617600pt;}
._2d{width:88.179200pt;}
._42{width:90.133760pt;}
._46{width:95.503360pt;}
._47{width:97.683627pt;}
._37{width:99.068800pt;}
._4c{width:107.043840pt;}
._4d{width:108.776533pt;}
._34{width:110.277120pt;}
._30{width:117.554560pt;}
._28{width:126.691200pt;}
._25{width:129.899093pt;}
._4f{width:141.418240pt;}
._44{width:155.089920pt;}
._45{width:156.020480pt;}
._3d{width:173.914880pt;}
._3f{width:177.228800pt;}
._40{width:178.128427pt;}
._49{width:196.659200pt;}
._4a{width:197.648640pt;}
._48{width:201.528320pt;}
._41{width:203.724800pt;}
._32{width:222.679040pt;}
._33{width:255.712427pt;}
._4b{width:302.522880pt;}
._6{width:559.032747pt;}
.fs8{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y32b{bottom:-21.280000pt;}
.y32a{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y2a1{bottom:5.120000pt;}
.y28f{bottom:5.280000pt;}
.y2c7{bottom:6.240000pt;}
.y2cb{bottom:6.400000pt;}
.y2bf{bottom:8.320000pt;}
.y231{bottom:8.640000pt;}
.y2bb{bottom:8.800000pt;}
.y29b{bottom:8.960000pt;}
.y21d{bottom:10.400000pt;}
.y215{bottom:10.560000pt;}
.y22a{bottom:10.600000pt;}
.y77{bottom:11.520000pt;}
.y7c{bottom:11.680000pt;}
.y2aa{bottom:13.440000pt;}
.y2a8{bottom:14.080000pt;}
.y2b9{bottom:14.120000pt;}
.y458{bottom:14.400000pt;}
.y4bb{bottom:14.426667pt;}
.y4a8{bottom:14.440000pt;}
.y455{bottom:14.560000pt;}
.y451{bottom:14.586667pt;}
.y46b{bottom:14.600000pt;}
.y2a3{bottom:15.040000pt;}
.y2c8{bottom:15.200000pt;}
.y4a2{bottom:16.480000pt;}
.y2c2{bottom:17.120000pt;}
.y29c{bottom:17.760000pt;}
.y186{bottom:18.080000pt;}
.y17f{bottom:18.240000pt;}
.y22f{bottom:19.040000pt;}
.y1ee{bottom:19.360000pt;}
.y1f3{bottom:19.680000pt;}
.y25c{bottom:19.840000pt;}
.y230{bottom:20.000000pt;}
.y317{bottom:20.520000pt;}
.y315{bottom:20.640000pt;}
.y225{bottom:20.794667pt;}
.y222{bottom:20.800000pt;}
.y217{bottom:20.840000pt;}
.y24b{bottom:21.120000pt;}
.y253{bottom:21.600000pt;}
.y2e9{bottom:21.640000pt;}
.y26e{bottom:21.760000pt;}
.y218{bottom:21.800000pt;}
.y21e{bottom:21.920000pt;}
.y21a{bottom:22.080000pt;}
.y234{bottom:22.106667pt;}
.y22b{bottom:22.120000pt;}
.y1b8{bottom:22.240000pt;}
.y2ab{bottom:22.400000pt;}
.y2ad{bottom:22.714667pt;}
.y29f{bottom:22.720000pt;}
.y1b5{bottom:22.880000pt;}
.y1d3{bottom:22.920000pt;}
.y254{bottom:23.040000pt;}
.y233{bottom:23.066667pt;}
.y255{bottom:23.200000pt;}
.y295{bottom:23.240000pt;}
.y1f8{bottom:23.680000pt;}
.y1fa{bottom:23.840000pt;}
.y2c6{bottom:24.000000pt;}
.y2e6{bottom:24.320000pt;}
.y250{bottom:24.480000pt;}
.y1b2{bottom:24.640000pt;}
.y329{bottom:25.280000pt;}
.y2bd{bottom:25.920000pt;}
.y1b9{bottom:26.240000pt;}
.y29a{bottom:26.560000pt;}
.y459{bottom:26.720000pt;}
.y465{bottom:26.760000pt;}
.y1c4{bottom:27.040000pt;}
.y1bb{bottom:27.200000pt;}
.y1b6{bottom:27.680000pt;}
.y1d4{bottom:27.720000pt;}
.y4a6{bottom:28.640000pt;}
.y25e{bottom:28.960000pt;}
.y25f{bottom:29.120000pt;}
.y24e{bottom:30.240000pt;}
.y29d{bottom:30.400000pt;}
.y188{bottom:30.560000pt;}
.y1b3{bottom:31.040000pt;}
.y1d1{bottom:31.200000pt;}
.y2a7{bottom:31.680000pt;}
.y296{bottom:31.720000pt;}
.y1af{bottom:32.960000pt;}
.y17d{bottom:33.440000pt;}
.y269{bottom:33.466667pt;}
.y182{bottom:33.600000pt;}
.y1ad{bottom:33.626667pt;}
.y229{bottom:33.640000pt;}
.y2a5{bottom:34.240000pt;}
.y2c1{bottom:34.720000pt;}
.y1f6{bottom:35.040000pt;}
.y1bc{bottom:36.160000pt;}
.y1da{bottom:36.186667pt;}
.y1bd{bottom:36.320000pt;}
.y1c0{bottom:36.346667pt;}
.y457{bottom:38.880000pt;}
.y4ba{bottom:38.906667pt;}
.y45d{bottom:38.920000pt;}
.y454{bottom:39.040000pt;}
.y450{bottom:39.066667pt;}
.y464{bottom:39.080000pt;}
.y2a0{bottom:40.320000pt;}
.y2ae{bottom:40.474667pt;}
.y28e{bottom:40.480000pt;}
.y297{bottom:40.520000pt;}
.y294{bottom:40.840000pt;}
.y4a0{bottom:40.960000pt;}
.y2be{bottom:43.520000pt;}
.y24c{bottom:45.600000pt;}
.y2c0{bottom:46.720000pt;}
.y1b0{bottom:47.680000pt;}
.y17b{bottom:48.800000pt;}
.y266{bottom:48.826667pt;}
.y181{bottom:48.960000pt;}
.y18b{bottom:48.986667pt;}
.y196{bottom:49.000000pt;}
.y1f2{bottom:50.400000pt;}
.y21{bottom:51.040000pt;}
.y211{bottom:51.200000pt;}
.y460{bottom:51.360000pt;}
.y4a5{bottom:53.280000pt;}
.y214{bottom:56.480000pt;}
.y2c4{bottom:58.080000pt;}
.y298{bottom:58.120000pt;}
.y293{bottom:58.440000pt;}
.y24d{bottom:60.960000pt;}
.y4b6{bottom:63.360000pt;}
.y453{bottom:63.520000pt;}
.y44f{bottom:63.546667pt;}
.y45c{bottom:63.560000pt;}
.y17c{bottom:64.160000pt;}
.y268{bottom:64.186667pt;}
.y2e5{bottom:64.320000pt;}
.y49f{bottom:65.440000pt;}
.y1f5{bottom:65.760000pt;}
.y20{bottom:67.200000pt;}
.y210{bottom:67.392000pt;}
.y292{bottom:76.200000pt;}
.y4a4{bottom:77.760000pt;}
.y267{bottom:79.386667pt;}
.y17e{bottom:79.520000pt;}
.y18a{bottom:79.546667pt;}
.y185{bottom:79.560000pt;}
.y1f1{bottom:81.120000pt;}
.y46d{bottom:88.000000pt;}
.y4af{bottom:88.026667pt;}
.y45f{bottom:88.160000pt;}
.y44e{bottom:88.186667pt;}
.y49e{bottom:90.080000pt;}
.y291{bottom:93.800000pt;}
.y1f4{bottom:96.480000pt;}
.y2f7{bottom:97.120000pt;}
.y2f6{bottom:97.920000pt;}
.y3cf{bottom:98.720000pt;}
.yf3{bottom:100.640000pt;}
.y49c{bottom:100.800000pt;}
.y199{bottom:102.080000pt;}
.y4a3{bottom:102.240000pt;}
.y1a2{bottom:103.360000pt;}
.y58{bottom:103.680000pt;}
.y2e3{bottom:104.640000pt;}
.y2b4{bottom:109.152000pt;}
.y18d{bottom:110.080000pt;}
.y193{bottom:110.106667pt;}
.y184{bottom:110.120000pt;}
.y19c{bottom:110.240000pt;}
.y190{bottom:110.280000pt;}
.ye9{bottom:110.880000pt;}
.y1f0{bottom:111.680000pt;}
.y4bf{bottom:112.320000pt;}
.y4ae{bottom:112.506667pt;}
.y44d{bottom:112.666667pt;}
.y4a1{bottom:114.560000pt;}
.yb6{bottom:115.360000pt;}
.yd0{bottom:117.120000pt;}
.y401{bottom:118.400000pt;}
.y28b{bottom:122.112000pt;}
.y2ac{bottom:122.752000pt;}
.y224{bottom:122.912000pt;}
.y155{bottom:123.040000pt;}
.y409{bottom:123.520000pt;}
.y3ce{bottom:124.000000pt;}
.y49b{bottom:124.800000pt;}
.yf2{bottom:126.080000pt;}
.y382{bottom:126.400000pt;}
.y189{bottom:127.040000pt;}
.y41c{bottom:127.200000pt;}
.y3ed{bottom:128.800000pt;}
.y75{bottom:129.280000pt;}
.y366{bottom:129.760000pt;}
.y126{bottom:131.040000pt;}
.y33a{bottom:131.840000pt;}
.y1f{bottom:133.120000pt;}
.y1bf{bottom:133.440000pt;}
.y1d9{bottom:133.760000pt;}
.y4b4{bottom:134.080000pt;}
.y96{bottom:134.400000pt;}
.y2b3{bottom:135.226667pt;}
.y57{bottom:135.680000pt;}
.y418{bottom:136.000000pt;}
.y3b{bottom:136.160000pt;}
.y328{bottom:136.480000pt;}
.y44c{bottom:137.146667pt;}
.y312{bottom:137.760000pt;}
.yb5{bottom:140.640000pt;}
.y19b{bottom:140.800000pt;}
.y19f{bottom:140.840000pt;}
.y1a1{bottom:140.960000pt;}
.y18f{bottom:141.000000pt;}
.y28a{bottom:141.440000pt;}
.y39f{bottom:142.880000pt;}
.y3b3{bottom:144.160000pt;}
.y142{bottom:144.320000pt;}
.y392{bottom:145.440000pt;}
.ye8{bottom:146.880000pt;}
.y400{bottom:148.320000pt;}
.y154{bottom:148.640000pt;}
.y3cd{bottom:149.280000pt;}
.y107{bottom:149.760000pt;}
.yf1{bottom:151.360000pt;}
.y381{bottom:151.680000pt;}
.ycf{bottom:153.120000pt;}
.y408{bottom:153.600000pt;}
.y25a{bottom:153.920000pt;}
.y3ec{bottom:154.080000pt;}
.y365{bottom:155.200000pt;}
.y41b{bottom:157.280000pt;}
.y34b{bottom:159.040000pt;}
.y74{bottom:159.360000pt;}
.y1e{bottom:160.000000pt;}
.y468{bottom:160.640000pt;}
.y47a{bottom:160.960000pt;}
.y2b2{bottom:161.146667pt;}
.y4ad{bottom:161.626667pt;}
.y44b{bottom:161.786667pt;}
.y327{bottom:161.920000pt;}
.y44a{bottom:162.240000pt;}
.y95{bottom:164.320000pt;}
.y1a0{bottom:165.306667pt;}
.y417{bottom:165.946667pt;}
.y434{bottom:166.426667pt;}
.y125{bottom:167.066667pt;}
.y56{bottom:167.706667pt;}
.y141{bottom:169.626667pt;}
.y252{bottom:170.426667pt;}
.y391{bottom:170.906667pt;}
.y3a{bottom:172.186667pt;}
.y1ef{bottom:172.346667pt;}
.y49a{bottom:172.506667pt;}
.y311{bottom:173.786667pt;}
.y153{bottom:173.946667pt;}
.y3cc{bottom:174.746667pt;}
.y16b{bottom:174.906667pt;}
.y106{bottom:176.346667pt;}
.yb4{bottom:176.506667pt;}
.yf0{bottom:176.666667pt;}
.y20d{bottom:176.986667pt;}
.y20e{bottom:177.626667pt;}
.y3ff{bottom:178.426667pt;}
.y39e{bottom:178.906667pt;}
.y289{bottom:179.066667pt;}
.y3eb{bottom:179.386667pt;}
.y364{bottom:180.666667pt;}
.ye7{bottom:182.906667pt;}
.y1d8{bottom:183.066667pt;}
.y407{bottom:183.546667pt;}
.y34a{bottom:184.506667pt;}
.y1d{bottom:186.746667pt;}
.y2b1{bottom:187.226667pt;}
.yce{bottom:188.986667pt;}
.y73{bottom:189.306667pt;}
.y94{bottom:189.786667pt;}
.y339{bottom:190.586667pt;}
.y479{bottom:190.906667pt;}
.y124{bottom:192.506667pt;}
.y55{bottom:193.146667pt;}
.y198{bottom:194.746667pt;}
.y140{bottom:194.906667pt;}
.y416{bottom:196.026667pt;}
.y390{bottom:196.186667pt;}
.y433{bottom:196.506667pt;}
.y2f5{bottom:198.106667pt;}
.y152{bottom:199.226667pt;}
.y3b2{bottom:199.546667pt;}
.y3cb{bottom:200.026667pt;}
.yb3{bottom:201.946667pt;}
.y380{bottom:202.266667pt;}
.y20c{bottom:202.426667pt;}
.y105{bottom:203.866667pt;}
.y3ea{bottom:204.666667pt;}
.y363{bottom:205.946667pt;}
.y39{bottom:208.186667pt;}
.y3fe{bottom:208.346667pt;}
.y251{bottom:208.506667pt;}
.y310{bottom:209.626667pt;}
.y349{bottom:209.786667pt;}
.y16a{bottom:210.906667pt;}
.y4be{bottom:211.066667pt;}
.y355{bottom:212.506667pt;}
.y2b0{bottom:213.146667pt;}
.y41a{bottom:213.306667pt;}
.y1c{bottom:213.626667pt;}
.y223{bottom:213.786667pt;}
.y39d{bottom:214.906667pt;}
.y259{bottom:215.386667pt;}
.y326{bottom:215.706667pt;}
.y288{bottom:216.506667pt;}
.y123{bottom:217.786667pt;}
.y93{bottom:218.746667pt;}
.ye6{bottom:218.906667pt;}
.y72{bottom:219.226667pt;}
.y187{bottom:219.866667pt;}
.y13f{bottom:220.186667pt;}
.y499{bottom:220.346667pt;}
.y478{bottom:220.986667pt;}
.y237{bottom:224.226667pt;}
.y151{bottom:224.506667pt;}
.y54{bottom:224.986667pt;}
.y3ca{bottom:225.306667pt;}
.y415{bottom:225.946667pt;}
.y38f{bottom:226.106667pt;}
.y432{bottom:226.426667pt;}
.yb2{bottom:227.226667pt;}
.y37f{bottom:227.546667pt;}
.y20b{bottom:227.706667pt;}
.y2a9{bottom:229.026667pt;}
.y3b1{bottom:229.466667pt;}
.y3e9{bottom:229.946667pt;}
.y362{bottom:231.226667pt;}
.y104{bottom:231.546667pt;}
.y2e2{bottom:232.026667pt;}
.y1be{bottom:232.186667pt;}
.y1d7{bottom:232.506667pt;}
.y467{bottom:234.906667pt;}
.y30f{bottom:235.066667pt;}
.y348{bottom:235.226667pt;}
.y354{bottom:237.946667pt;}
.y3fd{bottom:238.426667pt;}
.y1b{bottom:240.506667pt;}
.y258{bottom:240.666667pt;}
.y325{bottom:242.906667pt;}
.y122{bottom:243.226667pt;}
.y406{bottom:243.546667pt;}
.y38{bottom:244.186667pt;}
.y498{bottom:244.346667pt;}
.y338{bottom:244.986667pt;}
.y169{bottom:246.906667pt;}
.y2af{bottom:246.946667pt;}
.y92{bottom:247.546667pt;}
.y71{bottom:249.306667pt;}
.y150{bottom:249.786667pt;}
.y53{bottom:250.426667pt;}
.y3c9{bottom:250.586667pt;}
.y39c{bottom:250.906667pt;}
.yb1{bottom:252.506667pt;}
.y37e{bottom:252.986667pt;}
.y287{bottom:254.106667pt;}
.ye5{bottom:254.746667pt;}
.y2e1{bottom:255.066667pt;}
.y3e8{bottom:255.226667pt;}
.y13e{bottom:256.026667pt;}
.y361{bottom:256.506667pt;}
.y197{bottom:256.666667pt;}
.y221{bottom:258.146667pt;}
.y103{bottom:259.066667pt;}
.y3b0{bottom:259.546667pt;}
.y2cc{bottom:260.066667pt;}
.y2f4{bottom:260.186667pt;}
.y30e{bottom:260.506667pt;}
.y2ca{bottom:260.706667pt;}
.ycd{bottom:260.986667pt;}
.yef{bottom:263.066667pt;}
.y353{bottom:263.226667pt;}
.y20a{bottom:263.546667pt;}
.y2a6{bottom:263.746667pt;}
.y41e{bottom:263.866667pt;}
.y1ed{bottom:264.986667pt;}
.y257{bottom:265.946667pt;}
.y1a{bottom:267.386667pt;}
.y497{bottom:268.186667pt;}
.y3fc{bottom:268.346667pt;}
.y121{bottom:268.506667pt;}
.y324{bottom:270.106667pt;}
.y24f{bottom:270.426667pt;}
.y236{bottom:270.946667pt;}
.y337{bottom:272.186667pt;}
.y405{bottom:273.626667pt;}
.y14f{bottom:275.066667pt;}
.y3c8{bottom:275.866667pt;}
.y91{bottom:276.346667pt;}
.y70{bottom:279.226667pt;}
.y37{bottom:280.186667pt;}
.y3e7{bottom:280.506667pt;}
.y477{bottom:280.986667pt;}
.y13d{bottom:281.466667pt;}
.y1d6{bottom:281.786667pt;}
.y52{bottom:282.266667pt;}
.y168{bottom:282.906667pt;}
.y2e0{bottom:283.706667pt;}
.y30d{bottom:285.786667pt;}
.y414{bottom:285.946667pt;}
.y38e{bottom:286.106667pt;}
.y431{bottom:286.426667pt;}
.y102{bottom:286.746667pt;}
.yb0{bottom:288.346667pt;}
.yee{bottom:288.506667pt;}
.y37d{bottom:288.666667pt;}
.y209{bottom:288.986667pt;}
.y3af{bottom:289.466667pt;}
.ye4{bottom:290.746667pt;}
.y286{bottom:291.546667pt;}
.y496{bottom:292.026667pt;}
.y120{bottom:293.786667pt;}
.y19{bottom:294.266667pt;}
.y256{bottom:295.706667pt;}
.ycc{bottom:296.986667pt;}
.y323{bottom:297.306667pt;}
.y3fb{bottom:298.266667pt;}
.y2c9{bottom:298.946667pt;}
.y336{bottom:299.386667pt;}
.y3c7{bottom:301.146667pt;}
.y220{bottom:302.306667pt;}
.y404{bottom:303.546667pt;}
.y90{bottom:305.306667pt;}
.y3e6{bottom:305.786667pt;}
.y13c{bottom:306.746667pt;}
.y360{bottom:307.066667pt;}
.y4b3{bottom:307.226667pt;}
.y466{bottom:309.146667pt;}
.y6f{bottom:309.306667pt;}
.y4bd{bottom:309.946667pt;}
.y14e{bottom:310.906667pt;}
.y30c{bottom:311.066667pt;}
.y183{bottom:312.506667pt;}
.yaf{bottom:313.786667pt;}
.y51{bottom:314.106667pt;}
.y101{bottom:314.266667pt;}
.y413{bottom:315.866667pt;}
.y36{bottom:316.026667pt;}
.y430{bottom:316.506667pt;}
.y2a4{bottom:317.346667pt;}
.y235{bottom:317.666667pt;}
.y167{bottom:318.746667pt;}
.y11f{bottom:319.066667pt;}
.y19e{bottom:319.386667pt;}
.y2df{bottom:319.546667pt;}
.y1ec{bottom:320.026667pt;}
.y18{bottom:321.146667pt;}
.y2f3{bottom:322.106667pt;}
.y39b{bottom:322.746667pt;}
.y322{bottom:324.506667pt;}
.y3c6{bottom:326.426667pt;}
.y335{bottom:326.586667pt;}
.ye3{bottom:326.746667pt;}
.y285{bottom:327.546667pt;}
.y3fa{bottom:328.346667pt;}
.y1ba{bottom:330.906667pt;}
.y1d5{bottom:331.066667pt;}
.y3e5{bottom:331.226667pt;}
.y13b{bottom:332.186667pt;}
.ycb{bottom:332.826667pt;}
.y270{bottom:332.866667pt;}
.y403{bottom:333.466667pt;}
.y8f{bottom:334.106667pt;}
.y14d{bottom:336.346667pt;}
.yae{bottom:339.066667pt;}
.y6e{bottom:339.226667pt;}
.y50{bottom:339.546667pt;}
.y495{bottom:339.866667pt;}
.y476{bottom:340.826667pt;}
.y100{bottom:341.946667pt;}
.y35f{bottom:342.906667pt;}
.y26f{bottom:344.026667pt;}
.y11e{bottom:344.346667pt;}
.y26d{bottom:344.666667pt;}
.y2de{bottom:344.986667pt;}
.y412{bottom:345.946667pt;}
.y38d{bottom:346.106667pt;}
.y42f{bottom:346.426667pt;}
.y347{bottom:346.906667pt;}
.y30b{bottom:348.346667pt;}
.y449{bottom:348.506667pt;}
.y21f{bottom:349.026667pt;}
.y17{bottom:349.146667pt;}
.y195{bottom:349.306667pt;}
.y3ae{bottom:349.466667pt;}
.y208{bottom:350.106667pt;}
.y321{bottom:351.706667pt;}
.y35{bottom:352.026667pt;}
.y2c5{bottom:352.546667pt;}
.y419{bottom:354.266667pt;}
.y1eb{bottom:354.586667pt;}
.y166{bottom:354.746667pt;}
.y3e4{bottom:356.506667pt;}
.y13a{bottom:357.466667pt;}
.y3f9{bottom:358.266667pt;}
.y39a{bottom:358.746667pt;}
.y463{bottom:358.906667pt;}
.y334{bottom:360.186667pt;}
.y14c{bottom:361.626667pt;}
.ye2{bottom:362.746667pt;}
.y8e{bottom:363.066667pt;}
.y284{bottom:363.546667pt;}
.y232{bottom:364.226667pt;}
.yad{bottom:364.346667pt;}
.y37c{bottom:364.826667pt;}
.y35e{bottom:368.346667pt;}
.yca{bottom:368.826667pt;}
.y494{bottom:368.986667pt;}
.y6d{bottom:369.146667pt;}
.y11d{bottom:369.626667pt;}
.y1d2{bottom:370.426667pt;}
.y475{bottom:370.906667pt;}
.y4f{bottom:371.386667pt;}
.y346{bottom:372.346667pt;}
.y316{bottom:374.746667pt;}
.y352{bottom:374.906667pt;}
.y207{bottom:375.546667pt;}
.y411{bottom:375.866667pt;}
.y38c{bottom:376.026667pt;}
.y42e{bottom:376.346667pt;}
.y3c5{bottom:376.986667pt;}
.y16{bottom:377.306667pt;}
.yff{bottom:378.906667pt;}
.y320{bottom:379.106667pt;}
.y3ad{bottom:379.426667pt;}
.y1b7{bottom:380.226667pt;}
.y4b2{bottom:381.506667pt;}
.y3e3{bottom:381.826667pt;}
.y26c{bottom:382.946667pt;}
.y4bc{bottom:384.226667pt;}
.y30a{bottom:385.986667pt;}
.y14b{bottom:386.946667pt;}
.y139{bottom:387.266667pt;}
.y493{bottom:387.426667pt;}
.y34{bottom:388.066667pt;}
.y3f8{bottom:388.386667pt;}
.yac{bottom:389.666667pt;}
.y37b{bottom:390.146667pt;}
.y1ea{bottom:390.466667pt;}
.y165{bottom:390.786667pt;}
.y2c3{bottom:390.813333pt;}
.y8d{bottom:391.906667pt;}
.y474{bottom:393.186667pt;}
.y35d{bottom:393.666667pt;}
.y2a2{bottom:393.693333pt;}
.y333{bottom:394.786667pt;}
.y11c{bottom:394.946667pt;}
.y2dd{bottom:395.746667pt;}
.y21c{bottom:395.773333pt;}
.y4e{bottom:396.866667pt;}
.ye1{bottom:398.786667pt;}
.y6c{bottom:399.266667pt;}
.y283{bottom:399.426667pt;}
.y2f2{bottom:400.226667pt;}
.y24a{bottom:400.386667pt;}
.y206{bottom:400.866667pt;}
.y3f6{bottom:401.506667pt;}
.y3c4{bottom:402.466667pt;}
.y15{bottom:404.066667pt;}
.yc9{bottom:404.866667pt;}
.y38b{bottom:405.986667pt;}
.y31f{bottom:406.306667pt;}
.y42d{bottom:406.466667pt;}
.y3e2{bottom:407.106667pt;}
.y345{bottom:408.226667pt;}
.y462{bottom:408.706667pt;}
.y3ac{bottom:409.506667pt;}
.y314{bottom:410.946667pt;}
.y22e{bottom:410.973333pt;}
.y1d0{bottom:411.266667pt;}
.y473{bottom:411.586667pt;}
.y138{bottom:412.706667pt;}
.y33{bottom:413.506667pt;}
.yfe{bottom:414.786667pt;}
.yab{bottom:414.946667pt;}
.y37a{bottom:415.426667pt;}
.y1e9{bottom:416.066667pt;}
.y492{bottom:416.546667pt;}
.y35c{bottom:418.946667pt;}
.y1b4{bottom:419.586667pt;}
.y11b{bottom:420.226667pt;}
.y8c{bottom:420.706667pt;}
.y2dc{bottom:421.026667pt;}
.y14a{bottom:422.786667pt;}
.y309{bottom:423.426667pt;}
.y332{bottom:424.866667pt;}
.y351{bottom:425.666667pt;}
.y205{bottom:426.146667pt;}
.y164{bottom:426.786667pt;}
.y3c3{bottom:427.746667pt;}
.y4d{bottom:428.706667pt;}
.y6b{bottom:429.186667pt;}
.y472{bottom:429.986667pt;}
.y448{bottom:430.626667pt;}
.y399{bottom:430.786667pt;}
.y4b1{bottom:431.266667pt;}
.y29e{bottom:431.773333pt;}
.y3e1{bottom:432.386667pt;}
.y31e{bottom:433.506667pt;}
.y344{bottom:433.666667pt;}
.y14{bottom:434.306667pt;}
.ye0{bottom:434.626667pt;}
.y2f1{bottom:434.946667pt;}
.y282{bottom:435.426667pt;}
.y180{bottom:435.746667pt;}
.y410{bottom:435.906667pt;}
.y38a{bottom:436.066667pt;}
.y42c{bottom:436.386667pt;}
.y3f5{bottom:437.346667pt;}
.y32{bottom:438.786667pt;}
.y3ab{bottom:439.426667pt;}
.yaa{bottom:440.386667pt;}
.yc8{bottom:440.866667pt;}
.y1e8{bottom:441.346667pt;}
.y194{bottom:441.986667pt;}
.y21b{bottom:442.333333pt;}
.y26b{bottom:445.026667pt;}
.y491{bottom:445.506667pt;}
.y313{bottom:447.106667pt;}
.y471{bottom:448.386667pt;}
.y137{bottom:448.546667pt;}
.y447{bottom:449.026667pt;}
.y8b{bottom:449.666667pt;}
.yfd{bottom:450.786667pt;}
.y350{bottom:450.946667pt;}
.y41d{bottom:451.106667pt;}
.y379{bottom:451.266667pt;}
.y22d{bottom:451.773333pt;}
.y3c2{bottom:453.026667pt;}
.y331{bottom:454.786667pt;}
.y1cf{bottom:455.586667pt;}
.y11a{bottom:456.066667pt;}
.y2db{bottom:456.866667pt;}
.y3e0{bottom:457.666667pt;}
.y149{bottom:458.786667pt;}
.y470{bottom:459.106667pt;}
.y6a{bottom:459.266667pt;}
.y1b1{bottom:460.386667pt;}
.y4c{bottom:460.706667pt;}
.y281{bottom:460.866667pt;}
.y308{bottom:461.026667pt;}
.y2bc{bottom:462.013333pt;}
.y163{bottom:462.786667pt;}
.y204{bottom:463.586667pt;}
.y31{bottom:464.066667pt;}
.ya9{bottom:465.666667pt;}
.y389{bottom:465.986667pt;}
.y42b{bottom:466.466667pt;}
.y398{bottom:466.626667pt;}
.y249{bottom:469.346667pt;}
.y2f0{bottom:469.666667pt;}
.ydf{bottom:470.626667pt;}
.y13{bottom:470.946667pt;}
.y19d{bottom:473.346667pt;}
.y490{bottom:474.626667pt;}
.yfc{bottom:476.226667pt;}
.y378{bottom:476.706667pt;}
.yc7{bottom:476.866667pt;}
.y1e7{bottom:477.026667pt;}
.y446{bottom:477.986667pt;}
.y3c1{bottom:478.306667pt;}
.y35b{bottom:480.226667pt;}
.y4b0{bottom:481.026667pt;}
.y119{bottom:481.506667pt;}
.y2da{bottom:482.306667pt;}
.y3df{bottom:482.946667pt;}
.y148{bottom:484.226667pt;}
.y136{bottom:484.546667pt;}
.y299{bottom:485.373333pt;}
.y8a{bottom:485.506667pt;}
.y31d{bottom:487.906667pt;}
.y203{bottom:489.026667pt;}
.y219{bottom:489.053333pt;}
.y69{bottom:489.186667pt;}
.y330{bottom:490.786667pt;}
.ya8{bottom:490.946667pt;}
.y40f{bottom:491.426667pt;}
.y4b{bottom:492.706667pt;}
.y3aa{bottom:494.946667pt;}
.y388{bottom:496.066667pt;}
.y42a{bottom:496.386667pt;}
.y280{bottom:496.706667pt;}
.y17a{bottom:497.826667pt;}
.y307{bottom:498.466667pt;}
.y22c{bottom:498.493333pt;}
.y162{bottom:498.626667pt;}
.y30{bottom:499.906667pt;}
.y89{bottom:500.066667pt;}
.yed{bottom:501.346667pt;}
.yfb{bottom:501.506667pt;}
.y377{bottom:501.986667pt;}
.y1e6{bottom:502.626667pt;}
.y3c0{bottom:503.586667pt;}
.y48f{bottom:503.746667pt;}
.y248{bottom:503.906667pt;}
.y192{bottom:504.066667pt;}
.y2ef{bottom:504.386667pt;}
.y1ae{bottom:504.706667pt;}
.y343{bottom:505.346667pt;}
.y35a{bottom:505.506667pt;}
.yde{bottom:506.626667pt;}
.y118{bottom:506.786667pt;}
.y26a{bottom:506.946667pt;}
.y445{bottom:507.106667pt;}
.y2d9{bottom:507.586667pt;}
.y3de{bottom:508.226667pt;}
.y3f4{bottom:509.346667pt;}
.y12{bottom:509.986667pt;}
.yc6{bottom:512.706667pt;}
.y202{bottom:514.306667pt;}
.yd4{bottom:516.226667pt;}
.y1ce{bottom:516.546667pt;}
.y40e{bottom:516.706667pt;}
.y68{bottom:519.266667pt;}
.y147{bottom:520.066667pt;}
.y3a9{bottom:520.226667pt;}
.y27f{bottom:522.146667pt;}
.y31c{bottom:522.466667pt;}
.y2ba{bottom:522.493333pt;}
.y4a{bottom:524.546667pt;}
.y88{bottom:525.986667pt;}
.y429{bottom:526.466667pt;}
.ya7{bottom:526.786667pt;}
.yec{bottom:526.946667pt;}
.y376{bottom:527.266667pt;}
.y1e5{bottom:527.906667pt;}
.y3bf{bottom:528.866667pt;}
.y290{bottom:528.893333pt;}
.y342{bottom:530.786667pt;}
.y117{bottom:532.066667pt;}
.y461{bottom:532.706667pt;}
.y2d8{bottom:532.866667pt;}
.y46f{bottom:533.346667pt;}
.y3dd{bottom:533.506667pt;}
.y161{bottom:534.626667pt;}
.y135{bottom:535.266667pt;}
.y216{bottom:535.773333pt;}
.y444{bottom:536.226667pt;}
.y397{bottom:538.626667pt;}
.y2ee{bottom:539.106667pt;}
.y247{bottom:539.746667pt;}
.y2b8{bottom:540.733333pt;}
.y2f{bottom:541.186667pt;}
.y306{bottom:541.346667pt;}
.yc5{bottom:541.826667pt;}
.ydd{bottom:542.626667pt;}
.y11{bottom:543.266667pt;}
.y228{bottom:545.053333pt;}
.y3f3{bottom:545.346667pt;}
.y3a8{bottom:545.506667pt;}
.y27e{bottom:547.426667pt;}
.y67{bottom:549.186667pt;}
.y28c{bottom:550.341333pt;}
.y48e{bottom:551.106667pt;}
.y40d{bottom:551.586667pt;}
.y87{bottom:551.906667pt;}
.yd3{bottom:552.066667pt;}
.ya6{bottom:552.226667pt;}
.y375{bottom:552.546667pt;}
.y3be{bottom:554.146667pt;}
.y4ac{bottom:555.266667pt;}
.y146{bottom:555.906667pt;}
.y341{bottom:556.066667pt;}
.y428{bottom:556.386667pt;}
.y49{bottom:556.546667pt;}
.y2d7{bottom:558.146667pt;}
.y3dc{bottom:558.946667pt;}
.y134{bottom:560.546667pt;}
.y34f{bottom:562.626667pt;}
.y1e4{bottom:563.586667pt;}
.y201{bottom:564.386667pt;}
.y246{bottom:565.186667pt;}
.y1ac{bottom:565.506667pt;}
.y116{bottom:567.906667pt;}
.y31b{bottom:568.866667pt;}
.y265{bottom:569.026667pt;}
.y10{bottom:570.146667pt;}
.yc4{bottom:570.626667pt;}
.y3a7{bottom:570.786667pt;}
.y305{bottom:571.906667pt;}
.y27d{bottom:572.706667pt;}
.y396{bottom:574.626667pt;}
.ya5{bottom:577.506667pt;}
.y374{bottom:577.826667pt;}
.y86{bottom:577.986667pt;}
.ydc{bottom:578.466667pt;}
.y66{bottom:579.106667pt;}
.y3bd{bottom:579.426667pt;}
.y2e{bottom:579.906667pt;}
.y213{bottom:579.973333pt;}
.y48d{bottom:580.226667pt;}
.y3f2{bottom:581.346667pt;}
.y387{bottom:581.506667pt;}
.y4b9{bottom:581.826667pt;}
.y2d6{bottom:583.426667pt;}
.y443{bottom:583.586667pt;}
.y3db{bottom:584.226667pt;}
.y133{bottom:585.826667pt;}
.y427{bottom:586.306667pt;}
.y34e{bottom:588.066667pt;}
.y48{bottom:588.546667pt;}
.y1e3{bottom:589.186667pt;}
.y245{bottom:590.626667pt;}
.y227{bottom:591.813333pt;}
.y145{bottom:591.906667pt;}
.y115{bottom:593.346667pt;}
.y2b7{bottom:594.373333pt;}
.y3a6{bottom:596.093333pt;}
.y19a{bottom:596.733333pt;}
.yf{bottom:597.053333pt;}
.y27c{bottom:598.173333pt;}
.y48c{bottom:598.653333pt;}
.y31a{bottom:598.813333pt;}
.yc3{bottom:599.613333pt;}
.y28d{bottom:600.133333pt;}
.y2ed{bottom:601.053333pt;}
.ya4{bottom:602.813333pt;}
.y85{bottom:603.933333pt;}
.y3bc{bottom:604.733333pt;}
.y304{bottom:606.493333pt;}
.y160{bottom:606.653333pt;}
.y386{bottom:606.813333pt;}
.y200{bottom:606.973333pt;}
.y46e{bottom:607.613333pt;}
.y179{bottom:608.733333pt;}
.y65{bottom:609.213333pt;}
.y3da{bottom:609.533333pt;}
.y395{bottom:610.493333pt;}
.y442{bottom:612.733333pt;}
.y34d{bottom:613.533333pt;}
.y373{bottom:613.693333pt;}
.ydb{bottom:614.493333pt;}
.y244{bottom:615.933333pt;}
.y426{bottom:616.413333pt;}
.y48b{bottom:617.053333pt;}
.y3f1{bottom:617.213333pt;}
.y144{bottom:617.373333pt;}
.y114{bottom:618.653333pt;}
.y2d5{bottom:619.293333pt;}
.y47{bottom:620.573333pt;}
.y3a5{bottom:621.373333pt;}
.y132{bottom:621.693333pt;}
.y27b{bottom:623.453333pt;}
.y2d{bottom:623.773333pt;}
.ye{bottom:627.293333pt;}
.y191{bottom:627.453333pt;}
.ya3{bottom:628.093333pt;}
.yc2{bottom:628.413333pt;}
.y2b6{bottom:629.093333pt;}
.y84{bottom:629.853333pt;}
.y3bb{bottom:630.173333pt;}
.y441{bottom:631.133333pt;}
.y1cd{bottom:631.293333pt;}
.y15f{bottom:632.093333pt;}
.y3d9{bottom:634.813333pt;}
.y48a{bottom:635.453333pt;}
.y226{bottom:636.133333pt;}
.y319{bottom:636.413333pt;}
.yfa{bottom:638.653333pt;}
.y34c{bottom:638.813333pt;}
.y64{bottom:639.133333pt;}
.y243{bottom:641.213333pt;}
.y303{bottom:642.493333pt;}
.y340{bottom:642.653333pt;}
.y178{bottom:643.133333pt;}
.y113{bottom:644.093333pt;}
.y2d4{bottom:644.733333pt;}
.y1ab{bottom:645.853333pt;}
.y425{bottom:646.333333pt;}
.y394{bottom:646.493333pt;}
.y3a4{bottom:646.653333pt;}
.y131{bottom:647.133333pt;}
.y1ff{bottom:649.533333pt;}
.y1e2{bottom:650.173333pt;}
.yda{bottom:650.493333pt;}
.y46{bottom:652.573333pt;}
.y143{bottom:653.213333pt;}
.ya2{bottom:653.373333pt;}
.y2ec{bottom:653.853333pt;}
.y3ba{bottom:655.453333pt;}
.y83{bottom:655.933333pt;}
.y4b8{bottom:656.093333pt;}
.yc1{bottom:657.213333pt;}
.y15e{bottom:657.373333pt;}
.yd{bottom:658.013333pt;}
.y27a{bottom:659.133333pt;}
.y3d8{bottom:660.093333pt;}
.y2b5{bottom:663.813333pt;}
.yf9{bottom:664.093333pt;}
.y372{bottom:664.413333pt;}
.y1cc{bottom:667.133333pt;}
.y2c{bottom:667.773333pt;}
.y212{bottom:667.813333pt;}
.y302{bottom:667.933333pt;}
.y33f{bottom:668.093333pt;}
.y63{bottom:669.213333pt;}
.y2d3{bottom:670.013333pt;}
.y3a3{bottom:671.933333pt;}
.y489{bottom:672.253333pt;}
.y130{bottom:672.413333pt;}
.y318{bottom:674.013333pt;}
.y1e1{bottom:675.773333pt;}
.y424{bottom:676.413333pt;}
.y242{bottom:677.053333pt;}
.y264{bottom:677.693333pt;}
.ya1{bottom:678.653333pt;}
.y177{bottom:679.133333pt;}
.y112{bottom:679.773333pt;}
.y402{bottom:680.093333pt;}
.y1aa{bottom:680.253333pt;}
.y3b9{bottom:680.733333pt;}
.y45e{bottom:681.213333pt;}
.y82{bottom:681.853333pt;}
.y393{bottom:682.493333pt;}
.y385{bottom:682.653333pt;}
.y45{bottom:684.413333pt;}
.y279{bottom:684.733333pt;}
.yc{bottom:684.893333pt;}
.y3d7{bottom:685.373333pt;}
.yc0{bottom:686.173333pt;}
.yd9{bottom:686.493333pt;}
.y2eb{bottom:688.573333pt;}
.y3f0{bottom:689.213333pt;}
.yf8{bottom:689.373333pt;}
.y1cb{bottom:692.573333pt;}
.y15d{bottom:693.213333pt;}
.y33e{bottom:693.373333pt;}
.y2d2{bottom:695.293333pt;}
.y440{bottom:697.053333pt;}
.y12f{bottom:697.693333pt;}
.y371{bottom:700.253333pt;}
.y62{bottom:701.053333pt;}
.y488{bottom:701.213333pt;}
.y241{bottom:702.493333pt;}
.y359{bottom:703.773333pt;}
.yd2{bottom:703.933333pt;}
.y176{bottom:704.573333pt;}
.y111{bottom:705.213333pt;}
.y1e0{bottom:705.533333pt;}
.y3b8{bottom:706.013333pt;}
.y423{bottom:706.333333pt;}
.y46c{bottom:706.493333pt;}
.y81{bottom:707.773333pt;}
.y278{bottom:710.013333pt;}
.y3d6{bottom:710.653333pt;}
.y263{bottom:712.413333pt;}
.yb{bottom:712.893333pt;}
.ya0{bottom:714.493333pt;}
.yf7{bottom:714.653333pt;}
.ybf{bottom:714.973333pt;}
.y43f{bottom:715.453333pt;}
.y1a9{bottom:716.253333pt;}
.y44{bottom:716.413333pt;}
.y2b{bottom:717.053333pt;}
.y1ca{bottom:718.013333pt;}
.y384{bottom:718.493333pt;}
.y15c{bottom:718.653333pt;}
.y487{bottom:719.613333pt;}
.y2d1{bottom:720.573333pt;}
.yd8{bottom:722.493333pt;}
.y301{bottom:723.133333pt;}
.y3ef{bottom:725.213333pt;}
.y370{bottom:725.693333pt;}
.y240{bottom:727.773333pt;}
.y358{bottom:729.213333pt;}
.y175{bottom:729.853333pt;}
.y4b7{bottom:730.333333pt;}
.y1df{bottom:730.973333pt;}
.y3b7{bottom:731.293333pt;}
.y20f{bottom:732.640000pt;}
.y61{bottom:733.053333pt;}
.y12e{bottom:733.533333pt;}
.y80{bottom:733.693333pt;}
.y3d5{bottom:735.933333pt;}
.y422{bottom:736.413333pt;}
.yd1{bottom:739.773333pt;}
.y9f{bottom:739.933333pt;}
.y110{bottom:741.053333pt;}
.y4ab{bottom:741.533333pt;}
.y1a8{bottom:741.693333pt;}
.y43{bottom:741.853333pt;}
.y1c9{bottom:743.293333pt;}
.y3a2{bottom:743.773333pt;}
.ybe{bottom:743.933333pt;}
.ya{bottom:744.253333pt;}
.y43e{bottom:744.413333pt;}
.y277{bottom:745.693333pt;}
.y2d0{bottom:745.853333pt;}
.y262{bottom:747.133333pt;}
.y2a{bottom:747.773333pt;}
.y300{bottom:748.573333pt;}
.y486{bottom:748.733333pt;}
.y2ea{bottom:750.493333pt;}
.y18e{bottom:750.653333pt;}
.y36f{bottom:750.973333pt;}
.y23f{bottom:753.053333pt;}
.y33d{bottom:754.493333pt;}
.y357{bottom:754.653333pt;}
.y174{bottom:755.293333pt;}
.y3b6{bottom:756.573333pt;}
.yd7{bottom:758.333333pt;}
.y12d{bottom:758.973333pt;}
.y7f{bottom:759.773333pt;}
.y1de{bottom:760.893333pt;}
.y3ee{bottom:761.053333pt;}
.y3d4{bottom:761.213333pt;}
.y43d{bottom:762.813333pt;}
.y60{bottom:765.053333pt;}
.y9e{bottom:765.213333pt;}
.y4aa{bottom:765.373333pt;}
.y421{bottom:766.333333pt;}
.y1a7{bottom:766.973333pt;}
.y485{bottom:767.133333pt;}
.y1c8{bottom:768.573333pt;}
.y15b{bottom:769.213333pt;}
.y276{bottom:771.293333pt;}
.ybd{bottom:772.733333pt;}
.y1fe{bottom:772.893333pt;}
.y29{bottom:773.213333pt;}
.y42{bottom:773.693333pt;}
.y9{bottom:774.173333pt;}
.y4a9{bottom:776.093333pt;}
.y10f{bottom:777.053333pt;}
.y23e{bottom:778.333333pt;}
.y3a1{bottom:779.773333pt;}
.y33c{bottom:779.933333pt;}
.y45b{bottom:780.093333pt;}
.y43c{bottom:781.213333pt;}
.y261{bottom:781.853333pt;}
.y12c{bottom:784.253333pt;}
.y484{bottom:785.533333pt;}
.y7e{bottom:785.693333pt;}
.y1dd{bottom:786.333333pt;}
.y3d3{bottom:786.653333pt;}
.y36e{bottom:786.813333pt;}
.y383{bottom:790.333333pt;}
.y9d{bottom:790.493333pt;}
.y173{bottom:790.973333pt;}
.y2e8{bottom:791.613333pt;}
.y1a6{bottom:792.253333pt;}
.y1c7{bottom:793.853333pt;}
.yd6{bottom:794.333333pt;}
.y420{bottom:796.253333pt;}
.y275{bottom:796.573333pt;}
.y5f{bottom:797.053333pt;}
.y41{bottom:799.133333pt;}
.y43b{bottom:799.613333pt;}
.yf6{bottom:801.053333pt;}
.y4a7{bottom:801.373333pt;}
.ybc{bottom:801.533333pt;}
.y10e{bottom:802.493333pt;}
.y483{bottom:803.933333pt;}
.y8{bottom:804.253333pt;}
.y15a{bottom:805.053333pt;}
.y356{bottom:805.213333pt;}
.y3b5{bottom:807.133333pt;}
.y28{bottom:809.093333pt;}
.y4c3{bottom:809.893333pt;}
.y7d{bottom:811.653333pt;}
.y3d2{bottom:811.973333pt;}
.y36d{bottom:812.293333pt;}
.y23d{bottom:814.213333pt;}
.y1fd{bottom:815.333333pt;}
.y33b{bottom:815.653333pt;}
.y9c{bottom:815.813333pt;}
.y1dc{bottom:816.133333pt;}
.y172{bottom:816.453333pt;}
.y260{bottom:816.613333pt;}
.y1c6{bottom:819.173333pt;}
.y12b{bottom:820.133333pt;}
.y2ff{bottom:820.293333pt;}
.y274{bottom:821.893333pt;}
.y32f{bottom:826.373333pt;}
.yf5{bottom:826.533333pt;}
.y10d{bottom:827.813333pt;}
.y1a5{bottom:828.133333pt;}
.y43a{bottom:828.773333pt;}
.y5e{bottom:829.093333pt;}
.y2e7{bottom:829.733333pt;}
.y4b5{bottom:829.893333pt;}
.yd5{bottom:830.373333pt;}
.ybb{bottom:830.533333pt;}
.y1db{bottom:830.693333pt;}
.y40{bottom:831.013333pt;}
.y4c2{bottom:831.973333pt;}
.y3b4{bottom:832.453333pt;}
.y482{bottom:833.093333pt;}
.y7{bottom:834.213333pt;}
.y3d1{bottom:837.253333pt;}
.y7b{bottom:837.573333pt;}
.y23c{bottom:839.653333pt;}
.y9b{bottom:841.253333pt;}
.y171{bottom:841.893333pt;}
.y1a4{bottom:842.693333pt;}
.y27{bottom:844.933333pt;}
.y12a{bottom:845.573333pt;}
.y2fe{bottom:845.733333pt;}
.y439{bottom:847.173333pt;}
.y36c{bottom:848.133333pt;}
.y4c1{bottom:850.373333pt;}
.y481{bottom:851.493333pt;}
.yeb{bottom:851.653333pt;}
.yf4{bottom:851.813333pt;}
.y10c{bottom:853.093333pt;}
.y45a{bottom:854.373333pt;}
.y273{bottom:857.733333pt;}
.y1fc{bottom:857.893333pt;}
.y5d{bottom:860.933333pt;}
.y32e{bottom:862.373333pt;}
.y3d0{bottom:862.533333pt;}
.y3f{bottom:863.013333pt;}
.y7a{bottom:863.653333pt;}
.y6{bottom:864.133333pt;}
.y23b{bottom:864.933333pt;}
.y1c5{bottom:865.413333pt;}
.y438{bottom:865.573333pt;}
.yba{bottom:866.373333pt;}
.y4c0{bottom:868.773333pt;}
.y480{bottom:869.893333pt;}
.y129{bottom:870.853333pt;}
.y2fd{bottom:871.013333pt;}
.y41f{bottom:876.133333pt;}
.y9a{bottom:876.933333pt;}
.yea{bottom:877.093333pt;}
.y170{bottom:877.573333pt;}
.y10b{bottom:878.373333pt;}
.y25d{bottom:878.533333pt;}
.y46a{bottom:879.493333pt;}
.y1c3{bottom:880.133333pt;}
.y26{bottom:880.933333pt;}
.y272{bottom:883.173333pt;}
.y36b{bottom:884.133333pt;}
.y32d{bottom:887.813333pt;}
.y47f{bottom:888.293333pt;}
.y79{bottom:889.573333pt;}
.y23a{bottom:890.213333pt;}
.y159{bottom:891.813333pt;}
.y5c{bottom:892.933333pt;}
.y5{bottom:894.213333pt;}
.y437{bottom:894.693333pt;}
.y3e{bottom:894.853333pt;}
.y2fc{bottom:896.453333pt;}
.y1fb{bottom:900.453333pt;}
.y128{bottom:900.773333pt;}
.yb9{bottom:902.213333pt;}
.y99{bottom:902.373333pt;}
.y16f{bottom:903.013333pt;}
.y456{bottom:904.133333pt;}
.y18c{bottom:904.773333pt;}
.y40c{bottom:907.333333pt;}
.y10a{bottom:908.293333pt;}
.y271{bottom:908.453333pt;}
.y36a{bottom:909.573333pt;}
.y2cf{bottom:912.933333pt;}
.y32c{bottom:913.093333pt;}
.y78{bottom:915.493333pt;}
.y25{bottom:916.933333pt;}
.y158{bottom:917.093333pt;}
.y47e{bottom:917.253333pt;}
.y5b{bottom:918.373333pt;}
.y2fb{bottom:921.733333pt;}
.y436{bottom:923.653333pt;}
.y4{bottom:924.133333pt;}
.y127{bottom:926.213333pt;}
.y3d{bottom:926.853333pt;}
.y3a0{bottom:927.653333pt;}
.y98{bottom:927.813333pt;}
.y1c2{bottom:929.413333pt;}
.y40b{bottom:930.373333pt;}
.y25b{bottom:931.333333pt;}
.y16e{bottom:932.933333pt;}
.y3f7{bottom:933.093333pt;}
.y109{bottom:933.733333pt;}
.y369{bottom:934.853333pt;}
.y2e4{bottom:935.333333pt;}
.y2ce{bottom:938.373333pt;}
.y76{bottom:941.573333pt;}
.y435{bottom:942.053333pt;}
.y157{bottom:942.373333pt;}
.y1f9{bottom:943.013333pt;}
.y47d{bottom:946.373333pt;}
.y2fa{bottom:947.013333pt;}
.y5a{bottom:950.213333pt;}
.y239{bottom:951.333333pt;}
.y24{bottom:952.933333pt;}
.y97{bottom:953.093333pt;}
.y452{bottom:953.733333pt;}
.y3{bottom:954.213333pt;}
.y16d{bottom:958.373333pt;}
.y3c{bottom:958.853333pt;}
.y108{bottom:959.013333pt;}
.y368{bottom:960.133333pt;}
.yb8{bottom:963.493333pt;}
.y2cd{bottom:963.653333pt;}
.y47c{bottom:964.773333pt;}
.y1a3{bottom:966.053333pt;}
.y156{bottom:978.213333pt;}
.y469{bottom:978.373333pt;}
.y1c1{bottom:978.693333pt;}
.y2f9{bottom:981.893333pt;}
.y59{bottom:982.213333pt;}
.y2{bottom:984.133333pt;}
.y40a{bottom:984.293333pt;}
.y1f7{bottom:985.573333pt;}
.y16c{bottom:986.213333pt;}
.y23{bottom:988.773333pt;}
.yb7{bottom:988.933333pt;}
.y47b{bottom:993.253333pt;}
.y367{bottom:995.973333pt;}
.y1{bottom:1014.213333pt;}
.y22{bottom:1014.373333pt;}
.y2f8{bottom:1015.653333pt;}
.y49d{bottom:1018.053333pt;}
.y238{bottom:1061.440000pt;}
.h47{height:2.670000pt;}
.h51{height:17.600000pt;}
.h5f{height:20.800000pt;}
.h6c{height:24.480000pt;}
.h6e{height:24.512000pt;}
.h6d{height:24.640000pt;}
.hb{height:25.280000pt;}
.hd{height:25.312000pt;}
.hc{height:25.440000pt;}
.h2c{height:33.120000pt;}
.h58{height:33.920000pt;}
.h41{height:34.080000pt;}
.h43{height:34.112000pt;}
.h5b{height:35.520000pt;}
.h5c{height:35.552000pt;}
.h3c{height:36.480000pt;}
.h3f{height:37.440000pt;}
.h56{height:37.472000pt;}
.h54{height:37.600000pt;}
.h45{height:37.632000pt;}
.h5d{height:37.760000pt;}
.h69{height:38.441250pt;}
.h9{height:38.715000pt;}
.h25{height:38.720000pt;}
.h13{height:39.917813pt;}
.h24{height:40.160000pt;}
.h2b{height:40.192000pt;}
.h57{height:40.480000pt;}
.h40{height:40.512000pt;}
.h2e{height:41.792000pt;}
.h2f{height:41.920000pt;}
.h30{height:41.952000pt;}
.h6a{height:42.052500pt;}
.h4c{height:42.880000pt;}
.h3e{height:43.040000pt;}
.h23{height:43.520000pt;}
.h36{height:43.552000pt;}
.h2a{height:43.680000pt;}
.h3a{height:43.712000pt;}
.h7{height:44.722500pt;}
.h37{height:45.920000pt;}
.h39{height:45.952000pt;}
.h38{height:46.080000pt;}
.h3b{height:46.112000pt;}
.h20{height:47.621250pt;}
.h28{height:48.640000pt;}
.h26{height:48.672000pt;}
.h27{height:48.800000pt;}
.h29{height:48.832000pt;}
.h62{height:48.960000pt;}
.h67{height:48.992000pt;}
.h65{height:49.120000pt;}
.h66{height:49.152000pt;}
.h4f{height:52.032000pt;}
.h42{height:52.160000pt;}
.hf{height:52.785000pt;}
.h4d{height:52.800000pt;}
.h49{height:52.960000pt;}
.h50{height:52.992000pt;}
.h11{height:55.402500pt;}
.h6{height:56.781562pt;}
.h2{height:58.563750pt;}
.h5e{height:58.740000pt;}
.h32{height:58.850000pt;}
.h52{height:59.200000pt;}
.h10{height:59.835000pt;}
.h22{height:60.160000pt;}
.h5a{height:60.288750pt;}
.h19{height:61.280000pt;}
.h1e{height:61.312000pt;}
.h8{height:61.410000pt;}
.h14{height:61.440000pt;}
.h21{height:61.472000pt;}
.h3{height:63.656250pt;}
.h5{height:64.920625pt;}
.he{height:65.781915pt;}
.h31{height:66.750000pt;}
.h35{height:68.960000pt;}
.h53{height:70.560000pt;}
.h4b{height:70.592000pt;}
.h70{height:73.440000pt;}
.h64{height:73.600000pt;}
.h61{height:73.632000pt;}
.h4{height:74.477812pt;}
.h4e{height:75.712000pt;}
.ha{height:81.595000pt;}
.h3d{height:85.472000pt;}
.h44{height:91.872000pt;}
.h12{height:92.000000pt;}
.h16{height:92.032000pt;}
.h68{height:98.080000pt;}
.h71{height:98.112000pt;}
.h63{height:98.240000pt;}
.h18{height:122.560000pt;}
.h15{height:122.592000pt;}
.h1f{height:122.720000pt;}
.h1b{height:122.752000pt;}
.h4a{height:124.192000pt;}
.h2d{height:125.760000pt;}
.h6b{height:126.560000pt;}
.h1a{height:153.280000pt;}
.h1c{height:153.306667pt;}
.h1d{height:153.440000pt;}
.h17{height:153.466667pt;}
.h6f{height:171.706667pt;}
.h60{height:171.866667pt;}
.h59{height:302.306667pt;}
.h46{height:332.866667pt;}
.h55{height:438.466667pt;}
.h48{height:562.813333pt;}
.h33{height:793.760000pt;}
.h34{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2b{width:15.040000pt;}
.w50{width:36.000000pt;}
.w39{width:48.320000pt;}
.w56{width:52.032000pt;}
.w29{width:54.400000pt;}
.w3a{width:55.360000pt;}
.w21{width:57.120000pt;}
.wc{width:57.600000pt;}
.w3b{width:57.952000pt;}
.w5d{width:59.072000pt;}
.w5c{width:59.200000pt;}
.w58{width:59.360000pt;}
.w46{width:60.800000pt;}
.w5a{width:63.040000pt;}
.w30{width:65.472000pt;}
.w38{width:65.760000pt;}
.w5e{width:68.960000pt;}
.w57{width:71.520000pt;}
.wa{width:74.560000pt;}
.wb{width:74.592000pt;}
.w35{width:74.752000pt;}
.w1c{width:74.880000pt;}
.w6{width:74.912000pt;}
.w37{width:75.040000pt;}
.w1b{width:75.072000pt;}
.w36{width:76.000000pt;}
.w4b{width:83.200000pt;}
.w1a{width:84.320000pt;}
.w15{width:84.352000pt;}
.wf{width:84.480000pt;}
.wd{width:84.672000pt;}
.w22{width:85.952000pt;}
.w2d{width:86.400000pt;}
.w3d{width:87.200000pt;}
.w31{width:88.480000pt;}
.w4a{width:88.512000pt;}
.w14{width:88.800000pt;}
.w40{width:88.832000pt;}
.w48{width:89.280000pt;}
.w4d{width:89.760000pt;}
.w47{width:90.112000pt;}
.w2e{width:90.432000pt;}
.w3e{width:90.912000pt;}
.w9{width:91.520000pt;}
.w26{width:91.872000pt;}
.w32{width:95.360000pt;}
.w34{width:95.520000pt;}
.w33{width:95.552000pt;}
.w27{width:95.840000pt;}
.w7{width:98.240000pt;}
.w23{width:98.880000pt;}
.w59{width:99.712000pt;}
.w13{width:100.800000pt;}
.w3f{width:100.960000pt;}
.w41{width:101.120000pt;}
.w20{width:101.312000pt;}
.w28{width:103.392000pt;}
.w45{width:104.352000pt;}
.w8{width:109.152000pt;}
.w4c{width:109.952000pt;}
.w25{width:112.800000pt;}
.w1e{width:115.680000pt;}
.w43{width:118.720000pt;}
.w51{width:120.512000pt;}
.w3{width:122.080000pt;}
.w49{width:122.240000pt;}
.w52{width:141.146667pt;}
.w24{width:150.266667pt;}
.w1d{width:151.226667pt;}
.w2f{width:151.680000pt;}
.w42{width:152.506667pt;}
.w12{width:155.066667pt;}
.w10{width:165.946667pt;}
.w11{width:173.786667pt;}
.w44{width:180.026667pt;}
.w4f{width:181.466667pt;}
.w1f{width:185.466667pt;}
.we{width:207.226667pt;}
.w5{width:235.066667pt;}
.w55{width:254.906667pt;}
.w5b{width:348.546667pt;}
.w53{width:427.426667pt;}
.w4{width:443.453333pt;}
.w54{width:462.333333pt;}
.w2a{width:613.373333pt;}
.w4e{width:618.973333pt;}
.w3c{width:619.133333pt;}
.w19{width:660.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2c{width:863.173333pt;}
.w18{width:1122.559983pt;}
.w16{width:1122.560000pt;}
.w17{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x14{left:7.200000pt;}
.x57{left:8.640000pt;}
.x20{left:9.600000pt;}
.x30{left:10.560000pt;}
.x34{left:11.840000pt;}
.x29{left:13.120000pt;}
.x2e{left:14.560000pt;}
.x78{left:15.680000pt;}
.x31{left:16.800000pt;}
.x3f{left:17.760000pt;}
.x25{left:18.880000pt;}
.x2a{left:20.640000pt;}
.x2c{left:22.400000pt;}
.x55{left:24.000000pt;}
.x21{left:24.960000pt;}
.x64{left:25.920000pt;}
.x28{left:27.034667pt;}
.x1f{left:28.960000pt;}
.x5e{left:31.200000pt;}
.x33{left:32.634667pt;}
.x7e{left:34.400000pt;}
.x2d{left:36.314667pt;}
.x22{left:37.920000pt;}
.x32{left:39.994667pt;}
.x24{left:42.240000pt;}
.x2b{left:43.674667pt;}
.x23{left:45.600000pt;}
.x56{left:47.680000pt;}
.x6a{left:49.114667pt;}
.x6b{left:55.040000pt;}
.x62{left:59.200000pt;}
.x3a{left:94.559983pt;}
.x1{left:113.471988pt;}
.x46{left:114.752000pt;}
.x2f{left:117.434667pt;}
.xc{left:118.591988pt;}
.x12{left:128.191988pt;}
.x4b{left:129.792000pt;}
.x6e{left:133.786667pt;}
.x6c{left:136.346667pt;}
.x18{left:137.466655pt;}
.x13{left:142.746655pt;}
.x4{left:157.946655pt;}
.x17{left:161.466655pt;}
.x7{left:203.706655pt;}
.x6d{left:213.640000pt;}
.x4c{left:224.506667pt;}
.x2{left:226.746655pt;}
.xe{left:228.186655pt;}
.x6f{left:231.240000pt;}
.x15{left:236.346667pt;}
.x58{left:252.666667pt;}
.x41{left:265.986667pt;}
.x5f{left:267.266667pt;}
.x35{left:280.706667pt;}
.xf{left:286.466655pt;}
.x9{left:294.626655pt;}
.xd{left:295.906655pt;}
.x3{left:303.106655pt;}
.x8{left:305.666655pt;}
.x6{left:307.906655pt;}
.x4d{left:315.586667pt;}
.x5a{left:316.706667pt;}
.x68{left:332.866667pt;}
.x10{left:336.226655pt;}
.xa{left:343.746655pt;}
.x19{left:349.826667pt;}
.x59{left:367.266667pt;}
.x38{left:370.146667pt;}
.x47{left:379.106667pt;}
.x42{left:382.306667pt;}
.x60{left:386.626667pt;}
.x65{left:388.546667pt;}
.x54{left:392.226667pt;}
.x5{left:396.706655pt;}
.x76{left:422.333333pt;}
.x1a{left:425.373333pt;}
.x39{left:428.573322pt;}
.x26{left:435.133333pt;}
.x69{left:454.013333pt;}
.x36{left:455.133333pt;}
.x7b{left:463.293333pt;}
.x4e{left:467.906667pt;}
.x45{left:468.893333pt;}
.x48{left:471.613333pt;}
.x63{left:477.373333pt;}
.x77{left:494.493333pt;}
.x1d{left:500.573333pt;}
.x7c{left:523.133333pt;}
.x1b{left:524.253333pt;}
.x4f{left:534.013333pt;}
.x5b{left:543.453333pt;}
.x79{left:554.493333pt;}
.x66{left:561.533333pt;}
.x61{left:567.293333pt;}
.x43{left:568.413333pt;}
.x1e{left:575.813333pt;}
.x7d{left:583.013333pt;}
.x67{left:605.253322pt;}
.x37{left:611.013333pt;}
.x16{left:614.053322pt;}
.x11{left:619.973322pt;}
.x50{left:623.293333pt;}
.x71{left:625.573322pt;}
.x70{left:629.733322pt;}
.x1c{left:634.213333pt;}
.x27{left:643.013333pt;}
.x7f{left:652.613333pt;}
.x7a{left:655.013333pt;}
.x44{left:670.373333pt;}
.x49{left:672.133333pt;}
.xb{left:680.453322pt;}
.x73{left:703.493322pt;}
.x74{left:711.493322pt;}
.x72{left:715.493322pt;}
.x75{left:717.573322pt;}
.x51{left:719.293333pt;}
.x5c{left:720.733333pt;}
.x3c{left:756.453333pt;}
.x5d{left:810.213333pt;}
.x52{left:815.493333pt;}
.x3d{left:841.573333pt;}
.x53{left:911.653333pt;}
.x3e{left:926.533333pt;}
.x4a{left:942.853317pt;}
.x3b{left:961.759983pt;}
.x40{left:1002.240000pt;}
}




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