
    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_d0b40e7033729d16b6b283ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_6e733a895cd02513719e93e2.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_98ae5ba9fe23919cc3673e14.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_2b0831607934a720a1bd924e.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_ef5e2a635a145bb20e7b66aa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a33b9e7b6c9af8c9601bf44d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7a3bb4d104ec639699397d67.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_d7aa5306bce71f8128128984.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727000;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_8b09778225d8725271c13f38.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_9a052ba6316efd6c4771240d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_508f79bda4be7dfdbf659560.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6c193cc05d59c9df054d8d0e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734200;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_81c0b24e93de8f53feef9536.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1a02c06c16f5e1b640e2be5e.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b12a07a0015698a0fcf8c91d.woff2')format("woff");}.fff{font-family:fff;line-height:0.934000;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_dcb5b0d544fc91e66806e194.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_046d2713f9dc97681cb6018a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a2ecf5a7a19dafbb04b6b382.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_9c17155439d34d04010fc007.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_68b763e4410e399ef888bf9f.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_82cbf9866654532a31d1a23c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.923000;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_45d317ee3dcb9b12b5ca32c9.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.735000;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_2d8ac8eeb3c3ac218344ecfc.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.920000;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_672bce2bcfdf6ee4b8fa52b5.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_8a39c1e01b1786a1f6eaa6a9.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.673000;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_d77181ecb694f85ef00f3836.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:2.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:ff1b;src:url('chunks/assets/font_284aee9ed238eda27556b737.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_74bb01cd552b81a49fac00de.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_502ebd10fe9c6efe70e8bed2.woff2')format("woff");}.ff1d{font-family:ff1d;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;}
