
    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_8c2283f758415a69a8d97b4d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026000;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_09e95bb88a2baf9a11e7909b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.041000;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_e34ea608c64e9f04213b5964.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_61a9c245809d5be4722e5aec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.025000;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_f6755028a9cc86233d089610.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.041000;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_44643ff884bee696d85f385d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.041000;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_2bb39bd7a4039c26e75b8171.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.041000;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_8aee73d8dce6964dd0db7db4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.041000;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_919f322835779565c45b87a1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.041000;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_ab2a510c4f540cb5c2a9f0bb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.041000;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_1d74dcfdbab39180909814d6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.041000;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_246bf621675c55795ef0d939.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.041000;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_c53d1680bbff33ae9ec4af88.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.041000;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_cb675c44455e457f4f67228d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.041000;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_423e558b2c10fd2ea8ac8e27.woff2')format("woff");}.fff{font-family:fff;line-height:1.041000;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_e664ce22d0b8c1f0458f5172.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.041000;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_e52e59bb5ee73492833f9235.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.041000;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_0984ef109dbe720c62305ef1.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.041000;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_e8199e4e5be230165caff8be.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.041000;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_4556f9d656bb2ae5b7cad259.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.041000;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_02f75401026ca67e2e1916ab.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.041000;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_5b87cd571dbd0ca322dc2a61.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.041000;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_9ed1c726004532849a54fac9.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.041000;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_5ebe5b76d952d303bf504f30.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.041000;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_3074549f0a4d138a29feba8c.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.041000;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_5c13f629bbbe43e84b9f1e89.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.041000;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_2a4f6003095b7cd5eeada2b2.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.041000;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_ea04262fa24ecf4c2523121a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.041000;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_93be3e99038d353801cf7823.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.041000;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_f40c827d8d0dc1f86c41d385.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.041000;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_5c38e230e9c6f1133c54e8d6.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.041000;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;}
