
    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_d0ef9672aa9ee2ac8360868f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.239000;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_d10085724aa3f7c2bdf2d4f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133000;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_839699d8cc69dbce6265c49d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202000;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_6bfb55686a40ebacc5fe4a02.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.203000;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_c3ffb9ff95981814e03cb6d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202000;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_330a20ffbe35540a125b5922.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e02441a244167165bd74828d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_b7273553d8eb526a97e4d8ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_77fc3480c26a638d40b67fc4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202000;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_9923b970795d158c31a82144.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.066000;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_4cd796f72169635d06b611d1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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_acfd3fb959402e3c554222fb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.222000;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_0e5170bb84f47c2a6b8b3953.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.721000;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_bd135eeb335bb95ee130d4d0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.861000;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_05f4441cfb4809c4171ffc31.woff2')format("woff");}.fff{font-family:fff;line-height:1.799000;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_cc70db7984bcf6b665d03a8c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.700000;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_f5f6b8059415f3fe1d150265.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.879000;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_96c6b65e719022b7e69a5a38.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.909000;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_7b389e8be3b906206083e9c9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.864000;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_3cf2d36d6c68e768ac8e3908.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.849000;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_5593d31995172ddf4fbe1b8c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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_a621c02a4961ca52c6737a2d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.700000;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_0ad1b7553dce454bd9687433.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.853000;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_f923335c4f2e7b5c5173f4f3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.919000;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_745be2242985764ef80a5e21.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.826000;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_679b188b1925d40b61d3b5e7.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.638000;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_46cd821c2905437cc7eb19b3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.199000;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_bc5fa39f94b333d35bade977.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.919000;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_03b19b7a1b1fb363c3ed60e7.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.883000;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_5018749f9fb6f513e16f8983.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.861000;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_a8a93d7c69f05d2b51b6193e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.826000;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_9293762adda3c2d0673191d8.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.898000;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_47b3580d78cd6b0e87a01804.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.258000;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:ff22;src:url('chunks/assets/font_c573da4bb4dc28cd80b5851b.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.726000;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:ff23;src:url('chunks/assets/font_0475dcba9b737c92c6b0bce9.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.529000;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:ff24;src:url('chunks/assets/font_79d19b24cfebd2ac2a2f9ae5.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.199000;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:ff25;src:url('chunks/assets/font_2e6439d27bd65f4a0f393195.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.721000;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:ff26;src:url('chunks/assets/font_ecc1ea54cf14c12c53ecbc39.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.721000;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:ff27;src:url('chunks/assets/font_4d3349dee681c14e5f0e2354.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.853000;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:ff28;src:url('chunks/assets/font_405f1ebab3cafbd328249847.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.826000;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:ff29;src:url('chunks/assets/font_ac9237e72c014bda027228eb.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.258000;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:ff2a;src:url('chunks/assets/font_863053940e936988cc462b49.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.700000;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:ff2b;src:url('chunks/assets/font_37e864a885071576c9d42544.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.853000;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:ff2c;src:url('chunks/assets/font_ab8844c068a37eabd2395e7a.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.732000;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:ff2d;src:url('chunks/assets/font_377ccc10d8ea6032cab9d925.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_3e0746ac8d8f1f0c213ba677.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.693000;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:ff2f;src:url('chunks/assets/font_f4d34dc67275c0821a1b827a.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.444000;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:ff30;src:url('chunks/assets/font_7f388c136e9821a3d6a91a4a.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.444000;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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v14{vertical-align:-49.841858px;}
.v11{vertical-align:-20.519531px;}
.v3{vertical-align:-18.000000px;}
.v9{vertical-align:-14.095825px;}
.v8{vertical-align:-12.000000px;}
.v17{vertical-align:-10.512000px;}
.v15{vertical-align:-8.638550px;}
.vd{vertical-align:-7.181396px;}
.v16{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v7{vertical-align:6.206711px;}
.ve{vertical-align:8.639648px;}
.v6{vertical-align:13.388108px;}
.v13{vertical-align:17.442261px;}
.v5{vertical-align:19.217231px;}
.v2{vertical-align:26.399780px;}
.v10{vertical-align:31.484918px;}
.vf{vertical-align:36.000000px;}
.v12{vertical-align:38.934814px;}
.vc{vertical-align:46.062012px;}
.vb{vertical-align:47.519445px;}
.va{vertical-align:49.845636px;}
.v4{vertical-align:54.000000px;}
.ls39{letter-spacing:-4.752000px;}
.ls3e{letter-spacing:-2.070000px;}
.ls4{letter-spacing:-1.050000px;}
.ls38{letter-spacing:-0.705600px;}
.ls3f{letter-spacing:-0.630000px;}
.ls7{letter-spacing:-0.470400px;}
.ls37{letter-spacing:-0.411600px;}
.ls8{letter-spacing:-0.294000px;}
.ls1e{letter-spacing:-0.048000px;}
.ls1d{letter-spacing:-0.036479px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000061px;}
.ls17{letter-spacing:0.000105px;}
.ls16{letter-spacing:0.000112px;}
.ls34{letter-spacing:0.001956px;}
.ls2f{letter-spacing:0.007056px;}
.lsa{letter-spacing:0.036479px;}
.ls31{letter-spacing:0.041389px;}
.ls36{letter-spacing:0.041938px;}
.ls33{letter-spacing:0.048000px;}
.ls26{letter-spacing:0.072959px;}
.ls5{letter-spacing:0.417480px;}
.ls3d{letter-spacing:0.793753px;}
.ls2c{letter-spacing:0.802547px;}
.ls3a{letter-spacing:0.823200px;}
.ls2a{letter-spacing:1.056000px;}
.ls3b{letter-spacing:1.176000px;}
.ls12{letter-spacing:1.313258px;}
.ls9{letter-spacing:1.386217px;}
.ls2b{letter-spacing:1.422697px;}
.ls3c{letter-spacing:1.528800px;}
.ls2e{letter-spacing:1.568614px;}
.lsf{letter-spacing:1.920000px;}
.ls6{letter-spacing:2.293184px;}
.ls28{letter-spacing:2.448000px;}
.ls29{letter-spacing:2.688000px;}
.ls13{letter-spacing:2.947092px;}
.lsb{letter-spacing:2.969874px;}
.ls27{letter-spacing:2.981554px;}
.ls23{letter-spacing:3.000559px;}
.ls1a{letter-spacing:3.003924px;}
.lsd{letter-spacing:3.023340px;}
.lsc{letter-spacing:4.419143px;}
.ls22{letter-spacing:4.933601px;}
.ls0{letter-spacing:5.460000px;}
.ls1c{letter-spacing:7.968000px;}
.ls18{letter-spacing:8.016000px;}
.ls20{letter-spacing:10.608000px;}
.ls14{letter-spacing:10.656000px;}
.ls10{letter-spacing:13.296000px;}
.ls11{letter-spacing:13.344000px;}
.ls19{letter-spacing:13.392000px;}
.ls21{letter-spacing:13.609922px;}
.ls1f{letter-spacing:13.679377px;}
.ls35{letter-spacing:15.109389px;}
.ls25{letter-spacing:15.166496px;}
.ls15{letter-spacing:15.216000px;}
.ls30{letter-spacing:15.222372px;}
.ls1b{letter-spacing:15.408000px;}
.ls24{letter-spacing:16.368474px;}
.ls32{letter-spacing:18.164255px;}
.ls2d{letter-spacing:18.217630px;}
.ls1{letter-spacing:38.305823px;}
.ls2{letter-spacing:38.305827px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.216000px;}
.ws115{word-spacing:-15.346800px;}
.ws114{word-spacing:-14.994000px;}
.wsec{word-spacing:-14.641200px;}
.ws3f{word-spacing:-13.818000px;}
.wsd1{word-spacing:-13.406400px;}
.wsd2{word-spacing:-13.112400px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.wsc7{word-spacing:-11.826000px;}
.ws11{word-spacing:-11.682000px;}
.ws7b{word-spacing:-11.426400px;}
.ws90{word-spacing:-10.512000px;}
.ws1{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.wsa7{word-spacing:-9.936000px;}
.ws5{word-spacing:-9.855000px;}
.ws139{word-spacing:-9.315000px;}
.ws143{word-spacing:-9.225000px;}
.ws13b{word-spacing:-8.904000px;}
.ws10{word-spacing:-8.148000px;}
.wsb0{word-spacing:-8.016000px;}
.wsaa{word-spacing:-7.358400px;}
.ws6{word-spacing:-6.898500px;}
.wsd6{word-spacing:-6.585600px;}
.ws51{word-spacing:-6.468000px;}
.ws13a{word-spacing:-6.232800px;}
.ws10b{word-spacing:-5.292000px;}
.ws7{word-spacing:-4.602000px;}
.wsb8{word-spacing:-4.512000px;}
.ws141{word-spacing:-3.654000px;}
.ws97{word-spacing:-2.016000px;}
.ws145{word-spacing:-1.890000px;}
.wsc6{word-spacing:-1.680000px;}
.ws13e{word-spacing:-1.575000px;}
.ws124{word-spacing:-1.411200px;}
.ws109{word-spacing:-1.176000px;}
.wsc9{word-spacing:-1.117200px;}
.ws2e{word-spacing:-1.058400px;}
.wsba{word-spacing:-0.940800px;}
.ws117{word-spacing:-0.882000px;}
.wsf0{word-spacing:-0.823200px;}
.wsd3{word-spacing:-0.764400px;}
.wsef{word-spacing:-0.705600px;}
.ws2d{word-spacing:-0.646800px;}
.wse2{word-spacing:-0.588000px;}
.ws2a{word-spacing:-0.529200px;}
.ws39{word-spacing:-0.470400px;}
.ws22{word-spacing:-0.411600px;}
.ws8{word-spacing:-0.378000px;}
.ws75{word-spacing:-0.352800px;}
.ws9{word-spacing:-0.336000px;}
.ws14{word-spacing:-0.294000px;}
.ws2f{word-spacing:-0.235200px;}
.wsb7{word-spacing:-0.192000px;}
.ws83{word-spacing:-0.176400px;}
.ws99{word-spacing:-0.117600px;}
.wsad{word-spacing:-0.072959px;}
.ws57{word-spacing:-0.058800px;}
.wsab{word-spacing:-0.048000px;}
.wsac{word-spacing:-0.036479px;}
.wsd{word-spacing:0.000000px;}
.wsb9{word-spacing:0.048000px;}
.ws4b{word-spacing:0.058800px;}
.wse3{word-spacing:0.117600px;}
.wsbd{word-spacing:0.176400px;}
.ws34{word-spacing:0.235200px;}
.wsb2{word-spacing:0.294000px;}
.ws12{word-spacing:0.352800px;}
.ws26{word-spacing:0.411600px;}
.ws25{word-spacing:0.470400px;}
.ws19{word-spacing:0.529200px;}
.wse1{word-spacing:0.588000px;}
.ws144{word-spacing:0.630000px;}
.wsbc{word-spacing:0.646800px;}
.ws8d{word-spacing:0.705600px;}
.wse5{word-spacing:0.764400px;}
.ws18{word-spacing:0.823200px;}
.wsc{word-spacing:0.840000px;}
.ws9b{word-spacing:0.882000px;}
.wsa5{word-spacing:0.940800px;}
.ws4e{word-spacing:0.999600px;}
.wsf{word-spacing:1.050000px;}
.wsce{word-spacing:1.058400px;}
.wse{word-spacing:1.092000px;}
.ws15{word-spacing:1.117200px;}
.ws58{word-spacing:1.176000px;}
.wsfc{word-spacing:1.234800px;}
.ws131{word-spacing:1.293600px;}
.ws89{word-spacing:1.352400px;}
.wscc{word-spacing:1.411200px;}
.wse0{word-spacing:1.470000px;}
.ws119{word-spacing:1.528800px;}
.ws33{word-spacing:1.587600px;}
.wsfa{word-spacing:1.646400px;}
.wse6{word-spacing:1.705200px;}
.ws43{word-spacing:1.764000px;}
.ws31{word-spacing:1.822800px;}
.ws8a{word-spacing:1.881600px;}
.ws1f{word-spacing:1.940400px;}
.wsf1{word-spacing:1.999200px;}
.wsb{word-spacing:2.016000px;}
.wsa3{word-spacing:2.058000px;}
.ws142{word-spacing:2.070000px;}
.ws16{word-spacing:2.116800px;}
.wsbb{word-spacing:2.175600px;}
.ws13f{word-spacing:2.214000px;}
.ws65{word-spacing:2.234400px;}
.ws62{word-spacing:2.293200px;}
.ws27{word-spacing:2.352000px;}
.wsa1{word-spacing:2.410800px;}
.ws7c{word-spacing:2.469600px;}
.ws118{word-spacing:2.528400px;}
.ws42{word-spacing:2.587200px;}
.ws23{word-spacing:2.646000px;}
.ws9a{word-spacing:2.704800px;}
.ws35{word-spacing:2.763600px;}
.ws40{word-spacing:2.822400px;}
.ws9e{word-spacing:2.881200px;}
.ws69{word-spacing:2.940000px;}
.ws3c{word-spacing:2.998800px;}
.ws61{word-spacing:3.057600px;}
.ws82{word-spacing:3.116400px;}
.ws46{word-spacing:3.175200px;}
.ws1d{word-spacing:3.234000px;}
.wsd8{word-spacing:3.292800px;}
.ws6e{word-spacing:3.351600px;}
.ws2b{word-spacing:3.410400px;}
.wseb{word-spacing:3.469200px;}
.wsf4{word-spacing:3.528000px;}
.ws17{word-spacing:3.586800px;}
.ws5a{word-spacing:3.645600px;}
.ws1e{word-spacing:3.704400px;}
.ws56{word-spacing:3.763200px;}
.wsa{word-spacing:3.780000px;}
.wsf2{word-spacing:3.822000px;}
.ws72{word-spacing:3.880800px;}
.ws4d{word-spacing:3.939600px;}
.ws78{word-spacing:3.998400px;}
.ws136{word-spacing:4.057200px;}
.ws7e{word-spacing:4.116000px;}
.ws74{word-spacing:4.174800px;}
.ws60{word-spacing:4.233600px;}
.wsa4{word-spacing:4.292400px;}
.ws129{word-spacing:4.351200px;}
.ws4f{word-spacing:4.410000px;}
.wsc2{word-spacing:4.468800px;}
.wsa0{word-spacing:4.527600px;}
.ws28{word-spacing:4.586400px;}
.ws5f{word-spacing:4.645200px;}
.ws54{word-spacing:4.704000px;}
.wsb4{word-spacing:4.762800px;}
.wsc8{word-spacing:4.821600px;}
.wsca{word-spacing:4.880400px;}
.ws9f{word-spacing:4.939200px;}
.ws45{word-spacing:4.998000px;}
.ws3e{word-spacing:5.056800px;}
.ws9c{word-spacing:5.115600px;}
.ws11b{word-spacing:5.174400px;}
.wsd9{word-spacing:5.233200px;}
.wsd0{word-spacing:5.292000px;}
.ws8c{word-spacing:5.350800px;}
.ws2c{word-spacing:5.409600px;}
.wsf5{word-spacing:5.468400px;}
.ws32{word-spacing:5.527200px;}
.ws6a{word-spacing:5.586000px;}
.ws5d{word-spacing:5.644800px;}
.ws30{word-spacing:5.703600px;}
.ws41{word-spacing:5.762400px;}
.ws137{word-spacing:5.821200px;}
.ws6b{word-spacing:5.880000px;}
.ws79{word-spacing:5.938800px;}
.ws132{word-spacing:5.997600px;}
.ws29{word-spacing:6.056400px;}
.ws12f{word-spacing:6.115200px;}
.ws7a{word-spacing:6.174000px;}
.ws87{word-spacing:6.232800px;}
.wsfd{word-spacing:6.291600px;}
.ws84{word-spacing:6.350400px;}
.wsb3{word-spacing:6.409200px;}
.ws63{word-spacing:6.468000px;}
.ws50{word-spacing:6.526800px;}
.ws36{word-spacing:6.585600px;}
.ws5e{word-spacing:6.644400px;}
.wscb{word-spacing:6.703200px;}
.ws47{word-spacing:6.762000px;}
.ws7d{word-spacing:6.820800px;}
.wsbe{word-spacing:6.879600px;}
.ws107{word-spacing:6.938400px;}
.wsdb{word-spacing:6.997200px;}
.ws59{word-spacing:7.056000px;}
.ws21{word-spacing:7.114800px;}
.ws113{word-spacing:7.128000px;}
.ws24{word-spacing:7.173600px;}
.ws71{word-spacing:7.232400px;}
.ws9d{word-spacing:7.291200px;}
.ws81{word-spacing:7.350000px;}
.ws4c{word-spacing:7.408800px;}
.wsa6{word-spacing:7.467600px;}
.ws1a{word-spacing:7.526400px;}
.ws53{word-spacing:7.585200px;}
.wsdd{word-spacing:7.644000px;}
.wsd7{word-spacing:7.702800px;}
.ws3b{word-spacing:7.761600px;}
.wsc1{word-spacing:7.820400px;}
.ws67{word-spacing:7.879200px;}
.ws49{word-spacing:7.938000px;}
.wsaf{word-spacing:7.968000px;}
.wse9{word-spacing:7.996800px;}
.ws13{word-spacing:8.055600px;}
.ws80{word-spacing:8.114400px;}
.wsea{word-spacing:8.173200px;}
.ws68{word-spacing:8.232000px;}
.ws88{word-spacing:8.290800px;}
.ws116{word-spacing:8.349600px;}
.ws7f{word-spacing:8.408400px;}
.wse7{word-spacing:8.467200px;}
.wsc3{word-spacing:8.526000px;}
.wse8{word-spacing:8.584800px;}
.ws135{word-spacing:8.643600px;}
.ws12e{word-spacing:8.761200px;}
.ws128{word-spacing:8.820000px;}
.ws5c{word-spacing:8.878800px;}
.ws121{word-spacing:8.937600px;}
.wsbf{word-spacing:9.055200px;}
.ws94{word-spacing:9.114000px;}
.ws20{word-spacing:9.172800px;}
.wsf9{word-spacing:9.231600px;}
.ws1c{word-spacing:9.290400px;}
.wscf{word-spacing:9.349200px;}
.wsf6{word-spacing:9.396000px;}
.ws106{word-spacing:9.466800px;}
.ws4a{word-spacing:9.525600px;}
.ws44{word-spacing:9.584400px;}
.wsda{word-spacing:9.643200px;}
.wsa2{word-spacing:9.819600px;}
.ws122{word-spacing:9.878400px;}
.ws1b{word-spacing:9.937200px;}
.ws6d{word-spacing:10.054800px;}
.ws12c{word-spacing:10.113600px;}
.ws3a{word-spacing:10.172400px;}
.ws66{word-spacing:10.231200px;}
.ws86{word-spacing:10.348800px;}
.ws6c{word-spacing:10.407600px;}
.wscd{word-spacing:10.466400px;}
.ws73{word-spacing:10.525200px;}
.ws93{word-spacing:10.701600px;}
.ws48{word-spacing:10.819200px;}
.wsb1{word-spacing:10.878000px;}
.ws12d{word-spacing:10.995600px;}
.ws134{word-spacing:11.113200px;}
.ws96{word-spacing:11.172000px;}
.wsf3{word-spacing:11.230800px;}
.ws123{word-spacing:11.348400px;}
.ws52{word-spacing:11.407200px;}
.wsc0{word-spacing:11.466000px;}
.ws12a{word-spacing:11.524800px;}
.wse4{word-spacing:11.701200px;}
.wsfe{word-spacing:11.818800px;}
.ws11a{word-spacing:11.936400px;}
.ws130{word-spacing:12.230400px;}
.ws85{word-spacing:12.289200px;}
.ws10a{word-spacing:12.642000px;}
.wsae{word-spacing:12.672000px;}
.wsb6{word-spacing:12.877200px;}
.ws138{word-spacing:12.994800px;}
.ws38{word-spacing:13.112400px;}
.ws55{word-spacing:13.347600px;}
.ws76{word-spacing:13.465200px;}
.wsd4{word-spacing:13.524000px;}
.ws77{word-spacing:13.935600px;}
.ws5b{word-spacing:14.053200px;}
.ws3d{word-spacing:14.170800px;}
.wsfb{word-spacing:14.876400px;}
.wsc5{word-spacing:15.120000px;}
.ws95{word-spacing:15.170400px;}
.ws108{word-spacing:15.582000px;}
.ws8e{word-spacing:15.640800px;}
.wsd5{word-spacing:15.817200px;}
.ws12b{word-spacing:15.993600px;}
.ws37{word-spacing:16.464000px;}
.ws6f{word-spacing:16.816800px;}
.wsb5{word-spacing:17.522400px;}
.wsdc{word-spacing:17.640000px;}
.ws133{word-spacing:17.757600px;}
.ws140{word-spacing:18.198000px;}
.ws70{word-spacing:18.404400px;}
.ws8b{word-spacing:19.227600px;}
.ws64{word-spacing:19.933200px;}
.wsff{word-spacing:25.002000px;}
.ws10c{word-spacing:37.636800px;}
.ws110{word-spacing:55.199994px;}
.wsc4{word-spacing:56.976000px;}
.ws13d{word-spacing:78.816000px;}
.ws10e{word-spacing:86.975994px;}
.ws10d{word-spacing:92.928000px;}
.ws102{word-spacing:99.984000px;}
.wsee{word-spacing:103.248000px;}
.wsa9{word-spacing:112.032000px;}
.ws10f{word-spacing:116.352000px;}
.wsed{word-spacing:124.944000px;}
.ws100{word-spacing:131.327994px;}
.ws101{word-spacing:135.359994px;}
.wsdf{word-spacing:135.744000px;}
.ws13c{word-spacing:137.040000px;}
.ws111{word-spacing:137.231991px;}
.wsf8{word-spacing:139.631994px;}
.wsa8{word-spacing:142.320000px;}
.ws120{word-spacing:149.568000px;}
.ws105{word-spacing:160.127978px;}
.ws104{word-spacing:160.128000px;}
.ws112{word-spacing:179.856000px;}
.ws126{word-spacing:202.416000px;}
.ws11d{word-spacing:206.352000px;}
.ws11f{word-spacing:211.056000px;}
.ws127{word-spacing:220.367982px;}
.ws11e{word-spacing:230.736000px;}
.ws98{word-spacing:255.455990px;}
.wsde{word-spacing:285.168000px;}
.wsf7{word-spacing:289.056000px;}
.ws11c{word-spacing:297.264000px;}
.ws125{word-spacing:306.575982px;}
.ws103{word-spacing:309.551978px;}
.ws8f{word-spacing:479.087993px;}
.ws91{word-spacing:533.376000px;}
.ws92{word-spacing:592.756800px;}
._12{margin-left:-26.358049px;}
._43{margin-left:-23.376023px;}
._16{margin-left:-21.835800px;}
._42{margin-left:-19.404000px;}
._11{margin-left:-17.875200px;}
._18{margin-left:-16.629385px;}
._14{margin-left:-14.852520px;}
._10{margin-left:-13.172420px;}
._5{margin-left:-11.682000px;}
._3c{margin-left:-10.407600px;}
._41{margin-left:-9.114600px;}
._15{margin-left:-8.016960px;}
._7{margin-left:-6.606000px;}
._c{margin-left:-5.527200px;}
._3{margin-left:-4.043400px;}
._1{margin-left:-2.538600px;}
._0{margin-left:-1.404000px;}
._2{width:1.633800px;}
._9{width:2.698920px;}
._b{width:4.129440px;}
._e{width:5.156280px;}
._f{width:6.473880px;}
._13{width:7.643520px;}
._d{width:9.000240px;}
._a{width:10.109760px;}
._6{width:11.880588px;}
._17{width:14.141858px;}
._1a{width:15.653400px;}
._8{width:17.183988px;}
._19{width:22.046161px;}
._4{width:38.294391px;}
._20{width:41.380793px;}
._8b{width:43.764000px;}
._8a{width:44.892000px;}
._7a{width:48.060000px;}
._9a{width:53.145000px;}
._96{width:57.310200px;}
._ac{width:64.320000px;}
._80{width:65.711994px;}
._90{width:67.404000px;}
._3f{width:68.928000px;}
._9b{width:70.404600px;}
._af{width:73.003200px;}
._95{width:76.715982px;}
._51{width:78.347994px;}
._b0{width:87.408000px;}
._59{width:89.256030px;}
._54{width:90.336000px;}
._ae{width:96.043200px;}
._7d{width:97.487994px;}
._3e{width:99.984000px;}
._8e{width:101.004000px;}
._25{width:103.000793px;}
._86{width:104.291995px;}
._50{width:109.152000px;}
._68{width:110.460000px;}
._69{width:111.480002px;}
._52{width:113.760000px;}
._87{width:115.235984px;}
._81{width:116.407199px;}
._67{width:117.840000px;}
._70{width:121.487992px;}
._4f{width:122.927994px;}
._57{width:125.231994px;}
._85{width:127.161600px;}
._66{width:129.312000px;}
._71{width:131.244000px;}
._6c{width:132.960000px;}
._55{width:137.184000px;}
._88{width:144.335994px;}
._45{width:145.823991px;}
._46{width:146.891996px;}
._7e{width:148.183199px;}
._5b{width:149.712000px;}
._5c{width:150.779985px;}
._72{width:153.816009px;}
._62{width:155.040000px;}
._6e{width:156.960000px;}
._4e{width:158.304000px;}
._56{width:159.804003px;}
._64{width:161.088000px;}
._58{width:162.731394px;}
._65{width:164.687990px;}
._6d{width:165.744010px;}
._61{width:166.991994px;}
._53{width:169.728000px;}
._83{width:170.884794px;}
._5d{width:172.175994px;}
._1c{width:174.279000px;}
._99{width:175.765496px;}
._6b{width:177.132000px;}
._63{width:186.816000px;}
._7f{width:190.070400px;}
._47{width:191.712000px;}
._73{width:193.063779px;}
._6f{width:194.843400px;}
._98{width:196.825496px;}
._4a{width:202.128000px;}
._5f{width:206.015991px;}
._94{width:212.052006px;}
._7c{width:213.499200px;}
._8f{width:217.188006px;}
._44{width:218.880000px;}
._5a{width:222.768000px;}
._76{width:226.511993px;}
._37{width:242.843984px;}
._82{width:246.957593px;}
._9e{width:256.896000px;}
._89{width:258.960000px;}
._9d{width:260.555991px;}
._92{width:262.415982px;}
._8c{width:263.760000px;}
._91{width:268.271982px;}
._84{width:270.820800px;}
._75{width:273.696000px;}
._ad{width:278.495994px;}
._48{width:281.086551px;}
._4b{width:282.240000px;}
._38{width:284.447990px;}
._60{width:286.128000px;}
._97{width:288.230418px;}
._36{width:289.643994px;}
._93{width:291.844800px;}
._8d{width:293.563200px;}
._78{width:297.061434px;}
._4d{width:304.367991px;}
._74{width:305.470560px;}
._77{width:306.623982px;}
._a0{width:312.432000px;}
._32{width:316.031993px;}
._79{width:321.456009px;}
._3b{width:323.808007px;}
._27{width:327.695993px;}
._1f{width:329.518193px;}
._39{width:340.092002px;}
._a1{width:346.403986px;}
._3a{width:347.771993px;}
._9f{width:354.479991px;}
._6a{width:362.027999px;}
._21{width:363.216000px;}
._23{width:364.716000px;}
._4c{width:371.713418px;}
._7b{width:377.819389px;}
._1e{width:381.983993px;}
._ab{width:389.868014px;}
._49{width:395.615978px;}
._5e{width:400.030564px;}
._30{width:410.251193px;}
._2f{width:413.131193px;}
._2a{width:419.039993px;}
._34{width:421.871993px;}
._aa{width:429.023979px;}
._a8{width:436.272004px;}
._22{width:439.007993px;}
._31{width:443.368800px;}
._28{width:452.892000px;}
._26{width:454.860000px;}
._33{width:463.480800px;}
._a6{width:470.208004px;}
._24{width:479.567993px;}
._2e{width:481.195193px;}
._2d{width:482.299193px;}
._2c{width:489.023993px;}
._a5{width:493.632000px;}
._a3{width:517.056000px;}
._9c{width:522.240000px;}
._29{width:527.423993px;}
._1d{width:553.535993px;}
._2b{width:564.287993px;}
._1b{width:596.842200px;}
._40{width:614.172000px;}
._a2{width:618.563962px;}
._a9{width:632.051979px;}
._a4{width:641.987962px;}
._a7{width:665.987966px;}
._3d{width:691.242600px;}
._35{width:780.389900px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:29.400000px;}
.fsb{font-size:31.500000px;}
.fse{font-size:33.600000px;}
.fsf{font-size:36.479399px;}
.fs1{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs6{font-size:46.199999px;}
.fs2{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fs9{font-size:58.800000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:74.580000px;}
.fs0{font-size:78.000000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1c6{bottom:0.038286px;}
.y1d6{bottom:0.796251px;}
.y1bc{bottom:1.485168px;}
.y208{bottom:1.650009px;}
.y1f0{bottom:1.709976px;}
.y176{bottom:1.837183px;}
.y23a{bottom:1.838213px;}
.y23d{bottom:1.838579px;}
.y240{bottom:1.838670px;}
.y1ba{bottom:1.849731px;}
.y18a{bottom:2.090239px;}
.y1d8{bottom:2.093170px;}
.y188{bottom:2.454597px;}
.y243{bottom:3.135773px;}
.y1c4{bottom:3.494843px;}
.y1f1{bottom:3.505325px;}
.y1b5{bottom:3.645081px;}
.y186{bottom:4.168945px;}
.y1d3{bottom:4.245026px;}
.yd{bottom:4.660950px;}
.y173{bottom:5.293785px;}
.y237{bottom:5.294861px;}
.y203{bottom:5.895035px;}
.y15c{bottom:7.693954px;}
.y1d5{bottom:9.091278px;}
.y178{bottom:9.775794px;}
.y205{bottom:11.268036px;}
.y1ee{bottom:12.509811px;}
.y18b{bottom:13.970100px;}
.y1d9{bottom:13.972870px;}
.y175{bottom:14.298592px;}
.y239{bottom:14.299622px;}
.y23c{bottom:14.299805px;}
.y23f{bottom:15.015472px;}
.y242{bottom:15.015564px;}
.y165{bottom:21.018310px;}
.y161{bottom:21.018448px;}
.y15e{bottom:21.018631px;}
.y8{bottom:75.796800px;}
.y7{bottom:87.798300px;}
.y2eb{bottom:99.094987px;}
.y2ea{bottom:99.191015px;}
.y2e9{bottom:99.287044px;}
.y2e8{bottom:99.371068px;}
.y2e6{bottom:99.461998px;}
.y6{bottom:99.799800px;}
.y274{bottom:100.649407px;}
.ydf{bottom:100.651193px;}
.y3e8{bottom:100.653003px;}
.y2af{bottom:100.662003px;}
.y231{bottom:106.010399px;}
.y303{bottom:106.676394px;}
.y452{bottom:106.812607px;}
.y3a8{bottom:107.790889px;}
.y374{bottom:107.794495px;}
.y290{bottom:108.223495px;}
.y2d2{bottom:108.235495px;}
.y13e{bottom:108.523495px;}
.yb6{bottom:108.697505px;}
.y6d{bottom:108.702909px;}
.y337{bottom:108.711909px;}
.y9b{bottom:108.713695px;}
.y1b1{bottom:108.715505px;}
.y3df{bottom:108.720898px;}
.y3cb{bottom:108.938709px;}
.y365{bottom:109.111495px;}
.y5{bottom:111.801300px;}
.y195{bottom:112.795795px;}
.y48f{bottom:113.487579px;}
.y39c{bottom:115.906800px;}
.ye3{bottom:116.362803px;}
.y451{bottom:120.312607px;}
.y2fb{bottom:121.723495px;}
.y273{bottom:121.876207px;}
.yde{bottom:121.877993px;}
.y3e7{bottom:121.879803px;}
.y2ae{bottom:121.883398px;}
.y4{bottom:123.802800px;}
.y194{bottom:126.295807px;}
.y28f{bottom:126.451495px;}
.y2d1{bottom:126.463495px;}
.y13d{bottom:126.751495px;}
.y48e{bottom:126.987579px;}
.y230{bottom:127.233603px;}
.y364{bottom:127.339495px;}
.y302{bottom:127.903194px;}
.y3a7{bottom:129.017689px;}
.y373{bottom:129.021295px;}
.yb5{bottom:129.924305px;}
.y6c{bottom:129.929709px;}
.y336{bottom:129.938709px;}
.y9a{bottom:129.940495px;}
.y1b0{bottom:129.942305px;}
.y3ca{bottom:130.165509px;}
.y450{bottom:133.812607px;}
.y3fc{bottom:134.295296px;}
.y3{bottom:135.804300px;}
.y39b{bottom:137.133600px;}
.ye2{bottom:137.589603px;}
.y193{bottom:139.795807px;}
.y2fa{bottom:139.951495px;}
.y48d{bottom:140.487579px;}
.y363{bottom:140.839495px;}
.y272{bottom:143.103007px;}
.ydd{bottom:143.104793px;}
.y3e6{bottom:143.106603px;}
.y2ad{bottom:143.110198px;}
.y28e{bottom:144.595495px;}
.y2d0{bottom:144.607495px;}
.y44f{bottom:147.312607px;}
.y3fb{bottom:147.795296px;}
.y2{bottom:147.805800px;}
.y22f{bottom:148.460403px;}
.y301{bottom:149.129994px;}
.y3a6{bottom:150.244489px;}
.y372{bottom:150.248095px;}
.yb4{bottom:151.151105px;}
.y6b{bottom:151.156509px;}
.y335{bottom:151.165509px;}
.y99{bottom:151.167295px;}
.y1af{bottom:151.169105px;}
.y3c9{bottom:151.392309px;}
.y192{bottom:153.295807px;}
.y13c{bottom:153.643495px;}
.y48c{bottom:153.987579px;}
.y2f9{bottom:158.095495px;}
.y39a{bottom:158.360400px;}
.ye1{bottom:158.812797px;}
.y362{bottom:158.995495px;}
.y44e{bottom:160.812607px;}
.y2cf{bottom:162.751495px;}
.y271{bottom:164.329807px;}
.ydc{bottom:164.331593px;}
.y3e5{bottom:164.333403px;}
.y2ac{bottom:164.336998px;}
.y191{bottom:166.795807px;}
.y48b{bottom:167.487579px;}
.y22e{bottom:169.678203px;}
.y3fa{bottom:170.295296px;}
.y300{bottom:170.356794px;}
.y2e7{bottom:170.831097px;}
.y3a5{bottom:171.471289px;}
.y371{bottom:171.474895px;}
.y28d{bottom:171.487495px;}
.yb3{bottom:172.377905px;}
.y6a{bottom:172.383309px;}
.y334{bottom:172.392309px;}
.y98{bottom:172.394095px;}
.y1ae{bottom:172.395905px;}
.y361{bottom:172.495495px;}
.y3c8{bottom:172.619109px;}
.y44d{bottom:174.312607px;}
.y13b{bottom:177.487495px;}
.y399{bottom:179.576403px;}
.ye0{bottom:180.039597px;}
.y190{bottom:180.295807px;}
.y48a{bottom:180.987579px;}
.y3f9{bottom:183.795296px;}
.y2f8{bottom:184.987495px;}
.y270{bottom:185.556607px;}
.ydb{bottom:185.558393px;}
.y2ab{bottom:185.560203px;}
.y44c{bottom:187.812607px;}
.y2ce{bottom:189.643495px;}
.y360{bottom:190.651495px;}
.y22d{bottom:190.905003px;}
.y2ff{bottom:191.583594px;}
.y370{bottom:192.698089px;}
.y1ad{bottom:193.586705px;}
.yb2{bottom:193.604705px;}
.y69{bottom:193.610109px;}
.y333{bottom:193.619109px;}
.y97{bottom:193.620895px;}
.y18f{bottom:193.795807px;}
.y3c7{bottom:193.845909px;}
.y489{bottom:194.487579px;}
.y28c{bottom:195.800240px;}
.y2e5{bottom:195.803240px;}
.y3f8{bottom:197.295296px;}
.y30{bottom:200.644656px;}
.y398{bottom:200.803203px;}
.y44b{bottom:201.312607px;}
.y13a{bottom:201.800240px;}
.y35f{bottom:204.151495px;}
.y26f{bottom:206.783407px;}
.yda{bottom:206.785193px;}
.y2aa{bottom:206.787003px;}
.y184{bottom:207.292798px;}
.y18e{bottom:207.295807px;}
.y488{bottom:207.987579px;}
.y2f7{bottom:209.300240px;}
.y3f7{bottom:210.795296px;}
.y22c{bottom:212.131803px;}
.y2e4{bottom:212.300240px;}
.y2fe{bottom:212.810394px;}
.y2cd{bottom:213.487495px;}
.y36f{bottom:213.924889px;}
.y44a{bottom:214.812607px;}
.y1ac{bottom:214.813505px;}
.yb1{bottom:214.831505px;}
.y68{bottom:214.836909px;}
.y96{bottom:214.845909px;}
.y3c6{bottom:215.070900px;}
.y183{bottom:220.792798px;}
.y18d{bottom:220.795807px;}
.y487{bottom:221.487579px;}
.y2f{bottom:221.871456px;}
.y397{bottom:222.030003px;}
.y35e{bottom:222.295495px;}
.y3f6{bottom:224.295296px;}
.y26e{bottom:228.010207px;}
.yd9{bottom:228.011993px;}
.y449{bottom:228.312607px;}
.y185{bottom:228.897011px;}
.y212{bottom:231.000000px;}
.y189{bottom:233.065956px;}
.y187{bottom:233.146957px;}
.y22b{bottom:233.358603px;}
.y2fd{bottom:234.033599px;}
.y182{bottom:234.292798px;}
.y18c{bottom:234.295807px;}
.y486{bottom:234.987579px;}
.y3a4{bottom:235.135521px;}
.y36e{bottom:235.149902px;}
.y1ab{bottom:236.040305px;}
.y95{bottom:236.049305px;}
.yb0{bottom:236.058305px;}
.y67{bottom:236.063709px;}
.y332{bottom:236.067305px;}
.y3c5{bottom:236.286891px;}
.y3f5{bottom:237.795296px;}
.y2cc{bottom:237.803240px;}
.y35d{bottom:240.451495px;}
.y448{bottom:241.812607px;}
.y2e{bottom:243.098256px;}
.y396{bottom:243.256803px;}
.y211{bottom:244.500000px;}
.y116{bottom:246.451518px;}
.y485{bottom:248.487579px;}
.yd8{bottom:249.235198px;}
.y26d{bottom:249.237007px;}
.y3f4{bottom:251.295296px;}
.y3ef{bottom:252.386993px;}
.y181{bottom:252.520798px;}
.y2cb{bottom:254.300240px;}
.y22a{bottom:254.585403px;}
.y2fc{bottom:255.260399px;}
.y447{bottom:255.312607px;}
.y3a3{bottom:256.362321px;}
.y36d{bottom:256.365893px;}
.y139{bottom:256.763691px;}
.y1aa{bottom:257.267105px;}
.y94{bottom:257.276105px;}
.yaf{bottom:257.285105px;}
.y66{bottom:257.290509px;}
.y28b{bottom:257.294105px;}
.y3c4{bottom:257.513691px;}
.y210{bottom:258.000000px;}
.y35c{bottom:258.595495px;}
.y484{bottom:261.987579px;}
.y2d{bottom:264.325056px;}
.y395{bottom:264.483603px;}
.y115{bottom:264.679518px;}
.y3f3{bottom:264.795296px;}
.y180{bottom:266.020798px;}
.y446{bottom:268.812607px;}
.y2a9{bottom:270.456903px;}
.yd7{bottom:270.461998px;}
.y20f{bottom:271.500000px;}
.y35b{bottom:272.095495px;}
.y3ee{bottom:273.612007px;}
.y483{bottom:275.487579px;}
.y229{bottom:275.810394px;}
.y3a2{bottom:277.589121px;}
.y36c{bottom:277.592693px;}
.y138{bottom:277.990491px;}
.y3f2{bottom:278.295296px;}
.y1a9{bottom:278.493905px;}
.y93{bottom:278.502905px;}
.yae{bottom:278.511905px;}
.y3e4{bottom:278.513691px;}
.y65{bottom:278.517309px;}
.y28a{bottom:278.520905px;}
.y3c3{bottom:278.740491px;}
.y17f{bottom:279.520798px;}
.y445{bottom:282.312607px;}
.y114{bottom:282.823518px;}
.y20e{bottom:285.000000px;}
.y2c{bottom:285.551856px;}
.y394{bottom:285.710403px;}
.y482{bottom:288.987579px;}
.y2a8{bottom:291.683703px;}
.y26c{bottom:291.686989px;}
.yd6{bottom:291.688189px;}
.y3f1{bottom:291.795296px;}
.y17e{bottom:293.020798px;}
.y444{bottom:295.812607px;}
.y113{bottom:296.323518px;}
.y228{bottom:297.028194px;}
.y20d{bottom:298.500000px;}
.y3a1{bottom:298.815921px;}
.y36b{bottom:298.819493px;}
.y35a{bottom:298.987495px;}
.y137{bottom:299.217291px;}
.y1a8{bottom:299.720705px;}
.y92{bottom:299.729705px;}
.yad{bottom:299.738705px;}
.y3e3{bottom:299.740491px;}
.y2e3{bottom:299.742300px;}
.y64{bottom:299.744109px;}
.y289{bottom:299.745895px;}
.y3c2{bottom:299.967291px;}
.y481{bottom:302.487579px;}
.y3f0{bottom:305.295296px;}
.y17d{bottom:306.520798px;}
.y2b{bottom:306.778656px;}
.y393{bottom:306.928203px;}
.y443{bottom:309.312607px;}
.y20c{bottom:312.000000px;}
.y359{bottom:312.487495px;}
.y2a7{bottom:312.910503px;}
.yd5{bottom:313.436989px;}
.y112{bottom:314.467518px;}
.y320{bottom:315.751518px;}
.y480{bottom:315.987579px;}
.y227{bottom:318.254994px;}
.y3ed{bottom:318.514640px;}
.y17c{bottom:320.020798px;}
.y3a0{bottom:320.042721px;}
.y36a{bottom:320.046293px;}
.y136{bottom:320.444091px;}
.y1a7{bottom:320.947505px;}
.y2ca{bottom:320.952886px;}
.y91{bottom:320.956505px;}
.y331{bottom:320.958314px;}
.yac{bottom:320.965505px;}
.y3e2{bottom:320.967291px;}
.y288{bottom:320.969100px;}
.y63{bottom:320.970909px;}
.y3c1{bottom:321.194091px;}
.y442{bottom:322.812607px;}
.y20b{bottom:325.500000px;}
.y358{bottom:325.987495px;}
.y111{bottom:327.967518px;}
.y2a{bottom:328.000050px;}
.y392{bottom:328.155003px;}
.y47f{bottom:329.487579px;}
.y17b{bottom:333.520798px;}
.y171{bottom:333.526807px;}
.y2a6{bottom:334.137303px;}
.y441{bottom:336.312607px;}
.y26b{bottom:337.968164px;}
.y20a{bottom:339.000000px;}
.y226{bottom:339.481794px;}
.y3ec{bottom:339.741440px;}
.y39f{bottom:341.269521px;}
.y369{bottom:341.273093px;}
.y31f{bottom:341.395518px;}
.y135{bottom:341.670891px;}
.y1a6{bottom:342.174305px;}
.y2c9{bottom:342.179686px;}
.y90{bottom:342.183305px;}
.y2f6{bottom:342.185114px;}
.y62{bottom:342.188686px;}
.yab{bottom:342.192305px;}
.y3e1{bottom:342.194091px;}
.y287{bottom:342.195900px;}
.y3c0{bottom:342.420891px;}
.y47e{bottom:342.987579px;}
.y110{bottom:346.123518px;}
.y17a{bottom:347.020798px;}
.y170{bottom:347.026807px;}
.y29{bottom:349.226850px;}
.y391{bottom:349.381803px;}
.y440{bottom:349.812607px;}
.y357{bottom:350.300240px;}
.y209{bottom:352.500000px;}
.y172{bottom:352.572006px;}
.y47d{bottom:356.487579px;}
.y174{bottom:357.784950px;}
.y177{bottom:357.865952px;}
.y26a{bottom:359.194964px;}
.y10f{bottom:359.623518px;}
.yd4{bottom:359.755640px;}
.y179{bottom:360.520798px;}
.y16f{bottom:360.526807px;}
.y225{bottom:360.708594px;}
.y3eb{bottom:360.966454px;}
.y39e{bottom:362.496321px;}
.y368{bottom:362.499893px;}
.y134{bottom:362.892286px;}
.y43f{bottom:363.312607px;}
.y1a5{bottom:363.401105px;}
.y2e2{bottom:363.402914px;}
.y2c8{bottom:363.406486px;}
.y8f{bottom:363.410105px;}
.y2f5{bottom:363.411914px;}
.y61{bottom:363.415486px;}
.yaa{bottom:363.419105px;}
.y286{bottom:363.420891px;}
.y3bf{bottom:363.645905px;}
.y201{bottom:366.000000px;}
.y31e{bottom:366.967518px;}
.y47c{bottom:369.987579px;}
.y28{bottom:370.453650px;}
.y390{bottom:370.608603px;}
.y2a5{bottom:374.106603px;}
.y43e{bottom:376.812607px;}
.y10e{bottom:377.767518px;}
.y16e{bottom:378.670807px;}
.y200{bottom:379.500000px;}
.y269{bottom:380.421764px;}
.yd3{bottom:380.982440px;}
.y224{bottom:381.935394px;}
.y47b{bottom:383.487579px;}
.y367{bottom:383.723121px;}
.y133{bottom:384.119086px;}
.y1a4{bottom:384.627905px;}
.y2e1{bottom:384.629714px;}
.y2c7{bottom:384.633286px;}
.y8e{bottom:384.636905px;}
.y2f4{bottom:384.638714px;}
.y60{bottom:384.642286px;}
.ya9{bottom:384.645905px;}
.y3be{bottom:384.856514px;}
.y410{bottom:390.046945px;}
.y43d{bottom:390.312607px;}
.y10d{bottom:391.267518px;}
.y27{bottom:391.678665px;}
.y38f{bottom:391.835403px;}
.y16d{bottom:392.170807px;}
.y31d{bottom:392.539518px;}
.y1ff{bottom:393.000000px;}
.y2a4{bottom:395.333403px;}
.y47a{bottom:396.987579px;}
.y202{bottom:397.949982px;}
.y268{bottom:401.648564px;}
.yd2{bottom:402.209240px;}
.y40f{bottom:402.796945px;}
.y223{bottom:403.153194px;}
.y204{bottom:403.763992px;}
.y43c{bottom:403.812607px;}
.y366{bottom:404.949921px;}
.y132{bottom:405.345886px;}
.y16c{bottom:405.670807px;}
.y3de{bottom:405.851086px;}
.y1a3{bottom:405.854705px;}
.y2e0{bottom:405.856514px;}
.y2c6{bottom:405.860086px;}
.y8d{bottom:405.863705px;}
.y2f3{bottom:405.865514px;}
.y5f{bottom:405.869086px;}
.y3bd{bottom:406.083314px;}
.y356{bottom:406.321516px;}
.y1fe{bottom:406.500000px;}
.y206{bottom:409.164139px;}
.y207{bottom:409.218018px;}
.y10c{bottom:409.411518px;}
.y479{bottom:410.487579px;}
.y38e{bottom:413.060394px;}
.y40e{bottom:415.543945px;}
.y2a3{bottom:416.560203px;}
.y43b{bottom:417.312607px;}
.y31c{bottom:418.111518px;}
.y16b{bottom:419.170807px;}
.y267{bottom:422.875364px;}
.y10b{bottom:422.911518px;}
.yd1{bottom:423.436040px;}
.y478{bottom:423.987579px;}
.y222{bottom:424.379994px;}
.y1fd{bottom:424.650009px;}
.y131{bottom:426.570923px;}
.y3dd{bottom:427.077886px;}
.y1a2{bottom:427.081505px;}
.y2df{bottom:427.083314px;}
.y2c5{bottom:427.086886px;}
.y8c{bottom:427.090505px;}
.y2f2{bottom:427.092314px;}
.y5e{bottom:427.095886px;}
.y3bc{bottom:427.310114px;}
.y355{bottom:427.548316px;}
.y43a{bottom:430.812607px;}
.y26{bottom:431.016174px;}
.y16a{bottom:432.670807px;}
.y38d{bottom:434.267385px;}
.y415{bottom:436.680443px;}
.y477{bottom:437.487579px;}
.y2a2{bottom:437.787003px;}
.y1fc{bottom:438.150009px;}
.y10a{bottom:441.055518px;}
.y31b{bottom:443.683518px;}
.y439{bottom:444.312607px;}
.yd0{bottom:444.662840px;}
.y221{bottom:445.606794px;}
.y15a{bottom:446.166472px;}
.y169{bottom:446.170807px;}
.y15b{bottom:447.476990px;}
.y130{bottom:447.786914px;}
.ya8{bottom:448.299305px;}
.y3dc{bottom:448.304686px;}
.y1a1{bottom:448.308305px;}
.y2de{bottom:448.310114px;}
.y3ea{bottom:448.311923px;}
.y2c4{bottom:448.313686px;}
.y5d{bottom:448.315495px;}
.y8b{bottom:448.317305px;}
.y2f1{bottom:448.319114px;}
.y3bb{bottom:448.536914px;}
.y354{bottom:448.775116px;}
.y476{bottom:450.987579px;}
.y1fb{bottom:451.650009px;}
.y164{bottom:451.823505px;}
.y160{bottom:451.823643px;}
.y109{bottom:454.555518px;}
.y414{bottom:454.908443px;}
.y25{bottom:455.016174px;}
.y162{bottom:455.170670px;}
.y166{bottom:455.170807px;}
.y15d{bottom:455.170944px;}
.y38c{bottom:455.494185px;}
.y438{bottom:457.812607px;}
.y2a1{bottom:459.010184px;}
.y159{bottom:459.666472px;}
.y168{bottom:459.670807px;}
.y163{bottom:460.651520px;}
.y15f{bottom:460.651657px;}
.y266{bottom:462.844664px;}
.y475{bottom:464.487579px;}
.y1fa{bottom:465.150009px;}
.ycf{bottom:465.889640px;}
.y220{bottom:466.833594px;}
.y3b2{bottom:468.924728px;}
.y12f{bottom:469.013714px;}
.y31a{bottom:469.255518px;}
.ya7{bottom:469.526105px;}
.y3db{bottom:469.531486px;}
.y1a0{bottom:469.535105px;}
.y2dd{bottom:469.536914px;}
.y3e9{bottom:469.538723px;}
.y2c3{bottom:469.540486px;}
.y5c{bottom:469.542295px;}
.y8a{bottom:469.544105px;}
.y2f0{bottom:469.545914px;}
.y3ba{bottom:469.763714px;}
.y353{bottom:470.000107px;}
.y437{bottom:471.312607px;}
.y381{bottom:471.969017px;}
.y108{bottom:472.699518px;}
.y413{bottom:473.052443px;}
.y158{bottom:473.166472px;}
.y167{bottom:473.170807px;}
.y38b{bottom:476.720985px;}
.y474{bottom:477.987579px;}
.y1f9{bottom:478.650009px;}
.y24{bottom:479.016174px;}
.y2a0{bottom:480.236984px;}
.y265{bottom:484.071464px;}
.y436{bottom:484.812607px;}
.y380{bottom:485.469017px;}
.y107{bottom:486.199518px;}
.yce{bottom:487.116440px;}
.y21f{bottom:488.060394px;}
.y12e{bottom:490.240514px;}
.ya6{bottom:490.752905px;}
.y3da{bottom:490.758286px;}
.y330{bottom:490.760095px;}
.y19f{bottom:490.761905px;}
.y2dc{bottom:490.763714px;}
.y2ef{bottom:490.765523px;}
.y2c2{bottom:490.767286px;}
.y5b{bottom:490.769095px;}
.y89{bottom:490.770905px;}
.y3b9{bottom:490.990514px;}
.y352{bottom:491.216235px;}
.y473{bottom:491.487579px;}
.y1f8{bottom:492.150009px;}
.y319{bottom:494.827518px;}
.y23{bottom:497.016174px;}
.y38a{bottom:497.947785px;}
.y435{bottom:498.312607px;}
.y412{bottom:499.944443px;}
.y157{bottom:500.058472px;}
.y29f{bottom:501.455093px;}
.y37f{bottom:503.697017px;}
.y106{bottom:504.343518px;}
.y472{bottom:504.987579px;}
.y264{bottom:505.298264px;}
.y1f7{bottom:505.650009px;}
.ycd{bottom:508.336049px;}
.y21e{bottom:509.281813px;}
.y12d{bottom:511.467314px;}
.y434{bottom:511.812607px;}
.ya5{bottom:511.979705px;}
.y88{bottom:511.981514px;}
.y3d9{bottom:511.985086px;}
.y32f{bottom:511.986895px;}
.y19e{bottom:511.988705px;}
.y2db{bottom:511.990514px;}
.y2ee{bottom:511.992323px;}
.y2c1{bottom:511.994086px;}
.y5a{bottom:511.995895px;}
.y3b8{bottom:512.217314px;}
.y351{bottom:512.443035px;}
.y411{bottom:513.444443px;}
.y156{bottom:513.558472px;}
.y22{bottom:515.016174px;}
.y105{bottom:517.843518px;}
.y471{bottom:518.487579px;}
.y1f6{bottom:519.150009px;}
.y389{bottom:519.174585px;}
.y318{bottom:520.399518px;}
.y37e{bottom:521.853017px;}
.y29e{bottom:522.681893px;}
.y433{bottom:525.312607px;}
.y263{bottom:526.521445px;}
.ycc{bottom:529.562849px;}
.y21d{bottom:530.508613px;}
.y470{bottom:531.987579px;}
.y1f5{bottom:532.650009px;}
.y12c{bottom:532.694114px;}
.y21{bottom:533.016174px;}
.ya4{bottom:533.206505px;}
.y87{bottom:533.208314px;}
.y3d8{bottom:533.211886px;}
.y32e{bottom:533.213695px;}
.y59{bottom:533.215505px;}
.y2da{bottom:533.217314px;}
.y285{bottom:533.219123px;}
.y2c0{bottom:533.220886px;}
.y3b7{bottom:533.444114px;}
.y350{bottom:533.669835px;}
.y37d{bottom:535.353017px;}
.y104{bottom:535.987518px;}
.y40d{bottom:537.760187px;}
.y155{bottom:537.871033px;}
.y432{bottom:538.812607px;}
.y388{bottom:540.401385px;}
.y29d{bottom:543.908693px;}
.y46f{bottom:545.487579px;}
.y317{bottom:545.971518px;}
.y1f4{bottom:546.150009px;}
.y1ec{bottom:546.156018px;}
.y262{bottom:547.748245px;}
.y103{bottom:549.487518px;}
.ycb{bottom:550.789649px;}
.y20{bottom:551.016174px;}
.y21c{bottom:551.735413px;}
.y431{bottom:552.312607px;}
.y37c{bottom:553.497017px;}
.y12b{bottom:553.920914px;}
.y40c{bottom:554.257187px;}
.y2bf{bottom:554.429686px;}
.ya3{bottom:554.433305px;}
.y86{bottom:554.435114px;}
.y3d7{bottom:554.438686px;}
.y32d{bottom:554.440495px;}
.y58{bottom:554.442305px;}
.y2d9{bottom:554.444114px;}
.y284{bottom:554.445923px;}
.y3b6{bottom:554.670914px;}
.y34f{bottom:554.896635px;}
.y46e{bottom:558.987579px;}
.y1f3{bottom:559.650009px;}
.y1eb{bottom:559.656018px;}
.y387{bottom:561.628185px;}
.y102{bottom:562.987518px;}
.y430{bottom:565.812607px;}
.y261{bottom:568.973419px;}
.y1f{bottom:569.016174px;}
.y1ed{bottom:569.550018px;}
.y316{bottom:571.543518px;}
.y37b{bottom:571.641017px;}
.yca{bottom:572.016449px;}
.y46d{bottom:572.487579px;}
.y21b{bottom:572.958594px;}
.y1ef{bottom:573.055344px;}
.y1f2{bottom:573.150009px;}
.y1ea{bottom:573.156018px;}
.y12a{bottom:575.138714px;}
.y2be{bottom:575.656486px;}
.ya2{bottom:575.660105px;}
.y85{bottom:575.661914px;}
.y3d6{bottom:575.665486px;}
.y2ed{bottom:575.667295px;}
.y57{bottom:575.669105px;}
.y283{bottom:575.670914px;}
.y3b5{bottom:575.895905px;}
.y34e{bottom:576.123435px;}
.y101{bottom:576.487518px;}
.y42f{bottom:579.312607px;}
.y386{bottom:582.854985px;}
.y29c{bottom:583.877993px;}
.y46c{bottom:585.987579px;}
.y1e{bottom:587.016174px;}
.y37a{bottom:589.785017px;}
.y100{bottom:589.987518px;}
.y260{bottom:590.198719px;}
.y1e9{bottom:591.300018px;}
.y42e{bottom:592.812607px;}
.yc9{bottom:593.241440px;}
.y21a{bottom:594.185394px;}
.y129{bottom:596.365514px;}
.y154{bottom:596.666079px;}
.y282{bottom:596.877905px;}
.y2bd{bottom:596.883286px;}
.ya1{bottom:596.886905px;}
.y84{bottom:596.888714px;}
.y3d5{bottom:596.892286px;}
.y2ec{bottom:596.894095px;}
.y56{bottom:596.895905px;}
.y315{bottom:597.115518px;}
.y3b4{bottom:597.120895px;}
.y34d{bottom:597.350235px;}
.y46b{bottom:599.487579px;}
.yff{bottom:603.487518px;}
.y385{bottom:604.081785px;}
.y1e8{bottom:604.800018px;}
.y1d{bottom:605.016174px;}
.y29b{bottom:605.104793px;}
.y42d{bottom:606.312607px;}
.y25f{bottom:611.425519px;}
.y46a{bottom:612.987579px;}
.yc8{bottom:614.466431px;}
.y219{bottom:615.408622px;}
.y379{bottom:616.677017px;}
.yfe{bottom:616.987518px;}
.y128{bottom:617.592314px;}
.y153{bottom:617.892879px;}
.y55{bottom:618.093941px;}
.y281{bottom:618.104705px;}
.y2bc{bottom:618.110086px;}
.ya0{bottom:618.113705px;}
.y83{bottom:618.115514px;}
.y3d4{bottom:618.119086px;}
.y19d{bottom:618.120895px;}
.y1e7{bottom:618.300018px;}
.y3b3{bottom:618.345886px;}
.y34c{bottom:618.569707px;}
.y42c{bottom:619.812607px;}
.y314{bottom:622.687518px;}
.y1c{bottom:623.016174px;}
.y384{bottom:625.308585px;}
.y29a{bottom:626.331593px;}
.y469{bottom:626.487579px;}
.y378{bottom:630.177017px;}
.yfd{bottom:630.487518px;}
.y3e{bottom:631.366928px;}
.y1e6{bottom:631.800018px;}
.y25e{bottom:632.652319px;}
.y42b{bottom:633.312607px;}
.y218{bottom:636.635422px;}
.y127{bottom:638.819114px;}
.y152{bottom:639.119679px;}
.y54{bottom:639.320741px;}
.y32c{bottom:639.327886px;}
.y280{bottom:639.331505px;}
.y2bb{bottom:639.336886px;}
.y9f{bottom:639.340505px;}
.y82{bottom:639.342314px;}
.y3d3{bottom:639.345886px;}
.y34b{bottom:639.796507px;}
.y468{bottom:639.987579px;}
.y40b{bottom:640.868971px;}
.y1b{bottom:641.016174px;}
.y377{bottom:643.677017px;}
.yfc{bottom:643.987518px;}
.y3d{bottom:644.866928px;}
.y1e5{bottom:645.300018px;}
.y383{bottom:646.535385px;}
.y42a{bottom:646.812607px;}
.y299{bottom:647.558393px;}
.y313{bottom:648.259518px;}
.y467{bottom:653.487579px;}
.yfb{bottom:657.487518px;}
.y217{bottom:657.856794px;}
.y3c{bottom:658.366928px;}
.y1e4{bottom:658.800018px;}
.y1a{bottom:659.016174px;}
.y40a{bottom:659.096971px;}
.y126{bottom:660.045914px;}
.y429{bottom:660.312607px;}
.y151{bottom:660.346479px;}
.y3d2{bottom:660.538541px;}
.y53{bottom:660.547541px;}
.y32b{bottom:660.554686px;}
.y27f{bottom:660.558305px;}
.yc7{bottom:660.560068px;}
.y2ba{bottom:660.563686px;}
.y9e{bottom:660.567305px;}
.y81{bottom:660.569114px;}
.y34a{bottom:661.023307px;}
.y466{bottom:666.987579px;}
.y382{bottom:667.760422px;}
.y376{bottom:667.989761px;}
.y298{bottom:668.785193px;}
.yfa{bottom:670.987518px;}
.y3b{bottom:671.866928px;}
.y1e3{bottom:672.300018px;}
.y25d{bottom:672.621619px;}
.y312{bottom:673.831518px;}
.y19{bottom:677.016174px;}
.y409{bottom:677.252971px;}
.y216{bottom:679.083594px;}
.y465{bottom:680.487579px;}
.y125{bottom:681.270905px;}
.y150{bottom:681.573279px;}
.y3d1{bottom:681.765341px;}
.y52{bottom:681.774341px;}
.y32a{bottom:681.781486px;}
.y27e{bottom:681.785105px;}
.yc6{bottom:681.786868px;}
.y2b9{bottom:681.790486px;}
.y9d{bottom:681.794105px;}
.y80{bottom:681.795914px;}
.y349{bottom:682.250107px;}
.y1e2{bottom:685.800018px;}
.yf9{bottom:689.131518px;}
.y3a{bottom:689.866928px;}
.y297{bottom:690.011993px;}
.y25c{bottom:693.848419px;}
.y464{bottom:693.987579px;}
.y18{bottom:695.016174px;}
.y408{bottom:695.396971px;}
.y39{bottom:698.866928px;}
.y1e1{bottom:699.300018px;}
.y311{bottom:699.403518px;}
.y215{bottom:700.310394px;}
.y124{bottom:702.492323px;}
.y14f{bottom:702.800079px;}
.y3d0{bottom:702.992141px;}
.y51{bottom:703.001141px;}
.y329{bottom:703.008286px;}
.y27d{bottom:703.011905px;}
.yc5{bottom:703.013668px;}
.y7f{bottom:703.015523px;}
.y2b8{bottom:703.017286px;}
.y9c{bottom:703.020905px;}
.y348{bottom:703.460808px;}
.yf8{bottom:707.275518px;}
.y463{bottom:707.487579px;}
.y296{bottom:711.236984px;}
.y38{bottom:712.366928px;}
.y1e0{bottom:712.800018px;}
.y17{bottom:713.016174px;}
.y407{bottom:713.540971px;}
.y25b{bottom:715.073273px;}
.yf7{bottom:720.775518px;}
.y462{bottom:720.987579px;}
.y214{bottom:721.535385px;}
.y123{bottom:723.719123px;}
.y14e{bottom:724.021635px;}
.y3cf{bottom:724.218941px;}
.y50{bottom:724.227941px;}
.y328{bottom:724.235086px;}
.y27c{bottom:724.238705px;}
.yc4{bottom:724.240468px;}
.y7e{bottom:724.242323px;}
.y2b7{bottom:724.244086px;}
.y347{bottom:724.687608px;}
.y310{bottom:724.975518px;}
.y37{bottom:725.866928px;}
.y1df{bottom:726.300018px;}
.y39d{bottom:727.955246px;}
.y375{bottom:729.395233px;}
.y16{bottom:731.016174px;}
.y406{bottom:731.684971px;}
.y428{bottom:732.537781px;}
.y461{bottom:734.487579px;}
.yf6{bottom:738.919518px;}
.y36{bottom:739.366928px;}
.y1de{bottom:739.800018px;}
.y213{bottom:742.760422px;}
.y122{bottom:744.945923px;}
.y14d{bottom:745.248435px;}
.y3ce{bottom:745.445741px;}
.y4f{bottom:745.454741px;}
.y327{bottom:745.461886px;}
.y27b{bottom:745.465505px;}
.yc3{bottom:745.467268px;}
.y7d{bottom:745.469123px;}
.y2b6{bottom:745.470886px;}
.y346{bottom:745.914408px;}
.y460{bottom:747.987579px;}
.y15{bottom:749.016174px;}
.y405{bottom:749.828971px;}
.y30f{bottom:750.547518px;}
.yf5{bottom:752.419518px;}
.y1dd{bottom:753.300018px;}
.y35{bottom:757.366928px;}
.y427{bottom:759.537781px;}
.y295{bottom:760.187849px;}
.y45f{bottom:761.487579px;}
.y25a{bottom:762.098825px;}
.y121{bottom:766.167341px;}
.y34{bottom:766.366974px;}
.y14c{bottom:766.475235px;}
.y3cd{bottom:766.672541px;}
.y4e{bottom:766.681541px;}
.y2b5{bottom:766.686923px;}
.y326{bottom:766.688686px;}
.y27a{bottom:766.692305px;}
.yc2{bottom:766.694068px;}
.y7c{bottom:766.695923px;}
.y1dc{bottom:766.800018px;}
.y1d1{bottom:766.805982px;}
.y14{bottom:767.016174px;}
.y345{bottom:767.141208px;}
.y404{bottom:767.984971px;}
.yf4{bottom:770.563518px;}
.y426{bottom:773.037781px;}
.y45e{bottom:774.987579px;}
.y30e{bottom:776.119518px;}
.y1db{bottom:780.300018px;}
.y1d0{bottom:780.305982px;}
.y294{bottom:781.414649px;}
.y259{bottom:783.325625px;}
.yf3{bottom:784.063518px;}
.y33{bottom:784.366974px;}
.y13{bottom:785.016174px;}
.y403{bottom:786.128971px;}
.y1d2{bottom:786.899963px;}
.y120{bottom:787.394141px;}
.y14b{bottom:787.700134px;}
.y3cc{bottom:787.899341px;}
.y2d8{bottom:787.906486px;}
.y4d{bottom:787.908341px;}
.y2b4{bottom:787.913723px;}
.y325{bottom:787.915486px;}
.y279{bottom:787.919105px;}
.y7b{bottom:787.920868px;}
.y344{bottom:788.368008px;}
.y45d{bottom:788.487579px;}
.y1d7{bottom:791.152771px;}
.y1da{bottom:793.800018px;}
.y1cf{bottom:793.805982px;}
.y425{bottom:795.537781px;}
.y1d4{bottom:796.274872px;}
.yf2{bottom:797.563518px;}
.y32{bottom:801.241974px;}
.y30d{bottom:801.691518px;}
.y45c{bottom:801.987579px;}
.y293{bottom:802.641449px;}
.y402{bottom:804.284971px;}
.y258{bottom:804.552425px;}
.y12{bottom:807.516174px;}
.y11f{bottom:808.620941px;}
.y14a{bottom:808.921461px;}
.y7a{bottom:809.126141px;}
.yc1{bottom:809.127905px;}
.y2d7{bottom:809.133286px;}
.y4c{bottom:809.135141px;}
.y19c{bottom:809.138668px;}
.y2b3{bottom:809.140523px;}
.y324{bottom:809.142286px;}
.y278{bottom:809.145905px;}
.y252{bottom:809.350525px;}
.y343{bottom:809.594808px;}
.y1ce{bottom:811.949982px;}
.y31{bottom:814.741974px;}
.y45b{bottom:815.487579px;}
.yf1{bottom:815.707518px;}
.y251{bottom:822.850525px;}
.y292{bottom:823.866486px;}
.y1cd{bottom:825.449982px;}
.y257{bottom:825.779225px;}
.y30c{bottom:827.263518px;}
.y45a{bottom:828.987579px;}
.yf0{bottom:829.207518px;}
.y11e{bottom:829.836886px;}
.y149{bottom:830.148261px;}
.y79{bottom:830.352941px;}
.yc0{bottom:830.354705px;}
.y2d6{bottom:830.360086px;}
.y4b{bottom:830.361941px;}
.y19b{bottom:830.365468px;}
.y277{bottom:830.367323px;}
.y323{bottom:830.369086px;}
.y342{bottom:830.821608px;}
.y401{bottom:831.176971px;}
.y250{bottom:836.350525px;}
.y424{bottom:837.987579px;}
.y1cc{bottom:838.949982px;}
.y459{bottom:842.487579px;}
.y291{bottom:845.091431px;}
.y256{bottom:847.006025px;}
.y3b1{bottom:847.267518px;}
.yef{bottom:847.363518px;}
.y24f{bottom:849.850525px;}
.y11d{bottom:851.063686px;}
.y148{bottom:851.375061px;}
.y423{bottom:851.487579px;}
.y78{bottom:851.579741px;}
.ybf{bottom:851.581505px;}
.y2d5{bottom:851.586886px;}
.y4a{bottom:851.588741px;}
.y19a{bottom:851.592268px;}
.y276{bottom:851.594123px;}
.y322{bottom:851.595886px;}
.y341{bottom:852.048408px;}
.y1cb{bottom:852.449982px;}
.y30b{bottom:852.835518px;}
.y400{bottom:855.489716px;}
.y458{bottom:855.987579px;}
.y3b0{bottom:860.767518px;}
.y24e{bottom:863.350525px;}
.y422{bottom:864.987579px;}
.yee{bottom:865.507518px;}
.y1ca{bottom:865.949982px;}
.y255{bottom:868.232825px;}
.y457{bottom:869.487579px;}
.y11c{bottom:872.290486px;}
.y147{bottom:872.592861px;}
.y11{bottom:872.674974px;}
.y77{bottom:872.806541px;}
.ybe{bottom:872.808305px;}
.y2d4{bottom:872.813686px;}
.y49{bottom:872.815541px;}
.y199{bottom:872.819068px;}
.y275{bottom:872.820923px;}
.y340{bottom:873.275208px;}
.y24d{bottom:876.850525px;}
.y30a{bottom:878.407518px;}
.y3af{bottom:878.995518px;}
.y1c9{bottom:879.449982px;}
.y456{bottom:882.987579px;}
.yed{bottom:883.651518px;}
.y421{bottom:887.487579px;}
.y254{bottom:889.459625px;}
.y24c{bottom:890.350525px;}
.y1c8{bottom:892.949982px;}
.y11b{bottom:893.517286px;}
.y10{bottom:893.679474px;}
.y146{bottom:893.819661px;}
.y76{bottom:894.033341px;}
.ybd{bottom:894.035105px;}
.y2d3{bottom:894.040486px;}
.y48{bottom:894.042341px;}
.y3e0{bottom:894.044105px;}
.y198{bottom:894.045868px;}
.y33f{bottom:894.498481px;}
.y455{bottom:896.487579px;}
.y3ae{bottom:897.139518px;}
.yec{bottom:897.151518px;}
.y420{bottom:900.987579px;}
.y24b{bottom:903.850525px;}
.y309{bottom:903.979518px;}
.y1c7{bottom:906.449982px;}
.y454{bottom:909.987579px;}
.y253{bottom:910.684479px;}
.y41f{bottom:914.487579px;}
.y11a{bottom:914.744086px;}
.y145{bottom:915.046461px;}
.y75{bottom:915.260141px;}
.ybc{bottom:915.261905px;}
.y321{bottom:915.263668px;}
.y2b2{bottom:915.267286px;}
.y47{bottom:915.269141px;}
.y197{bottom:915.270905px;}
.y3ad{bottom:915.283518px;}
.yeb{bottom:915.295518px;}
.y33e{bottom:915.725281px;}
.y24a{bottom:917.350525px;}
.y1c2{bottom:919.949982px;}
.y3ff{bottom:921.067518px;}
.y453{bottom:923.487579px;}
.yea{bottom:928.795518px;}
.y308{bottom:929.551518px;}
.y249{bottom:930.850525px;}
.y3ac{bottom:933.439518px;}
.y1c1{bottom:933.449982px;}
.y119{bottom:935.970886px;}
.y144{bottom:936.273261px;}
.y74{bottom:936.486941px;}
.ybb{bottom:936.488705px;}
.y196{bottom:936.490468px;}
.y2b1{bottom:936.494086px;}
.y46{bottom:936.495941px;}
.y33d{bottom:936.950134px;}
.y41e{bottom:936.987579px;}
.y3fe{bottom:939.295518px;}
.yf{bottom:939.884406px;}
.y1c3{bottom:942.000000px;}
.ye9{bottom:942.295518px;}
.y248{bottom:944.350525px;}
.y1c5{bottom:945.494843px;}
.y3ab{bottom:946.939518px;}
.y1c0{bottom:946.949982px;}
.y41d{bottom:950.487579px;}
.y307{bottom:955.123518px;}
.y118{bottom:957.195923px;}
.y3fd{bottom:957.439518px;}
.y143{bottom:957.500061px;}
.y73{bottom:957.713741px;}
.yba{bottom:957.715505px;}
.y45{bottom:957.717268px;}
.y2b0{bottom:957.720886px;}
.y247{bottom:957.850525px;}
.y33c{bottom:958.169881px;}
.ye8{bottom:960.439518px;}
.y41c{bottom:963.987579px;}
.y1b3{bottom:965.095518px;}
.y1bf{bottom:965.100037px;}
.y246{bottom:971.350525px;}
.y235{bottom:971.355781px;}
.ye7{bottom:973.939518px;}
.y306{bottom:975.595518px;}
.y41b{bottom:977.487579px;}
.y117{bottom:978.420868px;}
.y1b2{bottom:978.595518px;}
.y1be{bottom:978.600037px;}
.y142{bottom:978.719808px;}
.ye{bottom:978.872406px;}
.y72{bottom:978.940541px;}
.yb9{bottom:978.942305px;}
.y44{bottom:978.944068px;}
.y33b{bottom:979.396681px;}
.y491{bottom:981.987579px;}
.y245{bottom:984.850525px;}
.y234{bottom:984.855781px;}
.y1b4{bottom:988.454956px;}
.y1bd{bottom:989.940124px;}
.y1b9{bottom:990.398895px;}
.y1bb{bottom:990.412537px;}
.y236{bottom:990.550507px;}
.y41a{bottom:990.987579px;}
.y3aa{bottom:991.987518px;}
.y1b6{bottom:992.019012px;}
.ye6{bottom:992.095518px;}
.y1b7{bottom:992.100037px;}
.y1b8{bottom:992.234711px;}
.y238{bottom:993.685638px;}
.y490{bottom:995.487579px;}
.y23b{bottom:995.845459px;}
.y23e{bottom:995.845825px;}
.y241{bottom:995.845917px;}
.y244{bottom:998.350525px;}
.y233{bottom:998.355781px;}
.y141{bottom:999.946608px;}
.y71{bottom:1000.167341px;}
.yb8{bottom:1000.169105px;}
.y43{bottom:1000.170868px;}
.y33a{bottom:1000.623481px;}
.y305{bottom:1002.487518px;}
.y419{bottom:1004.487579px;}
.y3a9{bottom:1005.487518px;}
.y418{bottom:1017.987579px;}
.ye5{bottom:1018.987518px;}
.y232{bottom:1019.787781px;}
.y140{bottom:1021.173408px;}
.y42{bottom:1021.394141px;}
.yb7{bottom:1021.395905px;}
.y339{bottom:1021.850281px;}
.y304{bottom:1026.803079px;}
.y417{bottom:1031.487579px;}
.y9{bottom:1035.298370px;}
.y1{bottom:1035.750183px;}
.y13f{bottom:1042.400208px;}
.y41{bottom:1042.620941px;}
.y338{bottom:1043.075134px;}
.ye4{bottom:1043.300079px;}
.y416{bottom:1044.987579px;}
.yb{bottom:1112.297079px;}
.yc{bottom:1117.757996px;}
.y6e{bottom:1126.524628px;}
.y3f{bottom:1126.524719px;}
.y70{bottom:1126.756989px;}
.ya{bottom:1126.925079px;}
.y6f{bottom:1127.300079px;}
.y40{bottom:1127.304719px;}
.h56{height:0.000000px;}
.h33{height:1.920000px;}
.h5e{height:8.942976px;}
.h3b{height:11.439754px;}
.h45{height:12.150000px;}
.h5c{height:12.205821px;}
.h5d{height:12.206554px;}
.h55{height:12.599999px;}
.h4b{height:13.950000px;}
.h3e{height:14.398500px;}
.h4e{height:15.900000px;}
.h5a{height:16.800000px;}
.h38{height:16.948500px;}
.h57{height:17.550000px;}
.h50{height:19.297602px;}
.h7{height:20.266500px;}
.h30{height:21.450000px;}
.h58{height:24.660074px;}
.h48{height:25.170785px;}
.h3d{height:25.535579px;}
.h34{height:25.900373px;}
.h5b{height:26.062916px;}
.h51{height:26.301646px;}
.h12{height:27.814500px;}
.h36{height:32.256000px;}
.h3f{height:32.448000px;}
.h32{height:32.640000px;}
.h5f{height:32.784000px;}
.h46{height:32.976000px;}
.h47{height:33.168000px;}
.h39{height:33.600000px;}
.h3a{height:33.936000px;}
.h31{height:34.080000px;}
.h40{height:34.416000px;}
.h4f{height:34.608000px;}
.h54{height:36.739863px;}
.h4{height:37.086000px;}
.h49{height:39.390000px;}
.h11{height:39.735000px;}
.h79{height:39.984000px;}
.h3{height:41.538000px;}
.h27{height:42.384000px;}
.h4a{height:42.719648px;}
.h7b{height:42.840000px;}
.h7a{height:42.885000px;}
.h78{height:43.785000px;}
.h6{height:45.696000px;}
.h13{height:45.744000px;}
.h26{height:46.704000px;}
.h5{height:47.232000px;}
.h4c{height:47.459163px;}
.h37{height:47.467925px;}
.h35{height:47.468108px;}
.h75{height:47.472000px;}
.h69{height:47.682000px;}
.h42{height:47.982012px;}
.h2f{height:48.886031px;}
.h53{height:49.439165px;}
.h41{height:49.439445px;}
.h3c{height:49.845636px;}
.hd{height:52.980000px;}
.h25{height:53.406000px;}
.h23{height:53.654399px;}
.h22{height:53.709599px;}
.h60{height:54.625200px;}
.h61{height:54.632437px;}
.h63{height:54.652910px;}
.hf{height:55.860000px;}
.h72{height:55.866321px;}
.h14{height:55.867054px;}
.h65{height:55.867145px;}
.h59{height:55.867186px;}
.h66{height:55.867190px;}
.h20{height:55.867237px;}
.h6a{height:55.867420px;}
.h24{height:55.867832px;}
.h2d{height:55.873924px;}
.h1e{height:55.874290px;}
.h6d{height:55.874382px;}
.h10{height:55.874387px;}
.h67{height:55.874427px;}
.h15{height:55.874473px;}
.h64{height:55.880382px;}
.h71{height:55.880794px;}
.h17{height:55.881527px;}
.h18{height:55.881710px;}
.h2b{height:55.881893px;}
.h74{height:55.882259px;}
.h2a{height:55.888763px;}
.h19{height:55.888855px;}
.h43{height:55.888946px;}
.h2c{height:55.889679px;}
.h29{height:55.896000px;}
.h1d{height:55.903054px;}
.h6e{height:55.903145px;}
.h6f{height:55.903237px;}
.h62{height:55.910107px;}
.h70{height:55.910382px;}
.h6b{height:55.910473px;}
.h1b{height:55.917527px;}
.h73{height:55.917710px;}
.h68{height:55.924946px;}
.h6c{height:55.931908px;}
.h21{height:55.932000px;}
.h1a{height:55.939054px;}
.h77{height:55.939237px;}
.h1c{height:55.946382px;}
.h1f{height:55.946473px;}
.h16{height:55.967817px;}
.h76{height:55.989527px;}
.h44{height:55.996763px;}
.h4d{height:57.020497px;}
.he{height:58.380000px;}
.hc{height:61.120200px;}
.h52{height:64.835188px;}
.ha{height:67.194379px;}
.hb{height:67.212379px;}
.h8{height:71.000160px;}
.h2{height:77.142000px;}
.h28{height:96.384000px;}
.h2e{height:100.704000px;}
.h9{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.wa{width:71.370003px;}
.w8{width:93.885000px;}
.w7{width:94.814999px;}
.w9{width:115.680004px;}
.w2{width:157.642502px;}
.w3{width:165.990005px;}
.w4{width:203.625000px;}
.wb{width:274.575005px;}
.w6{width:283.785004px;}
.w5{width:302.084999px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1b{left:-1.055992px;}
.x0{left:0.000000px;}
.x1d{left:9.865196px;}
.x1f{left:23.392204px;}
.x30{left:25.140747px;}
.x43{left:27.975311px;}
.xd{left:30.310661px;}
.x4b{left:38.571899px;}
.x40{left:42.663460px;}
.x4c{left:46.671890px;}
.x44{left:48.968559px;}
.x32{left:54.652061px;}
.x4f{left:63.074112px;}
.x21{left:66.336136px;}
.x41{left:67.354935px;}
.x46{left:71.027251px;}
.x34{left:72.228470px;}
.x49{left:74.813232px;}
.x4{left:84.933002px;}
.x17{left:89.008347px;}
.x47{left:90.224396px;}
.xf{left:92.558990px;}
.x3{left:93.732302px;}
.x36{left:95.772583px;}
.x18{left:101.671646px;}
.x11{left:106.207214px;}
.x38{left:116.319580px;}
.x52{left:118.844421px;}
.x23{left:126.491867px;}
.x53{left:131.506943px;}
.x25{left:137.899521px;}
.x27{left:150.832352px;}
.x13{left:159.437850px;}
.x55{left:166.121246px;}
.x8{left:176.456703px;}
.x56{left:184.292404px;}
.x63{left:185.456703px;}
.x9{left:188.451903px;}
.x1a{left:199.681366px;}
.x3a{left:203.191956px;}
.x5b{left:206.459402px;}
.x60{left:226.194603px;}
.x29{left:229.213211px;}
.x5c{left:239.792839px;}
.x58{left:244.893585px;}
.x3c{left:259.689743px;}
.x2{left:267.841209px;}
.x5a{left:270.637939px;}
.x6{left:277.624489px;}
.x3e{left:278.725067px;}
.x2d{left:296.996703px;}
.x2b{left:300.169189px;}
.x2e{left:326.585999px;}
.x42{left:329.532440px;}
.x50{left:331.233444px;}
.x4a{left:332.298454px;}
.xb{left:340.500000px;}
.x1c{left:343.912354px;}
.x2f{left:347.244896px;}
.x1e{left:353.348854px;}
.xc{left:358.120491px;}
.x31{left:360.744896px;}
.x20{left:368.144989px;}
.x16{left:369.581703px;}
.x48{left:371.266960px;}
.x4d{left:378.158089px;}
.x51{left:381.399605px;}
.x4e{left:386.258102px;}
.x33{left:389.905197px;}
.xe{left:391.478989px;}
.x45{left:394.467911px;}
.x5d{left:406.603043px;}
.x35{left:407.832596px;}
.x37{left:430.876968px;}
.x10{left:441.064636px;}
.x39{left:451.923889px;}
.x5e{left:457.339043px;}
.x22{left:460.444061px;}
.x12{left:467.362656px;}
.x24{left:472.499680px;}
.x54{left:474.590103px;}
.x26{left:481.342072px;}
.x19{left:487.963211px;}
.x5f{left:493.627043px;}
.x65{left:505.280702px;}
.x14{left:506.490005px;}
.x28{left:511.825516px;}
.xa{left:520.592704px;}
.x3f{left:523.115387px;}
.x57{left:527.429398px;}
.x3b{left:532.005753px;}
.x15{left:556.074005px;}
.x2a{left:572.696869px;}
.x59{left:579.646957px;}
.x61{left:600.512703px;}
.x64{left:601.640699px;}
.x3d{left:603.717911px;}
.x5{left:650.233521px;}
.x62{left:666.440703px;}
.x1{left:694.929886px;}
.x2c{left:741.068390px;}
.x7{left:747.224258px;}
@media print{
.v14{vertical-align:-44.303874pt;}
.v11{vertical-align:-18.239583pt;}
.v3{vertical-align:-16.000000pt;}
.v9{vertical-align:-12.529622pt;}
.v8{vertical-align:-10.666667pt;}
.v17{vertical-align:-9.344000pt;}
.v15{vertical-align:-7.678711pt;}
.vd{vertical-align:-6.383464pt;}
.v16{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v7{vertical-align:5.517077pt;}
.ve{vertical-align:7.679688pt;}
.v6{vertical-align:11.900540pt;}
.v13{vertical-align:15.504232pt;}
.v5{vertical-align:17.081983pt;}
.v2{vertical-align:23.466471pt;}
.v10{vertical-align:27.986594pt;}
.vf{vertical-align:32.000000pt;}
.v12{vertical-align:34.608724pt;}
.vc{vertical-align:40.944010pt;}
.vb{vertical-align:42.239507pt;}
.va{vertical-align:44.307232pt;}
.v4{vertical-align:48.000000pt;}
.ls39{letter-spacing:-4.224000pt;}
.ls3e{letter-spacing:-1.840000pt;}
.ls4{letter-spacing:-0.933333pt;}
.ls38{letter-spacing:-0.627200pt;}
.ls3f{letter-spacing:-0.560000pt;}
.ls7{letter-spacing:-0.418133pt;}
.ls37{letter-spacing:-0.365867pt;}
.ls8{letter-spacing:-0.261333pt;}
.ls1e{letter-spacing:-0.042667pt;}
.ls1d{letter-spacing:-0.032426pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000054pt;}
.ls17{letter-spacing:0.000093pt;}
.ls16{letter-spacing:0.000099pt;}
.ls34{letter-spacing:0.001738pt;}
.ls2f{letter-spacing:0.006272pt;}
.lsa{letter-spacing:0.032426pt;}
.ls31{letter-spacing:0.036790pt;}
.ls36{letter-spacing:0.037279pt;}
.ls33{letter-spacing:0.042667pt;}
.ls26{letter-spacing:0.064852pt;}
.ls5{letter-spacing:0.371093pt;}
.ls3d{letter-spacing:0.705559pt;}
.ls2c{letter-spacing:0.713375pt;}
.ls3a{letter-spacing:0.731733pt;}
.ls2a{letter-spacing:0.938667pt;}
.ls3b{letter-spacing:1.045333pt;}
.ls12{letter-spacing:1.167341pt;}
.ls9{letter-spacing:1.232193pt;}
.ls2b{letter-spacing:1.264619pt;}
.ls3c{letter-spacing:1.358933pt;}
.ls2e{letter-spacing:1.394324pt;}
.lsf{letter-spacing:1.706667pt;}
.ls6{letter-spacing:2.038386pt;}
.ls28{letter-spacing:2.176000pt;}
.ls29{letter-spacing:2.389333pt;}
.ls13{letter-spacing:2.619637pt;}
.lsb{letter-spacing:2.639888pt;}
.ls27{letter-spacing:2.650270pt;}
.ls23{letter-spacing:2.667163pt;}
.ls1a{letter-spacing:2.670155pt;}
.lsd{letter-spacing:2.687414pt;}
.lsc{letter-spacing:3.928127pt;}
.ls22{letter-spacing:4.385423pt;}
.ls0{letter-spacing:4.853333pt;}
.ls1c{letter-spacing:7.082667pt;}
.ls18{letter-spacing:7.125333pt;}
.ls20{letter-spacing:9.429333pt;}
.ls14{letter-spacing:9.472000pt;}
.ls10{letter-spacing:11.818667pt;}
.ls11{letter-spacing:11.861333pt;}
.ls19{letter-spacing:11.904000pt;}
.ls21{letter-spacing:12.097709pt;}
.ls1f{letter-spacing:12.159446pt;}
.ls35{letter-spacing:13.430568pt;}
.ls25{letter-spacing:13.481330pt;}
.ls15{letter-spacing:13.525333pt;}
.ls30{letter-spacing:13.530997pt;}
.ls1b{letter-spacing:13.696000pt;}
.ls24{letter-spacing:14.549754pt;}
.ls32{letter-spacing:16.146004pt;}
.ls2d{letter-spacing:16.193449pt;}
.ls1{letter-spacing:34.049621pt;}
.ls2{letter-spacing:34.049624pt;}
.ws0{word-spacing:-18.858667pt;}
.ws115{word-spacing:-13.641600pt;}
.ws114{word-spacing:-13.328000pt;}
.wsec{word-spacing:-13.014400pt;}
.ws3f{word-spacing:-12.282667pt;}
.wsd1{word-spacing:-11.916800pt;}
.wsd2{word-spacing:-11.655467pt;}
.ws3{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.wsc7{word-spacing:-10.512000pt;}
.ws11{word-spacing:-10.384000pt;}
.ws7b{word-spacing:-10.156800pt;}
.ws90{word-spacing:-9.344000pt;}
.ws1{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.wsa7{word-spacing:-8.832000pt;}
.ws5{word-spacing:-8.760000pt;}
.ws139{word-spacing:-8.280000pt;}
.ws143{word-spacing:-8.200000pt;}
.ws13b{word-spacing:-7.914667pt;}
.ws10{word-spacing:-7.242667pt;}
.wsb0{word-spacing:-7.125333pt;}
.wsaa{word-spacing:-6.540800pt;}
.ws6{word-spacing:-6.132000pt;}
.wsd6{word-spacing:-5.853867pt;}
.ws51{word-spacing:-5.749333pt;}
.ws13a{word-spacing:-5.540267pt;}
.ws10b{word-spacing:-4.704000pt;}
.ws7{word-spacing:-4.090667pt;}
.wsb8{word-spacing:-4.010667pt;}
.ws141{word-spacing:-3.248000pt;}
.ws97{word-spacing:-1.792000pt;}
.ws145{word-spacing:-1.680000pt;}
.wsc6{word-spacing:-1.493333pt;}
.ws13e{word-spacing:-1.400000pt;}
.ws124{word-spacing:-1.254400pt;}
.ws109{word-spacing:-1.045333pt;}
.wsc9{word-spacing:-0.993067pt;}
.ws2e{word-spacing:-0.940800pt;}
.wsba{word-spacing:-0.836267pt;}
.ws117{word-spacing:-0.784000pt;}
.wsf0{word-spacing:-0.731733pt;}
.wsd3{word-spacing:-0.679467pt;}
.wsef{word-spacing:-0.627200pt;}
.ws2d{word-spacing:-0.574933pt;}
.wse2{word-spacing:-0.522667pt;}
.ws2a{word-spacing:-0.470400pt;}
.ws39{word-spacing:-0.418133pt;}
.ws22{word-spacing:-0.365867pt;}
.ws8{word-spacing:-0.336000pt;}
.ws75{word-spacing:-0.313600pt;}
.ws9{word-spacing:-0.298667pt;}
.ws14{word-spacing:-0.261333pt;}
.ws2f{word-spacing:-0.209067pt;}
.wsb7{word-spacing:-0.170667pt;}
.ws83{word-spacing:-0.156800pt;}
.ws99{word-spacing:-0.104533pt;}
.wsad{word-spacing:-0.064852pt;}
.ws57{word-spacing:-0.052267pt;}
.wsab{word-spacing:-0.042667pt;}
.wsac{word-spacing:-0.032426pt;}
.wsd{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.042667pt;}
.ws4b{word-spacing:0.052267pt;}
.wse3{word-spacing:0.104533pt;}
.wsbd{word-spacing:0.156800pt;}
.ws34{word-spacing:0.209067pt;}
.wsb2{word-spacing:0.261333pt;}
.ws12{word-spacing:0.313600pt;}
.ws26{word-spacing:0.365867pt;}
.ws25{word-spacing:0.418133pt;}
.ws19{word-spacing:0.470400pt;}
.wse1{word-spacing:0.522667pt;}
.ws144{word-spacing:0.560000pt;}
.wsbc{word-spacing:0.574933pt;}
.ws8d{word-spacing:0.627200pt;}
.wse5{word-spacing:0.679467pt;}
.ws18{word-spacing:0.731733pt;}
.wsc{word-spacing:0.746667pt;}
.ws9b{word-spacing:0.784000pt;}
.wsa5{word-spacing:0.836267pt;}
.ws4e{word-spacing:0.888533pt;}
.wsf{word-spacing:0.933333pt;}
.wsce{word-spacing:0.940800pt;}
.wse{word-spacing:0.970667pt;}
.ws15{word-spacing:0.993067pt;}
.ws58{word-spacing:1.045333pt;}
.wsfc{word-spacing:1.097600pt;}
.ws131{word-spacing:1.149867pt;}
.ws89{word-spacing:1.202133pt;}
.wscc{word-spacing:1.254400pt;}
.wse0{word-spacing:1.306667pt;}
.ws119{word-spacing:1.358933pt;}
.ws33{word-spacing:1.411200pt;}
.wsfa{word-spacing:1.463467pt;}
.wse6{word-spacing:1.515733pt;}
.ws43{word-spacing:1.568000pt;}
.ws31{word-spacing:1.620267pt;}
.ws8a{word-spacing:1.672533pt;}
.ws1f{word-spacing:1.724800pt;}
.wsf1{word-spacing:1.777067pt;}
.wsb{word-spacing:1.792000pt;}
.wsa3{word-spacing:1.829333pt;}
.ws142{word-spacing:1.840000pt;}
.ws16{word-spacing:1.881600pt;}
.wsbb{word-spacing:1.933867pt;}
.ws13f{word-spacing:1.968000pt;}
.ws65{word-spacing:1.986133pt;}
.ws62{word-spacing:2.038400pt;}
.ws27{word-spacing:2.090667pt;}
.wsa1{word-spacing:2.142933pt;}
.ws7c{word-spacing:2.195200pt;}
.ws118{word-spacing:2.247467pt;}
.ws42{word-spacing:2.299733pt;}
.ws23{word-spacing:2.352000pt;}
.ws9a{word-spacing:2.404267pt;}
.ws35{word-spacing:2.456533pt;}
.ws40{word-spacing:2.508800pt;}
.ws9e{word-spacing:2.561067pt;}
.ws69{word-spacing:2.613333pt;}
.ws3c{word-spacing:2.665600pt;}
.ws61{word-spacing:2.717867pt;}
.ws82{word-spacing:2.770133pt;}
.ws46{word-spacing:2.822400pt;}
.ws1d{word-spacing:2.874667pt;}
.wsd8{word-spacing:2.926933pt;}
.ws6e{word-spacing:2.979200pt;}
.ws2b{word-spacing:3.031467pt;}
.wseb{word-spacing:3.083733pt;}
.wsf4{word-spacing:3.136000pt;}
.ws17{word-spacing:3.188267pt;}
.ws5a{word-spacing:3.240533pt;}
.ws1e{word-spacing:3.292800pt;}
.ws56{word-spacing:3.345067pt;}
.wsa{word-spacing:3.360000pt;}
.wsf2{word-spacing:3.397333pt;}
.ws72{word-spacing:3.449600pt;}
.ws4d{word-spacing:3.501867pt;}
.ws78{word-spacing:3.554133pt;}
.ws136{word-spacing:3.606400pt;}
.ws7e{word-spacing:3.658667pt;}
.ws74{word-spacing:3.710933pt;}
.ws60{word-spacing:3.763200pt;}
.wsa4{word-spacing:3.815467pt;}
.ws129{word-spacing:3.867733pt;}
.ws4f{word-spacing:3.920000pt;}
.wsc2{word-spacing:3.972267pt;}
.wsa0{word-spacing:4.024533pt;}
.ws28{word-spacing:4.076800pt;}
.ws5f{word-spacing:4.129067pt;}
.ws54{word-spacing:4.181333pt;}
.wsb4{word-spacing:4.233600pt;}
.wsc8{word-spacing:4.285867pt;}
.wsca{word-spacing:4.338133pt;}
.ws9f{word-spacing:4.390400pt;}
.ws45{word-spacing:4.442667pt;}
.ws3e{word-spacing:4.494933pt;}
.ws9c{word-spacing:4.547200pt;}
.ws11b{word-spacing:4.599467pt;}
.wsd9{word-spacing:4.651733pt;}
.wsd0{word-spacing:4.704000pt;}
.ws8c{word-spacing:4.756267pt;}
.ws2c{word-spacing:4.808533pt;}
.wsf5{word-spacing:4.860800pt;}
.ws32{word-spacing:4.913067pt;}
.ws6a{word-spacing:4.965333pt;}
.ws5d{word-spacing:5.017600pt;}
.ws30{word-spacing:5.069867pt;}
.ws41{word-spacing:5.122133pt;}
.ws137{word-spacing:5.174400pt;}
.ws6b{word-spacing:5.226667pt;}
.ws79{word-spacing:5.278933pt;}
.ws132{word-spacing:5.331200pt;}
.ws29{word-spacing:5.383467pt;}
.ws12f{word-spacing:5.435733pt;}
.ws7a{word-spacing:5.488000pt;}
.ws87{word-spacing:5.540267pt;}
.wsfd{word-spacing:5.592533pt;}
.ws84{word-spacing:5.644800pt;}
.wsb3{word-spacing:5.697067pt;}
.ws63{word-spacing:5.749333pt;}
.ws50{word-spacing:5.801600pt;}
.ws36{word-spacing:5.853867pt;}
.ws5e{word-spacing:5.906133pt;}
.wscb{word-spacing:5.958400pt;}
.ws47{word-spacing:6.010667pt;}
.ws7d{word-spacing:6.062933pt;}
.wsbe{word-spacing:6.115200pt;}
.ws107{word-spacing:6.167467pt;}
.wsdb{word-spacing:6.219733pt;}
.ws59{word-spacing:6.272000pt;}
.ws21{word-spacing:6.324267pt;}
.ws113{word-spacing:6.336000pt;}
.ws24{word-spacing:6.376533pt;}
.ws71{word-spacing:6.428800pt;}
.ws9d{word-spacing:6.481067pt;}
.ws81{word-spacing:6.533333pt;}
.ws4c{word-spacing:6.585600pt;}
.wsa6{word-spacing:6.637867pt;}
.ws1a{word-spacing:6.690133pt;}
.ws53{word-spacing:6.742400pt;}
.wsdd{word-spacing:6.794667pt;}
.wsd7{word-spacing:6.846933pt;}
.ws3b{word-spacing:6.899200pt;}
.wsc1{word-spacing:6.951467pt;}
.ws67{word-spacing:7.003733pt;}
.ws49{word-spacing:7.056000pt;}
.wsaf{word-spacing:7.082667pt;}
.wse9{word-spacing:7.108267pt;}
.ws13{word-spacing:7.160533pt;}
.ws80{word-spacing:7.212800pt;}
.wsea{word-spacing:7.265067pt;}
.ws68{word-spacing:7.317333pt;}
.ws88{word-spacing:7.369600pt;}
.ws116{word-spacing:7.421867pt;}
.ws7f{word-spacing:7.474133pt;}
.wse7{word-spacing:7.526400pt;}
.wsc3{word-spacing:7.578667pt;}
.wse8{word-spacing:7.630933pt;}
.ws135{word-spacing:7.683200pt;}
.ws12e{word-spacing:7.787733pt;}
.ws128{word-spacing:7.840000pt;}
.ws5c{word-spacing:7.892267pt;}
.ws121{word-spacing:7.944533pt;}
.wsbf{word-spacing:8.049067pt;}
.ws94{word-spacing:8.101333pt;}
.ws20{word-spacing:8.153600pt;}
.wsf9{word-spacing:8.205867pt;}
.ws1c{word-spacing:8.258133pt;}
.wscf{word-spacing:8.310400pt;}
.wsf6{word-spacing:8.352000pt;}
.ws106{word-spacing:8.414933pt;}
.ws4a{word-spacing:8.467200pt;}
.ws44{word-spacing:8.519467pt;}
.wsda{word-spacing:8.571733pt;}
.wsa2{word-spacing:8.728533pt;}
.ws122{word-spacing:8.780800pt;}
.ws1b{word-spacing:8.833067pt;}
.ws6d{word-spacing:8.937600pt;}
.ws12c{word-spacing:8.989867pt;}
.ws3a{word-spacing:9.042133pt;}
.ws66{word-spacing:9.094400pt;}
.ws86{word-spacing:9.198933pt;}
.ws6c{word-spacing:9.251200pt;}
.wscd{word-spacing:9.303467pt;}
.ws73{word-spacing:9.355733pt;}
.ws93{word-spacing:9.512533pt;}
.ws48{word-spacing:9.617067pt;}
.wsb1{word-spacing:9.669333pt;}
.ws12d{word-spacing:9.773867pt;}
.ws134{word-spacing:9.878400pt;}
.ws96{word-spacing:9.930667pt;}
.wsf3{word-spacing:9.982933pt;}
.ws123{word-spacing:10.087467pt;}
.ws52{word-spacing:10.139733pt;}
.wsc0{word-spacing:10.192000pt;}
.ws12a{word-spacing:10.244267pt;}
.wse4{word-spacing:10.401067pt;}
.wsfe{word-spacing:10.505600pt;}
.ws11a{word-spacing:10.610133pt;}
.ws130{word-spacing:10.871467pt;}
.ws85{word-spacing:10.923733pt;}
.ws10a{word-spacing:11.237333pt;}
.wsae{word-spacing:11.264000pt;}
.wsb6{word-spacing:11.446400pt;}
.ws138{word-spacing:11.550933pt;}
.ws38{word-spacing:11.655467pt;}
.ws55{word-spacing:11.864533pt;}
.ws76{word-spacing:11.969067pt;}
.wsd4{word-spacing:12.021333pt;}
.ws77{word-spacing:12.387200pt;}
.ws5b{word-spacing:12.491733pt;}
.ws3d{word-spacing:12.596267pt;}
.wsfb{word-spacing:13.223467pt;}
.wsc5{word-spacing:13.440000pt;}
.ws95{word-spacing:13.484800pt;}
.ws108{word-spacing:13.850667pt;}
.ws8e{word-spacing:13.902933pt;}
.wsd5{word-spacing:14.059733pt;}
.ws12b{word-spacing:14.216533pt;}
.ws37{word-spacing:14.634667pt;}
.ws6f{word-spacing:14.948267pt;}
.wsb5{word-spacing:15.575467pt;}
.wsdc{word-spacing:15.680000pt;}
.ws133{word-spacing:15.784533pt;}
.ws140{word-spacing:16.176000pt;}
.ws70{word-spacing:16.359467pt;}
.ws8b{word-spacing:17.091200pt;}
.ws64{word-spacing:17.718400pt;}
.wsff{word-spacing:22.224000pt;}
.ws10c{word-spacing:33.454933pt;}
.ws110{word-spacing:49.066662pt;}
.wsc4{word-spacing:50.645333pt;}
.ws13d{word-spacing:70.058667pt;}
.ws10e{word-spacing:77.311995pt;}
.ws10d{word-spacing:82.602667pt;}
.ws102{word-spacing:88.874667pt;}
.wsee{word-spacing:91.776000pt;}
.wsa9{word-spacing:99.584000pt;}
.ws10f{word-spacing:103.424000pt;}
.wsed{word-spacing:111.061333pt;}
.ws100{word-spacing:116.735994pt;}
.ws101{word-spacing:120.319994pt;}
.wsdf{word-spacing:120.661333pt;}
.ws13c{word-spacing:121.813333pt;}
.ws111{word-spacing:121.983992pt;}
.wsf8{word-spacing:124.117328pt;}
.wsa8{word-spacing:126.506667pt;}
.ws120{word-spacing:132.949333pt;}
.ws105{word-spacing:142.335980pt;}
.ws104{word-spacing:142.336000pt;}
.ws112{word-spacing:159.872000pt;}
.ws126{word-spacing:179.925333pt;}
.ws11d{word-spacing:183.424000pt;}
.ws11f{word-spacing:187.605333pt;}
.ws127{word-spacing:195.882651pt;}
.ws11e{word-spacing:205.098667pt;}
.ws98{word-spacing:227.071991pt;}
.wsde{word-spacing:253.482667pt;}
.wsf7{word-spacing:256.938667pt;}
.ws11c{word-spacing:264.234667pt;}
.ws125{word-spacing:272.511984pt;}
.ws103{word-spacing:275.157314pt;}
.ws8f{word-spacing:425.855993pt;}
.ws91{word-spacing:474.112000pt;}
.ws92{word-spacing:526.894933pt;}
._12{margin-left:-23.429377pt;}
._43{margin-left:-20.778687pt;}
._16{margin-left:-19.409600pt;}
._42{margin-left:-17.248000pt;}
._11{margin-left:-15.889067pt;}
._18{margin-left:-14.781675pt;}
._14{margin-left:-13.202240pt;}
._10{margin-left:-11.708818pt;}
._5{margin-left:-10.384000pt;}
._3c{margin-left:-9.251200pt;}
._41{margin-left:-8.101867pt;}
._15{margin-left:-7.126187pt;}
._7{margin-left:-5.872000pt;}
._c{margin-left:-4.913067pt;}
._3{margin-left:-3.594133pt;}
._1{margin-left:-2.256533pt;}
._0{margin-left:-1.248000pt;}
._2{width:1.452267pt;}
._9{width:2.399040pt;}
._b{width:3.670613pt;}
._e{width:4.583360pt;}
._f{width:5.754560pt;}
._13{width:6.794240pt;}
._d{width:8.000214pt;}
._a{width:8.986453pt;}
._6{width:10.560522pt;}
._17{width:12.570541pt;}
._1a{width:13.914133pt;}
._8{width:15.274656pt;}
._19{width:19.596587pt;}
._4{width:34.039458pt;}
._20{width:36.782927pt;}
._8b{width:38.901333pt;}
._8a{width:39.904000pt;}
._7a{width:42.720000pt;}
._9a{width:47.240000pt;}
._96{width:50.942400pt;}
._ac{width:57.173333pt;}
._80{width:58.410662pt;}
._90{width:59.914667pt;}
._3f{width:61.269333pt;}
._9b{width:62.581867pt;}
._af{width:64.891733pt;}
._95{width:68.191984pt;}
._51{width:69.642661pt;}
._b0{width:77.696000pt;}
._59{width:79.338693pt;}
._54{width:80.298667pt;}
._ae{width:85.371733pt;}
._7d{width:86.655995pt;}
._3e{width:88.874667pt;}
._8e{width:89.781333pt;}
._25{width:91.556260pt;}
._86{width:92.703995pt;}
._50{width:97.024000pt;}
._68{width:98.186667pt;}
._69{width:99.093335pt;}
._52{width:101.120000pt;}
._87{width:102.431986pt;}
._81{width:103.473065pt;}
._67{width:104.746667pt;}
._70{width:107.989326pt;}
._4f{width:109.269328pt;}
._57{width:111.317328pt;}
._85{width:113.032533pt;}
._66{width:114.944000pt;}
._71{width:116.661333pt;}
._6c{width:118.186667pt;}
._55{width:121.941333pt;}
._88{width:128.298662pt;}
._45{width:129.621325pt;}
._46{width:130.570663pt;}
._7e{width:131.718399pt;}
._5b{width:133.077333pt;}
._5c{width:134.026653pt;}
._72{width:136.725341pt;}
._62{width:137.813333pt;}
._6e{width:139.520000pt;}
._4e{width:140.714667pt;}
._56{width:142.048003pt;}
._64{width:143.189333pt;}
._58{width:144.650128pt;}
._65{width:146.389324pt;}
._6d{width:147.328009pt;}
._61{width:148.437328pt;}
._53{width:150.869333pt;}
._83{width:151.897594pt;}
._5d{width:153.045328pt;}
._1c{width:154.914667pt;}
._99{width:156.235996pt;}
._6b{width:157.450667pt;}
._63{width:166.058667pt;}
._7f{width:168.951467pt;}
._47{width:170.410667pt;}
._73{width:171.612248pt;}
._6f{width:173.194133pt;}
._98{width:174.955996pt;}
._4a{width:179.669333pt;}
._5f{width:183.125325pt;}
._94{width:188.490672pt;}
._7c{width:189.777067pt;}
._8f{width:193.056005pt;}
._44{width:194.560000pt;}
._5a{width:198.016000pt;}
._76{width:201.343994pt;}
._37{width:215.861319pt;}
._82{width:219.517860pt;}
._9e{width:228.352000pt;}
._89{width:230.186667pt;}
._9d{width:231.605325pt;}
._92{width:233.258651pt;}
._8c{width:234.453333pt;}
._91{width:238.463984pt;}
._84{width:240.729600pt;}
._75{width:243.285333pt;}
._ad{width:247.551994pt;}
._48{width:249.854712pt;}
._4b{width:250.880000pt;}
._38{width:252.842658pt;}
._60{width:254.336000pt;}
._97{width:256.204816pt;}
._36{width:257.461328pt;}
._93{width:259.417600pt;}
._8d{width:260.945067pt;}
._78{width:264.054608pt;}
._4d{width:270.549325pt;}
._74{width:271.529387pt;}
._77{width:272.554650pt;}
._a0{width:277.717333pt;}
._32{width:280.917327pt;}
._79{width:285.738675pt;}
._3b{width:287.829340pt;}
._27{width:291.285327pt;}
._1f{width:292.905060pt;}
._39{width:302.304002pt;}
._a1{width:307.914654pt;}
._3a{width:309.130660pt;}
._9f{width:315.093325pt;}
._6a{width:321.802666pt;}
._21{width:322.858667pt;}
._23{width:324.192000pt;}
._4c{width:330.411927pt;}
._7b{width:335.839457pt;}
._1e{width:339.541327pt;}
._ab{width:346.549345pt;}
._49{width:351.658647pt;}
._5e{width:355.582723pt;}
._30{width:364.667727pt;}
._2f{width:367.227727pt;}
._2a{width:372.479993pt;}
._34{width:374.997327pt;}
._aa{width:381.354648pt;}
._a8{width:387.797337pt;}
._22{width:390.229327pt;}
._31{width:394.105600pt;}
._28{width:402.570667pt;}
._26{width:404.320000pt;}
._33{width:411.982933pt;}
._a6{width:417.962670pt;}
._24{width:426.282660pt;}
._2e{width:427.729060pt;}
._2d{width:428.710393pt;}
._2c{width:434.687993pt;}
._a5{width:438.784000pt;}
._a3{width:459.605333pt;}
._9c{width:464.213333pt;}
._29{width:468.821327pt;}
._1d{width:492.031993pt;}
._2b{width:501.589327pt;}
._1b{width:530.526400pt;}
._40{width:545.930667pt;}
._a2{width:549.834633pt;}
._a9{width:561.823981pt;}
._a4{width:570.655966pt;}
._a7{width:591.989303pt;}
._3d{width:614.437867pt;}
._35{width:693.679911pt;}
.fs10{font-size:26.133333pt;}
.fsb{font-size:28.000000pt;}
.fse{font-size:29.866667pt;}
.fsf{font-size:32.426132pt;}
.fs1{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs6{font-size:41.066666pt;}
.fs2{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fs9{font-size:52.266667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:66.293333pt;}
.fs0{font-size:69.333333pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1c6{bottom:0.034032pt;}
.y1d6{bottom:0.707779pt;}
.y1bc{bottom:1.320150pt;}
.y208{bottom:1.466675pt;}
.y1f0{bottom:1.519979pt;}
.y176{bottom:1.633051pt;}
.y23a{bottom:1.633967pt;}
.y23d{bottom:1.634292pt;}
.y240{bottom:1.634374pt;}
.y1ba{bottom:1.644206pt;}
.y18a{bottom:1.857990pt;}
.y1d8{bottom:1.860596pt;}
.y188{bottom:2.181864pt;}
.y243{bottom:2.787354pt;}
.y1c4{bottom:3.106527pt;}
.y1f1{bottom:3.115845pt;}
.y1b5{bottom:3.240072pt;}
.y186{bottom:3.705729pt;}
.y1d3{bottom:3.773356pt;}
.yd{bottom:4.143066pt;}
.y173{bottom:4.705587pt;}
.y237{bottom:4.706543pt;}
.y203{bottom:5.240031pt;}
.y15c{bottom:6.839071pt;}
.y1d5{bottom:8.081136pt;}
.y178{bottom:8.689594pt;}
.y205{bottom:10.016032pt;}
.y1ee{bottom:11.119832pt;}
.y18b{bottom:12.417867pt;}
.y1d9{bottom:12.420329pt;}
.y175{bottom:12.709859pt;}
.y239{bottom:12.710775pt;}
.y23c{bottom:12.710938pt;}
.y23f{bottom:13.347087pt;}
.y242{bottom:13.347168pt;}
.y165{bottom:18.682942pt;}
.y161{bottom:18.683065pt;}
.y15e{bottom:18.683228pt;}
.y8{bottom:67.374933pt;}
.y7{bottom:78.042933pt;}
.y2eb{bottom:88.084433pt;}
.y2ea{bottom:88.169791pt;}
.y2e9{bottom:88.255150pt;}
.y2e8{bottom:88.329838pt;}
.y2e6{bottom:88.410665pt;}
.y6{bottom:88.710933pt;}
.y274{bottom:89.466140pt;}
.ydf{bottom:89.467727pt;}
.y3e8{bottom:89.469336pt;}
.y2af{bottom:89.477336pt;}
.y231{bottom:94.231466pt;}
.y303{bottom:94.823462pt;}
.y452{bottom:94.944539pt;}
.y3a8{bottom:95.814123pt;}
.y374{bottom:95.817329pt;}
.y290{bottom:96.198663pt;}
.y2d2{bottom:96.209329pt;}
.y13e{bottom:96.465329pt;}
.yb6{bottom:96.620004pt;}
.y6d{bottom:96.624808pt;}
.y337{bottom:96.632808pt;}
.y9b{bottom:96.634396pt;}
.y1b1{bottom:96.636004pt;}
.y3df{bottom:96.640798pt;}
.y3cb{bottom:96.834408pt;}
.y365{bottom:96.987996pt;}
.y5{bottom:99.378933pt;}
.y195{bottom:100.262929pt;}
.y48f{bottom:100.877848pt;}
.y39c{bottom:103.028267pt;}
.ye3{bottom:103.433603pt;}
.y451{bottom:106.944539pt;}
.y2fb{bottom:108.198663pt;}
.y273{bottom:108.334406pt;}
.yde{bottom:108.335994pt;}
.y3e7{bottom:108.337602pt;}
.y2ae{bottom:108.340798pt;}
.y4{bottom:110.046933pt;}
.y194{bottom:112.262939pt;}
.y28f{bottom:112.401329pt;}
.y2d1{bottom:112.411996pt;}
.y13d{bottom:112.667996pt;}
.y48e{bottom:112.877848pt;}
.y230{bottom:113.096536pt;}
.y364{bottom:113.190663pt;}
.y302{bottom:113.691728pt;}
.y3a7{bottom:114.682390pt;}
.y373{bottom:114.685596pt;}
.yb5{bottom:115.488271pt;}
.y6c{bottom:115.493075pt;}
.y336{bottom:115.501075pt;}
.y9a{bottom:115.502663pt;}
.y1b0{bottom:115.504271pt;}
.y3ca{bottom:115.702675pt;}
.y450{bottom:118.944539pt;}
.y3fc{bottom:119.373596pt;}
.y3{bottom:120.714933pt;}
.y39b{bottom:121.896533pt;}
.ye2{bottom:122.301870pt;}
.y193{bottom:124.262939pt;}
.y2fa{bottom:124.401329pt;}
.y48d{bottom:124.877848pt;}
.y363{bottom:125.190663pt;}
.y272{bottom:127.202673pt;}
.ydd{bottom:127.204261pt;}
.y3e6{bottom:127.205869pt;}
.y2ad{bottom:127.209065pt;}
.y28e{bottom:128.529329pt;}
.y2d0{bottom:128.539996pt;}
.y44f{bottom:130.944539pt;}
.y3fb{bottom:131.373596pt;}
.y2{bottom:131.382933pt;}
.y22f{bottom:131.964803pt;}
.y301{bottom:132.559995pt;}
.y3a6{bottom:133.550657pt;}
.y372{bottom:133.553863pt;}
.yb4{bottom:134.356537pt;}
.y6b{bottom:134.361341pt;}
.y335{bottom:134.369341pt;}
.y99{bottom:134.370929pt;}
.y1af{bottom:134.372537pt;}
.y3c9{bottom:134.570941pt;}
.y192{bottom:136.262939pt;}
.y13c{bottom:136.571996pt;}
.y48c{bottom:136.877848pt;}
.y2f9{bottom:140.529329pt;}
.y39a{bottom:140.764800pt;}
.ye1{bottom:141.166930pt;}
.y362{bottom:141.329329pt;}
.y44e{bottom:142.944539pt;}
.y2cf{bottom:144.667996pt;}
.y271{bottom:146.070940pt;}
.ydc{bottom:146.072527pt;}
.y3e5{bottom:146.074136pt;}
.y2ac{bottom:146.077332pt;}
.y191{bottom:148.262939pt;}
.y48b{bottom:148.877848pt;}
.y22e{bottom:150.825070pt;}
.y3fa{bottom:151.373596pt;}
.y300{bottom:151.428262pt;}
.y2e7{bottom:151.849864pt;}
.y3a5{bottom:152.418923pt;}
.y371{bottom:152.422129pt;}
.y28d{bottom:152.433329pt;}
.yb3{bottom:153.224804pt;}
.y6a{bottom:153.229608pt;}
.y334{bottom:153.237608pt;}
.y98{bottom:153.239196pt;}
.y1ae{bottom:153.240804pt;}
.y361{bottom:153.329329pt;}
.y3c8{bottom:153.439208pt;}
.y44d{bottom:154.944539pt;}
.y13b{bottom:157.766663pt;}
.y399{bottom:159.623470pt;}
.ye0{bottom:160.035197pt;}
.y190{bottom:160.262939pt;}
.y48a{bottom:160.877848pt;}
.y3f9{bottom:163.373596pt;}
.y2f8{bottom:164.433329pt;}
.y270{bottom:164.939206pt;}
.ydb{bottom:164.940794pt;}
.y2ab{bottom:164.942402pt;}
.y44c{bottom:166.944539pt;}
.y2ce{bottom:168.571996pt;}
.y360{bottom:169.467996pt;}
.y22d{bottom:169.693336pt;}
.y2ff{bottom:170.296528pt;}
.y370{bottom:171.287190pt;}
.y1ad{bottom:172.077071pt;}
.yb2{bottom:172.093071pt;}
.y69{bottom:172.097875pt;}
.y333{bottom:172.105875pt;}
.y97{bottom:172.107463pt;}
.y18f{bottom:172.262939pt;}
.y3c7{bottom:172.307475pt;}
.y489{bottom:172.877848pt;}
.y28c{bottom:174.044657pt;}
.y2e5{bottom:174.047324pt;}
.y3f8{bottom:175.373596pt;}
.y30{bottom:178.350805pt;}
.y398{bottom:178.491736pt;}
.y44b{bottom:178.944539pt;}
.y13a{bottom:179.377991pt;}
.y35f{bottom:181.467996pt;}
.y26f{bottom:183.807473pt;}
.yda{bottom:183.809061pt;}
.y2aa{bottom:183.810669pt;}
.y184{bottom:184.260265pt;}
.y18e{bottom:184.262939pt;}
.y488{bottom:184.877848pt;}
.y2f7{bottom:186.044657pt;}
.y3f7{bottom:187.373596pt;}
.y22c{bottom:188.561603pt;}
.y2e4{bottom:188.711324pt;}
.y2fe{bottom:189.164795pt;}
.y2cd{bottom:189.766663pt;}
.y36f{bottom:190.155457pt;}
.y44a{bottom:190.944539pt;}
.y1ac{bottom:190.945337pt;}
.yb1{bottom:190.961337pt;}
.y68{bottom:190.966141pt;}
.y96{bottom:190.974141pt;}
.y3c6{bottom:191.174133pt;}
.y183{bottom:196.260265pt;}
.y18d{bottom:196.262939pt;}
.y487{bottom:196.877848pt;}
.y2f{bottom:197.219072pt;}
.y397{bottom:197.360003pt;}
.y35e{bottom:197.595996pt;}
.y3f6{bottom:199.373596pt;}
.y26e{bottom:202.675740pt;}
.yd9{bottom:202.677327pt;}
.y449{bottom:202.944539pt;}
.y185{bottom:203.464010pt;}
.y212{bottom:205.333333pt;}
.y189{bottom:207.169739pt;}
.y187{bottom:207.241740pt;}
.y22b{bottom:207.429870pt;}
.y2fd{bottom:208.029866pt;}
.y182{bottom:208.260265pt;}
.y18c{bottom:208.262939pt;}
.y486{bottom:208.877848pt;}
.y3a4{bottom:209.009352pt;}
.y36e{bottom:209.022135pt;}
.y1ab{bottom:209.813604pt;}
.y95{bottom:209.821604pt;}
.yb0{bottom:209.829604pt;}
.y67{bottom:209.834408pt;}
.y332{bottom:209.837604pt;}
.y3c5{bottom:210.032792pt;}
.y3f5{bottom:211.373596pt;}
.y2cc{bottom:211.380657pt;}
.y35d{bottom:213.734663pt;}
.y448{bottom:214.944539pt;}
.y2e{bottom:216.087339pt;}
.y396{bottom:216.228270pt;}
.y211{bottom:217.333333pt;}
.y116{bottom:219.068016pt;}
.y485{bottom:220.877848pt;}
.yd8{bottom:221.542398pt;}
.y26d{bottom:221.544006pt;}
.y3f4{bottom:223.373596pt;}
.y3ef{bottom:224.343994pt;}
.y181{bottom:224.462931pt;}
.y2cb{bottom:226.044657pt;}
.y22a{bottom:226.298136pt;}
.y2fc{bottom:226.898132pt;}
.y447{bottom:226.944539pt;}
.y3a3{bottom:227.877618pt;}
.y36d{bottom:227.880794pt;}
.y139{bottom:228.234392pt;}
.y1aa{bottom:228.681871pt;}
.y94{bottom:228.689871pt;}
.yaf{bottom:228.697871pt;}
.y66{bottom:228.702675pt;}
.y28b{bottom:228.705871pt;}
.y3c4{bottom:228.901058pt;}
.y210{bottom:229.333333pt;}
.y35c{bottom:229.862663pt;}
.y484{bottom:232.877848pt;}
.y2d{bottom:234.955605pt;}
.y395{bottom:235.096536pt;}
.y115{bottom:235.270683pt;}
.y3f3{bottom:235.373596pt;}
.y180{bottom:236.462931pt;}
.y446{bottom:238.944539pt;}
.y2a9{bottom:240.406136pt;}
.yd7{bottom:240.410665pt;}
.y20f{bottom:241.333333pt;}
.y35b{bottom:241.862663pt;}
.y3ee{bottom:243.210673pt;}
.y483{bottom:244.877848pt;}
.y229{bottom:245.164795pt;}
.y3a2{bottom:246.745885pt;}
.y36c{bottom:246.749061pt;}
.y138{bottom:247.102658pt;}
.y3f2{bottom:247.373596pt;}
.y1a9{bottom:247.550137pt;}
.y93{bottom:247.558137pt;}
.yae{bottom:247.566137pt;}
.y3e4{bottom:247.567725pt;}
.y65{bottom:247.570941pt;}
.y28a{bottom:247.574137pt;}
.y3c3{bottom:247.769325pt;}
.y17f{bottom:248.462931pt;}
.y445{bottom:250.944539pt;}
.y114{bottom:251.398683pt;}
.y20e{bottom:253.333333pt;}
.y2c{bottom:253.823872pt;}
.y394{bottom:253.964803pt;}
.y482{bottom:256.877848pt;}
.y2a8{bottom:259.274402pt;}
.y26c{bottom:259.277323pt;}
.yd6{bottom:259.278390pt;}
.y3f1{bottom:259.373596pt;}
.y17e{bottom:260.462931pt;}
.y444{bottom:262.944539pt;}
.y113{bottom:263.398683pt;}
.y228{bottom:264.025062pt;}
.y20d{bottom:265.333333pt;}
.y3a1{bottom:265.614152pt;}
.y36b{bottom:265.617327pt;}
.y35a{bottom:265.766663pt;}
.y137{bottom:265.970925pt;}
.y1a8{bottom:266.418404pt;}
.y92{bottom:266.426404pt;}
.yad{bottom:266.434404pt;}
.y3e3{bottom:266.435992pt;}
.y2e3{bottom:266.437600pt;}
.y64{bottom:266.439208pt;}
.y289{bottom:266.440796pt;}
.y3c2{bottom:266.637592pt;}
.y481{bottom:268.877848pt;}
.y3f0{bottom:271.373596pt;}
.y17d{bottom:272.462931pt;}
.y2b{bottom:272.692139pt;}
.y393{bottom:272.825070pt;}
.y443{bottom:274.944539pt;}
.y20c{bottom:277.333333pt;}
.y359{bottom:277.766663pt;}
.y2a7{bottom:278.142669pt;}
.yd5{bottom:278.610657pt;}
.y112{bottom:279.526683pt;}
.y320{bottom:280.668016pt;}
.y480{bottom:280.877848pt;}
.y227{bottom:282.893328pt;}
.y3ed{bottom:283.124124pt;}
.y17c{bottom:284.462931pt;}
.y3a0{bottom:284.482418pt;}
.y36a{bottom:284.485594pt;}
.y136{bottom:284.839192pt;}
.y1a7{bottom:285.286671pt;}
.y2ca{bottom:285.291454pt;}
.y91{bottom:285.294671pt;}
.y331{bottom:285.296279pt;}
.yac{bottom:285.302671pt;}
.y3e2{bottom:285.304258pt;}
.y288{bottom:285.305867pt;}
.y63{bottom:285.307475pt;}
.y3c1{bottom:285.505858pt;}
.y442{bottom:286.944539pt;}
.y20b{bottom:289.333333pt;}
.y358{bottom:289.766663pt;}
.y111{bottom:291.526683pt;}
.y2a{bottom:291.555600pt;}
.y392{bottom:291.693336pt;}
.y47f{bottom:292.877848pt;}
.y17b{bottom:296.462931pt;}
.y171{bottom:296.468273pt;}
.y2a6{bottom:297.010936pt;}
.y441{bottom:298.944539pt;}
.y26b{bottom:300.416145pt;}
.y20a{bottom:301.333333pt;}
.y226{bottom:301.761595pt;}
.y3ec{bottom:301.992391pt;}
.y39f{bottom:303.350685pt;}
.y369{bottom:303.353861pt;}
.y31f{bottom:303.462683pt;}
.y135{bottom:303.707458pt;}
.y1a6{bottom:304.154937pt;}
.y2c9{bottom:304.159721pt;}
.y90{bottom:304.162937pt;}
.y2f6{bottom:304.164546pt;}
.y62{bottom:304.167721pt;}
.yab{bottom:304.170937pt;}
.y3e1{bottom:304.172525pt;}
.y287{bottom:304.174133pt;}
.y3c0{bottom:304.374125pt;}
.y47e{bottom:304.877848pt;}
.y110{bottom:307.665350pt;}
.y17a{bottom:308.462931pt;}
.y170{bottom:308.468273pt;}
.y29{bottom:310.423867pt;}
.y391{bottom:310.561603pt;}
.y440{bottom:310.944539pt;}
.y357{bottom:311.377991pt;}
.y209{bottom:313.333333pt;}
.y172{bottom:313.397339pt;}
.y47d{bottom:316.877848pt;}
.y174{bottom:318.031067pt;}
.y177{bottom:318.103068pt;}
.y26a{bottom:319.284412pt;}
.y10f{bottom:319.665350pt;}
.yd4{bottom:319.782791pt;}
.y179{bottom:320.462931pt;}
.y16f{bottom:320.468273pt;}
.y225{bottom:320.629862pt;}
.y3eb{bottom:320.859070pt;}
.y39e{bottom:322.218952pt;}
.y368{bottom:322.222127pt;}
.y134{bottom:322.570921pt;}
.y43f{bottom:322.944539pt;}
.y1a5{bottom:323.023204pt;}
.y2e2{bottom:323.024812pt;}
.y2c8{bottom:323.027988pt;}
.y8f{bottom:323.031204pt;}
.y2f5{bottom:323.032812pt;}
.y61{bottom:323.035988pt;}
.yaa{bottom:323.039204pt;}
.y286{bottom:323.040792pt;}
.y3bf{bottom:323.240804pt;}
.y201{bottom:325.333333pt;}
.y31e{bottom:326.193350pt;}
.y47c{bottom:328.877848pt;}
.y28{bottom:329.292133pt;}
.y390{bottom:329.429870pt;}
.y2a5{bottom:332.539202pt;}
.y43e{bottom:334.944539pt;}
.y10e{bottom:335.793350pt;}
.y16e{bottom:336.596273pt;}
.y200{bottom:337.333333pt;}
.y269{bottom:338.152679pt;}
.yd3{bottom:338.651058pt;}
.y224{bottom:339.498128pt;}
.y47b{bottom:340.877848pt;}
.y367{bottom:341.087218pt;}
.y133{bottom:341.439188pt;}
.y1a4{bottom:341.891471pt;}
.y2e1{bottom:341.893079pt;}
.y2c7{bottom:341.896254pt;}
.y8e{bottom:341.899471pt;}
.y2f4{bottom:341.901079pt;}
.y60{bottom:341.904254pt;}
.ya9{bottom:341.907471pt;}
.y3be{bottom:342.094679pt;}
.y410{bottom:346.708396pt;}
.y43d{bottom:346.944539pt;}
.y10d{bottom:347.793350pt;}
.y27{bottom:348.158813pt;}
.y38f{bottom:348.298136pt;}
.y16d{bottom:348.596273pt;}
.y31d{bottom:348.924016pt;}
.y1ff{bottom:349.333333pt;}
.y2a4{bottom:351.407469pt;}
.y47a{bottom:352.877848pt;}
.y202{bottom:353.733317pt;}
.y268{bottom:357.020945pt;}
.yd2{bottom:357.519324pt;}
.y40f{bottom:358.041729pt;}
.y223{bottom:358.358395pt;}
.y204{bottom:358.901326pt;}
.y43c{bottom:358.944539pt;}
.y366{bottom:359.955485pt;}
.y132{bottom:360.307454pt;}
.y16c{bottom:360.596273pt;}
.y3de{bottom:360.756521pt;}
.y1a3{bottom:360.759737pt;}
.y2e0{bottom:360.761346pt;}
.y2c6{bottom:360.764521pt;}
.y8d{bottom:360.767737pt;}
.y2f3{bottom:360.769346pt;}
.y5f{bottom:360.772521pt;}
.y3bd{bottom:360.962946pt;}
.y356{bottom:361.174681pt;}
.y1fe{bottom:361.333333pt;}
.y206{bottom:363.701457pt;}
.y207{bottom:363.749349pt;}
.y10c{bottom:363.921350pt;}
.y479{bottom:364.877848pt;}
.y38e{bottom:367.164795pt;}
.y40e{bottom:369.372396pt;}
.y2a3{bottom:370.275736pt;}
.y43b{bottom:370.944539pt;}
.y31c{bottom:371.654683pt;}
.y16b{bottom:372.596273pt;}
.y267{bottom:375.889212pt;}
.y10b{bottom:375.921350pt;}
.yd1{bottom:376.387591pt;}
.y478{bottom:376.877848pt;}
.y222{bottom:377.226662pt;}
.y1fd{bottom:377.466675pt;}
.y131{bottom:379.174154pt;}
.y3dd{bottom:379.624788pt;}
.y1a2{bottom:379.628004pt;}
.y2df{bottom:379.629612pt;}
.y2c5{bottom:379.632788pt;}
.y8c{bottom:379.636004pt;}
.y2f2{bottom:379.637612pt;}
.y5e{bottom:379.640788pt;}
.y3bc{bottom:379.831212pt;}
.y355{bottom:380.042948pt;}
.y43a{bottom:382.944539pt;}
.y26{bottom:383.125488pt;}
.y16a{bottom:384.596273pt;}
.y38d{bottom:386.015453pt;}
.y415{bottom:388.160394pt;}
.y477{bottom:388.877848pt;}
.y2a2{bottom:389.144002pt;}
.y1fc{bottom:389.466675pt;}
.y10a{bottom:392.049350pt;}
.y31b{bottom:394.385350pt;}
.y439{bottom:394.944539pt;}
.yd0{bottom:395.255858pt;}
.y221{bottom:396.094928pt;}
.y15a{bottom:396.592419pt;}
.y169{bottom:396.596273pt;}
.y15b{bottom:397.757324pt;}
.y130{bottom:398.032812pt;}
.ya8{bottom:398.488271pt;}
.y3dc{bottom:398.493054pt;}
.y1a1{bottom:398.496271pt;}
.y2de{bottom:398.497879pt;}
.y3ea{bottom:398.499487pt;}
.y2c4{bottom:398.501054pt;}
.y5d{bottom:398.502663pt;}
.y8b{bottom:398.504271pt;}
.y2f1{bottom:398.505879pt;}
.y3bb{bottom:398.699479pt;}
.y354{bottom:398.911214pt;}
.y476{bottom:400.877848pt;}
.y1fb{bottom:401.466675pt;}
.y164{bottom:401.620894pt;}
.y160{bottom:401.621016pt;}
.y109{bottom:404.049350pt;}
.y414{bottom:404.363060pt;}
.y25{bottom:404.458822pt;}
.y162{bottom:404.596151pt;}
.y166{bottom:404.596273pt;}
.y15d{bottom:404.596395pt;}
.y38c{bottom:404.883720pt;}
.y438{bottom:406.944539pt;}
.y2a1{bottom:408.009053pt;}
.y159{bottom:408.592419pt;}
.y168{bottom:408.596273pt;}
.y163{bottom:409.468018pt;}
.y15f{bottom:409.468140pt;}
.y266{bottom:411.417479pt;}
.y475{bottom:412.877848pt;}
.y1fa{bottom:413.466675pt;}
.ycf{bottom:414.124124pt;}
.y220{bottom:414.963195pt;}
.y3b2{bottom:416.821981pt;}
.y12f{bottom:416.901079pt;}
.y31a{bottom:417.116016pt;}
.ya7{bottom:417.356537pt;}
.y3db{bottom:417.361321pt;}
.y1a0{bottom:417.364537pt;}
.y2dd{bottom:417.366146pt;}
.y3e9{bottom:417.367754pt;}
.y2c3{bottom:417.369321pt;}
.y5c{bottom:417.370929pt;}
.y8a{bottom:417.372537pt;}
.y2f0{bottom:417.374146pt;}
.y3ba{bottom:417.567746pt;}
.y353{bottom:417.777873pt;}
.y437{bottom:418.944539pt;}
.y381{bottom:419.528015pt;}
.y108{bottom:420.177350pt;}
.y413{bottom:420.491060pt;}
.y158{bottom:420.592419pt;}
.y167{bottom:420.596273pt;}
.y38b{bottom:423.751987pt;}
.y474{bottom:424.877848pt;}
.y1f9{bottom:425.466675pt;}
.y24{bottom:425.792155pt;}
.y2a0{bottom:426.877319pt;}
.y265{bottom:430.285745pt;}
.y436{bottom:430.944539pt;}
.y380{bottom:431.528015pt;}
.y107{bottom:432.177350pt;}
.yce{bottom:432.992391pt;}
.y21f{bottom:433.831462pt;}
.y12e{bottom:435.769346pt;}
.ya6{bottom:436.224804pt;}
.y3da{bottom:436.229588pt;}
.y330{bottom:436.231196pt;}
.y19f{bottom:436.232804pt;}
.y2dc{bottom:436.234412pt;}
.y2ef{bottom:436.236020pt;}
.y2c2{bottom:436.237588pt;}
.y5b{bottom:436.239196pt;}
.y89{bottom:436.240804pt;}
.y3b9{bottom:436.436012pt;}
.y352{bottom:436.636653pt;}
.y473{bottom:436.877848pt;}
.y1f8{bottom:437.466675pt;}
.y319{bottom:439.846683pt;}
.y23{bottom:441.792155pt;}
.y38a{bottom:442.620253pt;}
.y435{bottom:442.944539pt;}
.y412{bottom:444.395060pt;}
.y157{bottom:444.496419pt;}
.y29f{bottom:445.737861pt;}
.y37f{bottom:447.730682pt;}
.y106{bottom:448.305350pt;}
.y472{bottom:448.877848pt;}
.y264{bottom:449.154012pt;}
.y1f7{bottom:449.466675pt;}
.ycd{bottom:451.854266pt;}
.y21e{bottom:452.694945pt;}
.y12d{bottom:454.637612pt;}
.y434{bottom:454.944539pt;}
.ya5{bottom:455.093071pt;}
.y88{bottom:455.094679pt;}
.y3d9{bottom:455.097854pt;}
.y32f{bottom:455.099463pt;}
.y19e{bottom:455.101071pt;}
.y2db{bottom:455.102679pt;}
.y2ee{bottom:455.104287pt;}
.y2c1{bottom:455.105854pt;}
.y5a{bottom:455.107463pt;}
.y3b8{bottom:455.304279pt;}
.y351{bottom:455.504920pt;}
.y411{bottom:456.395060pt;}
.y156{bottom:456.496419pt;}
.y22{bottom:457.792155pt;}
.y105{bottom:460.305350pt;}
.y471{bottom:460.877848pt;}
.y1f6{bottom:461.466675pt;}
.y389{bottom:461.488520pt;}
.y318{bottom:462.577350pt;}
.y37e{bottom:463.869349pt;}
.y29e{bottom:464.606127pt;}
.y433{bottom:466.944539pt;}
.y263{bottom:468.019062pt;}
.ycc{bottom:470.722532pt;}
.y21d{bottom:471.563211pt;}
.y470{bottom:472.877848pt;}
.y1f5{bottom:473.466675pt;}
.y12c{bottom:473.505879pt;}
.y21{bottom:473.792155pt;}
.ya4{bottom:473.961337pt;}
.y87{bottom:473.962946pt;}
.y3d8{bottom:473.966121pt;}
.y32e{bottom:473.967729pt;}
.y59{bottom:473.969337pt;}
.y2da{bottom:473.970946pt;}
.y285{bottom:473.972554pt;}
.y2c0{bottom:473.974121pt;}
.y3b7{bottom:474.172546pt;}
.y350{bottom:474.373187pt;}
.y37d{bottom:475.869349pt;}
.y104{bottom:476.433350pt;}
.y40d{bottom:478.009055pt;}
.y155{bottom:478.107585pt;}
.y432{bottom:478.944539pt;}
.y388{bottom:480.356787pt;}
.y29d{bottom:483.474394pt;}
.y46f{bottom:484.877848pt;}
.y317{bottom:485.308016pt;}
.y1f4{bottom:485.466675pt;}
.y1ec{bottom:485.472016pt;}
.y262{bottom:486.887329pt;}
.y103{bottom:488.433350pt;}
.ycb{bottom:489.590799pt;}
.y20{bottom:489.792155pt;}
.y21c{bottom:490.431478pt;}
.y431{bottom:490.944539pt;}
.y37c{bottom:491.997349pt;}
.y12b{bottom:492.374146pt;}
.y40c{bottom:492.673055pt;}
.y2bf{bottom:492.826388pt;}
.ya3{bottom:492.829604pt;}
.y86{bottom:492.831212pt;}
.y3d7{bottom:492.834388pt;}
.y32d{bottom:492.835996pt;}
.y58{bottom:492.837604pt;}
.y2d9{bottom:492.839212pt;}
.y284{bottom:492.840820pt;}
.y3b6{bottom:493.040812pt;}
.y34f{bottom:493.241453pt;}
.y46e{bottom:496.877848pt;}
.y1f3{bottom:497.466675pt;}
.y1eb{bottom:497.472016pt;}
.y387{bottom:499.225053pt;}
.y102{bottom:500.433350pt;}
.y430{bottom:502.944539pt;}
.y261{bottom:505.754150pt;}
.y1f{bottom:505.792155pt;}
.y1ed{bottom:506.266683pt;}
.y316{bottom:508.038683pt;}
.y37b{bottom:508.125349pt;}
.yca{bottom:508.459066pt;}
.y46d{bottom:508.877848pt;}
.y21b{bottom:509.296528pt;}
.y1ef{bottom:509.382528pt;}
.y1f2{bottom:509.466675pt;}
.y1ea{bottom:509.472016pt;}
.y12a{bottom:511.234412pt;}
.y2be{bottom:511.694654pt;}
.ya2{bottom:511.697871pt;}
.y85{bottom:511.699479pt;}
.y3d6{bottom:511.702654pt;}
.y2ed{bottom:511.704263pt;}
.y57{bottom:511.705871pt;}
.y283{bottom:511.707479pt;}
.y3b5{bottom:511.907471pt;}
.y34e{bottom:512.109720pt;}
.y101{bottom:512.433350pt;}
.y42f{bottom:514.944539pt;}
.y386{bottom:518.093320pt;}
.y29c{bottom:519.002661pt;}
.y46c{bottom:520.877848pt;}
.y1e{bottom:521.792155pt;}
.y37a{bottom:524.253349pt;}
.y100{bottom:524.433350pt;}
.y260{bottom:524.621084pt;}
.y1e9{bottom:525.600016pt;}
.y42e{bottom:526.944539pt;}
.yc9{bottom:527.325724pt;}
.y21a{bottom:528.164795pt;}
.y129{bottom:530.102679pt;}
.y154{bottom:530.369848pt;}
.y282{bottom:530.558137pt;}
.y2bd{bottom:530.562921pt;}
.ya1{bottom:530.566137pt;}
.y84{bottom:530.567746pt;}
.y3d5{bottom:530.570921pt;}
.y2ec{bottom:530.572529pt;}
.y56{bottom:530.574137pt;}
.y315{bottom:530.769350pt;}
.y3b4{bottom:530.774129pt;}
.y34d{bottom:530.977987pt;}
.y46b{bottom:532.877848pt;}
.yff{bottom:536.433350pt;}
.y385{bottom:536.961587pt;}
.y1e8{bottom:537.600016pt;}
.y1d{bottom:537.792155pt;}
.y29b{bottom:537.870927pt;}
.y42d{bottom:538.944539pt;}
.y25f{bottom:543.489350pt;}
.y46a{bottom:544.877848pt;}
.yc8{bottom:546.192383pt;}
.y219{bottom:547.029886pt;}
.y379{bottom:548.157349pt;}
.yfe{bottom:548.433350pt;}
.y128{bottom:548.970946pt;}
.y153{bottom:549.238115pt;}
.y55{bottom:549.416837pt;}
.y281{bottom:549.426404pt;}
.y2bc{bottom:549.431188pt;}
.ya0{bottom:549.434404pt;}
.y83{bottom:549.436012pt;}
.y3d4{bottom:549.439188pt;}
.y19d{bottom:549.440796pt;}
.y1e7{bottom:549.600016pt;}
.y3b3{bottom:549.640788pt;}
.y34c{bottom:549.839739pt;}
.y42c{bottom:550.944539pt;}
.y314{bottom:553.500016pt;}
.y1c{bottom:553.792155pt;}
.y384{bottom:555.829853pt;}
.y29a{bottom:556.739194pt;}
.y469{bottom:556.877848pt;}
.y378{bottom:560.157349pt;}
.yfd{bottom:560.433350pt;}
.y3e{bottom:561.215047pt;}
.y1e6{bottom:561.600016pt;}
.y25e{bottom:562.357617pt;}
.y42b{bottom:562.944539pt;}
.y218{bottom:565.898153pt;}
.y127{bottom:567.839212pt;}
.y152{bottom:568.106382pt;}
.y54{bottom:568.285103pt;}
.y32c{bottom:568.291454pt;}
.y280{bottom:568.294671pt;}
.y2bb{bottom:568.299454pt;}
.y9f{bottom:568.302671pt;}
.y82{bottom:568.304279pt;}
.y3d3{bottom:568.307454pt;}
.y34b{bottom:568.708006pt;}
.y468{bottom:568.877848pt;}
.y40b{bottom:569.661308pt;}
.y1b{bottom:569.792155pt;}
.y377{bottom:572.157349pt;}
.yfc{bottom:572.433350pt;}
.y3d{bottom:573.215047pt;}
.y1e5{bottom:573.600016pt;}
.y383{bottom:574.698120pt;}
.y42a{bottom:574.944539pt;}
.y299{bottom:575.607461pt;}
.y313{bottom:576.230683pt;}
.y467{bottom:580.877848pt;}
.yfb{bottom:584.433350pt;}
.y217{bottom:584.761595pt;}
.y3c{bottom:585.215047pt;}
.y1e4{bottom:585.600016pt;}
.y1a{bottom:585.792155pt;}
.y40a{bottom:585.863975pt;}
.y126{bottom:586.707479pt;}
.y429{bottom:586.944539pt;}
.y151{bottom:586.974648pt;}
.y3d2{bottom:587.145370pt;}
.y53{bottom:587.153370pt;}
.y32b{bottom:587.159721pt;}
.y27f{bottom:587.162937pt;}
.yc7{bottom:587.164505pt;}
.y2ba{bottom:587.167721pt;}
.y9e{bottom:587.170937pt;}
.y81{bottom:587.172546pt;}
.y34a{bottom:587.576273pt;}
.y466{bottom:592.877848pt;}
.y382{bottom:593.564819pt;}
.y376{bottom:593.768677pt;}
.y298{bottom:594.475727pt;}
.yfa{bottom:596.433350pt;}
.y3b{bottom:597.215047pt;}
.y1e3{bottom:597.600016pt;}
.y25d{bottom:597.885884pt;}
.y312{bottom:598.961350pt;}
.y19{bottom:601.792155pt;}
.y409{bottom:602.002641pt;}
.y216{bottom:603.629862pt;}
.y465{bottom:604.877848pt;}
.y125{bottom:605.574137pt;}
.y150{bottom:605.842915pt;}
.y3d1{bottom:606.013637pt;}
.y52{bottom:606.021637pt;}
.y32a{bottom:606.027988pt;}
.y27e{bottom:606.031204pt;}
.yc6{bottom:606.032771pt;}
.y2b9{bottom:606.035988pt;}
.y9d{bottom:606.039204pt;}
.y80{bottom:606.040812pt;}
.y349{bottom:606.444539pt;}
.y1e2{bottom:609.600016pt;}
.yf9{bottom:612.561350pt;}
.y3a{bottom:613.215047pt;}
.y297{bottom:613.343994pt;}
.y25c{bottom:616.754150pt;}
.y464{bottom:616.877848pt;}
.y18{bottom:617.792155pt;}
.y408{bottom:618.130641pt;}
.y39{bottom:621.215047pt;}
.y1e1{bottom:621.600016pt;}
.y311{bottom:621.692016pt;}
.y215{bottom:622.498128pt;}
.y124{bottom:624.437620pt;}
.y14f{bottom:624.711182pt;}
.y3d0{bottom:624.881903pt;}
.y51{bottom:624.889903pt;}
.y329{bottom:624.896254pt;}
.y27d{bottom:624.899471pt;}
.yc5{bottom:624.901038pt;}
.y7f{bottom:624.902687pt;}
.y2b8{bottom:624.904254pt;}
.y9c{bottom:624.907471pt;}
.y348{bottom:625.298496pt;}
.yf8{bottom:628.689350pt;}
.y463{bottom:628.877848pt;}
.y296{bottom:632.210653pt;}
.y38{bottom:633.215047pt;}
.y1e0{bottom:633.600016pt;}
.y17{bottom:633.792155pt;}
.y407{bottom:634.258641pt;}
.y25b{bottom:635.620687pt;}
.yf7{bottom:640.689350pt;}
.y462{bottom:640.877848pt;}
.y214{bottom:641.364787pt;}
.y123{bottom:643.305887pt;}
.y14e{bottom:643.574787pt;}
.y3cf{bottom:643.750170pt;}
.y50{bottom:643.758170pt;}
.y328{bottom:643.764521pt;}
.y27c{bottom:643.767737pt;}
.yc4{bottom:643.769305pt;}
.y7e{bottom:643.770954pt;}
.y2b7{bottom:643.772521pt;}
.y347{bottom:644.166762pt;}
.y310{bottom:644.422683pt;}
.y37{bottom:645.215047pt;}
.y1df{bottom:645.600016pt;}
.y39d{bottom:647.071330pt;}
.y375{bottom:648.351318pt;}
.y16{bottom:649.792155pt;}
.y406{bottom:650.386641pt;}
.y428{bottom:651.144694pt;}
.y461{bottom:652.877848pt;}
.yf6{bottom:656.817350pt;}
.y36{bottom:657.215047pt;}
.y1de{bottom:657.600016pt;}
.y213{bottom:660.231486pt;}
.y122{bottom:662.174154pt;}
.y14d{bottom:662.443053pt;}
.y3ce{bottom:662.618437pt;}
.y4f{bottom:662.626437pt;}
.y327{bottom:662.632788pt;}
.y27b{bottom:662.636004pt;}
.yc3{bottom:662.637571pt;}
.y7d{bottom:662.639220pt;}
.y2b6{bottom:662.640788pt;}
.y346{bottom:663.035029pt;}
.y460{bottom:664.877848pt;}
.y15{bottom:665.792155pt;}
.y405{bottom:666.514641pt;}
.y30f{bottom:667.153350pt;}
.yf5{bottom:668.817350pt;}
.y1dd{bottom:669.600016pt;}
.y35{bottom:673.215047pt;}
.y427{bottom:675.144694pt;}
.y295{bottom:675.722532pt;}
.y45f{bottom:676.877848pt;}
.y25a{bottom:677.421178pt;}
.y121{bottom:681.037637pt;}
.y34{bottom:681.215088pt;}
.y14c{bottom:681.311320pt;}
.y3cd{bottom:681.486703pt;}
.y4e{bottom:681.494703pt;}
.y2b5{bottom:681.499487pt;}
.y326{bottom:681.501054pt;}
.y27a{bottom:681.504271pt;}
.yc2{bottom:681.505838pt;}
.y7c{bottom:681.507487pt;}
.y1dc{bottom:681.600016pt;}
.y1d1{bottom:681.605317pt;}
.y14{bottom:681.792155pt;}
.y345{bottom:681.903296pt;}
.y404{bottom:682.653308pt;}
.yf4{bottom:684.945350pt;}
.y426{bottom:687.144694pt;}
.y45e{bottom:688.877848pt;}
.y30e{bottom:689.884016pt;}
.y1db{bottom:693.600016pt;}
.y1d0{bottom:693.605317pt;}
.y294{bottom:694.590799pt;}
.y259{bottom:696.289445pt;}
.yf3{bottom:696.945350pt;}
.y33{bottom:697.215088pt;}
.y13{bottom:697.792155pt;}
.y403{bottom:698.781308pt;}
.y1d2{bottom:699.466634pt;}
.y120{bottom:699.905903pt;}
.y14b{bottom:700.177897pt;}
.y3cc{bottom:700.354970pt;}
.y2d8{bottom:700.361321pt;}
.y4d{bottom:700.362970pt;}
.y2b4{bottom:700.367754pt;}
.y325{bottom:700.369321pt;}
.y279{bottom:700.372537pt;}
.y7b{bottom:700.374105pt;}
.y344{bottom:700.771562pt;}
.y45d{bottom:700.877848pt;}
.y1d7{bottom:703.246908pt;}
.y1da{bottom:705.600016pt;}
.y1cf{bottom:705.605317pt;}
.y425{bottom:707.144694pt;}
.y1d4{bottom:707.799886pt;}
.yf2{bottom:708.945350pt;}
.y32{bottom:712.215088pt;}
.y30d{bottom:712.614683pt;}
.y45c{bottom:712.877848pt;}
.y293{bottom:713.459066pt;}
.y402{bottom:714.919975pt;}
.y258{bottom:715.157711pt;}
.y12{bottom:717.792155pt;}
.y11f{bottom:718.774170pt;}
.y14a{bottom:719.041299pt;}
.y7a{bottom:719.223237pt;}
.yc1{bottom:719.224804pt;}
.y2d7{bottom:719.229588pt;}
.y4c{bottom:719.231237pt;}
.y19c{bottom:719.234371pt;}
.y2b3{bottom:719.236020pt;}
.y324{bottom:719.237588pt;}
.y278{bottom:719.240804pt;}
.y252{bottom:719.422689pt;}
.y343{bottom:719.639829pt;}
.y1ce{bottom:721.733317pt;}
.y31{bottom:724.215088pt;}
.y45b{bottom:724.877848pt;}
.yf1{bottom:725.073350pt;}
.y251{bottom:731.422689pt;}
.y292{bottom:732.325765pt;}
.y1cd{bottom:733.733317pt;}
.y257{bottom:734.025978pt;}
.y30c{bottom:735.345350pt;}
.y45a{bottom:736.877848pt;}
.yf0{bottom:737.073350pt;}
.y11e{bottom:737.632788pt;}
.y149{bottom:737.909565pt;}
.y79{bottom:738.091503pt;}
.yc0{bottom:738.093071pt;}
.y2d6{bottom:738.097854pt;}
.y4b{bottom:738.099503pt;}
.y19b{bottom:738.102638pt;}
.y277{bottom:738.104287pt;}
.y323{bottom:738.105854pt;}
.y342{bottom:738.508096pt;}
.y401{bottom:738.823975pt;}
.y250{bottom:743.422689pt;}
.y424{bottom:744.877848pt;}
.y1cc{bottom:745.733317pt;}
.y459{bottom:748.877848pt;}
.y291{bottom:751.192383pt;}
.y256{bottom:752.894245pt;}
.y3b1{bottom:753.126683pt;}
.yef{bottom:753.212016pt;}
.y24f{bottom:755.422689pt;}
.y11d{bottom:756.501054pt;}
.y148{bottom:756.777832pt;}
.y423{bottom:756.877848pt;}
.y78{bottom:756.959770pt;}
.ybf{bottom:756.961337pt;}
.y2d5{bottom:756.966121pt;}
.y4a{bottom:756.967770pt;}
.y19a{bottom:756.970905pt;}
.y276{bottom:756.972554pt;}
.y322{bottom:756.974121pt;}
.y341{bottom:757.376362pt;}
.y1cb{bottom:757.733317pt;}
.y30b{bottom:758.076016pt;}
.y400{bottom:760.435303pt;}
.y458{bottom:760.877848pt;}
.y3b0{bottom:765.126683pt;}
.y24e{bottom:767.422689pt;}
.y422{bottom:768.877848pt;}
.yee{bottom:769.340016pt;}
.y1ca{bottom:769.733317pt;}
.y255{bottom:771.762511pt;}
.y457{bottom:772.877848pt;}
.y11c{bottom:775.369321pt;}
.y147{bottom:775.638099pt;}
.y11{bottom:775.711088pt;}
.y77{bottom:775.828037pt;}
.ybe{bottom:775.829604pt;}
.y2d4{bottom:775.834388pt;}
.y49{bottom:775.836037pt;}
.y199{bottom:775.839171pt;}
.y275{bottom:775.840820pt;}
.y340{bottom:776.244629pt;}
.y24d{bottom:779.422689pt;}
.y30a{bottom:780.806683pt;}
.y3af{bottom:781.329350pt;}
.y1c9{bottom:781.733317pt;}
.y456{bottom:784.877848pt;}
.yed{bottom:785.468016pt;}
.y421{bottom:788.877848pt;}
.y254{bottom:790.630778pt;}
.y24c{bottom:791.422689pt;}
.y1c8{bottom:793.733317pt;}
.y11b{bottom:794.237588pt;}
.y10{bottom:794.381755pt;}
.y146{bottom:794.506365pt;}
.y76{bottom:794.696303pt;}
.ybd{bottom:794.697871pt;}
.y2d3{bottom:794.702654pt;}
.y48{bottom:794.704303pt;}
.y3e0{bottom:794.705871pt;}
.y198{bottom:794.707438pt;}
.y33f{bottom:795.109761pt;}
.y455{bottom:796.877848pt;}
.y3ae{bottom:797.457350pt;}
.yec{bottom:797.468016pt;}
.y420{bottom:800.877848pt;}
.y24b{bottom:803.422689pt;}
.y309{bottom:803.537350pt;}
.y1c7{bottom:805.733317pt;}
.y454{bottom:808.877848pt;}
.y253{bottom:809.497314pt;}
.y41f{bottom:812.877848pt;}
.y11a{bottom:813.105854pt;}
.y145{bottom:813.374632pt;}
.y75{bottom:813.564570pt;}
.ybc{bottom:813.566137pt;}
.y321{bottom:813.567705pt;}
.y2b2{bottom:813.570921pt;}
.y47{bottom:813.572570pt;}
.y197{bottom:813.574137pt;}
.y3ad{bottom:813.585350pt;}
.yeb{bottom:813.596016pt;}
.y33e{bottom:813.978027pt;}
.y24a{bottom:815.422689pt;}
.y1c2{bottom:817.733317pt;}
.y3ff{bottom:818.726683pt;}
.y453{bottom:820.877848pt;}
.yea{bottom:825.596016pt;}
.y308{bottom:826.268016pt;}
.y249{bottom:827.422689pt;}
.y3ac{bottom:829.724016pt;}
.y1c1{bottom:829.733317pt;}
.y119{bottom:831.974121pt;}
.y144{bottom:832.242899pt;}
.y74{bottom:832.432837pt;}
.ybb{bottom:832.434404pt;}
.y196{bottom:832.435971pt;}
.y2b1{bottom:832.439188pt;}
.y46{bottom:832.440837pt;}
.y33d{bottom:832.844564pt;}
.y41e{bottom:832.877848pt;}
.y3fe{bottom:834.929350pt;}
.yf{bottom:835.452805pt;}
.y1c3{bottom:837.333333pt;}
.ye9{bottom:837.596016pt;}
.y248{bottom:839.422689pt;}
.y1c5{bottom:840.439860pt;}
.y3ab{bottom:841.724016pt;}
.y1c0{bottom:841.733317pt;}
.y41d{bottom:844.877848pt;}
.y307{bottom:848.998683pt;}
.y118{bottom:850.840820pt;}
.y3fd{bottom:851.057350pt;}
.y143{bottom:851.111165pt;}
.y73{bottom:851.301103pt;}
.yba{bottom:851.302671pt;}
.y45{bottom:851.304238pt;}
.y2b0{bottom:851.307454pt;}
.y247{bottom:851.422689pt;}
.y33c{bottom:851.706561pt;}
.ye8{bottom:853.724016pt;}
.y41c{bottom:856.877848pt;}
.y1b3{bottom:857.862683pt;}
.y1bf{bottom:857.866699pt;}
.y246{bottom:863.422689pt;}
.y235{bottom:863.427361pt;}
.ye7{bottom:865.724016pt;}
.y306{bottom:867.196016pt;}
.y41b{bottom:868.877848pt;}
.y117{bottom:869.707438pt;}
.y1b2{bottom:869.862683pt;}
.y1be{bottom:869.866699pt;}
.y142{bottom:869.973162pt;}
.ye{bottom:870.108805pt;}
.y72{bottom:870.169370pt;}
.yb9{bottom:870.170937pt;}
.y44{bottom:870.172505pt;}
.y33b{bottom:870.574827pt;}
.y491{bottom:872.877848pt;}
.y245{bottom:875.422689pt;}
.y234{bottom:875.427361pt;}
.y1b4{bottom:878.626628pt;}
.y1bd{bottom:879.946777pt;}
.y1b9{bottom:880.354574pt;}
.y1bb{bottom:880.366699pt;}
.y236{bottom:880.489339pt;}
.y41a{bottom:880.877848pt;}
.y3aa{bottom:881.766683pt;}
.y1b6{bottom:881.794678pt;}
.ye6{bottom:881.862683pt;}
.y1b7{bottom:881.866699pt;}
.y1b8{bottom:881.986410pt;}
.y238{bottom:883.276123pt;}
.y490{bottom:884.877848pt;}
.y23b{bottom:885.195964pt;}
.y23e{bottom:885.196289pt;}
.y241{bottom:885.196370pt;}
.y244{bottom:887.422689pt;}
.y233{bottom:887.427361pt;}
.y141{bottom:888.841429pt;}
.y71{bottom:889.037637pt;}
.yb8{bottom:889.039204pt;}
.y43{bottom:889.040771pt;}
.y33a{bottom:889.443094pt;}
.y305{bottom:891.100016pt;}
.y419{bottom:892.877848pt;}
.y3a9{bottom:893.766683pt;}
.y418{bottom:904.877848pt;}
.ye5{bottom:905.766683pt;}
.y232{bottom:906.478027pt;}
.y140{bottom:907.709696pt;}
.y42{bottom:907.905903pt;}
.yb7{bottom:907.907471pt;}
.y339{bottom:908.311361pt;}
.y304{bottom:912.713848pt;}
.y417{bottom:916.877848pt;}
.y9{bottom:920.265218pt;}
.y1{bottom:920.666829pt;}
.y13f{bottom:926.577962pt;}
.y41{bottom:926.774170pt;}
.y338{bottom:927.177897pt;}
.ye4{bottom:927.377848pt;}
.y416{bottom:928.877848pt;}
.yb{bottom:988.708515pt;}
.yc{bottom:993.562663pt;}
.y6e{bottom:1001.355225pt;}
.y3f{bottom:1001.355306pt;}
.y70{bottom:1001.561768pt;}
.ya{bottom:1001.711182pt;}
.y6f{bottom:1002.044515pt;}
.y40{bottom:1002.048639pt;}
.h56{height:0.000000pt;}
.h33{height:1.706667pt;}
.h5e{height:7.949312pt;}
.h3b{height:10.168670pt;}
.h45{height:10.800000pt;}
.h5c{height:10.849619pt;}
.h5d{height:10.850270pt;}
.h55{height:11.199999pt;}
.h4b{height:12.400000pt;}
.h3e{height:12.798667pt;}
.h4e{height:14.133333pt;}
.h5a{height:14.933333pt;}
.h38{height:15.065333pt;}
.h57{height:15.600000pt;}
.h50{height:17.153424pt;}
.h7{height:18.014666pt;}
.h30{height:19.066667pt;}
.h58{height:21.920065pt;}
.h48{height:22.374031pt;}
.h3d{height:22.698293pt;}
.h34{height:23.022554pt;}
.h5b{height:23.167036pt;}
.h51{height:23.379241pt;}
.h12{height:24.724000pt;}
.h36{height:28.672000pt;}
.h3f{height:28.842667pt;}
.h32{height:29.013333pt;}
.h5f{height:29.141333pt;}
.h46{height:29.312000pt;}
.h47{height:29.482667pt;}
.h39{height:29.866667pt;}
.h3a{height:30.165333pt;}
.h31{height:30.293333pt;}
.h40{height:30.592000pt;}
.h4f{height:30.762667pt;}
.h54{height:32.657656pt;}
.h4{height:32.965333pt;}
.h49{height:35.013333pt;}
.h11{height:35.320000pt;}
.h79{height:35.541333pt;}
.h3{height:36.922667pt;}
.h27{height:37.674667pt;}
.h4a{height:37.973021pt;}
.h7b{height:38.080000pt;}
.h7a{height:38.120000pt;}
.h78{height:38.920000pt;}
.h6{height:40.618667pt;}
.h13{height:40.661333pt;}
.h26{height:41.514667pt;}
.h5{height:41.984000pt;}
.h4c{height:42.185923pt;}
.h37{height:42.193711pt;}
.h35{height:42.193874pt;}
.h75{height:42.197333pt;}
.h69{height:42.384000pt;}
.h42{height:42.650677pt;}
.h2f{height:43.454250pt;}
.h53{height:43.945924pt;}
.h41{height:43.946173pt;}
.h3c{height:44.307232pt;}
.hd{height:47.093333pt;}
.h25{height:47.472000pt;}
.h23{height:47.692799pt;}
.h22{height:47.741866pt;}
.h60{height:48.555733pt;}
.h61{height:48.562166pt;}
.h63{height:48.580364pt;}
.hf{height:49.653333pt;}
.h72{height:49.658952pt;}
.h14{height:49.659603pt;}
.h65{height:49.659685pt;}
.h59{height:49.659721pt;}
.h66{height:49.659724pt;}
.h20{height:49.659766pt;}
.h6a{height:49.659929pt;}
.h24{height:49.660295pt;}
.h2d{height:49.665710pt;}
.h1e{height:49.666036pt;}
.h6d{height:49.666117pt;}
.h10{height:49.666122pt;}
.h67{height:49.666158pt;}
.h15{height:49.666198pt;}
.h64{height:49.671450pt;}
.h71{height:49.671817pt;}
.h17{height:49.672468pt;}
.h18{height:49.672631pt;}
.h2b{height:49.672794pt;}
.h74{height:49.673119pt;}
.h2a{height:49.678901pt;}
.h19{height:49.678982pt;}
.h43{height:49.679064pt;}
.h2c{height:49.679715pt;}
.h29{height:49.685333pt;}
.h1d{height:49.691603pt;}
.h6e{height:49.691685pt;}
.h6f{height:49.691766pt;}
.h62{height:49.697873pt;}
.h70{height:49.698117pt;}
.h6b{height:49.698198pt;}
.h1b{height:49.704468pt;}
.h73{height:49.704631pt;}
.h68{height:49.711064pt;}
.h6c{height:49.717252pt;}
.h21{height:49.717333pt;}
.h1a{height:49.723603pt;}
.h77{height:49.723766pt;}
.h1c{height:49.730117pt;}
.h1f{height:49.730198pt;}
.h16{height:49.749171pt;}
.h76{height:49.768468pt;}
.h44{height:49.774901pt;}
.h4d{height:50.684886pt;}
.he{height:51.893333pt;}
.hc{height:54.329067pt;}
.h52{height:57.631278pt;}
.ha{height:59.728337pt;}
.hb{height:59.744337pt;}
.h8{height:63.111253pt;}
.h2{height:68.570667pt;}
.h28{height:85.674667pt;}
.h2e{height:89.514667pt;}
.h9{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.wa{width:63.440002pt;}
.w8{width:83.453333pt;}
.w7{width:84.279999pt;}
.w9{width:102.826670pt;}
.w2{width:140.126668pt;}
.w3{width:147.546672pt;}
.w4{width:181.000000pt;}
.wb{width:244.066671pt;}
.w6{width:252.253337pt;}
.w5{width:268.519999pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1b{left:-0.938660pt;}
.x0{left:0.000000pt;}
.x1d{left:8.769063pt;}
.x1f{left:20.793070pt;}
.x30{left:22.347331pt;}
.x43{left:24.866943pt;}
.xd{left:26.942810pt;}
.x4b{left:34.286133pt;}
.x40{left:37.923075pt;}
.x4c{left:41.486125pt;}
.x44{left:43.527608pt;}
.x32{left:48.579610pt;}
.x4f{left:56.065877pt;}
.x21{left:58.965454pt;}
.x41{left:59.871053pt;}
.x46{left:63.135335pt;}
.x34{left:64.203084pt;}
.x49{left:66.500651pt;}
.x4{left:75.496002pt;}
.x17{left:79.118530pt;}
.x47{left:80.199463pt;}
.xf{left:82.274658pt;}
.x3{left:83.317602pt;}
.x36{left:85.131185pt;}
.x18{left:90.374797pt;}
.x11{left:94.406413pt;}
.x38{left:103.395182pt;}
.x52{left:105.639486pt;}
.x23{left:112.437215pt;}
.x53{left:116.895060pt;}
.x25{left:122.577352pt;}
.x27{left:134.073201pt;}
.x13{left:141.722533pt;}
.x55{left:147.663330pt;}
.x8{left:156.850403pt;}
.x56{left:163.815470pt;}
.x63{left:164.850403pt;}
.x9{left:167.512803pt;}
.x1a{left:177.494548pt;}
.x3a{left:180.615072pt;}
.x5b{left:183.519468pt;}
.x60{left:201.061869pt;}
.x29{left:203.745076pt;}
.x5c{left:213.149190pt;}
.x58{left:217.683187pt;}
.x3c{left:230.835327pt;}
.x2{left:238.081075pt;}
.x5a{left:240.567057pt;}
.x6{left:246.777323pt;}
.x3e{left:247.755615pt;}
.x2d{left:263.997069pt;}
.x2b{left:266.817057pt;}
.x2e{left:290.298665pt;}
.x42{left:292.917725pt;}
.x50{left:294.429728pt;}
.x4a{left:295.376404pt;}
.xb{left:302.666667pt;}
.x1c{left:305.699870pt;}
.x2f{left:308.662130pt;}
.x1e{left:314.087870pt;}
.xc{left:318.329325pt;}
.x31{left:320.662130pt;}
.x20{left:327.239990pt;}
.x16{left:328.517069pt;}
.x48{left:330.015076pt;}
.x4d{left:336.140523pt;}
.x51{left:339.021871pt;}
.x4e{left:343.340535pt;}
.x33{left:346.582397pt;}
.xe{left:347.981323pt;}
.x45{left:350.638143pt;}
.x5d{left:361.424927pt;}
.x35{left:362.517863pt;}
.x37{left:383.001750pt;}
.x10{left:392.057454pt;}
.x39{left:401.710124pt;}
.x5e{left:406.523593pt;}
.x22{left:409.283610pt;}
.x12{left:415.433472pt;}
.x24{left:419.999715pt;}
.x54{left:421.857869pt;}
.x26{left:427.859619pt;}
.x19{left:433.745076pt;}
.x5f{left:438.779593pt;}
.x65{left:449.138401pt;}
.x14{left:450.213338pt;}
.x28{left:454.956014pt;}
.xa{left:462.749070pt;}
.x3f{left:464.991455pt;}
.x57{left:468.826131pt;}
.x3b{left:472.894002pt;}
.x15{left:494.288005pt;}
.x2a{left:509.063883pt;}
.x59{left:515.241740pt;}
.x61{left:533.789069pt;}
.x64{left:534.791732pt;}
.x3d{left:536.638143pt;}
.x5{left:577.985352pt;}
.x62{left:592.391736pt;}
.x1{left:617.715454pt;}
.x2c{left:658.727458pt;}
.x7{left:664.199341pt;}
}




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