.m2{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);}
.m1c{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);}
.mf{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m24{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);}
.md{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.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.me{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);}
.m1d{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m7{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);}
.m1a{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);}
.m13{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);}
.m6{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m12{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m1e{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m4{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m17{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);}
.mc{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);}
.m15{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);}
.m23{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2f{vertical-align:-86.712000px;}
.v2e{vertical-align:-80.070000px;}
.v1e{vertical-align:-48.864000px;}
.v1d{vertical-align:-39.726000px;}
.v1c{vertical-align:-33.084000px;}
.va{vertical-align:-27.024000px;}
.v1{vertical-align:-25.104000px;}
.v4{vertical-align:-22.854000px;}
.v13{vertical-align:-18.492000px;}
.ve{vertical-align:-16.770000px;}
.v26{vertical-align:-14.184000px;}
.vd{vertical-align:-10.134000px;}
.v3{vertical-align:-8.964000px;}
.v2{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:6.366000px;}
.v11{vertical-align:8.532000px;}
.v24{vertical-align:12.192000px;}
.v21{vertical-align:14.838000px;}
.v7{vertical-align:16.182000px;}
.v19{vertical-align:18.906000px;}
.v1b{vertical-align:19.962000px;}
.v20{vertical-align:21.690000px;}
.v23{vertical-align:23.754000px;}
.v10{vertical-align:25.440000px;}
.v6{vertical-align:27.024000px;}
.vb{vertical-align:31.050000px;}
.v5{vertical-align:34.500000px;}
.v22{vertical-align:36.528000px;}
.vc{vertical-align:38.040000px;}
.v15{vertical-align:39.720000px;}
.v8{vertical-align:43.206000px;}
.v17{vertical-align:44.280000px;}
.v30{vertical-align:48.864000px;}
.v2d{vertical-align:55.752000px;}
.v25{vertical-align:58.206000px;}
.v28{vertical-align:60.462000px;}
.v31{vertical-align:63.852000px;}
.v12{vertical-align:67.212000px;}
.v18{vertical-align:78.780000px;}
.v27{vertical-align:82.782000px;}
.vf{vertical-align:85.704000px;}
.v1f{vertical-align:89.184000px;}
.v14{vertical-align:102.480000px;}
.v16{vertical-align:103.638000px;}
.v2b{vertical-align:112.932000px;}
.v2a{vertical-align:114.066000px;}
.v2c{vertical-align:120.570000px;}
.v29{vertical-align:130.602000px;}
.v1a{vertical-align:148.536000px;}
.ls4{letter-spacing:0.000000px;}
.lsd4{letter-spacing:0.000062px;}
.ls9f{letter-spacing:0.000235px;}
.ls112{letter-spacing:0.000493px;}
.ls9{letter-spacing:0.000502px;}
.ls8{letter-spacing:0.001048px;}
.ls14{letter-spacing:0.001590px;}
.ls66{letter-spacing:0.001601px;}
.lsea{letter-spacing:0.001619px;}
.ls5d{letter-spacing:0.001860px;}
.lsbd{letter-spacing:0.002012px;}
.ls8a{letter-spacing:0.002149px;}
.ls95{letter-spacing:0.002154px;}
.ls6e{letter-spacing:0.002387px;}
.ls40{letter-spacing:0.002613px;}
.lsb1{letter-spacing:0.002676px;}
.ls5e{letter-spacing:0.002682px;}
.ls122{letter-spacing:0.002698px;}
.ls87{letter-spacing:0.002700px;}
.ls3a{letter-spacing:0.002706px;}
.ls41{letter-spacing:0.003181px;}
.ls55{letter-spacing:0.003239px;}
.ls78{letter-spacing:0.003269px;}
.ls97{letter-spacing:0.003325px;}
.ls8d{letter-spacing:0.003541px;}
.lsc6{letter-spacing:0.003562px;}
.ls31{letter-spacing:0.004092px;}
.ls7a{letter-spacing:0.004332px;}
.ls22{letter-spacing:0.004338px;}
.lsb3{letter-spacing:0.004344px;}
.lscf{letter-spacing:0.004379px;}
.ls48{letter-spacing:0.004528px;}
.lsa0{letter-spacing:0.004677px;}
.ls128{letter-spacing:0.004817px;}
.lse4{letter-spacing:0.004893px;}
.lsf7{letter-spacing:0.005408px;}
.lsc{letter-spacing:0.006493px;}
.lsf6{letter-spacing:0.007619px;}
.ls2e{letter-spacing:0.008271px;}
.lsd2{letter-spacing:0.009527px;}
.ls11a{letter-spacing:0.009617px;}
.lseb{letter-spacing:0.009704px;}
.ls86{letter-spacing:0.010746px;}
.ls6b{letter-spacing:0.010823px;}
.ls9d{letter-spacing:0.010988px;}
.lsf0{letter-spacing:0.011119px;}
.ls11{letter-spacing:0.011355px;}
.lsc3{letter-spacing:0.011374px;}
.lsc9{letter-spacing:0.011383px;}
.lsef{letter-spacing:0.012356px;}
.lsbf{letter-spacing:0.012368px;}
.ls1e{letter-spacing:0.012899px;}
.lsdd{letter-spacing:0.012945px;}
.ls3e{letter-spacing:0.014084px;}
.ls11d{letter-spacing:0.016126px;}
.lsbc{letter-spacing:0.016823px;}
.lsaf{letter-spacing:0.017298px;}
.lsfb{letter-spacing:0.019348px;}
.ls118{letter-spacing:0.020084px;}
.ls4c{letter-spacing:0.021661px;}
.ls115{letter-spacing:0.022809px;}
.ls10c{letter-spacing:0.023294px;}
.lsd6{letter-spacing:0.024150px;}
.ls109{letter-spacing:0.024162px;}
.lsda{letter-spacing:0.026608px;}
.ls33{letter-spacing:0.029827px;}
.ls8e{letter-spacing:0.032016px;}
.ls11e{letter-spacing:0.032554px;}
.lse{letter-spacing:0.032602px;}
.ls12f{letter-spacing:0.261818px;}
.ls42{letter-spacing:1.413603px;}
.ls28{letter-spacing:1.638947px;}
.lsd5{letter-spacing:1.650011px;}
.ls99{letter-spacing:1.652113px;}
.ls25{letter-spacing:1.661781px;}
.lsad{letter-spacing:1.666260px;}
.ls83{letter-spacing:1.674146px;}
.ls2b{letter-spacing:1.676136px;}
.ls84{letter-spacing:1.680786px;}
.lsb2{letter-spacing:1.713876px;}
.ls90{letter-spacing:1.721542px;}
.ls7e{letter-spacing:1.771124px;}
.ls4e{letter-spacing:1.783558px;}
.ls39{letter-spacing:1.799876px;}
.ls19{letter-spacing:1.803170px;}
.ls116{letter-spacing:1.809170px;}
.ls16{letter-spacing:1.814137px;}
.ls58{letter-spacing:1.816843px;}
.ls1f{letter-spacing:1.820137px;}
.ls36{letter-spacing:1.822843px;}
.ls3d{letter-spacing:1.824228px;}
.ls117{letter-spacing:1.826628px;}
.ls1b{letter-spacing:1.832628px;}
.lsa6{letter-spacing:1.852246px;}
.ls34{letter-spacing:2.356366px;}
.lscc{letter-spacing:2.639778px;}
.lsb0{letter-spacing:2.674328px;}
.lsb9{letter-spacing:2.875066px;}
.lsb8{letter-spacing:2.880002px;}
.lsc1{letter-spacing:2.890232px;}
.ls91{letter-spacing:2.980135px;}
.ls12{letter-spacing:2.984915px;}
.ls65{letter-spacing:2.985072px;}
.ls23{letter-spacing:2.985267px;}
.lsb4{letter-spacing:2.986053px;}
.lsf2{letter-spacing:2.986834px;}
.ls103{letter-spacing:2.988103px;}
.ls21{letter-spacing:2.988211px;}
.ls2{letter-spacing:2.988532px;}
.lsba{letter-spacing:2.989223px;}
.ls10d{letter-spacing:2.989409px;}
.lsfc{letter-spacing:2.989739px;}
.ls32{letter-spacing:2.990915px;}
.ls69{letter-spacing:2.991072px;}
.ls8f{letter-spacing:2.994532px;}
.ls2f{letter-spacing:2.994710px;}
.lsab{letter-spacing:3.457957px;}
.lsb5{letter-spacing:3.632153px;}
.ls68{letter-spacing:3.638153px;}
.lsa7{letter-spacing:3.650644px;}
.lsa4{letter-spacing:3.748276px;}
.ls5c{letter-spacing:3.771239px;}
.lsde{letter-spacing:4.265644px;}
.ls73{letter-spacing:4.276379px;}
.ls76{letter-spacing:4.279648px;}
.ls8c{letter-spacing:4.664637px;}
.lsa8{letter-spacing:4.704621px;}
.lsf3{letter-spacing:5.311591px;}
.ls46{letter-spacing:5.976532px;}
.ls44{letter-spacing:5.982532px;}
.ls67{letter-spacing:6.715050px;}
.ls96{letter-spacing:6.721050px;}
.ls56{letter-spacing:7.043428px;}
.lsc5{letter-spacing:7.134551px;}
.lse5{letter-spacing:7.136605px;}
.lsf1{letter-spacing:7.137193px;}
.ls61{letter-spacing:7.140493px;}
.ls105{letter-spacing:7.144621px;}
.ls60{letter-spacing:7.172012px;}
.lse8{letter-spacing:7.172698px;}
.ls64{letter-spacing:7.172700px;}
.ls101{letter-spacing:7.173181px;}
.ls57{letter-spacing:7.173657px;}
.ls77{letter-spacing:7.266710px;}
.lsd9{letter-spacing:9.098189px;}
.ls12c{letter-spacing:10.633578px;}
.ls53{letter-spacing:10.905181px;}
.lsed{letter-spacing:10.906893px;}
.ls123{letter-spacing:10.910108px;}
.ls49{letter-spacing:10.911181px;}
.lsa{letter-spacing:10.930918px;}
.ls2a{letter-spacing:13.270183px;}
.lsc4{letter-spacing:13.892915px;}
.ls120{letter-spacing:13.894031px;}
.lse6{letter-spacing:13.894834px;}
.ls5f{letter-spacing:13.898915px;}
.ls114{letter-spacing:14.465467px;}
.ls10{letter-spacing:14.530921px;}
.ls6c{letter-spacing:14.546012px;}
.ls102{letter-spacing:14.548332px;}
.ls94{letter-spacing:14.549412px;}
.ls3c{letter-spacing:14.596376px;}
.lsfa{letter-spacing:15.185467px;}
.lse7{letter-spacing:15.381181px;}
.ls104{letter-spacing:15.567706px;}
.ls2d{letter-spacing:16.272710px;}
.ls2c{letter-spacing:16.617617px;}
.ls126{letter-spacing:16.884557px;}
.lsf5{letter-spacing:17.054700px;}
.lse9{letter-spacing:17.060700px;}
.ls113{letter-spacing:17.480915px;}
.ls3b{letter-spacing:17.528915px;}
.lsf{letter-spacing:17.534915px;}
.lsb6{letter-spacing:17.535537px;}
.lsa3{letter-spacing:17.552915px;}
.ls50{letter-spacing:18.179412px;}
.ls45{letter-spacing:18.183181px;}
.lse2{letter-spacing:18.185412px;}
.ls18{letter-spacing:18.196379px;}
.ls3{letter-spacing:18.452851px;}
.lsaa{letter-spacing:19.590710px;}
.lsbb{letter-spacing:19.993358px;}
.ls8b{letter-spacing:21.164915px;}
.ls124{letter-spacing:21.167971px;}
.ls38{letter-spacing:21.170915px;}
.ls111{letter-spacing:21.403654px;}
.ls5{letter-spacing:21.419468px;}
.ls11c{letter-spacing:21.469109px;}
.lsa5{letter-spacing:21.600018px;}
.ls63{letter-spacing:21.713412px;}
.lsb7{letter-spacing:21.719412px;}
.ls4b{letter-spacing:21.796382px;}
.ls30{letter-spacing:21.861836px;}
.ls10f{letter-spacing:21.927291px;}
.lsf8{letter-spacing:22.020924px;}
.ls6a{letter-spacing:22.026924px;}
.lsc8{letter-spacing:22.058200px;}
.lsb{letter-spacing:22.123655px;}
.ls130{letter-spacing:22.189109px;}
.ls106{letter-spacing:22.467706px;}
.ls12b{letter-spacing:22.698445px;}
.lsd0{letter-spacing:22.914615px;}
.ls85{letter-spacing:22.914710px;}
.lse0{letter-spacing:23.170928px;}
.ls93{letter-spacing:24.218202px;}
.lsec{letter-spacing:24.493050px;}
.ls12e{letter-spacing:24.545475px;}
.ls6{letter-spacing:24.800915px;}
.ls121{letter-spacing:24.802031px;}
.lsc0{letter-spacing:24.802053px;}
.ls7{letter-spacing:24.806915px;}
.lsc2{letter-spacing:24.811223px;}
.lse1{letter-spacing:24.901050px;}
.lsff{letter-spacing:25.339011px;}
.lsf4{letter-spacing:25.355412px;}
.ls9a{letter-spacing:25.404630px;}
.ls82{letter-spacing:25.902710px;}
.ls129{letter-spacing:25.903409px;}
.ls125{letter-spacing:26.560677px;}
.lsa2{letter-spacing:27.158915px;}
.ls10b{letter-spacing:27.192710px;}
.lsa1{letter-spacing:27.883660px;}
.ls7c{letter-spacing:28.537050px;}
.ls5b{letter-spacing:28.865479px;}
.ls80{letter-spacing:30.698207px;}
.ls81{letter-spacing:31.680026px;}
.ls7f{letter-spacing:32.400027px;}
.ls27{letter-spacing:33.235234px;}
.lsdc{letter-spacing:34.167301px;}
.ls51{letter-spacing:34.824248px;}
.ls7d{letter-spacing:35.869121px;}
.ls1{letter-spacing:35.883533px;}
.lsac{letter-spacing:36.198710px;}
.lsd{letter-spacing:36.327303px;}
.ls4d{letter-spacing:37.084059px;}
.lse3{letter-spacing:37.468677px;}
.ls47{letter-spacing:39.888557px;}
.ls52{letter-spacing:39.894557px;}
.ls62{letter-spacing:41.330700px;}
.ls1c{letter-spacing:46.237739px;}
.ls100{letter-spacing:52.238700px;}
.ls29{letter-spacing:56.554362px;}
.ls1a{letter-spacing:60.781739px;}
.ls4f{letter-spacing:61.806557px;}
.ls43{letter-spacing:61.812557px;}
.ls88{letter-spacing:64.417739px;}
.ls37{letter-spacing:71.641739px;}
.ls11b{letter-spacing:71.647739px;}
.ls59{letter-spacing:87.554915px;}
.ls20{letter-spacing:89.821739px;}
.ls17{letter-spacing:89.827739px;}
.ls26{letter-spacing:100.306362px;}
.ls9c{letter-spacing:112.557455px;}
.lsce{letter-spacing:142.861140px;}
.ls10e{letter-spacing:150.275858px;}
.lsbe{letter-spacing:153.360128px;}
.lscd{letter-spacing:179.259352px;}
.lsd8{letter-spacing:188.532242px;}
.lsd1{letter-spacing:199.650504px;}
.ls108{letter-spacing:217.998710px;}
.ls79{letter-spacing:236.940710px;}
.lsee{letter-spacing:241.723838px;}
.ls9b{letter-spacing:242.364710px;}
.ls74{letter-spacing:246.324710px;}
.lsca{letter-spacing:247.874017px;}
.lsd7{letter-spacing:257.718710px;}
.ls6d{letter-spacing:265.352948px;}
.ls9e{letter-spacing:271.446615px;}
.ls6f{letter-spacing:274.140710px;}
.ls75{letter-spacing:277.746710px;}
.ls71{letter-spacing:304.422710px;}
.lscb{letter-spacing:304.710710px;}
.ls10a{letter-spacing:305.292710px;}
.ls72{letter-spacing:314.400710px;}
.lsdb{letter-spacing:329.629366px;}
.ls70{letter-spacing:342.696710px;}
.ls0{letter-spacing:349.381819px;}
.ls4a{letter-spacing:442.604005px;}
.lsc7{letter-spacing:524.749528px;}
.ls98{letter-spacing:544.189544px;}
.ls54{letter-spacing:551.651369px;}
.lsf9{letter-spacing:606.371414px;}
.ls127{letter-spacing:610.429600px;}
.ls3f{letter-spacing:647.345994px;}
.ls107{letter-spacing:675.164199px;}
.ls119{letter-spacing:750.436989px;}
.ls7b{letter-spacing:769.287914px;}
.ls92{letter-spacing:787.157020px;}
.lsfe{letter-spacing:789.317021px;}
.ls12a{letter-spacing:823.157050px;}
.ls1d{letter-spacing:830.749783px;}
.ls11f{letter-spacing:848.357071px;}
.lsfd{letter-spacing:850.058890px;}
.ls5a{letter-spacing:880.953461px;}
.lsdf{letter-spacing:893.782563px;}
.ls35{letter-spacing:908.968030px;}
.ls89{letter-spacing:921.600768px;}
.lsae{letter-spacing:923.368042px;}
.lsa9{letter-spacing:931.811686px;}
.ls24{letter-spacing:940.058965px;}
.lsd3{letter-spacing:946.997153px;}
.ls110{letter-spacing:973.506266px;}
.ls13{letter-spacing:998.706287px;}
.ls15{letter-spacing:1006.364475px;}
.ls12d{letter-spacing:1103.106374px;}
.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;}
}
.ws4b{word-spacing:-65.454600px;}
.wsa1{word-spacing:-50.809387px;}
.ws5a{word-spacing:-47.324343px;}
.ws5e{word-spacing:-43.592764px;}
.ws22{word-spacing:-42.637126px;}
.ws17{word-spacing:-38.937826px;}
.ws6a{word-spacing:-34.370970px;}
.ws65{word-spacing:-33.453846px;}
.ws56{word-spacing:-33.211407px;}
.ws46{word-spacing:-32.727300px;}
.ws82{word-spacing:-31.771663px;}
.ws4c{word-spacing:-31.706208px;}
.ws62{word-spacing:-31.509844px;}
.wsce{word-spacing:-29.887800px;}
.ws4e{word-spacing:-29.061842px;}
.ws60{word-spacing:-29.015076px;}
.ws7d{word-spacing:-28.955301px;}
.ws63{word-spacing:-28.237114px;}
.ws1e{word-spacing:-27.646998px;}
.ws68{word-spacing:-26.600142px;}
.ws7c{word-spacing:-26.540366px;}
.ws9b{word-spacing:-25.731440px;}
.ws5d{word-spacing:-25.725440px;}
.ws73{word-spacing:-25.407085px;}
.wsb4{word-spacing:-24.506202px;}
.ws64{word-spacing:-24.440748px;}
.ws95{word-spacing:-23.252708px;}
.wsb2{word-spacing:-22.935292px;}
.wsa0{word-spacing:-22.149837px;}
.ws53{word-spacing:-18.183288px;}
.wsbe{word-spacing:-17.410924px;}
.ws5b{word-spacing:-17.149105px;}
.wsb8{word-spacing:-16.887287px;}
.wsb7{word-spacing:-16.821832px;}
.ws6b{word-spacing:-16.625468px;}
.ws0{word-spacing:-16.139475px;}
.ws3a{word-spacing:-15.970922px;}
.ws27{word-spacing:-15.840013px;}
.wsbb{word-spacing:-15.669831px;}
.ws48{word-spacing:-15.512740px;}
.ws37{word-spacing:-15.447286px;}
.wsbf{word-spacing:-15.185467px;}
.ws6f{word-spacing:-15.120013px;}
.wsaa{word-spacing:-14.989103px;}
.ws72{word-spacing:-14.792740px;}
.ws4a{word-spacing:-14.111859px;}
.ws10{word-spacing:-13.930141px;}
.ws71{word-spacing:-13.876375px;}
.ws97{word-spacing:-13.810921px;}
.wsbc{word-spacing:-13.549102px;}
.ws3{word-spacing:-13.449600px;}
.ws6{word-spacing:-13.433460px;}
.ws3c{word-spacing:-13.418193px;}
.ws7{word-spacing:-13.379662px;}
.ws15{word-spacing:-13.090856px;}
.wsb9{word-spacing:-12.960011px;}
.wsc5{word-spacing:-12.894556px;}
.ws35{word-spacing:-12.829102px;}
.ws90{word-spacing:-12.763647px;}
.ws2e{word-spacing:-12.567283px;}
.ws34{word-spacing:-12.501829px;}
.ws9f{word-spacing:-12.174556px;}
.wsab{word-spacing:-11.912737px;}
.ws80{word-spacing:-11.847283px;}
.ws88{word-spacing:-11.520010px;}
.ws49{word-spacing:-11.476915px;}
.wsa8{word-spacing:-11.454555px;}
.ws58{word-spacing:-11.417140px;}
.ws45{word-spacing:-11.389100px;}
.ws31{word-spacing:-11.323646px;}
.ws29{word-spacing:-11.258191px;}
.ws36{word-spacing:-11.192737px;}
.ws2c{word-spacing:-11.127282px;}
.wsc8{word-spacing:-11.118262px;}
.ws91{word-spacing:-11.061827px;}
.ws12{word-spacing:-10.998710px;}
.ws2d{word-spacing:-10.996373px;}
.ws20{word-spacing:-10.930918px;}
.ws21{word-spacing:-10.865464px;}
.ws3b{word-spacing:-10.800009px;}
.ws3d{word-spacing:-10.734554px;}
.ws30{word-spacing:-10.669100px;}
.ws9{word-spacing:-10.635944px;}
.ws28{word-spacing:-10.603645px;}
.wsd{word-spacing:-10.582145px;}
.ws38{word-spacing:-10.538191px;}
.ws8d{word-spacing:-10.472736px;}
.ws43{word-spacing:-10.407281px;}
.ws92{word-spacing:-10.341827px;}
.wscc{word-spacing:-10.281403px;}
.wsc9{word-spacing:-10.167830px;}
.wsc3{word-spacing:-10.145463px;}
.ws14{word-spacing:-10.102076px;}
.ws66{word-spacing:-10.086554px;}
.ws1b{word-spacing:-10.042301px;}
.ws4{word-spacing:-9.982525px;}
.wsc2{word-spacing:-9.949099px;}
.ws19{word-spacing:-9.922750px;}
.wsbd{word-spacing:-9.883645px;}
.wsd2{word-spacing:-9.743423px;}
.ws1a{word-spacing:-9.683647px;}
.ws44{word-spacing:-9.628372px;}
.ws98{word-spacing:-9.556372px;}
.wscd{word-spacing:-9.510298px;}
.ws13{word-spacing:-9.504320px;}
.ws32{word-spacing:-9.425462px;}
.wsa4{word-spacing:-9.360008px;}
.ws8{word-spacing:-9.247945px;}
.wsd4{word-spacing:-9.211420px;}
.ws5{word-spacing:-9.194147px;}
.wscf{word-spacing:-9.151644px;}
.ws67{word-spacing:-9.050026px;}
.ws96{word-spacing:-9.032735px;}
.wsd3{word-spacing:-9.032093px;}
.ws2b{word-spacing:-8.967280px;}
.ws81{word-spacing:-8.901826px;}
.wsae{word-spacing:-8.770916px;}
.wsd0{word-spacing:-8.733215px;}
.wsd1{word-spacing:-8.374562px;}
.wsc6{word-spacing:-8.368584px;}
.wsba{word-spacing:-8.181825px;}
.ws33{word-spacing:-8.050916px;}
.ws16{word-spacing:-8.009930px;}
.ws89{word-spacing:-7.920007px;}
.ws78{word-spacing:-7.854552px;}
.ws79{word-spacing:-7.789097px;}
.wsc7{word-spacing:-7.776806px;}
.wsc4{word-spacing:-7.396370px;}
.wsaf{word-spacing:-7.252370px;}
.ws47{word-spacing:-7.069097px;}
.ws52{word-spacing:-7.003642px;}
.ws2f{word-spacing:-6.938188px;}
.ws2a{word-spacing:-6.872733px;}
.ws74{word-spacing:-6.623136px;}
.ws6c{word-spacing:-6.283642px;}
.ws6d{word-spacing:-6.218187px;}
.ws1d{word-spacing:-6.216662px;}
.ws1f{word-spacing:-5.825459px;}
.ws40{word-spacing:-5.760005px;}
.ws70{word-spacing:-5.629096px;}
.ws8c{word-spacing:-5.563641px;}
.wsb0{word-spacing:-5.498186px;}
.ws3f{word-spacing:-5.040004px;}
.ws11{word-spacing:-5.027128px;}
.wsac{word-spacing:-4.974550px;}
.wsb5{word-spacing:-4.778186px;}
.ws3e{word-spacing:-4.719277px;}
.wsa6{word-spacing:-4.516367px;}
.ws84{word-spacing:-4.385458px;}
.wsc0{word-spacing:-4.254549px;}
.wsad{word-spacing:-3.861821px;}
.wsc1{word-spacing:-3.730912px;}
.wsa5{word-spacing:-3.665458px;}
.ws4f{word-spacing:-3.586912px;}
.ws41{word-spacing:-3.272730px;}
.ws7f{word-spacing:-3.076366px;}
.wsa9{word-spacing:-2.945457px;}
.ws42{word-spacing:-2.814548px;}
.wscb{word-spacing:-0.783060px;}
.wsca{word-spacing:-0.777083px;}
.ws9c{word-spacing:-0.445091px;}
.ws2{word-spacing:-0.167372px;}
.ws1c{word-spacing:-0.059776px;}
.wsa{word-spacing:-0.053798px;}
.ws51{word-spacing:-0.052364px;}
.wse{word-spacing:0.000000px;}
.ws77{word-spacing:0.011955px;}
.ws54{word-spacing:0.013091px;}
.ws57{word-spacing:0.078546px;}
.ws6e{word-spacing:0.340364px;}
.ws99{word-spacing:2.631275px;}
.wsf{word-spacing:2.683639px;}
.ws18{word-spacing:3.180062px;}
.ws39{word-spacing:3.220366px;}
.ws93{word-spacing:3.285821px;}
.ws87{word-spacing:3.299613px;}
.ws8e{word-spacing:3.359389px;}
.ws7b{word-spacing:3.420112px;}
.ws94{word-spacing:3.613094px;}
.ws8f{word-spacing:3.744003px;}
.ws83{word-spacing:3.874912px;}
.ws8b{word-spacing:4.005822px;}
.ws55{word-spacing:5.941198px;}
.ws8a{word-spacing:6.624006px;}
.ws59{word-spacing:7.049971px;}
.ws9a{word-spacing:7.065563px;}
.wsa7{word-spacing:10.027645px;}
.ws85{word-spacing:10.158554px;}
.wsa3{word-spacing:10.552046px;}
.ws9e{word-spacing:10.695563px;}
.ws9d{word-spacing:14.188046px;}
.ws7e{word-spacing:16.569796px;}
.wsb{word-spacing:18.345254px;}
.wsc{word-spacing:18.399053px;}
.ws50{word-spacing:19.555577px;}
.ws1{word-spacing:23.384371px;}
.ws5c{word-spacing:23.536046px;}
.ws4d{word-spacing:25.235971px;}
.ws7a{word-spacing:25.242112px;}
.wsb6{word-spacing:33.309846px;}
.ws26{word-spacing:34.370970px;}
.ws69{word-spacing:71.051615px;}
.ws76{word-spacing:94.266121px;}
.wsb3{word-spacing:99.202992px;}
.ws86{word-spacing:157.927135px;}
.ws61{word-spacing:170.838665px;}
.wsa2{word-spacing:210.828541px;}
.ws75{word-spacing:212.615615px;}
.ws5f{word-spacing:264.626581px;}
.wsb1{word-spacing:605.297959px;}
.ws23{word-spacing:1747.506911px;}
.ws24{word-spacing:2228.383881px;}
.ws25{word-spacing:2254.584812px;}
._68{margin-left:-35.934575px;}
._67{margin-left:-28.080023px;}
._66{margin-left:-26.378204px;}
._45{margin-left:-24.567772px;}
._46{margin-left:-13.270183px;}
._51{margin-left:-9.997773px;}
._0{margin-left:-8.091257px;}
._65{margin-left:-7.088809px;}
._3{margin-left:-5.881958px;}
._8{margin-left:-4.572864px;}
._1{margin-left:-2.668393px;}
._6{margin-left:-1.560154px;}
._5{width:1.667750px;}
._2{width:2.668393px;}
._3d{width:3.729415px;}
._43{width:5.015801px;}
._3e{width:6.453753px;}
._3b{width:10.901095px;}
._3a{width:14.499166px;}
._3c{width:16.952741px;}
._7{width:18.345254px;}
._4{width:20.959727px;}
._37{width:22.828410px;}
._49{width:23.916206px;}
._a{width:25.763284px;}
._9{width:27.342617px;}
._36{width:28.912103px;}
._32{width:29.952205px;}
._52{width:31.852187px;}
._b{width:32.936356px;}
._34{width:34.332280px;}
._44{width:36.291082px;}
._35{width:38.732977px;}
._33{width:42.760678px;}
._47{width:43.789127px;}
._6a{width:45.766601px;}
._5d{width:50.429098px;}
._6e{width:54.666233px;}
._57{width:61.030888px;}
._38{width:63.698086px;}
._39{width:68.987009px;}
._4d{width:77.170300px;}
._5e{width:82.844231px;}
._50{width:86.076864px;}
._54{width:89.157773px;}
._62{width:92.114200px;}
._63{width:100.461275px;}
._4a{width:101.558744px;}
._56{width:105.325304px;}
._4b{width:121.580016px;}
._4e{width:135.734867px;}
._55{width:138.559841px;}
._42{width:141.825755px;}
._59{width:143.521216px;}
._5f{width:145.314484px;}
._58{width:147.444896px;}
._40{width:154.221048px;}
._6c{width:159.334515px;}
._60{width:165.817514px;}
._5c{width:167.350171px;}
._6d{width:176.316511px;}
._4c{width:184.174590px;}
._3f{width:185.362317px;}
._64{width:189.548428px;}
._41{width:194.689129px;}
._6b{width:198.911688px;}
._69{width:205.568288px;}
._48{width:257.758354px;}
._4f{width:277.006097px;}
._61{width:309.165370px;}
._5b{width:344.134096px;}
._5a{width:350.703445px;}
._53{width:377.124260px;}
._2d{width:509.288759px;}
._1f{width:528.619800px;}
._20{width:1118.997862px;}
._2b{width:1134.385076px;}
._f{width:1156.494392px;}
._18{width:1182.292460px;}
._2a{width:1214.333829px;}
._e{width:1217.017468px;}
._1b{width:1246.665718px;}
._15{width:1268.001227px;}
._10{width:1274.786995px;}
._11{width:1282.079340px;}
._21{width:1287.238614px;}
._1d{width:1304.661177px;}
._26{width:1340.789432px;}
._19{width:1355.965944px;}
._17{width:1366.578545px;}
._22{width:1371.553094px;}
._14{width:1400.805029px;}
._1a{width:1482.016258px;}
._28{width:1500.236838px;}
._12{width:1507.732732px;}
._d{width:1568.193070px;}
._1e{width:1574.541259px;}
._13{width:1595.746732px;}
._1c{width:1616.026025px;}
._2c{width:1623.516545px;}
._2f{width:1632.118518px;}
._2e{width:1646.037035px;}
._16{width:1751.320684px;}
._27{width:1796.549812px;}
._30{width:1837.033558px;}
._23{width:1861.122117px;}
._24{width:1867.963465px;}
._25{width:1913.320819px;}
._31{width:1914.450210px;}
._29{width:2261.117437px;}
._c{width:2263.133644px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs9{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs7{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs3{font-size:117.160200px;}
.fs2{font-size:167.372400px;}
.y0{bottom:0.000000px;}
.ye1{bottom:155.830500px;}
.y86{bottom:156.268500px;}
.yab{bottom:158.032500px;}
.y40{bottom:160.314000px;}
.ya8{bottom:164.268000px;}
.ya7{bottom:169.258500px;}
.y23{bottom:173.425500px;}
.ye0{bottom:174.355500px;}
.yaa{bottom:175.639500px;}
.ya9{bottom:181.474500px;}
.y6e{bottom:190.800000px;}
.y3f{bottom:191.493000px;}
.y157{bottom:202.957500px;}
.y85{bottom:203.331000px;}
.y124{bottom:209.079000px;}
.y156{bottom:210.136500px;}
.yf3{bottom:210.559500px;}
.y140{bottom:212.059500px;}
.ya6{bottom:212.305500px;}
.y123{bottom:213.124500px;}
.y155{bottom:214.182000px;}
.ydf{bottom:219.256500px;}
.y6d{bottom:221.286000px;}
.y3e{bottom:222.673500px;}
.yc8{bottom:231.751500px;}
.y16e{bottom:232.047000px;}
.y84{bottom:233.815500px;}
.y16f{bottom:239.226000px;}
.yf2{bottom:242.154000px;}
.y111{bottom:242.545500px;}
.y183{bottom:242.731500px;}
.ya5{bottom:242.791500px;}
.y16c{bottom:243.271500px;}
.y16d{bottom:249.654000px;}
.y6c{bottom:251.770500px;}
.y3d{bottom:253.852500px;}
.y170{bottom:254.341500px;}
.ye{bottom:259.473000px;}
.y122{bottom:265.935000px;}
.y154{bottom:268.050000px;}
.yde{bottom:271.002000px;}
.y1e3{bottom:272.094000px;}
.yf1{bottom:272.638500px;}
.y83{bottom:272.787000px;}
.y13f{bottom:272.865000px;}
.y1f7{bottom:273.096000px;}
.ya4{bottom:273.277500px;}
.yc7{bottom:275.689500px;}
.y82{bottom:276.832500px;}
.y196{bottom:282.256500px;}
.y6b{bottom:284.467500px;}
.y3c{bottom:285.033000px;}
.yd{bottom:287.119500px;}
.y182{bottom:291.076500px;}
.y16b{bottom:295.744500px;}
.y121{bottom:296.421000px;}
.y153{bottom:300.850500px;}
.y1e2{bottom:302.190000px;}
.y110{bottom:302.787000px;}
.yf0{bottom:303.124500px;}
.y13e{bottom:303.351000px;}
.y1ca{bottom:303.415500px;}
.y1ab{bottom:306.051000px;}
.ya3{bottom:306.708000px;}
.y1e1{bottom:309.369000px;}
.y195{bottom:312.742500px;}
.y1e0{bottom:313.414500px;}
.yc{bottom:314.766000px;}
.y6a{bottom:314.952000px;}
.y3b{bottom:316.212000px;}
.ya1{bottom:317.932500px;}
.yc6{bottom:319.626000px;}
.y81{bottom:319.849500px;}
.ya2{bottom:327.100500px;}
.y16a{bottom:328.078500px;}
.y120{bottom:328.869000px;}
.y152{bottom:331.336500px;}
.ydd{bottom:331.599000px;}
.y1c9{bottom:331.999500px;}
.y10f{bottom:333.273000px;}
.yef{bottom:333.610500px;}
.y13d{bottom:333.837000px;}
.y1c8{bottom:333.901500px;}
.y1f6{bottom:334.380000px;}
.y1aa{bottom:336.537000px;}
.yb{bottom:342.412500px;}
.y69{bottom:345.438000px;}
.y181{bottom:353.056500px;}
.y1df{bottom:354.735000px;}
.y169{bottom:358.564500px;}
.y11f{bottom:359.355000px;}
.ydc{bottom:362.085000px;}
.y80{bottom:362.865000px;}
.yc5{bottom:363.562500px;}
.ya0{bottom:363.832500px;}
.y13c{bottom:364.321500px;}
.y3a{bottom:364.449000px;}
.y194{bottom:364.488000px;}
.y1f5{bottom:364.864500px;}
.y1a9{bottom:367.023000px;}
.ya{bottom:370.059000px;}
.y1c6{bottom:370.639500px;}
.y10e{bottom:375.912000px;}
.y68{bottom:375.924000px;}
.y151{bottom:381.159000px;}
.y1c5{bottom:382.480500px;}
.y1c7{bottom:383.424000px;}
.y180{bottom:383.542500px;}
.y150{bottom:385.204500px;}
.y1de{bottom:385.221000px;}
.yee{bottom:386.463000px;}
.y1c4{bottom:387.469500px;}
.y11e{bottom:389.839500px;}
.y13b{bottom:392.353500px;}
.ydb{bottom:392.571000px;}
.y13a{bottom:394.807500px;}
.y1f4{bottom:395.350500px;}
.y39{bottom:395.629500px;}
.y1a8{bottom:397.509000px;}
.yc4{bottom:404.515500px;}
.y7f{bottom:405.882000px;}
.y67{bottom:408.619500px;}
.y168{bottom:413.241000px;}
.y17f{bottom:414.027000px;}
.y9f{bottom:415.578000px;}
.y10d{bottom:418.551000px;}
.y11d{bottom:420.325500px;}
.yda{bottom:423.057000px;}
.y193{bottom:425.140500px;}
.y1dd{bottom:426.541500px;}
.y38{bottom:426.808500px;}
.y1a7{bottom:427.993500px;}
.y1c3{bottom:434.113500px;}
.yed{bottom:435.729000px;}
.y14f{bottom:439.072500px;}
.y66{bottom:439.105500px;}
.y139{bottom:441.034500px;}
.y1f3{bottom:447.160500px;}
.y7e{bottom:448.897500px;}
.y10c{bottom:449.037000px;}
.y192{bottom:455.626500px;}
.yc3{bottom:456.261000px;}
.y37{bottom:457.987500px;}
.y1a6{bottom:458.479500px;}
.y17e{bottom:460.389000px;}
.y1c2{bottom:464.598000px;}
.y1dc{bottom:467.862000px;}
.y167{bottom:467.917500px;}
.yd9{bottom:467.958000px;}
.y14e{bottom:469.558500px;}
.y65{bottom:469.591500px;}
.y11c{bottom:474.033000px;}
.y9e{bottom:475.884000px;}
.y10b{bottom:480.451500px;}
.y191{bottom:486.112500px;}
.y108{bottom:486.687000px;}
.y138{bottom:487.260000px;}
.y1a5{bottom:488.965500px;}
.y36{bottom:489.168000px;}
.y9{bottom:491.260500px;}
.y107{bottom:491.676000px;}
.y7d{bottom:491.914500px;}
.y1c0{bottom:493.182000px;}
.y1bf{bottom:495.084000px;}
.y10a{bottom:498.058500px;}
.y1db{bottom:498.348000px;}
.y14d{bottom:500.044500px;}
.y64{bottom:500.077500px;}
.y1c1{bottom:501.022500px;}
.yec{bottom:502.972500px;}
.y109{bottom:503.892000px;}
.y9d{bottom:504.468000px;}
.y9c{bottom:506.370000px;}
.y17d{bottom:506.749500px;}
.y1f2{bottom:508.444500px;}
.yd8{bottom:512.860500px;}
.yc2{bottom:516.472500px;}
.y190{bottom:516.597000px;}
.y1a4{bottom:519.451500px;}
.y7c{bottom:522.400500px;}
.y166{bottom:522.594000px;}
.y11b{bottom:524.154000px;}
.y63{bottom:530.562000px;}
.yeb{bottom:533.458500px;}
.y106{bottom:534.316500px;}
.y35{bottom:537.405000px;}
.y1f1{bottom:538.930500px;}
.y137{bottom:539.005500px;}
.y9b{bottom:539.512500px;}
.y1be{bottom:541.726500px;}
.yd7{bottom:543.345000px;}
.y8{bottom:543.672000px;}
.yc0{bottom:545.056500px;}
.ybf{bottom:546.958500px;}
.y18f{bottom:547.083000px;}
.y1a3{bottom:549.937500px;}
.y1da{bottom:550.093500px;}
.y7b{bottom:550.983000px;}
.y7a{bottom:552.885000px;}
.yc1{bottom:552.895500px;}
.y165{bottom:553.080000px;}
.y17c{bottom:553.110000px;}
.y50{bottom:553.938000px;}
.y14c{bottom:554.104500px;}
.y99{bottom:556.342500px;}
.y9a{bottom:560.965500px;}
.y62{bottom:563.259000px;}
.y34{bottom:568.584000px;}
.y1f0{bottom:569.416500px;}
.y7{bottom:570.570000px;}
.yd6{bottom:573.831000px;}
.y18e{bottom:577.569000px;}
.y1a2{bottom:580.422000px;}
.yea{bottom:584.424000px;}
.y105{bottom:586.062000px;}
.ybe{bottom:587.910000px;}
.y1bd{bottom:588.370500px;}
.y61{bottom:593.743500px;}
.y208{bottom:595.930500px;}
.y11a{bottom:596.283000px;}
.y6{bottom:597.469500px;}
.y98{bottom:597.489000px;}
.y97{bottom:599.391000px;}
.y17b{bottom:599.472000px;}
.y33{bottom:599.764500px;}
.y136{bottom:599.811000px;}
.y1ef{bottom:599.901000px;}
.y4f{bottom:600.787500px;}
.y14b{bottom:604.578000px;}
.y79{bottom:604.630500px;}
.y164{bottom:606.673500px;}
.y18d{bottom:608.055000px;}
.y1d9{bottom:610.126500px;}
.y1bb{bottom:616.954500px;}
.y1ba{bottom:618.855000px;}
.y22{bottom:621.754500px;}
.y207{bottom:622.830000px;}
.y60{bottom:624.229500px;}
.y1bc{bottom:624.793500px;}
.yd5{bottom:625.576500px;}
.y119{bottom:626.767500px;}
.y134{bottom:628.395000px;}
.y96{bottom:629.877000px;}
.y133{bottom:630.297000px;}
.y32{bottom:630.943500px;}
.y4e{bottom:631.273500px;}
.y14a{bottom:631.477500px;}
.ybd{bottom:631.846500px;}
.y1a1{bottom:632.167500px;}
.ye9{bottom:635.391000px;}
.y135{bottom:636.234000px;}
.y18c{bottom:638.541000px;}
.y1d8{bottom:640.612500px;}
.y17a{bottom:645.832500px;}
.y104{bottom:646.303500px;}
.y206{bottom:649.729500px;}
.y1ee{bottom:651.712500px;}
.y21{bottom:652.240500px;}
.y78{bottom:652.789500px;}
.y5f{bottom:654.715500px;}
.y132{bottom:660.781500px;}
.y4d{bottom:661.758000px;}
.y31{bottom:662.124000px;}
.y18b{bottom:669.025500px;}
.y1b9{bottom:670.600500px;}
.y1d7{bottom:671.098500px;}
.y94{bottom:672.925500px;}
.ybc{bottom:673.882500px;}
.ybb{bottom:675.784500px;}
.y205{bottom:676.627500px;}
.y103{bottom:676.789500px;}
.y95{bottom:677.548500px;}
.y163{bottom:678.157500px;}
.y118{bottom:682.008000px;}
.y5e{bottom:685.201500px;}
.yd4{bottom:686.173500px;}
.ye8{bottom:686.358000px;}
.y131{bottom:691.267500px;}
.y4c{bottom:692.244000px;}
.y20{bottom:692.617500px;}
.y1a0{bottom:693.082500px;}
.y179{bottom:697.764000px;}
.y1d6{bottom:701.584500px;}
.y204{bottom:703.527000px;}
.y149{bottom:705.619500px;}
.y102{bottom:707.274000px;}
.y162{bottom:708.643500px;}
.y30{bottom:710.361000px;}
.y1ed{bottom:712.995000px;}
.y77{bottom:713.091000px;}
.y5d{bottom:715.686000px;}
.y93{bottom:715.974000px;}
.yd3{bottom:716.659500px;}
.yba{bottom:716.736000px;}
.y1f{bottom:719.517000px;}
.y18a{bottom:720.771000px;}
.y130{bottom:721.753500px;}
.y4b{bottom:722.730000px;}
.y203{bottom:730.426500px;}
.y1b8{bottom:731.472000px;}
.y1d5{bottom:732.070500px;}
.y101{bottom:735.858000px;}
.y148{bottom:736.105500px;}
.y117{bottom:737.248500px;}
.ye7{bottom:737.323500px;}
.y100{bottom:737.760000px;}
.y19f{bottom:738.513000px;}
.y5{bottom:741.493500px;}
.y2f{bottom:741.540000px;}
.y1ec{bottom:743.481000px;}
.y76{bottom:743.577000px;}
.y1e{bottom:746.416500px;}
.y5c{bottom:748.383000px;}
.y12f{bottom:752.239500px;}
.y4a{bottom:753.216000px;}
.y92{bottom:754.977000px;}
.y202{bottom:757.326000px;}
.yd2{bottom:757.516500px;}
.y91{bottom:759.022500px;}
.y178{bottom:759.744000px;}
.y161{bottom:761.115000px;}
.yd1{bottom:761.562000px;}
.y1b7{bottom:761.958000px;}
.y1d4{bottom:762.555000px;}
.y147{bottom:766.591500px;}
.yff{bottom:768.246000px;}
.yb9{bottom:768.481500px;}
.y2e{bottom:772.719000px;}
.y1d{bottom:773.316000px;}
.y1eb{bottom:773.967000px;}
.y75{bottom:774.063000px;}
.y5b{bottom:778.867500px;}
.y189{bottom:781.423500px;}
.y12e{bottom:782.724000px;}
.y19e{bottom:783.942000px;}
.y201{bottom:784.224000px;}
.ye6{bottom:788.290500px;}
.y177{bottom:790.230000px;}
.y116{bottom:792.489000px;}
.y1d3{bottom:793.041000px;}
.yfe{bottom:798.732000px;}
.y49{bottom:800.065500px;}
.y1c{bottom:800.214000px;}
.y90{bottom:802.071000px;}
.y2d{bottom:803.899500px;}
.y74{bottom:804.547500px;}
.y1b6{bottom:804.555000px;}
.yd0{bottom:806.463000px;}
.y1b5{bottom:808.600500px;}
.y5a{bottom:809.353500px;}
.y200{bottom:811.123500px;}
.y160{bottom:813.586500px;}
.y1ea{bottom:819.720000px;}
.y1d2{bottom:823.527000px;}
.y146{bottom:823.594500px;}
.y188{bottom:825.183000px;}
.y1b{bottom:827.113500px;}
.yb8{bottom:828.693000px;}
.y19d{bottom:829.372500px;}
.y8f{bottom:832.555500px;}
.y12d{bottom:834.469500px;}
.y73{bottom:835.033500px;}
.y2c{bottom:835.078500px;}
.ycf{bottom:836.949000px;}
.y176{bottom:837.712500px;}
.y1ff{bottom:838.023000px;}
.y59{bottom:839.839500px;}
.ye5{bottom:841.143000px;}
.y15f{bottom:845.922000px;}
.y48{bottom:846.913500px;}
.y115{bottom:847.729500px;}
.y1e9{bottom:850.204500px;}
.yfd{bottom:850.477500px;}
.y1a{bottom:854.013000px;}
.y1b4{bottom:855.243000px;}
.yb7{bottom:859.179000px;}
.y1fe{bottom:864.922500px;}
.y72{bottom:865.519500px;}
.yce{bottom:867.435000px;}
.y187{bottom:870.055500px;}
.y58{bottom:870.325500px;}
.y19c{bottom:874.801500px;}
.y15e{bottom:876.408000px;}
.y145{bottom:880.597500px;}
.y19{bottom:880.912500px;}
.y2b{bottom:883.315500px;}
.y8e{bottom:884.301000px;}
.y175{bottom:885.195000px;}
.y12c{bottom:885.561000px;}
.y1b3{bottom:885.729000px;}
.y1fd{bottom:891.820500px;}
.y47{bottom:893.763000px;}
.y1e8{bottom:895.957500px;}
.y71{bottom:896.005500px;}
.ycd{bottom:897.919500px;}
.y57{bottom:900.811500px;}
.yb6{bottom:901.624500px;}
.y4{bottom:902.547000px;}
.y114{bottom:902.970000px;}
.y19b{bottom:905.287500px;}
.y1d1{bottom:905.758500px;}
.y18{bottom:907.810500px;}
.ye4{bottom:908.386500px;}
.yfc{bottom:910.719000px;}
.y2a{bottom:914.496000px;}
.y186{bottom:914.929500px;}
.y174{bottom:915.681000px;}
.y1fc{bottom:918.720000px;}
.y12b{bottom:921.876000px;}
.y1e7{bottom:926.443500px;}
.y70{bottom:926.491500px;}
.y1b2{bottom:928.326000px;}
.ycc{bottom:928.405500px;}
.y15d{bottom:928.879500px;}
.y1b1{bottom:932.371500px;}
.y56{bottom:933.507000px;}
.y3{bottom:933.928500px;}
.y17{bottom:934.710000px;}
.y113{bottom:935.418000px;}
.y19a{bottom:935.773500px;}
.y144{bottom:937.600500px;}
.ye3{bottom:938.872500px;}
.y46{bottom:940.612500px;}
.yb5{bottom:944.071500px;}
.y8d{bottom:944.607000px;}
.y12a{bottom:944.790000px;}
.y1fb{bottom:945.619500px;}
.y29{bottom:945.675000px;}
.y129{bottom:948.774000px;}
.yfb{bottom:949.312500px;}
.yfa{bottom:953.358000px;}
.y1e6{bottom:956.929500px;}
.y6f{bottom:956.976000px;}
.y185{bottom:959.802000px;}
.y16{bottom:961.609500px;}
.y55{bottom:963.993000px;}
.y1d0{bottom:965.793000px;}
.y199{bottom:966.259500px;}
.y173{bottom:967.612500px;}
.y1fa{bottom:972.519000px;}
.y128{bottom:975.673500px;}
.y28{bottom:976.855500px;}
.y1b0{bottom:979.015500px;}
.ycb{bottom:980.151000px;}
.y15c{bottom:981.352500px;}
.y45{bottom:987.462000px;}
.y8c{bottom:987.655500px;}
.y15{bottom:988.509000px;}
.y112{bottom:990.900000px;}
.yb4{bottom:991.813500px;}
.y54{bottom:994.477500px;}
.y143{bottom:994.603500px;}
.yf9{bottom:995.997000px;}
.y1cf{bottom:996.279000px;}
.y198{bottom:996.744000px;}
.y1f9{bottom:999.417000px;}
.y2{bottom:999.790500px;}
.y127{bottom:1002.573000px;}
.y1e5{bottom:1002.681000px;}
.y184{bottom:1004.674500px;}
.y1af{bottom:1007.598000px;}
.y27{bottom:1008.034500px;}
.y1ae{bottom:1009.500000px;}
.y44{bottom:1017.948000px;}
.y172{bottom:1018.711500px;}
.y15b{bottom:1022.599500px;}
.yb3{bottom:1023.504000px;}
.y53{bottom:1024.963500px;}
.ye2{bottom:1025.466000px;}
.y1f8{bottom:1026.316500px;}
.yf8{bottom:1026.483000px;}
.y1ce{bottom:1026.763500px;}
.y14{bottom:1027.213500px;}
.yca{bottom:1028.310000px;}
.y15a{bottom:1029.778500px;}
.y126{bottom:1030.069500px;}
.y8b{bottom:1030.704000px;}
.y13{bottom:1032.636000px;}
.y1e4{bottom:1033.167000px;}
.y159{bottom:1033.824000px;}
.y26{bottom:1039.213500px;}
.y1ad{bottom:1039.986000px;}
.y1{bottom:1040.139000px;}
.y43{bottom:1048.434000px;}
.y197{bottom:1048.489500px;}
.y142{bottom:1049.959500px;}
.yb2{bottom:1050.403500px;}
.yb1{bottom:1054.113000px;}
.y52{bottom:1055.449500px;}
.y1cd{bottom:1057.249500px;}
.y11{bottom:1059.342000px;}
.y12{bottom:1065.280500px;}
.yf7{bottom:1075.183500px;}
.y125{bottom:1076.677500px;}
.yb0{bottom:1077.027000px;}
.y171{bottom:1077.303000px;}
.yc9{bottom:1077.688500px;}
.y8a{bottom:1078.846500px;}
.y42{bottom:1078.920000px;}
.yaf{bottom:1081.011000px;}
.y1cc{bottom:1085.310000px;}
.y141{bottom:1085.509500px;}
.y51{bottom:1085.935500px;}
.y158{bottom:1086.295500px;}
.y25{bottom:1087.452000px;}
.y1ac{bottom:1091.731500px;}
.y1cb{bottom:1098.570000px;}
.yae{bottom:1103.926500px;}
.yad{bottom:1107.910500px;}
.y10{bottom:1108.509000px;}
.y41{bottom:1109.404500px;}
.yf6{bottom:1109.899500px;}
.y89{bottom:1110.660000px;}
.yf5{bottom:1111.647000px;}
.y88{bottom:1112.407500px;}
.yac{bottom:1135.407000px;}
.yf4{bottom:1138.545000px;}
.y87{bottom:1139.307000px;}
.yf{bottom:1139.890500px;}
.y24{bottom:1192.194000px;}
.hc{height:17.494800px;}
.h16{height:27.741776px;}
.ha{height:31.382100px;}
.hf{height:33.713523px;}
.h9{height:35.865450px;}
.h7{height:40.348800px;}
.hb{height:42.799330px;}
.h6{height:44.831700px;}
.h17{height:46.326090px;}
.hd{height:46.865494px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h10{height:50.727315px;}
.h2e{height:51.821700px;}
.h24{height:53.072100px;}
.h2d{height:53.078100px;}
.h3{height:53.798400px;}
.h20{height:55.029450px;}
.h30{height:55.035450px;}
.h2b{height:56.463290px;}
.h29{height:56.698950px;}
.h28{height:57.467523px;}
.h2c{height:59.619450px;}
.h3c{height:59.663700px;}
.h25{height:59.669700px;}
.h2{height:60.254040px;}
.h44{height:60.737523px;}
.h23{height:60.767700px;}
.h14{height:62.432100px;}
.h11{height:62.889450px;}
.h27{height:62.895450px;}
.h32{height:65.264100px;}
.h2a{height:65.270100px;}
.h13{height:65.272950px;}
.h3e{height:66.909315px;}
.h1b{height:67.227450px;}
.h26{height:67.910100px;}
.h15{height:69.422100px;}
.h19{height:69.603024px;}
.he{height:70.365450px;}
.h3f{height:70.371450px;}
.h1a{height:77.973450px;}
.h12{height:79.071450px;}
.h3d{height:79.077450px;}
.h1c{height:79.363200px;}
.h40{height:80.553024px;}
.h41{height:85.173024px;}
.h18{height:88.095024px;}
.h36{height:93.370950px;}
.h3b{height:93.988950px;}
.h43{height:96.561290px;}
.h38{height:103.899450px;}
.h2f{height:105.129024px;}
.h1f{height:105.135024px;}
.h37{height:105.635523px;}
.h33{height:106.029024px;}
.h45{height:107.327494px;}
.h34{height:109.552950px;}
.h1d{height:114.645450px;}
.h22{height:115.065024px;}
.h42{height:115.773315px;}
.h4{height:118.812914px;}
.h31{height:138.268950px;}
.h21{height:138.274950px;}
.h39{height:145.641290px;}
.h35{height:149.931450px;}
.h1e{height:150.927024px;}
.h3a{height:156.435450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x19{left:108.000000px;}
.x1a{left:110.739000px;}
.x21{left:113.910000px;}
.xed{left:115.471500px;}
.x1e{left:120.273000px;}
.x1d{left:126.636000px;}
.x2a{left:127.963500px;}
.xc5{left:129.363000px;}
.x24{left:130.416000px;}
.x73{left:131.767500px;}
.xdc{left:133.282500px;}
.xc3{left:135.159000px;}
.x2b{left:138.022500px;}
.xee{left:140.212500px;}
.x3e{left:141.889500px;}
.x1f{left:144.042000px;}
.x20{left:145.179000px;}
.x74{left:148.785000px;}
.xe6{left:152.832000px;}
.x2e{left:154.114500px;}
.x8c{left:155.521500px;}
.xa0{left:157.135500px;}
.x12{left:158.809500px;}
.xd0{left:160.173000px;}
.xc0{left:161.907000px;}
.xab{left:164.673000px;}
.x22{left:167.586000px;}
.x8d{left:169.582500px;}
.xac{left:171.165000px;}
.x85{left:172.207500px;}
.x11{left:173.754000px;}
.x48{left:177.462000px;}
.x59{left:179.898000px;}
.x9d{left:181.851000px;}
.xd4{left:184.977000px;}
.x17{left:187.258500px;}
.xdd{left:190.236000px;}
.xc9{left:193.887000px;}
.x93{left:195.238500px;}
.xd1{left:199.908000px;}
.xc1{left:201.751500px;}
.x1{left:208.275000px;}
.xb3{left:210.157500px;}
.xa5{left:212.109000px;}
.xf{left:214.422000px;}
.x18{left:216.423000px;}
.x52{left:218.343000px;}
.xc{left:219.948000px;}
.x10{left:221.125500px;}
.x2c{left:222.910500px;}
.x8f{left:225.496500px;}
.xb{left:227.244000px;}
.x53{left:228.376500px;}
.x2{left:232.623000px;}
.xca{left:236.665500px;}
.x68{left:240.169500px;}
.x2f{left:243.475500px;}
.xd5{left:246.735000px;}
.xbf{left:248.245500px;}
.x9f{left:251.121000px;}
.x97{left:253.558500px;}
.x2d{left:254.845500px;}
.x3a{left:258.819000px;}
.x40{left:260.286000px;}
.xe3{left:263.352000px;}
.xdb{left:265.291500px;}
.x30{left:267.579000px;}
.x7d{left:271.978500px;}
.x3{left:274.819500px;}
.x5c{left:276.720000px;}
.x9c{left:280.201500px;}
.x49{left:281.730000px;}
.x5d{left:284.697000px;}
.x69{left:286.071000px;}
.x90{left:288.748500px;}
.x77{left:291.652500px;}
.xb9{left:292.734000px;}
.x54{left:295.591500px;}
.xb4{left:301.327500px;}
.x41{left:305.649000px;}
.x63{left:306.939000px;}
.xc7{left:308.712000px;}
.xe4{left:310.729500px;}
.xd9{left:315.142500px;}
.xa9{left:317.880000px;}
.x6a{left:319.027500px;}
.xa4{left:320.221500px;}
.x42{left:325.561500px;}
.x89{left:327.003000px;}
.x7{left:329.793000px;}
.xce{left:331.429500px;}
.xc4{left:335.289000px;}
.x8a{left:337.488000px;}
.x9e{left:341.182500px;}
.x45{left:343.038000px;}
.x5a{left:344.317500px;}
.x7a{left:346.975500px;}
.x91{left:348.579000px;}
.xe0{left:349.678500px;}
.x35{left:351.493500px;}
.x64{left:352.699500px;}
.xd3{left:355.221000px;}
.xad{left:356.971500px;}
.xc2{left:358.326000px;}
.x4{left:359.667000px;}
.xda{left:361.822500px;}
.x65{left:363.123000px;}
.x36{left:365.040000px;}
.x55{left:366.178500px;}
.x57{left:368.839500px;}
.x9a{left:369.940500px;}
.x3f{left:371.059500px;}
.x23{left:373.006500px;}
.x5{left:375.504000px;}
.x58{left:377.344500px;}
.x39{left:378.820500px;}
.x6{left:381.384000px;}
.xd{left:382.602000px;}
.x6f{left:385.096500px;}
.x3b{left:386.557500px;}
.x8{left:392.640000px;}
.x76{left:394.116000px;}
.x34{left:395.409000px;}
.x3c{left:398.929500px;}
.xc8{left:400.602000px;}
.x70{left:402.553500px;}
.x43{left:404.536500px;}
.x9{left:405.966000px;}
.xaa{left:407.154000px;}
.x8e{left:408.192000px;}
.x1c{left:409.203000px;}
.x78{left:410.620500px;}
.x5b{left:415.251000px;}
.x56{left:418.674000px;}
.x7e{left:419.928000px;}
.xba{left:421.762500px;}
.x37{left:424.191000px;}
.xb5{left:426.948000px;}
.xd6{left:428.577000px;}
.xbb{left:437.761500px;}
.x4a{left:442.671000px;}
.x7f{left:445.356000px;}
.x79{left:448.506000px;}
.xbc{left:451.728000px;}
.xc6{left:454.099500px;}
.xd2{left:456.249000px;}
.x4b{left:460.045500px;}
.x3d{left:465.265500px;}
.xe5{left:470.922000px;}
.x66{left:472.606500px;}
.xde{left:477.447000px;}
.xd7{left:480.082500px;}
.x50{left:481.354500px;}
.x4d{left:484.060500px;}
.x94{left:486.781500px;}
.x92{left:488.061000px;}
.x4c{left:489.541500px;}
.x46{left:491.562000px;}
.x4e{left:493.605000px;}
.x51{left:495.351000px;}
.xdf{left:497.668500px;}
.xa6{left:501.348000px;}
.xe8{left:503.035500px;}
.x7b{left:506.596500px;}
.x82{left:509.071500px;}
.xe{left:511.759500px;}
.xa7{left:512.917500px;}
.x4f{left:515.128500px;}
.xe9{left:516.217500px;}
.xd8{left:520.399500px;}
.xcf{left:521.842500px;}
.x9b{left:528.439500px;}
.x83{left:530.434500px;}
.x95{left:531.478500px;}
.x44{left:534.162000px;}
.x67{left:535.795500px;}
.xea{left:537.229500px;}
.xa8{left:538.318500px;}
.x38{left:541.906500px;}
.x86{left:547.245000px;}
.xbd{left:549.312000px;}
.xb6{left:550.434000px;}
.x71{left:552.046500px;}
.xbe{left:553.131000px;}
.xb7{left:558.105000px;}
.x8b{left:561.430500px;}
.xb8{left:564.342000px;}
.x25{left:567.115500px;}
.x72{left:570.001500px;}
.x6b{left:578.458500px;}
.x26{left:587.080500px;}
.x31{left:589.077000px;}
.xae{left:592.371000px;}
.x27{left:597.141000px;}
.x6c{left:603.063000px;}
.xaf{left:605.349000px;}
.x75{left:607.300500px;}
.x47{left:615.514500px;}
.x13{left:619.098000px;}
.xb0{left:623.640000px;}
.xb1{left:631.311000px;}
.x14{left:637.551000px;}
.xcb{left:641.703000px;}
.xb2{left:643.710000px;}
.x15{left:647.508000px;}
.xa1{left:650.802000px;}
.xe1{left:654.801000px;}
.xcc{left:659.077500px;}
.xe2{left:662.470500px;}
.x16{left:667.018500px;}
.xa2{left:668.235000px;}
.x32{left:670.954500px;}
.xa3{left:674.478000px;}
.x98{left:680.991000px;}
.x80{left:689.893500px;}
.x5e{left:692.505000px;}
.x33{left:694.738500px;}
.x5f{left:706.053000px;}
.x6d{left:713.782500px;}
.x81{left:715.281000px;}
.xcd{left:722.679000px;}
.x99{left:724.374000px;}
.x60{left:729.837000px;}
.x6e{left:733.746000px;}
.x61{left:736.111500px;}
.x96{left:737.344500px;}
.x62{left:743.209500px;}
.xeb{left:749.899500px;}
.x28{left:756.112500px;}
.xe7{left:763.435500px;}
.x84{left:767.952000px;}
.xec{left:770.116500px;}
.x87{left:784.360500px;}
.x29{left:788.047500px;}
.x7c{left:791.013000px;}
.x1b{left:799.195500px;}
.x88{left:805.015500px;}
@media print{
.v2f{vertical-align:-77.077333pt;}
.v2e{vertical-align:-71.173333pt;}
.v1e{vertical-align:-43.434667pt;}
.v1d{vertical-align:-35.312000pt;}
.v1c{vertical-align:-29.408000pt;}
.va{vertical-align:-24.021333pt;}
.v1{vertical-align:-22.314667pt;}
.v4{vertical-align:-20.314667pt;}
.v13{vertical-align:-16.437333pt;}
.ve{vertical-align:-14.906667pt;}
.v26{vertical-align:-12.608000pt;}
.vd{vertical-align:-9.008000pt;}
.v3{vertical-align:-7.968000pt;}
.v2{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.658667pt;}
.v11{vertical-align:7.584000pt;}
.v24{vertical-align:10.837333pt;}
.v21{vertical-align:13.189333pt;}
.v7{vertical-align:14.384000pt;}
.v19{vertical-align:16.805333pt;}
.v1b{vertical-align:17.744000pt;}
.v20{vertical-align:19.280000pt;}
.v23{vertical-align:21.114667pt;}
.v10{vertical-align:22.613333pt;}
.v6{vertical-align:24.021333pt;}
.vb{vertical-align:27.600000pt;}
.v5{vertical-align:30.666667pt;}
.v22{vertical-align:32.469333pt;}
.vc{vertical-align:33.813333pt;}
.v15{vertical-align:35.306667pt;}
.v8{vertical-align:38.405333pt;}
.v17{vertical-align:39.360000pt;}
.v30{vertical-align:43.434667pt;}
.v2d{vertical-align:49.557333pt;}
.v25{vertical-align:51.738667pt;}
.v28{vertical-align:53.744000pt;}
.v31{vertical-align:56.757333pt;}
.v12{vertical-align:59.744000pt;}
.v18{vertical-align:70.026667pt;}
.v27{vertical-align:73.584000pt;}
.vf{vertical-align:76.181333pt;}
.v1f{vertical-align:79.274667pt;}
.v14{vertical-align:91.093333pt;}
.v16{vertical-align:92.122667pt;}
.v2b{vertical-align:100.384000pt;}
.v2a{vertical-align:101.392000pt;}
.v2c{vertical-align:107.173333pt;}
.v29{vertical-align:116.090667pt;}
.v1a{vertical-align:132.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd4{letter-spacing:0.000055pt;}
.ls9f{letter-spacing:0.000209pt;}
.ls112{letter-spacing:0.000438pt;}
.ls9{letter-spacing:0.000446pt;}
.ls8{letter-spacing:0.000932pt;}
.ls14{letter-spacing:0.001414pt;}
.ls66{letter-spacing:0.001423pt;}
.lsea{letter-spacing:0.001439pt;}
.ls5d{letter-spacing:0.001653pt;}
.lsbd{letter-spacing:0.001788pt;}
.ls8a{letter-spacing:0.001911pt;}
.ls95{letter-spacing:0.001914pt;}
.ls6e{letter-spacing:0.002122pt;}
.ls40{letter-spacing:0.002323pt;}
.lsb1{letter-spacing:0.002378pt;}
.ls5e{letter-spacing:0.002384pt;}
.ls122{letter-spacing:0.002399pt;}
.ls87{letter-spacing:0.002400pt;}
.ls3a{letter-spacing:0.002405pt;}
.ls41{letter-spacing:0.002827pt;}
.ls55{letter-spacing:0.002879pt;}
.ls78{letter-spacing:0.002906pt;}
.ls97{letter-spacing:0.002956pt;}
.ls8d{letter-spacing:0.003148pt;}
.lsc6{letter-spacing:0.003167pt;}
.ls31{letter-spacing:0.003638pt;}
.ls7a{letter-spacing:0.003851pt;}
.ls22{letter-spacing:0.003856pt;}
.lsb3{letter-spacing:0.003861pt;}
.lscf{letter-spacing:0.003892pt;}
.ls48{letter-spacing:0.004025pt;}
.lsa0{letter-spacing:0.004158pt;}
.ls128{letter-spacing:0.004282pt;}
.lse4{letter-spacing:0.004349pt;}
.lsf7{letter-spacing:0.004807pt;}
.lsc{letter-spacing:0.005771pt;}
.lsf6{letter-spacing:0.006772pt;}
.ls2e{letter-spacing:0.007352pt;}
.lsd2{letter-spacing:0.008468pt;}
.ls11a{letter-spacing:0.008548pt;}
.lseb{letter-spacing:0.008626pt;}
.ls86{letter-spacing:0.009552pt;}
.ls6b{letter-spacing:0.009620pt;}
.ls9d{letter-spacing:0.009767pt;}
.lsf0{letter-spacing:0.009884pt;}
.ls11{letter-spacing:0.010093pt;}
.lsc3{letter-spacing:0.010111pt;}
.lsc9{letter-spacing:0.010119pt;}
.lsef{letter-spacing:0.010983pt;}
.lsbf{letter-spacing:0.010994pt;}
.ls1e{letter-spacing:0.011466pt;}
.lsdd{letter-spacing:0.011507pt;}
.ls3e{letter-spacing:0.012519pt;}
.ls11d{letter-spacing:0.014334pt;}
.lsbc{letter-spacing:0.014954pt;}
.lsaf{letter-spacing:0.015376pt;}
.lsfb{letter-spacing:0.017198pt;}
.ls118{letter-spacing:0.017852pt;}
.ls4c{letter-spacing:0.019255pt;}
.ls115{letter-spacing:0.020275pt;}
.ls10c{letter-spacing:0.020706pt;}
.lsd6{letter-spacing:0.021466pt;}
.ls109{letter-spacing:0.021478pt;}
.lsda{letter-spacing:0.023651pt;}
.ls33{letter-spacing:0.026513pt;}
.ls8e{letter-spacing:0.028459pt;}
.ls11e{letter-spacing:0.028936pt;}
.lse{letter-spacing:0.028979pt;}
.ls12f{letter-spacing:0.232727pt;}
.ls42{letter-spacing:1.256536pt;}
.ls28{letter-spacing:1.456842pt;}
.lsd5{letter-spacing:1.466676pt;}
.ls99{letter-spacing:1.468545pt;}
.ls25{letter-spacing:1.477138pt;}
.lsad{letter-spacing:1.481120pt;}
.ls83{letter-spacing:1.488130pt;}
.ls2b{letter-spacing:1.489899pt;}
.ls84{letter-spacing:1.494032pt;}
.lsb2{letter-spacing:1.523445pt;}
.ls90{letter-spacing:1.530259pt;}
.ls7e{letter-spacing:1.574333pt;}
.ls4e{letter-spacing:1.585384pt;}
.ls39{letter-spacing:1.599890pt;}
.ls19{letter-spacing:1.602818pt;}
.ls116{letter-spacing:1.608151pt;}
.ls16{letter-spacing:1.612566pt;}
.ls58{letter-spacing:1.614971pt;}
.ls1f{letter-spacing:1.617899pt;}
.ls36{letter-spacing:1.620305pt;}
.ls3d{letter-spacing:1.621536pt;}
.ls117{letter-spacing:1.623669pt;}
.ls1b{letter-spacing:1.629002pt;}
.lsa6{letter-spacing:1.646441pt;}
.ls34{letter-spacing:2.094547pt;}
.lscc{letter-spacing:2.346469pt;}
.lsb0{letter-spacing:2.377181pt;}
.lsb9{letter-spacing:2.555614pt;}
.lsb8{letter-spacing:2.560002pt;}
.lsc1{letter-spacing:2.569095pt;}
.ls91{letter-spacing:2.649009pt;}
.ls12{letter-spacing:2.653258pt;}
.ls65{letter-spacing:2.653398pt;}
.ls23{letter-spacing:2.653571pt;}
.lsb4{letter-spacing:2.654270pt;}
.lsf2{letter-spacing:2.654964pt;}
.ls103{letter-spacing:2.656092pt;}
.ls21{letter-spacing:2.656187pt;}
.ls2{letter-spacing:2.656473pt;}
.lsba{letter-spacing:2.657087pt;}
.ls10d{letter-spacing:2.657253pt;}
.lsfc{letter-spacing:2.657546pt;}
.ls32{letter-spacing:2.658591pt;}
.ls69{letter-spacing:2.658731pt;}
.ls8f{letter-spacing:2.661806pt;}
.ls2f{letter-spacing:2.661964pt;}
.lsab{letter-spacing:3.073740pt;}
.lsb5{letter-spacing:3.228580pt;}
.ls68{letter-spacing:3.233914pt;}
.lsa7{letter-spacing:3.245017pt;}
.lsa4{letter-spacing:3.331801pt;}
.ls5c{letter-spacing:3.352213pt;}
.lsde{letter-spacing:3.791684pt;}
.ls73{letter-spacing:3.801225pt;}
.ls76{letter-spacing:3.804131pt;}
.ls8c{letter-spacing:4.146344pt;}
.lsa8{letter-spacing:4.181885pt;}
.lsf3{letter-spacing:4.721414pt;}
.ls46{letter-spacing:5.312473pt;}
.ls44{letter-spacing:5.317806pt;}
.ls67{letter-spacing:5.968933pt;}
.ls96{letter-spacing:5.974266pt;}
.ls56{letter-spacing:6.260825pt;}
.lsc5{letter-spacing:6.341823pt;}
.lse5{letter-spacing:6.343649pt;}
.lsf1{letter-spacing:6.344171pt;}
.ls61{letter-spacing:6.347104pt;}
.ls105{letter-spacing:6.350774pt;}
.ls60{letter-spacing:6.375121pt;}
.lse8{letter-spacing:6.375732pt;}
.ls64{letter-spacing:6.375733pt;}
.ls101{letter-spacing:6.376161pt;}
.ls57{letter-spacing:6.376584pt;}
.ls77{letter-spacing:6.459297pt;}
.lsd9{letter-spacing:8.087279pt;}
.ls12c{letter-spacing:9.452070pt;}
.ls53{letter-spacing:9.693494pt;}
.lsed{letter-spacing:9.695016pt;}
.ls123{letter-spacing:9.697874pt;}
.ls49{letter-spacing:9.698827pt;}
.lsa{letter-spacing:9.716372pt;}
.ls2a{letter-spacing:11.795718pt;}
.lsc4{letter-spacing:12.349258pt;}
.ls120{letter-spacing:12.350249pt;}
.lse6{letter-spacing:12.350964pt;}
.ls5f{letter-spacing:12.354591pt;}
.ls114{letter-spacing:12.858193pt;}
.ls10{letter-spacing:12.916374pt;}
.ls6c{letter-spacing:12.929788pt;}
.ls102{letter-spacing:12.931851pt;}
.ls94{letter-spacing:12.932811pt;}
.ls3c{letter-spacing:12.974556pt;}
.lsfa{letter-spacing:13.498193pt;}
.lse7{letter-spacing:13.672161pt;}
.ls104{letter-spacing:13.837961pt;}
.ls2d{letter-spacing:14.464631pt;}
.ls2c{letter-spacing:14.771215pt;}
.ls126{letter-spacing:15.008495pt;}
.lsf5{letter-spacing:15.159733pt;}
.lse9{letter-spacing:15.165067pt;}
.ls113{letter-spacing:15.538591pt;}
.ls3b{letter-spacing:15.581258pt;}
.lsf{letter-spacing:15.586591pt;}
.lsb6{letter-spacing:15.587144pt;}
.lsa3{letter-spacing:15.602591pt;}
.ls50{letter-spacing:16.159477pt;}
.ls45{letter-spacing:16.162827pt;}
.lse2{letter-spacing:16.164811pt;}
.ls18{letter-spacing:16.174559pt;}
.ls3{letter-spacing:16.402534pt;}
.lsaa{letter-spacing:17.413964pt;}
.lsbb{letter-spacing:17.771874pt;}
.ls8b{letter-spacing:18.813258pt;}
.ls124{letter-spacing:18.815975pt;}
.ls38{letter-spacing:18.818591pt;}
.ls111{letter-spacing:19.025470pt;}
.ls5{letter-spacing:19.039527pt;}
.ls11c{letter-spacing:19.083652pt;}
.lsa5{letter-spacing:19.200016pt;}
.ls63{letter-spacing:19.300811pt;}
.lsb7{letter-spacing:19.306144pt;}
.ls4b{letter-spacing:19.374562pt;}
.ls30{letter-spacing:19.432743pt;}
.ls10f{letter-spacing:19.490925pt;}
.lsf8{letter-spacing:19.574154pt;}
.ls6a{letter-spacing:19.579488pt;}
.lsc8{letter-spacing:19.607289pt;}
.lsb{letter-spacing:19.665471pt;}
.ls130{letter-spacing:19.723653pt;}
.ls106{letter-spacing:19.971294pt;}
.ls12b{letter-spacing:20.176396pt;}
.lsd0{letter-spacing:20.368546pt;}
.ls85{letter-spacing:20.368631pt;}
.lse0{letter-spacing:20.596381pt;}
.ls93{letter-spacing:21.527291pt;}
.lsec{letter-spacing:21.771600pt;}
.ls12e{letter-spacing:21.818200pt;}
.ls6{letter-spacing:22.045258pt;}
.ls121{letter-spacing:22.046249pt;}
.lsc0{letter-spacing:22.046270pt;}
.ls7{letter-spacing:22.050591pt;}
.lsc2{letter-spacing:22.054420pt;}
.lse1{letter-spacing:22.134266pt;}
.lsff{letter-spacing:22.523565pt;}
.lsf4{letter-spacing:22.538144pt;}
.ls9a{letter-spacing:22.581893pt;}
.ls82{letter-spacing:23.024631pt;}
.ls129{letter-spacing:23.025253pt;}
.ls125{letter-spacing:23.609490pt;}
.lsa2{letter-spacing:24.141258pt;}
.ls10b{letter-spacing:24.171297pt;}
.lsa1{letter-spacing:24.785475pt;}
.ls7c{letter-spacing:25.366266pt;}
.ls5b{letter-spacing:25.658203pt;}
.ls80{letter-spacing:27.287295pt;}
.ls81{letter-spacing:28.160023pt;}
.ls7f{letter-spacing:28.800024pt;}
.ls27{letter-spacing:29.542430pt;}
.lsdc{letter-spacing:30.370934pt;}
.ls51{letter-spacing:30.954887pt;}
.ls7d{letter-spacing:31.883663pt;}
.ls1{letter-spacing:31.896474pt;}
.lsac{letter-spacing:32.176631pt;}
.lsd{letter-spacing:32.290936pt;}
.ls4d{letter-spacing:32.963608pt;}
.lse3{letter-spacing:33.305490pt;}
.ls47{letter-spacing:35.456495pt;}
.ls52{letter-spacing:35.461828pt;}
.ls62{letter-spacing:36.738400pt;}
.ls1c{letter-spacing:41.100213pt;}
.ls100{letter-spacing:46.434400pt;}
.ls29{letter-spacing:50.270544pt;}
.ls1a{letter-spacing:54.028213pt;}
.ls4f{letter-spacing:54.939162pt;}
.ls43{letter-spacing:54.944495pt;}
.ls88{letter-spacing:57.260213pt;}
.ls37{letter-spacing:63.681546pt;}
.ls11b{letter-spacing:63.686879pt;}
.ls59{letter-spacing:77.826591pt;}
.ls20{letter-spacing:79.841546pt;}
.ls17{letter-spacing:79.846879pt;}
.ls26{letter-spacing:89.161211pt;}
.ls9c{letter-spacing:100.051071pt;}
.lsce{letter-spacing:126.987680pt;}
.ls10e{letter-spacing:133.578541pt;}
.lsbe{letter-spacing:136.320114pt;}
.lscd{letter-spacing:159.341647pt;}
.lsd8{letter-spacing:167.584215pt;}
.lsd1{letter-spacing:177.467115pt;}
.ls108{letter-spacing:193.776631pt;}
.ls79{letter-spacing:210.613964pt;}
.lsee{letter-spacing:214.865634pt;}
.ls9b{letter-spacing:215.435297pt;}
.ls74{letter-spacing:218.955297pt;}
.lsca{letter-spacing:220.332459pt;}
.lsd7{letter-spacing:229.083297pt;}
.ls6d{letter-spacing:235.869287pt;}
.ls9e{letter-spacing:241.285880pt;}
.ls6f{letter-spacing:243.680631pt;}
.ls75{letter-spacing:246.885964pt;}
.ls71{letter-spacing:270.597964pt;}
.lscb{letter-spacing:270.853964pt;}
.ls10a{letter-spacing:271.371297pt;}
.ls72{letter-spacing:279.467297pt;}
.lsdb{letter-spacing:293.003881pt;}
.ls70{letter-spacing:304.619297pt;}
.ls0{letter-spacing:310.561617pt;}
.ls4a{letter-spacing:393.425782pt;}
.lsc7{letter-spacing:466.444025pt;}
.ls98{letter-spacing:483.724039pt;}
.ls54{letter-spacing:490.356772pt;}
.lsf9{letter-spacing:538.996813pt;}
.ls127{letter-spacing:542.604089pt;}
.ls3f{letter-spacing:575.418661pt;}
.ls107{letter-spacing:600.145955pt;}
.ls119{letter-spacing:667.055101pt;}
.ls7b{letter-spacing:683.811479pt;}
.ls92{letter-spacing:699.695129pt;}
.lsfe{letter-spacing:701.615130pt;}
.ls12a{letter-spacing:731.695155pt;}
.ls1d{letter-spacing:738.444252pt;}
.ls11f{letter-spacing:754.095174pt;}
.lsfd{letter-spacing:755.607902pt;}
.ls5a{letter-spacing:783.069743pt;}
.lsdf{letter-spacing:794.473389pt;}
.ls35{letter-spacing:807.971582pt;}
.ls89{letter-spacing:819.200683pt;}
.lsae{letter-spacing:820.771593pt;}
.lsa9{letter-spacing:828.277054pt;}
.ls24{letter-spacing:835.607969pt;}
.lsd3{letter-spacing:841.775247pt;}
.ls110{letter-spacing:865.338903pt;}
.ls13{letter-spacing:887.738922pt;}
.ls15{letter-spacing:894.546200pt;}
.ls12d{letter-spacing:980.538999pt;}
.ws4b{word-spacing:-58.181867pt;}
.wsa1{word-spacing:-45.163900pt;}
.ws5a{word-spacing:-42.066082pt;}
.ws5e{word-spacing:-38.749123pt;}
.ws22{word-spacing:-37.899668pt;}
.ws17{word-spacing:-34.611401pt;}
.ws6a{word-spacing:-30.551973pt;}
.ws65{word-spacing:-29.736752pt;}
.ws56{word-spacing:-29.521250pt;}
.ws46{word-spacing:-29.090933pt;}
.ws82{word-spacing:-28.241478pt;}
.ws4c{word-spacing:-28.183296pt;}
.ws62{word-spacing:-28.008751pt;}
.wsce{word-spacing:-26.566933pt;}
.ws4e{word-spacing:-25.832749pt;}
.ws60{word-spacing:-25.791179pt;}
.ws7d{word-spacing:-25.738045pt;}
.ws63{word-spacing:-25.099657pt;}
.ws1e{word-spacing:-24.575109pt;}
.ws68{word-spacing:-23.644571pt;}
.ws7c{word-spacing:-23.591437pt;}
.ws9b{word-spacing:-22.872391pt;}
.ws5d{word-spacing:-22.867058pt;}
.ws73{word-spacing:-22.584075pt;}
.wsb4{word-spacing:-21.783291pt;}
.ws64{word-spacing:-21.725109pt;}
.ws95{word-spacing:-20.669074pt;}
.wsb2{word-spacing:-20.386926pt;}
.wsa0{word-spacing:-19.688744pt;}
.ws53{word-spacing:-16.162923pt;}
.wsbe{word-spacing:-15.476377pt;}
.ws5b{word-spacing:-15.243649pt;}
.wsb8{word-spacing:-15.010922pt;}
.wsb7{word-spacing:-14.952740pt;}
.ws6b{word-spacing:-14.778194pt;}
.ws0{word-spacing:-14.346200pt;}
.ws3a{word-spacing:-14.196375pt;}
.ws27{word-spacing:-14.080012pt;}
.wsbb{word-spacing:-13.928739pt;}
.ws48{word-spacing:-13.789102pt;}
.ws37{word-spacing:-13.730921pt;}
.wsbf{word-spacing:-13.498193pt;}
.ws6f{word-spacing:-13.440011pt;}
.wsaa{word-spacing:-13.323647pt;}
.ws72{word-spacing:-13.149102pt;}
.ws4a{word-spacing:-12.543875pt;}
.ws10{word-spacing:-12.382347pt;}
.ws71{word-spacing:-12.334556pt;}
.ws97{word-spacing:-12.276374pt;}
.wsbc{word-spacing:-12.043646pt;}
.ws3{word-spacing:-11.955200pt;}
.ws6{word-spacing:-11.940854pt;}
.ws3c{word-spacing:-11.927283pt;}
.ws7{word-spacing:-11.893033pt;}
.ws15{word-spacing:-11.636317pt;}
.wsb9{word-spacing:-11.520010pt;}
.wsc5{word-spacing:-11.461828pt;}
.ws35{word-spacing:-11.403646pt;}
.ws90{word-spacing:-11.345464pt;}
.ws2e{word-spacing:-11.170918pt;}
.ws34{word-spacing:-11.112737pt;}
.ws9f{word-spacing:-10.821827pt;}
.wsab{word-spacing:-10.589100pt;}
.ws80{word-spacing:-10.530918pt;}
.ws88{word-spacing:-10.240009pt;}
.ws49{word-spacing:-10.201702pt;}
.wsa8{word-spacing:-10.181827pt;}
.ws58{word-spacing:-10.148569pt;}
.ws45{word-spacing:-10.123645pt;}
.ws31{word-spacing:-10.065463pt;}
.ws29{word-spacing:-10.007281pt;}
.ws36{word-spacing:-9.949099pt;}
.ws2c{word-spacing:-9.890917pt;}
.wsc8{word-spacing:-9.882899pt;}
.ws91{word-spacing:-9.832735pt;}
.ws12{word-spacing:-9.776631pt;}
.ws2d{word-spacing:-9.774554pt;}
.ws20{word-spacing:-9.716372pt;}
.ws21{word-spacing:-9.658190pt;}
.ws3b{word-spacing:-9.600008pt;}
.ws3d{word-spacing:-9.541826pt;}
.ws30{word-spacing:-9.483644pt;}
.ws9{word-spacing:-9.454172pt;}
.ws28{word-spacing:-9.425462pt;}
.wsd{word-spacing:-9.406351pt;}
.ws38{word-spacing:-9.367281pt;}
.ws8d{word-spacing:-9.309099pt;}
.ws43{word-spacing:-9.250917pt;}
.ws92{word-spacing:-9.192735pt;}
.wscc{word-spacing:-9.139025pt;}
.wsc9{word-spacing:-9.038071pt;}
.wsc3{word-spacing:-9.018189pt;}
.ws14{word-spacing:-8.979623pt;}
.ws66{word-spacing:-8.965826pt;}
.ws1b{word-spacing:-8.926490pt;}
.ws4{word-spacing:-8.873356pt;}
.wsc2{word-spacing:-8.843644pt;}
.ws19{word-spacing:-8.820222pt;}
.wsbd{word-spacing:-8.785462pt;}
.wsd2{word-spacing:-8.660820pt;}
.ws1a{word-spacing:-8.607686pt;}
.ws44{word-spacing:-8.558553pt;}
.ws98{word-spacing:-8.494553pt;}
.wscd{word-spacing:-8.453598pt;}
.ws13{word-spacing:-8.448285pt;}
.ws32{word-spacing:-8.378189pt;}
.wsa4{word-spacing:-8.320007pt;}
.ws8{word-spacing:-8.220396pt;}
.wsd4{word-spacing:-8.187929pt;}
.ws5{word-spacing:-8.172575pt;}
.wscf{word-spacing:-8.134795pt;}
.ws67{word-spacing:-8.044467pt;}
.ws96{word-spacing:-8.029098pt;}
.wsd3{word-spacing:-8.028527pt;}
.ws2b{word-spacing:-7.970916pt;}
.ws81{word-spacing:-7.912734pt;}
.wsae{word-spacing:-7.796370pt;}
.wsd0{word-spacing:-7.762858pt;}
.wsd1{word-spacing:-7.444055pt;}
.wsc6{word-spacing:-7.438741pt;}
.wsba{word-spacing:-7.272733pt;}
.ws33{word-spacing:-7.156370pt;}
.ws16{word-spacing:-7.119938pt;}
.ws89{word-spacing:-7.040006pt;}
.ws78{word-spacing:-6.981824pt;}
.ws79{word-spacing:-6.923642pt;}
.wsc7{word-spacing:-6.912716pt;}
.wsc4{word-spacing:-6.574551pt;}
.wsaf{word-spacing:-6.446551pt;}
.ws47{word-spacing:-6.283642pt;}
.ws52{word-spacing:-6.225460pt;}
.ws2f{word-spacing:-6.167278pt;}
.ws2a{word-spacing:-6.109096pt;}
.ws74{word-spacing:-5.887232pt;}
.ws6c{word-spacing:-5.585459pt;}
.ws6d{word-spacing:-5.527277pt;}
.ws1d{word-spacing:-5.525922pt;}
.ws1f{word-spacing:-5.178186pt;}
.ws40{word-spacing:-5.120004pt;}
.ws70{word-spacing:-5.003641pt;}
.ws8c{word-spacing:-4.945459pt;}
.wsb0{word-spacing:-4.887277pt;}
.ws3f{word-spacing:-4.480004pt;}
.ws11{word-spacing:-4.468558pt;}
.wsac{word-spacing:-4.421822pt;}
.wsb5{word-spacing:-4.247276pt;}
.ws3e{word-spacing:-4.194913pt;}
.wsa6{word-spacing:-4.014549pt;}
.ws84{word-spacing:-3.898185pt;}
.wsc0{word-spacing:-3.781821pt;}
.wsad{word-spacing:-3.432730pt;}
.wsc1{word-spacing:-3.316366pt;}
.wsa5{word-spacing:-3.258185pt;}
.ws4f{word-spacing:-3.188366pt;}
.ws41{word-spacing:-2.909093pt;}
.ws7f{word-spacing:-2.734548pt;}
.wsa9{word-spacing:-2.618184pt;}
.ws42{word-spacing:-2.501820pt;}
.wscb{word-spacing:-0.696054pt;}
.wsca{word-spacing:-0.690740pt;}
.ws9c{word-spacing:-0.395637pt;}
.ws2{word-spacing:-0.148775pt;}
.ws1c{word-spacing:-0.053134pt;}
.wsa{word-spacing:-0.047821pt;}
.ws51{word-spacing:-0.046545pt;}
.wse{word-spacing:0.000000pt;}
.ws77{word-spacing:0.010627pt;}
.ws54{word-spacing:0.011636pt;}
.ws57{word-spacing:0.069818pt;}
.ws6e{word-spacing:0.302546pt;}
.ws99{word-spacing:2.338911pt;}
.wsf{word-spacing:2.385457pt;}
.ws18{word-spacing:2.826722pt;}
.ws39{word-spacing:2.862548pt;}
.ws93{word-spacing:2.920730pt;}
.ws87{word-spacing:2.932989pt;}
.ws8e{word-spacing:2.986123pt;}
.ws7b{word-spacing:3.040100pt;}
.ws94{word-spacing:3.211639pt;}
.ws8f{word-spacing:3.328003pt;}
.ws83{word-spacing:3.444367pt;}
.ws8b{word-spacing:3.560730pt;}
.ws55{word-spacing:5.281065pt;}
.ws8a{word-spacing:5.888005pt;}
.ws59{word-spacing:6.266641pt;}
.ws9a{word-spacing:6.280501pt;}
.wsa7{word-spacing:8.913462pt;}
.ws85{word-spacing:9.029826pt;}
.wsa3{word-spacing:9.379596pt;}
.ws9e{word-spacing:9.507167pt;}
.ws9d{word-spacing:12.611596pt;}
.ws7e{word-spacing:14.728708pt;}
.wsb{word-spacing:16.306893pt;}
.wsc{word-spacing:16.354714pt;}
.ws50{word-spacing:17.382735pt;}
.ws1{word-spacing:20.786108pt;}
.ws5c{word-spacing:20.920930pt;}
.ws4d{word-spacing:22.431975pt;}
.ws7a{word-spacing:22.437433pt;}
.wsb6{word-spacing:29.608752pt;}
.ws26{word-spacing:30.551973pt;}
.ws69{word-spacing:63.156991pt;}
.ws76{word-spacing:83.792108pt;}
.wsb3{word-spacing:88.180437pt;}
.ws86{word-spacing:140.379676pt;}
.ws61{word-spacing:151.856591pt;}
.wsa2{word-spacing:187.403148pt;}
.ws75{word-spacing:188.991658pt;}
.ws5f{word-spacing:235.223628pt;}
.wsb1{word-spacing:538.042630pt;}
.ws23{word-spacing:1553.339476pt;}
.ws24{word-spacing:1980.785672pt;}
.ws25{word-spacing:2004.075389pt;}
._68{margin-left:-31.941845pt;}
._67{margin-left:-24.960021pt;}
._66{margin-left:-23.447292pt;}
._45{margin-left:-21.838019pt;}
._46{margin-left:-11.795718pt;}
._51{margin-left:-8.886909pt;}
._0{margin-left:-7.192228pt;}
._65{margin-left:-6.301164pt;}
._3{margin-left:-5.228407pt;}
._8{margin-left:-4.064768pt;}
._1{margin-left:-2.371905pt;}
._6{margin-left:-1.386803pt;}
._5{width:1.482445pt;}
._2{width:2.371905pt;}
._3d{width:3.315036pt;}
._43{width:4.458490pt;}
._3e{width:5.736669pt;}
._3b{width:9.689862pt;}
._3a{width:12.888148pt;}
._3c{width:15.069103pt;}
._7{width:16.306893pt;}
._4{width:18.630868pt;}
._37{width:20.291920pt;}
._49{width:21.258850pt;}
._a{width:22.900697pt;}
._9{width:24.304548pt;}
._36{width:25.699647pt;}
._32{width:26.624182pt;}
._52{width:28.313055pt;}
._b{width:29.276761pt;}
._34{width:30.517582pt;}
._44{width:32.258740pt;}
._35{width:34.429313pt;}
._33{width:38.009491pt;}
._47{width:38.923669pt;}
._6a{width:40.681423pt;}
._5d{width:44.825865pt;}
._6e{width:48.592207pt;}
._57{width:54.249678pt;}
._38{width:56.620521pt;}
._39{width:61.321786pt;}
._4d{width:68.595822pt;}
._5e{width:73.639316pt;}
._50{width:76.512768pt;}
._54{width:79.251354pt;}
._62{width:81.879289pt;}
._63{width:89.298911pt;}
._4a{width:90.274439pt;}
._56{width:93.622492pt;}
._4b{width:108.071125pt;}
._4e{width:120.653215pt;}
._55{width:123.164303pt;}
._42{width:126.067338pt;}
._59{width:127.574414pt;}
._5f{width:129.168430pt;}
._58{width:131.062130pt;}
._40{width:137.085376pt;}
._6c{width:141.630680pt;}
._60{width:147.393346pt;}
._5c{width:148.755708pt;}
._6d{width:156.725788pt;}
._4c{width:163.710747pt;}
._3f{width:164.766504pt;}
._64{width:168.487491pt;}
._41{width:173.057004pt;}
._6b{width:176.810389pt;}
._69{width:182.727367pt;}
._48{width:229.118537pt;}
._4f{width:246.227642pt;}
._61{width:274.813662pt;}
._5b{width:305.896974pt;}
._5a{width:311.736396pt;}
._53{width:335.221565pt;}
._2d{width:452.701119pt;}
._1f{width:469.884267pt;}
._20{width:994.664766pt;}
._2b{width:1008.342290pt;}
._f{width:1027.995015pt;}
._18{width:1050.926631pt;}
._2a{width:1079.407848pt;}
._e{width:1081.793305pt;}
._1b{width:1108.147305pt;}
._15{width:1127.112202pt;}
._10{width:1133.143995pt;}
._11{width:1139.626080pt;}
._21{width:1144.212101pt;}
._1d{width:1159.698824pt;}
._26{width:1191.812829pt;}
._19{width:1205.303061pt;}
._17{width:1214.736484pt;}
._22{width:1219.158306pt;}
._14{width:1245.160026pt;}
._1a{width:1317.347785pt;}
._28{width:1333.543856pt;}
._12{width:1340.206873pt;}
._d{width:1393.949395pt;}
._1e{width:1399.592230pt;}
._13{width:1418.441540pt;}
._1c{width:1436.467578pt;}
._2c{width:1443.125818pt;}
._2f{width:1450.772016pt;}
._2e{width:1463.144031pt;}
._16{width:1556.729497pt;}
._27{width:1596.933166pt;}
._30{width:1632.918718pt;}
._23{width:1654.330771pt;}
._24{width:1660.411969pt;}
._25{width:1700.729617pt;}
._31{width:1701.733520pt;}
._29{width:2009.882166pt;}
._c{width:2011.674350pt;}
.fs6{font-size:31.880533pt;}
.fs9{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs7{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs3{font-size:104.142400pt;}
.fs2{font-size:148.775467pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:138.516000pt;}
.y86{bottom:138.905333pt;}
.yab{bottom:140.473333pt;}
.y40{bottom:142.501333pt;}
.ya8{bottom:146.016000pt;}
.ya7{bottom:150.452000pt;}
.y23{bottom:154.156000pt;}
.ye0{bottom:154.982667pt;}
.yaa{bottom:156.124000pt;}
.ya9{bottom:161.310667pt;}
.y6e{bottom:169.600000pt;}
.y3f{bottom:170.216000pt;}
.y157{bottom:180.406667pt;}
.y85{bottom:180.738667pt;}
.y124{bottom:185.848000pt;}
.y156{bottom:186.788000pt;}
.yf3{bottom:187.164000pt;}
.y140{bottom:188.497333pt;}
.ya6{bottom:188.716000pt;}
.y123{bottom:189.444000pt;}
.y155{bottom:190.384000pt;}
.ydf{bottom:194.894667pt;}
.y6d{bottom:196.698667pt;}
.y3e{bottom:197.932000pt;}
.yc8{bottom:206.001333pt;}
.y16e{bottom:206.264000pt;}
.y84{bottom:207.836000pt;}
.y16f{bottom:212.645333pt;}
.yf2{bottom:215.248000pt;}
.y111{bottom:215.596000pt;}
.y183{bottom:215.761333pt;}
.ya5{bottom:215.814667pt;}
.y16c{bottom:216.241333pt;}
.y16d{bottom:221.914667pt;}
.y6c{bottom:223.796000pt;}
.y3d{bottom:225.646667pt;}
.y170{bottom:226.081333pt;}
.ye{bottom:230.642667pt;}
.y122{bottom:236.386667pt;}
.y154{bottom:238.266667pt;}
.yde{bottom:240.890667pt;}
.y1e3{bottom:241.861333pt;}
.yf1{bottom:242.345333pt;}
.y83{bottom:242.477333pt;}
.y13f{bottom:242.546667pt;}
.y1f7{bottom:242.752000pt;}
.ya4{bottom:242.913333pt;}
.yc7{bottom:245.057333pt;}
.y82{bottom:246.073333pt;}
.y196{bottom:250.894667pt;}
.y6b{bottom:252.860000pt;}
.y3c{bottom:253.362667pt;}
.yd{bottom:255.217333pt;}
.y182{bottom:258.734667pt;}
.y16b{bottom:262.884000pt;}
.y121{bottom:263.485333pt;}
.y153{bottom:267.422667pt;}
.y1e2{bottom:268.613333pt;}
.y110{bottom:269.144000pt;}
.yf0{bottom:269.444000pt;}
.y13e{bottom:269.645333pt;}
.y1ca{bottom:269.702667pt;}
.y1ab{bottom:272.045333pt;}
.ya3{bottom:272.629333pt;}
.y1e1{bottom:274.994667pt;}
.y195{bottom:277.993333pt;}
.y1e0{bottom:278.590667pt;}
.yc{bottom:279.792000pt;}
.y6a{bottom:279.957333pt;}
.y3b{bottom:281.077333pt;}
.ya1{bottom:282.606667pt;}
.yc6{bottom:284.112000pt;}
.y81{bottom:284.310667pt;}
.ya2{bottom:290.756000pt;}
.y16a{bottom:291.625333pt;}
.y120{bottom:292.328000pt;}
.y152{bottom:294.521333pt;}
.ydd{bottom:294.754667pt;}
.y1c9{bottom:295.110667pt;}
.y10f{bottom:296.242667pt;}
.yef{bottom:296.542667pt;}
.y13d{bottom:296.744000pt;}
.y1c8{bottom:296.801333pt;}
.y1f6{bottom:297.226667pt;}
.y1aa{bottom:299.144000pt;}
.yb{bottom:304.366667pt;}
.y69{bottom:307.056000pt;}
.y181{bottom:313.828000pt;}
.y1df{bottom:315.320000pt;}
.y169{bottom:318.724000pt;}
.y11f{bottom:319.426667pt;}
.ydc{bottom:321.853333pt;}
.y80{bottom:322.546667pt;}
.yc5{bottom:323.166667pt;}
.ya0{bottom:323.406667pt;}
.y13c{bottom:323.841333pt;}
.y3a{bottom:323.954667pt;}
.y194{bottom:323.989333pt;}
.y1f5{bottom:324.324000pt;}
.y1a9{bottom:326.242667pt;}
.ya{bottom:328.941333pt;}
.y1c6{bottom:329.457333pt;}
.y10e{bottom:334.144000pt;}
.y68{bottom:334.154667pt;}
.y151{bottom:338.808000pt;}
.y1c5{bottom:339.982667pt;}
.y1c7{bottom:340.821333pt;}
.y180{bottom:340.926667pt;}
.y150{bottom:342.404000pt;}
.y1de{bottom:342.418667pt;}
.yee{bottom:343.522667pt;}
.y1c4{bottom:344.417333pt;}
.y11e{bottom:346.524000pt;}
.y13b{bottom:348.758667pt;}
.ydb{bottom:348.952000pt;}
.y13a{bottom:350.940000pt;}
.y1f4{bottom:351.422667pt;}
.y39{bottom:351.670667pt;}
.y1a8{bottom:353.341333pt;}
.yc4{bottom:359.569333pt;}
.y7f{bottom:360.784000pt;}
.y67{bottom:363.217333pt;}
.y168{bottom:367.325333pt;}
.y17f{bottom:368.024000pt;}
.y9f{bottom:369.402667pt;}
.y10d{bottom:372.045333pt;}
.y11d{bottom:373.622667pt;}
.yda{bottom:376.050667pt;}
.y193{bottom:377.902667pt;}
.y1dd{bottom:379.148000pt;}
.y38{bottom:379.385333pt;}
.y1a7{bottom:380.438667pt;}
.y1c3{bottom:385.878667pt;}
.yed{bottom:387.314667pt;}
.y14f{bottom:390.286667pt;}
.y66{bottom:390.316000pt;}
.y139{bottom:392.030667pt;}
.y1f3{bottom:397.476000pt;}
.y7e{bottom:399.020000pt;}
.y10c{bottom:399.144000pt;}
.y192{bottom:405.001333pt;}
.yc3{bottom:405.565333pt;}
.y37{bottom:407.100000pt;}
.y1a6{bottom:407.537333pt;}
.y17e{bottom:409.234667pt;}
.y1c2{bottom:412.976000pt;}
.y1dc{bottom:415.877333pt;}
.y167{bottom:415.926667pt;}
.yd9{bottom:415.962667pt;}
.y14e{bottom:417.385333pt;}
.y65{bottom:417.414667pt;}
.y11c{bottom:421.362667pt;}
.y9e{bottom:423.008000pt;}
.y10b{bottom:427.068000pt;}
.y191{bottom:432.100000pt;}
.y108{bottom:432.610667pt;}
.y138{bottom:433.120000pt;}
.y1a5{bottom:434.636000pt;}
.y36{bottom:434.816000pt;}
.y9{bottom:436.676000pt;}
.y107{bottom:437.045333pt;}
.y7d{bottom:437.257333pt;}
.y1c0{bottom:438.384000pt;}
.y1bf{bottom:440.074667pt;}
.y10a{bottom:442.718667pt;}
.y1db{bottom:442.976000pt;}
.y14d{bottom:444.484000pt;}
.y64{bottom:444.513333pt;}
.y1c1{bottom:445.353333pt;}
.yec{bottom:447.086667pt;}
.y109{bottom:447.904000pt;}
.y9d{bottom:448.416000pt;}
.y9c{bottom:450.106667pt;}
.y17d{bottom:450.444000pt;}
.y1f2{bottom:451.950667pt;}
.yd8{bottom:455.876000pt;}
.yc2{bottom:459.086667pt;}
.y190{bottom:459.197333pt;}
.y1a4{bottom:461.734667pt;}
.y7c{bottom:464.356000pt;}
.y166{bottom:464.528000pt;}
.y11b{bottom:465.914667pt;}
.y63{bottom:471.610667pt;}
.yeb{bottom:474.185333pt;}
.y106{bottom:474.948000pt;}
.y35{bottom:477.693333pt;}
.y1f1{bottom:479.049333pt;}
.y137{bottom:479.116000pt;}
.y9b{bottom:479.566667pt;}
.y1be{bottom:481.534667pt;}
.yd7{bottom:482.973333pt;}
.y8{bottom:483.264000pt;}
.yc0{bottom:484.494667pt;}
.ybf{bottom:486.185333pt;}
.y18f{bottom:486.296000pt;}
.y1a3{bottom:488.833333pt;}
.y1da{bottom:488.972000pt;}
.y7b{bottom:489.762667pt;}
.y7a{bottom:491.453333pt;}
.yc1{bottom:491.462667pt;}
.y165{bottom:491.626667pt;}
.y17c{bottom:491.653333pt;}
.y50{bottom:492.389333pt;}
.y14c{bottom:492.537333pt;}
.y99{bottom:494.526667pt;}
.y9a{bottom:498.636000pt;}
.y62{bottom:500.674667pt;}
.y34{bottom:505.408000pt;}
.y1f0{bottom:506.148000pt;}
.y7{bottom:507.173333pt;}
.yd6{bottom:510.072000pt;}
.y18e{bottom:513.394667pt;}
.y1a2{bottom:515.930667pt;}
.yea{bottom:519.488000pt;}
.y105{bottom:520.944000pt;}
.ybe{bottom:522.586667pt;}
.y1bd{bottom:522.996000pt;}
.y61{bottom:527.772000pt;}
.y208{bottom:529.716000pt;}
.y11a{bottom:530.029333pt;}
.y6{bottom:531.084000pt;}
.y98{bottom:531.101333pt;}
.y97{bottom:532.792000pt;}
.y17b{bottom:532.864000pt;}
.y33{bottom:533.124000pt;}
.y136{bottom:533.165333pt;}
.y1ef{bottom:533.245333pt;}
.y4f{bottom:534.033333pt;}
.y14b{bottom:537.402667pt;}
.y79{bottom:537.449333pt;}
.y164{bottom:539.265333pt;}
.y18d{bottom:540.493333pt;}
.y1d9{bottom:542.334667pt;}
.y1bb{bottom:548.404000pt;}
.y1ba{bottom:550.093333pt;}
.y22{bottom:552.670667pt;}
.y207{bottom:553.626667pt;}
.y60{bottom:554.870667pt;}
.y1bc{bottom:555.372000pt;}
.yd5{bottom:556.068000pt;}
.y119{bottom:557.126667pt;}
.y134{bottom:558.573333pt;}
.y96{bottom:559.890667pt;}
.y133{bottom:560.264000pt;}
.y32{bottom:560.838667pt;}
.y4e{bottom:561.132000pt;}
.y14a{bottom:561.313333pt;}
.ybd{bottom:561.641333pt;}
.y1a1{bottom:561.926667pt;}
.ye9{bottom:564.792000pt;}
.y135{bottom:565.541333pt;}
.y18c{bottom:567.592000pt;}
.y1d8{bottom:569.433333pt;}
.y17a{bottom:574.073333pt;}
.y104{bottom:574.492000pt;}
.y206{bottom:577.537333pt;}
.y1ee{bottom:579.300000pt;}
.y21{bottom:579.769333pt;}
.y78{bottom:580.257333pt;}
.y5f{bottom:581.969333pt;}
.y132{bottom:587.361333pt;}
.y4d{bottom:588.229333pt;}
.y31{bottom:588.554667pt;}
.y18b{bottom:594.689333pt;}
.y1b9{bottom:596.089333pt;}
.y1d7{bottom:596.532000pt;}
.y94{bottom:598.156000pt;}
.ybc{bottom:599.006667pt;}
.ybb{bottom:600.697333pt;}
.y205{bottom:601.446667pt;}
.y103{bottom:601.590667pt;}
.y95{bottom:602.265333pt;}
.y163{bottom:602.806667pt;}
.y118{bottom:606.229333pt;}
.y5e{bottom:609.068000pt;}
.yd4{bottom:609.932000pt;}
.ye8{bottom:610.096000pt;}
.y131{bottom:614.460000pt;}
.y4c{bottom:615.328000pt;}
.y20{bottom:615.660000pt;}
.y1a0{bottom:616.073333pt;}
.y179{bottom:620.234667pt;}
.y1d6{bottom:623.630667pt;}
.y204{bottom:625.357333pt;}
.y149{bottom:627.217333pt;}
.y102{bottom:628.688000pt;}
.y162{bottom:629.905333pt;}
.y30{bottom:631.432000pt;}
.y1ed{bottom:633.773333pt;}
.y77{bottom:633.858667pt;}
.y5d{bottom:636.165333pt;}
.y93{bottom:636.421333pt;}
.yd3{bottom:637.030667pt;}
.yba{bottom:637.098667pt;}
.y1f{bottom:639.570667pt;}
.y18a{bottom:640.685333pt;}
.y130{bottom:641.558667pt;}
.y4b{bottom:642.426667pt;}
.y203{bottom:649.268000pt;}
.y1b8{bottom:650.197333pt;}
.y1d5{bottom:650.729333pt;}
.y101{bottom:654.096000pt;}
.y148{bottom:654.316000pt;}
.y117{bottom:655.332000pt;}
.ye7{bottom:655.398667pt;}
.y100{bottom:655.786667pt;}
.y19f{bottom:656.456000pt;}
.y5{bottom:659.105333pt;}
.y2f{bottom:659.146667pt;}
.y1ec{bottom:660.872000pt;}
.y76{bottom:660.957333pt;}
.y1e{bottom:663.481333pt;}
.y5c{bottom:665.229333pt;}
.y12f{bottom:668.657333pt;}
.y4a{bottom:669.525333pt;}
.y92{bottom:671.090667pt;}
.y202{bottom:673.178667pt;}
.yd2{bottom:673.348000pt;}
.y91{bottom:674.686667pt;}
.y178{bottom:675.328000pt;}
.y161{bottom:676.546667pt;}
.yd1{bottom:676.944000pt;}
.y1b7{bottom:677.296000pt;}
.y1d4{bottom:677.826667pt;}
.y147{bottom:681.414667pt;}
.yff{bottom:682.885333pt;}
.yb9{bottom:683.094667pt;}
.y2e{bottom:686.861333pt;}
.y1d{bottom:687.392000pt;}
.y1eb{bottom:687.970667pt;}
.y75{bottom:688.056000pt;}
.y5b{bottom:692.326667pt;}
.y189{bottom:694.598667pt;}
.y12e{bottom:695.754667pt;}
.y19e{bottom:696.837333pt;}
.y201{bottom:697.088000pt;}
.ye6{bottom:700.702667pt;}
.y177{bottom:702.426667pt;}
.y116{bottom:704.434667pt;}
.y1d3{bottom:704.925333pt;}
.yfe{bottom:709.984000pt;}
.y49{bottom:711.169333pt;}
.y1c{bottom:711.301333pt;}
.y90{bottom:712.952000pt;}
.y2d{bottom:714.577333pt;}
.y74{bottom:715.153333pt;}
.y1b6{bottom:715.160000pt;}
.yd0{bottom:716.856000pt;}
.y1b5{bottom:718.756000pt;}
.y5a{bottom:719.425333pt;}
.y200{bottom:720.998667pt;}
.y160{bottom:723.188000pt;}
.y1ea{bottom:728.640000pt;}
.y1d2{bottom:732.024000pt;}
.y146{bottom:732.084000pt;}
.y188{bottom:733.496000pt;}
.y1b{bottom:735.212000pt;}
.yb8{bottom:736.616000pt;}
.y19d{bottom:737.220000pt;}
.y8f{bottom:740.049333pt;}
.y12d{bottom:741.750667pt;}
.y73{bottom:742.252000pt;}
.y2c{bottom:742.292000pt;}
.ycf{bottom:743.954667pt;}
.y176{bottom:744.633333pt;}
.y1ff{bottom:744.909333pt;}
.y59{bottom:746.524000pt;}
.ye5{bottom:747.682667pt;}
.y15f{bottom:751.930667pt;}
.y48{bottom:752.812000pt;}
.y115{bottom:753.537333pt;}
.y1e9{bottom:755.737333pt;}
.yfd{bottom:755.980000pt;}
.y1a{bottom:759.122667pt;}
.y1b4{bottom:760.216000pt;}
.yb7{bottom:763.714667pt;}
.y1fe{bottom:768.820000pt;}
.y72{bottom:769.350667pt;}
.yce{bottom:771.053333pt;}
.y187{bottom:773.382667pt;}
.y58{bottom:773.622667pt;}
.y19c{bottom:777.601333pt;}
.y15e{bottom:779.029333pt;}
.y145{bottom:782.753333pt;}
.y19{bottom:783.033333pt;}
.y2b{bottom:785.169333pt;}
.y8e{bottom:786.045333pt;}
.y175{bottom:786.840000pt;}
.y12c{bottom:787.165333pt;}
.y1b3{bottom:787.314667pt;}
.y1fd{bottom:792.729333pt;}
.y47{bottom:794.456000pt;}
.y1e8{bottom:796.406667pt;}
.y71{bottom:796.449333pt;}
.ycd{bottom:798.150667pt;}
.y57{bottom:800.721333pt;}
.yb6{bottom:801.444000pt;}
.y4{bottom:802.264000pt;}
.y114{bottom:802.640000pt;}
.y19b{bottom:804.700000pt;}
.y1d1{bottom:805.118667pt;}
.y18{bottom:806.942667pt;}
.ye4{bottom:807.454667pt;}
.yfc{bottom:809.528000pt;}
.y2a{bottom:812.885333pt;}
.y186{bottom:813.270667pt;}
.y174{bottom:813.938667pt;}
.y1fc{bottom:816.640000pt;}
.y12b{bottom:819.445333pt;}
.y1e7{bottom:823.505333pt;}
.y70{bottom:823.548000pt;}
.y1b2{bottom:825.178667pt;}
.ycc{bottom:825.249333pt;}
.y15d{bottom:825.670667pt;}
.y1b1{bottom:828.774667pt;}
.y56{bottom:829.784000pt;}
.y3{bottom:830.158667pt;}
.y17{bottom:830.853333pt;}
.y113{bottom:831.482667pt;}
.y19a{bottom:831.798667pt;}
.y144{bottom:833.422667pt;}
.ye3{bottom:834.553333pt;}
.y46{bottom:836.100000pt;}
.yb5{bottom:839.174667pt;}
.y8d{bottom:839.650667pt;}
.y12a{bottom:839.813333pt;}
.y1fb{bottom:840.550667pt;}
.y29{bottom:840.600000pt;}
.y129{bottom:843.354667pt;}
.yfb{bottom:843.833333pt;}
.yfa{bottom:847.429333pt;}
.y1e6{bottom:850.604000pt;}
.y6f{bottom:850.645333pt;}
.y185{bottom:853.157333pt;}
.y16{bottom:854.764000pt;}
.y55{bottom:856.882667pt;}
.y1d0{bottom:858.482667pt;}
.y199{bottom:858.897333pt;}
.y173{bottom:860.100000pt;}
.y1fa{bottom:864.461333pt;}
.y128{bottom:867.265333pt;}
.y28{bottom:868.316000pt;}
.y1b0{bottom:870.236000pt;}
.ycb{bottom:871.245333pt;}
.y15c{bottom:872.313333pt;}
.y45{bottom:877.744000pt;}
.y8c{bottom:877.916000pt;}
.y15{bottom:878.674667pt;}
.y112{bottom:880.800000pt;}
.yb4{bottom:881.612000pt;}
.y54{bottom:883.980000pt;}
.y143{bottom:884.092000pt;}
.yf9{bottom:885.330667pt;}
.y1cf{bottom:885.581333pt;}
.y198{bottom:885.994667pt;}
.y1f9{bottom:888.370667pt;}
.y2{bottom:888.702667pt;}
.y127{bottom:891.176000pt;}
.y1e5{bottom:891.272000pt;}
.y184{bottom:893.044000pt;}
.y1af{bottom:895.642667pt;}
.y27{bottom:896.030667pt;}
.y1ae{bottom:897.333333pt;}
.y44{bottom:904.842667pt;}
.y172{bottom:905.521333pt;}
.y15b{bottom:908.977333pt;}
.yb3{bottom:909.781333pt;}
.y53{bottom:911.078667pt;}
.ye2{bottom:911.525333pt;}
.y1f8{bottom:912.281333pt;}
.yf8{bottom:912.429333pt;}
.y1ce{bottom:912.678667pt;}
.y14{bottom:913.078667pt;}
.yca{bottom:914.053333pt;}
.y15a{bottom:915.358667pt;}
.y126{bottom:915.617333pt;}
.y8b{bottom:916.181333pt;}
.y13{bottom:917.898667pt;}
.y1e4{bottom:918.370667pt;}
.y159{bottom:918.954667pt;}
.y26{bottom:923.745333pt;}
.y1ad{bottom:924.432000pt;}
.y1{bottom:924.568000pt;}
.y43{bottom:931.941333pt;}
.y197{bottom:931.990667pt;}
.y142{bottom:933.297333pt;}
.yb2{bottom:933.692000pt;}
.yb1{bottom:936.989333pt;}
.y52{bottom:938.177333pt;}
.y1cd{bottom:939.777333pt;}
.y11{bottom:941.637333pt;}
.y12{bottom:946.916000pt;}
.yf7{bottom:955.718667pt;}
.y125{bottom:957.046667pt;}
.yb0{bottom:957.357333pt;}
.y171{bottom:957.602667pt;}
.yc9{bottom:957.945333pt;}
.y8a{bottom:958.974667pt;}
.y42{bottom:959.040000pt;}
.yaf{bottom:960.898667pt;}
.y1cc{bottom:964.720000pt;}
.y141{bottom:964.897333pt;}
.y51{bottom:965.276000pt;}
.y158{bottom:965.596000pt;}
.y25{bottom:966.624000pt;}
.y1ac{bottom:970.428000pt;}
.y1cb{bottom:976.506667pt;}
.yae{bottom:981.268000pt;}
.yad{bottom:984.809333pt;}
.y10{bottom:985.341333pt;}
.y41{bottom:986.137333pt;}
.yf6{bottom:986.577333pt;}
.y89{bottom:987.253333pt;}
.yf5{bottom:988.130667pt;}
.y88{bottom:988.806667pt;}
.yac{bottom:1009.250667pt;}
.yf4{bottom:1012.040000pt;}
.y87{bottom:1012.717333pt;}
.yf{bottom:1013.236000pt;}
.y24{bottom:1059.728000pt;}
.hc{height:15.550933pt;}
.h16{height:24.659357pt;}
.ha{height:27.895200pt;}
.hf{height:29.967576pt;}
.h9{height:31.880400pt;}
.h7{height:35.865600pt;}
.hb{height:38.043849pt;}
.h6{height:39.850400pt;}
.h17{height:41.178747pt;}
.hd{height:41.658217pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h10{height:45.090947pt;}
.h2e{height:46.063733pt;}
.h24{height:47.175200pt;}
.h2d{height:47.180533pt;}
.h3{height:47.820800pt;}
.h20{height:48.915067pt;}
.h30{height:48.920400pt;}
.h2b{height:50.189591pt;}
.h29{height:50.399067pt;}
.h28{height:51.082243pt;}
.h2c{height:52.995067pt;}
.h3c{height:53.034400pt;}
.h25{height:53.039733pt;}
.h2{height:53.559147pt;}
.h44{height:53.988909pt;}
.h23{height:54.015733pt;}
.h14{height:55.495200pt;}
.h11{height:55.901733pt;}
.h27{height:55.907067pt;}
.h32{height:58.012533pt;}
.h2a{height:58.017867pt;}
.h13{height:58.020400pt;}
.h3e{height:59.474947pt;}
.h1b{height:59.757733pt;}
.h26{height:60.364533pt;}
.h15{height:61.708533pt;}
.h19{height:61.869355pt;}
.he{height:62.547067pt;}
.h3f{height:62.552400pt;}
.h1a{height:69.309733pt;}
.h12{height:70.285733pt;}
.h3d{height:70.291067pt;}
.h1c{height:70.545067pt;}
.h40{height:71.602688pt;}
.h41{height:75.709355pt;}
.h18{height:78.306688pt;}
.h36{height:82.996400pt;}
.h3b{height:83.545733pt;}
.h43{height:85.832258pt;}
.h38{height:92.355067pt;}
.h2f{height:93.448021pt;}
.h1f{height:93.453355pt;}
.h37{height:93.898243pt;}
.h33{height:94.248021pt;}
.h45{height:95.402217pt;}
.h34{height:97.380400pt;}
.h1d{height:101.907067pt;}
.h22{height:102.280021pt;}
.h42{height:102.909613pt;}
.h4{height:105.611479pt;}
.h31{height:122.905733pt;}
.h21{height:122.911067pt;}
.h39{height:129.458925pt;}
.h35{height:133.272400pt;}
.h1e{height:134.157355pt;}
.h3a{height:139.053733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x19{left:96.000000pt;}
.x1a{left:98.434667pt;}
.x21{left:101.253333pt;}
.xed{left:102.641333pt;}
.x1e{left:106.909333pt;}
.x1d{left:112.565333pt;}
.x2a{left:113.745333pt;}
.xc5{left:114.989333pt;}
.x24{left:115.925333pt;}
.x73{left:117.126667pt;}
.xdc{left:118.473333pt;}
.xc3{left:120.141333pt;}
.x2b{left:122.686667pt;}
.xee{left:124.633333pt;}
.x3e{left:126.124000pt;}
.x1f{left:128.037333pt;}
.x20{left:129.048000pt;}
.x74{left:132.253333pt;}
.xe6{left:135.850667pt;}
.x2e{left:136.990667pt;}
.x8c{left:138.241333pt;}
.xa0{left:139.676000pt;}
.x12{left:141.164000pt;}
.xd0{left:142.376000pt;}
.xc0{left:143.917333pt;}
.xab{left:146.376000pt;}
.x22{left:148.965333pt;}
.x8d{left:150.740000pt;}
.xac{left:152.146667pt;}
.x85{left:153.073333pt;}
.x11{left:154.448000pt;}
.x48{left:157.744000pt;}
.x59{left:159.909333pt;}
.x9d{left:161.645333pt;}
.xd4{left:164.424000pt;}
.x17{left:166.452000pt;}
.xdd{left:169.098667pt;}
.xc9{left:172.344000pt;}
.x93{left:173.545333pt;}
.xd1{left:177.696000pt;}
.xc1{left:179.334667pt;}
.x1{left:185.133333pt;}
.xb3{left:186.806667pt;}
.xa5{left:188.541333pt;}
.xf{left:190.597333pt;}
.x18{left:192.376000pt;}
.x52{left:194.082667pt;}
.xc{left:195.509333pt;}
.x10{left:196.556000pt;}
.x2c{left:198.142667pt;}
.x8f{left:200.441333pt;}
.xb{left:201.994667pt;}
.x53{left:203.001333pt;}
.x2{left:206.776000pt;}
.xca{left:210.369333pt;}
.x68{left:213.484000pt;}
.x2f{left:216.422667pt;}
.xd5{left:219.320000pt;}
.xbf{left:220.662667pt;}
.x9f{left:223.218667pt;}
.x97{left:225.385333pt;}
.x2d{left:226.529333pt;}
.x3a{left:230.061333pt;}
.x40{left:231.365333pt;}
.xe3{left:234.090667pt;}
.xdb{left:235.814667pt;}
.x30{left:237.848000pt;}
.x7d{left:241.758667pt;}
.x3{left:244.284000pt;}
.x5c{left:245.973333pt;}
.x9c{left:249.068000pt;}
.x49{left:250.426667pt;}
.x5d{left:253.064000pt;}
.x69{left:254.285333pt;}
.x90{left:256.665333pt;}
.x77{left:259.246667pt;}
.xb9{left:260.208000pt;}
.x54{left:262.748000pt;}
.xb4{left:267.846667pt;}
.x41{left:271.688000pt;}
.x63{left:272.834667pt;}
.xc7{left:274.410667pt;}
.xe4{left:276.204000pt;}
.xd9{left:280.126667pt;}
.xa9{left:282.560000pt;}
.x6a{left:283.580000pt;}
.xa4{left:284.641333pt;}
.x42{left:289.388000pt;}
.x89{left:290.669333pt;}
.x7{left:293.149333pt;}
.xce{left:294.604000pt;}
.xc4{left:298.034667pt;}
.x8a{left:299.989333pt;}
.x9e{left:303.273333pt;}
.x45{left:304.922667pt;}
.x5a{left:306.060000pt;}
.x7a{left:308.422667pt;}
.x91{left:309.848000pt;}
.xe0{left:310.825333pt;}
.x35{left:312.438667pt;}
.x64{left:313.510667pt;}
.xd3{left:315.752000pt;}
.xad{left:317.308000pt;}
.xc2{left:318.512000pt;}
.x4{left:319.704000pt;}
.xda{left:321.620000pt;}
.x65{left:322.776000pt;}
.x36{left:324.480000pt;}
.x55{left:325.492000pt;}
.x57{left:327.857333pt;}
.x9a{left:328.836000pt;}
.x3f{left:329.830667pt;}
.x23{left:331.561333pt;}
.x5{left:333.781333pt;}
.x58{left:335.417333pt;}
.x39{left:336.729333pt;}
.x6{left:339.008000pt;}
.xd{left:340.090667pt;}
.x6f{left:342.308000pt;}
.x3b{left:343.606667pt;}
.x8{left:349.013333pt;}
.x76{left:350.325333pt;}
.x34{left:351.474667pt;}
.x3c{left:354.604000pt;}
.xc8{left:356.090667pt;}
.x70{left:357.825333pt;}
.x43{left:359.588000pt;}
.x9{left:360.858667pt;}
.xaa{left:361.914667pt;}
.x8e{left:362.837333pt;}
.x1c{left:363.736000pt;}
.x78{left:364.996000pt;}
.x5b{left:369.112000pt;}
.x56{left:372.154667pt;}
.x7e{left:373.269333pt;}
.xba{left:374.900000pt;}
.x37{left:377.058667pt;}
.xb5{left:379.509333pt;}
.xd6{left:380.957333pt;}
.xbb{left:389.121333pt;}
.x4a{left:393.485333pt;}
.x7f{left:395.872000pt;}
.x79{left:398.672000pt;}
.xbc{left:401.536000pt;}
.xc6{left:403.644000pt;}
.xd2{left:405.554667pt;}
.x4b{left:408.929333pt;}
.x3d{left:413.569333pt;}
.xe5{left:418.597333pt;}
.x66{left:420.094667pt;}
.xde{left:424.397333pt;}
.xd7{left:426.740000pt;}
.x50{left:427.870667pt;}
.x4d{left:430.276000pt;}
.x94{left:432.694667pt;}
.x92{left:433.832000pt;}
.x4c{left:435.148000pt;}
.x46{left:436.944000pt;}
.x4e{left:438.760000pt;}
.x51{left:440.312000pt;}
.xdf{left:442.372000pt;}
.xa6{left:445.642667pt;}
.xe8{left:447.142667pt;}
.x7b{left:450.308000pt;}
.x82{left:452.508000pt;}
.xe{left:454.897333pt;}
.xa7{left:455.926667pt;}
.x4f{left:457.892000pt;}
.xe9{left:458.860000pt;}
.xd8{left:462.577333pt;}
.xcf{left:463.860000pt;}
.x9b{left:469.724000pt;}
.x83{left:471.497333pt;}
.x95{left:472.425333pt;}
.x44{left:474.810667pt;}
.x67{left:476.262667pt;}
.xea{left:477.537333pt;}
.xa8{left:478.505333pt;}
.x38{left:481.694667pt;}
.x86{left:486.440000pt;}
.xbd{left:488.277333pt;}
.xb6{left:489.274667pt;}
.x71{left:490.708000pt;}
.xbe{left:491.672000pt;}
.xb7{left:496.093333pt;}
.x8b{left:499.049333pt;}
.xb8{left:501.637333pt;}
.x25{left:504.102667pt;}
.x72{left:506.668000pt;}
.x6b{left:514.185333pt;}
.x26{left:521.849333pt;}
.x31{left:523.624000pt;}
.xae{left:526.552000pt;}
.x27{left:530.792000pt;}
.x6c{left:536.056000pt;}
.xaf{left:538.088000pt;}
.x75{left:539.822667pt;}
.x47{left:547.124000pt;}
.x13{left:550.309333pt;}
.xb0{left:554.346667pt;}
.xb1{left:561.165333pt;}
.x14{left:566.712000pt;}
.xcb{left:570.402667pt;}
.xb2{left:572.186667pt;}
.x15{left:575.562667pt;}
.xa1{left:578.490667pt;}
.xe1{left:582.045333pt;}
.xcc{left:585.846667pt;}
.xe2{left:588.862667pt;}
.x16{left:592.905333pt;}
.xa2{left:593.986667pt;}
.x32{left:596.404000pt;}
.xa3{left:599.536000pt;}
.x98{left:605.325333pt;}
.x80{left:613.238667pt;}
.x5e{left:615.560000pt;}
.x33{left:617.545333pt;}
.x5f{left:627.602667pt;}
.x6d{left:634.473333pt;}
.x81{left:635.805333pt;}
.xcd{left:642.381333pt;}
.x99{left:643.888000pt;}
.x60{left:648.744000pt;}
.x6e{left:652.218667pt;}
.x61{left:654.321333pt;}
.x96{left:655.417333pt;}
.x62{left:660.630667pt;}
.xeb{left:666.577333pt;}
.x28{left:672.100000pt;}
.xe7{left:678.609333pt;}
.x84{left:682.624000pt;}
.xec{left:684.548000pt;}
.x87{left:697.209333pt;}
.x29{left:700.486667pt;}
.x7c{left:703.122667pt;}
.x1b{left:710.396000pt;}
.x88{left:715.569333pt;}
}




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