
    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_cced0a6000ca68f9cb635c69.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_ec2e9d99e4c65694a42433a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_e351e34ee3d0e5e03bd0b23e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_8c0e48705045d4bc5e5a3c0d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.151000;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_d319b08007142a25dea90a7d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_43c40b1a75aafa8859f253f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8362988229e75f86c5314c5b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.174316;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_59b2ab00242aa7b72cb43372.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.664062;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_de4233f93b65c844b9891226.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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_43c40b1a75aafa8859f253f8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0b237b55265cfec4b3604f70.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.174316;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_8735e6b8565985db5eb8c198.woff2')format("woff");}.fff{font-family:fff;line-height:0.997000;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_e66208e6cbb31a0e7a97fbfd.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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_2c2ef70d8410835d241bc642.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8f32e3eadbef6c4a829da077.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.174316;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_31160792d2e2b8cc1272ee0d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.388000;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m10{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.530000px;}
.ls39{letter-spacing:-0.174348px;}
.ls2b{letter-spacing:-0.162324px;}
.ls4a{letter-spacing:-0.156312px;}
.ls4d{letter-spacing:-0.150300px;}
.ls24{letter-spacing:-0.138276px;}
.ls2c{letter-spacing:-0.132264px;}
.ls40{letter-spacing:-0.126252px;}
.ls1f{letter-spacing:-0.120240px;}
.ls20{letter-spacing:-0.114228px;}
.ls43{letter-spacing:-0.108216px;}
.ls44{letter-spacing:-0.102204px;}
.ls21{letter-spacing:-0.096192px;}
.ls1e{letter-spacing:-0.090972px;}
.ls49{letter-spacing:-0.090180px;}
.ls42{letter-spacing:-0.084168px;}
.ls2d{letter-spacing:-0.078156px;}
.ls3a{letter-spacing:-0.072144px;}
.ls38{letter-spacing:-0.066132px;}
.ls2e{letter-spacing:-0.060120px;}
.ls4b{letter-spacing:-0.054108px;}
.ls22{letter-spacing:-0.048096px;}
.ls3c{letter-spacing:-0.042084px;}
.ls3d{letter-spacing:-0.036072px;}
.ls26{letter-spacing:-0.030060px;}
.ls3e{letter-spacing:-0.027000px;}
.ls27{letter-spacing:-0.024048px;}
.ls29{letter-spacing:-0.021600px;}
.ls48{letter-spacing:-0.018036px;}
.ls3f{letter-spacing:-0.016200px;}
.ls41{letter-spacing:-0.012024px;}
.ls2a{letter-spacing:-0.010800px;}
.ls23{letter-spacing:-0.006012px;}
.ls3{letter-spacing:0.000000px;}
.ls73{letter-spacing:0.000009px;}
.ls6a{letter-spacing:0.000406px;}
.ls6e{letter-spacing:0.000496px;}
.ls5{letter-spacing:0.000608px;}
.ls65{letter-spacing:0.000676px;}
.ls67{letter-spacing:0.000800px;}
.ls66{letter-spacing:0.001036px;}
.ls71{letter-spacing:0.001584px;}
.ls5b{letter-spacing:0.001899px;}
.ls54{letter-spacing:0.002488px;}
.ls51{letter-spacing:0.002683px;}
.ls63{letter-spacing:0.002841px;}
.ls64{letter-spacing:0.002973px;}
.ls61{letter-spacing:0.003040px;}
.ls5c{letter-spacing:0.003239px;}
.ls76{letter-spacing:0.003830px;}
.ls37{letter-spacing:0.003859px;}
.ls5a{letter-spacing:0.004792px;}
.ls5e{letter-spacing:0.004800px;}
.ls68{letter-spacing:0.004992px;}
.ls45{letter-spacing:0.005400px;}
.ls11{letter-spacing:0.006012px;}
.ls16{letter-spacing:0.010800px;}
.lsc{letter-spacing:0.012024px;}
.ls32{letter-spacing:0.016200px;}
.ls1a{letter-spacing:0.018036px;}
.ls13{letter-spacing:0.021600px;}
.ls6{letter-spacing:0.023940px;}
.lsa{letter-spacing:0.024048px;}
.ls14{letter-spacing:0.027000px;}
.lsb{letter-spacing:0.030060px;}
.ls31{letter-spacing:0.032400px;}
.lsf{letter-spacing:0.036072px;}
.ls33{letter-spacing:0.037800px;}
.ls10{letter-spacing:0.042084px;}
.ls8{letter-spacing:0.043092px;}
.ls17{letter-spacing:0.043200px;}
.lsd{letter-spacing:0.048096px;}
.ls34{letter-spacing:0.048600px;}
.ls12{letter-spacing:0.054000px;}
.lse{letter-spacing:0.054108px;}
.ls15{letter-spacing:0.059400px;}
.ls1b{letter-spacing:0.060120px;}
.ls30{letter-spacing:0.066132px;}
.ls19{letter-spacing:0.072144px;}
.ls2f{letter-spacing:0.084168px;}
.ls3b{letter-spacing:0.114228px;}
.ls18{letter-spacing:0.120240px;}
.ls9{letter-spacing:0.167580px;}
.ls7{letter-spacing:0.181944px;}
.ls4c{letter-spacing:1.172340px;}
.ls4{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls6f{letter-spacing:3.507900px;}
.ls28{letter-spacing:5.849676px;}
.ls25{letter-spacing:6.571116px;}
.ls1{letter-spacing:10.461300px;}
.ls2{letter-spacing:11.954850px;}
.ls1d{letter-spacing:12.737535px;}
.ls75{letter-spacing:13.163969px;}
.ls46{letter-spacing:13.207537px;}
.ls1c{letter-spacing:13.269099px;}
.ls72{letter-spacing:13.276064px;}
.ls4e{letter-spacing:13.299380px;}
.ls5d{letter-spacing:13.334210px;}
.ls70{letter-spacing:13.415804px;}
.ls53{letter-spacing:13.426871px;}
.ls50{letter-spacing:13.448400px;}
.ls57{letter-spacing:13.454400px;}
.ls6b{letter-spacing:13.468993px;}
.ls62{letter-spacing:13.487210px;}
.ls47{letter-spacing:13.493980px;}
.ls6c{letter-spacing:13.538155px;}
.ls5f{letter-spacing:13.538279px;}
.ls36{letter-spacing:13.550850px;}
.ls35{letter-spacing:13.615473px;}
.ls74{letter-spacing:13.620167px;}
.ls77{letter-spacing:13.632467px;}
.ls4f{letter-spacing:13.644625px;}
.ls6d{letter-spacing:13.687178px;}
.ls56{letter-spacing:13.690359px;}
.ls60{letter-spacing:13.709584px;}
.ls59{letter-spacing:14.262165px;}
.ls69{letter-spacing:15.385694px;}
.ls55{letter-spacing:16.068047px;}
.ls52{letter-spacing:16.197459px;}
.ls58{letter-spacing:16.338635px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-91.154711px;}
.ws65{word-spacing:-54.000000px;}
.ws116{word-spacing:-15.017976px;}
.ws117{word-spacing:-14.993928px;}
.wsb7{word-spacing:-14.957856px;}
.ws5b{word-spacing:-14.943900px;}
.ws63{word-spacing:-14.891724px;}
.ws64{word-spacing:-13.500000px;}
.ws11a{word-spacing:-13.449600px;}
.ws62{word-spacing:-12.151944px;}
.ws2c{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.wsfc{word-spacing:-4.184292px;}
.wsfb{word-spacing:-4.124516px;}
.ws168{word-spacing:-3.706087px;}
.wse2{word-spacing:-3.468924px;}
.wse1{word-spacing:-3.414816px;}
.ws15a{word-spacing:-3.227882px;}
.ws7d{word-spacing:-3.174336px;}
.ws141{word-spacing:-3.168324px;}
.ws7c{word-spacing:-3.150288px;}
.ws142{word-spacing:-3.144276px;}
.ws3c{word-spacing:-3.108331px;}
.ws11e{word-spacing:-3.048556px;}
.ws10{word-spacing:-3.012710px;}
.ws178{word-spacing:-2.958912px;}
.wsb8{word-spacing:-2.797517px;}
.wsde{word-spacing:-2.721600px;}
.ws50{word-spacing:-2.689902px;}
.wsdf{word-spacing:-2.689200px;}
.wsdd{word-spacing:-2.683800px;}
.ws12e{word-spacing:-2.452896px;}
.ws12f{word-spacing:-2.362716px;}
.ws2d{word-spacing:-2.331248px;}
.ws30{word-spacing:-2.092146px;}
.ws12b{word-spacing:-2.044080px;}
.ws15b{word-spacing:-2.032370px;}
.ws12c{word-spacing:-1.995984px;}
.ws18a{word-spacing:-1.936742px;}
.ws2f{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.ws1ad{word-spacing:-1.882944px;}
.wsb4{word-spacing:-1.853044px;}
.ws59{word-spacing:-1.793268px;}
.wsfd{word-spacing:-1.733492px;}
.ws128{word-spacing:-1.695384px;}
.ws133{word-spacing:-1.657800px;}
.ws134{word-spacing:-1.641600px;}
.ws15d{word-spacing:-1.613941px;}
.wse6{word-spacing:-1.611216px;}
.ws132{word-spacing:-1.598400px;}
.wse5{word-spacing:-1.581156px;}
.ws2a{word-spacing:-1.554166px;}
.ws11d{word-spacing:-1.494390px;}
.ws1ac{word-spacing:-1.452557px;}
.wsd2{word-spacing:-1.406808px;}
.wsb5{word-spacing:-1.393707px;}
.ws167{word-spacing:-1.374839px;}
.ws129{word-spacing:-1.328652px;}
.ws2{word-spacing:-1.322630px;}
.ws10e{word-spacing:-1.255288px;}
.ws196{word-spacing:-1.237363px;}
.ws41{word-spacing:-1.195512px;}
.ws53{word-spacing:-1.135736px;}
.ws189{word-spacing:-1.075968px;}
.ws37{word-spacing:-1.075961px;}
.ws7e{word-spacing:-1.046088px;}
.wsf0{word-spacing:-1.034064px;}
.ws182{word-spacing:-1.022170px;}
.ws14c{word-spacing:-1.022040px;}
.ws38{word-spacing:-1.016185px;}
.ws7f{word-spacing:-1.016028px;}
.wsd3{word-spacing:-0.985968px;}
.ws61{word-spacing:-0.956410px;}
.ws14d{word-spacing:-0.949896px;}
.ws31{word-spacing:-0.896634px;}
.wsef{word-spacing:-0.889776px;}
.ws52{word-spacing:-0.836858px;}
.wsf2{word-spacing:-0.777083px;}
.ws162{word-spacing:-0.717307px;}
.ws67{word-spacing:-0.699379px;}
.wsae{word-spacing:-0.657532px;}
.ws10d{word-spacing:-0.597756px;}
.ws130{word-spacing:-0.595188px;}
.ws8c{word-spacing:-0.594000px;}
.ws138{word-spacing:-0.583200px;}
.ws139{word-spacing:-0.577800px;}
.ws8b{word-spacing:-0.518400px;}
.ws198{word-spacing:-0.430387px;}
.wsaf{word-spacing:-0.418429px;}
.ws4a{word-spacing:-0.358654px;}
.ws16{word-spacing:-0.322790px;}
.ws20{word-spacing:-0.298878px;}
.ws147{word-spacing:-0.282564px;}
.ws118{word-spacing:-0.268992px;}
.ws104{word-spacing:-0.247741px;}
.ws95{word-spacing:-0.246492px;}
.ws1f{word-spacing:-0.239102px;}
.ws36{word-spacing:-0.230822px;}
.ws161{word-spacing:-0.230365px;}
.ws66{word-spacing:-0.215194px;}
.ws21{word-spacing:-0.179327px;}
.ws13{word-spacing:-0.161395px;}
.ws15e{word-spacing:-0.143232px;}
.ws71{word-spacing:-0.134064px;}
.ws152{word-spacing:-0.132264px;}
.ws49{word-spacing:-0.119551px;}
.ws14{word-spacing:-0.107597px;}
.ws5a{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.ws1b6{word-spacing:-0.027206px;}
.ws1a5{word-spacing:-0.007747px;}
.wsa6{word-spacing:-0.005105px;}
.ws1ae{word-spacing:-0.004992px;}
.ws1af{word-spacing:-0.004282px;}
.ws45{word-spacing:-0.002526px;}
.wsa5{word-spacing:-0.001703px;}
.ws160{word-spacing:-0.001517px;}
.ws183{word-spacing:-0.001267px;}
.ws2b{word-spacing:-0.000410px;}
.ws1{word-spacing:0.000000px;}
.ws1b5{word-spacing:0.002408px;}
.ws1a3{word-spacing:0.003734px;}
.wsb6{word-spacing:0.022588px;}
.wsd4{word-spacing:0.024048px;}
.wsa3{word-spacing:0.030060px;}
.ws7b{word-spacing:0.042084px;}
.wsb9{word-spacing:0.053798px;}
.ws26{word-spacing:0.059776px;}
.ws11f{word-spacing:0.078156px;}
.ws8a{word-spacing:0.084168px;}
.ws120{word-spacing:0.090180px;}
.ws18f{word-spacing:0.100750px;}
.wsba{word-spacing:0.107597px;}
.ws91{word-spacing:0.118800px;}
.ws23{word-spacing:0.119551px;}
.wsf1{word-spacing:0.126252px;}
.wse0{word-spacing:0.151200px;}
.wsc3{word-spacing:0.156312px;}
.ws1a{word-spacing:0.161395px;}
.ws13d{word-spacing:0.162000px;}
.ws58{word-spacing:0.179327px;}
.wsc2{word-spacing:0.186372px;}
.ws94{word-spacing:0.189000px;}
.wsc4{word-spacing:0.204408px;}
.ws180{word-spacing:0.204815px;}
.ws6{word-spacing:0.209214px;}
.ws11{word-spacing:0.215194px;}
.ws2e{word-spacing:0.239102px;}
.ws96{word-spacing:0.252504px;}
.ws17b{word-spacing:0.263554px;}
.ws17c{word-spacing:0.268992px;}
.ws8{word-spacing:0.292900px;}
.ws28{word-spacing:0.298878px;}
.ws17d{word-spacing:0.322790px;}
.wscb{word-spacing:0.336672px;}
.ws24{word-spacing:0.358654px;}
.wsc5{word-spacing:0.366732px;}
.ws1ab{word-spacing:0.376589px;}
.wsca{word-spacing:0.402804px;}
.ws14a{word-spacing:0.414828px;}
.ws177{word-spacing:0.418429px;}
.ws148{word-spacing:0.426852px;}
.ws19e{word-spacing:0.430387px;}
.ws14b{word-spacing:0.468936px;}
.ws51{word-spacing:0.478205px;}
.ws8f{word-spacing:0.480600px;}
.ws12{word-spacing:0.484186px;}
.ws40{word-spacing:0.537980px;}
.ws18d{word-spacing:0.591782px;}
.ws6b{word-spacing:0.597756px;}
.wsa4{word-spacing:0.657532px;}
.ws1b2{word-spacing:0.686732px;}
.ws1b1{word-spacing:0.699379px;}
.ws39{word-spacing:0.717307px;}
.ws150{word-spacing:0.775548px;}
.ws29{word-spacing:0.777083px;}
.ws18e{word-spacing:0.806976px;}
.wsc7{word-spacing:0.811620px;}
.ws11c{word-spacing:0.836858px;}
.wscc{word-spacing:0.853704px;}
.wsd9{word-spacing:0.864000px;}
.wsc9{word-spacing:0.871740px;}
.ws8e{word-spacing:0.874800px;}
.ws8d{word-spacing:0.880200px;}
.ws90{word-spacing:0.891000px;}
.ws16d{word-spacing:0.896634px;}
.ws14f{word-spacing:0.901800px;}
.ws76{word-spacing:0.907812px;}
.ws22{word-spacing:0.956410px;}
.ws1b4{word-spacing:0.968371px;}
.ws54{word-spacing:1.016185px;}
.ws1a8{word-spacing:1.022170px;}
.ws33{word-spacing:1.075961px;}
.ws17{word-spacing:1.075968px;}
.ws9c{word-spacing:1.100196px;}
.ws151{word-spacing:1.118232px;}
.ws149{word-spacing:1.154304px;}
.ws158{word-spacing:1.166328px;}
.ws156{word-spacing:1.172340px;}
.ws35{word-spacing:1.195512px;}
.ws9a{word-spacing:1.196388px;}
.wsd7{word-spacing:1.225800px;}
.wsd6{word-spacing:1.231200px;}
.wsd8{word-spacing:1.242000px;}
.ws9b{word-spacing:1.250496px;}
.ws107{word-spacing:1.255288px;}
.ws1a1{word-spacing:1.289059px;}
.ws1a7{word-spacing:1.291162px;}
.ws157{word-spacing:1.298592px;}
.wsa7{word-spacing:1.315063px;}
.ws14e{word-spacing:1.322640px;}
.wsc8{word-spacing:1.346688px;}
.ws25{word-spacing:1.374839px;}
.ws155{word-spacing:1.472940px;}
.wscd{word-spacing:1.490976px;}
.ws19b{word-spacing:1.506355px;}
.ws153{word-spacing:1.539072px;}
.ws60{word-spacing:1.554166px;}
.ws1b3{word-spacing:1.560154px;}
.ws137{word-spacing:1.587600px;}
.ws136{word-spacing:1.614600px;}
.ws154{word-spacing:1.617228px;}
.ws135{word-spacing:1.620000px;}
.wsa9{word-spacing:1.673717px;}
.wsad{word-spacing:1.733492px;}
.wsac{word-spacing:1.793268px;}
.wsf6{word-spacing:1.853044px;}
.ws75{word-spacing:1.863720px;}
.wse7{word-spacing:1.899792px;}
.ws169{word-spacing:1.912819px;}
.ws19d{word-spacing:1.936742px;}
.ws4f{word-spacing:1.972595px;}
.ws127{word-spacing:1.983960px;}
.ws7{word-spacing:2.008454px;}
.wsfe{word-spacing:2.032370px;}
.ws185{word-spacing:2.044339px;}
.ws105{word-spacing:2.092146px;}
.ws43{word-spacing:2.151922px;}
.ws19{word-spacing:2.151936px;}
.wsbb{word-spacing:2.211697px;}
.ws85{word-spacing:2.248488px;}
.ws18b{word-spacing:2.259533px;}
.wsab{word-spacing:2.271473px;}
.wsa2{word-spacing:2.272536px;}
.ws144{word-spacing:2.302596px;}
.ws119{word-spacing:2.313331px;}
.ws32{word-spacing:2.331248px;}
.ws145{word-spacing:2.338668px;}
.ws143{word-spacing:2.356704px;}
.ws86{word-spacing:2.362716px;}
.ws146{word-spacing:2.386764px;}
.ws163{word-spacing:2.391024px;}
.ws42{word-spacing:2.450800px;}
.ws1e{word-spacing:2.510575px;}
.ws27{word-spacing:2.570351px;}
.wsea{word-spacing:2.579148px;}
.ws84{word-spacing:2.585160px;}
.ws6c{word-spacing:2.630126px;}
.ws13f{word-spacing:2.639268px;}
.ws6f{word-spacing:2.653346px;}
.ws6d{word-spacing:2.656866px;}
.ws6e{word-spacing:2.666084px;}
.ws3b{word-spacing:2.689902px;}
.ws13e{word-spacing:2.717424px;}
.wseb{word-spacing:2.729448px;}
.ws6a{word-spacing:2.749678px;}
.ws140{word-spacing:2.765520px;}
.ws15c{word-spacing:2.809453px;}
.ws175{word-spacing:2.869229px;}
.wse4{word-spacing:2.885760px;}
.ws18c{word-spacing:2.905114px;}
.ws78{word-spacing:2.945880px;}
.ws1b7{word-spacing:2.958912px;}
.ws88{word-spacing:2.993976px;}
.ws77{word-spacing:3.018024px;}
.ws10f{word-spacing:3.022840px;}
.ws110{word-spacing:3.048556px;}
.ws1a9{word-spacing:3.073838px;}
.ws15f{word-spacing:3.108331px;}
.ws19a{word-spacing:3.120307px;}
.ws192{word-spacing:3.150395px;}
.wsaa{word-spacing:3.168107px;}
.ws184{word-spacing:3.174106px;}
.ws99{word-spacing:3.210408px;}
.ws1a6{word-spacing:3.220176px;}
.ws187{word-spacing:3.224986px;}
.ws19f{word-spacing:3.225216px;}
.ws188{word-spacing:3.227414px;}
.ws1a4{word-spacing:3.227568px;}
.ws181{word-spacing:3.227904px;}
.ws1aa{word-spacing:3.227933px;}
.ws197{word-spacing:3.228518px;}
.ws190{word-spacing:3.229162px;}
.ws1a0{word-spacing:3.281702px;}
.wsce{word-spacing:3.282552px;}
.ws12d{word-spacing:3.330648px;}
.ws5f{word-spacing:3.347434px;}
.ws17e{word-spacing:3.389299px;}
.wsd5{word-spacing:3.391200px;}
.ws5c{word-spacing:3.407209px;}
.ws98{word-spacing:3.462912px;}
.wsa8{word-spacing:3.466985px;}
.ws1b0{word-spacing:3.472518px;}
.ws17f{word-spacing:3.496896px;}
.ws106{word-spacing:3.526760px;}
.ws1d{word-spacing:3.586536px;}
.ws186{word-spacing:3.604493px;}
.ws112{word-spacing:3.644244px;}
.ws114{word-spacing:3.646312px;}
.ws97{word-spacing:3.655296px;}
.ws113{word-spacing:3.664024px;}
.wsa1{word-spacing:3.685356px;}
.ws170{word-spacing:3.706087px;}
.ws34{word-spacing:3.765863px;}
.ws69{word-spacing:3.885414px;}
.ws1a2{word-spacing:3.927283px;}
.ws5e{word-spacing:3.945190px;}
.ws191{word-spacing:3.981082px;}
.wsb0{word-spacing:4.004965px;}
.wse9{word-spacing:4.010004px;}
.wsee{word-spacing:4.058100px;}
.ws44{word-spacing:4.064741px;}
.wsda{word-spacing:4.082400px;}
.wsdc{word-spacing:4.093200px;}
.wsa0{word-spacing:4.100184px;}
.ws4e{word-spacing:4.124516px;}
.wsed{word-spacing:4.160304px;}
.wsdb{word-spacing:4.168800px;}
.ws16f{word-spacing:4.184292px;}
.ws3d{word-spacing:4.242536px;}
.ws3e{word-spacing:4.244068px;}
.ws166{word-spacing:4.303843px;}
.ws1b9{word-spacing:4.303872px;}
.ws16e{word-spacing:4.423394px;}
.ws92{word-spacing:4.455000px;}
.wse8{word-spacing:4.460904px;}
.ws93{word-spacing:4.471200px;}
.wsbc{word-spacing:4.483170px;}
.ws3f{word-spacing:4.542946px;}
.ws3a{word-spacing:4.602721px;}
.ws172{word-spacing:4.662497px;}
.ws1b{word-spacing:4.680461px;}
.wsf3{word-spacing:4.722272px;}
.ws123{word-spacing:4.737456px;}
.ws159{word-spacing:4.749480px;}
.ws79{word-spacing:4.755492px;}
.ws7a{word-spacing:4.773528px;}
.wsb2{word-spacing:4.782048px;}
.ws122{word-spacing:4.827636px;}
.ws121{word-spacing:4.863708px;}
.ws11b{word-spacing:4.901599px;}
.ws5d{word-spacing:4.961375px;}
.ws68{word-spacing:5.080926px;}
.wsc6{word-spacing:5.104188px;}
.ws115{word-spacing:5.200477px;}
.ws13c{word-spacing:5.205600px;}
.ws13b{word-spacing:5.211000px;}
.ws13a{word-spacing:5.221800px;}
.ws111{word-spacing:5.260253px;}
.wsc0{word-spacing:5.320028px;}
.ws179{word-spacing:5.326042px;}
.wsbf{word-spacing:5.379804px;}
.ws174{word-spacing:5.439580px;}
.ws87{word-spacing:5.446872px;}
.ws165{word-spacing:5.499355px;}
.ws194{word-spacing:5.595034px;}
.ws176{word-spacing:5.618906px;}
.ws102{word-spacing:5.678682px;}
.ws101{word-spacing:5.738458px;}
.ws16c{word-spacing:5.798233px;}
.ws9f{word-spacing:5.831640px;}
.ws199{word-spacing:5.917824px;}
.wsb3{word-spacing:6.037336px;}
.wse{word-spacing:6.067206px;}
.ws171{word-spacing:6.097111px;}
.wsf{word-spacing:6.150892px;}
.ws46{word-spacing:6.156887px;}
.wse3{word-spacing:6.186348px;}
.ws1c{word-spacing:6.186816px;}
.ws47{word-spacing:6.216662px;}
.ws55{word-spacing:6.276438px;}
.ws17a{word-spacing:6.294413px;}
.ws56{word-spacing:6.336214px;}
.ws108{word-spacing:6.455765px;}
.ws15{word-spacing:6.455808px;}
.wsf8{word-spacing:6.515540px;}
.ws82{word-spacing:6.535044px;}
.ws1b8{word-spacing:6.563405px;}
.wsf5{word-spacing:6.575316px;}
.ws81{word-spacing:6.595164px;}
.ws80{word-spacing:6.601176px;}
.wsb1{word-spacing:6.694867px;}
.ws10c{word-spacing:6.874194px;}
.ws83{word-spacing:6.889752px;}
.wsf4{word-spacing:6.933970px;}
.ws9e{word-spacing:6.955884px;}
.ws131{word-spacing:6.967908px;}
.ws9d{word-spacing:6.991956px;}
.ws70{word-spacing:6.993745px;}
.wsec{word-spacing:7.016004px;}
.wsc1{word-spacing:7.053521px;}
.ws109{word-spacing:7.232848px;}
.wsd1{word-spacing:7.238448px;}
.ws10a{word-spacing:7.292623px;}
.wsd0{word-spacing:7.328628px;}
.ws4d{word-spacing:7.412174px;}
.ws103{word-spacing:7.471950px;}
.ws10b{word-spacing:7.531726px;}
.ws16a{word-spacing:7.711052px;}
.ws164{word-spacing:7.830604px;}
.wsf7{word-spacing:7.890379px;}
.ws57{word-spacing:7.950155px;}
.ws48{word-spacing:8.129482px;}
.ws19c{word-spacing:8.177357px;}
.wsbd{word-spacing:8.249033px;}
.ws173{word-spacing:8.428360px;}
.ws74{word-spacing:8.482932px;}
.ws16b{word-spacing:8.488135px;}
.ws73{word-spacing:8.488944px;}
.ws4b{word-spacing:8.547911px;}
.wsc{word-spacing:8.661460px;}
.ws12a{word-spacing:8.699364px;}
.wscf{word-spacing:8.717400px;}
.wsfa{word-spacing:9.205442px;}
.wsf9{word-spacing:9.324994px;}
.ws89{word-spacing:10.857672px;}
.ws72{word-spacing:11.620476px;}
.ws100{word-spacing:11.716018px;}
.wsff{word-spacing:11.775793px;}
.ws125{word-spacing:11.999952px;}
.ws124{word-spacing:12.348648px;}
.ws126{word-spacing:12.420792px;}
.ws4{word-spacing:15.483541px;}
.wsb{word-spacing:17.699504px;}
.wsbe{word-spacing:20.144377px;}
.wsa{word-spacing:20.293758px;}
.ws9{word-spacing:20.312252px;}
.ws193{word-spacing:20.474306px;}
.ws4c{word-spacing:21.698543px;}
.wsd{word-spacing:27.448877px;}
.ws195{word-spacing:48.418560px;}
._22{margin-left:-24.047885px;}
._0{margin-left:-7.711052px;}
._3{margin-left:-6.150892px;}
._c{margin-left:-5.062928px;}
._4{margin-left:-3.849538px;}
._9{margin-left:-2.630133px;}
._1{margin-left:-1.322630px;}
._2{width:1.091170px;}
._7{width:2.301354px;}
._21{width:6.133018px;}
._5{width:12.971402px;}
._12{width:14.054833px;}
._a{width:15.715012px;}
._b{width:17.639887px;}
._e{width:18.883238px;}
._15{width:20.323704px;}
._f{width:21.414914px;}
._11{width:22.864320px;}
._16{width:24.515563px;}
._6{width:25.946136px;}
._1e{width:27.128606px;}
._18{width:29.357387px;}
._10{width:30.934080px;}
._8{width:32.637384px;}
._1b{width:34.191643px;}
._d{width:36.313920px;}
._19{width:38.078629px;}
._1c{width:40.109428px;}
._17{width:41.350043px;}
._1d{width:43.105775px;}
._20{width:44.532822px;}
._24{width:61.868160px;}
._23{width:88.767360px;}
._13{width:689.910419px;}
._1a{width:2039.994432px;}
._1f{width:2425.886700px;}
._14{width:2449.796700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(70,45,144);}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fsb{font-size:43.600200px;}
.fs3{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:117.165438px;}
.y1d3{bottom:-370.875396px;}
.y1d2{bottom:-351.706134px;}
.y1d1{bottom:-332.446692px;}
.y140{bottom:-316.635930px;}
.y1d0{bottom:-313.187250px;}
.y13f{bottom:-297.376488px;}
.y1cf{bottom:-294.017988px;}
.y13e{bottom:-278.117046px;}
.y1ce{bottom:-274.758546px;}
.y13d{bottom:-258.947784px;}
.ye1{bottom:-258.514134px;}
.y1cd{bottom:-255.589284px;}
.y13c{bottom:-239.688342px;}
.ye0{bottom:-239.254692px;}
.y1cc{bottom:-236.329842px;}
.y13b{bottom:-220.428900px;}
.ydf{bottom:-220.085430px;}
.y1cb{bottom:-217.070400px;}
.y13a{bottom:-201.259638px;}
.yde{bottom:-200.825988px;}
.y1ca{bottom:-197.901138px;}
.y139{bottom:-182.000196px;}
.ydd{bottom:-181.566546px;}
.y1c9{bottom:-178.641696px;}
.y138{bottom:-162.830934px;}
.ydc{bottom:-162.397284px;}
.y1c8{bottom:-159.382254px;}
.y137{bottom:-143.571492px;}
.ydb{bottom:-143.137842px;}
.y1c7{bottom:-140.212992px;}
.y136{bottom:-124.312050px;}
.yda{bottom:-123.878400px;}
.y1c6{bottom:-120.953550px;}
.y135{bottom:-87.591450px;}
.yd9{bottom:-87.158100px;}
.y1c5{bottom:-84.144300px;}
.y134{bottom:-70.131900px;}
.yd8{bottom:-69.698550px;}
.y1c4{bottom:-66.773850px;}
.y133{bottom:-52.851900px;}
.yd7{bottom:-52.418550px;}
.y1c3{bottom:-49.493850px;}
.y132{bottom:-35.571900px;}
.yd6{bottom:-35.138550px;}
.y1c2{bottom:-32.213850px;}
.y131{bottom:-18.291900px;}
.yd5{bottom:-17.858550px;}
.y1c1{bottom:-14.843400px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.425340px;}
.y130{bottom:4.124178px;}
.yd4{bottom:4.558938px;}
.y1c0{bottom:7.481481px;}
.y9{bottom:14.151273px;}
.y2{bottom:17.412896px;}
.y48{bottom:31.890000px;}
.y1f6{bottom:89.211000px;}
.y120{bottom:91.900500px;}
.yf0{bottom:93.631500px;}
.y156{bottom:97.233000px;}
.y1ed{bottom:100.045500px;}
.y1b0{bottom:100.419000px;}
.y21{bottom:102.823500px;}
.y24f{bottom:103.557000px;}
.y204{bottom:105.799500px;}
.yb2{bottom:106.246500px;}
.y1f5{bottom:108.040500px;}
.y11f{bottom:110.730000px;}
.yef{bottom:112.461000px;}
.y21b{bottom:112.614000px;}
.y155{bottom:116.062500px;}
.y1ec{bottom:118.875000px;}
.y1af{bottom:119.248500px;}
.y20{bottom:120.711000px;}
.y24e{bottom:120.817500px;}
.y47{bottom:123.775500px;}
.y203{bottom:124.627500px;}
.yb1{bottom:125.076000px;}
.y17c{bottom:125.524500px;}
.y7d{bottom:126.403500px;}
.y1f4{bottom:126.870000px;}
.y11e{bottom:129.559500px;}
.y21a{bottom:129.873000px;}
.yee{bottom:131.290500px;}
.y154{bottom:134.892000px;}
.y1eb{bottom:137.703000px;}
.y1ae{bottom:138.078000px;}
.y1f{bottom:138.600000px;}
.y46{bottom:142.605000px;}
.y202{bottom:143.457000px;}
.yb0{bottom:143.905500px;}
.y17b{bottom:144.354000px;}
.y7c{bottom:145.233000px;}
.y1f3{bottom:145.699500px;}
.y219{bottom:147.133500px;}
.yed{bottom:150.120000px;}
.y11d{bottom:152.872500px;}
.y153{bottom:153.721500px;}
.y24d{bottom:155.338500px;}
.y1e{bottom:156.487500px;}
.y1ea{bottom:156.532500px;}
.y1ad{bottom:156.907500px;}
.y45{bottom:161.434500px;}
.y201{bottom:162.286500px;}
.yaf{bottom:162.735000px;}
.y17a{bottom:163.183500px;}
.y7b{bottom:164.062500px;}
.y218{bottom:164.394000px;}
.y1f2{bottom:164.529000px;}
.y11c{bottom:168.564000px;}
.yec{bottom:168.949500px;}
.y152{bottom:172.551000px;}
.y24c{bottom:172.599000px;}
.y1d{bottom:174.375000px;}
.y1e9{bottom:175.362000px;}
.y1ac{bottom:175.737000px;}
.y44{bottom:180.264000px;}
.y200{bottom:181.116000px;}
.yae{bottom:181.564500px;}
.y217{bottom:181.654500px;}
.y179{bottom:182.013000px;}
.y7a{bottom:182.892000px;}
.y1f1{bottom:183.358500px;}
.yeb{bottom:187.779000px;}
.y24b{bottom:189.858000px;}
.y151{bottom:191.380500px;}
.y1c{bottom:192.264000px;}
.y1e8{bottom:194.191500px;}
.y1ab{bottom:194.566500px;}
.y216{bottom:198.915000px;}
.y43{bottom:199.093500px;}
.y1ff{bottom:199.945500px;}
.yad{bottom:200.394000px;}
.y178{bottom:200.842500px;}
.y79{bottom:201.721500px;}
.y11b{bottom:202.188000px;}
.yea{bottom:206.608500px;}
.y24a{bottom:207.118500px;}
.y1b{bottom:210.151500px;}
.y150{bottom:210.210000px;}
.y1e7{bottom:213.021000px;}
.y1aa{bottom:213.396000px;}
.y215{bottom:216.175500px;}
.y42{bottom:217.923000px;}
.y1fe{bottom:218.775000px;}
.yac{bottom:219.223500px;}
.y177{bottom:219.672000px;}
.y78{bottom:220.551000px;}
.y11a{bottom:221.017500px;}
.y249{bottom:224.379000px;}
.ye9{bottom:225.438000px;}
.y1f0{bottom:225.499500px;}
.y1a{bottom:228.039000px;}
.y14f{bottom:229.039500px;}
.y1e6{bottom:231.850500px;}
.y1a9{bottom:232.225500px;}
.y214{bottom:233.436000px;}
.y41{bottom:236.752500px;}
.y1fd{bottom:237.604500px;}
.yab{bottom:238.053000px;}
.y176{bottom:238.501500px;}
.y77{bottom:239.380500px;}
.y119{bottom:239.847000px;}
.y248{bottom:241.639500px;}
.ye8{bottom:244.267500px;}
.y1ef{bottom:245.674500px;}
.y14e{bottom:247.869000px;}
.y1e5{bottom:250.680000px;}
.y213{bottom:250.696500px;}
.y1a8{bottom:251.055000px;}
.y40{bottom:255.582000px;}
.y1fc{bottom:256.434000px;}
.yaa{bottom:256.882500px;}
.y175{bottom:257.331000px;}
.y76{bottom:258.210000px;}
.y118{bottom:258.676500px;}
.y247{bottom:258.900000px;}
.y1ee{bottom:261.366000px;}
.ye7{bottom:263.097000px;}
.y14d{bottom:266.698500px;}
.y212{bottom:267.955500px;}
.y1e4{bottom:269.509500px;}
.y1a7{bottom:269.884500px;}
.y3f{bottom:274.411500px;}
.y1fb{bottom:275.263500px;}
.ya9{bottom:275.712000px;}
.y174{bottom:276.160500px;}
.y75{bottom:277.039500px;}
.y117{bottom:277.506000px;}
.y211{bottom:285.216000px;}
.y14c{bottom:285.528000px;}
.y1e3{bottom:288.339000px;}
.y1a6{bottom:288.714000px;}
.y3e{bottom:293.241000px;}
.y246{bottom:293.421000px;}
.ye6{bottom:293.673000px;}
.y1fa{bottom:294.093000px;}
.ya8{bottom:294.541500px;}
.y173{bottom:294.990000px;}
.y74{bottom:295.869000px;}
.y116{bottom:296.334000px;}
.y210{bottom:302.476500px;}
.y14b{bottom:304.357500px;}
.y1e2{bottom:307.168500px;}
.y19{bottom:307.299000px;}
.y1a5{bottom:307.543500px;}
.y245{bottom:310.681500px;}
.y3d{bottom:312.070500px;}
.ye5{bottom:312.906000px;}
.y1f9{bottom:312.922500px;}
.ya7{bottom:313.371000px;}
.y172{bottom:313.819500px;}
.y73{bottom:314.698500px;}
.y115{bottom:315.163500px;}
.y20f{bottom:319.737000px;}
.y14a{bottom:323.187000px;}
.y18{bottom:325.186500px;}
.y1e1{bottom:325.998000px;}
.y1a4{bottom:326.371500px;}
.y244{bottom:327.940500px;}
.y3c{bottom:330.900000px;}
.ye4{bottom:332.139000px;}
.ya6{bottom:332.200500px;}
.y171{bottom:332.649000px;}
.y72{bottom:333.528000px;}
.y114{bottom:333.993000px;}
.y1f8{bottom:336.235500px;}
.y20e{bottom:336.997500px;}
.y149{bottom:342.016500px;}
.y17{bottom:343.074000px;}
.y1e0{bottom:344.827500px;}
.y1a3{bottom:345.201000px;}
.y3b{bottom:349.729500px;}
.ya5{bottom:351.030000px;}
.ye3{bottom:351.372000px;}
.y170{bottom:351.478500px;}
.y71{bottom:352.356000px;}
.y113{bottom:352.822500px;}
.y20d{bottom:354.258000px;}
.y148{bottom:360.846000px;}
.y16{bottom:360.963000px;}
.y243{bottom:362.461500px;}
.y1df{bottom:363.657000px;}
.y1a2{bottom:364.030500px;}
.y3a{bottom:368.559000px;}
.ya4{bottom:369.859500px;}
.y16f{bottom:370.308000px;}
.ye2{bottom:370.605000px;}
.y70{bottom:371.185500px;}
.y20c{bottom:371.518500px;}
.y112{bottom:371.652000px;}
.y147{bottom:379.675500px;}
.y242{bottom:379.722000px;}
.y1de{bottom:382.486500px;}
.y1a1{bottom:382.860000px;}
.y39{bottom:387.388500px;}
.ya3{bottom:388.689000px;}
.y20b{bottom:388.779000px;}
.y16e{bottom:389.137500px;}
.y6f{bottom:390.015000px;}
.y111{bottom:390.481500px;}
.yc0{bottom:393.034500px;}
.y241{bottom:396.982500px;}
.y146{bottom:398.505000px;}
.y15{bottom:399.024000px;}
.y1dd{bottom:401.316000px;}
.y1a0{bottom:401.689500px;}
.y20a{bottom:406.039500px;}
.y38{bottom:406.218000px;}
.ya2{bottom:407.518500px;}
.y16d{bottom:407.967000px;}
.y6e{bottom:408.844500px;}
.y110{bottom:409.311000px;}
.y240{bottom:414.243000px;}
.y14{bottom:416.913000px;}
.y145{bottom:417.334500px;}
.y1dc{bottom:420.145500px;}
.y19f{bottom:425.002500px;}
.y37{bottom:425.047500px;}
.ya1{bottom:426.348000px;}
.y16c{bottom:426.796500px;}
.y6d{bottom:427.674000px;}
.y209{bottom:427.782000px;}
.y10f{bottom:428.140500px;}
.y23f{bottom:431.503500px;}
.y13{bottom:434.800500px;}
.y1bf{bottom:437.501805px;}
.y1db{bottom:438.975000px;}
.yd3{bottom:441.688452px;}
.y36{bottom:443.875500px;}
.ya0{bottom:445.177500px;}
.y16b{bottom:445.626000px;}
.y6c{bottom:446.503500px;}
.y10e{bottom:446.970000px;}
.y23e{bottom:448.764000px;}
.y144{bottom:450.900000px;}
.y1be{bottom:456.761247px;}
.y1da{bottom:457.804500px;}
.y12f{bottom:458.354826px;}
.y19e{bottom:458.626500px;}
.yd2{bottom:460.947894px;}
.y208{bottom:461.406000px;}
.y35{bottom:462.705000px;}
.y9f{bottom:464.007000px;}
.y16a{bottom:464.454000px;}
.y6b{bottom:465.333000px;}
.y10d{bottom:465.799500px;}
.y23d{bottom:466.024500px;}
.y143{bottom:470.133000px;}
.y12{bottom:470.622000px;}
.y1bd{bottom:476.020689px;}
.y1d9{bottom:476.634000px;}
.y19d{bottom:477.456000px;}
.y12e{bottom:477.614268px;}
.yd1{bottom:480.207336px;}
.y9e{bottom:482.836500px;}
.y169{bottom:483.283500px;}
.y6a{bottom:484.162500px;}
.y10c{bottom:484.629000px;}
.y34{bottom:486.018000px;}
.y207{bottom:487.947000px;}
.y142{bottom:489.366000px;}
.y1bc{bottom:495.189951px;}
.y19c{bottom:496.285500px;}
.y12d{bottom:496.873710px;}
.yd0{bottom:499.378101px;}
.y23c{bottom:500.544000px;}
.y9d{bottom:501.666000px;}
.y168{bottom:502.113000px;}
.y69{bottom:502.992000px;}
.y10b{bottom:503.458500px;}
.y206{bottom:505.521000px;}
.y11{bottom:506.442000px;}
.y141{bottom:508.599000px;}
.y1d8{bottom:510.199500px;}
.y1bb{bottom:514.449393px;}
.y19b{bottom:515.115000px;}
.y12c{bottom:516.042972px;}
.y23b{bottom:517.804500px;}
.ycf{bottom:518.637543px;}
.y9c{bottom:520.495500px;}
.y167{bottom:520.942500px;}
.y68{bottom:521.821500px;}
.y10a{bottom:522.288000px;}
.y205{bottom:523.095000px;}
.y10{bottom:524.329500px;}
.y1d7{bottom:529.432500px;}
.y121{bottom:531.028500px;}
.y1ba{bottom:533.708835px;}
.y19a{bottom:533.944500px;}
.y23a{bottom:535.065000px;}
.y12b{bottom:535.302414px;}
.yce{bottom:537.806805px;}
.y9b{bottom:539.323500px;}
.y166{bottom:539.772000px;}
.y67{bottom:540.651000px;}
.y109{bottom:541.117500px;}
.yf{bottom:542.218500px;}
.y1d6{bottom:548.665500px;}
.y239{bottom:552.325500px;}
.y199{bottom:552.774000px;}
.y1b9{bottom:552.878097px;}
.y12a{bottom:554.561856px;}
.ycd{bottom:557.066247px;}
.y9a{bottom:558.153000px;}
.y165{bottom:558.601500px;}
.y66{bottom:559.480500px;}
.y108{bottom:559.947000px;}
.ye{bottom:560.106000px;}
.y33{bottom:561.168000px;}
.y1d5{bottom:567.898500px;}
.y238{bottom:569.586000px;}
.y198{bottom:571.603500px;}
.y1b8{bottom:572.137539px;}
.y129{bottom:573.731118px;}
.ycc{bottom:576.325689px;}
.y99{bottom:576.982500px;}
.y164{bottom:577.431000px;}
.yd{bottom:577.993500px;}
.y65{bottom:578.310000px;}
.y107{bottom:578.776500px;}
.y32{bottom:580.626000px;}
.y237{bottom:586.846500px;}
.y1d4{bottom:587.131500px;}
.y197{bottom:590.433000px;}
.y1b7{bottom:591.306801px;}
.y128{bottom:592.990560px;}
.ycb{bottom:595.494951px;}
.y98{bottom:595.812000px;}
.yc{bottom:595.882500px;}
.y163{bottom:596.260500px;}
.y64{bottom:597.139500px;}
.y106{bottom:597.606000px;}
.y236{bottom:604.107000px;}
.y196{bottom:609.262500px;}
.y1b1{bottom:609.559500px;}
.y1b6{bottom:610.566243px;}
.y127{bottom:612.159822px;}
.yb{bottom:613.770000px;}
.y97{bottom:614.641500px;}
.yca{bottom:614.754393px;}
.y162{bottom:615.090000px;}
.y63{bottom:615.969000px;}
.y105{bottom:616.435500px;}
.y31{bottom:618.015000px;}
.y235{bottom:621.366000px;}
.y195{bottom:628.092000px;}
.y1b5{bottom:629.825685px;}
.y126{bottom:631.419264px;}
.y96{bottom:633.471000px;}
.y161{bottom:633.919500px;}
.yc9{bottom:634.013835px;}
.y62{bottom:634.798500px;}
.y104{bottom:635.265000px;}
.y8{bottom:636.141055px;}
.y30{bottom:637.473000px;}
.y234{bottom:638.626500px;}
.y194{bottom:646.921500px;}
.y1b4{bottom:648.996450px;}
.y95{bottom:652.300500px;}
.y160{bottom:652.749000px;}
.yc8{bottom:653.183097px;}
.y61{bottom:653.628000px;}
.y103{bottom:654.094500px;}
.y125{bottom:655.088508px;}
.y233{bottom:655.887000px;}
.y2f{bottom:656.929500px;}
.y193{bottom:665.751000px;}
.y94{bottom:671.130000px;}
.y15f{bottom:671.578500px;}
.yc7{bottom:672.442539px;}
.y60{bottom:672.457500px;}
.y102{bottom:672.924000px;}
.y232{bottom:673.147500px;}
.y124{bottom:674.347950px;}
.y2e{bottom:676.386000px;}
.y192{bottom:684.580500px;}
.y93{bottom:689.959500px;}
.y15e{bottom:690.408000px;}
.yc6{bottom:691.611801px;}
.y101{bottom:691.753500px;}
.y5f{bottom:695.770500px;}
.y2d{bottom:695.844000px;}
.y191{bottom:703.410000px;}
.y1b3{bottom:703.716585px;}
.y231{bottom:707.668500px;}
.y92{bottom:708.789000px;}
.y15d{bottom:709.237500px;}
.y100{bottom:710.583000px;}
.yc5{bottom:710.871243px;}
.y1b2{bottom:713.346450px;}
.y2c{bottom:715.300500px;}
.y5e{bottom:715.944000px;}
.y190{bottom:722.239500px;}
.y230{bottom:724.929000px;}
.y91{bottom:727.618500px;}
.y15c{bottom:728.067000px;}
.y123{bottom:729.068085px;}
.yff{bottom:729.412500px;}
.yc4{bottom:730.130685px;}
.y2b{bottom:734.757000px;}
.y122{bottom:738.697950px;}
.y18f{bottom:741.067500px;}
.y22f{bottom:742.189500px;}
.y90{bottom:746.448000px;}
.y15b{bottom:746.896500px;}
.yfe{bottom:748.242000px;}
.yc3{bottom:749.301450px;}
.y5d{bottom:749.568000px;}
.y2a{bottom:754.215000px;}
.y22e{bottom:759.450000px;}
.y18e{bottom:759.897000px;}
.y8f{bottom:765.277500px;}
.y15a{bottom:765.726000px;}
.yfd{bottom:767.071500px;}
.y5c{bottom:768.397500px;}
.y29{bottom:773.671500px;}
.y22d{bottom:776.709000px;}
.y18d{bottom:778.726500px;}
.y8e{bottom:784.107000px;}
.y159{bottom:784.555500px;}
.yfc{bottom:785.901000px;}
.y5b{bottom:787.227000px;}
.y28{bottom:793.129500px;}
.y22c{bottom:793.969500px;}
.y18c{bottom:797.556000px;}
.y8d{bottom:802.936500px;}
.y158{bottom:803.385000px;}
.yc2{bottom:804.021585px;}
.yfb{bottom:804.729000px;}
.y5a{bottom:806.056500px;}
.y22b{bottom:811.230000px;}
.y27{bottom:812.586000px;}
.yc1{bottom:813.651450px;}
.y18b{bottom:816.385500px;}
.y8c{bottom:821.766000px;}
.y157{bottom:822.214500px;}
.yfa{bottom:823.558500px;}
.y59{bottom:824.886000px;}
.y22a{bottom:828.490500px;}
.y26{bottom:832.042500px;}
.y18a{bottom:835.215000px;}
.y8b{bottom:840.595500px;}
.ybf{bottom:841.044000px;}
.yf9{bottom:842.388000px;}
.y58{bottom:843.715500px;}
.y229{bottom:845.751000px;}
.y25{bottom:851.500500px;}
.y189{bottom:854.044500px;}
.y8a{bottom:859.425000px;}
.ybe{bottom:859.873500px;}
.yf8{bottom:861.217500px;}
.y57{bottom:862.545000px;}
.y228{bottom:863.011500px;}
.y1f7{bottom:863.908500px;}
.y24{bottom:870.957000px;}
.y188{bottom:872.874000px;}
.y89{bottom:878.254500px;}
.ybd{bottom:878.703000px;}
.yf7{bottom:880.047000px;}
.y227{bottom:880.272000px;}
.y56{bottom:881.374500px;}
.y187{bottom:891.703500px;}
.y88{bottom:897.084000px;}
.ybc{bottom:897.532500px;}
.yf6{bottom:898.876500px;}
.y55{bottom:900.204000px;}
.y23{bottom:909.543000px;}
.y186{bottom:910.533000px;}
.y250{bottom:914.791500px;}
.y226{bottom:914.793000px;}
.y87{bottom:915.913500px;}
.ybb{bottom:916.362000px;}
.yf5{bottom:917.706000px;}
.y54{bottom:919.033500px;}
.y22{bottom:925.681500px;}
.y185{bottom:929.362500px;}
.y225{bottom:932.052000px;}
.y86{bottom:934.743000px;}
.yba{bottom:935.191500px;}
.yf4{bottom:936.535500px;}
.y53{bottom:937.863000px;}
.y184{bottom:948.192000px;}
.y224{bottom:949.312500px;}
.y85{bottom:953.572500px;}
.yb9{bottom:954.021000px;}
.y52{bottom:956.692500px;}
.yf3{bottom:959.848500px;}
.y223{bottom:966.573000px;}
.y183{bottom:967.021500px;}
.y7{bottom:970.215000px;}
.y84{bottom:972.402000px;}
.yb8{bottom:972.849000px;}
.y51{bottom:975.522000px;}
.yf2{bottom:980.023500px;}
.y222{bottom:983.833500px;}
.y182{bottom:985.851000px;}
.y83{bottom:991.231500px;}
.yb7{bottom:991.678500px;}
.y50{bottom:994.351500px;}
.yf1{bottom:995.713500px;}
.y221{bottom:1001.094000px;}
.y181{bottom:1004.680500px;}
.y82{bottom:1010.061000px;}
.yb6{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y4f{bottom:1013.181000px;}
.y220{bottom:1018.354500px;}
.y180{bottom:1023.510000px;}
.y81{bottom:1028.890500px;}
.yb5{bottom:1029.337500px;}
.y4e{bottom:1032.010500px;}
.y21f{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y17f{bottom:1042.339500px;}
.yb4{bottom:1048.167000px;}
.y4d{bottom:1050.840000px;}
.y80{bottom:1052.202000px;}
.y21e{bottom:1052.875500px;}
.y17e{bottom:1061.169000px;}
.yb3{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4c{bottom:1069.669500px;}
.y21d{bottom:1070.134500px;}
.y17d{bottom:1084.482000px;}
.y7f{bottom:1085.826000px;}
.y21c{bottom:1087.395000px;}
.y4b{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y7e{bottom:1104.655500px;}
.y4a{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y49{bottom:1173.397500px;}
.h7{height:25.508090px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.ha{height:36.319550px;}
.hc{height:38.734848px;}
.hb{height:41.508281px;}
.h10{height:42.760020px;}
.h6{height:43.038432px;}
.h14{height:43.622227px;}
.h4{height:43.875290px;}
.hd{height:46.697011px;}
.h12{height:48.225586px;}
.h2{height:50.930649px;}
.he{height:51.885221px;}
.h11{height:53.691152px;}
.h5{height:77.469696px;}
.h3{height:79.438167px;}
.h15{height:418.860000px;}
.hf{height:424.369500px;}
.h13{height:440.904000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.503181px;}
.w6{width:622.776750px;}
.w4{width:631.596000px;}
.w5{width:656.947800px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x82{left:-80.475750px;}
.x3c{left:-77.169000px;}
.x5f{left:-65.044200px;}
.x85{left:-48.615750px;}
.x40{left:-45.309000px;}
.x62{left:-33.184200px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:57.742127px;}
.x43{left:84.841500px;}
.x41{left:85.890000px;}
.x83{left:115.095159px;}
.x3d{left:118.401000px;}
.x3b{left:130.659000px;}
.x81{left:135.069750px;}
.x42{left:143.094000px;}
.x44{left:146.022000px;}
.x3e{left:150.261594px;}
.x60{left:162.386394px;}
.x4{left:250.897500px;}
.x2a{left:255.480000px;}
.x18{left:276.556500px;}
.x7{left:282.786000px;}
.x19{left:291.501000px;}
.x1a{left:298.822500px;}
.x7b{left:301.678500px;}
.x65{left:306.148500px;}
.x5{left:309.042000px;}
.x2c{left:310.207500px;}
.x1b{left:313.767000px;}
.x7c{left:316.623000px;}
.x32{left:319.863000px;}
.x66{left:321.091500px;}
.x6{left:324.492000px;}
.x69{left:335.031000px;}
.x8b{left:337.660500px;}
.x6c{left:340.057500px;}
.x37{left:349.945500px;}
.x6d{left:352.236000px;}
.x7e{left:353.274000px;}
.x6f{left:356.511000px;}
.x20{left:358.341000px;}
.x2d{left:364.029000px;}
.x56{left:365.416500px;}
.x6e{left:366.732000px;}
.x70{left:371.455500px;}
.x21{left:373.285500px;}
.x2b{left:374.446500px;}
.x22{left:377.097000px;}
.x2e{left:378.973500px;}
.x57{left:380.359500px;}
.x4f{left:386.812500px;}
.x23{left:392.040000px;}
.x2f{left:399.582000px;}
.x36{left:402.037500px;}
.x10{left:406.617000px;}
.x14{left:412.627500px;}
.x11{left:414.088500px;}
.x5d{left:416.004000px;}
.x12{left:417.880500px;}
.x35{left:420.613500px;}
.x13{left:425.353500px;}
.x15{left:427.572000px;}
.x92{left:429.471000px;}
.x5e{left:430.948500px;}
.x16{left:434.895000px;}
.x79{left:442.108500px;}
.x1c{left:447.519000px;}
.x67{left:448.623000px;}
.x17{left:449.838000px;}
.x1d{left:462.463500px;}
.x68{left:463.567500px;}
.x1e{left:466.273500px;}
.x49{left:469.179000px;}
.x30{left:477.727500px;}
.x1f{left:481.218000px;}
.x4a{left:484.122000px;}
.x73{left:489.927000px;}
.x31{left:492.672000px;}
.x7f{left:500.734500px;}
.x24{left:502.330500px;}
.x74{left:504.871500px;}
.x80{left:515.677500px;}
.xc{left:521.166000px;}
.x50{left:523.474500px;}
.xd{left:528.637500px;}
.x8c{left:530.208000px;}
.xe{left:532.351500px;}
.x72{left:534.682500px;}
.x51{left:538.419000px;}
.xf{left:539.823000px;}
.x52{left:542.148000px;}
.x8d{left:545.152500px;}
.x4d{left:546.622500px;}
.x8e{left:548.962500px;}
.x25{left:550.569000px;}
.x38{left:555.502500px;}
.x53{left:557.091000px;}
.x4e{left:561.567000px;}
.x4b{left:563.449500px;}
.x45{left:570.570000px;}
.x87{left:572.475000px;}
.x4c{left:578.394000px;}
.x46{left:585.514500px;}
.x71{left:590.646000px;}
.x75{left:594.100500px;}
.x39{left:595.980000px;}
.x54{left:605.767500px;}
.x76{left:609.043500px;}
.x3a{left:610.924500px;}
.x77{left:616.665000px;}
.x84{left:618.013989px;}
.x55{left:620.712000px;}
.x3f{left:626.270712px;}
.x78{left:631.609500px;}
.x61{left:650.548770px;}
.x97{left:655.236000px;}
.x6a{left:660.613500px;}
.x86{left:664.909500px;}
.x9d{left:668.673000px;}
.xa0{left:671.065500px;}
.x6b{left:675.556500px;}
.x98{left:682.135500px;}
.x58{left:684.900000px;}
.x5c{left:688.962000px;}
.x9e{left:695.572500px;}
.xa1{left:697.963500px;}
.x59{left:699.844500px;}
.x5a{left:703.504500px;}
.x8{left:708.442500px;}
.x9{left:715.914000px;}
.x5b{left:718.449000px;}
.xa{left:719.713500px;}
.x88{left:722.610000px;}
.xa6{left:724.498500px;}
.xb{left:727.185000px;}
.x90{left:732.283500px;}
.xa4{left:735.807000px;}
.x33{left:737.265000px;}
.x99{left:741.931500px;}
.x8f{left:743.371500px;}
.x93{left:745.243500px;}
.x91{left:747.228000px;}
.x7d{left:751.329000px;}
.xa5{left:762.705000px;}
.x63{left:766.756500px;}
.x9a{left:768.831000px;}
.x94{left:772.143000px;}
.x47{left:773.311500px;}
.x64{left:781.701000px;}
.x9b{left:783.069000px;}
.x48{left:788.256000px;}
.x7a{left:790.675500px;}
.x8a{left:794.664000px;}
.xa2{left:797.044500px;}
.x26{left:799.341000px;}
.x89{left:806.682000px;}
.x96{left:809.059500px;}
.x9c{left:810.613500px;}
.x27{left:814.285500px;}
.x95{left:815.886000px;}
.x28{left:817.977000px;}
.xa3{left:823.942500px;}
.x29{left:832.920000px;}
.x34{left:835.329000px;}
.x9f{left:837.205500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.360000pt;}
.ls39{letter-spacing:-0.154976pt;}
.ls2b{letter-spacing:-0.144288pt;}
.ls4a{letter-spacing:-0.138944pt;}
.ls4d{letter-spacing:-0.133600pt;}
.ls24{letter-spacing:-0.122912pt;}
.ls2c{letter-spacing:-0.117568pt;}
.ls40{letter-spacing:-0.112224pt;}
.ls1f{letter-spacing:-0.106880pt;}
.ls20{letter-spacing:-0.101536pt;}
.ls43{letter-spacing:-0.096192pt;}
.ls44{letter-spacing:-0.090848pt;}
.ls21{letter-spacing:-0.085504pt;}
.ls1e{letter-spacing:-0.080864pt;}
.ls49{letter-spacing:-0.080160pt;}
.ls42{letter-spacing:-0.074816pt;}
.ls2d{letter-spacing:-0.069472pt;}
.ls3a{letter-spacing:-0.064128pt;}
.ls38{letter-spacing:-0.058784pt;}
.ls2e{letter-spacing:-0.053440pt;}
.ls4b{letter-spacing:-0.048096pt;}
.ls22{letter-spacing:-0.042752pt;}
.ls3c{letter-spacing:-0.037408pt;}
.ls3d{letter-spacing:-0.032064pt;}
.ls26{letter-spacing:-0.026720pt;}
.ls3e{letter-spacing:-0.024000pt;}
.ls27{letter-spacing:-0.021376pt;}
.ls29{letter-spacing:-0.019200pt;}
.ls48{letter-spacing:-0.016032pt;}
.ls3f{letter-spacing:-0.014400pt;}
.ls41{letter-spacing:-0.010688pt;}
.ls2a{letter-spacing:-0.009600pt;}
.ls23{letter-spacing:-0.005344pt;}
.ls3{letter-spacing:0.000000pt;}
.ls73{letter-spacing:0.000008pt;}
.ls6a{letter-spacing:0.000361pt;}
.ls6e{letter-spacing:0.000441pt;}
.ls5{letter-spacing:0.000540pt;}
.ls65{letter-spacing:0.000600pt;}
.ls67{letter-spacing:0.000711pt;}
.ls66{letter-spacing:0.000921pt;}
.ls71{letter-spacing:0.001408pt;}
.ls5b{letter-spacing:0.001688pt;}
.ls54{letter-spacing:0.002212pt;}
.ls51{letter-spacing:0.002385pt;}
.ls63{letter-spacing:0.002525pt;}
.ls64{letter-spacing:0.002643pt;}
.ls61{letter-spacing:0.002703pt;}
.ls5c{letter-spacing:0.002879pt;}
.ls76{letter-spacing:0.003405pt;}
.ls37{letter-spacing:0.003430pt;}
.ls5a{letter-spacing:0.004260pt;}
.ls5e{letter-spacing:0.004267pt;}
.ls68{letter-spacing:0.004437pt;}
.ls45{letter-spacing:0.004800pt;}
.ls11{letter-spacing:0.005344pt;}
.ls16{letter-spacing:0.009600pt;}
.lsc{letter-spacing:0.010688pt;}
.ls32{letter-spacing:0.014400pt;}
.ls1a{letter-spacing:0.016032pt;}
.ls13{letter-spacing:0.019200pt;}
.ls6{letter-spacing:0.021280pt;}
.lsa{letter-spacing:0.021376pt;}
.ls14{letter-spacing:0.024000pt;}
.lsb{letter-spacing:0.026720pt;}
.ls31{letter-spacing:0.028800pt;}
.lsf{letter-spacing:0.032064pt;}
.ls33{letter-spacing:0.033600pt;}
.ls10{letter-spacing:0.037408pt;}
.ls8{letter-spacing:0.038304pt;}
.ls17{letter-spacing:0.038400pt;}
.lsd{letter-spacing:0.042752pt;}
.ls34{letter-spacing:0.043200pt;}
.ls12{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.048096pt;}
.ls15{letter-spacing:0.052800pt;}
.ls1b{letter-spacing:0.053440pt;}
.ls30{letter-spacing:0.058784pt;}
.ls19{letter-spacing:0.064128pt;}
.ls2f{letter-spacing:0.074816pt;}
.ls3b{letter-spacing:0.101536pt;}
.ls18{letter-spacing:0.106880pt;}
.ls9{letter-spacing:0.148960pt;}
.ls7{letter-spacing:0.161728pt;}
.ls4c{letter-spacing:1.042080pt;}
.ls4{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls6f{letter-spacing:3.118133pt;}
.ls28{letter-spacing:5.199712pt;}
.ls25{letter-spacing:5.840992pt;}
.ls1{letter-spacing:9.298933pt;}
.ls2{letter-spacing:10.626533pt;}
.ls1d{letter-spacing:11.322253pt;}
.ls75{letter-spacing:11.701306pt;}
.ls46{letter-spacing:11.740033pt;}
.ls1c{letter-spacing:11.794754pt;}
.ls72{letter-spacing:11.800946pt;}
.ls4e{letter-spacing:11.821671pt;}
.ls5d{letter-spacing:11.852632pt;}
.ls70{letter-spacing:11.925159pt;}
.ls53{letter-spacing:11.934996pt;}
.ls50{letter-spacing:11.954133pt;}
.ls57{letter-spacing:11.959467pt;}
.ls6b{letter-spacing:11.972438pt;}
.ls62{letter-spacing:11.988631pt;}
.ls47{letter-spacing:11.994648pt;}
.ls6c{letter-spacing:12.033916pt;}
.ls5f{letter-spacing:12.034026pt;}
.ls36{letter-spacing:12.045200pt;}
.ls35{letter-spacing:12.102643pt;}
.ls74{letter-spacing:12.106816pt;}
.ls77{letter-spacing:12.117748pt;}
.ls4f{letter-spacing:12.128555pt;}
.ls6d{letter-spacing:12.166381pt;}
.ls56{letter-spacing:12.169208pt;}
.ls60{letter-spacing:12.186297pt;}
.ls59{letter-spacing:12.677480pt;}
.ls69{letter-spacing:13.676173pt;}
.ls55{letter-spacing:14.282708pt;}
.ls52{letter-spacing:14.397741pt;}
.ls58{letter-spacing:14.523231pt;}
.ws0{word-spacing:-81.026410pt;}
.ws65{word-spacing:-48.000000pt;}
.ws116{word-spacing:-13.349312pt;}
.ws117{word-spacing:-13.327936pt;}
.wsb7{word-spacing:-13.295872pt;}
.ws5b{word-spacing:-13.283467pt;}
.ws63{word-spacing:-13.237088pt;}
.ws64{word-spacing:-12.000000pt;}
.ws11a{word-spacing:-11.955200pt;}
.ws62{word-spacing:-10.801728pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.wsfc{word-spacing:-3.719371pt;}
.wsfb{word-spacing:-3.666237pt;}
.ws168{word-spacing:-3.294300pt;}
.wse2{word-spacing:-3.083488pt;}
.wse1{word-spacing:-3.035392pt;}
.ws15a{word-spacing:-2.869229pt;}
.ws7d{word-spacing:-2.821632pt;}
.ws141{word-spacing:-2.816288pt;}
.ws7c{word-spacing:-2.800256pt;}
.ws142{word-spacing:-2.794912pt;}
.ws3c{word-spacing:-2.762961pt;}
.ws11e{word-spacing:-2.709827pt;}
.ws10{word-spacing:-2.677965pt;}
.ws178{word-spacing:-2.630144pt;}
.wsb8{word-spacing:-2.486682pt;}
.wsde{word-spacing:-2.419200pt;}
.ws50{word-spacing:-2.391024pt;}
.wsdf{word-spacing:-2.390400pt;}
.wsdd{word-spacing:-2.385600pt;}
.ws12e{word-spacing:-2.180352pt;}
.ws12f{word-spacing:-2.100192pt;}
.ws2d{word-spacing:-2.072221pt;}
.ws30{word-spacing:-1.859685pt;}
.ws12b{word-spacing:-1.816960pt;}
.ws15b{word-spacing:-1.806551pt;}
.ws12c{word-spacing:-1.774208pt;}
.ws18a{word-spacing:-1.721549pt;}
.ws2f{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.ws1ad{word-spacing:-1.673728pt;}
.wsb4{word-spacing:-1.647150pt;}
.ws59{word-spacing:-1.594016pt;}
.wsfd{word-spacing:-1.540882pt;}
.ws128{word-spacing:-1.507008pt;}
.ws133{word-spacing:-1.473600pt;}
.ws134{word-spacing:-1.459200pt;}
.ws15d{word-spacing:-1.434614pt;}
.wse6{word-spacing:-1.432192pt;}
.ws132{word-spacing:-1.420800pt;}
.wse5{word-spacing:-1.405472pt;}
.ws2a{word-spacing:-1.381481pt;}
.ws11d{word-spacing:-1.328347pt;}
.ws1ac{word-spacing:-1.291162pt;}
.wsd2{word-spacing:-1.250496pt;}
.wsb5{word-spacing:-1.238851pt;}
.ws167{word-spacing:-1.222079pt;}
.ws129{word-spacing:-1.181024pt;}
.ws2{word-spacing:-1.175671pt;}
.ws10e{word-spacing:-1.115811pt;}
.ws196{word-spacing:-1.099878pt;}
.ws41{word-spacing:-1.062677pt;}
.ws53{word-spacing:-1.009543pt;}
.ws189{word-spacing:-0.956416pt;}
.ws37{word-spacing:-0.956410pt;}
.ws7e{word-spacing:-0.929856pt;}
.wsf0{word-spacing:-0.919168pt;}
.ws182{word-spacing:-0.908595pt;}
.ws14c{word-spacing:-0.908480pt;}
.ws38{word-spacing:-0.903276pt;}
.ws7f{word-spacing:-0.903136pt;}
.wsd3{word-spacing:-0.876416pt;}
.ws61{word-spacing:-0.850142pt;}
.ws14d{word-spacing:-0.844352pt;}
.ws31{word-spacing:-0.797008pt;}
.wsef{word-spacing:-0.790912pt;}
.ws52{word-spacing:-0.743874pt;}
.wsf2{word-spacing:-0.690740pt;}
.ws162{word-spacing:-0.637606pt;}
.ws67{word-spacing:-0.621670pt;}
.wsae{word-spacing:-0.584473pt;}
.ws10d{word-spacing:-0.531339pt;}
.ws130{word-spacing:-0.529056pt;}
.ws8c{word-spacing:-0.528000pt;}
.ws138{word-spacing:-0.518400pt;}
.ws139{word-spacing:-0.513600pt;}
.ws8b{word-spacing:-0.460800pt;}
.ws198{word-spacing:-0.382566pt;}
.wsaf{word-spacing:-0.371937pt;}
.ws4a{word-spacing:-0.318803pt;}
.ws16{word-spacing:-0.286925pt;}
.ws20{word-spacing:-0.265669pt;}
.ws147{word-spacing:-0.251168pt;}
.ws118{word-spacing:-0.239104pt;}
.ws104{word-spacing:-0.220214pt;}
.ws95{word-spacing:-0.219104pt;}
.ws1f{word-spacing:-0.212535pt;}
.ws36{word-spacing:-0.205175pt;}
.ws161{word-spacing:-0.204769pt;}
.ws66{word-spacing:-0.191283pt;}
.ws21{word-spacing:-0.159402pt;}
.ws13{word-spacing:-0.143462pt;}
.ws15e{word-spacing:-0.127318pt;}
.ws71{word-spacing:-0.119168pt;}
.ws152{word-spacing:-0.117568pt;}
.ws49{word-spacing:-0.106268pt;}
.ws14{word-spacing:-0.095642pt;}
.ws5a{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.ws1b6{word-spacing:-0.024183pt;}
.ws1a5{word-spacing:-0.006886pt;}
.wsa6{word-spacing:-0.004538pt;}
.ws1ae{word-spacing:-0.004437pt;}
.ws1af{word-spacing:-0.003806pt;}
.ws45{word-spacing:-0.002245pt;}
.wsa5{word-spacing:-0.001514pt;}
.ws160{word-spacing:-0.001348pt;}
.ws183{word-spacing:-0.001126pt;}
.ws2b{word-spacing:-0.000364pt;}
.ws1{word-spacing:0.000000pt;}
.ws1b5{word-spacing:0.002140pt;}
.ws1a3{word-spacing:0.003319pt;}
.wsb6{word-spacing:0.020078pt;}
.wsd4{word-spacing:0.021376pt;}
.wsa3{word-spacing:0.026720pt;}
.ws7b{word-spacing:0.037408pt;}
.wsb9{word-spacing:0.047821pt;}
.ws26{word-spacing:0.053134pt;}
.ws11f{word-spacing:0.069472pt;}
.ws8a{word-spacing:0.074816pt;}
.ws120{word-spacing:0.080160pt;}
.ws18f{word-spacing:0.089556pt;}
.wsba{word-spacing:0.095642pt;}
.ws91{word-spacing:0.105600pt;}
.ws23{word-spacing:0.106268pt;}
.wsf1{word-spacing:0.112224pt;}
.wse0{word-spacing:0.134400pt;}
.wsc3{word-spacing:0.138944pt;}
.ws1a{word-spacing:0.143462pt;}
.ws13d{word-spacing:0.144000pt;}
.ws58{word-spacing:0.159402pt;}
.wsc2{word-spacing:0.165664pt;}
.ws94{word-spacing:0.168000pt;}
.wsc4{word-spacing:0.181696pt;}
.ws180{word-spacing:0.182058pt;}
.ws6{word-spacing:0.185968pt;}
.ws11{word-spacing:0.191283pt;}
.ws2e{word-spacing:0.212535pt;}
.ws96{word-spacing:0.224448pt;}
.ws17b{word-spacing:0.234271pt;}
.ws17c{word-spacing:0.239104pt;}
.ws8{word-spacing:0.260355pt;}
.ws28{word-spacing:0.265669pt;}
.ws17d{word-spacing:0.286925pt;}
.wscb{word-spacing:0.299264pt;}
.ws24{word-spacing:0.318803pt;}
.wsc5{word-spacing:0.325984pt;}
.ws1ab{word-spacing:0.334746pt;}
.wsca{word-spacing:0.358048pt;}
.ws14a{word-spacing:0.368736pt;}
.ws177{word-spacing:0.371937pt;}
.ws148{word-spacing:0.379424pt;}
.ws19e{word-spacing:0.382566pt;}
.ws14b{word-spacing:0.416832pt;}
.ws51{word-spacing:0.425071pt;}
.ws8f{word-spacing:0.427200pt;}
.ws12{word-spacing:0.430387pt;}
.ws40{word-spacing:0.478205pt;}
.ws18d{word-spacing:0.526029pt;}
.ws6b{word-spacing:0.531339pt;}
.wsa4{word-spacing:0.584473pt;}
.ws1b2{word-spacing:0.610428pt;}
.ws1b1{word-spacing:0.621670pt;}
.ws39{word-spacing:0.637606pt;}
.ws150{word-spacing:0.689376pt;}
.ws29{word-spacing:0.690740pt;}
.ws18e{word-spacing:0.717312pt;}
.wsc7{word-spacing:0.721440pt;}
.ws11c{word-spacing:0.743874pt;}
.wscc{word-spacing:0.758848pt;}
.wsd9{word-spacing:0.768000pt;}
.wsc9{word-spacing:0.774880pt;}
.ws8e{word-spacing:0.777600pt;}
.ws8d{word-spacing:0.782400pt;}
.ws90{word-spacing:0.792000pt;}
.ws16d{word-spacing:0.797008pt;}
.ws14f{word-spacing:0.801600pt;}
.ws76{word-spacing:0.806944pt;}
.ws22{word-spacing:0.850142pt;}
.ws1b4{word-spacing:0.860774pt;}
.ws54{word-spacing:0.903276pt;}
.ws1a8{word-spacing:0.908595pt;}
.ws33{word-spacing:0.956410pt;}
.ws17{word-spacing:0.956416pt;}
.ws9c{word-spacing:0.977952pt;}
.ws151{word-spacing:0.993984pt;}
.ws149{word-spacing:1.026048pt;}
.ws158{word-spacing:1.036736pt;}
.ws156{word-spacing:1.042080pt;}
.ws35{word-spacing:1.062677pt;}
.ws9a{word-spacing:1.063456pt;}
.wsd7{word-spacing:1.089600pt;}
.wsd6{word-spacing:1.094400pt;}
.wsd8{word-spacing:1.104000pt;}
.ws9b{word-spacing:1.111552pt;}
.ws107{word-spacing:1.115811pt;}
.ws1a1{word-spacing:1.145830pt;}
.ws1a7{word-spacing:1.147699pt;}
.ws157{word-spacing:1.154304pt;}
.wsa7{word-spacing:1.168945pt;}
.ws14e{word-spacing:1.175680pt;}
.wsc8{word-spacing:1.197056pt;}
.ws25{word-spacing:1.222079pt;}
.ws155{word-spacing:1.309280pt;}
.wscd{word-spacing:1.325312pt;}
.ws19b{word-spacing:1.338982pt;}
.ws153{word-spacing:1.368064pt;}
.ws60{word-spacing:1.381481pt;}
.ws1b3{word-spacing:1.386803pt;}
.ws137{word-spacing:1.411200pt;}
.ws136{word-spacing:1.435200pt;}
.ws154{word-spacing:1.437536pt;}
.ws135{word-spacing:1.440000pt;}
.wsa9{word-spacing:1.487748pt;}
.wsad{word-spacing:1.540882pt;}
.wsac{word-spacing:1.594016pt;}
.wsf6{word-spacing:1.647150pt;}
.ws75{word-spacing:1.656640pt;}
.wse7{word-spacing:1.688704pt;}
.ws169{word-spacing:1.700284pt;}
.ws19d{word-spacing:1.721549pt;}
.ws4f{word-spacing:1.753418pt;}
.ws127{word-spacing:1.763520pt;}
.ws7{word-spacing:1.785293pt;}
.wsfe{word-spacing:1.806551pt;}
.ws185{word-spacing:1.817190pt;}
.ws105{word-spacing:1.859685pt;}
.ws43{word-spacing:1.912819pt;}
.ws19{word-spacing:1.912832pt;}
.wsbb{word-spacing:1.965953pt;}
.ws85{word-spacing:1.998656pt;}
.ws18b{word-spacing:2.008474pt;}
.wsab{word-spacing:2.019087pt;}
.wsa2{word-spacing:2.020032pt;}
.ws144{word-spacing:2.046752pt;}
.ws119{word-spacing:2.056294pt;}
.ws32{word-spacing:2.072221pt;}
.ws145{word-spacing:2.078816pt;}
.ws143{word-spacing:2.094848pt;}
.ws86{word-spacing:2.100192pt;}
.ws146{word-spacing:2.121568pt;}
.ws163{word-spacing:2.125355pt;}
.ws42{word-spacing:2.178489pt;}
.ws1e{word-spacing:2.231622pt;}
.ws27{word-spacing:2.284756pt;}
.wsea{word-spacing:2.292576pt;}
.ws84{word-spacing:2.297920pt;}
.ws6c{word-spacing:2.337890pt;}
.ws13f{word-spacing:2.346016pt;}
.ws6f{word-spacing:2.358530pt;}
.ws6d{word-spacing:2.361658pt;}
.ws6e{word-spacing:2.369852pt;}
.ws3b{word-spacing:2.391024pt;}
.ws13e{word-spacing:2.415488pt;}
.wseb{word-spacing:2.426176pt;}
.ws6a{word-spacing:2.444158pt;}
.ws140{word-spacing:2.458240pt;}
.ws15c{word-spacing:2.497292pt;}
.ws175{word-spacing:2.550426pt;}
.wse4{word-spacing:2.565120pt;}
.ws18c{word-spacing:2.582323pt;}
.ws78{word-spacing:2.618560pt;}
.ws1b7{word-spacing:2.630144pt;}
.ws88{word-spacing:2.661312pt;}
.ws77{word-spacing:2.682688pt;}
.ws10f{word-spacing:2.686969pt;}
.ws110{word-spacing:2.709827pt;}
.ws1a9{word-spacing:2.732301pt;}
.ws15f{word-spacing:2.762961pt;}
.ws19a{word-spacing:2.773606pt;}
.ws192{word-spacing:2.800351pt;}
.wsaa{word-spacing:2.816095pt;}
.ws184{word-spacing:2.821427pt;}
.ws99{word-spacing:2.853696pt;}
.ws1a6{word-spacing:2.862379pt;}
.ws187{word-spacing:2.866654pt;}
.ws19f{word-spacing:2.866859pt;}
.ws188{word-spacing:2.868813pt;}
.ws1a4{word-spacing:2.868949pt;}
.ws181{word-spacing:2.869248pt;}
.ws1aa{word-spacing:2.869274pt;}
.ws197{word-spacing:2.869794pt;}
.ws190{word-spacing:2.870366pt;}
.ws1a0{word-spacing:2.917069pt;}
.wsce{word-spacing:2.917824pt;}
.ws12d{word-spacing:2.960576pt;}
.ws5f{word-spacing:2.975497pt;}
.ws17e{word-spacing:3.012710pt;}
.wsd5{word-spacing:3.014400pt;}
.ws5c{word-spacing:3.028630pt;}
.ws98{word-spacing:3.078144pt;}
.wsa8{word-spacing:3.081764pt;}
.ws1b0{word-spacing:3.086683pt;}
.ws17f{word-spacing:3.108352pt;}
.ws106{word-spacing:3.134898pt;}
.ws1d{word-spacing:3.188032pt;}
.ws186{word-spacing:3.203994pt;}
.ws112{word-spacing:3.239328pt;}
.ws114{word-spacing:3.241166pt;}
.ws97{word-spacing:3.249152pt;}
.ws113{word-spacing:3.256910pt;}
.wsa1{word-spacing:3.275872pt;}
.ws170{word-spacing:3.294300pt;}
.ws34{word-spacing:3.347434pt;}
.ws69{word-spacing:3.453701pt;}
.ws1a2{word-spacing:3.490918pt;}
.ws5e{word-spacing:3.506835pt;}
.ws191{word-spacing:3.538739pt;}
.wsb0{word-spacing:3.559969pt;}
.wse9{word-spacing:3.564448pt;}
.wsee{word-spacing:3.607200pt;}
.ws44{word-spacing:3.613103pt;}
.wsda{word-spacing:3.628800pt;}
.wsdc{word-spacing:3.638400pt;}
.wsa0{word-spacing:3.644608pt;}
.ws4e{word-spacing:3.666237pt;}
.wsed{word-spacing:3.698048pt;}
.wsdb{word-spacing:3.705600pt;}
.ws16f{word-spacing:3.719371pt;}
.ws3d{word-spacing:3.771143pt;}
.ws3e{word-spacing:3.772505pt;}
.ws166{word-spacing:3.825638pt;}
.ws1b9{word-spacing:3.825664pt;}
.ws16e{word-spacing:3.931906pt;}
.ws92{word-spacing:3.960000pt;}
.wse8{word-spacing:3.965248pt;}
.ws93{word-spacing:3.974400pt;}
.wsbc{word-spacing:3.985040pt;}
.ws3f{word-spacing:4.038174pt;}
.ws3a{word-spacing:4.091308pt;}
.ws172{word-spacing:4.144442pt;}
.ws1b{word-spacing:4.160410pt;}
.wsf3{word-spacing:4.197575pt;}
.ws123{word-spacing:4.211072pt;}
.ws159{word-spacing:4.221760pt;}
.ws79{word-spacing:4.227104pt;}
.ws7a{word-spacing:4.243136pt;}
.wsb2{word-spacing:4.250709pt;}
.ws122{word-spacing:4.291232pt;}
.ws121{word-spacing:4.323296pt;}
.ws11b{word-spacing:4.356977pt;}
.ws5d{word-spacing:4.410111pt;}
.ws68{word-spacing:4.516379pt;}
.wsc6{word-spacing:4.537056pt;}
.ws115{word-spacing:4.622646pt;}
.ws13c{word-spacing:4.627200pt;}
.ws13b{word-spacing:4.632000pt;}
.ws13a{word-spacing:4.641600pt;}
.ws111{word-spacing:4.675780pt;}
.wsc0{word-spacing:4.728914pt;}
.ws179{word-spacing:4.734259pt;}
.wsbf{word-spacing:4.782048pt;}
.ws174{word-spacing:4.835182pt;}
.ws87{word-spacing:4.841664pt;}
.ws165{word-spacing:4.888316pt;}
.ws194{word-spacing:4.973363pt;}
.ws176{word-spacing:4.994583pt;}
.ws102{word-spacing:5.047717pt;}
.ws101{word-spacing:5.100851pt;}
.ws16c{word-spacing:5.153985pt;}
.ws9f{word-spacing:5.183680pt;}
.ws199{word-spacing:5.260288pt;}
.wsb3{word-spacing:5.366521pt;}
.wse{word-spacing:5.393072pt;}
.ws171{word-spacing:5.419654pt;}
.wsf{word-spacing:5.467459pt;}
.ws46{word-spacing:5.472788pt;}
.wse3{word-spacing:5.498976pt;}
.ws1c{word-spacing:5.499392pt;}
.ws47{word-spacing:5.525922pt;}
.ws55{word-spacing:5.579056pt;}
.ws17a{word-spacing:5.595034pt;}
.ws56{word-spacing:5.632190pt;}
.ws108{word-spacing:5.738458pt;}
.ws15{word-spacing:5.738496pt;}
.wsf8{word-spacing:5.791591pt;}
.ws82{word-spacing:5.808928pt;}
.ws1b8{word-spacing:5.834138pt;}
.wsf5{word-spacing:5.844725pt;}
.ws81{word-spacing:5.862368pt;}
.ws80{word-spacing:5.867712pt;}
.wsb1{word-spacing:5.950993pt;}
.ws10c{word-spacing:6.110395pt;}
.ws83{word-spacing:6.124224pt;}
.wsf4{word-spacing:6.163529pt;}
.ws9e{word-spacing:6.183008pt;}
.ws131{word-spacing:6.193696pt;}
.ws9d{word-spacing:6.215072pt;}
.ws70{word-spacing:6.216662pt;}
.wsec{word-spacing:6.236448pt;}
.wsc1{word-spacing:6.269796pt;}
.ws109{word-spacing:6.429198pt;}
.wsd1{word-spacing:6.434176pt;}
.ws10a{word-spacing:6.482332pt;}
.wsd0{word-spacing:6.514336pt;}
.ws4d{word-spacing:6.588599pt;}
.ws103{word-spacing:6.641733pt;}
.ws10b{word-spacing:6.694867pt;}
.ws16a{word-spacing:6.854269pt;}
.ws164{word-spacing:6.960537pt;}
.wsf7{word-spacing:7.013670pt;}
.ws57{word-spacing:7.066804pt;}
.ws48{word-spacing:7.226206pt;}
.ws19c{word-spacing:7.268762pt;}
.wsbd{word-spacing:7.332474pt;}
.ws173{word-spacing:7.491875pt;}
.ws74{word-spacing:7.540384pt;}
.ws16b{word-spacing:7.545009pt;}
.ws73{word-spacing:7.545728pt;}
.ws4b{word-spacing:7.598143pt;}
.wsc{word-spacing:7.699075pt;}
.ws12a{word-spacing:7.732768pt;}
.wscf{word-spacing:7.748800pt;}
.wsfa{word-spacing:8.182615pt;}
.wsf9{word-spacing:8.288883pt;}
.ws89{word-spacing:9.651264pt;}
.ws72{word-spacing:10.329312pt;}
.ws100{word-spacing:10.414238pt;}
.wsff{word-spacing:10.467372pt;}
.ws125{word-spacing:10.666624pt;}
.ws124{word-spacing:10.976576pt;}
.ws126{word-spacing:11.040704pt;}
.ws4{word-spacing:13.763148pt;}
.wsb{word-spacing:15.732893pt;}
.wsbe{word-spacing:17.906113pt;}
.wsa{word-spacing:18.038896pt;}
.ws9{word-spacing:18.055335pt;}
.ws193{word-spacing:18.199383pt;}
.ws4c{word-spacing:19.287594pt;}
.wsd{word-spacing:24.399002pt;}
.ws195{word-spacing:43.038720pt;}
._22{margin-left:-21.375898pt;}
._0{margin-left:-6.854269pt;}
._3{margin-left:-5.467459pt;}
._c{margin-left:-4.500381pt;}
._4{margin-left:-3.421811pt;}
._9{margin-left:-2.337896pt;}
._1{margin-left:-1.175671pt;}
._2{width:0.969929pt;}
._7{width:2.045648pt;}
._21{width:5.451571pt;}
._5{width:11.530135pt;}
._12{width:12.493185pt;}
._a{width:13.968899pt;}
._b{width:15.679899pt;}
._e{width:16.785101pt;}
._15{width:18.065515pt;}
._f{width:19.035479pt;}
._11{width:20.323840pt;}
._16{width:21.791612pt;}
._6{width:23.063232pt;}
._1e{width:24.114317pt;}
._18{width:26.095455pt;}
._10{width:27.496960pt;}
._8{width:29.011008pt;}
._1b{width:30.392572pt;}
._d{width:32.279040pt;}
._19{width:33.847670pt;}
._1c{width:35.652825pt;}
._17{width:36.755593pt;}
._1d{width:38.316244pt;}
._20{width:39.584731pt;}
._24{width:54.993920pt;}
._23{width:78.904320pt;}
._13{width:613.253706pt;}
._1a{width:1813.328384pt;}
._1f{width:2156.343733pt;}
._14{width:2177.597067pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fsb{font-size:38.755733pt;}
.fs3{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:104.147056pt;}
.y1d3{bottom:-329.667019pt;}
.y1d2{bottom:-312.627675pt;}
.y1d1{bottom:-295.508171pt;}
.y140{bottom:-281.454160pt;}
.y1d0{bottom:-278.388667pt;}
.y13f{bottom:-264.334656pt;}
.y1cf{bottom:-261.349323pt;}
.y13e{bottom:-247.215152pt;}
.y1ce{bottom:-244.229819pt;}
.y13d{bottom:-230.175808pt;}
.ye1{bottom:-229.790341pt;}
.y1cd{bottom:-227.190475pt;}
.y13c{bottom:-213.056304pt;}
.ye0{bottom:-212.670837pt;}
.y1cc{bottom:-210.070971pt;}
.y13b{bottom:-195.936800pt;}
.ydf{bottom:-195.631493pt;}
.y1cb{bottom:-192.951467pt;}
.y13a{bottom:-178.897456pt;}
.yde{bottom:-178.511989pt;}
.y1ca{bottom:-175.912123pt;}
.y139{bottom:-161.777952pt;}
.ydd{bottom:-161.392485pt;}
.y1c9{bottom:-158.792619pt;}
.y138{bottom:-144.738608pt;}
.ydc{bottom:-144.353141pt;}
.y1c8{bottom:-141.673115pt;}
.y137{bottom:-127.619104pt;}
.ydb{bottom:-127.233637pt;}
.y1c7{bottom:-124.633771pt;}
.y136{bottom:-110.499600pt;}
.yda{bottom:-110.114133pt;}
.y1c6{bottom:-107.514267pt;}
.y135{bottom:-77.859067pt;}
.yd9{bottom:-77.473867pt;}
.y1c5{bottom:-74.794933pt;}
.y134{bottom:-62.339467pt;}
.yd8{bottom:-61.954267pt;}
.y1c4{bottom:-59.354533pt;}
.y133{bottom:-46.979467pt;}
.yd7{bottom:-46.594267pt;}
.y1c3{bottom:-43.994533pt;}
.y132{bottom:-31.619467pt;}
.yd6{bottom:-31.234267pt;}
.y1c2{bottom:-28.634533pt;}
.y131{bottom:-16.259467pt;}
.yd5{bottom:-15.874267pt;}
.y1c1{bottom:-13.194133pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.044747pt;}
.y130{bottom:3.665936pt;}
.yd4{bottom:4.052389pt;}
.y1c0{bottom:6.650205pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:15.478130pt;}
.y48{bottom:28.346667pt;}
.y1f6{bottom:79.298667pt;}
.y120{bottom:81.689333pt;}
.yf0{bottom:83.228000pt;}
.y156{bottom:86.429333pt;}
.y1ed{bottom:88.929333pt;}
.y1b0{bottom:89.261333pt;}
.y21{bottom:91.398667pt;}
.y24f{bottom:92.050667pt;}
.y204{bottom:94.044000pt;}
.yb2{bottom:94.441333pt;}
.y1f5{bottom:96.036000pt;}
.y11f{bottom:98.426667pt;}
.yef{bottom:99.965333pt;}
.y21b{bottom:100.101333pt;}
.y155{bottom:103.166667pt;}
.y1ec{bottom:105.666667pt;}
.y1af{bottom:105.998667pt;}
.y20{bottom:107.298667pt;}
.y24e{bottom:107.393333pt;}
.y47{bottom:110.022667pt;}
.y203{bottom:110.780000pt;}
.yb1{bottom:111.178667pt;}
.y17c{bottom:111.577333pt;}
.y7d{bottom:112.358667pt;}
.y1f4{bottom:112.773333pt;}
.y11e{bottom:115.164000pt;}
.y21a{bottom:115.442667pt;}
.yee{bottom:116.702667pt;}
.y154{bottom:119.904000pt;}
.y1eb{bottom:122.402667pt;}
.y1ae{bottom:122.736000pt;}
.y1f{bottom:123.200000pt;}
.y46{bottom:126.760000pt;}
.y202{bottom:127.517333pt;}
.yb0{bottom:127.916000pt;}
.y17b{bottom:128.314667pt;}
.y7c{bottom:129.096000pt;}
.y1f3{bottom:129.510667pt;}
.y219{bottom:130.785333pt;}
.yed{bottom:133.440000pt;}
.y11d{bottom:135.886667pt;}
.y153{bottom:136.641333pt;}
.y24d{bottom:138.078667pt;}
.y1e{bottom:139.100000pt;}
.y1ea{bottom:139.140000pt;}
.y1ad{bottom:139.473333pt;}
.y45{bottom:143.497333pt;}
.y201{bottom:144.254667pt;}
.yaf{bottom:144.653333pt;}
.y17a{bottom:145.052000pt;}
.y7b{bottom:145.833333pt;}
.y218{bottom:146.128000pt;}
.y1f2{bottom:146.248000pt;}
.y11c{bottom:149.834667pt;}
.yec{bottom:150.177333pt;}
.y152{bottom:153.378667pt;}
.y24c{bottom:153.421333pt;}
.y1d{bottom:155.000000pt;}
.y1e9{bottom:155.877333pt;}
.y1ac{bottom:156.210667pt;}
.y44{bottom:160.234667pt;}
.y200{bottom:160.992000pt;}
.yae{bottom:161.390667pt;}
.y217{bottom:161.470667pt;}
.y179{bottom:161.789333pt;}
.y7a{bottom:162.570667pt;}
.y1f1{bottom:162.985333pt;}
.yeb{bottom:166.914667pt;}
.y24b{bottom:168.762667pt;}
.y151{bottom:170.116000pt;}
.y1c{bottom:170.901333pt;}
.y1e8{bottom:172.614667pt;}
.y1ab{bottom:172.948000pt;}
.y216{bottom:176.813333pt;}
.y43{bottom:176.972000pt;}
.y1ff{bottom:177.729333pt;}
.yad{bottom:178.128000pt;}
.y178{bottom:178.526667pt;}
.y79{bottom:179.308000pt;}
.y11b{bottom:179.722667pt;}
.yea{bottom:183.652000pt;}
.y24a{bottom:184.105333pt;}
.y1b{bottom:186.801333pt;}
.y150{bottom:186.853333pt;}
.y1e7{bottom:189.352000pt;}
.y1aa{bottom:189.685333pt;}
.y215{bottom:192.156000pt;}
.y42{bottom:193.709333pt;}
.y1fe{bottom:194.466667pt;}
.yac{bottom:194.865333pt;}
.y177{bottom:195.264000pt;}
.y78{bottom:196.045333pt;}
.y11a{bottom:196.460000pt;}
.y249{bottom:199.448000pt;}
.ye9{bottom:200.389333pt;}
.y1f0{bottom:200.444000pt;}
.y1a{bottom:202.701333pt;}
.y14f{bottom:203.590667pt;}
.y1e6{bottom:206.089333pt;}
.y1a9{bottom:206.422667pt;}
.y214{bottom:207.498667pt;}
.y41{bottom:210.446667pt;}
.y1fd{bottom:211.204000pt;}
.yab{bottom:211.602667pt;}
.y176{bottom:212.001333pt;}
.y77{bottom:212.782667pt;}
.y119{bottom:213.197333pt;}
.y248{bottom:214.790667pt;}
.ye8{bottom:217.126667pt;}
.y1ef{bottom:218.377333pt;}
.y14e{bottom:220.328000pt;}
.y1e5{bottom:222.826667pt;}
.y213{bottom:222.841333pt;}
.y1a8{bottom:223.160000pt;}
.y40{bottom:227.184000pt;}
.y1fc{bottom:227.941333pt;}
.yaa{bottom:228.340000pt;}
.y175{bottom:228.738667pt;}
.y76{bottom:229.520000pt;}
.y118{bottom:229.934667pt;}
.y247{bottom:230.133333pt;}
.y1ee{bottom:232.325333pt;}
.ye7{bottom:233.864000pt;}
.y14d{bottom:237.065333pt;}
.y212{bottom:238.182667pt;}
.y1e4{bottom:239.564000pt;}
.y1a7{bottom:239.897333pt;}
.y3f{bottom:243.921333pt;}
.y1fb{bottom:244.678667pt;}
.ya9{bottom:245.077333pt;}
.y174{bottom:245.476000pt;}
.y75{bottom:246.257333pt;}
.y117{bottom:246.672000pt;}
.y211{bottom:253.525333pt;}
.y14c{bottom:253.802667pt;}
.y1e3{bottom:256.301333pt;}
.y1a6{bottom:256.634667pt;}
.y3e{bottom:260.658667pt;}
.y246{bottom:260.818667pt;}
.ye6{bottom:261.042667pt;}
.y1fa{bottom:261.416000pt;}
.ya8{bottom:261.814667pt;}
.y173{bottom:262.213333pt;}
.y74{bottom:262.994667pt;}
.y116{bottom:263.408000pt;}
.y210{bottom:268.868000pt;}
.y14b{bottom:270.540000pt;}
.y1e2{bottom:273.038667pt;}
.y19{bottom:273.154667pt;}
.y1a5{bottom:273.372000pt;}
.y245{bottom:276.161333pt;}
.y3d{bottom:277.396000pt;}
.ye5{bottom:278.138667pt;}
.y1f9{bottom:278.153333pt;}
.ya7{bottom:278.552000pt;}
.y172{bottom:278.950667pt;}
.y73{bottom:279.732000pt;}
.y115{bottom:280.145333pt;}
.y20f{bottom:284.210667pt;}
.y14a{bottom:287.277333pt;}
.y18{bottom:289.054667pt;}
.y1e1{bottom:289.776000pt;}
.y1a4{bottom:290.108000pt;}
.y244{bottom:291.502667pt;}
.y3c{bottom:294.133333pt;}
.ye4{bottom:295.234667pt;}
.ya6{bottom:295.289333pt;}
.y171{bottom:295.688000pt;}
.y72{bottom:296.469333pt;}
.y114{bottom:296.882667pt;}
.y1f8{bottom:298.876000pt;}
.y20e{bottom:299.553333pt;}
.y149{bottom:304.014667pt;}
.y17{bottom:304.954667pt;}
.y1e0{bottom:306.513333pt;}
.y1a3{bottom:306.845333pt;}
.y3b{bottom:310.870667pt;}
.ya5{bottom:312.026667pt;}
.ye3{bottom:312.330667pt;}
.y170{bottom:312.425333pt;}
.y71{bottom:313.205333pt;}
.y113{bottom:313.620000pt;}
.y20d{bottom:314.896000pt;}
.y148{bottom:320.752000pt;}
.y16{bottom:320.856000pt;}
.y243{bottom:322.188000pt;}
.y1df{bottom:323.250667pt;}
.y1a2{bottom:323.582667pt;}
.y3a{bottom:327.608000pt;}
.ya4{bottom:328.764000pt;}
.y16f{bottom:329.162667pt;}
.ye2{bottom:329.426667pt;}
.y70{bottom:329.942667pt;}
.y20c{bottom:330.238667pt;}
.y112{bottom:330.357333pt;}
.y147{bottom:337.489333pt;}
.y242{bottom:337.530667pt;}
.y1de{bottom:339.988000pt;}
.y1a1{bottom:340.320000pt;}
.y39{bottom:344.345333pt;}
.ya3{bottom:345.501333pt;}
.y20b{bottom:345.581333pt;}
.y16e{bottom:345.900000pt;}
.y6f{bottom:346.680000pt;}
.y111{bottom:347.094667pt;}
.yc0{bottom:349.364000pt;}
.y241{bottom:352.873333pt;}
.y146{bottom:354.226667pt;}
.y15{bottom:354.688000pt;}
.y1dd{bottom:356.725333pt;}
.y1a0{bottom:357.057333pt;}
.y20a{bottom:360.924000pt;}
.y38{bottom:361.082667pt;}
.ya2{bottom:362.238667pt;}
.y16d{bottom:362.637333pt;}
.y6e{bottom:363.417333pt;}
.y110{bottom:363.832000pt;}
.y240{bottom:368.216000pt;}
.y14{bottom:370.589333pt;}
.y145{bottom:370.964000pt;}
.y1dc{bottom:373.462667pt;}
.y19f{bottom:377.780000pt;}
.y37{bottom:377.820000pt;}
.ya1{bottom:378.976000pt;}
.y16c{bottom:379.374667pt;}
.y6d{bottom:380.154667pt;}
.y209{bottom:380.250667pt;}
.y10f{bottom:380.569333pt;}
.y23f{bottom:383.558667pt;}
.y13{bottom:386.489333pt;}
.y1bf{bottom:388.890493pt;}
.y1db{bottom:390.200000pt;}
.yd3{bottom:392.611957pt;}
.y36{bottom:394.556000pt;}
.ya0{bottom:395.713333pt;}
.y16b{bottom:396.112000pt;}
.y6c{bottom:396.892000pt;}
.y10e{bottom:397.306667pt;}
.y23e{bottom:398.901333pt;}
.y144{bottom:400.800000pt;}
.y1be{bottom:406.009997pt;}
.y1da{bottom:406.937333pt;}
.y12f{bottom:407.426512pt;}
.y19e{bottom:407.668000pt;}
.yd2{bottom:409.731461pt;}
.y208{bottom:410.138667pt;}
.y35{bottom:411.293333pt;}
.y9f{bottom:412.450667pt;}
.y16a{bottom:412.848000pt;}
.y6b{bottom:413.629333pt;}
.y10d{bottom:414.044000pt;}
.y23d{bottom:414.244000pt;}
.y143{bottom:417.896000pt;}
.y12{bottom:418.330667pt;}
.y1bd{bottom:423.129501pt;}
.y1d9{bottom:423.674667pt;}
.y19d{bottom:424.405333pt;}
.y12e{bottom:424.546016pt;}
.yd1{bottom:426.850965pt;}
.y9e{bottom:429.188000pt;}
.y169{bottom:429.585333pt;}
.y6a{bottom:430.366667pt;}
.y10c{bottom:430.781333pt;}
.y34{bottom:432.016000pt;}
.y207{bottom:433.730667pt;}
.y142{bottom:434.992000pt;}
.y1bc{bottom:440.168845pt;}
.y19c{bottom:441.142667pt;}
.y12d{bottom:441.665520pt;}
.yd0{bottom:443.891645pt;}
.y23c{bottom:444.928000pt;}
.y9d{bottom:445.925333pt;}
.y168{bottom:446.322667pt;}
.y69{bottom:447.104000pt;}
.y10b{bottom:447.518667pt;}
.y206{bottom:449.352000pt;}
.y11{bottom:450.170667pt;}
.y141{bottom:452.088000pt;}
.y1d8{bottom:453.510667pt;}
.y1bb{bottom:457.288349pt;}
.y19b{bottom:457.880000pt;}
.y12c{bottom:458.704864pt;}
.y23b{bottom:460.270667pt;}
.ycf{bottom:461.011149pt;}
.y9c{bottom:462.662667pt;}
.y167{bottom:463.060000pt;}
.y68{bottom:463.841333pt;}
.y10a{bottom:464.256000pt;}
.y205{bottom:464.973333pt;}
.y10{bottom:466.070667pt;}
.y1d7{bottom:470.606667pt;}
.y121{bottom:472.025333pt;}
.y1ba{bottom:474.407853pt;}
.y19a{bottom:474.617333pt;}
.y23a{bottom:475.613333pt;}
.y12b{bottom:475.824368pt;}
.yce{bottom:478.050493pt;}
.y9b{bottom:479.398667pt;}
.y166{bottom:479.797333pt;}
.y67{bottom:480.578667pt;}
.y109{bottom:480.993333pt;}
.yf{bottom:481.972000pt;}
.y1d6{bottom:487.702667pt;}
.y239{bottom:490.956000pt;}
.y199{bottom:491.354667pt;}
.y1b9{bottom:491.447197pt;}
.y12a{bottom:492.943872pt;}
.ycd{bottom:495.169997pt;}
.y9a{bottom:496.136000pt;}
.y165{bottom:496.534667pt;}
.y66{bottom:497.316000pt;}
.y108{bottom:497.730667pt;}
.ye{bottom:497.872000pt;}
.y33{bottom:498.816000pt;}
.y1d5{bottom:504.798667pt;}
.y238{bottom:506.298667pt;}
.y198{bottom:508.092000pt;}
.y1b8{bottom:508.566701pt;}
.y129{bottom:509.983216pt;}
.ycc{bottom:512.289501pt;}
.y99{bottom:512.873333pt;}
.y164{bottom:513.272000pt;}
.yd{bottom:513.772000pt;}
.y65{bottom:514.053333pt;}
.y107{bottom:514.468000pt;}
.y32{bottom:516.112000pt;}
.y237{bottom:521.641333pt;}
.y1d4{bottom:521.894667pt;}
.y197{bottom:524.829333pt;}
.y1b7{bottom:525.606045pt;}
.y128{bottom:527.102720pt;}
.ycb{bottom:529.328845pt;}
.y98{bottom:529.610667pt;}
.yc{bottom:529.673333pt;}
.y163{bottom:530.009333pt;}
.y64{bottom:530.790667pt;}
.y106{bottom:531.205333pt;}
.y236{bottom:536.984000pt;}
.y196{bottom:541.566667pt;}
.y1b1{bottom:541.830667pt;}
.y1b6{bottom:542.725549pt;}
.y127{bottom:544.142064pt;}
.yb{bottom:545.573333pt;}
.y97{bottom:546.348000pt;}
.yca{bottom:546.448349pt;}
.y162{bottom:546.746667pt;}
.y63{bottom:547.528000pt;}
.y105{bottom:547.942667pt;}
.y31{bottom:549.346667pt;}
.y235{bottom:552.325333pt;}
.y195{bottom:558.304000pt;}
.y1b5{bottom:559.845053pt;}
.y126{bottom:561.261568pt;}
.y96{bottom:563.085333pt;}
.y161{bottom:563.484000pt;}
.yc9{bottom:563.567853pt;}
.y62{bottom:564.265333pt;}
.y104{bottom:564.680000pt;}
.y8{bottom:565.458715pt;}
.y30{bottom:566.642667pt;}
.y234{bottom:567.668000pt;}
.y194{bottom:575.041333pt;}
.y1b4{bottom:576.885733pt;}
.y95{bottom:579.822667pt;}
.y160{bottom:580.221333pt;}
.yc8{bottom:580.607197pt;}
.y61{bottom:581.002667pt;}
.y103{bottom:581.417333pt;}
.y125{bottom:582.300896pt;}
.y233{bottom:583.010667pt;}
.y2f{bottom:583.937333pt;}
.y193{bottom:591.778667pt;}
.y94{bottom:596.560000pt;}
.y15f{bottom:596.958667pt;}
.yc7{bottom:597.726701pt;}
.y60{bottom:597.740000pt;}
.y102{bottom:598.154667pt;}
.y232{bottom:598.353333pt;}
.y124{bottom:599.420400pt;}
.y2e{bottom:601.232000pt;}
.y192{bottom:608.516000pt;}
.y93{bottom:613.297333pt;}
.y15e{bottom:613.696000pt;}
.yc6{bottom:614.766045pt;}
.y101{bottom:614.892000pt;}
.y5f{bottom:618.462667pt;}
.y2d{bottom:618.528000pt;}
.y191{bottom:625.253333pt;}
.y1b3{bottom:625.525853pt;}
.y231{bottom:629.038667pt;}
.y92{bottom:630.034667pt;}
.y15d{bottom:630.433333pt;}
.y100{bottom:631.629333pt;}
.yc5{bottom:631.885549pt;}
.y1b2{bottom:634.085733pt;}
.y2c{bottom:635.822667pt;}
.y5e{bottom:636.394667pt;}
.y190{bottom:641.990667pt;}
.y230{bottom:644.381333pt;}
.y91{bottom:646.772000pt;}
.y15c{bottom:647.170667pt;}
.y123{bottom:648.060520pt;}
.yff{bottom:648.366667pt;}
.yc4{bottom:649.005053pt;}
.y2b{bottom:653.117333pt;}
.y122{bottom:656.620400pt;}
.y18f{bottom:658.726667pt;}
.y22f{bottom:659.724000pt;}
.y90{bottom:663.509333pt;}
.y15b{bottom:663.908000pt;}
.yfe{bottom:665.104000pt;}
.yc3{bottom:666.045733pt;}
.y5d{bottom:666.282667pt;}
.y2a{bottom:670.413333pt;}
.y22e{bottom:675.066667pt;}
.y18e{bottom:675.464000pt;}
.y8f{bottom:680.246667pt;}
.y15a{bottom:680.645333pt;}
.yfd{bottom:681.841333pt;}
.y5c{bottom:683.020000pt;}
.y29{bottom:687.708000pt;}
.y22d{bottom:690.408000pt;}
.y18d{bottom:692.201333pt;}
.y8e{bottom:696.984000pt;}
.y159{bottom:697.382667pt;}
.yfc{bottom:698.578667pt;}
.y5b{bottom:699.757333pt;}
.y28{bottom:705.004000pt;}
.y22c{bottom:705.750667pt;}
.y18c{bottom:708.938667pt;}
.y8d{bottom:713.721333pt;}
.y158{bottom:714.120000pt;}
.yc2{bottom:714.685853pt;}
.yfb{bottom:715.314667pt;}
.y5a{bottom:716.494667pt;}
.y22b{bottom:721.093333pt;}
.y27{bottom:722.298667pt;}
.yc1{bottom:723.245733pt;}
.y18b{bottom:725.676000pt;}
.y8c{bottom:730.458667pt;}
.y157{bottom:730.857333pt;}
.yfa{bottom:732.052000pt;}
.y59{bottom:733.232000pt;}
.y22a{bottom:736.436000pt;}
.y26{bottom:739.593333pt;}
.y18a{bottom:742.413333pt;}
.y8b{bottom:747.196000pt;}
.ybf{bottom:747.594667pt;}
.yf9{bottom:748.789333pt;}
.y58{bottom:749.969333pt;}
.y229{bottom:751.778667pt;}
.y25{bottom:756.889333pt;}
.y189{bottom:759.150667pt;}
.y8a{bottom:763.933333pt;}
.ybe{bottom:764.332000pt;}
.yf8{bottom:765.526667pt;}
.y57{bottom:766.706667pt;}
.y228{bottom:767.121333pt;}
.y1f7{bottom:767.918667pt;}
.y24{bottom:774.184000pt;}
.y188{bottom:775.888000pt;}
.y89{bottom:780.670667pt;}
.ybd{bottom:781.069333pt;}
.yf7{bottom:782.264000pt;}
.y227{bottom:782.464000pt;}
.y56{bottom:783.444000pt;}
.y187{bottom:792.625333pt;}
.y88{bottom:797.408000pt;}
.ybc{bottom:797.806667pt;}
.yf6{bottom:799.001333pt;}
.y55{bottom:800.181333pt;}
.y23{bottom:808.482667pt;}
.y186{bottom:809.362667pt;}
.y250{bottom:813.148000pt;}
.y226{bottom:813.149333pt;}
.y87{bottom:814.145333pt;}
.ybb{bottom:814.544000pt;}
.yf5{bottom:815.738667pt;}
.y54{bottom:816.918667pt;}
.y22{bottom:822.828000pt;}
.y185{bottom:826.100000pt;}
.y225{bottom:828.490667pt;}
.y86{bottom:830.882667pt;}
.yba{bottom:831.281333pt;}
.yf4{bottom:832.476000pt;}
.y53{bottom:833.656000pt;}
.y184{bottom:842.837333pt;}
.y224{bottom:843.833333pt;}
.y85{bottom:847.620000pt;}
.yb9{bottom:848.018667pt;}
.y52{bottom:850.393333pt;}
.yf3{bottom:853.198667pt;}
.y223{bottom:859.176000pt;}
.y183{bottom:859.574667pt;}
.y7{bottom:862.413333pt;}
.y84{bottom:864.357333pt;}
.yb8{bottom:864.754667pt;}
.y51{bottom:867.130667pt;}
.yf2{bottom:871.132000pt;}
.y222{bottom:874.518667pt;}
.y182{bottom:876.312000pt;}
.y83{bottom:881.094667pt;}
.yb7{bottom:881.492000pt;}
.y50{bottom:883.868000pt;}
.yf1{bottom:885.078667pt;}
.y221{bottom:889.861333pt;}
.y181{bottom:893.049333pt;}
.y82{bottom:897.832000pt;}
.yb6{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y4f{bottom:900.605333pt;}
.y220{bottom:905.204000pt;}
.y180{bottom:909.786667pt;}
.y81{bottom:914.569333pt;}
.yb5{bottom:914.966667pt;}
.y4e{bottom:917.342667pt;}
.y21f{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y17f{bottom:926.524000pt;}
.yb4{bottom:931.704000pt;}
.y4d{bottom:934.080000pt;}
.y80{bottom:935.290667pt;}
.y21e{bottom:935.889333pt;}
.y17e{bottom:943.261333pt;}
.yb3{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4c{bottom:950.817333pt;}
.y21d{bottom:951.230667pt;}
.y17d{bottom:963.984000pt;}
.y7f{bottom:965.178667pt;}
.y21c{bottom:966.573333pt;}
.y4b{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y7e{bottom:981.916000pt;}
.y4a{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y49{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.ha{height:32.284045pt;}
.hc{height:34.430976pt;}
.hb{height:36.896250pt;}
.h10{height:38.008906pt;}
.h6{height:38.256384pt;}
.h14{height:38.775312pt;}
.h4{height:39.000258pt;}
.hd{height:41.508454pt;}
.h12{height:42.867188pt;}
.h2{height:45.271688pt;}
.he{height:46.120196pt;}
.h11{height:47.725469pt;}
.h5{height:68.861952pt;}
.h3{height:70.611704pt;}
.h15{height:372.320000pt;}
.hf{height:377.217333pt;}
.h13{height:391.914667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.447272pt;}
.w6{width:553.579333pt;}
.w4{width:561.418667pt;}
.w5{width:583.953600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x82{left:-71.534000pt;}
.x3c{left:-68.594667pt;}
.x5f{left:-57.817067pt;}
.x85{left:-43.214000pt;}
.x40{left:-40.274667pt;}
.x62{left:-29.497067pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:51.326335pt;}
.x43{left:75.414667pt;}
.x41{left:76.346667pt;}
.x83{left:102.306808pt;}
.x3d{left:105.245333pt;}
.x3b{left:116.141333pt;}
.x81{left:120.062000pt;}
.x42{left:127.194667pt;}
.x44{left:129.797333pt;}
.x3e{left:133.565861pt;}
.x60{left:144.343461pt;}
.x4{left:223.020000pt;}
.x2a{left:227.093333pt;}
.x18{left:245.828000pt;}
.x7{left:251.365333pt;}
.x19{left:259.112000pt;}
.x1a{left:265.620000pt;}
.x7b{left:268.158667pt;}
.x65{left:272.132000pt;}
.x5{left:274.704000pt;}
.x2c{left:275.740000pt;}
.x1b{left:278.904000pt;}
.x7c{left:281.442667pt;}
.x32{left:284.322667pt;}
.x66{left:285.414667pt;}
.x6{left:288.437333pt;}
.x69{left:297.805333pt;}
.x8b{left:300.142667pt;}
.x6c{left:302.273333pt;}
.x37{left:311.062667pt;}
.x6d{left:313.098667pt;}
.x7e{left:314.021333pt;}
.x6f{left:316.898667pt;}
.x20{left:318.525333pt;}
.x2d{left:323.581333pt;}
.x56{left:324.814667pt;}
.x6e{left:325.984000pt;}
.x70{left:330.182667pt;}
.x21{left:331.809333pt;}
.x2b{left:332.841333pt;}
.x22{left:335.197333pt;}
.x2e{left:336.865333pt;}
.x57{left:338.097333pt;}
.x4f{left:343.833333pt;}
.x23{left:348.480000pt;}
.x2f{left:355.184000pt;}
.x36{left:357.366667pt;}
.x10{left:361.437333pt;}
.x14{left:366.780000pt;}
.x11{left:368.078667pt;}
.x5d{left:369.781333pt;}
.x12{left:371.449333pt;}
.x35{left:373.878667pt;}
.x13{left:378.092000pt;}
.x15{left:380.064000pt;}
.x92{left:381.752000pt;}
.x5e{left:383.065333pt;}
.x16{left:386.573333pt;}
.x79{left:392.985333pt;}
.x1c{left:397.794667pt;}
.x67{left:398.776000pt;}
.x17{left:399.856000pt;}
.x1d{left:411.078667pt;}
.x68{left:412.060000pt;}
.x1e{left:414.465333pt;}
.x49{left:417.048000pt;}
.x30{left:424.646667pt;}
.x1f{left:427.749333pt;}
.x4a{left:430.330667pt;}
.x73{left:435.490667pt;}
.x31{left:437.930667pt;}
.x7f{left:445.097333pt;}
.x24{left:446.516000pt;}
.x74{left:448.774667pt;}
.x80{left:458.380000pt;}
.xc{left:463.258667pt;}
.x50{left:465.310667pt;}
.xd{left:469.900000pt;}
.x8c{left:471.296000pt;}
.xe{left:473.201333pt;}
.x72{left:475.273333pt;}
.x51{left:478.594667pt;}
.xf{left:479.842667pt;}
.x52{left:481.909333pt;}
.x8d{left:484.580000pt;}
.x4d{left:485.886667pt;}
.x8e{left:487.966667pt;}
.x25{left:489.394667pt;}
.x38{left:493.780000pt;}
.x53{left:495.192000pt;}
.x4e{left:499.170667pt;}
.x4b{left:500.844000pt;}
.x45{left:507.173333pt;}
.x87{left:508.866667pt;}
.x4c{left:514.128000pt;}
.x46{left:520.457333pt;}
.x71{left:525.018667pt;}
.x75{left:528.089333pt;}
.x39{left:529.760000pt;}
.x54{left:538.460000pt;}
.x76{left:541.372000pt;}
.x3a{left:543.044000pt;}
.x77{left:548.146667pt;}
.x84{left:549.345768pt;}
.x55{left:551.744000pt;}
.x3f{left:556.685077pt;}
.x78{left:561.430667pt;}
.x61{left:578.265573pt;}
.x97{left:582.432000pt;}
.x6a{left:587.212000pt;}
.x86{left:591.030667pt;}
.x9d{left:594.376000pt;}
.xa0{left:596.502667pt;}
.x6b{left:600.494667pt;}
.x98{left:606.342667pt;}
.x58{left:608.800000pt;}
.x5c{left:612.410667pt;}
.x9e{left:618.286667pt;}
.xa1{left:620.412000pt;}
.x59{left:622.084000pt;}
.x5a{left:625.337333pt;}
.x8{left:629.726667pt;}
.x9{left:636.368000pt;}
.x5b{left:638.621333pt;}
.xa{left:639.745333pt;}
.x88{left:642.320000pt;}
.xa6{left:643.998667pt;}
.xb{left:646.386667pt;}
.x90{left:650.918667pt;}
.xa4{left:654.050667pt;}
.x33{left:655.346667pt;}
.x99{left:659.494667pt;}
.x8f{left:660.774667pt;}
.x93{left:662.438667pt;}
.x91{left:664.202667pt;}
.x7d{left:667.848000pt;}
.xa5{left:677.960000pt;}
.x63{left:681.561333pt;}
.x9a{left:683.405333pt;}
.x94{left:686.349333pt;}
.x47{left:687.388000pt;}
.x64{left:694.845333pt;}
.x9b{left:696.061333pt;}
.x48{left:700.672000pt;}
.x7a{left:702.822667pt;}
.x8a{left:706.368000pt;}
.xa2{left:708.484000pt;}
.x26{left:710.525333pt;}
.x89{left:717.050667pt;}
.x96{left:719.164000pt;}
.x9c{left:720.545333pt;}
.x27{left:723.809333pt;}
.x95{left:725.232000pt;}
.x28{left:727.090667pt;}
.xa3{left:732.393333pt;}
.x29{left:740.373333pt;}
.x34{left:742.514667pt;}
.x9f{left:744.182667pt;}
}




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