
    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_649fbc64ecf5c20906fd3f37.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_61d5dae596503960e912381a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690918;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_4ea7559d89e4492b2d2fb829.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_1e212ee157cbd0208eeff3ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_8a30738639b2c98990cbd9d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908691;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_04e2da00dd9319a7b383137c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.880371;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_5349f88c268d3a55ff25fdbf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912000;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_ef3c0236bc4c80f27cea8296.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096680;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_9fe3329ef9e2c84f89b72cd4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_13eda414d297f5cd0d8a6e71.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_3bec47351ede5843ccae55ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.417014;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_8213a51e1a881487716c15dc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_1c1531b68bfc3d14e1744da7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.912000;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_5f34ee1acc0bd0888745be91.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.912109;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_14df388f8ff09bc0086233e6.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_5ab6851e9ecd5a1ed2a42469.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893066;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_a8e01e2c94be52363413e900.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.919922;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_e332810f8b075fd2cc2bc06f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.093262;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_409adb8c30bfdba921fc796f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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_0ee064f49b4588a0ad5c60da.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.104004;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_790b90a5a940efb2436682d8.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.104004;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_d0549324d6e531807be9c36b.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.106934;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_1e194beee09de75cd69ca3cf.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.904297;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_116fb8ffea4136f0e1e35f58.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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_b0cd6af10ea5c3bd67dcf29b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.895996;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_8cb010ecceab110d777bcfc3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.861816;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_58da217babdbde956c7928f3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.861816;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_74dd00f08d7c0c26674b2da4.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;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_eb52eb53b00fb79ecb86f7ca.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_5ab98025043cb1ca77351658.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_c8c5207301077d4b1487beab.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_d8ee315a9281fc12f6348408.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_45f2e6dd7298b48c98783b25.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_c9c003a347e6783e15aaf8c0.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.907227;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_9080aa48657e2db8f558160a.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_870e4c7712ea86fd2feda055.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_e0b1ae99988053928335de5c.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.106934;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;}
