
    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_c1af0fe5c9d45232f695218d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.102051;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_864713222727d46ee2fb598a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_6a208e8a2917f21082cc2ef5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.887000;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_09c384e29b6d0d5bd4c62d16.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102051;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_e3b6ba2ec5dacae928afdb87.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.102051;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_bdf03d82a09f2f4732d84b60.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.103027;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_d5eb58b1024a8b95f373ab34.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.031738;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_b288dea800988687b823c89e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.110352;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_be01da69919073e0f08b196c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.110352;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_8af35abc1078a3ad73a56c90.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.027344;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_7e997a5d0d2a6f1d6bf64033.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.102051;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_a2be5380d3e8753db91cc708.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.770020;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_51cfc8c70b9291c8a3c2bc5e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.023926;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_4b7b5d1c6038999b346c4cf1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.710938;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_451b9df75b6c52536747903c.woff2')format("woff");}.fff{font-family:fff;line-height:1.103043;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_940ce309008547ceed901035.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.103043;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_92be7de150ba790dc519ce45.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.102051;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_ac4cf7ee3a675399a539771d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.103027;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_0a53cc421f466005199c676a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.847000;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_dda8eee7f2a3db9b840f7998.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.102051;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_4c60ccfb3970a4cd5d233203.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.976675;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_88beba478ba3d5da5df7bae3.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.110352;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_e5c7bc8f0cc6f3e105037274.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.110352;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_0b91a7572a76c7738fd3aee4.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.102051;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_b084b44034762a78f33422e3.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.103027;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_ef9f3ee28af4259eb15138f1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.102051;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_2fbce3d11a9473fb10222aab.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.103027;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_a20051693503fce185f4d5ec.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.102051;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_f9fed9709bccb3a2613c569d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.102051;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_e5918bfc1948ba530025298d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.027344;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_039c4346648de03d3592eac7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.103027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_33f7c82471f44429d45b7608.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_8cde9448f523415011d3a7df.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_7fb83dd1e3a083e636b2cfd7.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_497e97408790f465fe73436b.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.899431;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_1887a4571a23738c955f1005.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.103043;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_c2295a0d21fe2988acffeecc.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.103043;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_56f0132bfd99537de7c5703c.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.023926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_414efbdee7859e908798726c.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.229333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229333,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);}
