
    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_417695605222a64af8032e25.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_d56bb5495855d2167069f79f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_f00c12d762dfed4796d83287.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_0f903a40a1a90e43c5c4e3ec.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_043446931f3ca2955da5481c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9febc9228c48b9aafbeff856.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f9d88235e33e8c68d6f30d72.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_4fcf2fa278509d3ac46cf652.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.451000;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_5cf1bb74e5e9d1f8648b05f3.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_9e9aafa8347523ec2d0212df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.431000;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_fc39408f8a8c3de905726798.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_00821db35903a1dc97b7788a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.665000;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_30d54817e93207abfdd76ba3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.685000;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_9e202b50f16f2f51b3574abd.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_13dfd4d255ea7bde6b09191c.woff2')format("woff");}.fff{font-family:fff;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0d82526a3ed038ef89988676.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.684000;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_c0ab1c28274056c54e727a6e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921000;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_ffe08c7e00407aebd25d9cb6.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_7304ab1d6d045090aafcf410.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_edf1da9a9d1309f6fdc01e9e.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_3a58b844f7ead716c93f4a0c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.717000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4eb1c1758a97e1351ad2a29c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_a3fe06cdfee2937331e41c57.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7ce80ecc2c83e863f6642f72.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a4f27c1fcab9ad3e4fd3a045.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_ce1fcada3cde3e328e39fc96.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_cf124bf731a8203255666535.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_bdf01782411073959df13ebe.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_483fd0021c038aebb15b95e2.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.820000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_764b8dac37cb21bdace17285.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_1a3d85a989b6c0dc4e419faa.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.717000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_4651d794b8372a0ac8e83a35.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_92c8f3b603a1a992e90a6a1e.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_7f23040dd72fd77f154471b1.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_769d5e72433b28f9a6b4c828.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.683000;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;}
