
    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_62a292160a33e8e296c1b970.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_43de820ab73724d6f6003bc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_ccf3b32ef7dd1a4503d4d3e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_6858e44c84c4736a3131042f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_e414e2d5b9b92da89492cdcc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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_1c791d326c42df8361b46006.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_18e0db84b81c00bea04231e1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.328000;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_84dfeac8e84ff02940d76b75.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_59d45da9054f41c4d41011c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.144000;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_2c811912a33a961354db8ebf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.607000;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_cbc41699ca5737945b9fefea.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.684000;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_5a9eea9a21451c37b2c7a0da.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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_ec61519ed30357187e5be5d3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.854004;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_32ed0829ab41426548aae8e4.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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_eac5181417f1357408c44182.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_4eb9607fd156d19eff6c17d9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_34a8ea68d10cdf684ea8f796.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_9c2e33e30c89e200b5bbd3b3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.893066;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_12dafbf8019568960ce2d0db.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.893066;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_d6bd4a29c457b7f2647e65b1.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.739746;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-23.343735px;}
.v2{vertical-align:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.533778px;}
.v1{vertical-align:24.000000px;}
.v5{vertical-align:59.976000px;}
.ls4c{letter-spacing:-3.366000px;}
.ls6c{letter-spacing:-1.581000px;}
.ls43{letter-spacing:-1.071000px;}
.ls93{letter-spacing:-1.026000px;}
.ls4d{letter-spacing:-0.663000px;}
.ls68{letter-spacing:-0.480000px;}
.ls2b{letter-spacing:-0.420000px;}
.lsa5{letter-spacing:-0.414600px;}
.ls17{letter-spacing:-0.360000px;}
.ls6a{letter-spacing:-0.357000px;}
.ls8b{letter-spacing:-0.306000px;}
.ls98{letter-spacing:-0.305400px;}
.ls3f{letter-spacing:-0.300000px;}
.ls8c{letter-spacing:-0.255000px;}
.ls41{letter-spacing:-0.240000px;}
.ls72{letter-spacing:-0.204000px;}
.ls2a{letter-spacing:-0.180000px;}
.ls71{letter-spacing:-0.153000px;}
.ls40{letter-spacing:-0.120000px;}
.ls69{letter-spacing:-0.102000px;}
.ls16{letter-spacing:-0.060000px;}
.ls73{letter-spacing:-0.051000px;}
.ls12{letter-spacing:0.000000px;}
.ls4b{letter-spacing:0.000037px;}
.ls4a{letter-spacing:0.000042px;}
.ls0{letter-spacing:0.000085px;}
.ls8f{letter-spacing:0.025500px;}
.ls7a{letter-spacing:0.051000px;}
.lsa7{letter-spacing:0.053280px;}
.ls35{letter-spacing:0.059976px;}
.ls15{letter-spacing:0.060000px;}
.ls75{letter-spacing:0.102000px;}
.ls9b{letter-spacing:0.109200px;}
.ls4{letter-spacing:0.120000px;}
.ls76{letter-spacing:0.127500px;}
.ls81{letter-spacing:0.153000px;}
.ls11{letter-spacing:0.178791px;}
.ls14{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.198000px;}
.ls70{letter-spacing:0.204000px;}
.lsa6{letter-spacing:0.206400px;}
.ls30{letter-spacing:0.209473px;}
.ls19{letter-spacing:0.210000px;}
.ls38{letter-spacing:0.210022px;}
.ls87{letter-spacing:0.229500px;}
.ls1{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.255000px;}
.ls5d{letter-spacing:0.258000px;}
.ls79{letter-spacing:0.264000px;}
.ls24{letter-spacing:0.270000px;}
.ls1a{letter-spacing:0.282000px;}
.ls7c{letter-spacing:0.288000px;}
.ls61{letter-spacing:0.299989px;}
.ls2{letter-spacing:0.300000px;}
.ls99{letter-spacing:0.305400px;}
.ls60{letter-spacing:0.305993px;}
.ls89{letter-spacing:0.306000px;}
.ls37{letter-spacing:0.306467px;}
.lsb{letter-spacing:0.330000px;}
.ls2f{letter-spacing:0.335964px;}
.ls77{letter-spacing:0.357000px;}
.ls3{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.366000px;}
.ls80{letter-spacing:0.382500px;}
.ls67{letter-spacing:0.396000px;}
.ls82{letter-spacing:0.408000px;}
.ls18{letter-spacing:0.420000px;}
.ls2d{letter-spacing:0.450000px;}
.ls7b{letter-spacing:0.459000px;}
.ls5{letter-spacing:0.480000px;}
.ls5a{letter-spacing:0.503989px;}
.ls85{letter-spacing:0.510000px;}
.ls29{letter-spacing:0.540000px;}
.ls64{letter-spacing:0.552000px;}
.ls74{letter-spacing:0.561000px;}
.ls33{letter-spacing:0.570000px;}
.ls3d{letter-spacing:0.582000px;}
.ls6{letter-spacing:0.600000px;}
.ls88{letter-spacing:0.612000px;}
.ls6f{letter-spacing:0.630000px;}
.ls56{letter-spacing:0.642000px;}
.lsf{letter-spacing:0.660000px;}
.ls7d{letter-spacing:0.663000px;}
.ls6e{letter-spacing:0.672000px;}
.ls2c{letter-spacing:0.690000px;}
.ls7f{letter-spacing:0.714000px;}
.ls47{letter-spacing:0.714569px;}
.lsc{letter-spacing:0.720000px;}
.ls62{letter-spacing:0.750000px;}
.ls78{letter-spacing:0.765000px;}
.ls1f{letter-spacing:0.780000px;}
.ls59{letter-spacing:0.797516px;}
.ls5c{letter-spacing:0.797974px;}
.lse{letter-spacing:0.840000px;}
.ls36{letter-spacing:0.852000px;}
.ls8a{letter-spacing:0.867000px;}
.ls66{letter-spacing:0.870000px;}
.ls7{letter-spacing:0.900000px;}
.ls7e{letter-spacing:0.918000px;}
.ls26{letter-spacing:0.930000px;}
.ls1c{letter-spacing:0.942000px;}
.ls32{letter-spacing:0.960000px;}
.ls83{letter-spacing:0.969000px;}
.ls28{letter-spacing:0.990000px;}
.ls2e{letter-spacing:1.019993px;}
.ls20{letter-spacing:1.020000px;}
.ls46{letter-spacing:1.036831px;}
.ls8d{letter-spacing:1.045500px;}
.ls92{letter-spacing:1.071000px;}
.ls23{letter-spacing:1.080000px;}
.ls6d{letter-spacing:1.110000px;}
.ls3e{letter-spacing:1.116000px;}
.ls57{letter-spacing:1.134000px;}
.ls1d{letter-spacing:1.140000px;}
.ls65{letter-spacing:1.164000px;}
.ls5b{letter-spacing:1.171749px;}
.ls90{letter-spacing:1.173000px;}
.ls58{letter-spacing:1.179601px;}
.lsd{letter-spacing:1.182000px;}
.ls1b{letter-spacing:1.193963px;}
.lsa{letter-spacing:1.200000px;}
.ls5e{letter-spacing:1.259993px;}
.ls8{letter-spacing:1.260000px;}
.ls31{letter-spacing:1.320000px;}
.ls91{letter-spacing:1.377000px;}
.ls21{letter-spacing:1.380000px;}
.ls63{letter-spacing:1.410000px;}
.ls8e{letter-spacing:1.428000px;}
.ls49{letter-spacing:1.440000px;}
.ls22{letter-spacing:1.470000px;}
.ls86{letter-spacing:1.479000px;}
.ls6b{letter-spacing:1.560000px;}
.ls53{letter-spacing:1.619989px;}
.ls9{letter-spacing:1.656000px;}
.ls25{letter-spacing:1.680000px;}
.ls84{letter-spacing:1.683000px;}
.ls27{letter-spacing:1.740000px;}
.ls3b{letter-spacing:1.800000px;}
.ls48{letter-spacing:1.860000px;}
.ls5f{letter-spacing:1.920000px;}
.ls3c{letter-spacing:1.938000px;}
.ls44{letter-spacing:1.980000px;}
.ls39{letter-spacing:2.040000px;}
.ls55{letter-spacing:2.052000px;}
.ls3a{letter-spacing:2.100000px;}
.ls45{letter-spacing:2.129987px;}
.ls4e{letter-spacing:2.160000px;}
.ls50{letter-spacing:2.220000px;}
.ls51{letter-spacing:2.280000px;}
.ls54{letter-spacing:2.369983px;}
.ls4f{letter-spacing:2.370000px;}
.ls52{letter-spacing:2.459979px;}
.ls13{letter-spacing:3.990000px;}
.ls9d{letter-spacing:66.960000px;}
.ls9c{letter-spacing:97.920000px;}
.ls9a{letter-spacing:109.889280px;}
.ls42{letter-spacing:130.967995px;}
.lsa2{letter-spacing:138.240000px;}
.lsa4{letter-spacing:151.920000px;}
.lsa3{letter-spacing:165.600000px;}
.lsa1{letter-spacing:182.160000px;}
.ls9e{letter-spacing:200.160000px;}
.lsa0{letter-spacing:222.480000px;}
.ls9f{letter-spacing:240.480000px;}
.ls96{letter-spacing:586.920000px;}
.ls97{letter-spacing:1089.480000px;}
.ls95{letter-spacing:1260.120000px;}
.ls94{letter-spacing:1982.436000px;}
.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;}
}
.ws2{word-spacing:-18.432000px;}
.wsd3{word-spacing:-16.865400px;}
.wsd1{word-spacing:-16.560000px;}
.wsd2{word-spacing:-16.254600px;}
.wsd4{word-spacing:-16.145400px;}
.ws24{word-spacing:-15.300000px;}
.wsd5{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.000000px;}
.wsd6{word-spacing:-14.993280px;}
.ws9b{word-spacing:-13.005000px;}
.ws9f{word-spacing:-12.852000px;}
.ws55{word-spacing:-12.750000px;}
.ws23{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws84{word-spacing:-12.393000px;}
.ws8{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.520000px;}
.ws89{word-spacing:-11.169000px;}
.wscf{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.996000px;}
.ws9e{word-spacing:-9.894000px;}
.wsd0{word-spacing:-9.720000px;}
.ws8d{word-spacing:-9.639000px;}
.ws60{word-spacing:-9.384000px;}
.wsa{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws6a{word-spacing:-7.560000px;}
.ws18{word-spacing:-7.500000px;}
.ws51{word-spacing:-7.200000px;}
.ws5b{word-spacing:-6.375000px;}
.ws61{word-spacing:-5.520000px;}
.wsc{word-spacing:-3.990000px;}
.wsd{word-spacing:-1.500000px;}
.ws26{word-spacing:-1.440000px;}
.ws15{word-spacing:-1.380000px;}
.wsf{word-spacing:-1.320000px;}
.ws9a{word-spacing:-1.275000px;}
.ws35{word-spacing:-1.260000px;}
.ws9d{word-spacing:-1.224000px;}
.ws49{word-spacing:-1.200000px;}
.ws2c{word-spacing:-1.140000px;}
.wsc9{word-spacing:-1.122000px;}
.ws74{word-spacing:-1.080000px;}
.wsa9{word-spacing:-1.071000px;}
.ws52{word-spacing:-1.020000px;}
.ws9c{word-spacing:-0.969000px;}
.ws95{word-spacing:-0.960000px;}
.ws2d{word-spacing:-0.900000px;}
.wsc4{word-spacing:-0.867000px;}
.ws45{word-spacing:-0.780000px;}
.wsaa{word-spacing:-0.765000px;}
.ws12{word-spacing:-0.720000px;}
.wsab{word-spacing:-0.714000px;}
.ws4a{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.612000px;}
.ws3e{word-spacing:-0.600000px;}
.ws33{word-spacing:-0.540000px;}
.wsa7{word-spacing:-0.510000px;}
.ws8e{word-spacing:-0.480000px;}
.wsb0{word-spacing:-0.459000px;}
.wsb6{word-spacing:-0.408000px;}
.ws27{word-spacing:-0.360000px;}
.wsb2{word-spacing:-0.306000px;}
.ws5{word-spacing:-0.300000px;}
.wsa6{word-spacing:-0.264000px;}
.wsa5{word-spacing:-0.255000px;}
.ws14{word-spacing:-0.240000px;}
.wsa2{word-spacing:-0.204000px;}
.ws13{word-spacing:-0.180000px;}
.wsb4{word-spacing:-0.153000px;}
.wse{word-spacing:-0.120000px;}
.ws9{word-spacing:-0.072000px;}
.ws28{word-spacing:-0.060000px;}
.wsc3{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.wsb{word-spacing:0.000000px;}
.wsa3{word-spacing:0.051000px;}
.ws4d{word-spacing:0.120000px;}
.ws1b{word-spacing:0.180000px;}
.wsac{word-spacing:0.204000px;}
.ws50{word-spacing:0.240000px;}
.ws98{word-spacing:0.255000px;}
.ws41{word-spacing:0.300000px;}
.ws99{word-spacing:0.357000px;}
.ws11{word-spacing:0.360000px;}
.wsbc{word-spacing:0.408000px;}
.ws90{word-spacing:0.420000px;}
.ws2a{word-spacing:0.480000px;}
.wsa1{word-spacing:0.561000px;}
.ws93{word-spacing:0.600000px;}
.ws3d{word-spacing:0.660000px;}
.ws64{word-spacing:0.663000px;}
.ws47{word-spacing:0.720000px;}
.wsbb{word-spacing:0.765000px;}
.ws40{word-spacing:0.780000px;}
.ws6b{word-spacing:0.840000px;}
.ws17{word-spacing:0.900000px;}
.wsb1{word-spacing:0.918000px;}
.ws66{word-spacing:0.960000px;}
.ws71{word-spacing:1.020000px;}
.ws25{word-spacing:1.080000px;}
.ws30{word-spacing:1.140000px;}
.wsa8{word-spacing:1.173000px;}
.ws1a{word-spacing:1.200000px;}
.wsa0{word-spacing:1.275000px;}
.ws16{word-spacing:1.320000px;}
.wsc8{word-spacing:1.326000px;}
.wsc7{word-spacing:1.377000px;}
.ws8c{word-spacing:1.380000px;}
.wsbe{word-spacing:1.428000px;}
.wsad{word-spacing:1.479000px;}
.ws10{word-spacing:1.500000px;}
.wsba{word-spacing:1.530000px;}
.ws31{word-spacing:1.560000px;}
.ws2e{word-spacing:1.620000px;}
.ws3b{word-spacing:1.680000px;}
.ws3c{word-spacing:1.740000px;}
.wsb3{word-spacing:1.785000px;}
.ws6e{word-spacing:1.800000px;}
.wsae{word-spacing:1.836000px;}
.ws1f{word-spacing:1.860000px;}
.wsb5{word-spacing:1.887000px;}
.ws37{word-spacing:1.920000px;}
.ws70{word-spacing:1.980000px;}
.wsa4{word-spacing:1.989000px;}
.ws46{word-spacing:2.040000px;}
.ws38{word-spacing:2.100000px;}
.ws1e{word-spacing:2.220000px;}
.ws19{word-spacing:2.280000px;}
.wsc6{word-spacing:2.295000px;}
.ws20{word-spacing:2.340000px;}
.wsbf{word-spacing:2.346000px;}
.ws29{word-spacing:2.400000px;}
.wscc{word-spacing:2.448000px;}
.ws69{word-spacing:2.460000px;}
.ws91{word-spacing:2.520000px;}
.ws4e{word-spacing:2.580000px;}
.wsbd{word-spacing:2.601000px;}
.ws42{word-spacing:2.640000px;}
.ws4f{word-spacing:2.700000px;}
.wsaf{word-spacing:2.754000px;}
.ws2f{word-spacing:2.760000px;}
.wsb7{word-spacing:2.805000px;}
.ws6f{word-spacing:2.820000px;}
.wsca{word-spacing:2.856000px;}
.ws97{word-spacing:2.880000px;}
.ws8f{word-spacing:2.940000px;}
.ws62{word-spacing:3.000000px;}
.ws36{word-spacing:3.060000px;}
.ws94{word-spacing:3.180000px;}
.ws63{word-spacing:3.213000px;}
.ws3a{word-spacing:3.240000px;}
.wsc2{word-spacing:3.264000px;}
.ws73{word-spacing:3.300000px;}
.wsc0{word-spacing:3.315000px;}
.ws2b{word-spacing:3.420000px;}
.ws48{word-spacing:3.540000px;}
.ws44{word-spacing:3.600000px;}
.ws53{word-spacing:3.660000px;}
.ws1d{word-spacing:3.720000px;}
.ws43{word-spacing:3.780000px;}
.wsc5{word-spacing:3.876000px;}
.ws92{word-spacing:3.960000px;}
.ws34{word-spacing:4.080000px;}
.ws4c{word-spacing:4.140000px;}
.ws1c{word-spacing:4.200000px;}
.ws96{word-spacing:4.260000px;}
.ws4b{word-spacing:4.440000px;}
.ws32{word-spacing:4.560000px;}
.ws8b{word-spacing:4.620000px;}
.ws67{word-spacing:4.800000px;}
.ws72{word-spacing:4.980000px;}
.ws68{word-spacing:5.040000px;}
.wscb{word-spacing:5.049000px;}
.wsc1{word-spacing:5.304000px;}
.ws65{word-spacing:5.400000px;}
.wsb9{word-spacing:5.508000px;}
.ws8a{word-spacing:5.580000px;}
.ws39{word-spacing:6.000000px;}
.wsb8{word-spacing:6.528000px;}
.ws3f{word-spacing:6.600000px;}
.ws6c{word-spacing:7.320000px;}
.ws6d{word-spacing:7.395000px;}
.wscd{word-spacing:13.515000px;}
.wsce{word-spacing:17.595000px;}
.ws85{word-spacing:46.562990px;}
.ws7c{word-spacing:64.362000px;}
.ws7a{word-spacing:64.413000px;}
.ws81{word-spacing:66.554994px;}
.ws7b{word-spacing:69.921000px;}
.ws88{word-spacing:70.533000px;}
.ws87{word-spacing:72.062990px;}
.ws22{word-spacing:72.267000px;}
.ws54{word-spacing:73.797000px;}
.ws57{word-spacing:75.734995px;}
.ws79{word-spacing:94.248000px;}
.ws7f{word-spacing:95.727000px;}
.ws7e{word-spacing:97.562990px;}
.ws58{word-spacing:101.234995px;}
.ws83{word-spacing:108.884994px;}
.ws59{word-spacing:126.734995px;}
.ws7d{word-spacing:156.518994px;}
.ws76{word-spacing:165.035994px;}
.ws5a{word-spacing:215.271000px;}
.ws5c{word-spacing:340.578000px;}
.ws78{word-spacing:342.720000px;}
.ws5e{word-spacing:538.253976px;}
.ws5d{word-spacing:542.537976px;}
.ws5f{word-spacing:585.785976px;}
.ws56{word-spacing:673.250976px;}
.ws82{word-spacing:744.039000px;}
.ws80{word-spacing:748.323000px;}
.ws75{word-spacing:879.036000px;}
.ws77{word-spacing:886.227000px;}
.ws86{word-spacing:1230.528000px;}
._e{margin-left:-2778.428956px;}
._61{margin-left:-17.799000px;}
._a{margin-left:-16.575000px;}
._5b{margin-left:-14.484000px;}
._5d{margin-left:-13.260000px;}
._60{margin-left:-12.036000px;}
._14{margin-left:-11.016000px;}
._7{margin-left:-9.350327px;}
._13{margin-left:-8.239345px;}
._6{margin-left:-6.830459px;}
._5{margin-left:-5.740795px;}
._16{margin-left:-4.240655px;}
._3{margin-left:-3.127214px;}
._0{margin-left:-1.632000px;}
._1{width:1.224000px;}
._2{width:2.486400px;}
._10{width:4.319989px;}
._8{width:5.646000px;}
._2d{width:6.836458px;}
._57{width:7.956000px;}
._15{width:10.181991px;}
._66{width:11.460017px;}
._9{width:12.540000px;}
._55{width:14.484000px;}
._4{width:15.720000px;}
._b{width:18.360000px;}
._5f{width:20.782500px;}
._5c{width:22.440000px;}
._5e{width:23.562000px;}
._59{width:24.732542px;}
._58{width:26.775000px;}
._5a{width:28.017009px;}
._56{width:30.651000px;}
._4b{width:39.780000px;}
._12{width:41.310000px;}
._53{width:49.061994px;}
._c{width:54.621000px;}
._4e{width:64.362000px;}
._4c{width:65.535000px;}
._1d{width:75.581976px;}
._4d{width:82.926000px;}
._f{width:83.997000px;}
._23{width:88.484995px;}
._4f{width:102.561000px;}
._45{width:109.191000px;}
._63{width:111.744000px;}
._21{width:113.984995px;}
._47{width:121.584000px;}
._48{width:123.062994px;}
._46{width:124.899000px;}
._64{width:128.136000px;}
._4a{width:132.446994px;}
._50{width:134.078994px;}
._1e{width:136.118976px;}
._68{width:140.367120px;}
._2e{width:162.026976px;}
._67{width:164.312160px;}
._2c{width:175.949976px;}
._44{width:177.072000px;}
._51{width:178.143000px;}
._1c{width:185.843976px;}
._65{width:202.529280px;}
._17{width:216.699000px;}
._2a{width:229.449000px;}
._3b{width:234.753000px;}
._3c{width:250.869000px;}
._1a{width:266.627976px;}
._28{width:290.903991px;}
._18{width:292.280991px;}
._32{width:306.568655px;}
._2f{width:309.825000px;}
._1f{width:321.554976px;}
._39{width:332.119655px;}
._27{width:334.254000px;}
._19{width:350.420976px;}
._1b{width:355.469976px;}
._29{width:361.131000px;}
._31{width:372.299980px;}
._3f{width:373.371000px;}
._30{width:385.559991px;}
._2b{width:386.631000px;}
._3d{width:391.986000px;}
._34{width:397.799980px;}
._69{width:409.249440px;}
._3e{width:414.375000px;}
._38{width:423.299980px;}
._37{width:436.559991px;}
._36{width:452.625000px;}
._35{width:461.652000px;}
._33{width:480.930000px;}
._43{width:491.634104px;}
._41{width:553.133921px;}
._3a{width:566.763000px;}
._42{width:580.875653px;}
._49{width:763.521000px;}
._62{width:847.596000px;}
._22{width:951.055621px;}
._20{width:973.742966px;}
._52{width:996.030000px;}
._24{width:1051.415966px;}
._26{width:1068.347966px;}
._25{width:1082.576966px;}
._40{width:1233.255025px;}
._54{width:1608.948068px;}
._11{width:1633.172372px;}
._d{width:1886.999956px;}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:5.760000px;}
.fs10{font-size:30.240000px;}
.fs7{font-size:35.699999px;}
.fsb{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fsc{font-size:59.760000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs9{font-size:66.240000px;}
.fsf{font-size:69.822393px;}
.fs6{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y411{bottom:8.460000px;}
.y416{bottom:10.800000px;}
.y414{bottom:10.980000px;}
.y478{bottom:11.700000px;}
.y481{bottom:11.730000px;}
.y471{bottom:11.880000px;}
.y474{bottom:13.140000px;}
.y48e{bottom:18.360000px;}
.y422{bottom:21.600000px;}
.y418{bottom:21.780000px;}
.y419{bottom:32.580000px;}
.y41f{bottom:32.610000px;}
.y41b{bottom:32.760000px;}
.y48d{bottom:35.640000px;}
.y487{bottom:37.620000px;}
.y480{bottom:37.650000px;}
.y47a{bottom:37.800000px;}
.y476{bottom:37.845000px;}
.y425{bottom:43.560000px;}
.y48c{bottom:52.740000px;}
.y427{bottom:54.360000px;}
.y41c{bottom:54.540000px;}
.y420{bottom:54.570000px;}
.y429{bottom:54.585000px;}
.y412{bottom:66.060000px;}
.y1{bottom:68.829002px;}
.y426{bottom:76.140000px;}
.y21d{bottom:112.932300px;}
.y3a{bottom:112.950300px;}
.y226{bottom:112.979909px;}
.y228{bottom:112.979916px;}
.y263{bottom:112.980367px;}
.y2be{bottom:112.993117px;}
.y22c{bottom:113.005414px;}
.y268{bottom:113.005886px;}
.y2c6{bottom:113.031327px;}
.y270{bottom:113.031392px;}
.y271{bottom:113.031399px;}
.y26d{bottom:113.031404px;}
.y231{bottom:113.043662px;}
.y276{bottom:113.044166px;}
.y236{bottom:113.081910px;}
.y2cb{bottom:113.082288px;}
.y27b{bottom:113.095204px;}
.y240{bottom:113.120147px;}
.y23d{bottom:113.120159px;}
.y243{bottom:113.132905px;}
.y2d1{bottom:113.133248px;}
.y280{bottom:113.133451px;}
.y248{bottom:113.145675px;}
.y24d{bottom:113.158444px;}
.y253{bottom:113.158450px;}
.y250{bottom:113.158462px;}
.y256{bottom:113.171208px;}
.y285{bottom:113.171699px;}
.y286{bottom:113.171706px;}
.y289{bottom:113.184473px;}
.y28c{bottom:113.197240px;}
.y291{bottom:113.222759px;}
.y292{bottom:113.222765px;}
.y297{bottom:113.248284px;}
.y1e3{bottom:113.301315px;}
.y6c{bottom:113.415298px;}
.y86{bottom:113.415344px;}
.y300{bottom:114.160794px;}
.y2c{bottom:114.211349px;}
.y337{bottom:114.240294px;}
.y1cc{bottom:114.492302px;}
.y15f{bottom:114.564297px;}
.y2ba{bottom:114.735260px;}
.yb7{bottom:114.735294px;}
.ycf{bottom:114.735306px;}
.y202{bottom:114.874947px;}
.y227{bottom:121.981409px;}
.y264{bottom:121.981867px;}
.y2bf{bottom:121.994617px;}
.y22d{bottom:122.006914px;}
.y269{bottom:122.007386px;}
.y2c7{bottom:122.032827px;}
.y26e{bottom:122.032904px;}
.y232{bottom:122.045162px;}
.y277{bottom:122.045666px;}
.y237{bottom:122.083410px;}
.y2cc{bottom:122.083788px;}
.y27c{bottom:122.096704px;}
.y241{bottom:122.121647px;}
.y23e{bottom:122.121659px;}
.y244{bottom:122.134405px;}
.y281{bottom:122.134951px;}
.y249{bottom:122.147175px;}
.y254{bottom:122.159950px;}
.y251{bottom:122.159962px;}
.y257{bottom:122.172708px;}
.y28d{bottom:122.198740px;}
.y293{bottom:122.224265px;}
.y298{bottom:122.249784px;}
.y3e8{bottom:122.760000px;}
.y40f{bottom:126.000000px;}
.y39{bottom:127.944300px;}
.y2ff{bottom:129.154794px;}
.y336{bottom:129.234294px;}
.y40a{bottom:130.140000px;}
.y378{bottom:131.720571px;}
.y1e2{bottom:132.051315px;}
.y6b{bottom:132.165298px;}
.y85{bottom:132.165344px;}
.y2b{bottom:132.961349px;}
.y1cb{bottom:133.242302px;}
.y15e{bottom:133.314297px;}
.y2b9{bottom:133.485260px;}
.yb6{bottom:133.485294px;}
.yce{bottom:133.485306px;}
.y201{bottom:133.624947px;}
.y44c{bottom:134.100000px;}
.y38{bottom:142.938300px;}
.y335{bottom:144.228294px;}
.y377{bottom:146.714571px;}
.y46c{bottom:147.600000px;}
.y1e1{bottom:150.801315px;}
.y6a{bottom:150.915298px;}
.y84{bottom:150.915344px;}
.y2a{bottom:151.711349px;}
.y1ca{bottom:151.992302px;}
.y15d{bottom:152.064297px;}
.y2b8{bottom:152.235260px;}
.yb5{bottom:152.235306px;}
.y200{bottom:152.374947px;}
.y3e7{bottom:153.720000px;}
.y2fe{bottom:159.155544px;}
.y334{bottom:159.222294px;}
.y40e{bottom:159.840000px;}
.y376{bottom:161.708571px;}
.y37{bottom:163.032303px;}
.y409{bottom:167.040000px;}
.y1e0{bottom:169.551315px;}
.y69{bottom:169.665298px;}
.y29{bottom:170.461349px;}
.y1c9{bottom:170.742302px;}
.y15c{bottom:170.814297px;}
.y2b7{bottom:170.985260px;}
.yb4{bottom:170.985306px;}
.y1ff{bottom:171.124947px;}
.y44b{bottom:171.210000px;}
.y46b{bottom:172.650000px;}
.y2fd{bottom:174.149544px;}
.y333{bottom:174.216294px;}
.y375{bottom:176.702571px;}
.y36{bottom:180.491553px;}
.y21e{bottom:183.584702px;}
.y25b{bottom:183.584999px;}
.y2bb{bottom:183.585148px;}
.y21f{bottom:183.589371px;}
.y25c{bottom:183.589829px;}
.y265{bottom:183.640867px;}
.y2c0{bottom:183.653617px;}
.y22e{bottom:183.665914px;}
.y26a{bottom:183.666386px;}
.y2c8{bottom:183.691827px;}
.y233{bottom:183.704162px;}
.y278{bottom:183.704666px;}
.y238{bottom:183.742410px;}
.y2cd{bottom:183.742788px;}
.y27d{bottom:183.755704px;}
.y242{bottom:183.780647px;}
.y245{bottom:183.793405px;}
.y282{bottom:183.793951px;}
.y24a{bottom:183.806175px;}
.y255{bottom:183.818950px;}
.y258{bottom:183.831708px;}
.y28e{bottom:183.857740px;}
.y294{bottom:183.883265px;}
.y299{bottom:183.908784px;}
.y3e6{bottom:184.710000px;}
.y1df{bottom:188.301315px;}
.y68{bottom:188.415298px;}
.y83{bottom:188.415344px;}
.y2fc{bottom:189.143544px;}
.y332{bottom:189.210294px;}
.y28{bottom:189.211349px;}
.y1c8{bottom:189.492302px;}
.y2b6{bottom:189.735260px;}
.yb3{bottom:189.735306px;}
.y1fe{bottom:189.874947px;}
.y374{bottom:191.696571px;}
.y40d{bottom:193.530000px;}
.y35{bottom:195.485553px;}
.y46a{bottom:197.670000px;}
.y44a{bottom:202.170000px;}
.y408{bottom:203.970000px;}
.y2fb{bottom:204.137544px;}
.y331{bottom:204.204294px;}
.y15b{bottom:206.146769px;}
.y373{bottom:206.690571px;}
.y1de{bottom:207.051315px;}
.y67{bottom:207.165298px;}
.y27{bottom:207.961349px;}
.y1c7{bottom:208.242302px;}
.y2b5{bottom:208.485260px;}
.yb2{bottom:208.485306px;}
.y1fd{bottom:208.624947px;}
.y34{bottom:215.579544px;}
.y3e5{bottom:215.670000px;}
.y330{bottom:219.198294px;}
.y15a{bottom:221.140769px;}
.y372{bottom:221.684571px;}
.y469{bottom:222.690000px;}
.y66{bottom:225.915298px;}
.y82{bottom:225.915344px;}
.y26{bottom:226.711349px;}
.y1c6{bottom:226.992302px;}
.y19b{bottom:227.082442px;}
.y2b4{bottom:227.235260px;}
.yb1{bottom:227.235306px;}
.y40c{bottom:227.370000px;}
.y21b{bottom:227.374947px;}
.y2c1{bottom:231.287617px;}
.y272{bottom:231.313148px;}
.y33{bottom:233.032794px;}
.y449{bottom:233.130000px;}
.y2fa{bottom:234.138294px;}
.y32f{bottom:234.192294px;}
.y3c5{bottom:236.190000px;}
.y371{bottom:236.678571px;}
.y159{bottom:239.857769px;}
.y407{bottom:241.050000px;}
.y42c{bottom:242.850000px;}
.y1dd{bottom:244.551315px;}
.y65{bottom:244.665298px;}
.y81{bottom:244.665344px;}
.y25{bottom:245.461349px;}
.y1c5{bottom:245.742302px;}
.y2b3{bottom:245.985260px;}
.yb0{bottom:245.985306px;}
.y1fc{bottom:246.124947px;}
.y19a{bottom:246.334942px;}
.y3e4{bottom:246.630000px;}
.y2f9{bottom:249.132294px;}
.y32e{bottom:249.186294px;}
.y370{bottom:251.672571px;}
.y32{bottom:253.126808px;}
.y468{bottom:253.470000px;}
.y158{bottom:258.574769px;}
.y64{bottom:263.415298px;}
.y80{bottom:263.415344px;}
.y448{bottom:264.090000px;}
.y32d{bottom:264.180294px;}
.y24{bottom:264.211349px;}
.y1c4{bottom:264.492302px;}
.y2b2{bottom:264.735260px;}
.yaf{bottom:264.735306px;}
.y21a{bottom:264.874947px;}
.y36f{bottom:266.666571px;}
.y3c4{bottom:268.590000px;}
.y31{bottom:270.580059px;}
.y42b{bottom:273.630000px;}
.y1b4{bottom:275.164209px;}
.y3e3{bottom:275.790000px;}
.y157{bottom:277.291769px;}
.y406{bottom:277.950000px;}
.y2f8{bottom:279.132294px;}
.y32c{bottom:279.174294px;}
.y36e{bottom:281.660571px;}
.y1dc{bottom:282.051315px;}
.y63{bottom:282.165298px;}
.y7f{bottom:282.165344px;}
.y23{bottom:282.961349px;}
.y1c3{bottom:283.242302px;}
.y2b1{bottom:283.485260px;}
.yae{bottom:283.485306px;}
.y219{bottom:283.624947px;}
.y48f{bottom:288.570000px;}
.y3c3{bottom:289.110000px;}
.y30{bottom:290.674049px;}
.y3e2{bottom:292.170000px;}
.y467{bottom:293.250000px;}
.y1b3{bottom:293.957709px;}
.y32b{bottom:294.168294px;}
.y447{bottom:295.050000px;}
.y156{bottom:296.008769px;}
.y36d{bottom:296.654571px;}
.y2f7{bottom:297.882294px;}
.y1db{bottom:300.801315px;}
.y62{bottom:300.915298px;}
.y7e{bottom:300.915344px;}
.y22{bottom:301.711349px;}
.y1c2{bottom:301.992302px;}
.y2b0{bottom:302.235260px;}
.yad{bottom:302.235306px;}
.y1fb{bottom:302.374786px;}
.y218{bottom:302.374947px;}
.y48b{bottom:304.050000px;}
.y2c2{bottom:304.918867px;}
.y273{bottom:304.944398px;}
.y32a{bottom:309.162294px;}
.y36c{bottom:311.648571px;}
.y1b2{bottom:312.674709px;}
.y155{bottom:314.725769px;}
.y405{bottom:315.030000px;}
.y2f{bottom:315.675150px;}
.y2f6{bottom:316.632294px;}
.y3e1{bottom:317.190000px;}
.y1da{bottom:319.551315px;}
.y61{bottom:319.665298px;}
.y7d{bottom:319.665344px;}
.y21{bottom:320.461349px;}
.y1c1{bottom:320.742302px;}
.y2af{bottom:320.985260px;}
.yac{bottom:320.985306px;}
.y1fa{bottom:321.124786px;}
.y217{bottom:321.124947px;}
.y3c2{bottom:321.510000px;}
.y329{bottom:324.156294px;}
.y446{bottom:326.010000px;}
.y42a{bottom:326.190000px;}
.y36b{bottom:326.642571px;}
.y2e{bottom:330.669150px;}
.y1b1{bottom:331.391709px;}
.y154{bottom:333.442769px;}
.y2f5{bottom:335.382294px;}
.y1d9{bottom:338.301315px;}
.y60{bottom:338.415298px;}
.y7c{bottom:338.415344px;}
.y328{bottom:339.150294px;}
.y20{bottom:339.211349px;}
.y1c0{bottom:339.492302px;}
.y2ae{bottom:339.735260px;}
.yab{bottom:339.735306px;}
.y1f9{bottom:339.874786px;}
.y216{bottom:339.874947px;}
.y36a{bottom:341.636571px;}
.y3e0{bottom:342.210000px;}
.y445{bottom:345.270000px;}
.y1b0{bottom:350.108709px;}
.y404{bottom:351.930000px;}
.y153{bottom:352.159769px;}
.y220{bottom:352.756371px;}
.y25d{bottom:352.756829px;}
.y3c1{bottom:354.090000px;}
.y2f4{bottom:354.132294px;}
.y327{bottom:354.144294px;}
.y26f{bottom:354.299642px;}
.y23f{bottom:354.388397px;}
.y252{bottom:354.426700px;}
.y369{bottom:356.630571px;}
.y1d8{bottom:357.051315px;}
.y7b{bottom:357.165344px;}
.y1bf{bottom:358.242302px;}
.y2ad{bottom:358.485260px;}
.yaa{bottom:358.485306px;}
.y1f8{bottom:358.624786px;}
.y215{bottom:358.624947px;}
.y466{bottom:361.110000px;}
.y2d{bottom:361.485900px;}
.y1af{bottom:365.102709px;}
.y3df{bottom:367.230000px;}
.y326{bottom:369.138294px;}
.y152{bottom:370.876769px;}
.y48a{bottom:371.550000px;}
.y368{bottom:371.624571px;}
.y2f3{bottom:372.882294px;}
.y1d7{bottom:375.801315px;}
.y5f{bottom:375.915298px;}
.y7a{bottom:375.915344px;}
.y1f{bottom:376.711349px;}
.y1be{bottom:376.992302px;}
.y2ac{bottom:377.235260px;}
.ya9{bottom:377.235306px;}
.y1f7{bottom:377.374786px;}
.y214{bottom:377.374947px;}
.y428{bottom:378.930000px;}
.y444{bottom:381.990000px;}
.y1ae{bottom:383.819709px;}
.y325{bottom:384.132294px;}
.y3c0{bottom:386.490000px;}
.y367{bottom:386.618571px;}
.y403{bottom:388.830000px;}
.y151{bottom:389.593769px;}
.y2f2{bottom:391.632294px;}
.y3de{bottom:392.070000px;}
.y1d6{bottom:394.551315px;}
.y2ab{bottom:395.985260px;}
.ya8{bottom:395.985306px;}
.y1f6{bottom:396.124786px;}
.y213{bottom:396.124947px;}
.y489{bottom:397.470000px;}
.y366{bottom:401.612571px;}
.y1ad{bottom:402.536709px;}
.y443{bottom:405.390000px;}
.y465{bottom:407.190000px;}
.y150{bottom:408.310769px;}
.y2f1{bottom:410.382294px;}
.y1d5{bottom:413.301315px;}
.y5e{bottom:413.415298px;}
.y79{bottom:413.415344px;}
.y1bd{bottom:414.492279px;}
.y2aa{bottom:414.735260px;}
.ya7{bottom:414.735306px;}
.y1f5{bottom:414.874786px;}
.y212{bottom:414.874947px;}
.y365{bottom:416.606571px;}
.y3dd{bottom:417.135000px;}
.y324{bottom:417.882294px;}
.y3bf{bottom:420.375000px;}
.y1ac{bottom:421.253709px;}
.y221{bottom:422.422371px;}
.y25e{bottom:422.422829px;}
.y488{bottom:423.435000px;}
.y402{bottom:425.955000px;}
.y464{bottom:426.315000px;}
.y143{bottom:426.976769px;}
.y149{bottom:427.002269px;}
.y14f{bottom:427.027769px;}
.y2f0{bottom:429.132294px;}
.y364{bottom:431.600571px;}
.y1d4{bottom:432.051315px;}
.y1e{bottom:432.961395px;}
.y2a9{bottom:433.485260px;}
.ya6{bottom:433.485306px;}
.y1f4{bottom:433.624786px;}
.y211{bottom:433.624947px;}
.y442{bottom:433.695000px;}
.y1ab{bottom:439.970709px;}
.y142{bottom:441.970769px;}
.y148{bottom:441.996269px;}
.y14e{bottom:442.021769px;}
.y3dc{bottom:445.395000px;}
.y463{bottom:446.115000px;}
.y363{bottom:446.594571px;}
.y2ef{bottom:447.882294px;}
.y486{bottom:449.355000px;}
.y1d3{bottom:450.801315px;}
.y78{bottom:450.915344px;}
.y2a8{bottom:452.235260px;}
.ya5{bottom:452.235306px;}
.y1f3{bottom:452.374786px;}
.y210{bottom:452.374947px;}
.y424{bottom:453.495000px;}
.y3be{bottom:454.035000px;}
.y401{bottom:456.915000px;}
.y141{bottom:456.964769px;}
.y147{bottom:456.990269px;}
.y14d{bottom:457.015769px;}
.y1aa{bottom:458.687709px;}
.y362{bottom:461.588571px;}
.y3db{bottom:464.295000px;}
.y1d2{bottom:469.551315px;}
.y5d{bottom:469.665344px;}
.y1d{bottom:470.461395px;}
.y1bc{bottom:470.742279px;}
.y2a7{bottom:470.985260px;}
.ya4{bottom:470.985306px;}
.y1f2{bottom:471.124786px;}
.y20f{bottom:471.124947px;}
.y140{bottom:471.958769px;}
.y146{bottom:471.984269px;}
.y14c{bottom:472.009769px;}
.y441{bottom:472.035000px;}
.y229{bottom:476.456915px;}
.y266{bottom:476.470117px;}
.y2c3{bottom:476.482867px;}
.y26b{bottom:476.495636px;}
.y22f{bottom:476.507914px;}
.y274{bottom:476.508398px;}
.y2c9{bottom:476.533827px;}
.y234{bottom:476.546162px;}
.y279{bottom:476.546666px;}
.y361{bottom:476.582571px;}
.y239{bottom:476.584410px;}
.y2ce{bottom:476.584788px;}
.y27e{bottom:476.597704px;}
.y246{bottom:476.622655px;}
.y24b{bottom:476.635425px;}
.y24e{bottom:476.635443px;}
.y283{bottom:476.635951px;}
.y287{bottom:476.648704px;}
.y259{bottom:476.660958px;}
.y28a{bottom:476.661471px;}
.y28f{bottom:476.686990px;}
.y295{bottom:476.712515px;}
.y29a{bottom:476.738034px;}
.y1a9{bottom:477.404709px;}
.y462{bottom:478.155000px;}
.y323{bottom:480.079073px;}
.y2ee{bottom:485.382294px;}
.y13f{bottom:486.952769px;}
.y145{bottom:486.978269px;}
.y14b{bottom:487.003769px;}
.y3bd{bottom:487.875000px;}
.y1d1{bottom:488.301315px;}
.y5c{bottom:488.415344px;}
.y1c{bottom:489.211395px;}
.y1bb{bottom:489.492279px;}
.y2a6{bottom:489.735260px;}
.ya3{bottom:489.735306px;}
.y1f1{bottom:489.874786px;}
.y20e{bottom:489.874947px;}
.y360{bottom:491.576571px;}
.y322{bottom:495.073073px;}
.y1a8{bottom:496.121709px;}
.y440{bottom:496.875000px;}
.y3da{bottom:501.015000px;}
.y13e{bottom:501.946769px;}
.y144{bottom:501.972269px;}
.y14a{bottom:501.997769px;}
.y35f{bottom:506.570571px;}
.y1d0{bottom:507.051315px;}
.y5b{bottom:507.165344px;}
.y1b{bottom:507.961395px;}
.y1ba{bottom:508.242279px;}
.y2a5{bottom:508.485260px;}
.ya2{bottom:508.485306px;}
.y1f0{bottom:508.624786px;}
.y20d{bottom:508.624947px;}
.y321{bottom:510.067073px;}
.y1a7{bottom:514.838709px;}
.y461{bottom:516.135000px;}
.y400{bottom:518.835000px;}
.y125{bottom:520.536269px;}
.y131{bottom:520.600019px;}
.y13d{bottom:520.663769px;}
.y35e{bottom:521.564571px;}
.y43f{bottom:521.895000px;}
.y320{bottom:525.061073px;}
.y1cf{bottom:525.801315px;}
.y5a{bottom:525.915344px;}
.y1a{bottom:526.711395px;}
.y485{bottom:526.935000px;}
.y1b9{bottom:526.992279px;}
.y2a4{bottom:527.235260px;}
.ya1{bottom:527.235306px;}
.y1ef{bottom:527.374786px;}
.y20c{bottom:527.374947px;}
.y3d9{bottom:531.975000px;}
.y1a6{bottom:533.555709px;}
.y124{bottom:535.530269px;}
.y130{bottom:535.594019px;}
.y13c{bottom:535.657769px;}
.y35d{bottom:536.558571px;}
.y22a{bottom:536.968412px;}
.y267{bottom:536.981615px;}
.y26c{bottom:537.007133px;}
.y230{bottom:537.019412px;}
.y275{bottom:537.019895px;}
.y235{bottom:537.057660px;}
.y23a{bottom:537.095907px;}
.y27f{bottom:537.109201px;}
.y247{bottom:537.121404px;}
.y24c{bottom:537.134173px;}
.y24f{bottom:537.134191px;}
.y284{bottom:537.147449px;}
.y25a{bottom:537.159707px;}
.y288{bottom:537.160202px;}
.y28b{bottom:537.172969px;}
.y290{bottom:537.198488px;}
.y296{bottom:537.224013px;}
.y29b{bottom:537.249532px;}
.y3bc{bottom:537.735000px;}
.y31f{bottom:540.055073px;}
.y2ed{bottom:543.808823px;}
.y59{bottom:544.665344px;}
.y19{bottom:545.461395px;}
.y1b8{bottom:545.742279px;}
.y2a3{bottom:545.985260px;}
.ya0{bottom:545.985306px;}
.y1ee{bottom:546.124786px;}
.y20b{bottom:546.124947px;}
.y43e{bottom:546.915000px;}
.y423{bottom:549.615000px;}
.y3ff{bottom:549.795000px;}
.y123{bottom:550.524269px;}
.y12f{bottom:550.588019px;}
.y13b{bottom:550.651769px;}
.y35c{bottom:551.552571px;}
.y1a5{bottom:552.272709px;}
.y484{bottom:552.855000px;}
.y31e{bottom:555.049073px;}
.y460{bottom:558.795000px;}
.y2ec{bottom:562.558823px;}
.y3d8{bottom:562.935000px;}
.y1ce{bottom:563.301315px;}
.y58{bottom:563.415344px;}
.y18{bottom:564.211395px;}
.y1b7{bottom:564.492279px;}
.y2a2{bottom:564.735260px;}
.y9f{bottom:564.735306px;}
.y1ed{bottom:564.874786px;}
.y20a{bottom:564.874947px;}
.y122{bottom:565.518269px;}
.y12e{bottom:565.582019px;}
.y13a{bottom:565.645769px;}
.y35b{bottom:566.546571px;}
.y31d{bottom:570.043073px;}
.y1a4{bottom:570.989709px;}
.y43d{bottom:574.995000px;}
.y3bb{bottom:575.715000px;}
.y483{bottom:578.595000px;}
.y121{bottom:580.512269px;}
.y421{bottom:580.575000px;}
.y12d{bottom:580.576019px;}
.y139{bottom:580.639769px;}
.y3fe{bottom:580.755000px;}
.y2eb{bottom:581.308823px;}
.y35a{bottom:581.540571px;}
.y57{bottom:582.165344px;}
.y17{bottom:582.961395px;}
.y1b6{bottom:583.242279px;}
.y2a1{bottom:583.485260px;}
.y9e{bottom:583.485306px;}
.y1ec{bottom:583.624786px;}
.y209{bottom:583.624947px;}
.y222{bottom:584.844621px;}
.y25f{bottom:584.845079px;}
.y31c{bottom:585.037073px;}
.y3d7{bottom:594.075000px;}
.y120{bottom:595.506269px;}
.y12c{bottom:595.570019px;}
.y138{bottom:595.633769px;}
.y359{bottom:596.534571px;}
.y45f{bottom:597.315000px;}
.y19f{bottom:598.312959px;}
.y1a2{bottom:598.325709px;}
.y199{bottom:598.566435px;}
.y3fd{bottom:600.015000px;}
.y31b{bottom:600.031073px;}
.y2ea{bottom:600.058823px;}
.y1cd{bottom:600.801315px;}
.y56{bottom:600.915344px;}
.y16{bottom:601.711395px;}
.y1b5{bottom:601.992279px;}
.y2a0{bottom:602.235260px;}
.ycd{bottom:602.235306px;}
.y1eb{bottom:602.374786px;}
.y208{bottom:602.374947px;}
.y11f{bottom:610.500269px;}
.y12b{bottom:610.564019px;}
.y137{bottom:610.627769px;}
.y358{bottom:611.528571px;}
.y19e{bottom:613.306959px;}
.y1a1{bottom:613.319709px;}
.y198{bottom:613.560435px;}
.y31a{bottom:615.025073px;}
.y2e9{bottom:618.808823px;}
.y3fc{bottom:618.915000px;}
.y55{bottom:619.665344px;}
.y15{bottom:620.461395px;}
.y29f{bottom:620.985260px;}
.y9d{bottom:620.985306px;}
.y1ea{bottom:621.124786px;}
.y207{bottom:621.124947px;}
.y45e{bottom:622.335000px;}
.y3d6{bottom:625.035000px;}
.y11e{bottom:625.494269px;}
.y12a{bottom:625.558019px;}
.y3ba{bottom:625.575000px;}
.y136{bottom:625.621769px;}
.y357{bottom:626.522571px;}
.y19d{bottom:628.300959px;}
.y1a0{bottom:628.313709px;}
.y1a3{bottom:628.326459px;}
.y197{bottom:628.554435px;}
.y319{bottom:630.019073px;}
.y482{bottom:630.435000px;}
.y43c{bottom:630.795000px;}
.y41e{bottom:633.135000px;}
.y2e8{bottom:637.558823px;}
.y54{bottom:638.415344px;}
.y14{bottom:639.211395px;}
.y29e{bottom:639.735260px;}
.ycc{bottom:639.735306px;}
.y1e9{bottom:639.874786px;}
.y206{bottom:639.874947px;}
.y11d{bottom:640.488269px;}
.y129{bottom:640.552019px;}
.y135{bottom:640.615769px;}
.y392{bottom:641.404823px;}
.y356{bottom:641.516571px;}
.y196{bottom:643.548435px;}
.y318{bottom:645.013073px;}
.y45d{bottom:647.175000px;}
.y19c{bottom:652.717209px;}
.y223{bottom:653.006121px;}
.y260{bottom:653.006579px;}
.y3d5{bottom:654.015000px;}
.y11c{bottom:655.482269px;}
.y128{bottom:655.546019px;}
.y134{bottom:655.609769px;}
.y3fb{bottom:655.635000px;}
.y2e7{bottom:656.308823px;}
.y47f{bottom:656.355000px;}
.y391{bottom:656.398823px;}
.y355{bottom:656.510571px;}
.y53{bottom:657.165344px;}
.y13{bottom:657.961395px;}
.y9c{bottom:658.485260px;}
.ycb{bottom:658.485306px;}
.y1e8{bottom:658.624786px;}
.y205{bottom:658.624947px;}
.y195{bottom:658.759027px;}
.y1e5{bottom:667.456928px;}
.y43b{bottom:669.345000px;}
.y11b{bottom:670.476269px;}
.y127{bottom:670.540019px;}
.y133{bottom:670.603769px;}
.y3d4{bottom:670.605000px;}
.y390{bottom:671.392823px;}
.y354{bottom:671.504571px;}
.y45c{bottom:672.225000px;}
.y2e6{bottom:675.058823px;}
.y52{bottom:675.915344px;}
.y12{bottom:676.711395px;}
.y9b{bottom:677.235260px;}
.yca{bottom:677.235306px;}
.y1e7{bottom:677.374786px;}
.y204{bottom:677.374947px;}
.y3b9{bottom:678.885000px;}
.y3fa{bottom:679.245000px;}
.y1e4{bottom:682.450928px;}
.y317{bottom:682.498073px;}
.y11a{bottom:685.470269px;}
.y126{bottom:685.534019px;}
.y132{bottom:685.597769px;}
.y38f{bottom:686.386823px;}
.y353{bottom:686.498571px;}
.y2e5{bottom:693.808823px;}
.y43a{bottom:694.365000px;}
.y51{bottom:694.665344px;}
.y11{bottom:695.461395px;}
.y9a{bottom:695.985260px;}
.yc9{bottom:695.985306px;}
.y1e6{bottom:696.124786px;}
.y203{bottom:696.124947px;}
.y3d3{bottom:696.885000px;}
.y45b{bottom:697.245000px;}
.y22b{bottom:700.665662px;}
.y23b{bottom:700.793157px;}
.y38e{bottom:701.380823px;}
.y352{bottom:701.492571px;}
.y111{bottom:704.161769px;}
.y115{bottom:704.174519px;}
.y119{bottom:704.187269px;}
.y3f9{bottom:707.325000px;}
.y41d{bottom:707.685000px;}
.y47e{bottom:708.045000px;}
.y316{bottom:712.498823px;}
.y2e4{bottom:712.558823px;}
.y50{bottom:713.415344px;}
.y162{bottom:713.618719px;}
.y10{bottom:714.211395px;}
.y99{bottom:714.735260px;}
.yc8{bottom:714.735306px;}
.y38d{bottom:716.374823px;}
.y351{bottom:716.486571px;}
.y110{bottom:719.155769px;}
.y114{bottom:719.168519px;}
.y118{bottom:719.181269px;}
.y439{bottom:719.205000px;}
.y3d2{bottom:721.905000px;}
.y3b8{bottom:722.085000px;}
.y45a{bottom:725.325000px;}
.y315{bottom:727.492823px;}
.y161{bottom:728.612719px;}
.y38c{bottom:731.368823px;}
.y3aa{bottom:731.445308px;}
.y350{bottom:731.480571px;}
.y4f{bottom:732.165344px;}
.yf{bottom:732.961395px;}
.y98{bottom:733.485260px;}
.yc7{bottom:733.485306px;}
.y10f{bottom:734.149769px;}
.y113{bottom:734.162519px;}
.y117{bottom:734.175269px;}
.y47d{bottom:734.685000px;}
.y314{bottom:742.486823px;}
.y3f8{bottom:744.225000px;}
.y38b{bottom:746.362823px;}
.y3a9{bottom:746.439308px;}
.y34f{bottom:746.474571px;}
.y160{bottom:747.865219px;}
.y3d1{bottom:748.185000px;}
.y10e{bottom:749.143769px;}
.y112{bottom:749.156519px;}
.y116{bottom:749.169269px;}
.y2e3{bottom:750.058823px;}
.y4e{bottom:750.915344px;}
.ye{bottom:751.711395px;}
.y97{bottom:752.235260px;}
.yc6{bottom:752.235306px;}
.y3b7{bottom:754.125000px;}
.y21c{bottom:754.630783px;}
.y313{bottom:757.480823px;}
.y41a{bottom:760.245000px;}
.y23c{bottom:760.475907px;}
.y47c{bottom:760.605000px;}
.y38a{bottom:761.356823px;}
.y34e{bottom:761.468571px;}
.y459{bottom:762.225000px;}
.y3f7{bottom:767.625000px;}
.y103{bottom:767.809773px;}
.y108{bottom:767.835271px;}
.y10d{bottom:767.860769px;}
.y438{bottom:769.245000px;}
.y4d{bottom:769.665344px;}
.yd{bottom:770.461395px;}
.y96{bottom:770.985260px;}
.y312{bottom:772.474823px;}
.y3d0{bottom:773.205000px;}
.y194{bottom:775.625527px;}
.y389{bottom:776.350823px;}
.y34d{bottom:776.462571px;}
.y3a8{bottom:776.529307px;}
.y3b6{bottom:778.065000px;}
.y102{bottom:782.803773px;}
.y107{bottom:782.829271px;}
.y10c{bottom:782.854769px;}
.y47b{bottom:786.345000px;}
.y4c{bottom:788.415344px;}
.yc{bottom:789.211395px;}
.y95{bottom:789.735260px;}
.y2e2{bottom:789.735306px;}
.y193{bottom:790.619527px;}
.y388{bottom:791.344823px;}
.y34c{bottom:791.456571px;}
.y3a7{bottom:791.523307px;}
.y458{bottom:793.185000px;}
.y437{bottom:794.265000px;}
.y3f6{bottom:795.705000px;}
.y101{bottom:797.797773px;}
.y106{bottom:797.823271px;}
.y10b{bottom:797.848769px;}
.y3cf{bottom:799.485000px;}
.y311{bottom:802.474823px;}
.y3b5{bottom:803.445000px;}
.y387{bottom:806.338823px;}
.y34b{bottom:806.450571px;}
.y3a6{bottom:806.517307px;}
.y4b{bottom:807.165344px;}
.yb{bottom:807.961395px;}
.y224{bottom:808.288371px;}
.y261{bottom:808.288829px;}
.y2bc{bottom:808.301579px;}
.y94{bottom:808.485260px;}
.y2e1{bottom:808.485306px;}
.y192{bottom:809.413027px;}
.y479{bottom:812.265000px;}
.y100{bottom:812.791773px;}
.y105{bottom:812.817271px;}
.y10a{bottom:812.842769px;}
.y386{bottom:821.332823px;}
.y34a{bottom:821.444571px;}
.y3a5{bottom:821.511307px;}
.y436{bottom:822.345000px;}
.y457{bottom:824.145000px;}
.y191{bottom:824.407027px;}
.y3ce{bottom:824.505000px;}
.y4a{bottom:825.915344px;}
.y3b4{bottom:827.205000px;}
.y29d{bottom:827.235260px;}
.y2e0{bottom:827.235306px;}
.yff{bottom:827.785773px;}
.y104{bottom:827.811271px;}
.y109{bottom:827.836769px;}
.y3f5{bottom:834.045000px;}
.y417{bottom:834.765000px;}
.y310{bottom:836.301323px;}
.y385{bottom:836.326823px;}
.y349{bottom:836.438571px;}
.y3a4{bottom:836.505307px;}
.y435{bottom:841.245000px;}
.y188{bottom:843.098527px;}
.y18c{bottom:843.111277px;}
.y190{bottom:843.124027px;}
.y49{bottom:844.665344px;}
.y93{bottom:845.985260px;}
.yc5{bottom:845.985294px;}
.y2df{bottom:845.985306px;}
.yf4{bottom:846.451777px;}
.yf9{bottom:846.477275px;}
.yfe{bottom:846.502773px;}
.y30f{bottom:851.295323px;}
.y384{bottom:851.320823px;}
.y348{bottom:851.432571px;}
.y3a3{bottom:851.499307px;}
.ya{bottom:852.144153px;}
.y3cd{bottom:852.585000px;}
.y456{bottom:855.105000px;}
.y3b3{bottom:857.805000px;}
.y187{bottom:858.092527px;}
.y18b{bottom:858.105277px;}
.y18f{bottom:858.118027px;}
.y3f4{bottom:860.325000px;}
.yf3{bottom:861.445777px;}
.yf8{bottom:861.471275px;}
.yfd{bottom:861.496773px;}
.y48{bottom:863.415344px;}
.y477{bottom:864.105000px;}
.y29c{bottom:864.735260px;}
.yc4{bottom:864.735294px;}
.y2de{bottom:864.735306px;}
.y30e{bottom:866.289323px;}
.y383{bottom:866.314823px;}
.y347{bottom:866.426571px;}
.y3a2{bottom:866.493307px;}
.y9{bottom:867.138153px;}
.y186{bottom:873.086527px;}
.y18a{bottom:873.099277px;}
.y18e{bottom:873.112027px;}
.yf2{bottom:876.439777px;}
.y225{bottom:876.449871px;}
.y262{bottom:876.450329px;}
.y2bd{bottom:876.463079px;}
.yf7{bottom:876.465275px;}
.yfc{bottom:876.490773px;}
.y434{bottom:879.225000px;}
.y30d{bottom:881.283323px;}
.y382{bottom:881.308823px;}
.y346{bottom:881.420571px;}
.y3a1{bottom:881.487307px;}
.y47{bottom:882.165344px;}
.y92{bottom:883.485260px;}
.yc3{bottom:883.485294px;}
.y2dd{bottom:883.485306px;}
.y3f3{bottom:885.345000px;}
.y455{bottom:886.065000px;}
.y415{bottom:887.325000px;}
.y185{bottom:888.080527px;}
.y189{bottom:888.093277px;}
.y18d{bottom:888.106027px;}
.y3b2{bottom:888.405000px;}
.y3cc{bottom:889.485000px;}
.y475{bottom:889.845000px;}
.yf1{bottom:891.433777px;}
.yf6{bottom:891.459275px;}
.yfb{bottom:891.484773px;}
.y30c{bottom:896.277323px;}
.y381{bottom:896.302823px;}
.y345{bottom:896.414571px;}
.y3a0{bottom:896.481307px;}
.y77{bottom:900.915298px;}
.y46{bottom:900.915344px;}
.y91{bottom:902.235260px;}
.yc2{bottom:902.235294px;}
.y2dc{bottom:902.235306px;}
.yf0{bottom:906.427777px;}
.yf5{bottom:906.453275px;}
.yfa{bottom:906.478773px;}
.y16e{bottom:906.670027px;}
.y179{bottom:906.733777px;}
.y184{bottom:906.797527px;}
.y8{bottom:909.738190px;}
.y30b{bottom:911.271323px;}
.y380{bottom:911.296823px;}
.y344{bottom:911.408571px;}
.y39f{bottom:911.475307px;}
.y3f2{bottom:911.670000px;}
.y3cb{bottom:912.930000px;}
.y3b1{bottom:914.370000px;}
.y454{bottom:917.070000px;}
.y433{bottom:917.610000px;}
.y413{bottom:918.150000px;}
.y76{bottom:919.665298px;}
.y45{bottom:919.665344px;}
.y90{bottom:920.985260px;}
.yc1{bottom:920.985294px;}
.y2db{bottom:920.985306px;}
.y16d{bottom:921.664027px;}
.y178{bottom:921.727777px;}
.y183{bottom:921.791527px;}
.y2c4{bottom:924.135365px;}
.y2ca{bottom:924.186325px;}
.y27a{bottom:924.199164px;}
.y2cf{bottom:924.237285px;}
.yef{bottom:925.144777px;}
.y30a{bottom:926.265323px;}
.y37f{bottom:926.290823px;}
.y343{bottom:926.402571px;}
.y39e{bottom:926.469307px;}
.y453{bottom:936.150000px;}
.y16c{bottom:936.658027px;}
.y3f1{bottom:936.690000px;}
.y177{bottom:936.721777px;}
.y182{bottom:936.785527px;}
.y75{bottom:938.415298px;}
.y44{bottom:938.415344px;}
.y8f{bottom:939.735260px;}
.yc0{bottom:939.735294px;}
.y2da{bottom:939.735306px;}
.yee{bottom:940.138777px;}
.y3ca{bottom:941.190000px;}
.y37e{bottom:941.284823px;}
.y342{bottom:941.396571px;}
.y39d{bottom:941.463307px;}
.y473{bottom:941.730000px;}
.y432{bottom:942.630000px;}
.y3b0{bottom:946.770000px;}
.y410{bottom:949.110000px;}
.y16b{bottom:951.652027px;}
.y176{bottom:951.715777px;}
.y181{bottom:951.779527px;}
.y7{bottom:954.424622px;}
.y309{bottom:956.266073px;}
.y37d{bottom:956.278823px;}
.y341{bottom:956.390571px;}
.y39c{bottom:956.457307px;}
.y74{bottom:957.165298px;}
.y43{bottom:957.165344px;}
.y8e{bottom:958.485260px;}
.ybf{bottom:958.485294px;}
.y2d9{bottom:958.485306px;}
.ye4{bottom:958.817527px;}
.ye7{bottom:958.830277px;}
.yea{bottom:958.843027px;}
.yed{bottom:958.855777px;}
.y3f0{bottom:962.970000px;}
.y3c9{bottom:965.670000px;}
.y16a{bottom:966.646027px;}
.y175{bottom:966.709777px;}
.y180{bottom:966.773527px;}
.y3af{bottom:967.290000px;}
.y431{bottom:967.470000px;}
.y472{bottom:969.630000px;}
.y308{bottom:971.260073px;}
.y37c{bottom:971.272823px;}
.y340{bottom:971.384571px;}
.y39b{bottom:971.451307px;}
.ye3{bottom:973.811527px;}
.ye6{bottom:973.824277px;}
.ye9{bottom:973.837027px;}
.yec{bottom:973.849777px;}
.y452{bottom:974.490000px;}
.y73{bottom:975.915298px;}
.y42{bottom:975.915344px;}
.y8d{bottom:977.235260px;}
.ybe{bottom:977.235294px;}
.y2d8{bottom:977.235306px;}
.y6{bottom:981.424622px;}
.y169{bottom:981.640027px;}
.y174{bottom:981.703777px;}
.y17f{bottom:981.767527px;}
.y2c5{bottom:984.264365px;}
.y2d0{bottom:984.366285px;}
.y307{bottom:986.254073px;}
.y37b{bottom:986.266823px;}
.y33f{bottom:986.378571px;}
.y39a{bottom:986.445307px;}
.y3ef{bottom:987.990000px;}
.ye2{bottom:988.805527px;}
.ye5{bottom:988.818277px;}
.ye8{bottom:988.831027px;}
.yeb{bottom:988.843777px;}
.y3c8{bottom:989.610000px;}
.y430{bottom:992.490000px;}
.y72{bottom:994.665298px;}
.y41{bottom:994.665344px;}
.y8c{bottom:995.985260px;}
.ybd{bottom:995.985294px;}
.y2d7{bottom:995.985306px;}
.y470{bottom:996.270000px;}
.y168{bottom:996.634027px;}
.y173{bottom:996.697777px;}
.y17e{bottom:996.761527px;}
.y451{bottom:999.510000px;}
.y306{bottom:1001.248073px;}
.y37a{bottom:1001.260823px;}
.y33e{bottom:1001.372571px;}
.y399{bottom:1001.439307px;}
.yd8{bottom:1007.484277px;}
.ydb{bottom:1007.497027px;}
.yde{bottom:1007.509777px;}
.ye1{bottom:1007.522527px;}
.y5{bottom:1008.424622px;}
.y167{bottom:1011.628027px;}
.y172{bottom:1011.691777px;}
.y17d{bottom:1011.755527px;}
.y3ee{bottom:1013.010000px;}
.y71{bottom:1013.415298px;}
.y40{bottom:1013.415344px;}
.y8b{bottom:1014.735260px;}
.ybc{bottom:1014.735294px;}
.y2d6{bottom:1014.735306px;}
.y379{bottom:1016.254823px;}
.y33d{bottom:1016.366571px;}
.y398{bottom:1016.433307px;}
.y42f{bottom:1017.510000px;}
.yd7{bottom:1022.478277px;}
.yda{bottom:1022.491027px;}
.ydd{bottom:1022.503777px;}
.ye0{bottom:1022.516527px;}
.y3ae{bottom:1026.150000px;}
.y166{bottom:1026.622027px;}
.y171{bottom:1026.685777px;}
.y17c{bottom:1026.749527px;}
.y450{bottom:1027.590000px;}
.y305{bottom:1031.248823px;}
.y33c{bottom:1031.360571px;}
.y397{bottom:1031.427307px;}
.y3c7{bottom:1031.910000px;}
.y70{bottom:1032.165298px;}
.y3f{bottom:1032.165344px;}
.y8a{bottom:1033.485260px;}
.ybb{bottom:1033.485294px;}
.y2d5{bottom:1033.485306px;}
.yd6{bottom:1037.472277px;}
.yd9{bottom:1037.485027px;}
.ydc{bottom:1037.497777px;}
.ydf{bottom:1037.510527px;}
.y3ed{bottom:1038.030000px;}
.y165{bottom:1041.616027px;}
.y170{bottom:1041.679777px;}
.y17b{bottom:1041.743527px;}
.y42e{bottom:1042.530000px;}
.yd3{bottom:1045.120844px;}
.y304{bottom:1046.242823px;}
.y33b{bottom:1046.354571px;}
.y396{bottom:1046.421307px;}
.y6f{bottom:1050.915298px;}
.y3e{bottom:1050.915344px;}
.y89{bottom:1052.235260px;}
.yba{bottom:1052.235294px;}
.y2d4{bottom:1052.235306px;}
.y46f{bottom:1055.310000px;}
.yd5{bottom:1056.189277px;}
.y164{bottom:1056.610027px;}
.y16f{bottom:1056.673777px;}
.y17a{bottom:1056.737527px;}
.yd2{bottom:1060.114844px;}
.y303{bottom:1061.236823px;}
.y33a{bottom:1061.348571px;}
.y395{bottom:1061.415307px;}
.y3ec{bottom:1062.870000px;}
.y3ad{bottom:1064.130000px;}
.y44f{bottom:1064.490000px;}
.y42d{bottom:1067.370000px;}
.y6e{bottom:1069.665298px;}
.y3d{bottom:1069.665344px;}
.y88{bottom:1070.985260px;}
.yb9{bottom:1070.985294px;}
.y2d3{bottom:1070.985306px;}
.y3c6{bottom:1074.390000px;}
.yd1{bottom:1075.108844px;}
.y4{bottom:1076.132080px;}
.y302{bottom:1076.230823px;}
.y339{bottom:1076.342571px;}
.y394{bottom:1076.409307px;}
.yd4{bottom:1084.277527px;}
.y46e{bottom:1086.450000px;}
.y44e{bottom:1087.890000px;}
.y6d{bottom:1088.415298px;}
.y3c{bottom:1088.415344px;}
.y87{bottom:1089.735260px;}
.yb8{bottom:1089.735294px;}
.y2d2{bottom:1089.735306px;}
.yd0{bottom:1090.102844px;}
.y163{bottom:1090.113461px;}
.y301{bottom:1091.224823px;}
.y338{bottom:1091.336571px;}
.y393{bottom:1091.403307px;}
.y3eb{bottom:1092.390000px;}
.y40b{bottom:1101.570000px;}
.y3ac{bottom:1106.970000px;}
.y3{bottom:1109.586556px;}
.y44d{bottom:1111.470000px;}
.y46d{bottom:1118.850000px;}
.y3ea{bottom:1120.650000px;}
.y2{bottom:1126.582306px;}
.y3b{bottom:1127.482361px;}
.y3ab{bottom:1139.370000px;}
.y3e9{bottom:1139.550000px;}
.h1f{height:4.064063px;}
.h22{height:21.867891px;}
.he{height:25.204199px;}
.h33{height:25.740000px;}
.h2f{height:25.920000px;}
.h37{height:25.956000px;}
.h30{height:27.180000px;}
.h1c{height:28.115859px;}
.h2b{height:30.780000px;}
.h25{height:30.816000px;}
.h24{height:30.960000px;}
.h2{height:33.840000px;}
.hc{height:36.006000px;}
.hd{height:36.855469px;}
.h32{height:42.164648px;}
.h9{height:42.360000px;}
.h1d{height:43.215117px;}
.h7{height:43.260000px;}
.h2e{height:43.681992px;}
.h3{height:44.676000px;}
.h10{height:44.676732px;}
.h11{height:45.186000px;}
.h17{height:46.736719px;}
.h1b{height:47.901094px;}
.h2c{height:48.224531px;}
.h21{height:48.418594px;}
.h36{height:51.660000px;}
.h35{height:51.696000px;}
.h20{height:51.719028px;}
.h34{height:51.840000px;}
.h31{height:51.876000px;}
.hb{height:51.912000px;}
.h19{height:52.066406px;}
.h12{height:52.173000px;}
.h26{height:52.560000px;}
.h2a{height:52.740000px;}
.h8{height:53.160000px;}
.h13{height:53.805000px;}
.h1a{height:53.958516px;}
.h4{height:55.461000px;}
.h18{height:55.987031px;}
.hf{height:59.004000px;}
.h1e{height:59.436914px;}
.h2d{height:60.917695px;}
.ha{height:61.380000px;}
.h6{height:64.866000px;}
.h38{height:66.780000px;}
.h27{height:74.520000px;}
.h28{height:74.556000px;}
.h5{height:85.056000px;}
.h29{height:96.120000px;}
.h14{height:113.781000px;}
.h23{height:148.665000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.h15{height:1262.880000px;}
.h16{height:1263.000000px;}
.w4{width:49.680000px;}
.w5{width:69.120000px;}
.w9{width:74.340000px;}
.wb{width:84.960000px;}
.wc{width:95.796000px;}
.wa{width:117.036000px;}
.w7{width:255.270000px;}
.w8{width:372.135000px;}
.w6{width:558.285000px;}
.wd{width:627.405000px;}
.w0{width:892.914000px;}
.w3{width:892.979987px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x61{left:8.100000px;}
.x67{left:20.880000px;}
.x62{left:26.994000px;}
.x5d{left:32.934000px;}
.x68{left:42.114000px;}
.x69{left:43.194000px;}
.x5f{left:52.380000px;}
.x2{left:76.535402px;}
.x3{left:85.181849px;}
.x6{left:93.560421px;}
.x5{left:97.796100px;}
.x52{left:102.048152px;}
.x53{left:108.035987px;}
.x3b{left:110.485645px;}
.x13{left:111.588455px;}
.x54{left:112.715987px;}
.x56{left:126.755987px;}
.x3c{left:135.198154px;}
.x14{left:136.300953px;}
.x5b{left:140.075987px;}
.x59{left:142.055987px;}
.x3d{left:159.614404px;}
.x15{left:160.717203px;}
.x5c{left:165.809987px;}
.x3e{left:174.608404px;}
.x16{left:175.711203px;}
.x5a{left:187.229987px;}
.x5e{left:189.570000px;}
.x17{left:203.059953px;}
.x18{left:218.053953px;}
.x19{left:233.047953px;}
.x1a{left:251.764953px;}
.x60{left:258.690000px;}
.x55{left:261.569987px;}
.x3f{left:265.974904px;}
.x8{left:267.873894px;}
.x1b{left:270.481953px;}
.xf{left:276.875367px;}
.x40{left:284.691904px;}
.x1c{left:289.198953px;}
.x41{left:299.685904px;}
.x1d{left:304.192953px;}
.x58{left:310.034987px;}
.x42{left:318.402904px;}
.x1e{left:322.909953px;}
.x50{left:327.302256px;}
.x1f{left:337.903953px;}
.x51{left:346.554756px;}
.x20{left:352.897953px;}
.x63{left:363.315000px;}
.x21{left:371.614953px;}
.x22{left:386.608953px;}
.x57{left:394.814987px;}
.x23{left:401.602953px;}
.x24{left:420.319953px;}
.x25{left:435.313953px;}
.x64{left:437.655000px;}
.x26{left:450.307953px;}
.xa{left:457.695895px;}
.x4{left:459.212540px;}
.x27{left:465.301953px;}
.x7{left:476.226757px;}
.x28{left:484.018953px;}
.x10{left:494.652008px;}
.x29{left:499.012953px;}
.x2a{left:514.006953px;}
.x9{left:522.312886px;}
.x2b{left:529.000953px;}
.x43{left:531.939904px;}
.x2c{left:547.717953px;}
.x65{left:554.685000px;}
.x2d{left:562.711953px;}
.x2e{left:581.428953px;}
.x2f{left:596.422953px;}
.x44{left:599.361904px;}
.xb{left:605.519393px;}
.x30{left:615.139953px;}
.x45{left:618.078904px;}
.x31{left:630.133953px;}
.x46{left:633.072904px;}
.x11{left:637.782597px;}
.x66{left:639.645000px;}
.x32{left:648.850953px;}
.x47{left:651.789904px;}
.x33{left:663.844953px;}
.x48{left:666.783904px;}
.x34{left:682.561953px;}
.x49{left:685.500904px;}
.xc{left:694.884141px;}
.x35{left:697.555953px;}
.x4a{left:700.494904px;}
.x36{left:716.272953px;}
.x4b{left:719.211904px;}
.x1{left:728.220612px;}
.x37{left:731.266953px;}
.x4c{left:737.928904px;}
.x38{left:746.260953px;}
.xd{left:748.880337px;}
.x4d{left:756.645904px;}
.x39{left:764.977953px;}
.x4e{left:771.639904px;}
.x12{left:777.599092px;}
.x3a{left:779.971953px;}
.xe{left:790.126586px;}
.x4f{left:805.350904px;}
@media print{
.v3{vertical-align:-20.749986pt;}
.v2{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.363358pt;}
.v1{vertical-align:21.333333pt;}
.v5{vertical-align:53.312000pt;}
.ls4c{letter-spacing:-2.992000pt;}
.ls6c{letter-spacing:-1.405333pt;}
.ls43{letter-spacing:-0.952000pt;}
.ls93{letter-spacing:-0.912000pt;}
.ls4d{letter-spacing:-0.589333pt;}
.ls68{letter-spacing:-0.426667pt;}
.ls2b{letter-spacing:-0.373333pt;}
.lsa5{letter-spacing:-0.368533pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls6a{letter-spacing:-0.317333pt;}
.ls8b{letter-spacing:-0.272000pt;}
.ls98{letter-spacing:-0.271467pt;}
.ls3f{letter-spacing:-0.266667pt;}
.ls8c{letter-spacing:-0.226667pt;}
.ls41{letter-spacing:-0.213333pt;}
.ls72{letter-spacing:-0.181333pt;}
.ls2a{letter-spacing:-0.160000pt;}
.ls71{letter-spacing:-0.136000pt;}
.ls40{letter-spacing:-0.106667pt;}
.ls69{letter-spacing:-0.090667pt;}
.ls16{letter-spacing:-0.053333pt;}
.ls73{letter-spacing:-0.045333pt;}
.ls12{letter-spacing:0.000000pt;}
.ls4b{letter-spacing:0.000033pt;}
.ls4a{letter-spacing:0.000037pt;}
.ls0{letter-spacing:0.000076pt;}
.ls8f{letter-spacing:0.022667pt;}
.ls7a{letter-spacing:0.045333pt;}
.lsa7{letter-spacing:0.047360pt;}
.ls35{letter-spacing:0.053312pt;}
.ls15{letter-spacing:0.053333pt;}
.ls75{letter-spacing:0.090667pt;}
.ls9b{letter-spacing:0.097067pt;}
.ls4{letter-spacing:0.106667pt;}
.ls76{letter-spacing:0.113333pt;}
.ls81{letter-spacing:0.136000pt;}
.ls11{letter-spacing:0.158926pt;}
.ls14{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.176000pt;}
.ls70{letter-spacing:0.181333pt;}
.lsa6{letter-spacing:0.183467pt;}
.ls30{letter-spacing:0.186198pt;}
.ls19{letter-spacing:0.186667pt;}
.ls38{letter-spacing:0.186686pt;}
.ls87{letter-spacing:0.204000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.226667pt;}
.ls5d{letter-spacing:0.229333pt;}
.ls79{letter-spacing:0.234667pt;}
.ls24{letter-spacing:0.240000pt;}
.ls1a{letter-spacing:0.250667pt;}
.ls7c{letter-spacing:0.256000pt;}
.ls61{letter-spacing:0.266657pt;}
.ls2{letter-spacing:0.266667pt;}
.ls99{letter-spacing:0.271467pt;}
.ls60{letter-spacing:0.271993pt;}
.ls89{letter-spacing:0.272000pt;}
.ls37{letter-spacing:0.272415pt;}
.lsb{letter-spacing:0.293333pt;}
.ls2f{letter-spacing:0.298635pt;}
.ls77{letter-spacing:0.317333pt;}
.ls3{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.325333pt;}
.ls80{letter-spacing:0.340000pt;}
.ls67{letter-spacing:0.352000pt;}
.ls82{letter-spacing:0.362667pt;}
.ls18{letter-spacing:0.373333pt;}
.ls2d{letter-spacing:0.400000pt;}
.ls7b{letter-spacing:0.408000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls5a{letter-spacing:0.447991pt;}
.ls85{letter-spacing:0.453333pt;}
.ls29{letter-spacing:0.480000pt;}
.ls64{letter-spacing:0.490666pt;}
.ls74{letter-spacing:0.498667pt;}
.ls33{letter-spacing:0.506667pt;}
.ls3d{letter-spacing:0.517333pt;}
.ls6{letter-spacing:0.533333pt;}
.ls88{letter-spacing:0.544000pt;}
.ls6f{letter-spacing:0.560000pt;}
.ls56{letter-spacing:0.570667pt;}
.lsf{letter-spacing:0.586667pt;}
.ls7d{letter-spacing:0.589333pt;}
.ls6e{letter-spacing:0.597333pt;}
.ls2c{letter-spacing:0.613333pt;}
.ls7f{letter-spacing:0.634667pt;}
.ls47{letter-spacing:0.635173pt;}
.lsc{letter-spacing:0.640000pt;}
.ls62{letter-spacing:0.666667pt;}
.ls78{letter-spacing:0.680000pt;}
.ls1f{letter-spacing:0.693333pt;}
.ls59{letter-spacing:0.708903pt;}
.ls5c{letter-spacing:0.709310pt;}
.lse{letter-spacing:0.746667pt;}
.ls36{letter-spacing:0.757333pt;}
.ls8a{letter-spacing:0.770667pt;}
.ls66{letter-spacing:0.773333pt;}
.ls7{letter-spacing:0.800000pt;}
.ls7e{letter-spacing:0.816000pt;}
.ls26{letter-spacing:0.826667pt;}
.ls1c{letter-spacing:0.837333pt;}
.ls32{letter-spacing:0.853333pt;}
.ls83{letter-spacing:0.861333pt;}
.ls28{letter-spacing:0.880000pt;}
.ls2e{letter-spacing:0.906661pt;}
.ls20{letter-spacing:0.906667pt;}
.ls46{letter-spacing:0.921628pt;}
.ls8d{letter-spacing:0.929333pt;}
.ls92{letter-spacing:0.952000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls6d{letter-spacing:0.986667pt;}
.ls3e{letter-spacing:0.992000pt;}
.ls57{letter-spacing:1.008000pt;}
.ls1d{letter-spacing:1.013333pt;}
.ls65{letter-spacing:1.034667pt;}
.ls5b{letter-spacing:1.041555pt;}
.ls90{letter-spacing:1.042667pt;}
.ls58{letter-spacing:1.048534pt;}
.lsd{letter-spacing:1.050667pt;}
.ls1b{letter-spacing:1.061301pt;}
.lsa{letter-spacing:1.066667pt;}
.ls5e{letter-spacing:1.119994pt;}
.ls8{letter-spacing:1.120000pt;}
.ls31{letter-spacing:1.173333pt;}
.ls91{letter-spacing:1.224000pt;}
.ls21{letter-spacing:1.226667pt;}
.ls63{letter-spacing:1.253333pt;}
.ls8e{letter-spacing:1.269333pt;}
.ls49{letter-spacing:1.280000pt;}
.ls22{letter-spacing:1.306667pt;}
.ls86{letter-spacing:1.314667pt;}
.ls6b{letter-spacing:1.386667pt;}
.ls53{letter-spacing:1.439990pt;}
.ls9{letter-spacing:1.472000pt;}
.ls25{letter-spacing:1.493333pt;}
.ls84{letter-spacing:1.496000pt;}
.ls27{letter-spacing:1.546667pt;}
.ls3b{letter-spacing:1.600000pt;}
.ls48{letter-spacing:1.653333pt;}
.ls5f{letter-spacing:1.706667pt;}
.ls3c{letter-spacing:1.722667pt;}
.ls44{letter-spacing:1.760000pt;}
.ls39{letter-spacing:1.813333pt;}
.ls55{letter-spacing:1.824000pt;}
.ls3a{letter-spacing:1.866667pt;}
.ls45{letter-spacing:1.893322pt;}
.ls4e{letter-spacing:1.920000pt;}
.ls50{letter-spacing:1.973333pt;}
.ls51{letter-spacing:2.026667pt;}
.ls54{letter-spacing:2.106651pt;}
.ls4f{letter-spacing:2.106667pt;}
.ls52{letter-spacing:2.186648pt;}
.ls13{letter-spacing:3.546667pt;}
.ls9d{letter-spacing:59.520000pt;}
.ls9c{letter-spacing:87.040000pt;}
.ls9a{letter-spacing:97.679360pt;}
.ls42{letter-spacing:116.415995pt;}
.lsa2{letter-spacing:122.880000pt;}
.lsa4{letter-spacing:135.040000pt;}
.lsa3{letter-spacing:147.200000pt;}
.lsa1{letter-spacing:161.920000pt;}
.ls9e{letter-spacing:177.920000pt;}
.lsa0{letter-spacing:197.760000pt;}
.ls9f{letter-spacing:213.760000pt;}
.ls96{letter-spacing:521.706667pt;}
.ls97{letter-spacing:968.426667pt;}
.ls95{letter-spacing:1120.106667pt;}
.ls94{letter-spacing:1762.165333pt;}
.ws2{word-spacing:-16.384000pt;}
.wsd3{word-spacing:-14.991467pt;}
.wsd1{word-spacing:-14.720000pt;}
.wsd2{word-spacing:-14.448533pt;}
.wsd4{word-spacing:-14.351467pt;}
.ws24{word-spacing:-13.600000pt;}
.wsd5{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.333333pt;}
.wsd6{word-spacing:-13.327360pt;}
.ws9b{word-spacing:-11.560000pt;}
.ws9f{word-spacing:-11.424000pt;}
.ws55{word-spacing:-11.333333pt;}
.ws23{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws84{word-spacing:-11.016000pt;}
.ws8{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws89{word-spacing:-9.928000pt;}
.wscf{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws9e{word-spacing:-8.794667pt;}
.wsd0{word-spacing:-8.640000pt;}
.ws8d{word-spacing:-8.568000pt;}
.ws60{word-spacing:-8.341333pt;}
.wsa{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws6a{word-spacing:-6.720000pt;}
.ws18{word-spacing:-6.666667pt;}
.ws51{word-spacing:-6.400000pt;}
.ws5b{word-spacing:-5.666667pt;}
.ws61{word-spacing:-4.906667pt;}
.wsc{word-spacing:-3.546667pt;}
.wsd{word-spacing:-1.333333pt;}
.ws26{word-spacing:-1.280000pt;}
.ws15{word-spacing:-1.226667pt;}
.wsf{word-spacing:-1.173333pt;}
.ws9a{word-spacing:-1.133333pt;}
.ws35{word-spacing:-1.120000pt;}
.ws9d{word-spacing:-1.088000pt;}
.ws49{word-spacing:-1.066667pt;}
.ws2c{word-spacing:-1.013333pt;}
.wsc9{word-spacing:-0.997333pt;}
.ws74{word-spacing:-0.960000pt;}
.wsa9{word-spacing:-0.952000pt;}
.ws52{word-spacing:-0.906667pt;}
.ws9c{word-spacing:-0.861333pt;}
.ws95{word-spacing:-0.853333pt;}
.ws2d{word-spacing:-0.800000pt;}
.wsc4{word-spacing:-0.770667pt;}
.ws45{word-spacing:-0.693333pt;}
.wsaa{word-spacing:-0.680000pt;}
.ws12{word-spacing:-0.640000pt;}
.wsab{word-spacing:-0.634667pt;}
.ws4a{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.544000pt;}
.ws3e{word-spacing:-0.533333pt;}
.ws33{word-spacing:-0.480000pt;}
.wsa7{word-spacing:-0.453333pt;}
.ws8e{word-spacing:-0.426667pt;}
.wsb0{word-spacing:-0.408000pt;}
.wsb6{word-spacing:-0.362667pt;}
.ws27{word-spacing:-0.320000pt;}
.wsb2{word-spacing:-0.272000pt;}
.ws5{word-spacing:-0.266667pt;}
.wsa6{word-spacing:-0.234667pt;}
.wsa5{word-spacing:-0.226667pt;}
.ws14{word-spacing:-0.213333pt;}
.wsa2{word-spacing:-0.181333pt;}
.ws13{word-spacing:-0.160000pt;}
.wsb4{word-spacing:-0.136000pt;}
.wse{word-spacing:-0.106667pt;}
.ws9{word-spacing:-0.064000pt;}
.ws28{word-spacing:-0.053333pt;}
.wsc3{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.wsb{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.045333pt;}
.ws4d{word-spacing:0.106667pt;}
.ws1b{word-spacing:0.160000pt;}
.wsac{word-spacing:0.181333pt;}
.ws50{word-spacing:0.213333pt;}
.ws98{word-spacing:0.226667pt;}
.ws41{word-spacing:0.266667pt;}
.ws99{word-spacing:0.317333pt;}
.ws11{word-spacing:0.320000pt;}
.wsbc{word-spacing:0.362667pt;}
.ws90{word-spacing:0.373333pt;}
.ws2a{word-spacing:0.426667pt;}
.wsa1{word-spacing:0.498667pt;}
.ws93{word-spacing:0.533333pt;}
.ws3d{word-spacing:0.586667pt;}
.ws64{word-spacing:0.589333pt;}
.ws47{word-spacing:0.640000pt;}
.wsbb{word-spacing:0.680000pt;}
.ws40{word-spacing:0.693333pt;}
.ws6b{word-spacing:0.746667pt;}
.ws17{word-spacing:0.800000pt;}
.wsb1{word-spacing:0.816000pt;}
.ws66{word-spacing:0.853333pt;}
.ws71{word-spacing:0.906667pt;}
.ws25{word-spacing:0.960000pt;}
.ws30{word-spacing:1.013333pt;}
.wsa8{word-spacing:1.042667pt;}
.ws1a{word-spacing:1.066667pt;}
.wsa0{word-spacing:1.133333pt;}
.ws16{word-spacing:1.173333pt;}
.wsc8{word-spacing:1.178667pt;}
.wsc7{word-spacing:1.224000pt;}
.ws8c{word-spacing:1.226667pt;}
.wsbe{word-spacing:1.269333pt;}
.wsad{word-spacing:1.314667pt;}
.ws10{word-spacing:1.333333pt;}
.wsba{word-spacing:1.360000pt;}
.ws31{word-spacing:1.386667pt;}
.ws2e{word-spacing:1.440000pt;}
.ws3b{word-spacing:1.493333pt;}
.ws3c{word-spacing:1.546667pt;}
.wsb3{word-spacing:1.586667pt;}
.ws6e{word-spacing:1.600000pt;}
.wsae{word-spacing:1.632000pt;}
.ws1f{word-spacing:1.653333pt;}
.wsb5{word-spacing:1.677333pt;}
.ws37{word-spacing:1.706667pt;}
.ws70{word-spacing:1.760000pt;}
.wsa4{word-spacing:1.768000pt;}
.ws46{word-spacing:1.813333pt;}
.ws38{word-spacing:1.866667pt;}
.ws1e{word-spacing:1.973333pt;}
.ws19{word-spacing:2.026667pt;}
.wsc6{word-spacing:2.040000pt;}
.ws20{word-spacing:2.080000pt;}
.wsbf{word-spacing:2.085333pt;}
.ws29{word-spacing:2.133333pt;}
.wscc{word-spacing:2.176000pt;}
.ws69{word-spacing:2.186667pt;}
.ws91{word-spacing:2.240000pt;}
.ws4e{word-spacing:2.293333pt;}
.wsbd{word-spacing:2.312000pt;}
.ws42{word-spacing:2.346667pt;}
.ws4f{word-spacing:2.400000pt;}
.wsaf{word-spacing:2.448000pt;}
.ws2f{word-spacing:2.453333pt;}
.wsb7{word-spacing:2.493333pt;}
.ws6f{word-spacing:2.506667pt;}
.wsca{word-spacing:2.538667pt;}
.ws97{word-spacing:2.560000pt;}
.ws8f{word-spacing:2.613333pt;}
.ws62{word-spacing:2.666667pt;}
.ws36{word-spacing:2.720000pt;}
.ws94{word-spacing:2.826667pt;}
.ws63{word-spacing:2.856000pt;}
.ws3a{word-spacing:2.880000pt;}
.wsc2{word-spacing:2.901333pt;}
.ws73{word-spacing:2.933333pt;}
.wsc0{word-spacing:2.946667pt;}
.ws2b{word-spacing:3.040000pt;}
.ws48{word-spacing:3.146667pt;}
.ws44{word-spacing:3.200000pt;}
.ws53{word-spacing:3.253333pt;}
.ws1d{word-spacing:3.306667pt;}
.ws43{word-spacing:3.360000pt;}
.wsc5{word-spacing:3.445333pt;}
.ws92{word-spacing:3.520000pt;}
.ws34{word-spacing:3.626667pt;}
.ws4c{word-spacing:3.680000pt;}
.ws1c{word-spacing:3.733333pt;}
.ws96{word-spacing:3.786667pt;}
.ws4b{word-spacing:3.946667pt;}
.ws32{word-spacing:4.053333pt;}
.ws8b{word-spacing:4.106667pt;}
.ws67{word-spacing:4.266667pt;}
.ws72{word-spacing:4.426667pt;}
.ws68{word-spacing:4.480000pt;}
.wscb{word-spacing:4.488000pt;}
.wsc1{word-spacing:4.714667pt;}
.ws65{word-spacing:4.800000pt;}
.wsb9{word-spacing:4.896000pt;}
.ws8a{word-spacing:4.960000pt;}
.ws39{word-spacing:5.333333pt;}
.wsb8{word-spacing:5.802667pt;}
.ws3f{word-spacing:5.866667pt;}
.ws6c{word-spacing:6.506667pt;}
.ws6d{word-spacing:6.573333pt;}
.wscd{word-spacing:12.013333pt;}
.wsce{word-spacing:15.640000pt;}
.ws85{word-spacing:41.389325pt;}
.ws7c{word-spacing:57.210667pt;}
.ws7a{word-spacing:57.256000pt;}
.ws81{word-spacing:59.159995pt;}
.ws7b{word-spacing:62.152000pt;}
.ws88{word-spacing:62.696000pt;}
.ws87{word-spacing:64.055992pt;}
.ws22{word-spacing:64.237333pt;}
.ws54{word-spacing:65.597333pt;}
.ws57{word-spacing:67.319995pt;}
.ws79{word-spacing:83.776000pt;}
.ws7f{word-spacing:85.090667pt;}
.ws7e{word-spacing:86.722658pt;}
.ws58{word-spacing:89.986662pt;}
.ws83{word-spacing:96.786662pt;}
.ws59{word-spacing:112.653329pt;}
.ws7d{word-spacing:139.127995pt;}
.ws76{word-spacing:146.698662pt;}
.ws5a{word-spacing:191.352000pt;}
.ws5c{word-spacing:302.736000pt;}
.ws78{word-spacing:304.640000pt;}
.ws5e{word-spacing:478.447979pt;}
.ws5d{word-spacing:482.255979pt;}
.ws5f{word-spacing:520.698646pt;}
.ws56{word-spacing:598.445312pt;}
.ws82{word-spacing:661.368000pt;}
.ws80{word-spacing:665.176000pt;}
.ws75{word-spacing:781.365333pt;}
.ws77{word-spacing:787.757333pt;}
.ws86{word-spacing:1093.802667pt;}
._e{margin-left:-2469.714628pt;}
._61{margin-left:-15.821333pt;}
._a{margin-left:-14.733333pt;}
._5b{margin-left:-12.874667pt;}
._5d{margin-left:-11.786667pt;}
._60{margin-left:-10.698667pt;}
._14{margin-left:-9.792000pt;}
._7{margin-left:-8.311402pt;}
._13{margin-left:-7.323863pt;}
._6{margin-left:-6.071519pt;}
._5{margin-left:-5.102929pt;}
._16{margin-left:-3.769471pt;}
._3{margin-left:-2.779746pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.088000pt;}
._2{width:2.210133pt;}
._10{width:3.839990pt;}
._8{width:5.018667pt;}
._2d{width:6.076852pt;}
._57{width:7.072000pt;}
._15{width:9.050659pt;}
._66{width:10.186682pt;}
._9{width:11.146667pt;}
._55{width:12.874667pt;}
._4{width:13.973333pt;}
._b{width:16.320000pt;}
._5f{width:18.473333pt;}
._5c{width:19.946667pt;}
._5e{width:20.944000pt;}
._59{width:21.984481pt;}
._58{width:23.800000pt;}
._5a{width:24.904008pt;}
._56{width:27.245333pt;}
._4b{width:35.360000pt;}
._12{width:36.720000pt;}
._53{width:43.610662pt;}
._c{width:48.552000pt;}
._4e{width:57.210667pt;}
._4c{width:58.253333pt;}
._1d{width:67.183979pt;}
._4d{width:73.712000pt;}
._f{width:74.664000pt;}
._23{width:78.653329pt;}
._4f{width:91.165333pt;}
._45{width:97.058667pt;}
._63{width:99.328000pt;}
._21{width:101.319995pt;}
._47{width:108.074667pt;}
._48{width:109.389328pt;}
._46{width:111.021333pt;}
._64{width:113.898667pt;}
._4a{width:117.730662pt;}
._50{width:119.181328pt;}
._1e{width:120.994646pt;}
._68{width:124.770773pt;}
._2e{width:144.023979pt;}
._67{width:146.055253pt;}
._2c{width:156.399979pt;}
._44{width:157.397333pt;}
._51{width:158.349333pt;}
._1c{width:165.194646pt;}
._65{width:180.026027pt;}
._17{width:192.621333pt;}
._2a{width:203.954667pt;}
._3b{width:208.669333pt;}
._3c{width:222.994667pt;}
._1a{width:237.002646pt;}
._28{width:258.581325pt;}
._18{width:259.805325pt;}
._32{width:272.505471pt;}
._2f{width:275.400000pt;}
._1f{width:285.826646pt;}
._39{width:295.217471pt;}
._27{width:297.114667pt;}
._19{width:311.485312pt;}
._1b{width:315.973312pt;}
._29{width:321.005333pt;}
._31{width:330.933315pt;}
._3f{width:331.885333pt;}
._30{width:342.719992pt;}
._2b{width:343.672000pt;}
._3d{width:348.432000pt;}
._34{width:353.599982pt;}
._69{width:363.777280pt;}
._3e{width:368.333333pt;}
._38{width:376.266649pt;}
._37{width:388.053326pt;}
._36{width:402.333333pt;}
._35{width:410.357333pt;}
._33{width:427.493333pt;}
._43{width:437.008092pt;}
._41{width:491.674596pt;}
._3a{width:503.789333pt;}
._42{width:516.333914pt;}
._49{width:678.685333pt;}
._62{width:753.418667pt;}
._22{width:845.382774pt;}
._20{width:865.549304pt;}
._52{width:885.360000pt;}
._24{width:934.591970pt;}
._26{width:949.642637pt;}
._25{width:962.290637pt;}
._40{width:1096.226689pt;}
._54{width:1430.176060pt;}
._11{width:1451.708775pt;}
._d{width:1677.333295pt;}
.fse{font-size:5.120000pt;}
.fs10{font-size:26.880000pt;}
.fs7{font-size:31.733332pt;}
.fsb{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fsc{font-size:53.120000pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs9{font-size:58.880000pt;}
.fsf{font-size:62.064349pt;}
.fs6{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y411{bottom:7.520000pt;}
.y416{bottom:9.600000pt;}
.y414{bottom:9.760000pt;}
.y478{bottom:10.400000pt;}
.y481{bottom:10.426667pt;}
.y471{bottom:10.560000pt;}
.y474{bottom:11.680000pt;}
.y48e{bottom:16.320000pt;}
.y422{bottom:19.200000pt;}
.y418{bottom:19.360000pt;}
.y419{bottom:28.960000pt;}
.y41f{bottom:28.986667pt;}
.y41b{bottom:29.120000pt;}
.y48d{bottom:31.680000pt;}
.y487{bottom:33.440000pt;}
.y480{bottom:33.466667pt;}
.y47a{bottom:33.600000pt;}
.y476{bottom:33.640000pt;}
.y425{bottom:38.720000pt;}
.y48c{bottom:46.880000pt;}
.y427{bottom:48.320000pt;}
.y41c{bottom:48.480000pt;}
.y420{bottom:48.506667pt;}
.y429{bottom:48.520000pt;}
.y412{bottom:58.720000pt;}
.y1{bottom:61.181335pt;}
.y426{bottom:67.680000pt;}
.y21d{bottom:100.384267pt;}
.y3a{bottom:100.400267pt;}
.y226{bottom:100.426586pt;}
.y228{bottom:100.426592pt;}
.y263{bottom:100.426993pt;}
.y2be{bottom:100.438326pt;}
.y22c{bottom:100.449257pt;}
.y268{bottom:100.449676pt;}
.y2c6{bottom:100.472291pt;}
.y270{bottom:100.472349pt;}
.y271{bottom:100.472355pt;}
.y26d{bottom:100.472359pt;}
.y231{bottom:100.483255pt;}
.y276{bottom:100.483703pt;}
.y236{bottom:100.517253pt;}
.y2cb{bottom:100.517589pt;}
.y27b{bottom:100.529070pt;}
.y240{bottom:100.551242pt;}
.y23d{bottom:100.551253pt;}
.y243{bottom:100.562582pt;}
.y2d1{bottom:100.562887pt;}
.y280{bottom:100.563068pt;}
.y248{bottom:100.573933pt;}
.y24d{bottom:100.585284pt;}
.y253{bottom:100.585289pt;}
.y250{bottom:100.585300pt;}
.y256{bottom:100.596630pt;}
.y285{bottom:100.597066pt;}
.y286{bottom:100.597072pt;}
.y289{bottom:100.608420pt;}
.y28c{bottom:100.619769pt;}
.y291{bottom:100.642452pt;}
.y292{bottom:100.642458pt;}
.y297{bottom:100.665141pt;}
.y1e3{bottom:100.712280pt;}
.y6c{bottom:100.813599pt;}
.y86{bottom:100.813639pt;}
.y300{bottom:101.476261pt;}
.y2c{bottom:101.521200pt;}
.y337{bottom:101.546928pt;}
.y1cc{bottom:101.770935pt;}
.y15f{bottom:101.834930pt;}
.y2ba{bottom:101.986898pt;}
.yb7{bottom:101.986928pt;}
.ycf{bottom:101.986938pt;}
.y202{bottom:102.111064pt;}
.y227{bottom:108.427919pt;}
.y264{bottom:108.428326pt;}
.y2bf{bottom:108.439660pt;}
.y22d{bottom:108.450590pt;}
.y269{bottom:108.451010pt;}
.y2c7{bottom:108.473624pt;}
.y26e{bottom:108.473693pt;}
.y232{bottom:108.484588pt;}
.y277{bottom:108.485037pt;}
.y237{bottom:108.518586pt;}
.y2cc{bottom:108.518922pt;}
.y27c{bottom:108.530403pt;}
.y241{bottom:108.552575pt;}
.y23e{bottom:108.552586pt;}
.y244{bottom:108.563916pt;}
.y281{bottom:108.564401pt;}
.y249{bottom:108.575266pt;}
.y254{bottom:108.586623pt;}
.y251{bottom:108.586633pt;}
.y257{bottom:108.597963pt;}
.y28d{bottom:108.621102pt;}
.y293{bottom:108.643791pt;}
.y298{bottom:108.666475pt;}
.y3e8{bottom:109.120000pt;}
.y40f{bottom:112.000000pt;}
.y39{bottom:113.728267pt;}
.y2ff{bottom:114.804261pt;}
.y336{bottom:114.874928pt;}
.y40a{bottom:115.680000pt;}
.y378{bottom:117.084952pt;}
.y1e2{bottom:117.378947pt;}
.y6b{bottom:117.480265pt;}
.y85{bottom:117.480306pt;}
.y2b{bottom:118.187866pt;}
.y1cb{bottom:118.437602pt;}
.y15e{bottom:118.501597pt;}
.y2b9{bottom:118.653564pt;}
.yb6{bottom:118.653595pt;}
.yce{bottom:118.653605pt;}
.y201{bottom:118.777730pt;}
.y44c{bottom:119.200000pt;}
.y38{bottom:127.056267pt;}
.y335{bottom:128.202928pt;}
.y377{bottom:130.412952pt;}
.y46c{bottom:131.200000pt;}
.y1e1{bottom:134.045614pt;}
.y6a{bottom:134.146932pt;}
.y84{bottom:134.146973pt;}
.y2a{bottom:134.854533pt;}
.y1ca{bottom:135.104268pt;}
.y15d{bottom:135.168264pt;}
.y2b8{bottom:135.320231pt;}
.yb5{bottom:135.320272pt;}
.y200{bottom:135.444397pt;}
.y3e7{bottom:136.640000pt;}
.y2fe{bottom:141.471594pt;}
.y334{bottom:141.530928pt;}
.y40e{bottom:142.080000pt;}
.y376{bottom:143.740952pt;}
.y37{bottom:144.917603pt;}
.y409{bottom:148.480000pt;}
.y1e0{bottom:150.712280pt;}
.y69{bottom:150.813599pt;}
.y29{bottom:151.521200pt;}
.y1c9{bottom:151.770935pt;}
.y15c{bottom:151.834930pt;}
.y2b7{bottom:151.986898pt;}
.yb4{bottom:151.986938pt;}
.y1ff{bottom:152.111064pt;}
.y44b{bottom:152.186667pt;}
.y46b{bottom:153.466667pt;}
.y2fd{bottom:154.799594pt;}
.y333{bottom:154.858928pt;}
.y375{bottom:157.068952pt;}
.y36{bottom:160.436936pt;}
.y21e{bottom:163.186401pt;}
.y25b{bottom:163.186666pt;}
.y2bb{bottom:163.186798pt;}
.y21f{bottom:163.190552pt;}
.y25c{bottom:163.190959pt;}
.y265{bottom:163.236326pt;}
.y2c0{bottom:163.247660pt;}
.y22e{bottom:163.258590pt;}
.y26a{bottom:163.259010pt;}
.y2c8{bottom:163.281624pt;}
.y233{bottom:163.292588pt;}
.y278{bottom:163.293037pt;}
.y238{bottom:163.326586pt;}
.y2cd{bottom:163.326922pt;}
.y27d{bottom:163.338403pt;}
.y242{bottom:163.360575pt;}
.y245{bottom:163.371916pt;}
.y282{bottom:163.372401pt;}
.y24a{bottom:163.383266pt;}
.y255{bottom:163.394623pt;}
.y258{bottom:163.405963pt;}
.y28e{bottom:163.429102pt;}
.y294{bottom:163.451791pt;}
.y299{bottom:163.474475pt;}
.y3e6{bottom:164.186667pt;}
.y1df{bottom:167.378947pt;}
.y68{bottom:167.480265pt;}
.y83{bottom:167.480306pt;}
.y2fc{bottom:168.127594pt;}
.y332{bottom:168.186928pt;}
.y28{bottom:168.187866pt;}
.y1c8{bottom:168.437602pt;}
.y2b6{bottom:168.653564pt;}
.yb3{bottom:168.653605pt;}
.y1fe{bottom:168.777730pt;}
.y374{bottom:170.396952pt;}
.y40d{bottom:172.026667pt;}
.y35{bottom:173.764936pt;}
.y46a{bottom:175.706667pt;}
.y44a{bottom:179.706667pt;}
.y408{bottom:181.306667pt;}
.y2fb{bottom:181.455594pt;}
.y331{bottom:181.514928pt;}
.y15b{bottom:183.241573pt;}
.y373{bottom:183.724952pt;}
.y1de{bottom:184.045614pt;}
.y67{bottom:184.146932pt;}
.y27{bottom:184.854533pt;}
.y1c7{bottom:185.104268pt;}
.y2b5{bottom:185.320231pt;}
.yb2{bottom:185.320272pt;}
.y1fd{bottom:185.444397pt;}
.y34{bottom:191.626261pt;}
.y3e5{bottom:191.706667pt;}
.y330{bottom:194.842928pt;}
.y15a{bottom:196.569573pt;}
.y372{bottom:197.052952pt;}
.y469{bottom:197.946667pt;}
.y66{bottom:200.813599pt;}
.y82{bottom:200.813639pt;}
.y26{bottom:201.521200pt;}
.y1c6{bottom:201.770935pt;}
.y19b{bottom:201.851059pt;}
.y2b4{bottom:201.986898pt;}
.yb1{bottom:201.986938pt;}
.y40c{bottom:202.106667pt;}
.y21b{bottom:202.111064pt;}
.y2c1{bottom:205.588993pt;}
.y272{bottom:205.611687pt;}
.y33{bottom:207.140262pt;}
.y449{bottom:207.226667pt;}
.y2fa{bottom:208.122928pt;}
.y32f{bottom:208.170928pt;}
.y3c5{bottom:209.946667pt;}
.y371{bottom:210.380952pt;}
.y159{bottom:213.206906pt;}
.y407{bottom:214.266667pt;}
.y42c{bottom:215.866667pt;}
.y1dd{bottom:217.378947pt;}
.y65{bottom:217.480265pt;}
.y81{bottom:217.480306pt;}
.y25{bottom:218.187866pt;}
.y1c5{bottom:218.437602pt;}
.y2b3{bottom:218.653564pt;}
.yb0{bottom:218.653605pt;}
.y1fc{bottom:218.777730pt;}
.y19a{bottom:218.964393pt;}
.y3e4{bottom:219.226667pt;}
.y2f9{bottom:221.450928pt;}
.y32e{bottom:221.498928pt;}
.y370{bottom:223.708952pt;}
.y32{bottom:225.001607pt;}
.y468{bottom:225.306667pt;}
.y158{bottom:229.844239pt;}
.y64{bottom:234.146932pt;}
.y80{bottom:234.146973pt;}
.y448{bottom:234.746667pt;}
.y32d{bottom:234.826928pt;}
.y24{bottom:234.854533pt;}
.y1c4{bottom:235.104268pt;}
.y2b2{bottom:235.320231pt;}
.yaf{bottom:235.320272pt;}
.y21a{bottom:235.444397pt;}
.y36f{bottom:237.036952pt;}
.y3c4{bottom:238.746667pt;}
.y31{bottom:240.515608pt;}
.y42b{bottom:243.226667pt;}
.y1b4{bottom:244.590408pt;}
.y3e3{bottom:245.146667pt;}
.y157{bottom:246.481573pt;}
.y406{bottom:247.066667pt;}
.y2f8{bottom:248.117594pt;}
.y32c{bottom:248.154928pt;}
.y36e{bottom:250.364952pt;}
.y1dc{bottom:250.712280pt;}
.y63{bottom:250.813599pt;}
.y7f{bottom:250.813639pt;}
.y23{bottom:251.521200pt;}
.y1c3{bottom:251.770935pt;}
.y2b1{bottom:251.986898pt;}
.yae{bottom:251.986938pt;}
.y219{bottom:252.111064pt;}
.y48f{bottom:256.506667pt;}
.y3c3{bottom:256.986667pt;}
.y30{bottom:258.376933pt;}
.y3e2{bottom:259.706667pt;}
.y467{bottom:260.666667pt;}
.y1b3{bottom:261.295741pt;}
.y32b{bottom:261.482928pt;}
.y447{bottom:262.266667pt;}
.y156{bottom:263.118906pt;}
.y36d{bottom:263.692952pt;}
.y2f7{bottom:264.784261pt;}
.y1db{bottom:267.378947pt;}
.y62{bottom:267.480265pt;}
.y7e{bottom:267.480306pt;}
.y22{bottom:268.187866pt;}
.y1c2{bottom:268.437602pt;}
.y2b0{bottom:268.653564pt;}
.yad{bottom:268.653605pt;}
.y1fb{bottom:268.777588pt;}
.y218{bottom:268.777730pt;}
.y48b{bottom:270.266667pt;}
.y2c2{bottom:271.038993pt;}
.y273{bottom:271.061687pt;}
.y32a{bottom:274.810928pt;}
.y36c{bottom:277.020952pt;}
.y1b2{bottom:277.933075pt;}
.y155{bottom:279.756239pt;}
.y405{bottom:280.026667pt;}
.y2f{bottom:280.600133pt;}
.y2f6{bottom:281.450928pt;}
.y3e1{bottom:281.946667pt;}
.y1da{bottom:284.045614pt;}
.y61{bottom:284.146932pt;}
.y7d{bottom:284.146973pt;}
.y21{bottom:284.854533pt;}
.y1c1{bottom:285.104268pt;}
.y2af{bottom:285.320231pt;}
.yac{bottom:285.320272pt;}
.y1fa{bottom:285.444255pt;}
.y217{bottom:285.444397pt;}
.y3c2{bottom:285.786667pt;}
.y329{bottom:288.138928pt;}
.y446{bottom:289.786667pt;}
.y42a{bottom:289.946667pt;}
.y36b{bottom:290.348952pt;}
.y2e{bottom:293.928133pt;}
.y1b1{bottom:294.570408pt;}
.y154{bottom:296.393573pt;}
.y2f5{bottom:298.117594pt;}
.y1d9{bottom:300.712280pt;}
.y60{bottom:300.813599pt;}
.y7c{bottom:300.813639pt;}
.y328{bottom:301.466928pt;}
.y20{bottom:301.521200pt;}
.y1c0{bottom:301.770935pt;}
.y2ae{bottom:301.986898pt;}
.yab{bottom:301.986938pt;}
.y1f9{bottom:302.110921pt;}
.y216{bottom:302.111064pt;}
.y36a{bottom:303.676952pt;}
.y3e0{bottom:304.186667pt;}
.y445{bottom:306.906667pt;}
.y1b0{bottom:311.207741pt;}
.y404{bottom:312.826667pt;}
.y153{bottom:313.030906pt;}
.y220{bottom:313.561219pt;}
.y25d{bottom:313.561626pt;}
.y3c1{bottom:314.746667pt;}
.y2f4{bottom:314.784261pt;}
.y327{bottom:314.794928pt;}
.y26f{bottom:314.933015pt;}
.y23f{bottom:315.011908pt;}
.y252{bottom:315.045956pt;}
.y369{bottom:317.004952pt;}
.y1d8{bottom:317.378947pt;}
.y7b{bottom:317.480306pt;}
.y1bf{bottom:318.437602pt;}
.y2ad{bottom:318.653564pt;}
.yaa{bottom:318.653605pt;}
.y1f8{bottom:318.777588pt;}
.y215{bottom:318.777730pt;}
.y466{bottom:320.986667pt;}
.y2d{bottom:321.320800pt;}
.y1af{bottom:324.535741pt;}
.y3df{bottom:326.426667pt;}
.y326{bottom:328.122928pt;}
.y152{bottom:329.668239pt;}
.y48a{bottom:330.266667pt;}
.y368{bottom:330.332952pt;}
.y2f3{bottom:331.450928pt;}
.y1d7{bottom:334.045614pt;}
.y5f{bottom:334.146932pt;}
.y7a{bottom:334.146973pt;}
.y1f{bottom:334.854533pt;}
.y1be{bottom:335.104268pt;}
.y2ac{bottom:335.320231pt;}
.ya9{bottom:335.320272pt;}
.y1f7{bottom:335.444255pt;}
.y214{bottom:335.444397pt;}
.y428{bottom:336.826667pt;}
.y444{bottom:339.546667pt;}
.y1ae{bottom:341.173075pt;}
.y325{bottom:341.450928pt;}
.y3c0{bottom:343.546667pt;}
.y367{bottom:343.660952pt;}
.y403{bottom:345.626667pt;}
.y151{bottom:346.305573pt;}
.y2f2{bottom:348.117594pt;}
.y3de{bottom:348.506667pt;}
.y1d6{bottom:350.712280pt;}
.y2ab{bottom:351.986898pt;}
.ya8{bottom:351.986938pt;}
.y1f6{bottom:352.110921pt;}
.y213{bottom:352.111064pt;}
.y489{bottom:353.306667pt;}
.y366{bottom:356.988952pt;}
.y1ad{bottom:357.810408pt;}
.y443{bottom:360.346667pt;}
.y465{bottom:361.946667pt;}
.y150{bottom:362.942906pt;}
.y2f1{bottom:364.784261pt;}
.y1d5{bottom:367.378947pt;}
.y5e{bottom:367.480265pt;}
.y79{bottom:367.480306pt;}
.y1bd{bottom:368.437581pt;}
.y2aa{bottom:368.653564pt;}
.ya7{bottom:368.653605pt;}
.y1f5{bottom:368.777588pt;}
.y212{bottom:368.777730pt;}
.y365{bottom:370.316952pt;}
.y3dd{bottom:370.786667pt;}
.y324{bottom:371.450928pt;}
.y3bf{bottom:373.666667pt;}
.y1ac{bottom:374.447741pt;}
.y221{bottom:375.486552pt;}
.y25e{bottom:375.486959pt;}
.y488{bottom:376.386667pt;}
.y402{bottom:378.626667pt;}
.y464{bottom:378.946667pt;}
.y143{bottom:379.534906pt;}
.y149{bottom:379.557573pt;}
.y14f{bottom:379.580239pt;}
.y2f0{bottom:381.450928pt;}
.y364{bottom:383.644952pt;}
.y1d4{bottom:384.045614pt;}
.y1e{bottom:384.854574pt;}
.y2a9{bottom:385.320231pt;}
.ya6{bottom:385.320272pt;}
.y1f4{bottom:385.444255pt;}
.y211{bottom:385.444397pt;}
.y442{bottom:385.506667pt;}
.y1ab{bottom:391.085075pt;}
.y142{bottom:392.862906pt;}
.y148{bottom:392.885573pt;}
.y14e{bottom:392.908239pt;}
.y3dc{bottom:395.906667pt;}
.y463{bottom:396.546667pt;}
.y363{bottom:396.972952pt;}
.y2ef{bottom:398.117594pt;}
.y486{bottom:399.426667pt;}
.y1d3{bottom:400.712280pt;}
.y78{bottom:400.813639pt;}
.y2a8{bottom:401.986898pt;}
.ya5{bottom:401.986938pt;}
.y1f3{bottom:402.110921pt;}
.y210{bottom:402.111064pt;}
.y424{bottom:403.106667pt;}
.y3be{bottom:403.586667pt;}
.y401{bottom:406.146667pt;}
.y141{bottom:406.190906pt;}
.y147{bottom:406.213573pt;}
.y14d{bottom:406.236239pt;}
.y1aa{bottom:407.722408pt;}
.y362{bottom:410.300952pt;}
.y3db{bottom:412.706667pt;}
.y1d2{bottom:417.378947pt;}
.y5d{bottom:417.480306pt;}
.y1d{bottom:418.187907pt;}
.y1bc{bottom:418.437581pt;}
.y2a7{bottom:418.653564pt;}
.ya4{bottom:418.653605pt;}
.y1f2{bottom:418.777588pt;}
.y20f{bottom:418.777730pt;}
.y140{bottom:419.518906pt;}
.y146{bottom:419.541573pt;}
.y14c{bottom:419.564239pt;}
.y441{bottom:419.586667pt;}
.y229{bottom:423.517258pt;}
.y266{bottom:423.528993pt;}
.y2c3{bottom:423.540326pt;}
.y26b{bottom:423.551676pt;}
.y22f{bottom:423.562590pt;}
.y274{bottom:423.563020pt;}
.y2c9{bottom:423.585624pt;}
.y234{bottom:423.596588pt;}
.y279{bottom:423.597037pt;}
.y361{bottom:423.628952pt;}
.y239{bottom:423.630586pt;}
.y2ce{bottom:423.630922pt;}
.y27e{bottom:423.642403pt;}
.y246{bottom:423.664582pt;}
.y24b{bottom:423.675933pt;}
.y24e{bottom:423.675949pt;}
.y283{bottom:423.676401pt;}
.y287{bottom:423.687737pt;}
.y259{bottom:423.698630pt;}
.y28a{bottom:423.699086pt;}
.y28f{bottom:423.721769pt;}
.y295{bottom:423.744458pt;}
.y29a{bottom:423.767141pt;}
.y1a9{bottom:424.359741pt;}
.y462{bottom:425.026667pt;}
.y323{bottom:426.736954pt;}
.y2ee{bottom:431.450928pt;}
.y13f{bottom:432.846906pt;}
.y145{bottom:432.869573pt;}
.y14b{bottom:432.892239pt;}
.y3bd{bottom:433.666667pt;}
.y1d1{bottom:434.045614pt;}
.y5c{bottom:434.146973pt;}
.y1c{bottom:434.854574pt;}
.y1bb{bottom:435.104248pt;}
.y2a6{bottom:435.320231pt;}
.ya3{bottom:435.320272pt;}
.y1f1{bottom:435.444255pt;}
.y20e{bottom:435.444397pt;}
.y360{bottom:436.956952pt;}
.y322{bottom:440.064954pt;}
.y1a8{bottom:440.997075pt;}
.y440{bottom:441.666667pt;}
.y3da{bottom:445.346667pt;}
.y13e{bottom:446.174906pt;}
.y144{bottom:446.197573pt;}
.y14a{bottom:446.220239pt;}
.y35f{bottom:450.284952pt;}
.y1d0{bottom:450.712280pt;}
.y5b{bottom:450.813639pt;}
.y1b{bottom:451.521240pt;}
.y1ba{bottom:451.770915pt;}
.y2a5{bottom:451.986898pt;}
.ya2{bottom:451.986938pt;}
.y1f0{bottom:452.110921pt;}
.y20d{bottom:452.111064pt;}
.y321{bottom:453.392954pt;}
.y1a7{bottom:457.634408pt;}
.y461{bottom:458.786667pt;}
.y400{bottom:461.186667pt;}
.y125{bottom:462.698906pt;}
.y131{bottom:462.755573pt;}
.y13d{bottom:462.812239pt;}
.y35e{bottom:463.612952pt;}
.y43f{bottom:463.906667pt;}
.y320{bottom:466.720954pt;}
.y1cf{bottom:467.378947pt;}
.y5a{bottom:467.480306pt;}
.y1a{bottom:468.187907pt;}
.y485{bottom:468.386667pt;}
.y1b9{bottom:468.437581pt;}
.y2a4{bottom:468.653564pt;}
.ya1{bottom:468.653605pt;}
.y1ef{bottom:468.777588pt;}
.y20c{bottom:468.777730pt;}
.y3d9{bottom:472.866667pt;}
.y1a6{bottom:474.271741pt;}
.y124{bottom:476.026906pt;}
.y130{bottom:476.083573pt;}
.y13c{bottom:476.140239pt;}
.y35d{bottom:476.940952pt;}
.y22a{bottom:477.305255pt;}
.y267{bottom:477.316991pt;}
.y26c{bottom:477.339674pt;}
.y230{bottom:477.350588pt;}
.y275{bottom:477.351018pt;}
.y235{bottom:477.384586pt;}
.y23a{bottom:477.418584pt;}
.y27f{bottom:477.430401pt;}
.y247{bottom:477.441248pt;}
.y24c{bottom:477.452598pt;}
.y24f{bottom:477.452615pt;}
.y284{bottom:477.464399pt;}
.y25a{bottom:477.475295pt;}
.y288{bottom:477.475735pt;}
.y28b{bottom:477.487084pt;}
.y290{bottom:477.509767pt;}
.y296{bottom:477.532456pt;}
.y29b{bottom:477.555139pt;}
.y3bc{bottom:477.986667pt;}
.y31f{bottom:480.048954pt;}
.y2ed{bottom:483.385620pt;}
.y59{bottom:484.146973pt;}
.y19{bottom:484.854574pt;}
.y1b8{bottom:485.104248pt;}
.y2a3{bottom:485.320231pt;}
.ya0{bottom:485.320272pt;}
.y1ee{bottom:485.444255pt;}
.y20b{bottom:485.444397pt;}
.y43e{bottom:486.146667pt;}
.y423{bottom:488.546667pt;}
.y3ff{bottom:488.706667pt;}
.y123{bottom:489.354906pt;}
.y12f{bottom:489.411573pt;}
.y13b{bottom:489.468239pt;}
.y35c{bottom:490.268952pt;}
.y1a5{bottom:490.909075pt;}
.y484{bottom:491.426667pt;}
.y31e{bottom:493.376954pt;}
.y460{bottom:496.706667pt;}
.y2ec{bottom:500.052287pt;}
.y3d8{bottom:500.386667pt;}
.y1ce{bottom:500.712280pt;}
.y58{bottom:500.813639pt;}
.y18{bottom:501.521240pt;}
.y1b7{bottom:501.770915pt;}
.y2a2{bottom:501.986898pt;}
.y9f{bottom:501.986938pt;}
.y1ed{bottom:502.110921pt;}
.y20a{bottom:502.111064pt;}
.y122{bottom:502.682906pt;}
.y12e{bottom:502.739573pt;}
.y13a{bottom:502.796239pt;}
.y35b{bottom:503.596952pt;}
.y31d{bottom:506.704954pt;}
.y1a4{bottom:507.546408pt;}
.y43d{bottom:511.106667pt;}
.y3bb{bottom:511.746667pt;}
.y483{bottom:514.306667pt;}
.y121{bottom:516.010906pt;}
.y421{bottom:516.066667pt;}
.y12d{bottom:516.067573pt;}
.y139{bottom:516.124239pt;}
.y3fe{bottom:516.226667pt;}
.y2eb{bottom:516.718953pt;}
.y35a{bottom:516.924952pt;}
.y57{bottom:517.480306pt;}
.y17{bottom:518.187907pt;}
.y1b6{bottom:518.437581pt;}
.y2a1{bottom:518.653564pt;}
.y9e{bottom:518.653605pt;}
.y1ec{bottom:518.777588pt;}
.y209{bottom:518.777730pt;}
.y222{bottom:519.861885pt;}
.y25f{bottom:519.862292pt;}
.y31c{bottom:520.032954pt;}
.y3d7{bottom:528.066667pt;}
.y120{bottom:529.338906pt;}
.y12c{bottom:529.395573pt;}
.y138{bottom:529.452239pt;}
.y359{bottom:530.252952pt;}
.y45f{bottom:530.946667pt;}
.y19f{bottom:531.833741pt;}
.y1a2{bottom:531.845075pt;}
.y199{bottom:532.059053pt;}
.y3fd{bottom:533.346667pt;}
.y31b{bottom:533.360954pt;}
.y2ea{bottom:533.385620pt;}
.y1cd{bottom:534.045614pt;}
.y56{bottom:534.146973pt;}
.y16{bottom:534.854574pt;}
.y1b5{bottom:535.104248pt;}
.y2a0{bottom:535.320231pt;}
.ycd{bottom:535.320272pt;}
.y1eb{bottom:535.444255pt;}
.y208{bottom:535.444397pt;}
.y11f{bottom:542.666906pt;}
.y12b{bottom:542.723573pt;}
.y137{bottom:542.780239pt;}
.y358{bottom:543.580952pt;}
.y19e{bottom:545.161741pt;}
.y1a1{bottom:545.173075pt;}
.y198{bottom:545.387053pt;}
.y31a{bottom:546.688954pt;}
.y2e9{bottom:550.052287pt;}
.y3fc{bottom:550.146667pt;}
.y55{bottom:550.813639pt;}
.y15{bottom:551.521240pt;}
.y29f{bottom:551.986898pt;}
.y9d{bottom:551.986938pt;}
.y1ea{bottom:552.110921pt;}
.y207{bottom:552.111064pt;}
.y45e{bottom:553.186667pt;}
.y3d6{bottom:555.586667pt;}
.y11e{bottom:555.994906pt;}
.y12a{bottom:556.051573pt;}
.y3ba{bottom:556.066667pt;}
.y136{bottom:556.108239pt;}
.y357{bottom:556.908952pt;}
.y19d{bottom:558.489741pt;}
.y1a0{bottom:558.501075pt;}
.y1a3{bottom:558.512408pt;}
.y197{bottom:558.715053pt;}
.y319{bottom:560.016954pt;}
.y482{bottom:560.386667pt;}
.y43c{bottom:560.706667pt;}
.y41e{bottom:562.786667pt;}
.y2e8{bottom:566.718953pt;}
.y54{bottom:567.480306pt;}
.y14{bottom:568.187907pt;}
.y29e{bottom:568.653564pt;}
.ycc{bottom:568.653605pt;}
.y1e9{bottom:568.777588pt;}
.y206{bottom:568.777730pt;}
.y11d{bottom:569.322906pt;}
.y129{bottom:569.379573pt;}
.y135{bottom:569.436239pt;}
.y392{bottom:570.137620pt;}
.y356{bottom:570.236952pt;}
.y196{bottom:572.043053pt;}
.y318{bottom:573.344954pt;}
.y45d{bottom:575.266667pt;}
.y19c{bottom:580.193075pt;}
.y223{bottom:580.449885pt;}
.y260{bottom:580.450292pt;}
.y3d5{bottom:581.346667pt;}
.y11c{bottom:582.650906pt;}
.y128{bottom:582.707573pt;}
.y134{bottom:582.764239pt;}
.y3fb{bottom:582.786667pt;}
.y2e7{bottom:583.385620pt;}
.y47f{bottom:583.426667pt;}
.y391{bottom:583.465620pt;}
.y355{bottom:583.564952pt;}
.y53{bottom:584.146973pt;}
.y13{bottom:584.854574pt;}
.y9c{bottom:585.320231pt;}
.ycb{bottom:585.320272pt;}
.y1e8{bottom:585.444255pt;}
.y205{bottom:585.444397pt;}
.y195{bottom:585.563579pt;}
.y1e5{bottom:593.295047pt;}
.y43b{bottom:594.973333pt;}
.y11b{bottom:595.978906pt;}
.y127{bottom:596.035573pt;}
.y133{bottom:596.092239pt;}
.y3d4{bottom:596.093333pt;}
.y390{bottom:596.793620pt;}
.y354{bottom:596.892952pt;}
.y45c{bottom:597.533333pt;}
.y2e6{bottom:600.052287pt;}
.y52{bottom:600.813639pt;}
.y12{bottom:601.521240pt;}
.y9b{bottom:601.986898pt;}
.yca{bottom:601.986938pt;}
.y1e7{bottom:602.110921pt;}
.y204{bottom:602.111064pt;}
.y3b9{bottom:603.453333pt;}
.y3fa{bottom:603.773333pt;}
.y1e4{bottom:606.623047pt;}
.y317{bottom:606.664954pt;}
.y11a{bottom:609.306906pt;}
.y126{bottom:609.363573pt;}
.y132{bottom:609.420239pt;}
.y38f{bottom:610.121620pt;}
.y353{bottom:610.220952pt;}
.y2e5{bottom:616.718953pt;}
.y43a{bottom:617.213333pt;}
.y51{bottom:617.480306pt;}
.y11{bottom:618.187907pt;}
.y9a{bottom:618.653564pt;}
.yc9{bottom:618.653605pt;}
.y1e6{bottom:618.777588pt;}
.y203{bottom:618.777730pt;}
.y3d3{bottom:619.453333pt;}
.y45b{bottom:619.773333pt;}
.y22b{bottom:622.813922pt;}
.y23b{bottom:622.927251pt;}
.y38e{bottom:623.449620pt;}
.y352{bottom:623.548952pt;}
.y111{bottom:625.921573pt;}
.y115{bottom:625.932906pt;}
.y119{bottom:625.944239pt;}
.y3f9{bottom:628.733333pt;}
.y41d{bottom:629.053333pt;}
.y47e{bottom:629.373333pt;}
.y316{bottom:633.332287pt;}
.y2e4{bottom:633.385620pt;}
.y50{bottom:634.146973pt;}
.y162{bottom:634.327750pt;}
.y10{bottom:634.854574pt;}
.y99{bottom:635.320231pt;}
.yc8{bottom:635.320272pt;}
.y38d{bottom:636.777620pt;}
.y351{bottom:636.876952pt;}
.y110{bottom:639.249573pt;}
.y114{bottom:639.260906pt;}
.y118{bottom:639.272239pt;}
.y439{bottom:639.293333pt;}
.y3d2{bottom:641.693333pt;}
.y3b8{bottom:641.853333pt;}
.y45a{bottom:644.733333pt;}
.y315{bottom:646.660287pt;}
.y161{bottom:647.655750pt;}
.y38c{bottom:650.105620pt;}
.y3aa{bottom:650.173607pt;}
.y350{bottom:650.204952pt;}
.y4f{bottom:650.813639pt;}
.yf{bottom:651.521240pt;}
.y98{bottom:651.986898pt;}
.yc7{bottom:651.986938pt;}
.y10f{bottom:652.577573pt;}
.y113{bottom:652.588906pt;}
.y117{bottom:652.600239pt;}
.y47d{bottom:653.053333pt;}
.y314{bottom:659.988287pt;}
.y3f8{bottom:661.533333pt;}
.y38b{bottom:663.433620pt;}
.y3a9{bottom:663.501607pt;}
.y34f{bottom:663.532952pt;}
.y160{bottom:664.769084pt;}
.y3d1{bottom:665.053333pt;}
.y10e{bottom:665.905573pt;}
.y112{bottom:665.916906pt;}
.y116{bottom:665.928239pt;}
.y2e3{bottom:666.718953pt;}
.y4e{bottom:667.480306pt;}
.ye{bottom:668.187907pt;}
.y97{bottom:668.653564pt;}
.yc6{bottom:668.653605pt;}
.y3b7{bottom:670.333333pt;}
.y21c{bottom:670.782918pt;}
.y313{bottom:673.316287pt;}
.y41a{bottom:675.773333pt;}
.y23c{bottom:675.978584pt;}
.y47c{bottom:676.093333pt;}
.y38a{bottom:676.761620pt;}
.y34e{bottom:676.860952pt;}
.y459{bottom:677.533333pt;}
.y3f7{bottom:682.333333pt;}
.y103{bottom:682.497576pt;}
.y108{bottom:682.520241pt;}
.y10d{bottom:682.542906pt;}
.y438{bottom:683.773333pt;}
.y4d{bottom:684.146973pt;}
.yd{bottom:684.854574pt;}
.y96{bottom:685.320231pt;}
.y312{bottom:686.644287pt;}
.y3d0{bottom:687.293333pt;}
.y194{bottom:689.444913pt;}
.y389{bottom:690.089620pt;}
.y34d{bottom:690.188952pt;}
.y3a8{bottom:690.248273pt;}
.y3b6{bottom:691.613333pt;}
.y102{bottom:695.825576pt;}
.y107{bottom:695.848241pt;}
.y10c{bottom:695.870906pt;}
.y47b{bottom:698.973333pt;}
.y4c{bottom:700.813639pt;}
.yc{bottom:701.521240pt;}
.y95{bottom:701.986898pt;}
.y2e2{bottom:701.986938pt;}
.y193{bottom:702.772913pt;}
.y388{bottom:703.417620pt;}
.y34c{bottom:703.516952pt;}
.y3a7{bottom:703.576273pt;}
.y458{bottom:705.053333pt;}
.y437{bottom:706.013333pt;}
.y3f6{bottom:707.293333pt;}
.y101{bottom:709.153576pt;}
.y106{bottom:709.176241pt;}
.y10b{bottom:709.198906pt;}
.y3cf{bottom:710.653333pt;}
.y311{bottom:713.310954pt;}
.y3b5{bottom:714.173333pt;}
.y387{bottom:716.745620pt;}
.y34b{bottom:716.844952pt;}
.y3a6{bottom:716.904273pt;}
.y4b{bottom:717.480306pt;}
.yb{bottom:718.187907pt;}
.y224{bottom:718.478552pt;}
.y261{bottom:718.478959pt;}
.y2bc{bottom:718.490292pt;}
.y94{bottom:718.653564pt;}
.y2e1{bottom:718.653605pt;}
.y192{bottom:719.478246pt;}
.y479{bottom:722.013333pt;}
.y100{bottom:722.481576pt;}
.y105{bottom:722.504241pt;}
.y10a{bottom:722.526906pt;}
.y386{bottom:730.073620pt;}
.y34a{bottom:730.172952pt;}
.y3a5{bottom:730.232273pt;}
.y436{bottom:730.973333pt;}
.y457{bottom:732.573333pt;}
.y191{bottom:732.806246pt;}
.y3ce{bottom:732.893333pt;}
.y4a{bottom:734.146973pt;}
.y3b4{bottom:735.293333pt;}
.y29d{bottom:735.320231pt;}
.y2e0{bottom:735.320272pt;}
.yff{bottom:735.809576pt;}
.y104{bottom:735.832241pt;}
.y109{bottom:735.854906pt;}
.y3f5{bottom:741.373333pt;}
.y417{bottom:742.013333pt;}
.y310{bottom:743.378954pt;}
.y385{bottom:743.401620pt;}
.y349{bottom:743.500952pt;}
.y3a4{bottom:743.560273pt;}
.y435{bottom:747.773333pt;}
.y188{bottom:749.420913pt;}
.y18c{bottom:749.432246pt;}
.y190{bottom:749.443579pt;}
.y49{bottom:750.813639pt;}
.y93{bottom:751.986898pt;}
.yc5{bottom:751.986928pt;}
.y2df{bottom:751.986938pt;}
.yf4{bottom:752.401579pt;}
.yf9{bottom:752.424244pt;}
.yfe{bottom:752.446909pt;}
.y30f{bottom:756.706954pt;}
.y384{bottom:756.729620pt;}
.y348{bottom:756.828952pt;}
.y3a3{bottom:756.888273pt;}
.ya{bottom:757.461469pt;}
.y3cd{bottom:757.853333pt;}
.y456{bottom:760.093333pt;}
.y3b3{bottom:762.493333pt;}
.y187{bottom:762.748913pt;}
.y18b{bottom:762.760246pt;}
.y18f{bottom:762.771579pt;}
.y3f4{bottom:764.733333pt;}
.yf3{bottom:765.729579pt;}
.yf8{bottom:765.752244pt;}
.yfd{bottom:765.774909pt;}
.y48{bottom:767.480306pt;}
.y477{bottom:768.093333pt;}
.y29c{bottom:768.653564pt;}
.yc4{bottom:768.653595pt;}
.y2de{bottom:768.653605pt;}
.y30e{bottom:770.034954pt;}
.y383{bottom:770.057620pt;}
.y347{bottom:770.156952pt;}
.y3a2{bottom:770.216273pt;}
.y9{bottom:770.789469pt;}
.y186{bottom:776.076913pt;}
.y18a{bottom:776.088246pt;}
.y18e{bottom:776.099579pt;}
.yf2{bottom:779.057579pt;}
.y225{bottom:779.066552pt;}
.y262{bottom:779.066959pt;}
.y2bd{bottom:779.078292pt;}
.yf7{bottom:779.080244pt;}
.yfc{bottom:779.102909pt;}
.y434{bottom:781.533333pt;}
.y30d{bottom:783.362954pt;}
.y382{bottom:783.385620pt;}
.y346{bottom:783.484952pt;}
.y3a1{bottom:783.544273pt;}
.y47{bottom:784.146973pt;}
.y92{bottom:785.320231pt;}
.yc3{bottom:785.320262pt;}
.y2dd{bottom:785.320272pt;}
.y3f3{bottom:786.973333pt;}
.y455{bottom:787.613333pt;}
.y415{bottom:788.733333pt;}
.y185{bottom:789.404913pt;}
.y189{bottom:789.416246pt;}
.y18d{bottom:789.427579pt;}
.y3b2{bottom:789.693333pt;}
.y3cc{bottom:790.653333pt;}
.y475{bottom:790.973333pt;}
.yf1{bottom:792.385579pt;}
.yf6{bottom:792.408244pt;}
.yfb{bottom:792.430909pt;}
.y30c{bottom:796.690954pt;}
.y381{bottom:796.713620pt;}
.y345{bottom:796.812952pt;}
.y3a0{bottom:796.872273pt;}
.y77{bottom:800.813599pt;}
.y46{bottom:800.813639pt;}
.y91{bottom:801.986898pt;}
.yc2{bottom:801.986928pt;}
.y2dc{bottom:801.986938pt;}
.yf0{bottom:805.713579pt;}
.yf5{bottom:805.736244pt;}
.yfa{bottom:805.758909pt;}
.y16e{bottom:805.928913pt;}
.y179{bottom:805.985579pt;}
.y184{bottom:806.042246pt;}
.y8{bottom:808.656169pt;}
.y30b{bottom:810.018954pt;}
.y380{bottom:810.041620pt;}
.y344{bottom:810.140952pt;}
.y39f{bottom:810.200273pt;}
.y3f2{bottom:810.373333pt;}
.y3cb{bottom:811.493333pt;}
.y3b1{bottom:812.773333pt;}
.y454{bottom:815.173333pt;}
.y433{bottom:815.653333pt;}
.y413{bottom:816.133333pt;}
.y76{bottom:817.480265pt;}
.y45{bottom:817.480306pt;}
.y90{bottom:818.653564pt;}
.yc1{bottom:818.653595pt;}
.y2db{bottom:818.653605pt;}
.y16d{bottom:819.256913pt;}
.y178{bottom:819.313579pt;}
.y183{bottom:819.370246pt;}
.y2c4{bottom:821.453658pt;}
.y2ca{bottom:821.498956pt;}
.y27a{bottom:821.510368pt;}
.y2cf{bottom:821.544254pt;}
.yef{bottom:822.350913pt;}
.y30a{bottom:823.346954pt;}
.y37f{bottom:823.369620pt;}
.y343{bottom:823.468952pt;}
.y39e{bottom:823.528273pt;}
.y453{bottom:832.133333pt;}
.y16c{bottom:832.584913pt;}
.y3f1{bottom:832.613333pt;}
.y177{bottom:832.641579pt;}
.y182{bottom:832.698246pt;}
.y75{bottom:834.146932pt;}
.y44{bottom:834.146973pt;}
.y8f{bottom:835.320231pt;}
.yc0{bottom:835.320262pt;}
.y2da{bottom:835.320272pt;}
.yee{bottom:835.678913pt;}
.y3ca{bottom:836.613333pt;}
.y37e{bottom:836.697620pt;}
.y342{bottom:836.796952pt;}
.y39d{bottom:836.856273pt;}
.y473{bottom:837.093333pt;}
.y432{bottom:837.893333pt;}
.y3b0{bottom:841.573333pt;}
.y410{bottom:843.653333pt;}
.y16b{bottom:845.912913pt;}
.y176{bottom:845.969579pt;}
.y181{bottom:846.026246pt;}
.y7{bottom:848.377441pt;}
.y309{bottom:850.014287pt;}
.y37d{bottom:850.025620pt;}
.y341{bottom:850.124952pt;}
.y39c{bottom:850.184273pt;}
.y74{bottom:850.813599pt;}
.y43{bottom:850.813639pt;}
.y8e{bottom:851.986898pt;}
.ybf{bottom:851.986928pt;}
.y2d9{bottom:851.986938pt;}
.ye4{bottom:852.282246pt;}
.ye7{bottom:852.293579pt;}
.yea{bottom:852.304913pt;}
.yed{bottom:852.316246pt;}
.y3f0{bottom:855.973333pt;}
.y3c9{bottom:858.373333pt;}
.y16a{bottom:859.240913pt;}
.y175{bottom:859.297579pt;}
.y180{bottom:859.354246pt;}
.y3af{bottom:859.813333pt;}
.y431{bottom:859.973333pt;}
.y472{bottom:861.893333pt;}
.y308{bottom:863.342287pt;}
.y37c{bottom:863.353620pt;}
.y340{bottom:863.452952pt;}
.y39b{bottom:863.512273pt;}
.ye3{bottom:865.610246pt;}
.ye6{bottom:865.621579pt;}
.ye9{bottom:865.632913pt;}
.yec{bottom:865.644246pt;}
.y452{bottom:866.213333pt;}
.y73{bottom:867.480265pt;}
.y42{bottom:867.480306pt;}
.y8d{bottom:868.653564pt;}
.ybe{bottom:868.653595pt;}
.y2d8{bottom:868.653605pt;}
.y6{bottom:872.377441pt;}
.y169{bottom:872.568913pt;}
.y174{bottom:872.625579pt;}
.y17f{bottom:872.682246pt;}
.y2c5{bottom:874.901658pt;}
.y2d0{bottom:874.992254pt;}
.y307{bottom:876.670287pt;}
.y37b{bottom:876.681620pt;}
.y33f{bottom:876.780952pt;}
.y39a{bottom:876.840273pt;}
.y3ef{bottom:878.213333pt;}
.ye2{bottom:878.938246pt;}
.ye5{bottom:878.949579pt;}
.ye8{bottom:878.960913pt;}
.yeb{bottom:878.972246pt;}
.y3c8{bottom:879.653333pt;}
.y430{bottom:882.213333pt;}
.y72{bottom:884.146932pt;}
.y41{bottom:884.146973pt;}
.y8c{bottom:885.320231pt;}
.ybd{bottom:885.320262pt;}
.y2d7{bottom:885.320272pt;}
.y470{bottom:885.573333pt;}
.y168{bottom:885.896913pt;}
.y173{bottom:885.953579pt;}
.y17e{bottom:886.010246pt;}
.y451{bottom:888.453333pt;}
.y306{bottom:889.998287pt;}
.y37a{bottom:890.009620pt;}
.y33e{bottom:890.108952pt;}
.y399{bottom:890.168273pt;}
.yd8{bottom:895.541579pt;}
.ydb{bottom:895.552913pt;}
.yde{bottom:895.564246pt;}
.ye1{bottom:895.575579pt;}
.y5{bottom:896.377441pt;}
.y167{bottom:899.224913pt;}
.y172{bottom:899.281579pt;}
.y17d{bottom:899.338246pt;}
.y3ee{bottom:900.453333pt;}
.y71{bottom:900.813599pt;}
.y40{bottom:900.813639pt;}
.y8b{bottom:901.986898pt;}
.ybc{bottom:901.986928pt;}
.y2d6{bottom:901.986938pt;}
.y379{bottom:903.337620pt;}
.y33d{bottom:903.436952pt;}
.y398{bottom:903.496273pt;}
.y42f{bottom:904.453333pt;}
.yd7{bottom:908.869579pt;}
.yda{bottom:908.880913pt;}
.ydd{bottom:908.892246pt;}
.ye0{bottom:908.903579pt;}
.y3ae{bottom:912.133333pt;}
.y166{bottom:912.552913pt;}
.y171{bottom:912.609579pt;}
.y17c{bottom:912.666246pt;}
.y450{bottom:913.413333pt;}
.y305{bottom:916.665620pt;}
.y33c{bottom:916.764952pt;}
.y397{bottom:916.824273pt;}
.y3c7{bottom:917.253333pt;}
.y70{bottom:917.480265pt;}
.y3f{bottom:917.480306pt;}
.y8a{bottom:918.653564pt;}
.ybb{bottom:918.653595pt;}
.y2d5{bottom:918.653605pt;}
.yd6{bottom:922.197579pt;}
.yd9{bottom:922.208913pt;}
.ydc{bottom:922.220246pt;}
.ydf{bottom:922.231579pt;}
.y3ed{bottom:922.693333pt;}
.y165{bottom:925.880913pt;}
.y170{bottom:925.937579pt;}
.y17b{bottom:925.994246pt;}
.y42e{bottom:926.693333pt;}
.yd3{bottom:928.996306pt;}
.y304{bottom:929.993620pt;}
.y33b{bottom:930.092952pt;}
.y396{bottom:930.152273pt;}
.y6f{bottom:934.146932pt;}
.y3e{bottom:934.146973pt;}
.y89{bottom:935.320231pt;}
.yba{bottom:935.320262pt;}
.y2d4{bottom:935.320272pt;}
.y46f{bottom:938.053333pt;}
.yd5{bottom:938.834913pt;}
.y164{bottom:939.208913pt;}
.y16f{bottom:939.265579pt;}
.y17a{bottom:939.322246pt;}
.yd2{bottom:942.324306pt;}
.y303{bottom:943.321620pt;}
.y33a{bottom:943.420952pt;}
.y395{bottom:943.480273pt;}
.y3ec{bottom:944.773333pt;}
.y3ad{bottom:945.893333pt;}
.y44f{bottom:946.213333pt;}
.y42d{bottom:948.773333pt;}
.y6e{bottom:950.813599pt;}
.y3d{bottom:950.813639pt;}
.y88{bottom:951.986898pt;}
.yb9{bottom:951.986928pt;}
.y2d3{bottom:951.986938pt;}
.y3c6{bottom:955.013333pt;}
.yd1{bottom:955.652306pt;}
.y4{bottom:956.561849pt;}
.y302{bottom:956.649620pt;}
.y339{bottom:956.748952pt;}
.y394{bottom:956.808273pt;}
.yd4{bottom:963.802246pt;}
.y46e{bottom:965.733333pt;}
.y44e{bottom:967.013333pt;}
.y6d{bottom:967.480265pt;}
.y3c{bottom:967.480306pt;}
.y87{bottom:968.653564pt;}
.yb8{bottom:968.653595pt;}
.y2d2{bottom:968.653605pt;}
.yd0{bottom:968.980306pt;}
.y163{bottom:968.989743pt;}
.y301{bottom:969.977620pt;}
.y338{bottom:970.076952pt;}
.y393{bottom:970.136273pt;}
.y3eb{bottom:971.013333pt;}
.y40b{bottom:979.173333pt;}
.y3ac{bottom:983.973333pt;}
.y3{bottom:986.299161pt;}
.y44d{bottom:987.973333pt;}
.y46d{bottom:994.533333pt;}
.y3ea{bottom:996.133333pt;}
.y2{bottom:1001.406494pt;}
.y3b{bottom:1002.206543pt;}
.y3ab{bottom:1012.773333pt;}
.y3e9{bottom:1012.933333pt;}
.h1f{height:3.612500pt;}
.h22{height:19.438125pt;}
.he{height:22.403733pt;}
.h33{height:22.880000pt;}
.h2f{height:23.040000pt;}
.h37{height:23.072000pt;}
.h30{height:24.160000pt;}
.h1c{height:24.991875pt;}
.h2b{height:27.360000pt;}
.h25{height:27.392000pt;}
.h24{height:27.520000pt;}
.h2{height:30.080000pt;}
.hc{height:32.005333pt;}
.hd{height:32.760417pt;}
.h32{height:37.479688pt;}
.h9{height:37.653333pt;}
.h1d{height:38.413438pt;}
.h7{height:38.453333pt;}
.h2e{height:38.828437pt;}
.h3{height:39.712000pt;}
.h10{height:39.712651pt;}
.h11{height:40.165333pt;}
.h17{height:41.543750pt;}
.h1b{height:42.578750pt;}
.h2c{height:42.866250pt;}
.h21{height:43.038750pt;}
.h36{height:45.920000pt;}
.h35{height:45.952000pt;}
.h20{height:45.972469pt;}
.h34{height:46.080000pt;}
.h31{height:46.112000pt;}
.hb{height:46.144000pt;}
.h19{height:46.281250pt;}
.h12{height:46.376000pt;}
.h26{height:46.720000pt;}
.h2a{height:46.880000pt;}
.h8{height:47.253333pt;}
.h13{height:47.826667pt;}
.h1a{height:47.963125pt;}
.h4{height:49.298667pt;}
.h18{height:49.766250pt;}
.hf{height:52.448000pt;}
.h1e{height:52.832812pt;}
.h2d{height:54.149062pt;}
.ha{height:54.560000pt;}
.h6{height:57.658667pt;}
.h38{height:59.360000pt;}
.h27{height:66.240000pt;}
.h28{height:66.272000pt;}
.h5{height:75.605333pt;}
.h29{height:85.440000pt;}
.h14{height:101.138667pt;}
.h23{height:132.146667pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.h15{height:1122.560000pt;}
.h16{height:1122.666667pt;}
.w4{width:44.160000pt;}
.w5{width:61.440000pt;}
.w9{width:66.080000pt;}
.wb{width:75.520000pt;}
.wc{width:85.152000pt;}
.wa{width:104.032000pt;}
.w7{width:226.906667pt;}
.w8{width:330.786667pt;}
.w6{width:496.253333pt;}
.wd{width:557.693333pt;}
.w0{width:793.701333pt;}
.w3{width:793.759988pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x61{left:7.200000pt;}
.x67{left:18.560000pt;}
.x62{left:23.994667pt;}
.x5d{left:29.274667pt;}
.x68{left:37.434667pt;}
.x69{left:38.394667pt;}
.x5f{left:46.560000pt;}
.x2{left:68.031469pt;}
.x3{left:75.717199pt;}
.x6{left:83.164819pt;}
.x5{left:86.929867pt;}
.x52{left:90.709469pt;}
.x53{left:96.031988pt;}
.x3b{left:98.209462pt;}
.x13{left:99.189738pt;}
.x54{left:100.191988pt;}
.x56{left:112.671988pt;}
.x3c{left:120.176137pt;}
.x14{left:121.156403pt;}
.x5b{left:124.511988pt;}
.x59{left:126.271988pt;}
.x3d{left:141.879471pt;}
.x15{left:142.859736pt;}
.x5c{left:147.386655pt;}
.x3e{left:155.207471pt;}
.x16{left:156.187736pt;}
.x5a{left:166.426655pt;}
.x5e{left:168.506667pt;}
.x17{left:180.497736pt;}
.x18{left:193.825736pt;}
.x19{left:207.153736pt;}
.x1a{left:223.791069pt;}
.x60{left:229.946667pt;}
.x55{left:232.506655pt;}
.x3f{left:236.422137pt;}
.x8{left:238.110128pt;}
.x1b{left:240.428403pt;}
.xf{left:246.111437pt;}
.x40{left:253.059471pt;}
.x1c{left:257.065736pt;}
.x41{left:266.387471pt;}
.x1d{left:270.393736pt;}
.x58{left:275.586655pt;}
.x42{left:283.024804pt;}
.x1e{left:287.031069pt;}
.x50{left:290.935338pt;}
.x1f{left:300.359069pt;}
.x51{left:308.048672pt;}
.x20{left:313.687069pt;}
.x63{left:322.946667pt;}
.x21{left:330.324403pt;}
.x22{left:343.652403pt;}
.x57{left:350.946655pt;}
.x23{left:356.980403pt;}
.x24{left:373.617736pt;}
.x25{left:386.945736pt;}
.x64{left:389.026667pt;}
.x26{left:400.273736pt;}
.xa{left:406.840795pt;}
.x4{left:408.188924pt;}
.x27{left:413.601736pt;}
.x7{left:423.312673pt;}
.x28{left:430.239069pt;}
.x10{left:439.690674pt;}
.x29{left:443.567069pt;}
.x2a{left:456.895069pt;}
.x9{left:464.278121pt;}
.x2b{left:470.223069pt;}
.x43{left:472.835471pt;}
.x2c{left:486.860403pt;}
.x65{left:493.053333pt;}
.x2d{left:500.188403pt;}
.x2e{left:516.825736pt;}
.x2f{left:530.153736pt;}
.x44{left:532.766137pt;}
.xb{left:538.239460pt;}
.x30{left:546.791069pt;}
.x45{left:549.403471pt;}
.x31{left:560.119069pt;}
.x46{left:562.731471pt;}
.x11{left:566.917864pt;}
.x66{left:568.573333pt;}
.x32{left:576.756403pt;}
.x47{left:579.368804pt;}
.x33{left:590.084403pt;}
.x48{left:592.696804pt;}
.x34{left:606.721736pt;}
.x49{left:609.334137pt;}
.xc{left:617.674792pt;}
.x35{left:620.049736pt;}
.x4a{left:622.662137pt;}
.x36{left:636.687069pt;}
.x4b{left:639.299471pt;}
.x1{left:647.307210pt;}
.x37{left:650.015069pt;}
.x4c{left:655.936804pt;}
.x38{left:663.343069pt;}
.xd{left:665.671411pt;}
.x4d{left:672.574137pt;}
.x39{left:679.980403pt;}
.x4e{left:685.902137pt;}
.x12{left:691.199192pt;}
.x3a{left:693.308403pt;}
.xe{left:702.334743pt;}
.x4f{left:715.867471pt;}
}




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