.m3{transform:matrix(0.262827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262827,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-96.074400px;}
.v2{vertical-align:-12.015000px;}
.v5{vertical-align:-7.824000px;}
.v3{vertical-align:-5.994000px;}
.v6{vertical-align:-1.497000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.994000px;}
.v7{vertical-align:8.489400px;}
.ls3{letter-spacing:-4.592700px;}
.ls1{letter-spacing:-4.337550px;}
.ls25{letter-spacing:-4.050000px;}
.ls2{letter-spacing:-3.827250px;}
.ls2d{letter-spacing:-2.484000px;}
.ls14{letter-spacing:-1.620000px;}
.ls4e{letter-spacing:-1.350000px;}
.ls15{letter-spacing:-0.918000px;}
.ls2f{letter-spacing:-0.864000px;}
.ls4d{letter-spacing:-0.810000px;}
.ls2a{letter-spacing:-0.702000px;}
.ls16{letter-spacing:-0.648000px;}
.ls4a{letter-spacing:-0.587160px;}
.ls2e{letter-spacing:-0.540000px;}
.ls50{letter-spacing:-0.522000px;}
.ls46{letter-spacing:-0.461341px;}
.ls47{letter-spacing:-0.419399px;}
.ls43{letter-spacing:-0.381377px;}
.ls3b{letter-spacing:-0.378000px;}
.ls45{letter-spacing:-0.377462px;}
.ls48{letter-spacing:-0.359485px;}
.ls42{letter-spacing:-0.326894px;}
.ls30{letter-spacing:-0.324000px;}
.ls44{letter-spacing:-0.323539px;}
.ls1f{letter-spacing:-0.315000px;}
.ls49{letter-spacing:-0.314551px;}
.ls2b{letter-spacing:-0.270000px;}
.ls41{letter-spacing:-0.269615px;}
.ls1e{letter-spacing:-0.225000px;}
.ls2c{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.108000px;}
.ls3a{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.054000px;}
.ls37{letter-spacing:0.084000px;}
.ls38{letter-spacing:0.086080px;}
.ls9{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.270000px;}
.lsc{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.378000px;}
.ls35{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.576000px;}
.ls36{letter-spacing:0.594000px;}
.lsd{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.702000px;}
.ls29{letter-spacing:0.756000px;}
.ls1a{letter-spacing:0.810000px;}
.ls34{letter-spacing:0.864000px;}
.ls26{letter-spacing:0.918000px;}
.ls27{letter-spacing:0.931800px;}
.ls8{letter-spacing:0.972000px;}
.lse{letter-spacing:1.026000px;}
.ls22{letter-spacing:1.080000px;}
.ls3c{letter-spacing:1.083886px;}
.ls3e{letter-spacing:1.084486px;}
.ls3d{letter-spacing:1.123395px;}
.ls17{letter-spacing:1.242000px;}
.ls5{letter-spacing:1.296000px;}
.ls20{letter-spacing:1.404000px;}
.ls40{letter-spacing:1.428000px;}
.ls4f{letter-spacing:1.458000px;}
.ls4{letter-spacing:1.944000px;}
.ls21{letter-spacing:2.268000px;}
.ls19{letter-spacing:2.538000px;}
.ls4c{letter-spacing:2.562000px;}
.ls39{letter-spacing:2.592000px;}
.ls1b{letter-spacing:2.646000px;}
.ls10{letter-spacing:2.754000px;}
.ls4b{letter-spacing:2.772000px;}
.ls18{letter-spacing:2.808000px;}
.ls24{letter-spacing:2.862000px;}
.ls7{letter-spacing:2.916000px;}
.ls31{letter-spacing:3.024000px;}
.ls11{letter-spacing:3.078000px;}
.ls23{letter-spacing:3.240000px;}
.ls33{letter-spacing:3.456000px;}
.ls32{letter-spacing:13.068000px;}
.ls3f{letter-spacing:1176.096363px;}
.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;}
}
.ws1b0{word-spacing:-54.482400px;}
.wsa{word-spacing:-54.000000px;}
.ws168{word-spacing:-45.000000px;}
.ws1bc{word-spacing:-44.935800px;}
.ws92{word-spacing:-44.820000px;}
.ws1bf{word-spacing:-20.298960px;}
.ws1f9{word-spacing:-17.856000px;}
.wsd3{word-spacing:-16.524000px;}
.ws14f{word-spacing:-16.362000px;}
.ws4a{word-spacing:-16.254000px;}
.ws9{word-spacing:-16.200000px;}
.ws8d{word-spacing:-16.092000px;}
.ws4b{word-spacing:-15.984000px;}
.ws1b8{word-spacing:-14.918636px;}
.ws1fb{word-spacing:-14.904000px;}
.ws1b9{word-spacing:-14.559151px;}
.ws1b7{word-spacing:-14.499236px;}
.ws8f{word-spacing:-14.364000px;}
.ws151{word-spacing:-14.310000px;}
.ws91{word-spacing:-14.202000px;}
.wsd2{word-spacing:-14.148000px;}
.ws4c{word-spacing:-13.932000px;}
.wsd1{word-spacing:-13.770000px;}
.wsd4{word-spacing:-13.662000px;}
.ws7e{word-spacing:-13.446000px;}
.ws1b2{word-spacing:-13.426877px;}
.ws90{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.338000px;}
.wsad{word-spacing:-13.284000px;}
.wsac{word-spacing:-13.176000px;}
.ws7{word-spacing:-13.122000px;}
.ws150{word-spacing:-13.068000px;}
.ws1b1{word-spacing:-13.049414px;}
.ws8e{word-spacing:-13.014000px;}
.ws20b{word-spacing:-12.945600px;}
.wsb{word-spacing:-12.690000px;}
.ws134{word-spacing:-12.150000px;}
.ws4d{word-spacing:-11.952000px;}
.ws5{word-spacing:-11.205000px;}
.ws1b3{word-spacing:-11.189014px;}
.ws6{word-spacing:-11.160000px;}
.ws1af{word-spacing:-11.144078px;}
.ws1be{word-spacing:-11.099143px;}
.ws1fa{word-spacing:-11.025000px;}
.ws1ba{word-spacing:-11.009271px;}
.ws135{word-spacing:-10.935000px;}
.ws7c{word-spacing:-10.890000px;}
.ws198{word-spacing:-10.845000px;}
.ws1bb{word-spacing:-10.739656px;}
.ws1bd{word-spacing:-10.694720px;}
.ws79{word-spacing:-10.458000px;}
.ws1c0{word-spacing:-10.416000px;}
.ws1d0{word-spacing:-10.290000px;}
.ws209{word-spacing:-7.290000px;}
.ws11b{word-spacing:-6.858000px;}
.ws32{word-spacing:-6.696000px;}
.ws4e{word-spacing:-6.102000px;}
.ws16e{word-spacing:-5.778000px;}
.ws1a8{word-spacing:-5.022000px;}
.wsc1{word-spacing:-4.428000px;}
.ws117{word-spacing:-3.834000px;}
.ws1ef{word-spacing:-3.780000px;}
.wsc2{word-spacing:-3.672000px;}
.ws76{word-spacing:-3.618000px;}
.ws1e6{word-spacing:-3.564000px;}
.ws18f{word-spacing:-3.456000px;}
.ws75{word-spacing:-3.402000px;}
.ws126{word-spacing:-3.240000px;}
.ws1ac{word-spacing:-3.186000px;}
.wsed{word-spacing:-3.132000px;}
.ws5e{word-spacing:-3.024000px;}
.wsc{word-spacing:-2.916000px;}
.ws180{word-spacing:-2.862000px;}
.wsf9{word-spacing:-2.808000px;}
.ws70{word-spacing:-2.754000px;}
.wseb{word-spacing:-2.646000px;}
.ws136{word-spacing:-2.592000px;}
.ws153{word-spacing:-2.484000px;}
.ws18a{word-spacing:-2.430000px;}
.ws5b{word-spacing:-2.376000px;}
.ws4f{word-spacing:-2.322000px;}
.ws93{word-spacing:-2.268000px;}
.ws181{word-spacing:-2.214000px;}
.ws179{word-spacing:-2.160000px;}
.ws28{word-spacing:-2.106000px;}
.ws111{word-spacing:-2.052000px;}
.ws14e{word-spacing:-1.998000px;}
.ws27{word-spacing:-1.944000px;}
.ws9d{word-spacing:-1.890000px;}
.ws30{word-spacing:-1.836000px;}
.ws1cf{word-spacing:-1.806000px;}
.ws8c{word-spacing:-1.782000px;}
.ws18b{word-spacing:-1.728000px;}
.ws64{word-spacing:-1.674000px;}
.ws18e{word-spacing:-1.620000px;}
.ws1ce{word-spacing:-1.584000px;}
.ws62{word-spacing:-1.566000px;}
.wsb5{word-spacing:-1.512000px;}
.ws66{word-spacing:-1.458000px;}
.ws52{word-spacing:-1.404000px;}
.ws137{word-spacing:-1.242000px;}
.ws1fc{word-spacing:-1.188000px;}
.wsbf{word-spacing:-1.134000px;}
.wsab{word-spacing:-1.080000px;}
.ws25{word-spacing:-1.026000px;}
.ws20d{word-spacing:-0.991800px;}
.wsaa{word-spacing:-0.972000px;}
.wsce{word-spacing:-0.918000px;}
.ws53{word-spacing:-0.864000px;}
.wsa4{word-spacing:-0.810000px;}
.ws125{word-spacing:-0.756000px;}
.ws9c{word-spacing:-0.702000px;}
.ws24{word-spacing:-0.648000px;}
.ws170{word-spacing:-0.594000px;}
.ws26{word-spacing:-0.576000px;}
.ws23{word-spacing:-0.540000px;}
.ws88{word-spacing:-0.486000px;}
.ws1fd{word-spacing:-0.432000px;}
.ws51{word-spacing:-0.378000px;}
.ws22{word-spacing:-0.324000px;}
.ws5d{word-spacing:-0.270000px;}
.wsb4{word-spacing:-0.216000px;}
.ws184{word-spacing:-0.162000px;}
.ws14{word-spacing:-0.108000px;}
.ws208{word-spacing:-0.090000px;}
.ws17f{word-spacing:-0.086080px;}
.ws17e{word-spacing:-0.084000px;}
.ws1b6{word-spacing:-0.065906px;}
.ws1b4{word-spacing:-0.059914px;}
.ws143{word-spacing:-0.054000px;}
.ws1c8{word-spacing:-0.044936px;}
.ws1{word-spacing:0.000000px;}
.ws1d7{word-spacing:0.054000px;}
.ws6c{word-spacing:0.108000px;}
.wsa1{word-spacing:0.162000px;}
.wsd5{word-spacing:0.216000px;}
.ws1c1{word-spacing:0.269615px;}
.ws1c7{word-spacing:0.314551px;}
.ws7f{word-spacing:0.315000px;}
.ws1c3{word-spacing:0.323539px;}
.ws145{word-spacing:0.324000px;}
.ws1c2{word-spacing:0.326894px;}
.ws1c6{word-spacing:0.359485px;}
.ws1c4{word-spacing:0.377462px;}
.ws12{word-spacing:0.378000px;}
.ws1b5{word-spacing:0.395435px;}
.ws1c5{word-spacing:0.419399px;}
.ws113{word-spacing:0.432000px;}
.ws1d8{word-spacing:0.486000px;}
.ws20c{word-spacing:0.522000px;}
.ws193{word-spacing:0.540000px;}
.ws1c9{word-spacing:0.587160px;}
.ws13d{word-spacing:0.594000px;}
.wsd6{word-spacing:0.648000px;}
.ws80{word-spacing:0.756000px;}
.wscb{word-spacing:0.810000px;}
.ws1cc{word-spacing:0.864000px;}
.ws18c{word-spacing:0.918000px;}
.wsf4{word-spacing:0.972000px;}
.wsb3{word-spacing:1.026000px;}
.ws6f{word-spacing:1.080000px;}
.ws10{word-spacing:1.134000px;}
.wsf7{word-spacing:1.188000px;}
.ws13{word-spacing:1.242000px;}
.ws45{word-spacing:1.296000px;}
.wsaf{word-spacing:1.350000px;}
.ws60{word-spacing:1.404000px;}
.wse{word-spacing:1.458000px;}
.ws1d2{word-spacing:1.512000px;}
.ws5f{word-spacing:1.566000px;}
.ws166{word-spacing:1.620000px;}
.ws103{word-spacing:1.674000px;}
.ws1df{word-spacing:1.728000px;}
.ws40{word-spacing:1.782000px;}
.ws3b{word-spacing:1.836000px;}
.ws21{word-spacing:1.944000px;}
.ws11{word-spacing:2.052000px;}
.ws101{word-spacing:2.106000px;}
.ws1db{word-spacing:2.160000px;}
.ws12e{word-spacing:2.268000px;}
.ws6e{word-spacing:2.322000px;}
.wsdf{word-spacing:2.376000px;}
.wsf8{word-spacing:2.430000px;}
.ws3a{word-spacing:2.484000px;}
.wscd{word-spacing:2.538000px;}
.ws139{word-spacing:2.646000px;}
.ws50{word-spacing:2.700000px;}
.wsc4{word-spacing:2.754000px;}
.wsba{word-spacing:2.862000px;}
.ws141{word-spacing:2.916000px;}
.wsd0{word-spacing:2.970000px;}
.wse3{word-spacing:3.078000px;}
.wsf0{word-spacing:3.132000px;}
.ws1ea{word-spacing:3.186000px;}
.wsb0{word-spacing:3.240000px;}
.ws5c{word-spacing:3.294000px;}
.wsde{word-spacing:3.348000px;}
.ws84{word-spacing:3.456000px;}
.ws177{word-spacing:3.510000px;}
.ws1e7{word-spacing:3.564000px;}
.ws183{word-spacing:3.618000px;}
.wsef{word-spacing:3.672000px;}
.ws3f{word-spacing:3.726000px;}
.ws74{word-spacing:3.780000px;}
.ws3{word-spacing:3.827250px;}
.ws15f{word-spacing:3.834000px;}
.ws1a2{word-spacing:3.888000px;}
.wsea{word-spacing:3.942000px;}
.wsbb{word-spacing:3.996000px;}
.wsa2{word-spacing:4.050000px;}
.ws1e{word-spacing:4.104000px;}
.wsfe{word-spacing:4.158000px;}
.ws61{word-spacing:4.212000px;}
.ws192{word-spacing:4.266000px;}
.ws2{word-spacing:4.337550px;}
.ws17b{word-spacing:4.374000px;}
.wsf1{word-spacing:4.428000px;}
.wsc5{word-spacing:4.482000px;}
.ws4{word-spacing:4.592700px;}
.ws138{word-spacing:4.644000px;}
.ws49{word-spacing:4.752000px;}
.ws1ae{word-spacing:4.806000px;}
.ws148{word-spacing:4.860000px;}
.ws39{word-spacing:4.914000px;}
.ws33{word-spacing:4.968000px;}
.ws157{word-spacing:5.022000px;}
.ws6d{word-spacing:5.076000px;}
.wsb9{word-spacing:5.130000px;}
.ws10b{word-spacing:5.184000px;}
.ws2d{word-spacing:5.238000px;}
.ws1ad{word-spacing:5.292000px;}
.ws1d5{word-spacing:5.346000px;}
.wsc3{word-spacing:5.400000px;}
.ws188{word-spacing:5.454000px;}
.ws63{word-spacing:5.508000px;}
.ws86{word-spacing:5.562000px;}
.ws87{word-spacing:5.616000px;}
.ws124{word-spacing:5.670000px;}
.wsa0{word-spacing:5.724000px;}
.ws67{word-spacing:5.778000px;}
.ws2b{word-spacing:5.832000px;}
.ws16b{word-spacing:5.886000px;}
.wsf5{word-spacing:5.940000px;}
.ws73{word-spacing:5.994000px;}
.wsee{word-spacing:6.048000px;}
.ws1e5{word-spacing:6.156000px;}
.ws1c{word-spacing:6.210000px;}
.ws127{word-spacing:6.264000px;}
.ws12a{word-spacing:6.372000px;}
.ws3c{word-spacing:6.426000px;}
.ws8b{word-spacing:6.534000px;}
.wsf2{word-spacing:6.588000px;}
.ws108{word-spacing:6.642000px;}
.ws2e{word-spacing:6.696000px;}
.ws189{word-spacing:6.750000px;}
.ws2f{word-spacing:6.804000px;}
.ws3d{word-spacing:6.858000px;}
.ws195{word-spacing:6.912000px;}
.ws2a{word-spacing:6.966000px;}
.ws16{word-spacing:7.020000px;}
.ws149{word-spacing:7.074000px;}
.ws13c{word-spacing:7.128000px;}
.wsc7{word-spacing:7.182000px;}
.ws17c{word-spacing:7.236000px;}
.ws81{word-spacing:7.290000px;}
.ws1d3{word-spacing:7.344000px;}
.ws11a{word-spacing:7.452000px;}
.ws29{word-spacing:7.506000px;}
.ws154{word-spacing:7.560000px;}
.ws115{word-spacing:7.614000px;}
.ws110{word-spacing:7.668000px;}
.ws112{word-spacing:7.722000px;}
.ws1ab{word-spacing:7.830000px;}
.ws10e{word-spacing:7.884000px;}
.ws206{word-spacing:7.992000px;}
.ws95{word-spacing:8.046000px;}
.wsf6{word-spacing:8.154000px;}
.ws129{word-spacing:8.208000px;}
.ws96{word-spacing:8.262000px;}
.ws72{word-spacing:8.316000px;}
.ws19e{word-spacing:8.370000px;}
.ws85{word-spacing:8.424000px;}
.ws65{word-spacing:8.478000px;}
.ws59{word-spacing:8.532000px;}
.ws13e{word-spacing:8.586000px;}
.ws15c{word-spacing:8.640000px;}
.ws172{word-spacing:8.694000px;}
.ws128{word-spacing:8.748000px;}
.ws10f{word-spacing:8.802000px;}
.ws100{word-spacing:8.856000px;}
.ws17a{word-spacing:9.018000px;}
.ws12c{word-spacing:9.072000px;}
.ws147{word-spacing:9.126000px;}
.wsae{word-spacing:9.180000px;}
.ws14a{word-spacing:9.234000px;}
.ws3e{word-spacing:9.288000px;}
.wsf{word-spacing:9.342000px;}
.ws83{word-spacing:9.504000px;}
.wsff{word-spacing:9.558000px;}
.ws13b{word-spacing:9.666000px;}
.ws140{word-spacing:9.720000px;}
.ws13a{word-spacing:9.828000px;}
.wsbc{word-spacing:9.882000px;}
.ws12d{word-spacing:9.936000px;}
.wscf{word-spacing:9.990000px;}
.wsd{word-spacing:10.098000px;}
.ws9b{word-spacing:10.152000px;}
.ws185{word-spacing:10.206000px;}
.ws109{word-spacing:10.314000px;}
.ws5a{word-spacing:10.368000px;}
.ws15{word-spacing:10.422000px;}
.ws16d{word-spacing:10.476000px;}
.ws89{word-spacing:10.584000px;}
.ws1a4{word-spacing:10.692000px;}
.ws54{word-spacing:10.746000px;}
.ws167{word-spacing:10.800000px;}
.ws99{word-spacing:10.854000px;}
.ws1e3{word-spacing:10.908000px;}
.ws190{word-spacing:10.962000px;}
.ws1f0{word-spacing:11.016000px;}
.wsc8{word-spacing:11.070000px;}
.wsf3{word-spacing:11.124000px;}
.wsca{word-spacing:11.178000px;}
.ws152{word-spacing:11.232000px;}
.ws10c{word-spacing:11.286000px;}
.wsfb{word-spacing:11.340000px;}
.ws1d{word-spacing:11.394000px;}
.ws19a{word-spacing:11.402400px;}
.wsc9{word-spacing:11.448000px;}
.ws17d{word-spacing:11.556000px;}
.ws71{word-spacing:11.610000px;}
.ws12f{word-spacing:11.664000px;}
.ws175{word-spacing:11.718000px;}
.ws186{word-spacing:11.772000px;}
.ws1cd{word-spacing:11.826000px;}
.wsfc{word-spacing:11.880000px;}
.ws1a3{word-spacing:12.042000px;}
.wsb7{word-spacing:12.150000px;}
.ws11f{word-spacing:12.204000px;}
.ws1d4{word-spacing:12.258000px;}
.wsa3{word-spacing:12.366000px;}
.wse4{word-spacing:12.420000px;}
.ws8a{word-spacing:12.474000px;}
.ws69{word-spacing:12.528000px;}
.ws1f{word-spacing:12.582000px;}
.wscc{word-spacing:12.690000px;}
.ws1a1{word-spacing:12.744000px;}
.ws194{word-spacing:12.798000px;}
.ws1b{word-spacing:12.852000px;}
.ws9f{word-spacing:12.906000px;}
.ws1ec{word-spacing:12.960000px;}
.ws114{word-spacing:13.014000px;}
.ws196{word-spacing:13.068000px;}
.ws104{word-spacing:13.122000px;}
.ws1a{word-spacing:13.176000px;}
.ws13f{word-spacing:13.230000px;}
.wsb2{word-spacing:13.284000px;}
.ws1a0{word-spacing:13.338000px;}
.ws14b{word-spacing:13.392000px;}
.ws9e{word-spacing:13.446000px;}
.ws10d{word-spacing:13.500000px;}
.ws162{word-spacing:13.608000px;}
.ws41{word-spacing:13.716000px;}
.ws1f8{word-spacing:13.770000px;}
.ws121{word-spacing:13.824000px;}
.wsec{word-spacing:13.932000px;}
.ws19{word-spacing:13.986000px;}
.ws19f{word-spacing:14.040000px;}
.ws1ed{word-spacing:14.094000px;}
.ws56{word-spacing:14.202000px;}
.ws98{word-spacing:14.310000px;}
.ws1ca{word-spacing:14.364000px;}
.ws132{word-spacing:14.418000px;}
.wsfa{word-spacing:14.472000px;}
.ws14c{word-spacing:14.580000px;}
.ws176{word-spacing:14.634000px;}
.wsbe{word-spacing:14.796000px;}
.ws44{word-spacing:14.850000px;}
.ws11d{word-spacing:14.904000px;}
.ws144{word-spacing:14.958000px;}
.ws12b{word-spacing:15.120000px;}
.ws42{word-spacing:15.174000px;}
.ws1e4{word-spacing:15.228000px;}
.ws118{word-spacing:15.444000px;}
.ws17{word-spacing:15.552000px;}
.ws55{word-spacing:15.606000px;}
.wse7{word-spacing:15.660000px;}
.ws16c{word-spacing:15.714000px;}
.ws133{word-spacing:15.822000px;}
.ws207{word-spacing:15.876000px;}
.wsdd{word-spacing:15.930000px;}
.ws48{word-spacing:15.984000px;}
.ws77{word-spacing:16.038000px;}
.ws18{word-spacing:16.092000px;}
.wse1{word-spacing:16.200000px;}
.ws6a{word-spacing:16.362000px;}
.ws1a6{word-spacing:16.416000px;}
.wsb8{word-spacing:16.470000px;}
.wse9{word-spacing:16.524000px;}
.ws78{word-spacing:16.632000px;}
.ws47{word-spacing:16.686000px;}
.ws94{word-spacing:16.740000px;}
.ws156{word-spacing:16.794000px;}
.ws171{word-spacing:17.010000px;}
.ws18d{word-spacing:17.118000px;}
.wse5{word-spacing:17.226000px;}
.ws182{word-spacing:17.280000px;}
.ws1f5{word-spacing:17.442000px;}
.ws161{word-spacing:17.496000px;}
.ws57{word-spacing:17.550000px;}
.ws173{word-spacing:17.604000px;}
.ws1e9{word-spacing:17.658000px;}
.wsd9{word-spacing:17.712000px;}
.wsfd{word-spacing:17.766000px;}
.ws15b{word-spacing:18.090000px;}
.ws163{word-spacing:18.144000px;}
.ws1da{word-spacing:18.306000px;}
.ws97{word-spacing:18.360000px;}
.ws1dd{word-spacing:18.522000px;}
.ws31{word-spacing:18.576000px;}
.wsdc{word-spacing:18.738000px;}
.ws1e8{word-spacing:18.846000px;}
.ws16f{word-spacing:19.062000px;}
.wse8{word-spacing:19.116000px;}
.ws202{word-spacing:19.332000px;}
.wsd7{word-spacing:19.386000px;}
.wsbd{word-spacing:19.548000px;}
.ws19b{word-spacing:20.079000px;}
.ws160{word-spacing:20.088000px;}
.ws10a{word-spacing:20.196000px;}
.wsd8{word-spacing:20.412000px;}
.ws146{word-spacing:20.628000px;}
.wse6{word-spacing:20.682000px;}
.wsdb{word-spacing:20.736000px;}
.ws35{word-spacing:21.006000px;}
.wsc0{word-spacing:21.114000px;}
.ws106{word-spacing:21.168000px;}
.ws191{word-spacing:21.276000px;}
.ws174{word-spacing:21.384000px;}
.ws201{word-spacing:21.438000px;}
.ws43{word-spacing:21.492000px;}
.ws1de{word-spacing:21.546000px;}
.ws1d1{word-spacing:21.600000px;}
.ws119{word-spacing:21.654000px;}
.ws105{word-spacing:21.708000px;}
.ws120{word-spacing:21.762000px;}
.wsa9{word-spacing:21.816000px;}
.ws68{word-spacing:21.924000px;}
.ws1d6{word-spacing:22.572000px;}
.ws1ee{word-spacing:22.680000px;}
.ws158{word-spacing:22.734000px;}
.ws46{word-spacing:22.896000px;}
.ws11e{word-spacing:22.950000px;}
.ws159{word-spacing:23.274000px;}
.ws1a9{word-spacing:23.436000px;}
.wsb6{word-spacing:23.490000px;}
.wsc6{word-spacing:23.652000px;}
.ws131{word-spacing:23.868000px;}
.ws116{word-spacing:24.192000px;}
.ws142{word-spacing:24.246000px;}
.ws38{word-spacing:24.570000px;}
.ws15a{word-spacing:25.164000px;}
.ws16a{word-spacing:25.434000px;}
.ws1dc{word-spacing:25.542000px;}
.ws130{word-spacing:25.596000px;}
.ws187{word-spacing:26.028000px;}
.ws14d{word-spacing:26.244000px;}
.ws1ff{word-spacing:26.298000px;}
.ws122{word-spacing:26.352000px;}
.ws1cb{word-spacing:26.784000px;}
.ws1eb{word-spacing:26.892000px;}
.ws200{word-spacing:27.054000px;}
.ws37{word-spacing:27.108000px;}
.ws205{word-spacing:27.216000px;}
.ws34{word-spacing:27.378000px;}
.ws1fe{word-spacing:27.486000px;}
.wsda{word-spacing:27.540000px;}
.wsb1{word-spacing:27.972000px;}
.ws9a{word-spacing:28.458000px;}
.ws6b{word-spacing:28.620000px;}
.ws20{word-spacing:28.728000px;}
.ws1aa{word-spacing:29.160000px;}
.wsa6{word-spacing:29.376000px;}
.ws203{word-spacing:29.592000px;}
.ws164{word-spacing:29.916000px;}
.ws1d9{word-spacing:30.078000px;}
.ws178{word-spacing:30.456000px;}
.ws2c{word-spacing:31.050000px;}
.ws1e1{word-spacing:32.130000px;}
.ws1a5{word-spacing:32.562000px;}
.ws58{word-spacing:32.724000px;}
.ws107{word-spacing:32.940000px;}
.ws155{word-spacing:33.426000px;}
.ws36{word-spacing:33.588000px;}
.ws15d{word-spacing:34.290000px;}
.ws15e{word-spacing:34.344000px;}
.ws204{word-spacing:35.046000px;}
.ws1f6{word-spacing:36.018000px;}
.ws1f7{word-spacing:36.504000px;}
.ws102{word-spacing:36.558000px;}
.ws123{word-spacing:36.612000px;}
.ws82{word-spacing:36.882000px;}
.wse0{word-spacing:36.936000px;}
.ws1e2{word-spacing:40.284000px;}
.ws197{word-spacing:41.256000px;}
.ws1e0{word-spacing:42.228000px;}
.wsa7{word-spacing:43.038000px;}
.wsa5{word-spacing:43.200000px;}
.ws1a7{word-spacing:43.578000px;}
.wse2{word-spacing:44.118000px;}
.ws11c{word-spacing:47.142000px;}
.ws1f3{word-spacing:49.086000px;}
.ws165{word-spacing:49.248000px;}
.ws19c{word-spacing:49.282200px;}
.ws1f2{word-spacing:53.406000px;}
.ws1f1{word-spacing:64.476000px;}
.ws1f4{word-spacing:66.960000px;}
.wsa8{word-spacing:73.818000px;}
.ws7b{word-spacing:76.987200px;}
.ws7a{word-spacing:76.990800px;}
.ws7d{word-spacing:80.376600px;}
.ws199{word-spacing:99.079200px;}
.ws0{word-spacing:117.254725px;}
.ws19d{word-spacing:218.568000px;}
.ws20a{word-spacing:448.660800px;}
.ws169{word-spacing:762.296400px;}
._4c{margin-left:-3146.459265px;}
._46{margin-left:-260.142000px;}
._1d{margin-left:-241.671600px;}
._3d{margin-left:-140.848200px;}
._29{margin-left:-87.495660px;}
._49{margin-left:-78.316470px;}
._a{margin-left:-72.374535px;}
._34{margin-left:-60.130350px;}
._28{margin-left:-57.736800px;}
._3a{margin-left:-54.740070px;}
._1f{margin-left:-49.770315px;}
._31{margin-left:-47.390400px;}
._e{margin-left:-46.216035px;}
._c{margin-left:-44.704035px;}
._1a{margin-left:-42.849270px;}
._2e{margin-left:-40.368915px;}
._36{margin-left:-38.435445px;}
._35{margin-left:-35.870715px;}
._2f{margin-left:-33.937515px;}
._2d{margin-left:-32.266350px;}
._19{margin-left:-30.639465px;}
._39{margin-left:-29.080890px;}
._0{margin-left:-27.972000px;}
._30{margin-left:-26.064315px;}
._23{margin-left:-24.595785px;}
._20{margin-left:-23.302350px;}
._37{margin-left:-21.520350px;}
._3b{margin-left:-20.386350px;}
._d{margin-left:-18.583290px;}
._2a{margin-left:-16.812000px;}
._b{margin-left:-14.297985px;}
._16{margin-left:-12.853485px;}
._2b{margin-left:-11.840715px;}
._17{margin-left:-10.795005px;}
._1b{margin-left:-9.145170px;}
._13{margin-left:-7.179705px;}
._6{margin-left:-5.219370px;}
._9{margin-left:-3.873285px;}
._2{margin-left:-2.311200px;}
._1{margin-left:-1.188000px;}
._3{width:1.417635px;}
._5{width:2.423385px;}
._7{width:3.509865px;}
._4{width:4.859595px;}
._8{width:6.659415px;}
._11{width:8.523765px;}
._18{width:9.792765px;}
._12{width:11.534130px;}
._2c{width:14.306490px;}
._27{width:15.701310px;}
._25{width:17.576730px;}
._24{width:18.711000px;}
._22{width:19.785600px;}
._21{width:21.084165px;}
._14{width:22.631130px;}
._15{width:23.722200px;}
._10{width:25.436565px;}
._f{width:26.784000px;}
._3f{width:32.622600px;}
._48{width:33.741225px;}
._33{width:34.767765px;}
._32{width:36.093600px;}
._38{width:37.236780px;}
._26{width:41.803695px;}
._4b{width:45.212715px;}
._4a{width:46.269495px;}
._42{width:95.614200px;}
._41{width:96.678000px;}
._43{width:98.248200px;}
._3e{width:119.342400px;}
._3c{width:134.323200px;}
._47{width:220.294200px;}
._1e{width:226.636200px;}
._1c{width:236.266200px;}
._45{width:775.818000px;}
._44{width:872.640000px;}
._40{width:1116.283035px;}
.fc9{color:rgb(129,68,107);}
.fc8{color:rgb(145,198,126);}
.fc7{color:transparent;}
.fc5{color:rgb(57,175,229);}
.fc6{color:rgb(147,147,183);}
.fc4{color:rgb(48,61,84);}
.fc2{color:rgb(0,92,99);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(25,39,94);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:29.957400px;}
.fs18{font-size:30.000000px;}
.fs13{font-size:41.940000px;}
.fs9{font-size:42.000000px;}
.fsc{font-size:43.039800px;}
.fse{font-size:44.935800px;}
.fs6{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs19{font-size:52.200000px;}
.fs10{font-size:53.923200px;}
.fs8{font-size:54.000000px;}
.fsf{font-size:54.482400px;}
.fs11{font-size:59.914200px;}
.fs12{font-size:65.905800px;}
.fs16{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fs15{font-size:83.880000px;}
.fsd{font-size:84.000000px;}
.fs4{font-size:84.766200px;}
.fs17{font-size:96.000000px;}
.fs0{font-size:108.000000px;}
.fs2{font-size:111.627600px;}
.fs3{font-size:169.532400px;}
.fsa{font-size:180.000000px;}
.fs7{font-size:216.000000px;}
.fs1{font-size:255.150000px;}
.y0{bottom:0.000000px;}
.y354{bottom:4.928850px;}
.ybb{bottom:5.345700px;}
.y9c{bottom:45.754200px;}
.y9b{bottom:46.612200px;}
.yb{bottom:47.220450px;}
.y49f{bottom:75.397200px;}
.y4e8{bottom:82.181400px;}
.y164{bottom:91.903800px;}
.y43{bottom:92.269200px;}
.y30b{bottom:92.270700px;}
.y414{bottom:92.305200px;}
.y266{bottom:92.323050px;}
.y283{bottom:92.323200px;}
.y54{bottom:92.336700px;}
.y1bd{bottom:92.345700px;}
.y234{bottom:92.350050px;}
.y3fc{bottom:92.354550px;}
.y21b{bottom:92.354700px;}
.y84{bottom:92.363700px;}
.y19b{bottom:92.401050px;}
.y144{bottom:92.404050px;}
.y304{bottom:92.417550px;}
.y1f4{bottom:92.458050px;}
.yab{bottom:92.556450px;}
.yb8{bottom:92.684250px;}
.y2be{bottom:93.183300px;}
.y497{bottom:93.397200px;}
.y457{bottom:93.742650px;}
.y44c{bottom:93.913950px;}
.y430{bottom:94.239450px;}
.y32c{bottom:101.238000px;}
.yb7{bottom:107.688750px;}
.y2bd{bottom:108.187800px;}
.y30a{bottom:108.766200px;}
.y2dc{bottom:110.237700px;}
.y42{bottom:110.264700px;}
.y413{bottom:110.300700px;}
.y265{bottom:110.318550px;}
.y282{bottom:110.318700px;}
.y53{bottom:110.332200px;}
.y1bc{bottom:110.341200px;}
.y233{bottom:110.345550px;}
.y3fb{bottom:110.350050px;}
.y21a{bottom:110.350200px;}
.y83{bottom:110.359200px;}
.y19a{bottom:110.396550px;}
.y143{bottom:110.399550px;}
.y303{bottom:110.413050px;}
.y1f3{bottom:110.453550px;}
.y163{bottom:110.657550px;}
.yaa{bottom:111.310200px;}
.y496{bottom:111.397200px;}
.y456{bottom:111.742650px;}
.y44b{bottom:111.913950px;}
.y42f{bottom:112.239450px;}
.y4d3{bottom:112.991700px;}
.y108{bottom:114.940200px;}
.y309{bottom:123.770700px;}
.yb6{bottom:125.685750px;}
.y2db{bottom:128.237700px;}
.y41{bottom:128.260200px;}
.y412{bottom:128.296200px;}
.y264{bottom:128.314050px;}
.y3c9{bottom:128.314200px;}
.y52{bottom:128.327700px;}
.y1bb{bottom:128.336700px;}
.y232{bottom:128.341050px;}
.y3fa{bottom:128.345550px;}
.y219{bottom:128.345700px;}
.y82{bottom:128.354700px;}
.y199{bottom:128.392050px;}
.y142{bottom:128.395050px;}
.y302{bottom:128.408550px;}
.y1f2{bottom:128.449050px;}
.y495{bottom:129.397200px;}
.y455{bottom:129.742650px;}
.y44a{bottom:129.913950px;}
.ya9{bottom:130.063950px;}
.y42e{bottom:130.239450px;}
.y4d2{bottom:130.991700px;}
.y107{bottom:132.940200px;}
.y308{bottom:138.775200px;}
.yb5{bottom:140.690250px;}
.y3c7{bottom:143.533800px;}
.y40{bottom:146.255700px;}
.y411{bottom:146.291700px;}
.y263{bottom:146.309550px;}
.y51{bottom:146.323200px;}
.y1ba{bottom:146.332200px;}
.y231{bottom:146.336550px;}
.y3f9{bottom:146.341050px;}
.y218{bottom:146.341200px;}
.y81{bottom:146.350200px;}
.y394{bottom:146.363700px;}
.y198{bottom:146.387550px;}
.y141{bottom:146.390550px;}
.y301{bottom:146.404050px;}
.y1f1{bottom:146.444550px;}
.y101{bottom:146.794050px;}
.y494{bottom:147.397200px;}
.y454{bottom:147.742650px;}
.y449{bottom:147.913950px;}
.ya8{bottom:148.817700px;}
.y4d1{bottom:148.991700px;}
.y2bb{bottom:150.048900px;}
.y106{bottom:150.940200px;}
.y307{bottom:153.779700px;}
.yb4{bottom:155.694750px;}
.y359{bottom:155.972407px;}
.y353{bottom:159.033558px;}
.y100{bottom:163.291050px;}
.y3f{bottom:164.251200px;}
.y410{bottom:164.287200px;}
.y424{bottom:164.300700px;}
.y262{bottom:164.305050px;}
.y50{bottom:164.318700px;}
.y1b9{bottom:164.327700px;}
.y217{bottom:164.336700px;}
.y80{bottom:164.345700px;}
.y393{bottom:164.359200px;}
.y197{bottom:164.383050px;}
.y140{bottom:164.386050px;}
.y300{bottom:164.399550px;}
.y2da{bottom:164.399700px;}
.y1f0{bottom:164.440050px;}
.y453{bottom:165.742650px;}
.y448{bottom:165.913950px;}
.y42d{bottom:166.239450px;}
.y2ba{bottom:168.048900px;}
.y306{bottom:168.784200px;}
.y105{bottom:168.940200px;}
.y358{bottom:173.205286px;}
.y352{bottom:175.513763px;}
.y3c6{bottom:179.538300px;}
.yff{bottom:179.788050px;}
.y3e{bottom:182.246700px;}
.y40f{bottom:182.282700px;}
.y423{bottom:182.296200px;}
.y261{bottom:182.300550px;}
.y4f{bottom:182.314200px;}
.y1b8{bottom:182.323200px;}
.y246{bottom:182.327700px;}
.y216{bottom:182.332200px;}
.y230{bottom:182.341050px;}
.y7f{bottom:182.341200px;}
.y3f8{bottom:182.345550px;}
.y392{bottom:182.354700px;}
.y196{bottom:182.378550px;}
.y13f{bottom:182.381550px;}
.y2d9{bottom:182.395200px;}
.y1ef{bottom:182.435550px;}
.y493{bottom:183.397200px;}
.y305{bottom:183.788700px;}
.y447{bottom:183.913950px;}
.y42c{bottom:184.239450px;}
.y4d0{bottom:184.991700px;}
.y2b9{bottom:186.048900px;}
.y104{bottom:186.940200px;}
.y351{bottom:189.589902px;}
.y357{bottom:189.685491px;}
.y16b{bottom:190.324350px;}
.yfe{bottom:196.285050px;}
.y3c5{bottom:197.535300px;}
.y3d{bottom:200.242200px;}
.y40e{bottom:200.278200px;}
.y4e{bottom:200.309700px;}
.y1b7{bottom:200.318700px;}
.y245{bottom:200.323200px;}
.y215{bottom:200.327700px;}
.y22f{bottom:200.336550px;}
.y7e{bottom:200.336700px;}
.y3f7{bottom:200.341050px;}
.y195{bottom:200.374050px;}
.y13e{bottom:200.377050px;}
.y2d8{bottom:200.390700px;}
.y2ff{bottom:200.404050px;}
.y1ee{bottom:200.431050px;}
.y492{bottom:201.397200px;}
.y452{bottom:201.742650px;}
.y446{bottom:201.913950px;}
.y42b{bottom:202.239450px;}
.y4cf{bottom:202.991700px;}
.y103{bottom:204.940200px;}
.y356{bottom:206.165695px;}
.y16a{bottom:208.324350px;}
.y350{bottom:212.978986px;}
.y31d{bottom:215.427300px;}
.y3c4{bottom:215.532300px;}
.y422{bottom:218.300700px;}
.y260{bottom:218.305050px;}
.y4d{bottom:218.305200px;}
.y1b6{bottom:218.314200px;}
.y244{bottom:218.318700px;}
.y214{bottom:218.323200px;}
.y22e{bottom:218.332050px;}
.y7d{bottom:218.332200px;}
.y391{bottom:218.359200px;}
.y194{bottom:218.369550px;}
.y13d{bottom:218.372550px;}
.y2d7{bottom:218.386200px;}
.y2fe{bottom:218.399550px;}
.y1ed{bottom:218.426550px;}
.y491{bottom:219.397200px;}
.y451{bottom:219.742650px;}
.y42a{bottom:220.239450px;}
.y4ce{bottom:220.991700px;}
.y355{bottom:222.645900px;}
.y102{bottom:222.940200px;}
.y169{bottom:226.324350px;}
.y34f{bottom:229.459191px;}
.y298{bottom:230.758050px;}
.y2bf{bottom:233.375250px;}
.y3c3{bottom:233.529300px;}
.y311{bottom:235.469250px;}
.y29c{bottom:235.983450px;}
.y327{bottom:236.100300px;}
.y3c{bottom:236.246700px;}
.y40d{bottom:236.282700px;}
.y421{bottom:236.296200px;}
.y25f{bottom:236.300550px;}
.y4c{bottom:236.300700px;}
.y243{bottom:236.314200px;}
.y22d{bottom:236.327550px;}
.y7c{bottom:236.327700px;}
.y3f6{bottom:236.345550px;}
.y390{bottom:236.354700px;}
.y193{bottom:236.365050px;}
.y13c{bottom:236.368050px;}
.y2d6{bottom:236.381700px;}
.y2b5{bottom:236.391150px;}
.y2fd{bottom:236.395050px;}
.y1ec{bottom:236.422050px;}
.y490{bottom:237.397200px;}
.y450{bottom:237.742650px;}
.y445{bottom:237.913950px;}
.y429{bottom:238.239450px;}
.y4cd{bottom:238.991700px;}
.y2b8{bottom:239.123100px;}
.y1a{bottom:240.217650px;}
.y34a{bottom:243.317490px;}
.y168{bottom:244.324350px;}
.y34e{bottom:245.939395px;}
.yfd{bottom:249.594000px;}
.y2ab{bottom:249.923100px;}
.y4e7{bottom:250.335600px;}
.y316{bottom:251.387700px;}
.y3c2{bottom:251.526300px;}
.y2{bottom:253.320000px;}
.y31c{bottom:253.346250px;}
.y4ea{bottom:254.237400px;}
.y3b{bottom:254.242200px;}
.y40c{bottom:254.278200px;}
.y420{bottom:254.291700px;}
.y25e{bottom:254.296050px;}
.y4b{bottom:254.296200px;}
.y242{bottom:254.309700px;}
.yd8{bottom:254.318700px;}
.y9a{bottom:254.323200px;}
.y213{bottom:254.327700px;}
.y3f5{bottom:254.341050px;}
.y38f{bottom:254.350200px;}
.y13b{bottom:254.363550px;}
.y2d5{bottom:254.377200px;}
.y2fc{bottom:254.390550px;}
.y2b4{bottom:254.391150px;}
.y1eb{bottom:254.417550px;}
.y48f{bottom:255.397200px;}
.y44f{bottom:255.742650px;}
.y281{bottom:255.794700px;}
.y444{bottom:255.913950px;}
.y428{bottom:256.239450px;}
.y4cc{bottom:256.991700px;}
.y4e6{bottom:259.335600px;}
.y349{bottom:261.291750px;}
.y167{bottom:262.324350px;}
.y34d{bottom:262.419600px;}
.y4e5{bottom:268.335600px;}
.y4e9{bottom:272.237400px;}
.y3a{bottom:272.237700px;}
.y40b{bottom:272.273700px;}
.y41f{bottom:272.287200px;}
.y4a{bottom:272.291700px;}
.y241{bottom:272.305200px;}
.yd7{bottom:272.314200px;}
.y99{bottom:272.318700px;}
.y212{bottom:272.323200px;}
.y22c{bottom:272.332050px;}
.y7b{bottom:272.332200px;}
.y3f4{bottom:272.336550px;}
.y192{bottom:272.369550px;}
.y2d4{bottom:272.372700px;}
.y2fb{bottom:272.386050px;}
.y1ea{bottom:272.413050px;}
.y48e{bottom:273.397200px;}
.y44e{bottom:273.742650px;}
.y2b7{bottom:275.123100px;}
.y4e4{bottom:277.335600px;}
.y2aa{bottom:278.723100px;}
.y166{bottom:280.324350px;}
.y31b{bottom:280.470000px;}
.y34c{bottom:280.913650px;}
.y315{bottom:286.286850px;}
.y4e3{bottom:286.335600px;}
.y3c1{bottom:287.530800px;}
.y329{bottom:288.640950px;}
.y1{bottom:289.311000px;}
.y40a{bottom:290.269200px;}
.y41e{bottom:290.282700px;}
.y25d{bottom:290.300550px;}
.y240{bottom:290.300700px;}
.yd6{bottom:290.309700px;}
.y98{bottom:290.314200px;}
.y211{bottom:290.318700px;}
.y22b{bottom:290.327550px;}
.y7a{bottom:290.327700px;}
.y3f3{bottom:290.332050px;}
.y38e{bottom:290.354700px;}
.y191{bottom:290.365050px;}
.y13a{bottom:290.368050px;}
.y2d3{bottom:290.368200px;}
.y1e9{bottom:290.408550px;}
.y427{bottom:290.743200px;}
.y267{bottom:291.354150px;}
.y44d{bottom:291.742650px;}
.y4cb{bottom:292.991700px;}
.y2a9{bottom:293.123100px;}
.y48d{bottom:294.400950px;}
.y4e2{bottom:295.335600px;}
.y165{bottom:298.324350px;}
.y34b{bottom:298.887910px;}
.y2a0{bottom:301.796550px;}
.y29d{bottom:303.288450px;}
.y3c0{bottom:305.527800px;}
.y409{bottom:308.264700px;}
.y41d{bottom:308.278200px;}
.y25c{bottom:308.296050px;}
.y23f{bottom:308.296200px;}
.yd5{bottom:308.305200px;}
.y97{bottom:308.309700px;}
.y210{bottom:308.314200px;}
.y22a{bottom:308.323050px;}
.y79{bottom:308.323200px;}
.y3f2{bottom:308.327550px;}
.y38d{bottom:308.350200px;}
.y139{bottom:308.363550px;}
.y2fa{bottom:308.390550px;}
.y1e8{bottom:308.404050px;}
.y56{bottom:309.352950px;}
.y31a{bottom:309.553050px;}
.y360{bottom:310.871850px;}
.y4ca{bottom:310.991700px;}
.y4dd{bottom:311.844150px;}
.y299{bottom:314.209650px;}
.y2b3{bottom:318.984900px;}
.y314{bottom:321.185250px;}
.y426{bottom:322.243200px;}
.y3bf{bottom:323.524800px;}
.y408{bottom:326.260200px;}
.y41c{bottom:326.273700px;}
.y25b{bottom:326.291550px;}
.y23e{bottom:326.291700px;}
.yd4{bottom:326.300700px;}
.y96{bottom:326.305200px;}
.y229{bottom:326.318550px;}
.y78{bottom:326.318700px;}
.y3f1{bottom:326.323050px;}
.y38c{bottom:326.345700px;}
.y2f9{bottom:326.386050px;}
.y1e7{bottom:326.399550px;}
.y19{bottom:327.352950px;}
.y48c{bottom:327.397200px;}
.y4c9{bottom:328.991700px;}
.y4dc{bottom:329.844150px;}
.y35c{bottom:331.619640px;}
.y35a{bottom:333.086700px;}
.y2b2{bottom:336.984900px;}
.y319{bottom:338.635200px;}
.y32a{bottom:341.180100px;}
.y323{bottom:341.182950px;}
.y3be{bottom:341.521800px;}
.y407{bottom:344.255700px;}
.y41b{bottom:344.269200px;}
.y25a{bottom:344.287050px;}
.yd3{bottom:344.296200px;}
.y95{bottom:344.300700px;}
.y228{bottom:344.314050px;}
.y77{bottom:344.314200px;}
.y3f0{bottom:344.318550px;}
.y20f{bottom:344.318700px;}
.y190{bottom:344.365050px;}
.y138{bottom:344.368050px;}
.y2d2{bottom:344.368200px;}
.y2f8{bottom:344.381550px;}
.y1e6{bottom:344.395050px;}
.y18{bottom:345.352950px;}
.y48b{bottom:345.397200px;}
.y294{bottom:346.723500px;}
.y4c8{bottom:346.991700px;}
.y4d7{bottom:347.544150px;}
.y4db{bottom:347.844150px;}
.y4e1{bottom:347.847450px;}
.y3cf{bottom:349.157400px;}
.y35b{bottom:349.847753px;}
.y292{bottom:352.495950px;}
.y313{bottom:356.087100px;}
.y3bd{bottom:359.518800px;}
.y259{bottom:362.282550px;}
.yd2{bottom:362.291700px;}
.y23d{bottom:362.296200px;}
.y227{bottom:362.309550px;}
.y3ef{bottom:362.314050px;}
.y20e{bottom:362.314200px;}
.y38b{bottom:362.350200px;}
.y18f{bottom:362.360550px;}
.y137{bottom:362.363550px;}
.y2d1{bottom:362.363700px;}
.y2f7{bottom:362.377050px;}
.y17{bottom:363.352950px;}
.y48a{bottom:363.397200px;}
.y4c7{bottom:364.991700px;}
.y4d6{bottom:365.544150px;}
.y4da{bottom:365.844150px;}
.y4e0{bottom:365.847450px;}
.y318{bottom:367.717650px;}
.y3ce{bottom:367.911150px;}
.y3bc{bottom:377.515800px;}
.y39{bottom:380.237700px;}
.y406{bottom:380.260200px;}
.y41a{bottom:380.273700px;}
.y258{bottom:380.278050px;}
.yd1{bottom:380.287200px;}
.y23c{bottom:380.291700px;}
.y1b5{bottom:380.300700px;}
.y94{bottom:380.305200px;}
.y20d{bottom:380.309700px;}
.y76{bottom:380.318700px;}
.y38a{bottom:380.345700px;}
.y18e{bottom:380.356050px;}
.y136{bottom:380.359050px;}
.y2d0{bottom:380.359200px;}
.y2f6{bottom:380.372550px;}
.y1e5{bottom:380.399550px;}
.y16{bottom:381.352950px;}
.y489{bottom:381.397200px;}
.y4d5{bottom:383.544150px;}
.y4d9{bottom:383.844150px;}
.y4df{bottom:383.847450px;}
.y2ae{bottom:384.910200px;}
.y3cd{bottom:386.664900px;}
.y310{bottom:390.982950px;}
.y328{bottom:393.397500px;}
.y3bb{bottom:395.512800px;}
.y2a8{bottom:395.710200px;}
.y317{bottom:396.799950px;}
.y248{bottom:397.753950px;}
.y38{bottom:398.237700px;}
.y419{bottom:398.269200px;}
.y257{bottom:398.273550px;}
.yd0{bottom:398.282700px;}
.y459{bottom:398.287200px;}
.y1b4{bottom:398.296200px;}
.y93{bottom:398.300700px;}
.y20c{bottom:398.305200px;}
.y75{bottom:398.314200px;}
.y3ee{bottom:398.318550px;}
.y389{bottom:398.341200px;}
.y18d{bottom:398.351550px;}
.y135{bottom:398.354550px;}
.y2cf{bottom:398.354700px;}
.y2f5{bottom:398.368050px;}
.y1e4{bottom:398.395050px;}
.y15{bottom:399.352950px;}
.y488{bottom:399.397200px;}
.y348{bottom:399.647896px;}
.y4c6{bottom:400.991700px;}
.y4d4{bottom:401.544150px;}
.y4d8{bottom:401.844150px;}
.y4de{bottom:401.847450px;}
.y3cc{bottom:405.418650px;}
.y2b6{bottom:408.772500px;}
.y3ba{bottom:413.509800px;}
.y405{bottom:416.264700px;}
.y256{bottom:416.269050px;}
.ycf{bottom:416.278200px;}
.y458{bottom:416.282700px;}
.y92{bottom:416.296200px;}
.y20b{bottom:416.300700px;}
.y74{bottom:416.309700px;}
.y3ed{bottom:416.314050px;}
.y461{bottom:416.336700px;}
.y18c{bottom:416.347050px;}
.y134{bottom:416.350050px;}
.y2ce{bottom:416.350200px;}
.y1e3{bottom:416.390550px;}
.y14{bottom:417.352950px;}
.y49e{bottom:417.397200px;}
.y297{bottom:418.624050px;}
.y4c5{bottom:418.991700px;}
.y487{bottom:420.400950px;}
.y2ad{bottom:420.910200px;}
.y293{bottom:422.775000px;}
.y3cb{bottom:424.172400px;}
.y2a7{bottom:424.510200px;}
.y8{bottom:425.143800px;}
.y312{bottom:425.882100px;}
.y3b9{bottom:431.506800px;}
.y404{bottom:434.260200px;}
.y255{bottom:434.264550px;}
.yce{bottom:434.273700px;}
.y37{bottom:434.278200px;}
.yec{bottom:434.278350px;}
.y91{bottom:434.291700px;}
.y20a{bottom:434.296200px;}
.y1b3{bottom:434.300700px;}
.y73{bottom:434.305200px;}
.y3ec{bottom:434.309550px;}
.y460{bottom:434.332200px;}
.y18b{bottom:434.342550px;}
.y133{bottom:434.345550px;}
.y2cd{bottom:434.345700px;}
.y2f4{bottom:434.372550px;}
.y1e2{bottom:434.386050px;}
.y35f{bottom:434.761440px;}
.y30f{bottom:435.219750px;}
.y13{bottom:435.352950px;}
.y49d{bottom:435.397200px;}
.y10c{bottom:435.681750px;}
.y4c4{bottom:436.991700px;}
.y2a6{bottom:438.910200px;}
.y3ca{bottom:442.926150px;}
.y326{bottom:445.617900px;}
.y3b8{bottom:449.503800px;}
.y403{bottom:452.255700px;}
.y254{bottom:452.260050px;}
.ycd{bottom:452.269200px;}
.y36{bottom:452.273700px;}
.yeb{bottom:452.273850px;}
.y90{bottom:452.287200px;}
.y209{bottom:452.291700px;}
.y1b2{bottom:452.296200px;}
.y72{bottom:452.300700px;}
.y3eb{bottom:452.305050px;}
.y45f{bottom:452.327700px;}
.y18a{bottom:452.338050px;}
.y132{bottom:452.341050px;}
.y2cc{bottom:452.341200px;}
.y2f3{bottom:452.368050px;}
.y1e1{bottom:452.381550px;}
.y35e{bottom:452.735700px;}
.y12{bottom:453.352950px;}
.y486{bottom:453.397200px;}
.y10b{bottom:454.435500px;}
.y4c3{bottom:454.991700px;}
.y3b7{bottom:467.500800px;}
.y402{bottom:470.251200px;}
.y253{bottom:470.255550px;}
.ycc{bottom:470.264700px;}
.y35{bottom:470.269200px;}
.yea{bottom:470.269350px;}
.y8f{bottom:470.282700px;}
.y208{bottom:470.287200px;}
.y1b1{bottom:470.291700px;}
.y71{bottom:470.296200px;}
.y3ea{bottom:470.300550px;}
.y226{bottom:470.309550px;}
.y45e{bottom:470.323200px;}
.y189{bottom:470.333550px;}
.y131{bottom:470.336550px;}
.y2cb{bottom:470.336700px;}
.y2f2{bottom:470.363550px;}
.y1e0{bottom:470.377050px;}
.y11{bottom:471.352950px;}
.y485{bottom:471.397200px;}
.y4c2{bottom:472.991700px;}
.y10a{bottom:473.189250px;}
.y2b1{bottom:475.424400px;}
.y30c{bottom:478.089150px;}
.y30d{bottom:478.463400px;}
.y3b6{bottom:485.497800px;}
.y401{bottom:488.246700px;}
.ycb{bottom:488.260200px;}
.y34{bottom:488.264700px;}
.ye9{bottom:488.264850px;}
.y23b{bottom:488.278200px;}
.y207{bottom:488.282700px;}
.y1b0{bottom:488.287200px;}
.y3e9{bottom:488.296050px;}
.y225{bottom:488.305050px;}
.y45d{bottom:488.318700px;}
.y188{bottom:488.329050px;}
.y130{bottom:488.332050px;}
.y2ca{bottom:488.332200px;}
.y2f1{bottom:488.359050px;}
.y1df{bottom:488.372550px;}
.y10{bottom:489.352950px;}
.y484{bottom:489.397200px;}
.y4c1{bottom:490.991700px;}
.y109{bottom:491.943000px;}
.y2b0{bottom:493.424400px;}
.y29e{bottom:494.787450px;}
.y7{bottom:495.310050px;}
.y325{bottom:497.843150px;}
.y35d{bottom:499.501350px;}
.y33c{bottom:501.892925px;}
.y3b5{bottom:503.494800px;}
.y400{bottom:506.242200px;}
.y252{bottom:506.260050px;}
.y33{bottom:506.260200px;}
.y23a{bottom:506.273700px;}
.y1af{bottom:506.282700px;}
.y224{bottom:506.300550px;}
.y280{bottom:506.300700px;}
.y45c{bottom:506.314200px;}
.y2f0{bottom:506.354550px;}
.y1de{bottom:506.368050px;}
.y162{bottom:506.462550px;}
.yf{bottom:507.352950px;}
.y483{bottom:507.397200px;}
.y30e{bottom:510.373500px;}
.y2af{bottom:511.424400px;}
.y4c0{bottom:511.995450px;}
.y33b{bottom:518.366462px;}
.y29f{bottom:518.695950px;}
.y3ff{bottom:524.237700px;}
.y251{bottom:524.255550px;}
.yca{bottom:524.264700px;}
.y239{bottom:524.269200px;}
.ye8{bottom:524.269350px;}
.y1ae{bottom:524.278200px;}
.y206{bottom:524.287200px;}
.y27f{bottom:524.296200px;}
.y3e8{bottom:524.300550px;}
.y45b{bottom:524.309700px;}
.y187{bottom:524.333550px;}
.y12f{bottom:524.336550px;}
.y2c9{bottom:524.336700px;}
.y2ef{bottom:524.350050px;}
.y1dd{bottom:524.363550px;}
.y161{bottom:524.458050px;}
.ye{bottom:525.352950px;}
.y482{bottom:525.397200px;}
.y3fd{bottom:528.052200px;}
.ya6{bottom:531.013050px;}
.y2a5{bottom:531.973200px;}
.y33a{bottom:534.840000px;}
.y296{bottom:537.893550px;}
.y3b4{bottom:539.499300px;}
.y250{bottom:542.251050px;}
.yc9{bottom:542.260200px;}
.y238{bottom:542.264700px;}
.ye7{bottom:542.264850px;}
.y1ad{bottom:542.273700px;}
.y205{bottom:542.282700px;}
.y3e7{bottom:542.296050px;}
.y223{bottom:542.305050px;}
.y45a{bottom:542.305200px;}
.y186{bottom:542.329050px;}
.y12e{bottom:542.332050px;}
.y388{bottom:542.332200px;}
.y2ee{bottom:542.345550px;}
.y481{bottom:543.397200px;}
.y4bf{bottom:544.991700px;}
.yd{bottom:546.356700px;}
.y347{bottom:547.128600px;}
.y55{bottom:547.852950px;}
.ya5{bottom:549.013050px;}
.y324{bottom:550.058550px;}
.y342{bottom:550.074339px;}
.y31e{bottom:550.511700px;}
.y3b3{bottom:557.496300px;}
.y24f{bottom:560.246550px;}
.yc8{bottom:560.255700px;}
.y32{bottom:560.260200px;}
.ye6{bottom:560.260350px;}
.y1ac{bottom:560.269200px;}
.y204{bottom:560.278200px;}
.y3e6{bottom:560.291550px;}
.y222{bottom:560.300550px;}
.y27e{bottom:560.300700px;}
.y185{bottom:560.324550px;}
.y12d{bottom:560.327550px;}
.y387{bottom:560.327700px;}
.y2ed{bottom:560.341050px;}
.y1dc{bottom:560.368050px;}
.y160{bottom:560.462550px;}
.yc{bottom:561.352950px;}
.y49c{bottom:561.397200px;}
.y4be{bottom:562.991700px;}
.y6{bottom:565.476300px;}
.ya4{bottom:567.013050px;}
.y2a4{bottom:567.973200px;}
.y3b2{bottom:575.493300px;}
.y2ac{bottom:575.786700px;}
.y29a{bottom:576.130950px;}
.y24e{bottom:578.242050px;}
.yc7{bottom:578.251200px;}
.y31{bottom:578.255700px;}
.ye5{bottom:578.255850px;}
.y1ab{bottom:578.264700px;}
.y203{bottom:578.273700px;}
.y27d{bottom:578.296200px;}
.y184{bottom:578.320050px;}
.y12c{bottom:578.323050px;}
.y2ec{bottom:578.336550px;}
.y2c8{bottom:578.336700px;}
.y1db{bottom:578.363550px;}
.y15f{bottom:578.458050px;}
.y480{bottom:579.397200px;}
.y4bd{bottom:580.991700px;}
.ya3{bottom:585.013050px;}
.y2a3{bottom:585.973200px;}
.y295{bottom:586.046550px;}
.y3b1{bottom:593.490300px;}
.y24d{bottom:596.237550px;}
.yc6{bottom:596.246700px;}
.y30{bottom:596.251200px;}
.ye4{bottom:596.251350px;}
.y202{bottom:596.269200px;}
.y221{bottom:596.305050px;}
.yfc{bottom:596.305200px;}
.y183{bottom:596.315550px;}
.y12b{bottom:596.318550px;}
.y2eb{bottom:596.332050px;}
.y2c7{bottom:596.332200px;}
.y1da{bottom:596.359050px;}
.y526{bottom:596.996850px;}
.y47f{bottom:597.397200px;}
.y4bc{bottom:598.991700px;}
.y418{bottom:600.423750px;}
.y29b{bottom:601.005450px;}
.y336{bottom:602.278050px;}
.ya2{bottom:603.013050px;}
.y3b0{bottom:611.487300px;}
.y525{bottom:613.492050px;}
.y507{bottom:614.237550px;}
.yc5{bottom:614.242200px;}
.y2f{bottom:614.246700px;}
.ye3{bottom:614.246850px;}
.y237{bottom:614.260200px;}
.y201{bottom:614.264700px;}
.y1aa{bottom:614.269200px;}
.y220{bottom:614.300550px;}
.yfb{bottom:614.300700px;}
.y182{bottom:614.311050px;}
.y12a{bottom:614.314050px;}
.y2ea{bottom:614.327550px;}
.y2c6{bottom:614.327700px;}
.y1d9{bottom:614.354550px;}
.y15e{bottom:614.462550px;}
.y47e{bottom:615.397200px;}
.y417{bottom:615.428250px;}
.y247{bottom:618.424050px;}
.ya1{bottom:621.013050px;}
.y2a2{bottom:622.732050px;}
.y3af{bottom:629.484300px;}
.y416{bottom:631.923750px;}
.y506{bottom:632.237550px;}
.yc4{bottom:632.237700px;}
.y24c{bottom:632.242050px;}
.y2e{bottom:632.242200px;}
.ye2{bottom:632.242350px;}
.y236{bottom:632.255700px;}
.y200{bottom:632.260200px;}
.y1a9{bottom:632.264700px;}
.yfa{bottom:632.296200px;}
.y181{bottom:632.306550px;}
.y129{bottom:632.309550px;}
.y2e9{bottom:632.323050px;}
.y2c5{bottom:632.323200px;}
.y1d8{bottom:632.350050px;}
.y47d{bottom:633.397200px;}
.y4bb{bottom:634.991700px;}
.y5{bottom:635.642550px;}
.ya0{bottom:639.013050px;}
.y415{bottom:646.928250px;}
.y3ae{bottom:647.481300px;}
.y505{bottom:650.237550px;}
.y2d{bottom:650.237700px;}
.ye1{bottom:650.237850px;}
.y235{bottom:650.251200px;}
.y1ff{bottom:650.255700px;}
.y1a8{bottom:650.260200px;}
.yf9{bottom:650.291700px;}
.y180{bottom:650.302050px;}
.y21f{bottom:650.305050px;}
.y2e8{bottom:650.318550px;}
.y2c4{bottom:650.318700px;}
.y1d7{bottom:650.345550px;}
.y15d{bottom:650.467050px;}
.y47c{bottom:651.397200px;}
.y2a1{bottom:651.961500px;}
.y4ba{bottom:652.991700px;}
.y523{bottom:653.842650px;}
.y322{bottom:654.496950px;}
.y341{bottom:656.246400px;}
.y9f{bottom:657.013050px;}
.y3ad{bottom:665.478300px;}
.y504{bottom:668.237550px;}
.yc3{bottom:668.242200px;}
.y1a7{bottom:668.255700px;}
.yf8{bottom:668.287200px;}
.y3e5{bottom:668.291550px;}
.y21e{bottom:668.300550px;}
.y128{bottom:668.314050px;}
.y2c3{bottom:668.314200px;}
.y386{bottom:668.327700px;}
.y1d6{bottom:668.341050px;}
.y15c{bottom:668.462550px;}
.y49b{bottom:669.397200px;}
.y4b9{bottom:670.991700px;}
.y522{bottom:671.842650px;}
.y9e{bottom:675.013050px;}
.ya7{bottom:678.016800px;}
.y346{bottom:681.046650px;}
.y288{bottom:682.148550px;}
.y363{bottom:683.418600px;}
.y3ac{bottom:683.475300px;}
.y503{bottom:686.237550px;}
.yc2{bottom:686.237700px;}
.ye0{bottom:686.242350px;}
.y1a6{bottom:686.251200px;}
.y1fe{bottom:686.260200px;}
.yf7{bottom:686.282700px;}
.y3e4{bottom:686.287050px;}
.y2c{bottom:686.296200px;}
.y17f{bottom:686.306550px;}
.y127{bottom:686.309550px;}
.y2c2{bottom:686.309700px;}
.y2e7{bottom:686.323050px;}
.y385{bottom:686.323200px;}
.y1d5{bottom:686.336550px;}
.y462{bottom:686.336700px;}
.y47b{bottom:687.397200px;}
.y4b8{bottom:688.991700px;}
.y521{bottom:689.842650px;}
.y1bf{bottom:690.456000px;}
.y9d{bottom:693.013050px;}
.y362{bottom:695.401500px;}
.y287{bottom:700.902300px;}
.y3ab{bottom:701.472300px;}
.y502{bottom:704.237550px;}
.ydf{bottom:704.237850px;}
.y1a5{bottom:704.246700px;}
.y1fd{bottom:704.255700px;}
.yf6{bottom:704.278200px;}
.y3e3{bottom:704.282550px;}
.y2b{bottom:704.291700px;}
.y17e{bottom:704.302050px;}
.y126{bottom:704.305050px;}
.y2c1{bottom:704.305200px;}
.y2e6{bottom:704.318550px;}
.y1d4{bottom:704.332050px;}
.y15b{bottom:704.467050px;}
.y345{bottom:704.628450px;}
.y47a{bottom:705.397200px;}
.y4{bottom:705.808800px;}
.y335{bottom:706.721954px;}
.y4b7{bottom:706.991700px;}
.y361{bottom:707.384250px;}
.y520{bottom:707.842650px;}
.y286{bottom:719.656050px;}
.y501{bottom:722.237550px;}
.y1a4{bottom:722.242200px;}
.y1fc{bottom:722.251200px;}
.yf5{bottom:722.273700px;}
.y3e2{bottom:722.278050px;}
.y2a{bottom:722.287200px;}
.y17d{bottom:722.297550px;}
.y125{bottom:722.300550px;}
.y2c0{bottom:722.300700px;}
.y2e5{bottom:722.314050px;}
.y1d3{bottom:722.327550px;}
.y15a{bottom:722.462550px;}
.y479{bottom:723.397200px;}
.y4b6{bottom:724.991700px;}
.y51f{bottom:725.842650px;}
.y344{bottom:728.342550px;}
.y3aa{bottom:737.476800px;}
.y285{bottom:738.409800px;}
.y334{bottom:739.131900px;}
.y500{bottom:740.237550px;}
.y1a3{bottom:740.237700px;}
.y1fb{bottom:740.246700px;}
.y436{bottom:740.269200px;}
.y3e1{bottom:740.273550px;}
.y29{bottom:740.282700px;}
.y124{bottom:740.296050px;}
.y27c{bottom:740.296200px;}
.y2e4{bottom:740.309550px;}
.y1d2{bottom:740.323050px;}
.y478{bottom:741.397200px;}
.yf4{bottom:741.767700px;}
.y51e{bottom:743.842650px;}
.y321{bottom:751.511400px;}
.y3a9{bottom:755.473800px;}
.y382{bottom:756.325800px;}
.y284{bottom:757.163550px;}
.y24b{bottom:757.317300px;}
.y4ff{bottom:758.237550px;}
.yde{bottom:758.237850px;}
.y1fa{bottom:758.242200px;}
.y435{bottom:758.264700px;}
.y3e0{bottom:758.269050px;}
.y28{bottom:758.278200px;}
.y123{bottom:758.291550px;}
.y27b{bottom:758.291700px;}
.y2e3{bottom:758.305050px;}
.y291{bottom:758.305200px;}
.y28d{bottom:758.318550px;}
.y384{bottom:758.318700px;}
.y159{bottom:758.467050px;}
.y333{bottom:758.937450px;}
.y477{bottom:759.397200px;}
.y4b5{bottom:760.991700px;}
.yb3{bottom:761.660250px;}
.y51d{bottom:761.842650px;}
.y331{bottom:762.139500px;}
.y320{bottom:769.506900px;}
.y381{bottom:771.330300px;}
.y3a8{bottom:773.470800px;}
.y3{bottom:775.975050px;}
.y10d{bottom:776.037450px;}
.y24a{bottom:776.071050px;}
.y4fe{bottom:776.237550px;}
.y1f9{bottom:776.237700px;}
.y434{bottom:776.260200px;}
.y27{bottom:776.273700px;}
.y21d{bottom:776.300550px;}
.y290{bottom:776.300700px;}
.y28c{bottom:776.314050px;}
.y383{bottom:776.314200px;}
.y1d1{bottom:776.327550px;}
.y158{bottom:776.462550px;}
.y49a{bottom:777.397200px;}
.y4b4{bottom:778.991700px;}
.yb2{bottom:779.657250px;}
.y51c{bottom:779.842500px;}
.y433{bottom:781.721100px;}
.y380{bottom:786.334800px;}
.y31f{bottom:787.502400px;}
.y3a7{bottom:791.467800px;}
.y367{bottom:792.359250px;}
.y4fd{bottom:794.235750px;}
.y1a2{bottom:794.237700px;}
.y26{bottom:794.269200px;}
.y3df{bottom:794.273550px;}
.y122{bottom:794.296050px;}
.y28f{bottom:794.296200px;}
.y28b{bottom:794.309550px;}
.ydd{bottom:794.309700px;}
.y1d0{bottom:794.323050px;}
.yb1{bottom:794.661750px;}
.y249{bottom:794.824800px;}
.y476{bottom:795.397200px;}
.y4b3{bottom:796.991700px;}
.y51b{bottom:797.842500px;}
.y432{bottom:800.474850px;}
.y37f{bottom:801.339300px;}
.y3a6{bottom:809.464800px;}
.yb0{bottom:809.666250px;}
.y366{bottom:810.333600px;}
.y32b{bottom:811.152398px;}
.y1f8{bottom:812.242200px;}
.y25{bottom:812.264700px;}
.y3de{bottom:812.269050px;}
.y121{bottom:812.291550px;}
.y27a{bottom:812.291700px;}
.y17c{bottom:812.302050px;}
.y28a{bottom:812.305050px;}
.ydc{bottom:812.305200px;}
.y1cf{bottom:812.318550px;}
.y157{bottom:812.467050px;}
.y475{bottom:813.397200px;}
.y32f{bottom:814.359000px;}
.y4b2{bottom:814.991700px;}
.y51a{bottom:815.842500px;}
.y37e{bottom:816.343800px;}
.y270{bottom:817.956150px;}
.y431{bottom:819.228600px;}
.y4fc{bottom:824.237700px;}
.y3a5{bottom:827.461800px;}
.y365{bottom:828.307950px;}
.y340{bottom:828.370939px;}
.y1f7{bottom:830.237700px;}
.y49{bottom:830.260200px;}
.y3dd{bottom:830.264550px;}
.y2e2{bottom:830.287050px;}
.y279{bottom:830.287200px;}
.y17b{bottom:830.297550px;}
.y21c{bottom:830.300550px;}
.ydb{bottom:830.300700px;}
.y1ce{bottom:830.314050px;}
.y1a1{bottom:830.314200px;}
.y156{bottom:830.462550px;}
.y474{bottom:831.397200px;}
.y4b1{bottom:832.991700px;}
.y519{bottom:833.842500px;}
.y26f{bottom:835.956150px;}
.yaf{bottom:839.664750px;}
.y4fb{bottom:840.737700px;}
.y33f{bottom:844.547899px;}
.y364{bottom:846.282300px;}
.y37d{bottom:846.342300px;}
.y48{bottom:848.255700px;}
.y3dc{bottom:848.260050px;}
.y24{bottom:848.269200px;}
.y2e1{bottom:848.282550px;}
.y278{bottom:848.282700px;}
.y17a{bottom:848.293050px;}
.y120{bottom:848.296050px;}
.yda{bottom:848.296200px;}
.y1cd{bottom:848.309550px;}
.y1a0{bottom:848.309700px;}
.y473{bottom:849.397200px;}
.y4b0{bottom:850.991700px;}
.y518{bottom:851.842500px;}
.y26e{bottom:853.956150px;}
.yae{bottom:854.669250px;}
.y4fa{bottom:857.242500px;}
.y33e{bottom:861.021437px;}
.y37c{bottom:861.346800px;}
.y332{bottom:863.377500px;}
.y3a4{bottom:863.466300px;}
.y47{bottom:866.251200px;}
.y3db{bottom:866.255550px;}
.y23{bottom:866.264700px;}
.y2e0{bottom:866.278050px;}
.y277{bottom:866.278200px;}
.y179{bottom:866.288550px;}
.y11f{bottom:866.291550px;}
.yd9{bottom:866.291700px;}
.y1cc{bottom:866.305050px;}
.y19f{bottom:866.305200px;}
.y155{bottom:866.467050px;}
.y32d{bottom:866.578650px;}
.y472{bottom:867.397200px;}
.yad{bottom:869.673750px;}
.y517{bottom:869.842500px;}
.y26d{bottom:871.956150px;}
.y4f9{bottom:873.737700px;}
.y37b{bottom:876.351300px;}
.y33d{bottom:877.494974px;}
.y3a3{bottom:881.463300px;}
.y1f6{bottom:884.237700px;}
.y46{bottom:884.246700px;}
.y3da{bottom:884.251050px;}
.y22{bottom:884.260200px;}
.y276{bottom:884.273700px;}
.y178{bottom:884.284050px;}
.y11e{bottom:884.287050px;}
.y28e{bottom:884.287200px;}
.y1cb{bottom:884.300550px;}
.y19e{bottom:884.300700px;}
.y443{bottom:884.314200px;}
.y154{bottom:884.462550px;}
.y471{bottom:885.397200px;}
.y4af{bottom:886.991700px;}
.y516{bottom:887.842500px;}
.y26c{bottom:889.956150px;}
.y4f8{bottom:890.237700px;}
.y37a{bottom:891.355800px;}
.y3a2{bottom:899.460300px;}
.yac{bottom:899.672250px;}
.y1f5{bottom:902.237700px;}
.y45{bottom:902.242200px;}
.y3d9{bottom:902.246550px;}
.y21{bottom:902.255700px;}
.y275{bottom:902.269200px;}
.y177{bottom:902.279550px;}
.y11d{bottom:902.282550px;}
.y8e{bottom:902.282700px;}
.y1ca{bottom:902.296050px;}
.y70{bottom:902.296200px;}
.y442{bottom:902.309700px;}
.y4ae{bottom:904.991700px;}
.y515{bottom:905.842500px;}
.y379{bottom:906.360300px;}
.y4f7{bottom:906.737700px;}
.y26b{bottom:907.956150px;}
.y330{bottom:915.597000px;}
.y3a1{bottom:917.457300px;}
.y337{bottom:918.798150px;}
.y3d8{bottom:920.242050px;}
.y20{bottom:920.251200px;}
.y11c{bottom:920.278050px;}
.y8d{bottom:920.278200px;}
.y1c9{bottom:920.291550px;}
.y6f{bottom:920.291700px;}
.y441{bottom:920.305200px;}
.y378{bottom:921.364800px;}
.y470{bottom:921.397200px;}
.y4ad{bottom:922.991700px;}
.y4f6{bottom:923.248650px;}
.y514{bottom:923.842500px;}
.y26a{bottom:925.956150px;}
.y3a0{bottom:935.454300px;}
.y377{bottom:936.369300px;}
.y3d7{bottom:938.237550px;}
.y1f{bottom:938.246700px;}
.yf3{bottom:938.260200px;}
.y11b{bottom:938.273550px;}
.y8c{bottom:938.273700px;}
.y176{bottom:938.284050px;}
.y1c8{bottom:938.287050px;}
.y6e{bottom:938.287200px;}
.y440{bottom:938.300700px;}
.ya{bottom:938.375400px;}
.y153{bottom:938.462550px;}
.y46f{bottom:939.397200px;}
.y4ac{bottom:940.991700px;}
.y513{bottom:941.842500px;}
.y2bc{bottom:941.922300px;}
.y269{bottom:943.956150px;}
.yba{bottom:945.265500px;}
.yc0{bottom:950.554650px;}
.ybc{bottom:950.611200px;}
.yb9{bottom:950.611650px;}
.y376{bottom:951.373800px;}
.y39f{bottom:953.451300px;}
.y1e{bottom:956.242200px;}
.y4f5{bottom:956.252100px;}
.yf2{bottom:956.255700px;}
.y11a{bottom:956.269050px;}
.y274{bottom:956.269200px;}
.y175{bottom:956.279550px;}
.y1c7{bottom:956.282550px;}
.y6d{bottom:956.282700px;}
.y43f{bottom:956.296200px;}
.y152{bottom:956.458050px;}
.y46e{bottom:957.397200px;}
.y4ab{bottom:958.991700px;}
.y512{bottom:959.842500px;}
.y268{bottom:961.956150px;}
.y3fe{bottom:963.070800px;}
.ybf{bottom:965.550900px;}
.y375{bottom:966.378300px;}
.y32e{bottom:967.816650px;}
.y39e{bottom:971.448300px;}
.y4f4{bottom:972.747300px;}
.y1d{bottom:974.237700px;}
.yf1{bottom:974.251200px;}
.y119{bottom:974.264550px;}
.y273{bottom:974.264700px;}
.y174{bottom:974.275050px;}
.y1c6{bottom:974.278050px;}
.y6c{bottom:974.278200px;}
.y151{bottom:974.453550px;}
.y46d{bottom:975.397200px;}
.y511{bottom:977.842500px;}
.y374{bottom:981.382800px;}
.y9{bottom:982.602600px;}
.y4f3{bottom:989.242500px;}
.y39d{bottom:989.445300px;}
.y44{bottom:992.246700px;}
.y118{bottom:992.260050px;}
.y272{bottom:992.260200px;}
.y173{bottom:992.270550px;}
.y1c5{bottom:992.273550px;}
.y6b{bottom:992.273700px;}
.y43e{bottom:992.300700px;}
.y150{bottom:992.449050px;}
.y46c{bottom:993.397200px;}
.y4aa{bottom:994.991700px;}
.y510{bottom:995.842500px;}
.y373{bottom:1000.881300px;}
.y1c0{bottom:1002.720450px;}
.ybe{bottom:1003.654650px;}
.y4f2{bottom:1005.737700px;}
.ybd{bottom:1006.297800px;}
.y39c{bottom:1007.442300px;}
.y1c{bottom:1010.242200px;}
.y117{bottom:1010.255550px;}
.y271{bottom:1010.255700px;}
.y172{bottom:1010.266050px;}
.y1c4{bottom:1010.269050px;}
.y6a{bottom:1010.269200px;}
.y19d{bottom:1010.282700px;}
.y43d{bottom:1010.296200px;}
.y14f{bottom:1010.444550px;}
.y46b{bottom:1011.397200px;}
.y4a9{bottom:1012.991700px;}
.y50f{bottom:1013.842500px;}
.y338{bottom:1020.036150px;}
.y343{bottom:1020.529697px;}
.y4f1{bottom:1022.242500px;}
.y1b{bottom:1028.237700px;}
.y116{bottom:1028.251050px;}
.yf0{bottom:1028.251200px;}
.y171{bottom:1028.261550px;}
.y1c3{bottom:1028.264550px;}
.y8b{bottom:1028.264700px;}
.y19c{bottom:1028.278200px;}
.y43c{bottom:1028.291700px;}
.y14e{bottom:1028.440050px;}
.y46a{bottom:1029.397200px;}
.y4a8{bottom:1030.991700px;}
.y50e{bottom:1031.842500px;}
.y4f0{bottom:1038.737700px;}
.y39b{bottom:1043.446800px;}
.y339{bottom:1045.066050px;}
.y3d6{bottom:1046.237550px;}
.yef{bottom:1046.246700px;}
.y170{bottom:1046.257050px;}
.y2df{bottom:1046.260050px;}
.y8a{bottom:1046.260200px;}
.y289{bottom:1046.273550px;}
.y69{bottom:1046.273700px;}
.y43b{bottom:1046.287200px;}
.y14d{bottom:1046.435550px;}
.y499{bottom:1047.397200px;}
.y4a7{bottom:1048.991700px;}
.y50d{bottom:1049.842500px;}
.y4ef{bottom:1055.234250px;}
.y39a{bottom:1061.443800px;}
.y3d5{bottom:1064.237550px;}
.yee{bottom:1064.242200px;}
.y16f{bottom:1064.252550px;}
.y115{bottom:1064.255550px;}
.y89{bottom:1064.255700px;}
.y1c2{bottom:1064.269050px;}
.y68{bottom:1064.269200px;}
.y43a{bottom:1064.282700px;}
.y14c{bottom:1064.431050px;}
.y469{bottom:1065.397200px;}
.y4a6{bottom:1066.991700px;}
.y50c{bottom:1067.842500px;}
.y399{bottom:1079.440800px;}
.y16e{bottom:1082.248050px;}
.y2de{bottom:1082.251050px;}
.y88{bottom:1082.251200px;}
.y36c{bottom:1082.255700px;}
.y1c1{bottom:1082.264550px;}
.y67{bottom:1082.264700px;}
.y371{bottom:1082.269200px;}
.y439{bottom:1082.278200px;}
.y14b{bottom:1082.426550px;}
.y468{bottom:1083.397200px;}
.y50b{bottom:1085.842500px;}
.y4a5{bottom:1087.995450px;}
.y4ee{bottom:1088.237700px;}
.y398{bottom:1097.437800px;}
.y16d{bottom:1100.243550px;}
.y2dd{bottom:1100.246550px;}
.y87{bottom:1100.246700px;}
.y36b{bottom:1100.251200px;}
.y3d4{bottom:1100.255550px;}
.y114{bottom:1100.260050px;}
.y66{bottom:1100.260200px;}
.y370{bottom:1100.264700px;}
.y14a{bottom:1100.422050px;}
.y467{bottom:1101.397200px;}
.y438{bottom:1101.772200px;}
.y50a{bottom:1103.842500px;}
.y4ed{bottom:1104.737700px;}
.y5b{bottom:1104.859950px;}
.y60{bottom:1104.873450px;}
.y3c8{bottom:1113.408600px;}
.y397{bottom:1115.434800px;}
.y86{bottom:1118.242200px;}
.y36a{bottom:1118.246700px;}
.y3d3{bottom:1118.251050px;}
.y113{bottom:1118.255550px;}
.y65{bottom:1118.255700px;}
.y36f{bottom:1118.260200px;}
.y149{bottom:1118.417550px;}
.y466{bottom:1119.397200px;}
.y16c{bottom:1119.737550px;}
.y437{bottom:1119.767700px;}
.y4a4{bottom:1120.991700px;}
.y4ec{bottom:1121.237700px;}
.y509{bottom:1121.842500px;}
.y5a{bottom:1122.855450px;}
.y5f{bottom:1122.868950px;}
.y396{bottom:1133.431800px;}
.y85{bottom:1136.237700px;}
.y369{bottom:1136.242200px;}
.y3d2{bottom:1136.246550px;}
.y112{bottom:1136.251050px;}
.y64{bottom:1136.251200px;}
.y36e{bottom:1136.255700px;}
.y148{bottom:1136.413050px;}
.y465{bottom:1137.397200px;}
.y4eb{bottom:1137.737700px;}
.y4a3{bottom:1138.991700px;}
.y508{bottom:1139.842500px;}
.y59{bottom:1140.850950px;}
.y5e{bottom:1140.864450px;}
.yed{bottom:1154.233200px;}
.y368{bottom:1154.237700px;}
.y3d1{bottom:1154.242050px;}
.y111{bottom:1154.246550px;}
.y63{bottom:1154.246700px;}
.y36d{bottom:1154.251200px;}
.y147{bottom:1154.408550px;}
.y395{bottom:1154.431800px;}
.y498{bottom:1155.397200px;}
.y4a2{bottom:1156.991700px;}
.y10e{bottom:1158.288300px;}
.y58{bottom:1158.846450px;}
.y5d{bottom:1158.859950px;}
.y1be{bottom:1165.305150px;}
.y425{bottom:1168.742100px;}
.y524{bottom:1170.791550px;}
.y3d0{bottom:1172.237550px;}
.y110{bottom:1172.242050px;}
.y62{bottom:1172.242200px;}
.y146{bottom:1172.404050px;}
.y464{bottom:1173.397200px;}
.y4a1{bottom:1174.991700px;}
.y57{bottom:1176.841950px;}
.y5c{bottom:1176.855450px;}
.yc1{bottom:1187.961600px;}
.y372{bottom:1189.306800px;}
.y10f{bottom:1190.237550px;}
.y61{bottom:1190.237700px;}
.y145{bottom:1190.399550px;}
.y463{bottom:1191.397200px;}
.y4a0{bottom:1192.991700px;}
.h36{height:26.425781px;}
.h32{height:31.930664px;}
.h21{height:33.489258px;}
.h31{height:33.694336px;}
.h2c{height:35.808216px;}
.h10{height:36.101074px;}
.h20{height:36.563553px;}
.h2b{height:36.616257px;}
.h12{height:36.668641px;}
.h30{height:36.688477px;}
.hf{height:36.791016px;}
.h1d{height:37.701856px;}
.hd{height:38.273438px;}
.h2a{height:39.231779px;}
.h22{height:39.253001px;}
.h34{height:39.287830px;}
.h8{height:39.309082px;}
.h11{height:39.418945px;}
.h14{height:39.420745px;}
.h24{height:39.538238px;}
.h7{height:39.594727px;}
.h1c{height:39.638672px;}
.h37{height:40.416000px;}
.h16{height:41.133998px;}
.h1a{height:41.581406px;}
.h1f{height:41.929688px;}
.h6{height:42.046875px;}
.h35{height:42.281250px;}
.he{height:43.031250px;}
.h15{height:43.057617px;}
.h27{height:43.210628px;}
.h39{height:45.598535px;}
.h3a{height:45.612335px;}
.h38{height:45.725977px;}
.h17{height:47.170898px;}
.h26{height:47.235459px;}
.hc{height:47.302734px;}
.ha{height:47.513672px;}
.h28{height:47.531821px;}
.hb{height:47.566406px;}
.h25{height:47.592292px;}
.h2d{height:51.702061px;}
.h29{height:52.717475px;}
.h33{height:62.894531px;}
.h1b{height:63.070312px;}
.h1e{height:73.582031px;}
.h2e{height:73.804570px;}
.h5{height:74.584322px;}
.h2f{height:84.093750px;}
.h2{height:94.605469px;}
.h4{height:98.219207px;}
.h18{height:141.183000px;}
.h19{height:157.675781px;}
.h9{height:190.265625px;}
.h3{height:200.803050px;}
.h13{height:223.275000px;}
.h23{height:960.924000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:141.184500px;}
.w4{width:785.278500px;}
.w2{width:785.934000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa9{left:-848.591850px;}
.x76{left:-374.031450px;}
.x0{left:0.000000px;}
.xad{left:39.330750px;}
.x18{left:42.513450px;}
.x99{left:43.582500px;}
.xae{left:44.645700px;}
.x17{left:47.008950px;}
.x4d{left:48.124050px;}
.x1b{left:49.321050px;}
.x16{left:52.111050px;}
.x80{left:53.313900px;}
.x82{left:55.631400px;}
.x83{left:57.420150px;}
.x7c{left:60.436650px;}
.x6b{left:61.499700px;}
.xb2{left:62.726550px;}
.x19{left:63.762450px;}
.x7f{left:65.058900px;}
.x94{left:66.299850px;}
.x2c{left:68.268750px;}
.x7e{left:69.322650px;}
.x8f{left:70.866150px;}
.xa{left:72.153300px;}
.x81{left:75.240150px;}
.x34{left:78.338550px;}
.x35{left:80.757300px;}
.x32{left:81.927300px;}
.x33{left:82.984800px;}
.x2d{left:85.035750px;}
.x4c{left:87.444900px;}
.x1a{left:89.281050px;}
.x5d{left:92.189850px;}
.x3{left:94.574850px;}
.x1d{left:98.032650px;}
.x9{left:100.879950px;}
.x5c{left:103.046100px;}
.x93{left:104.332950px;}
.x58{left:106.078650px;}
.xac{left:107.581500px;}
.x59{left:112.167150px;}
.x84{left:116.929050px;}
.x31{left:117.983550px;}
.x1c{left:119.024700px;}
.x89{left:121.627950px;}
.x7{left:126.723600px;}
.x95{left:128.086950px;}
.x5b{left:133.904850px;}
.xaa{left:136.382850px;}
.x6a{left:138.935850px;}
.x30{left:141.049650px;}
.xab{left:144.073500px;}
.x5e{left:159.813600px;}
.xa4{left:171.845850px;}
.xa2{left:186.228300px;}
.xa5{left:189.063150px;}
.x8c{left:191.648850px;}
.x8b{left:197.273850px;}
.x8d{left:202.955100px;}
.x5a{left:207.126150px;}
.x4e{left:225.737700px;}
.x2{left:230.739450px;}
.x8{left:239.117175px;}
.x9e{left:246.488700px;}
.x86{left:252.119850px;}
.x4{left:262.591125px;}
.xa0{left:266.792250px;}
.x5{left:271.393800px;}
.xa6{left:274.016850px;}
.x3b{left:278.532300px;}
.x3a{left:280.444800px;}
.x39{left:286.474800px;}
.x38{left:291.436050px;}
.x3c{left:293.821050px;}
.x3d{left:298.253550px;}
.x37{left:301.324800px;}
.xb3{left:305.943750px;}
.xb0{left:311.811000px;}
.x36{left:319.459800px;}
.xb4{left:321.023550px;}
.x97{left:333.081900px;}
.x61{left:343.064850px;}
.x60{left:347.531100px;}
.x98{left:351.725400px;}
.x62{left:353.504850px;}
.x88{left:358.427250px;}
.x63{left:364.901100px;}
.x57{left:381.808500px;}
.x8e{left:386.750700px;}
.x8a{left:395.215350px;}
.x1{left:398.301450px;}
.x5f{left:405.693600px;}
.x6{left:407.069813px;}
.x96{left:411.058800px;}
.x64{left:412.927350px;}
.xa3{left:429.139050px;}
.xa1{left:430.790141px;}
.xb5{left:435.826650px;}
.x7d{left:439.636350px;}
.xb{left:443.046450px;}
.x1e{left:444.826650px;}
.x6d{left:446.493600px;}
.x90{left:447.894600px;}
.x1f{left:449.322150px;}
.x7a{left:450.946050px;}
.x28{left:452.065050px;}
.x25{left:454.483800px;}
.x26{left:455.777550px;}
.x4b{left:457.080600px;}
.x27{left:458.331300px;}
.x29{left:459.467550px;}
.x21{left:460.750050px;}
.x24{left:462.235050px;}
.x20{left:466.089150px;}
.x23{left:467.635050px;}
.x6f{left:469.595100px;}
.x2e{left:472.016400px;}
.x22{left:473.068800px;}
.x7b{left:474.613950px;}
.x6c{left:476.503950px;}
.x50{left:478.342950px;}
.x2a{left:480.865050px;}
.x2b{left:482.552550px;}
.x41{left:484.148550px;}
.x40{left:486.601050px;}
.x2f{left:488.769900px;}
.x42{left:492.136050px;}
.x43{left:493.936050px;}
.x78{left:499.525200px;}
.x3f{left:501.046050px;}
.x54{left:506.813400px;}
.x6e{left:510.185100px;}
.x77{left:511.769700px;}
.x73{left:512.790450px;}
.x53{left:517.977900px;}
.x3e{left:521.239800px;}
.x51{left:523.229400px;}
.x55{left:524.957400px;}
.x74{left:526.101450px;}
.x71{left:527.478450px;}
.xaf{left:530.681100px;}
.x91{left:534.268050px;}
.x56{left:536.999400px;}
.x4a{left:542.999550px;}
.x75{left:546.892800px;}
.x79{left:554.909700px;}
.x72{left:560.067450px;}
.x52{left:563.121900px;}
.x9f{left:564.379418px;}
.x70{left:571.407450px;}
.xb1{left:581.102400px;}
.x92{left:588.254550px;}
.xa7{left:602.862150px;}
.x67{left:606.044850px;}
.x66{left:607.496100px;}
.x65{left:612.524850px;}
.x68{left:616.743600px;}
.x4f{left:619.903950px;}
.xa8{left:625.344000px;}
.x85{left:635.243850px;}
.x9c{left:637.260300px;}
.x87{left:641.232150px;}
.x9d{left:642.759000px;}
.x12{left:654.917250px;}
.x11{left:657.876000px;}
.x10{left:660.339750px;}
.x69{left:661.698600px;}
.xe{left:662.848500px;}
.xf{left:669.002250px;}
.x45{left:675.499800px;}
.x48{left:677.097300px;}
.x46{left:680.224800px;}
.x47{left:681.541050px;}
.x13{left:683.447250px;}
.x15{left:687.508500px;}
.x14{left:692.604750px;}
.xd{left:699.309750px;}
.x49{left:707.472300px;}
.xc{left:710.447250px;}
.x44{left:712.512300px;}
.x9a{left:735.428700px;}
.x9b{left:740.827091px;}
@media print{
.v1{vertical-align:-85.399467pt;}
.v2{vertical-align:-10.680000pt;}
.v5{vertical-align:-6.954667pt;}
.v3{vertical-align:-5.328000pt;}
.v6{vertical-align:-1.330667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.328000pt;}
.v7{vertical-align:7.546133pt;}
.ls3{letter-spacing:-4.082400pt;}
.ls1{letter-spacing:-3.855600pt;}
.ls25{letter-spacing:-3.600000pt;}
.ls2{letter-spacing:-3.402000pt;}
.ls2d{letter-spacing:-2.208000pt;}
.ls14{letter-spacing:-1.440000pt;}
.ls4e{letter-spacing:-1.200000pt;}
.ls15{letter-spacing:-0.816000pt;}
.ls2f{letter-spacing:-0.768000pt;}
.ls4d{letter-spacing:-0.720000pt;}
.ls2a{letter-spacing:-0.624000pt;}
.ls16{letter-spacing:-0.576000pt;}
.ls4a{letter-spacing:-0.521920pt;}
.ls2e{letter-spacing:-0.480000pt;}
.ls50{letter-spacing:-0.464000pt;}
.ls46{letter-spacing:-0.410081pt;}
.ls47{letter-spacing:-0.372799pt;}
.ls43{letter-spacing:-0.339002pt;}
.ls3b{letter-spacing:-0.336000pt;}
.ls45{letter-spacing:-0.335522pt;}
.ls48{letter-spacing:-0.319542pt;}
.ls42{letter-spacing:-0.290573pt;}
.ls30{letter-spacing:-0.288000pt;}
.ls44{letter-spacing:-0.287590pt;}
.ls1f{letter-spacing:-0.280000pt;}
.ls49{letter-spacing:-0.279601pt;}
.ls2b{letter-spacing:-0.240000pt;}
.ls41{letter-spacing:-0.239658pt;}
.ls1e{letter-spacing:-0.200000pt;}
.ls2c{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.096000pt;}
.ls3a{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.048000pt;}
.ls37{letter-spacing:0.074667pt;}
.ls38{letter-spacing:0.076515pt;}
.ls9{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.240000pt;}
.lsc{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.336000pt;}
.ls35{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.512000pt;}
.ls36{letter-spacing:0.528000pt;}
.lsd{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.624000pt;}
.ls29{letter-spacing:0.672000pt;}
.ls1a{letter-spacing:0.720000pt;}
.ls34{letter-spacing:0.768000pt;}
.ls26{letter-spacing:0.816000pt;}
.ls27{letter-spacing:0.828267pt;}
.ls8{letter-spacing:0.864000pt;}
.lse{letter-spacing:0.912000pt;}
.ls22{letter-spacing:0.960000pt;}
.ls3c{letter-spacing:0.963454pt;}
.ls3e{letter-spacing:0.963987pt;}
.ls3d{letter-spacing:0.998573pt;}
.ls17{letter-spacing:1.104000pt;}
.ls5{letter-spacing:1.152000pt;}
.ls20{letter-spacing:1.248000pt;}
.ls40{letter-spacing:1.269333pt;}
.ls4f{letter-spacing:1.296000pt;}
.ls4{letter-spacing:1.728000pt;}
.ls21{letter-spacing:2.016000pt;}
.ls19{letter-spacing:2.256000pt;}
.ls4c{letter-spacing:2.277333pt;}
.ls39{letter-spacing:2.304000pt;}
.ls1b{letter-spacing:2.352000pt;}
.ls10{letter-spacing:2.448000pt;}
.ls4b{letter-spacing:2.464000pt;}
.ls18{letter-spacing:2.496000pt;}
.ls24{letter-spacing:2.544000pt;}
.ls7{letter-spacing:2.592000pt;}
.ls31{letter-spacing:2.688000pt;}
.ls11{letter-spacing:2.736000pt;}
.ls23{letter-spacing:2.880000pt;}
.ls33{letter-spacing:3.072000pt;}
.ls32{letter-spacing:11.616000pt;}
.ls3f{letter-spacing:1045.418989pt;}
.ws1b0{word-spacing:-48.428800pt;}
.wsa{word-spacing:-48.000000pt;}
.ws168{word-spacing:-40.000000pt;}
.ws1bc{word-spacing:-39.942933pt;}
.ws92{word-spacing:-39.840000pt;}
.ws1bf{word-spacing:-18.043520pt;}
.ws1f9{word-spacing:-15.872000pt;}
.wsd3{word-spacing:-14.688000pt;}
.ws14f{word-spacing:-14.544000pt;}
.ws4a{word-spacing:-14.448000pt;}
.ws9{word-spacing:-14.400000pt;}
.ws8d{word-spacing:-14.304000pt;}
.ws4b{word-spacing:-14.208000pt;}
.ws1b8{word-spacing:-13.261010pt;}
.ws1fb{word-spacing:-13.248000pt;}
.ws1b9{word-spacing:-12.941467pt;}
.ws1b7{word-spacing:-12.888210pt;}
.ws8f{word-spacing:-12.768000pt;}
.ws151{word-spacing:-12.720000pt;}
.ws91{word-spacing:-12.624000pt;}
.wsd2{word-spacing:-12.576000pt;}
.ws4c{word-spacing:-12.384000pt;}
.wsd1{word-spacing:-12.240000pt;}
.wsd4{word-spacing:-12.144000pt;}
.ws7e{word-spacing:-11.952000pt;}
.ws1b2{word-spacing:-11.935002pt;}
.ws90{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.856000pt;}
.wsad{word-spacing:-11.808000pt;}
.wsac{word-spacing:-11.712000pt;}
.ws7{word-spacing:-11.664000pt;}
.ws150{word-spacing:-11.616000pt;}
.ws1b1{word-spacing:-11.599479pt;}
.ws8e{word-spacing:-11.568000pt;}
.ws20b{word-spacing:-11.507200pt;}
.wsb{word-spacing:-11.280000pt;}
.ws134{word-spacing:-10.800000pt;}
.ws4d{word-spacing:-10.624000pt;}
.ws5{word-spacing:-9.960000pt;}
.ws1b3{word-spacing:-9.945790pt;}
.ws6{word-spacing:-9.920000pt;}
.ws1af{word-spacing:-9.905847pt;}
.ws1be{word-spacing:-9.865905pt;}
.ws1fa{word-spacing:-9.800000pt;}
.ws1ba{word-spacing:-9.786019pt;}
.ws135{word-spacing:-9.720000pt;}
.ws7c{word-spacing:-9.680000pt;}
.ws198{word-spacing:-9.640000pt;}
.ws1bb{word-spacing:-9.546361pt;}
.ws1bd{word-spacing:-9.506418pt;}
.ws79{word-spacing:-9.296000pt;}
.ws1c0{word-spacing:-9.258667pt;}
.ws1d0{word-spacing:-9.146667pt;}
.ws209{word-spacing:-6.480000pt;}
.ws11b{word-spacing:-6.096000pt;}
.ws32{word-spacing:-5.952000pt;}
.ws4e{word-spacing:-5.424000pt;}
.ws16e{word-spacing:-5.136000pt;}
.ws1a8{word-spacing:-4.464000pt;}
.wsc1{word-spacing:-3.936000pt;}
.ws117{word-spacing:-3.408000pt;}
.ws1ef{word-spacing:-3.360000pt;}
.wsc2{word-spacing:-3.264000pt;}
.ws76{word-spacing:-3.216000pt;}
.ws1e6{word-spacing:-3.168000pt;}
.ws18f{word-spacing:-3.072000pt;}
.ws75{word-spacing:-3.024000pt;}
.ws126{word-spacing:-2.880000pt;}
.ws1ac{word-spacing:-2.832000pt;}
.wsed{word-spacing:-2.784000pt;}
.ws5e{word-spacing:-2.688000pt;}
.wsc{word-spacing:-2.592000pt;}
.ws180{word-spacing:-2.544000pt;}
.wsf9{word-spacing:-2.496000pt;}
.ws70{word-spacing:-2.448000pt;}
.wseb{word-spacing:-2.352000pt;}
.ws136{word-spacing:-2.304000pt;}
.ws153{word-spacing:-2.208000pt;}
.ws18a{word-spacing:-2.160000pt;}
.ws5b{word-spacing:-2.112000pt;}
.ws4f{word-spacing:-2.064000pt;}
.ws93{word-spacing:-2.016000pt;}
.ws181{word-spacing:-1.968000pt;}
.ws179{word-spacing:-1.920000pt;}
.ws28{word-spacing:-1.872000pt;}
.ws111{word-spacing:-1.824000pt;}
.ws14e{word-spacing:-1.776000pt;}
.ws27{word-spacing:-1.728000pt;}
.ws9d{word-spacing:-1.680000pt;}
.ws30{word-spacing:-1.632000pt;}
.ws1cf{word-spacing:-1.605333pt;}
.ws8c{word-spacing:-1.584000pt;}
.ws18b{word-spacing:-1.536000pt;}
.ws64{word-spacing:-1.488000pt;}
.ws18e{word-spacing:-1.440000pt;}
.ws1ce{word-spacing:-1.408000pt;}
.ws62{word-spacing:-1.392000pt;}
.wsb5{word-spacing:-1.344000pt;}
.ws66{word-spacing:-1.296000pt;}
.ws52{word-spacing:-1.248000pt;}
.ws137{word-spacing:-1.104000pt;}
.ws1fc{word-spacing:-1.056000pt;}
.wsbf{word-spacing:-1.008000pt;}
.wsab{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.912000pt;}
.ws20d{word-spacing:-0.881600pt;}
.wsaa{word-spacing:-0.864000pt;}
.wsce{word-spacing:-0.816000pt;}
.ws53{word-spacing:-0.768000pt;}
.wsa4{word-spacing:-0.720000pt;}
.ws125{word-spacing:-0.672000pt;}
.ws9c{word-spacing:-0.624000pt;}
.ws24{word-spacing:-0.576000pt;}
.ws170{word-spacing:-0.528000pt;}
.ws26{word-spacing:-0.512000pt;}
.ws23{word-spacing:-0.480000pt;}
.ws88{word-spacing:-0.432000pt;}
.ws1fd{word-spacing:-0.384000pt;}
.ws51{word-spacing:-0.336000pt;}
.ws22{word-spacing:-0.288000pt;}
.ws5d{word-spacing:-0.240000pt;}
.wsb4{word-spacing:-0.192000pt;}
.ws184{word-spacing:-0.144000pt;}
.ws14{word-spacing:-0.096000pt;}
.ws208{word-spacing:-0.080000pt;}
.ws17f{word-spacing:-0.076515pt;}
.ws17e{word-spacing:-0.074667pt;}
.ws1b6{word-spacing:-0.058583pt;}
.ws1b4{word-spacing:-0.053257pt;}
.ws143{word-spacing:-0.048000pt;}
.ws1c8{word-spacing:-0.039943pt;}
.ws1{word-spacing:0.000000pt;}
.ws1d7{word-spacing:0.048000pt;}
.ws6c{word-spacing:0.096000pt;}
.wsa1{word-spacing:0.144000pt;}
.wsd5{word-spacing:0.192000pt;}
.ws1c1{word-spacing:0.239658pt;}
.ws1c7{word-spacing:0.279601pt;}
.ws7f{word-spacing:0.280000pt;}
.ws1c3{word-spacing:0.287590pt;}
.ws145{word-spacing:0.288000pt;}
.ws1c2{word-spacing:0.290573pt;}
.ws1c6{word-spacing:0.319542pt;}
.ws1c4{word-spacing:0.335522pt;}
.ws12{word-spacing:0.336000pt;}
.ws1b5{word-spacing:0.351498pt;}
.ws1c5{word-spacing:0.372799pt;}
.ws113{word-spacing:0.384000pt;}
.ws1d8{word-spacing:0.432000pt;}
.ws20c{word-spacing:0.464000pt;}
.ws193{word-spacing:0.480000pt;}
.ws1c9{word-spacing:0.521920pt;}
.ws13d{word-spacing:0.528000pt;}
.wsd6{word-spacing:0.576000pt;}
.ws80{word-spacing:0.672000pt;}
.wscb{word-spacing:0.720000pt;}
.ws1cc{word-spacing:0.768000pt;}
.ws18c{word-spacing:0.816000pt;}
.wsf4{word-spacing:0.864000pt;}
.wsb3{word-spacing:0.912000pt;}
.ws6f{word-spacing:0.960000pt;}
.ws10{word-spacing:1.008000pt;}
.wsf7{word-spacing:1.056000pt;}
.ws13{word-spacing:1.104000pt;}
.ws45{word-spacing:1.152000pt;}
.wsaf{word-spacing:1.200000pt;}
.ws60{word-spacing:1.248000pt;}
.wse{word-spacing:1.296000pt;}
.ws1d2{word-spacing:1.344000pt;}
.ws5f{word-spacing:1.392000pt;}
.ws166{word-spacing:1.440000pt;}
.ws103{word-spacing:1.488000pt;}
.ws1df{word-spacing:1.536000pt;}
.ws40{word-spacing:1.584000pt;}
.ws3b{word-spacing:1.632000pt;}
.ws21{word-spacing:1.728000pt;}
.ws11{word-spacing:1.824000pt;}
.ws101{word-spacing:1.872000pt;}
.ws1db{word-spacing:1.920000pt;}
.ws12e{word-spacing:2.016000pt;}
.ws6e{word-spacing:2.064000pt;}
.wsdf{word-spacing:2.112000pt;}
.wsf8{word-spacing:2.160000pt;}
.ws3a{word-spacing:2.208000pt;}
.wscd{word-spacing:2.256000pt;}
.ws139{word-spacing:2.352000pt;}
.ws50{word-spacing:2.400000pt;}
.wsc4{word-spacing:2.448000pt;}
.wsba{word-spacing:2.544000pt;}
.ws141{word-spacing:2.592000pt;}
.wsd0{word-spacing:2.640000pt;}
.wse3{word-spacing:2.736000pt;}
.wsf0{word-spacing:2.784000pt;}
.ws1ea{word-spacing:2.832000pt;}
.wsb0{word-spacing:2.880000pt;}
.ws5c{word-spacing:2.928000pt;}
.wsde{word-spacing:2.976000pt;}
.ws84{word-spacing:3.072000pt;}
.ws177{word-spacing:3.120000pt;}
.ws1e7{word-spacing:3.168000pt;}
.ws183{word-spacing:3.216000pt;}
.wsef{word-spacing:3.264000pt;}
.ws3f{word-spacing:3.312000pt;}
.ws74{word-spacing:3.360000pt;}
.ws3{word-spacing:3.402000pt;}
.ws15f{word-spacing:3.408000pt;}
.ws1a2{word-spacing:3.456000pt;}
.wsea{word-spacing:3.504000pt;}
.wsbb{word-spacing:3.552000pt;}
.wsa2{word-spacing:3.600000pt;}
.ws1e{word-spacing:3.648000pt;}
.wsfe{word-spacing:3.696000pt;}
.ws61{word-spacing:3.744000pt;}
.ws192{word-spacing:3.792000pt;}
.ws2{word-spacing:3.855600pt;}
.ws17b{word-spacing:3.888000pt;}
.wsf1{word-spacing:3.936000pt;}
.wsc5{word-spacing:3.984000pt;}
.ws4{word-spacing:4.082400pt;}
.ws138{word-spacing:4.128000pt;}
.ws49{word-spacing:4.224000pt;}
.ws1ae{word-spacing:4.272000pt;}
.ws148{word-spacing:4.320000pt;}
.ws39{word-spacing:4.368000pt;}
.ws33{word-spacing:4.416000pt;}
.ws157{word-spacing:4.464000pt;}
.ws6d{word-spacing:4.512000pt;}
.wsb9{word-spacing:4.560000pt;}
.ws10b{word-spacing:4.608000pt;}
.ws2d{word-spacing:4.656000pt;}
.ws1ad{word-spacing:4.704000pt;}
.ws1d5{word-spacing:4.752000pt;}
.wsc3{word-spacing:4.800000pt;}
.ws188{word-spacing:4.848000pt;}
.ws63{word-spacing:4.896000pt;}
.ws86{word-spacing:4.944000pt;}
.ws87{word-spacing:4.992000pt;}
.ws124{word-spacing:5.040000pt;}
.wsa0{word-spacing:5.088000pt;}
.ws67{word-spacing:5.136000pt;}
.ws2b{word-spacing:5.184000pt;}
.ws16b{word-spacing:5.232000pt;}
.wsf5{word-spacing:5.280000pt;}
.ws73{word-spacing:5.328000pt;}
.wsee{word-spacing:5.376000pt;}
.ws1e5{word-spacing:5.472000pt;}
.ws1c{word-spacing:5.520000pt;}
.ws127{word-spacing:5.568000pt;}
.ws12a{word-spacing:5.664000pt;}
.ws3c{word-spacing:5.712000pt;}
.ws8b{word-spacing:5.808000pt;}
.wsf2{word-spacing:5.856000pt;}
.ws108{word-spacing:5.904000pt;}
.ws2e{word-spacing:5.952000pt;}
.ws189{word-spacing:6.000000pt;}
.ws2f{word-spacing:6.048000pt;}
.ws3d{word-spacing:6.096000pt;}
.ws195{word-spacing:6.144000pt;}
.ws2a{word-spacing:6.192000pt;}
.ws16{word-spacing:6.240000pt;}
.ws149{word-spacing:6.288000pt;}
.ws13c{word-spacing:6.336000pt;}
.wsc7{word-spacing:6.384000pt;}
.ws17c{word-spacing:6.432000pt;}
.ws81{word-spacing:6.480000pt;}
.ws1d3{word-spacing:6.528000pt;}
.ws11a{word-spacing:6.624000pt;}
.ws29{word-spacing:6.672000pt;}
.ws154{word-spacing:6.720000pt;}
.ws115{word-spacing:6.768000pt;}
.ws110{word-spacing:6.816000pt;}
.ws112{word-spacing:6.864000pt;}
.ws1ab{word-spacing:6.960000pt;}
.ws10e{word-spacing:7.008000pt;}
.ws206{word-spacing:7.104000pt;}
.ws95{word-spacing:7.152000pt;}
.wsf6{word-spacing:7.248000pt;}
.ws129{word-spacing:7.296000pt;}
.ws96{word-spacing:7.344000pt;}
.ws72{word-spacing:7.392000pt;}
.ws19e{word-spacing:7.440000pt;}
.ws85{word-spacing:7.488000pt;}
.ws65{word-spacing:7.536000pt;}
.ws59{word-spacing:7.584000pt;}
.ws13e{word-spacing:7.632000pt;}
.ws15c{word-spacing:7.680000pt;}
.ws172{word-spacing:7.728000pt;}
.ws128{word-spacing:7.776000pt;}
.ws10f{word-spacing:7.824000pt;}
.ws100{word-spacing:7.872000pt;}
.ws17a{word-spacing:8.016000pt;}
.ws12c{word-spacing:8.064000pt;}
.ws147{word-spacing:8.112000pt;}
.wsae{word-spacing:8.160000pt;}
.ws14a{word-spacing:8.208000pt;}
.ws3e{word-spacing:8.256000pt;}
.wsf{word-spacing:8.304000pt;}
.ws83{word-spacing:8.448000pt;}
.wsff{word-spacing:8.496000pt;}
.ws13b{word-spacing:8.592000pt;}
.ws140{word-spacing:8.640000pt;}
.ws13a{word-spacing:8.736000pt;}
.wsbc{word-spacing:8.784000pt;}
.ws12d{word-spacing:8.832000pt;}
.wscf{word-spacing:8.880000pt;}
.wsd{word-spacing:8.976000pt;}
.ws9b{word-spacing:9.024000pt;}
.ws185{word-spacing:9.072000pt;}
.ws109{word-spacing:9.168000pt;}
.ws5a{word-spacing:9.216000pt;}
.ws15{word-spacing:9.264000pt;}
.ws16d{word-spacing:9.312000pt;}
.ws89{word-spacing:9.408000pt;}
.ws1a4{word-spacing:9.504000pt;}
.ws54{word-spacing:9.552000pt;}
.ws167{word-spacing:9.600000pt;}
.ws99{word-spacing:9.648000pt;}
.ws1e3{word-spacing:9.696000pt;}
.ws190{word-spacing:9.744000pt;}
.ws1f0{word-spacing:9.792000pt;}
.wsc8{word-spacing:9.840000pt;}
.wsf3{word-spacing:9.888000pt;}
.wsca{word-spacing:9.936000pt;}
.ws152{word-spacing:9.984000pt;}
.ws10c{word-spacing:10.032000pt;}
.wsfb{word-spacing:10.080000pt;}
.ws1d{word-spacing:10.128000pt;}
.ws19a{word-spacing:10.135467pt;}
.wsc9{word-spacing:10.176000pt;}
.ws17d{word-spacing:10.272000pt;}
.ws71{word-spacing:10.320000pt;}
.ws12f{word-spacing:10.368000pt;}
.ws175{word-spacing:10.416000pt;}
.ws186{word-spacing:10.464000pt;}
.ws1cd{word-spacing:10.512000pt;}
.wsfc{word-spacing:10.560000pt;}
.ws1a3{word-spacing:10.704000pt;}
.wsb7{word-spacing:10.800000pt;}
.ws11f{word-spacing:10.848000pt;}
.ws1d4{word-spacing:10.896000pt;}
.wsa3{word-spacing:10.992000pt;}
.wse4{word-spacing:11.040000pt;}
.ws8a{word-spacing:11.088000pt;}
.ws69{word-spacing:11.136000pt;}
.ws1f{word-spacing:11.184000pt;}
.wscc{word-spacing:11.280000pt;}
.ws1a1{word-spacing:11.328000pt;}
.ws194{word-spacing:11.376000pt;}
.ws1b{word-spacing:11.424000pt;}
.ws9f{word-spacing:11.472000pt;}
.ws1ec{word-spacing:11.520000pt;}
.ws114{word-spacing:11.568000pt;}
.ws196{word-spacing:11.616000pt;}
.ws104{word-spacing:11.664000pt;}
.ws1a{word-spacing:11.712000pt;}
.ws13f{word-spacing:11.760000pt;}
.wsb2{word-spacing:11.808000pt;}
.ws1a0{word-spacing:11.856000pt;}
.ws14b{word-spacing:11.904000pt;}
.ws9e{word-spacing:11.952000pt;}
.ws10d{word-spacing:12.000000pt;}
.ws162{word-spacing:12.096000pt;}
.ws41{word-spacing:12.192000pt;}
.ws1f8{word-spacing:12.240000pt;}
.ws121{word-spacing:12.288000pt;}
.wsec{word-spacing:12.384000pt;}
.ws19{word-spacing:12.432000pt;}
.ws19f{word-spacing:12.480000pt;}
.ws1ed{word-spacing:12.528000pt;}
.ws56{word-spacing:12.624000pt;}
.ws98{word-spacing:12.720000pt;}
.ws1ca{word-spacing:12.768000pt;}
.ws132{word-spacing:12.816000pt;}
.wsfa{word-spacing:12.864000pt;}
.ws14c{word-spacing:12.960000pt;}
.ws176{word-spacing:13.008000pt;}
.wsbe{word-spacing:13.152000pt;}
.ws44{word-spacing:13.200000pt;}
.ws11d{word-spacing:13.248000pt;}
.ws144{word-spacing:13.296000pt;}
.ws12b{word-spacing:13.440000pt;}
.ws42{word-spacing:13.488000pt;}
.ws1e4{word-spacing:13.536000pt;}
.ws118{word-spacing:13.728000pt;}
.ws17{word-spacing:13.824000pt;}
.ws55{word-spacing:13.872000pt;}
.wse7{word-spacing:13.920000pt;}
.ws16c{word-spacing:13.968000pt;}
.ws133{word-spacing:14.064000pt;}
.ws207{word-spacing:14.112000pt;}
.wsdd{word-spacing:14.160000pt;}
.ws48{word-spacing:14.208000pt;}
.ws77{word-spacing:14.256000pt;}
.ws18{word-spacing:14.304000pt;}
.wse1{word-spacing:14.400000pt;}
.ws6a{word-spacing:14.544000pt;}
.ws1a6{word-spacing:14.592000pt;}
.wsb8{word-spacing:14.640000pt;}
.wse9{word-spacing:14.688000pt;}
.ws78{word-spacing:14.784000pt;}
.ws47{word-spacing:14.832000pt;}
.ws94{word-spacing:14.880000pt;}
.ws156{word-spacing:14.928000pt;}
.ws171{word-spacing:15.120000pt;}
.ws18d{word-spacing:15.216000pt;}
.wse5{word-spacing:15.312000pt;}
.ws182{word-spacing:15.360000pt;}
.ws1f5{word-spacing:15.504000pt;}
.ws161{word-spacing:15.552000pt;}
.ws57{word-spacing:15.600000pt;}
.ws173{word-spacing:15.648000pt;}
.ws1e9{word-spacing:15.696000pt;}
.wsd9{word-spacing:15.744000pt;}
.wsfd{word-spacing:15.792000pt;}
.ws15b{word-spacing:16.080000pt;}
.ws163{word-spacing:16.128000pt;}
.ws1da{word-spacing:16.272000pt;}
.ws97{word-spacing:16.320000pt;}
.ws1dd{word-spacing:16.464000pt;}
.ws31{word-spacing:16.512000pt;}
.wsdc{word-spacing:16.656000pt;}
.ws1e8{word-spacing:16.752000pt;}
.ws16f{word-spacing:16.944000pt;}
.wse8{word-spacing:16.992000pt;}
.ws202{word-spacing:17.184000pt;}
.wsd7{word-spacing:17.232000pt;}
.wsbd{word-spacing:17.376000pt;}
.ws19b{word-spacing:17.848000pt;}
.ws160{word-spacing:17.856000pt;}
.ws10a{word-spacing:17.952000pt;}
.wsd8{word-spacing:18.144000pt;}
.ws146{word-spacing:18.336000pt;}
.wse6{word-spacing:18.384000pt;}
.wsdb{word-spacing:18.432000pt;}
.ws35{word-spacing:18.672000pt;}
.wsc0{word-spacing:18.768000pt;}
.ws106{word-spacing:18.816000pt;}
.ws191{word-spacing:18.912000pt;}
.ws174{word-spacing:19.008000pt;}
.ws201{word-spacing:19.056000pt;}
.ws43{word-spacing:19.104000pt;}
.ws1de{word-spacing:19.152000pt;}
.ws1d1{word-spacing:19.200000pt;}
.ws119{word-spacing:19.248000pt;}
.ws105{word-spacing:19.296000pt;}
.ws120{word-spacing:19.344000pt;}
.wsa9{word-spacing:19.392000pt;}
.ws68{word-spacing:19.488000pt;}
.ws1d6{word-spacing:20.064000pt;}
.ws1ee{word-spacing:20.160000pt;}
.ws158{word-spacing:20.208000pt;}
.ws46{word-spacing:20.352000pt;}
.ws11e{word-spacing:20.400000pt;}
.ws159{word-spacing:20.688000pt;}
.ws1a9{word-spacing:20.832000pt;}
.wsb6{word-spacing:20.880000pt;}
.wsc6{word-spacing:21.024000pt;}
.ws131{word-spacing:21.216000pt;}
.ws116{word-spacing:21.504000pt;}
.ws142{word-spacing:21.552000pt;}
.ws38{word-spacing:21.840000pt;}
.ws15a{word-spacing:22.368000pt;}
.ws16a{word-spacing:22.608000pt;}
.ws1dc{word-spacing:22.704000pt;}
.ws130{word-spacing:22.752000pt;}
.ws187{word-spacing:23.136000pt;}
.ws14d{word-spacing:23.328000pt;}
.ws1ff{word-spacing:23.376000pt;}
.ws122{word-spacing:23.424000pt;}
.ws1cb{word-spacing:23.808000pt;}
.ws1eb{word-spacing:23.904000pt;}
.ws200{word-spacing:24.048000pt;}
.ws37{word-spacing:24.096000pt;}
.ws205{word-spacing:24.192000pt;}
.ws34{word-spacing:24.336000pt;}
.ws1fe{word-spacing:24.432000pt;}
.wsda{word-spacing:24.480000pt;}
.wsb1{word-spacing:24.864000pt;}
.ws9a{word-spacing:25.296000pt;}
.ws6b{word-spacing:25.440000pt;}
.ws20{word-spacing:25.536000pt;}
.ws1aa{word-spacing:25.920000pt;}
.wsa6{word-spacing:26.112000pt;}
.ws203{word-spacing:26.304000pt;}
.ws164{word-spacing:26.592000pt;}
.ws1d9{word-spacing:26.736000pt;}
.ws178{word-spacing:27.072000pt;}
.ws2c{word-spacing:27.600000pt;}
.ws1e1{word-spacing:28.560000pt;}
.ws1a5{word-spacing:28.944000pt;}
.ws58{word-spacing:29.088000pt;}
.ws107{word-spacing:29.280000pt;}
.ws155{word-spacing:29.712000pt;}
.ws36{word-spacing:29.856000pt;}
.ws15d{word-spacing:30.480000pt;}
.ws15e{word-spacing:30.528000pt;}
.ws204{word-spacing:31.152000pt;}
.ws1f6{word-spacing:32.016000pt;}
.ws1f7{word-spacing:32.448000pt;}
.ws102{word-spacing:32.496000pt;}
.ws123{word-spacing:32.544000pt;}
.ws82{word-spacing:32.784000pt;}
.wse0{word-spacing:32.832000pt;}
.ws1e2{word-spacing:35.808000pt;}
.ws197{word-spacing:36.672000pt;}
.ws1e0{word-spacing:37.536000pt;}
.wsa7{word-spacing:38.256000pt;}
.wsa5{word-spacing:38.400000pt;}
.ws1a7{word-spacing:38.736000pt;}
.wse2{word-spacing:39.216000pt;}
.ws11c{word-spacing:41.904000pt;}
.ws1f3{word-spacing:43.632000pt;}
.ws165{word-spacing:43.776000pt;}
.ws19c{word-spacing:43.806400pt;}
.ws1f2{word-spacing:47.472000pt;}
.ws1f1{word-spacing:57.312000pt;}
.ws1f4{word-spacing:59.520000pt;}
.wsa8{word-spacing:65.616000pt;}
.ws7b{word-spacing:68.433067pt;}
.ws7a{word-spacing:68.436267pt;}
.ws7d{word-spacing:71.445867pt;}
.ws199{word-spacing:88.070400pt;}
.ws0{word-spacing:104.226422pt;}
.ws19d{word-spacing:194.282667pt;}
.ws20a{word-spacing:398.809600pt;}
.ws169{word-spacing:677.596800pt;}
._4c{margin-left:-2796.852680pt;}
._46{margin-left:-231.237333pt;}
._1d{margin-left:-214.819200pt;}
._3d{margin-left:-125.198400pt;}
._29{margin-left:-77.773920pt;}
._49{margin-left:-69.614640pt;}
._a{margin-left:-64.332920pt;}
._34{margin-left:-53.449200pt;}
._28{margin-left:-51.321600pt;}
._3a{margin-left:-48.657840pt;}
._1f{margin-left:-44.240280pt;}
._31{margin-left:-42.124800pt;}
._e{margin-left:-41.080920pt;}
._c{margin-left:-39.736920pt;}
._1a{margin-left:-38.088240pt;}
._2e{margin-left:-35.883480pt;}
._36{margin-left:-34.164840pt;}
._35{margin-left:-31.885080pt;}
._2f{margin-left:-30.166680pt;}
._2d{margin-left:-28.681200pt;}
._19{margin-left:-27.235080pt;}
._39{margin-left:-25.849680pt;}
._0{margin-left:-24.864000pt;}
._30{margin-left:-23.168280pt;}
._23{margin-left:-21.862920pt;}
._20{margin-left:-20.713200pt;}
._37{margin-left:-19.129200pt;}
._3b{margin-left:-18.121200pt;}
._d{margin-left:-16.518480pt;}
._2a{margin-left:-14.944000pt;}
._b{margin-left:-12.709320pt;}
._16{margin-left:-11.425320pt;}
._2b{margin-left:-10.525080pt;}
._17{margin-left:-9.595560pt;}
._1b{margin-left:-8.129040pt;}
._13{margin-left:-6.381960pt;}
._6{margin-left:-4.639440pt;}
._9{margin-left:-3.442920pt;}
._2{margin-left:-2.054400pt;}
._1{margin-left:-1.056000pt;}
._3{width:1.260120pt;}
._5{width:2.154120pt;}
._7{width:3.119880pt;}
._4{width:4.319640pt;}
._8{width:5.919480pt;}
._11{width:7.576680pt;}
._18{width:8.704680pt;}
._12{width:10.252560pt;}
._2c{width:12.716880pt;}
._27{width:13.956720pt;}
._25{width:15.623760pt;}
._24{width:16.632000pt;}
._22{width:17.587200pt;}
._21{width:18.741480pt;}
._14{width:20.116560pt;}
._15{width:21.086400pt;}
._10{width:22.610280pt;}
._f{width:23.808000pt;}
._3f{width:28.997867pt;}
._48{width:29.992200pt;}
._33{width:30.904680pt;}
._32{width:32.083200pt;}
._38{width:33.099360pt;}
._26{width:37.158840pt;}
._4b{width:40.189080pt;}
._4a{width:41.128440pt;}
._42{width:84.990400pt;}
._41{width:85.936000pt;}
._43{width:87.331733pt;}
._3e{width:106.082133pt;}
._3c{width:119.398400pt;}
._47{width:195.817067pt;}
._1e{width:201.454400pt;}
._1c{width:210.014400pt;}
._45{width:689.616000pt;}
._44{width:775.680000pt;}
._40{width:992.251587pt;}
.fs14{font-size:26.628800pt;}
.fs18{font-size:26.666667pt;}
.fs13{font-size:37.280000pt;}
.fs9{font-size:37.333333pt;}
.fsc{font-size:38.257600pt;}
.fse{font-size:39.942933pt;}
.fs6{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs19{font-size:46.400000pt;}
.fs10{font-size:47.931733pt;}
.fs8{font-size:48.000000pt;}
.fsf{font-size:48.428800pt;}
.fs11{font-size:53.257067pt;}
.fs12{font-size:58.582933pt;}
.fs16{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fs15{font-size:74.560000pt;}
.fsd{font-size:74.666667pt;}
.fs4{font-size:75.347733pt;}
.fs17{font-size:85.333333pt;}
.fs0{font-size:96.000000pt;}
.fs2{font-size:99.224533pt;}
.fs3{font-size:150.695467pt;}
.fsa{font-size:160.000000pt;}
.fs7{font-size:192.000000pt;}
.fs1{font-size:226.800000pt;}
.y0{bottom:0.000000pt;}
.y354{bottom:4.381200pt;}
.ybb{bottom:4.751733pt;}
.y9c{bottom:40.670400pt;}
.y9b{bottom:41.433067pt;}
.yb{bottom:41.973733pt;}
.y49f{bottom:67.019733pt;}
.y4e8{bottom:73.050133pt;}
.y164{bottom:81.692267pt;}
.y43{bottom:82.017067pt;}
.y30b{bottom:82.018400pt;}
.y414{bottom:82.049067pt;}
.y266{bottom:82.064933pt;}
.y283{bottom:82.065067pt;}
.y54{bottom:82.077067pt;}
.y1bd{bottom:82.085067pt;}
.y234{bottom:82.088933pt;}
.y3fc{bottom:82.092933pt;}
.y21b{bottom:82.093067pt;}
.y84{bottom:82.101067pt;}
.y19b{bottom:82.134267pt;}
.y144{bottom:82.136933pt;}
.y304{bottom:82.148933pt;}
.y1f4{bottom:82.184933pt;}
.yab{bottom:82.272400pt;}
.yb8{bottom:82.386000pt;}
.y2be{bottom:82.829600pt;}
.y497{bottom:83.019733pt;}
.y457{bottom:83.326800pt;}
.y44c{bottom:83.479067pt;}
.y430{bottom:83.768400pt;}
.y32c{bottom:89.989333pt;}
.yb7{bottom:95.723333pt;}
.y2bd{bottom:96.166933pt;}
.y30a{bottom:96.681067pt;}
.y2dc{bottom:97.989067pt;}
.y42{bottom:98.013067pt;}
.y413{bottom:98.045067pt;}
.y265{bottom:98.060933pt;}
.y282{bottom:98.061067pt;}
.y53{bottom:98.073067pt;}
.y1bc{bottom:98.081067pt;}
.y233{bottom:98.084933pt;}
.y3fb{bottom:98.088933pt;}
.y21a{bottom:98.089067pt;}
.y83{bottom:98.097067pt;}
.y19a{bottom:98.130267pt;}
.y143{bottom:98.132933pt;}
.y303{bottom:98.144933pt;}
.y1f3{bottom:98.180933pt;}
.y163{bottom:98.362267pt;}
.yaa{bottom:98.942400pt;}
.y496{bottom:99.019733pt;}
.y456{bottom:99.326800pt;}
.y44b{bottom:99.479067pt;}
.y42f{bottom:99.768400pt;}
.y4d3{bottom:100.437067pt;}
.y108{bottom:102.169067pt;}
.y309{bottom:110.018400pt;}
.yb6{bottom:111.720667pt;}
.y2db{bottom:113.989067pt;}
.y41{bottom:114.009067pt;}
.y412{bottom:114.041067pt;}
.y264{bottom:114.056933pt;}
.y3c9{bottom:114.057067pt;}
.y52{bottom:114.069067pt;}
.y1bb{bottom:114.077067pt;}
.y232{bottom:114.080933pt;}
.y3fa{bottom:114.084933pt;}
.y219{bottom:114.085067pt;}
.y82{bottom:114.093067pt;}
.y199{bottom:114.126267pt;}
.y142{bottom:114.128933pt;}
.y302{bottom:114.140933pt;}
.y1f2{bottom:114.176933pt;}
.y495{bottom:115.019733pt;}
.y455{bottom:115.326800pt;}
.y44a{bottom:115.479067pt;}
.ya9{bottom:115.612400pt;}
.y42e{bottom:115.768400pt;}
.y4d2{bottom:116.437067pt;}
.y107{bottom:118.169067pt;}
.y308{bottom:123.355733pt;}
.yb5{bottom:125.058000pt;}
.y3c7{bottom:127.585600pt;}
.y40{bottom:130.005067pt;}
.y411{bottom:130.037067pt;}
.y263{bottom:130.052933pt;}
.y51{bottom:130.065067pt;}
.y1ba{bottom:130.073067pt;}
.y231{bottom:130.076933pt;}
.y3f9{bottom:130.080933pt;}
.y218{bottom:130.081067pt;}
.y81{bottom:130.089067pt;}
.y394{bottom:130.101067pt;}
.y198{bottom:130.122267pt;}
.y141{bottom:130.124933pt;}
.y301{bottom:130.136933pt;}
.y1f1{bottom:130.172933pt;}
.y101{bottom:130.483600pt;}
.y494{bottom:131.019733pt;}
.y454{bottom:131.326800pt;}
.y449{bottom:131.479067pt;}
.ya8{bottom:132.282400pt;}
.y4d1{bottom:132.437067pt;}
.y2bb{bottom:133.376800pt;}
.y106{bottom:134.169067pt;}
.y307{bottom:136.693067pt;}
.yb4{bottom:138.395333pt;}
.y359{bottom:138.642139pt;}
.y353{bottom:141.363163pt;}
.y100{bottom:145.147600pt;}
.y3f{bottom:146.001067pt;}
.y410{bottom:146.033067pt;}
.y424{bottom:146.045067pt;}
.y262{bottom:146.048933pt;}
.y50{bottom:146.061067pt;}
.y1b9{bottom:146.069067pt;}
.y217{bottom:146.077067pt;}
.y80{bottom:146.085067pt;}
.y393{bottom:146.097067pt;}
.y197{bottom:146.118267pt;}
.y140{bottom:146.120933pt;}
.y300{bottom:146.132933pt;}
.y2da{bottom:146.133067pt;}
.y1f0{bottom:146.168933pt;}
.y453{bottom:147.326800pt;}
.y448{bottom:147.479067pt;}
.y42d{bottom:147.768400pt;}
.y2ba{bottom:149.376800pt;}
.y306{bottom:150.030400pt;}
.y105{bottom:150.169067pt;}
.y358{bottom:153.960254pt;}
.y352{bottom:156.012234pt;}
.y3c6{bottom:159.589600pt;}
.yff{bottom:159.811600pt;}
.y3e{bottom:161.997067pt;}
.y40f{bottom:162.029067pt;}
.y423{bottom:162.041067pt;}
.y261{bottom:162.044933pt;}
.y4f{bottom:162.057067pt;}
.y1b8{bottom:162.065067pt;}
.y246{bottom:162.069067pt;}
.y216{bottom:162.073067pt;}
.y230{bottom:162.080933pt;}
.y7f{bottom:162.081067pt;}
.y3f8{bottom:162.084933pt;}
.y392{bottom:162.093067pt;}
.y196{bottom:162.114267pt;}
.y13f{bottom:162.116933pt;}
.y2d9{bottom:162.129067pt;}
.y1ef{bottom:162.164933pt;}
.y493{bottom:163.019733pt;}
.y305{bottom:163.367733pt;}
.y447{bottom:163.479067pt;}
.y42c{bottom:163.768400pt;}
.y4d0{bottom:164.437067pt;}
.y2b9{bottom:165.376800pt;}
.y104{bottom:166.169067pt;}
.y351{bottom:168.524357pt;}
.y357{bottom:168.609325pt;}
.y16b{bottom:169.177200pt;}
.yfe{bottom:174.475600pt;}
.y3c5{bottom:175.586933pt;}
.y3d{bottom:177.993067pt;}
.y40e{bottom:178.025067pt;}
.y4e{bottom:178.053067pt;}
.y1b7{bottom:178.061067pt;}
.y245{bottom:178.065067pt;}
.y215{bottom:178.069067pt;}
.y22f{bottom:178.076933pt;}
.y7e{bottom:178.077067pt;}
.y3f7{bottom:178.080933pt;}
.y195{bottom:178.110267pt;}
.y13e{bottom:178.112933pt;}
.y2d8{bottom:178.125067pt;}
.y2ff{bottom:178.136933pt;}
.y1ee{bottom:178.160933pt;}
.y492{bottom:179.019733pt;}
.y452{bottom:179.326800pt;}
.y446{bottom:179.479067pt;}
.y42b{bottom:179.768400pt;}
.y4cf{bottom:180.437067pt;}
.y103{bottom:182.169067pt;}
.y356{bottom:183.258396pt;}
.y16a{bottom:185.177200pt;}
.y350{bottom:189.314654pt;}
.y31d{bottom:191.490933pt;}
.y3c4{bottom:191.584267pt;}
.y422{bottom:194.045067pt;}
.y260{bottom:194.048933pt;}
.y4d{bottom:194.049067pt;}
.y1b6{bottom:194.057067pt;}
.y244{bottom:194.061067pt;}
.y214{bottom:194.065067pt;}
.y22e{bottom:194.072933pt;}
.y7d{bottom:194.073067pt;}
.y391{bottom:194.097067pt;}
.y194{bottom:194.106267pt;}
.y13d{bottom:194.108933pt;}
.y2d7{bottom:194.121067pt;}
.y2fe{bottom:194.132933pt;}
.y1ed{bottom:194.156933pt;}
.y491{bottom:195.019733pt;}
.y451{bottom:195.326800pt;}
.y42a{bottom:195.768400pt;}
.y4ce{bottom:196.437067pt;}
.y355{bottom:197.907467pt;}
.y102{bottom:198.169067pt;}
.y169{bottom:201.177200pt;}
.y34f{bottom:203.963725pt;}
.y298{bottom:205.118267pt;}
.y2bf{bottom:207.444667pt;}
.y3c3{bottom:207.581600pt;}
.y311{bottom:209.306000pt;}
.y29c{bottom:209.763067pt;}
.y327{bottom:209.866933pt;}
.y3c{bottom:209.997067pt;}
.y40d{bottom:210.029067pt;}
.y421{bottom:210.041067pt;}
.y25f{bottom:210.044933pt;}
.y4c{bottom:210.045067pt;}
.y243{bottom:210.057067pt;}
.y22d{bottom:210.068933pt;}
.y7c{bottom:210.069067pt;}
.y3f6{bottom:210.084933pt;}
.y390{bottom:210.093067pt;}
.y193{bottom:210.102267pt;}
.y13c{bottom:210.104933pt;}
.y2d6{bottom:210.117067pt;}
.y2b5{bottom:210.125467pt;}
.y2fd{bottom:210.128933pt;}
.y1ec{bottom:210.152933pt;}
.y490{bottom:211.019733pt;}
.y450{bottom:211.326800pt;}
.y445{bottom:211.479067pt;}
.y429{bottom:211.768400pt;}
.y4cd{bottom:212.437067pt;}
.y2b8{bottom:212.553867pt;}
.y1a{bottom:213.526800pt;}
.y34a{bottom:216.282213pt;}
.y168{bottom:217.177200pt;}
.y34e{bottom:218.612796pt;}
.yfd{bottom:221.861333pt;}
.y2ab{bottom:222.153867pt;}
.y4e7{bottom:222.520533pt;}
.y316{bottom:223.455733pt;}
.y3c2{bottom:223.578933pt;}
.y2{bottom:225.173333pt;}
.y31c{bottom:225.196667pt;}
.y4ea{bottom:225.988800pt;}
.y3b{bottom:225.993067pt;}
.y40c{bottom:226.025067pt;}
.y420{bottom:226.037067pt;}
.y25e{bottom:226.040933pt;}
.y4b{bottom:226.041067pt;}
.y242{bottom:226.053067pt;}
.yd8{bottom:226.061067pt;}
.y9a{bottom:226.065067pt;}
.y213{bottom:226.069067pt;}
.y3f5{bottom:226.080933pt;}
.y38f{bottom:226.089067pt;}
.y13b{bottom:226.100933pt;}
.y2d5{bottom:226.113067pt;}
.y2fc{bottom:226.124933pt;}
.y2b4{bottom:226.125467pt;}
.y1eb{bottom:226.148933pt;}
.y48f{bottom:227.019733pt;}
.y44f{bottom:227.326800pt;}
.y281{bottom:227.373067pt;}
.y444{bottom:227.479067pt;}
.y428{bottom:227.768400pt;}
.y4cc{bottom:228.437067pt;}
.y4e6{bottom:230.520533pt;}
.y349{bottom:232.259333pt;}
.y167{bottom:233.177200pt;}
.y34d{bottom:233.261867pt;}
.y4e5{bottom:238.520533pt;}
.y4e9{bottom:241.988800pt;}
.y3a{bottom:241.989067pt;}
.y40b{bottom:242.021067pt;}
.y41f{bottom:242.033067pt;}
.y4a{bottom:242.037067pt;}
.y241{bottom:242.049067pt;}
.yd7{bottom:242.057067pt;}
.y99{bottom:242.061067pt;}
.y212{bottom:242.065067pt;}
.y22c{bottom:242.072933pt;}
.y7b{bottom:242.073067pt;}
.y3f4{bottom:242.076933pt;}
.y192{bottom:242.106267pt;}
.y2d4{bottom:242.109067pt;}
.y2fb{bottom:242.120933pt;}
.y1ea{bottom:242.144933pt;}
.y48e{bottom:243.019733pt;}
.y44e{bottom:243.326800pt;}
.y2b7{bottom:244.553867pt;}
.y4e4{bottom:246.520533pt;}
.y2aa{bottom:247.753867pt;}
.y166{bottom:249.177200pt;}
.y31b{bottom:249.306667pt;}
.y34c{bottom:249.701023pt;}
.y315{bottom:254.477200pt;}
.y4e3{bottom:254.520533pt;}
.y3c1{bottom:255.582933pt;}
.y329{bottom:256.569733pt;}
.y1{bottom:257.165333pt;}
.y40a{bottom:258.017067pt;}
.y41e{bottom:258.029067pt;}
.y25d{bottom:258.044933pt;}
.y240{bottom:258.045067pt;}
.yd6{bottom:258.053067pt;}
.y98{bottom:258.057067pt;}
.y211{bottom:258.061067pt;}
.y22b{bottom:258.068933pt;}
.y7a{bottom:258.069067pt;}
.y3f3{bottom:258.072933pt;}
.y38e{bottom:258.093067pt;}
.y191{bottom:258.102267pt;}
.y13a{bottom:258.104933pt;}
.y2d3{bottom:258.105067pt;}
.y1e9{bottom:258.140933pt;}
.y427{bottom:258.438400pt;}
.y267{bottom:258.981467pt;}
.y44d{bottom:259.326800pt;}
.y4cb{bottom:260.437067pt;}
.y2a9{bottom:260.553867pt;}
.y48d{bottom:261.689733pt;}
.y4e2{bottom:262.520533pt;}
.y165{bottom:265.177200pt;}
.y34b{bottom:265.678143pt;}
.y2a0{bottom:268.263600pt;}
.y29d{bottom:269.589733pt;}
.y3c0{bottom:271.580267pt;}
.y409{bottom:274.013067pt;}
.y41d{bottom:274.025067pt;}
.y25c{bottom:274.040933pt;}
.y23f{bottom:274.041067pt;}
.yd5{bottom:274.049067pt;}
.y97{bottom:274.053067pt;}
.y210{bottom:274.057067pt;}
.y22a{bottom:274.064933pt;}
.y79{bottom:274.065067pt;}
.y3f2{bottom:274.068933pt;}
.y38d{bottom:274.089067pt;}
.y139{bottom:274.100933pt;}
.y2fa{bottom:274.124933pt;}
.y1e8{bottom:274.136933pt;}
.y56{bottom:274.980400pt;}
.y31a{bottom:275.158267pt;}
.y360{bottom:276.330533pt;}
.y4ca{bottom:276.437067pt;}
.y4dd{bottom:277.194800pt;}
.y299{bottom:279.297467pt;}
.y2b3{bottom:283.542133pt;}
.y314{bottom:285.498000pt;}
.y426{bottom:286.438400pt;}
.y3bf{bottom:287.577600pt;}
.y408{bottom:290.009067pt;}
.y41c{bottom:290.021067pt;}
.y25b{bottom:290.036933pt;}
.y23e{bottom:290.037067pt;}
.yd4{bottom:290.045067pt;}
.y96{bottom:290.049067pt;}
.y229{bottom:290.060933pt;}
.y78{bottom:290.061067pt;}
.y3f1{bottom:290.064933pt;}
.y38c{bottom:290.085067pt;}
.y2f9{bottom:290.120933pt;}
.y1e7{bottom:290.132933pt;}
.y19{bottom:290.980400pt;}
.y48c{bottom:291.019733pt;}
.y4c9{bottom:292.437067pt;}
.y4dc{bottom:293.194800pt;}
.y35c{bottom:294.773013pt;}
.y35a{bottom:296.077067pt;}
.y2b2{bottom:299.542133pt;}
.y319{bottom:301.009067pt;}
.y32a{bottom:303.271200pt;}
.y323{bottom:303.273733pt;}
.y3be{bottom:303.574933pt;}
.y407{bottom:306.005067pt;}
.y41b{bottom:306.017067pt;}
.y25a{bottom:306.032933pt;}
.yd3{bottom:306.041067pt;}
.y95{bottom:306.045067pt;}
.y228{bottom:306.056933pt;}
.y77{bottom:306.057067pt;}
.y3f0{bottom:306.060933pt;}
.y20f{bottom:306.061067pt;}
.y190{bottom:306.102267pt;}
.y138{bottom:306.104933pt;}
.y2d2{bottom:306.105067pt;}
.y2f8{bottom:306.116933pt;}
.y1e6{bottom:306.128933pt;}
.y18{bottom:306.980400pt;}
.y48b{bottom:307.019733pt;}
.y294{bottom:308.198667pt;}
.y4c8{bottom:308.437067pt;}
.y4d7{bottom:308.928133pt;}
.y4db{bottom:309.194800pt;}
.y4e1{bottom:309.197733pt;}
.y3cf{bottom:310.362133pt;}
.y35b{bottom:310.975781pt;}
.y292{bottom:313.329733pt;}
.y313{bottom:316.521867pt;}
.y3bd{bottom:319.572267pt;}
.y259{bottom:322.028933pt;}
.yd2{bottom:322.037067pt;}
.y23d{bottom:322.041067pt;}
.y227{bottom:322.052933pt;}
.y3ef{bottom:322.056933pt;}
.y20e{bottom:322.057067pt;}
.y38b{bottom:322.089067pt;}
.y18f{bottom:322.098267pt;}
.y137{bottom:322.100933pt;}
.y2d1{bottom:322.101067pt;}
.y2f7{bottom:322.112933pt;}
.y17{bottom:322.980400pt;}
.y48a{bottom:323.019733pt;}
.y4c7{bottom:324.437067pt;}
.y4d6{bottom:324.928133pt;}
.y4da{bottom:325.194800pt;}
.y4e0{bottom:325.197733pt;}
.y318{bottom:326.860133pt;}
.y3ce{bottom:327.032133pt;}
.y3bc{bottom:335.569600pt;}
.y39{bottom:337.989067pt;}
.y406{bottom:338.009067pt;}
.y41a{bottom:338.021067pt;}
.y258{bottom:338.024933pt;}
.yd1{bottom:338.033067pt;}
.y23c{bottom:338.037067pt;}
.y1b5{bottom:338.045067pt;}
.y94{bottom:338.049067pt;}
.y20d{bottom:338.053067pt;}
.y76{bottom:338.061067pt;}
.y38a{bottom:338.085067pt;}
.y18e{bottom:338.094267pt;}
.y136{bottom:338.096933pt;}
.y2d0{bottom:338.097067pt;}
.y2f6{bottom:338.108933pt;}
.y1e5{bottom:338.132933pt;}
.y16{bottom:338.980400pt;}
.y489{bottom:339.019733pt;}
.y4d5{bottom:340.928133pt;}
.y4d9{bottom:341.194800pt;}
.y4df{bottom:341.197733pt;}
.y2ae{bottom:342.142400pt;}
.y3cd{bottom:343.702133pt;}
.y310{bottom:347.540400pt;}
.y328{bottom:349.686667pt;}
.y3bb{bottom:351.566933pt;}
.y2a8{bottom:351.742400pt;}
.y317{bottom:352.711067pt;}
.y248{bottom:353.559067pt;}
.y38{bottom:353.989067pt;}
.y419{bottom:354.017067pt;}
.y257{bottom:354.020933pt;}
.yd0{bottom:354.029067pt;}
.y459{bottom:354.033067pt;}
.y1b4{bottom:354.041067pt;}
.y93{bottom:354.045067pt;}
.y20c{bottom:354.049067pt;}
.y75{bottom:354.057067pt;}
.y3ee{bottom:354.060933pt;}
.y389{bottom:354.081067pt;}
.y18d{bottom:354.090267pt;}
.y135{bottom:354.092933pt;}
.y2cf{bottom:354.093067pt;}
.y2f5{bottom:354.104933pt;}
.y1e4{bottom:354.128933pt;}
.y15{bottom:354.980400pt;}
.y488{bottom:355.019733pt;}
.y348{bottom:355.242574pt;}
.y4c6{bottom:356.437067pt;}
.y4d4{bottom:356.928133pt;}
.y4d8{bottom:357.194800pt;}
.y4de{bottom:357.197733pt;}
.y3cc{bottom:360.372133pt;}
.y2b6{bottom:363.353333pt;}
.y3ba{bottom:367.564267pt;}
.y405{bottom:370.013067pt;}
.y256{bottom:370.016933pt;}
.ycf{bottom:370.025067pt;}
.y458{bottom:370.029067pt;}
.y92{bottom:370.041067pt;}
.y20b{bottom:370.045067pt;}
.y74{bottom:370.053067pt;}
.y3ed{bottom:370.056933pt;}
.y461{bottom:370.077067pt;}
.y18c{bottom:370.086267pt;}
.y134{bottom:370.088933pt;}
.y2ce{bottom:370.089067pt;}
.y1e3{bottom:370.124933pt;}
.y14{bottom:370.980400pt;}
.y49e{bottom:371.019733pt;}
.y297{bottom:372.110267pt;}
.y4c5{bottom:372.437067pt;}
.y487{bottom:373.689733pt;}
.y2ad{bottom:374.142400pt;}
.y293{bottom:375.800000pt;}
.y3cb{bottom:377.042133pt;}
.y2a7{bottom:377.342400pt;}
.y8{bottom:377.905600pt;}
.y312{bottom:378.561867pt;}
.y3b9{bottom:383.561600pt;}
.y404{bottom:386.009067pt;}
.y255{bottom:386.012933pt;}
.yce{bottom:386.021067pt;}
.y37{bottom:386.025067pt;}
.yec{bottom:386.025200pt;}
.y91{bottom:386.037067pt;}
.y20a{bottom:386.041067pt;}
.y1b3{bottom:386.045067pt;}
.y73{bottom:386.049067pt;}
.y3ec{bottom:386.052933pt;}
.y460{bottom:386.073067pt;}
.y18b{bottom:386.082267pt;}
.y133{bottom:386.084933pt;}
.y2cd{bottom:386.085067pt;}
.y2f4{bottom:386.108933pt;}
.y1e2{bottom:386.120933pt;}
.y35f{bottom:386.454613pt;}
.y30f{bottom:386.862000pt;}
.y13{bottom:386.980400pt;}
.y49d{bottom:387.019733pt;}
.y10c{bottom:387.272667pt;}
.y4c4{bottom:388.437067pt;}
.y2a6{bottom:390.142400pt;}
.y3ca{bottom:393.712133pt;}
.y326{bottom:396.104800pt;}
.y3b8{bottom:399.558933pt;}
.y403{bottom:402.005067pt;}
.y254{bottom:402.008933pt;}
.ycd{bottom:402.017067pt;}
.y36{bottom:402.021067pt;}
.yeb{bottom:402.021200pt;}
.y90{bottom:402.033067pt;}
.y209{bottom:402.037067pt;}
.y1b2{bottom:402.041067pt;}
.y72{bottom:402.045067pt;}
.y3eb{bottom:402.048933pt;}
.y45f{bottom:402.069067pt;}
.y18a{bottom:402.078267pt;}
.y132{bottom:402.080933pt;}
.y2cc{bottom:402.081067pt;}
.y2f3{bottom:402.104933pt;}
.y1e1{bottom:402.116933pt;}
.y35e{bottom:402.431733pt;}
.y12{bottom:402.980400pt;}
.y486{bottom:403.019733pt;}
.y10b{bottom:403.942667pt;}
.y4c3{bottom:404.437067pt;}
.y3b7{bottom:415.556267pt;}
.y402{bottom:418.001067pt;}
.y253{bottom:418.004933pt;}
.ycc{bottom:418.013067pt;}
.y35{bottom:418.017067pt;}
.yea{bottom:418.017200pt;}
.y8f{bottom:418.029067pt;}
.y208{bottom:418.033067pt;}
.y1b1{bottom:418.037067pt;}
.y71{bottom:418.041067pt;}
.y3ea{bottom:418.044933pt;}
.y226{bottom:418.052933pt;}
.y45e{bottom:418.065067pt;}
.y189{bottom:418.074267pt;}
.y131{bottom:418.076933pt;}
.y2cb{bottom:418.077067pt;}
.y2f2{bottom:418.100933pt;}
.y1e0{bottom:418.112933pt;}
.y11{bottom:418.980400pt;}
.y485{bottom:419.019733pt;}
.y4c2{bottom:420.437067pt;}
.y10a{bottom:420.612667pt;}
.y2b1{bottom:422.599467pt;}
.y30c{bottom:424.968133pt;}
.y30d{bottom:425.300800pt;}
.y3b6{bottom:431.553600pt;}
.y401{bottom:433.997067pt;}
.ycb{bottom:434.009067pt;}
.y34{bottom:434.013067pt;}
.ye9{bottom:434.013200pt;}
.y23b{bottom:434.025067pt;}
.y207{bottom:434.029067pt;}
.y1b0{bottom:434.033067pt;}
.y3e9{bottom:434.040933pt;}
.y225{bottom:434.048933pt;}
.y45d{bottom:434.061067pt;}
.y188{bottom:434.070267pt;}
.y130{bottom:434.072933pt;}
.y2ca{bottom:434.073067pt;}
.y2f1{bottom:434.096933pt;}
.y1df{bottom:434.108933pt;}
.y10{bottom:434.980400pt;}
.y484{bottom:435.019733pt;}
.y4c1{bottom:436.437067pt;}
.y109{bottom:437.282667pt;}
.y2b0{bottom:438.599467pt;}
.y29e{bottom:439.811067pt;}
.y7{bottom:440.275600pt;}
.y325{bottom:442.527245pt;}
.y35d{bottom:444.001200pt;}
.y33c{bottom:446.127044pt;}
.y3b5{bottom:447.550933pt;}
.y400{bottom:449.993067pt;}
.y252{bottom:450.008933pt;}
.y33{bottom:450.009067pt;}
.y23a{bottom:450.021067pt;}
.y1af{bottom:450.029067pt;}
.y224{bottom:450.044933pt;}
.y280{bottom:450.045067pt;}
.y45c{bottom:450.057067pt;}
.y2f0{bottom:450.092933pt;}
.y1de{bottom:450.104933pt;}
.y162{bottom:450.188933pt;}
.yf{bottom:450.980400pt;}
.y483{bottom:451.019733pt;}
.y30e{bottom:453.665333pt;}
.y2af{bottom:454.599467pt;}
.y4c0{bottom:455.107067pt;}
.y33b{bottom:460.770189pt;}
.y29f{bottom:461.063067pt;}
.y3ff{bottom:465.989067pt;}
.y251{bottom:466.004933pt;}
.yca{bottom:466.013067pt;}
.y239{bottom:466.017067pt;}
.ye8{bottom:466.017200pt;}
.y1ae{bottom:466.025067pt;}
.y206{bottom:466.033067pt;}
.y27f{bottom:466.041067pt;}
.y3e8{bottom:466.044933pt;}
.y45b{bottom:466.053067pt;}
.y187{bottom:466.074267pt;}
.y12f{bottom:466.076933pt;}
.y2c9{bottom:466.077067pt;}
.y2ef{bottom:466.088933pt;}
.y1dd{bottom:466.100933pt;}
.y161{bottom:466.184933pt;}
.ye{bottom:466.980400pt;}
.y482{bottom:467.019733pt;}
.y3fd{bottom:469.379733pt;}
.ya6{bottom:472.011600pt;}
.y2a5{bottom:472.865067pt;}
.y33a{bottom:475.413333pt;}
.y296{bottom:478.127600pt;}
.y3b4{bottom:479.554933pt;}
.y250{bottom:482.000933pt;}
.yc9{bottom:482.009067pt;}
.y238{bottom:482.013067pt;}
.ye7{bottom:482.013200pt;}
.y1ad{bottom:482.021067pt;}
.y205{bottom:482.029067pt;}
.y3e7{bottom:482.040933pt;}
.y223{bottom:482.048933pt;}
.y45a{bottom:482.049067pt;}
.y186{bottom:482.070267pt;}
.y12e{bottom:482.072933pt;}
.y388{bottom:482.073067pt;}
.y2ee{bottom:482.084933pt;}
.y481{bottom:483.019733pt;}
.y4bf{bottom:484.437067pt;}
.yd{bottom:485.650400pt;}
.y347{bottom:486.336533pt;}
.y55{bottom:486.980400pt;}
.ya5{bottom:488.011600pt;}
.y324{bottom:488.940933pt;}
.y342{bottom:488.954968pt;}
.y31e{bottom:489.343733pt;}
.y3b3{bottom:495.552267pt;}
.y24f{bottom:497.996933pt;}
.yc8{bottom:498.005067pt;}
.y32{bottom:498.009067pt;}
.ye6{bottom:498.009200pt;}
.y1ac{bottom:498.017067pt;}
.y204{bottom:498.025067pt;}
.y3e6{bottom:498.036933pt;}
.y222{bottom:498.044933pt;}
.y27e{bottom:498.045067pt;}
.y185{bottom:498.066267pt;}
.y12d{bottom:498.068933pt;}
.y387{bottom:498.069067pt;}
.y2ed{bottom:498.080933pt;}
.y1dc{bottom:498.104933pt;}
.y160{bottom:498.188933pt;}
.yc{bottom:498.980400pt;}
.y49c{bottom:499.019733pt;}
.y4be{bottom:500.437067pt;}
.y6{bottom:502.645600pt;}
.ya4{bottom:504.011600pt;}
.y2a4{bottom:504.865067pt;}
.y3b2{bottom:511.549600pt;}
.y2ac{bottom:511.810400pt;}
.y29a{bottom:512.116400pt;}
.y24e{bottom:513.992933pt;}
.yc7{bottom:514.001067pt;}
.y31{bottom:514.005067pt;}
.ye5{bottom:514.005200pt;}
.y1ab{bottom:514.013067pt;}
.y203{bottom:514.021067pt;}
.y27d{bottom:514.041067pt;}
.y184{bottom:514.062267pt;}
.y12c{bottom:514.064933pt;}
.y2ec{bottom:514.076933pt;}
.y2c8{bottom:514.077067pt;}
.y1db{bottom:514.100933pt;}
.y15f{bottom:514.184933pt;}
.y480{bottom:515.019733pt;}
.y4bd{bottom:516.437067pt;}
.ya3{bottom:520.011600pt;}
.y2a3{bottom:520.865067pt;}
.y295{bottom:520.930267pt;}
.y3b1{bottom:527.546933pt;}
.y24d{bottom:529.988933pt;}
.yc6{bottom:529.997067pt;}
.y30{bottom:530.001067pt;}
.ye4{bottom:530.001200pt;}
.y202{bottom:530.017067pt;}
.y221{bottom:530.048933pt;}
.yfc{bottom:530.049067pt;}
.y183{bottom:530.058267pt;}
.y12b{bottom:530.060933pt;}
.y2eb{bottom:530.072933pt;}
.y2c7{bottom:530.073067pt;}
.y1da{bottom:530.096933pt;}
.y526{bottom:530.663867pt;}
.y47f{bottom:531.019733pt;}
.y4bc{bottom:532.437067pt;}
.y418{bottom:533.710000pt;}
.y29b{bottom:534.227067pt;}
.y336{bottom:535.358267pt;}
.ya2{bottom:536.011600pt;}
.y3b0{bottom:543.544267pt;}
.y525{bottom:545.326267pt;}
.y507{bottom:545.988933pt;}
.yc5{bottom:545.993067pt;}
.y2f{bottom:545.997067pt;}
.ye3{bottom:545.997200pt;}
.y237{bottom:546.009067pt;}
.y201{bottom:546.013067pt;}
.y1aa{bottom:546.017067pt;}
.y220{bottom:546.044933pt;}
.yfb{bottom:546.045067pt;}
.y182{bottom:546.054267pt;}
.y12a{bottom:546.056933pt;}
.y2ea{bottom:546.068933pt;}
.y2c6{bottom:546.069067pt;}
.y1d9{bottom:546.092933pt;}
.y15e{bottom:546.188933pt;}
.y47e{bottom:547.019733pt;}
.y417{bottom:547.047333pt;}
.y247{bottom:549.710267pt;}
.ya1{bottom:552.011600pt;}
.y2a2{bottom:553.539600pt;}
.y3af{bottom:559.541600pt;}
.y416{bottom:561.710000pt;}
.y506{bottom:561.988933pt;}
.yc4{bottom:561.989067pt;}
.y24c{bottom:561.992933pt;}
.y2e{bottom:561.993067pt;}
.ye2{bottom:561.993200pt;}
.y236{bottom:562.005067pt;}
.y200{bottom:562.009067pt;}
.y1a9{bottom:562.013067pt;}
.yfa{bottom:562.041067pt;}
.y181{bottom:562.050267pt;}
.y129{bottom:562.052933pt;}
.y2e9{bottom:562.064933pt;}
.y2c5{bottom:562.065067pt;}
.y1d8{bottom:562.088933pt;}
.y47d{bottom:563.019733pt;}
.y4bb{bottom:564.437067pt;}
.y5{bottom:565.015600pt;}
.ya0{bottom:568.011600pt;}
.y415{bottom:575.047333pt;}
.y3ae{bottom:575.538933pt;}
.y505{bottom:577.988933pt;}
.y2d{bottom:577.989067pt;}
.ye1{bottom:577.989200pt;}
.y235{bottom:578.001067pt;}
.y1ff{bottom:578.005067pt;}
.y1a8{bottom:578.009067pt;}
.yf9{bottom:578.037067pt;}
.y180{bottom:578.046267pt;}
.y21f{bottom:578.048933pt;}
.y2e8{bottom:578.060933pt;}
.y2c4{bottom:578.061067pt;}
.y1d7{bottom:578.084933pt;}
.y15d{bottom:578.192933pt;}
.y47c{bottom:579.019733pt;}
.y2a1{bottom:579.521333pt;}
.y4ba{bottom:580.437067pt;}
.y523{bottom:581.193467pt;}
.y322{bottom:581.775067pt;}
.y341{bottom:583.330133pt;}
.y9f{bottom:584.011600pt;}
.y3ad{bottom:591.536267pt;}
.y504{bottom:593.988933pt;}
.yc3{bottom:593.993067pt;}
.y1a7{bottom:594.005067pt;}
.yf8{bottom:594.033067pt;}
.y3e5{bottom:594.036933pt;}
.y21e{bottom:594.044933pt;}
.y128{bottom:594.056933pt;}
.y2c3{bottom:594.057067pt;}
.y386{bottom:594.069067pt;}
.y1d6{bottom:594.080933pt;}
.y15c{bottom:594.188933pt;}
.y49b{bottom:595.019733pt;}
.y4b9{bottom:596.437067pt;}
.y522{bottom:597.193467pt;}
.y9e{bottom:600.011600pt;}
.ya7{bottom:602.681600pt;}
.y346{bottom:605.374800pt;}
.y288{bottom:606.354267pt;}
.y363{bottom:607.483200pt;}
.y3ac{bottom:607.533600pt;}
.y503{bottom:609.988933pt;}
.yc2{bottom:609.989067pt;}
.ye0{bottom:609.993200pt;}
.y1a6{bottom:610.001067pt;}
.y1fe{bottom:610.009067pt;}
.yf7{bottom:610.029067pt;}
.y3e4{bottom:610.032933pt;}
.y2c{bottom:610.041067pt;}
.y17f{bottom:610.050267pt;}
.y127{bottom:610.052933pt;}
.y2c2{bottom:610.053067pt;}
.y2e7{bottom:610.064933pt;}
.y385{bottom:610.065067pt;}
.y1d5{bottom:610.076933pt;}
.y462{bottom:610.077067pt;}
.y47b{bottom:611.019733pt;}
.y4b8{bottom:612.437067pt;}
.y521{bottom:613.193467pt;}
.y1bf{bottom:613.738667pt;}
.y9d{bottom:616.011600pt;}
.y362{bottom:618.134667pt;}
.y287{bottom:623.024267pt;}
.y3ab{bottom:623.530933pt;}
.y502{bottom:625.988933pt;}
.ydf{bottom:625.989200pt;}
.y1a5{bottom:625.997067pt;}
.y1fd{bottom:626.005067pt;}
.yf6{bottom:626.025067pt;}
.y3e3{bottom:626.028933pt;}
.y2b{bottom:626.037067pt;}
.y17e{bottom:626.046267pt;}
.y126{bottom:626.048933pt;}
.y2c1{bottom:626.049067pt;}
.y2e6{bottom:626.060933pt;}
.y1d4{bottom:626.072933pt;}
.y15b{bottom:626.192933pt;}
.y345{bottom:626.336400pt;}
.y47a{bottom:627.019733pt;}
.y4{bottom:627.385600pt;}
.y335{bottom:628.197293pt;}
.y4b7{bottom:628.437067pt;}
.y361{bottom:628.786000pt;}
.y520{bottom:629.193467pt;}
.y286{bottom:639.694267pt;}
.y501{bottom:641.988933pt;}
.y1a4{bottom:641.993067pt;}
.y1fc{bottom:642.001067pt;}
.yf5{bottom:642.021067pt;}
.y3e2{bottom:642.024933pt;}
.y2a{bottom:642.033067pt;}
.y17d{bottom:642.042267pt;}
.y125{bottom:642.044933pt;}
.y2c0{bottom:642.045067pt;}
.y2e5{bottom:642.056933pt;}
.y1d3{bottom:642.068933pt;}
.y15a{bottom:642.188933pt;}
.y479{bottom:643.019733pt;}
.y4b6{bottom:644.437067pt;}
.y51f{bottom:645.193467pt;}
.y344{bottom:647.415600pt;}
.y3aa{bottom:655.534933pt;}
.y285{bottom:656.364267pt;}
.y334{bottom:657.006133pt;}
.y500{bottom:657.988933pt;}
.y1a3{bottom:657.989067pt;}
.y1fb{bottom:657.997067pt;}
.y436{bottom:658.017067pt;}
.y3e1{bottom:658.020933pt;}
.y29{bottom:658.029067pt;}
.y124{bottom:658.040933pt;}
.y27c{bottom:658.041067pt;}
.y2e4{bottom:658.052933pt;}
.y1d2{bottom:658.064933pt;}
.y478{bottom:659.019733pt;}
.yf4{bottom:659.349067pt;}
.y51e{bottom:661.193467pt;}
.y321{bottom:668.010133pt;}
.y3a9{bottom:671.532267pt;}
.y382{bottom:672.289600pt;}
.y284{bottom:673.034267pt;}
.y24b{bottom:673.170933pt;}
.y4ff{bottom:673.988933pt;}
.yde{bottom:673.989200pt;}
.y1fa{bottom:673.993067pt;}
.y435{bottom:674.013067pt;}
.y3e0{bottom:674.016933pt;}
.y28{bottom:674.025067pt;}
.y123{bottom:674.036933pt;}
.y27b{bottom:674.037067pt;}
.y2e3{bottom:674.048933pt;}
.y291{bottom:674.049067pt;}
.y28d{bottom:674.060933pt;}
.y384{bottom:674.061067pt;}
.y159{bottom:674.192933pt;}
.y333{bottom:674.611067pt;}
.y477{bottom:675.019733pt;}
.y4b5{bottom:676.437067pt;}
.yb3{bottom:677.031333pt;}
.y51d{bottom:677.193467pt;}
.y331{bottom:677.457333pt;}
.y320{bottom:684.006133pt;}
.y381{bottom:685.626933pt;}
.y3a8{bottom:687.529600pt;}
.y3{bottom:689.755600pt;}
.y10d{bottom:689.811067pt;}
.y24a{bottom:689.840933pt;}
.y4fe{bottom:689.988933pt;}
.y1f9{bottom:689.989067pt;}
.y434{bottom:690.009067pt;}
.y27{bottom:690.021067pt;}
.y21d{bottom:690.044933pt;}
.y290{bottom:690.045067pt;}
.y28c{bottom:690.056933pt;}
.y383{bottom:690.057067pt;}
.y1d1{bottom:690.068933pt;}
.y158{bottom:690.188933pt;}
.y49a{bottom:691.019733pt;}
.y4b4{bottom:692.437067pt;}
.yb2{bottom:693.028667pt;}
.y51c{bottom:693.193333pt;}
.y433{bottom:694.863200pt;}
.y380{bottom:698.964267pt;}
.y31f{bottom:700.002133pt;}
.y3a7{bottom:703.526933pt;}
.y367{bottom:704.319333pt;}
.y4fd{bottom:705.987333pt;}
.y1a2{bottom:705.989067pt;}
.y26{bottom:706.017067pt;}
.y3df{bottom:706.020933pt;}
.y122{bottom:706.040933pt;}
.y28f{bottom:706.041067pt;}
.y28b{bottom:706.052933pt;}
.ydd{bottom:706.053067pt;}
.y1d0{bottom:706.064933pt;}
.yb1{bottom:706.366000pt;}
.y249{bottom:706.510933pt;}
.y476{bottom:707.019733pt;}
.y4b3{bottom:708.437067pt;}
.y51b{bottom:709.193333pt;}
.y432{bottom:711.533200pt;}
.y37f{bottom:712.301600pt;}
.y3a6{bottom:719.524267pt;}
.yb0{bottom:719.703333pt;}
.y366{bottom:720.296533pt;}
.y32b{bottom:721.024354pt;}
.y1f8{bottom:721.993067pt;}
.y25{bottom:722.013067pt;}
.y3de{bottom:722.016933pt;}
.y121{bottom:722.036933pt;}
.y27a{bottom:722.037067pt;}
.y17c{bottom:722.046267pt;}
.y28a{bottom:722.048933pt;}
.ydc{bottom:722.049067pt;}
.y1cf{bottom:722.060933pt;}
.y157{bottom:722.192933pt;}
.y475{bottom:723.019733pt;}
.y32f{bottom:723.874667pt;}
.y4b2{bottom:724.437067pt;}
.y51a{bottom:725.193333pt;}
.y37e{bottom:725.638933pt;}
.y270{bottom:727.072133pt;}
.y431{bottom:728.203200pt;}
.y4fc{bottom:732.655733pt;}
.y3a5{bottom:735.521600pt;}
.y365{bottom:736.273733pt;}
.y340{bottom:736.329724pt;}
.y1f7{bottom:737.989067pt;}
.y49{bottom:738.009067pt;}
.y3dd{bottom:738.012933pt;}
.y2e2{bottom:738.032933pt;}
.y279{bottom:738.033067pt;}
.y17b{bottom:738.042267pt;}
.y21c{bottom:738.044933pt;}
.ydb{bottom:738.045067pt;}
.y1ce{bottom:738.056933pt;}
.y1a1{bottom:738.057067pt;}
.y156{bottom:738.188933pt;}
.y474{bottom:739.019733pt;}
.y4b1{bottom:740.437067pt;}
.y519{bottom:741.193333pt;}
.y26f{bottom:743.072133pt;}
.yaf{bottom:746.368667pt;}
.y4fb{bottom:747.322400pt;}
.y33f{bottom:750.709244pt;}
.y364{bottom:752.250933pt;}
.y37d{bottom:752.304267pt;}
.y48{bottom:754.005067pt;}
.y3dc{bottom:754.008933pt;}
.y24{bottom:754.017067pt;}
.y2e1{bottom:754.028933pt;}
.y278{bottom:754.029067pt;}
.y17a{bottom:754.038267pt;}
.y120{bottom:754.040933pt;}
.yda{bottom:754.041067pt;}
.y1cd{bottom:754.052933pt;}
.y1a0{bottom:754.053067pt;}
.y473{bottom:755.019733pt;}
.y4b0{bottom:756.437067pt;}
.y518{bottom:757.193333pt;}
.y26e{bottom:759.072133pt;}
.yae{bottom:759.706000pt;}
.y4fa{bottom:761.993333pt;}
.y33e{bottom:765.352388pt;}
.y37c{bottom:765.641600pt;}
.y332{bottom:767.446667pt;}
.y3a4{bottom:767.525600pt;}
.y47{bottom:770.001067pt;}
.y3db{bottom:770.004933pt;}
.y23{bottom:770.013067pt;}
.y2e0{bottom:770.024933pt;}
.y277{bottom:770.025067pt;}
.y179{bottom:770.034267pt;}
.y11f{bottom:770.036933pt;}
.yd9{bottom:770.037067pt;}
.y1cc{bottom:770.048933pt;}
.y19f{bottom:770.049067pt;}
.y155{bottom:770.192933pt;}
.y32d{bottom:770.292133pt;}
.y472{bottom:771.019733pt;}
.yad{bottom:773.043333pt;}
.y517{bottom:773.193333pt;}
.y26d{bottom:775.072133pt;}
.y4f9{bottom:776.655733pt;}
.y37b{bottom:778.978933pt;}
.y33d{bottom:779.995533pt;}
.y3a3{bottom:783.522933pt;}
.y1f6{bottom:785.989067pt;}
.y46{bottom:785.997067pt;}
.y3da{bottom:786.000933pt;}
.y22{bottom:786.009067pt;}
.y276{bottom:786.021067pt;}
.y178{bottom:786.030267pt;}
.y11e{bottom:786.032933pt;}
.y28e{bottom:786.033067pt;}
.y1cb{bottom:786.044933pt;}
.y19e{bottom:786.045067pt;}
.y443{bottom:786.057067pt;}
.y154{bottom:786.188933pt;}
.y471{bottom:787.019733pt;}
.y4af{bottom:788.437067pt;}
.y516{bottom:789.193333pt;}
.y26c{bottom:791.072133pt;}
.y4f8{bottom:791.322400pt;}
.y37a{bottom:792.316267pt;}
.y3a2{bottom:799.520267pt;}
.yac{bottom:799.708667pt;}
.y1f5{bottom:801.989067pt;}
.y45{bottom:801.993067pt;}
.y3d9{bottom:801.996933pt;}
.y21{bottom:802.005067pt;}
.y275{bottom:802.017067pt;}
.y177{bottom:802.026267pt;}
.y11d{bottom:802.028933pt;}
.y8e{bottom:802.029067pt;}
.y1ca{bottom:802.040933pt;}
.y70{bottom:802.041067pt;}
.y442{bottom:802.053067pt;}
.y4ae{bottom:804.437067pt;}
.y515{bottom:805.193333pt;}
.y379{bottom:805.653600pt;}
.y4f7{bottom:805.989067pt;}
.y26b{bottom:807.072133pt;}
.y330{bottom:813.864000pt;}
.y3a1{bottom:815.517600pt;}
.y337{bottom:816.709467pt;}
.y3d8{bottom:817.992933pt;}
.y20{bottom:818.001067pt;}
.y11c{bottom:818.024933pt;}
.y8d{bottom:818.025067pt;}
.y1c9{bottom:818.036933pt;}
.y6f{bottom:818.037067pt;}
.y441{bottom:818.049067pt;}
.y378{bottom:818.990933pt;}
.y470{bottom:819.019733pt;}
.y4ad{bottom:820.437067pt;}
.y4f6{bottom:820.665467pt;}
.y514{bottom:821.193333pt;}
.y26a{bottom:823.072133pt;}
.y3a0{bottom:831.514933pt;}
.y377{bottom:832.328267pt;}
.y3d7{bottom:833.988933pt;}
.y1f{bottom:833.997067pt;}
.yf3{bottom:834.009067pt;}
.y11b{bottom:834.020933pt;}
.y8c{bottom:834.021067pt;}
.y176{bottom:834.030267pt;}
.y1c8{bottom:834.032933pt;}
.y6e{bottom:834.033067pt;}
.y440{bottom:834.045067pt;}
.ya{bottom:834.111467pt;}
.y153{bottom:834.188933pt;}
.y46f{bottom:835.019733pt;}
.y4ac{bottom:836.437067pt;}
.y513{bottom:837.193333pt;}
.y2bc{bottom:837.264267pt;}
.y269{bottom:839.072133pt;}
.yba{bottom:840.236000pt;}
.yc0{bottom:844.937467pt;}
.ybc{bottom:844.987733pt;}
.yb9{bottom:844.988133pt;}
.y376{bottom:845.665600pt;}
.y39f{bottom:847.512267pt;}
.y1e{bottom:849.993067pt;}
.y4f5{bottom:850.001867pt;}
.yf2{bottom:850.005067pt;}
.y11a{bottom:850.016933pt;}
.y274{bottom:850.017067pt;}
.y175{bottom:850.026267pt;}
.y1c7{bottom:850.028933pt;}
.y6d{bottom:850.029067pt;}
.y43f{bottom:850.041067pt;}
.y152{bottom:850.184933pt;}
.y46e{bottom:851.019733pt;}
.y4ab{bottom:852.437067pt;}
.y512{bottom:853.193333pt;}
.y268{bottom:855.072133pt;}
.y3fe{bottom:856.062933pt;}
.ybf{bottom:858.267467pt;}
.y375{bottom:859.002933pt;}
.y32e{bottom:860.281467pt;}
.y39e{bottom:863.509600pt;}
.y4f4{bottom:864.664267pt;}
.y1d{bottom:865.989067pt;}
.yf1{bottom:866.001067pt;}
.y119{bottom:866.012933pt;}
.y273{bottom:866.013067pt;}
.y174{bottom:866.022267pt;}
.y1c6{bottom:866.024933pt;}
.y6c{bottom:866.025067pt;}
.y151{bottom:866.180933pt;}
.y46d{bottom:867.019733pt;}
.y511{bottom:869.193333pt;}
.y374{bottom:872.340267pt;}
.y9{bottom:873.424533pt;}
.y4f3{bottom:879.326667pt;}
.y39d{bottom:879.506933pt;}
.y44{bottom:881.997067pt;}
.y118{bottom:882.008933pt;}
.y272{bottom:882.009067pt;}
.y173{bottom:882.018267pt;}
.y1c5{bottom:882.020933pt;}
.y6b{bottom:882.021067pt;}
.y43e{bottom:882.045067pt;}
.y150{bottom:882.176933pt;}
.y46c{bottom:883.019733pt;}
.y4aa{bottom:884.437067pt;}
.y510{bottom:885.193333pt;}
.y373{bottom:889.672267pt;}
.y1c0{bottom:891.307067pt;}
.ybe{bottom:892.137467pt;}
.y4f2{bottom:893.989067pt;}
.ybd{bottom:894.486933pt;}
.y39c{bottom:895.504267pt;}
.y1c{bottom:897.993067pt;}
.y117{bottom:898.004933pt;}
.y271{bottom:898.005067pt;}
.y172{bottom:898.014267pt;}
.y1c4{bottom:898.016933pt;}
.y6a{bottom:898.017067pt;}
.y19d{bottom:898.029067pt;}
.y43d{bottom:898.041067pt;}
.y14f{bottom:898.172933pt;}
.y46b{bottom:899.019733pt;}
.y4a9{bottom:900.437067pt;}
.y50f{bottom:901.193333pt;}
.y338{bottom:906.698800pt;}
.y343{bottom:907.137508pt;}
.y4f1{bottom:908.660000pt;}
.y1b{bottom:913.989067pt;}
.y116{bottom:914.000933pt;}
.yf0{bottom:914.001067pt;}
.y171{bottom:914.010267pt;}
.y1c3{bottom:914.012933pt;}
.y8b{bottom:914.013067pt;}
.y19c{bottom:914.025067pt;}
.y43c{bottom:914.037067pt;}
.y14e{bottom:914.168933pt;}
.y46a{bottom:915.019733pt;}
.y4a8{bottom:916.437067pt;}
.y50e{bottom:917.193333pt;}
.y4f0{bottom:923.322400pt;}
.y39b{bottom:927.508267pt;}
.y339{bottom:928.947600pt;}
.y3d6{bottom:929.988933pt;}
.yef{bottom:929.997067pt;}
.y170{bottom:930.006267pt;}
.y2df{bottom:930.008933pt;}
.y8a{bottom:930.009067pt;}
.y289{bottom:930.020933pt;}
.y69{bottom:930.021067pt;}
.y43b{bottom:930.033067pt;}
.y14d{bottom:930.164933pt;}
.y499{bottom:931.019733pt;}
.y4a7{bottom:932.437067pt;}
.y50d{bottom:933.193333pt;}
.y4ef{bottom:937.986000pt;}
.y39a{bottom:943.505600pt;}
.y3d5{bottom:945.988933pt;}
.yee{bottom:945.993067pt;}
.y16f{bottom:946.002267pt;}
.y115{bottom:946.004933pt;}
.y89{bottom:946.005067pt;}
.y1c2{bottom:946.016933pt;}
.y68{bottom:946.017067pt;}
.y43a{bottom:946.029067pt;}
.y14c{bottom:946.160933pt;}
.y469{bottom:947.019733pt;}
.y4a6{bottom:948.437067pt;}
.y50c{bottom:949.193333pt;}
.y399{bottom:959.502933pt;}
.y16e{bottom:961.998267pt;}
.y2de{bottom:962.000933pt;}
.y88{bottom:962.001067pt;}
.y36c{bottom:962.005067pt;}
.y1c1{bottom:962.012933pt;}
.y67{bottom:962.013067pt;}
.y371{bottom:962.017067pt;}
.y439{bottom:962.025067pt;}
.y14b{bottom:962.156933pt;}
.y468{bottom:963.019733pt;}
.y50b{bottom:965.193333pt;}
.y4a5{bottom:967.107067pt;}
.y4ee{bottom:967.322400pt;}
.y398{bottom:975.500267pt;}
.y16d{bottom:977.994267pt;}
.y2dd{bottom:977.996933pt;}
.y87{bottom:977.997067pt;}
.y36b{bottom:978.001067pt;}
.y3d4{bottom:978.004933pt;}
.y114{bottom:978.008933pt;}
.y66{bottom:978.009067pt;}
.y370{bottom:978.013067pt;}
.y14a{bottom:978.152933pt;}
.y467{bottom:979.019733pt;}
.y438{bottom:979.353067pt;}
.y50a{bottom:981.193333pt;}
.y4ed{bottom:981.989067pt;}
.y5b{bottom:982.097733pt;}
.y60{bottom:982.109733pt;}
.y3c8{bottom:989.696533pt;}
.y397{bottom:991.497600pt;}
.y86{bottom:993.993067pt;}
.y36a{bottom:993.997067pt;}
.y3d3{bottom:994.000933pt;}
.y113{bottom:994.004933pt;}
.y65{bottom:994.005067pt;}
.y36f{bottom:994.009067pt;}
.y149{bottom:994.148933pt;}
.y466{bottom:995.019733pt;}
.y16c{bottom:995.322267pt;}
.y437{bottom:995.349067pt;}
.y4a4{bottom:996.437067pt;}
.y4ec{bottom:996.655733pt;}
.y509{bottom:997.193333pt;}
.y5a{bottom:998.093733pt;}
.y5f{bottom:998.105733pt;}
.y396{bottom:1007.494933pt;}
.y85{bottom:1009.989067pt;}
.y369{bottom:1009.993067pt;}
.y3d2{bottom:1009.996933pt;}
.y112{bottom:1010.000933pt;}
.y64{bottom:1010.001067pt;}
.y36e{bottom:1010.005067pt;}
.y148{bottom:1010.144933pt;}
.y465{bottom:1011.019733pt;}
.y4eb{bottom:1011.322400pt;}
.y4a3{bottom:1012.437067pt;}
.y508{bottom:1013.193333pt;}
.y59{bottom:1014.089733pt;}
.y5e{bottom:1014.101733pt;}
.yed{bottom:1025.985067pt;}
.y368{bottom:1025.989067pt;}
.y3d1{bottom:1025.992933pt;}
.y111{bottom:1025.996933pt;}
.y63{bottom:1025.997067pt;}
.y36d{bottom:1026.001067pt;}
.y147{bottom:1026.140933pt;}
.y395{bottom:1026.161600pt;}
.y498{bottom:1027.019733pt;}
.y4a2{bottom:1028.437067pt;}
.y10e{bottom:1029.589600pt;}
.y58{bottom:1030.085733pt;}
.y5d{bottom:1030.097733pt;}
.y1be{bottom:1035.826800pt;}
.y425{bottom:1038.881867pt;}
.y524{bottom:1040.703600pt;}
.y3d0{bottom:1041.988933pt;}
.y110{bottom:1041.992933pt;}
.y62{bottom:1041.993067pt;}
.y146{bottom:1042.136933pt;}
.y464{bottom:1043.019733pt;}
.y4a1{bottom:1044.437067pt;}
.y57{bottom:1046.081733pt;}
.y5c{bottom:1046.093733pt;}
.yc1{bottom:1055.965867pt;}
.y372{bottom:1057.161600pt;}
.y10f{bottom:1057.988933pt;}
.y61{bottom:1057.989067pt;}
.y145{bottom:1058.132933pt;}
.y463{bottom:1059.019733pt;}
.y4a0{bottom:1060.437067pt;}
.h36{height:23.489583pt;}
.h32{height:28.382812pt;}
.h21{height:29.768229pt;}
.h31{height:29.950521pt;}
.h2c{height:31.829525pt;}
.h10{height:32.089844pt;}
.h20{height:32.500936pt;}
.h2b{height:32.547784pt;}
.h12{height:32.594348pt;}
.h30{height:32.611979pt;}
.hf{height:32.703125pt;}
.h1d{height:33.512761pt;}
.hd{height:34.020833pt;}
.h2a{height:34.872693pt;}
.h22{height:34.891557pt;}
.h34{height:34.922515pt;}
.h8{height:34.941406pt;}
.h11{height:35.039062pt;}
.h14{height:35.040662pt;}
.h24{height:35.145101pt;}
.h7{height:35.195312pt;}
.h1c{height:35.234375pt;}
.h37{height:35.925333pt;}
.h16{height:36.563553pt;}
.h1a{height:36.961250pt;}
.h1f{height:37.270833pt;}
.h6{height:37.375000pt;}
.h35{height:37.583333pt;}
.he{height:38.250000pt;}
.h15{height:38.273438pt;}
.h27{height:38.409447pt;}
.h39{height:40.532031pt;}
.h3a{height:40.544298pt;}
.h38{height:40.645312pt;}
.h17{height:41.929688pt;}
.h26{height:41.987075pt;}
.hc{height:42.046875pt;}
.ha{height:42.234375pt;}
.h28{height:42.250507pt;}
.hb{height:42.281250pt;}
.h25{height:42.304259pt;}
.h2d{height:45.957388pt;}
.h29{height:46.859978pt;}
.h33{height:55.906250pt;}
.h1b{height:56.062500pt;}
.h1e{height:65.406250pt;}
.h2e{height:65.604062pt;}
.h5{height:66.297176pt;}
.h2f{height:74.750000pt;}
.h2{height:84.093750pt;}
.h4{height:87.305961pt;}
.h18{height:125.496000pt;}
.h19{height:140.156250pt;}
.h9{height:169.125000pt;}
.h3{height:178.491600pt;}
.h13{height:198.466667pt;}
.h23{height:854.154667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:125.497333pt;}
.w4{width:698.025333pt;}
.w2{width:698.608000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa9{left:-754.303867pt;}
.x76{left:-332.472400pt;}
.x0{left:0.000000pt;}
.xad{left:34.960667pt;}
.x18{left:37.789733pt;}
.x99{left:38.740000pt;}
.xae{left:39.685067pt;}
.x17{left:41.785733pt;}
.x4d{left:42.776933pt;}
.x1b{left:43.840933pt;}
.x16{left:46.320933pt;}
.x80{left:47.390133pt;}
.x82{left:49.450133pt;}
.x83{left:51.040133pt;}
.x7c{left:53.721467pt;}
.x6b{left:54.666400pt;}
.xb2{left:55.756933pt;}
.x19{left:56.677733pt;}
.x7f{left:57.830133pt;}
.x94{left:58.933200pt;}
.x2c{left:60.683333pt;}
.x7e{left:61.620133pt;}
.x8f{left:62.992133pt;}
.xa{left:64.136267pt;}
.x81{left:66.880133pt;}
.x34{left:69.634267pt;}
.x35{left:71.784267pt;}
.x32{left:72.824267pt;}
.x33{left:73.764267pt;}
.x2d{left:75.587333pt;}
.x4c{left:77.728800pt;}
.x1a{left:79.360933pt;}
.x5d{left:81.946533pt;}
.x3{left:84.066533pt;}
.x1d{left:87.140133pt;}
.x9{left:89.671067pt;}
.x5c{left:91.596533pt;}
.x93{left:92.740400pt;}
.x58{left:94.292133pt;}
.xac{left:95.628000pt;}
.x59{left:99.704133pt;}
.x84{left:103.936933pt;}
.x31{left:104.874267pt;}
.x1c{left:105.799733pt;}
.x89{left:108.113733pt;}
.x7{left:112.643200pt;}
.x95{left:113.855067pt;}
.x5b{left:119.026533pt;}
.xaa{left:121.229200pt;}
.x6a{left:123.498533pt;}
.x30{left:125.377467pt;}
.xab{left:128.065333pt;}
.x5e{left:142.056533pt;}
.xa4{left:152.751867pt;}
.xa2{left:165.536267pt;}
.xa5{left:168.056133pt;}
.x8c{left:170.354533pt;}
.x8b{left:175.354533pt;}
.x8d{left:180.404533pt;}
.x5a{left:184.112133pt;}
.x4e{left:200.655733pt;}
.x2{left:205.101733pt;}
.x8{left:212.548600pt;}
.x9e{left:219.101067pt;}
.x86{left:224.106533pt;}
.x4{left:233.414333pt;}
.xa0{left:237.148667pt;}
.x5{left:241.238933pt;}
.xa6{left:243.570533pt;}
.x3b{left:247.584267pt;}
.x3a{left:249.284267pt;}
.x39{left:254.644267pt;}
.x38{left:259.054267pt;}
.x3c{left:261.174267pt;}
.x3d{left:265.114267pt;}
.x37{left:267.844267pt;}
.xb3{left:271.950000pt;}
.xb0{left:277.165333pt;}
.x36{left:283.964267pt;}
.xb4{left:285.354267pt;}
.x97{left:296.072800pt;}
.x61{left:304.946533pt;}
.x60{left:308.916533pt;}
.x98{left:312.644800pt;}
.x62{left:314.226533pt;}
.x88{left:318.602000pt;}
.x63{left:324.356533pt;}
.x57{left:339.385333pt;}
.x8e{left:343.778400pt;}
.x8a{left:351.302533pt;}
.x1{left:354.045733pt;}
.x5f{left:360.616533pt;}
.x6{left:361.839833pt;}
.x96{left:365.385600pt;}
.x64{left:367.046533pt;}
.xa3{left:381.456933pt;}
.xa1{left:382.924570pt;}
.xb5{left:387.401467pt;}
.x7d{left:390.787867pt;}
.xb{left:393.819067pt;}
.x1e{left:395.401467pt;}
.x6d{left:396.883200pt;}
.x90{left:398.128533pt;}
.x1f{left:399.397467pt;}
.x7a{left:400.840933pt;}
.x28{left:401.835600pt;}
.x25{left:403.985600pt;}
.x26{left:405.135600pt;}
.x4b{left:406.293867pt;}
.x27{left:407.405600pt;}
.x29{left:408.415600pt;}
.x21{left:409.555600pt;}
.x24{left:410.875600pt;}
.x20{left:414.301467pt;}
.x23{left:415.675600pt;}
.x6f{left:417.417867pt;}
.x2e{left:419.570133pt;}
.x22{left:420.505600pt;}
.x7b{left:421.879067pt;}
.x6c{left:423.559067pt;}
.x50{left:425.193733pt;}
.x2a{left:427.435600pt;}
.x2b{left:428.935600pt;}
.x41{left:430.354267pt;}
.x40{left:432.534267pt;}
.x2f{left:434.462133pt;}
.x42{left:437.454267pt;}
.x43{left:439.054267pt;}
.x78{left:444.022400pt;}
.x3f{left:445.374267pt;}
.x54{left:450.500800pt;}
.x6e{left:453.497867pt;}
.x77{left:454.906400pt;}
.x73{left:455.813733pt;}
.x53{left:460.424800pt;}
.x3e{left:463.324267pt;}
.x51{left:465.092800pt;}
.x55{left:466.628800pt;}
.x74{left:467.645733pt;}
.x71{left:468.869733pt;}
.xaf{left:471.716533pt;}
.x91{left:474.904933pt;}
.x56{left:477.332800pt;}
.x4a{left:482.666267pt;}
.x75{left:486.126933pt;}
.x79{left:493.253067pt;}
.x72{left:497.837733pt;}
.x52{left:500.552800pt;}
.x9f{left:501.670594pt;}
.x70{left:507.917733pt;}
.xb1{left:516.535467pt;}
.x92{left:522.892933pt;}
.xa7{left:535.877467pt;}
.x67{left:538.706533pt;}
.x66{left:539.996533pt;}
.x65{left:544.466533pt;}
.x68{left:548.216533pt;}
.x4f{left:551.025733pt;}
.xa8{left:555.861333pt;}
.x85{left:564.661200pt;}
.x9c{left:566.453600pt;}
.x87{left:569.984133pt;}
.x9d{left:571.341333pt;}
.x12{left:582.148667pt;}
.x11{left:584.778667pt;}
.x10{left:586.968667pt;}
.x69{left:588.176533pt;}
.xe{left:589.198667pt;}
.xf{left:594.668667pt;}
.x45{left:600.444267pt;}
.x48{left:601.864267pt;}
.x46{left:604.644267pt;}
.x47{left:605.814267pt;}
.x13{left:607.508667pt;}
.x15{left:611.118667pt;}
.x14{left:615.648667pt;}
.xd{left:621.608667pt;}
.x49{left:628.864267pt;}
.xc{left:631.508667pt;}
.x44{left:633.344267pt;}
.x9a{left:653.714400pt;}
.x9b{left:658.512970pt;}
}




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