.m3{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);}
.m1a{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);}
.m16{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);}
.ma{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);}
.m5{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);}
.m10{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.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);}
.m19{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);}
.m13{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);}
.m9{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);}
.m17{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);}
.md{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);}
.m14{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);}
.m11{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);}
.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);}
.mc{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);}
.mb{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);}
.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);}
.mf{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);}
.m18{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);}
.m12{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);}
.m7{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);}
.me{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);}
.m2{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);}
.m1{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);}
.m8{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);}
.v1a{vertical-align:-49.836000px;}
.v16{vertical-align:-27.024000px;}
.v9{vertical-align:-22.854000px;}
.v23{vertical-align:-16.776000px;}
.v14{vertical-align:-15.066000px;}
.v2{vertical-align:-12.912000px;}
.vf{vertical-align:-10.398000px;}
.v6{vertical-align:-8.970000px;}
.v3{vertical-align:-5.976000px;}
.v21{vertical-align:-4.896000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:2.988000px;}
.v20{vertical-align:4.068000px;}
.v1{vertical-align:6.456000px;}
.v1b{vertical-align:8.370000px;}
.v5{vertical-align:9.468000px;}
.v8{vertical-align:14.778000px;}
.vb{vertical-align:16.182000px;}
.v22{vertical-align:17.556000px;}
.v10{vertical-align:18.960000px;}
.v7{vertical-align:21.690000px;}
.v4{vertical-align:22.854000px;}
.va{vertical-align:27.024000px;}
.v18{vertical-align:31.842000px;}
.ve{vertical-align:34.464000px;}
.v1f{vertical-align:39.936000px;}
.vc{vertical-align:43.206000px;}
.vd{vertical-align:44.280000px;}
.v17{vertical-align:58.206000px;}
.v12{vertical-align:68.034000px;}
.v19{vertical-align:71.922000px;}
.v1c{vertical-align:79.356000px;}
.v13{vertical-align:89.178000px;}
.v15{vertical-align:103.104000px;}
.v1d{vertical-align:139.506000px;}
.v1e{vertical-align:143.466000px;}
.lsd{letter-spacing:0.000000px;}
.lsc3{letter-spacing:0.000334px;}
.ls11{letter-spacing:0.000611px;}
.ls3a{letter-spacing:0.000780px;}
.lsa3{letter-spacing:0.000843px;}
.ls8a{letter-spacing:0.001044px;}
.lsb1{letter-spacing:0.001050px;}
.ls2e{letter-spacing:0.001590px;}
.ls4a{letter-spacing:0.001593px;}
.ls4e{letter-spacing:0.001597px;}
.ls17{letter-spacing:0.002137px;}
.ls97{letter-spacing:0.002147px;}
.lsbf{letter-spacing:0.002250px;}
.lsbd{letter-spacing:0.002481px;}
.lsdc{letter-spacing:0.002613px;}
.ls8e{letter-spacing:0.002640px;}
.ls61{letter-spacing:0.002682px;}
.lsb5{letter-spacing:0.002696px;}
.ls74{letter-spacing:0.002698px;}
.ls5d{letter-spacing:0.002700px;}
.ls2d{letter-spacing:0.003239px;}
.ls82{letter-spacing:0.003630px;}
.ls70{letter-spacing:0.003683px;}
.lsd3{letter-spacing:0.003750px;}
.ls76{letter-spacing:0.004332px;}
.ls85{letter-spacing:0.004338px;}
.ls27{letter-spacing:0.004878px;}
.ls1{letter-spacing:0.005017px;}
.ls2{letter-spacing:0.005124px;}
.ls43{letter-spacing:0.005148px;}
.lsc0{letter-spacing:0.005357px;}
.lsb9{letter-spacing:0.005668px;}
.lsc8{letter-spacing:0.005781px;}
.ls5{letter-spacing:0.005856px;}
.lsde{letter-spacing:0.007044px;}
.ls9b{letter-spacing:0.008084px;}
.ls53{letter-spacing:0.008335px;}
.ls45{letter-spacing:0.008502px;}
.lsaf{letter-spacing:0.008628px;}
.lse4{letter-spacing:0.010101px;}
.ls7d{letter-spacing:0.011240px;}
.ls77{letter-spacing:0.011366px;}
.lse6{letter-spacing:0.011790px;}
.ls64{letter-spacing:0.011905px;}
.ls48{letter-spacing:0.014084px;}
.ls13{letter-spacing:0.014136px;}
.ls3{letter-spacing:0.014452px;}
.ls1e{letter-spacing:0.014628px;}
.lsc7{letter-spacing:0.015681px;}
.ls49{letter-spacing:0.015839px;}
.ls32{letter-spacing:0.016063px;}
.lsdf{letter-spacing:0.016223px;}
.ls88{letter-spacing:0.016829px;}
.lsd5{letter-spacing:0.017051px;}
.ls59{letter-spacing:0.017146px;}
.lse5{letter-spacing:0.017285px;}
.ls6f{letter-spacing:0.017905px;}
.ls6a{letter-spacing:0.024408px;}
.lsd1{letter-spacing:0.026478px;}
.ls33{letter-spacing:0.028730px;}
.lsa1{letter-spacing:0.030711px;}
.ls5b{letter-spacing:0.035273px;}
.lsa0{letter-spacing:0.261818px;}
.lsa{letter-spacing:0.268992px;}
.ls2b{letter-spacing:0.327273px;}
.ls96{letter-spacing:1.291156px;}
.ls8{letter-spacing:1.506355px;}
.lsb{letter-spacing:1.520291px;}
.ls6{letter-spacing:1.535856px;}
.ls9{letter-spacing:1.537060px;}
.ls5a{letter-spacing:1.767274px;}
.lsa2{letter-spacing:1.796917px;}
.ls81{letter-spacing:1.799882px;}
.ls9c{letter-spacing:1.802609px;}
.ls68{letter-spacing:1.803170px;}
.ls9f{letter-spacing:1.815432px;}
.ls24{letter-spacing:1.817712px;}
.ls9d{letter-spacing:1.819576px;}
.ls26{letter-spacing:1.820137px;}
.ls7f{letter-spacing:1.823712px;}
.lsd6{letter-spacing:1.830215px;}
.ls56{letter-spacing:1.832729px;}
.ls83{letter-spacing:1.832928px;}
.ls5c{letter-spacing:2.290911px;}
.ls60{letter-spacing:2.330601px;}
.lsd9{letter-spacing:2.343209px;}
.ls3b{letter-spacing:2.356366px;}
.ls28{letter-spacing:2.487275px;}
.lsa8{letter-spacing:2.984343px;}
.ls31{letter-spacing:2.984915px;}
.lsd7{letter-spacing:2.985072px;}
.lse7{letter-spacing:2.985113px;}
.ls75{letter-spacing:2.985890px;}
.ls8f{letter-spacing:2.986031px;}
.ls40{letter-spacing:2.986059px;}
.ls14{letter-spacing:2.986362px;}
.ls4{letter-spacing:2.988557px;}
.lscc{letter-spacing:2.988710px;}
.ls1f{letter-spacing:2.989739px;}
.lsa9{letter-spacing:2.990343px;}
.ls35{letter-spacing:2.990915px;}
.ls62{letter-spacing:2.991072px;}
.ls46{letter-spacing:2.991113px;}
.lscf{letter-spacing:2.994710px;}
.ls38{letter-spacing:2.995739px;}
.lsdb{letter-spacing:3.000075px;}
.lsd8{letter-spacing:3.338185px;}
.ls7b{letter-spacing:3.665458px;}
.ls15{letter-spacing:4.252362px;}
.ls98{letter-spacing:4.259615px;}
.lsa5{letter-spacing:4.265615px;}
.ls42{letter-spacing:4.394022px;}
.ls44{letter-spacing:4.400022px;}
.ls7{letter-spacing:4.500557px;}
.ls2c{letter-spacing:4.897739px;}
.lsba{letter-spacing:4.903739px;}
.lsae{letter-spacing:5.105459px;}
.ls52{letter-spacing:5.220499px;}
.ls30{letter-spacing:5.295141px;}
.ls3c{letter-spacing:5.310633px;}
.lse2{letter-spacing:5.311591px;}
.ls3f{letter-spacing:5.317591px;}
.lse0{letter-spacing:5.330070px;}
.lsc{letter-spacing:5.478557px;}
.lsdd{letter-spacing:5.976532px;}
.ls8b{letter-spacing:5.976557px;}
.ls80{letter-spacing:6.715739px;}
.ls25{letter-spacing:6.721739px;}
.ls89{letter-spacing:6.930557px;}
.ls94{letter-spacing:7.069097px;}
.lsaa{letter-spacing:7.168296px;}
.ls71{letter-spacing:8.340557px;}
.lsb8{letter-spacing:10.906350px;}
.lsb3{letter-spacing:10.912350px;}
.ls50{letter-spacing:10.930918px;}
.ls10{letter-spacing:13.270183px;}
.ls7a{letter-spacing:13.892915px;}
.ls1d{letter-spacing:13.898915px;}
.ls1b{letter-spacing:14.530921px;}
.ls69{letter-spacing:14.596376px;}
.ls8d{letter-spacing:14.782200px;}
.ls92{letter-spacing:14.788200px;}
.lsc6{letter-spacing:15.924326px;}
.lsc2{letter-spacing:16.272710px;}
.ls66{letter-spacing:16.363650px;}
.lsf{letter-spacing:16.617617px;}
.ls4f{letter-spacing:17.528915px;}
.ls6c{letter-spacing:17.529072px;}
.ls47{letter-spacing:17.533739px;}
.ls4b{letter-spacing:17.534915px;}
.ls23{letter-spacing:17.539739px;}
.ls37{letter-spacing:18.130924px;}
.ls3e{letter-spacing:18.179412px;}
.lsa4{letter-spacing:18.180843px;}
.ls3d{letter-spacing:18.182706px;}
.lse1{letter-spacing:18.185412px;}
.ls19{letter-spacing:18.196379px;}
.lsb4{letter-spacing:18.209778px;}
.ls12{letter-spacing:19.588362px;}
.lsc5{letter-spacing:19.941274px;}
.ls57{letter-spacing:20.029108px;}
.ls4d{letter-spacing:20.348700px;}
.ls87{letter-spacing:20.520557px;}
.ls39{letter-spacing:20.552744px;}
.ls63{letter-spacing:20.659301px;}
.ls5f{letter-spacing:21.164915px;}
.ls18{letter-spacing:21.169739px;}
.ls1c{letter-spacing:21.170915px;}
.ls51{letter-spacing:21.172059px;}
.ls65{letter-spacing:21.175739px;}
.lsda{letter-spacing:21.180075px;}
.lse{letter-spacing:21.280114px;}
.ls95{letter-spacing:21.318926px;}
.ls58{letter-spacing:21.403654px;}
.ls16{letter-spacing:21.419468px;}
.lsd0{letter-spacing:21.469109px;}
.ls4c{letter-spacing:21.719412px;}
.ls20{letter-spacing:21.796382px;}
.ls21{letter-spacing:21.861836px;}
.lsd4{letter-spacing:21.927291px;}
.ls9a{letter-spacing:22.123655px;}
.lsc4{letter-spacing:22.915739px;}
.ls7e{letter-spacing:23.077739px;}
.ls22{letter-spacing:23.083739px;}
.ls1a{letter-spacing:23.301838px;}
.ls78{letter-spacing:24.800915px;}
.ls34{letter-spacing:24.805739px;}
.ls55{letter-spacing:24.806915px;}
.ls54{letter-spacing:24.808059px;}
.ls5e{letter-spacing:24.810371px;}
.lsd2{letter-spacing:24.811739px;}
.ls67{letter-spacing:24.901739px;}
.ls86{letter-spacing:25.116557px;}
.ls73{letter-spacing:25.772915px;}
.ls36{letter-spacing:26.407739px;}
.ls79{letter-spacing:26.967295px;}
.ls84{letter-spacing:28.531739px;}
.ls93{letter-spacing:28.865479px;}
.lse3{letter-spacing:30.501844px;}
.ls7c{letter-spacing:33.512755px;}
.ls6d{letter-spacing:35.439072px;}
.ls2f{letter-spacing:35.869121px;}
.lsb2{letter-spacing:47.037113px;}
.lsb7{letter-spacing:52.429135px;}
.ls6b{letter-spacing:53.619072px;}
.lsb6{letter-spacing:55.388915px;}
.ls6e{letter-spacing:55.567301px;}
.lsb0{letter-spacing:56.814593px;}
.ls8c{letter-spacing:56.985739px;}
.lsa7{letter-spacing:66.281412px;}
.lsa6{letter-spacing:66.416113px;}
.ls2a{letter-spacing:66.422113px;}
.ls99{letter-spacing:66.455644px;}
.ls91{letter-spacing:66.461644px;}
.lsac{letter-spacing:87.806113px;}
.ls29{letter-spacing:87.812113px;}
.ls72{letter-spacing:96.639739px;}
.lscb{letter-spacing:98.548362px;}
.ls90{letter-spacing:104.872059px;}
.lsab{letter-spacing:107.660113px;}
.lsca{letter-spacing:108.160362px;}
.ls41{letter-spacing:141.774664px;}
.ls9e{letter-spacing:141.840118px;}
.lsad{letter-spacing:148.967914px;}
.lscd{letter-spacing:174.741737px;}
.lsce{letter-spacing:175.485737px;}
.lsc1{letter-spacing:233.394185px;}
.lsc9{letter-spacing:259.090362px;}
.ls0{letter-spacing:345.347589px;}
.lsbc{letter-spacing:365.086362px;}
.lsbb{letter-spacing:693.196362px;}
.lsbe{letter-spacing:769.750738px;}
.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;}
}
.ws70{word-spacing:-65.520055px;}
.ws62{word-spacing:-65.454600px;}
.ws64{word-spacing:-50.923679px;}
.wsad{word-spacing:-48.685131px;}
.ws5f{word-spacing:-47.323676px;}
.ws61{word-spacing:-47.258221px;}
.ws39{word-spacing:-42.637126px;}
.ws84{word-spacing:-40.125610px;}
.ws88{word-spacing:-40.107527px;}
.ws20{word-spacing:-38.937826px;}
.ws53{word-spacing:-36.379667px;}
.ws72{word-spacing:-34.560029px;}
.ws6f{word-spacing:-33.453846px;}
.ws3a{word-spacing:-33.211407px;}
.ws3d{word-spacing:-32.727300px;}
.ws42{word-spacing:-32.714209px;}
.ws14{word-spacing:-31.832513px;}
.ws78{word-spacing:-31.771663px;}
.ws52{word-spacing:-31.706208px;}
.ws9d{word-spacing:-29.887800px;}
.ws1f{word-spacing:-29.875845px;}
.ws2c{word-spacing:-28.955301px;}
.wsf{word-spacing:-27.646998px;}
.ws66{word-spacing:-24.506202px;}
.ws7a{word-spacing:-24.440748px;}
.ws93{word-spacing:-22.320209px;}
.ws3f{word-spacing:-20.971654px;}
.ws65{word-spacing:-18.183288px;}
.ws31{word-spacing:-17.672742px;}
.ws73{word-spacing:-17.149105px;}
.ws0{word-spacing:-16.139475px;}
.wsa5{word-spacing:-15.674748px;}
.ws47{word-spacing:-15.674668px;}
.ws46{word-spacing:-15.579034px;}
.wsa9{word-spacing:-15.381831px;}
.wsa1{word-spacing:-15.054558px;}
.wsd{word-spacing:-14.358793px;}
.wse{word-spacing:-14.304995px;}
.ws97{word-spacing:-14.282668px;}
.ws81{word-spacing:-13.483648px;}
.ws3{word-spacing:-13.449600px;}
.ws8d{word-spacing:-13.090920px;}
.ws80{word-spacing:-12.803570px;}
.ws57{word-spacing:-12.763647px;}
.ws69{word-spacing:-12.305465px;}
.ws5c{word-spacing:-12.109101px;}
.wsa2{word-spacing:-12.041595px;}
.ws68{word-spacing:-12.041168px;}
.ws82{word-spacing:-12.038668px;}
.ws6a{word-spacing:-12.032668px;}
.ws1d{word-spacing:-11.895344px;}
.ws29{word-spacing:-11.835569px;}
.ws5a{word-spacing:-11.476915px;}
.ws77{word-spacing:-11.389100px;}
.ws76{word-spacing:-11.323646px;}
.ws7b{word-spacing:-11.258191px;}
.ws30{word-spacing:-11.192737px;}
.ws4a{word-spacing:-11.127282px;}
.wsa{word-spacing:-11.066331px;}
.ws40{word-spacing:-11.061827px;}
.ws32{word-spacing:-10.930918px;}
.ws58{word-spacing:-10.865464px;}
.ws1c{word-spacing:-10.819384px;}
.ws38{word-spacing:-10.800009px;}
.wsbb{word-spacing:-10.759608px;}
.ws48{word-spacing:-10.734554px;}
.wsb7{word-spacing:-10.699832px;}
.ws49{word-spacing:-10.669100px;}
.wsb5{word-spacing:-10.640057px;}
.wsb{word-spacing:-10.635944px;}
.ws3c{word-spacing:-10.603645px;}
.ws8c{word-spacing:-10.538191px;}
.wsa6{word-spacing:-10.472736px;}
.ws5d{word-spacing:-10.407281px;}
.wsb3{word-spacing:-10.400954px;}
.wsbd{word-spacing:-10.221628px;}
.ws4b{word-spacing:-10.210918px;}
.ws26{word-spacing:-10.102076px;}
.ws41{word-spacing:-10.021099px;}
.ws4{word-spacing:-9.982525px;}
.ws2e{word-spacing:-9.922750px;}
.ws13{word-spacing:-9.893526px;}
.ws6e{word-spacing:-9.890190px;}
.wsbc{word-spacing:-9.868952px;}
.ws2a{word-spacing:-9.803198px;}
.wsb6{word-spacing:-9.749400px;}
.wsc0{word-spacing:-9.743423px;}
.wsaf{word-spacing:-9.683647px;}
.wsb1{word-spacing:-9.623872px;}
.ws9{word-spacing:-9.570735px;}
.ws27{word-spacing:-9.564096px;}
.wsc{word-spacing:-9.516937px;}
.wsb4{word-spacing:-9.510298px;}
.ws56{word-spacing:-9.490917px;}
.wsbe{word-spacing:-9.450522px;}
.ws74{word-spacing:-9.425462px;}
.ws89{word-spacing:-9.294553px;}
.ws12{word-spacing:-9.247945px;}
.wsc1{word-spacing:-9.211420px;}
.ws8{word-spacing:-9.194147px;}
.wsb2{word-spacing:-9.151644px;}
.wsbf{word-spacing:-8.972318px;}
.wsb0{word-spacing:-8.852766px;}
.ws2f{word-spacing:-8.836371px;}
.wsae{word-spacing:-8.405168px;}
.wsa8{word-spacing:-8.399168px;}
.ws25{word-spacing:-8.368584px;}
.ws54{word-spacing:-7.920007px;}
.ws5b{word-spacing:-7.854552px;}
.ws8b{word-spacing:-7.723643px;}
.wsa7{word-spacing:-7.265461px;}
.ws7f{word-spacing:-7.252370px;}
.wsb8{word-spacing:-7.113296px;}
.wsba{word-spacing:-7.053521px;}
.ws6c{word-spacing:-6.800668px;}
.ws5{word-spacing:-6.773219px;}
.ws1e{word-spacing:-6.694867px;}
.wsb9{word-spacing:-6.581294px;}
.ws11{word-spacing:-6.224475px;}
.ws59{word-spacing:-6.087278px;}
.ws9f{word-spacing:-6.043096px;}
.ws1b{word-spacing:-6.037336px;}
.ws24{word-spacing:-5.917784px;}
.ws33{word-spacing:-5.825459px;}
.ws3b{word-spacing:-5.760005px;}
.ws28{word-spacing:-5.499355px;}
.wsa3{word-spacing:-5.498186px;}
.ws10{word-spacing:-5.428259px;}
.ws1a{word-spacing:-5.027128px;}
.wsac{word-spacing:-3.730912px;}
.ws87{word-spacing:-3.665458px;}
.ws45{word-spacing:-3.652367px;}
.ws98{word-spacing:-3.586560px;}
.ws22{word-spacing:-3.335478px;}
.ws55{word-spacing:-2.618184px;}
.wsab{word-spacing:-0.772364px;}
.ws3e{word-spacing:-0.117818px;}
.ws2{word-spacing:-0.086077px;}
.ws96{word-spacing:-0.071731px;}
.ws43{word-spacing:-0.065455px;}
.ws2b{word-spacing:-0.059776px;}
.ws7{word-spacing:-0.053798px;}
.ws5e{word-spacing:-0.052364px;}
.ws4c{word-spacing:-0.047821px;}
.ws90{word-spacing:-0.041843px;}
.ws17{word-spacing:0.000000px;}
.ws4f{word-spacing:0.013091px;}
.ws2d{word-spacing:0.131506px;}
.wsaa{word-spacing:0.340364px;}
.ws18{word-spacing:2.683639px;}
.ws6{word-spacing:2.951516px;}
.wsa0{word-spacing:5.136452px;}
.ws79{word-spacing:7.680452px;}
.ws83{word-spacing:7.788452px;}
.ws7d{word-spacing:7.800452px;}
.ws86{word-spacing:8.754452px;}
.ws15{word-spacing:9.145728px;}
.ws85{word-spacing:9.546452px;}
.ws19{word-spacing:11.429123px;}
.wsa4{word-spacing:13.221829px;}
.ws16{word-spacing:15.278746px;}
.ws21{word-spacing:16.224403px;}
.ws23{word-spacing:16.227303px;}
.ws7e{word-spacing:17.481037px;}
.ws63{word-spacing:17.486394px;}
.ws44{word-spacing:17.487037px;}
.ws51{word-spacing:18.196379px;}
.ws99{word-spacing:18.879038px;}
.ws7c{word-spacing:21.120151px;}
.ws60{word-spacing:21.123038px;}
.ws75{word-spacing:21.123668px;}
.ws1{word-spacing:23.312640px;}
.ws4e{word-spacing:25.333790px;}
.ws50{word-spacing:25.345873px;}
.ws6b{word-spacing:26.361038px;}
.ws4d{word-spacing:29.009479px;}
.ws37{word-spacing:34.370970px;}
.ws6d{word-spacing:43.104452px;}
.ws8a{word-spacing:43.110452px;}
.ws71{word-spacing:99.137537px;}
.ws67{word-spacing:99.202992px;}
.ws9a{word-spacing:144.806908px;}
.ws9c{word-spacing:173.922754px;}
.ws9e{word-spacing:177.682403px;}
.ws9b{word-spacing:202.560403px;}
.ws94{word-spacing:225.252403px;}
.ws95{word-spacing:258.879303px;}
.ws8e{word-spacing:304.227303px;}
.ws92{word-spacing:365.439303px;}
.ws91{word-spacing:403.800754px;}
.ws8f{word-spacing:659.520403px;}
.ws34{word-spacing:2202.931881px;}
.ws36{word-spacing:2229.132812px;}
.ws35{word-spacing:2371.645881px;}
._56{margin-left:-30.501844px;}
._50{margin-left:-19.146942px;}
._48{margin-left:-17.287195px;}
._46{margin-left:-10.548999px;}
._1{margin-left:-8.091257px;}
._2{margin-left:-5.881958px;}
._4{margin-left:-4.519066px;}
._7{margin-left:-3.275736px;}
._3{margin-left:-1.673717px;}
._5{width:1.506355px;}
._0{width:2.668393px;}
._8{width:4.196275px;}
._4f{width:5.498273px;}
._45{width:6.700936px;}
._f{width:18.105520px;}
._e{width:19.307538px;}
._53{width:20.496278px;}
._4d{width:21.790266px;}
._c{width:23.037556px;}
._6{width:24.269045px;}
._9{width:26.540366px;}
._42{width:28.602761px;}
._41{width:29.621032px;}
._57{width:30.894571px;}
._d{width:32.278824px;}
._4a{width:34.661036px;}
._44{width:35.869121px;}
._b{width:37.048907px;}
._a{width:39.141053px;}
._4b{width:44.163654px;}
._43{width:45.265581px;}
._58{width:51.316406px;}
._49{width:55.214680px;}
._52{width:66.263329px;}
._4c{width:69.148404px;}
._51{width:77.378416px;}
._47{width:83.650979px;}
._54{width:141.334032px;}
._4e{width:142.460473px;}
._55{width:258.884702px;}
._26{width:886.922218px;}
._20{width:1010.455962px;}
._37{width:1095.942368px;}
._19{width:1127.162413px;}
._38{width:1201.752554px;}
._2b{width:1271.561551px;}
._1a{width:1300.747113px;}
._17{width:1411.599103px;}
._21{width:1441.293385px;}
._40{width:1460.136253px;}
._39{width:1480.870116px;}
._15{width:1484.996762px;}
._16{width:1492.863553px;}
._34{width:1508.172740px;}
._22{width:1509.497078px;}
._1e{width:1550.335651px;}
._2d{width:1569.729360px;}
._1c{width:1608.459336px;}
._1f{width:1618.530095px;}
._1d{width:1647.629583px;}
._3e{width:1653.089225px;}
._30{width:1682.220427px;}
._14{width:1685.816525px;}
._2c{width:1691.309353px;}
._3b{width:1711.382363px;}
._28{width:1726.063048px;}
._2f{width:1734.804962px;}
._33{width:1757.013175px;}
._24{width:1760.172950px;}
._23{width:1790.872057px;}
._3f{width:1792.041284px;}
._2a{width:1794.573967px;}
._11{width:1809.921145px;}
._13{width:1813.452995px;}
._2e{width:1818.035716px;}
._3c{width:1822.543128px;}
._1b{width:1835.969377px;}
._36{width:1842.446684px;}
._27{width:1878.768629px;}
._25{width:1907.773073px;}
._3a{width:1919.406038px;}
._32{width:1939.687715px;}
._3d{width:1978.857668px;}
._12{width:1982.682431px;}
._18{width:2037.832263px;}
._31{width:2066.373619px;}
._29{width:2109.798122px;}
._35{width:2160.583368px;}
._10{width:2237.849006px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y8a{bottom:154.336500px;}
.yb6{bottom:156.268500px;}
.y55{bottom:160.314000px;}
.y8b{bottom:161.515500px;}
.y89{bottom:165.561000px;}
.y17{bottom:169.684500px;}
.y16{bottom:172.051500px;}
.y37{bottom:173.425500px;}
.y149{bottom:176.631000px;}
.ycd{bottom:190.800000px;}
.y19f{bottom:191.037000px;}
.y54{bottom:191.710500px;}
.y15{bottom:196.708500px;}
.y125{bottom:199.057500px;}
.yb5{bottom:200.158500px;}
.y126{bottom:202.825500px;}
.y9f{bottom:203.529000px;}
.y1e3{bottom:204.760500px;}
.y1ce{bottom:205.941000px;}
.y148{bottom:205.953000px;}
.ye0{bottom:206.940000px;}
.y6d{bottom:207.396000px;}
.y10c{bottom:207.804000px;}
.y88{bottom:208.176000px;}
.y16f{bottom:208.464000px;}
.y1e2{bottom:208.806000px;}
.yf8{bottom:209.413500px;}
.y36{bottom:215.464500px;}
.ycc{bottom:221.286000px;}
.y53{bottom:223.105500px;}
.y14{bottom:224.355000px;}
.y185{bottom:233.241000px;}
.y16b{bottom:236.386500px;}
.y186{bottom:237.009000px;}
.y124{bottom:237.802500px;}
.y6c{bottom:237.882000px;}
.y87{bottom:238.662000px;}
.y19e{bottom:238.674000px;}
.yb4{bottom:240.003000px;}
.y147{bottom:242.301000px;}
.y1b9{bottom:242.545500px;}
.y16a{bottom:243.819000px;}
.y35{bottom:245.985000px;}
.y146{bottom:246.346500px;}
.y9e{bottom:246.744000px;}
.y13{bottom:249.012000px;}
.y1cd{bottom:249.651000px;}
.y16d{bottom:250.999500px;}
.ycb{bottom:251.770500px;}
.y52{bottom:254.502000px;}
.y16c{bottom:255.043500px;}
.y1e1{bottom:257.821500px;}
.yf7{bottom:258.511500px;}
.ydf{bottom:258.685500px;}
.y10b{bottom:259.737000px;}
.y16e{bottom:262.069500px;}
.y169{bottom:266.115000px;}
.y6b{bottom:268.366500px;}
.y86{bottom:269.146500px;}
.y184{bottom:275.683500px;}
.y122{bottom:276.546000px;}
.y12{bottom:276.658500px;}
.yb3{bottom:279.847500px;}
.y123{bottom:280.312500px;}
.y51{bottom:285.898500px;}
.y19d{bottom:286.311000px;}
.y145{bottom:286.738500px;}
.y9d{bottom:289.957500px;}
.y1b8{bottom:290.704500px;}
.y34{bottom:292.900500px;}
.y1cc{bottom:293.361000px;}
.y168{bottom:293.902500px;}
.y167{bottom:297.948000px;}
.y11{bottom:298.950000px;}
.y85{bottom:299.632500px;}
.y10{bottom:301.317000px;}
.y1fc{bottom:302.178000px;}
.y1fb{bottom:302.925000px;}
.yca{bottom:304.447500px;}
.y1e0{bottom:306.313500px;}
.yf6{bottom:310.981500px;}
.y121{bottom:311.244000px;}
.y120{bottom:315.289500px;}
.y19c{bottom:316.795500px;}
.y50{bottom:317.293500px;}
.yde{bottom:319.552500px;}
.y6a{bottom:320.164500px;}
.y10a{bottom:321.729000px;}
.y1cb{bottom:323.847000px;}
.y165{bottom:325.627500px;}
.y84{bottom:326.073000px;}
.y183{bottom:327.429000px;}
.y9c{bottom:328.743000px;}
.yf{bottom:328.963500px;}
.y83{bottom:330.118500px;}
.yb2{bottom:331.593000px;}
.y1f9{bottom:333.411000px;}
.y215{bottom:335.268000px;}
.y144{bottom:338.484000px;}
.y1fa{bottom:339.349500px;}
.y166{bottom:340.239000px;}
.y163{bottom:344.284500px;}
.y33{bottom:344.680500px;}
.ye{bottom:353.620500px;}
.y1df{bottom:354.805500px;}
.y164{bottom:356.743500px;}
.y214{bottom:362.167500px;}
.y4f{bottom:365.964000px;}
.ydd{bottom:366.178500px;}
.y11f{bottom:367.035000px;}
.y1b7{bottom:368.499000px;}
.y82{bottom:368.688000px;}
.y19b{bottom:368.779500px;}
.y9b{bottom:369.021000px;}
.y109{bottom:369.408000px;}
.yc9{bottom:370.686000px;}
.y81{bottom:372.733500px;}
.y1ca{bottom:375.592500px;}
.yf5{bottom:376.039500px;}
.yd{bottom:381.267000px;}
.y69{bottom:381.381000px;}
.y1f8{bottom:385.156500px;}
.y162{bottom:387.187500px;}
.y182{bottom:387.639000px;}
.y213{bottom:389.067000px;}
.yb1{bottom:391.396500px;}
.y4e{bottom:397.359000px;}
.y143{bottom:398.373000px;}
.ydc{bottom:401.578500px;}
.y1de{bottom:403.297500px;}
.y32{bottom:405.787500px;}
.yc{bottom:405.924000px;}
.y9a{bottom:409.300500px;}
.y80{bottom:415.347000px;}
.y212{bottom:415.966500px;}
.y108{bottom:416.896500px;}
.y181{bottom:418.125000px;}
.yc8{bottom:420.772500px;}
.y11e{bottom:422.619000px;}
.ydb{bottom:423.874500px;}
.y1c9{bottom:424.176000px;}
.yf4{bottom:425.137500px;}
.y1b4{bottom:425.914500px;}
.y11d{bottom:426.664500px;}
.y19a{bottom:427.006500px;}
.y1b5{bottom:427.315500px;}
.y68{bottom:428.335500px;}
.y1b6{bottom:428.464500px;}
.y4d{bottom:428.755500px;}
.y142{bottom:428.859000px;}
.y199{bottom:431.052000px;}
.yb0{bottom:431.241000px;}
.yb{bottom:433.570500px;}
.y31{bottom:436.273500px;}
.y161{bottom:438.933000px;}
.y211{bottom:442.864500px;}
.y1f7{bottom:445.536000px;}
.y7f{bottom:445.833000px;}
.y180{bottom:449.343000px;}
.y99{bottom:449.580000px;}
.y1dd{bottom:452.311500px;}
.ya{bottom:458.227500px;}
.y67{bottom:458.872500px;}
.y141{bottom:459.343500px;}
.yda{bottom:459.429000px;}
.y1c8{bottom:459.576000px;}
.y4c{bottom:460.150500px;}
.y11c{bottom:465.408000px;}
.y30{bottom:466.759500px;}
.y1b2{bottom:467.703000px;}
.y107{bottom:468.831000px;}
.y210{bottom:469.764000px;}
.y1b3{bottom:470.137500px;}
.yc7{bottom:470.860500px;}
.yaf{bottom:471.085500px;}
.y17f{bottom:471.637500px;}
.yf3{bottom:474.237000px;}
.y1f6{bottom:476.022000px;}
.y198{bottom:478.926000px;}
.y1c7{bottom:486.475500px;}
.y7e{bottom:488.448000px;}
.y66{bottom:489.411000px;}
.y140{bottom:489.829500px;}
.y98{bottom:489.858000px;}
.y9{bottom:491.260500px;}
.y4b{bottom:491.547000px;}
.y160{bottom:495.171000px;}
.y20f{bottom:496.663500px;}
.y15f{bottom:499.216500px;}
.y1dc{bottom:500.803500px;}
.y17e{bottom:503.008500px;}
.y1f5{bottom:506.508000px;}
.yae{bottom:510.930000px;}
.yd9{bottom:511.174500px;}
.y1c6{bottom:513.972000px;}
.y11b{bottom:517.153500px;}
.y65{bottom:519.949500px;}
.yc6{bottom:520.947000px;}
.y2f{bottom:523.347000px;}
.y20e{bottom:523.563000px;}
.yf2{bottom:524.061000px;}
.y197{bottom:526.561500px;}
.y106{bottom:530.823000px;}
.y7d{bottom:531.063000px;}
.y1db{bottom:531.811500px;}
.y17d{bottom:534.226500px;}
.y1b1{bottom:535.158000px;}
.y4a{bottom:540.217500px;}
.y13f{bottom:541.575000px;}
.y97{bottom:541.603500px;}
.y8{bottom:543.672000px;}
.y2e{bottom:546.552000px;}
.y2d{bottom:550.246500px;}
.y20d{bottom:550.461000px;}
.yad{bottom:550.774500px;}
.y17c{bottom:556.521000px;}
.y1c5{bottom:558.073500px;}
.y1f4{bottom:558.253500px;}
.y195{bottom:566.760000px;}
.y64{bottom:566.904000px;}
.y7{bottom:570.570000px;}
.yc5{bottom:571.033500px;}
.y49{bottom:571.612500px;}
.yd8{bottom:572.043000px;}
.y15e{bottom:572.605500px;}
.yf1{bottom:573.159000px;}
.y7c{bottom:573.676500px;}
.y11a{bottom:576.783000px;}
.y2c{bottom:577.146000px;}
.y20c{bottom:577.360500px;}
.y105{bottom:578.500500px;}
.y193{bottom:583.018500px;}
.y191{bottom:584.008500px;}
.y1da{bottom:584.080500px;}
.y17b{bottom:587.892000px;}
.y192{bottom:592.582500px;}
.y1c4{bottom:593.473500px;}
.y1af{bottom:594.873000px;}
.y194{bottom:597.246000px;}
.y6{bottom:597.469500px;}
.y13e{bottom:601.464000px;}
.y96{bottom:601.474500px;}
.yac{bottom:602.520000px;}
.y48{bottom:603.009000px;}
.y2b{bottom:604.044000px;}
.y20b{bottom:604.260000px;}
.y15c{bottom:604.284000px;}
.y119{bottom:607.269000px;}
.y1b0{bottom:608.173500px;}
.yf0{bottom:609.774000px;}
.yc3{bottom:610.459500px;}
.y15d{bottom:611.463000px;}
.y63{bottom:613.858500px;}
.y1f3{bottom:613.878000px;}
.y7b{bottom:616.291500px;}
.yef{bottom:616.899000px;}
.yc4{bottom:617.638500px;}
.y1f2{bottom:618.633000px;}
.yd7{bottom:618.669000px;}
.y196{bottom:618.885000px;}
.y1c3{bottom:620.373000px;}
.yc2{bottom:621.684000px;}
.y15b{bottom:622.534500px;}
.y104{bottom:625.990500px;}
.y15a{bottom:626.578500px;}
.y13d{bottom:627.490500px;}
.yed{bottom:628.123500px;}
.y2a{bottom:630.943500px;}
.y20a{bottom:631.159500px;}
.yee{bottom:631.890000px;}
.y13c{bottom:631.950000px;}
.y95{bottom:631.960500px;}
.y47{bottom:634.404000px;}
.y118{bottom:637.753500px;}
.y190{bottom:638.127000px;}
.y17a{bottom:639.637500px;}
.y1f1{bottom:645.073500px;}
.y1c2{bottom:647.271000px;}
.y1d9{bottom:647.982000px;}
.y1f0{bottom:649.119000px;}
.y1ae{bottom:653.184000px;}
.y29{bottom:657.843000px;}
.y209{bottom:658.057500px;}
.y159{bottom:658.413000px;}
.y7a{bottom:658.906500px;}
.y62{bottom:660.813000px;}
.y13a{bottom:662.151000px;}
.yab{bottom:662.322000px;}
.y94{bottom:662.446500px;}
.yd6{bottom:665.293500px;}
.y46{bottom:665.800500px;}
.yc1{bottom:671.401500px;}
.y1c1{bottom:674.769000px;}
.y13b{bottom:676.762500px;}
.yec{bottom:677.221500px;}
.y103{bottom:677.925000px;}
.y139{bottom:680.808000px;}
.y28{bottom:684.742500px;}
.y208{bottom:684.957000px;}
.y1d8{bottom:685.249500px;}
.y117{bottom:689.500500px;}
.y18f{bottom:690.111000px;}
.y61{bottom:691.351500px;}
.y1ef{bottom:692.640000px;}
.y93{bottom:692.932500px;}
.y1ad{bottom:696.249000px;}
.y45{bottom:697.197000px;}
.y158{bottom:697.270500px;}
.y179{bottom:699.849000px;}
.yaa{bottom:699.925500px;}
.ya9{bottom:700.672500px;}
.y157{bottom:701.316000px;}
.y79{bottom:701.520000px;}
.y1d7{bottom:707.544000px;}
.y27{bottom:711.640500px;}
.y207{bottom:711.856500px;}
.yd5{bottom:711.919500px;}
.y1c0{bottom:718.869000px;}
.y138{bottom:721.200000px;}
.y60{bottom:721.888500px;}
.y92{bottom:723.417000px;}
.yc0{bottom:724.078500px;}
.yeb{bottom:729.691500px;}
.y178{bottom:730.333500px;}
.y78{bottom:732.006000px;}
.y1ee{bottom:736.159500px;}
.y206{bottom:738.756000px;}
.ya8{bottom:739.023000px;}
.y1ac{bottom:739.314000px;}
.y102{bottom:739.917000px;}
.y156{bottom:744.219000px;}
.y1d6{bottom:744.966000px;}
.y44{bottom:745.866000px;}
.y5{bottom:748.551000px;}
.y116{bottom:749.130000px;}
.y18e{bottom:752.383500px;}
.y5f{bottom:752.427000px;}
.y26{bottom:753.552000px;}
.yd4{bottom:758.544000px;}
.y205{bottom:765.654000px;}
.y1bf{bottom:770.707500px;}
.y137{bottom:772.945500px;}
.y77{bottom:774.621000px;}
.y91{bottom:775.162500px;}
.y43{bottom:777.262500px;}
.ya7{bottom:777.373500px;}
.ybf{bottom:779.092500px;}
.y1ed{bottom:779.679000px;}
.y177{bottom:782.079000px;}
.y1ab{bottom:782.377500px;}
.y101{bottom:787.405500px;}
.y115{bottom:788.134500px;}
.yea{bottom:790.704000px;}
.y204{bottom:792.553500px;}
.ye9{bottom:794.749500px;}
.y25{bottom:795.462000px;}
.y155{bottom:795.964500px;}
.y1d5{bottom:797.233500px;}
.y5e{bottom:799.381500px;}
.y18d{bottom:800.019000px;}
.ybe{bottom:801.387000px;}
.y42{bottom:808.657500px;}
.yd3{bottom:810.289500px;}
.y100{bottom:815.437500px;}
.ya6{bottom:817.218000px;}
.y76{bottom:817.236000px;}
.yff{bottom:817.891500px;}
.y203{bottom:819.453000px;}
.y1aa{bottom:820.713000px;}
.y1ec{bottom:823.200000px;}
.y114{bottom:830.838000px;}
.y24{bottom:831.429000px;}
.y136{bottom:832.834500px;}
.y90{bottom:835.033500px;}
.ybd{bottom:840.034500px;}
.y41{bottom:840.054000px;}
.y176{bottom:842.290500px;}
.ye8{bottom:843.849000px;}
.y5d{bottom:846.336000px;}
.y202{bottom:846.352500px;}
.y18c{bottom:847.656000px;}
.y1a9{bottom:851.199000px;}
.y154{bottom:852.202500px;}
.y1eb{bottom:853.684500px;}
.y153{bottom:856.248000px;}
.ya5{bottom:857.062500px;}
.y135{bottom:858.246000px;}
.y75{bottom:858.355500px;}
.y23{bottom:858.429000px;}
.y1d4{bottom:861.135000px;}
.y8f{bottom:865.519500px;}
.yfe{bottom:865.570500px;}
.ybc{bottom:870.520500px;}
.yd2{bottom:871.158000px;}
.y40{bottom:871.449000px;}
.y175{bottom:872.776500px;}
.y134{bottom:872.857500px;}
.y201{bottom:873.250500px;}
.y113{bottom:873.541500px;}
.y133{bottom:876.903000px;}
.y1be{bottom:879.988500px;}
.y1a8{bottom:881.683500px;}
.y22{bottom:885.327000px;}
.ye7{bottom:889.627500px;}
.y1d3{bottom:891.621000px;}
.y5c{bottom:893.290500px;}
.ye6{bottom:893.671500px;}
.y8e{bottom:896.005500px;}
.y152{bottom:899.151000px;}
.y18b{bottom:899.638500px;}
.y200{bottom:900.150000px;}
.y74{bottom:902.349000px;}
.y4{bottom:902.547000px;}
.y3f{bottom:902.845500px;}
.y174{bottom:903.261000px;}
.y1ea{bottom:905.430000px;}
.ya4{bottom:908.808000px;}
.ybb{bottom:909.946500px;}
.y21{bottom:912.226500px;}
.yfd{bottom:913.059000px;}
.y1a6{bottom:916.578000px;}
.y132{bottom:917.295000px;}
.yd1{bottom:917.784000px;}
.y1d2{bottom:922.107000px;}
.y1a7{bottom:923.757000px;}
.y112{bottom:925.287000px;}
.y8d{bottom:926.491500px;}
.y1a5{bottom:927.802500px;}
.y1bd{bottom:929.487000px;}
.y150{bottom:930.831000px;}
.yba{bottom:932.241000px;}
.y3{bottom:933.928500px;}
.y3e{bottom:934.242000px;}
.y151{bottom:938.010000px;}
.y20{bottom:939.126000px;}
.y5b{bottom:940.245000px;}
.ye5{bottom:942.771000px;}
.y12f{bottom:943.479000px;}
.y73{bottom:946.342500px;}
.y14f{bottom:949.080000px;}
.y12e{bottom:950.602500px;}
.y14e{bottom:953.125500px;}
.y173{bottom:955.006500px;}
.y8c{bottom:956.976000px;}
.y131{bottom:957.783000px;}
.y130{bottom:961.827000px;}
.y12c{bottom:961.828500px;}
.y18a{bottom:961.911000px;}
.yd0{bottom:964.408500px;}
.yfc{bottom:964.993500px;}
.y12d{bottom:965.595000px;}
.y1e9{bottom:965.811000px;}
.y1f{bottom:966.025500px;}
.y1a4{bottom:967.632000px;}
.ya3{bottom:968.611500px;}
.y5a{bottom:970.783500px;}
.yb9{bottom:970.888500px;}
.y1d1{bottom:974.374500px;}
.y3d{bottom:982.911000px;}
.y111{bottom:984.916500px;}
.y14d{bottom:984.958500px;}
.y72{bottom:987.462000px;}
.ye4{bottom:988.549500px;}
.y1ba{bottom:989.671500px;}
.y189{bottom:992.397000px;}
.ye3{bottom:992.595000px;}
.y1e{bottom:992.923500px;}
.y1ff{bottom:994.297500px;}
.ycf{bottom:994.894500px;}
.y2{bottom:999.790500px;}
.y59{bottom:1001.322000px;}
.y12b{bottom:1002.220500px;}
.y171{bottom:1003.993500px;}
.y1e8{bottom:1005.285000px;}
.ya2{bottom:1008.456000px;}
.y1e7{bottom:1009.330500px;}
.y1a3{bottom:1010.697000px;}
.y172{bottom:1011.172500px;}
.y3c{bottom:1014.307500px;}
.y170{bottom:1015.218000px;}
.y71{bottom:1017.948000px;}
.yb8{bottom:1023.565500px;}
.y110{bottom:1023.660000px;}
.yfb{bottom:1026.985500px;}
.y129{bottom:1029.405000px;}
.y1fe{bottom:1029.996000px;}
.y1d{bottom:1031.629500px;}
.y58{bottom:1031.860500px;}
.y128{bottom:1036.528500px;}
.y14c{bottom:1036.704000px;}
.y1d0{bottom:1038.276000px;}
.y1{bottom:1040.139000px;}
.y188{bottom:1040.271000px;}
.yce{bottom:1041.520500px;}
.ye2{bottom:1041.693000px;}
.y12a{bottom:1043.707500px;}
.y1bc{bottom:1043.950500px;}
.y3b{bottom:1045.702500px;}
.y127{bottom:1047.753000px;}
.ya1{bottom:1048.300500px;}
.y70{bottom:1048.434000px;}
.y1fd{bottom:1052.290500px;}
.y1e6{bottom:1052.850000px;}
.y1a2{bottom:1053.760500px;}
.yfa{bottom:1057.471500px;}
.y1c{bottom:1058.562000px;}
.y57{bottom:1062.397500px;}
.y10f{bottom:1062.403500px;}
.y1b{bottom:1063.984500px;}
.y3a{bottom:1077.099000px;}
.y6f{bottom:1078.920000px;}
.y14b{bottom:1085.763000px;}
.y187{bottom:1087.908000px;}
.yf9{bottom:1087.956000px;}
.ya0{bottom:1088.145000px;}
.yb7{bottom:1089.804000px;}
.y10e{bottom:1089.922500px;}
.y19{bottom:1090.725000px;}
.ye1{bottom:1090.792500px;}
.y1cf{bottom:1091.848500px;}
.y1e5{bottom:1092.325500px;}
.y1a1{bottom:1092.780000px;}
.y56{bottom:1092.936000px;}
.y1e4{bottom:1096.371000px;}
.y1a{bottom:1096.663500px;}
.y1a0{bottom:1096.825500px;}
.y14a{bottom:1096.987500px;}
.y39{bottom:1108.495500px;}
.y6e{bottom:1109.404500px;}
.y10d{bottom:1112.217000px;}
.y1bb{bottom:1129.462500px;}
.y18{bottom:1139.890500px;}
.y38{bottom:1192.194000px;}
.h37{height:2.988780px;}
.h34{height:11.358780px;}
.h3e{height:13.210408px;}
.hb{height:15.816730px;}
.h13{height:17.494800px;}
.hf{height:28.202047px;}
.h2e{height:34.018950px;}
.h2c{height:34.024950px;}
.he{height:35.865450px;}
.h8{height:37.927872px;}
.h9{height:39.531504px;}
.h7{height:40.348800px;}
.h10{height:42.799330px;}
.h6{height:44.831700px;}
.h17{height:45.163674px;}
.ha{height:46.704624px;}
.h23{height:46.865494px;}
.h3b{height:48.899700px;}
.hd{height:49.090950px;}
.hc{height:49.816800px;}
.h11{height:49.892047px;}
.h41{height:49.898047px;}
.h5{height:50.211840px;}
.h3c{height:50.268632px;}
.h40{height:50.274632px;}
.h2d{height:52.680624px;}
.h2b{height:52.686624px;}
.h39{height:53.050950px;}
.h3{height:53.798400px;}
.h3f{height:55.503275px;}
.h1e{height:57.419702px;}
.h12{height:59.609700px;}
.h15{height:59.613450px;}
.h1a{height:59.619450px;}
.h3d{height:59.637275px;}
.h2{height:60.254040px;}
.h20{height:60.407702px;}
.h21{height:60.689702px;}
.h31{height:61.194780px;}
.h14{height:62.889450px;}
.h16{height:62.895450px;}
.h27{height:65.266950px;}
.h19{height:65.272950px;}
.h4{height:67.226503px;}
.h32{height:67.707450px;}
.h28{height:67.752624px;}
.h1f{height:68.050950px;}
.h42{height:68.110950px;}
.h3a{height:75.801450px;}
.h30{height:77.376780px;}
.h29{height:78.304950px;}
.h18{height:79.071450px;}
.h1b{height:93.370950px;}
.h22{height:93.988950px;}
.h26{height:93.994950px;}
.h24{height:103.899450px;}
.h2a{height:106.092780px;}
.h2f{height:106.098780px;}
.h1d{height:107.787450px;}
.h33{height:107.793450px;}
.h35{height:120.075450px;}
.h1c{height:138.268950px;}
.h36{height:142.494780px;}
.h38{height:146.454780px;}
.h25{height:148.797450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x29{left:108.000000px;}
.x2d{left:110.739000px;}
.x31{left:114.363000px;}
.xe9{left:115.471500px;}
.x30{left:120.273000px;}
.x45{left:123.865500px;}
.xb{left:125.227500px;}
.x2b{left:126.636000px;}
.x44{left:128.410500px;}
.x34{left:130.416000px;}
.x1b{left:132.366000px;}
.xea{left:140.212500px;}
.x54{left:147.226500px;}
.x2c{left:150.747000px;}
.x2f{left:151.882500px;}
.xe6{left:153.655500px;}
.x32{left:154.837500px;}
.x38{left:156.982500px;}
.x24{left:158.809500px;}
.xc5{left:160.036500px;}
.x5a{left:162.543000px;}
.x1{left:169.545000px;}
.x9a{left:172.539000px;}
.x21{left:173.754000px;}
.x3d{left:177.474000px;}
.x4e{left:178.630500px;}
.x9b{left:181.189500px;}
.xc6{left:183.481500px;}
.xe5{left:186.951000px;}
.x51{left:189.309000px;}
.x3e{left:190.656000px;}
.x4f{left:195.649500px;}
.x10{left:197.130000px;}
.xc7{left:200.887500px;}
.x9f{left:202.834500px;}
.x3f{left:204.729000px;}
.x50{left:209.197500px;}
.x1e{left:214.422000px;}
.xc8{left:216.798000px;}
.x11{left:219.121500px;}
.x1f{left:221.125500px;}
.xbb{left:227.458500px;}
.x77{left:229.191000px;}
.xcb{left:231.655500px;}
.x40{left:233.029500px;}
.xdb{left:234.898500px;}
.xaf{left:238.401000px;}
.x12{left:240.367500px;}
.x82{left:244.131000px;}
.xbd{left:249.708000px;}
.x13{left:251.766000px;}
.x65{left:258.925500px;}
.x14{left:262.216500px;}
.x81{left:263.823000px;}
.xdf{left:268.068000px;}
.x83{left:269.955000px;}
.x3{left:274.819500px;}
.x15{left:276.592500px;}
.x41{left:278.406000px;}
.x72{left:281.929500px;}
.x26{left:283.296000px;}
.xa0{left:285.561000px;}
.x98{left:286.896000px;}
.xaa{left:288.562500px;}
.x5e{left:290.773500px;}
.x59{left:293.943000px;}
.x27{left:295.722000px;}
.xc9{left:296.880000px;}
.x62{left:298.366500px;}
.x39{left:300.781500px;}
.x19{left:303.547500px;}
.x16{left:305.520000px;}
.x3a{left:308.964000px;}
.xbe{left:310.647000px;}
.x7c{left:312.219000px;}
.x86{left:314.292000px;}
.x1a{left:315.663000px;}
.x3b{left:317.014500px;}
.x2{left:319.108500px;}
.x4b{left:321.397500px;}
.x28{left:322.621500px;}
.x3c{left:325.197000px;}
.x87{left:326.683500px;}
.x79{left:327.961500px;}
.x7{left:329.793000px;}
.xbf{left:330.988500px;}
.x5d{left:333.607500px;}
.x8d{left:335.073000px;}
.x7e{left:337.740000px;}
.x93{left:340.711500px;}
.x60{left:342.256500px;}
.xa7{left:344.038500px;}
.x42{left:346.215000px;}
.xd9{left:347.641500px;}
.x9c{left:349.050000px;}
.x5c{left:350.247000px;}
.x97{left:351.271500px;}
.x17{left:353.263500px;}
.xa5{left:355.104000px;}
.xad{left:357.573000px;}
.x4{left:359.668500px;}
.x5b{left:361.963500px;}
.x18{left:363.135000px;}
.x20{left:364.890000px;}
.x25{left:366.267000px;}
.x49{left:368.515500px;}
.x8b{left:370.536000px;}
.x33{left:373.006500px;}
.x4c{left:375.310500px;}
.xe0{left:376.962000px;}
.x43{left:378.156000px;}
.x64{left:379.293000px;}
.x6{left:381.384000px;}
.x1c{left:382.602000px;}
.x66{left:384.789000px;}
.x7b{left:387.063000px;}
.x46{left:388.876500px;}
.x4a{left:390.751500px;}
.x8{left:392.640000px;}
.x5{left:394.558500px;}
.x76{left:397.690500px;}
.x37{left:399.963000px;}
.x5f{left:401.862000px;}
.xda{left:402.972000px;}
.x63{left:404.034000px;}
.x9{left:405.966000px;}
.x8a{left:407.488500px;}
.x2a{left:409.203000px;}
.x78{left:412.213500px;}
.x94{left:414.805500px;}
.x9d{left:416.142000px;}
.x7d{left:421.899000px;}
.xa2{left:428.176500px;}
.x7f{left:430.779000px;}
.x84{left:432.033000px;}
.xa4{left:434.466000px;}
.x90{left:436.369500px;}
.xb9{left:438.982500px;}
.x67{left:441.939000px;}
.xe7{left:447.000000px;}
.x9e{left:448.078500px;}
.xb2{left:451.341000px;}
.xbc{left:459.672000px;}
.x95{left:463.168500px;}
.xb3{left:464.448000px;}
.x88{left:465.735000px;}
.xba{left:469.815000px;}
.x85{left:471.426000px;}
.x47{left:474.040500px;}
.x6b{left:475.312500px;}
.xa3{left:477.516000px;}
.x80{left:479.130000px;}
.x6c{left:483.493500px;}
.x91{left:484.722000px;}
.xae{left:487.023000px;}
.xb0{left:488.667000px;}
.x48{left:490.242000px;}
.x6d{left:491.839500px;}
.xe8{left:493.528500px;}
.x6e{left:500.020500px;}
.x8e{left:501.184500px;}
.x52{left:505.030500px;}
.xca{left:506.802000px;}
.xb6{left:508.605000px;}
.x8f{left:509.835000px;}
.x1d{left:511.759500px;}
.x96{left:515.797500px;}
.x92{left:520.036500px;}
.x4d{left:527.968500px;}
.xb4{left:532.378500px;}
.xcc{left:537.246000px;}
.xa8{left:538.512000px;}
.xcd{left:543.559500px;}
.xc{left:546.415500px;}
.xa1{left:550.450500px;}
.xa9{left:551.653500px;}
.xce{left:555.832500px;}
.xdc{left:557.509500px;}
.xb7{left:558.741000px;}
.x61{left:561.955500px;}
.xb8{left:566.923500px;}
.xd{left:568.348500px;}
.xb5{left:570.112500px;}
.xcf{left:572.098500px;}
.x89{left:573.421500px;}
.xc0{left:575.055000px;}
.xab{left:578.641500px;}
.x99{left:580.309500px;}
.x8c{left:581.862000px;}
.xe{left:584.355000px;}
.xdd{left:585.363000px;}
.xac{left:591.180000px;}
.xc1{left:594.457500px;}
.x69{left:604.431000px;}
.xb1{left:608.674500px;}
.x6a{left:612.612000px;}
.x68{left:617.787000px;}
.xde{left:619.191000px;}
.xe1{left:634.864500px;}
.xa6{left:644.688000px;}
.xf{left:646.564500px;}
.xc2{left:648.963000px;}
.x35{left:653.028000px;}
.x53{left:657.765000px;}
.x6f{left:659.478000px;}
.x36{left:661.209000px;}
.x70{left:667.660500px;}
.x22{left:669.903000px;}
.x55{left:674.491500px;}
.x23{left:677.374500px;}
.x57{left:680.913000px;}
.x71{left:686.419500px;}
.xc3{left:693.441000px;}
.xc4{left:699.678000px;}
.x58{left:707.469000px;}
.x73{left:710.257500px;}
.x56{left:713.221500px;}
.x74{left:716.748000px;}
.xe2{left:730.506000px;}
.xe3{left:736.741500px;}
.xd0{left:745.656000px;}
.xd1{left:755.611500px;}
.xd3{left:759.523500px;}
.x75{left:764.493000px;}
.xd4{left:767.704500px;}
.xe4{left:769.378500px;}
.xd5{left:776.491500px;}
.xd2{left:781.225500px;}
.xd6{left:784.674000px;}
.x7a{left:791.013000px;}
.xd7{left:793.461000px;}
.x2e{left:799.195500px;}
.xd8{left:801.643500px;}
@media print{
.v1a{vertical-align:-44.298667pt;}
.v16{vertical-align:-24.021333pt;}
.v9{vertical-align:-20.314667pt;}
.v23{vertical-align:-14.912000pt;}
.v14{vertical-align:-13.392000pt;}
.v2{vertical-align:-11.477333pt;}
.vf{vertical-align:-9.242667pt;}
.v6{vertical-align:-7.973333pt;}
.v3{vertical-align:-5.312000pt;}
.v21{vertical-align:-4.352000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:2.656000pt;}
.v20{vertical-align:3.616000pt;}
.v1{vertical-align:5.738667pt;}
.v1b{vertical-align:7.440000pt;}
.v5{vertical-align:8.416000pt;}
.v8{vertical-align:13.136000pt;}
.vb{vertical-align:14.384000pt;}
.v22{vertical-align:15.605333pt;}
.v10{vertical-align:16.853333pt;}
.v7{vertical-align:19.280000pt;}
.v4{vertical-align:20.314667pt;}
.va{vertical-align:24.021333pt;}
.v18{vertical-align:28.304000pt;}
.ve{vertical-align:30.634667pt;}
.v1f{vertical-align:35.498667pt;}
.vc{vertical-align:38.405333pt;}
.vd{vertical-align:39.360000pt;}
.v17{vertical-align:51.738667pt;}
.v12{vertical-align:60.474667pt;}
.v19{vertical-align:63.930667pt;}
.v1c{vertical-align:70.538667pt;}
.v13{vertical-align:79.269333pt;}
.v15{vertical-align:91.648000pt;}
.v1d{vertical-align:124.005333pt;}
.v1e{vertical-align:127.525333pt;}
.lsd{letter-spacing:0.000000pt;}
.lsc3{letter-spacing:0.000297pt;}
.ls11{letter-spacing:0.000543pt;}
.ls3a{letter-spacing:0.000694pt;}
.lsa3{letter-spacing:0.000749pt;}
.ls8a{letter-spacing:0.000928pt;}
.lsb1{letter-spacing:0.000933pt;}
.ls2e{letter-spacing:0.001414pt;}
.ls4a{letter-spacing:0.001416pt;}
.ls4e{letter-spacing:0.001420pt;}
.ls17{letter-spacing:0.001899pt;}
.ls97{letter-spacing:0.001908pt;}
.lsbf{letter-spacing:0.002000pt;}
.lsbd{letter-spacing:0.002205pt;}
.lsdc{letter-spacing:0.002323pt;}
.ls8e{letter-spacing:0.002346pt;}
.ls61{letter-spacing:0.002384pt;}
.lsb5{letter-spacing:0.002397pt;}
.ls74{letter-spacing:0.002399pt;}
.ls5d{letter-spacing:0.002400pt;}
.ls2d{letter-spacing:0.002879pt;}
.ls82{letter-spacing:0.003227pt;}
.ls70{letter-spacing:0.003273pt;}
.lsd3{letter-spacing:0.003333pt;}
.ls76{letter-spacing:0.003851pt;}
.ls85{letter-spacing:0.003856pt;}
.ls27{letter-spacing:0.004336pt;}
.ls1{letter-spacing:0.004460pt;}
.ls2{letter-spacing:0.004555pt;}
.ls43{letter-spacing:0.004576pt;}
.lsc0{letter-spacing:0.004762pt;}
.lsb9{letter-spacing:0.005038pt;}
.lsc8{letter-spacing:0.005138pt;}
.ls5{letter-spacing:0.005205pt;}
.lsde{letter-spacing:0.006262pt;}
.ls9b{letter-spacing:0.007186pt;}
.ls53{letter-spacing:0.007409pt;}
.ls45{letter-spacing:0.007557pt;}
.lsaf{letter-spacing:0.007669pt;}
.lse4{letter-spacing:0.008979pt;}
.ls7d{letter-spacing:0.009991pt;}
.ls77{letter-spacing:0.010103pt;}
.lse6{letter-spacing:0.010480pt;}
.ls64{letter-spacing:0.010582pt;}
.ls48{letter-spacing:0.012519pt;}
.ls13{letter-spacing:0.012565pt;}
.ls3{letter-spacing:0.012846pt;}
.ls1e{letter-spacing:0.013002pt;}
.lsc7{letter-spacing:0.013938pt;}
.ls49{letter-spacing:0.014079pt;}
.ls32{letter-spacing:0.014279pt;}
.lsdf{letter-spacing:0.014420pt;}
.ls88{letter-spacing:0.014959pt;}
.lsd5{letter-spacing:0.015156pt;}
.ls59{letter-spacing:0.015241pt;}
.lse5{letter-spacing:0.015365pt;}
.ls6f{letter-spacing:0.015916pt;}
.ls6a{letter-spacing:0.021696pt;}
.lsd1{letter-spacing:0.023536pt;}
.ls33{letter-spacing:0.025538pt;}
.lsa1{letter-spacing:0.027299pt;}
.ls5b{letter-spacing:0.031354pt;}
.lsa0{letter-spacing:0.232727pt;}
.lsa{letter-spacing:0.239104pt;}
.ls2b{letter-spacing:0.290909pt;}
.ls96{letter-spacing:1.147694pt;}
.ls8{letter-spacing:1.338982pt;}
.lsb{letter-spacing:1.351369pt;}
.ls6{letter-spacing:1.365205pt;}
.ls9{letter-spacing:1.366275pt;}
.ls5a{letter-spacing:1.570910pt;}
.lsa2{letter-spacing:1.597260pt;}
.ls81{letter-spacing:1.599895pt;}
.ls9c{letter-spacing:1.602319pt;}
.ls68{letter-spacing:1.602818pt;}
.ls9f{letter-spacing:1.613718pt;}
.ls24{letter-spacing:1.615744pt;}
.ls9d{letter-spacing:1.617401pt;}
.ls26{letter-spacing:1.617899pt;}
.ls7f{letter-spacing:1.621078pt;}
.lsd6{letter-spacing:1.626858pt;}
.ls56{letter-spacing:1.629092pt;}
.ls83{letter-spacing:1.629269pt;}
.ls5c{letter-spacing:2.036365pt;}
.ls60{letter-spacing:2.071646pt;}
.lsd9{letter-spacing:2.082853pt;}
.ls3b{letter-spacing:2.094547pt;}
.ls28{letter-spacing:2.210911pt;}
.lsa8{letter-spacing:2.652749pt;}
.ls31{letter-spacing:2.653258pt;}
.lsd7{letter-spacing:2.653398pt;}
.lse7{letter-spacing:2.653433pt;}
.ls75{letter-spacing:2.654124pt;}
.ls8f{letter-spacing:2.654249pt;}
.ls40{letter-spacing:2.654275pt;}
.ls14{letter-spacing:2.654544pt;}
.ls4{letter-spacing:2.656495pt;}
.lscc{letter-spacing:2.656631pt;}
.ls1f{letter-spacing:2.657546pt;}
.lsa9{letter-spacing:2.658083pt;}
.ls35{letter-spacing:2.658591pt;}
.ls62{letter-spacing:2.658731pt;}
.ls46{letter-spacing:2.658767pt;}
.lscf{letter-spacing:2.661964pt;}
.ls38{letter-spacing:2.662879pt;}
.lsdb{letter-spacing:2.666734pt;}
.lsd8{letter-spacing:2.967275pt;}
.ls7b{letter-spacing:3.258185pt;}
.ls15{letter-spacing:3.779878pt;}
.ls98{letter-spacing:3.786325pt;}
.lsa5{letter-spacing:3.791658pt;}
.ls42{letter-spacing:3.905798pt;}
.ls44{letter-spacing:3.911131pt;}
.ls7{letter-spacing:4.000495pt;}
.ls2c{letter-spacing:4.353546pt;}
.lsba{letter-spacing:4.358879pt;}
.lsae{letter-spacing:4.538186pt;}
.ls52{letter-spacing:4.640444pt;}
.ls30{letter-spacing:4.706792pt;}
.ls3c{letter-spacing:4.720562pt;}
.lse2{letter-spacing:4.721414pt;}
.ls3f{letter-spacing:4.726748pt;}
.lse0{letter-spacing:4.737840pt;}
.lsc{letter-spacing:4.869828pt;}
.lsdd{letter-spacing:5.312473pt;}
.ls8b{letter-spacing:5.312495pt;}
.ls80{letter-spacing:5.969546pt;}
.ls25{letter-spacing:5.974879pt;}
.ls89{letter-spacing:6.160495pt;}
.ls94{letter-spacing:6.283642pt;}
.lsaa{letter-spacing:6.371818pt;}
.ls71{letter-spacing:7.413828pt;}
.lsb8{letter-spacing:9.694533pt;}
.lsb3{letter-spacing:9.699867pt;}
.ls50{letter-spacing:9.716372pt;}
.ls10{letter-spacing:11.795718pt;}
.ls7a{letter-spacing:12.349258pt;}
.ls1d{letter-spacing:12.354591pt;}
.ls1b{letter-spacing:12.916374pt;}
.ls69{letter-spacing:12.974556pt;}
.ls8d{letter-spacing:13.139733pt;}
.ls92{letter-spacing:13.145067pt;}
.lsc6{letter-spacing:14.154957pt;}
.lsc2{letter-spacing:14.464631pt;}
.ls66{letter-spacing:14.545467pt;}
.lsf{letter-spacing:14.771215pt;}
.ls4f{letter-spacing:15.581258pt;}
.ls6c{letter-spacing:15.581398pt;}
.ls47{letter-spacing:15.585546pt;}
.ls4b{letter-spacing:15.586591pt;}
.ls23{letter-spacing:15.590879pt;}
.ls37{letter-spacing:16.116377pt;}
.ls3e{letter-spacing:16.159477pt;}
.lsa4{letter-spacing:16.160749pt;}
.ls3d{letter-spacing:16.162405pt;}
.lse1{letter-spacing:16.164811pt;}
.ls19{letter-spacing:16.174559pt;}
.lsb4{letter-spacing:16.186469pt;}
.ls12{letter-spacing:17.411878pt;}
.lsc5{letter-spacing:17.725577pt;}
.ls57{letter-spacing:17.803651pt;}
.ls4d{letter-spacing:18.087733pt;}
.ls87{letter-spacing:18.240495pt;}
.ls39{letter-spacing:18.269106pt;}
.ls63{letter-spacing:18.363823pt;}
.ls5f{letter-spacing:18.813258pt;}
.ls18{letter-spacing:18.817546pt;}
.ls1c{letter-spacing:18.818591pt;}
.ls51{letter-spacing:18.819608pt;}
.ls65{letter-spacing:18.822879pt;}
.lsda{letter-spacing:18.826734pt;}
.lse{letter-spacing:18.915657pt;}
.ls95{letter-spacing:18.950156pt;}
.ls58{letter-spacing:19.025470pt;}
.ls16{letter-spacing:19.039527pt;}
.lsd0{letter-spacing:19.083652pt;}
.ls4c{letter-spacing:19.306144pt;}
.ls20{letter-spacing:19.374562pt;}
.ls21{letter-spacing:19.432743pt;}
.lsd4{letter-spacing:19.490925pt;}
.ls9a{letter-spacing:19.665471pt;}
.lsc4{letter-spacing:20.369546pt;}
.ls7e{letter-spacing:20.513546pt;}
.ls22{letter-spacing:20.518879pt;}
.ls1a{letter-spacing:20.712745pt;}
.ls78{letter-spacing:22.045258pt;}
.ls34{letter-spacing:22.049546pt;}
.ls55{letter-spacing:22.050591pt;}
.ls54{letter-spacing:22.051608pt;}
.ls5e{letter-spacing:22.053663pt;}
.lsd2{letter-spacing:22.054879pt;}
.ls67{letter-spacing:22.134879pt;}
.ls86{letter-spacing:22.325828pt;}
.ls73{letter-spacing:22.909258pt;}
.ls36{letter-spacing:23.473546pt;}
.ls79{letter-spacing:23.970929pt;}
.ls84{letter-spacing:25.361546pt;}
.ls93{letter-spacing:25.658203pt;}
.lse3{letter-spacing:27.112750pt;}
.ls7c{letter-spacing:29.789116pt;}
.ls6d{letter-spacing:31.501398pt;}
.ls2f{letter-spacing:31.883663pt;}
.lsb2{letter-spacing:41.810767pt;}
.lsb7{letter-spacing:46.603675pt;}
.ls6b{letter-spacing:47.661398pt;}
.lsb6{letter-spacing:49.234591pt;}
.ls6e{letter-spacing:49.393156pt;}
.lsb0{letter-spacing:50.501860pt;}
.ls8c{letter-spacing:50.653991pt;}
.lsa7{letter-spacing:58.916811pt;}
.lsa6{letter-spacing:59.036545pt;}
.ls2a{letter-spacing:59.041878pt;}
.ls99{letter-spacing:59.071684pt;}
.ls91{letter-spacing:59.077017pt;}
.lsac{letter-spacing:78.049878pt;}
.ls29{letter-spacing:78.055212pt;}
.ls72{letter-spacing:85.901991pt;}
.lscb{letter-spacing:87.598544pt;}
.ls90{letter-spacing:93.219608pt;}
.lsab{letter-spacing:95.697878pt;}
.lsca{letter-spacing:96.142544pt;}
.ls41{letter-spacing:126.021923pt;}
.ls9e{letter-spacing:126.080105pt;}
.lsad{letter-spacing:132.415924pt;}
.lscd{letter-spacing:155.325988pt;}
.lsce{letter-spacing:155.987322pt;}
.lsc1{letter-spacing:207.461498pt;}
.lsc9{letter-spacing:230.302544pt;}
.ls0{letter-spacing:306.975635pt;}
.lsbc{letter-spacing:324.521211pt;}
.lsbb{letter-spacing:616.174544pt;}
.lsbe{letter-spacing:684.222879pt;}
.ws70{word-spacing:-58.240049pt;}
.ws62{word-spacing:-58.181867pt;}
.ws64{word-spacing:-45.265492pt;}
.wsad{word-spacing:-43.275672pt;}
.ws5f{word-spacing:-42.065490pt;}
.ws61{word-spacing:-42.007308pt;}
.ws39{word-spacing:-37.899668pt;}
.ws84{word-spacing:-35.667209pt;}
.ws88{word-spacing:-35.651135pt;}
.ws20{word-spacing:-34.611401pt;}
.ws53{word-spacing:-32.337481pt;}
.ws72{word-spacing:-30.720026pt;}
.ws6f{word-spacing:-29.736752pt;}
.ws3a{word-spacing:-29.521250pt;}
.ws3d{word-spacing:-29.090933pt;}
.ws42{word-spacing:-29.079297pt;}
.ws14{word-spacing:-28.295567pt;}
.ws78{word-spacing:-28.241478pt;}
.ws52{word-spacing:-28.183296pt;}
.ws9d{word-spacing:-26.566933pt;}
.ws1f{word-spacing:-26.556307pt;}
.ws2c{word-spacing:-25.738045pt;}
.wsf{word-spacing:-24.575109pt;}
.ws66{word-spacing:-21.783291pt;}
.ws7a{word-spacing:-21.725109pt;}
.ws93{word-spacing:-19.840186pt;}
.ws3f{word-spacing:-18.641470pt;}
.ws65{word-spacing:-16.162923pt;}
.ws31{word-spacing:-15.709104pt;}
.ws73{word-spacing:-15.243649pt;}
.ws0{word-spacing:-14.346200pt;}
.wsa5{word-spacing:-13.933110pt;}
.ws47{word-spacing:-13.933039pt;}
.ws46{word-spacing:-13.848030pt;}
.wsa9{word-spacing:-13.672739pt;}
.wsa1{word-spacing:-13.381829pt;}
.wsd{word-spacing:-12.763372pt;}
.wse{word-spacing:-12.715551pt;}
.ws97{word-spacing:-12.695705pt;}
.ws81{word-spacing:-11.985465pt;}
.ws3{word-spacing:-11.955200pt;}
.ws8d{word-spacing:-11.636373pt;}
.ws80{word-spacing:-11.380951pt;}
.ws57{word-spacing:-11.345464pt;}
.ws69{word-spacing:-10.938191pt;}
.ws5c{word-spacing:-10.763645pt;}
.wsa2{word-spacing:-10.703640pt;}
.ws68{word-spacing:-10.703261pt;}
.ws82{word-spacing:-10.701039pt;}
.ws6a{word-spacing:-10.695705pt;}
.ws1d{word-spacing:-10.573639pt;}
.ws29{word-spacing:-10.520506pt;}
.ws5a{word-spacing:-10.201702pt;}
.ws77{word-spacing:-10.123645pt;}
.ws76{word-spacing:-10.065463pt;}
.ws7b{word-spacing:-10.007281pt;}
.ws30{word-spacing:-9.949099pt;}
.ws4a{word-spacing:-9.890917pt;}
.wsa{word-spacing:-9.836739pt;}
.ws40{word-spacing:-9.832735pt;}
.ws32{word-spacing:-9.716372pt;}
.ws58{word-spacing:-9.658190pt;}
.ws1c{word-spacing:-9.617230pt;}
.ws38{word-spacing:-9.600008pt;}
.wsbb{word-spacing:-9.564096pt;}
.ws48{word-spacing:-9.541826pt;}
.wsb7{word-spacing:-9.510962pt;}
.ws49{word-spacing:-9.483644pt;}
.wsb5{word-spacing:-9.457828pt;}
.wsb{word-spacing:-9.454172pt;}
.ws3c{word-spacing:-9.425462pt;}
.ws8c{word-spacing:-9.367281pt;}
.wsa6{word-spacing:-9.309099pt;}
.ws5d{word-spacing:-9.250917pt;}
.wsb3{word-spacing:-9.245293pt;}
.wsbd{word-spacing:-9.085891pt;}
.ws4b{word-spacing:-9.076371pt;}
.ws26{word-spacing:-8.979623pt;}
.ws41{word-spacing:-8.907644pt;}
.ws4{word-spacing:-8.873356pt;}
.ws2e{word-spacing:-8.820222pt;}
.ws13{word-spacing:-8.794245pt;}
.ws6e{word-spacing:-8.791280pt;}
.wsbc{word-spacing:-8.772401pt;}
.ws2a{word-spacing:-8.713954pt;}
.wsb6{word-spacing:-8.666134pt;}
.wsc0{word-spacing:-8.660820pt;}
.wsaf{word-spacing:-8.607686pt;}
.wsb1{word-spacing:-8.554553pt;}
.ws9{word-spacing:-8.507320pt;}
.ws27{word-spacing:-8.501419pt;}
.wsc{word-spacing:-8.459500pt;}
.wsb4{word-spacing:-8.453598pt;}
.ws56{word-spacing:-8.436371pt;}
.wsbe{word-spacing:-8.400464pt;}
.ws74{word-spacing:-8.378189pt;}
.ws89{word-spacing:-8.261825pt;}
.ws12{word-spacing:-8.220396pt;}
.wsc1{word-spacing:-8.187929pt;}
.ws8{word-spacing:-8.172575pt;}
.wsb2{word-spacing:-8.134795pt;}
.wsbf{word-spacing:-7.975393pt;}
.wsb0{word-spacing:-7.869126pt;}
.ws2f{word-spacing:-7.854552pt;}
.wsae{word-spacing:-7.471261pt;}
.wsa8{word-spacing:-7.465927pt;}
.ws25{word-spacing:-7.438741pt;}
.ws54{word-spacing:-7.040006pt;}
.ws5b{word-spacing:-6.981824pt;}
.ws8b{word-spacing:-6.865460pt;}
.wsa7{word-spacing:-6.458187pt;}
.ws7f{word-spacing:-6.446551pt;}
.wsb8{word-spacing:-6.322930pt;}
.wsba{word-spacing:-6.269796pt;}
.ws6c{word-spacing:-6.045039pt;}
.ws5{word-spacing:-6.020639pt;}
.ws1e{word-spacing:-5.950993pt;}
.wsb9{word-spacing:-5.850039pt;}
.ws11{word-spacing:-5.532867pt;}
.ws59{word-spacing:-5.410914pt;}
.ws9f{word-spacing:-5.371641pt;}
.ws1b{word-spacing:-5.366521pt;}
.ws24{word-spacing:-5.260253pt;}
.ws33{word-spacing:-5.178186pt;}
.ws3b{word-spacing:-5.120004pt;}
.ws28{word-spacing:-4.888316pt;}
.wsa3{word-spacing:-4.887277pt;}
.ws10{word-spacing:-4.825119pt;}
.ws1a{word-spacing:-4.468558pt;}
.wsac{word-spacing:-3.316366pt;}
.ws87{word-spacing:-3.258185pt;}
.ws45{word-spacing:-3.246548pt;}
.ws98{word-spacing:-3.188053pt;}
.ws22{word-spacing:-2.964870pt;}
.ws55{word-spacing:-2.327275pt;}
.wsab{word-spacing:-0.686546pt;}
.ws3e{word-spacing:-0.104727pt;}
.ws2{word-spacing:-0.076513pt;}
.ws96{word-spacing:-0.063761pt;}
.ws43{word-spacing:-0.058182pt;}
.ws2b{word-spacing:-0.053134pt;}
.ws7{word-spacing:-0.047821pt;}
.ws5e{word-spacing:-0.046545pt;}
.ws4c{word-spacing:-0.042507pt;}
.ws90{word-spacing:-0.037194pt;}
.ws17{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.011636pt;}
.ws2d{word-spacing:0.116895pt;}
.wsaa{word-spacing:0.302546pt;}
.ws18{word-spacing:2.385457pt;}
.ws6{word-spacing:2.623570pt;}
.wsa0{word-spacing:4.565735pt;}
.ws79{word-spacing:6.827069pt;}
.ws83{word-spacing:6.923069pt;}
.ws7d{word-spacing:6.933735pt;}
.ws86{word-spacing:7.781735pt;}
.ws15{word-spacing:8.129536pt;}
.ws85{word-spacing:8.485735pt;}
.ws19{word-spacing:10.159221pt;}
.wsa4{word-spacing:11.752737pt;}
.ws16{word-spacing:13.581107pt;}
.ws21{word-spacing:14.421691pt;}
.ws23{word-spacing:14.424269pt;}
.ws7e{word-spacing:15.538700pt;}
.ws63{word-spacing:15.543461pt;}
.ws44{word-spacing:15.544033pt;}
.ws51{word-spacing:16.174559pt;}
.ws99{word-spacing:16.781367pt;}
.ws7c{word-spacing:18.773467pt;}
.ws60{word-spacing:18.776033pt;}
.ws75{word-spacing:18.776594pt;}
.ws1{word-spacing:20.722347pt;}
.ws4e{word-spacing:22.518924pt;}
.ws50{word-spacing:22.529665pt;}
.ws6b{word-spacing:23.432033pt;}
.ws4d{word-spacing:25.786203pt;}
.ws37{word-spacing:30.551973pt;}
.ws6d{word-spacing:38.315069pt;}
.ws8a{word-spacing:38.320402pt;}
.ws71{word-spacing:88.122255pt;}
.ws67{word-spacing:88.180437pt;}
.ws9a{word-spacing:128.717252pt;}
.ws9c{word-spacing:154.598003pt;}
.ws9e{word-spacing:157.939914pt;}
.ws9b{word-spacing:180.053691pt;}
.ws94{word-spacing:200.224358pt;}
.ws95{word-spacing:230.114936pt;}
.ws8e{word-spacing:270.424269pt;}
.ws92{word-spacing:324.834936pt;}
.ws91{word-spacing:358.934003pt;}
.ws8f{word-spacing:586.240358pt;}
.ws34{word-spacing:1958.161672pt;}
.ws36{word-spacing:1981.451389pt;}
.ws35{word-spacing:2108.129672pt;}
._56{margin-left:-27.112750pt;}
._50{margin-left:-17.019504pt;}
._48{margin-left:-15.366396pt;}
._46{margin-left:-9.376888pt;}
._1{margin-left:-7.192228pt;}
._2{margin-left:-5.228407pt;}
._4{margin-left:-4.016947pt;}
._7{margin-left:-2.911765pt;}
._3{margin-left:-1.487748pt;}
._5{width:1.338982pt;}
._0{width:2.371905pt;}
._8{width:3.730022pt;}
._4f{width:4.887353pt;}
._45{width:5.956388pt;}
._f{width:16.093795pt;}
._e{width:17.162256pt;}
._53{width:18.218914pt;}
._4d{width:19.369126pt;}
._c{width:20.477827pt;}
._6{width:21.572484pt;}
._9{width:23.591437pt;}
._42{width:25.424676pt;}
._41{width:26.329806pt;}
._57{width:27.461841pt;}
._d{width:28.692288pt;}
._4a{width:30.809810pt;}
._44{width:31.883663pt;}
._b{width:32.932362pt;}
._a{width:34.792047pt;}
._4b{width:39.256581pt;}
._43{width:40.236072pt;}
._58{width:45.614583pt;}
._49{width:49.079716pt;}
._52{width:58.900737pt;}
._4c{width:61.465248pt;}
._51{width:68.780814pt;}
._47{width:74.356426pt;}
._54{width:125.630251pt;}
._4e{width:126.631532pt;}
._55{width:230.119735pt;}
._26{width:788.375305pt;}
._20{width:898.183077pt;}
._37{width:974.170994pt;}
._19{width:1001.922145pt;}
._38{width:1068.224493pt;}
._2b{width:1130.276934pt;}
._1a{width:1156.219656pt;}
._17{width:1254.754758pt;}
._21{width:1281.149675pt;}
._40{width:1297.898892pt;}
._39{width:1316.328992pt;}
._15{width:1319.997122pt;}
._16{width:1326.989825pt;}
._34{width:1340.597991pt;}
._22{width:1341.775180pt;}
._1e{width:1378.076134pt;}
._2d{width:1395.314987pt;}
._1c{width:1429.741632pt;}
._1f{width:1438.693418pt;}
._1d{width:1464.559629pt;}
._3e{width:1469.412644pt;}
._30{width:1495.307046pt;}
._14{width:1498.503578pt;}
._2c{width:1503.386092pt;}
._3b{width:1521.228767pt;}
._28{width:1534.278265pt;}
._2f{width:1542.048855pt;}
._33{width:1561.789489pt;}
._24{width:1564.598178pt;}
._23{width:1591.886273pt;}
._3f{width:1592.925586pt;}
._2a{width:1595.176860pt;}
._11{width:1608.818795pt;}
._13{width:1611.958218pt;}
._2e{width:1616.031748pt;}
._3c{width:1620.038336pt;}
._1b{width:1631.972780pt;}
._36{width:1637.730386pt;}
._27{width:1670.016559pt;}
._25{width:1695.798287pt;}
._3a{width:1706.138700pt;}
._32{width:1724.166858pt;}
._3d{width:1758.984594pt;}
._12{width:1762.384383pt;}
._18{width:1811.406456pt;}
._31{width:1836.776550pt;}
._29{width:1875.376108pt;}
._35{width:1920.518549pt;}
._10{width:1989.199116pt;}
.fs8{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:137.188000pt;}
.yb6{bottom:138.905333pt;}
.y55{bottom:142.501333pt;}
.y8b{bottom:143.569333pt;}
.y89{bottom:147.165333pt;}
.y17{bottom:150.830667pt;}
.y16{bottom:152.934667pt;}
.y37{bottom:154.156000pt;}
.y149{bottom:157.005333pt;}
.ycd{bottom:169.600000pt;}
.y19f{bottom:169.810667pt;}
.y54{bottom:170.409333pt;}
.y15{bottom:174.852000pt;}
.y125{bottom:176.940000pt;}
.yb5{bottom:177.918667pt;}
.y126{bottom:180.289333pt;}
.y9f{bottom:180.914667pt;}
.y1e3{bottom:182.009333pt;}
.y1ce{bottom:183.058667pt;}
.y148{bottom:183.069333pt;}
.ye0{bottom:183.946667pt;}
.y6d{bottom:184.352000pt;}
.y10c{bottom:184.714667pt;}
.y88{bottom:185.045333pt;}
.y16f{bottom:185.301333pt;}
.y1e2{bottom:185.605333pt;}
.yf8{bottom:186.145333pt;}
.y36{bottom:191.524000pt;}
.ycc{bottom:196.698667pt;}
.y53{bottom:198.316000pt;}
.y14{bottom:199.426667pt;}
.y185{bottom:207.325333pt;}
.y16b{bottom:210.121333pt;}
.y186{bottom:210.674667pt;}
.y124{bottom:211.380000pt;}
.y6c{bottom:211.450667pt;}
.y87{bottom:212.144000pt;}
.y19e{bottom:212.154667pt;}
.yb4{bottom:213.336000pt;}
.y147{bottom:215.378667pt;}
.y1b9{bottom:215.596000pt;}
.y16a{bottom:216.728000pt;}
.y35{bottom:218.653333pt;}
.y146{bottom:218.974667pt;}
.y9e{bottom:219.328000pt;}
.y13{bottom:221.344000pt;}
.y1cd{bottom:221.912000pt;}
.y16d{bottom:223.110667pt;}
.ycb{bottom:223.796000pt;}
.y52{bottom:226.224000pt;}
.y16c{bottom:226.705333pt;}
.y1e1{bottom:229.174667pt;}
.yf7{bottom:229.788000pt;}
.ydf{bottom:229.942667pt;}
.y10b{bottom:230.877333pt;}
.y16e{bottom:232.950667pt;}
.y169{bottom:236.546667pt;}
.y6b{bottom:238.548000pt;}
.y86{bottom:239.241333pt;}
.y184{bottom:245.052000pt;}
.y122{bottom:245.818667pt;}
.y12{bottom:245.918667pt;}
.yb3{bottom:248.753333pt;}
.y123{bottom:249.166667pt;}
.y51{bottom:254.132000pt;}
.y19d{bottom:254.498667pt;}
.y145{bottom:254.878667pt;}
.y9d{bottom:257.740000pt;}
.y1b8{bottom:258.404000pt;}
.y34{bottom:260.356000pt;}
.y1cc{bottom:260.765333pt;}
.y168{bottom:261.246667pt;}
.y167{bottom:264.842667pt;}
.y11{bottom:265.733333pt;}
.y85{bottom:266.340000pt;}
.y10{bottom:267.837333pt;}
.y1fc{bottom:268.602667pt;}
.y1fb{bottom:269.266667pt;}
.yca{bottom:270.620000pt;}
.y1e0{bottom:272.278667pt;}
.yf6{bottom:276.428000pt;}
.y121{bottom:276.661333pt;}
.y120{bottom:280.257333pt;}
.y19c{bottom:281.596000pt;}
.y50{bottom:282.038667pt;}
.yde{bottom:284.046667pt;}
.y6a{bottom:284.590667pt;}
.y10a{bottom:285.981333pt;}
.y1cb{bottom:287.864000pt;}
.y165{bottom:289.446667pt;}
.y84{bottom:289.842667pt;}
.y183{bottom:291.048000pt;}
.y9c{bottom:292.216000pt;}
.yf{bottom:292.412000pt;}
.y83{bottom:293.438667pt;}
.yb2{bottom:294.749333pt;}
.y1f9{bottom:296.365333pt;}
.y215{bottom:298.016000pt;}
.y144{bottom:300.874667pt;}
.y1fa{bottom:301.644000pt;}
.y166{bottom:302.434667pt;}
.y163{bottom:306.030667pt;}
.y33{bottom:306.382667pt;}
.ye{bottom:314.329333pt;}
.y1df{bottom:315.382667pt;}
.y164{bottom:317.105333pt;}
.y214{bottom:321.926667pt;}
.y4f{bottom:325.301333pt;}
.ydd{bottom:325.492000pt;}
.y11f{bottom:326.253333pt;}
.y1b7{bottom:327.554667pt;}
.y82{bottom:327.722667pt;}
.y19b{bottom:327.804000pt;}
.y9b{bottom:328.018667pt;}
.y109{bottom:328.362667pt;}
.yc9{bottom:329.498667pt;}
.y81{bottom:331.318667pt;}
.y1ca{bottom:333.860000pt;}
.yf5{bottom:334.257333pt;}
.yd{bottom:338.904000pt;}
.y69{bottom:339.005333pt;}
.y1f8{bottom:342.361333pt;}
.y162{bottom:344.166667pt;}
.y182{bottom:344.568000pt;}
.y213{bottom:345.837333pt;}
.yb1{bottom:347.908000pt;}
.y4e{bottom:353.208000pt;}
.y143{bottom:354.109333pt;}
.ydc{bottom:356.958667pt;}
.y1de{bottom:358.486667pt;}
.y32{bottom:360.700000pt;}
.yc{bottom:360.821333pt;}
.y9a{bottom:363.822667pt;}
.y80{bottom:369.197333pt;}
.y212{bottom:369.748000pt;}
.y108{bottom:370.574667pt;}
.y181{bottom:371.666667pt;}
.yc8{bottom:374.020000pt;}
.y11e{bottom:375.661333pt;}
.ydb{bottom:376.777333pt;}
.y1c9{bottom:377.045333pt;}
.yf4{bottom:377.900000pt;}
.y1b4{bottom:378.590667pt;}
.y11d{bottom:379.257333pt;}
.y19a{bottom:379.561333pt;}
.y1b5{bottom:379.836000pt;}
.y68{bottom:380.742667pt;}
.y1b6{bottom:380.857333pt;}
.y4d{bottom:381.116000pt;}
.y142{bottom:381.208000pt;}
.y199{bottom:383.157333pt;}
.yb0{bottom:383.325333pt;}
.yb{bottom:385.396000pt;}
.y31{bottom:387.798667pt;}
.y161{bottom:390.162667pt;}
.y211{bottom:393.657333pt;}
.y1f7{bottom:396.032000pt;}
.y7f{bottom:396.296000pt;}
.y180{bottom:399.416000pt;}
.y99{bottom:399.626667pt;}
.y1dd{bottom:402.054667pt;}
.ya{bottom:407.313333pt;}
.y67{bottom:407.886667pt;}
.y141{bottom:408.305333pt;}
.yda{bottom:408.381333pt;}
.y1c8{bottom:408.512000pt;}
.y4c{bottom:409.022667pt;}
.y11c{bottom:413.696000pt;}
.y30{bottom:414.897333pt;}
.y1b2{bottom:415.736000pt;}
.y107{bottom:416.738667pt;}
.y210{bottom:417.568000pt;}
.y1b3{bottom:417.900000pt;}
.yc7{bottom:418.542667pt;}
.yaf{bottom:418.742667pt;}
.y17f{bottom:419.233333pt;}
.yf3{bottom:421.544000pt;}
.y1f6{bottom:423.130667pt;}
.y198{bottom:425.712000pt;}
.y1c7{bottom:432.422667pt;}
.y7e{bottom:434.176000pt;}
.y66{bottom:435.032000pt;}
.y140{bottom:435.404000pt;}
.y98{bottom:435.429333pt;}
.y9{bottom:436.676000pt;}
.y4b{bottom:436.930667pt;}
.y160{bottom:440.152000pt;}
.y20f{bottom:441.478667pt;}
.y15f{bottom:443.748000pt;}
.y1dc{bottom:445.158667pt;}
.y17e{bottom:447.118667pt;}
.y1f5{bottom:450.229333pt;}
.yae{bottom:454.160000pt;}
.yd9{bottom:454.377333pt;}
.y1c6{bottom:456.864000pt;}
.y11b{bottom:459.692000pt;}
.y65{bottom:462.177333pt;}
.yc6{bottom:463.064000pt;}
.y2f{bottom:465.197333pt;}
.y20e{bottom:465.389333pt;}
.yf2{bottom:465.832000pt;}
.y197{bottom:468.054667pt;}
.y106{bottom:471.842667pt;}
.y7d{bottom:472.056000pt;}
.y1db{bottom:472.721333pt;}
.y17d{bottom:474.868000pt;}
.y1b1{bottom:475.696000pt;}
.y4a{bottom:480.193333pt;}
.y13f{bottom:481.400000pt;}
.y97{bottom:481.425333pt;}
.y8{bottom:483.264000pt;}
.y2e{bottom:485.824000pt;}
.y2d{bottom:489.108000pt;}
.y20d{bottom:489.298667pt;}
.yad{bottom:489.577333pt;}
.y17c{bottom:494.685333pt;}
.y1c5{bottom:496.065333pt;}
.y1f4{bottom:496.225333pt;}
.y195{bottom:503.786667pt;}
.y64{bottom:503.914667pt;}
.y7{bottom:507.173333pt;}
.yc5{bottom:507.585333pt;}
.y49{bottom:508.100000pt;}
.yd8{bottom:508.482667pt;}
.y15e{bottom:508.982667pt;}
.yf1{bottom:509.474667pt;}
.y7c{bottom:509.934667pt;}
.y11a{bottom:512.696000pt;}
.y2c{bottom:513.018667pt;}
.y20c{bottom:513.209333pt;}
.y105{bottom:514.222667pt;}
.y193{bottom:518.238667pt;}
.y191{bottom:519.118667pt;}
.y1da{bottom:519.182667pt;}
.y17b{bottom:522.570667pt;}
.y192{bottom:526.740000pt;}
.y1c4{bottom:527.532000pt;}
.y1af{bottom:528.776000pt;}
.y194{bottom:530.885333pt;}
.y6{bottom:531.084000pt;}
.y13e{bottom:534.634667pt;}
.y96{bottom:534.644000pt;}
.yac{bottom:535.573333pt;}
.y48{bottom:536.008000pt;}
.y2b{bottom:536.928000pt;}
.y20b{bottom:537.120000pt;}
.y15c{bottom:537.141333pt;}
.y119{bottom:539.794667pt;}
.y1b0{bottom:540.598667pt;}
.yf0{bottom:542.021333pt;}
.yc3{bottom:542.630667pt;}
.y15d{bottom:543.522667pt;}
.y63{bottom:545.652000pt;}
.y1f3{bottom:545.669333pt;}
.y7b{bottom:547.814667pt;}
.yef{bottom:548.354667pt;}
.yc4{bottom:549.012000pt;}
.y1f2{bottom:549.896000pt;}
.yd7{bottom:549.928000pt;}
.y196{bottom:550.120000pt;}
.y1c3{bottom:551.442667pt;}
.yc2{bottom:552.608000pt;}
.y15b{bottom:553.364000pt;}
.y104{bottom:556.436000pt;}
.y15a{bottom:556.958667pt;}
.y13d{bottom:557.769333pt;}
.yed{bottom:558.332000pt;}
.y2a{bottom:560.838667pt;}
.y20a{bottom:561.030667pt;}
.yee{bottom:561.680000pt;}
.y13c{bottom:561.733333pt;}
.y95{bottom:561.742667pt;}
.y47{bottom:563.914667pt;}
.y118{bottom:566.892000pt;}
.y190{bottom:567.224000pt;}
.y17a{bottom:568.566667pt;}
.y1f1{bottom:573.398667pt;}
.y1c2{bottom:575.352000pt;}
.y1d9{bottom:575.984000pt;}
.y1f0{bottom:576.994667pt;}
.y1ae{bottom:580.608000pt;}
.y29{bottom:584.749333pt;}
.y209{bottom:584.940000pt;}
.y159{bottom:585.256000pt;}
.y7a{bottom:585.694667pt;}
.y62{bottom:587.389333pt;}
.y13a{bottom:588.578667pt;}
.yab{bottom:588.730667pt;}
.y94{bottom:588.841333pt;}
.yd6{bottom:591.372000pt;}
.y46{bottom:591.822667pt;}
.yc1{bottom:596.801333pt;}
.y1c1{bottom:599.794667pt;}
.y13b{bottom:601.566667pt;}
.yec{bottom:601.974667pt;}
.y103{bottom:602.600000pt;}
.y139{bottom:605.162667pt;}
.y28{bottom:608.660000pt;}
.y208{bottom:608.850667pt;}
.y1d8{bottom:609.110667pt;}
.y117{bottom:612.889333pt;}
.y18f{bottom:613.432000pt;}
.y61{bottom:614.534667pt;}
.y1ef{bottom:615.680000pt;}
.y93{bottom:615.940000pt;}
.y1ad{bottom:618.888000pt;}
.y45{bottom:619.730667pt;}
.y158{bottom:619.796000pt;}
.y179{bottom:622.088000pt;}
.yaa{bottom:622.156000pt;}
.ya9{bottom:622.820000pt;}
.y157{bottom:623.392000pt;}
.y79{bottom:623.573333pt;}
.y1d7{bottom:628.928000pt;}
.y27{bottom:632.569333pt;}
.y207{bottom:632.761333pt;}
.yd5{bottom:632.817333pt;}
.y1c0{bottom:638.994667pt;}
.y138{bottom:641.066667pt;}
.y60{bottom:641.678667pt;}
.y92{bottom:643.037333pt;}
.yc0{bottom:643.625333pt;}
.yeb{bottom:648.614667pt;}
.y178{bottom:649.185333pt;}
.y78{bottom:650.672000pt;}
.y1ee{bottom:654.364000pt;}
.y206{bottom:656.672000pt;}
.ya8{bottom:656.909333pt;}
.y1ac{bottom:657.168000pt;}
.y102{bottom:657.704000pt;}
.y156{bottom:661.528000pt;}
.y1d6{bottom:662.192000pt;}
.y44{bottom:662.992000pt;}
.y5{bottom:665.378667pt;}
.y116{bottom:665.893333pt;}
.y18e{bottom:668.785333pt;}
.y5f{bottom:668.824000pt;}
.y26{bottom:669.824000pt;}
.yd4{bottom:674.261333pt;}
.y205{bottom:680.581333pt;}
.y1bf{bottom:685.073333pt;}
.y137{bottom:687.062667pt;}
.y77{bottom:688.552000pt;}
.y91{bottom:689.033333pt;}
.y43{bottom:690.900000pt;}
.ya7{bottom:690.998667pt;}
.ybf{bottom:692.526667pt;}
.y1ed{bottom:693.048000pt;}
.y177{bottom:695.181333pt;}
.y1ab{bottom:695.446667pt;}
.y101{bottom:699.916000pt;}
.y115{bottom:700.564000pt;}
.yea{bottom:702.848000pt;}
.y204{bottom:704.492000pt;}
.ye9{bottom:706.444000pt;}
.y25{bottom:707.077333pt;}
.y155{bottom:707.524000pt;}
.y1d5{bottom:708.652000pt;}
.y5e{bottom:710.561333pt;}
.y18d{bottom:711.128000pt;}
.ybe{bottom:712.344000pt;}
.y42{bottom:718.806667pt;}
.yd3{bottom:720.257333pt;}
.y100{bottom:724.833333pt;}
.ya6{bottom:726.416000pt;}
.y76{bottom:726.432000pt;}
.yff{bottom:727.014667pt;}
.y203{bottom:728.402667pt;}
.y1aa{bottom:729.522667pt;}
.y1ec{bottom:731.733333pt;}
.y114{bottom:738.522667pt;}
.y24{bottom:739.048000pt;}
.y136{bottom:740.297333pt;}
.y90{bottom:742.252000pt;}
.ybd{bottom:746.697333pt;}
.y41{bottom:746.714667pt;}
.y176{bottom:748.702667pt;}
.ye8{bottom:750.088000pt;}
.y5d{bottom:752.298667pt;}
.y202{bottom:752.313333pt;}
.y18c{bottom:753.472000pt;}
.y1a9{bottom:756.621333pt;}
.y154{bottom:757.513333pt;}
.y1eb{bottom:758.830667pt;}
.y153{bottom:761.109333pt;}
.ya5{bottom:761.833333pt;}
.y135{bottom:762.885333pt;}
.y75{bottom:762.982667pt;}
.y23{bottom:763.048000pt;}
.y1d4{bottom:765.453333pt;}
.y8f{bottom:769.350667pt;}
.yfe{bottom:769.396000pt;}
.ybc{bottom:773.796000pt;}
.yd2{bottom:774.362667pt;}
.y40{bottom:774.621333pt;}
.y175{bottom:775.801333pt;}
.y134{bottom:775.873333pt;}
.y201{bottom:776.222667pt;}
.y113{bottom:776.481333pt;}
.y133{bottom:779.469333pt;}
.y1be{bottom:782.212000pt;}
.y1a8{bottom:783.718667pt;}
.y22{bottom:786.957333pt;}
.ye7{bottom:790.780000pt;}
.y1d3{bottom:792.552000pt;}
.y5c{bottom:794.036000pt;}
.ye6{bottom:794.374667pt;}
.y8e{bottom:796.449333pt;}
.y152{bottom:799.245333pt;}
.y18b{bottom:799.678667pt;}
.y200{bottom:800.133333pt;}
.y74{bottom:802.088000pt;}
.y4{bottom:802.264000pt;}
.y3f{bottom:802.529333pt;}
.y174{bottom:802.898667pt;}
.y1ea{bottom:804.826667pt;}
.ya4{bottom:807.829333pt;}
.ybb{bottom:808.841333pt;}
.y21{bottom:810.868000pt;}
.yfd{bottom:811.608000pt;}
.y1a6{bottom:814.736000pt;}
.y132{bottom:815.373333pt;}
.yd1{bottom:815.808000pt;}
.y1d2{bottom:819.650667pt;}
.y1a7{bottom:821.117333pt;}
.y112{bottom:822.477333pt;}
.y8d{bottom:823.548000pt;}
.y1a5{bottom:824.713333pt;}
.y1bd{bottom:826.210667pt;}
.y150{bottom:827.405333pt;}
.yba{bottom:828.658667pt;}
.y3{bottom:830.158667pt;}
.y3e{bottom:830.437333pt;}
.y151{bottom:833.786667pt;}
.y20{bottom:834.778667pt;}
.y5b{bottom:835.773333pt;}
.ye5{bottom:838.018667pt;}
.y12f{bottom:838.648000pt;}
.y73{bottom:841.193333pt;}
.y14f{bottom:843.626667pt;}
.y12e{bottom:844.980000pt;}
.y14e{bottom:847.222667pt;}
.y173{bottom:848.894667pt;}
.y8c{bottom:850.645333pt;}
.y131{bottom:851.362667pt;}
.y130{bottom:854.957333pt;}
.y12c{bottom:854.958667pt;}
.y18a{bottom:855.032000pt;}
.yd0{bottom:857.252000pt;}
.yfc{bottom:857.772000pt;}
.y12d{bottom:858.306667pt;}
.y1e9{bottom:858.498667pt;}
.y1f{bottom:858.689333pt;}
.y1a4{bottom:860.117333pt;}
.ya3{bottom:860.988000pt;}
.y5a{bottom:862.918667pt;}
.yb9{bottom:863.012000pt;}
.y1d1{bottom:866.110667pt;}
.y3d{bottom:873.698667pt;}
.y111{bottom:875.481333pt;}
.y14d{bottom:875.518667pt;}
.y72{bottom:877.744000pt;}
.ye4{bottom:878.710667pt;}
.y1ba{bottom:879.708000pt;}
.y189{bottom:882.130667pt;}
.ye3{bottom:882.306667pt;}
.y1e{bottom:882.598667pt;}
.y1ff{bottom:883.820000pt;}
.ycf{bottom:884.350667pt;}
.y2{bottom:888.702667pt;}
.y59{bottom:890.064000pt;}
.y12b{bottom:890.862667pt;}
.y171{bottom:892.438667pt;}
.y1e8{bottom:893.586667pt;}
.ya2{bottom:896.405333pt;}
.y1e7{bottom:897.182667pt;}
.y1a3{bottom:898.397333pt;}
.y172{bottom:898.820000pt;}
.y3c{bottom:901.606667pt;}
.y170{bottom:902.416000pt;}
.y71{bottom:904.842667pt;}
.yb8{bottom:909.836000pt;}
.y110{bottom:909.920000pt;}
.yfb{bottom:912.876000pt;}
.y129{bottom:915.026667pt;}
.y1fe{bottom:915.552000pt;}
.y1d{bottom:917.004000pt;}
.y58{bottom:917.209333pt;}
.y128{bottom:921.358667pt;}
.y14c{bottom:921.514667pt;}
.y1d0{bottom:922.912000pt;}
.y1{bottom:924.568000pt;}
.y188{bottom:924.685333pt;}
.yce{bottom:925.796000pt;}
.ye2{bottom:925.949333pt;}
.y12a{bottom:927.740000pt;}
.y1bc{bottom:927.956000pt;}
.y3b{bottom:929.513333pt;}
.y127{bottom:931.336000pt;}
.ya1{bottom:931.822667pt;}
.y70{bottom:931.941333pt;}
.y1fd{bottom:935.369333pt;}
.y1e6{bottom:935.866667pt;}
.y1a2{bottom:936.676000pt;}
.yfa{bottom:939.974667pt;}
.y1c{bottom:940.944000pt;}
.y57{bottom:944.353333pt;}
.y10f{bottom:944.358667pt;}
.y1b{bottom:945.764000pt;}
.y3a{bottom:957.421333pt;}
.y6f{bottom:959.040000pt;}
.y14b{bottom:965.122667pt;}
.y187{bottom:967.029333pt;}
.yf9{bottom:967.072000pt;}
.ya0{bottom:967.240000pt;}
.yb7{bottom:968.714667pt;}
.y10e{bottom:968.820000pt;}
.y19{bottom:969.533333pt;}
.ye1{bottom:969.593333pt;}
.y1cf{bottom:970.532000pt;}
.y1e5{bottom:970.956000pt;}
.y1a1{bottom:971.360000pt;}
.y56{bottom:971.498667pt;}
.y1e4{bottom:974.552000pt;}
.y1a{bottom:974.812000pt;}
.y1a0{bottom:974.956000pt;}
.y14a{bottom:975.100000pt;}
.y39{bottom:985.329333pt;}
.y6e{bottom:986.137333pt;}
.y10d{bottom:988.637333pt;}
.y1bb{bottom:1003.966667pt;}
.y18{bottom:1013.236000pt;}
.y38{bottom:1059.728000pt;}
.h37{height:2.656693pt;}
.h34{height:10.096693pt;}
.h3e{height:11.742585pt;}
.hb{height:14.059315pt;}
.h13{height:15.550933pt;}
.hf{height:25.068486pt;}
.h2e{height:30.239067pt;}
.h2c{height:30.244400pt;}
.he{height:31.880400pt;}
.h8{height:33.713664pt;}
.h9{height:35.139115pt;}
.h7{height:35.865600pt;}
.h10{height:38.043849pt;}
.h6{height:39.850400pt;}
.h17{height:40.145488pt;}
.ha{height:41.515221pt;}
.h23{height:41.658217pt;}
.h3b{height:43.466400pt;}
.hd{height:43.636400pt;}
.hc{height:44.281600pt;}
.h11{height:44.348486pt;}
.h41{height:44.353820pt;}
.h5{height:44.632747pt;}
.h3c{height:44.683229pt;}
.h40{height:44.688562pt;}
.h2d{height:46.827221pt;}
.h2b{height:46.832555pt;}
.h39{height:47.156400pt;}
.h3{height:47.820800pt;}
.h3f{height:49.336244pt;}
.h1e{height:51.039735pt;}
.h12{height:52.986400pt;}
.h15{height:52.989733pt;}
.h1a{height:52.995067pt;}
.h3d{height:53.010911pt;}
.h2{height:53.559147pt;}
.h20{height:53.695735pt;}
.h21{height:53.946402pt;}
.h31{height:54.395360pt;}
.h14{height:55.901733pt;}
.h16{height:55.907067pt;}
.h27{height:58.015067pt;}
.h19{height:58.020400pt;}
.h4{height:59.756892pt;}
.h32{height:60.184400pt;}
.h28{height:60.224555pt;}
.h1f{height:60.489733pt;}
.h42{height:60.543067pt;}
.h3a{height:67.379067pt;}
.h30{height:68.779360pt;}
.h29{height:69.604400pt;}
.h18{height:70.285733pt;}
.h1b{height:82.996400pt;}
.h22{height:83.545733pt;}
.h26{height:83.551067pt;}
.h24{height:92.355067pt;}
.h2a{height:94.304693pt;}
.h2f{height:94.310027pt;}
.h1d{height:95.811067pt;}
.h33{height:95.816400pt;}
.h35{height:106.733733pt;}
.h1c{height:122.905733pt;}
.h36{height:126.662027pt;}
.h38{height:130.182027pt;}
.h25{height:132.264400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x29{left:96.000000pt;}
.x2d{left:98.434667pt;}
.x31{left:101.656000pt;}
.xe9{left:102.641333pt;}
.x30{left:106.909333pt;}
.x45{left:110.102667pt;}
.xb{left:111.313333pt;}
.x2b{left:112.565333pt;}
.x44{left:114.142667pt;}
.x34{left:115.925333pt;}
.x1b{left:117.658667pt;}
.xea{left:124.633333pt;}
.x54{left:130.868000pt;}
.x2c{left:133.997333pt;}
.x2f{left:135.006667pt;}
.xe6{left:136.582667pt;}
.x32{left:137.633333pt;}
.x38{left:139.540000pt;}
.x24{left:141.164000pt;}
.xc5{left:142.254667pt;}
.x5a{left:144.482667pt;}
.x1{left:150.706667pt;}
.x9a{left:153.368000pt;}
.x21{left:154.448000pt;}
.x3d{left:157.754667pt;}
.x4e{left:158.782667pt;}
.x9b{left:161.057333pt;}
.xc6{left:163.094667pt;}
.xe5{left:166.178667pt;}
.x51{left:168.274667pt;}
.x3e{left:169.472000pt;}
.x4f{left:173.910667pt;}
.x10{left:175.226667pt;}
.xc7{left:178.566667pt;}
.x9f{left:180.297333pt;}
.x3f{left:181.981333pt;}
.x50{left:185.953333pt;}
.x1e{left:190.597333pt;}
.xc8{left:192.709333pt;}
.x11{left:194.774667pt;}
.x1f{left:196.556000pt;}
.xbb{left:202.185333pt;}
.x77{left:203.725333pt;}
.xcb{left:205.916000pt;}
.x40{left:207.137333pt;}
.xdb{left:208.798667pt;}
.xaf{left:211.912000pt;}
.x12{left:213.660000pt;}
.x82{left:217.005333pt;}
.xbd{left:221.962667pt;}
.x13{left:223.792000pt;}
.x65{left:230.156000pt;}
.x14{left:233.081333pt;}
.x81{left:234.509333pt;}
.xdf{left:238.282667pt;}
.x83{left:239.960000pt;}
.x3{left:244.284000pt;}
.x15{left:245.860000pt;}
.x41{left:247.472000pt;}
.x72{left:250.604000pt;}
.x26{left:251.818667pt;}
.xa0{left:253.832000pt;}
.x98{left:255.018667pt;}
.xaa{left:256.500000pt;}
.x5e{left:258.465333pt;}
.x59{left:261.282667pt;}
.x27{left:262.864000pt;}
.xc9{left:263.893333pt;}
.x62{left:265.214667pt;}
.x39{left:267.361333pt;}
.x19{left:269.820000pt;}
.x16{left:271.573333pt;}
.x3a{left:274.634667pt;}
.xbe{left:276.130667pt;}
.x7c{left:277.528000pt;}
.x86{left:279.370667pt;}
.x1a{left:280.589333pt;}
.x3b{left:281.790667pt;}
.x2{left:283.652000pt;}
.x4b{left:285.686667pt;}
.x28{left:286.774667pt;}
.x3c{left:289.064000pt;}
.x87{left:290.385333pt;}
.x79{left:291.521333pt;}
.x7{left:293.149333pt;}
.xbf{left:294.212000pt;}
.x5d{left:296.540000pt;}
.x8d{left:297.842667pt;}
.x7e{left:300.213333pt;}
.x93{left:302.854667pt;}
.x60{left:304.228000pt;}
.xa7{left:305.812000pt;}
.x42{left:307.746667pt;}
.xd9{left:309.014667pt;}
.x9c{left:310.266667pt;}
.x5c{left:311.330667pt;}
.x97{left:312.241333pt;}
.x17{left:314.012000pt;}
.xa5{left:315.648000pt;}
.xad{left:317.842667pt;}
.x4{left:319.705333pt;}
.x5b{left:321.745333pt;}
.x18{left:322.786667pt;}
.x20{left:324.346667pt;}
.x25{left:325.570667pt;}
.x49{left:327.569333pt;}
.x8b{left:329.365333pt;}
.x33{left:331.561333pt;}
.x4c{left:333.609333pt;}
.xe0{left:335.077333pt;}
.x43{left:336.138667pt;}
.x64{left:337.149333pt;}
.x6{left:339.008000pt;}
.x1c{left:340.090667pt;}
.x66{left:342.034667pt;}
.x7b{left:344.056000pt;}
.x46{left:345.668000pt;}
.x4a{left:347.334667pt;}
.x8{left:349.013333pt;}
.x5{left:350.718667pt;}
.x76{left:353.502667pt;}
.x37{left:355.522667pt;}
.x5f{left:357.210667pt;}
.xda{left:358.197333pt;}
.x63{left:359.141333pt;}
.x9{left:360.858667pt;}
.x8a{left:362.212000pt;}
.x2a{left:363.736000pt;}
.x78{left:366.412000pt;}
.x94{left:368.716000pt;}
.x9d{left:369.904000pt;}
.x7d{left:375.021333pt;}
.xa2{left:380.601333pt;}
.x7f{left:382.914667pt;}
.x84{left:384.029333pt;}
.xa4{left:386.192000pt;}
.x90{left:387.884000pt;}
.xb9{left:390.206667pt;}
.x67{left:392.834667pt;}
.xe7{left:397.333333pt;}
.x9e{left:398.292000pt;}
.xb2{left:401.192000pt;}
.xbc{left:408.597333pt;}
.x95{left:411.705333pt;}
.xb3{left:412.842667pt;}
.x88{left:413.986667pt;}
.xba{left:417.613333pt;}
.x85{left:419.045333pt;}
.x47{left:421.369333pt;}
.x6b{left:422.500000pt;}
.xa3{left:424.458667pt;}
.x80{left:425.893333pt;}
.x6c{left:429.772000pt;}
.x91{left:430.864000pt;}
.xae{left:432.909333pt;}
.xb0{left:434.370667pt;}
.x48{left:435.770667pt;}
.x6d{left:437.190667pt;}
.xe8{left:438.692000pt;}
.x6e{left:444.462667pt;}
.x8e{left:445.497333pt;}
.x52{left:448.916000pt;}
.xca{left:450.490667pt;}
.xb6{left:452.093333pt;}
.x8f{left:453.186667pt;}
.x1d{left:454.897333pt;}
.x96{left:458.486667pt;}
.x92{left:462.254667pt;}
.x4d{left:469.305333pt;}
.xb4{left:473.225333pt;}
.xcc{left:477.552000pt;}
.xa8{left:478.677333pt;}
.xcd{left:483.164000pt;}
.xc{left:485.702667pt;}
.xa1{left:489.289333pt;}
.xa9{left:490.358667pt;}
.xce{left:494.073333pt;}
.xdc{left:495.564000pt;}
.xb7{left:496.658667pt;}
.x61{left:499.516000pt;}
.xb8{left:503.932000pt;}
.xd{left:505.198667pt;}
.xb5{left:506.766667pt;}
.xcf{left:508.532000pt;}
.x89{left:509.708000pt;}
.xc0{left:511.160000pt;}
.xab{left:514.348000pt;}
.x99{left:515.830667pt;}
.x8c{left:517.210667pt;}
.xe{left:519.426667pt;}
.xdd{left:520.322667pt;}
.xac{left:525.493333pt;}
.xc1{left:528.406667pt;}
.x69{left:537.272000pt;}
.xb1{left:541.044000pt;}
.x6a{left:544.544000pt;}
.x68{left:549.144000pt;}
.xde{left:550.392000pt;}
.xe1{left:564.324000pt;}
.xa6{left:573.056000pt;}
.xf{left:574.724000pt;}
.xc2{left:576.856000pt;}
.x35{left:580.469333pt;}
.x53{left:584.680000pt;}
.x6f{left:586.202667pt;}
.x36{left:587.741333pt;}
.x70{left:593.476000pt;}
.x22{left:595.469333pt;}
.x55{left:599.548000pt;}
.x23{left:602.110667pt;}
.x57{left:605.256000pt;}
.x71{left:610.150667pt;}
.xc3{left:616.392000pt;}
.xc4{left:621.936000pt;}
.x58{left:628.861333pt;}
.x73{left:631.340000pt;}
.x56{left:633.974667pt;}
.x74{left:637.109333pt;}
.xe2{left:649.338667pt;}
.xe3{left:654.881333pt;}
.xd0{left:662.805333pt;}
.xd1{left:671.654667pt;}
.xd3{left:675.132000pt;}
.x75{left:679.549333pt;}
.xd4{left:682.404000pt;}
.xe4{left:683.892000pt;}
.xd5{left:690.214667pt;}
.xd2{left:694.422667pt;}
.xd6{left:697.488000pt;}
.x7a{left:703.122667pt;}
.xd7{left:705.298667pt;}
.x2e{left:710.396000pt;}
.xd8{left:712.572000pt;}
}




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