
    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_555b023a82ffe7aeb66c0b15.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973145;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_815e10c5c242f5b8f2d6096c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_ec191375dba93e8156d13400.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_77cc4998b9d76d97dbd60acd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.869629;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_f17edc6759e1f16e44fe6832.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.717285;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_ba1c6aa59dcc402d2f446394.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.945312;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_790f640962879fd971bf9cb7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_603ec3920ceec0dee34bf775.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973145;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_42753a82f5b9622864088d20.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_88c7d99e9c75f6de89809cd2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_cc10d9a808b5381ab32cbd9d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.848145;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_1c2f7fd30d838e831f05ae9a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c20ce6d4f36d12d7d189a1a4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.934000;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_39060912a9607a348a8bbf22.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.933594;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_f3c2697813f3471eac476b2b.woff2')format("woff");}.fff{font-family:fff;line-height:0.679688;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_1ac8abbedfeb95071ffc735d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.940000;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_33544cd758783c7a4ba53f64.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_bda9dc26a113ea33f00e85d1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.899414;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:ff13;src:url('chunks/assets/font_d0486a870947132762a51c2f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_01e4a4b875d89a806b39e48c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_428aefeab6c39b98e5cdd884.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_f21c188b30c9c19519bef584.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_3d87914454784b5c6547efa5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.690918;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:ff18;src:url('chunks/assets/font_50ac8c78c1c2b92377da0281.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.893555;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:ff19;src:url('chunks/assets/font_071811588192a9ed4bd4f01e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.918000;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:ff1a;src:url('chunks/assets/font_87d7a0843fa3223c26e8237d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.931000;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.160156px;}
.v1{vertical-align:6.000000px;}
.ls17{letter-spacing:-3.709200px;}
.ls20{letter-spacing:-1.404000px;}
.ls1c{letter-spacing:-0.964800px;}
.lsd{letter-spacing:-0.352800px;}
.lsf{letter-spacing:-0.036000px;}
.ls18{letter-spacing:-0.033000px;}
.ls34{letter-spacing:-0.030000px;}
.ls23{letter-spacing:-0.028800px;}
.ls29{letter-spacing:-0.024000px;}
.lsb{letter-spacing:-0.021600px;}
.lsa{letter-spacing:-0.019800px;}
.ls16{letter-spacing:-0.018000px;}
.lse{letter-spacing:-0.014400px;}
.ls2{letter-spacing:-0.013200px;}
.ls2a{letter-spacing:-0.012000px;}
.ls33{letter-spacing:-0.006000px;}
.ls6{letter-spacing:-0.005400px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000018px;}
.ls31{letter-spacing:0.000468px;}
.ls3{letter-spacing:0.010800px;}
.ls35{letter-spacing:0.010980px;}
.ls21{letter-spacing:0.011520px;}
.ls27{letter-spacing:0.012000px;}
.ls15{letter-spacing:0.013200px;}
.ls22{letter-spacing:0.014400px;}
.ls19{letter-spacing:0.016200px;}
.ls11{letter-spacing:0.016242px;}
.ls13{letter-spacing:0.016500px;}
.ls1f{letter-spacing:0.018000px;}
.ls32{letter-spacing:0.018750px;}
.ls24{letter-spacing:0.019200px;}
.ls14{letter-spacing:0.019800px;}
.ls4{letter-spacing:0.021600px;}
.ls26{letter-spacing:0.024000px;}
.ls7{letter-spacing:0.025200px;}
.ls5{letter-spacing:0.028800px;}
.ls1d{letter-spacing:0.033000px;}
.ls1e{letter-spacing:0.036000px;}
.ls2f{letter-spacing:0.059400px;}
.ls0{letter-spacing:0.067200px;}
.ls37{letter-spacing:0.257400px;}
.ls10{letter-spacing:0.993600px;}
.ls1b{letter-spacing:1.807200px;}
.ls28{letter-spacing:2.028000px;}
.ls1a{letter-spacing:2.698200px;}
.ls25{letter-spacing:2.934000px;}
.ls36{letter-spacing:3.209700px;}
.ls30{letter-spacing:3.623400px;}
.ls2e{letter-spacing:6.494400px;}
.lsc{letter-spacing:7.063200px;}
.ls2b{letter-spacing:13.716000px;}
.ls8{letter-spacing:50.865600px;}
.ls9{letter-spacing:56.109000px;}
.ls2d{letter-spacing:77.814000px;}
.ls2c{letter-spacing:199.320000px;}
.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;}
}
.ws17{word-spacing:-127.314000px;}
.ws18{word-spacing:-55.994400px;}
.ws19{word-spacing:-53.123400px;}
.ws1a{word-spacing:-49.559400px;}
.ws1d{word-spacing:-20.016000px;}
.wsc{word-spacing:-19.807200px;}
.ws16{word-spacing:-18.348000px;}
.wsf{word-spacing:-18.036000px;}
.ws10{word-spacing:-18.021600px;}
.ws14{word-spacing:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.985600px;}
.ws12{word-spacing:-17.964000px;}
.wsd{word-spacing:-17.035200px;}
.ws15{word-spacing:-16.680000px;}
.ws11{word-spacing:-16.596000px;}
.wse{word-spacing:-16.533000px;}
.ws9{word-spacing:-16.519800px;}
.wsa{word-spacing:-16.513200px;}
.ws4{word-spacing:-16.500000px;}
.ws1c{word-spacing:-16.486800px;}
.ws8{word-spacing:-16.480200px;}
.ws6{word-spacing:-16.467000px;}
.ws1b{word-spacing:-15.018000px;}
.wsb{word-spacing:-13.516200px;}
.ws5{word-spacing:-12.790800px;}
.ws2{word-spacing:-0.072000px;}
.ws7{word-spacing:-0.066000px;}
.ws1{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
._3a{margin-left:-2720.766600px;}
._2b{margin-left:-2238.038400px;}
._50{margin-left:-2218.160400px;}
._9{margin-left:-2157.002400px;}
._7{margin-left:-1919.980800px;}
._b{margin-left:-1916.994000px;}
._25{margin-left:-1772.894400px;}
._1d{margin-left:-1700.901600px;}
._23{margin-left:-1664.894400px;}
._d{margin-left:-1595.971200px;}
._29{margin-left:-1550.872800px;}
._12{margin-left:-1506.038400px;}
._10{margin-left:-1503.052800px;}
._21{margin-left:-1466.865600px;}
._1f{margin-left:-1322.858400px;}
._16{margin-left:-1190.872800px;}
._18{margin-left:-1172.872800px;}
._27{margin-left:-998.844000px;}
._1a{margin-left:-950.985600px;}
._5c{margin-left:-929.160000px;}
._41{margin-left:-923.431800px;}
._4d{margin-left:-914.730000px;}
._3f{margin-left:-913.337400px;}
._4c{margin-left:-912.300000px;}
._40{margin-left:-910.877400px;}
._48{margin-left:-902.117400px;}
._49{margin-left:-882.077400px;}
._14{margin-left:-878.968800px;}
._51{margin-left:-664.004400px;}
._5b{margin-left:-23.174400px;}
._42{margin-left:-18.351600px;}
._2c{margin-left:-15.000000px;}
._5a{margin-left:-13.227000px;}
._53{margin-left:-8.832000px;}
._36{margin-left:-7.830000px;}
._1{margin-left:-6.190800px;}
._e{margin-left:-4.660800px;}
._3c{margin-left:-3.579600px;}
._5{margin-left:-2.437200px;}
._0{margin-left:-1.125600px;}
._4{width:1.950000px;}
._3{width:3.066000px;}
._2e{width:4.729200px;}
._2{width:6.354000px;}
._34{width:7.575600px;}
._2d{width:8.639400px;}
._31{width:9.994800px;}
._1b{width:11.912400px;}
._33{width:13.547400px;}
._32{width:14.862000px;}
._37{width:16.365600px;}
._59{width:18.242400px;}
._3b{width:19.540800px;}
._3e{width:20.700000px;}
._39{width:21.746400px;}
._3d{width:23.163600px;}
._52{width:24.396000px;}
._38{width:25.619400px;}
._30{width:27.100800px;}
._2f{width:28.130400px;}
._58{width:29.223600px;}
._4f{width:30.916800px;}
._43{width:32.592000px;}
._47{width:33.912000px;}
._35{width:34.912800px;}
._44{width:36.750000px;}
._45{width:37.800000px;}
._46{width:39.823200px;}
._4b{width:41.250000px;}
._4e{width:44.571600px;}
._4a{width:45.741000px;}
._55{width:149.040000px;}
._57{width:179.040000px;}
._54{width:284.640000px;}
._56{width:314.640000px;}
._13{width:783.550800px;}
._19{width:844.066800px;}
._26{width:902.944800px;}
._17{width:1072.695600px;}
._15{width:1102.333200px;}
._1e{width:1224.450000px;}
._11{width:1375.148400px;}
._20{width:1385.907600px;}
._f{width:1434.045600px;}
._28{width:1459.936800px;}
._c{width:1511.767200px;}
._22{width:1556.838000px;}
._1c{width:1610.330400px;}
._24{width:1671.699600px;}
._6{width:1830.637200px;}
._a{width:1846.194000px;}
._8{width:2086.760400px;}
._2a{width:2130.998400px;}
.fc10{color:rgb(68,68,68);}
.fce{color:rgb(68,68,68);}
.fcd{color:rgb(141,141,141);}
.fcf{color:rgb(255,255,255);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(37,21,77);}
.fc2{color:rgb(0,0,0);}
.fc5{color:rgb(34,34,34);}
.fc11{color:rgb(122,122,122);}
.fc9{color:rgb(122,122,122);}
.fca{color:rgb(79,79,79);}
.fcb{color:rgb(127,127,127);}
.fcc{color:rgb(127,127,127);}
.fc3{color:rgb(0,76,101);}
.fc4{color:rgb(0,83,110);}
.fc6{color:transparent;}
.fc8{color:rgb(70,70,70);}
.fc7{color:rgb(4,156,207);}
.fs10{font-size:6.000000px;}
.fsf{font-size:30.000000px;}
.fsc{font-size:42.900000px;}
.fsd{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fsb{font-size:93.600000px;}
.fs2{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.fse{font-size:114.000000px;}
.fs1{font-size:144.000000px;}
.fs5{font-size:150.000000px;}
.fs11{font-size:198.000000px;}
.fsa{font-size:216.000000px;}
.fs0{font-size:336.000000px;}
.y0{bottom:0.000000px;}
.y4b8{bottom:2.550150px;}
.yf8{bottom:2.551050px;}
.y46a{bottom:2.579100px;}
.y496{bottom:2.662500px;}
.y389{bottom:2.742000px;}
.y43a{bottom:2.791800px;}
.y355{bottom:2.821950px;}
.y15{bottom:3.000000px;}
.y3b8{bottom:3.000015px;}
.y4d9{bottom:3.000030px;}
.y4a7{bottom:3.037500px;}
.y421{bottom:3.300000px;}
.y334{bottom:3.304650px;}
.y4ec{bottom:3.374955px;}
.y10e{bottom:3.451050px;}
.y32f{bottom:3.522900px;}
.y139{bottom:3.627600px;}
.y16e{bottom:3.750000px;}
.y35a{bottom:3.907800px;}
.y3ac{bottom:3.948450px;}
.y3c5{bottom:3.986100px;}
.y3ae{bottom:3.998250px;}
.y4a1{bottom:4.000500px;}
.y428{bottom:4.003050px;}
.y4d1{bottom:4.047750px;}
.y3b0{bottom:4.048050px;}
.y415{bottom:4.075350px;}
.y4e4{bottom:4.092750px;}
.y3b2{bottom:4.098000px;}
.y434{bottom:4.099200px;}
.y10a{bottom:4.135200px;}
.y4c1{bottom:4.147650px;}
.y3b4{bottom:4.147800px;}
.y4cd{bottom:4.162200px;}
.y3cd{bottom:4.164600px;}
.y4b6{bottom:4.176300px;}
.y475{bottom:4.176600px;}
.y3b6{bottom:4.197600px;}
.y102{bottom:4.199400px;}
.y468{bottom:4.205250px;}
.y40b{bottom:4.214400px;}
.y41d{bottom:4.264200px;}
.y42a{bottom:4.269000px;}
.y494{bottom:4.288650px;}
.y4b2{bottom:4.290600px;}
.y464{bottom:4.319550px;}
.y47b{bottom:4.340250px;}
.y3d5{bottom:4.343100px;}
.y436{bottom:4.365300px;}
.y490{bottom:4.403100px;}
.y413{bottom:4.403250px;}
.y4ae{bottom:4.405050px;}
.y3c7{bottom:4.405800px;}
.y4a3{bottom:4.433100px;}
.y460{bottom:4.434000px;}
.y4ea{bottom:4.453200px;}
.y10c{bottom:4.494150px;}
.y1fe{bottom:4.500000px;}
.y4c7{bottom:4.508250px;}
.y48c{bottom:4.517550px;}
.y42c{bottom:4.535100px;}
.y104{bottom:4.558350px;}
.yf6{bottom:4.584150px;}
.y3cf{bottom:4.584300px;}
.y41b{bottom:4.592100px;}
.y4d7{bottom:4.626165px;}
.y438{bottom:4.631250px;}
.y49e{bottom:4.635150px;}
.y3fb{bottom:4.698300px;}
.yf4{bottom:4.705050px;}
.y4e6{bottom:4.712850px;}
.y411{bottom:4.731000px;}
.y477{bottom:4.731150px;}
.y282{bottom:4.736250px;}
.y4d3{bottom:4.740600px;}
.y3d7{bottom:4.762740px;}
.y4c3{bottom:4.767900px;}
.y23f{bottom:4.800000px;}
.y42e{bottom:4.801050px;}
.y3c9{bottom:4.825350px;}
.yf2{bottom:4.825950px;}
.y4cf{bottom:4.854900px;}
.y4a5{bottom:4.865850px;}
.y47d{bottom:4.894800px;}
.y106{bottom:4.917300px;}
.y419{bottom:4.919850px;}
.yf0{bottom:4.946850px;}
.y3f3{bottom:4.967250px;}
.y4e2{bottom:4.972500px;}
.y4b4{bottom:4.983450px;}
.y3d1{bottom:5.003850px;}
.y466{bottom:5.012400px;}
.y40f{bottom:5.058750px;}
.y430{bottom:5.067150px;}
.yee{bottom:5.067750px;}
.y4e0{bottom:5.083200px;}
.y492{bottom:5.095950px;}
.y4b0{bottom:5.097900px;}
.y462{bottom:5.126850px;}
.y4c9{bottom:5.128350px;}
.y3a0{bottom:5.149350px;}
.yec{bottom:5.188650px;}
.y3a2{bottom:5.199300px;}
.y48e{bottom:5.210250px;}
.y4ac{bottom:5.212200px;}
.y45e{bottom:5.241150px;}
.y3cb{bottom:5.245050px;}
.y417{bottom:5.247600px;}
.y3a4{bottom:5.249100px;}
.y108{bottom:5.276250px;}
.y479{bottom:5.285700px;}
.y3a6{bottom:5.298900px;}
.yea{bottom:5.309550px;}
.y48a{bottom:5.324700px;}
.y4e8{bottom:5.333100px;}
.y432{bottom:5.333250px;}
.y3a8{bottom:5.348700px;}
.y40d{bottom:5.386500px;}
.y4c5{bottom:5.388000px;}
.y3aa{bottom:5.398650px;}
.y3d3{bottom:5.423550px;}
.y4d5{bottom:5.433300px;}
.y41f{bottom:5.436450px;}
.y49c{bottom:5.495850px;}
.y473{bottom:5.524800px;}
.y4bf{bottom:5.758350px;}
.y306{bottom:6.000000px;}
.y148{bottom:6.399000px;}
.yfa{bottom:7.500000px;}
.y1ee{bottom:7.770450px;}
.y1d3{bottom:7.779000px;}
.y1df{bottom:7.834500px;}
.y1eb{bottom:8.059350px;}
.y1d0{bottom:8.067750px;}
.y1dc{bottom:8.123400px;}
.y17{bottom:8.328450px;}
.y1e9{bottom:8.348250px;}
.y1da{bottom:8.412300px;}
.y1f4{bottom:8.573100px;}
.y1e7{bottom:8.637150px;}
.y1f3{bottom:8.692800px;}
.y1d8{bottom:8.701200px;}
.y87{bottom:8.718750px;}
.y1e5{bottom:8.926050px;}
.y260{bottom:8.979900px;}
.y1f1{bottom:8.981550px;}
.y1d6{bottom:8.990100px;}
.y247{bottom:9.069000px;}
.y1e1{bottom:9.130350px;}
.y24f{bottom:9.167700px;}
.y25e{bottom:9.238650px;}
.y257{bottom:9.266250px;}
.y1ef{bottom:9.270450px;}
.y1d4{bottom:9.279000px;}
.y1e0{bottom:9.334500px;}
.y485{bottom:9.364650px;}
.y264{bottom:9.512700px;}
.y1ec{bottom:9.559350px;}
.y1d1{bottom:9.567750px;}
.y24a{bottom:9.601950px;}
.y1dd{bottom:9.623400px;}
.y272{bottom:9.630150px;}
.y252{bottom:9.700500px;}
.y268{bottom:9.786750px;}
.y33{bottom:9.862305px;}
.y1b{bottom:9.862350px;}
.y259{bottom:10.002450px;}
.y273{bottom:10.023000px;}
.y244{bottom:10.036200px;}
.y266{bottom:10.045500px;}
.y24c{bottom:10.134750px;}
.y254{bottom:10.233300px;}
.y26b{bottom:10.319550px;}
.y482{bottom:10.380150px;}
.y153{bottom:10.447500px;}
.y1d{bottom:10.447950px;}
.y246{bottom:10.569000px;}
.y24e{bottom:10.667700px;}
.y25d{bottom:10.738650px;}
.y256{bottom:10.766250px;}
.y263{bottom:11.012700px;}
.y249{bottom:11.101950px;}
.y271{bottom:11.130150px;}
.y251{bottom:11.200500px;}
.y210{bottom:11.208900px;}
.y228{bottom:11.241000px;}
.y13e{bottom:11.260350px;}
.y269{bottom:11.286750px;}
.y204{bottom:11.323350px;}
.y21c{bottom:11.355450px;}
.y213{bottom:11.486100px;}
.y258{bottom:11.502450px;}
.y22b{bottom:11.518200px;}
.y274{bottom:11.523000px;}
.y243{bottom:11.536200px;}
.y207{bottom:11.600400px;}
.y21f{bottom:11.632500px;}
.y20a{bottom:11.877600px;}
.y222{bottom:11.909700px;}
.y261{bottom:11.979900px;}
.y215{bottom:12.032100px;}
.y20c{bottom:12.154650px;}
.y224{bottom:12.186750px;}
.y22d{bottom:12.333300px;}
.y582{bottom:12.412500px;}
.y20e{bottom:12.431850px;}
.y226{bottom:12.463950px;}
.y202{bottom:12.546150px;}
.y21a{bottom:12.578250px;}
.y131{bottom:12.627600px;}
.y211{bottom:12.708900px;}
.y229{bottom:12.741000px;}
.y168{bottom:12.750000px;}
.y205{bottom:12.823350px;}
.y21d{bottom:12.855450px;}
.y214{bottom:12.986100px;}
.y22c{bottom:13.018200px;}
.y31{bottom:13.050000px;}
.y208{bottom:13.100400px;}
.y220{bottom:13.132500px;}
.y35{bottom:13.149765px;}
.y488{bottom:13.195200px;}
.y19{bottom:13.238250px;}
.y7a{bottom:13.406250px;}
.y45a{bottom:13.462500px;}
.y3f1{bottom:13.462515px;}
.ye8{bottom:13.500000px;}
.y216{bottom:13.532100px;}
.y26e{bottom:13.597200px;}
.y1c6{bottom:13.635540px;}
.y409{bottom:13.762500px;}
.y44{bottom:13.762515px;}
.y382{bottom:13.878000px;}
.y185{bottom:14.062515px;}
.y161{bottom:14.250000px;}
.y470{bottom:14.345700px;}
.y78{bottom:14.362515px;}
.y52e{bottom:14.442150px;}
.y341{bottom:14.609700px;}
.y1f9{bottom:15.000000px;}
.y37{bottom:15.068850px;}
.y328{bottom:15.181800px;}
.y14d{bottom:15.399000px;}
.y294{bottom:15.922800px;}
.y2b5{bottom:16.105500px;}
.y2ce{bottom:16.435950px;}
.y2f5{bottom:16.489200px;}
.y45c{bottom:16.500000px;}
.y34e{bottom:16.702800px;}
.y2dd{bottom:16.724700px;}
.y238{bottom:16.800000px;}
.y2fa{bottom:16.963500px;}
.y2da{bottom:16.985100px;}
.y2d1{bottom:17.113350px;}
.y2c2{bottom:17.186100px;}
.y2d6{bottom:17.250000px;}
.y1cc{bottom:17.272050px;}
.y11{bottom:17.508420px;}
.y12d{bottom:17.560950px;}
.y2f3{bottom:17.675700px;}
.y30f{bottom:17.735700px;}
.y2b9{bottom:17.835900px;}
.y302{bottom:18.000000px;}
.y298{bottom:18.392250px;}
.y2e2{bottom:18.750030px;}
.y1ca{bottom:18.772050px;}
.y2a7{bottom:19.140150px;}
.y19c{bottom:19.155150px;}
.y33d{bottom:19.163550px;}
.y157{bottom:19.447500px;}
.y14{bottom:19.500000px;}
.y2be{bottom:19.610700px;}
.y2aa{bottom:19.814850px;}
.y141{bottom:20.260350px;}
.y359{bottom:20.407800px;}
.y2f8{bottom:20.543850px;}
.y19a{bottom:20.615400px;}
.y388{bottom:20.742000px;}
.y354{bottom:20.821950px;}
.y360{bottom:21.000000px;}
.y320{bottom:21.099900px;}
.y333{bottom:21.304650px;}
.y29f{bottom:21.403800px;}
.y32e{bottom:21.522900px;}
.ya7{bottom:21.616800px;}
.y133{bottom:21.627600px;}
.y16d{bottom:21.750000px;}
.y3fa{bottom:22.698300px;}
.y2e0{bottom:23.075250px;}
.y4df{bottom:23.083200px;}
.y15c{bottom:23.250000px;}
.y49b{bottom:23.495850px;}
.y472{bottom:23.524800px;}
.y4be{bottom:23.758350px;}
.y2d4{bottom:23.778150px;}
.y53f{bottom:24.000000px;}
.y26f{bottom:24.097200px;}
.y1a8{bottom:24.139200px;}
.y2ad{bottom:24.293400px;}
.y147{bottom:24.399000px;}
.y29c{bottom:24.984300px;}
.y195{bottom:25.060050px;}
.y1fd{bottom:25.500000px;}
.y55c{bottom:25.623765px;}
.y23b{bottom:25.800000px;}
.y2b2{bottom:25.830750px;}
.y2b0{bottom:26.250000px;}
.y2f1{bottom:26.362050px;}
.y2d8{bottom:26.447100px;}
.y2cc{bottom:26.572350px;}
.y86{bottom:26.718750px;}
.y481{bottom:26.880150px;}
.y292{bottom:26.926950px;}
.y1fb{bottom:27.000000px;}
.y2a5{bottom:27.064350px;}
.y23e{bottom:27.300000px;}
.y484{bottom:27.364650px;}
.y1c8{bottom:27.772050px;}
.y152{bottom:28.447500px;}
.y97{bottom:28.883250px;}
.y174{bottom:28.967250px;}
.y1b3{bottom:28.972050px;}
.y13d{bottom:29.260350px;}
.y487{bottom:29.695200px;}
.y381{bottom:30.378000px;}
.y130{bottom:30.627600px;}
.y167{bottom:30.750000px;}
.y46f{bottom:30.845700px;}
.y50c{bottom:31.500000px;}
.y1af{bottom:31.540200px;}
.y160{bottom:32.250000px;}
.y340{bottom:32.609700px;}
.y395{bottom:33.000000px;}
.y327{bottom:33.181800px;}
.y1a3{bottom:33.294750px;}
.y14c{bottom:33.399000px;}
.y581{bottom:33.412500px;}
.y34d{bottom:34.702800px;}
.y13{bottom:36.000000px;}
.y43{bottom:36.262515px;}
.y239{bottom:36.300000px;}
.y184{bottom:36.562515px;}
.y77{bottom:36.862515px;}
.y19b{bottom:37.155150px;}
.y33c{bottom:37.163550px;}
.y56{bottom:37.204650px;}
.y156{bottom:37.447500px;}
.y3f0{bottom:37.462515px;}
.ye7{bottom:37.500000px;}
.y26d{bottom:37.597200px;}
.y1c5{bottom:37.635540px;}
.y408{bottom:37.762500px;}
.y237{bottom:37.800000px;}
.y140{bottom:38.260350px;}
.y1cb{bottom:38.272050px;}
.y572{bottom:38.517195px;}
.y199{bottom:38.615400px;}
.y52d{bottom:39.000000px;}
.y31f{bottom:39.099900px;}
.ya6{bottom:39.616800px;}
.y132{bottom:39.627600px;}
.y16c{bottom:39.750000px;}
.y1c9{bottom:39.772050px;}
.y173{bottom:40.967250px;}
.y15b{bottom:41.250000px;}
.y2b4{bottom:41.605500px;}
.y301{bottom:42.000000px;}
.y1a7{bottom:42.139200px;}
.y146{bottom:42.399000px;}
.y2b8{bottom:43.335900px;}
.y2ef{bottom:43.500000px;}
.y2dc{bottom:43.724700px;}
.y2d0{bottom:44.113350px;}
.y2c1{bottom:44.186100px;}
.y85{bottom:44.718750px;}
.y34{bottom:44.796525px;}
.y2bd{bottom:45.110700px;}
.y297{bottom:45.392250px;}
.y151{bottom:46.447500px;}
.y176{bottom:46.706250px;}
.y23a{bottom:46.800000px;}
.y2a9{bottom:46.814850px;}
.y380{bottom:46.878000px;}
.y96{bottom:46.883250px;}
.y29e{bottom:46.903800px;}
.y1b2{bottom:46.972050px;}
.y32{bottom:47.097405px;}
.y13c{bottom:47.260350px;}
.y2f7{bottom:47.543850px;}
.y1fa{bottom:48.000000px;}
.y23d{bottom:48.300000px;}
.y12f{bottom:48.627600px;}
.y166{bottom:48.750000px;}
.y55b{bottom:49.500000px;}
.y1ae{bottom:49.540200px;}
.y2df{bottom:50.075250px;}
.y136{bottom:50.127600px;}
.y15f{bottom:50.250000px;}
.y33f{bottom:50.609700px;}
.y2d3{bottom:50.778150px;}
.y326{bottom:51.181800px;}
.y2ac{bottom:51.293400px;}
.y1a2{bottom:51.294750px;}
.y14b{bottom:51.399000px;}
.y29b{bottom:51.984300px;}
.y193{bottom:52.500000px;}
.y34c{bottom:52.702800px;}
.y2af{bottom:53.250000px;}
.y4fa{bottom:54.000000px;}
.y580{bottom:54.412500px;}
.y33b{bottom:55.163550px;}
.y155{bottom:55.447500px;}
.y394{bottom:55.500000px;}
.y8{bottom:55.584300px;}
.y13f{bottom:56.260350px;}
.y52c{bottom:57.000000px;}
.y31e{bottom:57.099900px;}
.ya5{bottom:57.616800px;}
.y137{bottom:57.627600px;}
.y16b{bottom:57.750000px;}
.y36{bottom:57.946290px;}
.y1f8{bottom:58.500000px;}
.y236{bottom:58.800000px;}
.y15a{bottom:59.250000px;}
.y3ef{bottom:59.962515px;}
.y390{bottom:60.000000px;}
.y1c4{bottom:60.135540px;}
.y1a6{bottom:60.139200px;}
.y407{bottom:60.262500px;}
.y145{bottom:60.399000px;}
.y183{bottom:60.562515px;}
.y76{bottom:60.862515px;}
.y55{bottom:61.204650px;}
.y376{bottom:61.462515px;}
.ye6{bottom:61.500000px;}
.y30{bottom:62.550000px;}
.y232{bottom:62.718750px;}
.y37f{bottom:63.378000px;}
.y197{bottom:64.155150px;}
.y150{bottom:64.447500px;}
.y300{bottom:64.500000px;}
.y95{bottom:64.883250px;}
.y1b1{bottom:64.972050px;}
.y13b{bottom:65.260350px;}
.y2ee{bottom:66.000000px;}
.y42{bottom:66.262515px;}
.y165{bottom:66.750000px;}
.y50b{bottom:67.500000px;}
.y1ad{bottom:67.540200px;}
.y135{bottom:68.127600px;}
.y15e{bottom:68.250000px;}
.y1fc{bottom:69.000000px;}
.y325{bottom:69.181800px;}
.y1a1{bottom:69.294750px;}
.y23c{bottom:69.300000px;}
.y14a{bottom:69.399000px;}
.y2b7{bottom:70.335900px;}
.y34b{bottom:70.702800px;}
.y2c0{bottom:71.186100px;}
.y2bc{bottom:72.110700px;}
.y296{bottom:72.392250px;}
.y33a{bottom:73.163550px;}
.y154{bottom:73.447500px;}
.y52b{bottom:75.000000px;}
.y31d{bottom:75.099900px;}
.y57f{bottom:75.412500px;}
.ya4{bottom:75.616800px;}
.y138{bottom:75.627600px;}
.y16a{bottom:75.750000px;}
.y192{bottom:76.500000px;}
.y159{bottom:77.250000px;}
.y4f9{bottom:78.000000px;}
.y1a5{bottom:78.139200px;}
.y144{bottom:78.399000px;}
.y29a{bottom:78.984300px;}
.y393{bottom:79.500000px;}
.y37e{bottom:79.878000px;}
.y571{bottom:79.982805px;}
.y14f{bottom:82.447500px;}
.y38f{bottom:82.500000px;}
.y94{bottom:82.883250px;}
.y1b0{bottom:82.972050px;}
.y75{bottom:83.362515px;}
.y54{bottom:83.704650px;}
.y3ee{bottom:83.962515px;}
.ye5{bottom:84.000000px;}
.y182{bottom:84.562515px;}
.y164{bottom:84.750000px;}
.y375{bottom:85.462515px;}
.y55a{bottom:85.500000px;}
.y1ac{bottom:85.540200px;}
.y15d{bottom:86.250000px;}
.y324{bottom:87.181800px;}
.y41{bottom:87.262515px;}
.y1a0{bottom:87.294750px;}
.y149{bottom:87.399000px;}
.y2f{bottom:88.050000px;}
.y2ff{bottom:88.500000px;}
.y34a{bottom:88.702800px;}
.y53e{bottom:89.125350px;}
.y2ed{bottom:90.000000px;}
.y339{bottom:91.163550px;}
.y52a{bottom:93.000000px;}
.y31c{bottom:93.099900px;}
.ya3{bottom:93.616800px;}
.y169{bottom:93.750000px;}
.y2a0{bottom:96.000000px;}
.y1a4{bottom:96.139200px;}
.y37d{bottom:96.378000px;}
.y143{bottom:96.399000px;}
.y9{bottom:96.491580px;}
.y551{bottom:97.042500px;}
.y7{bottom:97.584300px;}
.y1c3{bottom:97.635540px;}
.y57e{bottom:97.912500px;}
.y2bb{bottom:99.110700px;}
.y1b4{bottom:100.364460px;}
.y191{bottom:100.500000px;}
.y93{bottom:100.883250px;}
.y6a{bottom:101.137485px;}
.y310{bottom:101.329305px;}
.y3ff{bottom:101.737500px;}
.y163{bottom:102.750000px;}
.y573{bottom:103.087500px;}
.y38{bottom:103.237485px;}
.y392{bottom:103.500000px;}
.y361{bottom:103.537485px;}
.y441{bottom:103.537500px;}
.y84{bottom:103.781250px;}
.y323{bottom:105.181800px;}
.y38e{bottom:106.500000px;}
.y349{bottom:106.702800px;}
.y40{bottom:106.762515px;}
.y181{bottom:107.062515px;}
.y177{bottom:107.437485px;}
.y4eb{bottom:107.625045px;}
.y53{bottom:107.704650px;}
.y374{bottom:107.962515px;}
.y4d8{bottom:107.999970px;}
.y12{bottom:108.000000px;}
.y35f{bottom:109.500000px;}
.y230{bottom:111.000000px;}
.y31b{bottom:111.099900px;}
.ya2{bottom:111.616800px;}
.y2e1{bottom:111.749970px;}
.y162{bottom:111.750000px;}
.y129{bottom:112.500000px;}
.y1ce{bottom:112.630350px;}
.y37c{bottom:112.878000px;}
.y2e{bottom:113.550000px;}
.y1e3{bottom:113.573100px;}
.y231{bottom:114.000000px;}
.y2ec{bottom:115.500000px;}
.y3d8{bottom:118.500000px;}
.y57d{bottom:118.912500px;}
.y1c2{bottom:120.135540px;}
.y74{bottom:120.862515px;}
.y4e1{bottom:121.027500px;}
.y550{bottom:121.500000px;}
.y1aa{bottom:121.972050px;}
.y322{bottom:123.181800px;}
.y3b7{bottom:124.499985px;}
.y280{bottom:124.500000px;}
.y348{bottom:124.702800px;}
.y92{bottom:124.883250px;}
.y82{bottom:126.000000px;}
.y19e{bottom:127.639200px;}
.yd1{bottom:127.781250px;}
.y83{bottom:129.000000px;}
.y31a{bottom:129.099900px;}
.y566{bottom:129.321750px;}
.y37b{bottom:129.378000px;}
.ya1{bottom:129.616800px;}
.y2ae{bottom:129.750000px;}
.y3ed{bottom:130.462515px;}
.y4ed{bottom:130.500000px;}
.y180{bottom:131.062515px;}
.y52{bottom:131.704650px;}
.y570{bottom:132.000000px;}
.y22f{bottom:133.500000px;}
.y3f{bottom:133.762515px;}
.y128{bottom:135.000000px;}
.yce{bottom:136.500000px;}
.y4d6{bottom:137.873835px;}
.y18c{bottom:138.000000px;}
.y241{bottom:139.002450px;}
.y2d{bottom:139.050000px;}
.y54f{bottom:139.500000px;}
.y57c{bottom:139.912500px;}
.y347{bottom:142.702800px;}
.y91{bottom:142.883250px;}
.y2eb{bottom:144.000000px;}
.y1c1{bottom:144.135540px;}
.y73{bottom:144.862515px;}
.y3d6{bottom:145.237260px;}
.y373{bottom:145.462515px;}
.y529{bottom:145.500000px;}
.y37a{bottom:145.878000px;}
.y4f8{bottom:147.000000px;}
.y27f{bottom:148.500000px;}
.y81{bottom:150.000000px;}
.y469{bottom:150.420900px;}
.yd0{bottom:151.781250px;}
.y3b5{bottom:151.802400px;}
.y565{bottom:153.000000px;}
.y3e{bottom:153.262515px;}
.y17f{bottom:153.562515px;}
.ya0{bottom:153.616800px;}
.y51{bottom:154.204650px;}
.y3ec{bottom:154.462515px;}
.y25b{bottom:155.523000px;}
.y1f5{bottom:155.550000px;}
.y54e{bottom:157.500000px;}
.y200{bottom:157.532100px;}
.y218{bottom:157.833300px;}
.ycd{bottom:159.000000px;}
.y190{bottom:160.500000px;}
.y346{bottom:160.702800px;}
.y90{bottom:160.883250px;}
.y217{bottom:161.666700px;}
.y18b{bottom:162.000000px;}
.y379{bottom:162.378000px;}
.y57b{bottom:162.412500px;}
.y2de{bottom:162.924750px;}
.ydf{bottom:163.781250px;}
.y474{bottom:163.823400px;}
.y4e3{bottom:163.907250px;}
.y2c{bottom:164.550000px;}
.y559{bottom:166.500000px;}
.y72{bottom:167.362515px;}
.y372{bottom:167.962515px;}
.y1c0{bottom:168.135540px;}
.y4da{bottom:169.500000px;}
.y27e{bottom:171.000000px;}
.y4d4{bottom:171.566700px;}
.y9f{bottom:171.616800px;}
.y332{bottom:172.195350px;}
.y80{bottom:172.500000px;}
.y3d4{bottom:172.656900px;}
.ycf{bottom:175.781250px;}
.y3eb{bottom:176.962515px;}
.y17e{bottom:177.562515px;}
.y50{bottom:178.204650px;}
.y3b9{bottom:178.500000px;}
.y345{bottom:178.702800px;}
.y3d{bottom:178.762515px;}
.y378{bottom:178.878000px;}
.y8f{bottom:178.883250px;}
.y467{bottom:180.294750px;}
.y3b3{bottom:180.352200px;}
.y51d{bottom:182.242500px;}
.ycc{bottom:183.000000px;}
.y57a{bottom:183.412500px;}
.y18a{bottom:184.500000px;}
.y6{bottom:184.584300px;}
.y10{bottom:187.008420px;}
.y290{bottom:187.500000px;}
.y175{bottom:188.793750px;}
.y22e{bottom:189.000000px;}
.y9e{bottom:189.616800px;}
.y2b{bottom:190.050000px;}
.y1bf{bottom:190.635540px;}
.y71{bottom:191.362515px;}
.y371{bottom:191.962515px;}
.y47e{bottom:193.500000px;}
.y27d{bottom:195.000000px;}
.y420{bottom:196.200000px;}
.y47f{bottom:196.500000px;}
.y344{bottom:196.702800px;}
.y8e{bottom:196.883250px;}
.y3d9{bottom:198.000000px;}
.y22a{bottom:198.481800px;}
.y3d2{bottom:200.076450px;}
.y4f{bottom:200.704650px;}
.y17d{bottom:201.562515px;}
.y4db{bottom:202.500000px;}
.y4d2{bottom:205.259400px;}
.y476{bottom:205.268850px;}
.ycb{bottom:205.500000px;}
.y4e5{bottom:206.787150px;}
.y18f{bottom:207.000000px;}
.y3c{bottom:207.262515px;}
.y9d{bottom:207.616800px;}
.y189{bottom:208.500000px;}
.y3b1{bottom:208.902000px;}
.yf{bottom:209.508420px;}
.y46b{bottom:211.500000px;}
.y70{bottom:213.862515px;}
.y53d{bottom:213.925350px;}
.y465{bottom:213.987600px;}
.y58d{bottom:214.500000px;}
.y1be{bottom:214.635540px;}
.y343{bottom:214.702800px;}
.y8d{bottom:214.883250px;}
.y2a{bottom:215.550000px;}
.y528{bottom:216.000000px;}
.y27c{bottom:217.500000px;}
.y579{bottom:217.912500px;}
.y558{bottom:220.500000px;}
.y127{bottom:222.000000px;}
.y51c{bottom:223.500000px;}
.y17c{bottom:224.062515px;}
.y41e{bottom:224.063550px;}
.y4e{bottom:224.704650px;}
.y2ab{bottom:224.706600px;}
.y3da{bottom:225.000000px;}
.y10d{bottom:226.048950px;}
.y3d0{bottom:227.496150px;}
.y370{bottom:229.462515px;}
.yca{bottom:229.500000px;}
.y18e{bottom:231.000000px;}
.y9c{bottom:231.616800px;}
.y188{bottom:232.500000px;}
.y8c{bottom:232.883250px;}
.y227{bottom:234.759000px;}
.y3ba{bottom:235.500000px;}
.y1bd{bottom:237.135540px;}
.y3af{bottom:237.451950px;}
.y6f{bottom:237.862515px;}
.y53c{bottom:238.500000px;}
.y4d0{bottom:238.952250px;}
.y158{bottom:239.250000px;}
.y527{bottom:240.000000px;}
.y578{bottom:240.412500px;}
.y29{bottom:241.050000px;}
.y27b{bottom:241.500000px;}
.y46c{bottom:244.500000px;}
.y2ea{bottom:246.000000px;}
.y478{bottom:246.714300px;}
.y35b{bottom:247.500000px;}
.y463{bottom:247.680450px;}
.y3b{bottom:247.762515px;}
.y17b{bottom:248.062515px;}
.y4d{bottom:248.704650px;}
.y50a{bottom:248.921100px;}
.y9b{bottom:249.616800px;}
.y4e7{bottom:249.666900px;}
.y8b{bottom:250.883250px;}
.y2db{bottom:251.775300px;}
.y2fe{bottom:252.000000px;}
.y33e{bottom:252.390300px;}
.yc9{bottom:253.500000px;}
.y41c{bottom:253.735800px;}
.y3ce{bottom:254.915700px;}
.y4f7{bottom:255.000000px;}
.y337{bottom:256.500000px;}
.y18d{bottom:258.000000px;}
.y51b{bottom:259.500000px;}
.y1bc{bottom:261.135540px;}
.y577{bottom:261.412500px;}
.y6e{bottom:261.862515px;}
.y526{bottom:262.500000px;}
.y3bb{bottom:264.000000px;}
.y10f{bottom:265.500000px;}
.y3ad{bottom:266.001750px;}
.y564{bottom:267.000000px;}
.y10b{bottom:267.005850px;}
.y9a{bottom:267.616800px;}
.y4dc{bottom:268.500000px;}
.y8a{bottom:268.883250px;}
.y2e9{bottom:270.000000px;}
.y225{bottom:271.036050px;}
.y28{bottom:271.050000px;}
.y4c{bottom:271.204650px;}
.y4ce{bottom:272.645100px;}
.y4ee{bottom:273.000000px;}
.y53b{bottom:274.500000px;}
.yc8{bottom:276.000000px;}
.y4f6{bottom:277.500000px;}
.y3db{bottom:279.000000px;}
.y54d{bottom:281.242500px;}
.y461{bottom:281.373150px;}
.y422{bottom:282.000000px;}
.y3cc{bottom:282.335400px;}
.y576{bottom:282.412500px;}
.y41a{bottom:283.407900px;}
.y51a{bottom:283.500000px;}
.y6d{bottom:284.362515px;}
.y1bb{bottom:285.135540px;}
.y525{bottom:286.500000px;}
.y27a{bottom:288.000000px;}
.y47a{bottom:288.159750px;}
.y321{bottom:289.318200px;}
.yde{bottom:289.500000px;}
.y557{bottom:290.359050px;}
.y509{bottom:291.000000px;}
.y3bc{bottom:292.500000px;}
.y4e9{bottom:292.546800px;}
.y2e8{bottom:294.000000px;}
.y3ab{bottom:294.551550px;}
.y4b{bottom:295.204650px;}
.y1{bottom:295.415700px;}
.y187{bottom:295.500000px;}
.y27{bottom:296.550000px;}
.y89{bottom:298.883250px;}
.y99{bottom:299.116800px;}
.yc7{bottom:300.000000px;}
.y4f5{bottom:301.500000px;}
.y4dd{bottom:303.000000px;}
.y54c{bottom:304.500000px;}
.y3dc{bottom:306.000000px;}
.y3a{bottom:306.262515px;}
.y4cc{bottom:306.337800px;}
.y223{bottom:307.313250px;}
.y1ba{bottom:307.635540px;}
.y36f{bottom:308.962515px;}
.y35c{bottom:309.000000px;}
.y3ca{bottom:309.754950px;}
.y423{bottom:310.500000px;}
.y563{bottom:310.803150px;}
.y279{bottom:312.000000px;}
.y418{bottom:313.080150px;}
.ydd{bottom:313.500000px;}
.y88{bottom:314.616750px;}
.y556{bottom:315.000000px;}
.y45f{bottom:315.066000px;}
.y2a8{bottom:316.185150px;}
.y2e7{bottom:316.500000px;}
.y4a{bottom:317.704650px;}
.y4de{bottom:318.916800px;}
.y110{bottom:321.000000px;}
.y26{bottom:322.050000px;}
.yc6{bottom:322.500000px;}
.y109{bottom:322.864800px;}
.y3a9{bottom:323.101350px;}
.y524{bottom:324.000000px;}
.y519{bottom:325.042500px;}
.y4f4{bottom:325.500000px;}
.y508{bottom:327.000000px;}
.y53a{bottom:328.500000px;}
.y56f{bottom:329.512050px;}
.y2d9{bottom:329.514900px;}
.y47c{bottom:329.605200px;}
.y1b9{bottom:331.635540px;}
.y36e{bottom:332.962515px;}
.y126{bottom:333.000000px;}
.y278{bottom:334.500000px;}
.ydc{bottom:336.000000px;}
.y3c8{bottom:337.174650px;}
.y2e6{bottom:340.500000px;}
.y49{bottom:341.704650px;}
.y58c{bottom:342.000000px;}
.y17a{bottom:342.562515px;}
.y416{bottom:342.752400px;}
.y221{bottom:343.590300px;}
.y46d{bottom:345.000000px;}
.yc5{bottom:346.500000px;}
.y3bd{bottom:348.000000px;}
.y45d{bottom:348.758850px;}
.y3c3{bottom:349.500000px;}
.y555{bottom:351.000000px;}
.y14e{bottom:351.052500px;}
.y3a7{bottom:351.651300px;}
.y35d{bottom:352.500000px;}
.y5{bottom:352.584300px;}
.y56e{bottom:354.000000px;}
.y25{bottom:355.050000px;}
.y36d{bottom:355.462515px;}
.y471{bottom:355.975200px;}
.y125{bottom:357.000000px;}
.y277{bottom:358.500000px;}
.ydb{bottom:360.000000px;}
.y3dd{bottom:361.500000px;}
.y2e5{bottom:363.000000px;}
.y539{bottom:364.500000px;}
.y3c6{bottom:364.594200px;}
.y575{bottom:364.912500px;}
.y48{bottom:365.704650px;}
.y330{bottom:366.000000px;}
.y336{bottom:367.500000px;}
.y2fd{bottom:369.000000px;}
.y6c{bottom:369.862515px;}
.yc4{bottom:370.500000px;}
.y172{bottom:371.532750px;}
.y3c2{bottom:372.000000px;}
.y414{bottom:372.424650px;}
.y2ca{bottom:373.500000px;}
.y483{bottom:374.635350px;}
.y111{bottom:376.500000px;}
.y107{bottom:378.723750px;}
.y36c{bottom:379.462515px;}
.y124{bottom:379.500000px;}
.y21e{bottom:379.867500px;}
.y2d7{bottom:380.052900px;}
.y3a5{bottom:380.201100px;}
.y507{bottom:381.000000px;}
.y276{bottom:382.500000px;}
.yda{bottom:384.000000px;}
.y2e4{bottom:387.000000px;}
.y47{bottom:388.204650px;}
.y233{bottom:388.500000px;}
.y331{bottom:390.000000px;}
.y523{bottom:391.500000px;}
.y3c4{bottom:392.013900px;}
.yc3{bottom:393.000000px;}
.y3f7{bottom:394.500000px;}
.y25a{bottom:394.977000px;}
.y3c1{bottom:396.000000px;}
.y2a6{bottom:396.359850px;}
.y2c9{bottom:397.500000px;}
.y179{bottom:398.062515px;}
.y358{bottom:398.092200px;}
.y424{bottom:399.000000px;}
.y1a9{bottom:400.027950px;}
.y412{bottom:402.096750px;}
.y36b{bottom:403.462515px;}
.y123{bottom:403.500000px;}
.y24{bottom:404.550000px;}
.y275{bottom:405.000000px;}
.y29d{bottom:406.096200px;}
.yd9{bottom:406.500000px;}
.y56d{bottom:408.000000px;}
.y3a3{bottom:408.750900px;}
.y35e{bottom:409.500000px;}
.y459{bottom:410.962500px;}
.y69{bottom:411.000000px;}
.y46{bottom:412.204650px;}
.y3f6{bottom:414.000000px;}
.y54b{bottom:415.500000px;}
.y21b{bottom:416.144550px;}
.y2fc{bottom:417.000000px;}
.y2c8{bottom:420.000000px;}
.y574{bottom:420.412500px;}
.y171{bottom:423.000000px;}
.y1f{bottom:423.450000px;}
.y39e{bottom:424.500000px;}
.y6b{bottom:425.362515px;}
.y36a{bottom:425.962515px;}
.y122{bottom:426.000000px;}
.y46e{bottom:426.654300px;}
.y270{bottom:428.369850px;}
.y425{bottom:429.000000px;}
.y68{bottom:430.500000px;}
.y410{bottom:431.769000px;}
.y112{bottom:432.000000px;}
.y3be{bottom:433.500000px;}
.y105{bottom:434.582700px;}
.y458{bottom:434.962500px;}
.y3a1{bottom:437.300700px;}
.y23{bottom:437.550000px;}
.y522{bottom:438.000000px;}
.y2fb{bottom:439.500000px;}
.y4{bottom:439.584300px;}
.y538{bottom:441.000000px;}
.y3c0{bottom:442.500000px;}
.y2c7{bottom:444.000000px;}
.y39d{bottom:448.500000px;}
.y2a4{bottom:449.935650px;}
.y369{bottom:449.962515px;}
.y121{bottom:450.000000px;}
.y219{bottom:452.421750px;}
.y142{bottom:452.601000px;}
.yc2{bottom:453.000000px;}
.y2a3{bottom:454.500000px;}
.y67{bottom:456.000000px;}
.y457{bottom:457.462500px;}
.y426{bottom:457.500000px;}
.y3fc{bottom:459.000000px;}
.y26c{bottom:460.402800px;}
.y4b7{bottom:460.949850px;}
.y40e{bottom:461.441250px;}
.y3bf{bottom:462.000000px;}
.y58b{bottom:463.500000px;}
.y4f3{bottom:465.000000px;}
.y39f{bottom:465.850650px;}
.y2c6{bottom:468.000000px;}
.y1e2{bottom:469.926900px;}
.y368{bottom:472.462515px;}
.y39c{bottom:472.500000px;}
.y2e3{bottom:474.000000px;}
.y4c0{bottom:474.352350px;}
.yc1{bottom:477.000000px;}
.y2a2{bottom:478.500000px;}
.y66{bottom:480.000000px;}
.y456{bottom:481.462500px;}
.y506{bottom:481.721100px;}
.y4ca{bottom:484.500000px;}
.y54a{bottom:486.000000px;}
.y406{bottom:486.262500px;}
.y22{bottom:487.050000px;}
.y113{bottom:487.500000px;}
.y4b9{bottom:489.000000px;}
.y103{bottom:490.441650px;}
.y1ff{bottom:490.467900px;}
.y4b5{bottom:490.823700px;}
.y299{bottom:491.015700px;}
.y40c{bottom:491.113500px;}
.y554{bottom:492.000000px;}
.y3f5{bottom:493.500000px;}
.y39b{bottom:495.000000px;}
.y367{bottom:496.462515px;}
.y518{bottom:496.500000px;}
.y1f2{bottom:499.807200px;}
.yc0{bottom:501.000000px;}
.y2a1{bottom:502.500000px;}
.y455{bottom:503.962500px;}
.ye{bottom:505.008420px;}
.y505{bottom:505.500000px;}
.y56c{bottom:507.000000px;}
.y3fe{bottom:508.500000px;}
.y405{bottom:508.762500px;}
.y65{bottom:510.000000px;}
.y562{bottom:511.500000px;}
.y3f4{bottom:513.000000px;}
.y537{bottom:513.625350px;}
.y3f8{bottom:516.000000px;}
.y21{bottom:517.050000px;}
.y4c2{bottom:517.232100px;}
.ye4{bottom:517.500000px;}
.y39a{bottom:519.000000px;}
.y40a{bottom:520.785600px;}
.y4ba{bottom:522.000000px;}
.y26a{bottom:522.180450px;}
.y1ab{bottom:523.459800px;}
.ybf{bottom:523.500000px;}
.y4b3{bottom:524.516550px;}
.y3fd{bottom:526.500000px;}
.y212{bottom:527.013900px;}
.y178{bottom:527.062515px;}
.y58a{bottom:528.000000px;}
.y45{bottom:528.295350px;}
.y1f0{bottom:529.518450px;}
.y521{bottom:531.000000px;}
.y338{bottom:531.336450px;}
.y64{bottom:532.500000px;}
.y404{bottom:532.762500px;}
.y366{bottom:533.962515px;}
.y120{bottom:534.000000px;}
.y3{bottom:534.084300px;}
.y32d{bottom:534.977100px;}
.y553{bottom:534.993450px;}
.y4f2{bottom:535.500000px;}
.y536{bottom:537.000000px;}
.ye3{bottom:540.000000px;}
.y454{bottom:541.462500px;}
.y504{bottom:541.500000px;}
.y114{bottom:543.000000px;}
.y101{bottom:546.300600px;}
.ybe{bottom:547.500000px;}
.y38d{bottom:549.000000px;}
.y549{bottom:549.742500px;}
.y20{bottom:550.050000px;}
.y267{bottom:554.213250px;}
.y561{bottom:554.825850px;}
.y399{bottom:555.000000px;}
.y403{bottom:555.262500px;}
.y365{bottom:556.462515px;}
.y11f{bottom:556.500000px;}
.y4b1{bottom:558.209400px;}
.y1ed{bottom:559.229550px;}
.y4f1{bottom:559.500000px;}
.y4c4{bottom:560.112000px;}
.y56b{bottom:561.000000px;}
.y63{bottom:562.500000px;}
.y20f{bottom:563.291100px;}
.ye2{bottom:564.000000px;}
.y453{bottom:565.462500px;}
.y391{bottom:565.500000px;}
.y7f{bottom:567.000000px;}
.y13a{bottom:567.739650px;}
.ybd{bottom:570.000000px;}
.y38c{bottom:573.000000px;}
.y503{bottom:577.500000px;}
.y398{bottom:579.000000px;}
.y402{bottom:579.262500px;}
.y364{bottom:580.462515px;}
.y11d{bottom:580.500000px;}
.y4f0{bottom:582.000000px;}
.y11e{bottom:583.500000px;}
.y356{bottom:585.000000px;}
.y62{bottom:586.500000px;}
.y452{bottom:587.962500px;}
.ye1{bottom:588.000000px;}
.y265{bottom:588.454500px;}
.y1ea{bottom:588.940650px;}
.y7e{bottom:589.500000px;}
.yd{bottom:590.508420px;}
.y548{bottom:591.000000px;}
.y4af{bottom:591.902100px;}
.y589{bottom:592.500000px;}
.ybc{bottom:594.000000px;}
.y502{bottom:595.500000px;}
.y38b{bottom:597.000000px;}
.y20d{bottom:599.568150px;}
.y520{bottom:601.500000px;}
.y363{bottom:602.962515px;}
.y4c6{bottom:602.991750px;}
.y397{bottom:603.000000px;}
.y401{bottom:603.262500px;}
.y56a{bottom:603.400350px;}
.y11c{bottom:604.500000px;}
.y4ef{bottom:606.000000px;}
.y61{bottom:607.500000px;}
.y3ea{bottom:608.962515px;}
.y547{bottom:609.000000px;}
.y295{bottom:610.107750px;}
.ye0{bottom:610.500000px;}
.y451{bottom:611.962500px;}
.y7d{bottom:613.500000px;}
.y4cb{bottom:615.000000px;}
.ybb{bottom:618.000000px;}
.y1e8{bottom:618.651750px;}
.y38a{bottom:619.500000px;}
.y262{bottom:620.487300px;}
.y4bb{bottom:622.500000px;}
.y396{bottom:625.500000px;}
.y4ad{bottom:625.594950px;}
.y400{bottom:625.762500px;}
.y11b{bottom:627.000000px;}
.y2{bottom:628.584300px;}
.y3e9{bottom:629.962515px;}
.y501{bottom:631.500000px;}
.y2d5{bottom:633.750000px;}
.y450{bottom:634.462500px;}
.y20b{bottom:635.845350px;}
.y7c{bottom:637.500000px;}
.y60{bottom:639.000000px;}
.yba{bottom:640.500000px;}
.y309{bottom:645.000000px;}
.y4c8{bottom:645.871650px;}
.y32a{bottom:648.000000px;}
.y1e6{bottom:648.362850px;}
.y319{bottom:649.400100px;}
.y500{bottom:649.500000px;}
.y11a{bottom:651.000000px;}
.y2bf{bottom:651.813900px;}
.y357{bottom:652.500000px;}
.y25f{bottom:652.520100px;}
.y3f9{bottom:655.301700px;}
.y19d{bottom:655.360800px;}
.y4bc{bottom:655.500000px;}
.y79{bottom:655.593750px;}
.y134{bottom:656.372400px;}
.y3f2{bottom:658.032750px;}
.y44f{bottom:658.462500px;}
.y4ab{bottom:659.287800px;}
.y7b{bottom:660.000000px;}
.y51f{bottom:661.500000px;}
.y535{bottom:661.825350px;}
.y5f{bottom:663.000000px;}
.yb9{bottom:664.500000px;}
.y335{bottom:666.000000px;}
.y308{bottom:667.500000px;}
.y287{bottom:669.000000px;}
.y588{bottom:670.500000px;}
.y209{bottom:672.122400px;}
.y4bd{bottom:672.241650px;}
.y284{bottom:673.500000px;}
.y560{bottom:675.000000px;}
.y1e4{bottom:678.073950px;}
.y546{bottom:681.000000px;}
.y44e{bottom:682.462500px;}
.y3e8{bottom:682.462515px;}
.y5e{bottom:684.000000px;}
.y2d2{bottom:684.221850px;}
.y51e{bottom:685.500000px;}
.y25c{bottom:686.761350px;}
.yd8{bottom:687.000000px;}
.y286{bottom:688.500000px;}
.y119{bottom:691.500000px;}
.y517{bottom:691.942500px;}
.y283{bottom:693.000000px;}
.yb7{bottom:700.500000px;}
.y4ff{bottom:703.500000px;}
.y44d{bottom:704.962500px;}
.y3e7{bottom:704.962515px;}
.yb8{bottom:705.000000px;}
.y206{bottom:708.399600px;}
.y2f9{bottom:709.036500px;}
.y1cd{bottom:709.369650px;}
.y30b{bottom:709.500000px;}
.yd7{bottom:711.000000px;}
.y587{bottom:712.500000px;}
.yc{bottom:715.008420px;}
.y516{bottom:715.500000px;}
.y293{bottom:717.577200px;}
.y55f{bottom:718.307250px;}
.y234{bottom:718.500000px;}
.y32b{bottom:720.000000px;}
.y240{bottom:720.497550px;}
.y534{bottom:721.500000px;}
.yb6{bottom:724.500000px;}
.y45b{bottom:726.000000px;}
.y170{bottom:727.500000px;}
.y44c{bottom:728.962500px;}
.y3e6{bottom:728.962515px;}
.y545{bottom:729.000000px;}
.y480{bottom:729.119850px;}
.y30a{bottom:732.000000px;}
.y318{bottom:732.670695px;}
.y515{bottom:733.500000px;}
.yd6{bottom:735.000000px;}
.y329{bottom:738.000000px;}
.y1de{bottom:739.165500px;}
.y533{bottom:739.500000px;}
.y5d{bottom:742.500000px;}
.y203{bottom:744.676650px;}
.y12e{bottom:747.872400px;}
.yb4{bottom:748.500000px;}
.y4fe{bottom:750.000000px;}
.y44b{bottom:751.462500px;}
.yb5{bottom:751.500000px;}
.yf7{bottom:751.948950px;}
.y255{bottom:752.733750px;}
.y2ba{bottom:754.389300px;}
.y28f{bottom:756.000000px;}
.yd5{bottom:757.500000px;}
.y1f6{bottom:759.450000px;}
.y2f6{bottom:759.456150px;}
.y439{bottom:760.708200px;}
.y387{bottom:762.258000px;}
.y289{bottom:763.500000px;}
.y3e5{bottom:764.962515px;}
.y291{bottom:766.573050px;}
.yb{bottom:767.508420px;}
.y569{bottom:768.000000px;}
.y1db{bottom:768.876600px;}
.y514{bottom:769.500000px;}
.yb3{bottom:771.000000px;}
.y2cf{bottom:771.886650px;}
.y4fd{bottom:774.000000px;}
.y44a{bottom:775.462500px;}
.y285{bottom:775.500000px;}
.y586{bottom:777.000000px;}
.y28e{bottom:778.500000px;}
.y201{bottom:780.953850px;}
.yd4{bottom:781.500000px;}
.y317{bottom:782.170695px;}
.y288{bottom:783.000000px;}
.y32c{bottom:784.500000px;}
.y253{bottom:784.766700px;}
.yf9{bottom:787.500000px;}
.y19f{bottom:788.705250px;}
.yf5{bottom:788.915850px;}
.y43b{bottom:790.500000px;}
.y437{bottom:791.868750px;}
.y513{bottom:793.500000px;}
.yb2{bottom:795.000000px;}
.y4fc{bottom:796.500000px;}
.y353{bottom:796.678050px;}
.y1d9{bottom:798.587700px;}
.y449{bottom:799.462500px;}
.y98{bottom:801.883200px;}
.y28d{bottom:802.500000px;}
.yd3{bottom:804.000000px;}
.y532{bottom:808.500000px;}
.y4a6{bottom:811.462500px;}
.y544{bottom:811.500000px;}
.y495{bottom:811.837500px;}
.y512{bottom:816.000000px;}
.y250{bottom:816.799500px;}
.yb0{bottom:817.500000px;}
.y1f7{bottom:819.000000px;}
.y12c{bottom:819.439050px;}
.y4fb{bottom:820.500000px;}
.y448{bottom:821.962500px;}
.yb1{bottom:822.000000px;}
.y49d{bottom:824.864850px;}
.y28c{bottom:826.500000px;}
.y118{bottom:828.000000px;}
.y435{bottom:828.134700px;}
.y1d7{bottom:828.298800px;}
.y531{bottom:832.500000px;}
.y585{bottom:834.000000px;}
.yfb{bottom:835.500000px;}
.yf3{bottom:836.794950px;}
.y4a8{bottom:837.000000px;}
.y497{bottom:840.000000px;}
.yae{bottom:841.500000px;}
.y493{bottom:841.711350px;}
.y4a9{bottom:843.000000px;}
.yaf{bottom:844.500000px;}
.y2f4{bottom:844.510800px;}
.y447{bottom:845.962500px;}
.y3e4{bottom:845.962515px;}
.y2cd{bottom:846.064050px;}
.y24d{bottom:848.832300px;}
.y28b{bottom:849.000000px;}
.y377{bottom:851.622000px;}
.y117{bottom:852.000000px;}
.y30c{bottom:855.000000px;}
.y5c{bottom:858.000000px;}
.y1d5{bottom:858.009900px;}
.y43c{bottom:862.500000px;}
.y55e{bottom:863.788650px;}
.y511{bottom:864.000000px;}
.y433{bottom:864.400800px;}
.yad{bottom:865.500000px;}
.y49f{bottom:867.932250px;}
.y446{bottom:868.462500px;}
.y16f{bottom:868.500000px;}
.y3e3{bottom:869.962515px;}
.y498{bottom:873.000000px;}
.y116{bottom:874.500000px;}
.y491{bottom:875.404050px;}
.y342{bottom:875.797200px;}
.y584{bottom:876.000000px;}
.y5b{bottom:877.500000px;}
.y530{bottom:879.000000px;}
.y24b{bottom:880.865250px;}
.y316{bottom:881.170695px;}
.yfc{bottom:882.000000px;}
.y307{bottom:883.500000px;}
.yf1{bottom:884.674050px;}
.y510{bottom:886.500000px;}
.y2b6{bottom:886.664100px;}
.y1d2{bottom:887.721000px;}
.yac{bottom:888.000000px;}
.y2c5{bottom:891.000000px;}
.y568{bottom:892.270050px;}
.y3e2{bottom:892.462515px;}
.y2f2{bottom:894.324300px;}
.y2cb{bottom:895.927650px;}
.y383{bottom:897.000000px;}
.y115{bottom:898.500000px;}
.y281{bottom:899.763750px;}
.y543{bottom:900.000000px;}
.y431{bottom:900.666750px;}
.y28a{bottom:901.500000px;}
.y5a{bottom:903.000000px;}
.y305{bottom:904.500000px;}
.y315{bottom:905.170695px;}
.y445{bottom:905.962500px;}
.y499{bottom:906.000000px;}
.y48f{bottom:909.096900px;}
.y4a0{bottom:910.999500px;}
.yab{bottom:912.000000px;}
.y248{bottom:912.898050px;}
.y2c4{bottom:915.000000px;}
.y3e1{bottom:916.462515px;}
.y567{bottom:916.500000px;}
.y1cf{bottom:917.432250px;}
.y350{bottom:918.000000px;}
.y583{bottom:919.500000px;}
.y12b{bottom:921.000000px;}
.y196{bottom:921.344850px;}
.y542{bottom:924.000000px;}
.y50f{bottom:928.342500px;}
.yfd{bottom:930.000000px;}
.y552{bottom:931.500000px;}
.yef{bottom:932.553150px;}
.y59{bottom:933.000000px;}
.y39{bottom:933.262515px;}
.yaa{bottom:934.500000px;}
.y42f{bottom:936.932850px;}
.y3e0{bottom:938.962515px;}
.yd2{bottom:939.000000px;}
.y304{bottom:940.500000px;}
.y314{bottom:941.170695px;}
.y351{bottom:942.000000px;}
.y1b8{bottom:942.135540px;}
.y48d{bottom:942.789750px;}
.y2f0{bottom:944.137950px;}
.y245{bottom:944.931000px;}
.y12a{bottom:945.000000px;}
.y541{bottom:946.500000px;}
.y1c7{bottom:948.727950px;}
.y444{bottom:949.462500px;}
.y50e{bottom:952.500000px;}
.y1e{bottom:954.000000px;}
.y4a2{bottom:954.066900px;}
.y30d{bottom:955.500000px;}
.ya9{bottom:958.500000px;}
.y186{bottom:961.500000px;}
.y3df{bottom:962.962515px;}
.y303{bottom:963.000000px;}
.y313{bottom:965.170695px;}
.y52f{bottom:966.000000px;}
.y1b7{bottom:966.135540px;}
.y43d{bottom:970.500000px;}
.y42d{bottom:973.198950px;}
.y384{bottom:973.500000px;}
.y4aa{bottom:975.000000px;}
.y48b{bottom:976.482450px;}
.y242{bottom:976.963800px;}
.yfe{bottom:978.000000px;}
.yed{bottom:980.432250px;}
.ya8{bottom:982.500000px;}
.y58{bottom:984.000000px;}
.y443{bottom:986.962500px;}
.y3de{bottom:986.962515px;}
.y50d{bottom:988.500000px;}
.y198{bottom:988.884600px;}
.y2b3{bottom:988.894500px;}
.y312{bottom:989.170695px;}
.y1b6{bottom:990.135540px;}
.y540{bottom:994.500000px;}
.y4a4{bottom:997.134150px;}
.y2c3{bottom:999.000000px;}
.y30e{bottom:1000.764300px;}
.y55d{bottom:1002.000000px;}
.y57{bottom:1005.000000px;}
.y43e{bottom:1006.500000px;}
.y442{bottom:1009.462500px;}
.y362{bottom:1009.462515px;}
.y42b{bottom:1009.464900px;}
.y489{bottom:1010.175300px;}
.y235{bottom:1010.700000px;}
.y311{bottom:1011.670695px;}
.y1b5{bottom:1012.635540px;}
.ya{bottom:1016.508420px;}
.y386{bottom:1017.000000px;}
.y34f{bottom:1023.000000px;}
.y49a{bottom:1023.504150px;}
.yff{bottom:1024.500000px;}
.yeb{bottom:1028.311350px;}
.y352{bottom:1036.500000px;}
.y385{bottom:1038.000000px;}
.y43f{bottom:1042.500000px;}
.y429{bottom:1045.731000px;}
.y194{bottom:1060.939950px;}
.y2b1{bottom:1063.169250px;}
.y100{bottom:1072.500000px;}
.ye9{bottom:1076.190450px;}
.y440{bottom:1078.500000px;}
.y486{bottom:1078.804800px;}
.y427{bottom:1081.996950px;}
.y16{bottom:1169.433300px;}
.y1a{bottom:1170.649350px;}
.y18{bottom:1177.761750px;}
.y1c{bottom:1180.511700px;}
.h93{height:4.177734px;}
.h91{height:18.000000px;}
.h30{height:19.080000px;}
.h6b{height:19.500000px;}
.h2e{height:20.580000px;}
.h8e{height:20.888672px;}
.h69{height:21.000000px;}
.h31{height:22.500000px;}
.h67{height:23.477880px;}
.h8a{height:24.000000px;}
.h2d{height:26.437500px;}
.h52{height:28.211130px;}
.h51{height:28.295715px;}
.h54{height:28.380300px;}
.h15{height:28.488285px;}
.h62{height:30.532860px;}
.h61{height:30.736215px;}
.h12{height:31.238280px;}
.h66{height:31.892925px;}
.h64{height:32.741220px;}
.h28{height:33.421875px;}
.h26{height:34.148445px;}
.h59{height:34.777125px;}
.h58{height:35.046150px;}
.h5b{height:35.315160px;}
.h1c{height:36.621090px;}
.h9c{height:37.080000px;}
.ha2{height:37.500000px;}
.h3c{height:37.599609px;}
.he{height:38.733398px;}
.hf{height:39.788086px;}
.h11{height:40.500000px;}
.h13{height:40.842773px;}
.hb{height:41.777344px;}
.h8b{height:41.953125px;}
.h14{height:42.185370px;}
.h9b{height:43.320000px;}
.h10{height:43.401465px;}
.h3f{height:43.740000px;}
.h2f{height:43.860000px;}
.h32{height:44.111010px;}
.h40{height:44.437500px;}
.h19{height:44.663145px;}
.h9a{height:45.380859px;}
.h46{height:45.826172px;}
.h45{height:45.858398px;}
.h21{height:45.955078px;}
.ha3{height:46.233735px;}
.ha4{height:46.249350px;}
.haa{height:46.986328px;}
.h6e{height:47.495820px;}
.h3a{height:47.988281px;}
.hc{height:48.049805px;}
.h6a{height:48.246000px;}
.h87{height:48.313530px;}
.h7e{height:48.363585px;}
.h89{height:48.919635px;}
.h81{height:48.971820px;}
.h82{height:49.038030px;}
.ha5{height:49.195155px;}
.ha1{height:49.382085px;}
.h85{height:49.674765px;}
.h6f{height:49.992188px;}
.h9e{height:50.027344px;}
.h7{height:50.132812px;}
.h20{height:51.955078px;}
.h74{height:52.075830px;}
.h68{height:52.632000px;}
.ha7{height:53.050781px;}
.h1b{height:54.000000px;}
.h1a{height:54.883890px;}
.ha{height:58.488281px;}
.h3b{height:59.034375px;}
.h65{height:60.277650px;}
.h8d{height:61.404000px;}
.h29{height:62.437500px;}
.h42{height:62.559990px;}
.h78{height:62.580705px;}
.h6d{height:63.330705px;}
.h5{height:63.533203px;}
.h3d{height:64.706280px;}
.h1f{height:65.172656px;}
.h47{height:66.039780px;}
.h4f{height:66.172095px;}
.h18{height:66.843750px;}
.h44{height:69.055350px;}
.h6c{height:69.984000px;}
.h33{height:70.066545px;}
.h79{height:71.274750px;}
.h4{height:72.562500px;}
.h5c{height:72.609375px;}
.h7f{height:72.677340px;}
.h83{height:76.239570px;}
.h75{height:78.674625px;}
.h25{height:78.732000px;}
.h95{height:80.085510px;}
.h5d{height:80.437500px;}
.h9{height:81.685547px;}
.hd{height:82.604730px;}
.h56{height:82.800000px;}
.h72{height:83.419515px;}
.h5f{height:83.550000px;}
.h88{height:83.554635px;}
.h80{height:86.164890px;}
.h86{height:86.223633px;}
.h35{height:87.132825px;}
.h84{height:87.350625px;}
.h76{height:89.978610px;}
.h34{height:90.000000px;}
.h77{height:93.456540px;}
.h37{height:100.048560px;}
.h7a{height:100.730370px;}
.h7c{height:101.075370px;}
.h70{height:105.969525px;}
.h3{height:108.914062px;}
.h38{height:110.302455px;}
.h8{height:113.452148px;}
.h36{height:113.638635px;}
.h71{height:117.591915px;}
.h94{height:119.777325px;}
.h4d{height:121.931715px;}
.h39{height:126.000000px;}
.h4c{height:128.901075px;}
.h49{height:129.639585px;}
.h7b{height:130.774875px;}
.h4a{height:131.844480px;}
.h43{height:136.595130px;}
.ha0{height:137.865234px;}
.h90{height:152.020200px;}
.h8f{height:157.419900px;}
.h1e{height:163.371094px;}
.h99{height:207.538050px;}
.h50{height:236.358150px;}
.h53{height:236.442750px;}
.h96{height:242.704200px;}
.h4b{height:252.332850px;}
.h2{height:254.132812px;}
.h48{height:262.984050px;}
.h9f{height:264.000000px;}
.h60{height:287.202450px;}
.h63{height:322.520700px;}
.h57{height:325.532100px;}
.h5a{height:325.801200px;}
.h2b{height:326.116800px;}
.h2a{height:327.166650px;}
.h92{height:331.321950px;}
.h97{height:333.172200px;}
.h22{height:453.516750px;}
.h17{height:577.500000px;}
.h1{height:737.645250px;}
.h5e{height:744.000000px;}
.h55{height:784.500000px;}
.h27{height:1020.000000px;}
.h3e{height:1020.562500px;}
.h41{height:1021.500000px;}
.ha8{height:1022.531250px;}
.ha6{height:1024.568100px;}
.h23{height:1024.640700px;}
.hac{height:1024.912500px;}
.hab{height:1024.983450px;}
.h2c{height:1025.062500px;}
.h16{height:1025.965200px;}
.h9d{height:1026.262500px;}
.h24{height:1026.862500px;}
.h7d{height:1027.080000px;}
.h98{height:1029.525000px;}
.h1d{height:1030.727700px;}
.h8c{height:1031.733150px;}
.h73{height:1032.000000px;}
.h4e{height:1032.698100px;}
.h6{height:1036.570950px;}
.ha9{height:1037.062500px;}
.h0{height:1263.000000px;}
.w1b{width:12.840000px;}
.w1f{width:13.500000px;}
.w20{width:15.000000px;}
.w1d{width:21.171690px;}
.w1c{width:21.180000px;}
.w1e{width:22.500000px;}
.w8d{width:23.940000px;}
.w21{width:24.000000px;}
.w75{width:25.500000px;}
.w8b{width:28.020000px;}
.w8c{width:28.110000px;}
.w72{width:29.511690px;}
.w71{width:29.520000px;}
.w51{width:30.000000px;}
.w73{width:31.500000px;}
.w28{width:33.690000px;}
.w5a{width:34.500000px;}
.w5d{width:39.000000px;}
.w53{width:40.500000px;}
.w27{width:42.015000px;}
.w85{width:43.665000px;}
.wa{width:44.358255px;}
.w55{width:46.500000px;}
.w6f{width:47.295000px;}
.w5b{width:48.000000px;}
.w52{width:49.500000px;}
.w4a{width:51.000000px;}
.w48{width:52.500000px;}
.w64{width:53.400000px;}
.w54{width:55.500000px;}
.w6a{width:55.875000px;}
.w67{width:60.915000px;}
.w88{width:63.390000px;}
.w4b{width:64.500000px;}
.w22{width:65.055000px;}
.w68{width:67.560000px;}
.w49{width:69.000000px;}
.w4d{width:70.500000px;}
.w3a{width:80.166045px;}
.w15{width:80.640000px;}
.w42{width:80.767515px;}
.w8e{width:81.171690px;}
.w6d{width:83.970000px;}
.w6c{width:87.315000px;}
.w74{width:90.000000px;}
.w1a{width:91.185000px;}
.w38{width:91.830525px;}
.w40{width:94.778805px;}
.w14{width:99.795000px;}
.w84{width:101.730000px;}
.w45{width:103.639410px;}
.w3c{width:105.271155px;}
.w25{width:106.155000px;}
.w3d{width:106.852785px;}
.w7f{width:107.580000px;}
.w65{width:107.820000px;}
.w44{width:108.279960px;}
.w34{width:108.722955px;}
.w32{width:108.821805px;}
.w19{width:109.215000px;}
.w3b{width:115.004370px;}
.w43{width:115.214400px;}
.w35{width:116.436285px;}
.w16{width:119.775000px;}
.w89{width:121.455000px;}
.w26{width:125.055000px;}
.w6b{width:126.465000px;}
.w18{width:128.415000px;}
.w6e{width:134.265000px;}
.w70{width:135.225000px;}
.w69{width:136.725000px;}
.w87{width:137.565000px;}
.w36{width:142.133925px;}
.w47{width:144.000000px;}
.w66{width:148.875000px;}
.w41{width:155.819850px;}
.w39{width:160.875150px;}
.w17{width:162.480000px;}
.w23{width:170.355000px;}
.w2c{width:172.171350px;}
.w8a{width:177.522600px;}
.w86{width:180.510000px;}
.w7c{width:184.245000px;}
.w33{width:185.385000px;}
.w56{width:188.250000px;}
.w24{width:188.850000px;}
.w7d{width:189.810000px;}
.w30{width:195.501600px;}
.w2a{width:216.666750px;}
.w7b{width:217.005000px;}
.w79{width:231.990000px;}
.w77{width:241.260000px;}
.w83{width:270.000000px;}
.w7e{width:271.515000px;}
.w2b{width:275.661900px;}
.w76{width:276.525000px;}
.w3{width:289.518600px;}
.w7a{width:292.305000px;}
.w58{width:308.422050px;}
.w46{width:310.392600px;}
.w4c{width:310.393650px;}
.w60{width:323.209500px;}
.w59{width:325.338750px;}
.wf{width:327.553050px;}
.w2d{width:329.859300px;}
.w2e{width:338.250000px;}
.w61{width:340.556700px;}
.w5c{width:346.818150px;}
.w80{width:347.940000px;}
.w63{width:349.750050px;}
.w62{width:353.223450px;}
.w81{width:362.340000px;}
.w5e{width:368.077950px;}
.w78{width:372.795000px;}
.w7{width:375.000000px;}
.w6{width:384.169500px;}
.wb{width:386.726100px;}
.w92{width:397.673400px;}
.w5{width:412.433550px;}
.w4{width:421.603200px;}
.w31{width:470.498400px;}
.w4f{width:667.500000px;}
.wd{width:670.500000px;}
.w1{width:674.904450px;}
.w13{width:676.500000px;}
.w12{width:676.913400px;}
.w8f{width:677.343750px;}
.w3f{width:679.500000px;}
.w37{width:681.000000px;}
.w11{width:684.937500px;}
.w90{width:686.466750px;}
.w10{width:686.625000px;}
.w93{width:687.228000px;}
.w5f{width:687.820500px;}
.w82{width:688.642500px;}
.w57{width:689.016000px;}
.w91{width:689.448300px;}
.w8{width:690.134700px;}
.w4e{width:690.659850px;}
.w29{width:691.839150px;}
.w50{width:692.691300px;}
.w3e{width:696.952200px;}
.w2{width:697.804350px;}
.w9{width:700.755000px;}
.we{width:702.065250px;}
.wc{width:707.178150px;}
.w2f{width:717.933150px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2e{left:1.815000px;}
.x35{left:2.827500px;}
.xe{left:4.509300px;}
.x10{left:6.000000px;}
.x4b{left:7.669560px;}
.x70{left:9.128250px;}
.xa{left:10.652160px;}
.x1f{left:12.782595px;}
.x6f{left:14.294400px;}
.x19{left:15.339105px;}
.x61{left:17.793150px;}
.x6e{left:18.794400px;}
.x63{left:21.570150px;}
.x5e{left:25.500000px;}
.x62{left:26.793150px;}
.x72{left:28.852800px;}
.xd{left:30.009300px;}
.x73{left:32.294400px;}
.x2{left:33.495570px;}
.x76{left:35.294400px;}
.x6{left:36.495570px;}
.x79{left:37.628250px;}
.x75{left:39.624000px;}
.x74{left:40.628250px;}
.x68{left:41.793150px;}
.x78{left:44.124000px;}
.x67{left:45.570150px;}
.x7d{left:46.971150px;}
.x1d{left:48.000000px;}
.x65{left:50.070150px;}
.x77{left:52.628250px;}
.x66{left:53.633850px;}
.x1e{left:54.782595px;}
.x1a{left:57.339105px;}
.x54{left:58.339500px;}
.x69{left:59.633850px;}
.x60{left:62.178150px;}
.x5c{left:69.000000px;}
.x15{left:71.250000px;}
.xf4{left:75.025500px;}
.xc{left:78.009300px;}
.x1b{left:79.839105px;}
.x82{left:82.500000px;}
.x50{left:84.168195px;}
.x10d{left:85.983405px;}
.x25{left:87.000000px;}
.x59{left:88.669560px;}
.x88{left:89.893650px;}
.x18{left:92.660895px;}
.x3{left:94.995570px;}
.x8{left:97.347840px;}
.x52{left:98.501400px;}
.x92{left:99.904365px;}
.x14{left:101.182620px;}
.x21{left:102.937500px;}
.xf{left:104.165220px;}
.x6a{left:105.750000px;}
.x23{left:108.000000px;}
.x1{left:109.004430px;}
.x1c{left:111.000000px;}
.x5b{left:112.500000px;}
.x42{left:115.544985px;}
.x4f{left:116.831805px;}
.xf7{left:120.502845px;}
.xce{left:124.392600px;}
.xbf{left:127.062705px;}
.xb1{left:129.240015px;}
.x6b{left:131.250000px;}
.x7b{left:133.500000px;}
.x5{left:136.995570px;}
.xb2{left:139.500015px;}
.x31{left:142.065000px;}
.xc9{left:147.000000px;}
.x30{left:150.705000px;}
.x9{left:154.652160px;}
.xa0{left:157.500000px;}
.x32{left:161.265000px;}
.xf0{left:162.810600px;}
.xca{left:165.000000px;}
.x4{left:166.995570px;}
.x2d{left:170.685000px;}
.x13{left:174.759450px;}
.xab{left:177.000000px;}
.x33{left:179.295000px;}
.xb3{left:181.995000px;}
.xc0{left:187.587750px;}
.x2f{left:189.840000px;}
.xb0{left:198.405000px;}
.x94{left:202.500000px;}
.xd3{left:204.270000px;}
.x6c{left:205.830450px;}
.xe3{left:207.195000px;}
.x7c{left:209.528850px;}
.xaf{left:212.565000px;}
.x96{left:216.000000px;}
.x98{left:217.500000px;}
.xb4{left:218.670000px;}
.x41{left:220.845000px;}
.x5f{left:222.821850px;}
.x97{left:225.000000px;}
.x8f{left:227.250000px;}
.x24{left:229.500000px;}
.x26{left:232.500000px;}
.x7{left:235.995570px;}
.x95{left:237.000000px;}
.xae{left:238.500000px;}
.xd4{left:239.535000px;}
.xef{left:240.600600px;}
.x43{left:243.885000px;}
.xe1{left:246.720000px;}
.x90{left:248.250000px;}
.xc7{left:252.000000px;}
.x93{left:257.250000px;}
.x91{left:261.000000px;}
.xcc{left:262.500000px;}
.xd5{left:263.790000px;}
.xa6{left:265.500000px;}
.x85{left:268.500000px;}
.x86{left:274.500000px;}
.xcb{left:276.000000px;}
.x100{left:277.038000px;}
.x34{left:279.172500px;}
.xad{left:280.500000px;}
.xbb{left:282.000000px;}
.x103{left:285.000000px;}
.x3c{left:286.500000px;}
.xa7{left:288.000000px;}
.xac{left:289.500000px;}
.x56{left:291.562500px;}
.xf1{left:292.957950px;}
.xe2{left:294.465000px;}
.x3b{left:295.500000px;}
.x83{left:297.000000px;}
.x2a{left:299.062500px;}
.xb{left:301.490700px;}
.x28{left:303.562500px;}
.x84{left:306.000000px;}
.xcd{left:307.500000px;}
.x5d{left:309.501600px;}
.x46{left:315.000000px;}
.x55{left:317.062500px;}
.x5a{left:326.062500px;}
.xbd{left:330.000000px;}
.x4a{left:333.000000px;}
.x51{left:334.998600px;}
.xbc{left:336.000000px;}
.xa1{left:342.258000px;}
.x47{left:343.500000px;}
.xc5{left:346.500000px;}
.x27{left:353.062500px;}
.x4e{left:354.937500px;}
.x7a{left:358.226070px;}
.x17{left:361.968750px;}
.x7e{left:366.848700px;}
.x6d{left:368.205600px;}
.x2c{left:371.062500px;}
.xd6{left:373.215000px;}
.x101{left:379.969200px;}
.x10e{left:384.670155px;}
.x10c{left:386.766705px;}
.xb5{left:390.088050px;}
.xf9{left:391.500000px;}
.x10a{left:393.461805px;}
.x81{left:395.062500px;}
.x36{left:397.456800px;}
.x58{left:399.169560px;}
.x10b{left:401.196105px;}
.x16{left:402.886950px;}
.x11{left:404.165250px;}
.x4c{left:408.169560px;}
.x12{left:409.500000px;}
.xb9{left:415.500000px;}
.xf8{left:423.000000px;}
.xaa{left:425.598600px;}
.x102{left:429.349800px;}
.xc8{left:432.000000px;}
.x40{left:433.500000px;}
.xf2{left:442.500000px;}
.xa9{left:445.420500px;}
.x7f{left:449.116200px;}
.x57{left:450.398400px;}
.x3f{left:457.500000px;}
.x9b{left:459.161250px;}
.x104{left:460.500000px;}
.x10f{left:468.864000px;}
.xa2{left:470.965650px;}
.x87{left:474.106350px;}
.xfa{left:480.000000px;}
.x89{left:483.000000px;}
.xe4{left:487.402500px;}
.xc6{left:489.000000px;}
.xea{left:495.000000px;}
.xc1{left:496.063050px;}
.xdc{left:498.000000px;}
.x2b{left:500.062500px;}
.x3e{left:507.000000px;}
.xcf{left:508.500000px;}
.xe0{left:513.000000px;}
.xee{left:516.000000px;}
.xdd{left:517.500000px;}
.x37{left:519.911250px;}
.xb6{left:522.198750px;}
.x4d{left:525.169560px;}
.xd0{left:526.500000px;}
.x44{left:527.621250px;}
.x8a{left:529.500000px;}
.x3d{left:531.000000px;}
.xeb{left:537.000000px;}
.x106{left:544.051200px;}
.xb8{left:546.000000px;}
.xfd{left:547.214100px;}
.xe5{left:552.065550px;}
.xd7{left:554.150550px;}
.x22{left:557.062500px;}
.x9c{left:559.500000px;}
.xfc{left:562.394100px;}
.x20{left:564.946950px;}
.x29{left:566.062500px;}
.xe8{left:570.000000px;}
.xa3{left:571.500000px;}
.x105{left:578.468700px;}
.xa4{left:586.500000px;}
.xfb{left:588.471600px;}
.x109{left:594.000000px;}
.x107{left:595.000800px;}
.xf3{left:598.474500px;}
.xbe{left:603.000000px;}
.xfe{left:605.003700px;}
.x48{left:609.000000px;}
.x53{left:612.160500px;}
.xed{left:613.500000px;}
.xf5{left:615.006600px;}
.xc2{left:620.222100px;}
.xd8{left:622.983750px;}
.xdb{left:624.000000px;}
.x9a{left:625.500000px;}
.x99{left:627.000000px;}
.x9d{left:633.000000px;}
.x64{left:637.866150px;}
.x45{left:639.965550px;}
.x38{left:642.365550px;}
.x8d{left:649.500000px;}
.x9f{left:651.000000px;}
.x8e{left:655.500000px;}
.x8b{left:660.000000px;}
.xd1{left:664.500000px;}
.xd2{left:666.000000px;}
.x8c{left:669.000000px;}
.xdf{left:670.500000px;}
.x71{left:673.147200px;}
.x80{left:675.610650px;}
.xa8{left:679.500000px;}
.xa5{left:684.000000px;}
.xe6{left:689.731800px;}
.xd9{left:691.816800px;}
.xe9{left:693.000000px;}
.x9e{left:694.500000px;}
.x49{left:705.000000px;}
.xde{left:706.500000px;}
.xc4{left:714.000000px;}
.x3a{left:715.500000px;}
.x108{left:718.500000px;}
.xff{left:724.500000px;}
.xec{left:729.000000px;}
.xba{left:732.000000px;}
.xf6{left:733.500000px;}
.xc3{left:748.551000px;}
.xe7{left:754.395000px;}
.xda{left:760.650000px;}
.x39{left:764.820000px;}
.xb7{left:773.910000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.031250pt;}
.v1{vertical-align:5.333333pt;}
.ls17{letter-spacing:-3.297067pt;}
.ls20{letter-spacing:-1.248000pt;}
.ls1c{letter-spacing:-0.857600pt;}
.lsd{letter-spacing:-0.313600pt;}
.lsf{letter-spacing:-0.032000pt;}
.ls18{letter-spacing:-0.029333pt;}
.ls34{letter-spacing:-0.026667pt;}
.ls23{letter-spacing:-0.025600pt;}
.ls29{letter-spacing:-0.021333pt;}
.lsb{letter-spacing:-0.019200pt;}
.lsa{letter-spacing:-0.017600pt;}
.ls16{letter-spacing:-0.016000pt;}
.lse{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:-0.011733pt;}
.ls2a{letter-spacing:-0.010667pt;}
.ls33{letter-spacing:-0.005333pt;}
.ls6{letter-spacing:-0.004800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000016pt;}
.ls31{letter-spacing:0.000416pt;}
.ls3{letter-spacing:0.009600pt;}
.ls35{letter-spacing:0.009760pt;}
.ls21{letter-spacing:0.010240pt;}
.ls27{letter-spacing:0.010667pt;}
.ls15{letter-spacing:0.011733pt;}
.ls22{letter-spacing:0.012800pt;}
.ls19{letter-spacing:0.014400pt;}
.ls11{letter-spacing:0.014437pt;}
.ls13{letter-spacing:0.014667pt;}
.ls1f{letter-spacing:0.016000pt;}
.ls32{letter-spacing:0.016667pt;}
.ls24{letter-spacing:0.017067pt;}
.ls14{letter-spacing:0.017600pt;}
.ls4{letter-spacing:0.019200pt;}
.ls26{letter-spacing:0.021333pt;}
.ls7{letter-spacing:0.022400pt;}
.ls5{letter-spacing:0.025600pt;}
.ls1d{letter-spacing:0.029333pt;}
.ls1e{letter-spacing:0.032000pt;}
.ls2f{letter-spacing:0.052800pt;}
.ls0{letter-spacing:0.059733pt;}
.ls37{letter-spacing:0.228800pt;}
.ls10{letter-spacing:0.883200pt;}
.ls1b{letter-spacing:1.606400pt;}
.ls28{letter-spacing:1.802667pt;}
.ls1a{letter-spacing:2.398400pt;}
.ls25{letter-spacing:2.608000pt;}
.ls36{letter-spacing:2.853067pt;}
.ls30{letter-spacing:3.220800pt;}
.ls2e{letter-spacing:5.772800pt;}
.lsc{letter-spacing:6.278400pt;}
.ls2b{letter-spacing:12.192000pt;}
.ls8{letter-spacing:45.213867pt;}
.ls9{letter-spacing:49.874667pt;}
.ls2d{letter-spacing:69.168000pt;}
.ls2c{letter-spacing:177.173333pt;}
.ws17{word-spacing:-113.168000pt;}
.ws18{word-spacing:-49.772800pt;}
.ws19{word-spacing:-47.220800pt;}
.ws1a{word-spacing:-44.052800pt;}
.ws1d{word-spacing:-17.792000pt;}
.wsc{word-spacing:-17.606400pt;}
.ws16{word-spacing:-16.309333pt;}
.wsf{word-spacing:-16.032000pt;}
.ws10{word-spacing:-16.019200pt;}
.ws14{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.987200pt;}
.ws12{word-spacing:-15.968000pt;}
.wsd{word-spacing:-15.142400pt;}
.ws15{word-spacing:-14.826667pt;}
.ws11{word-spacing:-14.752000pt;}
.wse{word-spacing:-14.696000pt;}
.ws9{word-spacing:-14.684267pt;}
.wsa{word-spacing:-14.678400pt;}
.ws4{word-spacing:-14.666667pt;}
.ws1c{word-spacing:-14.654933pt;}
.ws8{word-spacing:-14.649067pt;}
.ws6{word-spacing:-14.637333pt;}
.ws1b{word-spacing:-13.349333pt;}
.wsb{word-spacing:-12.014400pt;}
.ws5{word-spacing:-11.369600pt;}
.ws2{word-spacing:-0.064000pt;}
.ws7{word-spacing:-0.058667pt;}
.ws1{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
._3a{margin-left:-2418.459200pt;}
._2b{margin-left:-1989.367467pt;}
._50{margin-left:-1971.698133pt;}
._9{margin-left:-1917.335467pt;}
._7{margin-left:-1706.649600pt;}
._b{margin-left:-1703.994667pt;}
._25{margin-left:-1575.906133pt;}
._1d{margin-left:-1511.912533pt;}
._23{margin-left:-1479.906133pt;}
._d{margin-left:-1418.641067pt;}
._29{margin-left:-1378.553600pt;}
._12{margin-left:-1338.700800pt;}
._10{margin-left:-1336.046933pt;}
._21{margin-left:-1303.880533pt;}
._1f{margin-left:-1175.874133pt;}
._16{margin-left:-1058.553600pt;}
._18{margin-left:-1042.553600pt;}
._27{margin-left:-887.861333pt;}
._1a{margin-left:-845.320533pt;}
._5c{margin-left:-825.920000pt;}
._41{margin-left:-820.828267pt;}
._4d{margin-left:-813.093333pt;}
._3f{margin-left:-811.855467pt;}
._4c{margin-left:-810.933333pt;}
._40{margin-left:-809.668800pt;}
._48{margin-left:-801.882133pt;}
._49{margin-left:-784.068800pt;}
._14{margin-left:-781.305600pt;}
._51{margin-left:-590.226133pt;}
._5b{margin-left:-20.599467pt;}
._42{margin-left:-16.312533pt;}
._2c{margin-left:-13.333333pt;}
._5a{margin-left:-11.757333pt;}
._53{margin-left:-7.850667pt;}
._36{margin-left:-6.960000pt;}
._1{margin-left:-5.502933pt;}
._e{margin-left:-4.142933pt;}
._3c{margin-left:-3.181867pt;}
._5{margin-left:-2.166400pt;}
._0{margin-left:-1.000533pt;}
._4{width:1.733333pt;}
._3{width:2.725333pt;}
._2e{width:4.203733pt;}
._2{width:5.648000pt;}
._34{width:6.733867pt;}
._2d{width:7.679467pt;}
._31{width:8.884267pt;}
._1b{width:10.588800pt;}
._33{width:12.042133pt;}
._32{width:13.210667pt;}
._37{width:14.547200pt;}
._59{width:16.215467pt;}
._3b{width:17.369600pt;}
._3e{width:18.400000pt;}
._39{width:19.330133pt;}
._3d{width:20.589867pt;}
._52{width:21.685333pt;}
._38{width:22.772800pt;}
._30{width:24.089600pt;}
._2f{width:25.004800pt;}
._58{width:25.976533pt;}
._4f{width:27.481600pt;}
._43{width:28.970667pt;}
._47{width:30.144000pt;}
._35{width:31.033600pt;}
._44{width:32.666667pt;}
._45{width:33.600000pt;}
._46{width:35.398400pt;}
._4b{width:36.666667pt;}
._4e{width:39.619200pt;}
._4a{width:40.658667pt;}
._55{width:132.480000pt;}
._57{width:159.146667pt;}
._54{width:253.013333pt;}
._56{width:279.680000pt;}
._13{width:696.489600pt;}
._19{width:750.281600pt;}
._26{width:802.617600pt;}
._17{width:953.507200pt;}
._15{width:979.851733pt;}
._1e{width:1088.400000pt;}
._11{width:1222.354133pt;}
._20{width:1231.917867pt;}
._f{width:1274.707200pt;}
._28{width:1297.721600pt;}
._c{width:1343.793067pt;}
._22{width:1383.856000pt;}
._1c{width:1431.404800pt;}
._24{width:1485.955200pt;}
._6{width:1627.233067pt;}
._a{width:1641.061333pt;}
._8{width:1854.898133pt;}
._2a{width:1894.220800pt;}
.fs10{font-size:5.333333pt;}
.fsf{font-size:26.666667pt;}
.fsc{font-size:38.133333pt;}
.fsd{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fsb{font-size:83.200000pt;}
.fs2{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.fse{font-size:101.333333pt;}
.fs1{font-size:128.000000pt;}
.fs5{font-size:133.333333pt;}
.fs11{font-size:176.000000pt;}
.fsa{font-size:192.000000pt;}
.fs0{font-size:298.666667pt;}
.y0{bottom:0.000000pt;}
.y4b8{bottom:2.266800pt;}
.yf8{bottom:2.267600pt;}
.y46a{bottom:2.292533pt;}
.y496{bottom:2.366667pt;}
.y389{bottom:2.437333pt;}
.y43a{bottom:2.481600pt;}
.y355{bottom:2.508400pt;}
.y15{bottom:2.666667pt;}
.y3b8{bottom:2.666680pt;}
.y4d9{bottom:2.666693pt;}
.y4a7{bottom:2.700000pt;}
.y421{bottom:2.933333pt;}
.y334{bottom:2.937467pt;}
.y4ec{bottom:2.999960pt;}
.y10e{bottom:3.067600pt;}
.y32f{bottom:3.131467pt;}
.y139{bottom:3.224533pt;}
.y16e{bottom:3.333333pt;}
.y35a{bottom:3.473600pt;}
.y3ac{bottom:3.509733pt;}
.y3c5{bottom:3.543200pt;}
.y3ae{bottom:3.554000pt;}
.y4a1{bottom:3.556000pt;}
.y428{bottom:3.558267pt;}
.y4d1{bottom:3.598000pt;}
.y3b0{bottom:3.598267pt;}
.y415{bottom:3.622533pt;}
.y4e4{bottom:3.638000pt;}
.y3b2{bottom:3.642667pt;}
.y434{bottom:3.643733pt;}
.y10a{bottom:3.675733pt;}
.y4c1{bottom:3.686800pt;}
.y3b4{bottom:3.686933pt;}
.y4cd{bottom:3.699733pt;}
.y3cd{bottom:3.701867pt;}
.y4b6{bottom:3.712267pt;}
.y475{bottom:3.712533pt;}
.y3b6{bottom:3.731200pt;}
.y102{bottom:3.732800pt;}
.y468{bottom:3.738000pt;}
.y40b{bottom:3.746133pt;}
.y41d{bottom:3.790400pt;}
.y42a{bottom:3.794667pt;}
.y494{bottom:3.812133pt;}
.y4b2{bottom:3.813867pt;}
.y464{bottom:3.839600pt;}
.y47b{bottom:3.858000pt;}
.y3d5{bottom:3.860533pt;}
.y436{bottom:3.880267pt;}
.y490{bottom:3.913867pt;}
.y413{bottom:3.914000pt;}
.y4ae{bottom:3.915600pt;}
.y3c7{bottom:3.916267pt;}
.y4a3{bottom:3.940533pt;}
.y460{bottom:3.941333pt;}
.y4ea{bottom:3.958400pt;}
.y10c{bottom:3.994800pt;}
.y1fe{bottom:4.000000pt;}
.y4c7{bottom:4.007333pt;}
.y48c{bottom:4.015600pt;}
.y42c{bottom:4.031200pt;}
.y104{bottom:4.051867pt;}
.yf6{bottom:4.074800pt;}
.y3cf{bottom:4.074933pt;}
.y41b{bottom:4.081867pt;}
.y4d7{bottom:4.112147pt;}
.y438{bottom:4.116667pt;}
.y49e{bottom:4.120133pt;}
.y3fb{bottom:4.176267pt;}
.yf4{bottom:4.182267pt;}
.y4e6{bottom:4.189200pt;}
.y411{bottom:4.205333pt;}
.y477{bottom:4.205467pt;}
.y282{bottom:4.210000pt;}
.y4d3{bottom:4.213867pt;}
.y3d7{bottom:4.233547pt;}
.y4c3{bottom:4.238133pt;}
.y23f{bottom:4.266667pt;}
.y42e{bottom:4.267600pt;}
.y3c9{bottom:4.289200pt;}
.yf2{bottom:4.289733pt;}
.y4cf{bottom:4.315467pt;}
.y4a5{bottom:4.325200pt;}
.y47d{bottom:4.350933pt;}
.y106{bottom:4.370933pt;}
.y419{bottom:4.373200pt;}
.yf0{bottom:4.397200pt;}
.y3f3{bottom:4.415333pt;}
.y4e2{bottom:4.420000pt;}
.y4b4{bottom:4.429733pt;}
.y3d1{bottom:4.447867pt;}
.y466{bottom:4.455467pt;}
.y40f{bottom:4.496667pt;}
.y430{bottom:4.504133pt;}
.yee{bottom:4.504667pt;}
.y4e0{bottom:4.518400pt;}
.y492{bottom:4.529733pt;}
.y4b0{bottom:4.531467pt;}
.y462{bottom:4.557200pt;}
.y4c9{bottom:4.558533pt;}
.y3a0{bottom:4.577200pt;}
.yec{bottom:4.612133pt;}
.y3a2{bottom:4.621600pt;}
.y48e{bottom:4.631333pt;}
.y4ac{bottom:4.633067pt;}
.y45e{bottom:4.658800pt;}
.y3cb{bottom:4.662267pt;}
.y417{bottom:4.664533pt;}
.y3a4{bottom:4.665867pt;}
.y108{bottom:4.690000pt;}
.y479{bottom:4.698400pt;}
.y3a6{bottom:4.710133pt;}
.yea{bottom:4.719600pt;}
.y48a{bottom:4.733067pt;}
.y4e8{bottom:4.740533pt;}
.y432{bottom:4.740667pt;}
.y3a8{bottom:4.754400pt;}
.y40d{bottom:4.788000pt;}
.y4c5{bottom:4.789333pt;}
.y3aa{bottom:4.798800pt;}
.y3d3{bottom:4.820933pt;}
.y4d5{bottom:4.829600pt;}
.y41f{bottom:4.832400pt;}
.y49c{bottom:4.885200pt;}
.y473{bottom:4.910933pt;}
.y4bf{bottom:5.118533pt;}
.y306{bottom:5.333333pt;}
.y148{bottom:5.688000pt;}
.yfa{bottom:6.666667pt;}
.y1ee{bottom:6.907067pt;}
.y1d3{bottom:6.914667pt;}
.y1df{bottom:6.964000pt;}
.y1eb{bottom:7.163867pt;}
.y1d0{bottom:7.171333pt;}
.y1dc{bottom:7.220800pt;}
.y17{bottom:7.403067pt;}
.y1e9{bottom:7.420667pt;}
.y1da{bottom:7.477600pt;}
.y1f4{bottom:7.620533pt;}
.y1e7{bottom:7.677467pt;}
.y1f3{bottom:7.726933pt;}
.y1d8{bottom:7.734400pt;}
.y87{bottom:7.750000pt;}
.y1e5{bottom:7.934267pt;}
.y260{bottom:7.982133pt;}
.y1f1{bottom:7.983600pt;}
.y1d6{bottom:7.991200pt;}
.y247{bottom:8.061333pt;}
.y1e1{bottom:8.115867pt;}
.y24f{bottom:8.149067pt;}
.y25e{bottom:8.212133pt;}
.y257{bottom:8.236667pt;}
.y1ef{bottom:8.240400pt;}
.y1d4{bottom:8.248000pt;}
.y1e0{bottom:8.297333pt;}
.y485{bottom:8.324133pt;}
.y264{bottom:8.455733pt;}
.y1ec{bottom:8.497200pt;}
.y1d1{bottom:8.504667pt;}
.y24a{bottom:8.535067pt;}
.y1dd{bottom:8.554133pt;}
.y272{bottom:8.560133pt;}
.y252{bottom:8.622667pt;}
.y268{bottom:8.699333pt;}
.y33{bottom:8.766493pt;}
.y1b{bottom:8.766533pt;}
.y259{bottom:8.891067pt;}
.y273{bottom:8.909333pt;}
.y244{bottom:8.921067pt;}
.y266{bottom:8.929333pt;}
.y24c{bottom:9.008667pt;}
.y254{bottom:9.096267pt;}
.y26b{bottom:9.172933pt;}
.y482{bottom:9.226800pt;}
.y153{bottom:9.286667pt;}
.y1d{bottom:9.287067pt;}
.y246{bottom:9.394667pt;}
.y24e{bottom:9.482400pt;}
.y25d{bottom:9.545467pt;}
.y256{bottom:9.570000pt;}
.y263{bottom:9.789067pt;}
.y249{bottom:9.868400pt;}
.y271{bottom:9.893467pt;}
.y251{bottom:9.956000pt;}
.y210{bottom:9.963467pt;}
.y228{bottom:9.992000pt;}
.y13e{bottom:10.009200pt;}
.y269{bottom:10.032667pt;}
.y204{bottom:10.065200pt;}
.y21c{bottom:10.093733pt;}
.y213{bottom:10.209867pt;}
.y258{bottom:10.224400pt;}
.y22b{bottom:10.238400pt;}
.y274{bottom:10.242667pt;}
.y243{bottom:10.254400pt;}
.y207{bottom:10.311467pt;}
.y21f{bottom:10.340000pt;}
.y20a{bottom:10.557867pt;}
.y222{bottom:10.586400pt;}
.y261{bottom:10.648800pt;}
.y215{bottom:10.695200pt;}
.y20c{bottom:10.804133pt;}
.y224{bottom:10.832667pt;}
.y22d{bottom:10.962933pt;}
.y582{bottom:11.033333pt;}
.y20e{bottom:11.050533pt;}
.y226{bottom:11.079067pt;}
.y202{bottom:11.152133pt;}
.y21a{bottom:11.180667pt;}
.y131{bottom:11.224533pt;}
.y211{bottom:11.296800pt;}
.y229{bottom:11.325333pt;}
.y168{bottom:11.333333pt;}
.y205{bottom:11.398533pt;}
.y21d{bottom:11.427067pt;}
.y214{bottom:11.543200pt;}
.y22c{bottom:11.571733pt;}
.y31{bottom:11.600000pt;}
.y208{bottom:11.644800pt;}
.y220{bottom:11.673333pt;}
.y35{bottom:11.688680pt;}
.y488{bottom:11.729067pt;}
.y19{bottom:11.767333pt;}
.y7a{bottom:11.916667pt;}
.y45a{bottom:11.966667pt;}
.y3f1{bottom:11.966680pt;}
.ye8{bottom:12.000000pt;}
.y216{bottom:12.028533pt;}
.y26e{bottom:12.086400pt;}
.y1c6{bottom:12.120480pt;}
.y409{bottom:12.233333pt;}
.y44{bottom:12.233347pt;}
.y382{bottom:12.336000pt;}
.y185{bottom:12.500013pt;}
.y161{bottom:12.666667pt;}
.y470{bottom:12.751733pt;}
.y78{bottom:12.766680pt;}
.y52e{bottom:12.837467pt;}
.y341{bottom:12.986400pt;}
.y1f9{bottom:13.333333pt;}
.y37{bottom:13.394533pt;}
.y328{bottom:13.494933pt;}
.y14d{bottom:13.688000pt;}
.y294{bottom:14.153600pt;}
.y2b5{bottom:14.316000pt;}
.y2ce{bottom:14.609733pt;}
.y2f5{bottom:14.657067pt;}
.y45c{bottom:14.666667pt;}
.y34e{bottom:14.846933pt;}
.y2dd{bottom:14.866400pt;}
.y238{bottom:14.933333pt;}
.y2fa{bottom:15.078667pt;}
.y2da{bottom:15.097867pt;}
.y2d1{bottom:15.211867pt;}
.y2c2{bottom:15.276533pt;}
.y2d6{bottom:15.333333pt;}
.y1cc{bottom:15.352933pt;}
.y11{bottom:15.563040pt;}
.y12d{bottom:15.609733pt;}
.y2f3{bottom:15.711733pt;}
.y30f{bottom:15.765067pt;}
.y2b9{bottom:15.854133pt;}
.y302{bottom:16.000000pt;}
.y298{bottom:16.348667pt;}
.y2e2{bottom:16.666693pt;}
.y1ca{bottom:16.686267pt;}
.y2a7{bottom:17.013467pt;}
.y19c{bottom:17.026800pt;}
.y33d{bottom:17.034267pt;}
.y157{bottom:17.286667pt;}
.y14{bottom:17.333333pt;}
.y2be{bottom:17.431733pt;}
.y2aa{bottom:17.613200pt;}
.y141{bottom:18.009200pt;}
.y359{bottom:18.140267pt;}
.y2f8{bottom:18.261200pt;}
.y19a{bottom:18.324800pt;}
.y388{bottom:18.437333pt;}
.y354{bottom:18.508400pt;}
.y360{bottom:18.666667pt;}
.y320{bottom:18.755467pt;}
.y333{bottom:18.937467pt;}
.y29f{bottom:19.025600pt;}
.y32e{bottom:19.131467pt;}
.ya7{bottom:19.214933pt;}
.y133{bottom:19.224533pt;}
.y16d{bottom:19.333333pt;}
.y3fa{bottom:20.176267pt;}
.y2e0{bottom:20.511333pt;}
.y4df{bottom:20.518400pt;}
.y15c{bottom:20.666667pt;}
.y49b{bottom:20.885200pt;}
.y472{bottom:20.910933pt;}
.y4be{bottom:21.118533pt;}
.y2d4{bottom:21.136133pt;}
.y53f{bottom:21.333333pt;}
.y26f{bottom:21.419733pt;}
.y1a8{bottom:21.457067pt;}
.y2ad{bottom:21.594133pt;}
.y147{bottom:21.688000pt;}
.y29c{bottom:22.208267pt;}
.y195{bottom:22.275600pt;}
.y1fd{bottom:22.666667pt;}
.y55c{bottom:22.776680pt;}
.y23b{bottom:22.933333pt;}
.y2b2{bottom:22.960667pt;}
.y2b0{bottom:23.333333pt;}
.y2f1{bottom:23.432933pt;}
.y2d8{bottom:23.508533pt;}
.y2cc{bottom:23.619867pt;}
.y86{bottom:23.750000pt;}
.y481{bottom:23.893467pt;}
.y292{bottom:23.935067pt;}
.y1fb{bottom:24.000000pt;}
.y2a5{bottom:24.057200pt;}
.y23e{bottom:24.266667pt;}
.y484{bottom:24.324133pt;}
.y1c8{bottom:24.686267pt;}
.y152{bottom:25.286667pt;}
.y97{bottom:25.674000pt;}
.y174{bottom:25.748667pt;}
.y1b3{bottom:25.752933pt;}
.y13d{bottom:26.009200pt;}
.y487{bottom:26.395733pt;}
.y381{bottom:27.002667pt;}
.y130{bottom:27.224533pt;}
.y167{bottom:27.333333pt;}
.y46f{bottom:27.418400pt;}
.y50c{bottom:28.000000pt;}
.y1af{bottom:28.035733pt;}
.y160{bottom:28.666667pt;}
.y340{bottom:28.986400pt;}
.y395{bottom:29.333333pt;}
.y327{bottom:29.494933pt;}
.y1a3{bottom:29.595333pt;}
.y14c{bottom:29.688000pt;}
.y581{bottom:29.700000pt;}
.y34d{bottom:30.846933pt;}
.y13{bottom:32.000000pt;}
.y43{bottom:32.233347pt;}
.y239{bottom:32.266667pt;}
.y184{bottom:32.500013pt;}
.y77{bottom:32.766680pt;}
.y19b{bottom:33.026800pt;}
.y33c{bottom:33.034267pt;}
.y56{bottom:33.070800pt;}
.y156{bottom:33.286667pt;}
.y3f0{bottom:33.300013pt;}
.ye7{bottom:33.333333pt;}
.y26d{bottom:33.419733pt;}
.y1c5{bottom:33.453813pt;}
.y408{bottom:33.566667pt;}
.y237{bottom:33.600000pt;}
.y140{bottom:34.009200pt;}
.y1cb{bottom:34.019600pt;}
.y572{bottom:34.237507pt;}
.y199{bottom:34.324800pt;}
.y52d{bottom:34.666667pt;}
.y31f{bottom:34.755467pt;}
.ya6{bottom:35.214933pt;}
.y132{bottom:35.224533pt;}
.y16c{bottom:35.333333pt;}
.y1c9{bottom:35.352933pt;}
.y173{bottom:36.415333pt;}
.y15b{bottom:36.666667pt;}
.y2b4{bottom:36.982667pt;}
.y301{bottom:37.333333pt;}
.y1a7{bottom:37.457067pt;}
.y146{bottom:37.688000pt;}
.y2b8{bottom:38.520800pt;}
.y2ef{bottom:38.666667pt;}
.y2dc{bottom:38.866400pt;}
.y2d0{bottom:39.211867pt;}
.y2c1{bottom:39.276533pt;}
.y85{bottom:39.750000pt;}
.y34{bottom:39.819133pt;}
.y2bd{bottom:40.098400pt;}
.y297{bottom:40.348667pt;}
.y151{bottom:41.286667pt;}
.y176{bottom:41.516667pt;}
.y23a{bottom:41.600000pt;}
.y2a9{bottom:41.613200pt;}
.y380{bottom:41.669333pt;}
.y96{bottom:41.674000pt;}
.y29e{bottom:41.692267pt;}
.y1b2{bottom:41.752933pt;}
.y32{bottom:41.864360pt;}
.y13c{bottom:42.009200pt;}
.y2f7{bottom:42.261200pt;}
.y1fa{bottom:42.666667pt;}
.y23d{bottom:42.933333pt;}
.y12f{bottom:43.224533pt;}
.y166{bottom:43.333333pt;}
.y55b{bottom:44.000000pt;}
.y1ae{bottom:44.035733pt;}
.y2df{bottom:44.511333pt;}
.y136{bottom:44.557867pt;}
.y15f{bottom:44.666667pt;}
.y33f{bottom:44.986400pt;}
.y2d3{bottom:45.136133pt;}
.y326{bottom:45.494933pt;}
.y2ac{bottom:45.594133pt;}
.y1a2{bottom:45.595333pt;}
.y14b{bottom:45.688000pt;}
.y29b{bottom:46.208267pt;}
.y193{bottom:46.666667pt;}
.y34c{bottom:46.846933pt;}
.y2af{bottom:47.333333pt;}
.y4fa{bottom:48.000000pt;}
.y580{bottom:48.366667pt;}
.y33b{bottom:49.034267pt;}
.y155{bottom:49.286667pt;}
.y394{bottom:49.333333pt;}
.y8{bottom:49.408267pt;}
.y13f{bottom:50.009200pt;}
.y52c{bottom:50.666667pt;}
.y31e{bottom:50.755467pt;}
.ya5{bottom:51.214933pt;}
.y137{bottom:51.224533pt;}
.y16b{bottom:51.333333pt;}
.y36{bottom:51.507813pt;}
.y1f8{bottom:52.000000pt;}
.y236{bottom:52.266667pt;}
.y15a{bottom:52.666667pt;}
.y3ef{bottom:53.300013pt;}
.y390{bottom:53.333333pt;}
.y1c4{bottom:53.453813pt;}
.y1a6{bottom:53.457067pt;}
.y407{bottom:53.566667pt;}
.y145{bottom:53.688000pt;}
.y183{bottom:53.833347pt;}
.y76{bottom:54.100013pt;}
.y55{bottom:54.404133pt;}
.y376{bottom:54.633347pt;}
.ye6{bottom:54.666667pt;}
.y30{bottom:55.600000pt;}
.y232{bottom:55.750000pt;}
.y37f{bottom:56.336000pt;}
.y197{bottom:57.026800pt;}
.y150{bottom:57.286667pt;}
.y300{bottom:57.333333pt;}
.y95{bottom:57.674000pt;}
.y1b1{bottom:57.752933pt;}
.y13b{bottom:58.009200pt;}
.y2ee{bottom:58.666667pt;}
.y42{bottom:58.900013pt;}
.y165{bottom:59.333333pt;}
.y50b{bottom:60.000000pt;}
.y1ad{bottom:60.035733pt;}
.y135{bottom:60.557867pt;}
.y15e{bottom:60.666667pt;}
.y1fc{bottom:61.333333pt;}
.y325{bottom:61.494933pt;}
.y1a1{bottom:61.595333pt;}
.y23c{bottom:61.600000pt;}
.y14a{bottom:61.688000pt;}
.y2b7{bottom:62.520800pt;}
.y34b{bottom:62.846933pt;}
.y2c0{bottom:63.276533pt;}
.y2bc{bottom:64.098400pt;}
.y296{bottom:64.348667pt;}
.y33a{bottom:65.034267pt;}
.y154{bottom:65.286667pt;}
.y52b{bottom:66.666667pt;}
.y31d{bottom:66.755467pt;}
.y57f{bottom:67.033333pt;}
.ya4{bottom:67.214933pt;}
.y138{bottom:67.224533pt;}
.y16a{bottom:67.333333pt;}
.y192{bottom:68.000000pt;}
.y159{bottom:68.666667pt;}
.y4f9{bottom:69.333333pt;}
.y1a5{bottom:69.457067pt;}
.y144{bottom:69.688000pt;}
.y29a{bottom:70.208267pt;}
.y393{bottom:70.666667pt;}
.y37e{bottom:71.002667pt;}
.y571{bottom:71.095827pt;}
.y14f{bottom:73.286667pt;}
.y38f{bottom:73.333333pt;}
.y94{bottom:73.674000pt;}
.y1b0{bottom:73.752933pt;}
.y75{bottom:74.100013pt;}
.y54{bottom:74.404133pt;}
.y3ee{bottom:74.633347pt;}
.ye5{bottom:74.666667pt;}
.y182{bottom:75.166680pt;}
.y164{bottom:75.333333pt;}
.y375{bottom:75.966680pt;}
.y55a{bottom:76.000000pt;}
.y1ac{bottom:76.035733pt;}
.y15d{bottom:76.666667pt;}
.y324{bottom:77.494933pt;}
.y41{bottom:77.566680pt;}
.y1a0{bottom:77.595333pt;}
.y149{bottom:77.688000pt;}
.y2f{bottom:78.266667pt;}
.y2ff{bottom:78.666667pt;}
.y34a{bottom:78.846933pt;}
.y53e{bottom:79.222533pt;}
.y2ed{bottom:80.000000pt;}
.y339{bottom:81.034267pt;}
.y52a{bottom:82.666667pt;}
.y31c{bottom:82.755467pt;}
.ya3{bottom:83.214933pt;}
.y169{bottom:83.333333pt;}
.y2a0{bottom:85.333333pt;}
.y1a4{bottom:85.457067pt;}
.y37d{bottom:85.669333pt;}
.y143{bottom:85.688000pt;}
.y9{bottom:85.770293pt;}
.y551{bottom:86.260000pt;}
.y7{bottom:86.741600pt;}
.y1c3{bottom:86.787147pt;}
.y57e{bottom:87.033333pt;}
.y2bb{bottom:88.098400pt;}
.y1b4{bottom:89.212853pt;}
.y191{bottom:89.333333pt;}
.y93{bottom:89.674000pt;}
.y6a{bottom:89.899987pt;}
.y310{bottom:90.070493pt;}
.y3ff{bottom:90.433333pt;}
.y163{bottom:91.333333pt;}
.y573{bottom:91.633333pt;}
.y38{bottom:91.766653pt;}
.y392{bottom:92.000000pt;}
.y361{bottom:92.033320pt;}
.y441{bottom:92.033333pt;}
.y84{bottom:92.250000pt;}
.y323{bottom:93.494933pt;}
.y38e{bottom:94.666667pt;}
.y349{bottom:94.846933pt;}
.y40{bottom:94.900013pt;}
.y181{bottom:95.166680pt;}
.y177{bottom:95.499987pt;}
.y4eb{bottom:95.666707pt;}
.y53{bottom:95.737467pt;}
.y374{bottom:95.966680pt;}
.y4d8{bottom:95.999973pt;}
.y12{bottom:96.000000pt;}
.y35f{bottom:97.333333pt;}
.y230{bottom:98.666667pt;}
.y31b{bottom:98.755467pt;}
.ya2{bottom:99.214933pt;}
.y2e1{bottom:99.333307pt;}
.y162{bottom:99.333333pt;}
.y129{bottom:100.000000pt;}
.y1ce{bottom:100.115867pt;}
.y37c{bottom:100.336000pt;}
.y2e{bottom:100.933333pt;}
.y1e3{bottom:100.953867pt;}
.y231{bottom:101.333333pt;}
.y2ec{bottom:102.666667pt;}
.y3d8{bottom:105.333333pt;}
.y57d{bottom:105.700000pt;}
.y1c2{bottom:106.787147pt;}
.y74{bottom:107.433347pt;}
.y4e1{bottom:107.580000pt;}
.y550{bottom:108.000000pt;}
.y1aa{bottom:108.419600pt;}
.y322{bottom:109.494933pt;}
.y3b7{bottom:110.666653pt;}
.y280{bottom:110.666667pt;}
.y348{bottom:110.846933pt;}
.y92{bottom:111.007333pt;}
.y82{bottom:112.000000pt;}
.y19e{bottom:113.457067pt;}
.yd1{bottom:113.583333pt;}
.y83{bottom:114.666667pt;}
.y31a{bottom:114.755467pt;}
.y566{bottom:114.952667pt;}
.y37b{bottom:115.002667pt;}
.ya1{bottom:115.214933pt;}
.y2ae{bottom:115.333333pt;}
.y3ed{bottom:115.966680pt;}
.y4ed{bottom:116.000000pt;}
.y180{bottom:116.500013pt;}
.y52{bottom:117.070800pt;}
.y570{bottom:117.333333pt;}
.y22f{bottom:118.666667pt;}
.y3f{bottom:118.900013pt;}
.y128{bottom:120.000000pt;}
.yce{bottom:121.333333pt;}
.y4d6{bottom:122.554520pt;}
.y18c{bottom:122.666667pt;}
.y241{bottom:123.557733pt;}
.y2d{bottom:123.600000pt;}
.y54f{bottom:124.000000pt;}
.y57c{bottom:124.366667pt;}
.y347{bottom:126.846933pt;}
.y91{bottom:127.007333pt;}
.y2eb{bottom:128.000000pt;}
.y1c1{bottom:128.120480pt;}
.y73{bottom:128.766680pt;}
.y3d6{bottom:129.099787pt;}
.y373{bottom:129.300013pt;}
.y529{bottom:129.333333pt;}
.y37a{bottom:129.669333pt;}
.y4f8{bottom:130.666667pt;}
.y27f{bottom:132.000000pt;}
.y81{bottom:133.333333pt;}
.y469{bottom:133.707467pt;}
.yd0{bottom:134.916667pt;}
.y3b5{bottom:134.935467pt;}
.y565{bottom:136.000000pt;}
.y3e{bottom:136.233347pt;}
.y17f{bottom:136.500013pt;}
.ya0{bottom:136.548267pt;}
.y51{bottom:137.070800pt;}
.y3ec{bottom:137.300013pt;}
.y25b{bottom:138.242667pt;}
.y1f5{bottom:138.266667pt;}
.y54e{bottom:140.000000pt;}
.y200{bottom:140.028533pt;}
.y218{bottom:140.296267pt;}
.ycd{bottom:141.333333pt;}
.y190{bottom:142.666667pt;}
.y346{bottom:142.846933pt;}
.y90{bottom:143.007333pt;}
.y217{bottom:143.703733pt;}
.y18b{bottom:144.000000pt;}
.y379{bottom:144.336000pt;}
.y57b{bottom:144.366667pt;}
.y2de{bottom:144.822000pt;}
.ydf{bottom:145.583333pt;}
.y474{bottom:145.620800pt;}
.y4e3{bottom:145.695333pt;}
.y2c{bottom:146.266667pt;}
.y559{bottom:148.000000pt;}
.y72{bottom:148.766680pt;}
.y372{bottom:149.300013pt;}
.y1c0{bottom:149.453813pt;}
.y4da{bottom:150.666667pt;}
.y27e{bottom:152.000000pt;}
.y4d4{bottom:152.503733pt;}
.y9f{bottom:152.548267pt;}
.y332{bottom:153.062533pt;}
.y80{bottom:153.333333pt;}
.y3d4{bottom:153.472800pt;}
.ycf{bottom:156.250000pt;}
.y3eb{bottom:157.300013pt;}
.y17e{bottom:157.833347pt;}
.y50{bottom:158.404133pt;}
.y3b9{bottom:158.666667pt;}
.y345{bottom:158.846933pt;}
.y3d{bottom:158.900013pt;}
.y378{bottom:159.002667pt;}
.y8f{bottom:159.007333pt;}
.y467{bottom:160.262000pt;}
.y3b3{bottom:160.313067pt;}
.y51d{bottom:161.993333pt;}
.ycc{bottom:162.666667pt;}
.y57a{bottom:163.033333pt;}
.y18a{bottom:164.000000pt;}
.y6{bottom:164.074933pt;}
.y10{bottom:166.229707pt;}
.y290{bottom:166.666667pt;}
.y175{bottom:167.816667pt;}
.y22e{bottom:168.000000pt;}
.y9e{bottom:168.548267pt;}
.y2b{bottom:168.933333pt;}
.y1bf{bottom:169.453813pt;}
.y71{bottom:170.100013pt;}
.y371{bottom:170.633347pt;}
.y47e{bottom:172.000000pt;}
.y27d{bottom:173.333333pt;}
.y420{bottom:174.400000pt;}
.y47f{bottom:174.666667pt;}
.y344{bottom:174.846933pt;}
.y8e{bottom:175.007333pt;}
.y3d9{bottom:176.000000pt;}
.y22a{bottom:176.428267pt;}
.y3d2{bottom:177.845733pt;}
.y4f{bottom:178.404133pt;}
.y17d{bottom:179.166680pt;}
.y4db{bottom:180.000000pt;}
.y4d2{bottom:182.452800pt;}
.y476{bottom:182.461200pt;}
.ycb{bottom:182.666667pt;}
.y4e5{bottom:183.810800pt;}
.y18f{bottom:184.000000pt;}
.y3c{bottom:184.233347pt;}
.y9d{bottom:184.548267pt;}
.y189{bottom:185.333333pt;}
.y3b1{bottom:185.690667pt;}
.yf{bottom:186.229707pt;}
.y46b{bottom:188.000000pt;}
.y70{bottom:190.100013pt;}
.y53d{bottom:190.155867pt;}
.y465{bottom:190.211200pt;}
.y58d{bottom:190.666667pt;}
.y1be{bottom:190.787147pt;}
.y343{bottom:190.846933pt;}
.y8d{bottom:191.007333pt;}
.y2a{bottom:191.600000pt;}
.y528{bottom:192.000000pt;}
.y27c{bottom:193.333333pt;}
.y579{bottom:193.700000pt;}
.y558{bottom:196.000000pt;}
.y127{bottom:197.333333pt;}
.y51c{bottom:198.666667pt;}
.y17c{bottom:199.166680pt;}
.y41e{bottom:199.167600pt;}
.y4e{bottom:199.737467pt;}
.y2ab{bottom:199.739200pt;}
.y3da{bottom:200.000000pt;}
.y10d{bottom:200.932400pt;}
.y3d0{bottom:202.218800pt;}
.y370{bottom:203.966680pt;}
.yca{bottom:204.000000pt;}
.y18e{bottom:205.333333pt;}
.y9c{bottom:205.881600pt;}
.y188{bottom:206.666667pt;}
.y8c{bottom:207.007333pt;}
.y227{bottom:208.674667pt;}
.y3ba{bottom:209.333333pt;}
.y1bd{bottom:210.787147pt;}
.y3af{bottom:211.068400pt;}
.y6f{bottom:211.433347pt;}
.y53c{bottom:212.000000pt;}
.y4d0{bottom:212.402000pt;}
.y158{bottom:212.666667pt;}
.y527{bottom:213.333333pt;}
.y578{bottom:213.700000pt;}
.y29{bottom:214.266667pt;}
.y27b{bottom:214.666667pt;}
.y46c{bottom:217.333333pt;}
.y2ea{bottom:218.666667pt;}
.y478{bottom:219.301600pt;}
.y35b{bottom:220.000000pt;}
.y463{bottom:220.160400pt;}
.y3b{bottom:220.233347pt;}
.y17b{bottom:220.500013pt;}
.y4d{bottom:221.070800pt;}
.y50a{bottom:221.263200pt;}
.y9b{bottom:221.881600pt;}
.y4e7{bottom:221.926133pt;}
.y8b{bottom:223.007333pt;}
.y2db{bottom:223.800267pt;}
.y2fe{bottom:224.000000pt;}
.y33e{bottom:224.346933pt;}
.yc9{bottom:225.333333pt;}
.y41c{bottom:225.542933pt;}
.y3ce{bottom:226.591733pt;}
.y4f7{bottom:226.666667pt;}
.y337{bottom:228.000000pt;}
.y18d{bottom:229.333333pt;}
.y51b{bottom:230.666667pt;}
.y1bc{bottom:232.120480pt;}
.y577{bottom:232.366667pt;}
.y6e{bottom:232.766680pt;}
.y526{bottom:233.333333pt;}
.y3bb{bottom:234.666667pt;}
.y10f{bottom:236.000000pt;}
.y3ad{bottom:236.446000pt;}
.y564{bottom:237.333333pt;}
.y10b{bottom:237.338533pt;}
.y9a{bottom:237.881600pt;}
.y4dc{bottom:238.666667pt;}
.y8a{bottom:239.007333pt;}
.y2e9{bottom:240.000000pt;}
.y225{bottom:240.920933pt;}
.y28{bottom:240.933333pt;}
.y4c{bottom:241.070800pt;}
.y4ce{bottom:242.351200pt;}
.y4ee{bottom:242.666667pt;}
.y53b{bottom:244.000000pt;}
.yc8{bottom:245.333333pt;}
.y4f6{bottom:246.666667pt;}
.y3db{bottom:248.000000pt;}
.y54d{bottom:249.993333pt;}
.y461{bottom:250.109467pt;}
.y422{bottom:250.666667pt;}
.y3cc{bottom:250.964800pt;}
.y576{bottom:251.033333pt;}
.y41a{bottom:251.918133pt;}
.y51a{bottom:252.000000pt;}
.y6d{bottom:252.766680pt;}
.y1bb{bottom:253.453813pt;}
.y525{bottom:254.666667pt;}
.y27a{bottom:256.000000pt;}
.y47a{bottom:256.142000pt;}
.y321{bottom:257.171733pt;}
.yde{bottom:257.333333pt;}
.y557{bottom:258.096933pt;}
.y509{bottom:258.666667pt;}
.y3bc{bottom:260.000000pt;}
.y4e9{bottom:260.041600pt;}
.y2e8{bottom:261.333333pt;}
.y3ab{bottom:261.823600pt;}
.y4b{bottom:262.404133pt;}
.y1{bottom:262.591733pt;}
.y187{bottom:262.666667pt;}
.y27{bottom:263.600000pt;}
.y89{bottom:265.674000pt;}
.y99{bottom:265.881600pt;}
.yc7{bottom:266.666667pt;}
.y4f5{bottom:268.000000pt;}
.y4dd{bottom:269.333333pt;}
.y54c{bottom:270.666667pt;}
.y3dc{bottom:272.000000pt;}
.y3a{bottom:272.233347pt;}
.y4cc{bottom:272.300267pt;}
.y223{bottom:273.167333pt;}
.y1ba{bottom:273.453813pt;}
.y36f{bottom:274.633347pt;}
.y35c{bottom:274.666667pt;}
.y3ca{bottom:275.337733pt;}
.y423{bottom:276.000000pt;}
.y563{bottom:276.269467pt;}
.y279{bottom:277.333333pt;}
.y418{bottom:278.293467pt;}
.ydd{bottom:278.666667pt;}
.y88{bottom:279.659333pt;}
.y556{bottom:280.000000pt;}
.y45f{bottom:280.058667pt;}
.y2a8{bottom:281.053467pt;}
.y2e7{bottom:281.333333pt;}
.y4a{bottom:282.404133pt;}
.y4de{bottom:283.481600pt;}
.y110{bottom:285.333333pt;}
.y26{bottom:286.266667pt;}
.yc6{bottom:286.666667pt;}
.y109{bottom:286.990933pt;}
.y3a9{bottom:287.201200pt;}
.y524{bottom:288.000000pt;}
.y519{bottom:288.926667pt;}
.y4f4{bottom:289.333333pt;}
.y508{bottom:290.666667pt;}
.y53a{bottom:292.000000pt;}
.y56f{bottom:292.899600pt;}
.y2d9{bottom:292.902133pt;}
.y47c{bottom:292.982400pt;}
.y1b9{bottom:294.787147pt;}
.y36e{bottom:295.966680pt;}
.y126{bottom:296.000000pt;}
.y278{bottom:297.333333pt;}
.ydc{bottom:298.666667pt;}
.y3c8{bottom:299.710800pt;}
.y2e6{bottom:302.666667pt;}
.y49{bottom:303.737467pt;}
.y58c{bottom:304.000000pt;}
.y17a{bottom:304.500013pt;}
.y416{bottom:304.668800pt;}
.y221{bottom:305.413600pt;}
.y46d{bottom:306.666667pt;}
.yc5{bottom:308.000000pt;}
.y3bd{bottom:309.333333pt;}
.y45d{bottom:310.007867pt;}
.y3c3{bottom:310.666667pt;}
.y555{bottom:312.000000pt;}
.y14e{bottom:312.046667pt;}
.y3a7{bottom:312.578933pt;}
.y35d{bottom:313.333333pt;}
.y5{bottom:313.408267pt;}
.y56e{bottom:314.666667pt;}
.y25{bottom:315.600000pt;}
.y36d{bottom:315.966680pt;}
.y471{bottom:316.422400pt;}
.y125{bottom:317.333333pt;}
.y277{bottom:318.666667pt;}
.ydb{bottom:320.000000pt;}
.y3dd{bottom:321.333333pt;}
.y2e5{bottom:322.666667pt;}
.y539{bottom:324.000000pt;}
.y3c6{bottom:324.083733pt;}
.y575{bottom:324.366667pt;}
.y48{bottom:325.070800pt;}
.y330{bottom:325.333333pt;}
.y336{bottom:326.666667pt;}
.y2fd{bottom:328.000000pt;}
.y6c{bottom:328.766680pt;}
.yc4{bottom:329.333333pt;}
.y172{bottom:330.251333pt;}
.y3c2{bottom:330.666667pt;}
.y414{bottom:331.044133pt;}
.y2ca{bottom:332.000000pt;}
.y483{bottom:333.009200pt;}
.y111{bottom:334.666667pt;}
.y107{bottom:336.643333pt;}
.y36c{bottom:337.300013pt;}
.y124{bottom:337.333333pt;}
.y21e{bottom:337.660000pt;}
.y2d7{bottom:337.824800pt;}
.y3a5{bottom:337.956533pt;}
.y507{bottom:338.666667pt;}
.y276{bottom:340.000000pt;}
.yda{bottom:341.333333pt;}
.y2e4{bottom:344.000000pt;}
.y47{bottom:345.070800pt;}
.y233{bottom:345.333333pt;}
.y331{bottom:346.666667pt;}
.y523{bottom:348.000000pt;}
.y3c4{bottom:348.456800pt;}
.yc3{bottom:349.333333pt;}
.y3f7{bottom:350.666667pt;}
.y25a{bottom:351.090667pt;}
.y3c1{bottom:352.000000pt;}
.y2a6{bottom:352.319867pt;}
.y2c9{bottom:353.333333pt;}
.y179{bottom:353.833347pt;}
.y358{bottom:353.859733pt;}
.y424{bottom:354.666667pt;}
.y1a9{bottom:355.580400pt;}
.y412{bottom:357.419333pt;}
.y36b{bottom:358.633347pt;}
.y123{bottom:358.666667pt;}
.y24{bottom:359.600000pt;}
.y275{bottom:360.000000pt;}
.y29d{bottom:360.974400pt;}
.yd9{bottom:361.333333pt;}
.y56d{bottom:362.666667pt;}
.y3a3{bottom:363.334133pt;}
.y35e{bottom:364.000000pt;}
.y459{bottom:365.300000pt;}
.y69{bottom:365.333333pt;}
.y46{bottom:366.404133pt;}
.y3f6{bottom:368.000000pt;}
.y54b{bottom:369.333333pt;}
.y21b{bottom:369.906267pt;}
.y2fc{bottom:370.666667pt;}
.y2c8{bottom:373.333333pt;}
.y574{bottom:373.700000pt;}
.y171{bottom:376.000000pt;}
.y1f{bottom:376.400000pt;}
.y39e{bottom:377.333333pt;}
.y6b{bottom:378.100013pt;}
.y36a{bottom:378.633347pt;}
.y122{bottom:378.666667pt;}
.y46e{bottom:379.248267pt;}
.y270{bottom:380.773200pt;}
.y425{bottom:381.333333pt;}
.y68{bottom:382.666667pt;}
.y410{bottom:383.794667pt;}
.y112{bottom:384.000000pt;}
.y3be{bottom:385.333333pt;}
.y105{bottom:386.295733pt;}
.y458{bottom:386.633333pt;}
.y3a1{bottom:388.711733pt;}
.y23{bottom:388.933333pt;}
.y522{bottom:389.333333pt;}
.y2fb{bottom:390.666667pt;}
.y4{bottom:390.741600pt;}
.y538{bottom:392.000000pt;}
.y3c0{bottom:393.333333pt;}
.y2c7{bottom:394.666667pt;}
.y39d{bottom:398.666667pt;}
.y2a4{bottom:399.942800pt;}
.y369{bottom:399.966680pt;}
.y121{bottom:400.000000pt;}
.y219{bottom:402.152667pt;}
.y142{bottom:402.312000pt;}
.yc2{bottom:402.666667pt;}
.y2a3{bottom:404.000000pt;}
.y67{bottom:405.333333pt;}
.y457{bottom:406.633333pt;}
.y426{bottom:406.666667pt;}
.y3fc{bottom:408.000000pt;}
.y26c{bottom:409.246933pt;}
.y4b7{bottom:409.733200pt;}
.y40e{bottom:410.170000pt;}
.y3bf{bottom:410.666667pt;}
.y58b{bottom:412.000000pt;}
.y4f3{bottom:413.333333pt;}
.y39f{bottom:414.089467pt;}
.y2c6{bottom:416.000000pt;}
.y1e2{bottom:417.712800pt;}
.y368{bottom:419.966680pt;}
.y39c{bottom:420.000000pt;}
.y2e3{bottom:421.333333pt;}
.y4c0{bottom:421.646533pt;}
.yc1{bottom:424.000000pt;}
.y2a2{bottom:425.333333pt;}
.y66{bottom:426.666667pt;}
.y456{bottom:427.966667pt;}
.y506{bottom:428.196533pt;}
.y4ca{bottom:430.666667pt;}
.y54a{bottom:432.000000pt;}
.y406{bottom:432.233333pt;}
.y22{bottom:432.933333pt;}
.y113{bottom:433.333333pt;}
.y4b9{bottom:434.666667pt;}
.y103{bottom:435.948133pt;}
.y1ff{bottom:435.971467pt;}
.y4b5{bottom:436.287733pt;}
.y299{bottom:436.458400pt;}
.y40c{bottom:436.545333pt;}
.y554{bottom:437.333333pt;}
.y3f5{bottom:438.666667pt;}
.y39b{bottom:440.000000pt;}
.y367{bottom:441.300013pt;}
.y518{bottom:441.333333pt;}
.y1f2{bottom:444.273067pt;}
.yc0{bottom:445.333333pt;}
.y2a1{bottom:446.666667pt;}
.y455{bottom:447.966667pt;}
.ye{bottom:448.896373pt;}
.y505{bottom:449.333333pt;}
.y56c{bottom:450.666667pt;}
.y3fe{bottom:452.000000pt;}
.y405{bottom:452.233333pt;}
.y65{bottom:453.333333pt;}
.y562{bottom:454.666667pt;}
.y3f4{bottom:456.000000pt;}
.y537{bottom:456.555867pt;}
.y3f8{bottom:458.666667pt;}
.y21{bottom:459.600000pt;}
.y4c2{bottom:459.761867pt;}
.ye4{bottom:460.000000pt;}
.y39a{bottom:461.333333pt;}
.y40a{bottom:462.920533pt;}
.y4ba{bottom:464.000000pt;}
.y26a{bottom:464.160400pt;}
.y1ab{bottom:465.297600pt;}
.ybf{bottom:465.333333pt;}
.y4b3{bottom:466.236933pt;}
.y3fd{bottom:468.000000pt;}
.y212{bottom:468.456800pt;}
.y178{bottom:468.500013pt;}
.y58a{bottom:469.333333pt;}
.y45{bottom:469.595867pt;}
.y1f0{bottom:470.683067pt;}
.y521{bottom:472.000000pt;}
.y338{bottom:472.299067pt;}
.y64{bottom:473.333333pt;}
.y404{bottom:473.566667pt;}
.y366{bottom:474.633347pt;}
.y120{bottom:474.666667pt;}
.y3{bottom:474.741600pt;}
.y32d{bottom:475.535200pt;}
.y553{bottom:475.549733pt;}
.y4f2{bottom:476.000000pt;}
.y536{bottom:477.333333pt;}
.ye3{bottom:480.000000pt;}
.y454{bottom:481.300000pt;}
.y504{bottom:481.333333pt;}
.y114{bottom:482.666667pt;}
.y101{bottom:485.600533pt;}
.ybe{bottom:486.666667pt;}
.y38d{bottom:488.000000pt;}
.y549{bottom:488.660000pt;}
.y20{bottom:488.933333pt;}
.y267{bottom:492.634000pt;}
.y561{bottom:493.178533pt;}
.y399{bottom:493.333333pt;}
.y403{bottom:493.566667pt;}
.y365{bottom:494.633347pt;}
.y11f{bottom:494.666667pt;}
.y4b1{bottom:496.186133pt;}
.y1ed{bottom:497.092933pt;}
.y4f1{bottom:497.333333pt;}
.y4c4{bottom:497.877333pt;}
.y56b{bottom:498.666667pt;}
.y63{bottom:500.000000pt;}
.y20f{bottom:500.703200pt;}
.ye2{bottom:501.333333pt;}
.y453{bottom:502.633333pt;}
.y391{bottom:502.666667pt;}
.y7f{bottom:504.000000pt;}
.y13a{bottom:504.657467pt;}
.ybd{bottom:506.666667pt;}
.y38c{bottom:509.333333pt;}
.y503{bottom:513.333333pt;}
.y398{bottom:514.666667pt;}
.y402{bottom:514.900000pt;}
.y364{bottom:515.966680pt;}
.y11d{bottom:516.000000pt;}
.y4f0{bottom:517.333333pt;}
.y11e{bottom:518.666667pt;}
.y356{bottom:520.000000pt;}
.y62{bottom:521.333333pt;}
.y452{bottom:522.633333pt;}
.ye1{bottom:522.666667pt;}
.y265{bottom:523.070667pt;}
.y1ea{bottom:523.502800pt;}
.y7e{bottom:524.000000pt;}
.yd{bottom:524.896373pt;}
.y548{bottom:525.333333pt;}
.y4af{bottom:526.135200pt;}
.y589{bottom:526.666667pt;}
.ybc{bottom:528.000000pt;}
.y502{bottom:529.333333pt;}
.y38b{bottom:530.666667pt;}
.y20d{bottom:532.949467pt;}
.y520{bottom:534.666667pt;}
.y363{bottom:535.966680pt;}
.y4c6{bottom:535.992667pt;}
.y397{bottom:536.000000pt;}
.y401{bottom:536.233333pt;}
.y56a{bottom:536.355867pt;}
.y11c{bottom:537.333333pt;}
.y4ef{bottom:538.666667pt;}
.y61{bottom:540.000000pt;}
.y3ea{bottom:541.300013pt;}
.y547{bottom:541.333333pt;}
.y295{bottom:542.318000pt;}
.ye0{bottom:542.666667pt;}
.y451{bottom:543.966667pt;}
.y7d{bottom:545.333333pt;}
.y4cb{bottom:546.666667pt;}
.ybb{bottom:549.333333pt;}
.y1e8{bottom:549.912667pt;}
.y38a{bottom:550.666667pt;}
.y262{bottom:551.544267pt;}
.y4bb{bottom:553.333333pt;}
.y396{bottom:556.000000pt;}
.y4ad{bottom:556.084400pt;}
.y400{bottom:556.233333pt;}
.y11b{bottom:557.333333pt;}
.y2{bottom:558.741600pt;}
.y3e9{bottom:559.966680pt;}
.y501{bottom:561.333333pt;}
.y2d5{bottom:563.333333pt;}
.y450{bottom:563.966667pt;}
.y20b{bottom:565.195867pt;}
.y7c{bottom:566.666667pt;}
.y60{bottom:568.000000pt;}
.yba{bottom:569.333333pt;}
.y309{bottom:573.333333pt;}
.y4c8{bottom:574.108133pt;}
.y32a{bottom:576.000000pt;}
.y1e6{bottom:576.322533pt;}
.y319{bottom:577.244533pt;}
.y500{bottom:577.333333pt;}
.y11a{bottom:578.666667pt;}
.y2bf{bottom:579.390133pt;}
.y357{bottom:580.000000pt;}
.y25f{bottom:580.017867pt;}
.y3f9{bottom:582.490400pt;}
.y19d{bottom:582.542933pt;}
.y4bc{bottom:582.666667pt;}
.y79{bottom:582.750000pt;}
.y134{bottom:583.442133pt;}
.y3f2{bottom:584.918000pt;}
.y44f{bottom:585.300000pt;}
.y4ab{bottom:586.033600pt;}
.y7b{bottom:586.666667pt;}
.y51f{bottom:588.000000pt;}
.y535{bottom:588.289200pt;}
.y5f{bottom:589.333333pt;}
.yb9{bottom:590.666667pt;}
.y335{bottom:592.000000pt;}
.y308{bottom:593.333333pt;}
.y287{bottom:594.666667pt;}
.y588{bottom:596.000000pt;}
.y209{bottom:597.442133pt;}
.y4bd{bottom:597.548133pt;}
.y284{bottom:598.666667pt;}
.y560{bottom:600.000000pt;}
.y1e4{bottom:602.732400pt;}
.y546{bottom:605.333333pt;}
.y44e{bottom:606.633333pt;}
.y3e8{bottom:606.633347pt;}
.y5e{bottom:608.000000pt;}
.y2d2{bottom:608.197200pt;}
.y51e{bottom:609.333333pt;}
.y25c{bottom:610.454533pt;}
.yd8{bottom:610.666667pt;}
.y286{bottom:612.000000pt;}
.y119{bottom:614.666667pt;}
.y517{bottom:615.060000pt;}
.y283{bottom:616.000000pt;}
.yb7{bottom:622.666667pt;}
.y4ff{bottom:625.333333pt;}
.y44d{bottom:626.633333pt;}
.y3e7{bottom:626.633347pt;}
.yb8{bottom:626.666667pt;}
.y206{bottom:629.688533pt;}
.y2f9{bottom:630.254667pt;}
.y1cd{bottom:630.550800pt;}
.y30b{bottom:630.666667pt;}
.yd7{bottom:632.000000pt;}
.y587{bottom:633.333333pt;}
.yc{bottom:635.563040pt;}
.y516{bottom:636.000000pt;}
.y293{bottom:637.846400pt;}
.y55f{bottom:638.495333pt;}
.y234{bottom:638.666667pt;}
.y32b{bottom:640.000000pt;}
.y240{bottom:640.442267pt;}
.y534{bottom:641.333333pt;}
.yb6{bottom:644.000000pt;}
.y45b{bottom:645.333333pt;}
.y170{bottom:646.666667pt;}
.y44c{bottom:647.966667pt;}
.y3e6{bottom:647.966680pt;}
.y545{bottom:648.000000pt;}
.y480{bottom:648.106533pt;}
.y30a{bottom:650.666667pt;}
.y318{bottom:651.262840pt;}
.y515{bottom:652.000000pt;}
.yd6{bottom:653.333333pt;}
.y329{bottom:656.000000pt;}
.y1de{bottom:657.036000pt;}
.y533{bottom:657.333333pt;}
.y5d{bottom:660.000000pt;}
.y203{bottom:661.934800pt;}
.y12e{bottom:664.775467pt;}
.yb4{bottom:665.333333pt;}
.y4fe{bottom:666.666667pt;}
.y44b{bottom:667.966667pt;}
.yb5{bottom:668.000000pt;}
.yf7{bottom:668.399067pt;}
.y255{bottom:669.096667pt;}
.y2ba{bottom:670.568267pt;}
.y28f{bottom:672.000000pt;}
.yd5{bottom:673.333333pt;}
.y1f6{bottom:675.066667pt;}
.y2f6{bottom:675.072133pt;}
.y439{bottom:676.185067pt;}
.y387{bottom:677.562667pt;}
.y289{bottom:678.666667pt;}
.y3e5{bottom:679.966680pt;}
.y291{bottom:681.398267pt;}
.yb{bottom:682.229707pt;}
.y569{bottom:682.666667pt;}
.y1db{bottom:683.445867pt;}
.y514{bottom:684.000000pt;}
.yb3{bottom:685.333333pt;}
.y2cf{bottom:686.121467pt;}
.y4fd{bottom:688.000000pt;}
.y44a{bottom:689.300000pt;}
.y285{bottom:689.333333pt;}
.y586{bottom:690.666667pt;}
.y28e{bottom:692.000000pt;}
.y201{bottom:694.181200pt;}
.yd4{bottom:694.666667pt;}
.y317{bottom:695.262840pt;}
.y288{bottom:696.000000pt;}
.y32c{bottom:697.333333pt;}
.y253{bottom:697.570400pt;}
.yf9{bottom:700.000000pt;}
.y19f{bottom:701.071333pt;}
.yf5{bottom:701.258533pt;}
.y43b{bottom:702.666667pt;}
.y437{bottom:703.883333pt;}
.y513{bottom:705.333333pt;}
.yb2{bottom:706.666667pt;}
.y4fc{bottom:708.000000pt;}
.y353{bottom:708.158267pt;}
.y1d9{bottom:709.855733pt;}
.y449{bottom:710.633333pt;}
.y98{bottom:712.785067pt;}
.y28d{bottom:713.333333pt;}
.yd3{bottom:714.666667pt;}
.y532{bottom:718.666667pt;}
.y4a6{bottom:721.300000pt;}
.y544{bottom:721.333333pt;}
.y495{bottom:721.633333pt;}
.y512{bottom:725.333333pt;}
.y250{bottom:726.044000pt;}
.yb0{bottom:726.666667pt;}
.y1f7{bottom:728.000000pt;}
.y12c{bottom:728.390267pt;}
.y4fb{bottom:729.333333pt;}
.y448{bottom:730.633333pt;}
.yb1{bottom:730.666667pt;}
.y49d{bottom:733.213200pt;}
.y28c{bottom:734.666667pt;}
.y118{bottom:736.000000pt;}
.y435{bottom:736.119733pt;}
.y1d7{bottom:736.265600pt;}
.y531{bottom:740.000000pt;}
.y585{bottom:741.333333pt;}
.yfb{bottom:742.666667pt;}
.yf3{bottom:743.817733pt;}
.y4a8{bottom:744.000000pt;}
.y497{bottom:746.666667pt;}
.yae{bottom:748.000000pt;}
.y493{bottom:748.187867pt;}
.y4a9{bottom:749.333333pt;}
.yaf{bottom:750.666667pt;}
.y2f4{bottom:750.676267pt;}
.y447{bottom:751.966667pt;}
.y3e4{bottom:751.966680pt;}
.y2cd{bottom:752.056933pt;}
.y24d{bottom:754.517600pt;}
.y28b{bottom:754.666667pt;}
.y377{bottom:756.997333pt;}
.y117{bottom:757.333333pt;}
.y30c{bottom:760.000000pt;}
.y5c{bottom:762.666667pt;}
.y1d5{bottom:762.675467pt;}
.y43c{bottom:766.666667pt;}
.y55e{bottom:767.812133pt;}
.y511{bottom:768.000000pt;}
.y433{bottom:768.356267pt;}
.yad{bottom:769.333333pt;}
.y49f{bottom:771.495333pt;}
.y446{bottom:771.966667pt;}
.y16f{bottom:772.000000pt;}
.y3e3{bottom:773.300013pt;}
.y498{bottom:776.000000pt;}
.y116{bottom:777.333333pt;}
.y491{bottom:778.136933pt;}
.y342{bottom:778.486400pt;}
.y584{bottom:778.666667pt;}
.y5b{bottom:780.000000pt;}
.y530{bottom:781.333333pt;}
.y24b{bottom:782.991333pt;}
.y316{bottom:783.262840pt;}
.yfc{bottom:784.000000pt;}
.y307{bottom:785.333333pt;}
.yf1{bottom:786.376933pt;}
.y510{bottom:788.000000pt;}
.y2b6{bottom:788.145867pt;}
.y1d2{bottom:789.085333pt;}
.yac{bottom:789.333333pt;}
.y2c5{bottom:792.000000pt;}
.y568{bottom:793.128933pt;}
.y3e2{bottom:793.300013pt;}
.y2f2{bottom:794.954933pt;}
.y2cb{bottom:796.380133pt;}
.y383{bottom:797.333333pt;}
.y115{bottom:798.666667pt;}
.y281{bottom:799.790000pt;}
.y543{bottom:800.000000pt;}
.y431{bottom:800.592667pt;}
.y28a{bottom:801.333333pt;}
.y5a{bottom:802.666667pt;}
.y305{bottom:804.000000pt;}
.y315{bottom:804.596173pt;}
.y445{bottom:805.300000pt;}
.y499{bottom:805.333333pt;}
.y48f{bottom:808.086133pt;}
.y4a0{bottom:809.777333pt;}
.yab{bottom:810.666667pt;}
.y248{bottom:811.464933pt;}
.y2c4{bottom:813.333333pt;}
.y3e1{bottom:814.633347pt;}
.y567{bottom:814.666667pt;}
.y1cf{bottom:815.495333pt;}
.y350{bottom:816.000000pt;}
.y583{bottom:817.333333pt;}
.y12b{bottom:818.666667pt;}
.y196{bottom:818.973200pt;}
.y542{bottom:821.333333pt;}
.y50f{bottom:825.193333pt;}
.yfd{bottom:826.666667pt;}
.y552{bottom:828.000000pt;}
.yef{bottom:828.936133pt;}
.y59{bottom:829.333333pt;}
.y39{bottom:829.566680pt;}
.yaa{bottom:830.666667pt;}
.y42f{bottom:832.829200pt;}
.y3e0{bottom:834.633347pt;}
.yd2{bottom:834.666667pt;}
.y304{bottom:836.000000pt;}
.y314{bottom:836.596173pt;}
.y351{bottom:837.333333pt;}
.y1b8{bottom:837.453813pt;}
.y48d{bottom:838.035333pt;}
.y2f0{bottom:839.233733pt;}
.y245{bottom:839.938667pt;}
.y12a{bottom:840.000000pt;}
.y541{bottom:841.333333pt;}
.y1c7{bottom:843.313733pt;}
.y444{bottom:843.966667pt;}
.y50e{bottom:846.666667pt;}
.y1e{bottom:848.000000pt;}
.y4a2{bottom:848.059467pt;}
.y30d{bottom:849.333333pt;}
.ya9{bottom:852.000000pt;}
.y186{bottom:854.666667pt;}
.y3df{bottom:855.966680pt;}
.y303{bottom:856.000000pt;}
.y313{bottom:857.929507pt;}
.y52f{bottom:858.666667pt;}
.y1b7{bottom:858.787147pt;}
.y43d{bottom:862.666667pt;}
.y42d{bottom:865.065733pt;}
.y384{bottom:865.333333pt;}
.y4aa{bottom:866.666667pt;}
.y48b{bottom:867.984400pt;}
.y242{bottom:868.412267pt;}
.yfe{bottom:869.333333pt;}
.yed{bottom:871.495333pt;}
.ya8{bottom:873.333333pt;}
.y58{bottom:874.666667pt;}
.y443{bottom:877.300000pt;}
.y3de{bottom:877.300013pt;}
.y50d{bottom:878.666667pt;}
.y198{bottom:879.008533pt;}
.y2b3{bottom:879.017333pt;}
.y312{bottom:879.262840pt;}
.y1b6{bottom:880.120480pt;}
.y540{bottom:884.000000pt;}
.y4a4{bottom:886.341467pt;}
.y2c3{bottom:888.000000pt;}
.y30e{bottom:889.568267pt;}
.y55d{bottom:890.666667pt;}
.y57{bottom:893.333333pt;}
.y43e{bottom:894.666667pt;}
.y442{bottom:897.300000pt;}
.y362{bottom:897.300013pt;}
.y42b{bottom:897.302133pt;}
.y489{bottom:897.933600pt;}
.y235{bottom:898.400000pt;}
.y311{bottom:899.262840pt;}
.y1b5{bottom:900.120480pt;}
.ya{bottom:903.563040pt;}
.y386{bottom:904.000000pt;}
.y34f{bottom:909.333333pt;}
.y49a{bottom:909.781467pt;}
.yff{bottom:910.666667pt;}
.yeb{bottom:914.054533pt;}
.y352{bottom:921.333333pt;}
.y385{bottom:922.666667pt;}
.y43f{bottom:926.666667pt;}
.y429{bottom:929.538667pt;}
.y194{bottom:943.057733pt;}
.y2b1{bottom:945.039333pt;}
.y100{bottom:953.333333pt;}
.ye9{bottom:956.613733pt;}
.y440{bottom:958.666667pt;}
.y486{bottom:958.937600pt;}
.y427{bottom:961.775067pt;}
.y16{bottom:1039.496267pt;}
.y1a{bottom:1040.577200pt;}
.y18{bottom:1046.899333pt;}
.y1c{bottom:1049.343733pt;}
.h93{height:3.713542pt;}
.h91{height:16.000000pt;}
.h30{height:16.960000pt;}
.h6b{height:17.333333pt;}
.h2e{height:18.293333pt;}
.h8e{height:18.567708pt;}
.h69{height:18.666667pt;}
.h31{height:20.000000pt;}
.h67{height:20.869227pt;}
.h8a{height:21.333333pt;}
.h2d{height:23.500000pt;}
.h52{height:25.076560pt;}
.h51{height:25.151747pt;}
.h54{height:25.226933pt;}
.h15{height:25.322920pt;}
.h62{height:27.140320pt;}
.h61{height:27.321080pt;}
.h12{height:27.767360pt;}
.h66{height:28.349267pt;}
.h64{height:29.103307pt;}
.h28{height:29.708333pt;}
.h26{height:30.354173pt;}
.h59{height:30.913000pt;}
.h58{height:31.152133pt;}
.h5b{height:31.391253pt;}
.h1c{height:32.552080pt;}
.h9c{height:32.960000pt;}
.ha2{height:33.333333pt;}
.h3c{height:33.421875pt;}
.he{height:34.429688pt;}
.hf{height:35.367188pt;}
.h11{height:36.000000pt;}
.h13{height:36.304688pt;}
.hb{height:37.135417pt;}
.h8b{height:37.291667pt;}
.h14{height:37.498107pt;}
.h9b{height:38.506667pt;}
.h10{height:38.579080pt;}
.h3f{height:38.880000pt;}
.h2f{height:38.986667pt;}
.h32{height:39.209787pt;}
.h40{height:39.500000pt;}
.h19{height:39.700573pt;}
.h9a{height:40.338542pt;}
.h46{height:40.734375pt;}
.h45{height:40.763021pt;}
.h21{height:40.848958pt;}
.ha3{height:41.096653pt;}
.ha4{height:41.110533pt;}
.haa{height:41.765625pt;}
.h6e{height:42.218507pt;}
.h3a{height:42.656250pt;}
.hc{height:42.710938pt;}
.h6a{height:42.885333pt;}
.h87{height:42.945360pt;}
.h7e{height:42.989853pt;}
.h89{height:43.484120pt;}
.h81{height:43.530507pt;}
.h82{height:43.589360pt;}
.ha5{height:43.729027pt;}
.ha1{height:43.895187pt;}
.h85{height:44.155347pt;}
.h6f{height:44.437500pt;}
.h9e{height:44.468750pt;}
.h7{height:44.562500pt;}
.h20{height:46.182292pt;}
.h74{height:46.289627pt;}
.h68{height:46.784000pt;}
.ha7{height:47.156250pt;}
.h1b{height:48.000000pt;}
.h1a{height:48.785680pt;}
.ha{height:51.989583pt;}
.h3b{height:52.475000pt;}
.h65{height:53.580133pt;}
.h8d{height:54.581333pt;}
.h29{height:55.500000pt;}
.h42{height:55.608880pt;}
.h78{height:55.627293pt;}
.h6d{height:56.293960pt;}
.h5{height:56.473958pt;}
.h3d{height:57.516693pt;}
.h1f{height:57.931250pt;}
.h47{height:58.702027pt;}
.h4f{height:58.819640pt;}
.h18{height:59.416667pt;}
.h44{height:61.382533pt;}
.h6c{height:62.208000pt;}
.h33{height:62.281373pt;}
.h79{height:63.355333pt;}
.h4{height:64.500000pt;}
.h5c{height:64.541667pt;}
.h7f{height:64.602080pt;}
.h83{height:67.768507pt;}
.h75{height:69.933000pt;}
.h25{height:69.984000pt;}
.h95{height:71.187120pt;}
.h5d{height:71.500000pt;}
.h9{height:72.609375pt;}
.hd{height:73.426427pt;}
.h56{height:73.600000pt;}
.h72{height:74.150680pt;}
.h5f{height:74.266667pt;}
.h88{height:74.270787pt;}
.h80{height:76.591013pt;}
.h86{height:76.643229pt;}
.h35{height:77.451400pt;}
.h84{height:77.645000pt;}
.h76{height:79.980987pt;}
.h34{height:80.000000pt;}
.h77{height:83.072480pt;}
.h37{height:88.932053pt;}
.h7a{height:89.538107pt;}
.h7c{height:89.844773pt;}
.h70{height:94.195133pt;}
.h3{height:96.812500pt;}
.h38{height:98.046627pt;}
.h8{height:100.846354pt;}
.h36{height:101.012120pt;}
.h71{height:104.526147pt;}
.h94{height:106.468733pt;}
.h4d{height:108.383747pt;}
.h39{height:112.000000pt;}
.h4c{height:114.578733pt;}
.h49{height:115.235187pt;}
.h7b{height:116.244333pt;}
.h4a{height:117.195093pt;}
.h43{height:121.417893pt;}
.ha0{height:122.546875pt;}
.h90{height:135.129067pt;}
.h8f{height:139.928800pt;}
.h1e{height:145.218750pt;}
.h99{height:184.478267pt;}
.h50{height:210.096133pt;}
.h53{height:210.171333pt;}
.h96{height:215.737067pt;}
.h4b{height:224.295867pt;}
.h2{height:225.895833pt;}
.h48{height:233.763600pt;}
.h9f{height:234.666667pt;}
.h60{height:255.291067pt;}
.h63{height:286.685067pt;}
.h57{height:289.361867pt;}
.h5a{height:289.601067pt;}
.h2b{height:289.881600pt;}
.h2a{height:290.814800pt;}
.h92{height:294.508400pt;}
.h97{height:296.153067pt;}
.h22{height:403.126000pt;}
.h17{height:513.333333pt;}
.h1{height:655.684667pt;}
.h5e{height:661.333333pt;}
.h55{height:697.333333pt;}
.h27{height:906.666667pt;}
.h3e{height:907.166667pt;}
.h41{height:908.000000pt;}
.ha8{height:908.916667pt;}
.ha6{height:910.727200pt;}
.h23{height:910.791733pt;}
.hac{height:911.033333pt;}
.hab{height:911.096400pt;}
.h2c{height:911.166667pt;}
.h16{height:911.969067pt;}
.h9d{height:912.233333pt;}
.h24{height:912.766667pt;}
.h7d{height:912.960000pt;}
.h98{height:915.133333pt;}
.h1d{height:916.202400pt;}
.h8c{height:917.096133pt;}
.h73{height:917.333333pt;}
.h4e{height:917.953867pt;}
.h6{height:921.396400pt;}
.ha9{height:921.833333pt;}
.h0{height:1122.666667pt;}
.w1b{width:11.413333pt;}
.w1f{width:12.000000pt;}
.w20{width:13.333333pt;}
.w1d{width:18.819280pt;}
.w1c{width:18.826667pt;}
.w1e{width:20.000000pt;}
.w8d{width:21.280000pt;}
.w21{width:21.333333pt;}
.w75{width:22.666667pt;}
.w8b{width:24.906667pt;}
.w8c{width:24.986667pt;}
.w72{width:26.232613pt;}
.w71{width:26.240000pt;}
.w51{width:26.666667pt;}
.w73{width:28.000000pt;}
.w28{width:29.946667pt;}
.w5a{width:30.666667pt;}
.w5d{width:34.666667pt;}
.w53{width:36.000000pt;}
.w27{width:37.346667pt;}
.w85{width:38.813333pt;}
.wa{width:39.429560pt;}
.w55{width:41.333333pt;}
.w6f{width:42.040000pt;}
.w5b{width:42.666667pt;}
.w52{width:44.000000pt;}
.w4a{width:45.333333pt;}
.w48{width:46.666667pt;}
.w64{width:47.466667pt;}
.w54{width:49.333333pt;}
.w6a{width:49.666667pt;}
.w67{width:54.146667pt;}
.w88{width:56.346667pt;}
.w4b{width:57.333333pt;}
.w22{width:57.826667pt;}
.w68{width:60.053333pt;}
.w49{width:61.333333pt;}
.w4d{width:62.666667pt;}
.w3a{width:71.258707pt;}
.w15{width:71.680000pt;}
.w42{width:71.793347pt;}
.w8e{width:72.152613pt;}
.w6d{width:74.640000pt;}
.w6c{width:77.613333pt;}
.w74{width:80.000000pt;}
.w1a{width:81.053333pt;}
.w38{width:81.627133pt;}
.w40{width:84.247827pt;}
.w14{width:88.706667pt;}
.w84{width:90.426667pt;}
.w45{width:92.123920pt;}
.w3c{width:93.574360pt;}
.w25{width:94.360000pt;}
.w3d{width:94.980253pt;}
.w7f{width:95.626667pt;}
.w65{width:95.840000pt;}
.w44{width:96.248853pt;}
.w34{width:96.642627pt;}
.w32{width:96.730493pt;}
.w19{width:97.080000pt;}
.w3b{width:102.226107pt;}
.w43{width:102.412800pt;}
.w35{width:103.498920pt;}
.w16{width:106.466667pt;}
.w89{width:107.960000pt;}
.w26{width:111.160000pt;}
.w6b{width:112.413333pt;}
.w18{width:114.146667pt;}
.w6e{width:119.346667pt;}
.w70{width:120.200000pt;}
.w69{width:121.533333pt;}
.w87{width:122.280000pt;}
.w36{width:126.341267pt;}
.w47{width:128.000000pt;}
.w66{width:132.333333pt;}
.w41{width:138.506533pt;}
.w39{width:143.000133pt;}
.w17{width:144.426667pt;}
.w23{width:151.426667pt;}
.w2c{width:153.041200pt;}
.w8a{width:157.797867pt;}
.w86{width:160.453333pt;}
.w7c{width:163.773333pt;}
.w33{width:164.786667pt;}
.w56{width:167.333333pt;}
.w24{width:167.866667pt;}
.w7d{width:168.720000pt;}
.w30{width:173.779200pt;}
.w2a{width:192.592667pt;}
.w7b{width:192.893333pt;}
.w79{width:206.213333pt;}
.w77{width:214.453333pt;}
.w83{width:240.000000pt;}
.w7e{width:241.346667pt;}
.w2b{width:245.032800pt;}
.w76{width:245.800000pt;}
.w3{width:257.349867pt;}
.w7a{width:259.826667pt;}
.w58{width:274.152933pt;}
.w46{width:275.904533pt;}
.w4c{width:275.905467pt;}
.w60{width:287.297333pt;}
.w59{width:289.190000pt;}
.wf{width:291.158267pt;}
.w2d{width:293.208267pt;}
.w2e{width:300.666667pt;}
.w61{width:302.717067pt;}
.w5c{width:308.282800pt;}
.w80{width:309.280000pt;}
.w63{width:310.888933pt;}
.w62{width:313.976400pt;}
.w81{width:322.080000pt;}
.w5e{width:327.180400pt;}
.w78{width:331.373333pt;}
.w7{width:333.333333pt;}
.w6{width:341.484000pt;}
.wb{width:343.756533pt;}
.w92{width:353.487467pt;}
.w5{width:366.607600pt;}
.w4{width:374.758400pt;}
.w31{width:418.220800pt;}
.w4f{width:593.333333pt;}
.wd{width:596.000000pt;}
.w1{width:599.915067pt;}
.w13{width:601.333333pt;}
.w12{width:601.700800pt;}
.w8f{width:602.083333pt;}
.w3f{width:604.000000pt;}
.w37{width:605.333333pt;}
.w11{width:608.833333pt;}
.w90{width:610.192667pt;}
.w10{width:610.333333pt;}
.w93{width:610.869333pt;}
.w5f{width:611.396000pt;}
.w82{width:612.126667pt;}
.w57{width:612.458667pt;}
.w91{width:612.842933pt;}
.w8{width:613.453067pt;}
.w4e{width:613.919867pt;}
.w29{width:614.968133pt;}
.w50{width:615.725600pt;}
.w3e{width:619.513067pt;}
.w2{width:620.270533pt;}
.w9{width:622.893333pt;}
.we{width:624.058000pt;}
.wc{width:628.602800pt;}
.w2f{width:638.162800pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2e{left:1.613333pt;}
.x35{left:2.513333pt;}
.xe{left:4.008267pt;}
.x10{left:5.333333pt;}
.x4b{left:6.817387pt;}
.x70{left:8.114000pt;}
.xa{left:9.468587pt;}
.x1f{left:11.362307pt;}
.x6f{left:12.706133pt;}
.x19{left:13.634760pt;}
.x61{left:15.816133pt;}
.x6e{left:16.706133pt;}
.x63{left:19.173467pt;}
.x5e{left:22.666667pt;}
.x62{left:23.816133pt;}
.x72{left:25.646933pt;}
.xd{left:26.674933pt;}
.x73{left:28.706133pt;}
.x2{left:29.773840pt;}
.x76{left:31.372800pt;}
.x6{left:32.440507pt;}
.x79{left:33.447333pt;}
.x75{left:35.221333pt;}
.x74{left:36.114000pt;}
.x68{left:37.149467pt;}
.x78{left:39.221333pt;}
.x67{left:40.506800pt;}
.x7d{left:41.752133pt;}
.x1d{left:42.666667pt;}
.x65{left:44.506800pt;}
.x77{left:46.780667pt;}
.x66{left:47.674533pt;}
.x1e{left:48.695640pt;}
.x1a{left:50.968093pt;}
.x54{left:51.857333pt;}
.x69{left:53.007867pt;}
.x60{left:55.269467pt;}
.x5c{left:61.333333pt;}
.x15{left:63.333333pt;}
.xf4{left:66.689333pt;}
.xc{left:69.341600pt;}
.x1b{left:70.968093pt;}
.x82{left:73.333333pt;}
.x50{left:74.816173pt;}
.x10d{left:76.429693pt;}
.x25{left:77.333333pt;}
.x59{left:78.817387pt;}
.x88{left:79.905467pt;}
.x18{left:82.365240pt;}
.x3{left:84.440507pt;}
.x8{left:86.531413pt;}
.x52{left:87.556800pt;}
.x92{left:88.803880pt;}
.x14{left:89.940107pt;}
.x21{left:91.500000pt;}
.xf{left:92.591307pt;}
.x6a{left:94.000000pt;}
.x23{left:96.000000pt;}
.x1{left:96.892827pt;}
.x1c{left:98.666667pt;}
.x5b{left:100.000000pt;}
.x42{left:102.706653pt;}
.x4f{left:103.850493pt;}
.xf7{left:107.113640pt;}
.xce{left:110.571200pt;}
.xbf{left:112.944627pt;}
.xb1{left:114.880013pt;}
.x6b{left:116.666667pt;}
.x7b{left:118.666667pt;}
.x5{left:121.773840pt;}
.xb2{left:124.000013pt;}
.x31{left:126.280000pt;}
.xc9{left:130.666667pt;}
.x30{left:133.960000pt;}
.x9{left:137.468587pt;}
.xa0{left:140.000000pt;}
.x32{left:143.346667pt;}
.xf0{left:144.720533pt;}
.xca{left:146.666667pt;}
.x4{left:148.440507pt;}
.x2d{left:151.720000pt;}
.x13{left:155.341733pt;}
.xab{left:157.333333pt;}
.x33{left:159.373333pt;}
.xb3{left:161.773333pt;}
.xc0{left:166.744667pt;}
.x2f{left:168.746667pt;}
.xb0{left:176.360000pt;}
.x94{left:180.000000pt;}
.xd3{left:181.573333pt;}
.x6c{left:182.960400pt;}
.xe3{left:184.173333pt;}
.x7c{left:186.247867pt;}
.xaf{left:188.946667pt;}
.x96{left:192.000000pt;}
.x98{left:193.333333pt;}
.xb4{left:194.373333pt;}
.x41{left:196.306667pt;}
.x5f{left:198.063867pt;}
.x97{left:200.000000pt;}
.x8f{left:202.000000pt;}
.x24{left:204.000000pt;}
.x26{left:206.666667pt;}
.x7{left:209.773840pt;}
.x95{left:210.666667pt;}
.xae{left:212.000000pt;}
.xd4{left:212.920000pt;}
.xef{left:213.867200pt;}
.x43{left:216.786667pt;}
.xe1{left:219.306667pt;}
.x90{left:220.666667pt;}
.xc7{left:224.000000pt;}
.x93{left:228.666667pt;}
.x91{left:232.000000pt;}
.xcc{left:233.333333pt;}
.xd5{left:234.480000pt;}
.xa6{left:236.000000pt;}
.x85{left:238.666667pt;}
.x86{left:244.000000pt;}
.xcb{left:245.333333pt;}
.x100{left:246.256000pt;}
.x34{left:248.153333pt;}
.xad{left:249.333333pt;}
.xbb{left:250.666667pt;}
.x103{left:253.333333pt;}
.x3c{left:254.666667pt;}
.xa7{left:256.000000pt;}
.xac{left:257.333333pt;}
.x56{left:259.166667pt;}
.xf1{left:260.407067pt;}
.xe2{left:261.746667pt;}
.x3b{left:262.666667pt;}
.x83{left:264.000000pt;}
.x2a{left:265.833333pt;}
.xb{left:267.991733pt;}
.x28{left:269.833333pt;}
.x84{left:272.000000pt;}
.xcd{left:273.333333pt;}
.x5d{left:275.112533pt;}
.x46{left:280.000000pt;}
.x55{left:281.833333pt;}
.x5a{left:289.833333pt;}
.xbd{left:293.333333pt;}
.x4a{left:296.000000pt;}
.x51{left:297.776533pt;}
.xbc{left:298.666667pt;}
.xa1{left:304.229333pt;}
.x47{left:305.333333pt;}
.xc5{left:308.000000pt;}
.x27{left:313.833333pt;}
.x4e{left:315.500000pt;}
.x7a{left:318.423173pt;}
.x17{left:321.750000pt;}
.x7e{left:326.087733pt;}
.x6d{left:327.293867pt;}
.x2c{left:329.833333pt;}
.xd6{left:331.746667pt;}
.x101{left:337.750400pt;}
.x10e{left:341.929027pt;}
.x10c{left:343.792627pt;}
.xb5{left:346.744933pt;}
.xf9{left:348.000000pt;}
.x10a{left:349.743827pt;}
.x81{left:351.166667pt;}
.x36{left:353.294933pt;}
.x58{left:354.817387pt;}
.x10b{left:356.618760pt;}
.x16{left:358.121733pt;}
.x11{left:359.258000pt;}
.x4c{left:362.817387pt;}
.x12{left:364.000000pt;}
.xb9{left:369.333333pt;}
.xf8{left:376.000000pt;}
.xaa{left:378.309867pt;}
.x102{left:381.644267pt;}
.xc8{left:384.000000pt;}
.x40{left:385.333333pt;}
.xf2{left:393.333333pt;}
.xa9{left:395.929333pt;}
.x7f{left:399.214400pt;}
.x57{left:400.354133pt;}
.x3f{left:406.666667pt;}
.x9b{left:408.143333pt;}
.x104{left:409.333333pt;}
.x10f{left:416.768000pt;}
.xa2{left:418.636133pt;}
.x87{left:421.427867pt;}
.xfa{left:426.666667pt;}
.x89{left:429.333333pt;}
.xe4{left:433.246667pt;}
.xc6{left:434.666667pt;}
.xea{left:440.000000pt;}
.xc1{left:440.944933pt;}
.xdc{left:442.666667pt;}
.x2b{left:444.500000pt;}
.x3e{left:450.666667pt;}
.xcf{left:452.000000pt;}
.xe0{left:456.000000pt;}
.xee{left:458.666667pt;}
.xdd{left:460.000000pt;}
.x37{left:462.143333pt;}
.xb6{left:464.176667pt;}
.x4d{left:466.817387pt;}
.xd0{left:468.000000pt;}
.x44{left:468.996667pt;}
.x8a{left:470.666667pt;}
.x3d{left:472.000000pt;}
.xeb{left:477.333333pt;}
.x106{left:483.601067pt;}
.xb8{left:485.333333pt;}
.xfd{left:486.412533pt;}
.xe5{left:490.724933pt;}
.xd7{left:492.578267pt;}
.x22{left:495.166667pt;}
.x9c{left:497.333333pt;}
.xfc{left:499.905867pt;}
.x20{left:502.175067pt;}
.x29{left:503.166667pt;}
.xe8{left:506.666667pt;}
.xa3{left:508.000000pt;}
.x105{left:514.194400pt;}
.xa4{left:521.333333pt;}
.xfb{left:523.085867pt;}
.x109{left:528.000000pt;}
.x107{left:528.889600pt;}
.xf3{left:531.977333pt;}
.xbe{left:536.000000pt;}
.xfe{left:537.781067pt;}
.x48{left:541.333333pt;}
.x53{left:544.142667pt;}
.xed{left:545.333333pt;}
.xf5{left:546.672533pt;}
.xc2{left:551.308533pt;}
.xd8{left:553.763333pt;}
.xdb{left:554.666667pt;}
.x9a{left:556.000000pt;}
.x99{left:557.333333pt;}
.x9d{left:562.666667pt;}
.x64{left:566.992133pt;}
.x45{left:568.858267pt;}
.x38{left:570.991600pt;}
.x8d{left:577.333333pt;}
.x9f{left:578.666667pt;}
.x8e{left:582.666667pt;}
.x8b{left:586.666667pt;}
.xd1{left:590.666667pt;}
.xd2{left:592.000000pt;}
.x8c{left:594.666667pt;}
.xdf{left:596.000000pt;}
.x71{left:598.353067pt;}
.x80{left:600.542800pt;}
.xa8{left:604.000000pt;}
.xa5{left:608.000000pt;}
.xe6{left:613.094933pt;}
.xd9{left:614.948267pt;}
.xe9{left:616.000000pt;}
.x9e{left:617.333333pt;}
.x49{left:626.666667pt;}
.xde{left:628.000000pt;}
.xc4{left:634.666667pt;}
.x3a{left:636.000000pt;}
.x108{left:638.666667pt;}
.xff{left:644.000000pt;}
.xec{left:648.000000pt;}
.xba{left:650.666667pt;}
.xf6{left:652.000000pt;}
.xc3{left:665.378667pt;}
.xe7{left:670.573333pt;}
.xda{left:676.133333pt;}
.x39{left:679.840000pt;}
.xb7{left:687.920000pt;}
}




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