
    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_89c4ec10c33e103e9f8e807a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_04cad93e24574c4db734e578.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.992000;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_2cb280bf6ab87eb8305b1e50.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002000;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_30c6ef0f7bdfb13c4053b6b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_c12904adbfea3633ae6ca2df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;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_2829f32b65ab3e1fc0b6beb4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.774000;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_53e3b32c2747c80e4cc546ed.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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_0d7df2a868f6b45bafe5cd9f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984000;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_7a3dd0d482d36e3696c21b08.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.092000;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_06db1fb44f09cf753a051692.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.070312;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_fb45623e8a63564888173987.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5bba709a80b7124ec28d3448.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_da968b2bee8f9533d3243455.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2d42b9572d0cdeb329e434d3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.860352;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_242bbc96dd129a1f2d95c38f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_37510be8ae74226b6c7c9163.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1bf3e0e2939deaaceb7de2c8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_dc969c3292f17ae5789c12c3.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_e00b7f27cdd93976768a60dc.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.948000;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_25748b385b3bfb60b256ae1a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_df7350397381625e34504b6b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_8d3574b5fd7fa739e3722572.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.092000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_2f169c78ecb1979cfef8197b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_04cad93e24574c4db734e578.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.992000;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:ff1b;src:url('chunks/assets/font_c67c690c722095b0e6b0b3c9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.984000;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:ff1c;src:url('chunks/assets/font_154e45404433fbe448aa633b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.984000;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:ff1d;src:url('chunks/assets/font_c12904adbfea3633ae6ca2df.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.984000;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:ff1e;src:url('chunks/assets/font_2829f32b65ab3e1fc0b6beb4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.774000;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:ff1f;src:url('chunks/assets/font_53e3b32c2747c80e4cc546ed.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.978000;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:ff20;src:url('chunks/assets/font_420f509be61032344d8c2f25.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.984000;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:ff21;src:url('chunks/assets/font_cc0ba3751ae8baa6d5fe61ca.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.762000;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.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.252698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252698,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);}
.v4{vertical-align:-20.880000px;}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.842560px;}
.lsa9{letter-spacing:-1.140000px;}
.ls8{letter-spacing:-0.792000px;}
.ls2{letter-spacing:-0.780000px;}
.ls60{letter-spacing:-0.661320px;}
.ls9{letter-spacing:-0.576000px;}
.lsa8{letter-spacing:-0.570000px;}
.lsa1{letter-spacing:-0.551352px;}
.ls52{letter-spacing:-0.480960px;}
.ls44{letter-spacing:-0.420840px;}
.ls22{letter-spacing:-0.360720px;}
.lsf{letter-spacing:-0.300600px;}
.ls1d{letter-spacing:-0.240480px;}
.ls5f{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.192240px;}
.ls1c{letter-spacing:-0.180360px;}
.lsaa{letter-spacing:-0.165147px;}
.ls1b{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.120240px;}
.ls5e{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.060120px;}
.ls4b{letter-spacing:-0.038880px;}
.ls0{letter-spacing:0.000000px;}
.ls90{letter-spacing:0.006012px;}
.ls4d{letter-spacing:0.012024px;}
.ls68{letter-spacing:0.018036px;}
.ls94{letter-spacing:0.030060px;}
.ls72{letter-spacing:0.036072px;}
.ls93{letter-spacing:0.048096px;}
.ls23{letter-spacing:0.053280px;}
.ls64{letter-spacing:0.054108px;}
.lsb{letter-spacing:0.060120px;}
.ls85{letter-spacing:0.066132px;}
.ls96{letter-spacing:0.072144px;}
.ls70{letter-spacing:0.084168px;}
.ls46{letter-spacing:0.090180px;}
.ls4{letter-spacing:0.096120px;}
.ls27{letter-spacing:0.102204px;}
.ls10{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.108216px;}
.ls97{letter-spacing:0.114228px;}
.lsa{letter-spacing:0.120240px;}
.ls74{letter-spacing:0.126252px;}
.ls9d{letter-spacing:0.132264px;}
.ls9e{letter-spacing:0.138276px;}
.ls32{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.144180px;}
.ls4e{letter-spacing:0.150300px;}
.ls40{letter-spacing:0.156312px;}
.ls5d{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.174348px;}
.ls6e{letter-spacing:0.178200px;}
.lse{letter-spacing:0.180360px;}
.ls6{letter-spacing:0.192240px;}
.ls5c{letter-spacing:0.216000px;}
.ls66{letter-spacing:0.240480px;}
.ls8e{letter-spacing:0.280800px;}
.ls69{letter-spacing:0.300600px;}
.ls28{letter-spacing:0.360720px;}
.ls71{letter-spacing:0.480960px;}
.ls55{letter-spacing:0.486000px;}
.ls7b{letter-spacing:0.486972px;}
.lsa3{letter-spacing:0.496217px;}
.ls1e{letter-spacing:0.517032px;}
.ls43{letter-spacing:0.541080px;}
.lsa0{letter-spacing:0.551352px;}
.ls7d{letter-spacing:0.559116px;}
.ls81{letter-spacing:0.583164px;}
.lsa5{letter-spacing:0.771898px;}
.lsa4{letter-spacing:0.868385px;}
.ls4f{letter-spacing:0.901800px;}
.lsa2{letter-spacing:1.047569px;}
.lsa7{letter-spacing:1.200000px;}
.ls98{letter-spacing:1.214424px;}
.ls3c{letter-spacing:1.250496px;}
.ls4c{letter-spacing:1.262520px;}
.ls3d{letter-spacing:1.286568px;}
.ls53{letter-spacing:1.563120px;}
.ls6a{letter-spacing:1.569132px;}
.ls13{letter-spacing:1.623240px;}
.ls73{letter-spacing:1.893780px;}
.ls3e{letter-spacing:1.941876px;}
.ls67{letter-spacing:1.953900px;}
.ls3f{letter-spacing:1.959912px;}
.ls19{letter-spacing:1.983960px;}
.lsa6{letter-spacing:2.160000px;}
.ls45{letter-spacing:2.344680px;}
.ls7c{letter-spacing:2.362716px;}
.ls2c{letter-spacing:2.705400px;}
.ls86{letter-spacing:3.048084px;}
.ls2e{letter-spacing:3.048480px;}
.ls20{letter-spacing:3.066120px;}
.ls37{letter-spacing:3.078144px;}
.lsab{letter-spacing:3.307450px;}
.ls3b{letter-spacing:3.336660px;}
.ls51{letter-spacing:3.396780px;}
.ls21{letter-spacing:3.420828px;}
.ls48{letter-spacing:3.426840px;}
.ls1{letter-spacing:3.480000px;}
.ls2d{letter-spacing:3.733452px;}
.ls31{letter-spacing:3.787560px;}
.ls1f{letter-spacing:4.136256px;}
.ls3a{letter-spacing:4.148280px;}
.ls76{letter-spacing:4.400784px;}
.ls47{letter-spacing:4.424832px;}
.ls39{letter-spacing:4.509000px;}
.ls80{letter-spacing:4.541760px;}
.ls87{letter-spacing:4.857696px;}
.ls79{letter-spacing:4.869720px;}
.ls77{letter-spacing:4.893768px;}
.ls3{letter-spacing:4.902824px;}
.ls4a{letter-spacing:5.230440px;}
.ls8a{letter-spacing:5.266512px;}
.ls17{letter-spacing:5.591160px;}
.ls65{letter-spacing:5.921820px;}
.ls54{letter-spacing:5.951880px;}
.ls82{letter-spacing:6.336648px;}
.ls11{letter-spacing:6.673320px;}
.ls12{letter-spacing:6.691356px;}
.ls8f{letter-spacing:6.997968px;}
.ls18{letter-spacing:7.034040px;}
.ls14{letter-spacing:7.040052px;}
.ls5b{letter-spacing:7.398000px;}
.ls5a{letter-spacing:7.484400px;}
.ls99{letter-spacing:7.743456px;}
.ls49{letter-spacing:7.755480px;}
.ls84{letter-spacing:8.837640px;}
.ls7a{letter-spacing:9.559080px;}
.ls91{letter-spacing:11.001960px;}
.ls38{letter-spacing:11.362680px;}
.ls89{letter-spacing:12.084120px;}
.ls75{letter-spacing:13.527000px;}
.ls41{letter-spacing:14.609160px;}
.ls7e{letter-spacing:15.330600px;}
.ls50{letter-spacing:17.494920px;}
.ls78{letter-spacing:17.855640px;}
.ls58{letter-spacing:18.522000px;}
.ls7f{letter-spacing:18.937800px;}
.ls9f{letter-spacing:20.741400px;}
.ls92{letter-spacing:23.987880px;}
.ls88{letter-spacing:26.873640px;}
.ls15{letter-spacing:28.166220px;}
.ls6c{letter-spacing:28.188000px;}
.ls25{letter-spacing:29.031120px;}
.ls33{letter-spacing:30.726000px;}
.ls34{letter-spacing:31.136400px;}
.ls24{letter-spacing:36.951120px;}
.ls35{letter-spacing:40.160160px;}
.ls9a{letter-spacing:41.242320px;}
.ls95{letter-spacing:51.703200px;}
.ls83{letter-spacing:54.144000px;}
.ls42{letter-spacing:62.464680px;}
.ls30{letter-spacing:62.825400px;}
.ls2f{letter-spacing:63.546840px;}
.ls26{letter-spacing:64.311120px;}
.ls36{letter-spacing:70.039800px;}
.ls9c{letter-spacing:72.204120px;}
.ls9b{letter-spacing:72.925560px;}
.ls2b{letter-spacing:95.230080px;}
.ls8b{letter-spacing:127.548000px;}
.ls61{letter-spacing:163.548000px;}
.ls59{letter-spacing:170.028000px;}
.ls56{letter-spacing:191.304000px;}
.ls63{letter-spacing:219.708000px;}
.ls29{letter-spacing:219.831120px;}
.ls8d{letter-spacing:223.290000px;}
.ls8c{letter-spacing:226.530000px;}
.ls62{letter-spacing:279.090000px;}
.ls57{letter-spacing:416.286000px;}
.ls6b{letter-spacing:417.348000px;}
.ls6f{letter-spacing:441.486000px;}
.ls2a{letter-spacing:451.260720px;}
.ls6d{letter-spacing:513.144000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsfe{word-spacing:-36.320313px;}
.ws6{word-spacing:-26.913600px;}
.ws5{word-spacing:-26.721360px;}
.ws15{word-spacing:-16.893720px;}
.ws7{word-spacing:-16.833600px;}
.wsb{word-spacing:-16.773480px;}
.wsa{word-spacing:-16.713360px;}
.ws1d{word-spacing:-16.653240px;}
.ws8{word-spacing:-16.593120px;}
.ws1e{word-spacing:-16.533000px;}
.ws1f{word-spacing:-16.472880px;}
.ws9{word-spacing:-16.412760px;}
.ws38{word-spacing:-16.352640px;}
.ws5b{word-spacing:-16.292520px;}
.wse6{word-spacing:-16.232400px;}
.ws6c{word-spacing:-15.174000px;}
.ws45{word-spacing:-15.120000px;}
.ws6a{word-spacing:-15.012000px;}
.ws6b{word-spacing:-14.904000px;}
.ws44{word-spacing:-14.850000px;}
.ws92{word-spacing:-14.796000px;}
.wsf8{word-spacing:-13.587120px;}
.wsff{word-spacing:-13.353033px;}
.ws3{word-spacing:-13.344000px;}
.ws43{word-spacing:-10.808640px;}
.ws65{word-spacing:-10.769760px;}
.ws100{word-spacing:-8.249656px;}
.ws106{word-spacing:-7.761909px;}
.ws1{word-spacing:-4.902824px;}
.ws49{word-spacing:-4.148280px;}
.ws52{word-spacing:-3.787560px;}
.ws9a{word-spacing:-3.727440px;}
.wsac{word-spacing:-3.607200px;}
.ws67{word-spacing:-3.426840px;}
.ws10c{word-spacing:-3.307450px;}
.ws81{word-spacing:-3.294000px;}
.wse8{word-spacing:-3.246480px;}
.ws21{word-spacing:-3.066120px;}
.wsb2{word-spacing:-2.885760px;}
.ws50{word-spacing:-2.705400px;}
.wsec{word-spacing:-2.525040px;}
.ws2c{word-spacing:-2.344680px;}
.wsb4{word-spacing:-2.284560px;}
.wsf1{word-spacing:-2.224440px;}
.wsad{word-spacing:-2.164320px;}
.ws10a{word-spacing:-2.160000px;}
.ws2b{word-spacing:-1.983960px;}
.ws59{word-spacing:-1.803600px;}
.ws53{word-spacing:-1.743480px;}
.ws46{word-spacing:-1.623240px;}
.ws95{word-spacing:-1.503000px;}
.ws89{word-spacing:-1.442880px;}
.ws87{word-spacing:-1.382760px;}
.ws1c{word-spacing:-1.262520px;}
.wsb0{word-spacing:-1.142280px;}
.wsed{word-spacing:-1.082160px;}
.ws103{word-spacing:-1.047569px;}
.wsb1{word-spacing:-1.022040px;}
.ws27{word-spacing:-0.901800px;}
.ws105{word-spacing:-0.868385px;}
.ws6e{word-spacing:-0.810000px;}
.ws28{word-spacing:-0.781560px;}
.ws10e{word-spacing:-0.780000px;}
.wsb8{word-spacing:-0.721440px;}
.wsf9{word-spacing:-0.661320px;}
.ws101{word-spacing:-0.551352px;}
.ws40{word-spacing:-0.541080px;}
.ws104{word-spacing:-0.496217px;}
.ws94{word-spacing:-0.480960px;}
.ws4a{word-spacing:-0.432000px;}
.wsaa{word-spacing:-0.360720px;}
.ws14{word-spacing:-0.300600px;}
.wsf{word-spacing:-0.288360px;}
.ws8b{word-spacing:-0.240480px;}
.ws78{word-spacing:-0.216000px;}
.wse{word-spacing:-0.192240px;}
.ws12{word-spacing:-0.180360px;}
.ws7a{word-spacing:-0.162000px;}
.ws42{word-spacing:-0.120240px;}
.ws4f{word-spacing:-0.108000px;}
.wsc{word-spacing:-0.096120px;}
.ws16{word-spacing:-0.060120px;}
.ws71{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws83{word-spacing:0.038880px;}
.ws13{word-spacing:0.060120px;}
.ws8c{word-spacing:0.108000px;}
.ws18{word-spacing:0.120240px;}
.ws4e{word-spacing:0.162000px;}
.ws10b{word-spacing:0.165147px;}
.ws31{word-spacing:0.180360px;}
.wsd{word-spacing:0.192240px;}
.ws11{word-spacing:0.216000px;}
.wsf5{word-spacing:0.240480px;}
.ws20{word-spacing:0.270000px;}
.ws17{word-spacing:0.300600px;}
.ws77{word-spacing:0.324000px;}
.ws35{word-spacing:0.360720px;}
.ws9d{word-spacing:0.420840px;}
.ws69{word-spacing:0.480960px;}
.ws39{word-spacing:0.541080px;}
.ws102{word-spacing:0.551352px;}
.ws107{word-spacing:0.570000px;}
.ws10{word-spacing:0.576000px;}
.ws8d{word-spacing:0.648000px;}
.ws88{word-spacing:0.661320px;}
.ws93{word-spacing:0.721440px;}
.ws32{word-spacing:0.901800px;}
.wseb{word-spacing:1.022040px;}
.ws84{word-spacing:1.082160px;}
.ws109{word-spacing:1.140000px;}
.ws33{word-spacing:1.262520px;}
.ws4{word-spacing:1.344000px;}
.ws4b{word-spacing:1.350000px;}
.wsc2{word-spacing:1.442880px;}
.ws96{word-spacing:1.503000px;}
.ws36{word-spacing:1.623240px;}
.wsb3{word-spacing:1.743480px;}
.ws91{word-spacing:1.803600px;}
.wsa5{word-spacing:1.863720px;}
.ws26{word-spacing:1.983960px;}
.wsaf{word-spacing:2.104200px;}
.ws5a{word-spacing:2.164320px;}
.ws19{word-spacing:2.344680px;}
.ws64{word-spacing:2.464920px;}
.ws9b{word-spacing:2.525040px;}
.ws61{word-spacing:2.585160px;}
.ws3d{word-spacing:2.705400px;}
.ws47{word-spacing:2.825640px;}
.ws2f{word-spacing:3.066120px;}
.ws3e{word-spacing:3.186360px;}
.wsc3{word-spacing:3.246480px;}
.ws10d{word-spacing:3.307450px;}
.wsb9{word-spacing:3.366720px;}
.ws24{word-spacing:3.426840px;}
.wsc4{word-spacing:3.547080px;}
.ws85{word-spacing:3.607200px;}
.ws9c{word-spacing:3.667320px;}
.ws48{word-spacing:3.787560px;}
.ws3a{word-spacing:4.148280px;}
.wsf4{word-spacing:4.268520px;}
.ws8f{word-spacing:4.328640px;}
.ws3f{word-spacing:4.509000px;}
.ws79{word-spacing:4.590000px;}
.wsf3{word-spacing:4.689360px;}
.ws51{word-spacing:4.809600px;}
.wsae{word-spacing:4.869720px;}
.ws2{word-spacing:4.902824px;}
.wsee{word-spacing:4.989960px;}
.ws2a{word-spacing:5.170320px;}
.ws8e{word-spacing:5.290560px;}
.ws9e{word-spacing:5.350680px;}
.wsab{word-spacing:5.410800px;}
.ws30{word-spacing:5.531040px;}
.ws34{word-spacing:5.651280px;}
.ws37{word-spacing:5.891760px;}
.wsa6{word-spacing:6.072120px;}
.ws58{word-spacing:6.252480px;}
.ws6f{word-spacing:6.426000px;}
.wsc6{word-spacing:6.432840px;}
.ws22{word-spacing:6.613200px;}
.wsf7{word-spacing:6.673320px;}
.ws23{word-spacing:6.793560px;}
.ws29{word-spacing:6.973920px;}
.wsba{word-spacing:7.154280px;}
.ws86{word-spacing:7.274520px;}
.ws25{word-spacing:7.334640px;}
.ws75{word-spacing:7.506000px;}
.ws66{word-spacing:7.515000px;}
.ws55{word-spacing:7.695360px;}
.wsa0{word-spacing:7.815600px;}
.ws63{word-spacing:7.875720px;}
.ws62{word-spacing:8.056080px;}
.wsf0{word-spacing:8.236440px;}
.ws5c{word-spacing:8.416800px;}
.wsa4{word-spacing:8.777520px;}
.wsfd{word-spacing:9.138240px;}
.ws90{word-spacing:9.498960px;}
.ws2e{word-spacing:9.859680px;}
.wsea{word-spacing:10.220400px;}
.wsc7{word-spacing:10.400760px;}
.ws54{word-spacing:10.581120px;}
.ws8a{word-spacing:10.941840px;}
.wsc8{word-spacing:11.122200px;}
.ws1b{word-spacing:11.302560px;}
.ws97{word-spacing:11.482920px;}
.ws5e{word-spacing:11.663280px;}
.wse7{word-spacing:11.723400px;}
.ws1a{word-spacing:12.024000px;}
.wsbd{word-spacing:12.084120px;}
.wsfb{word-spacing:12.384720px;}
.ws68{word-spacing:12.745440px;}
.wsc0{word-spacing:12.805560px;}
.wsc1{word-spacing:13.106160px;}
.wsf2{word-spacing:13.647240px;}
.ws98{word-spacing:13.827600px;}
.ws60{word-spacing:14.188320px;}
.ws5f{word-spacing:14.549040px;}
.wsfa{word-spacing:14.909760px;}
.wsa9{word-spacing:15.270480px;}
.wsa8{word-spacing:15.330600px;}
.ws74{word-spacing:15.390000px;}
.wsf6{word-spacing:15.450840px;}
.wsbf{word-spacing:15.631200px;}
.wsbe{word-spacing:16.713360px;}
.ws108{word-spacing:17.043000px;}
.wsa7{word-spacing:17.074080px;}
.wse0{word-spacing:17.254440px;}
.ws41{word-spacing:17.434800px;}
.ws9f{word-spacing:17.615160px;}
.wsa2{word-spacing:17.795520px;}
.wsa1{word-spacing:17.975880px;}
.wscd{word-spacing:18.336600px;}
.ws99{word-spacing:18.516960px;}
.ws70{word-spacing:18.630000px;}
.ws57{word-spacing:18.877680px;}
.wsfc{word-spacing:20.681280px;}
.wsb7{word-spacing:21.042000px;}
.ws3b{word-spacing:21.763440px;}
.ws3c{word-spacing:22.124160px;}
.ws7e{word-spacing:22.950000px;}
.ws7d{word-spacing:23.706000px;}
.wsef{word-spacing:23.927760px;}
.wsc5{word-spacing:24.288480px;}
.wsc9{word-spacing:24.468840px;}
.ws72{word-spacing:25.704000px;}
.wsbb{word-spacing:26.452800px;}
.wsbc{word-spacing:26.993880px;}
.wsce{word-spacing:27.174240px;}
.ws2d{word-spacing:28.256400px;}
.wsca{word-spacing:28.617120px;}
.wscf{word-spacing:28.797480px;}
.wsa3{word-spacing:28.977840px;}
.wsd0{word-spacing:29.158200px;}
.ws4c{word-spacing:30.726000px;}
.wsd4{word-spacing:30.781440px;}
.ws4d{word-spacing:30.888000px;}
.wsd3{word-spacing:31.142160px;}
.wsd5{word-spacing:31.322520px;}
.wsd9{word-spacing:31.502880px;}
.wsd8{word-spacing:31.863600px;}
.ws5d{word-spacing:32.945760px;}
.ws80{word-spacing:33.426000px;}
.ws6d{word-spacing:33.804000px;}
.ws7c{word-spacing:34.830000px;}
.wsdc{word-spacing:37.214280px;}
.ws56{word-spacing:37.746000px;}
.ws7b{word-spacing:39.528000px;}
.wsd7{word-spacing:40.100040px;}
.ws7f{word-spacing:42.390000px;}
.wse3{word-spacing:44.248320px;}
.wsdb{word-spacing:51.643080px;}
.wsb5{word-spacing:52.364520px;}
.wsb6{word-spacing:52.725240px;}
.wsd6{word-spacing:56.693160px;}
.wse4{word-spacing:60.841440px;}
.wsdf{word-spacing:61.743240px;}
.ws73{word-spacing:61.830000px;}
.wsda{word-spacing:73.586880px;}
.wsd2{word-spacing:75.029760px;}
.wsde{word-spacing:78.636960px;}
.wsdd{word-spacing:78.997680px;}
.wse1{word-spacing:81.162000px;}
.wsd1{word-spacing:86.933520px;}
.wscb{word-spacing:90.540720px;}
.ws76{word-spacing:94.608000px;}
.wse9{word-spacing:97.334280px;}
.ws82{word-spacing:102.546000px;}
.wse5{word-spacing:111.763080px;}
.wscc{word-spacing:134.067600px;}
.wse2{word-spacing:138.396240px;}
._35{margin-left:-1721.100000px;}
._33{margin-left:-18.281983px;}
._11{margin-left:-16.237080px;}
._12{margin-left:-14.819760px;}
._f{margin-left:-13.169880px;}
._10{margin-left:-11.129400px;}
._e{margin-left:-9.152640px;}
._13{margin-left:-8.082720px;}
._14{margin-left:-6.964920px;}
._6{margin-left:-5.945400px;}
._1{margin-left:-4.806000px;}
._0{margin-left:-3.666000px;}
._2{margin-left:-2.565000px;}
._5{margin-left:-1.198800px;}
._7{width:1.095768px;}
._18{width:2.747520px;}
._c{width:4.749480px;}
._1e{width:5.767920px;}
._a{width:6.850080px;}
._1c{width:8.509032px;}
._b{width:9.675720px;}
._1b{width:11.054880px;}
._27{width:12.281544px;}
._2a{width:13.887720px;}
._22{width:17.172000px;}
._26{width:19.118160px;}
._d{width:21.819960px;}
._1f{width:23.204232px;}
._24{width:28.188000px;}
._25{width:30.060000px;}
._29{width:31.545000px;}
._20{width:42.876000px;}
._4{width:47.736000px;}
._19{width:51.678000px;}
._21{width:62.945640px;}
._1a{width:70.340400px;}
._17{width:77.314320px;}
._3{width:86.724000px;}
._23{width:105.520464px;}
._9{width:163.016928px;}
._1d{width:164.849040px;}
._15{width:168.816960px;}
._31{width:196.034256px;}
._28{width:211.464000px;}
._2f{width:237.514464px;}
._30{width:252.202464px;}
._2b{width:315.992232px;}
._16{width:375.389280px;}
._2c{width:399.854232px;}
._2e{width:543.672000px;}
._2d{width:549.828000px;}
._34{width:551.340000px;}
._32{width:844.221672px;}
._8{width:847.317960px;}
.fc7{color:rgb(26,24,26);}
.fc5{color:rgb(45,89,176);}
.fc4{color:transparent;}
.fc1{color:rgb(4,131,190);}
.fc6{color:rgb(128,128,128);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:24.120000px;}
.fs1d{font-size:26.175000px;}
.fs12{font-size:29.880000px;}
.fs1c{font-size:32.382600px;}
.fs1a{font-size:33.029400px;}
.fs11{font-size:36.000000px;}
.fs10{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fs9{font-size:48.003000px;}
.fs17{font-size:48.243600px;}
.fsa{font-size:54.000000px;}
.fs14{font-size:55.135200px;}
.fs18{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fse{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fsd{font-size:83.880000px;}
.fs15{font-size:86.148600px;}
.fsc{font-size:96.120000px;}
.fs2{font-size:102.000000px;}
.fs19{font-size:108.000000px;}
.fs6{font-size:150.000000px;}
.fs1b{font-size:157.497600px;}
.fs5{font-size:174.000000px;}
.fs8{font-size:233.467800px;}
.fs16{font-size:234.324600px;}
.y0{bottom:0.000000px;}
.y536{bottom:0.596250px;}
.y52e{bottom:12.763650px;}
.y52c{bottom:12.878139px;}
.y2d{bottom:18.922200px;}
.y52b{bottom:22.208944px;}
.y502{bottom:26.498850px;}
.y1c4{bottom:27.540000px;}
.y1b6{bottom:27.630000px;}
.y535{bottom:29.721000px;}
.y52a{bottom:31.539750px;}
.y534{bottom:38.169750px;}
.y538{bottom:39.753300px;}
.y23{bottom:41.482650px;}
.y2c{bottom:41.668500px;}
.y1c3{bottom:46.170000px;}
.y1dd{bottom:46.260000px;}
.y2e{bottom:46.877100px;}
.y501{bottom:48.897450px;}
.y4b{bottom:54.257400px;}
.y4a2{bottom:56.335230px;}
.y82{bottom:56.335680px;}
.y537{bottom:57.751050px;}
.y30{bottom:60.178064px;}
.y1c2{bottom:64.889850px;}
.y1ce{bottom:64.890000px;}
.y5{bottom:66.525004px;}
.y4a{bottom:72.252900px;}
.y4a1{bottom:73.529550px;}
.y81{bottom:73.530000px;}
.y2f{bottom:74.362950px;}
.y49{bottom:90.248400px;}
.y109{bottom:90.629850px;}
.y12e{bottom:90.630000px;}
.y3d7{bottom:91.085040px;}
.y2de{bottom:94.337640px;}
.y19b{bottom:95.036400px;}
.y14a{bottom:95.130000px;}
.y331{bottom:96.044940px;}
.y4{bottom:97.125005px;}
.y21d{bottom:97.352550px;}
.y39b{bottom:97.743330px;}
.y360{bottom:100.573020px;}
.y2a1{bottom:101.350530px;}
.y2fa{bottom:101.966760px;}
.y1fe{bottom:102.754980px;}
.y3b7{bottom:102.778380px;}
.y243{bottom:103.020660px;}
.y1e1{bottom:105.843690px;}
.y108{bottom:106.114350px;}
.y12d{bottom:106.114500px;}
.y149{bottom:106.380000px;}
.y48{bottom:108.243900px;}
.ya6{bottom:108.384570px;}
.y177{bottom:109.016550px;}
.y37a{bottom:109.080180px;}
.y4c7{bottom:109.285920px;}
.y3d6{bottom:111.781350px;}
.y2dd{bottom:115.033950px;}
.yd9{bottom:115.290000px;}
.y259{bottom:115.365420px;}
.y19a{bottom:115.732710px;}
.y330{bottom:116.741250px;}
.y348{bottom:118.015830px;}
.y21c{bottom:118.048860px;}
.y30e{bottom:118.053450px;}
.y39a{bottom:118.439640px;}
.y414{bottom:119.700000px;}
.y35f{bottom:121.269330px;}
.y107{bottom:121.679850px;}
.y49f{bottom:122.001750px;}
.y2f9{bottom:122.663070px;}
.y2a0{bottom:123.038820px;}
.y1fd{bottom:123.451290px;}
.y3b6{bottom:123.474690px;}
.y242{bottom:123.716970px;}
.y12c{bottom:126.180000px;}
.y1e0{bottom:126.540000px;}
.ya5{bottom:129.080880px;}
.y379{bottom:129.776490px;}
.y4c6{bottom:129.982230px;}
.y3d5{bottom:132.477660px;}
.y3ad{bottom:134.010000px;}
.y3f6{bottom:135.105480px;}
.y3f0{bottom:135.168030px;}
.y2dc{bottom:135.730260px;}
.y258{bottom:136.061730px;}
.y199{bottom:136.429020px;}
.y106{bottom:137.164350px;}
.y12b{bottom:137.430000px;}
.y32f{bottom:137.437560px;}
.y347{bottom:138.712140px;}
.y176{bottom:138.715830px;}
.y21b{bottom:138.745170px;}
.y30d{bottom:138.749760px;}
.y399{bottom:139.135950px;}
.y21{bottom:139.264499px;}
.y288{bottom:140.043690px;}
.y35e{bottom:141.965640px;}
.y2f8{bottom:143.359380px;}
.y29f{bottom:143.735130px;}
.y1fc{bottom:144.147600px;}
.y148{bottom:144.159480px;}
.y3b5{bottom:144.171000px;}
.y47{bottom:144.248400px;}
.y241{bottom:144.413280px;}
.yd8{bottom:144.990000px;}
.y413{bottom:146.160000px;}
.y1dc{bottom:150.390000px;}
.y4c5{bottom:150.678540px;}
.y49e{bottom:151.701030px;}
.y3ac{bottom:152.639850px;}
.y165{bottom:153.173970px;}
.y4fb{bottom:155.065757px;}
.y47e{bottom:155.263140px;}
.y3f5{bottom:155.801790px;}
.y7e{bottom:155.821500px;}
.y3ef{bottom:155.864340px;}
.y257{bottom:156.758040px;}
.y412{bottom:157.050000px;}
.y198{bottom:157.125330px;}
.y105{bottom:157.229850px;}
.ya4{bottom:157.337280px;}
.y32e{bottom:158.133870px;}
.y1df{bottom:159.389850px;}
.y346{bottom:159.408450px;}
.y175{bottom:159.412140px;}
.y30c{bottom:159.446070px;}
.y378{bottom:159.475770px;}
.y398{bottom:159.832260px;}
.y287{bottom:160.747230px;}
.y46{bottom:162.243900px;}
.y2f7{bottom:164.055690px;}
.y12a{bottom:164.192400px;}
.y29e{bottom:164.431440px;}
.y1fb{bottom:164.843910px;}
.y147{bottom:164.855790px;}
.y3b4{bottom:164.867310px;}
.y240{bottom:165.109590px;}
.y2db{bottom:165.429540px;}
.y21a{bottom:168.444450px;}
.y104{bottom:168.479850px;}
.y4c4{bottom:171.374850px;}
.y4d8{bottom:171.465030px;}
.y35d{bottom:171.664920px;}
.y47d{bottom:173.719980px;}
.y4fa{bottom:174.018482px;}
.y411{bottom:174.330000px;}
.yd7{bottom:174.690000px;}
.y3ab{bottom:175.770000px;}
.y3f4{bottom:176.498100px;}
.y7d{bottom:176.517810px;}
.y3ee{bottom:176.560650px;}
.y256{bottom:177.454350px;}
.y1de{bottom:178.020000px;}
.y62{bottom:178.754940px;}
.y32d{bottom:178.830180px;}
.y345{bottom:180.104760px;}
.y174{bottom:180.108450px;}
.y30b{bottom:180.142380px;}
.y377{bottom:180.172080px;}
.y45{bottom:180.239400px;}
.y4e0{bottom:180.377820px;}
.y397{bottom:180.528570px;}
.y49d{bottom:181.400310px;}
.y286{bottom:181.443540px;}
.y164{bottom:182.873250px;}
.y2f6{bottom:184.752000px;}
.y129{bottom:184.888710px;}
.ya3{bottom:185.503500px;}
.y146{bottom:185.552100px;}
.y3b3{bottom:185.563620px;}
.y23f{bottom:185.805900px;}
.y29d{bottom:186.119730px;}
.y2da{bottom:186.125850px;}
.y197{bottom:186.824610px;}
.y434{bottom:187.156800px;}
.y2bc{bottom:189.802080px;}
.y410{bottom:191.610000px;}
.y4c3{bottom:192.071160px;}
.y35c{bottom:192.361230px;}
.y4f9{bottom:192.971207px;}
.y1fa{bottom:194.543190px;}
.y1db{bottom:196.650000px;}
.y18{bottom:196.933500px;}
.y7c{bottom:197.123940px;}
.y219{bottom:198.143730px;}
.y255{bottom:198.150660px;}
.y44{bottom:198.234900px;}
.y3aa{bottom:198.900000px;}
.y61{bottom:199.451250px;}
.y32c{bottom:199.526490px;}
.y344{bottom:200.801070px;}
.y173{bottom:200.804760px;}
.y376{bottom:200.868390px;}
.y4d7{bottom:201.074130px;}
.y285{bottom:202.155390px;}
.y47c{bottom:203.419260px;}
.y163{bottom:203.569560px;}
.yd6{bottom:204.389850px;}
.y2f5{bottom:205.448310px;}
.y128{bottom:205.585020px;}
.y3f3{bottom:206.197380px;}
.y3b2{bottom:206.259930px;}
.y103{bottom:206.430930px;}
.y23e{bottom:206.502210px;}
.y29c{bottom:206.816040px;}
.y2d9{bottom:206.822160px;}
.y196{bottom:207.520920px;}
.y459{bottom:208.213830px;}
.y40f{bottom:208.889850px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1b1{bottom:209.839590px;}
.y30a{bottom:209.841660px;}
.y396{bottom:210.227850px;}
.y49c{bottom:211.099590px;}
.y4f8{bottom:211.923932px;}
.ya2{bottom:212.136660px;}
.y4c2{bottom:212.767470px;}
.y35b{bottom:213.057540px;}
.y1f9{bottom:215.239500px;}
.y145{bottom:215.251380px;}
.y43{bottom:216.230400px;}
.y3a9{bottom:217.530000px;}
.y7b{bottom:217.820250px;}
.y433{bottom:218.389140px;}
.y254{bottom:218.846970px;}
.y2bb{bottom:219.501360px;}
.y60{bottom:220.147560px;}
.y32b{bottom:220.222800px;}
.y47b{bottom:220.703760px;}
.y343{bottom:221.497380px;}
.y172{bottom:221.501070px;}
.y375{bottom:221.564700px;}
.y4d6{bottom:221.770440px;}
.y1da{bottom:222.030000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y284{bottom:222.851700px;}
.y162{bottom:224.265870px;}
.y458{bottom:225.498330px;}
.y2f4{bottom:226.144620px;}
.y127{bottom:226.281330px;}
.y3f2{bottom:226.893690px;}
.y3b1{bottom:226.956240px;}
.y102{bottom:227.127240px;}
.y23d{bottom:227.198520px;}
.y29b{bottom:227.512350px;}
.y2d8{bottom:227.518470px;}
.y218{bottom:227.843010px;}
.y195{bottom:228.217230px;}
.y3c3{bottom:228.218760px;}
.y309{bottom:230.537970px;}
.y395{bottom:230.924160px;}
.y4d5{bottom:233.463780px;}
.y35a{bottom:233.753850px;}
.yd5{bottom:234.090000px;}
.y42{bottom:234.225900px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1f8{bottom:235.935810px;}
.y40e{bottom:236.790000px;}
.y47a{bottom:237.988260px;}
.y7a{bottom:238.516560px;}
.y1b0{bottom:239.538870px;}
.ya1{bottom:239.581440px;}
.y2ba{bottom:240.197670px;}
.y4f7{bottom:240.649372px;}
.y1d9{bottom:240.660000px;}
.y5f{bottom:240.753690px;}
.y49b{bottom:240.798870px;}
.y516{bottom:241.269150px;}
.y342{bottom:242.193690px;}
.y171{bottom:242.197380px;}
.y374{bottom:242.261010px;}
.y4c1{bottom:242.466750px;}
.y457{bottom:242.692650px;}
.y283{bottom:243.548010px;}
.y144{bottom:244.950660px;}
.y161{bottom:244.962180px;}
.y2f3{bottom:246.840930px;}
.y126{bottom:246.977640px;}
.y3b0{bottom:247.652550px;}
.y29a{bottom:248.208660px;}
.y2d7{bottom:248.214780px;}
.y217{bottom:248.539320px;}
.y253{bottom:248.546250px;}
.y194{bottom:248.913540px;}
.y32a{bottom:249.922080px;}
.y308{bottom:251.234280px;}
.y394{bottom:251.620470px;}
.y41{bottom:252.221400px;}
.y432{bottom:253.213650px;}
.y3f9{bottom:253.965150px;}
.y359{bottom:254.450160px;}
.y479{bottom:255.272760px;}
.y1f7{bottom:256.632120px;}
.yc0{bottom:256.655520px;}
.y101{bottom:256.826520px;}
.y23c{bottom:256.897800px;}
.y3c2{bottom:257.918040px;}
.y40d{bottom:258.053580px;}
.y527{bottom:259.230900px;}
.y1d8{bottom:259.290000px;}
.y4f6{bottom:259.602097px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y456{bottom:259.977150px;}
.y1af{bottom:260.235180px;}
.ya0{bottom:260.277750px;}
.y2b9{bottom:260.893980px;}
.y5e{bottom:261.450000px;}
.y341{bottom:262.890000px;}
.y170{bottom:262.893690px;}
.y373{bottom:262.957320px;}
.y4c0{bottom:263.163060px;}
.yd4{bottom:263.790000px;}
.y143{bottom:265.646970px;}
.y160{bottom:265.658490px;}
.y125{bottom:267.673950px;}
.y79{bottom:268.215840px;}
.y3af{bottom:268.348860px;}
.y2d6{bottom:268.911090px;}
.y216{bottom:269.235630px;}
.y252{bottom:269.242560px;}
.y193{bottom:269.609850px;}
.y49a{bottom:270.498150px;}
.y329{bottom:270.618390px;}
.y307{bottom:271.930590px;}
.y393{bottom:272.316780px;}
.y478{bottom:272.467080px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y431{bottom:273.098340px;}
.y282{bottom:273.247290px;}
.y3d4{bottom:274.661460px;}
.y2f2{bottom:276.540210px;}
.y455{bottom:277.261650px;}
.y1f6{bottom:277.328430px;}
.ybf{bottom:277.351830px;}
.y100{bottom:277.522830px;}
.y23b{bottom:277.594110px;}
.y4f5{bottom:278.554822px;}
.y40c{bottom:278.749890px;}
.y299{bottom:278.899920px;}
.y3c1{bottom:279.606330px;}
.y1ae{bottom:280.931490px;}
.y9f{bottom:280.974060px;}
.y2b8{bottom:281.590290px;}
.y372{bottom:283.653630px;}
.y16f{bottom:283.664430px;}
.y4bf{bottom:283.859370px;}
.y358{bottom:284.149440px;}
.y1d7{bottom:284.670000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y142{bottom:286.343280px;}
.y15f{bottom:286.354800px;}
.y40{bottom:288.225900px;}
.y124{bottom:288.370260px;}
.y477{bottom:289.751580px;}
.y215{bottom:289.931940px;}
.y251{bottom:289.938870px;}
.y192{bottom:290.306160px;}
.y328{bottom:291.314700px;}
.y5d{bottom:291.866220px;}
.y3a8{bottom:292.140000px;}
.y306{bottom:292.626900px;}
.y340{bottom:292.638150px;}
.y4df{bottom:292.862340px;}
.y430{bottom:292.983030px;}
.y392{bottom:293.013090px;}
.yd3{bottom:293.490000px;}
.y454{bottom:294.455970px;}
.y515{bottom:295.262400px;}
.y3d3{bottom:295.357770px;}
.y2f1{bottom:297.236520px;}
.y4f4{bottom:297.507547px;}
.y78{bottom:297.915120px;}
.y1f5{bottom:298.024740px;}
.ybe{bottom:298.048140px;}
.yff{bottom:298.219140px;}
.y23a{bottom:298.290420px;}
.y2d5{bottom:298.610370px;}
.y40b{bottom:299.446200px;}
.y298{bottom:299.596230px;}
.y499{bottom:300.197430px;}
.y3c0{bottom:300.302640px;}
.y1ad{bottom:301.627800px;}
.y281{bottom:302.946570px;}
.y1d6{bottom:303.300000px;}
.y371{bottom:304.349940px;}
.y16e{bottom:304.360740px;}
.y4be{bottom:304.555680px;}
.y357{bottom:304.845750px;}
.y3f{bottom:306.221400px;}
.y476{bottom:307.036080px;}
.y141{bottom:307.039590px;}
.y3ea{bottom:307.046160px;}
.y15e{bottom:307.051110px;}
.y42f{bottom:310.177350px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y214{bottom:310.628250px;}
.y250{bottom:310.635180px;}
.y9e{bottom:310.673340px;}
.y3a7{bottom:310.770000px;}
.y2b7{bottom:311.289570px;}
.y453{bottom:311.740470px;}
.y327{bottom:312.011010px;}
.y526{bottom:313.224150px;}
.y514{bottom:313.260150px;}
.y305{bottom:313.323210px;}
.y33f{bottom:313.334460px;}
.y4de{bottom:313.558650px;}
.y267{bottom:316.054080px;}
.y4f3{bottom:316.460272px;}
.y2f0{bottom:317.932830px;}
.y123{bottom:318.069540px;}
.ybd{bottom:318.744450px;}
.yfe{bottom:318.915450px;}
.y239{bottom:318.986730px;}
.y2d4{bottom:319.306680px;}
.y191{bottom:320.005440px;}
.y40a{bottom:320.142510px;}
.y297{bottom:320.292540px;}
.y1d5{bottom:321.930000px;}
.y3bf{bottom:321.990930px;}
.y1ac{bottom:322.324110px;}
.y391{bottom:322.712370px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yd2{bottom:323.190000px;}
.y5c{bottom:323.636850px;}
.y475{bottom:324.230400px;}
.y370{bottom:325.046250px;}
.y16d{bottom:325.057050px;}
.y4d4{bottom:325.251990px;}
.y356{bottom:325.542060px;}
.y77{bottom:327.614400px;}
.y1f4{bottom:327.724020px;}
.y140{bottom:327.735900px;}
.y15d{bottom:327.747420px;}
.y452{bottom:328.934790px;}
.y498{bottom:329.896710px;}
.y42e{bottom:330.062040px;}
.y525{bottom:331.224150px;}
.y513{bottom:331.257900px;}
.y213{bottom:331.324560px;}
.y24f{bottom:331.331490px;}
.y9d{bottom:331.369650px;}
.y2b6{bottom:331.985880px;}
.y280{bottom:332.645850px;}
.y304{bottom:334.019520px;}
.y33e{bottom:334.030770px;}
.y4bd{bottom:334.254960px;}
.y3e9{bottom:336.745440px;}
.y266{bottom:336.750390px;}
.y2ef{bottom:338.629140px;}
.y3a6{bottom:339.210000px;}
.y3f1{bottom:339.440760px;}
.yfd{bottom:339.611760px;}
.y238{bottom:339.683040px;}
.y2d3{bottom:340.994970px;}
.y474{bottom:341.514900px;}
.y326{bottom:341.710290px;}
.y1ab{bottom:343.020420px;}
.y3be{bottom:343.679220px;}
.y4f2{bottom:345.185711px;}
.y36f{bottom:345.742560px;}
.y3f8{bottom:345.753360px;}
.y4d3{bottom:345.948300px;}
.y451{bottom:346.219290px;}
.y1d4{bottom:347.310000px;}
.y122{bottom:347.768820px;}
.yf{bottom:348.133500px;}
.y1f3{bottom:348.420330px;}
.y13f{bottom:348.432210px;}
.ybc{bottom:348.443730px;}
.y524{bottom:349.224150px;}
.y512{bottom:349.255650px;}
.y190{bottom:349.704720px;}
.y409{bottom:349.841790px;}
.y42d{bottom:349.856550px;}
.y296{bottom:349.991820px;}
.y212{bottom:352.020870px;}
.y24e{bottom:352.027800px;}
.y9c{bottom:352.065960px;}
.y390{bottom:352.321470px;}
.y2b5{bottom:352.682190px;}
.yd1{bottom:352.890000px;}
.y27f{bottom:353.342160px;}
.y303{bottom:354.715830px;}
.y33d{bottom:354.727080px;}
.y16c{bottom:354.756330px;}
.y4bc{bottom:354.951270px;}
.y355{bottom:355.241340px;}
.y5b{bottom:355.407480px;}
.y76{bottom:357.313680px;}
.y3e8{bottom:357.441750px;}
.y265{bottom:357.446700px;}
.y473{bottom:358.799400px;}
.y497{bottom:359.505810px;}
.yfc{bottom:360.308070px;}
.y237{bottom:360.379350px;}
.y2d2{bottom:361.691280px;}
.y325{bottom:362.406600px;}
.y450{bottom:363.503790px;}
.y1aa{bottom:363.716730px;}
.y4f1{bottom:364.138436px;}
.y3bd{bottom:364.375530px;}
.y1d3{bottom:365.940000px;}
.y36e{bottom:366.438870px;}
.y3d2{bottom:366.449670px;}
.y523{bottom:367.224150px;}
.y511{bottom:367.253400px;}
.y3a5{bottom:367.560000px;}
.y2ee{bottom:368.328420px;}
.y1f2{bottom:369.116640px;}
.y15c{bottom:369.140040px;}
.y42c{bottom:369.741240px;}
.y408{bottom:370.538100px;}
.y295{bottom:371.770290px;}
.y24d{bottom:372.724110px;}
.y9b{bottom:372.762270px;}
.y2b4{bottom:373.378500px;}
.y302{bottom:375.412140px;}
.y33c{bottom:375.423390px;}
.y4bb{bottom:375.647580px;}
.y354{bottom:375.937650px;}
.y472{bottom:375.993720px;}
.y121{bottom:377.468100px;}
.y13e{bottom:378.131490px;}
.y3e7{bottom:378.138060px;}
.ybb{bottom:378.143010px;}
.y18f{bottom:379.313820px;}
.y44f{bottom:380.698110px;}
.yfb{bottom:381.004380px;}
.y236{bottom:381.075660px;}
.y211{bottom:381.720150px;}
.y38f{bottom:382.020750px;}
.yd0{bottom:382.590000px;}
.y27e{bottom:383.041440px;}
.y4f0{bottom:383.091161px;}
.y2d1{bottom:383.379570px;}
.y324{bottom:384.094890px;}
.y1a9{bottom:384.413040px;}
.y16b{bottom:384.455610px;}
.y1d2{bottom:384.570000px;}
.y522{bottom:385.224150px;}
.y510{bottom:385.251150px;}
.y3bc{bottom:386.063820px;}
.y3a4{bottom:386.190000px;}
.ye{bottom:386.785499px;}
.y75{bottom:387.012960px;}
.y3d1{bottom:387.145980px;}
.y5a{bottom:387.178110px;}
.y2ed{bottom:389.024730px;}
.y496{bottom:389.205090px;}
.y42b{bottom:389.535750px;}
.y1f1{bottom:389.812950px;}
.y15b{bottom:389.836350px;}
.y407{bottom:391.234410px;}
.y471{bottom:393.278220px;}
.y24c{bottom:393.420420px;}
.y9a{bottom:393.458580px;}
.y2b3{bottom:394.074810px;}
.y301{bottom:396.108450px;}
.y33b{bottom:396.119700px;}
.y36d{bottom:396.138150px;}
.y4ba{bottom:396.343890px;}
.y353{bottom:396.633960px;}
.y44e{bottom:397.982610px;}
.y120{bottom:398.164410px;}
.yba{bottom:398.839320px;}
.y18e{bottom:400.010130px;}
.yfa{bottom:401.700690px;}
.y235{bottom:401.771970px;}
.y294{bottom:402.461550px;}
.y38e{bottom:402.717060px;}
.y521{bottom:403.224150px;}
.y50f{bottom:403.248900px;}
.y2d0{bottom:404.075880px;}
.y323{bottom:404.791200px;}
.y1a8{bottom:405.109350px;}
.y4dd{bottom:405.346860px;}
.y3bb{bottom:406.850310px;}
.y13d{bottom:407.830770px;}
.y3e6{bottom:407.837340px;}
.y3d0{bottom:407.842290px;}
.yd{bottom:408.044999px;}
.y3a3{bottom:409.320000px;}
.y42a{bottom:409.330260px;}
.y2ec{bottom:409.721040px;}
.y1d1{bottom:409.950000px;}
.y15a{bottom:410.532660px;}
.y470{bottom:410.562720px;}
.y210{bottom:411.419430px;}
.y4ef{bottom:411.816600px;}
.ycf{bottom:412.200000px;}
.y27d{bottom:412.740720px;}
.y24b{bottom:414.116730px;}
.y99{bottom:414.154890px;}
.y2b2{bottom:414.771120px;}
.y44d{bottom:415.267110px;}
.y74{bottom:416.712240px;}
.y300{bottom:416.804760px;}
.y33a{bottom:416.816010px;}
.y36c{bottom:416.834460px;}
.y4b9{bottom:417.040200px;}
.y352{bottom:418.412430px;}
.y11f{bottom:418.860720px;}
.y495{bottom:418.904370px;}
.y59{bottom:418.948740px;}
.y1f0{bottom:419.512230px;}
.yb9{bottom:419.535630px;}
.y18d{bottom:420.706440px;}
.y406{bottom:420.933690px;}
.y520{bottom:421.224150px;}
.y50e{bottom:421.246650px;}
.yf9{bottom:422.397000px;}
.y234{bottom:422.468280px;}
.y293{bottom:423.157860px;}
.y2cf{bottom:424.862370px;}
.y1a7{bottom:425.805660px;}
.y4dc{bottom:426.043170px;}
.y429{bottom:426.524580px;}
.y46f{bottom:427.757040px;}
.y13c{bottom:428.527080px;}
.y3e5{bottom:428.533650px;}
.y3cf{bottom:428.538600px;}
.y1d0{bottom:428.580000px;}
.y4ee{bottom:430.769325px;}
.y159{bottom:431.228970px;}
.y2eb{bottom:431.409330px;}
.y38d{bottom:432.416340px;}
.y3a2{bottom:432.450000px;}
.y44c{bottom:432.461430px;}
.y24a{bottom:434.813040px;}
.y98{bottom:434.851200px;}
.y2b1{bottom:435.467430px;}
.y322{bottom:435.482460px;}
.y2ff{bottom:437.501070px;}
.y339{bottom:437.512320px;}
.y36b{bottom:437.530770px;}
.y3ba{bottom:437.541570px;}
.y4d2{bottom:437.736510px;}
.y51f{bottom:439.224150px;}
.y50d{bottom:439.244400px;}
.yb8{bottom:440.231940px;}
.y20f{bottom:441.118710px;}
.y18c{bottom:441.402750px;}
.y405{bottom:441.630000px;}
.yce{bottom:441.900000px;}
.y27c{bottom:442.440000px;}
.y233{bottom:443.164590px;}
.y428{bottom:443.809080px;}
.y292{bottom:443.854170px;}
.y46e{bottom:445.041540px;}
.y73{bottom:446.411520px;}
.y1a6{bottom:446.501970px;}
.y4b8{bottom:446.739480px;}
.y1cf{bottom:447.210000px;}
.y11e{bottom:448.590240px;}
.y494{bottom:448.603650px;}
.y351{bottom:449.103690px;}
.y1ef{bottom:449.211510px;}
.y13b{bottom:449.223390px;}
.y3e4{bottom:449.229960px;}
.y3ce{bottom:449.234910px;}
.y4ed{bottom:449.722050px;}
.y44b{bottom:449.745930px;}
.y58{bottom:450.719370px;}
.y3a1{bottom:451.080000px;}
.y158{bottom:451.925280px;}
.yf8{bottom:452.096280px;}
.y2ea{bottom:452.105640px;}
.y38c{bottom:453.112650px;}
.y249{bottom:455.509350px;}
.y97{bottom:455.547510px;}
.y2ce{bottom:455.553630px;}
.y2b0{bottom:456.163740px;}
.y321{bottom:456.178770px;}
.y50c{bottom:457.242150px;}
.y51e{bottom:457.284900px;}
.y2fe{bottom:458.197380px;}
.y338{bottom:458.208630px;}
.y36a{bottom:458.227080px;}
.y3b9{bottom:458.237880px;}
.y4d1{bottom:458.432820px;}
.yb7{bottom:460.928250px;}
.y427{bottom:461.093580px;}
.y20e{bottom:461.815020px;}
.y18b{bottom:462.099060px;}
.y46d{bottom:462.326040px;}
.y1cd{bottom:463.590000px;}
.y232{bottom:463.860900px;}
.y291{bottom:464.550480px;}
.y44a{bottom:467.030430px;}
.y1a5{bottom:467.198280px;}
.y4b7{bottom:467.435790px;}
.y404{bottom:468.090000px;}
.y4ec{bottom:468.674775px;}
.y11d{bottom:469.286550px;}
.y3a0{bottom:469.710000px;}
.y350{bottom:469.800000px;}
.y13a{bottom:469.919700px;}
.y3e3{bottom:469.926270px;}
.y3f7{bottom:469.931220px;}
.ycd{bottom:471.600000px;}
.y1cc{bottom:472.590000px;}
.y157{bottom:472.621590px;}
.yf7{bottom:472.792590px;}
.y2e9{bottom:473.793930px;}
.y38b{bottom:473.808960px;}
.y50b{bottom:475.239900px;}
.y72{bottom:476.110800px;}
.y248{bottom:476.205660px;}
.y96{bottom:476.243820px;}
.y2cd{bottom:476.249940px;}
.y27b{bottom:476.730000px;}
.y2af{bottom:476.860050px;}
.y426{bottom:478.287900px;}
.y493{bottom:478.302930px;}
.y2fd{bottom:478.893690px;}
.y337{bottom:478.904940px;}
.y1ee{bottom:478.910790px;}
.y369{bottom:478.923390px;}
.y3cd{bottom:478.934190px;}
.y46c{bottom:479.520360px;}
.y264{bottom:481.624560px;}
.y57{bottom:482.490000px;}
.y20d{bottom:482.511330px;}
.y18a{bottom:482.795370px;}
.y449{bottom:484.224750px;}
.y290{bottom:485.246790px;}
.y320{bottom:485.878050px;}
.y4eb{bottom:487.627500px;}
.y3b8{bottom:487.937160px;}
.y4b6{bottom:488.132100px;}
.y11c{bottom:489.982860px;}
.y139{bottom:490.616010px;}
.yb6{bottom:490.627530px;}
.y403{bottom:490.680000px;}
.y1cb{bottom:491.220000px;}
.y39f{bottom:492.840000px;}
.y156{bottom:493.227720px;}
.y50a{bottom:493.237650px;}
.y51d{bottom:493.280400px;}
.y231{bottom:493.470000px;}
.y38a{bottom:494.505270px;}
.y2e8{bottom:494.580420px;}
.y425{bottom:495.572400px;}
.y46b{bottom:496.804860px;}
.y1a4{bottom:496.897560px;}
.y95{bottom:496.940130px;}
.y2cc{bottom:496.946250px;}
.y2ae{bottom:497.556360px;}
.y492{bottom:498.999240px;}
.y34f{bottom:499.410000px;}
.y336{bottom:499.601250px;}
.y1ed{bottom:499.607100px;}
.y368{bottom:499.619700px;}
.y3e2{bottom:499.625550px;}
.y2fc{bottom:499.630500px;}
.y27a{bottom:500.760000px;}
.ycc{bottom:501.300000px;}
.yec{bottom:501.301350px;}
.y448{bottom:501.509250px;}
.y263{bottom:502.230690px;}
.yf6{bottom:502.491870px;}
.yc{bottom:502.864502px;}
.y189{bottom:503.491680px;}
.y71{bottom:505.810080px;}
.y247{bottom:505.904940px;}
.y28f{bottom:505.943100px;}
.y31f{bottom:506.574360px;}
.y4ea{bottom:506.580225px;}
.y402{bottom:508.590000px;}
.y4b5{bottom:508.828410px;}
.y1ca{bottom:509.760000px;}
.y11b{bottom:510.679170px;}
.y138{bottom:511.222140px;}
.y3ed{bottom:511.233660px;}
.y51c{bottom:511.278150px;}
.y20c{bottom:512.210610px;}
.y424{bottom:512.856900px;}
.y56{bottom:514.890000px;}
.y389{bottom:515.201580px;}
.y39e{bottom:515.970000px;}
.y1a3{bottom:517.593870px;}
.y94{bottom:517.636440px;}
.y2cb{bottom:517.642560px;}
.y4db{bottom:517.831380px;}
.y2ad{bottom:518.252670px;}
.y447{bottom:518.793750px;}
.y335{bottom:520.207380px;}
.y367{bottom:520.225830px;}
.y3e1{bottom:520.231680px;}
.yb5{bottom:520.236630px;}
.yb{bottom:520.864502px;}
.y155{bottom:522.927000px;}
.y188{bottom:524.187990px;}
.yf5{bottom:524.270340px;}
.y34e{bottom:524.294730px;}
.y230{bottom:524.790000px;}
.y2e7{bottom:525.271680px;}
.y4e9{bottom:525.532950px;}
.y279{bottom:525.690000px;}
.y46a{bottom:526.504140px;}
.y246{bottom:526.601250px;}
.y16a{bottom:526.639410px;}
.y31e{bottom:527.270670px;}
.y1c9{bottom:528.480000px;}
.y491{bottom:528.698520px;}
.y1ec{bottom:529.216200px;}
.y509{bottom:529.233150px;}
.y51b{bottom:529.275900px;}
.y4b4{bottom:529.434540px;}
.ycb{bottom:531.000000px;}
.yeb{bottom:531.000630px;}
.y137{bottom:531.918450px;}
.y3ec{bottom:531.929970px;}
.y401{bottom:533.605500px;}
.y39d{bottom:534.600000px;}
.y70{bottom:535.509360px;}
.y388{bottom:535.897890px;}
.y446{bottom:535.988070px;}
.y1a2{bottom:538.222140px;}
.y93{bottom:538.242570px;}
.y2ca{bottom:538.248690px;}
.y4da{bottom:538.437510px;}
.ya{bottom:538.864499px;}
.y2ac{bottom:538.948980px;}
.y11a{bottom:540.378450px;}
.y334{bottom:540.903690px;}
.y366{bottom:540.922140px;}
.y3e0{bottom:540.927990px;}
.yb4{bottom:540.932940px;}
.y22f{bottom:541.890000px;}
.y20b{bottom:541.909890px;}
.y423{bottom:542.466000px;}
.y262{bottom:543.623310px;}
.y469{bottom:543.788640px;}
.y187{bottom:544.884300px;}
.yf4{bottom:545.958630px;}
.y2e6{bottom:545.967990px;}
.y34d{bottom:545.983020px;}
.y245{bottom:547.207380px;}
.y508{bottom:547.230900px;}
.y169{bottom:547.245540px;}
.y51a{bottom:547.273650px;}
.y4e8{bottom:547.440480px;}
.y31d{bottom:547.966980px;}
.ye0{bottom:549.000000px;}
.y2fb{bottom:549.935910px;}
.y55{bottom:550.089990px;}
.y4d0{bottom:550.130850px;}
.y136{bottom:552.614760px;}
.y154{bottom:552.626280px;}
.y445{bottom:553.272570px;}
.y400{bottom:553.585500px;}
.y1c8{bottom:553.770000px;}
.y278{bottom:554.130000px;}
.y490{bottom:554.970960px;}
.y28e{bottom:556.248510px;}
.y387{bottom:556.594200px;}
.y9{bottom:556.864499px;}
.y22a{bottom:558.900000px;}
.y1eb{bottom:558.915480px;}
.y1a1{bottom:558.918450px;}
.y92{bottom:558.938880px;}
.y2c9{bottom:558.945000px;}
.y4b3{bottom:559.133820px;}
.y2ab{bottom:559.645290px;}
.yea{bottom:560.699910px;}
.yca{bottom:560.700000px;}
.y468{bottom:560.982960px;}
.y119{bottom:561.074760px;}
.y333{bottom:561.600000px;}
.y365{bottom:561.618450px;}
.y3df{bottom:561.624300px;}
.yb3{bottom:561.629250px;}
.y22e{bottom:561.960000px;}
.y261{bottom:564.319620px;}
.y6f{bottom:565.208640px;}
.y507{bottom:565.228650px;}
.y519{bottom:565.271400px;}
.y2e5{bottom:566.664300px;}
.yf3{bottom:567.646920px;}
.y34c{bottom:567.671310px;}
.y244{bottom:567.903690px;}
.y168{bottom:567.941850px;}
.y4e7{bottom:568.136790px;}
.y31c{bottom:568.663290px;}
.y444{bottom:570.557070px;}
.y3cc{bottom:570.632220px;}
.y39c{bottom:570.722400px;}
.y4cf{bottom:570.827160px;}
.y20a{bottom:571.609170px;}
.y48f{bottom:572.255460px;}
.y1c7{bottom:572.400000px;}
.y277{bottom:572.760000px;}
.y135{bottom:573.311070px;}
.y3eb{bottom:573.322590px;}
.y3ff{bottom:573.660000px;}
.y422{bottom:573.698340px;}
.y275{bottom:574.560000px;}
.y186{bottom:574.583580px;}
.y28d{bottom:576.944820px;}
.y386{bottom:577.290510px;}
.y467{bottom:578.267460px;}
.ydf{bottom:578.700000px;}
.y229{bottom:578.970000px;}
.y1a0{bottom:579.614760px;}
.y91{bottom:579.635190px;}
.y2c8{bottom:579.641310px;}
.y4b2{bottom:579.830130px;}
.y118{bottom:581.771070px;}
.y22d{bottom:582.030000px;}
.y332{bottom:582.303690px;}
.y364{bottom:582.314760px;}
.y3de{bottom:582.320610px;}
.yb2{bottom:582.325560px;}
.y506{bottom:583.226400px;}
.y518{bottom:583.269150px;}
.y260{bottom:585.015930px;}
.y3e{bottom:587.323800px;}
.y2e4{bottom:587.360610px;}
.y504{bottom:587.462691px;}
.y443{bottom:587.751390px;}
.y54{bottom:588.066660px;}
.y1ea{bottom:588.614760px;}
.y167{bottom:588.638160px;}
.y4e6{bottom:588.833100px;}
.yf2{bottom:589.335210px;}
.y2aa{bottom:589.344570px;}
.y48e{bottom:589.720320px;}
.ye9{bottom:590.399190px;}
.yc9{bottom:590.400000px;}
.y1c6{bottom:591.120000px;}
.y3cb{bottom:591.328530px;}
.y4ce{bottom:591.523470px;}
.y209{bottom:592.305480px;}
.y134{bottom:594.007380px;}
.y6e{bottom:594.907920px;}
.y185{bottom:595.279890px;}
.y466{bottom:595.461780px;}
.y228{bottom:596.070000px;}
.y276{bottom:596.790000px;}
.y28c{bottom:597.641130px;}
.y274{bottom:597.690000px;}
.y31b{bottom:598.362570px;}
.y226{bottom:599.040000px;}
.y19f{bottom:600.311070px;}
.y90{bottom:600.331500px;}
.y2c7{bottom:600.337620px;}
.y4b1{bottom:600.526440px;}
.y505{bottom:601.224150px;}
.y503{bottom:601.248300px;}
.y517{bottom:601.266900px;}
.y117{bottom:602.467380px;}
.y363{bottom:603.011070px;}
.yb1{bottom:603.021870px;}
.y442{bottom:605.035890px;}
.y3d{bottom:605.323800px;}
.y25f{bottom:605.712240px;}
.y385{bottom:606.989790px;}
.y48d{bottom:607.185180px;}
.y1c1{bottom:607.500000px;}
.yde{bottom:608.403690px;}
.y421{bottom:608.522850px;}
.y1e9{bottom:609.311070px;}
.y166{bottom:609.334470px;}
.y4e5{bottom:609.529410px;}
.y2a9{bottom:610.040880px;}
.yf1{bottom:611.023500px;}
.y3dd{bottom:612.019890px;}
.y3ae{bottom:612.024840px;}
.y465{bottom:612.746280px;}
.y208{bottom:613.001790px;}
.y133{bottom:614.703690px;}
.y184{bottom:615.976200px;}
.y225{bottom:616.140000px;}
.y1c5{bottom:616.410000px;}
.y2e3{bottom:617.059890px;}
.y3fe{bottom:617.850000px;}
.y28b{bottom:618.337440px;}
.y31a{bottom:619.058880px;}
.ye8{bottom:620.098470px;}
.yc8{bottom:620.100000px;}
.y19e{bottom:621.007380px;}
.y8f{bottom:621.027810px;}
.y2b{bottom:621.041700px;}
.y4b0{bottom:621.222750px;}
.y441{bottom:622.320390px;}
.y116{bottom:623.163690px;}
.y362{bottom:623.707380px;}
.yb0{bottom:623.718180px;}
.y6d{bottom:624.607200px;}
.y48c{bottom:624.650040px;}
.y420{bottom:625.807350px;}
.y273{bottom:626.040000px;}
.y53{bottom:626.043330px;}
.y384{bottom:627.686100px;}
.ydd{bottom:629.100000px;}
.y1e8{bottom:630.007380px;}
.y151{bottom:630.030780px;}
.y2c6{bottom:630.036900px;}
.y4e4{bottom:630.225720px;}
.y2a8{bottom:630.737190px;}
.y3dc{bottom:632.716200px;}
.y3ca{bottom:632.721150px;}
.y224{bottom:633.240000px;}
.y1c0{bottom:635.040000px;}
.y132{bottom:635.411520px;}
.y22c{bottom:636.210000px;}
.y183{bottom:636.672510px;}
.y2e2{bottom:638.748180px;}
.y28a{bottom:639.033750px;}
.y2a{bottom:639.041700px;}
.y440{bottom:639.514710px;}
.y319{bottom:639.755190px;}
.y3c{bottom:641.323800px;}
.y19d{bottom:641.703690px;}
.yf0{bottom:641.714760px;}
.y8e{bottom:641.724120px;}
.y4af{bottom:641.919060px;}
.y48b{bottom:641.934540px;}
.y207{bottom:642.701070px;}
.y41f{bottom:643.091850px;}
.y115{bottom:643.860000px;}
.y361{bottom:644.403690px;}
.y153{bottom:644.414490px;}
.y8{bottom:645.510000px;}
.y464{bottom:647.225100px;}
.y383{bottom:648.382410px;}
.ye7{bottom:649.797750px;}
.yc7{bottom:649.800000px;}
.y272{bottom:650.070000px;}
.y223{bottom:650.340000px;}
.y1e7{bottom:650.703690px;}
.y150{bottom:650.727090px;}
.y2c5{bottom:650.733210px;}
.y4d9{bottom:650.922030px;}
.y2a7{bottom:651.433500px;}
.y227{bottom:653.310000px;}
.y3db{bottom:653.412510px;}
.yaf{bottom:653.417460px;}
.y1bf{bottom:653.670000px;}
.y6c{bottom:654.306480px;}
.y131{bottom:656.107830px;}
.y43f{bottom:656.799210px;}
.y29{bottom:657.041700px;}
.y3c9{bottom:657.370350px;}
.ydc{bottom:658.800000px;}
.y3b{bottom:659.323800px;}
.y48a{bottom:659.399400px;}
.y2e1{bottom:659.444490px;}
.y289{bottom:659.730060px;}
.y41e{bottom:660.286170px;}
.y318{bottom:660.451500px;}
.y3fd{bottom:661.950000px;}
.yef{bottom:662.411070px;}
.y19c{bottom:662.420430px;}
.y4cd{bottom:662.615370px;}
.y206{bottom:663.397380px;}
.y52{bottom:664.020000px;}
.y463{bottom:664.509600px;}
.y25e{bottom:665.110800px;}
.y182{bottom:666.371790px;}
.y7{bottom:666.771000px;}
.y222{bottom:670.410000px;}
.y1e6{bottom:671.411070px;}
.y8d{bottom:671.423400px;}
.y2c4{bottom:671.429520px;}
.y4ae{bottom:671.618340px;}
.y2a6{bottom:672.129810px;}
.y114{bottom:672.300000px;}
.y1be{bottom:672.389850px;}
.y528{bottom:672.400500px;}
.y22b{bottom:673.380000px;}
.y43e{bottom:673.993530px;}
.y152{bottom:674.113770px;}
.y3a{bottom:674.323800px;}
.y271{bottom:675.000000px;}
.y41d{bottom:677.570670px;}
.y3c8{bottom:678.066660px;}
.y382{bottom:678.081690px;}
.y489{bottom:679.193910px;}
.yc6{bottom:679.500000px;}
.y14f{bottom:680.426370px;}
.y2e0{bottom:681.132780px;}
.y317{bottom:681.147810px;}
.y462{bottom:681.794100px;}
.yee{bottom:683.107380px;}
.y3da{bottom:683.111790px;}
.yae{bottom:683.116740px;}
.y4cc{bottom:683.311680px;}
.y6b{bottom:684.005760px;}
.y205{bottom:685.085670px;}
.y130{bottom:685.807110px;}
.y181{bottom:687.068100px;}
.ye6{bottom:688.500000px;}
.ydb{bottom:688.503690px;}
.y221{bottom:690.479850px;}
.y43d{bottom:691.278030px;}
.y1e5{bottom:692.107380px;}
.y8c{bottom:692.119710px;}
.y2c3{bottom:692.125830px;}
.y4ad{bottom:692.314650px;}
.y113{bottom:693.000000px;}
.y28{bottom:693.035700px;}
.y51{bottom:694.340580px;}
.y25d{bottom:694.810080px;}
.y488{bottom:696.658770px;}
.y25{bottom:696.955050px;}
.y1bd{bottom:697.680000px;}
.y461{bottom:698.988420px;}
.y381{bottom:699.769980px;}
.y3c7{bottom:699.845130px;}
.y14e{bottom:701.122680px;}
.y2a5{bottom:701.829090px;}
.y316{bottom:701.844120px;}
.y2df{bottom:702.821070px;}
.y270{bottom:703.440000px;}
.yed{bottom:703.803690px;}
.y3d9{bottom:703.808100px;}
.yad{bottom:703.813050px;}
.y4cb{bottom:704.007990px;}
.y3fc{bottom:706.139850px;}
.y204{bottom:706.773960px;}
.y41c{bottom:707.269950px;}
.y39{bottom:707.323800px;}
.y220{bottom:707.580000px;}
.y180{bottom:707.764410px;}
.y43c{bottom:708.562530px;}
.yc5{bottom:709.200000px;}
.y34b{bottom:710.847090px;}
.y1e4{bottom:712.803690px;}
.y8b{bottom:712.816020px;}
.y2c2{bottom:712.822140px;}
.y4ac{bottom:713.010960px;}
.y112{bottom:713.700000px;}
.y6a{bottom:713.705040px;}
.y12f{bottom:715.506390px;}
.y27{bottom:715.538700px;}
.y460{bottom:716.272920px;}
.y1bc{bottom:716.310000px;}
.y487{bottom:716.543460px;}
.ye5{bottom:718.200000px;}
.y380{bottom:720.556470px;}
.y3c6{bottom:721.533420px;}
.y14d{bottom:721.818990px;}
.y4e3{bottom:722.013930px;}
.y2a4{bottom:723.517380px;}
.y3d8{bottom:724.504410px;}
.yac{bottom:724.509360px;}
.y38{bottom:725.323800px;}
.y500{bottom:725.664636px;}
.y43b{bottom:725.756850px;}
.y6{bottom:726.298500px;}
.y50{bottom:727.453920px;}
.y26f{bottom:728.370000px;}
.y203{bottom:728.462250px;}
.y21f{bottom:731.430000px;}
.y315{bottom:731.543400px;}
.y1e3{bottom:733.507380px;}
.y8a{bottom:733.512330px;}
.y2c1{bottom:733.518450px;}
.y45f{bottom:733.557420px;}
.y4ab{bottom:733.707270px;}
.y486{bottom:734.008320px;}
.y1bb{bottom:735.030000px;}
.y25c{bottom:736.202700px;}
.y41b{bottom:736.969230px;}
.y24{bottom:737.455050px;}
.y17f{bottom:737.463690px;}
.y26{bottom:738.041700px;}
.yc4{bottom:738.900000px;}
.y14c{bottom:742.515300px;}
.y4e2{bottom:742.710240px;}
.y43a{bottom:743.041350px;}
.y3c5{bottom:743.221710px;}
.y69{bottom:743.404320px;}
.y2a3{bottom:744.213690px;}
.yab{bottom:745.205670px;}
.y111{bottom:746.550000px;}
.ye4{bottom:747.903690px;}
.y202{bottom:750.240720px;}
.y3fb{bottom:750.330000px;}
.y45e{bottom:750.751740px;}
.y485{bottom:751.202640px;}
.y37f{bottom:751.247730px;}
.y314{bottom:752.239710px;}
.y3{bottom:752.599495px;}
.y1e2{bottom:754.203690px;}
.y89{bottom:754.208640px;}
.y2c0{bottom:754.214760px;}
.y4aa{bottom:754.403580px;}
.y26e{bottom:756.720000px;}
.y25b{bottom:756.899010px;}
.y17e{bottom:758.166930px;}
.y1ba{bottom:760.320000px;}
.y439{bottom:760.325850px;}
.y14b{bottom:763.211610px;}
.y4e1{bottom:763.406550px;}
.y2a2{bottom:764.910000px;}
.yaa{bottom:765.901980px;}
.y21e{bottom:765.992160px;}
.y41a{bottom:766.668510px;}
.y110{bottom:767.160000px;}
.y45d{bottom:768.036240px;}
.y484{bottom:768.487140px;}
.yc3{bottom:768.600000px;}
.y201{bottom:771.929010px;}
.y37e{bottom:771.944040px;}
.y313{bottom:772.936020px;}
.y68{bottom:773.103600px;}
.y88{bottom:774.904950px;}
.y2bf{bottom:774.911070px;}
.y4ca{bottom:775.099890px;}
.y25a{bottom:777.595320px;}
.y1b9{bottom:778.950000px;}
.y17d{bottom:779.855220px;}
.y438{bottom:780.210540px;}
.y26d{bottom:780.750000px;}
.y22{bottom:782.573850px;}
.y10e{bottom:783.907920px;}
.y419{bottom:783.953010px;}
.y4a9{bottom:784.102860px;}
.y10f{bottom:784.440000px;}
.y45c{bottom:785.320740px;}
.y3c4{bottom:785.606310px;}
.y483{bottom:785.681460px;}
.ya9{bottom:786.598290px;}
.y4f{bottom:786.856080px;}
.y26b{bottom:787.139850px;}
.y4ff{bottom:787.702074px;}
.y200{bottom:793.617300px;}
.y312{bottom:793.632330px;}
.y3fa{bottom:794.519850px;}
.y87{bottom:795.601260px;}
.y2be{bottom:795.607380px;}
.y4c9{bottom:795.796200px;}
.y37{bottom:797.322750px;}
.y1b8{bottom:797.670000px;}
.yc2{bottom:798.300000px;}
.y437{bottom:800.005050px;}
.y17c{bottom:800.641710px;}
.y418{bottom:801.147330px;}
.y37d{bottom:801.643320px;}
.y45b{bottom:802.515060px;}
.y67{bottom:802.802880px;}
.y482{bottom:802.965960px;}
.y10d{bottom:804.604230px;}
.y4a8{bottom:804.799170px;}
.y26c{bottom:804.870000px;}
.y26a{bottom:805.769850px;}
.ya8{bottom:807.294600px;}
.y1b5{bottom:814.050000px;}
.y311{bottom:814.328640px;}
.y1ff{bottom:815.305590px;}
.y36{bottom:815.318250px;}
.y86{bottom:816.297570px;}
.y2bd{bottom:816.303690px;}
.y4c8{bottom:816.492510px;}
.y417{bottom:818.431830px;}
.y45a{bottom:819.799560px;}
.y436{bottom:819.889740px;}
.y481{bottom:820.250460px;}
.y52d{bottom:821.481000px;}
.y17b{bottom:822.330000px;}
.y529{bottom:822.712500px;}
.y1b7{bottom:822.960000px;}
.y37c{bottom:823.331610px;}
.y10c{bottom:825.300540px;}
.y4a7{bottom:825.495480px;}
.ya7{bottom:827.990910px;}
.yc1{bottom:828.000000px;}
.ye3{bottom:828.003690px;}
.y4e{bottom:828.980670px;}
.y66{bottom:832.502160px;}
.y531{bottom:833.964983px;}
.y269{bottom:834.120000px;}
.y310{bottom:835.024950px;}
.y416{bottom:835.716330px;}
.y85{bottom:836.993880px;}
.y435{bottom:837.084060px;}
.y480{bottom:837.715320px;}
.y1b4{bottom:841.680000px;}
.y530{bottom:843.534042px;}
.y17a{bottom:844.020000px;}
.y34a{bottom:844.027920px;}
.y37b{bottom:845.019900px;}
.y10b{bottom:845.996850px;}
.y4a6{bottom:846.191790px;}
.ye2{bottom:848.702250px;}
.y4fe{bottom:849.739512px;}
.y35{bottom:851.322750px;}
.y415{bottom:852.910650px;}
.y52f{bottom:853.103100px;}
.y47f{bottom:857.509830px;}
.y84{bottom:857.690190px;}
.yda{bottom:857.700000px;}
.y65{bottom:862.201440px;}
.y179{bottom:864.720000px;}
.y30f{bottom:864.724230px;}
.y349{bottom:865.716210px;}
.y10a{bottom:866.693160px;}
.y4a5{bottom:866.888100px;}
.y1b3{bottom:870.195150px;}
.y268{bottom:870.285330px;}
.y4d{bottom:871.105260px;}
.ye1{bottom:878.401530px;}
.y2{bottom:879.369000px;}
.y178{bottom:886.412520px;}
.y34{bottom:887.327250px;}
.y83{bottom:887.389470px;}
.y1b2{bottom:887.479650px;}
.y4a4{bottom:887.584410px;}
.y64{bottom:891.900720px;}
.y4a3{bottom:908.280720px;}
.y4fd{bottom:911.776950px;}
.y4c{bottom:913.229850px;}
.y63{bottom:921.600000px;}
.y33{bottom:923.331750px;}
.y80{bottom:932.130000px;}
.y32{bottom:941.327250px;}
.y533{bottom:944.803950px;}
.y4a0{bottom:953.010000px;}
.y7f{bottom:954.720000px;}
.y1{bottom:966.726000px;}
.y31{bottom:967.827750px;}
.y532{bottom:969.043950px;}
.y4fc{bottom:974.727300px;}
.h3c{height:17.560020px;}
.h4d{height:19.631250px;}
.h4b{height:19.945350px;}
.h3b{height:21.753457px;}
.h4a{height:24.675541px;}
.h46{height:25.168403px;}
.h47{height:25.300520px;}
.h23{height:30.955078px;}
.h7{height:32.130000px;}
.h42{height:35.169584px;}
.h12{height:36.578286px;}
.h2a{height:39.313477px;}
.h41{height:40.303831px;}
.h15{height:40.416000px;}
.h13{height:41.148000px;}
.h14{height:41.256000px;}
.h3e{height:41.902752px;}
.h32{height:42.832617px;}
.h2b{height:43.290000px;}
.h1d{height:43.769004px;}
.h16{height:45.468000px;}
.hf{height:45.720000px;}
.ha{height:45.840000px;}
.h6{height:45.900000px;}
.h20{height:46.432617px;}
.h43{height:47.994000px;}
.h3{height:48.195000px;}
.h4c{height:48.747000px;}
.h48{height:50.172000px;}
.h45{height:50.634000px;}
.h1e{height:51.694980px;}
.h21{height:51.737100px;}
.h3a{height:52.417969px;}
.h26{height:54.013764px;}
.h39{height:54.061284px;}
.h36{height:54.149484px;}
.h31{height:54.158844px;}
.h24{height:54.190524px;}
.h29{height:54.222924px;}
.h37{height:54.224004px;}
.h28{height:54.229764px;}
.h33{height:54.249924px;}
.h25{height:54.265404px;}
.h30{height:54.267204px;}
.h38{height:54.268284px;}
.h22{height:54.274044px;}
.h2f{height:54.281964px;}
.h34{height:54.282564px;}
.h27{height:54.283764px;}
.h2e{height:54.291684px;}
.h35{height:54.335964px;}
.he{height:55.008000px;}
.h2{height:55.080000px;}
.h1c{height:56.647793px;}
.hd{height:59.592000px;}
.h1b{height:61.910156px;}
.h2d{height:61.920000px;}
.h3d{height:62.577596px;}
.h3f{height:62.802329px;}
.h19{height:69.977988px;}
.h1a{height:72.125332px;}
.h10{height:74.371500px;}
.h5{height:78.030000px;}
.h2c{height:80.550000px;}
.h44{height:82.512000px;}
.h18{height:82.650059px;}
.h49{height:112.610784px;}
.hc{height:114.600000px;}
.h4{height:119.055004px;}
.hb{height:132.936000px;}
.h11{height:166.929477px;}
.h40{height:170.822633px;}
.h8{height:1020.472500px;}
.h1f{height:1020.600000px;}
.h9{height:1020.750000px;}
.h17{height:1020.780000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wb{width:52.318500px;}
.we{width:141.900000px;}
.wa{width:169.290000px;}
.w9{width:222.028500px;}
.wd{width:238.632000px;}
.wc{width:238.648500px;}
.w6{width:353.736000px;}
.w5{width:353.763000px;}
.w2{width:637.794021px;}
.w3{width:722.835000px;}
.w8{width:722.880000px;}
.w7{width:722.970000px;}
.w4{width:723.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:7.650000px;}
.x3e{left:30.063750px;}
.x3d{left:32.327550px;}
.x3c{left:34.769550px;}
.x6{left:41.633850px;}
.x48{left:53.281050px;}
.x41{left:60.264450px;}
.x7{left:64.171350px;}
.x42{left:67.926300px;}
.x43{left:76.222500px;}
.x47{left:83.344050px;}
.xf{left:89.334600px;}
.x2b{left:92.610000px;}
.x44{left:98.575050px;}
.x10{left:100.692150px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x40{left:111.808800px;}
.x11{left:112.990200px;}
.x29{left:114.840000px;}
.x18{left:122.850000px;}
.x16{left:125.267580px;}
.x15{left:126.805500px;}
.x25{left:131.845500px;}
.x23{left:133.347690px;}
.x39{left:138.202560px;}
.x12{left:146.124600px;}
.x30{left:148.913550px;}
.x13{left:160.383000px;}
.x26{left:186.300000px;}
.x49{left:193.233150px;}
.x3b{left:202.034970px;}
.x4{left:203.484001px;}
.x28{left:212.751360px;}
.x1c{left:214.094520px;}
.x1b{left:218.783880px;}
.x17{left:230.735250px;}
.x2e{left:244.980000px;}
.x31{left:247.230000px;}
.x2d{left:252.630000px;}
.x32{left:260.010000px;}
.x46{left:261.396150px;}
.x1a{left:267.751620px;}
.xe{left:272.976000px;}
.x3a{left:284.400000px;}
.x9{left:310.016700px;}
.x8{left:318.304200px;}
.x24{left:322.380000px;}
.xc{left:324.761850px;}
.x37{left:337.680000px;}
.x5{left:348.304350px;}
.x38{left:354.690000px;}
.x19{left:372.150000px;}
.x3f{left:384.033750px;}
.xa{left:385.891200px;}
.x33{left:393.480000px;}
.x34{left:406.260000px;}
.x2a{left:415.080000px;}
.x2c{left:422.730000px;}
.x14{left:433.359000px;}
.xd{left:442.481850px;}
.x3{left:454.959000px;}
.xb{left:492.901500px;}
.x35{left:519.660000px;}
.x45{left:521.706150px;}
.x36{left:532.440000px;}
.x21{left:619.553340px;}
.x27{left:621.266760px;}
.x1f{left:623.791800px;}
.x1e{left:625.415040px;}
.x20{left:627.925050px;}
.x22{left:629.548290px;}
.x1d{left:637.920000px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.526720pt;}
.lsa9{letter-spacing:-1.013333pt;}
.ls8{letter-spacing:-0.704000pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls60{letter-spacing:-0.587840pt;}
.ls9{letter-spacing:-0.512000pt;}
.lsa8{letter-spacing:-0.506667pt;}
.lsa1{letter-spacing:-0.490091pt;}
.ls52{letter-spacing:-0.427520pt;}
.ls44{letter-spacing:-0.374080pt;}
.ls22{letter-spacing:-0.320640pt;}
.lsf{letter-spacing:-0.267200pt;}
.ls1d{letter-spacing:-0.213760pt;}
.ls5f{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.170880pt;}
.ls1c{letter-spacing:-0.160320pt;}
.lsaa{letter-spacing:-0.146797pt;}
.ls1b{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.106880pt;}
.ls5e{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.053440pt;}
.ls4b{letter-spacing:-0.034560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls90{letter-spacing:0.005344pt;}
.ls4d{letter-spacing:0.010688pt;}
.ls68{letter-spacing:0.016032pt;}
.ls94{letter-spacing:0.026720pt;}
.ls72{letter-spacing:0.032064pt;}
.ls93{letter-spacing:0.042752pt;}
.ls23{letter-spacing:0.047360pt;}
.ls64{letter-spacing:0.048096pt;}
.lsb{letter-spacing:0.053440pt;}
.ls85{letter-spacing:0.058784pt;}
.ls96{letter-spacing:0.064128pt;}
.ls70{letter-spacing:0.074816pt;}
.ls46{letter-spacing:0.080160pt;}
.ls4{letter-spacing:0.085440pt;}
.ls27{letter-spacing:0.090848pt;}
.ls10{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.096192pt;}
.ls97{letter-spacing:0.101536pt;}
.lsa{letter-spacing:0.106880pt;}
.ls74{letter-spacing:0.112224pt;}
.ls9d{letter-spacing:0.117568pt;}
.ls9e{letter-spacing:0.122912pt;}
.ls32{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.128160pt;}
.ls4e{letter-spacing:0.133600pt;}
.ls40{letter-spacing:0.138944pt;}
.ls5d{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.154976pt;}
.ls6e{letter-spacing:0.158400pt;}
.lse{letter-spacing:0.160320pt;}
.ls6{letter-spacing:0.170880pt;}
.ls5c{letter-spacing:0.192000pt;}
.ls66{letter-spacing:0.213760pt;}
.ls8e{letter-spacing:0.249600pt;}
.ls69{letter-spacing:0.267200pt;}
.ls28{letter-spacing:0.320640pt;}
.ls71{letter-spacing:0.427520pt;}
.ls55{letter-spacing:0.432000pt;}
.ls7b{letter-spacing:0.432864pt;}
.lsa3{letter-spacing:0.441082pt;}
.ls1e{letter-spacing:0.459584pt;}
.ls43{letter-spacing:0.480960pt;}
.lsa0{letter-spacing:0.490091pt;}
.ls7d{letter-spacing:0.496992pt;}
.ls81{letter-spacing:0.518368pt;}
.lsa5{letter-spacing:0.686131pt;}
.lsa4{letter-spacing:0.771898pt;}
.ls4f{letter-spacing:0.801600pt;}
.lsa2{letter-spacing:0.931172pt;}
.lsa7{letter-spacing:1.066667pt;}
.ls98{letter-spacing:1.079488pt;}
.ls3c{letter-spacing:1.111552pt;}
.ls4c{letter-spacing:1.122240pt;}
.ls3d{letter-spacing:1.143616pt;}
.ls53{letter-spacing:1.389440pt;}
.ls6a{letter-spacing:1.394784pt;}
.ls13{letter-spacing:1.442880pt;}
.ls73{letter-spacing:1.683360pt;}
.ls3e{letter-spacing:1.726112pt;}
.ls67{letter-spacing:1.736800pt;}
.ls3f{letter-spacing:1.742144pt;}
.ls19{letter-spacing:1.763520pt;}
.lsa6{letter-spacing:1.920000pt;}
.ls45{letter-spacing:2.084160pt;}
.ls7c{letter-spacing:2.100192pt;}
.ls2c{letter-spacing:2.404800pt;}
.ls86{letter-spacing:2.709408pt;}
.ls2e{letter-spacing:2.709760pt;}
.ls20{letter-spacing:2.725440pt;}
.ls37{letter-spacing:2.736128pt;}
.lsab{letter-spacing:2.939955pt;}
.ls3b{letter-spacing:2.965920pt;}
.ls51{letter-spacing:3.019360pt;}
.ls21{letter-spacing:3.040736pt;}
.ls48{letter-spacing:3.046080pt;}
.ls1{letter-spacing:3.093333pt;}
.ls2d{letter-spacing:3.318624pt;}
.ls31{letter-spacing:3.366720pt;}
.ls1f{letter-spacing:3.676672pt;}
.ls3a{letter-spacing:3.687360pt;}
.ls76{letter-spacing:3.911808pt;}
.ls47{letter-spacing:3.933184pt;}
.ls39{letter-spacing:4.008000pt;}
.ls80{letter-spacing:4.037120pt;}
.ls87{letter-spacing:4.317952pt;}
.ls79{letter-spacing:4.328640pt;}
.ls77{letter-spacing:4.350016pt;}
.ls3{letter-spacing:4.358066pt;}
.ls4a{letter-spacing:4.649280pt;}
.ls8a{letter-spacing:4.681344pt;}
.ls17{letter-spacing:4.969920pt;}
.ls65{letter-spacing:5.263840pt;}
.ls54{letter-spacing:5.290560pt;}
.ls82{letter-spacing:5.632576pt;}
.ls11{letter-spacing:5.931840pt;}
.ls12{letter-spacing:5.947872pt;}
.ls8f{letter-spacing:6.220416pt;}
.ls18{letter-spacing:6.252480pt;}
.ls14{letter-spacing:6.257824pt;}
.ls5b{letter-spacing:6.576000pt;}
.ls5a{letter-spacing:6.652800pt;}
.ls99{letter-spacing:6.883072pt;}
.ls49{letter-spacing:6.893760pt;}
.ls84{letter-spacing:7.855680pt;}
.ls7a{letter-spacing:8.496960pt;}
.ls91{letter-spacing:9.779520pt;}
.ls38{letter-spacing:10.100160pt;}
.ls89{letter-spacing:10.741440pt;}
.ls75{letter-spacing:12.024000pt;}
.ls41{letter-spacing:12.985920pt;}
.ls7e{letter-spacing:13.627200pt;}
.ls50{letter-spacing:15.551040pt;}
.ls78{letter-spacing:15.871680pt;}
.ls58{letter-spacing:16.464000pt;}
.ls7f{letter-spacing:16.833600pt;}
.ls9f{letter-spacing:18.436800pt;}
.ls92{letter-spacing:21.322560pt;}
.ls88{letter-spacing:23.887680pt;}
.ls15{letter-spacing:25.036640pt;}
.ls6c{letter-spacing:25.056000pt;}
.ls25{letter-spacing:25.805440pt;}
.ls33{letter-spacing:27.312000pt;}
.ls34{letter-spacing:27.676800pt;}
.ls24{letter-spacing:32.845440pt;}
.ls35{letter-spacing:35.697920pt;}
.ls9a{letter-spacing:36.659840pt;}
.ls95{letter-spacing:45.958400pt;}
.ls83{letter-spacing:48.128000pt;}
.ls42{letter-spacing:55.524160pt;}
.ls30{letter-spacing:55.844800pt;}
.ls2f{letter-spacing:56.486080pt;}
.ls26{letter-spacing:57.165440pt;}
.ls36{letter-spacing:62.257600pt;}
.ls9c{letter-spacing:64.181440pt;}
.ls9b{letter-spacing:64.822720pt;}
.ls2b{letter-spacing:84.648960pt;}
.ls8b{letter-spacing:113.376000pt;}
.ls61{letter-spacing:145.376000pt;}
.ls59{letter-spacing:151.136000pt;}
.ls56{letter-spacing:170.048000pt;}
.ls63{letter-spacing:195.296000pt;}
.ls29{letter-spacing:195.405440pt;}
.ls8d{letter-spacing:198.480000pt;}
.ls8c{letter-spacing:201.360000pt;}
.ls62{letter-spacing:248.080000pt;}
.ls57{letter-spacing:370.032000pt;}
.ls6b{letter-spacing:370.976000pt;}
.ls6f{letter-spacing:392.432000pt;}
.ls2a{letter-spacing:401.120640pt;}
.ls6d{letter-spacing:456.128000pt;}
.wsfe{word-spacing:-32.284723pt;}
.ws6{word-spacing:-23.923200pt;}
.ws5{word-spacing:-23.752320pt;}
.ws15{word-spacing:-15.016640pt;}
.ws7{word-spacing:-14.963200pt;}
.wsb{word-spacing:-14.909760pt;}
.wsa{word-spacing:-14.856320pt;}
.ws1d{word-spacing:-14.802880pt;}
.ws8{word-spacing:-14.749440pt;}
.ws1e{word-spacing:-14.696000pt;}
.ws1f{word-spacing:-14.642560pt;}
.ws9{word-spacing:-14.589120pt;}
.ws38{word-spacing:-14.535680pt;}
.ws5b{word-spacing:-14.482240pt;}
.wse6{word-spacing:-14.428800pt;}
.ws6c{word-spacing:-13.488000pt;}
.ws45{word-spacing:-13.440000pt;}
.ws6a{word-spacing:-13.344000pt;}
.ws6b{word-spacing:-13.248000pt;}
.ws44{word-spacing:-13.200000pt;}
.ws92{word-spacing:-13.152000pt;}
.wsf8{word-spacing:-12.077440pt;}
.wsff{word-spacing:-11.869363pt;}
.ws3{word-spacing:-11.861333pt;}
.ws43{word-spacing:-9.607680pt;}
.ws65{word-spacing:-9.573120pt;}
.ws100{word-spacing:-7.333027pt;}
.ws106{word-spacing:-6.899475pt;}
.ws1{word-spacing:-4.358066pt;}
.ws49{word-spacing:-3.687360pt;}
.ws52{word-spacing:-3.366720pt;}
.ws9a{word-spacing:-3.313280pt;}
.wsac{word-spacing:-3.206400pt;}
.ws67{word-spacing:-3.046080pt;}
.ws10c{word-spacing:-2.939955pt;}
.ws81{word-spacing:-2.928000pt;}
.wse8{word-spacing:-2.885760pt;}
.ws21{word-spacing:-2.725440pt;}
.wsb2{word-spacing:-2.565120pt;}
.ws50{word-spacing:-2.404800pt;}
.wsec{word-spacing:-2.244480pt;}
.ws2c{word-spacing:-2.084160pt;}
.wsb4{word-spacing:-2.030720pt;}
.wsf1{word-spacing:-1.977280pt;}
.wsad{word-spacing:-1.923840pt;}
.ws10a{word-spacing:-1.920000pt;}
.ws2b{word-spacing:-1.763520pt;}
.ws59{word-spacing:-1.603200pt;}
.ws53{word-spacing:-1.549760pt;}
.ws46{word-spacing:-1.442880pt;}
.ws95{word-spacing:-1.336000pt;}
.ws89{word-spacing:-1.282560pt;}
.ws87{word-spacing:-1.229120pt;}
.ws1c{word-spacing:-1.122240pt;}
.wsb0{word-spacing:-1.015360pt;}
.wsed{word-spacing:-0.961920pt;}
.ws103{word-spacing:-0.931172pt;}
.wsb1{word-spacing:-0.908480pt;}
.ws27{word-spacing:-0.801600pt;}
.ws105{word-spacing:-0.771898pt;}
.ws6e{word-spacing:-0.720000pt;}
.ws28{word-spacing:-0.694720pt;}
.ws10e{word-spacing:-0.693333pt;}
.wsb8{word-spacing:-0.641280pt;}
.wsf9{word-spacing:-0.587840pt;}
.ws101{word-spacing:-0.490091pt;}
.ws40{word-spacing:-0.480960pt;}
.ws104{word-spacing:-0.441082pt;}
.ws94{word-spacing:-0.427520pt;}
.ws4a{word-spacing:-0.384000pt;}
.wsaa{word-spacing:-0.320640pt;}
.ws14{word-spacing:-0.267200pt;}
.wsf{word-spacing:-0.256320pt;}
.ws8b{word-spacing:-0.213760pt;}
.ws78{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.170880pt;}
.ws12{word-spacing:-0.160320pt;}
.ws7a{word-spacing:-0.144000pt;}
.ws42{word-spacing:-0.106880pt;}
.ws4f{word-spacing:-0.096000pt;}
.wsc{word-spacing:-0.085440pt;}
.ws16{word-spacing:-0.053440pt;}
.ws71{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws83{word-spacing:0.034560pt;}
.ws13{word-spacing:0.053440pt;}
.ws8c{word-spacing:0.096000pt;}
.ws18{word-spacing:0.106880pt;}
.ws4e{word-spacing:0.144000pt;}
.ws10b{word-spacing:0.146797pt;}
.ws31{word-spacing:0.160320pt;}
.wsd{word-spacing:0.170880pt;}
.ws11{word-spacing:0.192000pt;}
.wsf5{word-spacing:0.213760pt;}
.ws20{word-spacing:0.240000pt;}
.ws17{word-spacing:0.267200pt;}
.ws77{word-spacing:0.288000pt;}
.ws35{word-spacing:0.320640pt;}
.ws9d{word-spacing:0.374080pt;}
.ws69{word-spacing:0.427520pt;}
.ws39{word-spacing:0.480960pt;}
.ws102{word-spacing:0.490091pt;}
.ws107{word-spacing:0.506667pt;}
.ws10{word-spacing:0.512000pt;}
.ws8d{word-spacing:0.576000pt;}
.ws88{word-spacing:0.587840pt;}
.ws93{word-spacing:0.641280pt;}
.ws32{word-spacing:0.801600pt;}
.wseb{word-spacing:0.908480pt;}
.ws84{word-spacing:0.961920pt;}
.ws109{word-spacing:1.013333pt;}
.ws33{word-spacing:1.122240pt;}
.ws4{word-spacing:1.194667pt;}
.ws4b{word-spacing:1.200000pt;}
.wsc2{word-spacing:1.282560pt;}
.ws96{word-spacing:1.336000pt;}
.ws36{word-spacing:1.442880pt;}
.wsb3{word-spacing:1.549760pt;}
.ws91{word-spacing:1.603200pt;}
.wsa5{word-spacing:1.656640pt;}
.ws26{word-spacing:1.763520pt;}
.wsaf{word-spacing:1.870400pt;}
.ws5a{word-spacing:1.923840pt;}
.ws19{word-spacing:2.084160pt;}
.ws64{word-spacing:2.191040pt;}
.ws9b{word-spacing:2.244480pt;}
.ws61{word-spacing:2.297920pt;}
.ws3d{word-spacing:2.404800pt;}
.ws47{word-spacing:2.511680pt;}
.ws2f{word-spacing:2.725440pt;}
.ws3e{word-spacing:2.832320pt;}
.wsc3{word-spacing:2.885760pt;}
.ws10d{word-spacing:2.939955pt;}
.wsb9{word-spacing:2.992640pt;}
.ws24{word-spacing:3.046080pt;}
.wsc4{word-spacing:3.152960pt;}
.ws85{word-spacing:3.206400pt;}
.ws9c{word-spacing:3.259840pt;}
.ws48{word-spacing:3.366720pt;}
.ws3a{word-spacing:3.687360pt;}
.wsf4{word-spacing:3.794240pt;}
.ws8f{word-spacing:3.847680pt;}
.ws3f{word-spacing:4.008000pt;}
.ws79{word-spacing:4.080000pt;}
.wsf3{word-spacing:4.168320pt;}
.ws51{word-spacing:4.275200pt;}
.wsae{word-spacing:4.328640pt;}
.ws2{word-spacing:4.358066pt;}
.wsee{word-spacing:4.435520pt;}
.ws2a{word-spacing:4.595840pt;}
.ws8e{word-spacing:4.702720pt;}
.ws9e{word-spacing:4.756160pt;}
.wsab{word-spacing:4.809600pt;}
.ws30{word-spacing:4.916480pt;}
.ws34{word-spacing:5.023360pt;}
.ws37{word-spacing:5.237120pt;}
.wsa6{word-spacing:5.397440pt;}
.ws58{word-spacing:5.557760pt;}
.ws6f{word-spacing:5.712000pt;}
.wsc6{word-spacing:5.718080pt;}
.ws22{word-spacing:5.878400pt;}
.wsf7{word-spacing:5.931840pt;}
.ws23{word-spacing:6.038720pt;}
.ws29{word-spacing:6.199040pt;}
.wsba{word-spacing:6.359360pt;}
.ws86{word-spacing:6.466240pt;}
.ws25{word-spacing:6.519680pt;}
.ws75{word-spacing:6.672000pt;}
.ws66{word-spacing:6.680000pt;}
.ws55{word-spacing:6.840320pt;}
.wsa0{word-spacing:6.947200pt;}
.ws63{word-spacing:7.000640pt;}
.ws62{word-spacing:7.160960pt;}
.wsf0{word-spacing:7.321280pt;}
.ws5c{word-spacing:7.481600pt;}
.wsa4{word-spacing:7.802240pt;}
.wsfd{word-spacing:8.122880pt;}
.ws90{word-spacing:8.443520pt;}
.ws2e{word-spacing:8.764160pt;}
.wsea{word-spacing:9.084800pt;}
.wsc7{word-spacing:9.245120pt;}
.ws54{word-spacing:9.405440pt;}
.ws8a{word-spacing:9.726080pt;}
.wsc8{word-spacing:9.886400pt;}
.ws1b{word-spacing:10.046720pt;}
.ws97{word-spacing:10.207040pt;}
.ws5e{word-spacing:10.367360pt;}
.wse7{word-spacing:10.420800pt;}
.ws1a{word-spacing:10.688000pt;}
.wsbd{word-spacing:10.741440pt;}
.wsfb{word-spacing:11.008640pt;}
.ws68{word-spacing:11.329280pt;}
.wsc0{word-spacing:11.382720pt;}
.wsc1{word-spacing:11.649920pt;}
.wsf2{word-spacing:12.130880pt;}
.ws98{word-spacing:12.291200pt;}
.ws60{word-spacing:12.611840pt;}
.ws5f{word-spacing:12.932480pt;}
.wsfa{word-spacing:13.253120pt;}
.wsa9{word-spacing:13.573760pt;}
.wsa8{word-spacing:13.627200pt;}
.ws74{word-spacing:13.680000pt;}
.wsf6{word-spacing:13.734080pt;}
.wsbf{word-spacing:13.894400pt;}
.wsbe{word-spacing:14.856320pt;}
.ws108{word-spacing:15.149333pt;}
.wsa7{word-spacing:15.176960pt;}
.wse0{word-spacing:15.337280pt;}
.ws41{word-spacing:15.497600pt;}
.ws9f{word-spacing:15.657920pt;}
.wsa2{word-spacing:15.818240pt;}
.wsa1{word-spacing:15.978560pt;}
.wscd{word-spacing:16.299200pt;}
.ws99{word-spacing:16.459520pt;}
.ws70{word-spacing:16.560000pt;}
.ws57{word-spacing:16.780160pt;}
.wsfc{word-spacing:18.383360pt;}
.wsb7{word-spacing:18.704000pt;}
.ws3b{word-spacing:19.345280pt;}
.ws3c{word-spacing:19.665920pt;}
.ws7e{word-spacing:20.400000pt;}
.ws7d{word-spacing:21.072000pt;}
.wsef{word-spacing:21.269120pt;}
.wsc5{word-spacing:21.589760pt;}
.wsc9{word-spacing:21.750080pt;}
.ws72{word-spacing:22.848000pt;}
.wsbb{word-spacing:23.513600pt;}
.wsbc{word-spacing:23.994560pt;}
.wsce{word-spacing:24.154880pt;}
.ws2d{word-spacing:25.116800pt;}
.wsca{word-spacing:25.437440pt;}
.wscf{word-spacing:25.597760pt;}
.wsa3{word-spacing:25.758080pt;}
.wsd0{word-spacing:25.918400pt;}
.ws4c{word-spacing:27.312000pt;}
.wsd4{word-spacing:27.361280pt;}
.ws4d{word-spacing:27.456000pt;}
.wsd3{word-spacing:27.681920pt;}
.wsd5{word-spacing:27.842240pt;}
.wsd9{word-spacing:28.002560pt;}
.wsd8{word-spacing:28.323200pt;}
.ws5d{word-spacing:29.285120pt;}
.ws80{word-spacing:29.712000pt;}
.ws6d{word-spacing:30.048000pt;}
.ws7c{word-spacing:30.960000pt;}
.wsdc{word-spacing:33.079360pt;}
.ws56{word-spacing:33.552000pt;}
.ws7b{word-spacing:35.136000pt;}
.wsd7{word-spacing:35.644480pt;}
.ws7f{word-spacing:37.680000pt;}
.wse3{word-spacing:39.331840pt;}
.wsdb{word-spacing:45.904960pt;}
.wsb5{word-spacing:46.546240pt;}
.wsb6{word-spacing:46.866880pt;}
.wsd6{word-spacing:50.393920pt;}
.wse4{word-spacing:54.081280pt;}
.wsdf{word-spacing:54.882880pt;}
.ws73{word-spacing:54.960000pt;}
.wsda{word-spacing:65.410560pt;}
.wsd2{word-spacing:66.693120pt;}
.wsde{word-spacing:69.899520pt;}
.wsdd{word-spacing:70.220160pt;}
.wse1{word-spacing:72.144000pt;}
.wsd1{word-spacing:77.274240pt;}
.wscb{word-spacing:80.480640pt;}
.ws76{word-spacing:84.096000pt;}
.wse9{word-spacing:86.519360pt;}
.ws82{word-spacing:91.152000pt;}
.wse5{word-spacing:99.344960pt;}
.wscc{word-spacing:119.171200pt;}
.wse2{word-spacing:123.018880pt;}
._35{margin-left:-1529.866667pt;}
._33{margin-left:-16.250652pt;}
._11{margin-left:-14.432960pt;}
._12{margin-left:-13.173120pt;}
._f{margin-left:-11.706560pt;}
._10{margin-left:-9.892800pt;}
._e{margin-left:-8.135680pt;}
._13{margin-left:-7.184640pt;}
._14{margin-left:-6.191040pt;}
._6{margin-left:-5.284800pt;}
._1{margin-left:-4.272000pt;}
._0{margin-left:-3.258667pt;}
._2{margin-left:-2.280000pt;}
._5{margin-left:-1.065600pt;}
._7{width:0.974016pt;}
._18{width:2.442240pt;}
._c{width:4.221760pt;}
._1e{width:5.127040pt;}
._a{width:6.088960pt;}
._1c{width:7.563584pt;}
._b{width:8.600640pt;}
._1b{width:9.826560pt;}
._27{width:10.916928pt;}
._2a{width:12.344640pt;}
._22{width:15.264000pt;}
._26{width:16.993920pt;}
._d{width:19.395520pt;}
._1f{width:20.625984pt;}
._24{width:25.056000pt;}
._25{width:26.720000pt;}
._29{width:28.040000pt;}
._20{width:38.112000pt;}
._4{width:42.432000pt;}
._19{width:45.936000pt;}
._21{width:55.951680pt;}
._1a{width:62.524800pt;}
._17{width:68.723840pt;}
._3{width:77.088000pt;}
._23{width:93.795968pt;}
._9{width:144.903936pt;}
._1d{width:146.532480pt;}
._15{width:150.059520pt;}
._31{width:174.252672pt;}
._28{width:187.968000pt;}
._2f{width:211.123968pt;}
._30{width:224.179968pt;}
._2b{width:280.881984pt;}
._16{width:333.679360pt;}
._2c{width:355.425984pt;}
._2e{width:483.264000pt;}
._2d{width:488.736000pt;}
._34{width:490.080000pt;}
._32{width:750.419264pt;}
._8{width:753.171520pt;}
.fs13{font-size:21.440000pt;}
.fs1d{font-size:23.266667pt;}
.fs12{font-size:26.560000pt;}
.fs1c{font-size:28.784533pt;}
.fs1a{font-size:29.359467pt;}
.fs11{font-size:32.000000pt;}
.fs10{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fs9{font-size:42.669333pt;}
.fs17{font-size:42.883200pt;}
.fsa{font-size:48.000000pt;}
.fs14{font-size:49.009067pt;}
.fs18{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fsd{font-size:74.560000pt;}
.fs15{font-size:76.576533pt;}
.fsc{font-size:85.440000pt;}
.fs2{font-size:90.666667pt;}
.fs19{font-size:96.000000pt;}
.fs6{font-size:133.333333pt;}
.fs1b{font-size:139.997867pt;}
.fs5{font-size:154.666667pt;}
.fs8{font-size:207.526933pt;}
.fs16{font-size:208.288533pt;}
.y0{bottom:0.000000pt;}
.y536{bottom:0.530000pt;}
.y52e{bottom:11.345467pt;}
.y52c{bottom:11.447235pt;}
.y2d{bottom:16.819733pt;}
.y52b{bottom:19.741284pt;}
.y502{bottom:23.554533pt;}
.y1c4{bottom:24.480000pt;}
.y1b6{bottom:24.560000pt;}
.y535{bottom:26.418667pt;}
.y52a{bottom:28.035333pt;}
.y534{bottom:33.928667pt;}
.y538{bottom:35.336267pt;}
.y23{bottom:36.873467pt;}
.y2c{bottom:37.038667pt;}
.y1c3{bottom:41.040000pt;}
.y1dd{bottom:41.120000pt;}
.y2e{bottom:41.668533pt;}
.y501{bottom:43.464400pt;}
.y4b{bottom:48.228800pt;}
.y4a2{bottom:50.075760pt;}
.y82{bottom:50.076160pt;}
.y537{bottom:51.334267pt;}
.y30{bottom:53.491612pt;}
.y1c2{bottom:57.679867pt;}
.y1ce{bottom:57.680000pt;}
.y5{bottom:59.133337pt;}
.y4a{bottom:64.224800pt;}
.y4a1{bottom:65.359600pt;}
.y81{bottom:65.360000pt;}
.y2f{bottom:66.100400pt;}
.y49{bottom:80.220800pt;}
.y109{bottom:80.559867pt;}
.y12e{bottom:80.560000pt;}
.y3d7{bottom:80.964480pt;}
.y2de{bottom:83.855680pt;}
.y19b{bottom:84.476800pt;}
.y14a{bottom:84.560000pt;}
.y331{bottom:85.373280pt;}
.y4{bottom:86.333337pt;}
.y21d{bottom:86.535600pt;}
.y39b{bottom:86.882960pt;}
.y360{bottom:89.398240pt;}
.y2a1{bottom:90.089360pt;}
.y2fa{bottom:90.637120pt;}
.y1fe{bottom:91.337760pt;}
.y3b7{bottom:91.358560pt;}
.y243{bottom:91.573920pt;}
.y1e1{bottom:94.083280pt;}
.y108{bottom:94.323867pt;}
.y12d{bottom:94.324000pt;}
.y149{bottom:94.560000pt;}
.y48{bottom:96.216800pt;}
.ya6{bottom:96.341840pt;}
.y177{bottom:96.903600pt;}
.y37a{bottom:96.960160pt;}
.y4c7{bottom:97.143040pt;}
.y3d6{bottom:99.361200pt;}
.y2dd{bottom:102.252400pt;}
.yd9{bottom:102.480000pt;}
.y259{bottom:102.547040pt;}
.y19a{bottom:102.873520pt;}
.y330{bottom:103.770000pt;}
.y348{bottom:104.902960pt;}
.y21c{bottom:104.932320pt;}
.y30e{bottom:104.936400pt;}
.y39a{bottom:105.279680pt;}
.y414{bottom:106.400000pt;}
.y35f{bottom:107.794960pt;}
.y107{bottom:108.159867pt;}
.y49f{bottom:108.446000pt;}
.y2f9{bottom:109.033840pt;}
.y2a0{bottom:109.367840pt;}
.y1fd{bottom:109.734480pt;}
.y3b6{bottom:109.755280pt;}
.y242{bottom:109.970640pt;}
.y12c{bottom:112.160000pt;}
.y1e0{bottom:112.480000pt;}
.ya5{bottom:114.738560pt;}
.y379{bottom:115.356880pt;}
.y4c6{bottom:115.539760pt;}
.y3d5{bottom:117.757920pt;}
.y3ad{bottom:119.120000pt;}
.y3f6{bottom:120.093760pt;}
.y3f0{bottom:120.149360pt;}
.y2dc{bottom:120.649120pt;}
.y258{bottom:120.943760pt;}
.y199{bottom:121.270240pt;}
.y106{bottom:121.923867pt;}
.y12b{bottom:122.160000pt;}
.y32f{bottom:122.166720pt;}
.y347{bottom:123.299680pt;}
.y176{bottom:123.302960pt;}
.y21b{bottom:123.329040pt;}
.y30d{bottom:123.333120pt;}
.y399{bottom:123.676400pt;}
.y21{bottom:123.790666pt;}
.y288{bottom:124.483280pt;}
.y35e{bottom:126.191680pt;}
.y2f8{bottom:127.430560pt;}
.y29f{bottom:127.764560pt;}
.y1fc{bottom:128.131200pt;}
.y148{bottom:128.141760pt;}
.y3b5{bottom:128.152000pt;}
.y47{bottom:128.220800pt;}
.y241{bottom:128.367360pt;}
.yd8{bottom:128.880000pt;}
.y413{bottom:129.920000pt;}
.y1dc{bottom:133.680000pt;}
.y4c5{bottom:133.936480pt;}
.y49e{bottom:134.845360pt;}
.y3ac{bottom:135.679867pt;}
.y165{bottom:136.154640pt;}
.y4fb{bottom:137.836229pt;}
.y47e{bottom:138.011680pt;}
.y3f5{bottom:138.490480pt;}
.y7e{bottom:138.508000pt;}
.y3ef{bottom:138.546080pt;}
.y257{bottom:139.340480pt;}
.y412{bottom:139.600000pt;}
.y198{bottom:139.666960pt;}
.y105{bottom:139.759867pt;}
.ya4{bottom:139.855360pt;}
.y32e{bottom:140.563440pt;}
.y1df{bottom:141.679867pt;}
.y346{bottom:141.696400pt;}
.y175{bottom:141.699680pt;}
.y30c{bottom:141.729840pt;}
.y378{bottom:141.756240pt;}
.y398{bottom:142.073120pt;}
.y287{bottom:142.886427pt;}
.y46{bottom:144.216800pt;}
.y2f7{bottom:145.827280pt;}
.y12a{bottom:145.948800pt;}
.y29e{bottom:146.161280pt;}
.y1fb{bottom:146.527920pt;}
.y147{bottom:146.538480pt;}
.y3b4{bottom:146.548720pt;}
.y240{bottom:146.764080pt;}
.y2db{bottom:147.048480pt;}
.y21a{bottom:149.728400pt;}
.y104{bottom:149.759867pt;}
.y4c4{bottom:152.333200pt;}
.y4d8{bottom:152.413360pt;}
.y35d{bottom:152.591040pt;}
.y47d{bottom:154.417760pt;}
.y4fa{bottom:154.683095pt;}
.y411{bottom:154.960000pt;}
.yd7{bottom:155.280000pt;}
.y3ab{bottom:156.240000pt;}
.y3f4{bottom:156.887200pt;}
.y7d{bottom:156.904720pt;}
.y3ee{bottom:156.942800pt;}
.y256{bottom:157.737200pt;}
.y1de{bottom:158.240000pt;}
.y62{bottom:158.893280pt;}
.y32d{bottom:158.960160pt;}
.y345{bottom:160.093120pt;}
.y174{bottom:160.096400pt;}
.y30b{bottom:160.126560pt;}
.y377{bottom:160.152960pt;}
.y45{bottom:160.212800pt;}
.y4e0{bottom:160.335840pt;}
.y397{bottom:160.469840pt;}
.y49d{bottom:161.244720pt;}
.y286{bottom:161.283147pt;}
.y164{bottom:162.554000pt;}
.y2f6{bottom:164.224000pt;}
.y129{bottom:164.345520pt;}
.ya3{bottom:164.892000pt;}
.y146{bottom:164.935200pt;}
.y3b3{bottom:164.945440pt;}
.y23f{bottom:165.160800pt;}
.y29d{bottom:165.439760pt;}
.y2da{bottom:165.445200pt;}
.y197{bottom:166.066320pt;}
.y434{bottom:166.361600pt;}
.y2bc{bottom:168.712960pt;}
.y410{bottom:170.320000pt;}
.y4c3{bottom:170.729920pt;}
.y35c{bottom:170.987760pt;}
.y4f9{bottom:171.529962pt;}
.y1fa{bottom:172.927280pt;}
.y1db{bottom:174.800000pt;}
.y18{bottom:175.052000pt;}
.y7c{bottom:175.221280pt;}
.y219{bottom:176.127760pt;}
.y255{bottom:176.133920pt;}
.y44{bottom:176.208800pt;}
.y3aa{bottom:176.800000pt;}
.y61{bottom:177.290000pt;}
.y32c{bottom:177.356880pt;}
.y344{bottom:178.489840pt;}
.y173{bottom:178.493120pt;}
.y376{bottom:178.549680pt;}
.y4d7{bottom:178.732560pt;}
.y285{bottom:179.693680pt;}
.y47c{bottom:180.817120pt;}
.y163{bottom:180.950720pt;}
.yd6{bottom:181.679867pt;}
.y2f5{bottom:182.620720pt;}
.y128{bottom:182.742240pt;}
.y3f3{bottom:183.286560pt;}
.y3b2{bottom:183.342160pt;}
.y103{bottom:183.494160pt;}
.y23e{bottom:183.557520pt;}
.y29c{bottom:183.836480pt;}
.y2d9{bottom:183.841920pt;}
.y196{bottom:184.463040pt;}
.y459{bottom:185.078960pt;}
.y40f{bottom:185.679867pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1b1{bottom:186.524080pt;}
.y30a{bottom:186.525920pt;}
.y396{bottom:186.869200pt;}
.y49c{bottom:187.644080pt;}
.y4f8{bottom:188.376829pt;}
.ya2{bottom:188.565920pt;}
.y4c2{bottom:189.126640pt;}
.y35b{bottom:189.384480pt;}
.y1f9{bottom:191.324000pt;}
.y145{bottom:191.334560pt;}
.y43{bottom:192.204800pt;}
.y3a9{bottom:193.360000pt;}
.y7b{bottom:193.618000pt;}
.y433{bottom:194.123680pt;}
.y254{bottom:194.530640pt;}
.y2bb{bottom:195.112320pt;}
.y60{bottom:195.686720pt;}
.y32b{bottom:195.753600pt;}
.y47b{bottom:196.181120pt;}
.y343{bottom:196.886560pt;}
.y172{bottom:196.889840pt;}
.y375{bottom:196.946400pt;}
.y4d6{bottom:197.129280pt;}
.y1da{bottom:197.360000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y284{bottom:198.090400pt;}
.y162{bottom:199.347440pt;}
.y458{bottom:200.442960pt;}
.y2f4{bottom:201.017440pt;}
.y127{bottom:201.138960pt;}
.y3f2{bottom:201.683280pt;}
.y3b1{bottom:201.738880pt;}
.y102{bottom:201.890880pt;}
.y23d{bottom:201.954240pt;}
.y29b{bottom:202.233200pt;}
.y2d8{bottom:202.238640pt;}
.y218{bottom:202.527120pt;}
.y195{bottom:202.859760pt;}
.y3c3{bottom:202.861120pt;}
.y309{bottom:204.922640pt;}
.y395{bottom:205.265920pt;}
.y4d5{bottom:207.523360pt;}
.y35a{bottom:207.781200pt;}
.yd5{bottom:208.080000pt;}
.y42{bottom:208.200800pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1f8{bottom:209.720720pt;}
.y40e{bottom:210.480000pt;}
.y47a{bottom:211.545120pt;}
.y7a{bottom:212.014720pt;}
.y1b0{bottom:212.923440pt;}
.ya1{bottom:212.961280pt;}
.y2ba{bottom:213.509040pt;}
.y4f7{bottom:213.910553pt;}
.y1d9{bottom:213.920000pt;}
.y5f{bottom:214.003280pt;}
.y49b{bottom:214.043440pt;}
.y516{bottom:214.461467pt;}
.y342{bottom:215.283280pt;}
.y171{bottom:215.286560pt;}
.y374{bottom:215.343120pt;}
.y4c1{bottom:215.526000pt;}
.y457{bottom:215.726800pt;}
.y283{bottom:216.487120pt;}
.y144{bottom:217.733920pt;}
.y161{bottom:217.744160pt;}
.y2f3{bottom:219.414160pt;}
.y126{bottom:219.535680pt;}
.y3b0{bottom:220.135600pt;}
.y29a{bottom:220.629920pt;}
.y2d7{bottom:220.635360pt;}
.y217{bottom:220.923840pt;}
.y253{bottom:220.930000pt;}
.y194{bottom:221.256480pt;}
.y32a{bottom:222.152960pt;}
.y308{bottom:223.319360pt;}
.y394{bottom:223.662640pt;}
.y41{bottom:224.196800pt;}
.y432{bottom:225.078800pt;}
.y3f9{bottom:225.746800pt;}
.y359{bottom:226.177920pt;}
.y479{bottom:226.909120pt;}
.y1f7{bottom:228.117440pt;}
.yc0{bottom:228.138240pt;}
.y101{bottom:228.290240pt;}
.y23c{bottom:228.353600pt;}
.y3c2{bottom:229.260480pt;}
.y40d{bottom:229.380960pt;}
.y527{bottom:230.427467pt;}
.y1d8{bottom:230.480000pt;}
.y4f6{bottom:230.757419pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y456{bottom:231.090800pt;}
.y1af{bottom:231.320160pt;}
.ya0{bottom:231.358000pt;}
.y2b9{bottom:231.905760pt;}
.y5e{bottom:232.400000pt;}
.y341{bottom:233.680000pt;}
.y170{bottom:233.683280pt;}
.y373{bottom:233.739840pt;}
.y4c0{bottom:233.922720pt;}
.yd4{bottom:234.480000pt;}
.y143{bottom:236.130640pt;}
.y160{bottom:236.140880pt;}
.y125{bottom:237.932400pt;}
.y79{bottom:238.414080pt;}
.y3af{bottom:238.532320pt;}
.y2d6{bottom:239.032080pt;}
.y216{bottom:239.320560pt;}
.y252{bottom:239.326720pt;}
.y193{bottom:239.653200pt;}
.y49a{bottom:240.442800pt;}
.y329{bottom:240.549680pt;}
.y307{bottom:241.716080pt;}
.y393{bottom:242.059360pt;}
.y478{bottom:242.192960pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y431{bottom:242.754080pt;}
.y282{bottom:242.886480pt;}
.y3d4{bottom:244.143520pt;}
.y2f2{bottom:245.813520pt;}
.y455{bottom:246.454800pt;}
.y1f6{bottom:246.514160pt;}
.ybf{bottom:246.534960pt;}
.y100{bottom:246.686960pt;}
.y23b{bottom:246.750320pt;}
.y4f5{bottom:247.604286pt;}
.y40c{bottom:247.777680pt;}
.y299{bottom:247.911040pt;}
.y3c1{bottom:248.538960pt;}
.y1ae{bottom:249.716880pt;}
.y9f{bottom:249.754720pt;}
.y2b8{bottom:250.302480pt;}
.y372{bottom:252.136560pt;}
.y16f{bottom:252.146160pt;}
.y4bf{bottom:252.319440pt;}
.y358{bottom:252.577280pt;}
.y1d7{bottom:253.040000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y142{bottom:254.527360pt;}
.y15f{bottom:254.537600pt;}
.y40{bottom:256.200800pt;}
.y124{bottom:256.329120pt;}
.y477{bottom:257.556960pt;}
.y215{bottom:257.717280pt;}
.y251{bottom:257.723440pt;}
.y192{bottom:258.049920pt;}
.y328{bottom:258.946400pt;}
.y5d{bottom:259.436640pt;}
.y3a8{bottom:259.680000pt;}
.y306{bottom:260.112800pt;}
.y340{bottom:260.122800pt;}
.y4df{bottom:260.322080pt;}
.y430{bottom:260.429360pt;}
.y392{bottom:260.456080pt;}
.yd3{bottom:260.880000pt;}
.y454{bottom:261.738640pt;}
.y515{bottom:262.455467pt;}
.y3d3{bottom:262.540240pt;}
.y2f1{bottom:264.210240pt;}
.y4f4{bottom:264.451153pt;}
.y78{bottom:264.813440pt;}
.y1f5{bottom:264.910880pt;}
.ybe{bottom:264.931680pt;}
.yff{bottom:265.083680pt;}
.y23a{bottom:265.147040pt;}
.y2d5{bottom:265.431440pt;}
.y40b{bottom:266.174400pt;}
.y298{bottom:266.307760pt;}
.y499{bottom:266.842160pt;}
.y3c0{bottom:266.935680pt;}
.y1ad{bottom:268.113600pt;}
.y281{bottom:269.285840pt;}
.y1d6{bottom:269.600000pt;}
.y371{bottom:270.533280pt;}
.y16e{bottom:270.542880pt;}
.y4be{bottom:270.716160pt;}
.y357{bottom:270.974000pt;}
.y3f{bottom:272.196800pt;}
.y476{bottom:272.920960pt;}
.y141{bottom:272.924080pt;}
.y3ea{bottom:272.929920pt;}
.y15e{bottom:272.934320pt;}
.y42f{bottom:275.713200pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y214{bottom:276.114000pt;}
.y250{bottom:276.120160pt;}
.y9e{bottom:276.154080pt;}
.y3a7{bottom:276.240000pt;}
.y2b7{bottom:276.701840pt;}
.y453{bottom:277.102640pt;}
.y327{bottom:277.343120pt;}
.y526{bottom:278.421467pt;}
.y514{bottom:278.453467pt;}
.y305{bottom:278.509520pt;}
.y33f{bottom:278.519520pt;}
.y4de{bottom:278.718800pt;}
.y267{bottom:280.936960pt;}
.y4f3{bottom:281.298019pt;}
.y2f0{bottom:282.606960pt;}
.y123{bottom:282.728480pt;}
.ybd{bottom:283.328400pt;}
.yfe{bottom:283.480400pt;}
.y239{bottom:283.543760pt;}
.y2d4{bottom:283.828160pt;}
.y191{bottom:284.449280pt;}
.y40a{bottom:284.571120pt;}
.y297{bottom:284.704480pt;}
.y1d5{bottom:286.160000pt;}
.y3bf{bottom:286.214160pt;}
.y1ac{bottom:286.510320pt;}
.y391{bottom:286.855440pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yd2{bottom:287.280000pt;}
.y5c{bottom:287.677200pt;}
.y475{bottom:288.204800pt;}
.y370{bottom:288.930000pt;}
.y16d{bottom:288.939600pt;}
.y4d4{bottom:289.112880pt;}
.y356{bottom:289.370720pt;}
.y77{bottom:291.212800pt;}
.y1f4{bottom:291.310240pt;}
.y140{bottom:291.320800pt;}
.y15d{bottom:291.331040pt;}
.y452{bottom:292.386480pt;}
.y498{bottom:293.241520pt;}
.y42e{bottom:293.388480pt;}
.y525{bottom:294.421467pt;}
.y513{bottom:294.451467pt;}
.y213{bottom:294.510720pt;}
.y24f{bottom:294.516880pt;}
.y9d{bottom:294.550800pt;}
.y2b6{bottom:295.098560pt;}
.y280{bottom:295.685200pt;}
.y304{bottom:296.906240pt;}
.y33e{bottom:296.916240pt;}
.y4bd{bottom:297.115520pt;}
.y3e9{bottom:299.329280pt;}
.y266{bottom:299.333680pt;}
.y2ef{bottom:301.003680pt;}
.y3a6{bottom:301.520000pt;}
.y3f1{bottom:301.725120pt;}
.yfd{bottom:301.877120pt;}
.y238{bottom:301.940480pt;}
.y2d3{bottom:303.106640pt;}
.y474{bottom:303.568800pt;}
.y326{bottom:303.742480pt;}
.y1ab{bottom:304.907040pt;}
.y3be{bottom:305.492640pt;}
.y4f2{bottom:306.831743pt;}
.y36f{bottom:307.326720pt;}
.y3f8{bottom:307.336320pt;}
.y4d3{bottom:307.509600pt;}
.y451{bottom:307.750480pt;}
.y1d4{bottom:308.720000pt;}
.y122{bottom:309.127840pt;}
.yf{bottom:309.452000pt;}
.y1f3{bottom:309.706960pt;}
.y13f{bottom:309.717520pt;}
.ybc{bottom:309.727760pt;}
.y524{bottom:310.421467pt;}
.y512{bottom:310.449467pt;}
.y190{bottom:310.848640pt;}
.y409{bottom:310.970480pt;}
.y42d{bottom:310.983600pt;}
.y296{bottom:311.103840pt;}
.y212{bottom:312.907440pt;}
.y24e{bottom:312.913600pt;}
.y9c{bottom:312.947520pt;}
.y390{bottom:313.174640pt;}
.y2b5{bottom:313.495280pt;}
.yd1{bottom:313.680000pt;}
.y27f{bottom:314.081920pt;}
.y303{bottom:315.302960pt;}
.y33d{bottom:315.312960pt;}
.y16c{bottom:315.338960pt;}
.y4bc{bottom:315.512240pt;}
.y355{bottom:315.770080pt;}
.y5b{bottom:315.917760pt;}
.y76{bottom:317.612160pt;}
.y3e8{bottom:317.726000pt;}
.y265{bottom:317.730400pt;}
.y473{bottom:318.932800pt;}
.y497{bottom:319.560720pt;}
.yfc{bottom:320.273840pt;}
.y237{bottom:320.337200pt;}
.y2d2{bottom:321.503360pt;}
.y325{bottom:322.139200pt;}
.y450{bottom:323.114480pt;}
.y1aa{bottom:323.303760pt;}
.y4f1{bottom:323.678610pt;}
.y3bd{bottom:323.889360pt;}
.y1d3{bottom:325.280000pt;}
.y36e{bottom:325.723440pt;}
.y3d2{bottom:325.733040pt;}
.y523{bottom:326.421467pt;}
.y511{bottom:326.447467pt;}
.y3a5{bottom:326.720000pt;}
.y2ee{bottom:327.403040pt;}
.y1f2{bottom:328.103680pt;}
.y15c{bottom:328.124480pt;}
.y42c{bottom:328.658880pt;}
.y408{bottom:329.367200pt;}
.y295{bottom:330.462480pt;}
.y24d{bottom:331.310320pt;}
.y9b{bottom:331.344240pt;}
.y2b4{bottom:331.892000pt;}
.y302{bottom:333.699680pt;}
.y33c{bottom:333.709680pt;}
.y4bb{bottom:333.908960pt;}
.y354{bottom:334.166800pt;}
.y472{bottom:334.216640pt;}
.y121{bottom:335.527200pt;}
.y13e{bottom:336.116880pt;}
.y3e7{bottom:336.122720pt;}
.ybb{bottom:336.127120pt;}
.y18f{bottom:337.167840pt;}
.y44f{bottom:338.398320pt;}
.yfb{bottom:338.670560pt;}
.y236{bottom:338.733920pt;}
.y211{bottom:339.306800pt;}
.y38f{bottom:339.574000pt;}
.yd0{bottom:340.080000pt;}
.y27e{bottom:340.481280pt;}
.y4f0{bottom:340.525476pt;}
.y2d1{bottom:340.781840pt;}
.y324{bottom:341.417680pt;}
.y1a9{bottom:341.700480pt;}
.y16b{bottom:341.738320pt;}
.y1d2{bottom:341.840000pt;}
.y522{bottom:342.421467pt;}
.y510{bottom:342.445467pt;}
.y3bc{bottom:343.167840pt;}
.y3a4{bottom:343.280000pt;}
.ye{bottom:343.809333pt;}
.y75{bottom:344.011520pt;}
.y3d1{bottom:344.129760pt;}
.y5a{bottom:344.158320pt;}
.y2ed{bottom:345.799760pt;}
.y496{bottom:345.960080pt;}
.y42b{bottom:346.254000pt;}
.y1f1{bottom:346.500400pt;}
.y15b{bottom:346.521200pt;}
.y407{bottom:347.763920pt;}
.y471{bottom:349.580640pt;}
.y24c{bottom:349.707040pt;}
.y9a{bottom:349.740960pt;}
.y2b3{bottom:350.288720pt;}
.y301{bottom:352.096400pt;}
.y33b{bottom:352.106400pt;}
.y36d{bottom:352.122800pt;}
.y4ba{bottom:352.305680pt;}
.y353{bottom:352.563520pt;}
.y44e{bottom:353.762320pt;}
.y120{bottom:353.923920pt;}
.yba{bottom:354.523840pt;}
.y18e{bottom:355.564560pt;}
.yfa{bottom:357.067280pt;}
.y235{bottom:357.130640pt;}
.y294{bottom:357.743600pt;}
.y38e{bottom:357.970720pt;}
.y521{bottom:358.421467pt;}
.y50f{bottom:358.443467pt;}
.y2d0{bottom:359.178560pt;}
.y323{bottom:359.814400pt;}
.y1a8{bottom:360.097200pt;}
.y4dd{bottom:360.308320pt;}
.y3bb{bottom:361.644720pt;}
.y13d{bottom:362.516240pt;}
.y3e6{bottom:362.522080pt;}
.y3d0{bottom:362.526480pt;}
.yd{bottom:362.706666pt;}
.y3a3{bottom:363.840000pt;}
.y42a{bottom:363.849120pt;}
.y2ec{bottom:364.196480pt;}
.y1d1{bottom:364.400000pt;}
.y15a{bottom:364.917920pt;}
.y470{bottom:364.944640pt;}
.y210{bottom:365.706160pt;}
.y4ef{bottom:366.059200pt;}
.ycf{bottom:366.400000pt;}
.y27d{bottom:366.880640pt;}
.y24b{bottom:368.103760pt;}
.y99{bottom:368.137680pt;}
.y2b2{bottom:368.685440pt;}
.y44d{bottom:369.126320pt;}
.y74{bottom:370.410880pt;}
.y300{bottom:370.493120pt;}
.y33a{bottom:370.503120pt;}
.y36c{bottom:370.519520pt;}
.y4b9{bottom:370.702400pt;}
.y352{bottom:371.922160pt;}
.y11f{bottom:372.320640pt;}
.y495{bottom:372.359440pt;}
.y59{bottom:372.398880pt;}
.y1f0{bottom:372.899760pt;}
.yb9{bottom:372.920560pt;}
.y18d{bottom:373.961280pt;}
.y406{bottom:374.163280pt;}
.y520{bottom:374.421467pt;}
.y50e{bottom:374.441467pt;}
.yf9{bottom:375.464000pt;}
.y234{bottom:375.527360pt;}
.y293{bottom:376.140320pt;}
.y2cf{bottom:377.655440pt;}
.y1a7{bottom:378.493920pt;}
.y4dc{bottom:378.705040pt;}
.y429{bottom:379.132960pt;}
.y46f{bottom:380.228480pt;}
.y13c{bottom:380.912960pt;}
.y3e5{bottom:380.918800pt;}
.y3cf{bottom:380.923200pt;}
.y1d0{bottom:380.960000pt;}
.y4ee{bottom:382.906067pt;}
.y159{bottom:383.314640pt;}
.y2eb{bottom:383.474960pt;}
.y38d{bottom:384.370080pt;}
.y3a2{bottom:384.400000pt;}
.y44c{bottom:384.410160pt;}
.y24a{bottom:386.500480pt;}
.y98{bottom:386.534400pt;}
.y2b1{bottom:387.082160pt;}
.y322{bottom:387.095520pt;}
.y2ff{bottom:388.889840pt;}
.y339{bottom:388.899840pt;}
.y36b{bottom:388.916240pt;}
.y3ba{bottom:388.925840pt;}
.y4d2{bottom:389.099120pt;}
.y51f{bottom:390.421467pt;}
.y50d{bottom:390.439467pt;}
.yb8{bottom:391.317280pt;}
.y20f{bottom:392.105520pt;}
.y18c{bottom:392.358000pt;}
.y405{bottom:392.560000pt;}
.yce{bottom:392.800000pt;}
.y27c{bottom:393.280000pt;}
.y233{bottom:393.924080pt;}
.y428{bottom:394.496960pt;}
.y292{bottom:394.537040pt;}
.y46e{bottom:395.592480pt;}
.y73{bottom:396.810240pt;}
.y1a6{bottom:396.890640pt;}
.y4b8{bottom:397.101760pt;}
.y1cf{bottom:397.520000pt;}
.y11e{bottom:398.746880pt;}
.y494{bottom:398.758800pt;}
.y351{bottom:399.203280pt;}
.y1ef{bottom:399.299120pt;}
.y13b{bottom:399.309680pt;}
.y3e4{bottom:399.315520pt;}
.y3ce{bottom:399.319920pt;}
.y4ed{bottom:399.752933pt;}
.y44b{bottom:399.774160pt;}
.y58{bottom:400.639440pt;}
.y3a1{bottom:400.960000pt;}
.y158{bottom:401.711360pt;}
.yf8{bottom:401.863360pt;}
.y2ea{bottom:401.871680pt;}
.y38c{bottom:402.766800pt;}
.y249{bottom:404.897200pt;}
.y97{bottom:404.931120pt;}
.y2ce{bottom:404.936560pt;}
.y2b0{bottom:405.478880pt;}
.y321{bottom:405.492240pt;}
.y50c{bottom:406.437467pt;}
.y51e{bottom:406.475467pt;}
.y2fe{bottom:407.286560pt;}
.y338{bottom:407.296560pt;}
.y36a{bottom:407.312960pt;}
.y3b9{bottom:407.322560pt;}
.y4d1{bottom:407.495840pt;}
.yb7{bottom:409.714000pt;}
.y427{bottom:409.860960pt;}
.y20e{bottom:410.502240pt;}
.y18b{bottom:410.754720pt;}
.y46d{bottom:410.956480pt;}
.y1cd{bottom:412.080000pt;}
.y232{bottom:412.320800pt;}
.y291{bottom:412.933760pt;}
.y44a{bottom:415.138160pt;}
.y1a5{bottom:415.287360pt;}
.y4b7{bottom:415.498480pt;}
.y404{bottom:416.080000pt;}
.y4ec{bottom:416.599800pt;}
.y11d{bottom:417.143600pt;}
.y3a0{bottom:417.520000pt;}
.y350{bottom:417.600000pt;}
.y13a{bottom:417.706400pt;}
.y3e3{bottom:417.712240pt;}
.y3f7{bottom:417.716640pt;}
.ycd{bottom:419.200000pt;}
.y1cc{bottom:420.080000pt;}
.y157{bottom:420.108080pt;}
.yf7{bottom:420.260080pt;}
.y2e9{bottom:421.150160pt;}
.y38b{bottom:421.163520pt;}
.y50b{bottom:422.435467pt;}
.y72{bottom:423.209600pt;}
.y248{bottom:423.293920pt;}
.y96{bottom:423.327840pt;}
.y2cd{bottom:423.333280pt;}
.y27b{bottom:423.760000pt;}
.y2af{bottom:423.875600pt;}
.y426{bottom:425.144800pt;}
.y493{bottom:425.158160pt;}
.y2fd{bottom:425.683280pt;}
.y337{bottom:425.693280pt;}
.y1ee{bottom:425.698480pt;}
.y369{bottom:425.709680pt;}
.y3cd{bottom:425.719280pt;}
.y46c{bottom:426.240320pt;}
.y264{bottom:428.110720pt;}
.y57{bottom:428.880000pt;}
.y20d{bottom:428.898960pt;}
.y18a{bottom:429.151440pt;}
.y449{bottom:430.422000pt;}
.y290{bottom:431.330480pt;}
.y320{bottom:431.891600pt;}
.y4eb{bottom:433.446667pt;}
.y3b8{bottom:433.721920pt;}
.y4b6{bottom:433.895200pt;}
.y11c{bottom:435.540320pt;}
.y139{bottom:436.103120pt;}
.yb6{bottom:436.113360pt;}
.y403{bottom:436.160000pt;}
.y1cb{bottom:436.640000pt;}
.y39f{bottom:438.080000pt;}
.y156{bottom:438.424640pt;}
.y50a{bottom:438.433467pt;}
.y51d{bottom:438.471467pt;}
.y231{bottom:438.640000pt;}
.y38a{bottom:439.560240pt;}
.y2e8{bottom:439.627040pt;}
.y425{bottom:440.508800pt;}
.y46b{bottom:441.604320pt;}
.y1a4{bottom:441.686720pt;}
.y95{bottom:441.724560pt;}
.y2cc{bottom:441.730000pt;}
.y2ae{bottom:442.272320pt;}
.y492{bottom:443.554880pt;}
.y34f{bottom:443.920000pt;}
.y336{bottom:444.090000pt;}
.y1ed{bottom:444.095200pt;}
.y368{bottom:444.106400pt;}
.y3e2{bottom:444.111600pt;}
.y2fc{bottom:444.116000pt;}
.y27a{bottom:445.120000pt;}
.ycc{bottom:445.600000pt;}
.yec{bottom:445.601200pt;}
.y448{bottom:445.786000pt;}
.y263{bottom:446.427280pt;}
.yf6{bottom:446.659440pt;}
.yc{bottom:446.990669pt;}
.y189{bottom:447.548160pt;}
.y71{bottom:449.608960pt;}
.y247{bottom:449.693280pt;}
.y28f{bottom:449.727200pt;}
.y31f{bottom:450.288320pt;}
.y4ea{bottom:450.293533pt;}
.y402{bottom:452.080000pt;}
.y4b5{bottom:452.291920pt;}
.y1ca{bottom:453.120000pt;}
.y11b{bottom:453.937040pt;}
.y138{bottom:454.419680pt;}
.y3ed{bottom:454.429920pt;}
.y51c{bottom:454.469467pt;}
.y20c{bottom:455.298320pt;}
.y424{bottom:455.872800pt;}
.y56{bottom:457.680000pt;}
.y389{bottom:457.956960pt;}
.y39e{bottom:458.640000pt;}
.y1a3{bottom:460.083440pt;}
.y94{bottom:460.121280pt;}
.y2cb{bottom:460.126720pt;}
.y4db{bottom:460.294560pt;}
.y2ad{bottom:460.669040pt;}
.y447{bottom:461.150000pt;}
.y335{bottom:462.406560pt;}
.y367{bottom:462.422960pt;}
.y3e1{bottom:462.428160pt;}
.yb5{bottom:462.432560pt;}
.yb{bottom:462.990669pt;}
.y155{bottom:464.824000pt;}
.y188{bottom:465.944880pt;}
.yf5{bottom:466.018080pt;}
.y34e{bottom:466.039760pt;}
.y230{bottom:466.480000pt;}
.y2e7{bottom:466.908160pt;}
.y4e9{bottom:467.140400pt;}
.y279{bottom:467.280000pt;}
.y46a{bottom:468.003680pt;}
.y246{bottom:468.090000pt;}
.y16a{bottom:468.123920pt;}
.y31e{bottom:468.685040pt;}
.y1c9{bottom:469.760000pt;}
.y491{bottom:469.954240pt;}
.y1ec{bottom:470.414400pt;}
.y509{bottom:470.429467pt;}
.y51b{bottom:470.467467pt;}
.y4b4{bottom:470.608480pt;}
.ycb{bottom:472.000000pt;}
.yeb{bottom:472.000560pt;}
.y137{bottom:472.816400pt;}
.y3ec{bottom:472.826640pt;}
.y401{bottom:474.316000pt;}
.y39d{bottom:475.200000pt;}
.y70{bottom:476.008320pt;}
.y388{bottom:476.353680pt;}
.y446{bottom:476.433840pt;}
.y1a2{bottom:478.419680pt;}
.y93{bottom:478.437840pt;}
.y2ca{bottom:478.443280pt;}
.y4da{bottom:478.611120pt;}
.ya{bottom:478.990666pt;}
.y2ac{bottom:479.065760pt;}
.y11a{bottom:480.336400pt;}
.y334{bottom:480.803280pt;}
.y366{bottom:480.819680pt;}
.y3e0{bottom:480.824880pt;}
.yb4{bottom:480.829280pt;}
.y22f{bottom:481.680000pt;}
.y20b{bottom:481.697680pt;}
.y423{bottom:482.192000pt;}
.y262{bottom:483.220720pt;}
.y469{bottom:483.367680pt;}
.y187{bottom:484.341600pt;}
.yf4{bottom:485.296560pt;}
.y2e6{bottom:485.304880pt;}
.y34d{bottom:485.318240pt;}
.y245{bottom:486.406560pt;}
.y508{bottom:486.427467pt;}
.y169{bottom:486.440480pt;}
.y51a{bottom:486.465467pt;}
.y4e8{bottom:486.613760pt;}
.y31d{bottom:487.081760pt;}
.ye0{bottom:488.000000pt;}
.y2fb{bottom:488.831920pt;}
.y55{bottom:488.968880pt;}
.y4d0{bottom:489.005200pt;}
.y136{bottom:491.213120pt;}
.y154{bottom:491.223360pt;}
.y445{bottom:491.797840pt;}
.y400{bottom:492.076000pt;}
.y1c8{bottom:492.240000pt;}
.y278{bottom:492.560000pt;}
.y490{bottom:493.307520pt;}
.y28e{bottom:494.443120pt;}
.y387{bottom:494.750400pt;}
.y9{bottom:494.990666pt;}
.y22a{bottom:496.800000pt;}
.y1eb{bottom:496.813760pt;}
.y1a1{bottom:496.816400pt;}
.y92{bottom:496.834560pt;}
.y2c9{bottom:496.840000pt;}
.y4b3{bottom:497.007840pt;}
.y2ab{bottom:497.462480pt;}
.yea{bottom:498.399920pt;}
.yca{bottom:498.400000pt;}
.y468{bottom:498.651520pt;}
.y119{bottom:498.733120pt;}
.y333{bottom:499.200000pt;}
.y365{bottom:499.216400pt;}
.y3df{bottom:499.221600pt;}
.yb3{bottom:499.226000pt;}
.y22e{bottom:499.520000pt;}
.y261{bottom:501.617440pt;}
.y6f{bottom:502.407680pt;}
.y507{bottom:502.425467pt;}
.y519{bottom:502.463467pt;}
.y2e5{bottom:503.701600pt;}
.yf3{bottom:504.575040pt;}
.y34c{bottom:504.596720pt;}
.y244{bottom:504.803280pt;}
.y168{bottom:504.837200pt;}
.y4e7{bottom:505.010480pt;}
.y31c{bottom:505.478480pt;}
.y444{bottom:507.161840pt;}
.y3cc{bottom:507.228640pt;}
.y39c{bottom:507.308800pt;}
.y4cf{bottom:507.401920pt;}
.y20a{bottom:508.097040pt;}
.y48f{bottom:508.671520pt;}
.y1c7{bottom:508.800000pt;}
.y277{bottom:509.120000pt;}
.y135{bottom:509.609840pt;}
.y3eb{bottom:509.620080pt;}
.y3ff{bottom:509.920000pt;}
.y422{bottom:509.954080pt;}
.y275{bottom:510.720000pt;}
.y186{bottom:510.740960pt;}
.y28d{bottom:512.839840pt;}
.y386{bottom:513.147120pt;}
.y467{bottom:514.015520pt;}
.ydf{bottom:514.400000pt;}
.y229{bottom:514.640000pt;}
.y1a0{bottom:515.213120pt;}
.y91{bottom:515.231280pt;}
.y2c8{bottom:515.236720pt;}
.y4b2{bottom:515.404560pt;}
.y118{bottom:517.129840pt;}
.y22d{bottom:517.360000pt;}
.y332{bottom:517.603280pt;}
.y364{bottom:517.613120pt;}
.y3de{bottom:517.618320pt;}
.yb2{bottom:517.622720pt;}
.y506{bottom:518.423467pt;}
.y518{bottom:518.461467pt;}
.y260{bottom:520.014160pt;}
.y3e{bottom:522.065600pt;}
.y2e4{bottom:522.098320pt;}
.y504{bottom:522.189059pt;}
.y443{bottom:522.445680pt;}
.y54{bottom:522.725920pt;}
.y1ea{bottom:523.213120pt;}
.y167{bottom:523.233920pt;}
.y4e6{bottom:523.407200pt;}
.yf2{bottom:523.853520pt;}
.y2aa{bottom:523.861840pt;}
.y48e{bottom:524.195840pt;}
.ye9{bottom:524.799280pt;}
.yc9{bottom:524.800000pt;}
.y1c6{bottom:525.440000pt;}
.y3cb{bottom:525.625360pt;}
.y4ce{bottom:525.798640pt;}
.y209{bottom:526.493760pt;}
.y134{bottom:528.006560pt;}
.y6e{bottom:528.807040pt;}
.y185{bottom:529.137680pt;}
.y466{bottom:529.299360pt;}
.y228{bottom:529.840000pt;}
.y276{bottom:530.480000pt;}
.y28c{bottom:531.236560pt;}
.y274{bottom:531.280000pt;}
.y31b{bottom:531.877840pt;}
.y226{bottom:532.480000pt;}
.y19f{bottom:533.609840pt;}
.y90{bottom:533.628000pt;}
.y2c7{bottom:533.633440pt;}
.y4b1{bottom:533.801280pt;}
.y505{bottom:534.421467pt;}
.y503{bottom:534.442933pt;}
.y517{bottom:534.459467pt;}
.y117{bottom:535.526560pt;}
.y363{bottom:536.009840pt;}
.yb1{bottom:536.019440pt;}
.y442{bottom:537.809680pt;}
.y3d{bottom:538.065600pt;}
.y25f{bottom:538.410880pt;}
.y385{bottom:539.546480pt;}
.y48d{bottom:539.720160pt;}
.y1c1{bottom:540.000000pt;}
.yde{bottom:540.803280pt;}
.y421{bottom:540.909200pt;}
.y1e9{bottom:541.609840pt;}
.y166{bottom:541.630640pt;}
.y4e5{bottom:541.803920pt;}
.y2a9{bottom:542.258560pt;}
.yf1{bottom:543.132000pt;}
.y3dd{bottom:544.017680pt;}
.y3ae{bottom:544.022080pt;}
.y465{bottom:544.663360pt;}
.y208{bottom:544.890480pt;}
.y133{bottom:546.403280pt;}
.y184{bottom:547.534400pt;}
.y225{bottom:547.680000pt;}
.y1c5{bottom:547.920000pt;}
.y2e3{bottom:548.497680pt;}
.y3fe{bottom:549.200000pt;}
.y28b{bottom:549.633280pt;}
.y31a{bottom:550.274560pt;}
.ye8{bottom:551.198640pt;}
.yc8{bottom:551.200000pt;}
.y19e{bottom:552.006560pt;}
.y8f{bottom:552.024720pt;}
.y2b{bottom:552.037067pt;}
.y4b0{bottom:552.198000pt;}
.y441{bottom:553.173680pt;}
.y116{bottom:553.923280pt;}
.y362{bottom:554.406560pt;}
.yb0{bottom:554.416160pt;}
.y6d{bottom:555.206400pt;}
.y48c{bottom:555.244480pt;}
.y420{bottom:556.273200pt;}
.y273{bottom:556.480000pt;}
.y53{bottom:556.482960pt;}
.y384{bottom:557.943200pt;}
.ydd{bottom:559.200000pt;}
.y1e8{bottom:560.006560pt;}
.y151{bottom:560.027360pt;}
.y2c6{bottom:560.032800pt;}
.y4e4{bottom:560.200640pt;}
.y2a8{bottom:560.655280pt;}
.y3dc{bottom:562.414400pt;}
.y3ca{bottom:562.418800pt;}
.y224{bottom:562.880000pt;}
.y1c0{bottom:564.480000pt;}
.y132{bottom:564.810240pt;}
.y22c{bottom:565.520000pt;}
.y183{bottom:565.931120pt;}
.y2e2{bottom:567.776160pt;}
.y28a{bottom:568.030000pt;}
.y2a{bottom:568.037067pt;}
.y440{bottom:568.457520pt;}
.y319{bottom:568.671280pt;}
.y3c{bottom:570.065600pt;}
.y19d{bottom:570.403280pt;}
.yf0{bottom:570.413120pt;}
.y8e{bottom:570.421440pt;}
.y4af{bottom:570.594720pt;}
.y48b{bottom:570.608480pt;}
.y207{bottom:571.289840pt;}
.y41f{bottom:571.637200pt;}
.y115{bottom:572.320000pt;}
.y361{bottom:572.803280pt;}
.y153{bottom:572.812880pt;}
.y8{bottom:573.786667pt;}
.y464{bottom:575.311200pt;}
.y383{bottom:576.339920pt;}
.ye7{bottom:577.598000pt;}
.yc7{bottom:577.600000pt;}
.y272{bottom:577.840000pt;}
.y223{bottom:578.080000pt;}
.y1e7{bottom:578.403280pt;}
.y150{bottom:578.424080pt;}
.y2c5{bottom:578.429520pt;}
.y4d9{bottom:578.597360pt;}
.y2a7{bottom:579.052000pt;}
.y227{bottom:580.720000pt;}
.y3db{bottom:580.811120pt;}
.yaf{bottom:580.815520pt;}
.y1bf{bottom:581.040000pt;}
.y6c{bottom:581.605760pt;}
.y131{bottom:583.206960pt;}
.y43f{bottom:583.821520pt;}
.y29{bottom:584.037067pt;}
.y3c9{bottom:584.329200pt;}
.ydc{bottom:585.600000pt;}
.y3b{bottom:586.065600pt;}
.y48a{bottom:586.132800pt;}
.y2e1{bottom:586.172880pt;}
.y289{bottom:586.426720pt;}
.y41e{bottom:586.921040pt;}
.y318{bottom:587.068000pt;}
.y3fd{bottom:588.400000pt;}
.yef{bottom:588.809840pt;}
.y19c{bottom:588.818160pt;}
.y4cd{bottom:588.991440pt;}
.y206{bottom:589.686560pt;}
.y52{bottom:590.240000pt;}
.y463{bottom:590.675200pt;}
.y25e{bottom:591.209600pt;}
.y182{bottom:592.330480pt;}
.y7{bottom:592.685334pt;}
.y222{bottom:595.920000pt;}
.y1e6{bottom:596.809840pt;}
.y8d{bottom:596.820800pt;}
.y2c4{bottom:596.826240pt;}
.y4ae{bottom:596.994080pt;}
.y2a6{bottom:597.448720pt;}
.y114{bottom:597.600000pt;}
.y1be{bottom:597.679867pt;}
.y528{bottom:597.689333pt;}
.y22b{bottom:598.560000pt;}
.y43e{bottom:599.105360pt;}
.y152{bottom:599.212240pt;}
.y3a{bottom:599.398933pt;}
.y271{bottom:600.000000pt;}
.y41d{bottom:602.285040pt;}
.y3c8{bottom:602.725920pt;}
.y382{bottom:602.739280pt;}
.y489{bottom:603.727920pt;}
.yc6{bottom:604.000000pt;}
.y14f{bottom:604.823440pt;}
.y2e0{bottom:605.451360pt;}
.y317{bottom:605.464720pt;}
.y462{bottom:606.039200pt;}
.yee{bottom:607.206560pt;}
.y3da{bottom:607.210480pt;}
.yae{bottom:607.214880pt;}
.y4cc{bottom:607.388160pt;}
.y6b{bottom:608.005120pt;}
.y205{bottom:608.965040pt;}
.y130{bottom:609.606320pt;}
.y181{bottom:610.727200pt;}
.ye6{bottom:612.000000pt;}
.ydb{bottom:612.003280pt;}
.y221{bottom:613.759867pt;}
.y43d{bottom:614.469360pt;}
.y1e5{bottom:615.206560pt;}
.y8c{bottom:615.217520pt;}
.y2c3{bottom:615.222960pt;}
.y4ad{bottom:615.390800pt;}
.y113{bottom:616.000000pt;}
.y28{bottom:616.031733pt;}
.y51{bottom:617.191627pt;}
.y25d{bottom:617.608960pt;}
.y488{bottom:619.252240pt;}
.y25{bottom:619.515600pt;}
.y1bd{bottom:620.160000pt;}
.y461{bottom:621.323040pt;}
.y381{bottom:622.017760pt;}
.y3c7{bottom:622.084560pt;}
.y14e{bottom:623.220160pt;}
.y2a5{bottom:623.848080pt;}
.y316{bottom:623.861440pt;}
.y2df{bottom:624.729840pt;}
.y270{bottom:625.280000pt;}
.yed{bottom:625.603280pt;}
.y3d9{bottom:625.607200pt;}
.yad{bottom:625.611600pt;}
.y4cb{bottom:625.784880pt;}
.y3fc{bottom:627.679867pt;}
.y204{bottom:628.243520pt;}
.y41c{bottom:628.684400pt;}
.y39{bottom:628.732267pt;}
.y220{bottom:628.960000pt;}
.y180{bottom:629.123920pt;}
.y43c{bottom:629.833360pt;}
.yc5{bottom:630.400000pt;}
.y34b{bottom:631.864080pt;}
.y1e4{bottom:633.603280pt;}
.y8b{bottom:633.614240pt;}
.y2c2{bottom:633.619680pt;}
.y4ac{bottom:633.787520pt;}
.y112{bottom:634.400000pt;}
.y6a{bottom:634.404480pt;}
.y12f{bottom:636.005680pt;}
.y27{bottom:636.034400pt;}
.y460{bottom:636.687040pt;}
.y1bc{bottom:636.720000pt;}
.y487{bottom:636.927520pt;}
.ye5{bottom:638.400000pt;}
.y380{bottom:640.494640pt;}
.y3c6{bottom:641.363040pt;}
.y14d{bottom:641.616880pt;}
.y4e3{bottom:641.790160pt;}
.y2a4{bottom:643.126560pt;}
.y3d8{bottom:644.003920pt;}
.yac{bottom:644.008320pt;}
.y38{bottom:644.732267pt;}
.y500{bottom:645.035232pt;}
.y43b{bottom:645.117200pt;}
.y6{bottom:645.598667pt;}
.y50{bottom:646.625707pt;}
.y26f{bottom:647.440000pt;}
.y203{bottom:647.522000pt;}
.y21f{bottom:650.160000pt;}
.y315{bottom:650.260800pt;}
.y1e3{bottom:652.006560pt;}
.y8a{bottom:652.010960pt;}
.y2c1{bottom:652.016400pt;}
.y45f{bottom:652.051040pt;}
.y4ab{bottom:652.184240pt;}
.y486{bottom:652.451840pt;}
.y1bb{bottom:653.360000pt;}
.y25c{bottom:654.402400pt;}
.y41b{bottom:655.083760pt;}
.y24{bottom:655.515600pt;}
.y17f{bottom:655.523280pt;}
.y26{bottom:656.037067pt;}
.yc4{bottom:656.800000pt;}
.y14c{bottom:660.013600pt;}
.y4e2{bottom:660.186880pt;}
.y43a{bottom:660.481200pt;}
.y3c5{bottom:660.641520pt;}
.y69{bottom:660.803840pt;}
.y2a3{bottom:661.523280pt;}
.yab{bottom:662.405040pt;}
.y111{bottom:663.600000pt;}
.ye4{bottom:664.803280pt;}
.y202{bottom:666.880640pt;}
.y3fb{bottom:666.960000pt;}
.y45e{bottom:667.334880pt;}
.y485{bottom:667.735680pt;}
.y37f{bottom:667.775760pt;}
.y314{bottom:668.657520pt;}
.y3{bottom:668.977329pt;}
.y1e2{bottom:670.403280pt;}
.y89{bottom:670.407680pt;}
.y2c0{bottom:670.413120pt;}
.y4aa{bottom:670.580960pt;}
.y26e{bottom:672.640000pt;}
.y25b{bottom:672.799120pt;}
.y17e{bottom:673.926160pt;}
.y1ba{bottom:675.840000pt;}
.y439{bottom:675.845200pt;}
.y14b{bottom:678.410320pt;}
.y4e1{bottom:678.583600pt;}
.y2a2{bottom:679.920000pt;}
.yaa{bottom:680.801760pt;}
.y21e{bottom:680.881920pt;}
.y41a{bottom:681.483120pt;}
.y110{bottom:681.920000pt;}
.y45d{bottom:682.698880pt;}
.y484{bottom:683.099680pt;}
.yc3{bottom:683.200000pt;}
.y201{bottom:686.159120pt;}
.y37e{bottom:686.172480pt;}
.y313{bottom:687.054240pt;}
.y68{bottom:687.203200pt;}
.y88{bottom:688.804400pt;}
.y2bf{bottom:688.809840pt;}
.y4ca{bottom:688.977680pt;}
.y25a{bottom:691.195840pt;}
.y1b9{bottom:692.400000pt;}
.y17d{bottom:693.204640pt;}
.y438{bottom:693.520480pt;}
.y26d{bottom:694.000000pt;}
.y22{bottom:695.621200pt;}
.y10e{bottom:696.807040pt;}
.y419{bottom:696.847120pt;}
.y4a9{bottom:696.980320pt;}
.y10f{bottom:697.280000pt;}
.y45c{bottom:698.062880pt;}
.y3c4{bottom:698.316720pt;}
.y483{bottom:698.383520pt;}
.ya9{bottom:699.198480pt;}
.y4f{bottom:699.427627pt;}
.y26b{bottom:699.679867pt;}
.y4ff{bottom:700.179622pt;}
.y200{bottom:705.437600pt;}
.y312{bottom:705.450960pt;}
.y3fa{bottom:706.239867pt;}
.y87{bottom:707.201120pt;}
.y2be{bottom:707.206560pt;}
.y4c9{bottom:707.374400pt;}
.y37{bottom:708.731333pt;}
.y1b8{bottom:709.040000pt;}
.yc2{bottom:709.600000pt;}
.y437{bottom:711.115600pt;}
.y17c{bottom:711.681520pt;}
.y418{bottom:712.130960pt;}
.y37d{bottom:712.571840pt;}
.y45b{bottom:713.346720pt;}
.y67{bottom:713.602560pt;}
.y482{bottom:713.747520pt;}
.y10d{bottom:715.203760pt;}
.y4a8{bottom:715.377040pt;}
.y26c{bottom:715.440000pt;}
.y26a{bottom:716.239867pt;}
.ya8{bottom:717.595200pt;}
.y1b5{bottom:723.600000pt;}
.y311{bottom:723.847680pt;}
.y1ff{bottom:724.716080pt;}
.y36{bottom:724.727333pt;}
.y86{bottom:725.597840pt;}
.y2bd{bottom:725.603280pt;}
.y4c8{bottom:725.771120pt;}
.y417{bottom:727.494960pt;}
.y45a{bottom:728.710720pt;}
.y436{bottom:728.790880pt;}
.y481{bottom:729.111520pt;}
.y52d{bottom:730.205333pt;}
.y17b{bottom:730.960000pt;}
.y529{bottom:731.300000pt;}
.y1b7{bottom:731.520000pt;}
.y37c{bottom:731.850320pt;}
.y10c{bottom:733.600480pt;}
.y4a7{bottom:733.773760pt;}
.ya7{bottom:735.991920pt;}
.yc1{bottom:736.000000pt;}
.ye3{bottom:736.003280pt;}
.y4e{bottom:736.871707pt;}
.y66{bottom:740.001920pt;}
.y531{bottom:741.302207pt;}
.y269{bottom:741.440000pt;}
.y310{bottom:742.244400pt;}
.y416{bottom:742.858960pt;}
.y85{bottom:743.994560pt;}
.y435{bottom:744.074720pt;}
.y480{bottom:744.635840pt;}
.y1b4{bottom:748.160000pt;}
.y530{bottom:749.808037pt;}
.y17a{bottom:750.240000pt;}
.y34a{bottom:750.247040pt;}
.y37b{bottom:751.128800pt;}
.y10b{bottom:751.997200pt;}
.y4a6{bottom:752.170480pt;}
.ye2{bottom:754.402000pt;}
.y4fe{bottom:755.324011pt;}
.y35{bottom:756.731333pt;}
.y415{bottom:758.142800pt;}
.y52f{bottom:758.313867pt;}
.y47f{bottom:762.230960pt;}
.y84{bottom:762.391280pt;}
.yda{bottom:762.400000pt;}
.y65{bottom:766.401280pt;}
.y179{bottom:768.640000pt;}
.y30f{bottom:768.643760pt;}
.y349{bottom:769.525520pt;}
.y10a{bottom:770.393920pt;}
.y4a5{bottom:770.567200pt;}
.y1b3{bottom:773.506800pt;}
.y268{bottom:773.586960pt;}
.y4d{bottom:774.315787pt;}
.ye1{bottom:780.801360pt;}
.y2{bottom:781.661334pt;}
.y178{bottom:787.922240pt;}
.y34{bottom:788.735333pt;}
.y83{bottom:788.790640pt;}
.y1b2{bottom:788.870800pt;}
.y4a4{bottom:788.963920pt;}
.y64{bottom:792.800640pt;}
.y4a3{bottom:807.360640pt;}
.y4fd{bottom:810.468400pt;}
.y4c{bottom:811.759867pt;}
.y63{bottom:819.200000pt;}
.y33{bottom:820.739333pt;}
.y80{bottom:828.560000pt;}
.y32{bottom:836.735333pt;}
.y533{bottom:839.825733pt;}
.y4a0{bottom:847.120000pt;}
.y7f{bottom:848.640000pt;}
.y1{bottom:859.312000pt;}
.y31{bottom:860.291333pt;}
.y532{bottom:861.372400pt;}
.y4fc{bottom:866.424267pt;}
.h3c{height:15.608906pt;}
.h4d{height:17.450000pt;}
.h4b{height:17.729200pt;}
.h3b{height:19.336406pt;}
.h4a{height:21.933814pt;}
.h46{height:22.371914pt;}
.h47{height:22.489351pt;}
.h23{height:27.515625pt;}
.h7{height:28.560000pt;}
.h42{height:31.261853pt;}
.h12{height:32.514032pt;}
.h2a{height:34.945312pt;}
.h41{height:35.825628pt;}
.h15{height:35.925333pt;}
.h13{height:36.576000pt;}
.h14{height:36.672000pt;}
.h3e{height:37.246891pt;}
.h32{height:38.073437pt;}
.h2b{height:38.480000pt;}
.h1d{height:38.905781pt;}
.h16{height:40.416000pt;}
.hf{height:40.640000pt;}
.ha{height:40.746667pt;}
.h6{height:40.800000pt;}
.h20{height:41.273438pt;}
.h43{height:42.661333pt;}
.h3{height:42.840000pt;}
.h4c{height:43.330667pt;}
.h48{height:44.597333pt;}
.h45{height:45.008000pt;}
.h1e{height:45.951094pt;}
.h21{height:45.988534pt;}
.h3a{height:46.593750pt;}
.h26{height:48.012235pt;}
.h39{height:48.054475pt;}
.h36{height:48.132875pt;}
.h31{height:48.141195pt;}
.h24{height:48.169355pt;}
.h29{height:48.198155pt;}
.h37{height:48.199115pt;}
.h28{height:48.204235pt;}
.h33{height:48.222155pt;}
.h25{height:48.235915pt;}
.h30{height:48.237515pt;}
.h38{height:48.238475pt;}
.h22{height:48.243595pt;}
.h2f{height:48.250635pt;}
.h34{height:48.251168pt;}
.h27{height:48.252235pt;}
.h2e{height:48.259275pt;}
.h35{height:48.298635pt;}
.he{height:48.896000pt;}
.h2{height:48.960000pt;}
.h1c{height:50.353594pt;}
.hd{height:52.970667pt;}
.h1b{height:55.031250pt;}
.h2d{height:55.040000pt;}
.h3d{height:55.624530pt;}
.h3f{height:55.824293pt;}
.h19{height:62.202656pt;}
.h1a{height:64.111406pt;}
.h10{height:66.108000pt;}
.h5{height:69.360000pt;}
.h2c{height:71.600000pt;}
.h44{height:73.344000pt;}
.h18{height:73.466719pt;}
.h49{height:100.098475pt;}
.hc{height:101.866667pt;}
.h4{height:105.826671pt;}
.hb{height:118.165333pt;}
.h11{height:148.381757pt;}
.h40{height:151.842341pt;}
.h8{height:907.086667pt;}
.h1f{height:907.200000pt;}
.h9{height:907.333333pt;}
.h17{height:907.360000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wb{width:46.505333pt;}
.we{width:126.133333pt;}
.wa{width:150.480000pt;}
.w9{width:197.358667pt;}
.wd{width:212.117333pt;}
.wc{width:212.132000pt;}
.w6{width:314.432000pt;}
.w5{width:314.456000pt;}
.w2{width:566.928019pt;}
.w3{width:642.520000pt;}
.w8{width:642.560000pt;}
.w7{width:642.640000pt;}
.w4{width:642.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:6.800000pt;}
.x3e{left:26.723333pt;}
.x3d{left:28.735600pt;}
.x3c{left:30.906267pt;}
.x6{left:37.007867pt;}
.x48{left:47.360933pt;}
.x41{left:53.568400pt;}
.x7{left:57.041200pt;}
.x42{left:60.378933pt;}
.x43{left:67.753333pt;}
.x47{left:74.083600pt;}
.xf{left:79.408533pt;}
.x2b{left:82.320000pt;}
.x44{left:87.622267pt;}
.x10{left:89.504133pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x40{left:99.385600pt;}
.x11{left:100.435733pt;}
.x29{left:102.080000pt;}
.x18{left:109.200000pt;}
.x16{left:111.348960pt;}
.x15{left:112.716000pt;}
.x25{left:117.196000pt;}
.x23{left:118.531280pt;}
.x39{left:122.846720pt;}
.x12{left:129.888533pt;}
.x30{left:132.367600pt;}
.x13{left:142.562667pt;}
.x26{left:165.600000pt;}
.x49{left:171.762800pt;}
.x3b{left:179.586640pt;}
.x4{left:180.874667pt;}
.x28{left:189.112320pt;}
.x1c{left:190.306240pt;}
.x1b{left:194.474560pt;}
.x17{left:205.098000pt;}
.x2e{left:217.760000pt;}
.x31{left:219.760000pt;}
.x2d{left:224.560000pt;}
.x32{left:231.120000pt;}
.x46{left:232.352133pt;}
.x1a{left:238.001440pt;}
.xe{left:242.645333pt;}
.x3a{left:252.800000pt;}
.x9{left:275.570400pt;}
.x8{left:282.937067pt;}
.x24{left:286.560000pt;}
.xc{left:288.677200pt;}
.x37{left:300.160000pt;}
.x5{left:309.603867pt;}
.x38{left:315.280000pt;}
.x19{left:330.800000pt;}
.x3f{left:341.363333pt;}
.xa{left:343.014400pt;}
.x33{left:349.760000pt;}
.x34{left:361.120000pt;}
.x2a{left:368.960000pt;}
.x2c{left:375.760000pt;}
.x14{left:385.208000pt;}
.xd{left:393.317200pt;}
.x3{left:404.408000pt;}
.xb{left:438.134667pt;}
.x35{left:461.920000pt;}
.x45{left:463.738800pt;}
.x36{left:473.280000pt;}
.x21{left:550.714080pt;}
.x27{left:552.237120pt;}
.x1f{left:554.481600pt;}
.x1e{left:555.924480pt;}
.x20{left:558.155600pt;}
.x22{left:559.598480pt;}
.x1d{left:567.040000pt;}
}




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