.m1f{transform:matrix(0.000000,-0.249975,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249975,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249975,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);}
.m1{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);}
.m23{transform:matrix(0.186647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186647,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.192501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192501,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.197987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197987,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.207392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207392,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.208836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208836,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.210507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210507,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.212498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212498,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.212498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212498,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.212501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212501,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.212501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212501,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.212502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212502,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.212503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212503,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.212503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212503,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.212504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212504,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.212505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212505,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.220001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220001,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.222890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222890,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.224997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224997,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.225001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225001,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.225002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225002,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.225003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225003,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.225004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225004,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.242499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242499,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247651,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247653,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.790996px;}
.ls19{letter-spacing:-2.241300px;}
.ls11{letter-spacing:-2.239140px;}
.ls21{letter-spacing:-2.237130px;}
.ls32{letter-spacing:-2.215710px;}
.ls18{letter-spacing:-0.949260px;}
.ls2a{letter-spacing:-0.949116px;}
.ls1e{letter-spacing:-0.948816px;}
.ls10{letter-spacing:-0.948348px;}
.ls22{letter-spacing:-0.947484px;}
.ls23{letter-spacing:-0.944910px;}
.ls1{letter-spacing:-0.944748px;}
.lse{letter-spacing:-0.943344px;}
.ls29{letter-spacing:-0.941868px;}
.ls4{letter-spacing:-0.940332px;}
.lsa{letter-spacing:-0.938760px;}
.ls33{letter-spacing:-0.938412px;}
.ls1d{letter-spacing:-0.935376px;}
.ls27{letter-spacing:-0.933540px;}
.ls2f{letter-spacing:-0.932856px;}
.ls2b{letter-spacing:-0.896388px;}
.ls20{letter-spacing:-0.896100px;}
.ls2{letter-spacing:-0.892272px;}
.lsf{letter-spacing:-0.890940px;}
.ls17{letter-spacing:-0.887400px;}
.ls25{letter-spacing:-0.885408px;}
.ls30{letter-spacing:-0.881028px;}
.ls2d{letter-spacing:-0.879624px;}
.ls12{letter-spacing:-0.874716px;}
.ls1b{letter-spacing:-0.874644px;}
.ls37{letter-spacing:-0.874008px;}
.ls34{letter-spacing:-0.756000px;}
.ls26{letter-spacing:-0.494796px;}
.ls7{letter-spacing:-0.493602px;}
.ls2e{letter-spacing:-0.491556px;}
.ls13{letter-spacing:-0.488820px;}
.ls1c{letter-spacing:-0.488778px;}
.ls36{letter-spacing:-0.488418px;}
.ls15{letter-spacing:-0.469800px;}
.ls9{letter-spacing:-0.469380px;}
.ls1f{letter-spacing:-0.448050px;}
.ls3{letter-spacing:-0.446136px;}
.ls5{letter-spacing:-0.444048px;}
.ls16{letter-spacing:-0.443700px;}
.lsb{letter-spacing:-0.443304px;}
.ls24{letter-spacing:-0.442530px;}
.ls14{letter-spacing:-0.442338px;}
.ls1a{letter-spacing:-0.442200px;}
.ls2c{letter-spacing:-0.442092px;}
.ls8{letter-spacing:-0.441636px;}
.ls35{letter-spacing:-0.441588px;}
.ls28{letter-spacing:-0.440838px;}
.lsd{letter-spacing:-0.440670px;}
.ls31{letter-spacing:-0.440514px;}
.lsc{letter-spacing:-0.391152px;}
.ls6{letter-spacing:-0.378000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws15{word-spacing:-20.352000px;}
.wsb{word-spacing:-16.536000px;}
.ws22{word-spacing:-13.797000px;}
.ws2b{word-spacing:-13.419000px;}
.ws19{word-spacing:-12.720000px;}
.ws0{word-spacing:-10.512000px;}
.ws4b{word-spacing:-9.720000px;}
.ws31{word-spacing:-0.057983px;}
.ws1{word-spacing:-0.057735px;}
.ws42{word-spacing:-0.047456px;}
.ws32{word-spacing:-0.047441px;}
.ws2{word-spacing:-0.047237px;}
.ws16{word-spacing:-0.047167px;}
.ws23{word-spacing:-0.046980px;}
.ws4c{word-spacing:-0.046643px;}
.ws3a{word-spacing:-0.036458px;}
.ws39{word-spacing:-0.036447px;}
.ws1c{word-spacing:-0.036428px;}
.ws46{word-spacing:-0.036407px;}
.wsd{word-spacing:-0.036290px;}
.ws47{word-spacing:-0.036220px;}
.ws1b{word-spacing:-0.036019px;}
.ws29{word-spacing:-0.036015px;}
.ws54{word-spacing:-0.035989px;}
.ws28{word-spacing:-0.033968px;}
.ws53{word-spacing:-0.033921px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:0.378000px;}
.ws13{word-spacing:0.391152px;}
.ws50{word-spacing:0.440514px;}
.ws14{word-spacing:0.440670px;}
.ws40{word-spacing:0.440838px;}
.ws56{word-spacing:0.441588px;}
.ws10{word-spacing:0.441636px;}
.ws48{word-spacing:0.442092px;}
.ws2e{word-spacing:0.442200px;}
.ws21{word-spacing:0.442338px;}
.ws3d{word-spacing:0.442530px;}
.ws12{word-spacing:0.443304px;}
.ws25{word-spacing:0.443700px;}
.wsa{word-spacing:0.444048px;}
.ws8{word-spacing:0.446136px;}
.ws35{word-spacing:0.448050px;}
.ws11{word-spacing:0.469380px;}
.ws57{word-spacing:0.488418px;}
.ws30{word-spacing:0.488778px;}
.ws20{word-spacing:0.488820px;}
.ws4a{word-spacing:0.491556px;}
.wsf{word-spacing:0.493602px;}
.ws3f{word-spacing:0.494796px;}
.ws55{word-spacing:0.756000px;}
.ws58{word-spacing:0.874008px;}
.ws2f{word-spacing:0.874644px;}
.ws1f{word-spacing:0.874716px;}
.ws49{word-spacing:0.879624px;}
.ws4f{word-spacing:0.881028px;}
.ws3e{word-spacing:0.885408px;}
.ws26{word-spacing:0.887400px;}
.ws18{word-spacing:0.890940px;}
.ws7{word-spacing:0.892272px;}
.ws36{word-spacing:0.896100px;}
.ws45{word-spacing:0.896388px;}
.ws52{word-spacing:0.938412px;}
.ws9{word-spacing:0.940332px;}
.ws44{word-spacing:0.941868px;}
.ws3c{word-spacing:0.944910px;}
.ws38{word-spacing:0.947484px;}
.ws1d{word-spacing:0.948348px;}
.ws2c{word-spacing:0.949260px;}
.ws51{word-spacing:2.215710px;}
.ws37{word-spacing:2.237130px;}
.ws1e{word-spacing:2.239140px;}
.ws2d{word-spacing:2.241300px;}
.ws24{word-spacing:139.530600px;}
.ws4d{word-spacing:142.726968px;}
.ws3{word-spacing:143.459984px;}
.ws33{word-spacing:143.793065px;}
.ws17{word-spacing:143.812793px;}
.ws3b{word-spacing:144.558669px;}
.ws41{word-spacing:145.283139px;}
.ws2a{word-spacing:145.404199px;}
.wsc{word-spacing:145.648614px;}
.ws4e{word-spacing:146.063828px;}
.ws27{word-spacing:146.470818px;}
.ws1a{word-spacing:147.183610px;}
.ws5{word-spacing:147.255991px;}
.ws34{word-spacing:147.475885px;}
.ws43{word-spacing:167.329151px;}
.ws4{word-spacing:1661.321237px;}
._25{margin-left:-301.581609px;}
._20{margin-left:-288.052947px;}
._19{margin-left:-285.168244px;}
._d{margin-left:-283.944011px;}
._15{margin-left:-282.238194px;}
._2c{margin-left:-279.390372px;}
._2a{margin-left:-13.797000px;}
._24{margin-left:-6.867000px;}
._13{margin-left:-5.841900px;}
._12{margin-left:-4.624200px;}
._3{margin-left:-2.822400px;}
._1{margin-left:-1.260000px;}
._0{width:1.728000px;}
._6{width:2.803500px;}
._4{width:4.372200px;}
._5{width:5.380200px;}
._7{width:6.457500px;}
._2{width:7.704900px;}
._8{width:9.188100px;}
._9{width:10.379700px;}
._14{width:11.392200px;}
._a{width:12.440700px;}
._b{width:15.088500px;}
._c{width:16.600500px;}
._22{width:18.906300px;}
._16{width:20.115900px;}
._1c{width:23.965200px;}
._2b{width:25.559100px;}
._29{width:27.134100px;}
._1f{width:140.517180px;}
._1e{width:141.785640px;}
._2e{width:143.003038px;}
._f{width:144.074070px;}
._10{width:145.255005px;}
._11{width:146.813839px;}
._1b{width:148.596563px;}
._28{width:163.864877px;}
._27{width:165.003817px;}
._1d{width:328.419534px;}
._2d{width:330.137738px;}
._18{width:333.603275px;}
._23{width:334.712788px;}
._e{width:336.235813px;}
._1a{width:339.461167px;}
._21{width:343.821972px;}
._26{width:374.568629px;}
._17{width:2526.888000px;}
.fc2{color:transparent;}
.fc1{color:rgb(175,47,95);}
.fc0{color:rgb(0,0,0);}
.fs5d{font-size:33.921000px;}
.fs2b{font-size:33.967800px;}
.fs61{font-size:35.989200px;}
.fs2e{font-size:36.015000px;}
.fs1c{font-size:36.018600px;}
.fs51{font-size:36.220200px;}
.fs15{font-size:36.290400px;}
.fsf{font-size:36.370800px;}
.fs4e{font-size:36.407400px;}
.fs20{font-size:36.427800px;}
.fs40{font-size:36.447000px;}
.fs42{font-size:36.458400px;}
.fs12{font-size:39.115200px;}
.fs5f{font-size:43.700400px;}
.fs60{font-size:43.701000px;}
.fs2f{font-size:43.732200px;}
.fs31{font-size:43.732800px;}
.fs1d{font-size:43.735800px;}
.fs1f{font-size:43.736400px;}
.fs50{font-size:43.981200px;}
.fs55{font-size:44.051400px;}
.fs13{font-size:44.067000px;}
.fs45{font-size:44.083800px;}
.fs5c{font-size:44.158800px;}
.fse{font-size:44.163600px;}
.fsd{font-size:44.164200px;}
.fs34{font-size:44.170800px;}
.fs32{font-size:44.171400px;}
.fs4d{font-size:44.209200px;}
.fs2c{font-size:44.220000px;}
.fs21{font-size:44.233800px;}
.fs3e{font-size:44.253000px;}
.fs43{font-size:44.270400px;}
.fs41{font-size:44.271000px;}
.fs57{font-size:44.314200px;}
.fs58{font-size:44.314800px;}
.fs11{font-size:44.330400px;}
.fs26{font-size:44.370000px;}
.fs9{font-size:44.404800px;}
.fs47{font-size:44.476800px;}
.fs18{font-size:44.547000px;}
.fs8{font-size:44.613600px;}
.fs39{font-size:44.742600px;}
.fs3a{font-size:44.743200px;}
.fs19{font-size:44.782800px;}
.fs38{font-size:44.805000px;}
.fs4c{font-size:44.819400px;}
.fs29{font-size:44.826000px;}
.fs27{font-size:44.826600px;}
.fs54{font-size:46.642800px;}
.fs46{font-size:46.677000px;}
.fs33{font-size:46.768800px;}
.fs35{font-size:46.769400px;}
.fs59{font-size:46.920600px;}
.fs10{font-size:46.938000px;}
.fs25{font-size:46.980000px;}
.fsa{font-size:47.016600px;}
.fs23{font-size:47.044800px;}
.fs48{font-size:47.093400px;}
.fs17{font-size:47.167200px;}
.fs7{font-size:47.237400px;}
.fs3b{font-size:47.374200px;}
.fs1a{font-size:47.417400px;}
.fs37{font-size:47.440800px;}
.fs4b{font-size:47.455800px;}
.fs28{font-size:47.463000px;}
.fs5{font-size:48.000000px;}
.fs5e{font-size:48.841800px;}
.fs30{font-size:48.877800px;}
.fs1e{font-size:48.882000px;}
.fs52{font-size:49.155600px;}
.fs14{font-size:49.251600px;}
.fs5b{font-size:49.354200px;}
.fsc{font-size:49.360200px;}
.fs4f{font-size:49.410600px;}
.fs2d{font-size:49.422000px;}
.fs22{font-size:49.437600px;}
.fs3f{font-size:49.459200px;}
.fs44{font-size:49.479600px;}
.fs56{font-size:49.528200px;}
.fsb{font-size:49.629000px;}
.fs49{font-size:49.709400px;}
.fs3c{font-size:50.007000px;}
.fs1b{font-size:50.051400px;}
.fs2a{font-size:50.100600px;}
.fs4{font-size:54.000000px;}
.fs53{font-size:57.007800px;}
.fs24{font-size:57.419400px;}
.fs16{font-size:57.649200px;}
.fs6{font-size:57.735000px;}
.fs36{font-size:57.983400px;}
.fs4a{font-size:58.001400px;}
.fs0{font-size:60.000000px;}
.fs5a{font-size:62.370000px;}
.fs3d{font-size:62.994000px;}
.fs2{font-size:63.000000px;}
.fs3{font-size:78.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y22f{bottom:2.730366px;}
.y22d{bottom:2.885250px;}
.y230{bottom:3.377236px;}
.y22e{bottom:3.532120px;}
.y207{bottom:5.041200px;}
.y206{bottom:15.891785px;}
.y22a{bottom:24.859014px;}
.y205{bottom:37.346149px;}
.y1{bottom:37.647600px;}
.y229{bottom:45.945568px;}
.y22c{bottom:48.137550px;}
.y15a{bottom:54.691500px;}
.y4c{bottom:55.111500px;}
.y233{bottom:55.275000px;}
.y27a{bottom:55.927500px;}
.y23d{bottom:58.006352px;}
.y81{bottom:58.132500px;}
.y23b{bottom:58.161300px;}
.y23e{bottom:58.653488px;}
.y204{bottom:58.800514px;}
.y23c{bottom:58.808437px;}
.y313{bottom:58.842000px;}
.y301{bottom:59.182050px;}
.y20c{bottom:59.527650px;}
.y164{bottom:59.690700px;}
.y1ea{bottom:59.740200px;}
.y4b{bottom:60.114750px;}
.y159{bottom:60.590550px;}
.y2c8{bottom:60.642000px;}
.y30{bottom:60.760650px;}
.y8d{bottom:60.856877px;}
.y286{bottom:60.939750px;}
.y351{bottom:61.000500px;}
.y8b{bottom:61.011450px;}
.y102{bottom:61.021500px;}
.y8e{bottom:61.502448px;}
.y8c{bottom:61.657021px;}
.y77{bottom:61.899900px;}
.y2ad{bottom:62.080950px;}
.y1b6{bottom:62.481000px;}
.ybe{bottom:62.503950px;}
.ye1{bottom:62.573700px;}
.y278{bottom:63.141750px;}
.y2c4{bottom:63.355464px;}
.y2c2{bottom:63.509400px;}
.y35d{bottom:63.542006px;}
.y35b{bottom:63.694650px;}
.yfe{bottom:63.718800px;}
.y325{bottom:63.835950px;}
.y2c5{bottom:63.998373px;}
.y2c3{bottom:64.152309px;}
.y35e{bottom:64.194985px;}
.y35c{bottom:64.347629px;}
.y195{bottom:66.265200px;}
.y228{bottom:67.032123px;}
.y1bd{bottom:67.458150px;}
.y163{bottom:68.728575px;}
.y4a{bottom:70.096571px;}
.y285{bottom:71.766370px;}
.y302{bottom:74.622000px;}
.y324{bottom:75.151617px;}
.y1bc{bottom:78.895866px;}
.y23a{bottom:78.945956px;}
.y203{bottom:80.254878px;}
.y89{bottom:82.581262px;}
.y76{bottom:82.894650px;}
.y2d3{bottom:84.553944px;}
.y10b{bottom:84.717818px;}
.y366{bottom:85.162177px;}
.y194{bottom:87.259950px;}
.y227{bottom:88.118677px;}
.y165{bottom:92.413650px;}
.y284{bottom:93.092995px;}
.y49{bottom:94.385996px;}
.y323{bottom:96.400564px;}
.y162{bottom:97.180838px;}
.y202{bottom:101.709242px;}
.y75{bottom:103.889400px;}
.y365{bottom:106.203845px;}
.y241{bottom:106.624650px;}
.y328{bottom:107.024100px;}
.y239{bottom:107.334735px;}
.y193{bottom:108.254700px;}
.y226{bottom:109.205232px;}
.y168{bottom:109.966305px;}
.y361{bottom:110.729100px;}
.y1be{bottom:111.453150px;}
.y1bb{bottom:112.024416px;}
.y2d2{bottom:112.756888px;}
.y10a{bottom:112.763784px;}
.y1fd{bottom:114.179100px;}
.y283{bottom:114.419621px;}
.y101{bottom:114.808050px;}
.y88{bottom:116.355834px;}
.y322{bottom:117.649510px;}
.y16a{bottom:117.764333px;}
.y48{bottom:118.675422px;}
.y201{bottom:123.163607px;}
.y74{bottom:124.884150px;}
.y161{bottom:125.633100px;}
.y2c1{bottom:126.088500px;}
.y364{bottom:127.245514px;}
.y192{bottom:129.249450px;}
.y225{bottom:130.291786px;}
.y8a{bottom:131.303700px;}
.y238{bottom:135.723514px;}
.y282{bottom:135.746246px;}
.y321{bottom:138.898457px;}
.y109{bottom:140.809751px;}
.y360{bottom:140.888315px;}
.y2d1{bottom:140.959833px;}
.y47{bottom:142.964848px;}
.y200{bottom:144.617971px;}
.y1ba{bottom:145.804494px;}
.y73{bottom:145.878900px;}
.y363{bottom:148.287182px;}
.y209{bottom:148.523343px;}
.y327{bottom:150.128381px;}
.y87{bottom:150.130406px;}
.y191{bottom:150.244200px;}
.y224{bottom:151.378341px;}
.y35f{bottom:153.230700px;}
.y160{bottom:154.085363px;}
.y232{bottom:156.099137px;}
.y281{bottom:157.072872px;}
.y320{bottom:160.147403px;}
.y208{bottom:161.028900px;}
.y326{bottom:162.514200px;}
.y237{bottom:164.112292px;}
.y169{bottom:165.484267px;}
.y1ff{bottom:166.072336px;}
.y72{bottom:166.873650px;}
.y46{bottom:167.254273px;}
.y231{bottom:168.467850px;}
.y108{bottom:168.855717px;}
.y2d0{bottom:169.162778px;}
.y362{bottom:169.328850px;}
.y190{bottom:171.238950px;}
.y223{bottom:172.464895px;}
.y280{bottom:178.399498px;}
.y1b9{bottom:179.584572px;}
.y166{bottom:179.789273px;}
.y31f{bottom:181.396350px;}
.y15f{bottom:182.537625px;}
.y86{bottom:183.904978px;}
.y1b7{bottom:184.663500px;}
.yd3{bottom:185.488500px;}
.y34{bottom:185.764050px;}
.y35a{bottom:185.837345px;}
.y1ee{bottom:186.562650px;}
.y1fe{bottom:187.526700px;}
.yef{bottom:187.742850px;}
.y71{bottom:187.868400px;}
.y167{bottom:191.318700px;}
.y45{bottom:191.543699px;}
.y105{bottom:191.972250px;}
.y236{bottom:192.501071px;}
.y84{bottom:193.321800px;}
.y123{bottom:193.417350px;}
.y222{bottom:193.551450px;}
.y234{bottom:194.003700px;}
.y107{bottom:196.901683px;}
.y31c{bottom:197.037664px;}
.y2cf{bottom:197.365722px;}
.y4f{bottom:197.597400px;}
.y305{bottom:198.812400px;}
.y27f{bottom:199.726123px;}
.y15c{bottom:200.201700px;}
.yd2{bottom:201.001500px;}
.y33{bottom:201.282150px;}
.y1ed{bottom:202.165500px;}
.y4e{bottom:202.285200px;}
.y18f{bottom:202.868850px;}
.y24d{bottom:203.174700px;}
.y20b{bottom:203.223900px;}
.yfd{bottom:203.453880px;}
.y1bf{bottom:203.540550px;}
.y17c{bottom:203.604270px;}
.y90{bottom:204.960600px;}
.y359{bottom:206.879014px;}
.y1ae{bottom:207.211560px;}
.y104{bottom:207.597000px;}
.y122{bottom:207.771000px;}
.y19e{bottom:207.952500px;}
.y70{bottom:208.863150px;}
.y356{bottom:209.003550px;}
.y22b{bottom:209.915550px;}
.y243{bottom:210.135420px;}
.y83{bottom:210.285990px;}
.y15e{bottom:210.989888px;}
.y355{bottom:211.105500px;}
.ya5{bottom:211.754220px;}
.y304{bottom:212.805150px;}
.y1b8{bottom:213.364650px;}
.y15b{bottom:214.295550px;}
.yd1{bottom:215.151750px;}
.y32{bottom:215.453400px;}
.y44{bottom:215.833124px;}
.y240{bottom:216.034873px;}
.y1ec{bottom:216.397650px;}
.y4d{bottom:217.173900px;}
.y85{bottom:217.679550px;}
.y20a{bottom:218.226000px;}
.y31b{bottom:218.286610px;}
.yfc{bottom:218.469300px;}
.y17b{bottom:218.634450px;}
.y100{bottom:219.839194px;}
.y235{bottom:220.889850px;}
.y27e{bottom:221.052749px;}
.y1ad{bottom:221.874900px;}
.y103{bottom:222.261600px;}
.y106{bottom:224.947650px;}
.y242{bottom:224.979300px;}
.y82{bottom:225.094050px;}
.y2ce{bottom:225.568667px;}
.ya4{bottom:226.529700px;}
.y358{bottom:227.920682px;}
.y352{bottom:228.267150px;}
.y23f{bottom:228.408450px;}
.y27b{bottom:229.105050px;}
.yff{bottom:232.063350px;}
.y288{bottom:237.581684px;}
.y15d{bottom:239.442150px;}
.y31a{bottom:239.535557px;}
.y43{bottom:240.122550px;}
.y19d{bottom:240.240000px;}
.y6f{bottom:240.493050px;}
.y354{bottom:241.563515px;}
.y27d{bottom:242.379374px;}
.y198{bottom:242.784595px;}
.y196{bottom:242.937450px;}
.y199{bottom:243.438475px;}
.y197{bottom:243.591330px;}
.y317{bottom:244.440300px;}
.y28a{bottom:245.232180px;}
.y357{bottom:248.962350px;}
.y287{bottom:250.012950px;}
.y369{bottom:250.833660px;}
.y2cd{bottom:253.771611px;}
.y353{bottom:253.905900px;}
.y13c{bottom:254.998500px;}
.y5{bottom:256.433250px;}
.y296{bottom:257.718900px;}
.y289{bottom:260.145000px;}
.y315{bottom:260.255940px;}
.y319{bottom:260.784503px;}
.y27c{bottom:263.706000px;}
.y181{bottom:263.901150px;}
.y1a7{bottom:264.755010px;}
.y368{bottom:265.486200px;}
.y21f{bottom:266.262900px;}
.y54{bottom:268.587450px;}
.ye6{bottom:269.111400px;}
.y2b9{bottom:271.398600px;}
.y31e{bottom:272.013731px;}
.y316{bottom:272.452650px;}
.y28d{bottom:273.192900px;}
.y4{bottom:273.679500px;}
.y314{bottom:275.114400px;}
.y2c7{bottom:276.480955px;}
.y180{bottom:281.147400px;}
.y2cc{bottom:281.974556px;}
.y318{bottom:282.033450px;}
.y7f{bottom:282.450300px;}
.y13b{bottom:283.274400px;}
.y21e{bottom:283.509150px;}
.y31d{bottom:284.399550px;}
.y334{bottom:285.825300px;}
.y1a6{bottom:285.825840px;}
.y53{bottom:285.833700px;}
.ye5{bottom:286.357650px;}
.y28c{bottom:287.429700px;}
.y19c{bottom:288.670200px;}
.y2c6{bottom:288.773700px;}
.y2be{bottom:290.610000px;}
.y256{bottom:302.594850px;}
.y1a{bottom:304.085100px;}
.y13a{bottom:304.269150px;}
.y1a5{bottom:306.896670px;}
.y2ca{bottom:308.654370px;}
.y2cb{bottom:310.177500px;}
.y21d{bottom:312.237150px;}
.y7e{bottom:314.361900px;}
.y1da{bottom:315.414450px;}
.y11c{bottom:315.964650px;}
.y341{bottom:316.485300px;}
.y300{bottom:318.652500px;}
.ycf{bottom:319.820100px;}
.y255{bottom:319.841100px;}
.y2c9{bottom:323.401050px;}
.y2d5{bottom:324.163522px;}
.y19{bottom:325.079850px;}
.y139{bottom:325.263900px;}
.y1a4{bottom:327.967500px;}
.y21c{bottom:333.231900px;}
.y7d{bottom:335.356650px;}
.y2ff{bottom:335.898750px;}
.y1d9{bottom:336.409200px;}
.y11b{bottom:336.959400px;}
.y340{bottom:337.480050px;}
.yce{bottom:340.814850px;}
.y18{bottom:346.074600px;}
.y138{bottom:346.258650px;}
.y277{bottom:348.661050px;}
.y1a3{bottom:349.038330px;}
.y2d4{bottom:352.366466px;}
.y21b{bottom:354.226650px;}
.y7c{bottom:356.351400px;}
.y1d8{bottom:357.403950px;}
.y11a{bottom:357.954150px;}
.y33f{bottom:358.474800px;}
.ycd{bottom:361.809600px;}
.y17{bottom:367.069350px;}
.y137{bottom:367.253400px;}
.y29f{bottom:368.497050px;}
.y333{bottom:368.571900px;}
.y276{bottom:369.655800px;}
.y1a2{bottom:370.109160px;}
.y121{bottom:374.097000px;}
.y21a{bottom:375.221400px;}
.y11d{bottom:376.825350px;}
.y7b{bottom:377.346150px;}
.y1d7{bottom:378.398700px;}
.y119{bottom:378.948900px;}
.y33e{bottom:379.469550px;}
.ycc{bottom:382.804350px;}
.y29e{bottom:385.743300px;}
.y16{bottom:388.064100px;}
.y136{bottom:388.248150px;}
.y332{bottom:389.566650px;}
.y275{bottom:390.650550px;}
.y1a1{bottom:391.179990px;}
.y19b{bottom:395.087910px;}
.y7a{bottom:398.340900px;}
.y12b{bottom:398.895110px;}
.y1d6{bottom:399.393450px;}
.y118{bottom:399.943650px;}
.y33d{bottom:400.464300px;}
.ycb{bottom:403.799100px;}
.y219{bottom:406.851450px;}
.y19a{bottom:407.447400px;}
.y15{bottom:409.058850px;}
.y135{bottom:409.242900px;}
.y331{bottom:410.561400px;}
.y274{bottom:411.645300px;}
.y1a0{bottom:412.250820px;}
.y2ab{bottom:413.408250px;}
.y28b{bottom:417.756000px;}
.y79{bottom:419.335650px;}
.y12a{bottom:419.972516px;}
.y1d5{bottom:420.388200px;}
.y117{bottom:420.938400px;}
.y33c{bottom:421.459050px;}
.y120{bottom:422.322150px;}
.y298{bottom:422.805450px;}
.yca{bottom:424.793850px;}
.y14{bottom:430.053600px;}
.y330{bottom:431.556150px;}
.y273{bottom:432.640050px;}
.y295{bottom:433.057933px;}
.y19f{bottom:433.321650px;}
.y2aa{bottom:434.403000px;}
.y134{bottom:440.872800px;}
.y129{bottom:441.049921px;}
.y1d4{bottom:441.382950px;}
.y116{bottom:441.933150px;}
.y33b{bottom:442.453800px;}
.yc9{bottom:445.788600px;}
.y221{bottom:446.251500px;}
.y17d{bottom:448.239150px;}
.y299{bottom:450.162750px;}
.y78{bottom:450.965550px;}
.y13{bottom:451.048350px;}
.y32f{bottom:452.550900px;}
.y272{bottom:453.634800px;}
.y2a9{bottom:455.397750px;}
.y29c{bottom:456.878028px;}
.y294{bottom:461.529457px;}
.y128{bottom:462.127327px;}
.y1d3{bottom:462.377700px;}
.y115{bottom:462.927900px;}
.y33a{bottom:463.448550px;}
.yc8{bottom:466.783350px;}
.y12{bottom:472.043100px;}
.y32e{bottom:473.545650px;}
.y2a8{bottom:476.392500px;}
.y18e{bottom:477.648900px;}
.y127{bottom:483.204733px;}
.y1d2{bottom:483.372450px;}
.y31{bottom:483.520500px;}
.y114{bottom:483.922650px;}
.y339{bottom:484.443300px;}
.y271{bottom:485.264700px;}
.yc7{bottom:487.778100px;}
.ya3{bottom:488.362500px;}
.y3a{bottom:488.546850px;}
.y293{bottom:490.000981px;}
.ya9{bottom:491.080016px;}
.ya7{bottom:491.234250px;}
.y133{bottom:491.408250px;}
.yaa{bottom:491.724170px;}
.y29b{bottom:491.814750px;}
.ya8{bottom:491.878405px;}
.y11{bottom:493.037850px;}
.y32d{bottom:494.540400px;}
.y2a7{bottom:497.387250px;}
.y18d{bottom:498.643650px;}
.y39{bottom:498.693448px;}
.y126{bottom:504.282139px;}
.y1d1{bottom:504.367200px;}
.y338{bottom:505.438050px;}
.yc6{bottom:508.772850px;}
.y132{bottom:512.403000px;}
.ya2{bottom:512.528659px;}
.y32c{bottom:515.535150px;}
.y113{bottom:515.552550px;}
.y41{bottom:518.208183px;}
.y2a6{bottom:518.382000px;}
.y292{bottom:518.472505px;}
.y18c{bottom:519.638400px;}
.y10{bottom:524.667750px;}
.y2ee{bottom:525.119250px;}
.y125{bottom:525.359544px;}
.y1d0{bottom:525.361950px;}
.y2b8{bottom:528.157500px;}
.y11f{bottom:529.860403px;}
.y2bc{bottom:530.885250px;}
.y38{bottom:532.811698px;}
.y131{bottom:533.397750px;}
.ya6{bottom:533.434200px;}
.y270{bottom:535.784400px;}
.y32b{bottom:536.529900px;}
.y29a{bottom:536.652987px;}
.y337{bottom:537.067950px;}
.y3d{bottom:538.110163px;}
.y2a5{bottom:539.376750px;}
.yc5{bottom:540.402900px;}
.y18b{bottom:540.633150px;}
.y11e{bottom:542.223750px;}
.y2ed{bottom:546.114000px;}
.ya1{bottom:546.228897px;}
.y1cf{bottom:546.356700px;}
.y124{bottom:546.436950px;}
.y291{bottom:546.944028px;}
.y2b7{bottom:553.233472px;}
.y24c{bottom:553.482000px;}
.y130{bottom:554.392500px;}
.y26f{bottom:556.779150px;}
.y32a{bottom:557.524650px;}
.y24a{bottom:558.449850px;}
.y3f{bottom:560.171588px;}
.yed{bottom:560.201700px;}
.y2a4{bottom:560.371500px;}
.y18a{bottom:561.627900px;}
.yd0{bottom:563.797500px;}
.y37{bottom:566.929949px;}
.y2ec{bottom:567.108750px;}
.y1ce{bottom:567.351450px;}
.yda{bottom:568.816950px;}
.y249{bottom:569.901656px;}
.y8f{bottom:571.537500px;}
.y3c{bottom:574.024111px;}
.y2b6{bottom:574.365469px;}
.yf{bottom:575.213250px;}
.y12f{bottom:575.387250px;}
.y290{bottom:575.415552px;}
.y98{bottom:576.532500px;}
.y2bd{bottom:577.274100px;}
.y42{bottom:577.767339px;}
.y26e{bottom:577.773900px;}
.yd9{bottom:577.891481px;}
.ya0{bottom:579.929135px;}
.y350{bottom:581.326050px;}
.y2a3{bottom:581.366250px;}
.y189{bottom:582.622650px;}
.ye4{bottom:583.465650px;}
.y3e{bottom:584.173705px;}
.y97{bottom:587.265460px;}
.y2eb{bottom:588.103500px;}
.y1cd{bottom:588.346200px;}
.y367{bottom:589.111500px;}
.y329{bottom:589.154550px;}
.yc4{bottom:590.927850px;}
.y371{bottom:591.806550px;}
.y40{bottom:593.549400px;}
.y2b5{bottom:595.497467px;}
.ye{bottom:596.208000px;}
.y12e{bottom:596.382000px;}
.y34f{bottom:596.766000px;}
.ydb{bottom:596.939100px;}
.y99{bottom:596.964750px;}
.y26d{bottom:598.768650px;}
.y3b{bottom:598.918500px;}
.y36{bottom:601.048199px;}
.y2a2{bottom:602.361000px;}
.y248{bottom:602.964506px;}
.y188{bottom:603.617400px;}
.y28f{bottom:603.887076px;}
.y24b{bottom:605.764950px;}
.yd8{bottom:606.457245px;}
.y157{bottom:607.357500px;}
.y2ea{bottom:609.098250px;}
.y1cc{bottom:609.340950px;}
.y112{bottom:611.787000px;}
.yc3{bottom:611.922600px;}
.y379{bottom:613.340859px;}
.y9f{bottom:613.629374px;}
.yde{bottom:615.538426px;}
.y96{bottom:615.625833px;}
.y2b4{bottom:616.629464px;}
.yd{bottom:617.202750px;}
.y12d{bottom:617.376750px;}
.y2a1{bottom:623.355750px;}
.y156{bottom:628.352250px;}
.ydc{bottom:628.411555px;}
.y303{bottom:629.377500px;}
.y2e9{bottom:630.093000px;}
.y1cb{bottom:630.335700px;}
.y26c{bottom:630.398550px;}
.y28e{bottom:632.358600px;}
.y111{bottom:632.781750px;}
.yc2{bottom:632.917350px;}
.y30d{bottom:634.340100px;}
.yd7{bottom:635.023009px;}
.y35{bottom:635.166450px;}
.y187{bottom:635.247300px;}
.y247{bottom:636.677592px;}
.y1fc{bottom:637.552500px;}
.y2b3{bottom:637.761462px;}
.y374{bottom:638.142600px;}
.yc{bottom:638.197500px;}
.y1eb{bottom:638.757000px;}
.y378{bottom:641.101919px;}
.y30c{bottom:643.314688px;}
.y1f5{bottom:643.804500px;}
.y95{bottom:643.986206px;}
.ydd{bottom:645.061950px;}
.y297{bottom:646.734450px;}
.y9e{bottom:647.329612px;}
.y12c{bottom:649.006650px;}
.y155{bottom:649.347000px;}
.ye0{bottom:651.118779px;}
.y1ca{bottom:651.330450px;}
.y1f4{bottom:652.932169px;}
.y110{bottom:653.776500px;}
.yc1{bottom:653.912100px;}
.y2a0{bottom:654.985650px;}
.y20d{bottom:655.108800px;}
.y2b2{bottom:658.893460px;}
.yb{bottom:659.192250px;}
.y2e8{bottom:661.723050px;}
.yd6{bottom:663.588773px;}
.y377{bottom:668.862979px;}
.y154{bottom:670.341750px;}
.y246{bottom:670.390678px;}
.y1fa{bottom:670.989214px;}
.y30b{bottom:671.562649px;}
.y1c9{bottom:672.325200px;}
.y94{bottom:672.346580px;}
.y10f{bottom:674.771250px;}
.yc0{bottom:674.906850px;}
.ydf{bottom:675.307800px;}
.y279{bottom:676.701750px;}
.y17a{bottom:676.854000px;}
.y1fb{bottom:680.006220px;}
.y2b1{bottom:680.025457px;}
.ya{bottom:680.187000px;}
.y9d{bottom:681.029850px;}
.y1f3{bottom:681.663375px;}
.y176{bottom:681.903900px;}
.y3{bottom:684.801750px;}
.y217{bottom:686.127900px;}
.y257{bottom:688.699350px;}
.y153{bottom:691.336500px;}
.yd5{bottom:692.154536px;}
.y175{bottom:692.776712px;}
.y1c8{bottom:693.319950px;}
.y310{bottom:693.411793px;}
.y158{bottom:695.496900px;}
.y373{bottom:695.697088px;}
.y10e{bottom:695.766000px;}
.y376{bottom:696.624040px;}
.y1f6{bottom:697.081200px;}
.y52{bottom:698.121450px;}
.y30f{bottom:698.587833px;}
.y2ac{bottom:699.448950px;}
.y30a{bottom:699.810609px;}
.y93{bottom:700.706953px;}
.y2b0{bottom:701.157455px;}
.y9{bottom:701.181750px;}
.y245{bottom:704.103764px;}
.ybf{bottom:706.536750px;}
.y216{bottom:707.122650px;}
.y372{bottom:707.911350px;}
.y1f2{bottom:710.394581px;}
.y2c0{bottom:711.828979px;}
.y152{bottom:712.331250px;}
.y2e7{bottom:712.337100px;}
.y2e{bottom:713.302800px;}
.y26b{bottom:714.119250px;}
.y174{bottom:714.271067px;}
.y1c7{bottom:714.314700px;}
.y51{bottom:715.367700px;}
.y9c{bottom:716.698680px;}
.y10d{bottom:716.760750px;}
.y1f8{bottom:717.015150px;}
.yd4{bottom:720.720300px;}
.y8{bottom:722.176500px;}
.y2af{bottom:722.289452px;}
.y2bf{bottom:724.185450px;}
.y375{bottom:724.385100px;}
.y309{bottom:728.058569px;}
.y215{bottom:728.117400px;}
.y9b{bottom:728.433240px;}
.y92{bottom:729.067327px;}
.y151{bottom:733.326000px;}
.y2e6{bottom:733.331850px;}
.y2d{bottom:734.297550px;}
.y26a{bottom:735.114000px;}
.y1c6{bottom:735.309450px;}
.y173{bottom:735.765422px;}
.y244{bottom:737.816850px;}
.y1f1{bottom:739.125788px;}
.y9a{bottom:740.167800px;}
.y30e{bottom:740.425650px;}
.y370{bottom:740.567219px;}
.y7{bottom:743.171250px;}
.y2ae{bottom:743.421450px;}
.y5f{bottom:744.340950px;}
.y10c{bottom:748.390800px;}
.y214{bottom:749.112150px;}
.y218{bottom:751.842300px;}
.y150{bottom:754.320750px;}
.y2e5{bottom:754.326600px;}
.y2c{bottom:755.292300px;}
.y269{bottom:756.108750px;}
.y1c5{bottom:756.304200px;}
.y308{bottom:756.306529px;}
.y172{bottom:757.259777px;}
.y36c{bottom:757.370250px;}
.y91{bottom:757.427700px;}
.y2bb{bottom:757.955171px;}
.y6{bottom:764.166000px;}
.yab{bottom:765.234750px;}
.y5e{bottom:765.335700px;}
.y1f0{bottom:767.856994px;}
.y36f{bottom:768.328280px;}
.y213{bottom:770.106900px;}
.y56{bottom:773.516700px;}
.y177{bottom:774.307500px;}
.y1f7{bottom:774.627454px;}
.y14f{bottom:775.315500px;}
.y2e4{bottom:775.321350px;}
.y2b{bottom:776.287050px;}
.y268{bottom:777.103500px;}
.y171{bottom:778.754131px;}
.y2ba{bottom:778.755600px;}
.y312{bottom:782.171730px;}
.yee{bottom:782.388000px;}
.y254{bottom:782.868450px;}
.y307{bottom:784.554490px;}
.y5d{bottom:786.330450px;}
.yf8{bottom:787.434750px;}
.y1c4{bottom:787.934100px;}
.y55{bottom:790.762950px;}
.y212{bottom:791.101650px;}
.y36b{bottom:793.796188px;}
.y311{bottom:795.387150px;}
.y36e{bottom:796.089340px;}
.ybd{bottom:796.309500px;}
.y14e{bottom:796.310250px;}
.y2e3{bottom:796.316100px;}
.y1ef{bottom:796.588200px;}
.y1f9{bottom:796.947270px;}
.y2a{bottom:797.281800px;}
.y267{bottom:798.098250px;}
.yf7{bottom:798.343982px;}
.y170{bottom:800.248486px;}
.y2f{bottom:803.619300px;}
.y253{bottom:803.863200px;}
.y36a{bottom:806.010450px;}
.y5c{bottom:807.325200px;}
.y211{bottom:812.096400px;}
.y306{bottom:812.802450px;}
.yf9{bottom:813.718800px;}
.y29d{bottom:814.316550px;}
.ybc{bottom:817.304250px;}
.y14d{bottom:817.305000px;}
.y2e2{bottom:817.310850px;}
.y29{bottom:818.276550px;}
.y266{bottom:819.093000px;}
.y6e{bottom:819.129750px;}
.yf6{bottom:819.817334px;}
.y16f{bottom:821.742841px;}
.y36d{bottom:823.850400px;}
.y252{bottom:824.857950px;}
.y179{bottom:825.655083px;}
.y2fe{bottom:827.424750px;}
.y5b{bottom:828.319950px;}
.y1ac{bottom:831.700500px;}
.y210{bottom:833.091150px;}
.y1a8{bottom:834.399150px;}
.y178{bottom:838.183950px;}
.ybb{bottom:838.299000px;}
.y14c{bottom:838.299750px;}
.y2e1{bottom:838.305600px;}
.y336{bottom:839.479950px;}
.y6d{bottom:840.124500px;}
.yf5{bottom:841.290687px;}
.y1db{bottom:841.770150px;}
.y1dd{bottom:841.959150px;}
.y16e{bottom:843.237195px;}
.y251{bottom:845.852700px;}
.y5a{bottom:849.314700px;}
.y28{bottom:849.906450px;}
.y265{bottom:850.722900px;}
.y20f{bottom:854.085900px;}
.y1b5{bottom:855.330702px;}
.y335{bottom:856.557450px;}
.y1dc{bottom:859.205400px;}
.yba{bottom:859.293750px;}
.y14b{bottom:859.294500px;}
.y2e0{bottom:859.300350px;}
.y2fd{bottom:859.334250px;}
.y6c{bottom:861.119250px;}
.yf4{bottom:862.764040px;}
.y16d{bottom:864.731550px;}
.y250{bottom:866.847450px;}
.y59{bottom:870.309450px;}
.yb9{bottom:880.288500px;}
.y14a{bottom:880.289250px;}
.y2df{bottom:880.295100px;}
.y2fc{bottom:880.329000px;}
.y16c{bottom:881.216700px;}
.y6b{bottom:882.114000px;}
.y1b4{bottom:883.374360px;}
.yf3{bottom:884.237392px;}
.y20e{bottom:885.715800px;}
.y1ab{bottom:886.385250px;}
.y34e{bottom:886.779150px;}
.y24f{bottom:887.842200px;}
.y1e3{bottom:889.671600px;}
.y58{bottom:891.304200px;}
.y16b{bottom:898.462950px;}
.y27{bottom:900.462900px;}
.yb8{bottom:901.283250px;}
.y149{bottom:901.284000px;}
.y2de{bottom:901.289850px;}
.y264{bottom:901.292850px;}
.y2fb{bottom:901.323750px;}
.y6a{bottom:903.108750px;}
.yf2{bottom:905.710745px;}
.y34d{bottom:907.773900px;}
.y24e{bottom:908.836950px;}
.y1e2{bottom:910.666350px;}
.y1b3{bottom:911.418018px;}
.y26{bottom:921.457650px;}
.yb7{bottom:922.278000px;}
.y148{bottom:922.278750px;}
.y2dd{bottom:922.284600px;}
.y263{bottom:922.287600px;}
.y2fa{bottom:922.318500px;}
.y57{bottom:922.934100px;}
.y69{bottom:924.103500px;}
.yf1{bottom:927.184097px;}
.y34c{bottom:928.768650px;}
.y220{bottom:929.055150px;}
.y186{bottom:929.831700px;}
.yfb{bottom:931.046357px;}
.y1e1{bottom:931.661100px;}
.y1b2{bottom:939.461676px;}
.y25{bottom:942.452400px;}
.yb6{bottom:943.272750px;}
.y147{bottom:943.273500px;}
.y2dc{bottom:943.279350px;}
.y262{bottom:943.282350px;}
.y2f9{bottom:943.313250px;}
.yfa{bottom:943.563150px;}
.y68{bottom:945.098250px;}
.yf0{bottom:948.657450px;}
.y34b{bottom:949.763400px;}
.y185{bottom:950.826450px;}
.y1e0{bottom:952.655850px;}
.y24{bottom:963.447150px;}
.yb5{bottom:964.267500px;}
.y146{bottom:964.268250px;}
.y2db{bottom:964.274100px;}
.y261{bottom:964.277100px;}
.y2f8{bottom:964.308000px;}
.y67{bottom:966.093000px;}
.y80{bottom:967.323000px;}
.y1b1{bottom:967.505334px;}
.y34a{bottom:970.758150px;}
.y184{bottom:971.821200px;}
.y1df{bottom:973.650600px;}
.y23{bottom:984.441900px;}
.yb4{bottom:985.262250px;}
.y145{bottom:985.263000px;}
.y2da{bottom:985.268850px;}
.y260{bottom:985.271850px;}
.y2f7{bottom:985.302750px;}
.ye3{bottom:986.949150px;}
.y1aa{bottom:990.780050px;}
.y349{bottom:991.752900px;}
.y183{bottom:992.815950px;}
.y1b0{bottom:995.548992px;}
.y66{bottom:997.722900px;}
.y1a9{bottom:1003.003200px;}
.ye2{bottom:1004.195400px;}
.y1de{bottom:1005.280500px;}
.y22{bottom:1005.436650px;}
.yb3{bottom:1006.257000px;}
.y144{bottom:1006.257750px;}
.y2d9{bottom:1006.263600px;}
.y25f{bottom:1006.266600px;}
.y2f6{bottom:1006.297500px;}
.y348{bottom:1012.747650px;}
.y182{bottom:1013.810700px;}
.y1af{bottom:1023.592650px;}
.y21{bottom:1026.431400px;}
.yb2{bottom:1027.251750px;}
.y143{bottom:1027.252500px;}
.y2d8{bottom:1027.258350px;}
.y25e{bottom:1027.261350px;}
.y2f5{bottom:1027.292250px;}
.y347{bottom:1033.742400px;}
.yec{bottom:1034.805450px;}
.y17f{bottom:1040.313150px;}
.y20{bottom:1047.426150px;}
.yb1{bottom:1048.246500px;}
.y142{bottom:1048.247250px;}
.y2d7{bottom:1048.253100px;}
.y25d{bottom:1048.256100px;}
.y1e9{bottom:1048.274100px;}
.y65{bottom:1048.284450px;}
.y2f4{bottom:1048.287000px;}
.y346{bottom:1054.737150px;}
.yeb{bottom:1055.800200px;}
.y17e{bottom:1057.559400px;}
.y1f{bottom:1068.420900px;}
.yb0{bottom:1069.241250px;}
.y141{bottom:1069.242000px;}
.y2d6{bottom:1069.247850px;}
.y25c{bottom:1069.250850px;}
.y1e8{bottom:1069.268850px;}
.y64{bottom:1069.279200px;}
.y2f3{bottom:1069.281750px;}
.y345{bottom:1075.731900px;}
.yea{bottom:1076.794950px;}
.y1e{bottom:1089.415650px;}
.yaf{bottom:1090.236000px;}
.y140{bottom:1090.236750px;}
.y1c3{bottom:1090.242600px;}
.y25b{bottom:1090.245600px;}
.y1e7{bottom:1090.263600px;}
.y63{bottom:1090.273950px;}
.y2f2{bottom:1090.276500px;}
.y344{bottom:1096.726650px;}
.ye9{bottom:1097.789700px;}
.y1d{bottom:1110.410400px;}
.yae{bottom:1111.230750px;}
.y13f{bottom:1111.231500px;}
.y1c2{bottom:1111.237350px;}
.y25a{bottom:1111.240350px;}
.y1e6{bottom:1111.258350px;}
.y62{bottom:1111.268700px;}
.y2f1{bottom:1111.271250px;}
.y343{bottom:1117.721400px;}
.ye8{bottom:1118.784450px;}
.yad{bottom:1132.225500px;}
.y13e{bottom:1132.226250px;}
.y1c1{bottom:1132.232100px;}
.y259{bottom:1132.235100px;}
.y1e5{bottom:1132.253100px;}
.y61{bottom:1132.263450px;}
.y2f0{bottom:1132.266000px;}
.y1c{bottom:1139.914350px;}
.y342{bottom:1149.351450px;}
.ye7{bottom:1150.414350px;}
.yac{bottom:1153.220250px;}
.y13d{bottom:1153.221000px;}
.y1c0{bottom:1153.226850px;}
.y258{bottom:1153.229850px;}
.y1e4{bottom:1153.247850px;}
.y60{bottom:1153.258200px;}
.y2ef{bottom:1153.260750px;}
.y1b{bottom:1154.914350px;}
.y2{bottom:1193.811000px;}
.y50{bottom:1200.561000px;}
.h7d{height:27.815220px;}
.h3b{height:27.853596px;}
.h82{height:29.511144px;}
.h3f{height:29.532300px;}
.h28{height:29.535252px;}
.h6c{height:29.700564px;}
.h1f{height:29.758128px;}
.h17{height:29.824056px;}
.h69{height:29.854068px;}
.h2d{height:29.870796px;}
.h56{height:29.886540px;}
.h59{height:29.895888px;}
.h1b{height:32.074464px;}
.h80{height:35.834328px;}
.h81{height:35.834820px;}
.h40{height:35.860404px;}
.h43{height:35.860896px;}
.h29{height:35.863356px;}
.h2c{height:35.863848px;}
.h6b{height:36.064584px;}
.h73{height:36.122148px;}
.h1c{height:36.134940px;}
.h5c{height:36.148716px;}
.h7c{height:36.210216px;}
.h16{height:36.214152px;}
.h15{height:36.214644px;}
.h47{height:36.220056px;}
.h45{height:36.220548px;}
.h67{height:36.251544px;}
.h3c{height:36.260400px;}
.h2e{height:36.271716px;}
.h54{height:36.287460px;}
.h5a{height:36.301728px;}
.h58{height:36.302220px;}
.h76{height:36.337644px;}
.h77{height:36.338136px;}
.h1a{height:36.350928px;}
.h35{height:36.383400px;}
.he{height:36.411936px;}
.h60{height:36.470976px;}
.h23{height:36.528540px;}
.hc{height:36.583152px;}
.h4e{height:36.688932px;}
.h4f{height:36.689424px;}
.h25{height:36.721896px;}
.h4c{height:36.740100px;}
.h66{height:36.751908px;}
.h38{height:36.757320px;}
.h36{height:36.757812px;}
.h31{height:37.871064px;}
.h72{height:38.247096px;}
.h5d{height:38.275140px;}
.h46{height:38.350416px;}
.h48{height:38.350908px;}
.h19{height:38.489160px;}
.h34{height:38.523600px;}
.h8{height:38.640000px;}
.h22{height:38.677104px;}
.hb{height:38.734668px;}
.h78{height:38.756416px;}
.hf{height:38.835712px;}
.h61{height:38.899148px;}
.h4b{height:38.901456px;}
.h65{height:38.913756px;}
.h7{height:38.934000px;}
.h50{height:39.131089px;}
.h26{height:39.166772px;}
.h37{height:39.204438px;}
.h7f{height:40.050276px;}
.h42{height:40.079796px;}
.h2b{height:40.083240px;}
.h6e{height:40.307592px;}
.h1e{height:40.386312px;}
.h7b{height:40.470444px;}
.h14{height:40.475364px;}
.h6a{height:40.516692px;}
.h3e{height:40.526040px;}
.h30{height:40.538832px;}
.h55{height:40.556544px;}
.h5b{height:40.573272px;}
.h75{height:40.613124px;}
.h11{height:40.695780px;}
.h62{height:40.761708px;}
.h51{height:41.005740px;}
.h27{height:41.042148px;}
.h3a{height:41.082492px;}
.h6f{height:43.470000px;}
.h79{height:44.968770px;}
.h52{height:45.418674px;}
.h4{height:45.423000px;}
.h71{height:46.746396px;}
.h33{height:47.083908px;}
.h21{height:47.272344px;}
.ha{height:47.342700px;}
.h4a{height:47.546388px;}
.h64{height:47.561148px;}
.h2{height:48.300000px;}
.h12{height:49.200000px;}
.h5{height:50.715000px;}
.h6{height:63.960000px;}
.hd{height:69.374148px;}
.h3{height:78.720000px;}
.h70{height:194.400000px;}
.h44{height:194.551500px;}
.h20{height:195.489000px;}
.h5e{height:195.525000px;}
.h9{height:195.903000px;}
.h49{height:196.330500px;}
.h32{height:196.345500px;}
.h10{height:196.392000px;}
.h24{height:196.951500px;}
.h4d{height:197.661000px;}
.h18{height:198.025500px;}
.h39{height:200.073000px;}
.h2a{height:202.602000px;}
.h13{height:202.810500px;}
.h2f{height:203.235000px;}
.h57{height:203.668500px;}
.h1d{height:203.773500px;}
.h3d{height:204.046500px;}
.h41{height:204.588000px;}
.h53{height:204.667500px;}
.h7a{height:217.248000px;}
.h5f{height:238.308000px;}
.h7e{height:246.273000px;}
.h74{height:254.635500px;}
.h63{height:266.481000px;}
.h68{height:280.779000px;}
.h6d{height:302.901000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w1b{width:397.101000px;}
.w1a{width:397.542000px;}
.w4{width:398.259000px;}
.w18{width:398.589000px;}
.w9{width:399.097500px;}
.w17{width:399.699000px;}
.we{width:399.895500px;}
.wb{width:400.107000px;}
.w6{width:400.150500px;}
.w16{width:401.353500px;}
.wf{width:402.322500px;}
.w7{width:403.087500px;}
.w2{width:403.129500px;}
.w5{width:403.936500px;}
.w3{width:404.140500px;}
.w10{width:404.340000px;}
.w11{width:404.382000px;}
.w19{width:404.422500px;}
.w14{width:404.544000px;}
.w12{width:405.955500px;}
.w13{width:405.958500px;}
.wd{width:406.342500px;}
.w8{width:406.956000px;}
.wa{width:407.575500px;}
.wc{width:407.704500px;}
.w15{width:409.731000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:3.340950px;}
.x7d{left:9.004173px;}
.xc1{left:11.059200px;}
.x1e{left:13.400850px;}
.x7{left:16.809450px;}
.x16{left:18.256050px;}
.xa6{left:22.939500px;}
.xa2{left:24.301800px;}
.x81{left:25.726050px;}
.xa5{left:31.123500px;}
.x6{left:37.503000px;}
.x9{left:40.843950px;}
.x73{left:42.519000px;}
.x4d{left:43.795500px;}
.xa{left:46.565644px;}
.x82{left:48.122731px;}
.x5{left:49.181100px;}
.x1f{left:50.419800px;}
.x74{left:51.505785px;}
.x4e{left:52.892894px;}
.x1{left:54.000000px;}
.xc{left:56.155650px;}
.x1a{left:59.526150px;}
.xe{left:61.066445px;}
.x21{left:67.985700px;}
.x83{left:70.519413px;}
.x7b{left:71.885850px;}
.x22{left:79.160628px;}
.x84{left:81.717754px;}
.x23{left:90.335557px;}
.xb{left:91.735500px;}
.x85{left:92.916094px;}
.x76{left:96.603900px;}
.x4f{left:97.883700px;}
.x24{left:101.510485px;}
.x72{left:102.823500px;}
.x50{left:104.324250px;}
.x9e{left:110.006700px;}
.x25{left:112.685413px;}
.x86{left:115.312776px;}
.xf{left:116.770500px;}
.x26{left:123.860342px;}
.x87{left:126.511117px;}
.x27{left:135.035270px;}
.x88{left:137.709457px;}
.x7a{left:140.508781px;}
.x28{left:146.210198px;}
.x89{left:148.907798px;}
.x29{left:157.385126px;}
.x49{left:160.735200px;}
.x2a{left:168.560055px;}
.x8a{left:171.304480px;}
.x2b{left:179.734983px;}
.x8b{left:182.502820px;}
.x2c{left:190.909911px;}
.x8c{left:193.701161px;}
.x2d{left:202.084840px;}
.x8d{left:204.899502px;}
.x2e{left:213.259768px;}
.x8e{left:216.097843px;}
.x2f{left:224.434696px;}
.x8f{left:227.296183px;}
.x79{left:229.569150px;}
.x10{left:233.673048px;}
.x30{left:235.609624px;}
.x90{left:238.494524px;}
.x11{left:242.466336px;}
.x31{left:246.784553px;}
.x91{left:249.692865px;}
.x32{left:257.959481px;}
.x92{left:260.891206px;}
.x4a{left:265.043258px;}
.x33{left:269.134409px;}
.x93{left:272.089546px;}
.x34{left:280.309338px;}
.x94{left:283.287887px;}
.x35{left:291.484266px;}
.x95{left:294.486228px;}
.x36{left:302.659194px;}
.x96{left:305.684569px;}
.x37{left:313.834123px;}
.x97{left:316.882909px;}
.x38{left:325.009051px;}
.x98{left:328.081250px;}
.x39{left:336.183979px;}
.x99{left:339.279591px;}
.x3a{left:347.358907px;}
.x9a{left:350.477932px;}
.x3b{left:358.533836px;}
.x9b{left:361.676272px;}
.x3c{left:369.708764px;}
.x9c{left:372.874613px;}
.x3d{left:380.883692px;}
.x7c{left:383.087700px;}
.x80{left:385.255800px;}
.x3e{left:392.058621px;}
.x9d{left:395.353300px;}
.x3f{left:403.233549px;}
.x40{left:414.408477px;}
.xd{left:418.388433px;}
.x41{left:425.583406px;}
.xc2{left:426.636450px;}
.x20{left:428.144700px;}
.x9f{left:430.799250px;}
.x42{left:436.776519px;}
.x15{left:439.057500px;}
.xbc{left:440.716500px;}
.x12{left:442.384200px;}
.xbb{left:444.967500px;}
.x43{left:446.116500px;}
.x13{left:448.079116px;}
.x44{left:449.436900px;}
.xa0{left:451.295497px;}
.x3{left:452.695500px;}
.x78{left:454.065532px;}
.x45{left:455.122274px;}
.x2{left:456.144750px;}
.x1c{left:458.222400px;}
.xbd{left:459.359757px;}
.x1b{left:461.765400px;}
.x7e{left:463.974750px;}
.xa9{left:469.560000px;}
.x51{left:471.681600px;}
.xaa{left:480.670546px;}
.x52{left:482.730306px;}
.xa3{left:492.225750px;}
.x14{left:493.953000px;}
.xbf{left:498.094800px;}
.xa4{left:499.450650px;}
.x46{left:500.814900px;}
.xa1{left:502.511100px;}
.x53{left:504.827717px;}
.xba{left:506.478000px;}
.x70{left:512.574150px;}
.xab{left:514.002185px;}
.x54{left:515.876422px;}
.xac{left:525.112732px;}
.x55{left:526.925128px;}
.xad{left:536.223278px;}
.x56{left:537.973833px;}
.xae{left:547.333824px;}
.x57{left:549.022539px;}
.xaf{left:558.444371px;}
.x58{left:560.071244px;}
.xb0{left:569.554917px;}
.x59{left:571.119950px;}
.xb1{left:580.665463px;}
.x5a{left:582.168655px;}
.xb2{left:591.776010px;}
.x5b{left:593.217361px;}
.xb3{left:602.886556px;}
.x5c{left:604.266067px;}
.xb4{left:613.997103px;}
.x5d{left:615.314772px;}
.x19{left:619.827000px;}
.xb5{left:625.107649px;}
.x5e{left:626.363478px;}
.xb6{left:636.218195px;}
.x5f{left:637.412183px;}
.xc0{left:642.009000px;}
.xb7{left:647.328742px;}
.x60{left:648.460889px;}
.xb8{left:658.439288px;}
.x61{left:659.509594px;}
.xb9{left:669.549834px;}
.x62{left:670.558300px;}
.x48{left:675.039000px;}
.x63{left:681.607005px;}
.x64{left:692.655711px;}
.x65{left:703.704417px;}
.x66{left:714.753122px;}
.x67{left:725.801828px;}
.x68{left:736.850533px;}
.x69{left:747.899239px;}
.x6a{left:758.947944px;}
.x6b{left:769.996650px;}
.x6c{left:781.045355px;}
.x6d{left:792.094061px;}
.x7f{left:799.944600px;}
.xa7{left:801.116400px;}
.x4c{left:803.001750px;}
.x77{left:805.465350px;}
.x6e{left:814.191472px;}
.x75{left:817.725900px;}
.x17{left:820.632300px;}
.xbe{left:822.216600px;}
.x4b{left:824.273550px;}
.x47{left:826.448700px;}
.xa8{left:827.697450px;}
.x71{left:829.105800px;}
.x18{left:831.593550px;}
.x6f{left:836.288883px;}
.x4{left:845.574150px;}
.x1d{left:851.103000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.147552pt;}
.ls19{letter-spacing:-1.992267pt;}
.ls11{letter-spacing:-1.990347pt;}
.ls21{letter-spacing:-1.988560pt;}
.ls32{letter-spacing:-1.969520pt;}
.ls18{letter-spacing:-0.843787pt;}
.ls2a{letter-spacing:-0.843659pt;}
.ls1e{letter-spacing:-0.843392pt;}
.ls10{letter-spacing:-0.842976pt;}
.ls22{letter-spacing:-0.842208pt;}
.ls23{letter-spacing:-0.839920pt;}
.ls1{letter-spacing:-0.839776pt;}
.lse{letter-spacing:-0.838528pt;}
.ls29{letter-spacing:-0.837216pt;}
.ls4{letter-spacing:-0.835851pt;}
.lsa{letter-spacing:-0.834453pt;}
.ls33{letter-spacing:-0.834144pt;}
.ls1d{letter-spacing:-0.831445pt;}
.ls27{letter-spacing:-0.829813pt;}
.ls2f{letter-spacing:-0.829205pt;}
.ls2b{letter-spacing:-0.796789pt;}
.ls20{letter-spacing:-0.796533pt;}
.ls2{letter-spacing:-0.793131pt;}
.lsf{letter-spacing:-0.791947pt;}
.ls17{letter-spacing:-0.788800pt;}
.ls25{letter-spacing:-0.787029pt;}
.ls30{letter-spacing:-0.783136pt;}
.ls2d{letter-spacing:-0.781888pt;}
.ls12{letter-spacing:-0.777525pt;}
.ls1b{letter-spacing:-0.777461pt;}
.ls37{letter-spacing:-0.776896pt;}
.ls34{letter-spacing:-0.672000pt;}
.ls26{letter-spacing:-0.439819pt;}
.ls7{letter-spacing:-0.438757pt;}
.ls2e{letter-spacing:-0.436939pt;}
.ls13{letter-spacing:-0.434507pt;}
.ls1c{letter-spacing:-0.434469pt;}
.ls36{letter-spacing:-0.434149pt;}
.ls15{letter-spacing:-0.417600pt;}
.ls9{letter-spacing:-0.417227pt;}
.ls1f{letter-spacing:-0.398267pt;}
.ls3{letter-spacing:-0.396565pt;}
.ls5{letter-spacing:-0.394709pt;}
.ls16{letter-spacing:-0.394400pt;}
.lsb{letter-spacing:-0.394048pt;}
.ls24{letter-spacing:-0.393360pt;}
.ls14{letter-spacing:-0.393189pt;}
.ls1a{letter-spacing:-0.393067pt;}
.ls2c{letter-spacing:-0.392971pt;}
.ls8{letter-spacing:-0.392565pt;}
.ls35{letter-spacing:-0.392523pt;}
.ls28{letter-spacing:-0.391856pt;}
.lsd{letter-spacing:-0.391707pt;}
.ls31{letter-spacing:-0.391568pt;}
.lsc{letter-spacing:-0.347691pt;}
.ls6{letter-spacing:-0.336000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws15{word-spacing:-18.090667pt;}
.wsb{word-spacing:-14.698667pt;}
.ws22{word-spacing:-12.264000pt;}
.ws2b{word-spacing:-11.928000pt;}
.ws19{word-spacing:-11.306667pt;}
.ws0{word-spacing:-9.344000pt;}
.ws4b{word-spacing:-8.640000pt;}
.ws31{word-spacing:-0.051541pt;}
.ws1{word-spacing:-0.051320pt;}
.ws42{word-spacing:-0.042183pt;}
.ws32{word-spacing:-0.042170pt;}
.ws2{word-spacing:-0.041989pt;}
.ws16{word-spacing:-0.041926pt;}
.ws23{word-spacing:-0.041760pt;}
.ws4c{word-spacing:-0.041460pt;}
.ws3a{word-spacing:-0.032407pt;}
.ws39{word-spacing:-0.032397pt;}
.ws1c{word-spacing:-0.032380pt;}
.ws46{word-spacing:-0.032362pt;}
.wsd{word-spacing:-0.032258pt;}
.ws47{word-spacing:-0.032196pt;}
.ws1b{word-spacing:-0.032017pt;}
.ws29{word-spacing:-0.032013pt;}
.ws54{word-spacing:-0.031990pt;}
.ws28{word-spacing:-0.030194pt;}
.ws53{word-spacing:-0.030152pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:0.336000pt;}
.ws13{word-spacing:0.347691pt;}
.ws50{word-spacing:0.391568pt;}
.ws14{word-spacing:0.391707pt;}
.ws40{word-spacing:0.391856pt;}
.ws56{word-spacing:0.392523pt;}
.ws10{word-spacing:0.392565pt;}
.ws48{word-spacing:0.392971pt;}
.ws2e{word-spacing:0.393067pt;}
.ws21{word-spacing:0.393189pt;}
.ws3d{word-spacing:0.393360pt;}
.ws12{word-spacing:0.394048pt;}
.ws25{word-spacing:0.394400pt;}
.wsa{word-spacing:0.394709pt;}
.ws8{word-spacing:0.396565pt;}
.ws35{word-spacing:0.398267pt;}
.ws11{word-spacing:0.417227pt;}
.ws57{word-spacing:0.434149pt;}
.ws30{word-spacing:0.434469pt;}
.ws20{word-spacing:0.434507pt;}
.ws4a{word-spacing:0.436939pt;}
.wsf{word-spacing:0.438757pt;}
.ws3f{word-spacing:0.439819pt;}
.ws55{word-spacing:0.672000pt;}
.ws58{word-spacing:0.776896pt;}
.ws2f{word-spacing:0.777461pt;}
.ws1f{word-spacing:0.777525pt;}
.ws49{word-spacing:0.781888pt;}
.ws4f{word-spacing:0.783136pt;}
.ws3e{word-spacing:0.787029pt;}
.ws26{word-spacing:0.788800pt;}
.ws18{word-spacing:0.791947pt;}
.ws7{word-spacing:0.793131pt;}
.ws36{word-spacing:0.796533pt;}
.ws45{word-spacing:0.796789pt;}
.ws52{word-spacing:0.834144pt;}
.ws9{word-spacing:0.835851pt;}
.ws44{word-spacing:0.837216pt;}
.ws3c{word-spacing:0.839920pt;}
.ws38{word-spacing:0.842208pt;}
.ws1d{word-spacing:0.842976pt;}
.ws2c{word-spacing:0.843787pt;}
.ws51{word-spacing:1.969520pt;}
.ws37{word-spacing:1.988560pt;}
.ws1e{word-spacing:1.990347pt;}
.ws2d{word-spacing:1.992267pt;}
.ws24{word-spacing:124.027200pt;}
.ws4d{word-spacing:126.868416pt;}
.ws3{word-spacing:127.519986pt;}
.ws33{word-spacing:127.816058pt;}
.ws17{word-spacing:127.833594pt;}
.ws3b{word-spacing:128.496595pt;}
.ws41{word-spacing:129.140568pt;}
.ws2a{word-spacing:129.248177pt;}
.wsc{word-spacing:129.465435pt;}
.ws4e{word-spacing:129.834514pt;}
.ws27{word-spacing:130.196283pt;}
.ws1a{word-spacing:130.829875pt;}
.ws5{word-spacing:130.894214pt;}
.ws34{word-spacing:131.089675pt;}
.ws43{word-spacing:148.737023pt;}
.ws4{word-spacing:1476.729988pt;}
._25{margin-left:-268.072541pt;}
._20{margin-left:-256.047064pt;}
._19{margin-left:-253.482883pt;}
._d{margin-left:-252.394677pt;}
._15{margin-left:-250.878395pt;}
._2c{margin-left:-248.346997pt;}
._2a{margin-left:-12.264000pt;}
._24{margin-left:-6.104000pt;}
._13{margin-left:-5.192800pt;}
._12{margin-left:-4.110400pt;}
._3{margin-left:-2.508800pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.536000pt;}
._6{width:2.492000pt;}
._4{width:3.886400pt;}
._5{width:4.782400pt;}
._7{width:5.740000pt;}
._2{width:6.848800pt;}
._8{width:8.167200pt;}
._9{width:9.226400pt;}
._14{width:10.126400pt;}
._a{width:11.058400pt;}
._b{width:13.412000pt;}
._c{width:14.756000pt;}
._22{width:16.805600pt;}
._16{width:17.880800pt;}
._1c{width:21.302400pt;}
._2b{width:22.719200pt;}
._29{width:24.119200pt;}
._1f{width:124.904160pt;}
._1e{width:126.031680pt;}
._2e{width:127.113812pt;}
._f{width:128.065840pt;}
._10{width:129.115560pt;}
._11{width:130.501190pt;}
._1b{width:132.085834pt;}
._28{width:145.657669pt;}
._27{width:146.670059pt;}
._1d{width:291.928475pt;}
._2d{width:293.455767pt;}
._18{width:296.536244pt;}
._23{width:297.522478pt;}
._e{width:298.876278pt;}
._1a{width:301.743259pt;}
._21{width:305.619531pt;}
._26{width:332.949893pt;}
._17{width:2246.122667pt;}
.fs5d{font-size:30.152000pt;}
.fs2b{font-size:30.193600pt;}
.fs61{font-size:31.990400pt;}
.fs2e{font-size:32.013333pt;}
.fs1c{font-size:32.016533pt;}
.fs51{font-size:32.195733pt;}
.fs15{font-size:32.258133pt;}
.fsf{font-size:32.329600pt;}
.fs4e{font-size:32.362133pt;}
.fs20{font-size:32.380267pt;}
.fs40{font-size:32.397333pt;}
.fs42{font-size:32.407467pt;}
.fs12{font-size:34.769067pt;}
.fs5f{font-size:38.844800pt;}
.fs60{font-size:38.845333pt;}
.fs2f{font-size:38.873067pt;}
.fs31{font-size:38.873600pt;}
.fs1d{font-size:38.876267pt;}
.fs1f{font-size:38.876800pt;}
.fs50{font-size:39.094400pt;}
.fs55{font-size:39.156800pt;}
.fs13{font-size:39.170667pt;}
.fs45{font-size:39.185600pt;}
.fs5c{font-size:39.252267pt;}
.fse{font-size:39.256533pt;}
.fsd{font-size:39.257067pt;}
.fs34{font-size:39.262933pt;}
.fs32{font-size:39.263467pt;}
.fs4d{font-size:39.297067pt;}
.fs2c{font-size:39.306667pt;}
.fs21{font-size:39.318933pt;}
.fs3e{font-size:39.336000pt;}
.fs43{font-size:39.351467pt;}
.fs41{font-size:39.352000pt;}
.fs57{font-size:39.390400pt;}
.fs58{font-size:39.390933pt;}
.fs11{font-size:39.404800pt;}
.fs26{font-size:39.440000pt;}
.fs9{font-size:39.470933pt;}
.fs47{font-size:39.534933pt;}
.fs18{font-size:39.597333pt;}
.fs8{font-size:39.656533pt;}
.fs39{font-size:39.771200pt;}
.fs3a{font-size:39.771733pt;}
.fs19{font-size:39.806933pt;}
.fs38{font-size:39.826667pt;}
.fs4c{font-size:39.839467pt;}
.fs29{font-size:39.845333pt;}
.fs27{font-size:39.845867pt;}
.fs54{font-size:41.460267pt;}
.fs46{font-size:41.490667pt;}
.fs33{font-size:41.572267pt;}
.fs35{font-size:41.572800pt;}
.fs59{font-size:41.707200pt;}
.fs10{font-size:41.722667pt;}
.fs25{font-size:41.760000pt;}
.fsa{font-size:41.792533pt;}
.fs23{font-size:41.817600pt;}
.fs48{font-size:41.860800pt;}
.fs17{font-size:41.926400pt;}
.fs7{font-size:41.988800pt;}
.fs3b{font-size:42.110400pt;}
.fs1a{font-size:42.148800pt;}
.fs37{font-size:42.169600pt;}
.fs4b{font-size:42.182933pt;}
.fs28{font-size:42.189333pt;}
.fs5{font-size:42.666667pt;}
.fs5e{font-size:43.414933pt;}
.fs30{font-size:43.446933pt;}
.fs1e{font-size:43.450667pt;}
.fs52{font-size:43.693867pt;}
.fs14{font-size:43.779200pt;}
.fs5b{font-size:43.870400pt;}
.fsc{font-size:43.875733pt;}
.fs4f{font-size:43.920533pt;}
.fs2d{font-size:43.930667pt;}
.fs22{font-size:43.944533pt;}
.fs3f{font-size:43.963733pt;}
.fs44{font-size:43.981867pt;}
.fs56{font-size:44.025067pt;}
.fsb{font-size:44.114667pt;}
.fs49{font-size:44.186133pt;}
.fs3c{font-size:44.450667pt;}
.fs1b{font-size:44.490133pt;}
.fs2a{font-size:44.533867pt;}
.fs4{font-size:48.000000pt;}
.fs53{font-size:50.673600pt;}
.fs24{font-size:51.039467pt;}
.fs16{font-size:51.243733pt;}
.fs6{font-size:51.320000pt;}
.fs36{font-size:51.540800pt;}
.fs4a{font-size:51.556800pt;}
.fs0{font-size:53.333333pt;}
.fs5a{font-size:55.440000pt;}
.fs3d{font-size:55.994667pt;}
.fs2{font-size:56.000000pt;}
.fs3{font-size:69.333333pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y22f{bottom:2.426992pt;}
.y22d{bottom:2.564667pt;}
.y230{bottom:3.001987pt;}
.y22e{bottom:3.139663pt;}
.y207{bottom:4.481067pt;}
.y206{bottom:14.126031pt;}
.y22a{bottom:22.096901pt;}
.y205{bottom:33.196577pt;}
.y1{bottom:33.464533pt;}
.y229{bottom:40.840505pt;}
.y22c{bottom:42.788933pt;}
.y15a{bottom:48.614667pt;}
.y4c{bottom:48.988000pt;}
.y233{bottom:49.133333pt;}
.y27a{bottom:49.713333pt;}
.y23d{bottom:51.561202pt;}
.y81{bottom:51.673333pt;}
.y23b{bottom:51.698933pt;}
.y23e{bottom:52.136434pt;}
.y204{bottom:52.267123pt;}
.y23c{bottom:52.274166pt;}
.y313{bottom:52.304000pt;}
.y301{bottom:52.606267pt;}
.y20c{bottom:52.913467pt;}
.y164{bottom:53.058400pt;}
.y1ea{bottom:53.102400pt;}
.y4b{bottom:53.435333pt;}
.y159{bottom:53.858267pt;}
.y2c8{bottom:53.904000pt;}
.y30{bottom:54.009467pt;}
.y8d{bottom:54.095001pt;}
.y286{bottom:54.168667pt;}
.y351{bottom:54.222667pt;}
.y8b{bottom:54.232400pt;}
.y102{bottom:54.241333pt;}
.y8e{bottom:54.668842pt;}
.y8c{bottom:54.806241pt;}
.y77{bottom:55.022133pt;}
.y2ad{bottom:55.183067pt;}
.y1b6{bottom:55.538667pt;}
.ybe{bottom:55.559067pt;}
.ye1{bottom:55.621067pt;}
.y278{bottom:56.126000pt;}
.y2c4{bottom:56.315968pt;}
.y2c2{bottom:56.452800pt;}
.y35d{bottom:56.481783pt;}
.y35b{bottom:56.617467pt;}
.yfe{bottom:56.638933pt;}
.y325{bottom:56.743067pt;}
.y2c5{bottom:56.887442pt;}
.y2c3{bottom:57.024274pt;}
.y35e{bottom:57.062209pt;}
.y35c{bottom:57.197893pt;}
.y195{bottom:58.902400pt;}
.y228{bottom:59.584109pt;}
.y1bd{bottom:59.962800pt;}
.y163{bottom:61.092067pt;}
.y4a{bottom:62.308063pt;}
.y285{bottom:63.792329pt;}
.y302{bottom:66.330667pt;}
.y324{bottom:66.801437pt;}
.y1bc{bottom:70.129658pt;}
.y23a{bottom:70.174183pt;}
.y203{bottom:71.337669pt;}
.y89{bottom:73.405566pt;}
.y76{bottom:73.684133pt;}
.y2d3{bottom:75.159061pt;}
.y10b{bottom:75.304727pt;}
.y366{bottom:75.699713pt;}
.y194{bottom:77.564400pt;}
.y227{bottom:78.327713pt;}
.y165{bottom:82.145467pt;}
.y284{bottom:82.749329pt;}
.y49{bottom:83.898663pt;}
.y323{bottom:85.689390pt;}
.y162{bottom:86.382967pt;}
.y202{bottom:90.408215pt;}
.y75{bottom:92.346133pt;}
.y365{bottom:94.403418pt;}
.y241{bottom:94.777467pt;}
.y328{bottom:95.132533pt;}
.y239{bottom:95.408653pt;}
.y193{bottom:96.226400pt;}
.y226{bottom:97.071317pt;}
.y168{bottom:97.747827pt;}
.y361{bottom:98.425867pt;}
.y1be{bottom:99.069467pt;}
.y1bb{bottom:99.577258pt;}
.y2d2{bottom:100.228345pt;}
.y10a{bottom:100.234475pt;}
.y1fd{bottom:101.492533pt;}
.y283{bottom:101.706330pt;}
.y101{bottom:102.051600pt;}
.y88{bottom:103.427408pt;}
.y322{bottom:104.577342pt;}
.y16a{bottom:104.679407pt;}
.y48{bottom:105.489264pt;}
.y201{bottom:109.478762pt;}
.y74{bottom:111.008133pt;}
.y161{bottom:111.673867pt;}
.y2c1{bottom:112.078667pt;}
.y364{bottom:113.107123pt;}
.y192{bottom:114.888400pt;}
.y225{bottom:115.814921pt;}
.y8a{bottom:116.714400pt;}
.y238{bottom:120.643123pt;}
.y282{bottom:120.663330pt;}
.y321{bottom:123.465295pt;}
.y109{bottom:125.164223pt;}
.y360{bottom:125.234058pt;}
.y2d1{bottom:125.297629pt;}
.y47{bottom:127.079865pt;}
.y200{bottom:128.549308pt;}
.y1ba{bottom:129.603994pt;}
.y73{bottom:129.670133pt;}
.y363{bottom:131.810828pt;}
.y209{bottom:132.020750pt;}
.y327{bottom:133.447450pt;}
.y87{bottom:133.449250pt;}
.y191{bottom:133.550400pt;}
.y224{bottom:134.558525pt;}
.y35f{bottom:136.205067pt;}
.y160{bottom:136.964767pt;}
.y232{bottom:138.754788pt;}
.y281{bottom:139.620331pt;}
.y320{bottom:142.353247pt;}
.y208{bottom:143.136800pt;}
.y326{bottom:144.457067pt;}
.y237{bottom:145.877593pt;}
.y169{bottom:147.097127pt;}
.y1ff{bottom:147.619854pt;}
.y72{bottom:148.332133pt;}
.y46{bottom:148.670465pt;}
.y231{bottom:149.749200pt;}
.y108{bottom:150.093971pt;}
.y2d0{bottom:150.366913pt;}
.y362{bottom:150.514533pt;}
.y190{bottom:152.212400pt;}
.y223{bottom:153.302129pt;}
.y280{bottom:158.577331pt;}
.y1b9{bottom:159.630731pt;}
.y166{bottom:159.812687pt;}
.y31f{bottom:161.241200pt;}
.y15f{bottom:162.255667pt;}
.y86{bottom:163.471092pt;}
.y1b7{bottom:164.145333pt;}
.yd3{bottom:164.878667pt;}
.y34{bottom:165.123600pt;}
.y35a{bottom:165.188751pt;}
.y1ee{bottom:165.833467pt;}
.y1fe{bottom:166.690400pt;}
.yef{bottom:166.882533pt;}
.y71{bottom:166.994133pt;}
.y167{bottom:170.061067pt;}
.y45{bottom:170.261066pt;}
.y105{bottom:170.642000pt;}
.y236{bottom:171.112063pt;}
.y84{bottom:171.841600pt;}
.y123{bottom:171.926533pt;}
.y222{bottom:172.045733pt;}
.y234{bottom:172.447733pt;}
.y107{bottom:175.023719pt;}
.y31c{bottom:175.144590pt;}
.y2cf{bottom:175.436197pt;}
.y4f{bottom:175.642133pt;}
.y305{bottom:176.722133pt;}
.y27f{bottom:177.534332pt;}
.y15c{bottom:177.957067pt;}
.yd2{bottom:178.668000pt;}
.y33{bottom:178.917467pt;}
.y1ed{bottom:179.702667pt;}
.y4e{bottom:179.809067pt;}
.y18f{bottom:180.327867pt;}
.y24d{bottom:180.599733pt;}
.y20b{bottom:180.643467pt;}
.yfd{bottom:180.847893pt;}
.y1bf{bottom:180.924933pt;}
.y17c{bottom:180.981573pt;}
.y90{bottom:182.187200pt;}
.y359{bottom:183.892457pt;}
.y1ae{bottom:184.188053pt;}
.y104{bottom:184.530667pt;}
.y122{bottom:184.685333pt;}
.y19e{bottom:184.846667pt;}
.y70{bottom:185.656133pt;}
.y356{bottom:185.780933pt;}
.y22b{bottom:186.591600pt;}
.y243{bottom:186.787040pt;}
.y83{bottom:186.920880pt;}
.y15e{bottom:187.546567pt;}
.y355{bottom:187.649333pt;}
.ya5{bottom:188.225973pt;}
.y304{bottom:189.160133pt;}
.y1b8{bottom:189.657467pt;}
.y15b{bottom:190.484933pt;}
.yd1{bottom:191.246000pt;}
.y32{bottom:191.514133pt;}
.y44{bottom:191.851666pt;}
.y240{bottom:192.030998pt;}
.y1ec{bottom:192.353467pt;}
.y4d{bottom:193.043467pt;}
.y85{bottom:193.492933pt;}
.y20a{bottom:193.978667pt;}
.y31b{bottom:194.032542pt;}
.yfc{bottom:194.194933pt;}
.y17b{bottom:194.341733pt;}
.y100{bottom:195.412617pt;}
.y235{bottom:196.346533pt;}
.y27e{bottom:196.491332pt;}
.y1ad{bottom:197.222133pt;}
.y103{bottom:197.565867pt;}
.y106{bottom:199.953467pt;}
.y242{bottom:199.981600pt;}
.y82{bottom:200.083600pt;}
.y2ce{bottom:200.505481pt;}
.ya4{bottom:201.359733pt;}
.y358{bottom:202.596162pt;}
.y352{bottom:202.904133pt;}
.y23f{bottom:203.029733pt;}
.y27b{bottom:203.648933pt;}
.yff{bottom:206.278533pt;}
.y288{bottom:211.183719pt;}
.y15d{bottom:212.837467pt;}
.y31a{bottom:212.920495pt;}
.y43{bottom:213.442267pt;}
.y19d{bottom:213.546667pt;}
.y6f{bottom:213.771600pt;}
.y354{bottom:214.723125pt;}
.y27d{bottom:215.448333pt;}
.y198{bottom:215.808529pt;}
.y196{bottom:215.944400pt;}
.y199{bottom:216.389756pt;}
.y197{bottom:216.525627pt;}
.y317{bottom:217.280267pt;}
.y28a{bottom:217.984160pt;}
.y357{bottom:221.299867pt;}
.y287{bottom:222.233733pt;}
.y369{bottom:222.963253pt;}
.y2cd{bottom:225.574765pt;}
.y353{bottom:225.694133pt;}
.y13c{bottom:226.665333pt;}
.y5{bottom:227.940667pt;}
.y296{bottom:229.083467pt;}
.y289{bottom:231.240000pt;}
.y315{bottom:231.338613pt;}
.y319{bottom:231.808447pt;}
.y27c{bottom:234.405333pt;}
.y181{bottom:234.578800pt;}
.y1a7{bottom:235.337787pt;}
.y368{bottom:235.987733pt;}
.y21f{bottom:236.678133pt;}
.y54{bottom:238.744400pt;}
.ye6{bottom:239.210133pt;}
.y2b9{bottom:241.243200pt;}
.y31e{bottom:241.789983pt;}
.y316{bottom:242.180133pt;}
.y28d{bottom:242.838133pt;}
.y4{bottom:243.270667pt;}
.y314{bottom:244.546133pt;}
.y2c7{bottom:245.760849pt;}
.y180{bottom:249.908800pt;}
.y2cc{bottom:250.644049pt;}
.y318{bottom:250.696400pt;}
.y7f{bottom:251.066933pt;}
.y13b{bottom:251.799467pt;}
.y21e{bottom:252.008133pt;}
.y31d{bottom:252.799600pt;}
.y334{bottom:254.066933pt;}
.y1a6{bottom:254.067413pt;}
.y53{bottom:254.074400pt;}
.ye5{bottom:254.540133pt;}
.y28c{bottom:255.493067pt;}
.y19c{bottom:256.595733pt;}
.y2c6{bottom:256.687733pt;}
.y2be{bottom:258.320000pt;}
.y256{bottom:268.973200pt;}
.y1a{bottom:270.297867pt;}
.y13a{bottom:270.461467pt;}
.y1a5{bottom:272.797040pt;}
.y2ca{bottom:274.359440pt;}
.y2cb{bottom:275.713333pt;}
.y21d{bottom:277.544133pt;}
.y7e{bottom:279.432800pt;}
.y1da{bottom:280.368400pt;}
.y11c{bottom:280.857467pt;}
.y341{bottom:281.320267pt;}
.y300{bottom:283.246667pt;}
.ycf{bottom:284.284533pt;}
.y255{bottom:284.303200pt;}
.y2c9{bottom:287.467600pt;}
.y2d5{bottom:288.145353pt;}
.y19{bottom:288.959867pt;}
.y139{bottom:289.123467pt;}
.y1a4{bottom:291.526667pt;}
.y21c{bottom:296.206133pt;}
.y7d{bottom:298.094800pt;}
.y2ff{bottom:298.576667pt;}
.y1d9{bottom:299.030400pt;}
.y11b{bottom:299.519467pt;}
.y340{bottom:299.982267pt;}
.yce{bottom:302.946533pt;}
.y18{bottom:307.621867pt;}
.y138{bottom:307.785467pt;}
.y277{bottom:309.920933pt;}
.y1a3{bottom:310.256293pt;}
.y2d4{bottom:313.214637pt;}
.y21b{bottom:314.868133pt;}
.y7c{bottom:316.756800pt;}
.y1d8{bottom:317.692400pt;}
.y11a{bottom:318.181467pt;}
.y33f{bottom:318.644267pt;}
.ycd{bottom:321.608533pt;}
.y17{bottom:326.283867pt;}
.y137{bottom:326.447467pt;}
.y29f{bottom:327.552933pt;}
.y333{bottom:327.619467pt;}
.y276{bottom:328.582933pt;}
.y1a2{bottom:328.985920pt;}
.y121{bottom:332.530667pt;}
.y21a{bottom:333.530133pt;}
.y11d{bottom:334.955867pt;}
.y7b{bottom:335.418800pt;}
.y1d7{bottom:336.354400pt;}
.y119{bottom:336.843467pt;}
.y33e{bottom:337.306267pt;}
.ycc{bottom:340.270533pt;}
.y29e{bottom:342.882933pt;}
.y16{bottom:344.945867pt;}
.y136{bottom:345.109467pt;}
.y332{bottom:346.281467pt;}
.y275{bottom:347.244933pt;}
.y1a1{bottom:347.715547pt;}
.y19b{bottom:351.189253pt;}
.y7a{bottom:354.080800pt;}
.y12b{bottom:354.573431pt;}
.y1d6{bottom:355.016400pt;}
.y118{bottom:355.505467pt;}
.y33d{bottom:355.968267pt;}
.ycb{bottom:358.932533pt;}
.y219{bottom:361.645733pt;}
.y19a{bottom:362.175467pt;}
.y15{bottom:363.607867pt;}
.y135{bottom:363.771467pt;}
.y331{bottom:364.943467pt;}
.y274{bottom:365.906933pt;}
.y1a0{bottom:366.445173pt;}
.y2ab{bottom:367.474000pt;}
.y28b{bottom:371.338667pt;}
.y79{bottom:372.742800pt;}
.y12a{bottom:373.308903pt;}
.y1d5{bottom:373.678400pt;}
.y117{bottom:374.167467pt;}
.y33c{bottom:374.630267pt;}
.y120{bottom:375.397467pt;}
.y298{bottom:375.827067pt;}
.yca{bottom:377.594533pt;}
.y14{bottom:382.269867pt;}
.y330{bottom:383.605467pt;}
.y273{bottom:384.568933pt;}
.y295{bottom:384.940385pt;}
.y19f{bottom:385.174800pt;}
.y2aa{bottom:386.136000pt;}
.y134{bottom:391.886933pt;}
.y129{bottom:392.044375pt;}
.y1d4{bottom:392.340400pt;}
.y116{bottom:392.829467pt;}
.y33b{bottom:393.292267pt;}
.yc9{bottom:396.256533pt;}
.y221{bottom:396.668000pt;}
.y17d{bottom:398.434800pt;}
.y299{bottom:400.144667pt;}
.y78{bottom:400.858267pt;}
.y13{bottom:400.931867pt;}
.y32f{bottom:402.267467pt;}
.y272{bottom:403.230933pt;}
.y2a9{bottom:404.798000pt;}
.y29c{bottom:406.113802pt;}
.y294{bottom:410.248406pt;}
.y128{bottom:410.779846pt;}
.y1d3{bottom:411.002400pt;}
.y115{bottom:411.491467pt;}
.y33a{bottom:411.954267pt;}
.yc8{bottom:414.918533pt;}
.y12{bottom:419.593867pt;}
.y32e{bottom:420.929467pt;}
.y2a8{bottom:423.460000pt;}
.y18e{bottom:424.576800pt;}
.y127{bottom:429.515318pt;}
.y1d2{bottom:429.664400pt;}
.y31{bottom:429.796000pt;}
.y114{bottom:430.153467pt;}
.y339{bottom:430.616267pt;}
.y271{bottom:431.346400pt;}
.yc7{bottom:433.580533pt;}
.ya3{bottom:434.100000pt;}
.y3a{bottom:434.263867pt;}
.y293{bottom:435.556427pt;}
.ya9{bottom:436.515570pt;}
.ya7{bottom:436.652667pt;}
.y133{bottom:436.807333pt;}
.yaa{bottom:437.088151pt;}
.y29b{bottom:437.168667pt;}
.ya8{bottom:437.225249pt;}
.y11{bottom:438.255867pt;}
.y32d{bottom:439.591467pt;}
.y2a7{bottom:442.122000pt;}
.y18d{bottom:443.238800pt;}
.y39{bottom:443.283065pt;}
.y126{bottom:448.250790pt;}
.y1d1{bottom:448.326400pt;}
.y338{bottom:449.278267pt;}
.yc6{bottom:452.242533pt;}
.y132{bottom:455.469333pt;}
.ya2{bottom:455.581030pt;}
.y32c{bottom:458.253467pt;}
.y113{bottom:458.268933pt;}
.y41{bottom:460.629496pt;}
.y2a6{bottom:460.784000pt;}
.y292{bottom:460.864449pt;}
.y18c{bottom:461.900800pt;}
.y10{bottom:466.371333pt;}
.y2ee{bottom:466.772667pt;}
.y125{bottom:466.986262pt;}
.y1d0{bottom:466.988400pt;}
.y2b8{bottom:469.473333pt;}
.y11f{bottom:470.987025pt;}
.y2bc{bottom:471.898000pt;}
.y38{bottom:473.610398pt;}
.y131{bottom:474.131333pt;}
.ya6{bottom:474.163733pt;}
.y270{bottom:476.252800pt;}
.y32b{bottom:476.915467pt;}
.y29a{bottom:477.024877pt;}
.y337{bottom:477.393733pt;}
.y3d{bottom:478.320145pt;}
.y2a5{bottom:479.446000pt;}
.yc5{bottom:480.358133pt;}
.y18b{bottom:480.562800pt;}
.y11e{bottom:481.976667pt;}
.y2ed{bottom:485.434667pt;}
.ya1{bottom:485.536797pt;}
.y1cf{bottom:485.650400pt;}
.y124{bottom:485.721733pt;}
.y291{bottom:486.172470pt;}
.y2b7{bottom:491.763086pt;}
.y24c{bottom:491.984000pt;}
.y130{bottom:492.793333pt;}
.y26f{bottom:494.914800pt;}
.y32a{bottom:495.577467pt;}
.y24a{bottom:496.399867pt;}
.y3f{bottom:497.930301pt;}
.yed{bottom:497.957067pt;}
.y2a4{bottom:498.108000pt;}
.y18a{bottom:499.224800pt;}
.yd0{bottom:501.153333pt;}
.y37{bottom:503.937732pt;}
.y2ec{bottom:504.096667pt;}
.y1ce{bottom:504.312400pt;}
.yda{bottom:505.615067pt;}
.y249{bottom:506.579250pt;}
.y8f{bottom:508.033333pt;}
.y3c{bottom:510.243654pt;}
.y2b6{bottom:510.547084pt;}
.yf{bottom:511.300667pt;}
.y12f{bottom:511.455333pt;}
.y290{bottom:511.480491pt;}
.y98{bottom:512.473333pt;}
.y2bd{bottom:513.132533pt;}
.y42{bottom:513.570968pt;}
.y26e{bottom:513.576800pt;}
.yd9{bottom:513.681317pt;}
.ya0{bottom:515.492565pt;}
.y350{bottom:516.734267pt;}
.y2a3{bottom:516.770000pt;}
.y189{bottom:517.886800pt;}
.ye4{bottom:518.636133pt;}
.y3e{bottom:519.265516pt;}
.y97{bottom:522.013742pt;}
.y2eb{bottom:522.758667pt;}
.y1cd{bottom:522.974400pt;}
.y367{bottom:523.654667pt;}
.y329{bottom:523.692933pt;}
.yc4{bottom:525.269200pt;}
.y371{bottom:526.050267pt;}
.y40{bottom:527.599467pt;}
.y2b5{bottom:529.331082pt;}
.ye{bottom:529.962667pt;}
.y12e{bottom:530.117333pt;}
.y34f{bottom:530.458667pt;}
.ydb{bottom:530.612533pt;}
.y99{bottom:530.635333pt;}
.y26d{bottom:532.238800pt;}
.y3b{bottom:532.372000pt;}
.y36{bottom:534.265066pt;}
.y2a2{bottom:535.432000pt;}
.y248{bottom:535.968450pt;}
.y188{bottom:536.548800pt;}
.y28f{bottom:536.788512pt;}
.y24b{bottom:538.457733pt;}
.yd8{bottom:539.073107pt;}
.y157{bottom:539.873333pt;}
.y2ea{bottom:541.420667pt;}
.y1cc{bottom:541.636400pt;}
.y112{bottom:543.810667pt;}
.yc3{bottom:543.931200pt;}
.y379{bottom:545.191875pt;}
.y9f{bottom:545.448332pt;}
.yde{bottom:547.145267pt;}
.y96{bottom:547.222963pt;}
.y2b4{bottom:548.115079pt;}
.yd{bottom:548.624667pt;}
.y12d{bottom:548.779333pt;}
.y2a1{bottom:554.094000pt;}
.y156{bottom:558.535333pt;}
.ydc{bottom:558.588049pt;}
.y303{bottom:559.446667pt;}
.y2e9{bottom:560.082667pt;}
.y1cb{bottom:560.298400pt;}
.y26c{bottom:560.354267pt;}
.y28e{bottom:562.096533pt;}
.y111{bottom:562.472667pt;}
.yc2{bottom:562.593200pt;}
.y30d{bottom:563.857867pt;}
.yd7{bottom:564.464897pt;}
.y35{bottom:564.592400pt;}
.y187{bottom:564.664267pt;}
.y247{bottom:565.935637pt;}
.y1fc{bottom:566.713333pt;}
.y2b3{bottom:566.899077pt;}
.y374{bottom:567.237867pt;}
.yc{bottom:567.286667pt;}
.y1eb{bottom:567.784000pt;}
.y378{bottom:569.868373pt;}
.y30c{bottom:571.835279pt;}
.y1f5{bottom:572.270667pt;}
.y95{bottom:572.432183pt;}
.ydd{bottom:573.388400pt;}
.y297{bottom:574.875067pt;}
.y9e{bottom:575.404099pt;}
.y12c{bottom:576.894800pt;}
.y155{bottom:577.197333pt;}
.ye0{bottom:578.772248pt;}
.y1ca{bottom:578.960400pt;}
.y1f4{bottom:580.384150pt;}
.y110{bottom:581.134667pt;}
.yc1{bottom:581.255200pt;}
.y2a0{bottom:582.209467pt;}
.y20d{bottom:582.318933pt;}
.y2b2{bottom:585.683075pt;}
.yb{bottom:585.948667pt;}
.y2e8{bottom:588.198267pt;}
.yd6{bottom:589.856687pt;}
.y377{bottom:594.544871pt;}
.y154{bottom:595.859333pt;}
.y246{bottom:595.902825pt;}
.y1fa{bottom:596.434857pt;}
.y30b{bottom:596.944577pt;}
.y1c9{bottom:597.622400pt;}
.y94{bottom:597.641404pt;}
.y10f{bottom:599.796667pt;}
.yc0{bottom:599.917200pt;}
.ydf{bottom:600.273600pt;}
.y279{bottom:601.512667pt;}
.y17a{bottom:601.648000pt;}
.y1fb{bottom:604.449973pt;}
.y2b1{bottom:604.467073pt;}
.ya{bottom:604.610667pt;}
.y9d{bottom:605.359867pt;}
.y1f3{bottom:605.923000pt;}
.y176{bottom:606.136800pt;}
.y3{bottom:608.712667pt;}
.y217{bottom:609.891467pt;}
.y257{bottom:612.177200pt;}
.y153{bottom:614.521333pt;}
.yd5{bottom:615.248477pt;}
.y175{bottom:615.801522pt;}
.y1c8{bottom:616.284400pt;}
.y310{bottom:616.366039pt;}
.y158{bottom:618.219467pt;}
.y373{bottom:618.397412pt;}
.y10e{bottom:618.458667pt;}
.y376{bottom:619.221369pt;}
.y1f6{bottom:619.627733pt;}
.y52{bottom:620.552400pt;}
.y30f{bottom:620.966963pt;}
.y2ac{bottom:621.732400pt;}
.y30a{bottom:622.053875pt;}
.y93{bottom:622.850625pt;}
.y2b0{bottom:623.251071pt;}
.y9{bottom:623.272667pt;}
.y245{bottom:625.870012pt;}
.ybf{bottom:628.032667pt;}
.y216{bottom:628.553467pt;}
.y372{bottom:629.254533pt;}
.y1f2{bottom:631.461850pt;}
.y2c0{bottom:632.736870pt;}
.y152{bottom:633.183333pt;}
.y2e7{bottom:633.188533pt;}
.y2e{bottom:634.046933pt;}
.y26b{bottom:634.772667pt;}
.y174{bottom:634.907615pt;}
.y1c7{bottom:634.946400pt;}
.y51{bottom:635.882400pt;}
.y9c{bottom:637.065493pt;}
.y10d{bottom:637.120667pt;}
.y1f8{bottom:637.346800pt;}
.yd4{bottom:640.640267pt;}
.y8{bottom:641.934667pt;}
.y2af{bottom:642.035069pt;}
.y2bf{bottom:643.720400pt;}
.y375{bottom:643.897867pt;}
.y309{bottom:647.163173pt;}
.y215{bottom:647.215467pt;}
.y9b{bottom:647.496213pt;}
.y92{bottom:648.059846pt;}
.y151{bottom:651.845333pt;}
.y2e6{bottom:651.850533pt;}
.y2d{bottom:652.708933pt;}
.y26a{bottom:653.434667pt;}
.y1c6{bottom:653.608400pt;}
.y173{bottom:654.013708pt;}
.y244{bottom:655.837200pt;}
.y1f1{bottom:657.000700pt;}
.y9a{bottom:657.926933pt;}
.y30e{bottom:658.156133pt;}
.y370{bottom:658.281973pt;}
.y7{bottom:660.596667pt;}
.y2ae{bottom:660.819067pt;}
.y5f{bottom:661.636400pt;}
.y10c{bottom:665.236267pt;}
.y214{bottom:665.877467pt;}
.y218{bottom:668.304267pt;}
.y150{bottom:670.507333pt;}
.y2e5{bottom:670.512533pt;}
.y2c{bottom:671.370933pt;}
.y269{bottom:672.096667pt;}
.y1c5{bottom:672.270400pt;}
.y308{bottom:672.272471pt;}
.y172{bottom:673.119801pt;}
.y36c{bottom:673.218000pt;}
.y91{bottom:673.269067pt;}
.y2bb{bottom:673.737930pt;}
.y6{bottom:679.258667pt;}
.yab{bottom:680.208667pt;}
.y5e{bottom:680.298400pt;}
.y1f0{bottom:682.539550pt;}
.y36f{bottom:682.958471pt;}
.y213{bottom:684.539467pt;}
.y56{bottom:687.570400pt;}
.y177{bottom:688.273333pt;}
.y1f7{bottom:688.557737pt;}
.y14f{bottom:689.169333pt;}
.y2e4{bottom:689.174533pt;}
.y2b{bottom:690.032933pt;}
.y268{bottom:690.758667pt;}
.y171{bottom:692.225894pt;}
.y2ba{bottom:692.227200pt;}
.y312{bottom:695.263760pt;}
.yee{bottom:695.456000pt;}
.y254{bottom:695.883067pt;}
.y307{bottom:697.381769pt;}
.y5d{bottom:698.960400pt;}
.yf8{bottom:699.942000pt;}
.y1c4{bottom:700.385867pt;}
.y55{bottom:702.900400pt;}
.y212{bottom:703.201467pt;}
.y36b{bottom:705.596612pt;}
.y311{bottom:707.010800pt;}
.y36e{bottom:707.634969pt;}
.ybd{bottom:707.830667pt;}
.y14e{bottom:707.831333pt;}
.y2e3{bottom:707.836533pt;}
.y1ef{bottom:708.078400pt;}
.y1f9{bottom:708.397573pt;}
.y2a{bottom:708.694933pt;}
.y267{bottom:709.420667pt;}
.yf7{bottom:709.639095pt;}
.y170{bottom:711.331987pt;}
.y2f{bottom:714.328267pt;}
.y253{bottom:714.545067pt;}
.y36a{bottom:716.453733pt;}
.y5c{bottom:717.622400pt;}
.y211{bottom:721.863467pt;}
.y306{bottom:722.491067pt;}
.yf9{bottom:723.305600pt;}
.y29d{bottom:723.836933pt;}
.ybc{bottom:726.492667pt;}
.y14d{bottom:726.493333pt;}
.y2e2{bottom:726.498533pt;}
.y29{bottom:727.356933pt;}
.y266{bottom:728.082667pt;}
.y6e{bottom:728.115333pt;}
.yf6{bottom:728.726519pt;}
.y16f{bottom:730.438081pt;}
.y36d{bottom:732.311467pt;}
.y252{bottom:733.207067pt;}
.y179{bottom:733.915629pt;}
.y2fe{bottom:735.488667pt;}
.y5b{bottom:736.284400pt;}
.y1ac{bottom:739.289333pt;}
.y210{bottom:740.525467pt;}
.y1a8{bottom:741.688133pt;}
.y178{bottom:745.052400pt;}
.ybb{bottom:745.154667pt;}
.y14c{bottom:745.155333pt;}
.y2e1{bottom:745.160533pt;}
.y336{bottom:746.204400pt;}
.y6d{bottom:746.777333pt;}
.yf5{bottom:747.813944pt;}
.y1db{bottom:748.240133pt;}
.y1dd{bottom:748.408133pt;}
.y16e{bottom:749.544174pt;}
.y251{bottom:751.869067pt;}
.y5a{bottom:754.946400pt;}
.y28{bottom:755.472400pt;}
.y265{bottom:756.198133pt;}
.y20f{bottom:759.187467pt;}
.y1b5{bottom:760.293957pt;}
.y335{bottom:761.384400pt;}
.y1dc{bottom:763.738133pt;}
.yba{bottom:763.816667pt;}
.y14b{bottom:763.817333pt;}
.y2e0{bottom:763.822533pt;}
.y2fd{bottom:763.852667pt;}
.y6c{bottom:765.439333pt;}
.yf4{bottom:766.901369pt;}
.y16d{bottom:768.650267pt;}
.y250{bottom:770.531067pt;}
.y59{bottom:773.608400pt;}
.yb9{bottom:782.478667pt;}
.y14a{bottom:782.479333pt;}
.y2df{bottom:782.484533pt;}
.y2fc{bottom:782.514667pt;}
.y16c{bottom:783.303733pt;}
.y6b{bottom:784.101333pt;}
.y1b4{bottom:785.221653pt;}
.yf3{bottom:785.988793pt;}
.y20e{bottom:787.302933pt;}
.y1ab{bottom:787.898000pt;}
.y34e{bottom:788.248133pt;}
.y24f{bottom:789.193067pt;}
.y1e3{bottom:790.819200pt;}
.y58{bottom:792.270400pt;}
.y16b{bottom:798.633733pt;}
.y27{bottom:800.411467pt;}
.yb8{bottom:801.140667pt;}
.y149{bottom:801.141333pt;}
.y2de{bottom:801.146533pt;}
.y264{bottom:801.149200pt;}
.y2fb{bottom:801.176667pt;}
.y6a{bottom:802.763333pt;}
.yf2{bottom:805.076218pt;}
.y34d{bottom:806.910133pt;}
.y24e{bottom:807.855067pt;}
.y1e2{bottom:809.481200pt;}
.y1b3{bottom:810.149349pt;}
.y26{bottom:819.073467pt;}
.yb7{bottom:819.802667pt;}
.y148{bottom:819.803333pt;}
.y2dd{bottom:819.808533pt;}
.y263{bottom:819.811200pt;}
.y2fa{bottom:819.838667pt;}
.y57{bottom:820.385867pt;}
.y69{bottom:821.425333pt;}
.yf1{bottom:824.163642pt;}
.y34c{bottom:825.572133pt;}
.y220{bottom:825.826800pt;}
.y186{bottom:826.517067pt;}
.yfb{bottom:827.596762pt;}
.y1e1{bottom:828.143200pt;}
.y1b2{bottom:835.077045pt;}
.y25{bottom:837.735467pt;}
.yb6{bottom:838.464667pt;}
.y147{bottom:838.465333pt;}
.y2dc{bottom:838.470533pt;}
.y262{bottom:838.473200pt;}
.y2f9{bottom:838.500667pt;}
.yfa{bottom:838.722800pt;}
.y68{bottom:840.087333pt;}
.yf0{bottom:843.251067pt;}
.y34b{bottom:844.234133pt;}
.y185{bottom:845.179067pt;}
.y1e0{bottom:846.805200pt;}
.y24{bottom:856.397467pt;}
.yb5{bottom:857.126667pt;}
.y146{bottom:857.127333pt;}
.y2db{bottom:857.132533pt;}
.y261{bottom:857.135200pt;}
.y2f8{bottom:857.162667pt;}
.y67{bottom:858.749333pt;}
.y80{bottom:859.842667pt;}
.y1b1{bottom:860.004741pt;}
.y34a{bottom:862.896133pt;}
.y184{bottom:863.841067pt;}
.y1df{bottom:865.467200pt;}
.y23{bottom:875.059467pt;}
.yb4{bottom:875.788667pt;}
.y145{bottom:875.789333pt;}
.y2da{bottom:875.794533pt;}
.y260{bottom:875.797200pt;}
.y2f7{bottom:875.824667pt;}
.ye3{bottom:877.288133pt;}
.y1aa{bottom:880.693378pt;}
.y349{bottom:881.558133pt;}
.y183{bottom:882.503067pt;}
.y1b0{bottom:884.932437pt;}
.y66{bottom:886.864800pt;}
.y1a9{bottom:891.558400pt;}
.ye2{bottom:892.618133pt;}
.y1de{bottom:893.582667pt;}
.y22{bottom:893.721467pt;}
.yb3{bottom:894.450667pt;}
.y144{bottom:894.451333pt;}
.y2d9{bottom:894.456533pt;}
.y25f{bottom:894.459200pt;}
.y2f6{bottom:894.486667pt;}
.y348{bottom:900.220133pt;}
.y182{bottom:901.165067pt;}
.y1af{bottom:909.860133pt;}
.y21{bottom:912.383467pt;}
.yb2{bottom:913.112667pt;}
.y143{bottom:913.113333pt;}
.y2d8{bottom:913.118533pt;}
.y25e{bottom:913.121200pt;}
.y2f5{bottom:913.148667pt;}
.y347{bottom:918.882133pt;}
.yec{bottom:919.827067pt;}
.y17f{bottom:924.722800pt;}
.y20{bottom:931.045467pt;}
.yb1{bottom:931.774667pt;}
.y142{bottom:931.775333pt;}
.y2d7{bottom:931.780533pt;}
.y25d{bottom:931.783200pt;}
.y1e9{bottom:931.799200pt;}
.y65{bottom:931.808400pt;}
.y2f4{bottom:931.810667pt;}
.y346{bottom:937.544133pt;}
.yeb{bottom:938.489067pt;}
.y17e{bottom:940.052800pt;}
.y1f{bottom:949.707467pt;}
.yb0{bottom:950.436667pt;}
.y141{bottom:950.437333pt;}
.y2d6{bottom:950.442533pt;}
.y25c{bottom:950.445200pt;}
.y1e8{bottom:950.461200pt;}
.y64{bottom:950.470400pt;}
.y2f3{bottom:950.472667pt;}
.y345{bottom:956.206133pt;}
.yea{bottom:957.151067pt;}
.y1e{bottom:968.369467pt;}
.yaf{bottom:969.098667pt;}
.y140{bottom:969.099333pt;}
.y1c3{bottom:969.104533pt;}
.y25b{bottom:969.107200pt;}
.y1e7{bottom:969.123200pt;}
.y63{bottom:969.132400pt;}
.y2f2{bottom:969.134667pt;}
.y344{bottom:974.868133pt;}
.ye9{bottom:975.813067pt;}
.y1d{bottom:987.031467pt;}
.yae{bottom:987.760667pt;}
.y13f{bottom:987.761333pt;}
.y1c2{bottom:987.766533pt;}
.y25a{bottom:987.769200pt;}
.y1e6{bottom:987.785200pt;}
.y62{bottom:987.794400pt;}
.y2f1{bottom:987.796667pt;}
.y343{bottom:993.530133pt;}
.ye8{bottom:994.475067pt;}
.yad{bottom:1006.422667pt;}
.y13e{bottom:1006.423333pt;}
.y1c1{bottom:1006.428533pt;}
.y259{bottom:1006.431200pt;}
.y1e5{bottom:1006.447200pt;}
.y61{bottom:1006.456400pt;}
.y2f0{bottom:1006.458667pt;}
.y1c{bottom:1013.257200pt;}
.y342{bottom:1021.645733pt;}
.ye7{bottom:1022.590533pt;}
.yac{bottom:1025.084667pt;}
.y13d{bottom:1025.085333pt;}
.y1c0{bottom:1025.090533pt;}
.y258{bottom:1025.093200pt;}
.y1e4{bottom:1025.109200pt;}
.y60{bottom:1025.118400pt;}
.y2ef{bottom:1025.120667pt;}
.y1b{bottom:1026.590533pt;}
.y2{bottom:1061.165333pt;}
.y50{bottom:1067.165333pt;}
.h7d{height:24.724640pt;}
.h3b{height:24.758752pt;}
.h82{height:26.232128pt;}
.h3f{height:26.250933pt;}
.h28{height:26.253557pt;}
.h6c{height:26.400501pt;}
.h1f{height:26.451669pt;}
.h17{height:26.510272pt;}
.h69{height:26.536949pt;}
.h2d{height:26.551819pt;}
.h56{height:26.565813pt;}
.h59{height:26.574123pt;}
.h1b{height:28.510635pt;}
.h80{height:31.852736pt;}
.h81{height:31.853173pt;}
.h40{height:31.875915pt;}
.h43{height:31.876352pt;}
.h29{height:31.878539pt;}
.h2c{height:31.878976pt;}
.h6b{height:32.057408pt;}
.h73{height:32.108576pt;}
.h1c{height:32.119947pt;}
.h5c{height:32.132192pt;}
.h7c{height:32.186859pt;}
.h16{height:32.190357pt;}
.h15{height:32.190795pt;}
.h47{height:32.195605pt;}
.h45{height:32.196043pt;}
.h67{height:32.223595pt;}
.h3c{height:32.231467pt;}
.h2e{height:32.241525pt;}
.h54{height:32.255520pt;}
.h5a{height:32.268203pt;}
.h58{height:32.268640pt;}
.h76{height:32.300128pt;}
.h77{height:32.300565pt;}
.h1a{height:32.311936pt;}
.h35{height:32.340800pt;}
.he{height:32.366165pt;}
.h60{height:32.418645pt;}
.h23{height:32.469813pt;}
.hc{height:32.518357pt;}
.h4e{height:32.612384pt;}
.h4f{height:32.612821pt;}
.h25{height:32.641685pt;}
.h4c{height:32.657867pt;}
.h66{height:32.668363pt;}
.h38{height:32.673173pt;}
.h36{height:32.673611pt;}
.h31{height:33.663168pt;}
.h72{height:33.997419pt;}
.h5d{height:34.022347pt;}
.h46{height:34.089259pt;}
.h48{height:34.089696pt;}
.h19{height:34.212587pt;}
.h34{height:34.243200pt;}
.h8{height:34.346667pt;}
.h22{height:34.379648pt;}
.hb{height:34.430816pt;}
.h78{height:34.450147pt;}
.hf{height:34.520633pt;}
.h61{height:34.577021pt;}
.h4b{height:34.579072pt;}
.h65{height:34.590005pt;}
.h7{height:34.608000pt;}
.h50{height:34.783190pt;}
.h26{height:34.814909pt;}
.h37{height:34.848389pt;}
.h7f{height:35.600245pt;}
.h42{height:35.626485pt;}
.h2b{height:35.629547pt;}
.h6e{height:35.828971pt;}
.h1e{height:35.898944pt;}
.h7b{height:35.973728pt;}
.h14{height:35.978101pt;}
.h6a{height:36.014837pt;}
.h3e{height:36.023147pt;}
.h30{height:36.034517pt;}
.h55{height:36.050261pt;}
.h5b{height:36.065131pt;}
.h75{height:36.100555pt;}
.h11{height:36.174027pt;}
.h62{height:36.232629pt;}
.h51{height:36.449547pt;}
.h27{height:36.481909pt;}
.h3a{height:36.517771pt;}
.h6f{height:38.640000pt;}
.h79{height:39.972240pt;}
.h52{height:40.372155pt;}
.h4{height:40.376000pt;}
.h71{height:41.552352pt;}
.h33{height:41.852363pt;}
.h21{height:42.019861pt;}
.ha{height:42.082400pt;}
.h4a{height:42.263456pt;}
.h64{height:42.276576pt;}
.h2{height:42.933333pt;}
.h12{height:43.733333pt;}
.h5{height:45.080000pt;}
.h6{height:56.853333pt;}
.hd{height:61.665909pt;}
.h3{height:69.973333pt;}
.h70{height:172.800000pt;}
.h44{height:172.934667pt;}
.h20{height:173.768000pt;}
.h5e{height:173.800000pt;}
.h9{height:174.136000pt;}
.h49{height:174.516000pt;}
.h32{height:174.529333pt;}
.h10{height:174.570667pt;}
.h24{height:175.068000pt;}
.h4d{height:175.698667pt;}
.h18{height:176.022667pt;}
.h39{height:177.842667pt;}
.h2a{height:180.090667pt;}
.h13{height:180.276000pt;}
.h2f{height:180.653333pt;}
.h57{height:181.038667pt;}
.h1d{height:181.132000pt;}
.h3d{height:181.374667pt;}
.h41{height:181.856000pt;}
.h53{height:181.926667pt;}
.h7a{height:193.109333pt;}
.h5f{height:211.829333pt;}
.h7e{height:218.909333pt;}
.h74{height:226.342667pt;}
.h63{height:236.872000pt;}
.h68{height:249.581333pt;}
.h6d{height:269.245333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w1b{width:352.978667pt;}
.w1a{width:353.370667pt;}
.w4{width:354.008000pt;}
.w18{width:354.301333pt;}
.w9{width:354.753333pt;}
.w17{width:355.288000pt;}
.we{width:355.462667pt;}
.wb{width:355.650667pt;}
.w6{width:355.689333pt;}
.w16{width:356.758667pt;}
.wf{width:357.620000pt;}
.w7{width:358.300000pt;}
.w2{width:358.337333pt;}
.w5{width:359.054667pt;}
.w3{width:359.236000pt;}
.w10{width:359.413333pt;}
.w11{width:359.450667pt;}
.w19{width:359.486667pt;}
.w14{width:359.594667pt;}
.w12{width:360.849333pt;}
.w13{width:360.852000pt;}
.wd{width:361.193333pt;}
.w8{width:361.738667pt;}
.wa{width:362.289333pt;}
.wc{width:362.404000pt;}
.w15{width:364.205333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:2.969733pt;}
.x7d{left:8.003710pt;}
.xc1{left:9.830400pt;}
.x1e{left:11.911867pt;}
.x7{left:14.941733pt;}
.x16{left:16.227600pt;}
.xa6{left:20.390667pt;}
.xa2{left:21.601600pt;}
.x81{left:22.867600pt;}
.xa5{left:27.665333pt;}
.x6{left:33.336000pt;}
.x9{left:36.305733pt;}
.x73{left:37.794667pt;}
.x4d{left:38.929333pt;}
.xa{left:41.391684pt;}
.x82{left:42.775761pt;}
.x5{left:43.716533pt;}
.x1f{left:44.817600pt;}
.x74{left:45.782920pt;}
.x4e{left:47.015906pt;}
.x1{left:48.000000pt;}
.xc{left:49.916133pt;}
.x1a{left:52.912133pt;}
.xe{left:54.281285pt;}
.x21{left:60.431733pt;}
.x83{left:62.683923pt;}
.x7b{left:63.898533pt;}
.x22{left:70.365003pt;}
.x84{left:72.638003pt;}
.x23{left:80.298273pt;}
.xb{left:81.542667pt;}
.x85{left:82.592084pt;}
.x76{left:85.870133pt;}
.x4f{left:87.007733pt;}
.x24{left:90.231542pt;}
.x72{left:91.398667pt;}
.x50{left:92.732667pt;}
.x9e{left:97.783733pt;}
.x25{left:100.164812pt;}
.x86{left:102.500245pt;}
.xf{left:103.796000pt;}
.x26{left:110.098081pt;}
.x87{left:112.454326pt;}
.x27{left:120.031351pt;}
.x88{left:122.408407pt;}
.x7a{left:124.896694pt;}
.x28{left:129.964621pt;}
.x89{left:132.362487pt;}
.x29{left:139.897890pt;}
.x49{left:142.875733pt;}
.x2a{left:149.831160pt;}
.x8a{left:152.270649pt;}
.x2b{left:159.764429pt;}
.x8b{left:162.224729pt;}
.x2c{left:169.697699pt;}
.x8c{left:172.178810pt;}
.x2d{left:179.630969pt;}
.x8d{left:182.132891pt;}
.x2e{left:189.564238pt;}
.x8e{left:192.086971pt;}
.x2f{left:199.497508pt;}
.x8f{left:202.041052pt;}
.x79{left:204.061467pt;}
.x10{left:207.709376pt;}
.x30{left:209.430777pt;}
.x90{left:211.995133pt;}
.x11{left:215.525632pt;}
.x31{left:219.364047pt;}
.x91{left:221.949213pt;}
.x32{left:229.297317pt;}
.x92{left:231.903294pt;}
.x4a{left:235.594007pt;}
.x33{left:239.230586pt;}
.x93{left:241.857375pt;}
.x34{left:249.163856pt;}
.x94{left:251.811455pt;}
.x35{left:259.097125pt;}
.x95{left:261.765536pt;}
.x36{left:269.030395pt;}
.x96{left:271.719617pt;}
.x37{left:278.963665pt;}
.x97{left:281.673697pt;}
.x38{left:288.896934pt;}
.x98{left:291.627778pt;}
.x39{left:298.830204pt;}
.x99{left:301.581859pt;}
.x3a{left:308.763473pt;}
.x9a{left:311.535939pt;}
.x3b{left:318.696743pt;}
.x9b{left:321.490020pt;}
.x3c{left:328.630013pt;}
.x9c{left:331.444101pt;}
.x3d{left:338.563282pt;}
.x7c{left:340.522400pt;}
.x80{left:342.449600pt;}
.x3e{left:348.496552pt;}
.x9d{left:351.425156pt;}
.x3f{left:358.429821pt;}
.x40{left:368.363091pt;}
.xd{left:371.900829pt;}
.x41{left:378.296361pt;}
.xc2{left:379.232400pt;}
.x20{left:380.573067pt;}
.x9f{left:382.932667pt;}
.x42{left:388.245795pt;}
.x15{left:390.273333pt;}
.xbc{left:391.748000pt;}
.x12{left:393.230400pt;}
.xbb{left:395.526667pt;}
.x43{left:396.548000pt;}
.x13{left:398.292547pt;}
.x44{left:399.499467pt;}
.xa0{left:401.151553pt;}
.x3{left:402.396000pt;}
.x78{left:403.613806pt;}
.x45{left:404.553132pt;}
.x2{left:405.462000pt;}
.x1c{left:407.308800pt;}
.xbd{left:408.319784pt;}
.x1b{left:410.458133pt;}
.x7e{left:412.422000pt;}
.xa9{left:417.386667pt;}
.x51{left:419.272533pt;}
.xaa{left:427.262708pt;}
.x52{left:429.093605pt;}
.xa3{left:437.534000pt;}
.x14{left:439.069333pt;}
.xbf{left:442.750933pt;}
.xa4{left:443.956133pt;}
.x46{left:445.168800pt;}
.xa1{left:446.676533pt;}
.x53{left:448.735748pt;}
.xba{left:450.202667pt;}
.x70{left:455.621467pt;}
.xab{left:456.890831pt;}
.x54{left:458.556820pt;}
.xac{left:466.766873pt;}
.x55{left:468.377891pt;}
.xad{left:476.642914pt;}
.x56{left:478.198963pt;}
.xae{left:486.518955pt;}
.x57{left:488.020035pt;}
.xaf{left:496.394996pt;}
.x58{left:497.841106pt;}
.xb0{left:506.271037pt;}
.x59{left:507.662178pt;}
.xb1{left:516.147079pt;}
.x5a{left:517.483249pt;}
.xb2{left:526.023120pt;}
.x5b{left:527.304321pt;}
.xb3{left:535.899161pt;}
.x5c{left:537.125393pt;}
.xb4{left:545.775202pt;}
.x5d{left:546.946464pt;}
.x19{left:550.957333pt;}
.xb5{left:555.651243pt;}
.x5e{left:556.767536pt;}
.xb6{left:565.527285pt;}
.x5f{left:566.588607pt;}
.xc0{left:570.674667pt;}
.xb7{left:575.403326pt;}
.x60{left:576.409679pt;}
.xb8{left:585.279367pt;}
.x61{left:586.230751pt;}
.xb9{left:595.155408pt;}
.x62{left:596.051822pt;}
.x48{left:600.034667pt;}
.x63{left:605.872894pt;}
.x64{left:615.693965pt;}
.x65{left:625.515037pt;}
.x66{left:635.336109pt;}
.x67{left:645.157180pt;}
.x68{left:654.978252pt;}
.x69{left:664.799323pt;}
.x6a{left:674.620395pt;}
.x6b{left:684.441467pt;}
.x6c{left:694.262538pt;}
.x6d{left:704.083610pt;}
.x7f{left:711.061867pt;}
.xa7{left:712.103467pt;}
.x4c{left:713.779333pt;}
.x77{left:715.969200pt;}
.x6e{left:723.725753pt;}
.x75{left:726.867467pt;}
.x17{left:729.450933pt;}
.xbe{left:730.859200pt;}
.x4b{left:732.687600pt;}
.x47{left:734.621067pt;}
.xa8{left:735.731067pt;}
.x71{left:736.982933pt;}
.x18{left:739.194267pt;}
.x6f{left:743.367896pt;}
.x4{left:751.621467pt;}
.x1d{left:756.536000pt;}
}




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