.m5{transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m6{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);}
.v2{vertical-align:-27.000000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.140520px;}
.v5{vertical-align:24.525000px;}
.v3{vertical-align:27.000000px;}
.lsbe{letter-spacing:-2.044080px;}
.ls81{letter-spacing:-1.989972px;}
.lsbb{letter-spacing:-1.983960px;}
.ls13e{letter-spacing:-1.953900px;}
.lsb9{letter-spacing:-1.923840px;}
.ls13d{letter-spacing:-1.917828px;}
.ls80{letter-spacing:-1.911816px;}
.ls13c{letter-spacing:-1.899792px;}
.lsba{letter-spacing:-1.863720px;}
.ls7f{letter-spacing:-1.785564px;}
.lsbc{letter-spacing:-1.683360px;}
.lsbd{letter-spacing:-1.623240px;}
.ls1c{letter-spacing:-1.191996px;}
.lsc4{letter-spacing:-0.882000px;}
.ls118{letter-spacing:-0.819000px;}
.ls101{letter-spacing:-0.720000px;}
.ls100{letter-spacing:-0.648000px;}
.ls1f{letter-spacing:-0.639036px;}
.lsc5{letter-spacing:-0.630000px;}
.lsae{letter-spacing:-0.625248px;}
.ls83{letter-spacing:-0.579600px;}
.ls102{letter-spacing:-0.576000px;}
.lsc3{letter-spacing:-0.567000px;}
.ls98{letter-spacing:-0.480960px;}
.ls2f{letter-spacing:-0.462924px;}
.lsfa{letter-spacing:-0.420840px;}
.lsa5{letter-spacing:-0.396792px;}
.ls9b{letter-spacing:-0.390780px;}
.ls10c{letter-spacing:-0.378000px;}
.lsc7{letter-spacing:-0.360000px;}
.lsa3{letter-spacing:-0.336672px;}
.lsf3{letter-spacing:-0.329400px;}
.ls36{letter-spacing:-0.306612px;}
.lsdb{letter-spacing:-0.288000px;}
.ls91{letter-spacing:-0.282564px;}
.ls95{letter-spacing:-0.276552px;}
.ls143{letter-spacing:-0.270108px;}
.ls97{letter-spacing:-0.264528px;}
.lsa7{letter-spacing:-0.258516px;}
.lsc1{letter-spacing:-0.252000px;}
.lsf9{letter-spacing:-0.240480px;}
.ls9c{letter-spacing:-0.234468px;}
.ls8b{letter-spacing:-0.216432px;}
.lsc9{letter-spacing:-0.216000px;}
.lsa2{letter-spacing:-0.210420px;}
.ls92{letter-spacing:-0.198396px;}
.lse8{letter-spacing:-0.197640px;}
.lsc2{letter-spacing:-0.189000px;}
.ls29{letter-spacing:-0.180360px;}
.lsaf{letter-spacing:-0.174348px;}
.ls10e{letter-spacing:-0.168480px;}
.ls1e{letter-spacing:-0.168336px;}
.ls37{letter-spacing:-0.156312px;}
.ls86{letter-spacing:-0.151524px;}
.lsa6{letter-spacing:-0.150300px;}
.ls2e{letter-spacing:-0.144288px;}
.lsc6{letter-spacing:-0.144000px;}
.ls3a{letter-spacing:-0.138276px;}
.ls22{letter-spacing:-0.132264px;}
.lsff{letter-spacing:-0.131760px;}
.ls2c{letter-spacing:-0.126252px;}
.lsbf{letter-spacing:-0.126000px;}
.ls28{letter-spacing:-0.120240px;}
.ls9d{letter-spacing:-0.114228px;}
.lse7{letter-spacing:-0.113760px;}
.ls13f{letter-spacing:-0.113400px;}
.ls2a{letter-spacing:-0.108216px;}
.ls141{letter-spacing:-0.105408px;}
.lsad{letter-spacing:-0.102204px;}
.ls35{letter-spacing:-0.096192px;}
.ls3b{letter-spacing:-0.090180px;}
.ls87{letter-spacing:-0.085644px;}
.ls8d{letter-spacing:-0.084168px;}
.ls94{letter-spacing:-0.078156px;}
.ls148{letter-spacing:-0.072468px;}
.ls26{letter-spacing:-0.072144px;}
.lsd3{letter-spacing:-0.072000px;}
.ls31{letter-spacing:-0.066132px;}
.lsdf{letter-spacing:-0.065880px;}
.ls84{letter-spacing:-0.064800px;}
.ls10d{letter-spacing:-0.063000px;}
.ls2b{letter-spacing:-0.060120px;}
.lsca{letter-spacing:-0.056880px;}
.ls99{letter-spacing:-0.054108px;}
.ls88{letter-spacing:-0.052704px;}
.ls93{letter-spacing:-0.048096px;}
.ls8e{letter-spacing:-0.042084px;}
.ls140{letter-spacing:-0.039528px;}
.ls8f{letter-spacing:-0.036072px;}
.ls85{letter-spacing:-0.032940px;}
.ls8c{letter-spacing:-0.030060px;}
.ls147{letter-spacing:-0.026352px;}
.ls30{letter-spacing:-0.024048px;}
.lsa0{letter-spacing:-0.023940px;}
.ls145{letter-spacing:-0.019764px;}
.ls38{letter-spacing:-0.019152px;}
.ls34{letter-spacing:-0.018036px;}
.ls1a{letter-spacing:-0.016848px;}
.ls39{letter-spacing:-0.014364px;}
.ls21{letter-spacing:-0.013176px;}
.ls24{letter-spacing:-0.012024px;}
.ls142{letter-spacing:-0.006588px;}
.ls25{letter-spacing:-0.006012px;}
.ls1b{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.004788px;}
.lsd{letter-spacing:0.006012px;}
.ls132{letter-spacing:0.006588px;}
.ls65{letter-spacing:0.009576px;}
.lsf{letter-spacing:0.012024px;}
.ls129{letter-spacing:0.013176px;}
.ls15{letter-spacing:0.018036px;}
.ls124{letter-spacing:0.018900px;}
.ls6f{letter-spacing:0.019152px;}
.ls126{letter-spacing:0.019764px;}
.ls0{letter-spacing:0.021060px;}
.ls4e{letter-spacing:0.024048px;}
.ls44{letter-spacing:0.026352px;}
.ls17{letter-spacing:0.027000px;}
.ls4d{letter-spacing:0.030060px;}
.ls12b{letter-spacing:0.032940px;}
.ls61{letter-spacing:0.033516px;}
.ls14{letter-spacing:0.036072px;}
.ls82{letter-spacing:0.037800px;}
.ls8a{letter-spacing:0.039528px;}
.ls69{letter-spacing:0.042084px;}
.ls16{letter-spacing:0.043200px;}
.ls1{letter-spacing:0.046116px;}
.lse1{letter-spacing:0.047880px;}
.ls50{letter-spacing:0.048096px;}
.lsa{letter-spacing:0.052704px;}
.ls51{letter-spacing:0.054108px;}
.lsd4{letter-spacing:0.056880px;}
.lsb{letter-spacing:0.059292px;}
.ls48{letter-spacing:0.060120px;}
.lsb0{letter-spacing:0.063000px;}
.ls2{letter-spacing:0.065880px;}
.ls59{letter-spacing:0.066132px;}
.ls71{letter-spacing:0.067032px;}
.ls10{letter-spacing:0.071820px;}
.lsb8{letter-spacing:0.072000px;}
.ls27{letter-spacing:0.072144px;}
.ls45{letter-spacing:0.072468px;}
.ls18{letter-spacing:0.075600px;}
.ls4f{letter-spacing:0.078156px;}
.ls5{letter-spacing:0.079056px;}
.ls19{letter-spacing:0.079200px;}
.ls4b{letter-spacing:0.084168px;}
.ls12c{letter-spacing:0.085644px;}
.ls32{letter-spacing:0.086184px;}
.ls121{letter-spacing:0.088200px;}
.ls23{letter-spacing:0.090180px;}
.ls12f{letter-spacing:0.092232px;}
.ls127{letter-spacing:0.092880px;}
.lsd5{letter-spacing:0.095760px;}
.lsc{letter-spacing:0.096192px;}
.ls47{letter-spacing:0.098820px;}
.ls123{letter-spacing:0.100800px;}
.ls2d{letter-spacing:0.102204px;}
.ls3{letter-spacing:0.105408px;}
.ls3c{letter-spacing:0.107100px;}
.ls90{letter-spacing:0.108216px;}
.ls130{letter-spacing:0.111996px;}
.ls120{letter-spacing:0.113400px;}
.ls12{letter-spacing:0.114228px;}
.ls46{letter-spacing:0.118584px;}
.ls4{letter-spacing:0.118800px;}
.ls125{letter-spacing:0.119700px;}
.ls79{letter-spacing:0.120240px;}
.ls136{letter-spacing:0.125172px;}
.lsc0{letter-spacing:0.126000px;}
.ls33{letter-spacing:0.126252px;}
.ls40{letter-spacing:0.129600px;}
.ls42{letter-spacing:0.131760px;}
.ls9a{letter-spacing:0.132264px;}
.ls122{letter-spacing:0.132300px;}
.lscd{letter-spacing:0.136800px;}
.ls1d{letter-spacing:0.138996px;}
.ls41{letter-spacing:0.140400px;}
.lsb4{letter-spacing:0.144000px;}
.lsa8{letter-spacing:0.144288px;}
.ls96{letter-spacing:0.150300px;}
.ls3d{letter-spacing:0.151200px;}
.ls43{letter-spacing:0.151524px;}
.ls5d{letter-spacing:0.168336px;}
.ls115{letter-spacing:0.170100px;}
.lscc{letter-spacing:0.170640px;}
.ls20{letter-spacing:0.171288px;}
.ls134{letter-spacing:0.177876px;}
.lsfe{letter-spacing:0.180000px;}
.lse2{letter-spacing:0.180360px;}
.ls3f{letter-spacing:0.183600px;}
.ls9{letter-spacing:0.188475px;}
.lsb2{letter-spacing:0.189000px;}
.ls146{letter-spacing:0.191052px;}
.ls7d{letter-spacing:0.192384px;}
.lsb1{letter-spacing:0.195300px;}
.ls8{letter-spacing:0.197640px;}
.ls112{letter-spacing:0.201600px;}
.ls13b{letter-spacing:0.223992px;}
.ls11c{letter-spacing:0.245700px;}
.ls70{letter-spacing:0.272916px;}
.ls89{letter-spacing:0.276696px;}
.ls63{letter-spacing:0.287280px;}
.ls3e{letter-spacing:0.324000px;}
.lse3{letter-spacing:0.329400px;}
.lse9{letter-spacing:0.395280px;}
.lsaa{letter-spacing:0.411768px;}
.ls9f{letter-spacing:0.445284px;}
.ls14a{letter-spacing:0.447984px;}
.lsec{letter-spacing:0.461160px;}
.lsab{letter-spacing:0.474012px;}
.ls74{letter-spacing:0.480960px;}
.ls144{letter-spacing:0.540216px;}
.ls72{letter-spacing:0.622440px;}
.ls128{letter-spacing:0.625860px;}
.ls73{letter-spacing:0.769536px;}
.lse{letter-spacing:0.805608px;}
.ls12a{letter-spacing:0.810324px;}
.ls114{letter-spacing:0.819000px;}
.ls60{letter-spacing:0.841680px;}
.lsf7{letter-spacing:1.080000px;}
.ls7e{letter-spacing:1.172340px;}
.ls4c{letter-spacing:1.202400px;}
.ls10f{letter-spacing:1.512000px;}
.ls52{letter-spacing:1.563120px;}
.ls53{letter-spacing:1.863720px;}
.ls11b{letter-spacing:1.890000px;}
.ls54{letter-spacing:1.923840px;}
.ls62{letter-spacing:2.058840px;}
.ls6a{letter-spacing:2.224440px;}
.ls6b{letter-spacing:2.242476px;}
.ls137{letter-spacing:2.253096px;}
.lsa4{letter-spacing:2.254500px;}
.ls108{letter-spacing:2.268000px;}
.ls64{letter-spacing:2.441880px;}
.lsd1{letter-spacing:2.520000px;}
.ls138{letter-spacing:2.608848px;}
.lsea{letter-spacing:2.612880px;}
.lsdd{letter-spacing:2.880000px;}
.ls11e{letter-spacing:2.961000px;}
.lseb{letter-spacing:2.964600px;}
.ls9e{letter-spacing:2.975940px;}
.ls11{letter-spacing:3.006000px;}
.lsef{letter-spacing:3.111120px;}
.ls4a{letter-spacing:3.342672px;}
.ls49{letter-spacing:3.366720px;}
.lsd0{letter-spacing:3.600000px;}
.ls6c{letter-spacing:3.727440px;}
.lse4{letter-spacing:4.052880px;}
.ls6e{letter-spacing:4.448880px;}
.lsa9{letter-spacing:4.779540px;}
.ls6d{letter-spacing:4.809600px;}
.lsd8{letter-spacing:5.047200px;}
.ls110{letter-spacing:5.103000px;}
.ls131{letter-spacing:5.132052px;}
.lsf5{letter-spacing:5.831640px;}
.ls12e{letter-spacing:6.028020px;}
.lsb5{letter-spacing:6.120000px;}
.ls5b{letter-spacing:6.222420px;}
.ls12d{letter-spacing:6.383772px;}
.lsd2{letter-spacing:6.480000px;}
.ls105{letter-spacing:6.494400px;}
.ls5a{letter-spacing:6.553080px;}
.lsfb{letter-spacing:6.897636px;}
.lsfc{letter-spacing:6.917400px;}
.ls13{letter-spacing:7.995960px;}
.lsf6{letter-spacing:8.316000px;}
.ls11d{letter-spacing:8.379000px;}
.ls149{letter-spacing:8.893800px;}
.lsd6{letter-spacing:9.360000px;}
.ls139{letter-spacing:9.447192px;}
.lsb3{letter-spacing:9.504000px;}
.ls13a{letter-spacing:9.809532px;}
.ls113{letter-spacing:10.143000px;}
.ls135{letter-spacing:10.171872px;}
.ls11f{letter-spacing:10.458000px;}
.ls57{letter-spacing:10.521000px;}
.ls133{letter-spacing:10.527624px;}
.ls78{letter-spacing:10.869696px;}
.ls56{letter-spacing:10.881720px;}
.ls77{letter-spacing:10.887732px;}
.ls58{letter-spacing:10.905768px;}
.ls55{letter-spacing:10.911780px;}
.lsb6{letter-spacing:11.160000px;}
.lse5{letter-spacing:11.173248px;}
.lsc8{letter-spacing:11.527200px;}
.ls106{letter-spacing:11.880000px;}
.lsf0{letter-spacing:12.111120px;}
.lscf{letter-spacing:12.240000px;}
.lsee{letter-spacing:12.319560px;}
.lsf1{letter-spacing:12.471120px;}
.lsd9{letter-spacing:12.600000px;}
.ls68{letter-spacing:12.685320px;}
.lsa1{letter-spacing:12.703356px;}
.ls67{letter-spacing:13.046040px;}
.lsd7{letter-spacing:13.320000px;}
.ls5f{letter-spacing:14.488920px;}
.ls119{letter-spacing:14.490000px;}
.ls5e{letter-spacing:14.561064px;}
.lscb{letter-spacing:14.760000px;}
.ls5c{letter-spacing:14.849640px;}
.lsfd{letter-spacing:15.120000px;}
.lsce{letter-spacing:15.480000px;}
.lsde{letter-spacing:15.840000px;}
.lsed{letter-spacing:16.560000px;}
.ls107{letter-spacing:16.632000px;}
.lsb7{letter-spacing:16.920000px;}
.lsf2{letter-spacing:18.360000px;}
.lsac{letter-spacing:18.823572px;}
.ls76{letter-spacing:19.178280px;}
.ls104{letter-spacing:19.440000px;}
.ls10a{letter-spacing:19.555200px;}
.ls109{letter-spacing:20.601000px;}
.lsda{letter-spacing:22.886640px;}
.ls75{letter-spacing:23.867640px;}
.lse0{letter-spacing:25.292880px;}
.lse6{letter-spacing:27.076680px;}
.ls111{letter-spacing:27.468000px;}
.ls10b{letter-spacing:27.783000px;}
.ls7b{letter-spacing:28.196280px;}
.ls7a{letter-spacing:28.557000px;}
.ls7c{letter-spacing:33.246360px;}
.lsdc{letter-spacing:34.567200px;}
.ls103{letter-spacing:39.600000px;}
.lsf4{letter-spacing:40.400640px;}
.lsf8{letter-spacing:44.007840px;}
.ls117{letter-spacing:63.819000px;}
.ls116{letter-spacing:64.197000px;}
.ls7{letter-spacing:64.740728px;}
.ls6{letter-spacing:65.100872px;}
.ls11a{letter-spacing:67.410000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4a{word-spacing:-108.183600px;}
.ws47{word-spacing:-108.151200px;}
.ws4d{word-spacing:-108.140400px;}
.ws4b{word-spacing:-108.129600px;}
.ws4c{word-spacing:-108.118800px;}
.ws48{word-spacing:-108.043200px;}
.ws49{word-spacing:-108.000000px;}
.ws2ad{word-spacing:-74.773800px;}
.ws297{word-spacing:-66.420216px;}
.ws53{word-spacing:-66.156696px;}
.ws59{word-spacing:-66.051288px;}
.ws50{word-spacing:-66.031524px;}
.ws56{word-spacing:-65.998584px;}
.ws298{word-spacing:-65.991996px;}
.ws1{word-spacing:-65.985408px;}
.ws57{word-spacing:-65.978820px;}
.ws55{word-spacing:-65.952468px;}
.ws4f{word-spacing:-65.945880px;}
.ws58{word-spacing:-65.919528px;}
.ws54{word-spacing:-65.906352px;}
.ws296{word-spacing:-65.866824px;}
.ws4e{word-spacing:-65.847060px;}
.ws52{word-spacing:-65.827296px;}
.ws51{word-spacing:-65.794356px;}
.wsb8{word-spacing:-63.063000px;}
.wsb7{word-spacing:-62.874000px;}
.ws8e{word-spacing:-60.312384px;}
.ws7f{word-spacing:-60.288336px;}
.wsa3{word-spacing:-60.270300px;}
.ws95{word-spacing:-60.264288px;}
.ws80{word-spacing:-60.252264px;}
.ws94{word-spacing:-60.246252px;}
.wsa0{word-spacing:-60.240240px;}
.ws73{word-spacing:-60.234228px;}
.ws66{word-spacing:-60.228216px;}
.ws9b{word-spacing:-60.222204px;}
.ws81{word-spacing:-60.210180px;}
.ws6c{word-spacing:-60.204168px;}
.ws74{word-spacing:-60.198156px;}
.ws96{word-spacing:-60.192144px;}
.ws75{word-spacing:-60.186132px;}
.ws85{word-spacing:-60.180120px;}
.ws79{word-spacing:-60.174108px;}
.ws77{word-spacing:-60.168096px;}
.ws8d{word-spacing:-60.162084px;}
.ws6f{word-spacing:-60.150060px;}
.ws69{word-spacing:-60.144048px;}
.ws7c{word-spacing:-60.138036px;}
.ws63{word-spacing:-60.132024px;}
.ws62{word-spacing:-60.126012px;}
.ws5b{word-spacing:-60.120000px;}
.ws8c{word-spacing:-60.113988px;}
.ws90{word-spacing:-60.107976px;}
.ws5a{word-spacing:-60.101964px;}
.ws6e{word-spacing:-60.095952px;}
.ws5d{word-spacing:-60.089940px;}
.ws65{word-spacing:-60.083928px;}
.ws61{word-spacing:-60.077916px;}
.ws6b{word-spacing:-60.071904px;}
.ws7e{word-spacing:-60.065892px;}
.ws60{word-spacing:-60.059880px;}
.ws70{word-spacing:-60.053868px;}
.ws6d{word-spacing:-60.047856px;}
.ws71{word-spacing:-60.041844px;}
.ws5f{word-spacing:-60.035832px;}
.ws64{word-spacing:-60.029820px;}
.ws7a{word-spacing:-60.023808px;}
.ws9e{word-spacing:-60.017796px;}
.ws6a{word-spacing:-60.011784px;}
.ws84{word-spacing:-60.005772px;}
.ws72{word-spacing:-59.999760px;}
.ws5e{word-spacing:-59.993748px;}
.ws9c{word-spacing:-59.987736px;}
.ws9f{word-spacing:-59.981724px;}
.ws7b{word-spacing:-59.975712px;}
.ws92{word-spacing:-59.969700px;}
.ws76{word-spacing:-59.951664px;}
.wsa2{word-spacing:-59.945652px;}
.wsa1{word-spacing:-59.939640px;}
.ws68{word-spacing:-59.921604px;}
.ws9d{word-spacing:-59.909580px;}
.ws5c{word-spacing:-59.903568px;}
.ws83{word-spacing:-59.885532px;}
.ws93{word-spacing:-59.861484px;}
.ws78{word-spacing:-59.843448px;}
.ws67{word-spacing:-59.837436px;}
.ws8f{word-spacing:-59.783328px;}
.ws82{word-spacing:-59.729220px;}
.ws91{word-spacing:-59.723208px;}
.ws7d{word-spacing:-59.639040px;}
.ws9a{word-spacing:-48.354012px;}
.ws87{word-spacing:-48.325284px;}
.ws99{word-spacing:-48.291768px;}
.ws88{word-spacing:-48.167280px;}
.ws98{word-spacing:-47.947032px;}
.ws86{word-spacing:-47.913516px;}
.ws97{word-spacing:-47.899152px;}
.ws89{word-spacing:-47.889576px;}
.ws8a{word-spacing:-47.884788px;}
.ws8b{word-spacing:-47.856060px;}
.ws2b2{word-spacing:-37.604304px;}
.ws2a3{word-spacing:-37.433016px;}
.ws2b0{word-spacing:-37.353960px;}
.ws2a0{word-spacing:-37.347372px;}
.ws2b4{word-spacing:-37.334196px;}
.ws2af{word-spacing:-37.281492px;}
.ws2ac{word-spacing:-37.241964px;}
.ws2b1{word-spacing:-37.235376px;}
.ws2b5{word-spacing:-37.228788px;}
.ws2aa{word-spacing:-37.215612px;}
.ws2b3{word-spacing:-37.209024px;}
.ws2a5{word-spacing:-37.202436px;}
.ws2a9{word-spacing:-37.195848px;}
.ws2a1{word-spacing:-37.189260px;}
.ws2a8{word-spacing:-37.182672px;}
.ws29a{word-spacing:-37.176084px;}
.ws29c{word-spacing:-37.169496px;}
.ws299{word-spacing:-37.162908px;}
.ws29d{word-spacing:-37.156320px;}
.ws2a2{word-spacing:-37.149732px;}
.ws29e{word-spacing:-37.143144px;}
.ws29f{word-spacing:-37.136556px;}
.ws2a4{word-spacing:-37.129968px;}
.ws29b{word-spacing:-37.123380px;}
.ws2ae{word-spacing:-37.116792px;}
.ws2ab{word-spacing:-37.103616px;}
.ws2a6{word-spacing:-37.090440px;}
.ws2a7{word-spacing:-37.083852px;}
.wsfa{word-spacing:-18.144000px;}
.wsfb{word-spacing:-18.072000px;}
.wsc1{word-spacing:-18.000000px;}
.ws13d{word-spacing:-17.928000px;}
.wsc0{word-spacing:-17.856000px;}
.ws11d{word-spacing:-17.784000px;}
.ws1f9{word-spacing:-17.712000px;}
.ws1e1{word-spacing:-17.640000px;}
.ws17b{word-spacing:-16.667640px;}
.ws1f8{word-spacing:-16.601760px;}
.ws19c{word-spacing:-16.535880px;}
.ws3{word-spacing:-16.529292px;}
.ws292{word-spacing:-16.502940px;}
.ws28e{word-spacing:-16.496352px;}
.ws17a{word-spacing:-16.470000px;}
.wsfc{word-spacing:-16.416000px;}
.ws18b{word-spacing:-16.404120px;}
.ws217{word-spacing:-16.344000px;}
.ws1c2{word-spacing:-16.272000px;}
.wsbf{word-spacing:-16.128000px;}
.wsbc{word-spacing:-15.939000px;}
.wsb9{word-spacing:-15.876000px;}
.ws28d{word-spacing:-15.869700px;}
.wsba{word-spacing:-15.750000px;}
.ws233{word-spacing:-15.687000px;}
.ws255{word-spacing:-15.624000px;}
.wsbb{word-spacing:-15.561000px;}
.ws1de{word-spacing:-15.210360px;}
.wsbe{word-spacing:-15.183000px;}
.ws5{word-spacing:-15.144228px;}
.ws7{word-spacing:-15.030000px;}
.ws1df{word-spacing:-14.969880px;}
.ws6{word-spacing:-14.933808px;}
.ws1e0{word-spacing:-14.909760px;}
.ws4{word-spacing:-14.903748px;}
.wsbd{word-spacing:-14.868000px;}
.wsb6{word-spacing:-14.849640px;}
.ws2{word-spacing:-14.572656px;}
.ws13c{word-spacing:-14.163120px;}
.ws1a4{word-spacing:-14.106240px;}
.ws18a{word-spacing:-13.767480px;}
.ws16a{word-spacing:-13.707360px;}
.ws16b{word-spacing:-13.466880px;}
.wsb5{word-spacing:-13.046040px;}
.ws13f{word-spacing:-12.065760px;}
.ws13e{word-spacing:-11.970000px;}
.ws234{word-spacing:-10.361520px;}
.ws1fa{word-spacing:-9.720000px;}
.ws0{word-spacing:-9.658116px;}
.ws179{word-spacing:-4.680000px;}
.ws166{word-spacing:-4.392000px;}
.ws165{word-spacing:-4.320000px;}
.ws15b{word-spacing:-4.104000px;}
.ws207{word-spacing:-4.032000px;}
.wsd9{word-spacing:-3.960000px;}
.ws26b{word-spacing:-3.717000px;}
.ws210{word-spacing:-3.689280px;}
.ws26a{word-spacing:-3.654000px;}
.ws17f{word-spacing:-3.600000px;}
.ws20f{word-spacing:-3.425760px;}
.ws22b{word-spacing:-3.384000px;}
.ws201{word-spacing:-3.359880px;}
.ws113{word-spacing:-3.312000px;}
.ws180{word-spacing:-3.240000px;}
.ws2d{word-spacing:-3.156300px;}
.ws2e{word-spacing:-3.126240px;}
.ws200{word-spacing:-3.096360px;}
.ws39{word-spacing:-3.024036px;}
.ws12a{word-spacing:-3.024000px;}
.ws2f{word-spacing:-3.012012px;}
.ws284{word-spacing:-2.961000px;}
.ws15d{word-spacing:-2.952000px;}
.ws271{word-spacing:-2.898000px;}
.ws16c{word-spacing:-2.880000px;}
.ws186{word-spacing:-2.832840px;}
.ws185{word-spacing:-2.701080px;}
.ws149{word-spacing:-2.664000px;}
.ws3b{word-spacing:-2.657304px;}
.ws262{word-spacing:-2.646000px;}
.ws14a{word-spacing:-2.592000px;}
.ws259{word-spacing:-2.583000px;}
.ws42{word-spacing:-2.537064px;}
.wsd6{word-spacing:-2.520000px;}
.ws188{word-spacing:-2.503440px;}
.ws41{word-spacing:-2.458908px;}
.ws109{word-spacing:-2.304000px;}
.ws246{word-spacing:-2.268000px;}
.ws2d5{word-spacing:-2.246508px;}
.ws211{word-spacing:-2.239920px;}
.ws104{word-spacing:-2.232000px;}
.ws245{word-spacing:-2.205000px;}
.ws103{word-spacing:-2.160000px;}
.ws1b0{word-spacing:-1.944000px;}
.ws12b{word-spacing:-1.933920px;}
.ws20b{word-spacing:-1.923840px;}
.ws270{word-spacing:-1.890000px;}
.ws1c7{word-spacing:-1.872000px;}
.ws2ba{word-spacing:-1.808100px;}
.ws130{word-spacing:-1.800000px;}
.ws29{word-spacing:-1.635264px;}
.ws2a{word-spacing:-1.613556px;}
.ws2b{word-spacing:-1.599192px;}
.ws105{word-spacing:-1.584000px;}
.ws12f{word-spacing:-1.512000px;}
.ws1ef{word-spacing:-1.503000px;}
.ws265{word-spacing:-1.449000px;}
.wsd4{word-spacing:-1.440000px;}
.ws1fe{word-spacing:-1.251720px;}
.ws148{word-spacing:-1.224000px;}
.ws1ee{word-spacing:-1.202400px;}
.ws35{word-spacing:-1.190376px;}
.wsf4{word-spacing:-1.152000px;}
.ws36{word-spacing:-1.144332px;}
.ws1e7{word-spacing:-1.142280px;}
.ws263{word-spacing:-1.134000px;}
.ws38{word-spacing:-1.100196px;}
.ws1b4{word-spacing:-1.080720px;}
.wsd5{word-spacing:-1.080000px;}
.ws2de{word-spacing:-1.047492px;}
.ws19f{word-spacing:-0.922320px;}
.ws14e{word-spacing:-0.864000px;}
.ws251{word-spacing:-0.819000px;}
.wsf5{word-spacing:-0.792000px;}
.ws37{word-spacing:-0.790020px;}
.wsc8{word-spacing:-0.756000px;}
.ws1bb{word-spacing:-0.724680px;}
.wsf3{word-spacing:-0.720000px;}
.ws2d9{word-spacing:-0.685152px;}
.ws2da{word-spacing:-0.632448px;}
.wsce{word-spacing:-0.630000px;}
.ws1bc{word-spacing:-0.592920px;}
.ws14f{word-spacing:-0.568800px;}
.ws1aa{word-spacing:-0.504000px;}
.ws1f6{word-spacing:-0.461160px;}
.ws257{word-spacing:-0.441000px;}
.ws119{word-spacing:-0.432000px;}
.ws1b8{word-spacing:-0.395280px;}
.wsc9{word-spacing:-0.378000px;}
.wsb2{word-spacing:-0.360720px;}
.ws133{word-spacing:-0.360000px;}
.ws2d8{word-spacing:-0.355752px;}
.ws40{word-spacing:-0.354708px;}
.ws13{word-spacing:-0.342576px;}
.ws2d3{word-spacing:-0.335988px;}
.ws223{word-spacing:-0.329400px;}
.ws2d0{word-spacing:-0.303048px;}
.wsa7{word-spacing:-0.302400px;}
.ws2ce{word-spacing:-0.283284px;}
.ws43{word-spacing:-0.282564px;}
.ws2cf{word-spacing:-0.263520px;}
.ws177{word-spacing:-0.240480px;}
.ws1f7{word-spacing:-0.197640px;}
.wsca{word-spacing:-0.189000px;}
.ws176{word-spacing:-0.180360px;}
.ws11{word-spacing:-0.177876px;}
.wsd{word-spacing:-0.171288px;}
.ws295{word-spacing:-0.144936px;}
.wsea{word-spacing:-0.144000px;}
.ws193{word-spacing:-0.131760px;}
.ws240{word-spacing:-0.126000px;}
.ws290{word-spacing:-0.125172px;}
.ws19d{word-spacing:-0.120240px;}
.ws12{word-spacing:-0.085644px;}
.ws291{word-spacing:-0.079056px;}
.wsff{word-spacing:-0.072000px;}
.ws187{word-spacing:-0.065880px;}
.wscb{word-spacing:-0.063000px;}
.wsc5{word-spacing:-0.060120px;}
.ws294{word-spacing:-0.059292px;}
.ws8{word-spacing:-0.057600px;}
.ws18c{word-spacing:-0.047880px;}
.wsb{word-spacing:-0.046332px;}
.wsab{word-spacing:-0.044100px;}
.ws9{word-spacing:-0.037908px;}
.ws28f{word-spacing:-0.026352px;}
.wsb1{word-spacing:-0.018036px;}
.wsf{word-spacing:-0.010800px;}
.wsa{word-spacing:0.000000px;}
.ws2d1{word-spacing:0.006588px;}
.wsa8{word-spacing:0.018900px;}
.ws2ca{word-spacing:0.019764px;}
.ws2bf{word-spacing:0.026352px;}
.wsac{word-spacing:0.032400px;}
.ws2d6{word-spacing:0.032940px;}
.ws293{word-spacing:0.039528px;}
.ws14{word-spacing:0.046116px;}
.ws2d2{word-spacing:0.052704px;}
.ws1a0{word-spacing:0.065880px;}
.ws11b{word-spacing:0.072000px;}
.ws2be{word-spacing:0.072468px;}
.wsa4{word-spacing:0.078156px;}
.ws178{word-spacing:0.120240px;}
.ws276{word-spacing:0.126000px;}
.ws189{word-spacing:0.131760px;}
.ws45{word-spacing:0.140400px;}
.ws11a{word-spacing:0.144000px;}
.wsc{word-spacing:0.151524px;}
.ws46{word-spacing:0.156600px;}
.wsc3{word-spacing:0.180360px;}
.ws243{word-spacing:0.189000px;}
.wse{word-spacing:0.191052px;}
.ws44{word-spacing:0.192384px;}
.wsa5{word-spacing:0.204408px;}
.ws2b6{word-spacing:0.210420px;}
.ws10{word-spacing:0.216000px;}
.ws1c{word-spacing:0.216432px;}
.ws3d{word-spacing:0.222444px;}
.wsc2{word-spacing:0.240480px;}
.ws2b7{word-spacing:0.246492px;}
.ws24f{word-spacing:0.252000px;}
.ws1d{word-spacing:0.276552px;}
.ws2bd{word-spacing:0.277200px;}
.wsa6{word-spacing:0.282564px;}
.ws175{word-spacing:0.288000px;}
.ws261{word-spacing:0.315000px;}
.wse4{word-spacing:0.360000px;}
.ws24e{word-spacing:0.378000px;}
.ws204{word-spacing:0.395280px;}
.ws1e4{word-spacing:0.420840px;}
.ws203{word-spacing:0.527040px;}
.wscc{word-spacing:0.567000px;}
.ws10d{word-spacing:0.576000px;}
.ws221{word-spacing:0.592920px;}
.wsb3{word-spacing:0.625248px;}
.wscd{word-spacing:0.630000px;}
.ws250{word-spacing:0.693000px;}
.wsde{word-spacing:0.720000px;}
.ws1b7{word-spacing:0.724680px;}
.ws2c0{word-spacing:0.751032px;}
.ws27{word-spacing:0.805608px;}
.ws28{word-spacing:0.817632px;}
.ws25{word-spacing:0.841680px;}
.ws1b6{word-spacing:0.856440px;}
.ws26{word-spacing:0.883764px;}
.ws3c{word-spacing:0.925848px;}
.ws1b3{word-spacing:0.936000px;}
.wsb4{word-spacing:0.985968px;}
.ws191{word-spacing:0.988200px;}
.ws13b{word-spacing:1.008000px;}
.ws273{word-spacing:1.071000px;}
.ws102{word-spacing:1.080000px;}
.ws190{word-spacing:1.119960px;}
.wsad{word-spacing:1.154304px;}
.ws222{word-spacing:1.251720px;}
.ws10e{word-spacing:1.296000px;}
.ws260{word-spacing:1.323000px;}
.ws15a{word-spacing:1.368000px;}
.ws258{word-spacing:1.386000px;}
.wsd2{word-spacing:1.440000px;}
.ws1d8{word-spacing:1.581120px;}
.ws1a9{word-spacing:1.656000px;}
.wsc4{word-spacing:1.683360px;}
.ws23f{word-spacing:1.701000px;}
.wsae{word-spacing:1.707408px;}
.ws21a{word-spacing:1.712880px;}
.wse6{word-spacing:1.728000px;}
.ws281{word-spacing:1.764000px;}
.wsd3{word-spacing:1.800000px;}
.ws17{word-spacing:1.803600px;}
.ws1d7{word-spacing:1.844640px;}
.ws16{word-spacing:1.887768px;}
.wsaf{word-spacing:1.953900px;}
.ws1d9{word-spacing:1.976400px;}
.wsc7{word-spacing:1.983960px;}
.ws22d{word-spacing:2.016000px;}
.ws15{word-spacing:2.026044px;}
.ws205{word-spacing:2.042280px;}
.wsc6{word-spacing:2.044080px;}
.ws256{word-spacing:2.079000px;}
.ws132{word-spacing:2.088000px;}
.ws23e{word-spacing:2.142000px;}
.wsee{word-spacing:2.160000px;}
.ws2dc{word-spacing:2.180628px;}
.ws2db{word-spacing:2.200392px;}
.ws21b{word-spacing:2.305800px;}
.ws197{word-spacing:2.376000px;}
.ws242{word-spacing:2.394000px;}
.ws2dd{word-spacing:2.430972px;}
.ws21f{word-spacing:2.437560px;}
.ws155{word-spacing:2.448000px;}
.ws241{word-spacing:2.457000px;}
.ws2b9{word-spacing:2.494800px;}
.ws31{word-spacing:2.500992px;}
.wsf1{word-spacing:2.520000px;}
.ws2c5{word-spacing:2.523204px;}
.ws1b{word-spacing:2.543076px;}
.ws2c4{word-spacing:2.575908px;}
.ws33{word-spacing:2.615220px;}
.ws2b8{word-spacing:2.671200px;}
.ws220{word-spacing:2.701080px;}
.ws145{word-spacing:2.736000px;}
.ws1ab{word-spacing:2.766960px;}
.ws147{word-spacing:2.787120px;}
.ws10c{word-spacing:2.808000px;}
.ws275{word-spacing:2.835000px;}
.wsf8{word-spacing:2.880000px;}
.ws1eb{word-spacing:2.945880px;}
.ws1ea{word-spacing:3.006000px;}
.ws1c8{word-spacing:3.030480px;}
.ws1a{word-spacing:3.048084px;}
.ws30{word-spacing:3.072132px;}
.ws282{word-spacing:3.087000px;}
.ws160{word-spacing:3.096000px;}
.ws283{word-spacing:3.150000px;}
.ws1d6{word-spacing:3.162240px;}
.ws15c{word-spacing:3.168000px;}
.ws23a{word-spacing:3.213000px;}
.ws11c{word-spacing:3.240000px;}
.ws2c3{word-spacing:3.254472px;}
.ws32{word-spacing:3.282552px;}
.ws219{word-spacing:3.425760px;}
.ws10a{word-spacing:3.456000px;}
.wsfd{word-spacing:3.528000px;}
.ws239{word-spacing:3.591000px;}
.wse2{word-spacing:3.600000px;}
.ws1cb{word-spacing:3.623400px;}
.ws1cc{word-spacing:3.755160px;}
.wsf7{word-spacing:3.816000px;}
.ws1f1{word-spacing:3.847680px;}
.ws171{word-spacing:3.888000px;}
.wsf6{word-spacing:3.960000px;}
.ws23{word-spacing:4.052088px;}
.ws237{word-spacing:4.150440px;}
.wsf2{word-spacing:4.176000px;}
.ws22{word-spacing:4.202388px;}
.ws1f2{word-spacing:4.208400px;}
.ws1e6{word-spacing:4.248000px;}
.ws1f0{word-spacing:4.268520px;}
.wse3{word-spacing:4.320000px;}
.ws19a{word-spacing:4.413960px;}
.ws236{word-spacing:4.479840px;}
.ws24{word-spacing:4.521024px;}
.ws198{word-spacing:4.536000px;}
.ws1a1{word-spacing:4.545720px;}
.ws1e8{word-spacing:4.569120px;}
.ws1c3{word-spacing:4.608000px;}
.ws19b{word-spacing:4.677480px;}
.ws100{word-spacing:4.680000px;}
.ws1a2{word-spacing:4.743360px;}
.ws199{word-spacing:4.809240px;}
.ws1e9{word-spacing:4.809600px;}
.ws14c{word-spacing:4.896000px;}
.ws268{word-spacing:4.914000px;}
.ws206{word-spacing:4.941000px;}
.ws14d{word-spacing:4.968000px;}
.ws269{word-spacing:4.977000px;}
.ws167{word-spacing:5.040000px;}
.ws14b{word-spacing:5.112000px;}
.ws13a{word-spacing:5.256000px;}
.wscf{word-spacing:5.328000px;}
.ws1b5{word-spacing:5.346720px;}
.ws25c{word-spacing:5.355000px;}
.ws117{word-spacing:5.400000px;}
.ws228{word-spacing:5.616000px;}
.ws1e3{word-spacing:5.651280px;}
.ws215{word-spacing:5.665680px;}
.ws286{word-spacing:5.670000px;}
.ws232{word-spacing:5.688000px;}
.wsaa{word-spacing:5.720400px;}
.ws285{word-spacing:5.733000px;}
.wsa9{word-spacing:5.751900px;}
.wsd0{word-spacing:5.760000px;}
.wse7{word-spacing:5.976000px;}
.ws214{word-spacing:5.995080px;}
.wse8{word-spacing:6.048000px;}
.ws279{word-spacing:6.111000px;}
.wse9{word-spacing:6.120000px;}
.ws1e2{word-spacing:6.252480px;}
.ws213{word-spacing:6.258600px;}
.ws121{word-spacing:6.336000px;}
.ws25f{word-spacing:6.363000px;}
.wsed{word-spacing:6.408000px;}
.ws122{word-spacing:6.480000px;}
.ws195{word-spacing:6.696000px;}
.ws3a{word-spacing:6.715404px;}
.ws1fd{word-spacing:6.719760px;}
.wsb0{word-spacing:6.733440px;}
.ws25e{word-spacing:6.741000px;}
.wse1{word-spacing:6.768000px;}
.ws28a{word-spacing:6.804000px;}
.wsdb{word-spacing:6.840000px;}
.ws1fc{word-spacing:6.851520px;}
.ws2c8{word-spacing:6.891048px;}
.ws1fb{word-spacing:6.983280px;}
.ws164{word-spacing:7.056000px;}
.ws1f3{word-spacing:7.128000px;}
.ws21{word-spacing:7.196364px;}
.ws163{word-spacing:7.200000px;}
.ws2bc{word-spacing:7.270200px;}
.ws2bb{word-spacing:7.402500px;}
.ws1b9{word-spacing:7.488000px;}
.ws280{word-spacing:7.497000px;}
.ws110{word-spacing:7.560000px;}
.ws168{word-spacing:7.776000px;}
.ws11f{word-spacing:7.920000px;}
.ws3e{word-spacing:8.013996px;}
.ws3f{word-spacing:8.110188px;}
.ws101{word-spacing:8.136000px;}
.ws288{word-spacing:8.190000px;}
.ws194{word-spacing:8.208000px;}
.ws287{word-spacing:8.253000px;}
.ws146{word-spacing:8.280000px;}
.ws184{word-spacing:8.496000px;}
.ws238{word-spacing:8.564400px;}
.wsda{word-spacing:8.568000px;}
.ws114{word-spacing:8.640000px;}
.ws2c6{word-spacing:8.656632px;}
.ws2c7{word-spacing:8.669808px;}
.ws192{word-spacing:8.827920px;}
.ws108{word-spacing:8.856000px;}
.ws20e{word-spacing:8.928000px;}
.ws174{word-spacing:9.000000px;}
.ws2cb{word-spacing:9.018972px;}
.ws2cd{word-spacing:9.045324px;}
.ws2cc{word-spacing:9.051912px;}
.ws131{word-spacing:9.216000px;}
.ws16d{word-spacing:9.288000px;}
.ws126{word-spacing:9.360000px;}
.ws2df{word-spacing:9.401076px;}
.ws26f{word-spacing:9.639000px;}
.ws1af{word-spacing:9.648000px;}
.ws26e{word-spacing:9.702000px;}
.ws1e5{word-spacing:9.720000px;}
.ws1ed{word-spacing:9.919800px;}
.ws208{word-spacing:9.936000px;}
.ws1d4{word-spacing:9.947880px;}
.ws26d{word-spacing:10.017000px;}
.ws123{word-spacing:10.080000px;}
.ws2d7{word-spacing:10.171872px;}
.ws1d3{word-spacing:10.211400px;}
.wsd7{word-spacing:10.296000px;}
.ws28b{word-spacing:10.332000px;}
.ws1c1{word-spacing:10.368000px;}
.ws289{word-spacing:10.395000px;}
.wsfe{word-spacing:10.440000px;}
.ws1d5{word-spacing:10.474920px;}
.ws2d4{word-spacing:10.527624px;}
.ws28c{word-spacing:10.647000px;}
.ws20a{word-spacing:10.656000px;}
.wsd8{word-spacing:10.800000px;}
.ws229{word-spacing:11.016000px;}
.ws27b{word-spacing:11.151000px;}
.wseb{word-spacing:11.160000px;}
.ws19{word-spacing:11.266488px;}
.ws18{word-spacing:11.272500px;}
.ws12c{word-spacing:11.376000px;}
.ws1a3{word-spacing:11.397240px;}
.ws12d{word-spacing:11.448000px;}
.ws12e{word-spacing:11.520000px;}
.ws1c9{word-spacing:11.792520px;}
.ws107{word-spacing:11.808000px;}
.ws106{word-spacing:11.880000px;}
.ws1ca{word-spacing:12.056040px;}
.ws159{word-spacing:12.096000px;}
.ws1d1{word-spacing:12.121920px;}
.ws1c6{word-spacing:12.168000px;}
.wsec{word-spacing:12.240000px;}
.ws1d2{word-spacing:12.253680px;}
.ws1ba{word-spacing:12.456000px;}
.ws129{word-spacing:12.528000px;}
.ws128{word-spacing:12.600000px;}
.wse0{word-spacing:12.816000px;}
.wsdf{word-spacing:12.888000px;}
.wsd1{word-spacing:12.960000px;}
.ws1b1{word-spacing:13.176000px;}
.ws152{word-spacing:13.248000px;}
.ws2c{word-spacing:13.527000px;}
.ws1c0{word-spacing:13.536000px;}
.ws1ff{word-spacing:13.608000px;}
.ws120{word-spacing:13.680000px;}
.ws150{word-spacing:13.935600px;}
.ws218{word-spacing:13.968000px;}
.ws278{word-spacing:13.986000px;}
.ws10f{word-spacing:14.040000px;}
.ws116{word-spacing:14.256000px;}
.ws34{word-spacing:14.296536px;}
.ws266{word-spacing:14.301000px;}
.ws1da{word-spacing:14.328000px;}
.ws26c{word-spacing:14.364000px;}
.ws19e{word-spacing:14.400000px;}
.ws1c5{word-spacing:14.616000px;}
.ws267{word-spacing:14.679000px;}
.ws1c4{word-spacing:14.688000px;}
.ws137{word-spacing:14.760000px;}
.ws2c9{word-spacing:14.816412px;}
.ws140{word-spacing:14.976000px;}
.ws127{word-spacing:15.048000px;}
.ws24a{word-spacing:15.057000px;}
.ws141{word-spacing:15.120000px;}
.ws151{word-spacing:15.336000px;}
.ws25b{word-spacing:15.372000px;}
.ws249{word-spacing:15.435000px;}
.ws169{word-spacing:15.480000px;}
.ws138{word-spacing:15.696000px;}
.ws139{word-spacing:15.768000px;}
.ws272{word-spacing:15.813000px;}
.wse5{word-spacing:15.840000px;}
.ws182{word-spacing:16.056000px;}
.ws162{word-spacing:16.128000px;}
.ws27e{word-spacing:16.191000px;}
.ws161{word-spacing:16.200000px;}
.ws1ec{word-spacing:16.352640px;}
.ws154{word-spacing:16.416000px;}
.ws27f{word-spacing:16.443000px;}
.ws1d0{word-spacing:16.488000px;}
.ws23c{word-spacing:16.506000px;}
.ws153{word-spacing:16.560000px;}
.wsef{word-spacing:16.776000px;}
.ws23d{word-spacing:16.821000px;}
.ws1db{word-spacing:16.848000px;}
.ws24b{word-spacing:16.884000px;}
.wsf0{word-spacing:16.920000px;}
.ws136{word-spacing:17.136000px;}
.ws134{word-spacing:17.208000px;}
.ws135{word-spacing:17.280000px;}
.ws2c1{word-spacing:17.326440px;}
.ws2c2{word-spacing:17.359380px;}
.ws24c{word-spacing:17.388000px;}
.ws196{word-spacing:17.568000px;}
.ws10b{word-spacing:17.640000px;}
.ws158{word-spacing:17.856000px;}
.ws216{word-spacing:17.928000px;}
.ws157{word-spacing:18.000000px;}
.ws183{word-spacing:18.288000px;}
.ws1dc{word-spacing:18.360000px;}
.ws1be{word-spacing:18.576000px;}
.ws24d{word-spacing:18.711000px;}
.ws172{word-spacing:18.720000px;}
.ws18f{word-spacing:18.775800px;}
.ws1f{word-spacing:18.883692px;}
.ws18e{word-spacing:18.907560px;}
.ws170{word-spacing:18.936000px;}
.ws16f{word-spacing:19.008000px;}
.ws16e{word-spacing:19.080000px;}
.ws1ac{word-spacing:19.236960px;}
.ws1e{word-spacing:19.292508px;}
.ws20{word-spacing:19.310544px;}
.ws277{word-spacing:19.341000px;}
.ws22c{word-spacing:19.368000px;}
.ws252{word-spacing:19.404000px;}
.ws181{word-spacing:19.440000px;}
.ws253{word-spacing:19.719000px;}
.ws23b{word-spacing:19.782000px;}
.wsf9{word-spacing:19.800000px;}
.ws231{word-spacing:20.088000px;}
.ws247{word-spacing:20.412000px;}
.ws118{word-spacing:20.520000px;}
.ws248{word-spacing:20.727000px;}
.ws244{word-spacing:20.853000px;}
.ws143{word-spacing:20.874960px;}
.ws224{word-spacing:20.880000px;}
.ws173{word-spacing:21.600000px;}
.ws112{word-spacing:21.888000px;}
.ws111{word-spacing:21.960000px;}
.ws1b2{word-spacing:22.248000px;}
.ws1f5{word-spacing:22.333320px;}
.ws1f4{word-spacing:22.465080px;}
.ws20c{word-spacing:22.608000px;}
.ws20d{word-spacing:22.896000px;}
.ws142{word-spacing:22.968000px;}
.ws144{word-spacing:23.040000px;}
.ws124{word-spacing:23.256000px;}
.ws125{word-spacing:23.400000px;}
.ws27a{word-spacing:23.751000px;}
.ws1a5{word-spacing:24.336000px;}
.ws235{word-spacing:24.408000px;}
.ws1bf{word-spacing:24.480000px;}
.ws227{word-spacing:24.840000px;}
.wsdc{word-spacing:25.560000px;}
.ws1dd{word-spacing:26.136000px;}
.ws18d{word-spacing:26.813160px;}
.wsdd{word-spacing:27.000000px;}
.ws1ad{word-spacing:27.142560px;}
.ws25d{word-spacing:27.342000px;}
.ws1ce{word-spacing:27.576000px;}
.ws1cd{word-spacing:27.648000px;}
.ws254{word-spacing:27.657000px;}
.ws156{word-spacing:27.720000px;}
.ws21e{word-spacing:27.936000px;}
.ws17e{word-spacing:28.080000px;}
.ws21d{word-spacing:28.296000px;}
.ws209{word-spacing:28.368000px;}
.ws22e{word-spacing:28.800000px;}
.ws21c{word-spacing:31.176000px;}
.ws202{word-spacing:31.358880px;}
.ws1cf{word-spacing:32.616000px;}
.ws1a6{word-spacing:33.120000px;}
.ws22f{word-spacing:33.696000px;}
.ws264{word-spacing:33.831000px;}
.ws1ae{word-spacing:34.056000px;}
.ws17d{word-spacing:34.488000px;}
.ws17c{word-spacing:34.560000px;}
.ws11e{word-spacing:35.640000px;}
.ws230{word-spacing:35.928000px;}
.ws1bd{word-spacing:38.808000px;}
.ws212{word-spacing:39.066840px;}
.ws22a{word-spacing:39.600000px;}
.ws15e{word-spacing:43.200000px;}
.ws25a{word-spacing:45.612000px;}
.ws15f{word-spacing:47.088000px;}
.ws1a8{word-spacing:47.520000px;}
.ws1a7{word-spacing:47.808000px;}
.ws115{word-spacing:54.360000px;}
.ws225{word-spacing:55.728000px;}
.ws226{word-spacing:55.800000px;}
.ws274{word-spacing:64.071000px;}
.ws27c{word-spacing:66.843000px;}
.ws27d{word-spacing:67.221000px;}
._12{margin-left:-39.502457px;}
._1a{margin-left:-33.564848px;}
._19{margin-left:-21.271371px;}
._8{margin-left:-18.444816px;}
._18{margin-left:-16.388962px;}
._5{margin-left:-12.258540px;}
._1e{margin-left:-10.685518px;}
._1f{margin-left:-9.413712px;}
._20{margin-left:-8.062816px;}
._16{margin-left:-6.992062px;}
._11{margin-left:-4.645584px;}
._7{margin-left:-3.444495px;}
._2{margin-left:-2.168335px;}
._0{margin-left:-1.124604px;}
._1{width:1.238544px;}
._3{width:2.729808px;}
._6{width:3.790999px;}
._d{width:4.796604px;}
._1d{width:5.983147px;}
._17{width:6.984000px;}
._f{width:8.265456px;}
._4{width:11.092140px;}
._c{width:12.805812px;}
._10{width:14.849208px;}
._9{width:18.767467px;}
._e{width:23.409559px;}
._15{width:27.603720px;}
._a{width:28.905624px;}
._13{width:32.559120px;}
._b{width:33.955776px;}
._14{width:45.194976px;}
._1b{width:64.099999px;}
._1c{width:66.770604px;}
.fc2{color:rgb(44,45,46);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:6.120000px;}
.fsc{font-size:29.880000px;}
.fs3{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fs1{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:56.880000px;}
.fs4{font-size:60.120000px;}
.fs9{font-size:63.000000px;}
.fs5{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:96.120000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:4.410000px;}
.y5d{bottom:145.710000px;}
.y5{bottom:145.830450px;}
.y232{bottom:180.895500px;}
.y2bd{bottom:182.144250px;}
.y12a{bottom:184.590000px;}
.y2d{bottom:184.984950px;}
.y164{bottom:187.013340px;}
.y189{bottom:187.920000px;}
.y269{bottom:188.010000px;}
.y109{bottom:190.980000px;}
.y28f{bottom:192.858750px;}
.y1ab{bottom:193.680000px;}
.y2ed{bottom:194.071485px;}
.y1e4{bottom:194.490000px;}
.y1ca{bottom:194.940000px;}
.y116{bottom:196.650000px;}
.y88{bottom:198.360000px;}
.yb1{bottom:198.450000px;}
.y2c{bottom:199.740450px;}
.y2bc{bottom:200.241000px;}
.yfb{bottom:201.330000px;}
.y129{bottom:201.960000px;}
.y231{bottom:203.400000px;}
.y244{bottom:205.290000px;}
.y163{bottom:205.381620px;}
.y1e3{bottom:206.730000px;}
.y188{bottom:208.620000px;}
.y268{bottom:208.710000px;}
.y28e{bottom:210.955500px;}
.y108{bottom:212.130000px;}
.y2ec{bottom:213.061395px;}
.y128{bottom:214.287750px;}
.y1aa{bottom:214.380000px;}
.y2b{bottom:214.590450px;}
.yd2{bottom:215.190000px;}
.y1c9{bottom:215.640000px;}
.y230{bottom:216.630000px;}
.y210{bottom:217.080180px;}
.y115{bottom:217.800000px;}
.y2bb{bottom:218.416500px;}
.y26d{bottom:218.970000px;}
.y87{bottom:219.060000px;}
.yb0{bottom:219.150000px;}
.y162{bottom:219.600000px;}
.y5a{bottom:221.426100px;}
.y5b{bottom:221.430450px;}
.yfa{bottom:222.480000px;}
.y243{bottom:225.990000px;}
.y1e2{bottom:227.430000px;}
.y28d{bottom:229.052250px;}
.y187{bottom:229.320000px;}
.y267{bottom:229.410000px;}
.y2eb{bottom:232.051305px;}
.y107{bottom:233.280000px;}
.y127{bottom:233.640000px;}
.y1a9{bottom:235.080000px;}
.y20f{bottom:236.070090px;}
.yd1{bottom:236.250000px;}
.y1c8{bottom:236.340000px;}
.y2ba{bottom:236.513250px;}
.y59{bottom:238.673550px;}
.y114{bottom:238.950000px;}
.y26c{bottom:239.670000px;}
.y86{bottom:239.760000px;}
.y149{bottom:242.182530px;}
.yf9{bottom:243.540000px;}
.y22f{bottom:246.600000px;}
.y242{bottom:246.690000px;}
.y28c{bottom:247.227750px;}
.y1e1{bottom:248.130000px;}
.yaf{bottom:249.840000px;}
.y186{bottom:250.020000px;}
.y266{bottom:250.110000px;}
.y2ea{bottom:251.041215px;}
.y126{bottom:251.280000px;}
.y106{bottom:254.430000px;}
.y2b9{bottom:254.610000px;}
.y20e{bottom:255.060000px;}
.y2a{bottom:256.074330px;}
.y1c7{bottom:257.040000px;}
.yd0{bottom:257.400000px;}
.y113{bottom:260.010000px;}
.y26b{bottom:260.370000px;}
.y85{bottom:260.460000px;}
.y148{bottom:261.090090px;}
.y125{bottom:263.970000px;}
.yf8{bottom:264.690000px;}
.y28b{bottom:265.324500px;}
.y1a8{bottom:265.770000px;}
.y22e{bottom:267.300000px;}
.y241{bottom:267.390000px;}
.y1e0{bottom:268.830000px;}
.y2e9{bottom:269.940540px;}
.y185{bottom:270.720000px;}
.y265{bottom:270.810000px;}
.y20d{bottom:272.340000px;}
.y2b8{bottom:272.706750px;}
.y58{bottom:273.603270px;}
.y29{bottom:274.143720px;}
.y105{bottom:275.490000px;}
.y1c6{bottom:277.740000px;}
.ycf{bottom:278.550000px;}
.y147{bottom:280.080000px;}
.yae{bottom:280.800000px;}
.y26a{bottom:281.070000px;}
.y84{bottom:281.160000px;}
.y28a{bottom:283.421250px;}
.y20c{bottom:284.580000px;}
.y124{bottom:285.030000px;}
.yf7{bottom:285.840000px;}
.y1a7{bottom:287.730000px;}
.y22d{bottom:288.000000px;}
.y240{bottom:288.090000px;}
.y2e8{bottom:288.930135px;}
.y1df{bottom:289.530000px;}
.y2b7{bottom:290.882250px;}
.y57{bottom:291.338670px;}
.y184{bottom:291.420000px;}
.y264{bottom:291.510000px;}
.y104{bottom:296.640000px;}
.y146{bottom:297.450000px;}
.y1c5{bottom:298.440000px;}
.yce{bottom:299.700000px;}
.y289{bottom:301.518000px;}
.yad{bottom:301.770000px;}
.y83{bottom:301.860000px;}
.y112{bottom:302.310000px;}
.y20b{bottom:305.280000px;}
.y123{bottom:306.180000px;}
.yf6{bottom:306.990000px;}
.y2e7{bottom:307.920045px;}
.y1a6{bottom:308.700000px;}
.y2b6{bottom:308.979000px;}
.y23f{bottom:309.061620px;}
.y56{bottom:309.164250px;}
.y28{bottom:309.509310px;}
.y145{bottom:309.690000px;}
.y1de{bottom:310.230000px;}
.y183{bottom:312.120000px;}
.y263{bottom:312.210000px;}
.y103{bottom:317.790000px;}
.y1c4{bottom:319.140000px;}
.y288{bottom:319.693500px;}
.ycd{bottom:320.850000px;}
.yac{bottom:322.470000px;}
.y82{bottom:322.560000px;}
.y23e{bottom:323.280000px;}
.y111{bottom:323.460000px;}
.y20a{bottom:325.980000px;}
.y27{bottom:326.793810px;}
.y55{bottom:326.899650px;}
.y2e6{bottom:326.909955px;}
.y2b5{bottom:327.075750px;}
.y122{bottom:327.330000px;}
.yf5{bottom:328.050000px;}
.y1a5{bottom:329.400000px;}
.y144{bottom:330.390000px;}
.y1dd{bottom:330.930000px;}
.y182{bottom:332.820000px;}
.y262{bottom:332.910000px;}
.y287{bottom:337.790250px;}
.y102{bottom:338.940000px;}
.y1c3{bottom:339.840000px;}
.ycc{bottom:341.910000px;}
.yab{bottom:343.170000px;}
.y81{bottom:343.260000px;}
.y26{bottom:343.988130px;}
.y110{bottom:344.520000px;}
.y54{bottom:344.635050px;}
.y2b4{bottom:345.172500px;}
.y2e5{bottom:345.990450px;}
.y209{bottom:346.680000px;}
.y121{bottom:348.480000px;}
.yf4{bottom:349.200000px;}
.y1a4{bottom:350.100000px;}
.y143{bottom:351.090000px;}
.y1dc{bottom:351.630000px;}
.y181{bottom:353.520000px;}
.y261{bottom:353.610000px;}
.y286{bottom:355.887000px;}
.y101{bottom:360.090000px;}
.y1c2{bottom:360.540000px;}
.y25{bottom:361.272630px;}
.y52{bottom:362.354070px;}
.y53{bottom:362.370450px;}
.y10f{bottom:362.880000px;}
.ycb{bottom:363.060000px;}
.y2b3{bottom:363.269250px;}
.y2e4{bottom:363.630450px;}
.yaa{bottom:363.870000px;}
.y80{bottom:363.960000px;}
.y208{bottom:367.380000px;}
.y120{bottom:369.540000px;}
.yf3{bottom:370.350000px;}
.y1a3{bottom:370.800000px;}
.y142{bottom:371.790000px;}
.y1db{bottom:372.330000px;}
.y285{bottom:373.983750px;}
.y180{bottom:374.220000px;}
.y260{bottom:374.310000px;}
.y2e3{bottom:375.601275px;}
.y24{bottom:378.557130px;}
.y51{bottom:380.179650px;}
.y100{bottom:381.150000px;}
.y1c1{bottom:381.240000px;}
.y2b2{bottom:381.444750px;}
.y10e{bottom:383.040000px;}
.yca{bottom:384.210000px;}
.ya9{bottom:384.570000px;}
.y7f{bottom:384.660000px;}
.y207{bottom:388.080000px;}
.y11f{bottom:390.690000px;}
.yf2{bottom:391.500000px;}
.y284{bottom:392.080500px;}
.y141{bottom:392.490000px;}
.y1da{bottom:393.030000px;}
.y2e2{bottom:394.501050px;}
.y17f{bottom:394.920000px;}
.y26f{bottom:395.010000px;}
.y23{bottom:395.751450px;}
.y50{bottom:397.915050px;}
.y2b1{bottom:399.541500px;}
.y1c0{bottom:400.050000px;}
.yff{bottom:402.300000px;}
.y10d{bottom:403.290000px;}
.y25f{bottom:405.000000px;}
.ya8{bottom:405.270000px;}
.y7e{bottom:405.360000px;}
.y206{bottom:408.780000px;}
.y283{bottom:410.256000px;}
.y11e{bottom:411.840000px;}
.y1bf{bottom:412.012620px;}
.y1a2{bottom:412.200000px;}
.yf1{bottom:412.650000px;}
.y22{bottom:413.035950px;}
.y140{bottom:413.190000px;}
.y2e1{bottom:413.490960px;}
.y1d9{bottom:413.730000px;}
.yc9{bottom:415.350000px;}
.y17e{bottom:415.620000px;}
.y4f{bottom:415.650450px;}
.y4e{bottom:415.652880px;}
.y2b0{bottom:417.638250px;}
.yfe{bottom:423.450000px;}
.y26e{bottom:425.700000px;}
.ya7{bottom:425.970000px;}
.y7d{bottom:426.060000px;}
.y282{bottom:428.352750px;}
.y205{bottom:429.480000px;}
.y20{bottom:430.298460px;}
.y21{bottom:430.320450px;}
.y1be{bottom:430.920180px;}
.y2e0{bottom:432.480870px;}
.y1a1{bottom:432.900000px;}
.y11d{bottom:432.990000px;}
.y4c{bottom:433.347690px;}
.y4d{bottom:433.380450px;}
.yf0{bottom:433.710000px;}
.y13f{bottom:433.890000px;}
.y1d8{bottom:434.430000px;}
.y2af{bottom:435.735000px;}
.y17d{bottom:436.320000px;}
.yc8{bottom:436.770000px;}
.y10b{bottom:445.770000px;}
.y281{bottom:446.449500px;}
.ya6{bottom:446.670000px;}
.y7c{bottom:446.760000px;}
.y1f{bottom:447.492780px;}
.y1bd{bottom:449.910090px;}
.y4b{bottom:451.173270px;}
.y2df{bottom:451.470780px;}
.y1a0{bottom:453.600000px;}
.y2ae{bottom:453.910500px;}
.yfd{bottom:454.590000px;}
.yef{bottom:454.860000px;}
.y1d7{bottom:455.130000px;}
.y17c{bottom:457.020000px;}
.y10a{bottom:457.380000px;}
.y161{bottom:457.830000px;}
.yc7{bottom:457.920000px;}
.y204{bottom:460.170000px;}
.y11c{bottom:464.130000px;}
.y280{bottom:464.546250px;}
.y1e{bottom:464.777280px;}
.ya5{bottom:467.370000px;}
.y7b{bottom:467.460000px;}
.y1bc{bottom:468.900000px;}
.y4a{bottom:468.908670px;}
.y160{bottom:469.800180px;}
.y2de{bottom:470.460690px;}
.y2ad{bottom:472.007250px;}
.y19f{bottom:474.300000px;}
.y13e{bottom:475.290000px;}
.y1d6{bottom:475.830000px;}
.yee{bottom:476.010000px;}
.y17b{bottom:477.720000px;}
.yc6{bottom:478.980000px;}
.y203{bottom:481.140000px;}
.y1d{bottom:482.061780px;}
.y27f{bottom:482.721750px;}
.y1bb{bottom:486.270000px;}
.y11b{bottom:486.540000px;}
.y49{bottom:486.644070px;}
.ya4{bottom:488.070000px;}
.y7a{bottom:488.160000px;}
.y15f{bottom:488.790090px;}
.y2dd{bottom:489.450600px;}
.y2ac{bottom:490.104000px;}
.y19e{bottom:495.000000px;}
.y13d{bottom:495.990000px;}
.y1d5{bottom:496.530000px;}
.yed{bottom:497.160000px;}
.y17a{bottom:498.420000px;}
.y1ba{bottom:498.510000px;}
.y1c{bottom:499.256100px;}
.yc5{bottom:500.130000px;}
.y27e{bottom:500.818500px;}
.y202{bottom:501.840000px;}
.y48{bottom:504.379470px;}
.y2dc{bottom:507.090600px;}
.y15e{bottom:507.780090px;}
.y11a{bottom:507.960000px;}
.y2ab{bottom:508.200750px;}
.ya3{bottom:508.770000px;}
.y79{bottom:508.860000px;}
.y19d{bottom:515.700000px;}
.y1a{bottom:516.494370px;}
.y1b{bottom:516.540600px;}
.y13c{bottom:516.690000px;}
.y1d4{bottom:517.230000px;}
.yec{bottom:518.220000px;}
.y27d{bottom:518.915250px;}
.y2db{bottom:519.061260px;}
.y179{bottom:519.120000px;}
.y1b9{bottom:519.210000px;}
.yc4{bottom:521.280000px;}
.y47{bottom:522.114870px;}
.y201{bottom:522.540000px;}
.y2aa{bottom:526.376250px;}
.y15d{bottom:526.770000px;}
.y25e{bottom:527.580000px;}
.y119{bottom:529.110000px;}
.ya2{bottom:529.470000px;}
.y78{bottom:529.560000px;}
.y19{bottom:533.778870px;}
.y19c{bottom:536.400000px;}
.y27c{bottom:537.012000px;}
.y13b{bottom:537.390000px;}
.y1d3{bottom:537.930000px;}
.y2da{bottom:538.051170px;}
.yeb{bottom:539.370000px;}
.y25d{bottom:539.542980px;}
.y178{bottom:539.820000px;}
.y1b8{bottom:539.910000px;}
.y45{bottom:539.935050px;}
.y46{bottom:539.940450px;}
.yc3{bottom:542.430000px;}
.y200{bottom:543.240000px;}
.y15c{bottom:544.140000px;}
.y2a9{bottom:544.473000px;}
.ya1{bottom:550.170000px;}
.y77{bottom:550.260000px;}
.y18{bottom:550.973190px;}
.y27b{bottom:555.187500px;}
.y19b{bottom:555.210000px;}
.y15b{bottom:556.380000px;}
.y2d9{bottom:557.041080px;}
.y22c{bottom:557.100000px;}
.y44{bottom:557.637870px;}
.y13a{bottom:558.090000px;}
.y25c{bottom:558.532890px;}
.y1d2{bottom:558.803340px;}
.yea{bottom:560.520000px;}
.y1b7{bottom:560.610000px;}
.y2a8{bottom:562.569750px;}
.yc2{bottom:563.490000px;}
.y1ff{bottom:563.940000px;}
.y19a{bottom:567.172440px;}
.y17{bottom:568.257690px;}
.ya0{bottom:570.870000px;}
.y76{bottom:570.960000px;}
.y118{bottom:571.320000px;}
.y27a{bottom:573.284250px;}
.y43{bottom:575.373270px;}
.y2d8{bottom:576.030990px;}
.y15a{bottom:577.080000px;}
.y1d1{bottom:577.171620px;}
.y25b{bottom:577.522800px;}
.y22b{bottom:577.800000px;}
.y139{bottom:578.790000px;}
.y2a7{bottom:580.666500px;}
.y177{bottom:581.220000px;}
.y1b6{bottom:581.310000px;}
.ye9{bottom:581.670000px;}
.yc1{bottom:584.640000px;}
.y16{bottom:585.452010px;}
.y199{bottom:586.080000px;}
.y279{bottom:591.381000px;}
.y1d0{bottom:591.390000px;}
.y9f{bottom:591.570000px;}
.y75{bottom:591.660000px;}
.y42{bottom:593.108670px;}
.y2d7{bottom:595.020900px;}
.y25a{bottom:596.430360px;}
.y159{bottom:597.780000px;}
.y22a{bottom:598.500000px;}
.y2a6{bottom:598.763250px;}
.y138{bottom:599.490000px;}
.y176{bottom:601.920000px;}
.y1b5{bottom:602.010000px;}
.y117{bottom:602.460000px;}
.ye8{bottom:602.730000px;}
.y15{bottom:602.736510px;}
.y198{bottom:603.450000px;}
.yc0{bottom:605.790000px;}
.y278{bottom:609.477750px;}
.y41{bottom:610.934250px;}
.y9e{bottom:612.270000px;}
.y74{bottom:612.360000px;}
.y2d6{bottom:613.920225px;}
.y1fe{bottom:615.055500px;}
.y259{bottom:615.420270px;}
.y197{bottom:615.690000px;}
.y2a5{bottom:616.938750px;}
.y158{bottom:618.480000px;}
.y229{bottom:619.200000px;}
.y14{bottom:620.021010px;}
.y137{bottom:620.190000px;}
.y175{bottom:622.620000px;}
.y1b4{bottom:622.710000px;}
.ye7{bottom:623.880000px;}
.ybf{bottom:626.940000px;}
.y277{bottom:627.653250px;}
.y40{bottom:628.669650px;}
.y1fd{bottom:632.340000px;}
.y2d5{bottom:632.910135px;}
.y9d{bottom:632.970000px;}
.y73{bottom:633.060000px;}
.y258{bottom:634.410180px;}
.y2a4{bottom:635.035500px;}
.y196{bottom:636.390000px;}
.y13{bottom:637.215330px;}
.y157{bottom:639.180000px;}
.y228{bottom:639.900000px;}
.y136{bottom:640.890000px;}
.y174{bottom:643.320000px;}
.y1b3{bottom:643.410000px;}
.ye6{bottom:645.030000px;}
.y276{bottom:645.750000px;}
.y3f{bottom:646.405050px;}
.ybe{bottom:648.090000px;}
.y1fc{bottom:649.615680px;}
.y2d4{bottom:651.900045px;}
.y2a3{bottom:653.132250px;}
.y257{bottom:653.400090px;}
.y9c{bottom:653.670000px;}
.y72{bottom:653.760000px;}
.y12{bottom:654.499830px;}
.y195{bottom:657.090000px;}
.y135{bottom:659.700000px;}
.y156{bottom:659.880000px;}
.y227{bottom:660.600000px;}
.y173{bottom:662.130000px;}
.y1b2{bottom:664.110000px;}
.y3e{bottom:664.122720px;}
.ye5{bottom:666.180000px;}
.y1fb{bottom:666.796680px;}
.ybd{bottom:669.150000px;}
.y2d3{bottom:670.889955px;}
.y2a2{bottom:671.229000px;}
.y134{bottom:671.662710px;}
.y11{bottom:671.784330px;}
.y256{bottom:672.390000px;}
.y172{bottom:674.100090px;}
.y275{bottom:674.280000px;}
.y9b{bottom:674.370000px;}
.y71{bottom:674.460000px;}
.y194{bottom:677.790000px;}
.y226{bottom:679.410000px;}
.y155{bottom:680.580000px;}
.y3d{bottom:681.948300px;}
.y1fa{bottom:684.081180px;}
.y1b1{bottom:684.810000px;}
.yfc{bottom:687.330000px;}
.ye4{bottom:687.330180px;}
.y2a1{bottom:689.404500px;}
.y255{bottom:689.760000px;}
.y10{bottom:689.880450px;}
.y2d2{bottom:689.970450px;}
.ybc{bottom:690.300000px;}
.y133{bottom:690.570270px;}
.y225{bottom:691.372620px;}
.y171{bottom:693.082530px;}
.y274{bottom:694.620000px;}
.y9a{bottom:695.070000px;}
.y70{bottom:695.160000px;}
.y193{bottom:698.490000px;}
.y3c{bottom:699.683700px;}
.y154{bottom:701.280000px;}
.y1f9{bottom:701.365680px;}
.y254{bottom:702.000000px;}
.y1b0{bottom:705.510000px;}
.y2a0{bottom:707.501250px;}
.y2d1{bottom:707.610450px;}
.ye3{bottom:708.390000px;}
.y132{bottom:709.560180px;}
.y224{bottom:710.280180px;}
.ybb{bottom:711.450000px;}
.y170{bottom:712.072440px;}
.y273{bottom:712.246500px;}
.y99{bottom:715.770000px;}
.y6f{bottom:715.860000px;}
.y3b{bottom:717.419100px;}
.y1f8{bottom:718.560000px;}
.y192{bottom:719.190000px;}
.y2d0{bottom:719.581125px;}
.y153{bottom:721.980000px;}
.y253{bottom:722.700000px;}
.yf{bottom:724.710450px;}
.y29f{bottom:725.598000px;}
.y1af{bottom:726.210000px;}
.y131{bottom:728.550090px;}
.y223{bottom:729.270090px;}
.ye2{bottom:729.540000px;}
.y16f{bottom:730.980000px;}
.y272{bottom:731.154060px;}
.yba{bottom:732.600000px;}
.y1f7{bottom:734.580000px;}
.y3a{bottom:735.145470px;}
.y98{bottom:736.470000px;}
.y6e{bottom:736.560000px;}
.y2cf{bottom:738.480990px;}
.y191{bottom:739.890000px;}
.y152{bottom:742.680000px;}
.y23d{bottom:743.122710px;}
.y252{bottom:743.400000px;}
.y29e{bottom:743.694750px;}
.ye{bottom:744.600450px;}
.y1f6{bottom:746.820000px;}
.y1ae{bottom:746.910000px;}
.y130{bottom:747.540000px;}
.y222{bottom:748.252620px;}
.y16e{bottom:748.350000px;}
.y271{bottom:750.143970px;}
.ye1{bottom:750.690000px;}
.yd{bottom:751.350450px;}
.y39{bottom:752.971050px;}
.yb9{bottom:753.660000px;}
.y97{bottom:757.170000px;}
.y6d{bottom:757.260000px;}
.y2ce{bottom:757.470900px;}
.y16d{bottom:760.590000px;}
.y29d{bottom:761.870250px;}
.y23c{bottom:762.030270px;}
.y151{bottom:763.380000px;}
.y251{bottom:764.010000px;}
.y12f{bottom:766.800000px;}
.y221{bottom:767.242530px;}
.y1f5{bottom:767.520000px;}
.y1ad{bottom:767.610000px;}
.yc{bottom:770.340450px;}
.ye0{bottom:771.840000px;}
.yb8{bottom:774.810000px;}
.y2cd{bottom:776.460810px;}
.y96{bottom:777.870000px;}
.y6c{bottom:777.960000px;}
.y270{bottom:778.950000px;}
.y29c{bottom:779.967000px;}
.y23b{bottom:781.020180px;}
.y16c{bottom:781.290000px;}
.y150{bottom:784.080000px;}
.y250{bottom:784.710000px;}
.y220{bottom:786.232440px;}
.y12e{bottom:787.673340px;}
.y1f4{bottom:788.220000px;}
.y38{bottom:789.060450px;}
.ydf{bottom:792.900000px;}
.y2cc{bottom:795.450720px;}
.yb7{bottom:795.960000px;}
.y29b{bottom:798.063750px;}
.y1ac{bottom:798.300000px;}
.y95{bottom:798.570000px;}
.y6b{bottom:798.660000px;}
.y23a{bottom:800.010090px;}
.y16b{bottom:801.990000px;}
.yb{bottom:803.640300px;}
.y14f{bottom:804.690000px;}
.y21f{bottom:805.140000px;}
.y24f{bottom:805.410000px;}
.y12d{bottom:806.040000px;}
.y1f3{bottom:807.030000px;}
.yde{bottom:814.050000px;}
.y2cb{bottom:814.440630px;}
.y37{bottom:816.150450px;}
.y29a{bottom:816.160500px;}
.yb6{bottom:817.110000px;}
.y1f2{bottom:818.626680px;}
.y239{bottom:819.000000px;}
.y94{bottom:819.270000px;}
.y6a{bottom:819.360000px;}
.y12c{bottom:822.240000px;}
.y21e{bottom:822.510000px;}
.y16a{bottom:822.690000px;}
.y14e{bottom:825.390000px;}
.y24e{bottom:826.110000px;}
.y12b{bottom:829.439730px;}
.y2ca{bottom:833.430540px;}
.y299{bottom:834.257250px;}
.y21d{bottom:834.750000px;}
.ydd{bottom:835.200000px;}
.y36{bottom:835.680600px;}
.y1f1{bottom:835.821000px;}
.y238{bottom:837.990000px;}
.yb5{bottom:838.260000px;}
.y93{bottom:839.970000px;}
.y69{bottom:840.060000px;}
.y169{bottom:843.390000px;}
.y14d{bottom:844.560000px;}
.y24d{bottom:846.810000px;}
.y1cf{bottom:848.430000px;}
.ya{bottom:848.460450px;}
.y2c9{bottom:852.420450px;}
.y298{bottom:852.432750px;}
.y1f0{bottom:853.105500px;}
.y21c{bottom:855.450000px;}
.ydc{bottom:856.350000px;}
.y237{bottom:856.890180px;}
.y14c{bottom:858.420000px;}
.yb4{bottom:859.320000px;}
.y1ce{bottom:860.392800px;}
.y92{bottom:860.670000px;}
.y68{bottom:860.760000px;}
.y168{bottom:862.200000px;}
.y190{bottom:864.090000px;}
.y35{bottom:866.280450px;}
.y24c{bottom:867.510000px;}
.y2c8{bottom:870.060450px;}
.y1ef{bottom:870.390000px;}
.y297{bottom:870.529500px;}
.y167{bottom:874.170090px;}
.y236{bottom:875.880090px;}
.y21b{bottom:876.150000px;}
.y14b{bottom:876.784230px;}
.ydb{bottom:877.500000px;}
.y1cd{bottom:879.382710px;}
.yb3{bottom:880.470000px;}
.y91{bottom:881.370000px;}
.y67{bottom:881.460000px;}
.y2c7{bottom:882.030630px;}
.y9{bottom:882.480450px;}
.y18f{bottom:884.790000px;}
.y1ee{bottom:886.320000px;}
.y24b{bottom:888.210000px;}
.y296{bottom:888.626250px;}
.y14a{bottom:891.002610px;}
.y166{bottom:893.160000px;}
.y235{bottom:894.870000px;}
.y21a{bottom:896.850000px;}
.y1cc{bottom:898.290270px;}
.yda{bottom:898.560000px;}
.y2c6{bottom:901.020540px;}
.yb2{bottom:901.620000px;}
.y90{bottom:902.070000px;}
.y66{bottom:902.160000px;}
.y18e{bottom:905.490000px;}
.y295{bottom:906.723000px;}
.y24a{bottom:907.020000px;}
.y34{bottom:908.031450px;}
.y165{bottom:910.530000px;}
.y234{bottom:913.860000px;}
.y1cb{bottom:917.280180px;}
.y219{bottom:917.550000px;}
.y249{bottom:918.990270px;}
.y1ed{bottom:919.260000px;}
.yd9{bottom:919.710000px;}
.y2c5{bottom:920.010450px;}
.y8f{bottom:922.770000px;}
.y65{bottom:922.860000px;}
.y18d{bottom:924.300000px;}
.y294{bottom:924.898500px;}
.y233{bottom:931.230000px;}
.y8{bottom:933.150450px;}
.y18c{bottom:936.270090px;}
.y248{bottom:937.980180px;}
.y218{bottom:938.250000px;}
.y2c4{bottom:939.000450px;}
.y1ec{bottom:939.960000px;}
.yd8{bottom:940.860000px;}
.y33{bottom:941.430450px;}
.y293{bottom:942.995250px;}
.y64{bottom:943.470000px;}
.y7{bottom:954.212970px;}
.y18b{bottom:955.260000px;}
.y247{bottom:956.970090px;}
.y2c3{bottom:957.990450px;}
.y217{bottom:958.950000px;}
.y1eb{bottom:960.660000px;}
.y292{bottom:961.092000px;}
.yd7{bottom:962.010000px;}
.y8e{bottom:964.170000px;}
.y18a{bottom:972.630000px;}
.y63{bottom:974.250000px;}
.y6{bottom:975.360450px;}
.y246{bottom:975.960000px;}
.y2c2{bottom:977.160450px;}
.y291{bottom:979.188750px;}
.y216{bottom:979.650000px;}
.y1ea{bottom:981.360000px;}
.yd6{bottom:983.070000px;}
.y8d{bottom:984.870000px;}
.y245{bottom:993.330000px;}
.y62{bottom:995.220000px;}
.y290{bottom:997.364250px;}
.y2c1{bottom:997.498875px;}
.y215{bottom:1000.350000px;}
.y1e9{bottom:1002.060000px;}
.yd5{bottom:1004.220000px;}
.y8c{bottom:1005.570000px;}
.y32{bottom:1013.612700px;}
.y61{bottom:1015.461000px;}
.y2c0{bottom:1015.589325px;}
.y214{bottom:1019.160000px;}
.y1e8{bottom:1022.760000px;}
.yd4{bottom:1025.370000px;}
.y8b{bottom:1026.270000px;}
.y213{bottom:1031.130180px;}
.y31{bottom:1032.244950px;}
.y60{bottom:1033.557750px;}
.y2bf{bottom:1033.679775px;}
.y1e7{bottom:1041.570000px;}
.yd3{bottom:1046.520000px;}
.y8a{bottom:1046.970000px;}
.y212{bottom:1050.120090px;}
.y30{bottom:1050.877200px;}
.y5f{bottom:1051.654500px;}
.y2be{bottom:1051.770225px;}
.y1e6{bottom:1053.176310px;}
.y89{bottom:1067.670000px;}
.y211{bottom:1069.110000px;}
.y5e{bottom:1069.830000px;}
.y2f{bottom:1069.950450px;}
.y1e5{bottom:1070.460810px;}
.y2{bottom:1086.960450px;}
.y4{bottom:1090.020450px;}
.y1{bottom:1100.100450px;}
.y3{bottom:1104.330450px;}
.y5c{bottom:1106.460000px;}
.y2e{bottom:1106.580450px;}
.he{height:4.249336px;}
.h2f{height:18.718500px;}
.h30{height:18.720000px;}
.h2e{height:21.447070px;}
.h37{height:24.996094px;}
.h10{height:25.013672px;}
.h7{height:25.839844px;}
.h4{height:28.628437px;}
.hd{height:29.265996px;}
.h6{height:30.232617px;}
.h32{height:31.587891px;}
.h5{height:32.543438px;}
.h2{height:32.685120px;}
.h12{height:33.268184px;}
.h3b{height:34.114922px;}
.h35{height:36.957832px;}
.h3{height:37.154880px;}
.h14{height:37.520508px;}
.h1e{height:38.759766px;}
.h1f{height:41.743477px;}
.h8{height:41.772832px;}
.h21{height:41.790232px;}
.h1a{height:41.808952px;}
.h1b{height:41.843752px;}
.h1d{height:41.882152px;}
.h1c{height:41.903152px;}
.h31{height:43.152539px;}
.h2d{height:43.651582px;}
.h15{height:43.773926px;}
.h41{height:44.649141px;}
.h19{height:45.775020px;}
.ha{height:46.032363px;}
.h9{height:47.286914px;}
.hf{height:47.608594px;}
.h3d{height:47.833770px;}
.h29{height:49.218750px;}
.h39{height:49.992188px;}
.h40{height:50.027344px;}
.h18{height:52.031250px;}
.h27{height:52.277344px;}
.h23{height:52.751777px;}
.h38{height:52.805057px;}
.h11{height:53.397598px;}
.h13{height:53.422078px;}
.h20{height:53.545798px;}
.h24{height:55.278809px;}
.h25{height:55.524902px;}
.h1{height:55.872000px;}
.h16{height:55.955566px;}
.h34{height:57.805840px;}
.h17{height:57.838008px;}
.h3e{height:57.859840px;}
.h42{height:58.063184px;}
.h43{height:58.064444px;}
.h3c{height:58.512815px;}
.h33{height:58.513535px;}
.hc{height:58.514135px;}
.h3a{height:58.543055px;}
.h36{height:58.543415px;}
.h3f{height:61.482832px;}
.h2b{height:63.175061px;}
.h26{height:63.175781px;}
.h2a{height:63.949219px;}
.h2c{height:69.011895px;}
.h28{height:69.790254px;}
.hb{height:75.600000px;}
.h22{height:1262.880000px;}
.h0{height:1263.000000px;}
.w4{width:196.830000px;}
.w7{width:196.920000px;}
.w8{width:197.010000px;}
.w5{width:197.730000px;}
.w6{width:198.538500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x3b{left:7.380000px;}
.x37{left:65.070000px;}
.x39{left:98.460000px;}
.x8{left:148.860000px;}
.x36{left:149.940000px;}
.x1d{left:154.800000px;}
.x1a{left:159.120000px;}
.x1b{left:163.080000px;}
.x4c{left:164.520000px;}
.x4f{left:180.179370px;}
.x33{left:182.880000px;}
.x3e{left:191.340000px;}
.xc{left:194.309100px;}
.x1f{left:206.550000px;}
.x30{left:211.230000px;}
.x31{left:218.700000px;}
.x3f{left:223.290000px;}
.x4a{left:229.860000px;}
.x1c{left:234.540000px;}
.xa{left:245.160000px;}
.xb{left:255.334872px;}
.x1e{left:260.089597px;}
.x2c{left:262.890000px;}
.x20{left:269.820000px;}
.x3d{left:285.750000px;}
.x21{left:288.000000px;}
.x49{left:291.240000px;}
.x43{left:293.577480px;}
.x48{left:300.870000px;}
.xd{left:302.130000px;}
.x1{left:304.920000px;}
.x2d{left:308.250000px;}
.x23{left:309.600000px;}
.xe{left:314.550000px;}
.x2e{left:323.280000px;}
.x35{left:338.310000px;}
.x38{left:348.300000px;}
.x24{left:352.080000px;}
.x42{left:357.480000px;}
.x45{left:360.540000px;}
.x4d{left:364.860000px;}
.x10{left:368.100000px;}
.x34{left:372.330000px;}
.x47{left:374.485590px;}
.x4b{left:378.540000px;}
.x22{left:387.720000px;}
.x2f{left:389.520000px;}
.x51{left:395.010000px;}
.x50{left:396.630000px;}
.x52{left:405.000000px;}
.x3c{left:406.800000px;}
.x12{left:427.860000px;}
.x25{left:429.660000px;}
.x26{left:433.440000px;}
.x16{left:443.700000px;}
.x41{left:446.400000px;}
.x2{left:495.990000px;}
.x9{left:499.320000px;}
.x27{left:511.200000px;}
.x13{left:516.960000px;}
.x14{left:520.740000px;}
.x11{left:524.790000px;}
.x28{left:526.320000px;}
.x3a{left:546.030000px;}
.x32{left:548.730000px;}
.x46{left:564.570000px;}
.x44{left:569.065680px;}
.x40{left:573.923430px;}
.xf{left:578.250000px;}
.x17{left:588.330000px;}
.x18{left:592.200000px;}
.x4e{left:593.820000px;}
.x5{left:597.780000px;}
.x3{left:613.170000px;}
.x29{left:686.160000px;}
.x19{left:708.390000px;}
.x7{left:721.530000px;}
.x4{left:726.300000px;}
.x2a{left:729.090000px;}
.x15{left:735.210000px;}
.x6{left:741.600000px;}
.x2b{left:744.030000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.458240pt;}
.v5{vertical-align:21.800000pt;}
.v3{vertical-align:24.000000pt;}
.lsbe{letter-spacing:-1.816960pt;}
.ls81{letter-spacing:-1.768864pt;}
.lsbb{letter-spacing:-1.763520pt;}
.ls13e{letter-spacing:-1.736800pt;}
.lsb9{letter-spacing:-1.710080pt;}
.ls13d{letter-spacing:-1.704736pt;}
.ls80{letter-spacing:-1.699392pt;}
.ls13c{letter-spacing:-1.688704pt;}
.lsba{letter-spacing:-1.656640pt;}
.ls7f{letter-spacing:-1.587168pt;}
.lsbc{letter-spacing:-1.496320pt;}
.lsbd{letter-spacing:-1.442880pt;}
.ls1c{letter-spacing:-1.059552pt;}
.lsc4{letter-spacing:-0.784000pt;}
.ls118{letter-spacing:-0.728000pt;}
.ls101{letter-spacing:-0.640000pt;}
.ls100{letter-spacing:-0.576000pt;}
.ls1f{letter-spacing:-0.568032pt;}
.lsc5{letter-spacing:-0.560000pt;}
.lsae{letter-spacing:-0.555776pt;}
.ls83{letter-spacing:-0.515200pt;}
.ls102{letter-spacing:-0.512000pt;}
.lsc3{letter-spacing:-0.504000pt;}
.ls98{letter-spacing:-0.427520pt;}
.ls2f{letter-spacing:-0.411488pt;}
.lsfa{letter-spacing:-0.374080pt;}
.lsa5{letter-spacing:-0.352704pt;}
.ls9b{letter-spacing:-0.347360pt;}
.ls10c{letter-spacing:-0.336000pt;}
.lsc7{letter-spacing:-0.320000pt;}
.lsa3{letter-spacing:-0.299264pt;}
.lsf3{letter-spacing:-0.292800pt;}
.ls36{letter-spacing:-0.272544pt;}
.lsdb{letter-spacing:-0.256000pt;}
.ls91{letter-spacing:-0.251168pt;}
.ls95{letter-spacing:-0.245824pt;}
.ls143{letter-spacing:-0.240096pt;}
.ls97{letter-spacing:-0.235136pt;}
.lsa7{letter-spacing:-0.229792pt;}
.lsc1{letter-spacing:-0.224000pt;}
.lsf9{letter-spacing:-0.213760pt;}
.ls9c{letter-spacing:-0.208416pt;}
.ls8b{letter-spacing:-0.192384pt;}
.lsc9{letter-spacing:-0.192000pt;}
.lsa2{letter-spacing:-0.187040pt;}
.ls92{letter-spacing:-0.176352pt;}
.lse8{letter-spacing:-0.175680pt;}
.lsc2{letter-spacing:-0.168000pt;}
.ls29{letter-spacing:-0.160320pt;}
.lsaf{letter-spacing:-0.154976pt;}
.ls10e{letter-spacing:-0.149760pt;}
.ls1e{letter-spacing:-0.149632pt;}
.ls37{letter-spacing:-0.138944pt;}
.ls86{letter-spacing:-0.134688pt;}
.lsa6{letter-spacing:-0.133600pt;}
.ls2e{letter-spacing:-0.128256pt;}
.lsc6{letter-spacing:-0.128000pt;}
.ls3a{letter-spacing:-0.122912pt;}
.ls22{letter-spacing:-0.117568pt;}
.lsff{letter-spacing:-0.117120pt;}
.ls2c{letter-spacing:-0.112224pt;}
.lsbf{letter-spacing:-0.112000pt;}
.ls28{letter-spacing:-0.106880pt;}
.ls9d{letter-spacing:-0.101536pt;}
.lse7{letter-spacing:-0.101120pt;}
.ls13f{letter-spacing:-0.100800pt;}
.ls2a{letter-spacing:-0.096192pt;}
.ls141{letter-spacing:-0.093696pt;}
.lsad{letter-spacing:-0.090848pt;}
.ls35{letter-spacing:-0.085504pt;}
.ls3b{letter-spacing:-0.080160pt;}
.ls87{letter-spacing:-0.076128pt;}
.ls8d{letter-spacing:-0.074816pt;}
.ls94{letter-spacing:-0.069472pt;}
.ls148{letter-spacing:-0.064416pt;}
.ls26{letter-spacing:-0.064128pt;}
.lsd3{letter-spacing:-0.064000pt;}
.ls31{letter-spacing:-0.058784pt;}
.lsdf{letter-spacing:-0.058560pt;}
.ls84{letter-spacing:-0.057600pt;}
.ls10d{letter-spacing:-0.056000pt;}
.ls2b{letter-spacing:-0.053440pt;}
.lsca{letter-spacing:-0.050560pt;}
.ls99{letter-spacing:-0.048096pt;}
.ls88{letter-spacing:-0.046848pt;}
.ls93{letter-spacing:-0.042752pt;}
.ls8e{letter-spacing:-0.037408pt;}
.ls140{letter-spacing:-0.035136pt;}
.ls8f{letter-spacing:-0.032064pt;}
.ls85{letter-spacing:-0.029280pt;}
.ls8c{letter-spacing:-0.026720pt;}
.ls147{letter-spacing:-0.023424pt;}
.ls30{letter-spacing:-0.021376pt;}
.lsa0{letter-spacing:-0.021280pt;}
.ls145{letter-spacing:-0.017568pt;}
.ls38{letter-spacing:-0.017024pt;}
.ls34{letter-spacing:-0.016032pt;}
.ls1a{letter-spacing:-0.014976pt;}
.ls39{letter-spacing:-0.012768pt;}
.ls21{letter-spacing:-0.011712pt;}
.ls24{letter-spacing:-0.010688pt;}
.ls142{letter-spacing:-0.005856pt;}
.ls25{letter-spacing:-0.005344pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.004256pt;}
.lsd{letter-spacing:0.005344pt;}
.ls132{letter-spacing:0.005856pt;}
.ls65{letter-spacing:0.008512pt;}
.lsf{letter-spacing:0.010688pt;}
.ls129{letter-spacing:0.011712pt;}
.ls15{letter-spacing:0.016032pt;}
.ls124{letter-spacing:0.016800pt;}
.ls6f{letter-spacing:0.017024pt;}
.ls126{letter-spacing:0.017568pt;}
.ls0{letter-spacing:0.018720pt;}
.ls4e{letter-spacing:0.021376pt;}
.ls44{letter-spacing:0.023424pt;}
.ls17{letter-spacing:0.024000pt;}
.ls4d{letter-spacing:0.026720pt;}
.ls12b{letter-spacing:0.029280pt;}
.ls61{letter-spacing:0.029792pt;}
.ls14{letter-spacing:0.032064pt;}
.ls82{letter-spacing:0.033600pt;}
.ls8a{letter-spacing:0.035136pt;}
.ls69{letter-spacing:0.037408pt;}
.ls16{letter-spacing:0.038400pt;}
.ls1{letter-spacing:0.040992pt;}
.lse1{letter-spacing:0.042560pt;}
.ls50{letter-spacing:0.042752pt;}
.lsa{letter-spacing:0.046848pt;}
.ls51{letter-spacing:0.048096pt;}
.lsd4{letter-spacing:0.050560pt;}
.lsb{letter-spacing:0.052704pt;}
.ls48{letter-spacing:0.053440pt;}
.lsb0{letter-spacing:0.056000pt;}
.ls2{letter-spacing:0.058560pt;}
.ls59{letter-spacing:0.058784pt;}
.ls71{letter-spacing:0.059584pt;}
.ls10{letter-spacing:0.063840pt;}
.lsb8{letter-spacing:0.064000pt;}
.ls27{letter-spacing:0.064128pt;}
.ls45{letter-spacing:0.064416pt;}
.ls18{letter-spacing:0.067200pt;}
.ls4f{letter-spacing:0.069472pt;}
.ls5{letter-spacing:0.070272pt;}
.ls19{letter-spacing:0.070400pt;}
.ls4b{letter-spacing:0.074816pt;}
.ls12c{letter-spacing:0.076128pt;}
.ls32{letter-spacing:0.076608pt;}
.ls121{letter-spacing:0.078400pt;}
.ls23{letter-spacing:0.080160pt;}
.ls12f{letter-spacing:0.081984pt;}
.ls127{letter-spacing:0.082560pt;}
.lsd5{letter-spacing:0.085120pt;}
.lsc{letter-spacing:0.085504pt;}
.ls47{letter-spacing:0.087840pt;}
.ls123{letter-spacing:0.089600pt;}
.ls2d{letter-spacing:0.090848pt;}
.ls3{letter-spacing:0.093696pt;}
.ls3c{letter-spacing:0.095200pt;}
.ls90{letter-spacing:0.096192pt;}
.ls130{letter-spacing:0.099552pt;}
.ls120{letter-spacing:0.100800pt;}
.ls12{letter-spacing:0.101536pt;}
.ls46{letter-spacing:0.105408pt;}
.ls4{letter-spacing:0.105600pt;}
.ls125{letter-spacing:0.106400pt;}
.ls79{letter-spacing:0.106880pt;}
.ls136{letter-spacing:0.111264pt;}
.lsc0{letter-spacing:0.112000pt;}
.ls33{letter-spacing:0.112224pt;}
.ls40{letter-spacing:0.115200pt;}
.ls42{letter-spacing:0.117120pt;}
.ls9a{letter-spacing:0.117568pt;}
.ls122{letter-spacing:0.117600pt;}
.lscd{letter-spacing:0.121600pt;}
.ls1d{letter-spacing:0.123552pt;}
.ls41{letter-spacing:0.124800pt;}
.lsb4{letter-spacing:0.128000pt;}
.lsa8{letter-spacing:0.128256pt;}
.ls96{letter-spacing:0.133600pt;}
.ls3d{letter-spacing:0.134400pt;}
.ls43{letter-spacing:0.134688pt;}
.ls5d{letter-spacing:0.149632pt;}
.ls115{letter-spacing:0.151200pt;}
.lscc{letter-spacing:0.151680pt;}
.ls20{letter-spacing:0.152256pt;}
.ls134{letter-spacing:0.158112pt;}
.lsfe{letter-spacing:0.160000pt;}
.lse2{letter-spacing:0.160320pt;}
.ls3f{letter-spacing:0.163200pt;}
.ls9{letter-spacing:0.167533pt;}
.lsb2{letter-spacing:0.168000pt;}
.ls146{letter-spacing:0.169824pt;}
.ls7d{letter-spacing:0.171008pt;}
.lsb1{letter-spacing:0.173600pt;}
.ls8{letter-spacing:0.175680pt;}
.ls112{letter-spacing:0.179200pt;}
.ls13b{letter-spacing:0.199104pt;}
.ls11c{letter-spacing:0.218400pt;}
.ls70{letter-spacing:0.242592pt;}
.ls89{letter-spacing:0.245952pt;}
.ls63{letter-spacing:0.255360pt;}
.ls3e{letter-spacing:0.288000pt;}
.lse3{letter-spacing:0.292800pt;}
.lse9{letter-spacing:0.351360pt;}
.lsaa{letter-spacing:0.366016pt;}
.ls9f{letter-spacing:0.395808pt;}
.ls14a{letter-spacing:0.398208pt;}
.lsec{letter-spacing:0.409920pt;}
.lsab{letter-spacing:0.421344pt;}
.ls74{letter-spacing:0.427520pt;}
.ls144{letter-spacing:0.480192pt;}
.ls72{letter-spacing:0.553280pt;}
.ls128{letter-spacing:0.556320pt;}
.ls73{letter-spacing:0.684032pt;}
.lse{letter-spacing:0.716096pt;}
.ls12a{letter-spacing:0.720288pt;}
.ls114{letter-spacing:0.728000pt;}
.ls60{letter-spacing:0.748160pt;}
.lsf7{letter-spacing:0.960000pt;}
.ls7e{letter-spacing:1.042080pt;}
.ls4c{letter-spacing:1.068800pt;}
.ls10f{letter-spacing:1.344000pt;}
.ls52{letter-spacing:1.389440pt;}
.ls53{letter-spacing:1.656640pt;}
.ls11b{letter-spacing:1.680000pt;}
.ls54{letter-spacing:1.710080pt;}
.ls62{letter-spacing:1.830080pt;}
.ls6a{letter-spacing:1.977280pt;}
.ls6b{letter-spacing:1.993312pt;}
.ls137{letter-spacing:2.002752pt;}
.lsa4{letter-spacing:2.004000pt;}
.ls108{letter-spacing:2.016000pt;}
.ls64{letter-spacing:2.170560pt;}
.lsd1{letter-spacing:2.240000pt;}
.ls138{letter-spacing:2.318976pt;}
.lsea{letter-spacing:2.322560pt;}
.lsdd{letter-spacing:2.560000pt;}
.ls11e{letter-spacing:2.632000pt;}
.lseb{letter-spacing:2.635200pt;}
.ls9e{letter-spacing:2.645280pt;}
.ls11{letter-spacing:2.672000pt;}
.lsef{letter-spacing:2.765440pt;}
.ls4a{letter-spacing:2.971264pt;}
.ls49{letter-spacing:2.992640pt;}
.lsd0{letter-spacing:3.200000pt;}
.ls6c{letter-spacing:3.313280pt;}
.lse4{letter-spacing:3.602560pt;}
.ls6e{letter-spacing:3.954560pt;}
.lsa9{letter-spacing:4.248480pt;}
.ls6d{letter-spacing:4.275200pt;}
.lsd8{letter-spacing:4.486400pt;}
.ls110{letter-spacing:4.536000pt;}
.ls131{letter-spacing:4.561824pt;}
.lsf5{letter-spacing:5.183680pt;}
.ls12e{letter-spacing:5.358240pt;}
.lsb5{letter-spacing:5.440000pt;}
.ls5b{letter-spacing:5.531040pt;}
.ls12d{letter-spacing:5.674464pt;}
.lsd2{letter-spacing:5.760000pt;}
.ls105{letter-spacing:5.772800pt;}
.ls5a{letter-spacing:5.824960pt;}
.lsfb{letter-spacing:6.131232pt;}
.lsfc{letter-spacing:6.148800pt;}
.ls13{letter-spacing:7.107520pt;}
.lsf6{letter-spacing:7.392000pt;}
.ls11d{letter-spacing:7.448000pt;}
.ls149{letter-spacing:7.905600pt;}
.lsd6{letter-spacing:8.320000pt;}
.ls139{letter-spacing:8.397504pt;}
.lsb3{letter-spacing:8.448000pt;}
.ls13a{letter-spacing:8.719584pt;}
.ls113{letter-spacing:9.016000pt;}
.ls135{letter-spacing:9.041664pt;}
.ls11f{letter-spacing:9.296000pt;}
.ls57{letter-spacing:9.352000pt;}
.ls133{letter-spacing:9.357888pt;}
.ls78{letter-spacing:9.661952pt;}
.ls56{letter-spacing:9.672640pt;}
.ls77{letter-spacing:9.677984pt;}
.ls58{letter-spacing:9.694016pt;}
.ls55{letter-spacing:9.699360pt;}
.lsb6{letter-spacing:9.920000pt;}
.lse5{letter-spacing:9.931776pt;}
.lsc8{letter-spacing:10.246400pt;}
.ls106{letter-spacing:10.560000pt;}
.lsf0{letter-spacing:10.765440pt;}
.lscf{letter-spacing:10.880000pt;}
.lsee{letter-spacing:10.950720pt;}
.lsf1{letter-spacing:11.085440pt;}
.lsd9{letter-spacing:11.200000pt;}
.ls68{letter-spacing:11.275840pt;}
.lsa1{letter-spacing:11.291872pt;}
.ls67{letter-spacing:11.596480pt;}
.lsd7{letter-spacing:11.840000pt;}
.ls5f{letter-spacing:12.879040pt;}
.ls119{letter-spacing:12.880000pt;}
.ls5e{letter-spacing:12.943168pt;}
.lscb{letter-spacing:13.120000pt;}
.ls5c{letter-spacing:13.199680pt;}
.lsfd{letter-spacing:13.440000pt;}
.lsce{letter-spacing:13.760000pt;}
.lsde{letter-spacing:14.080000pt;}
.lsed{letter-spacing:14.720000pt;}
.ls107{letter-spacing:14.784000pt;}
.lsb7{letter-spacing:15.040000pt;}
.lsf2{letter-spacing:16.320000pt;}
.lsac{letter-spacing:16.732064pt;}
.ls76{letter-spacing:17.047360pt;}
.ls104{letter-spacing:17.280000pt;}
.ls10a{letter-spacing:17.382400pt;}
.ls109{letter-spacing:18.312000pt;}
.lsda{letter-spacing:20.343680pt;}
.ls75{letter-spacing:21.215680pt;}
.lse0{letter-spacing:22.482560pt;}
.lse6{letter-spacing:24.068160pt;}
.ls111{letter-spacing:24.416000pt;}
.ls10b{letter-spacing:24.696000pt;}
.ls7b{letter-spacing:25.063360pt;}
.ls7a{letter-spacing:25.384000pt;}
.ls7c{letter-spacing:29.552320pt;}
.lsdc{letter-spacing:30.726400pt;}
.ls103{letter-spacing:35.200000pt;}
.lsf4{letter-spacing:35.911680pt;}
.lsf8{letter-spacing:39.118080pt;}
.ls117{letter-spacing:56.728000pt;}
.ls116{letter-spacing:57.064000pt;}
.ls7{letter-spacing:57.547314pt;}
.ls6{letter-spacing:57.867442pt;}
.ls11a{letter-spacing:59.920000pt;}
.ws4a{word-spacing:-96.163200pt;}
.ws47{word-spacing:-96.134400pt;}
.ws4d{word-spacing:-96.124800pt;}
.ws4b{word-spacing:-96.115200pt;}
.ws4c{word-spacing:-96.105600pt;}
.ws48{word-spacing:-96.038400pt;}
.ws49{word-spacing:-96.000000pt;}
.ws2ad{word-spacing:-66.465600pt;}
.ws297{word-spacing:-59.040192pt;}
.ws53{word-spacing:-58.805952pt;}
.ws59{word-spacing:-58.712256pt;}
.ws50{word-spacing:-58.694688pt;}
.ws56{word-spacing:-58.665408pt;}
.ws298{word-spacing:-58.659552pt;}
.ws1{word-spacing:-58.653696pt;}
.ws57{word-spacing:-58.647840pt;}
.ws55{word-spacing:-58.624416pt;}
.ws4f{word-spacing:-58.618560pt;}
.ws58{word-spacing:-58.595136pt;}
.ws54{word-spacing:-58.583424pt;}
.ws296{word-spacing:-58.548288pt;}
.ws4e{word-spacing:-58.530720pt;}
.ws52{word-spacing:-58.513152pt;}
.ws51{word-spacing:-58.483872pt;}
.wsb8{word-spacing:-56.056000pt;}
.wsb7{word-spacing:-55.888000pt;}
.ws8e{word-spacing:-53.611008pt;}
.ws7f{word-spacing:-53.589632pt;}
.wsa3{word-spacing:-53.573600pt;}
.ws95{word-spacing:-53.568256pt;}
.ws80{word-spacing:-53.557568pt;}
.ws94{word-spacing:-53.552224pt;}
.wsa0{word-spacing:-53.546880pt;}
.ws73{word-spacing:-53.541536pt;}
.ws66{word-spacing:-53.536192pt;}
.ws9b{word-spacing:-53.530848pt;}
.ws81{word-spacing:-53.520160pt;}
.ws6c{word-spacing:-53.514816pt;}
.ws74{word-spacing:-53.509472pt;}
.ws96{word-spacing:-53.504128pt;}
.ws75{word-spacing:-53.498784pt;}
.ws85{word-spacing:-53.493440pt;}
.ws79{word-spacing:-53.488096pt;}
.ws77{word-spacing:-53.482752pt;}
.ws8d{word-spacing:-53.477408pt;}
.ws6f{word-spacing:-53.466720pt;}
.ws69{word-spacing:-53.461376pt;}
.ws7c{word-spacing:-53.456032pt;}
.ws63{word-spacing:-53.450688pt;}
.ws62{word-spacing:-53.445344pt;}
.ws5b{word-spacing:-53.440000pt;}
.ws8c{word-spacing:-53.434656pt;}
.ws90{word-spacing:-53.429312pt;}
.ws5a{word-spacing:-53.423968pt;}
.ws6e{word-spacing:-53.418624pt;}
.ws5d{word-spacing:-53.413280pt;}
.ws65{word-spacing:-53.407936pt;}
.ws61{word-spacing:-53.402592pt;}
.ws6b{word-spacing:-53.397248pt;}
.ws7e{word-spacing:-53.391904pt;}
.ws60{word-spacing:-53.386560pt;}
.ws70{word-spacing:-53.381216pt;}
.ws6d{word-spacing:-53.375872pt;}
.ws71{word-spacing:-53.370528pt;}
.ws5f{word-spacing:-53.365184pt;}
.ws64{word-spacing:-53.359840pt;}
.ws7a{word-spacing:-53.354496pt;}
.ws9e{word-spacing:-53.349152pt;}
.ws6a{word-spacing:-53.343808pt;}
.ws84{word-spacing:-53.338464pt;}
.ws72{word-spacing:-53.333120pt;}
.ws5e{word-spacing:-53.327776pt;}
.ws9c{word-spacing:-53.322432pt;}
.ws9f{word-spacing:-53.317088pt;}
.ws7b{word-spacing:-53.311744pt;}
.ws92{word-spacing:-53.306400pt;}
.ws76{word-spacing:-53.290368pt;}
.wsa2{word-spacing:-53.285024pt;}
.wsa1{word-spacing:-53.279680pt;}
.ws68{word-spacing:-53.263648pt;}
.ws9d{word-spacing:-53.252960pt;}
.ws5c{word-spacing:-53.247616pt;}
.ws83{word-spacing:-53.231584pt;}
.ws93{word-spacing:-53.210208pt;}
.ws78{word-spacing:-53.194176pt;}
.ws67{word-spacing:-53.188832pt;}
.ws8f{word-spacing:-53.140736pt;}
.ws82{word-spacing:-53.092640pt;}
.ws91{word-spacing:-53.087296pt;}
.ws7d{word-spacing:-53.012480pt;}
.ws9a{word-spacing:-42.981344pt;}
.ws87{word-spacing:-42.955808pt;}
.ws99{word-spacing:-42.926016pt;}
.ws88{word-spacing:-42.815360pt;}
.ws98{word-spacing:-42.619584pt;}
.ws86{word-spacing:-42.589792pt;}
.ws97{word-spacing:-42.577024pt;}
.ws89{word-spacing:-42.568512pt;}
.ws8a{word-spacing:-42.564256pt;}
.ws8b{word-spacing:-42.538720pt;}
.ws2b2{word-spacing:-33.426048pt;}
.ws2a3{word-spacing:-33.273792pt;}
.ws2b0{word-spacing:-33.203520pt;}
.ws2a0{word-spacing:-33.197664pt;}
.ws2b4{word-spacing:-33.185952pt;}
.ws2af{word-spacing:-33.139104pt;}
.ws2ac{word-spacing:-33.103968pt;}
.ws2b1{word-spacing:-33.098112pt;}
.ws2b5{word-spacing:-33.092256pt;}
.ws2aa{word-spacing:-33.080544pt;}
.ws2b3{word-spacing:-33.074688pt;}
.ws2a5{word-spacing:-33.068832pt;}
.ws2a9{word-spacing:-33.062976pt;}
.ws2a1{word-spacing:-33.057120pt;}
.ws2a8{word-spacing:-33.051264pt;}
.ws29a{word-spacing:-33.045408pt;}
.ws29c{word-spacing:-33.039552pt;}
.ws299{word-spacing:-33.033696pt;}
.ws29d{word-spacing:-33.027840pt;}
.ws2a2{word-spacing:-33.021984pt;}
.ws29e{word-spacing:-33.016128pt;}
.ws29f{word-spacing:-33.010272pt;}
.ws2a4{word-spacing:-33.004416pt;}
.ws29b{word-spacing:-32.998560pt;}
.ws2ae{word-spacing:-32.992704pt;}
.ws2ab{word-spacing:-32.980992pt;}
.ws2a6{word-spacing:-32.969280pt;}
.ws2a7{word-spacing:-32.963424pt;}
.wsfa{word-spacing:-16.128000pt;}
.wsfb{word-spacing:-16.064000pt;}
.wsc1{word-spacing:-16.000000pt;}
.ws13d{word-spacing:-15.936000pt;}
.wsc0{word-spacing:-15.872000pt;}
.ws11d{word-spacing:-15.808000pt;}
.ws1f9{word-spacing:-15.744000pt;}
.ws1e1{word-spacing:-15.680000pt;}
.ws17b{word-spacing:-14.815680pt;}
.ws1f8{word-spacing:-14.757120pt;}
.ws19c{word-spacing:-14.698560pt;}
.ws3{word-spacing:-14.692704pt;}
.ws292{word-spacing:-14.669280pt;}
.ws28e{word-spacing:-14.663424pt;}
.ws17a{word-spacing:-14.640000pt;}
.wsfc{word-spacing:-14.592000pt;}
.ws18b{word-spacing:-14.581440pt;}
.ws217{word-spacing:-14.528000pt;}
.ws1c2{word-spacing:-14.464000pt;}
.wsbf{word-spacing:-14.336000pt;}
.wsbc{word-spacing:-14.168000pt;}
.wsb9{word-spacing:-14.112000pt;}
.ws28d{word-spacing:-14.106400pt;}
.wsba{word-spacing:-14.000000pt;}
.ws233{word-spacing:-13.944000pt;}
.ws255{word-spacing:-13.888000pt;}
.wsbb{word-spacing:-13.832000pt;}
.ws1de{word-spacing:-13.520320pt;}
.wsbe{word-spacing:-13.496000pt;}
.ws5{word-spacing:-13.461536pt;}
.ws7{word-spacing:-13.360000pt;}
.ws1df{word-spacing:-13.306560pt;}
.ws6{word-spacing:-13.274496pt;}
.ws1e0{word-spacing:-13.253120pt;}
.ws4{word-spacing:-13.247776pt;}
.wsbd{word-spacing:-13.216000pt;}
.wsb6{word-spacing:-13.199680pt;}
.ws2{word-spacing:-12.953472pt;}
.ws13c{word-spacing:-12.589440pt;}
.ws1a4{word-spacing:-12.538880pt;}
.ws18a{word-spacing:-12.237760pt;}
.ws16a{word-spacing:-12.184320pt;}
.ws16b{word-spacing:-11.970560pt;}
.wsb5{word-spacing:-11.596480pt;}
.ws13f{word-spacing:-10.725120pt;}
.ws13e{word-spacing:-10.640000pt;}
.ws234{word-spacing:-9.210240pt;}
.ws1fa{word-spacing:-8.640000pt;}
.ws0{word-spacing:-8.584992pt;}
.ws179{word-spacing:-4.160000pt;}
.ws166{word-spacing:-3.904000pt;}
.ws165{word-spacing:-3.840000pt;}
.ws15b{word-spacing:-3.648000pt;}
.ws207{word-spacing:-3.584000pt;}
.wsd9{word-spacing:-3.520000pt;}
.ws26b{word-spacing:-3.304000pt;}
.ws210{word-spacing:-3.279360pt;}
.ws26a{word-spacing:-3.248000pt;}
.ws17f{word-spacing:-3.200000pt;}
.ws20f{word-spacing:-3.045120pt;}
.ws22b{word-spacing:-3.008000pt;}
.ws201{word-spacing:-2.986560pt;}
.ws113{word-spacing:-2.944000pt;}
.ws180{word-spacing:-2.880000pt;}
.ws2d{word-spacing:-2.805600pt;}
.ws2e{word-spacing:-2.778880pt;}
.ws200{word-spacing:-2.752320pt;}
.ws39{word-spacing:-2.688032pt;}
.ws12a{word-spacing:-2.688000pt;}
.ws2f{word-spacing:-2.677344pt;}
.ws284{word-spacing:-2.632000pt;}
.ws15d{word-spacing:-2.624000pt;}
.ws271{word-spacing:-2.576000pt;}
.ws16c{word-spacing:-2.560000pt;}
.ws186{word-spacing:-2.518080pt;}
.ws185{word-spacing:-2.400960pt;}
.ws149{word-spacing:-2.368000pt;}
.ws3b{word-spacing:-2.362048pt;}
.ws262{word-spacing:-2.352000pt;}
.ws14a{word-spacing:-2.304000pt;}
.ws259{word-spacing:-2.296000pt;}
.ws42{word-spacing:-2.255168pt;}
.wsd6{word-spacing:-2.240000pt;}
.ws188{word-spacing:-2.225280pt;}
.ws41{word-spacing:-2.185696pt;}
.ws109{word-spacing:-2.048000pt;}
.ws246{word-spacing:-2.016000pt;}
.ws2d5{word-spacing:-1.996896pt;}
.ws211{word-spacing:-1.991040pt;}
.ws104{word-spacing:-1.984000pt;}
.ws245{word-spacing:-1.960000pt;}
.ws103{word-spacing:-1.920000pt;}
.ws1b0{word-spacing:-1.728000pt;}
.ws12b{word-spacing:-1.719040pt;}
.ws20b{word-spacing:-1.710080pt;}
.ws270{word-spacing:-1.680000pt;}
.ws1c7{word-spacing:-1.664000pt;}
.ws2ba{word-spacing:-1.607200pt;}
.ws130{word-spacing:-1.600000pt;}
.ws29{word-spacing:-1.453568pt;}
.ws2a{word-spacing:-1.434272pt;}
.ws2b{word-spacing:-1.421504pt;}
.ws105{word-spacing:-1.408000pt;}
.ws12f{word-spacing:-1.344000pt;}
.ws1ef{word-spacing:-1.336000pt;}
.ws265{word-spacing:-1.288000pt;}
.wsd4{word-spacing:-1.280000pt;}
.ws1fe{word-spacing:-1.112640pt;}
.ws148{word-spacing:-1.088000pt;}
.ws1ee{word-spacing:-1.068800pt;}
.ws35{word-spacing:-1.058112pt;}
.wsf4{word-spacing:-1.024000pt;}
.ws36{word-spacing:-1.017184pt;}
.ws1e7{word-spacing:-1.015360pt;}
.ws263{word-spacing:-1.008000pt;}
.ws38{word-spacing:-0.977952pt;}
.ws1b4{word-spacing:-0.960640pt;}
.wsd5{word-spacing:-0.960000pt;}
.ws2de{word-spacing:-0.931104pt;}
.ws19f{word-spacing:-0.819840pt;}
.ws14e{word-spacing:-0.768000pt;}
.ws251{word-spacing:-0.728000pt;}
.wsf5{word-spacing:-0.704000pt;}
.ws37{word-spacing:-0.702240pt;}
.wsc8{word-spacing:-0.672000pt;}
.ws1bb{word-spacing:-0.644160pt;}
.wsf3{word-spacing:-0.640000pt;}
.ws2d9{word-spacing:-0.609024pt;}
.ws2da{word-spacing:-0.562176pt;}
.wsce{word-spacing:-0.560000pt;}
.ws1bc{word-spacing:-0.527040pt;}
.ws14f{word-spacing:-0.505600pt;}
.ws1aa{word-spacing:-0.448000pt;}
.ws1f6{word-spacing:-0.409920pt;}
.ws257{word-spacing:-0.392000pt;}
.ws119{word-spacing:-0.384000pt;}
.ws1b8{word-spacing:-0.351360pt;}
.wsc9{word-spacing:-0.336000pt;}
.wsb2{word-spacing:-0.320640pt;}
.ws133{word-spacing:-0.320000pt;}
.ws2d8{word-spacing:-0.316224pt;}
.ws40{word-spacing:-0.315296pt;}
.ws13{word-spacing:-0.304512pt;}
.ws2d3{word-spacing:-0.298656pt;}
.ws223{word-spacing:-0.292800pt;}
.ws2d0{word-spacing:-0.269376pt;}
.wsa7{word-spacing:-0.268800pt;}
.ws2ce{word-spacing:-0.251808pt;}
.ws43{word-spacing:-0.251168pt;}
.ws2cf{word-spacing:-0.234240pt;}
.ws177{word-spacing:-0.213760pt;}
.ws1f7{word-spacing:-0.175680pt;}
.wsca{word-spacing:-0.168000pt;}
.ws176{word-spacing:-0.160320pt;}
.ws11{word-spacing:-0.158112pt;}
.wsd{word-spacing:-0.152256pt;}
.ws295{word-spacing:-0.128832pt;}
.wsea{word-spacing:-0.128000pt;}
.ws193{word-spacing:-0.117120pt;}
.ws240{word-spacing:-0.112000pt;}
.ws290{word-spacing:-0.111264pt;}
.ws19d{word-spacing:-0.106880pt;}
.ws12{word-spacing:-0.076128pt;}
.ws291{word-spacing:-0.070272pt;}
.wsff{word-spacing:-0.064000pt;}
.ws187{word-spacing:-0.058560pt;}
.wscb{word-spacing:-0.056000pt;}
.wsc5{word-spacing:-0.053440pt;}
.ws294{word-spacing:-0.052704pt;}
.ws8{word-spacing:-0.051200pt;}
.ws18c{word-spacing:-0.042560pt;}
.wsb{word-spacing:-0.041184pt;}
.wsab{word-spacing:-0.039200pt;}
.ws9{word-spacing:-0.033696pt;}
.ws28f{word-spacing:-0.023424pt;}
.wsb1{word-spacing:-0.016032pt;}
.wsf{word-spacing:-0.009600pt;}
.wsa{word-spacing:0.000000pt;}
.ws2d1{word-spacing:0.005856pt;}
.wsa8{word-spacing:0.016800pt;}
.ws2ca{word-spacing:0.017568pt;}
.ws2bf{word-spacing:0.023424pt;}
.wsac{word-spacing:0.028800pt;}
.ws2d6{word-spacing:0.029280pt;}
.ws293{word-spacing:0.035136pt;}
.ws14{word-spacing:0.040992pt;}
.ws2d2{word-spacing:0.046848pt;}
.ws1a0{word-spacing:0.058560pt;}
.ws11b{word-spacing:0.064000pt;}
.ws2be{word-spacing:0.064416pt;}
.wsa4{word-spacing:0.069472pt;}
.ws178{word-spacing:0.106880pt;}
.ws276{word-spacing:0.112000pt;}
.ws189{word-spacing:0.117120pt;}
.ws45{word-spacing:0.124800pt;}
.ws11a{word-spacing:0.128000pt;}
.wsc{word-spacing:0.134688pt;}
.ws46{word-spacing:0.139200pt;}
.wsc3{word-spacing:0.160320pt;}
.ws243{word-spacing:0.168000pt;}
.wse{word-spacing:0.169824pt;}
.ws44{word-spacing:0.171008pt;}
.wsa5{word-spacing:0.181696pt;}
.ws2b6{word-spacing:0.187040pt;}
.ws10{word-spacing:0.192000pt;}
.ws1c{word-spacing:0.192384pt;}
.ws3d{word-spacing:0.197728pt;}
.wsc2{word-spacing:0.213760pt;}
.ws2b7{word-spacing:0.219104pt;}
.ws24f{word-spacing:0.224000pt;}
.ws1d{word-spacing:0.245824pt;}
.ws2bd{word-spacing:0.246400pt;}
.wsa6{word-spacing:0.251168pt;}
.ws175{word-spacing:0.256000pt;}
.ws261{word-spacing:0.280000pt;}
.wse4{word-spacing:0.320000pt;}
.ws24e{word-spacing:0.336000pt;}
.ws204{word-spacing:0.351360pt;}
.ws1e4{word-spacing:0.374080pt;}
.ws203{word-spacing:0.468480pt;}
.wscc{word-spacing:0.504000pt;}
.ws10d{word-spacing:0.512000pt;}
.ws221{word-spacing:0.527040pt;}
.wsb3{word-spacing:0.555776pt;}
.wscd{word-spacing:0.560000pt;}
.ws250{word-spacing:0.616000pt;}
.wsde{word-spacing:0.640000pt;}
.ws1b7{word-spacing:0.644160pt;}
.ws2c0{word-spacing:0.667584pt;}
.ws27{word-spacing:0.716096pt;}
.ws28{word-spacing:0.726784pt;}
.ws25{word-spacing:0.748160pt;}
.ws1b6{word-spacing:0.761280pt;}
.ws26{word-spacing:0.785568pt;}
.ws3c{word-spacing:0.822976pt;}
.ws1b3{word-spacing:0.832000pt;}
.wsb4{word-spacing:0.876416pt;}
.ws191{word-spacing:0.878400pt;}
.ws13b{word-spacing:0.896000pt;}
.ws273{word-spacing:0.952000pt;}
.ws102{word-spacing:0.960000pt;}
.ws190{word-spacing:0.995520pt;}
.wsad{word-spacing:1.026048pt;}
.ws222{word-spacing:1.112640pt;}
.ws10e{word-spacing:1.152000pt;}
.ws260{word-spacing:1.176000pt;}
.ws15a{word-spacing:1.216000pt;}
.ws258{word-spacing:1.232000pt;}
.wsd2{word-spacing:1.280000pt;}
.ws1d8{word-spacing:1.405440pt;}
.ws1a9{word-spacing:1.472000pt;}
.wsc4{word-spacing:1.496320pt;}
.ws23f{word-spacing:1.512000pt;}
.wsae{word-spacing:1.517696pt;}
.ws21a{word-spacing:1.522560pt;}
.wse6{word-spacing:1.536000pt;}
.ws281{word-spacing:1.568000pt;}
.wsd3{word-spacing:1.600000pt;}
.ws17{word-spacing:1.603200pt;}
.ws1d7{word-spacing:1.639680pt;}
.ws16{word-spacing:1.678016pt;}
.wsaf{word-spacing:1.736800pt;}
.ws1d9{word-spacing:1.756800pt;}
.wsc7{word-spacing:1.763520pt;}
.ws22d{word-spacing:1.792000pt;}
.ws15{word-spacing:1.800928pt;}
.ws205{word-spacing:1.815360pt;}
.wsc6{word-spacing:1.816960pt;}
.ws256{word-spacing:1.848000pt;}
.ws132{word-spacing:1.856000pt;}
.ws23e{word-spacing:1.904000pt;}
.wsee{word-spacing:1.920000pt;}
.ws2dc{word-spacing:1.938336pt;}
.ws2db{word-spacing:1.955904pt;}
.ws21b{word-spacing:2.049600pt;}
.ws197{word-spacing:2.112000pt;}
.ws242{word-spacing:2.128000pt;}
.ws2dd{word-spacing:2.160864pt;}
.ws21f{word-spacing:2.166720pt;}
.ws155{word-spacing:2.176000pt;}
.ws241{word-spacing:2.184000pt;}
.ws2b9{word-spacing:2.217600pt;}
.ws31{word-spacing:2.223104pt;}
.wsf1{word-spacing:2.240000pt;}
.ws2c5{word-spacing:2.242848pt;}
.ws1b{word-spacing:2.260512pt;}
.ws2c4{word-spacing:2.289696pt;}
.ws33{word-spacing:2.324640pt;}
.ws2b8{word-spacing:2.374400pt;}
.ws220{word-spacing:2.400960pt;}
.ws145{word-spacing:2.432000pt;}
.ws1ab{word-spacing:2.459520pt;}
.ws147{word-spacing:2.477440pt;}
.ws10c{word-spacing:2.496000pt;}
.ws275{word-spacing:2.520000pt;}
.wsf8{word-spacing:2.560000pt;}
.ws1eb{word-spacing:2.618560pt;}
.ws1ea{word-spacing:2.672000pt;}
.ws1c8{word-spacing:2.693760pt;}
.ws1a{word-spacing:2.709408pt;}
.ws30{word-spacing:2.730784pt;}
.ws282{word-spacing:2.744000pt;}
.ws160{word-spacing:2.752000pt;}
.ws283{word-spacing:2.800000pt;}
.ws1d6{word-spacing:2.810880pt;}
.ws15c{word-spacing:2.816000pt;}
.ws23a{word-spacing:2.856000pt;}
.ws11c{word-spacing:2.880000pt;}
.ws2c3{word-spacing:2.892864pt;}
.ws32{word-spacing:2.917824pt;}
.ws219{word-spacing:3.045120pt;}
.ws10a{word-spacing:3.072000pt;}
.wsfd{word-spacing:3.136000pt;}
.ws239{word-spacing:3.192000pt;}
.wse2{word-spacing:3.200000pt;}
.ws1cb{word-spacing:3.220800pt;}
.ws1cc{word-spacing:3.337920pt;}
.wsf7{word-spacing:3.392000pt;}
.ws1f1{word-spacing:3.420160pt;}
.ws171{word-spacing:3.456000pt;}
.wsf6{word-spacing:3.520000pt;}
.ws23{word-spacing:3.601856pt;}
.ws237{word-spacing:3.689280pt;}
.wsf2{word-spacing:3.712000pt;}
.ws22{word-spacing:3.735456pt;}
.ws1f2{word-spacing:3.740800pt;}
.ws1e6{word-spacing:3.776000pt;}
.ws1f0{word-spacing:3.794240pt;}
.wse3{word-spacing:3.840000pt;}
.ws19a{word-spacing:3.923520pt;}
.ws236{word-spacing:3.982080pt;}
.ws24{word-spacing:4.018688pt;}
.ws198{word-spacing:4.032000pt;}
.ws1a1{word-spacing:4.040640pt;}
.ws1e8{word-spacing:4.061440pt;}
.ws1c3{word-spacing:4.096000pt;}
.ws19b{word-spacing:4.157760pt;}
.ws100{word-spacing:4.160000pt;}
.ws1a2{word-spacing:4.216320pt;}
.ws199{word-spacing:4.274880pt;}
.ws1e9{word-spacing:4.275200pt;}
.ws14c{word-spacing:4.352000pt;}
.ws268{word-spacing:4.368000pt;}
.ws206{word-spacing:4.392000pt;}
.ws14d{word-spacing:4.416000pt;}
.ws269{word-spacing:4.424000pt;}
.ws167{word-spacing:4.480000pt;}
.ws14b{word-spacing:4.544000pt;}
.ws13a{word-spacing:4.672000pt;}
.wscf{word-spacing:4.736000pt;}
.ws1b5{word-spacing:4.752640pt;}
.ws25c{word-spacing:4.760000pt;}
.ws117{word-spacing:4.800000pt;}
.ws228{word-spacing:4.992000pt;}
.ws1e3{word-spacing:5.023360pt;}
.ws215{word-spacing:5.036160pt;}
.ws286{word-spacing:5.040000pt;}
.ws232{word-spacing:5.056000pt;}
.wsaa{word-spacing:5.084800pt;}
.ws285{word-spacing:5.096000pt;}
.wsa9{word-spacing:5.112800pt;}
.wsd0{word-spacing:5.120000pt;}
.wse7{word-spacing:5.312000pt;}
.ws214{word-spacing:5.328960pt;}
.wse8{word-spacing:5.376000pt;}
.ws279{word-spacing:5.432000pt;}
.wse9{word-spacing:5.440000pt;}
.ws1e2{word-spacing:5.557760pt;}
.ws213{word-spacing:5.563200pt;}
.ws121{word-spacing:5.632000pt;}
.ws25f{word-spacing:5.656000pt;}
.wsed{word-spacing:5.696000pt;}
.ws122{word-spacing:5.760000pt;}
.ws195{word-spacing:5.952000pt;}
.ws3a{word-spacing:5.969248pt;}
.ws1fd{word-spacing:5.973120pt;}
.wsb0{word-spacing:5.985280pt;}
.ws25e{word-spacing:5.992000pt;}
.wse1{word-spacing:6.016000pt;}
.ws28a{word-spacing:6.048000pt;}
.wsdb{word-spacing:6.080000pt;}
.ws1fc{word-spacing:6.090240pt;}
.ws2c8{word-spacing:6.125376pt;}
.ws1fb{word-spacing:6.207360pt;}
.ws164{word-spacing:6.272000pt;}
.ws1f3{word-spacing:6.336000pt;}
.ws21{word-spacing:6.396768pt;}
.ws163{word-spacing:6.400000pt;}
.ws2bc{word-spacing:6.462400pt;}
.ws2bb{word-spacing:6.580000pt;}
.ws1b9{word-spacing:6.656000pt;}
.ws280{word-spacing:6.664000pt;}
.ws110{word-spacing:6.720000pt;}
.ws168{word-spacing:6.912000pt;}
.ws11f{word-spacing:7.040000pt;}
.ws3e{word-spacing:7.123552pt;}
.ws3f{word-spacing:7.209056pt;}
.ws101{word-spacing:7.232000pt;}
.ws288{word-spacing:7.280000pt;}
.ws194{word-spacing:7.296000pt;}
.ws287{word-spacing:7.336000pt;}
.ws146{word-spacing:7.360000pt;}
.ws184{word-spacing:7.552000pt;}
.ws238{word-spacing:7.612800pt;}
.wsda{word-spacing:7.616000pt;}
.ws114{word-spacing:7.680000pt;}
.ws2c6{word-spacing:7.694784pt;}
.ws2c7{word-spacing:7.706496pt;}
.ws192{word-spacing:7.847040pt;}
.ws108{word-spacing:7.872000pt;}
.ws20e{word-spacing:7.936000pt;}
.ws174{word-spacing:8.000000pt;}
.ws2cb{word-spacing:8.016864pt;}
.ws2cd{word-spacing:8.040288pt;}
.ws2cc{word-spacing:8.046144pt;}
.ws131{word-spacing:8.192000pt;}
.ws16d{word-spacing:8.256000pt;}
.ws126{word-spacing:8.320000pt;}
.ws2df{word-spacing:8.356512pt;}
.ws26f{word-spacing:8.568000pt;}
.ws1af{word-spacing:8.576000pt;}
.ws26e{word-spacing:8.624000pt;}
.ws1e5{word-spacing:8.640000pt;}
.ws1ed{word-spacing:8.817600pt;}
.ws208{word-spacing:8.832000pt;}
.ws1d4{word-spacing:8.842560pt;}
.ws26d{word-spacing:8.904000pt;}
.ws123{word-spacing:8.960000pt;}
.ws2d7{word-spacing:9.041664pt;}
.ws1d3{word-spacing:9.076800pt;}
.wsd7{word-spacing:9.152000pt;}
.ws28b{word-spacing:9.184000pt;}
.ws1c1{word-spacing:9.216000pt;}
.ws289{word-spacing:9.240000pt;}
.wsfe{word-spacing:9.280000pt;}
.ws1d5{word-spacing:9.311040pt;}
.ws2d4{word-spacing:9.357888pt;}
.ws28c{word-spacing:9.464000pt;}
.ws20a{word-spacing:9.472000pt;}
.wsd8{word-spacing:9.600000pt;}
.ws229{word-spacing:9.792000pt;}
.ws27b{word-spacing:9.912000pt;}
.wseb{word-spacing:9.920000pt;}
.ws19{word-spacing:10.014656pt;}
.ws18{word-spacing:10.020000pt;}
.ws12c{word-spacing:10.112000pt;}
.ws1a3{word-spacing:10.130880pt;}
.ws12d{word-spacing:10.176000pt;}
.ws12e{word-spacing:10.240000pt;}
.ws1c9{word-spacing:10.482240pt;}
.ws107{word-spacing:10.496000pt;}
.ws106{word-spacing:10.560000pt;}
.ws1ca{word-spacing:10.716480pt;}
.ws159{word-spacing:10.752000pt;}
.ws1d1{word-spacing:10.775040pt;}
.ws1c6{word-spacing:10.816000pt;}
.wsec{word-spacing:10.880000pt;}
.ws1d2{word-spacing:10.892160pt;}
.ws1ba{word-spacing:11.072000pt;}
.ws129{word-spacing:11.136000pt;}
.ws128{word-spacing:11.200000pt;}
.wse0{word-spacing:11.392000pt;}
.wsdf{word-spacing:11.456000pt;}
.wsd1{word-spacing:11.520000pt;}
.ws1b1{word-spacing:11.712000pt;}
.ws152{word-spacing:11.776000pt;}
.ws2c{word-spacing:12.024000pt;}
.ws1c0{word-spacing:12.032000pt;}
.ws1ff{word-spacing:12.096000pt;}
.ws120{word-spacing:12.160000pt;}
.ws150{word-spacing:12.387200pt;}
.ws218{word-spacing:12.416000pt;}
.ws278{word-spacing:12.432000pt;}
.ws10f{word-spacing:12.480000pt;}
.ws116{word-spacing:12.672000pt;}
.ws34{word-spacing:12.708032pt;}
.ws266{word-spacing:12.712000pt;}
.ws1da{word-spacing:12.736000pt;}
.ws26c{word-spacing:12.768000pt;}
.ws19e{word-spacing:12.800000pt;}
.ws1c5{word-spacing:12.992000pt;}
.ws267{word-spacing:13.048000pt;}
.ws1c4{word-spacing:13.056000pt;}
.ws137{word-spacing:13.120000pt;}
.ws2c9{word-spacing:13.170144pt;}
.ws140{word-spacing:13.312000pt;}
.ws127{word-spacing:13.376000pt;}
.ws24a{word-spacing:13.384000pt;}
.ws141{word-spacing:13.440000pt;}
.ws151{word-spacing:13.632000pt;}
.ws25b{word-spacing:13.664000pt;}
.ws249{word-spacing:13.720000pt;}
.ws169{word-spacing:13.760000pt;}
.ws138{word-spacing:13.952000pt;}
.ws139{word-spacing:14.016000pt;}
.ws272{word-spacing:14.056000pt;}
.wse5{word-spacing:14.080000pt;}
.ws182{word-spacing:14.272000pt;}
.ws162{word-spacing:14.336000pt;}
.ws27e{word-spacing:14.392000pt;}
.ws161{word-spacing:14.400000pt;}
.ws1ec{word-spacing:14.535680pt;}
.ws154{word-spacing:14.592000pt;}
.ws27f{word-spacing:14.616000pt;}
.ws1d0{word-spacing:14.656000pt;}
.ws23c{word-spacing:14.672000pt;}
.ws153{word-spacing:14.720000pt;}
.wsef{word-spacing:14.912000pt;}
.ws23d{word-spacing:14.952000pt;}
.ws1db{word-spacing:14.976000pt;}
.ws24b{word-spacing:15.008000pt;}
.wsf0{word-spacing:15.040000pt;}
.ws136{word-spacing:15.232000pt;}
.ws134{word-spacing:15.296000pt;}
.ws135{word-spacing:15.360000pt;}
.ws2c1{word-spacing:15.401280pt;}
.ws2c2{word-spacing:15.430560pt;}
.ws24c{word-spacing:15.456000pt;}
.ws196{word-spacing:15.616000pt;}
.ws10b{word-spacing:15.680000pt;}
.ws158{word-spacing:15.872000pt;}
.ws216{word-spacing:15.936000pt;}
.ws157{word-spacing:16.000000pt;}
.ws183{word-spacing:16.256000pt;}
.ws1dc{word-spacing:16.320000pt;}
.ws1be{word-spacing:16.512000pt;}
.ws24d{word-spacing:16.632000pt;}
.ws172{word-spacing:16.640000pt;}
.ws18f{word-spacing:16.689600pt;}
.ws1f{word-spacing:16.785504pt;}
.ws18e{word-spacing:16.806720pt;}
.ws170{word-spacing:16.832000pt;}
.ws16f{word-spacing:16.896000pt;}
.ws16e{word-spacing:16.960000pt;}
.ws1ac{word-spacing:17.099520pt;}
.ws1e{word-spacing:17.148896pt;}
.ws20{word-spacing:17.164928pt;}
.ws277{word-spacing:17.192000pt;}
.ws22c{word-spacing:17.216000pt;}
.ws252{word-spacing:17.248000pt;}
.ws181{word-spacing:17.280000pt;}
.ws253{word-spacing:17.528000pt;}
.ws23b{word-spacing:17.584000pt;}
.wsf9{word-spacing:17.600000pt;}
.ws231{word-spacing:17.856000pt;}
.ws247{word-spacing:18.144000pt;}
.ws118{word-spacing:18.240000pt;}
.ws248{word-spacing:18.424000pt;}
.ws244{word-spacing:18.536000pt;}
.ws143{word-spacing:18.555520pt;}
.ws224{word-spacing:18.560000pt;}
.ws173{word-spacing:19.200000pt;}
.ws112{word-spacing:19.456000pt;}
.ws111{word-spacing:19.520000pt;}
.ws1b2{word-spacing:19.776000pt;}
.ws1f5{word-spacing:19.851840pt;}
.ws1f4{word-spacing:19.968960pt;}
.ws20c{word-spacing:20.096000pt;}
.ws20d{word-spacing:20.352000pt;}
.ws142{word-spacing:20.416000pt;}
.ws144{word-spacing:20.480000pt;}
.ws124{word-spacing:20.672000pt;}
.ws125{word-spacing:20.800000pt;}
.ws27a{word-spacing:21.112000pt;}
.ws1a5{word-spacing:21.632000pt;}
.ws235{word-spacing:21.696000pt;}
.ws1bf{word-spacing:21.760000pt;}
.ws227{word-spacing:22.080000pt;}
.wsdc{word-spacing:22.720000pt;}
.ws1dd{word-spacing:23.232000pt;}
.ws18d{word-spacing:23.833920pt;}
.wsdd{word-spacing:24.000000pt;}
.ws1ad{word-spacing:24.126720pt;}
.ws25d{word-spacing:24.304000pt;}
.ws1ce{word-spacing:24.512000pt;}
.ws1cd{word-spacing:24.576000pt;}
.ws254{word-spacing:24.584000pt;}
.ws156{word-spacing:24.640000pt;}
.ws21e{word-spacing:24.832000pt;}
.ws17e{word-spacing:24.960000pt;}
.ws21d{word-spacing:25.152000pt;}
.ws209{word-spacing:25.216000pt;}
.ws22e{word-spacing:25.600000pt;}
.ws21c{word-spacing:27.712000pt;}
.ws202{word-spacing:27.874560pt;}
.ws1cf{word-spacing:28.992000pt;}
.ws1a6{word-spacing:29.440000pt;}
.ws22f{word-spacing:29.952000pt;}
.ws264{word-spacing:30.072000pt;}
.ws1ae{word-spacing:30.272000pt;}
.ws17d{word-spacing:30.656000pt;}
.ws17c{word-spacing:30.720000pt;}
.ws11e{word-spacing:31.680000pt;}
.ws230{word-spacing:31.936000pt;}
.ws1bd{word-spacing:34.496000pt;}
.ws212{word-spacing:34.726080pt;}
.ws22a{word-spacing:35.200000pt;}
.ws15e{word-spacing:38.400000pt;}
.ws25a{word-spacing:40.544000pt;}
.ws15f{word-spacing:41.856000pt;}
.ws1a8{word-spacing:42.240000pt;}
.ws1a7{word-spacing:42.496000pt;}
.ws115{word-spacing:48.320000pt;}
.ws225{word-spacing:49.536000pt;}
.ws226{word-spacing:49.600000pt;}
.ws274{word-spacing:56.952000pt;}
.ws27c{word-spacing:59.416000pt;}
.ws27d{word-spacing:59.752000pt;}
._12{margin-left:-35.113295pt;}
._1a{margin-left:-29.835420pt;}
._19{margin-left:-18.907885pt;}
._8{margin-left:-16.395392pt;}
._18{margin-left:-14.567966pt;}
._5{margin-left:-10.896480pt;}
._1e{margin-left:-9.498238pt;}
._1f{margin-left:-8.367744pt;}
._20{margin-left:-7.166948pt;}
._16{margin-left:-6.215166pt;}
._11{margin-left:-4.129408pt;}
._7{margin-left:-3.061773pt;}
._2{margin-left:-1.927409pt;}
._0{margin-left:-0.999648pt;}
._1{width:1.100928pt;}
._3{width:2.426496pt;}
._6{width:3.369777pt;}
._d{width:4.263648pt;}
._1d{width:5.318353pt;}
._17{width:6.208000pt;}
._f{width:7.347072pt;}
._4{width:9.859680pt;}
._c{width:11.382944pt;}
._10{width:13.199296pt;}
._9{width:16.682193pt;}
._e{width:20.808497pt;}
._15{width:24.536640pt;}
._a{width:25.693888pt;}
._13{width:28.941440pt;}
._b{width:30.182912pt;}
._14{width:40.173312pt;}
._1b{width:56.977777pt;}
._1c{width:59.351648pt;}
.fs7{font-size:5.440000pt;}
.fsc{font-size:26.560000pt;}
.fs3{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fs1{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:50.560000pt;}
.fs4{font-size:53.440000pt;}
.fs9{font-size:56.000000pt;}
.fs5{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:85.440000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:3.920000pt;}
.y5d{bottom:129.520000pt;}
.y5{bottom:129.627067pt;}
.y232{bottom:160.796000pt;}
.y2bd{bottom:161.906000pt;}
.y12a{bottom:164.080000pt;}
.y2d{bottom:164.431067pt;}
.y164{bottom:166.234080pt;}
.y189{bottom:167.040000pt;}
.y269{bottom:167.120000pt;}
.y109{bottom:169.760000pt;}
.y28f{bottom:171.430000pt;}
.y1ab{bottom:172.160000pt;}
.y2ed{bottom:172.507987pt;}
.y1e4{bottom:172.880000pt;}
.y1ca{bottom:173.280000pt;}
.y116{bottom:174.800000pt;}
.y88{bottom:176.320000pt;}
.yb1{bottom:176.400000pt;}
.y2c{bottom:177.547067pt;}
.y2bc{bottom:177.992000pt;}
.yfb{bottom:178.960000pt;}
.y129{bottom:179.520000pt;}
.y231{bottom:180.800000pt;}
.y244{bottom:182.480000pt;}
.y163{bottom:182.561440pt;}
.y1e3{bottom:183.760000pt;}
.y188{bottom:185.440000pt;}
.y268{bottom:185.520000pt;}
.y28e{bottom:187.516000pt;}
.y108{bottom:188.560000pt;}
.y2ec{bottom:189.387907pt;}
.y128{bottom:190.478000pt;}
.y1aa{bottom:190.560000pt;}
.y2b{bottom:190.747067pt;}
.yd2{bottom:191.280000pt;}
.y1c9{bottom:191.680000pt;}
.y230{bottom:192.560000pt;}
.y210{bottom:192.960160pt;}
.y115{bottom:193.600000pt;}
.y2bb{bottom:194.148000pt;}
.y26d{bottom:194.640000pt;}
.y87{bottom:194.720000pt;}
.yb0{bottom:194.800000pt;}
.y162{bottom:195.200000pt;}
.y5a{bottom:196.823200pt;}
.y5b{bottom:196.827067pt;}
.yfa{bottom:197.760000pt;}
.y243{bottom:200.880000pt;}
.y1e2{bottom:202.160000pt;}
.y28d{bottom:203.602000pt;}
.y187{bottom:203.840000pt;}
.y267{bottom:203.920000pt;}
.y2eb{bottom:206.267827pt;}
.y107{bottom:207.360000pt;}
.y127{bottom:207.680000pt;}
.y1a9{bottom:208.960000pt;}
.y20f{bottom:209.840080pt;}
.yd1{bottom:210.000000pt;}
.y1c8{bottom:210.080000pt;}
.y2ba{bottom:210.234000pt;}
.y59{bottom:212.154267pt;}
.y114{bottom:212.400000pt;}
.y26c{bottom:213.040000pt;}
.y86{bottom:213.120000pt;}
.y149{bottom:215.273360pt;}
.yf9{bottom:216.480000pt;}
.y22f{bottom:219.200000pt;}
.y242{bottom:219.280000pt;}
.y28c{bottom:219.758000pt;}
.y1e1{bottom:220.560000pt;}
.yaf{bottom:222.080000pt;}
.y186{bottom:222.240000pt;}
.y266{bottom:222.320000pt;}
.y2ea{bottom:223.147747pt;}
.y126{bottom:223.360000pt;}
.y106{bottom:226.160000pt;}
.y2b9{bottom:226.320000pt;}
.y20e{bottom:226.720000pt;}
.y2a{bottom:227.621627pt;}
.y1c7{bottom:228.480000pt;}
.yd0{bottom:228.800000pt;}
.y113{bottom:231.120000pt;}
.y26b{bottom:231.440000pt;}
.y85{bottom:231.520000pt;}
.y148{bottom:232.080080pt;}
.y125{bottom:234.640000pt;}
.yf8{bottom:235.280000pt;}
.y28b{bottom:235.844000pt;}
.y1a8{bottom:236.240000pt;}
.y22e{bottom:237.600000pt;}
.y241{bottom:237.680000pt;}
.y1e0{bottom:238.960000pt;}
.y2e9{bottom:239.947147pt;}
.y185{bottom:240.640000pt;}
.y265{bottom:240.720000pt;}
.y20d{bottom:242.080000pt;}
.y2b8{bottom:242.406000pt;}
.y58{bottom:243.202907pt;}
.y29{bottom:243.683307pt;}
.y105{bottom:244.880000pt;}
.y1c6{bottom:246.880000pt;}
.ycf{bottom:247.600000pt;}
.y147{bottom:248.960000pt;}
.yae{bottom:249.600000pt;}
.y26a{bottom:249.840000pt;}
.y84{bottom:249.920000pt;}
.y28a{bottom:251.930000pt;}
.y20c{bottom:252.960000pt;}
.y124{bottom:253.360000pt;}
.yf7{bottom:254.080000pt;}
.y1a7{bottom:255.760000pt;}
.y22d{bottom:256.000000pt;}
.y240{bottom:256.080000pt;}
.y2e8{bottom:256.826787pt;}
.y1df{bottom:257.360000pt;}
.y2b7{bottom:258.562000pt;}
.y57{bottom:258.967707pt;}
.y184{bottom:259.040000pt;}
.y264{bottom:259.120000pt;}
.y104{bottom:263.680000pt;}
.y146{bottom:264.400000pt;}
.y1c5{bottom:265.280000pt;}
.yce{bottom:266.400000pt;}
.y289{bottom:268.016000pt;}
.yad{bottom:268.240000pt;}
.y83{bottom:268.320000pt;}
.y112{bottom:268.720000pt;}
.y20b{bottom:271.360000pt;}
.y123{bottom:272.160000pt;}
.yf6{bottom:272.880000pt;}
.y2e7{bottom:273.706707pt;}
.y1a6{bottom:274.400000pt;}
.y2b6{bottom:274.648000pt;}
.y23f{bottom:274.721440pt;}
.y56{bottom:274.812667pt;}
.y28{bottom:275.119387pt;}
.y145{bottom:275.280000pt;}
.y1de{bottom:275.760000pt;}
.y183{bottom:277.440000pt;}
.y263{bottom:277.520000pt;}
.y103{bottom:282.480000pt;}
.y1c4{bottom:283.680000pt;}
.y288{bottom:284.172000pt;}
.ycd{bottom:285.200000pt;}
.yac{bottom:286.640000pt;}
.y82{bottom:286.720000pt;}
.y23e{bottom:287.360000pt;}
.y111{bottom:287.520000pt;}
.y20a{bottom:289.760000pt;}
.y27{bottom:290.483387pt;}
.y55{bottom:290.577467pt;}
.y2e6{bottom:290.586627pt;}
.y2b5{bottom:290.734000pt;}
.y122{bottom:290.960000pt;}
.yf5{bottom:291.600000pt;}
.y1a5{bottom:292.800000pt;}
.y144{bottom:293.680000pt;}
.y1dd{bottom:294.160000pt;}
.y182{bottom:295.840000pt;}
.y262{bottom:295.920000pt;}
.y287{bottom:300.258000pt;}
.y102{bottom:301.280000pt;}
.y1c3{bottom:302.080000pt;}
.ycc{bottom:303.920000pt;}
.yab{bottom:305.040000pt;}
.y81{bottom:305.120000pt;}
.y26{bottom:305.767227pt;}
.y110{bottom:306.240000pt;}
.y54{bottom:306.342267pt;}
.y2b4{bottom:306.820000pt;}
.y2e5{bottom:307.547067pt;}
.y209{bottom:308.160000pt;}
.y121{bottom:309.760000pt;}
.yf4{bottom:310.400000pt;}
.y1a4{bottom:311.200000pt;}
.y143{bottom:312.080000pt;}
.y1dc{bottom:312.560000pt;}
.y181{bottom:314.240000pt;}
.y261{bottom:314.320000pt;}
.y286{bottom:316.344000pt;}
.y101{bottom:320.080000pt;}
.y1c2{bottom:320.480000pt;}
.y25{bottom:321.131227pt;}
.y52{bottom:322.092507pt;}
.y53{bottom:322.107067pt;}
.y10f{bottom:322.560000pt;}
.ycb{bottom:322.720000pt;}
.y2b3{bottom:322.906000pt;}
.y2e4{bottom:323.227067pt;}
.yaa{bottom:323.440000pt;}
.y80{bottom:323.520000pt;}
.y208{bottom:326.560000pt;}
.y120{bottom:328.480000pt;}
.yf3{bottom:329.200000pt;}
.y1a3{bottom:329.600000pt;}
.y142{bottom:330.480000pt;}
.y1db{bottom:330.960000pt;}
.y285{bottom:332.430000pt;}
.y180{bottom:332.640000pt;}
.y260{bottom:332.720000pt;}
.y2e3{bottom:333.867800pt;}
.y24{bottom:336.495227pt;}
.y51{bottom:337.937467pt;}
.y100{bottom:338.800000pt;}
.y1c1{bottom:338.880000pt;}
.y2b2{bottom:339.062000pt;}
.y10e{bottom:340.480000pt;}
.yca{bottom:341.520000pt;}
.ya9{bottom:341.840000pt;}
.y7f{bottom:341.920000pt;}
.y207{bottom:344.960000pt;}
.y11f{bottom:347.280000pt;}
.yf2{bottom:348.000000pt;}
.y284{bottom:348.516000pt;}
.y141{bottom:348.880000pt;}
.y1da{bottom:349.360000pt;}
.y2e2{bottom:350.667600pt;}
.y17f{bottom:351.040000pt;}
.y26f{bottom:351.120000pt;}
.y23{bottom:351.779067pt;}
.y50{bottom:353.702267pt;}
.y2b1{bottom:355.148000pt;}
.y1c0{bottom:355.600000pt;}
.yff{bottom:357.600000pt;}
.y10d{bottom:358.480000pt;}
.y25f{bottom:360.000000pt;}
.ya8{bottom:360.240000pt;}
.y7e{bottom:360.320000pt;}
.y206{bottom:363.360000pt;}
.y283{bottom:364.672000pt;}
.y11e{bottom:366.080000pt;}
.y1bf{bottom:366.233440pt;}
.y1a2{bottom:366.400000pt;}
.yf1{bottom:366.800000pt;}
.y22{bottom:367.143067pt;}
.y140{bottom:367.280000pt;}
.y2e1{bottom:367.547520pt;}
.y1d9{bottom:367.760000pt;}
.yc9{bottom:369.200000pt;}
.y17e{bottom:369.440000pt;}
.y4f{bottom:369.467067pt;}
.y4e{bottom:369.469227pt;}
.y2b0{bottom:371.234000pt;}
.yfe{bottom:376.400000pt;}
.y26e{bottom:378.400000pt;}
.ya7{bottom:378.640000pt;}
.y7d{bottom:378.720000pt;}
.y282{bottom:380.758000pt;}
.y205{bottom:381.760000pt;}
.y20{bottom:382.487520pt;}
.y21{bottom:382.507067pt;}
.y1be{bottom:383.040160pt;}
.y2e0{bottom:384.427440pt;}
.y1a1{bottom:384.800000pt;}
.y11d{bottom:384.880000pt;}
.y4c{bottom:385.197947pt;}
.y4d{bottom:385.227067pt;}
.yf0{bottom:385.520000pt;}
.y13f{bottom:385.680000pt;}
.y1d8{bottom:386.160000pt;}
.y2af{bottom:387.320000pt;}
.y17d{bottom:387.840000pt;}
.yc8{bottom:388.240000pt;}
.y10b{bottom:396.240000pt;}
.y281{bottom:396.844000pt;}
.ya6{bottom:397.040000pt;}
.y7c{bottom:397.120000pt;}
.y1f{bottom:397.771360pt;}
.y1bd{bottom:399.920080pt;}
.y4b{bottom:401.042907pt;}
.y2df{bottom:401.307360pt;}
.y1a0{bottom:403.200000pt;}
.y2ae{bottom:403.476000pt;}
.yfd{bottom:404.080000pt;}
.yef{bottom:404.320000pt;}
.y1d7{bottom:404.560000pt;}
.y17c{bottom:406.240000pt;}
.y10a{bottom:406.560000pt;}
.y161{bottom:406.960000pt;}
.yc7{bottom:407.040000pt;}
.y204{bottom:409.040000pt;}
.y11c{bottom:412.560000pt;}
.y280{bottom:412.930000pt;}
.y1e{bottom:413.135360pt;}
.ya5{bottom:415.440000pt;}
.y7b{bottom:415.520000pt;}
.y1bc{bottom:416.800000pt;}
.y4a{bottom:416.807707pt;}
.y160{bottom:417.600160pt;}
.y2de{bottom:418.187280pt;}
.y2ad{bottom:419.562000pt;}
.y19f{bottom:421.600000pt;}
.y13e{bottom:422.480000pt;}
.y1d6{bottom:422.960000pt;}
.yee{bottom:423.120000pt;}
.y17b{bottom:424.640000pt;}
.yc6{bottom:425.760000pt;}
.y203{bottom:427.680000pt;}
.y1d{bottom:428.499360pt;}
.y27f{bottom:429.086000pt;}
.y1bb{bottom:432.240000pt;}
.y11b{bottom:432.480000pt;}
.y49{bottom:432.572507pt;}
.ya4{bottom:433.840000pt;}
.y7a{bottom:433.920000pt;}
.y15f{bottom:434.480080pt;}
.y2dd{bottom:435.067200pt;}
.y2ac{bottom:435.648000pt;}
.y19e{bottom:440.000000pt;}
.y13d{bottom:440.880000pt;}
.y1d5{bottom:441.360000pt;}
.yed{bottom:441.920000pt;}
.y17a{bottom:443.040000pt;}
.y1ba{bottom:443.120000pt;}
.y1c{bottom:443.783200pt;}
.yc5{bottom:444.560000pt;}
.y27e{bottom:445.172000pt;}
.y202{bottom:446.080000pt;}
.y48{bottom:448.337307pt;}
.y2dc{bottom:450.747200pt;}
.y15e{bottom:451.360080pt;}
.y11a{bottom:451.520000pt;}
.y2ab{bottom:451.734000pt;}
.ya3{bottom:452.240000pt;}
.y79{bottom:452.320000pt;}
.y19d{bottom:458.400000pt;}
.y1a{bottom:459.106107pt;}
.y1b{bottom:459.147200pt;}
.y13c{bottom:459.280000pt;}
.y1d4{bottom:459.760000pt;}
.yec{bottom:460.640000pt;}
.y27d{bottom:461.258000pt;}
.y2db{bottom:461.387787pt;}
.y179{bottom:461.440000pt;}
.y1b9{bottom:461.520000pt;}
.yc4{bottom:463.360000pt;}
.y47{bottom:464.102107pt;}
.y201{bottom:464.480000pt;}
.y2aa{bottom:467.890000pt;}
.y15d{bottom:468.240000pt;}
.y25e{bottom:468.960000pt;}
.y119{bottom:470.320000pt;}
.ya2{bottom:470.640000pt;}
.y78{bottom:470.720000pt;}
.y19{bottom:474.470107pt;}
.y19c{bottom:476.800000pt;}
.y27c{bottom:477.344000pt;}
.y13b{bottom:477.680000pt;}
.y1d3{bottom:478.160000pt;}
.y2da{bottom:478.267707pt;}
.yeb{bottom:479.440000pt;}
.y25d{bottom:479.593760pt;}
.y178{bottom:479.840000pt;}
.y1b8{bottom:479.920000pt;}
.y45{bottom:479.942267pt;}
.y46{bottom:479.947067pt;}
.yc3{bottom:482.160000pt;}
.y200{bottom:482.880000pt;}
.y15c{bottom:483.680000pt;}
.y2a9{bottom:483.976000pt;}
.ya1{bottom:489.040000pt;}
.y77{bottom:489.120000pt;}
.y18{bottom:489.753947pt;}
.y27b{bottom:493.500000pt;}
.y19b{bottom:493.520000pt;}
.y15b{bottom:494.560000pt;}
.y2d9{bottom:495.147627pt;}
.y22c{bottom:495.200000pt;}
.y44{bottom:495.678107pt;}
.y13a{bottom:496.080000pt;}
.y25c{bottom:496.473680pt;}
.y1d2{bottom:496.714080pt;}
.yea{bottom:498.240000pt;}
.y1b7{bottom:498.320000pt;}
.y2a8{bottom:500.062000pt;}
.yc2{bottom:500.880000pt;}
.y1ff{bottom:501.280000pt;}
.y19a{bottom:504.153280pt;}
.y17{bottom:505.117947pt;}
.ya0{bottom:507.440000pt;}
.y76{bottom:507.520000pt;}
.y118{bottom:507.840000pt;}
.y27a{bottom:509.586000pt;}
.y43{bottom:511.442907pt;}
.y2d8{bottom:512.027547pt;}
.y15a{bottom:512.960000pt;}
.y1d1{bottom:513.041440pt;}
.y25b{bottom:513.353600pt;}
.y22b{bottom:513.600000pt;}
.y139{bottom:514.480000pt;}
.y2a7{bottom:516.148000pt;}
.y177{bottom:516.640000pt;}
.y1b6{bottom:516.720000pt;}
.ye9{bottom:517.040000pt;}
.yc1{bottom:519.680000pt;}
.y16{bottom:520.401787pt;}
.y199{bottom:520.960000pt;}
.y279{bottom:525.672000pt;}
.y1d0{bottom:525.680000pt;}
.y9f{bottom:525.840000pt;}
.y75{bottom:525.920000pt;}
.y42{bottom:527.207707pt;}
.y2d7{bottom:528.907467pt;}
.y25a{bottom:530.160320pt;}
.y159{bottom:531.360000pt;}
.y22a{bottom:532.000000pt;}
.y2a6{bottom:532.234000pt;}
.y138{bottom:532.880000pt;}
.y176{bottom:535.040000pt;}
.y1b5{bottom:535.120000pt;}
.y117{bottom:535.520000pt;}
.ye8{bottom:535.760000pt;}
.y15{bottom:535.765787pt;}
.y198{bottom:536.400000pt;}
.yc0{bottom:538.480000pt;}
.y278{bottom:541.758000pt;}
.y41{bottom:543.052667pt;}
.y9e{bottom:544.240000pt;}
.y74{bottom:544.320000pt;}
.y2d6{bottom:545.706867pt;}
.y1fe{bottom:546.716000pt;}
.y259{bottom:547.040240pt;}
.y197{bottom:547.280000pt;}
.y2a5{bottom:548.390000pt;}
.y158{bottom:549.760000pt;}
.y229{bottom:550.400000pt;}
.y14{bottom:551.129787pt;}
.y137{bottom:551.280000pt;}
.y175{bottom:553.440000pt;}
.y1b4{bottom:553.520000pt;}
.ye7{bottom:554.560000pt;}
.ybf{bottom:557.280000pt;}
.y277{bottom:557.914000pt;}
.y40{bottom:558.817467pt;}
.y1fd{bottom:562.080000pt;}
.y2d5{bottom:562.586787pt;}
.y9d{bottom:562.640000pt;}
.y73{bottom:562.720000pt;}
.y258{bottom:563.920160pt;}
.y2a4{bottom:564.476000pt;}
.y196{bottom:565.680000pt;}
.y13{bottom:566.413627pt;}
.y157{bottom:568.160000pt;}
.y228{bottom:568.800000pt;}
.y136{bottom:569.680000pt;}
.y174{bottom:571.840000pt;}
.y1b3{bottom:571.920000pt;}
.ye6{bottom:573.360000pt;}
.y276{bottom:574.000000pt;}
.y3f{bottom:574.582267pt;}
.ybe{bottom:576.080000pt;}
.y1fc{bottom:577.436160pt;}
.y2d4{bottom:579.466707pt;}
.y2a3{bottom:580.562000pt;}
.y257{bottom:580.800080pt;}
.y9c{bottom:581.040000pt;}
.y72{bottom:581.120000pt;}
.y12{bottom:581.777627pt;}
.y195{bottom:584.080000pt;}
.y135{bottom:586.400000pt;}
.y156{bottom:586.560000pt;}
.y227{bottom:587.200000pt;}
.y173{bottom:588.560000pt;}
.y1b2{bottom:590.320000pt;}
.y3e{bottom:590.331307pt;}
.ye5{bottom:592.160000pt;}
.y1fb{bottom:592.708160pt;}
.ybd{bottom:594.800000pt;}
.y2d3{bottom:596.346627pt;}
.y2a2{bottom:596.648000pt;}
.y134{bottom:597.033520pt;}
.y11{bottom:597.141627pt;}
.y256{bottom:597.680000pt;}
.y172{bottom:599.200080pt;}
.y275{bottom:599.360000pt;}
.y9b{bottom:599.440000pt;}
.y71{bottom:599.520000pt;}
.y194{bottom:602.480000pt;}
.y226{bottom:603.920000pt;}
.y155{bottom:604.960000pt;}
.y3d{bottom:606.176267pt;}
.y1fa{bottom:608.072160pt;}
.y1b1{bottom:608.720000pt;}
.yfc{bottom:610.960000pt;}
.ye4{bottom:610.960160pt;}
.y2a1{bottom:612.804000pt;}
.y255{bottom:613.120000pt;}
.y10{bottom:613.227067pt;}
.y2d2{bottom:613.307067pt;}
.ybc{bottom:613.600000pt;}
.y133{bottom:613.840240pt;}
.y225{bottom:614.553440pt;}
.y171{bottom:616.073360pt;}
.y274{bottom:617.440000pt;}
.y9a{bottom:617.840000pt;}
.y70{bottom:617.920000pt;}
.y193{bottom:620.880000pt;}
.y3c{bottom:621.941067pt;}
.y154{bottom:623.360000pt;}
.y1f9{bottom:623.436160pt;}
.y254{bottom:624.000000pt;}
.y1b0{bottom:627.120000pt;}
.y2a0{bottom:628.890000pt;}
.y2d1{bottom:628.987067pt;}
.ye3{bottom:629.680000pt;}
.y132{bottom:630.720160pt;}
.y224{bottom:631.360160pt;}
.ybb{bottom:632.400000pt;}
.y170{bottom:632.953280pt;}
.y273{bottom:633.108000pt;}
.y99{bottom:636.240000pt;}
.y6f{bottom:636.320000pt;}
.y3b{bottom:637.705867pt;}
.y1f8{bottom:638.720000pt;}
.y192{bottom:639.280000pt;}
.y2d0{bottom:639.627667pt;}
.y153{bottom:641.760000pt;}
.y253{bottom:642.400000pt;}
.yf{bottom:644.187067pt;}
.y29f{bottom:644.976000pt;}
.y1af{bottom:645.520000pt;}
.y131{bottom:647.600080pt;}
.y223{bottom:648.240080pt;}
.ye2{bottom:648.480000pt;}
.y16f{bottom:649.760000pt;}
.y272{bottom:649.914720pt;}
.yba{bottom:651.200000pt;}
.y1f7{bottom:652.960000pt;}
.y3a{bottom:653.462640pt;}
.y98{bottom:654.640000pt;}
.y6e{bottom:654.720000pt;}
.y2cf{bottom:656.427547pt;}
.y191{bottom:657.680000pt;}
.y152{bottom:660.160000pt;}
.y23d{bottom:660.553520pt;}
.y252{bottom:660.800000pt;}
.y29e{bottom:661.062000pt;}
.ye{bottom:661.867067pt;}
.y1f6{bottom:663.840000pt;}
.y1ae{bottom:663.920000pt;}
.y130{bottom:664.480000pt;}
.y222{bottom:665.113440pt;}
.y16e{bottom:665.200000pt;}
.y271{bottom:666.794640pt;}
.ye1{bottom:667.280000pt;}
.yd{bottom:667.867067pt;}
.y39{bottom:669.307600pt;}
.yb9{bottom:669.920000pt;}
.y97{bottom:673.040000pt;}
.y6d{bottom:673.120000pt;}
.y2ce{bottom:673.307467pt;}
.y16d{bottom:676.080000pt;}
.y29d{bottom:677.218000pt;}
.y23c{bottom:677.360240pt;}
.y151{bottom:678.560000pt;}
.y251{bottom:679.120000pt;}
.y12f{bottom:681.600000pt;}
.y221{bottom:681.993360pt;}
.y1f5{bottom:682.240000pt;}
.y1ad{bottom:682.320000pt;}
.yc{bottom:684.747067pt;}
.ye0{bottom:686.080000pt;}
.yb8{bottom:688.720000pt;}
.y2cd{bottom:690.187387pt;}
.y96{bottom:691.440000pt;}
.y6c{bottom:691.520000pt;}
.y270{bottom:692.400000pt;}
.y29c{bottom:693.304000pt;}
.y23b{bottom:694.240160pt;}
.y16c{bottom:694.480000pt;}
.y150{bottom:696.960000pt;}
.y250{bottom:697.520000pt;}
.y220{bottom:698.873280pt;}
.y12e{bottom:700.154080pt;}
.y1f4{bottom:700.640000pt;}
.y38{bottom:701.387067pt;}
.ydf{bottom:704.800000pt;}
.y2cc{bottom:707.067307pt;}
.yb7{bottom:707.520000pt;}
.y29b{bottom:709.390000pt;}
.y1ac{bottom:709.600000pt;}
.y95{bottom:709.840000pt;}
.y6b{bottom:709.920000pt;}
.y23a{bottom:711.120080pt;}
.y16b{bottom:712.880000pt;}
.yb{bottom:714.346933pt;}
.y14f{bottom:715.280000pt;}
.y21f{bottom:715.680000pt;}
.y24f{bottom:715.920000pt;}
.y12d{bottom:716.480000pt;}
.y1f3{bottom:717.360000pt;}
.yde{bottom:723.600000pt;}
.y2cb{bottom:723.947227pt;}
.y37{bottom:725.467067pt;}
.y29a{bottom:725.476000pt;}
.yb6{bottom:726.320000pt;}
.y1f2{bottom:727.668160pt;}
.y239{bottom:728.000000pt;}
.y94{bottom:728.240000pt;}
.y6a{bottom:728.320000pt;}
.y12c{bottom:730.880000pt;}
.y21e{bottom:731.120000pt;}
.y16a{bottom:731.280000pt;}
.y14e{bottom:733.680000pt;}
.y24e{bottom:734.320000pt;}
.y12b{bottom:737.279760pt;}
.y2ca{bottom:740.827147pt;}
.y299{bottom:741.562000pt;}
.y21d{bottom:742.000000pt;}
.ydd{bottom:742.400000pt;}
.y36{bottom:742.827200pt;}
.y1f1{bottom:742.952000pt;}
.y238{bottom:744.880000pt;}
.yb5{bottom:745.120000pt;}
.y93{bottom:746.640000pt;}
.y69{bottom:746.720000pt;}
.y169{bottom:749.680000pt;}
.y14d{bottom:750.720000pt;}
.y24d{bottom:752.720000pt;}
.y1cf{bottom:754.160000pt;}
.ya{bottom:754.187067pt;}
.y2c9{bottom:757.707067pt;}
.y298{bottom:757.718000pt;}
.y1f0{bottom:758.316000pt;}
.y21c{bottom:760.400000pt;}
.ydc{bottom:761.200000pt;}
.y237{bottom:761.680160pt;}
.y14c{bottom:763.040000pt;}
.yb4{bottom:763.840000pt;}
.y1ce{bottom:764.793600pt;}
.y92{bottom:765.040000pt;}
.y68{bottom:765.120000pt;}
.y168{bottom:766.400000pt;}
.y190{bottom:768.080000pt;}
.y35{bottom:770.027067pt;}
.y24c{bottom:771.120000pt;}
.y2c8{bottom:773.387067pt;}
.y1ef{bottom:773.680000pt;}
.y297{bottom:773.804000pt;}
.y167{bottom:777.040080pt;}
.y236{bottom:778.560080pt;}
.y21b{bottom:778.800000pt;}
.y14b{bottom:779.363760pt;}
.ydb{bottom:780.000000pt;}
.y1cd{bottom:781.673520pt;}
.yb3{bottom:782.640000pt;}
.y91{bottom:783.440000pt;}
.y67{bottom:783.520000pt;}
.y2c7{bottom:784.027227pt;}
.y9{bottom:784.427067pt;}
.y18f{bottom:786.480000pt;}
.y1ee{bottom:787.840000pt;}
.y24b{bottom:789.520000pt;}
.y296{bottom:789.890000pt;}
.y14a{bottom:792.002320pt;}
.y166{bottom:793.920000pt;}
.y235{bottom:795.440000pt;}
.y21a{bottom:797.200000pt;}
.y1cc{bottom:798.480240pt;}
.yda{bottom:798.720000pt;}
.y2c6{bottom:800.907147pt;}
.yb2{bottom:801.440000pt;}
.y90{bottom:801.840000pt;}
.y66{bottom:801.920000pt;}
.y18e{bottom:804.880000pt;}
.y295{bottom:805.976000pt;}
.y24a{bottom:806.240000pt;}
.y34{bottom:807.139067pt;}
.y165{bottom:809.360000pt;}
.y234{bottom:812.320000pt;}
.y1cb{bottom:815.360160pt;}
.y219{bottom:815.600000pt;}
.y249{bottom:816.880240pt;}
.y1ed{bottom:817.120000pt;}
.yd9{bottom:817.520000pt;}
.y2c5{bottom:817.787067pt;}
.y8f{bottom:820.240000pt;}
.y65{bottom:820.320000pt;}
.y18d{bottom:821.600000pt;}
.y294{bottom:822.132000pt;}
.y233{bottom:827.760000pt;}
.y8{bottom:829.467067pt;}
.y18c{bottom:832.240080pt;}
.y248{bottom:833.760160pt;}
.y218{bottom:834.000000pt;}
.y2c4{bottom:834.667067pt;}
.y1ec{bottom:835.520000pt;}
.yd8{bottom:836.320000pt;}
.y33{bottom:836.827067pt;}
.y293{bottom:838.218000pt;}
.y64{bottom:838.640000pt;}
.y7{bottom:848.189307pt;}
.y18b{bottom:849.120000pt;}
.y247{bottom:850.640080pt;}
.y2c3{bottom:851.547067pt;}
.y217{bottom:852.400000pt;}
.y1eb{bottom:853.920000pt;}
.y292{bottom:854.304000pt;}
.yd7{bottom:855.120000pt;}
.y8e{bottom:857.040000pt;}
.y18a{bottom:864.560000pt;}
.y63{bottom:866.000000pt;}
.y6{bottom:866.987067pt;}
.y246{bottom:867.520000pt;}
.y2c2{bottom:868.587067pt;}
.y291{bottom:870.390000pt;}
.y216{bottom:870.800000pt;}
.y1ea{bottom:872.320000pt;}
.yd6{bottom:873.840000pt;}
.y8d{bottom:875.440000pt;}
.y245{bottom:882.960000pt;}
.y62{bottom:884.640000pt;}
.y290{bottom:886.546000pt;}
.y2c1{bottom:886.665667pt;}
.y215{bottom:889.200000pt;}
.y1e9{bottom:890.720000pt;}
.yd5{bottom:892.640000pt;}
.y8c{bottom:893.840000pt;}
.y32{bottom:900.989067pt;}
.y61{bottom:902.632000pt;}
.y2c0{bottom:902.746067pt;}
.y214{bottom:905.920000pt;}
.y1e8{bottom:909.120000pt;}
.yd4{bottom:911.440000pt;}
.y8b{bottom:912.240000pt;}
.y213{bottom:916.560160pt;}
.y31{bottom:917.551067pt;}
.y60{bottom:918.718000pt;}
.y2bf{bottom:918.826467pt;}
.y1e7{bottom:925.840000pt;}
.yd3{bottom:930.240000pt;}
.y8a{bottom:930.640000pt;}
.y212{bottom:933.440080pt;}
.y30{bottom:934.113067pt;}
.y5f{bottom:934.804000pt;}
.y2be{bottom:934.906867pt;}
.y1e6{bottom:936.156720pt;}
.y89{bottom:949.040000pt;}
.y211{bottom:950.320000pt;}
.y5e{bottom:950.960000pt;}
.y2f{bottom:951.067067pt;}
.y1e5{bottom:951.520720pt;}
.y2{bottom:966.187067pt;}
.y4{bottom:968.907067pt;}
.y1{bottom:977.867067pt;}
.y3{bottom:981.627067pt;}
.y5c{bottom:983.520000pt;}
.y2e{bottom:983.627067pt;}
.he{height:3.777187pt;}
.h2f{height:16.638667pt;}
.h30{height:16.640000pt;}
.h2e{height:19.064063pt;}
.h37{height:22.218750pt;}
.h10{height:22.234375pt;}
.h7{height:22.968750pt;}
.h4{height:25.447500pt;}
.hd{height:26.014219pt;}
.h6{height:26.873437pt;}
.h32{height:28.078125pt;}
.h5{height:28.927500pt;}
.h2{height:29.053440pt;}
.h12{height:29.571719pt;}
.h3b{height:30.324375pt;}
.h35{height:32.851406pt;}
.h3{height:33.026560pt;}
.h14{height:33.351562pt;}
.h1e{height:34.453125pt;}
.h1f{height:37.105312pt;}
.h8{height:37.131406pt;}
.h21{height:37.146873pt;}
.h1a{height:37.163513pt;}
.h1b{height:37.194446pt;}
.h1d{height:37.228580pt;}
.h1c{height:37.247246pt;}
.h31{height:38.357812pt;}
.h2d{height:38.801406pt;}
.h15{height:38.910156pt;}
.h41{height:39.688125pt;}
.h19{height:40.688906pt;}
.ha{height:40.917656pt;}
.h9{height:42.032812pt;}
.hf{height:42.318750pt;}
.h3d{height:42.518906pt;}
.h29{height:43.750000pt;}
.h39{height:44.437500pt;}
.h40{height:44.468750pt;}
.h18{height:46.250000pt;}
.h27{height:46.468750pt;}
.h23{height:46.890469pt;}
.h38{height:46.937829pt;}
.h11{height:47.464531pt;}
.h13{height:47.486291pt;}
.h20{height:47.596265pt;}
.h24{height:49.136719pt;}
.h25{height:49.355469pt;}
.h1{height:49.664000pt;}
.h16{height:49.738281pt;}
.h34{height:51.382969pt;}
.h17{height:51.411562pt;}
.h3e{height:51.430969pt;}
.h42{height:51.611719pt;}
.h43{height:51.612839pt;}
.h3c{height:52.011391pt;}
.h33{height:52.012031pt;}
.hc{height:52.012565pt;}
.h3a{height:52.038271pt;}
.h36{height:52.038591pt;}
.h3f{height:54.651406pt;}
.h2b{height:56.155610pt;}
.h26{height:56.156250pt;}
.h2a{height:56.843750pt;}
.h2c{height:61.343906pt;}
.h28{height:62.035781pt;}
.hb{height:67.200000pt;}
.h22{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.w4{width:174.960000pt;}
.w7{width:175.040000pt;}
.w8{width:175.120000pt;}
.w5{width:175.760000pt;}
.w6{width:176.478667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:6.560000pt;}
.x37{left:57.840000pt;}
.x39{left:87.520000pt;}
.x8{left:132.320000pt;}
.x36{left:133.280000pt;}
.x1d{left:137.600000pt;}
.x1a{left:141.440000pt;}
.x1b{left:144.960000pt;}
.x4c{left:146.240000pt;}
.x4f{left:160.159440pt;}
.x33{left:162.560000pt;}
.x3e{left:170.080000pt;}
.xc{left:172.719200pt;}
.x1f{left:183.600000pt;}
.x30{left:187.760000pt;}
.x31{left:194.400000pt;}
.x3f{left:198.480000pt;}
.x4a{left:204.320000pt;}
.x1c{left:208.480000pt;}
.xa{left:217.920000pt;}
.xb{left:226.964331pt;}
.x1e{left:231.190753pt;}
.x2c{left:233.680000pt;}
.x20{left:239.840000pt;}
.x3d{left:254.000000pt;}
.x21{left:256.000000pt;}
.x49{left:258.880000pt;}
.x43{left:260.957760pt;}
.x48{left:267.440000pt;}
.xd{left:268.560000pt;}
.x1{left:271.040000pt;}
.x2d{left:274.000000pt;}
.x23{left:275.200000pt;}
.xe{left:279.600000pt;}
.x2e{left:287.360000pt;}
.x35{left:300.720000pt;}
.x38{left:309.600000pt;}
.x24{left:312.960000pt;}
.x42{left:317.760000pt;}
.x45{left:320.480000pt;}
.x4d{left:324.320000pt;}
.x10{left:327.200000pt;}
.x34{left:330.960000pt;}
.x47{left:332.876080pt;}
.x4b{left:336.480000pt;}
.x22{left:344.640000pt;}
.x2f{left:346.240000pt;}
.x51{left:351.120000pt;}
.x50{left:352.560000pt;}
.x52{left:360.000000pt;}
.x3c{left:361.600000pt;}
.x12{left:380.320000pt;}
.x25{left:381.920000pt;}
.x26{left:385.280000pt;}
.x16{left:394.400000pt;}
.x41{left:396.800000pt;}
.x2{left:440.880000pt;}
.x9{left:443.840000pt;}
.x27{left:454.400000pt;}
.x13{left:459.520000pt;}
.x14{left:462.880000pt;}
.x11{left:466.480000pt;}
.x28{left:467.840000pt;}
.x3a{left:485.360000pt;}
.x32{left:487.760000pt;}
.x46{left:501.840000pt;}
.x44{left:505.836160pt;}
.x40{left:510.154160pt;}
.xf{left:514.000000pt;}
.x17{left:522.960000pt;}
.x18{left:526.400000pt;}
.x4e{left:527.840000pt;}
.x5{left:531.360000pt;}
.x3{left:545.040000pt;}
.x29{left:609.920000pt;}
.x19{left:629.680000pt;}
.x7{left:641.360000pt;}
.x4{left:645.600000pt;}
.x2a{left:648.080000pt;}
.x15{left:653.520000pt;}
.x6{left:659.200000pt;}
.x2b{left:661.360000pt;}
}




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