
    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_5495141958b3eba76afb9208.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_b41f08b577db2de64ab7d080.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a1fd8fc3635c3bd2d79422d8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d460b367d239fc166f5768d4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.743000;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_29b0f195da720850161bdd0e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.773000;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_1fd255ed272024c575b5e437.woff')format("woff");}.ff6{font-family:ff6;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4084fb668a7df7d0d1081ee6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.670000;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_28170cd88fa1b34baa8614f8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5e4a1af13c679373699f9023.woff')format("woff");}.ff9{font-family:ff9;line-height:1.012695;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_dfb08bf761dd3b219c1b0dcd.woff')format("woff");}.ffa{font-family:ffa;line-height:1.211426;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_810dc20f67d150760b104ad0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.727539;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_b5390d3f1be40e5ce492d6c8.woff')format("woff");}.ffc{font-family:ffc;line-height:1.015137;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_51f60d89e91219f8ab4cb77a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_28170cd88fa1b34baa8614f8.woff')format("woff");}.ffe{font-family:ffe;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5e4a1af13c679373699f9023.woff')format("woff");}.fff{font-family:fff;line-height:1.012695;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_dfb08bf761dd3b219c1b0dcd.woff')format("woff");}.ff10{font-family:ff10;line-height:1.211426;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_810dc20f67d150760b104ad0.woff')format("woff");}.ff11{font-family:ff11;line-height:0.727539;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_b5390d3f1be40e5ce492d6c8.woff')format("woff");}.ff12{font-family:ff12;line-height:1.015137;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_51f60d89e91219f8ab4cb77a.woff')format("woff");}.ff13{font-family:ff13;line-height:0.708008;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_edb824a0660a93b1fd7a2689.woff')format("woff");}.ff14{font-family:ff14;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_506f1d60c2cbca7be2d5db26.woff')format("woff");}.ff15{font-family:ff15;line-height:1.012695;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_33150ac3843bbac6a638470d.woff')format("woff");}.ff16{font-family:ff16;line-height:1.211426;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_810dc20f67d150760b104ad0.woff')format("woff");}.ff17{font-family:ff17;line-height:0.727539;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_5674fd3d3970e5307dd9cbbe.woff')format("woff");}.ff18{font-family:ff18;line-height:0.708008;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_f4c50afbfa2344a94fcb8ff5.woff')format("woff");}.ff19{font-family:ff19;line-height:1.015137;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_383231b3856fd39accfcce2b.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_41613889b4592dee231653a4.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.000488;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_4de2a9b57439b8f0e0c9fc91.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_9f563ec5e678fd64a7e058fe.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.012695;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_9430a8c613d24aff0e6639d9.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.211426;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_810dc20f67d150760b104ad0.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.727539;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_b5390d3f1be40e5ce492d6c8.woff')format("woff");}.ff20{font-family:ff20;line-height:1.015137;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_37f41fb04ce1c073d85f1769.woff')format("woff");}.ff21{font-family:ff21;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m21{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);}
.m23{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);}
.m28{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);}
.m22{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.v4{vertical-align:-53.400000px;}
.v2{vertical-align:-17.364000px;}
.v3{vertical-align:-11.952000px;}
.v7{vertical-align:-10.944000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v8{vertical-align:34.116000px;}
.v5{vertical-align:35.862000px;}
.v6{vertical-align:69.984000px;}
.v9{vertical-align:91.686000px;}
.ls6e{letter-spacing:-0.324648px;}
.ls55{letter-spacing:-0.321402px;}
.ls6c{letter-spacing:-0.306612px;}
.ls53{letter-spacing:-0.303546px;}
.lscb{letter-spacing:-0.291582px;}
.ls6a{letter-spacing:-0.264528px;}
.ls51{letter-spacing:-0.261883px;}
.ls97{letter-spacing:-0.246492px;}
.lsc8{letter-spacing:-0.239097px;}
.ls74{letter-spacing:-0.234468px;}
.ls5b{letter-spacing:-0.232123px;}
.lsd2{letter-spacing:-0.227434px;}
.ls76{letter-spacing:-0.216432px;}
.ls5d{letter-spacing:-0.214268px;}
.ls98{letter-spacing:-0.210420px;}
.lsce{letter-spacing:-0.198276px;}
.lscc{letter-spacing:-0.180781px;}
.ls73{letter-spacing:-0.156312px;}
.ls5a{letter-spacing:-0.154749px;}
.ls77{letter-spacing:-0.150300px;}
.ls5e{letter-spacing:-0.148797px;}
.lsd1{letter-spacing:-0.134128px;}
.lsca{letter-spacing:-0.128296px;}
.lsc2{letter-spacing:-0.122464px;}
.ls9a{letter-spacing:-0.120240px;}
.lsc0{letter-spacing:-0.115236px;}
.ls72{letter-spacing:-0.108216px;}
.ls59{letter-spacing:-0.107134px;}
.lsc1{letter-spacing:-0.104760px;}
.ls7f{letter-spacing:-0.102204px;}
.ls66{letter-spacing:-0.101182px;}
.ls95{letter-spacing:-0.096192px;}
.ls75{letter-spacing:-0.090180px;}
.ls5c{letter-spacing:-0.089278px;}
.ls7b{letter-spacing:-0.078156px;}
.ls62{letter-spacing:-0.077374px;}
.lsc4{letter-spacing:-0.075811px;}
.ls7d{letter-spacing:-0.072144px;}
.ls64{letter-spacing:-0.071423px;}
.lsc7{letter-spacing:-0.069980px;}
.ls79{letter-spacing:-0.066132px;}
.ls60{letter-spacing:-0.065471px;}
.ls91{letter-spacing:-0.064800px;}
.lsd0{letter-spacing:-0.064148px;}
.ls9c{letter-spacing:-0.060120px;}
.ls9b{letter-spacing:-0.057600px;}
.ls7a{letter-spacing:-0.054108px;}
.ls61{letter-spacing:-0.053567px;}
.ls78{letter-spacing:-0.048096px;}
.ls5f{letter-spacing:-0.047615px;}
.ls68{letter-spacing:-0.042084px;}
.ls4f{letter-spacing:-0.041663px;}
.lsbe{letter-spacing:-0.040821px;}
.ls6f{letter-spacing:-0.036072px;}
.ls56{letter-spacing:-0.035711px;}
.lsc6{letter-spacing:-0.034990px;}
.ls8f{letter-spacing:-0.032400px;}
.ls70{letter-spacing:-0.030060px;}
.ls57{letter-spacing:-0.029759px;}
.lscf{letter-spacing:-0.029158px;}
.ls92{letter-spacing:-0.027000px;}
.ls71{letter-spacing:-0.024048px;}
.ls58{letter-spacing:-0.023808px;}
.lsbc{letter-spacing:-0.023327px;}
.ls67{letter-spacing:-0.018036px;}
.ls4e{letter-spacing:-0.017856px;}
.lsc5{letter-spacing:-0.017495px;}
.ls93{letter-spacing:-0.016200px;}
.ls96{letter-spacing:-0.012024px;}
.lsbf{letter-spacing:-0.011663px;}
.ls7c{letter-spacing:-0.006012px;}
.ls63{letter-spacing:-0.005952px;}
.lsbd{letter-spacing:-0.005832px;}
.ls90{letter-spacing:-0.005400px;}
.ls8{letter-spacing:0.000000px;}
.lse3{letter-spacing:0.000800px;}
.lsdb{letter-spacing:0.001938px;}
.lsbb{letter-spacing:0.002581px;}
.lse0{letter-spacing:0.003040px;}
.lsd7{letter-spacing:0.003455px;}
.ls83{letter-spacing:0.005400px;}
.lsa2{letter-spacing:0.005832px;}
.ls21{letter-spacing:0.005952px;}
.ls39{letter-spacing:0.006012px;}
.ls84{letter-spacing:0.010800px;}
.lsba{letter-spacing:0.011663px;}
.ls89{letter-spacing:0.012024px;}
.lsa8{letter-spacing:0.015714px;}
.ls2b{letter-spacing:0.016038px;}
.ls43{letter-spacing:0.016200px;}
.lsa7{letter-spacing:0.017495px;}
.ls86{letter-spacing:0.018036px;}
.lsb0{letter-spacing:0.020952px;}
.ls30{letter-spacing:0.021384px;}
.ls48{letter-spacing:0.021600px;}
.lsa5{letter-spacing:0.023327px;}
.ls1e{letter-spacing:0.023808px;}
.ls36{letter-spacing:0.024048px;}
.lsb2{letter-spacing:0.026190px;}
.ls81{letter-spacing:0.027000px;}
.lsa3{letter-spacing:0.029158px;}
.ls87{letter-spacing:0.030060px;}
.lsa9{letter-spacing:0.031428px;}
.ls80{letter-spacing:0.032400px;}
.lsa1{letter-spacing:0.034990px;}
.ls8d{letter-spacing:0.036072px;}
.lsb1{letter-spacing:0.036666px;}
.ls27{letter-spacing:0.037422px;}
.ls3f{letter-spacing:0.037800px;}
.lsb5{letter-spacing:0.040821px;}
.ls24{letter-spacing:0.041663px;}
.ls9d{letter-spacing:0.041799px;}
.lsac{letter-spacing:0.041904px;}
.ls3c{letter-spacing:0.042084px;}
.ls1a{letter-spacing:0.042661px;}
.ls28{letter-spacing:0.042768px;}
.ls32{letter-spacing:0.043092px;}
.ls40{letter-spacing:0.043200px;}
.lsb3{letter-spacing:0.046653px;}
.ls22{letter-spacing:0.047615px;}
.ls3a{letter-spacing:0.048096px;}
.ls2a{letter-spacing:0.048114px;}
.ls42{letter-spacing:0.048600px;}
.ls9f{letter-spacing:0.051088px;}
.ls1c{letter-spacing:0.052141px;}
.lsab{letter-spacing:0.052380px;}
.ls34{letter-spacing:0.052668px;}
.ls2c{letter-spacing:0.053460px;}
.ls25{letter-spacing:0.053567px;}
.ls44{letter-spacing:0.054000px;}
.ls3d{letter-spacing:0.054108px;}
.lsad{letter-spacing:0.057618px;}
.lsb4{letter-spacing:0.058316px;}
.ls2f{letter-spacing:0.058806px;}
.ls47{letter-spacing:0.059400px;}
.ls26{letter-spacing:0.059519px;}
.ls3e{letter-spacing:0.060120px;}
.lsaa{letter-spacing:0.062856px;}
.lsb6{letter-spacing:0.064148px;}
.ls31{letter-spacing:0.064152px;}
.ls49{letter-spacing:0.064800px;}
.ls8b{letter-spacing:0.066132px;}
.lsaf{letter-spacing:0.068094px;}
.ls29{letter-spacing:0.069498px;}
.lsb7{letter-spacing:0.069980px;}
.ls41{letter-spacing:0.070200px;}
.ls23{letter-spacing:0.071423px;}
.ls3b{letter-spacing:0.072144px;}
.ls2e{letter-spacing:0.074844px;}
.ls46{letter-spacing:0.075600px;}
.lsa6{letter-spacing:0.075811px;}
.ls65{letter-spacing:0.077374px;}
.ls7e{letter-spacing:0.078156px;}
.lsb8{letter-spacing:0.081643px;}
.ls8c{letter-spacing:0.084168px;}
.ls94{letter-spacing:0.090180px;}
.lscd{letter-spacing:0.093306px;}
.ls82{letter-spacing:0.097200px;}
.ls1f{letter-spacing:0.101182px;}
.ls37{letter-spacing:0.102204px;}
.lsc9{letter-spacing:0.110801px;}
.ls50{letter-spacing:0.113086px;}
.ls69{letter-spacing:0.114228px;}
.lsb9{letter-spacing:0.116633px;}
.ls20{letter-spacing:0.119038px;}
.ls38{letter-spacing:0.120240px;}
.ls2d{letter-spacing:0.122958px;}
.ls45{letter-spacing:0.124200px;}
.ls85{letter-spacing:0.132264px;}
.lsae{letter-spacing:0.136188px;}
.ls99{letter-spacing:0.150300px;}
.ls8a{letter-spacing:0.156312px;}
.ls54{letter-spacing:0.172605px;}
.ls6d{letter-spacing:0.174348px;}
.lsa4{letter-spacing:0.174949px;}
.ls1d{letter-spacing:0.175384px;}
.lsa0{letter-spacing:0.176486px;}
.ls35{letter-spacing:0.177156px;}
.ls9e{letter-spacing:0.185774px;}
.lsc3{letter-spacing:0.186612px;}
.ls1b{letter-spacing:0.189605px;}
.ls52{letter-spacing:0.190460px;}
.ls33{letter-spacing:0.191520px;}
.ls6b{letter-spacing:0.192384px;}
.ls88{letter-spacing:0.246492px;}
.ls1{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls0{letter-spacing:8.367300px;}
.ls7{letter-spacing:11.954850px;}
.lsd6{letter-spacing:13.134471px;}
.lse6{letter-spacing:13.164686px;}
.lsdf{letter-spacing:13.287863px;}
.lsea{letter-spacing:13.319175px;}
.lsd8{letter-spacing:13.438635px;}
.lsd5{letter-spacing:13.448400px;}
.lsd9{letter-spacing:13.454400px;}
.lsdc{letter-spacing:13.541318px;}
.lse1{letter-spacing:13.635940px;}
.lsb{letter-spacing:13.654059px;}
.lsa{letter-spacing:13.660182px;}
.ls4c{letter-spacing:13.792627px;}
.lsdd{letter-spacing:13.897459px;}
.ls9{letter-spacing:13.978549px;}
.lse9{letter-spacing:14.450400px;}
.lsd3{letter-spacing:14.714589px;}
.lse{letter-spacing:14.748408px;}
.ls4a{letter-spacing:14.814924px;}
.ls4b{letter-spacing:14.820806px;}
.ls16{letter-spacing:14.832571px;}
.ls15{letter-spacing:14.838453px;}
.ls4d{letter-spacing:14.859281px;}
.ls14{letter-spacing:14.885512px;}
.lsd{letter-spacing:14.918650px;}
.lsc{letter-spacing:14.924626px;}
.ls17{letter-spacing:14.971932px;}
.ls18{letter-spacing:14.977944px;}
.lsd4{letter-spacing:15.001829px;}
.ls8e{letter-spacing:15.063451px;}
.ls13{letter-spacing:15.123227px;}
.lse2{letter-spacing:15.473929px;}
.lsf{letter-spacing:15.991394px;}
.lse5{letter-spacing:16.385094px;}
.lsde{letter-spacing:16.544500px;}
.lsda{letter-spacing:16.676400px;}
.lse8{letter-spacing:16.682400px;}
.lse4{letter-spacing:17.003461px;}
.ls10{letter-spacing:17.873747px;}
.lse7{letter-spacing:18.532753px;}
.ls11{letter-spacing:18.679629px;}
.ls12{letter-spacing:22.236523px;}
.ls19{letter-spacing:22.894055px;}
.ls3{letter-spacing:62.641200px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:62.917200px;}
.ls5{letter-spacing:64.321654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws108{word-spacing:-60.120000px;}
.ws1c4{word-spacing:-58.316400px;}
.ws101{word-spacing:-54.000000px;}
.ws173{word-spacing:-47.337600px;}
.ws89{word-spacing:-15.222384px;}
.ws8a{word-spacing:-15.204348px;}
.ws109{word-spacing:-15.180300px;}
.ws88{word-spacing:-15.144228px;}
.ws103{word-spacing:-15.132204px;}
.ws8f{word-spacing:-15.102144px;}
.ws105{word-spacing:-15.084108px;}
.ws77{word-spacing:-15.070160px;}
.ws78{word-spacing:-15.052305px;}
.ws8e{word-spacing:-15.030000px;}
.ws76{word-spacing:-14.992786px;}
.ws8d{word-spacing:-14.975892px;}
.ws7d{word-spacing:-14.951123px;}
.ws4c{word-spacing:-14.943900px;}
.ws107{word-spacing:-14.939820px;}
.ws7c{word-spacing:-14.879700px;}
.ws7b{word-spacing:-14.826133px;}
.ws106{word-spacing:-14.819580px;}
.ws104{word-spacing:-14.813568px;}
.ws8c{word-spacing:-14.795532px;}
.ws1bc{word-spacing:-14.765712px;}
.ws1be{word-spacing:-14.689901px;}
.ws1c1{word-spacing:-14.649080px;}
.ws7a{word-spacing:-14.647577px;}
.ws1b8{word-spacing:-14.608258px;}
.ws1b9{word-spacing:-14.584932px;}
.ws1bf{word-spacing:-14.544110px;}
.ws1bd{word-spacing:-14.503289px;}
.ws1c2{word-spacing:-14.380824px;}
.wse{word-spacing:-14.355754px;}
.ws1c3{word-spacing:-14.351666px;}
.ws1c0{word-spacing:-14.287518px;}
.ws91{word-spacing:-13.500000px;}
.ws102{word-spacing:-13.473000px;}
.ws100{word-spacing:-13.467600px;}
.ws83{word-spacing:-13.449600px;}
.ws7f{word-spacing:-13.365000px;}
.ws1bb{word-spacing:-13.095000px;}
.ws86{word-spacing:-12.161520px;}
.ws74{word-spacing:-12.039905px;}
.ws87{word-spacing:-11.970000px;}
.ws11{word-spacing:-11.955150px;}
.ws75{word-spacing:-11.850300px;}
.ws1b5{word-spacing:-11.796674px;}
.ws1b6{word-spacing:-11.610900px;}
.wsf{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws10a{word-spacing:-8.942400px;}
.ws44{word-spacing:-3.526760px;}
.ws12a{word-spacing:-3.472200px;}
.ws13{word-spacing:-3.168107px;}
.ws129{word-spacing:-3.153600px;}
.ws141{word-spacing:-3.126600px;}
.ws128{word-spacing:-3.115800px;}
.ws13f{word-spacing:-3.088800px;}
.ws140{word-spacing:-3.040200px;}
.ws11d{word-spacing:-2.988780px;}
.ws12{word-spacing:-2.735654px;}
.ws1ef{word-spacing:-2.735039px;}
.ws1ee{word-spacing:-2.694218px;}
.ws1c6{word-spacing:-2.582323px;}
.ws1fa{word-spacing:-2.577585px;}
.ws1fb{word-spacing:-2.571753px;}
.ws168{word-spacing:-2.510575px;}
.ws241{word-spacing:-2.474726px;}
.ws151{word-spacing:-2.452896px;}
.ws4d{word-spacing:-2.450800px;}
.ws150{word-spacing:-2.410812px;}
.wsd1{word-spacing:-2.404800px;}
.wsa2{word-spacing:-2.380752px;}
.ws165{word-spacing:-2.362716px;}
.wsa3{word-spacing:-2.356944px;}
.ws166{word-spacing:-2.350692px;}
.ws237{word-spacing:-2.313331px;}
.ws238{word-spacing:-2.259533px;}
.ws22c{word-spacing:-2.205734px;}
.ws152{word-spacing:-2.176344px;}
.ws1c7{word-spacing:-2.151936px;}
.ws3{word-spacing:-2.098357px;}
.ws5{word-spacing:-2.094815px;}
.ws3c{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws2{word-spacing:-2.089922px;}
.ws137{word-spacing:-1.987200px;}
.ws22e{word-spacing:-1.882944px;}
.ws120{word-spacing:-1.793268px;}
.ws167{word-spacing:-1.743480px;}
.ws5d{word-spacing:-1.733492px;}
.ws130{word-spacing:-1.679400px;}
.ws131{word-spacing:-1.668600px;}
.ws269{word-spacing:-1.667750px;}
.ws13c{word-spacing:-1.663200px;}
.ws132{word-spacing:-1.657800px;}
.ws138{word-spacing:-1.652400px;}
.ws13d{word-spacing:-1.641600px;}
.ws266{word-spacing:-1.640856px;}
.ws268{word-spacing:-1.635786px;}
.ws139{word-spacing:-1.625400px;}
.ws267{word-spacing:-1.613952px;}
.ws21c{word-spacing:-1.613941px;}
.ws13e{word-spacing:-1.587600px;}
.ws20f{word-spacing:-1.554166px;}
.ws57{word-spacing:-1.494390px;}
.ws26{word-spacing:-1.434614px;}
.ws121{word-spacing:-1.374839px;}
.ws15f{word-spacing:-1.358712px;}
.ws12d{word-spacing:-1.317600px;}
.ws53{word-spacing:-1.315279px;}
.ws1c{word-spacing:-1.315063px;}
.wsfa{word-spacing:-1.312200px;}
.ws15e{word-spacing:-1.310616px;}
.ws201{word-spacing:-1.306287px;}
.wscc{word-spacing:-1.299078px;}
.ws12f{word-spacing:-1.296000px;}
.wsf9{word-spacing:-1.290600px;}
.wscb{word-spacing:-1.277694px;}
.ws200{word-spacing:-1.277129px;}
.wsde{word-spacing:-1.256508px;}
.ws3d{word-spacing:-1.255288px;}
.ws12e{word-spacing:-1.252800px;}
.wsb0{word-spacing:-1.243943px;}
.ws21{word-spacing:-1.195512px;}
.ws24{word-spacing:-1.177772px;}
.ws20{word-spacing:-1.175911px;}
.ws1f{word-spacing:-1.175026px;}
.ws98{word-spacing:-1.174643px;}
.ws23{word-spacing:-1.174603px;}
.ws25{word-spacing:-1.170421px;}
.ws19{word-spacing:-1.135736px;}
.ws1e{word-spacing:-1.083576px;}
.ws1d{word-spacing:-1.075961px;}
.wseb{word-spacing:-1.046088px;}
.wsbd{word-spacing:-1.035627px;}
.ws18{word-spacing:-1.016185px;}
.ws14b{word-spacing:-1.010016px;}
.ws235{word-spacing:-0.968371px;}
.ws21a{word-spacing:-0.956410px;}
.wse1{word-spacing:-0.937872px;}
.wsb3{word-spacing:-0.928493px;}
.ws10d{word-spacing:-0.860774px;}
.ws10e{word-spacing:-0.850015px;}
.ws17{word-spacing:-0.836858px;}
.wse0{word-spacing:-0.835668px;}
.wsdd{word-spacing:-0.829656px;}
.wsb2{word-spacing:-0.827311px;}
.wsaf{word-spacing:-0.821359px;}
.ws110{word-spacing:-0.806976px;}
.wsdf{word-spacing:-0.769536px;}
.wsb1{word-spacing:-0.761841px;}
.ws111{word-spacing:-0.699379px;}
.wsea{word-spacing:-0.679356px;}
.wsbc{word-spacing:-0.672562px;}
.ws112{word-spacing:-0.645581px;}
.ws10f{word-spacing:-0.591782px;}
.ws26a{word-spacing:-0.430387px;}
.ws52{word-spacing:-0.418429px;}
.ws147{word-spacing:-0.396792px;}
.ws228{word-spacing:-0.376589px;}
.ws3f{word-spacing:-0.358654px;}
.ws23c{word-spacing:-0.349302px;}
.wsed{word-spacing:-0.342684px;}
.wsbf{word-spacing:-0.339257px;}
.ws229{word-spacing:-0.322790px;}
.ws2c{word-spacing:-0.298878px;}
.ws10{word-spacing:-0.286924px;}
.wsce{word-spacing:-0.277704px;}
.ws9f{word-spacing:-0.274927px;}
.ws1d6{word-spacing:-0.274087px;}
.ws1cb{word-spacing:-0.269373px;}
.ws85{word-spacing:-0.268992px;}
.ws1f2{word-spacing:-0.262424px;}
.ws146{word-spacing:-0.258516px;}
.ws2e{word-spacing:-0.239102px;}
.ws1f1{word-spacing:-0.233266px;}
.ws216{word-spacing:-0.231476px;}
.ws1df{word-spacing:-0.230472px;}
.ws1dd{word-spacing:-0.225234px;}
.ws1f0{word-spacing:-0.221602px;}
.ws71{word-spacing:-0.220985px;}
.ws72{word-spacing:-0.218788px;}
.ws81{word-spacing:-0.215194px;}
.ws1de{word-spacing:-0.209520px;}
.ws1ca{word-spacing:-0.192139px;}
.wsec{word-spacing:-0.186372px;}
.wsbe{word-spacing:-0.184508px;}
.ws40{word-spacing:-0.179327px;}
.ws245{word-spacing:-0.173416px;}
.ws80{word-spacing:-0.161395px;}
.wscf{word-spacing:-0.138852px;}
.wsa0{word-spacing:-0.137463px;}
.ws1cc{word-spacing:-0.134686px;}
.ws20e{word-spacing:-0.123623px;}
.ws36{word-spacing:-0.119551px;}
.ws23b{word-spacing:-0.107597px;}
.ws99{word-spacing:-0.099252px;}
.ws58{word-spacing:-0.094392px;}
.ws5f{word-spacing:-0.089436px;}
.ws25e{word-spacing:-0.084997px;}
.ws8b{word-spacing:-0.060120px;}
.ws34{word-spacing:-0.059776px;}
.ws79{word-spacing:-0.059519px;}
.ws1b7{word-spacing:-0.058316px;}
.ws90{word-spacing:-0.054000px;}
.ws23e{word-spacing:-0.053882px;}
.ws5e{word-spacing:-0.053798px;}
.ws7e{word-spacing:-0.053460px;}
.ws1ba{word-spacing:-0.052380px;}
.ws54{word-spacing:-0.047727px;}
.ws262{word-spacing:-0.043110px;}
.ws244{word-spacing:-0.025598px;}
.ws278{word-spacing:-0.007786px;}
.ws279{word-spacing:-0.006931px;}
.ws259{word-spacing:-0.006806px;}
.ws258{word-spacing:-0.006749px;}
.ws277{word-spacing:-0.006576px;}
.ws249{word-spacing:-0.006230px;}
.ws2f{word-spacing:-0.004915px;}
.ws243{word-spacing:-0.003725px;}
.ws246{word-spacing:-0.003466px;}
.ws26d{word-spacing:-0.003302px;}
.ws264{word-spacing:-0.003178px;}
.ws73{word-spacing:-0.002978px;}
.ws253{word-spacing:-0.002410px;}
.wsa{word-spacing:-0.001800px;}
.ws8{word-spacing:0.000000px;}
.ws227{word-spacing:0.001978px;}
.ws1ec{word-spacing:0.046653px;}
.wsb7{word-spacing:0.047615px;}
.wse5{word-spacing:0.048096px;}
.ws220{word-spacing:0.049137px;}
.ws97{word-spacing:0.053798px;}
.ws37{word-spacing:0.059776px;}
.ws24d{word-spacing:0.077146px;}
.ws148{word-spacing:0.078156px;}
.ws149{word-spacing:0.096192px;}
.ws23f{word-spacing:0.102287px;}
.ws1d7{word-spacing:0.104970px;}
.ws224{word-spacing:0.107597px;}
.ws1ed{word-spacing:0.110801px;}
.wsc2{word-spacing:0.112266px;}
.wsf0{word-spacing:0.113400px;}
.ws145{word-spacing:0.114228px;}
.wscd{word-spacing:0.117612px;}
.wsfb{word-spacing:0.118800px;}
.ws33{word-spacing:0.119551px;}
.ws1e6{word-spacing:0.125712px;}
.ws133{word-spacing:0.129600px;}
.ws275{word-spacing:0.130631px;}
.wsad{word-spacing:0.130941px;}
.wsdb{word-spacing:0.132264px;}
.ws142{word-spacing:0.140400px;}
.ws134{word-spacing:0.151200px;}
.ws70{word-spacing:0.152979px;}
.ws6f{word-spacing:0.153385px;}
.ws274{word-spacing:0.154838px;}
.ws96{word-spacing:0.161395px;}
.ws14a{word-spacing:0.168336px;}
.ws43{word-spacing:0.179327px;}
.ws26c{word-spacing:0.183006px;}
.ws143{word-spacing:0.183600px;}
.wsc0{word-spacing:0.196412px;}
.wsee{word-spacing:0.198396px;}
.wsae{word-spacing:0.202364px;}
.wsdc{word-spacing:0.204408px;}
.ws94{word-spacing:0.210957px;}
.ws84{word-spacing:0.215194px;}
.ws6d{word-spacing:0.226597px;}
.ws6e{word-spacing:0.228429px;}
.ws3e{word-spacing:0.239102px;}
.ws22{word-spacing:0.250789px;}
.ws6a{word-spacing:0.263310px;}
.ws6b{word-spacing:0.265795px;}
.ws27a{word-spacing:0.268992px;}
.ws6c{word-spacing:0.271294px;}
.ws59{word-spacing:0.298878px;}
.ws236{word-spacing:0.322790px;}
.ws218{word-spacing:0.327253px;}
.ws42{word-spacing:0.358654px;}
.ws206{word-spacing:0.384888px;}
.wsbb{word-spacing:0.410680px;}
.wse9{word-spacing:0.414828px;}
.ws4{word-spacing:0.418477px;}
.ws7{word-spacing:0.422252px;}
.ws252{word-spacing:0.430387px;}
.wsff{word-spacing:0.475316px;}
.ws69{word-spacing:0.478205px;}
.ws162{word-spacing:0.486972px;}
.wsc1{word-spacing:0.502524px;}
.wsef{word-spacing:0.507600px;}
.ws205{word-spacing:0.577332px;}
.ws251{word-spacing:0.699379px;}
.ws16{word-spacing:0.717307px;}
.ws250{word-spacing:0.753178px;}
.ws1f6{word-spacing:0.763945px;}
.wsba{word-spacing:0.815408px;}
.wsc8{word-spacing:0.823284px;}
.wse8{word-spacing:0.823644px;}
.ws1e0{word-spacing:0.827604px;}
.wsf6{word-spacing:0.831600px;}
.wsc9{word-spacing:0.839322px;}
.wsf7{word-spacing:0.847800px;}
.wsc3{word-spacing:0.850014px;}
.wsf1{word-spacing:0.858600px;}
.ws1f5{word-spacing:0.868914px;}
.wsc4{word-spacing:0.882090px;}
.wsf2{word-spacing:0.891000px;}
.ws160{word-spacing:0.913824px;}
.ws10c{word-spacing:0.914573px;}
.ws161{word-spacing:0.937872px;}
.ws4f{word-spacing:0.949435px;}
.ws32{word-spacing:0.956410px;}
.ws1e1{word-spacing:0.984744px;}
.ws48{word-spacing:1.016185px;}
.ws41{word-spacing:1.075961px;}
.wsa6{word-spacing:1.130857px;}
.wsd4{word-spacing:1.142280px;}
.ws9a{word-spacing:1.160708px;}
.ws217{word-spacing:1.176938px;}
.wsa4{word-spacing:1.184424px;}
.wsd2{word-spacing:1.196388px;}
.wsca{word-spacing:1.229580px;}
.wsb4{word-spacing:1.232039px;}
.ws210{word-spacing:1.235041px;}
.wsf8{word-spacing:1.242000px;}
.wse2{word-spacing:1.244484px;}
.ws1c9{word-spacing:1.255288px;}
.ws95{word-spacing:1.291162px;}
.ws39{word-spacing:1.315063px;}
.ws38{word-spacing:1.347170px;}
.ws247{word-spacing:1.398758px;}
.ws1fe{word-spacing:1.411257px;}
.ws11b{word-spacing:1.434614px;}
.ws273{word-spacing:1.440927px;}
.wsa5{word-spacing:1.470114px;}
.ws1e9{word-spacing:1.475405px;}
.wsd3{word-spacing:1.484964px;}
.ws11a{word-spacing:1.494390px;}
.ws1d2{word-spacing:1.498731px;}
.ws221{word-spacing:1.500264px;}
.ws1d3{word-spacing:1.533721px;}
.ws2d{word-spacing:1.554166px;}
.ws233{word-spacing:1.560154px;}
.ws1b4{word-spacing:1.613941px;}
.ws10b{word-spacing:1.613952px;}
.ws25f{word-spacing:1.667750px;}
.ws1fd{word-spacing:1.673681px;}
.ws260{word-spacing:1.679109px;}
.ws4b{word-spacing:1.733492px;}
.ws1ff{word-spacing:1.761155px;}
.ws45{word-spacing:1.793268px;}
.ws1fc{word-spacing:1.796145px;}
.ws27{word-spacing:1.853044px;}
.ws1eb{word-spacing:1.860293px;}
.wsa8{word-spacing:1.874842px;}
.wsd6{word-spacing:1.893780px;}
.wsa7{word-spacing:1.910553px;}
.wsd5{word-spacing:1.929852px;}
.ws265{word-spacing:1.936742px;}
.ws1ea{word-spacing:1.959431px;}
.ws136{word-spacing:1.965600px;}
.ws1b{word-spacing:1.972595px;}
.ws226{word-spacing:1.996330px;}
.ws47{word-spacing:2.032370px;}
.ws225{word-spacing:2.044339px;}
.ws232{word-spacing:2.098138px;}
.ws117{word-spacing:2.151922px;}
.ws230{word-spacing:2.151936px;}
.ws1d1{word-spacing:2.163538px;}
.ws46{word-spacing:2.211697px;}
.ws135{word-spacing:2.332800px;}
.ws22f{word-spacing:2.367130px;}
.ws26f{word-spacing:2.472841px;}
.ws270{word-spacing:2.474726px;}
.ws1c5{word-spacing:2.582323px;}
.ws5b{word-spacing:2.630126px;}
.ws9c{word-spacing:2.689902px;}
.ws15{word-spacing:2.749678px;}
.ws21e{word-spacing:2.793338px;}
.ws1c8{word-spacing:2.797517px;}
.ws21d{word-spacing:2.809453px;}
.ws3a{word-spacing:2.869229px;}
.ws157{word-spacing:2.903796px;}
.ws55{word-spacing:2.929004px;}
.ws234{word-spacing:2.937392px;}
.ws4e{word-spacing:2.988780px;}
.ws1b3{word-spacing:3.108331px;}
.ws24a{word-spacing:3.120307px;}
.ws26e{word-spacing:3.174106px;}
.ws22b{word-spacing:3.177524px;}
.ws25b{word-spacing:3.216835px;}
.ws256{word-spacing:3.217498px;}
.ws242{word-spacing:3.218861px;}
.ws23d{word-spacing:3.220714px;}
.ws240{word-spacing:3.220963px;}
.ws254{word-spacing:3.221213px;}
.ws24b{word-spacing:3.222451px;}
.ws25c{word-spacing:3.222490px;}
.ws24f{word-spacing:3.222826px;}
.ws24c{word-spacing:3.223834px;}
.ws25d{word-spacing:3.225571px;}
.ws255{word-spacing:3.225936px;}
.ws9b{word-spacing:3.227882px;}
.ws239{word-spacing:3.227904px;}
.ws1d0{word-spacing:3.230729px;}
.ws1e2{word-spacing:3.258036px;}
.ws1cf{word-spacing:3.259887px;}
.ws156{word-spacing:3.264516px;}
.ws92{word-spacing:3.281702px;}
.ws93{word-spacing:3.281978px;}
.ws155{word-spacing:3.282552px;}
.ws14{word-spacing:3.287658px;}
.ws1e3{word-spacing:3.305178px;}
.ws26b{word-spacing:3.335501px;}
.ws21b{word-spacing:3.347434px;}
.ws24e{word-spacing:3.389299px;}
.ws31{word-spacing:3.466985px;}
.ws261{word-spacing:3.496745px;}
.ws23a{word-spacing:3.496896px;}
.ws30{word-spacing:3.526760px;}
.ws248{word-spacing:3.550694px;}
.ws11f{word-spacing:3.552408px;}
.ws11e{word-spacing:3.586536px;}
.ws1db{word-spacing:3.619458px;}
.ws1dc{word-spacing:3.629934px;}
.ws9d{word-spacing:3.646312px;}
.wsb6{word-spacing:3.654454px;}
.wsb5{word-spacing:3.690166px;}
.wse4{word-spacing:3.691368px;}
.ws35{word-spacing:3.706087px;}
.wse3{word-spacing:3.727440px;}
.ws13b{word-spacing:3.763800px;}
.ws219{word-spacing:3.765863px;}
.ws13a{word-spacing:3.780000px;}
.ws2b{word-spacing:3.825638px;}
.ws68{word-spacing:3.885414px;}
.ws169{word-spacing:3.898035px;}
.ws20a{word-spacing:3.901367px;}
.ws16a{word-spacing:3.903068px;}
.ws113{word-spacing:3.904758px;}
.ws114{word-spacing:3.908950px;}
.ws115{word-spacing:3.910452px;}
.ws49{word-spacing:3.945190px;}
.ws204{word-spacing:3.971347px;}
.ws272{word-spacing:3.981082px;}
.ws203{word-spacing:4.000505px;}
.ws271{word-spacing:4.034880px;}
.ws158{word-spacing:4.046076px;}
.ws222{word-spacing:4.088678px;}
.ws159{word-spacing:4.112208px;}
.ws21f{word-spacing:4.124516px;}
.ws223{word-spacing:4.142477px;}
.ws118{word-spacing:4.184292px;}
.ws1f8{word-spacing:4.222107px;}
.ws1f7{word-spacing:4.245434px;}
.ws1f9{word-spacing:4.297919px;}
.ws2a{word-spacing:4.303872px;}
.ws144{word-spacing:4.328640px;}
.ws1e4{word-spacing:4.337064px;}
.ws1e5{word-spacing:4.347540px;}
.ws4a{word-spacing:4.423394px;}
.wsfc{word-spacing:4.483170px;}
.wsfe{word-spacing:4.515855px;}
.wsfd{word-spacing:4.542946px;}
.ws1a{word-spacing:4.602721px;}
.ws9e{word-spacing:4.615855px;}
.ws211{word-spacing:4.662497px;}
.ws214{word-spacing:4.669778px;}
.ws212{word-spacing:4.670693px;}
.ws213{word-spacing:4.673656px;}
.ws15d{word-spacing:4.713408px;}
.ws50{word-spacing:4.782048px;}
.ws22a{word-spacing:4.788058px;}
.ws12c{word-spacing:4.795200px;}
.ws125{word-spacing:4.816800px;}
.ws127{word-spacing:4.827600px;}
.ws170{word-spacing:4.841824px;}
.ws126{word-spacing:4.870800px;}
.ws16e{word-spacing:4.881715px;}
.ws16c{word-spacing:4.881918px;}
.ws16d{word-spacing:4.895496px;}
.ws82{word-spacing:4.895654px;}
.ws16b{word-spacing:4.901599px;}
.ws1e8{word-spacing:4.927736px;}
.ws12b{word-spacing:4.930200px;}
.ws1e7{word-spacing:4.939399px;}
.ws257{word-spacing:5.003251px;}
.ws1b2{word-spacing:5.080926px;}
.ws15c{word-spacing:5.098176px;}
.ws56{word-spacing:5.260253px;}
.wsac{word-spacing:5.338836px;}
.wsda{word-spacing:5.392764px;}
.wsb8{word-spacing:5.600719px;}
.ws20c{word-spacing:5.615869px;}
.ws209{word-spacing:5.656691px;}
.wse6{word-spacing:5.657292px;}
.ws20b{word-spacing:5.668354px;}
.ws20d{word-spacing:5.674186px;}
.ws207{word-spacing:5.703344px;}
.ws1da{word-spacing:5.704182px;}
.wsa9{word-spacing:5.773324px;}
.wsab{word-spacing:5.820939px;}
.wsaa{word-spacing:5.826891px;}
.wsd7{word-spacing:5.831640px;}
.wsb9{word-spacing:5.874506px;}
.wsd9{word-spacing:5.879736px;}
.wsd8{word-spacing:5.885748px;}
.ws276{word-spacing:5.917824px;}
.wse7{word-spacing:5.933844px;}
.ws208{word-spacing:6.006589px;}
.ws1d9{word-spacing:6.086556px;}
.ws215{word-spacing:6.097111px;}
.ws1d8{word-spacing:6.102270px;}
.ws16f{word-spacing:6.156887px;}
.ws153{word-spacing:6.216408px;}
.ws154{word-spacing:6.234444px;}
.ws123{word-spacing:6.636600px;}
.ws124{word-spacing:6.642000px;}
.ws122{word-spacing:6.652800px;}
.ws231{word-spacing:6.671002px;}
.ws5a{word-spacing:6.874194px;}
.ws163{word-spacing:6.907788px;}
.ws1d4{word-spacing:7.003800px;}
.ws11c{word-spacing:7.053521px;}
.ws1d5{word-spacing:7.079611px;}
.ws22d{word-spacing:7.101389px;}
.ws119{word-spacing:7.113296px;}
.ws164{word-spacing:7.214400px;}
.wsc7{word-spacing:7.238484px;}
.wsf5{word-spacing:7.311600px;}
.ws5c{word-spacing:7.352399px;}
.ws1ce{word-spacing:7.394520px;}
.ws51{word-spacing:7.412174px;}
.wsc5{word-spacing:7.618050px;}
.wsc6{word-spacing:7.634088px;}
.wsf3{word-spacing:7.695000px;}
.wsf4{word-spacing:7.711200px;}
.ws3b{word-spacing:7.950155px;}
.ws202{word-spacing:8.094316px;}
.ws263{word-spacing:8.392550px;}
.ws25a{word-spacing:9.414720px;}
.ws15b{word-spacing:10.508976px;}
.ws14e{word-spacing:10.533024px;}
.ws14f{word-spacing:10.995948px;}
.ws1cd{word-spacing:11.267217px;}
.ws67{word-spacing:11.417140px;}
.wsa1{word-spacing:11.504271px;}
.wsd0{word-spacing:11.620476px;}
.ws1f3{word-spacing:11.692438px;}
.ws1f4{word-spacing:11.861556px;}
.ws14c{word-spacing:11.909772px;}
.ws14d{word-spacing:11.981916px;}
.ws116{word-spacing:15.840534px;}
.ws15a{word-spacing:17.374680px;}
.ws1{word-spacing:22.179541px;}
.ws9{word-spacing:26.785286px;}
.ws29{word-spacing:31.621292px;}
.wsd{word-spacing:40.042186px;}
.wsb{word-spacing:46.627738px;}
.wsc{word-spacing:46.633738px;}
.ws28{word-spacing:67.033592px;}
.ws1a9{word-spacing:288.201283px;}
.ws185{word-spacing:383.520996px;}
.ws184{word-spacing:384.115058px;}
.ws178{word-spacing:384.331139px;}
.ws174{word-spacing:386.020276px;}
.ws199{word-spacing:386.055883px;}
.ws186{word-spacing:386.637744px;}
.ws1a4{word-spacing:388.037215px;}
.ws198{word-spacing:389.203933px;}
.ws195{word-spacing:390.096534px;}
.ws171{word-spacing:396.190524px;}
.ws1a2{word-spacing:396.494671px;}
.ws183{word-spacing:399.662796px;}
.ws176{word-spacing:401.687234px;}
.ws190{word-spacing:402.560228px;}
.ws182{word-spacing:402.834372px;}
.ws17f{word-spacing:404.085000px;}
.ws196{word-spacing:404.350550px;}
.ws1ac{word-spacing:405.562601px;}
.ws66{word-spacing:407.490265px;}
.ws172{word-spacing:408.174996px;}
.ws18b{word-spacing:412.688392px;}
.ws181{word-spacing:414.191172px;}
.ws177{word-spacing:420.965784px;}
.ws62{word-spacing:422.434165px;}
.ws180{word-spacing:424.665571px;}
.ws1a1{word-spacing:425.331022px;}
.ws1a5{word-spacing:425.956309px;}
.ws179{word-spacing:427.064006px;}
.ws187{word-spacing:427.570192px;}
.ws18a{word-spacing:427.574392px;}
.ws1a8{word-spacing:429.247825px;}
.ws1a6{word-spacing:429.273401px;}
.ws1b0{word-spacing:430.887283px;}
.ws1a7{word-spacing:432.810592px;}
.ws17b{word-spacing:433.672614px;}
.ws193{word-spacing:434.924375px;}
.ws19e{word-spacing:435.883808px;}
.ws1ad{word-spacing:437.015281px;}
.ws63{word-spacing:437.378065px;}
.ws1aa{word-spacing:438.658939px;}
.ws19f{word-spacing:439.200900px;}
.ws1ab{word-spacing:439.611571px;}
.ws1a0{word-spacing:440.874334px;}
.ws19a{word-spacing:441.440070px;}
.ws17e{word-spacing:442.516192px;}
.ws1ae{word-spacing:444.191425px;}
.ws18c{word-spacing:447.478741px;}
.ws1af{word-spacing:449.400592px;}
.ws17d{word-spacing:449.479706px;}
.ws191{word-spacing:451.961281px;}
.ws64{word-spacing:452.321965px;}
.ws19b{word-spacing:458.029728px;}
.ws19c{word-spacing:461.914356px;}
.ws18e{word-spacing:462.424741px;}
.ws61{word-spacing:478.204800px;}
.ws1b1{word-spacing:482.868996px;}
.ws197{word-spacing:485.166996px;}
.ws65{word-spacing:501.397733px;}
.ws18d{word-spacing:630.034824px;}
.ws17a{word-spacing:635.354852px;}
.ws18f{word-spacing:644.978724px;}
.ws17c{word-spacing:650.298752px;}
.ws188{word-spacing:681.023411px;}
.ws19d{word-spacing:686.522766px;}
.ws175{word-spacing:688.734463px;}
.ws60{word-spacing:692.000392px;}
.ws189{word-spacing:695.967311px;}
.ws194{word-spacing:711.927396px;}
.ws192{word-spacing:726.871296px;}
.ws1a3{word-spacing:735.120329px;}
._4{margin-left:-11.936928px;}
._a{margin-left:-7.029628px;}
._c{margin-left:-5.738488px;}
._3{margin-left:-4.519022px;}
._9{margin-left:-2.996744px;}
._1{margin-left:-1.506341px;}
._37{width:1.000431px;}
._5{width:3.000154px;}
._6{width:4.083898px;}
._2{width:9.707530px;}
._0{width:10.879128px;}
._10{width:12.858908px;}
._b{width:13.963615px;}
._16{width:15.015679px;}
._e{width:16.996056px;}
._17{width:18.112007px;}
._d{width:19.128170px;}
._1a{width:20.419363px;}
._18{width:22.296299px;}
._12{width:23.730913px;}
._19{width:25.105752px;}
._f{width:26.946780px;}
._1b{width:28.275251px;}
._15{width:29.588922px;}
._39{width:30.915958px;}
._48{width:33.605838px;}
._4a{width:36.529099px;}
._49{width:37.909681px;}
._7{width:54.366946px;}
._11{width:62.465502px;}
._8{width:69.348068px;}
._20{width:81.665420px;}
._29{width:104.081270px;}
._2c{width:119.025170px;}
._3c{width:157.269604px;}
._21{width:159.553027px;}
._3b{width:161.334344px;}
._42{width:166.295719px;}
._3a{width:194.760856px;}
._1f{width:204.432552px;}
._2b{width:208.616844px;}
._28{width:223.560744px;}
._2a{width:258.063216px;}
._45{width:270.215183px;}
._2d{width:273.007116px;}
._34{width:295.422966px;}
._2e{width:362.730292px;}
._1e{width:425.243618px;}
._1c{width:431.595934px;}
._31{width:433.253549px;}
._40{width:459.196159px;}
._32{width:473.247025px;}
._23{width:486.453833px;}
._3d{width:496.017929px;}
._25{width:501.397733px;}
._30{width:510.603175px;}
._26{width:516.341633px;}
._33{width:538.757483px;}
._22{width:546.289208px;}
._41{width:549.815999px;}
._35{width:553.701383px;}
._1d{width:561.233108px;}
._27{width:576.177008px;}
._24{width:591.120908px;}
._2f{width:606.061208px;}
._3f{width:609.424193px;}
._44{width:621.857518px;}
._3e{width:767.335291px;}
._43{width:782.279191px;}
._13{width:1774.029000px;}
._47{width:1960.658373px;}
._36{width:2024.614275px;}
._38{width:2045.064924px;}
._46{width:2455.665000px;}
._14{width:2479.575000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs13{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fs17{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs14{font-size:46.443600px;}
.fs9{font-size:47.337600px;}
.fsa{font-size:47.401200px;}
.fs5{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fs16{font-size:52.380000px;}
.fsc{font-size:53.460000px;}
.fs8{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fs15{font-size:58.316400px;}
.fsb{font-size:59.518800px;}
.fs1{font-size:59.775600px;}
.fsf{font-size:60.120000px;}
.fs7{font-size:62.286600px;}
.fsd{font-size:71.280000px;}
.fs6{font-size:71.731200px;}
.fs11{font-size:72.000000px;}
.fs12{font-size:90.000000px;}
.fs2{font-size:107.596800px;}
.y178{bottom:-628.235406px;}
.y177{bottom:-607.265550px;}
.y176{bottom:-607.265442px;}
.y175{bottom:-586.295586px;}
.y174{bottom:-565.235550px;}
.y173{bottom:-565.233906px;}
.y172{bottom:-544.264050px;}
.y22b{bottom:-525.334717px;}
.y171{bottom:-523.294194px;}
.y22a{bottom:-504.906482px;}
.y170{bottom:-502.234158px;}
.y229{bottom:-484.565721px;}
.y16f{bottom:-481.264302px;}
.y228{bottom:-464.224961px;}
.y16e{bottom:-460.294446px;}
.y227{bottom:-443.796726px;}
.y16d{bottom:-439.234410px;}
.y226{bottom:-423.455966px;}
.y16c{bottom:-418.264554px;}
.y225{bottom:-403.115205px;}
.y16b{bottom:-397.294698px;}
.y224{bottom:-382.686971px;}
.y16a{bottom:-376.234662px;}
.y223{bottom:-362.346210px;}
.y169{bottom:-355.264806px;}
.y222{bottom:-342.005450px;}
.y168{bottom:-334.294950px;}
.y221{bottom:-321.577215px;}
.y167{bottom:-313.234914px;}
.y220{bottom:-301.236455px;}
.y119{bottom:-295.989754px;}
.y166{bottom:-287.765076px;}
.y21f{bottom:-280.895694px;}
.y165{bottom:-266.795220px;}
.y21e{bottom:-260.467459px;}
.y21d{bottom:-240.126699px;}
.y164{bottom:-227.735256px;}
.y21c{bottom:-219.785939px;}
.y163{bottom:-206.765400px;}
.y21b{bottom:-199.357704px;}
.y21a{bottom:-179.016944px;}
.y162{bottom:-168.243750px;}
.y161{bottom:-147.183750px;}
.y118{bottom:-144.607072px;}
.y219{bottom:-141.650798px;}
.y160{bottom:-126.214200px;}
.y117{bottom:-123.847218px;}
.y218{bottom:-121.222598px;}
.y15f{bottom:-105.244650px;}
.y116{bottom:-102.997818px;}
.y217{bottom:-100.882134px;}
.y15e{bottom:-84.184650px;}
.y115{bottom:-82.237963px;}
.y216{bottom:-80.541671px;}
.y15d{bottom:-63.215100px;}
.y114{bottom:-61.478109px;}
.y215{bottom:-60.113471px;}
.y15c{bottom:-42.245550px;}
.y113{bottom:-40.628709px;}
.y214{bottom:-39.773007px;}
.y112{bottom:-19.868854px;}
.y213{bottom:-19.432544px;}
.y15b{bottom:-16.325550px;}
.y0{bottom:0.000000px;}
.y111{bottom:5.793041px;}
.y212{bottom:5.797645px;}
.y13d{bottom:5.837250px;}
.y45{bottom:45.921000px;}
.y27d{bottom:99.298500px;}
.y19{bottom:100.260000px;}
.y24c{bottom:101.302500px;}
.y235{bottom:103.242000px;}
.y14f{bottom:103.306500px;}
.y44{bottom:104.386500px;}
.y197{bottom:105.738000px;}
.y2af{bottom:105.961500px;}
.y18{bottom:118.147500px;}
.y27c{bottom:118.449000px;}
.y24b{bottom:121.323000px;}
.y196{bottom:123.900000px;}
.y234{bottom:124.134000px;}
.y14e{bottom:124.198500px;}
.y2ae{bottom:125.112000px;}
.y43{bottom:125.278500px;}
.y195{bottom:126.630000px;}
.y17{bottom:136.035000px;}
.y78{bottom:137.298000px;}
.y27b{bottom:137.599500px;}
.ya7{bottom:137.673000px;}
.y24a{bottom:141.345000px;}
.y2ad{bottom:144.262500px;}
.y233{bottom:145.024500px;}
.y14d{bottom:145.089000px;}
.y42{bottom:146.169000px;}
.y194{bottom:147.520500px;}
.y1f9{bottom:148.468500px;}
.y16{bottom:153.922500px;}
.y27a{bottom:156.750000px;}
.y1f6{bottom:157.434000px;}
.y77{bottom:158.190000px;}
.ya6{bottom:158.565000px;}
.y13c{bottom:158.749050px;}
.y249{bottom:161.365500px;}
.y2ac{bottom:163.413000px;}
.y14c{bottom:165.981000px;}
.y1f8{bottom:166.401000px;}
.y41{bottom:167.061000px;}
.y192{bottom:168.412500px;}
.y15{bottom:171.811500px;}
.y193{bottom:173.838000px;}
.y1f5{bottom:175.366500px;}
.y279{bottom:175.900500px;}
.y76{bottom:179.082000px;}
.ya5{bottom:179.457000px;}
.y13b{bottom:179.718600px;}
.y232{bottom:180.652500px;}
.y248{bottom:181.386000px;}
.y2ab{bottom:182.563500px;}
.y1f7{bottom:184.333500px;}
.yce{bottom:184.705500px;}
.y14b{bottom:186.873000px;}
.y191{bottom:189.304500px;}
.y14{bottom:189.699000px;}
.y40{bottom:192.436500px;}
.y278{bottom:195.051000px;}
.y231{bottom:199.885500px;}
.y75{bottom:199.972500px;}
.ya4{bottom:200.347500px;}
.y13a{bottom:200.778600px;}
.y2aa{bottom:201.714000px;}
.ycd{bottom:203.997000px;}
.y1c2{bottom:205.864500px;}
.y13{bottom:207.586500px;}
.y14a{bottom:207.765000px;}
.y1f4{bottom:209.469000px;}
.y18f{bottom:210.196500px;}
.y277{bottom:214.201500px;}
.y190{bottom:215.620500px;}
.yfc{bottom:216.106500px;}
.y230{bottom:219.118500px;}
.y247{bottom:219.340500px;}
.y74{bottom:220.864500px;}
.ya3{bottom:221.239500px;}
.y139{bottom:221.748150px;}
.ycc{bottom:221.929500px;}
.y12{bottom:225.475500px;}
.y149{bottom:228.655500px;}
.y1c1{bottom:231.000000px;}
.y18e{bottom:231.087000px;}
.y276{bottom:233.352000px;}
.y1f3{bottom:234.604500px;}
.yfb{bottom:236.998500px;}
.y22f{bottom:238.351500px;}
.ycb{bottom:239.862000px;}
.y1c0{bottom:239.965500px;}
.y2a9{bottom:240.015000px;}
.y246{bottom:240.232500px;}
.y73{bottom:241.756500px;}
.ya2{bottom:242.131500px;}
.y138{bottom:242.717700px;}
.y148{bottom:249.547500px;}
.y18d{bottom:251.979000px;}
.y11{bottom:252.330000px;}
.y1f2{bottom:252.537000px;}
.y1f1{bottom:252.973500px;}
.y275{bottom:256.986000px;}
.y22e{bottom:257.584500px;}
.yca{bottom:257.794500px;}
.yfa{bottom:257.890500px;}
.y2a8{bottom:259.165500px;}
.y245{bottom:261.123000px;}
.y72{bottom:262.647000px;}
.ya1{bottom:263.022000px;}
.y137{bottom:263.777700px;}
.y3f{bottom:267.589500px;}
.y10{bottom:270.217500px;}
.y147{bottom:270.439500px;}
.y18c{bottom:272.871000px;}
.y1bf{bottom:274.068000px;}
.yc9{bottom:275.728500px;}
.y22d{bottom:276.817500px;}
.y2a7{bottom:278.316000px;}
.yf9{bottom:278.782500px;}
.y244{bottom:282.015000px;}
.y1be{bottom:283.471500px;}
.y71{bottom:283.539000px;}
.ya0{bottom:283.914000px;}
.y136{bottom:284.747250px;}
.yf{bottom:288.105000px;}
.y3e{bottom:288.481500px;}
.y146{bottom:291.330000px;}
.yc8{bottom:293.661000px;}
.y18b{bottom:293.761500px;}
.y1f0{bottom:295.605000px;}
.y274{bottom:295.810500px;}
.y22c{bottom:296.050500px;}
.y2a6{bottom:297.466500px;}
.y15a{bottom:299.124450px;}
.y159{bottom:299.126250px;}
.yf8{bottom:299.673000px;}
.y243{bottom:302.907000px;}
.y70{bottom:304.431000px;}
.y9f{bottom:304.806000px;}
.ye{bottom:305.994000px;}
.y135{bottom:310.668357px;}
.yc7{bottom:311.593500px;}
.y145{bottom:312.222000px;}
.y1ef{bottom:313.537500px;}
.y18a{bottom:314.653500px;}
.y273{bottom:315.309000px;}
.y2a5{bottom:316.617000px;}
.y1bd{bottom:317.136000px;}
.y158{bottom:320.095800px;}
.yf7{bottom:320.565000px;}
.y209{bottom:321.468000px;}
.y1ec{bottom:322.941000px;}
.y242{bottom:323.797500px;}
.yd{bottom:323.881500px;}
.y6f{bottom:325.323000px;}
.y9e{bottom:325.696500px;}
.y3d{bottom:327.306000px;}
.yc6{bottom:329.526000px;}
.y1ee{bottom:331.470000px;}
.y272{bottom:334.809000px;}
.y1bc{bottom:335.068500px;}
.y189{bottom:335.545500px;}
.y2a4{bottom:335.767500px;}
.y157{bottom:341.065350px;}
.yf6{bottom:341.457000px;}
.yc{bottom:341.769000px;}
.y241{bottom:344.689500px;}
.y6e{bottom:346.213500px;}
.yc5{bottom:347.458500px;}
.y144{bottom:347.850000px;}
.y3c{bottom:348.198000px;}
.y1ed{bottom:349.402500px;}
.y9d{bottom:351.072000px;}
.y2b0{bottom:352.296000px;}
.y1bb{bottom:353.001000px;}
.y2a3{bottom:354.918000px;}
.y188{bottom:356.436000px;}
.yb{bottom:359.658000px;}
.y2b1{bottom:359.800500px;}
.y156{bottom:362.125350px;}
.yf5{bottom:362.347500px;}
.y271{bottom:363.273000px;}
.yc4{bottom:365.391000px;}
.y240{bottom:365.581500px;}
.y143{bottom:367.083000px;}
.y6d{bottom:367.105500px;}
.y3b{bottom:369.088500px;}
.y1ba{bottom:370.933500px;}
.y2a2{bottom:374.070000px;}
.y1eb{bottom:374.538000px;}
.y187{bottom:377.328000px;}
.ya{bottom:377.545500px;}
.y110{bottom:378.587557px;}
.y1b5{bottom:380.337000px;}
.y270{bottom:382.771500px;}
.y155{bottom:383.094900px;}
.yf4{bottom:383.239500px;}
.yc3{bottom:383.325000px;}
.y1ea{bottom:383.503500px;}
.y142{bottom:386.316000px;}
.y9c{bottom:386.413500px;}
.y23f{bottom:386.472000px;}
.y6c{bottom:387.997500px;}
.y1b9{bottom:388.866000px;}
.y3a{bottom:389.980500px;}
.y211{bottom:390.615906px;}
.y2a1{bottom:393.220500px;}
.y9{bottom:395.433000px;}
.y10f{bottom:399.436993px;}
.yc2{bottom:401.257500px;}
.y26f{bottom:402.271500px;}
.y186{bottom:402.703500px;}
.y154{bottom:404.064450px;}
.yf3{bottom:404.131500px;}
.y141{bottom:405.549000px;}
.y1b8{bottom:406.798500px;}
.y9b{bottom:407.305500px;}
.y23e{bottom:407.364000px;}
.y6b{bottom:408.888000px;}
.y1e9{bottom:410.403000px;}
.y39{bottom:410.872500px;}
.y210{bottom:410.956666px;}
.y2a0{bottom:412.371000px;}
.y8{bottom:413.322000px;}
.yc1{bottom:419.190000px;}
.y185{bottom:420.112500px;}
.y10e{bottom:420.197150px;}
.y26e{bottom:421.770000px;}
.y1b7{bottom:424.732500px;}
.y140{bottom:424.780500px;}
.yf2{bottom:425.022000px;}
.y153{bottom:425.124450px;}
.y9a{bottom:428.197500px;}
.y23d{bottom:428.256000px;}
.y1e8{bottom:428.335500px;}
.y6a{bottom:429.780000px;}
.y7{bottom:431.209500px;}
.y20f{bottom:431.384901px;}
.y29f{bottom:431.521500px;}
.y38{bottom:431.763000px;}
.yc0{bottom:437.122500px;}
.y10d{bottom:440.957308px;}
.y26d{bottom:441.268500px;}
.y1b6{bottom:442.665000px;}
.y13f{bottom:444.013500px;}
.yf1{bottom:445.914000px;}
.y1e1{bottom:446.011500px;}
.y1e7{bottom:446.268000px;}
.y99{bottom:449.089500px;}
.y6{bottom:449.097000px;}
.y23c{bottom:449.146500px;}
.y69{bottom:450.672000px;}
.y20e{bottom:451.725661px;}
.y37{bottom:452.655000px;}
.y1e3{bottom:455.235000px;}
.y184{bottom:455.455500px;}
.y26c{bottom:460.767000px;}
.y10c{bottom:461.806743px;}
.ybf{bottom:462.258000px;}
.y13e{bottom:463.246500px;}
.y1e6{bottom:464.202000px;}
.yf0{bottom:466.806000px;}
.y1b4{bottom:467.799000px;}
.y29e{bottom:469.822500px;}
.y98{bottom:469.980000px;}
.y23b{bottom:470.038500px;}
.y68{bottom:471.562500px;}
.y20d{bottom:472.066422px;}
.ybd{bottom:472.386000px;}
.y5{bottom:472.963500px;}
.y36{bottom:473.547000px;}
.y183{bottom:476.346000px;}
.y1b3{bottom:476.766000px;}
.y26b{bottom:480.265500px;}
.y152{bottom:481.734585px;}
.y1e5{bottom:482.134500px;}
.y10b{bottom:482.566901px;}
.ybe{bottom:487.393500px;}
.yef{bottom:487.696500px;}
.y121{bottom:488.665200px;}
.y29d{bottom:488.973000px;}
.y4{bottom:490.851000px;}
.y97{bottom:490.872000px;}
.y23a{bottom:490.930500px;}
.y151{bottom:491.364450px;}
.y67{bottom:492.454500px;}
.y20c{bottom:492.494657px;}
.y35{bottom:494.439000px;}
.y182{bottom:497.238000px;}
.y1e4{bottom:500.067000px;}
.y10a{bottom:503.327058px;}
.y1b2{bottom:503.665500px;}
.y29c{bottom:508.123500px;}
.yee{bottom:508.588500px;}
.y26a{bottom:508.731000px;}
.y3{bottom:508.738500px;}
.y96{bottom:511.764000px;}
.y239{bottom:511.822500px;}
.y1b1{bottom:512.631000px;}
.y66{bottom:513.346500px;}
.y34{bottom:515.329500px;}
.y1e2{bottom:517.999500px;}
.y181{bottom:518.130000px;}
.ybc{bottom:520.059000px;}
.y109{bottom:524.176494px;}
.y2{bottom:526.627500px;}
.y29b{bottom:527.274000px;}
.y269{bottom:528.229500px;}
.yed{bottom:529.480500px;}
.y95{bottom:532.654500px;}
.y238{bottom:532.713000px;}
.y65{bottom:534.237000px;}
.y33{bottom:536.221500px;}
.y180{bottom:539.020500px;}
.ybb{bottom:539.292000px;}
.y1b0{bottom:539.530500px;}
.y1e0{bottom:543.135000px;}
.y108{bottom:544.936651px;}
.y29a{bottom:546.424500px;}
.y20b{bottom:546.969987px;}
.y1af{bottom:548.497500px;}
.yec{bottom:550.372500px;}
.y1{bottom:550.492500px;}
.y1df{bottom:552.538500px;}
.y94{bottom:553.546500px;}
.y237{bottom:553.605000px;}
.y64{bottom:555.129000px;}
.y20a{bottom:556.310957px;}
.y268{bottom:556.695000px;}
.y32{bottom:557.113500px;}
.y299{bottom:565.575000px;}
.y107{bottom:565.696809px;}
.yeb{bottom:571.263000px;}
.y93{bottom:574.438500px;}
.y17f{bottom:574.648500px;}
.y1ae{bottom:575.397000px;}
.y63{bottom:576.021000px;}
.yba{bottom:576.396000px;}
.y31{bottom:578.004000px;}
.y236{bottom:578.979000px;}
.y1a6{bottom:584.106000px;}
.y298{bottom:584.725500px;}
.y267{bottom:585.160500px;}
.y1de{bottom:586.203000px;}
.y106{bottom:586.546244px;}
.ye9{bottom:592.155000px;}
.y1ac{bottom:593.329500px;}
.y17e{bottom:593.881500px;}
.y92{bottom:595.329000px;}
.y62{bottom:596.913000px;}
.yb9{bottom:597.286500px;}
.yea{bottom:597.579000px;}
.y30{bottom:598.896000px;}
.y297{bottom:603.876000px;}
.y1dd{bottom:604.135500px;}
.y1dc{bottom:604.572000px;}
.y266{bottom:604.659000px;}
.y105{bottom:607.306402px;}
.y1ad{bottom:611.262000px;}
.ye8{bottom:613.047000px;}
.y17d{bottom:613.114500px;}
.y91{bottom:616.221000px;}
.y61{bottom:617.803500px;}
.yb8{bottom:618.178500px;}
.y2f{bottom:619.788000px;}
.y296{bottom:623.026500px;}
.y265{bottom:624.157500px;}
.y104{bottom:628.066559px;}
.y1ab{bottom:629.194500px;}
.y17c{bottom:632.347500px;}
.ye7{bottom:633.937500px;}
.y8f{bottom:637.113000px;}
.y60{bottom:638.695500px;}
.yb7{bottom:639.070500px;}
.y2e{bottom:640.678500px;}
.y295{bottom:642.177000px;}
.y90{bottom:642.537000px;}
.y264{bottom:643.656000px;}
.y1aa{bottom:647.127000px;}
.y1db{bottom:647.203500px;}
.y103{bottom:648.915995px;}
.y17b{bottom:651.580500px;}
.y120{bottom:653.658000px;}
.y8e{bottom:658.003500px;}
.ye6{bottom:659.313000px;}
.y5f{bottom:659.587500px;}
.yb6{bottom:659.961000px;}
.y294{bottom:661.327500px;}
.y2d{bottom:661.570500px;}
.y263{bottom:663.154500px;}
.y1a9{bottom:665.059500px;}
.y102{bottom:669.676152px;}
.y17a{bottom:670.813500px;}
.y11f{bottom:672.891000px;}
.ye5{bottom:676.722000px;}
.y8d{bottom:678.895500px;}
.y5e{bottom:680.478000px;}
.yb5{bottom:680.853000px;}
.y2c{bottom:682.462500px;}
.y262{bottom:682.654500px;}
.y1da{bottom:682.857000px;}
.y1a7{bottom:682.993500px;}
.y134{bottom:687.228474px;}
.y179{bottom:690.046500px;}
.y101{bottom:690.436310px;}
.y11e{bottom:692.122500px;}
.y293{bottom:699.628500px;}
.y8c{bottom:699.787500px;}
.y1a8{bottom:700.926000px;}
.y5d{bottom:701.370000px;}
.yb4{bottom:701.745000px;}
.y1d9{bottom:702.090000px;}
.y261{bottom:702.153000px;}
.y133{bottom:708.288510px;}
.y100{bottom:711.285746px;}
.y11d{bottom:711.355500px;}
.ye4{bottom:712.065000px;}
.y150{bottom:715.464000px;}
.y292{bottom:718.779000px;}
.y208{bottom:719.797500px;}
.y8b{bottom:720.679500px;}
.y260{bottom:721.651500px;}
.y5c{bottom:722.262000px;}
.yb3{bottom:722.637000px;}
.y1a5{bottom:726.060000px;}
.y2b{bottom:726.822000px;}
.y132{bottom:729.258366px;}
.y11c{bottom:730.588500px;}
.ye3{bottom:732.955500px;}
.y291{bottom:737.929500px;}
.y2a{bottom:738.621000px;}
.y207{bottom:740.689500px;}
.y25f{bottom:741.150000px;}
.y8a{bottom:741.570000px;}
.y5b{bottom:743.152500px;}
.y1a4{bottom:743.994000px;}
.y1a3{bottom:744.430500px;}
.y1d8{bottom:747.117000px;}
.yb2{bottom:748.011000px;}
.y11b{bottom:749.821500px;}
.y131{bottom:750.228222px;}
.y2b4{bottom:752.350500px;}
.ye2{bottom:753.847500px;}
.y290{bottom:757.081500px;}
.y29{bottom:759.100500px;}
.y25e{bottom:760.648500px;}
.y206{bottom:761.580000px;}
.y89{bottom:762.462000px;}
.y5a{bottom:764.044500px;}
.y1d6{bottom:765.051000px;}
.yb1{bottom:765.420000px;}
.yff{bottom:766.884279px;}
.y11a{bottom:769.054500px;}
.y130{bottom:771.288258px;}
.y2b3{bottom:771.501000px;}
.ye1{bottom:774.739500px;}
.y28{bottom:775.240500px;}
.y28f{bottom:776.232000px;}
.yfe{bottom:776.417846px;}
.y205{bottom:782.472000px;}
.y1d7{bottom:782.983500px;}
.y88{bottom:783.354000px;}
.y59{bottom:784.936500px;}
.y27{bottom:787.039500px;}
.y1a2{bottom:787.060500px;}
.y25d{bottom:789.114000px;}
.yb0{bottom:789.852000px;}
.y2b2{bottom:790.651500px;}
.y12f{bottom:792.258114px;}
.yfd{bottom:794.472000px;}
.y28e{bottom:795.382500px;}
.ye0{bottom:795.631500px;}
.y204{bottom:803.364000px;}
.y87{bottom:804.244500px;}
.y1a1{bottom:804.994500px;}
.y58{bottom:805.827000px;}
.y26{bottom:807.519000px;}
.y1d5{bottom:808.117500px;}
.y25c{bottom:808.612500px;}
.y12e{bottom:813.227970px;}
.y28d{bottom:814.533000px;}
.ydf{bottom:816.522000px;}
.y1d4{bottom:817.521000px;}
.y25{bottom:819.319500px;}
.y1a0{bottom:822.927000px;}
.y203{bottom:824.254500px;}
.y86{bottom:825.136500px;}
.y57{bottom:826.719000px;}
.y25b{bottom:828.111000px;}
.yaf{bottom:828.676500px;}
.y19c{bottom:832.330500px;}
.y28c{bottom:833.683500px;}
.y12d{bottom:834.288006px;}
.y24{bottom:835.459500px;}
.y19f{bottom:840.859500px;}
.y202{bottom:845.146500px;}
.y85{bottom:846.028500px;}
.y25a{bottom:847.609500px;}
.y56{bottom:847.611000px;}
.yae{bottom:849.568500px;}
.y1d3{bottom:851.185500px;}
.y28b{bottom:852.834000px;}
.y12c{bottom:855.257862px;}
.y23{bottom:855.937500px;}
.yde{bottom:858.718500px;}
.y19e{bottom:858.792000px;}
.y201{bottom:866.038500px;}
.y84{bottom:866.919000px;}
.y259{bottom:867.109500px;}
.y22{bottom:867.738000px;}
.y19d{bottom:867.759000px;}
.y55{bottom:868.503000px;}
.yad{bottom:870.460500px;}
.y28a{bottom:871.984500px;}
.y12b{bottom:876.227718px;}
.y1d2{bottom:876.321000px;}
.ydd{bottom:878.010000px;}
.y21{bottom:883.878000px;}
.y258{bottom:886.608000px;}
.y200{bottom:886.930500px;}
.y82{bottom:887.811000px;}
.y54{bottom:889.393500px;}
.y289{bottom:891.135000px;}
.yac{bottom:891.351000px;}
.y83{bottom:893.235000px;}
.y1d1{bottom:894.253500px;}
.ydc{bottom:895.942500px;}
.y12a{bottom:897.287754px;}
.y19b{bottom:901.860000px;}
.y20{bottom:904.357500px;}
.y257{bottom:906.106500px;}
.y1ff{bottom:907.821000px;}
.y81{bottom:908.703000px;}
.y53{bottom:910.285500px;}
.y1d0{bottom:912.186000px;}
.yab{bottom:912.243000px;}
.ydb{bottom:913.875000px;}
.y129{bottom:918.257610px;}
.y1cc{bottom:920.865000px;}
.y288{bottom:929.436000px;}
.y80{bottom:929.593500px;}
.y1cf{bottom:930.120000px;}
.y52{bottom:931.177500px;}
.yda{bottom:931.807500px;}
.yaa{bottom:933.135000px;}
.y256{bottom:934.572000px;}
.y19a{bottom:937.515000px;}
.y128{bottom:939.227466px;}
.y1ce{bottom:948.052500px;}
.y287{bottom:948.586500px;}
.y1f{bottom:949.033500px;}
.yd9{bottom:949.741500px;}
.y7f{bottom:950.485500px;}
.y51{bottom:952.068000px;}
.ya9{bottom:954.025500px;}
.y255{bottom:954.070500px;}
.y199{bottom:956.748000px;}
.y1fe{bottom:958.782000px;}
.y127{bottom:960.287502px;}
.y1cd{bottom:965.985000px;}
.yd8{bottom:967.674000px;}
.y286{bottom:967.737000px;}
.y1fd{bottom:967.749000px;}
.y1e{bottom:969.925500px;}
.y7e{bottom:971.377500px;}
.y50{bottom:972.960000px;}
.y254{bottom:973.569000px;}
.ya8{bottom:979.401000px;}
.y126{bottom:981.257358px;}
.yd7{bottom:985.606500px;}
.y285{bottom:986.887500px;}
.y1cb{bottom:991.120500px;}
.y7d{bottom:992.269500px;}
.y253{bottom:993.067500px;}
.y4f{bottom:993.852000px;}
.y1fc{bottom:1001.850000px;}
.y125{bottom:1002.227214px;}
.yd6{bottom:1003.539000px;}
.y284{bottom:1006.038000px;}
.y1d{bottom:1008.748500px;}
.y1c9{bottom:1009.053000px;}
.y1fb{bottom:1011.253500px;}
.y252{bottom:1012.566000px;}
.y7c{bottom:1013.160000px;}
.y4e{bottom:1014.742500px;}
.yd5{bottom:1021.471500px;}
.y124{bottom:1023.287250px;}
.y283{bottom:1025.188500px;}
.y1ca{bottom:1026.985500px;}
.y1c5{bottom:1027.501500px;}
.y251{bottom:1032.064500px;}
.y4d{bottom:1035.634500px;}
.y7b{bottom:1038.535500px;}
.yd4{bottom:1039.404000px;}
.y1c{bottom:1040.086500px;}
.y282{bottom:1044.339000px;}
.y1c8{bottom:1044.918000px;}
.y1c4{bottom:1045.434000px;}
.y250{bottom:1051.564500px;}
.y7a{bottom:1055.944500px;}
.y4c{bottom:1056.526500px;}
.y1fa{bottom:1062.564000px;}
.y1c6{bottom:1062.850500px;}
.y281{bottom:1063.489500px;}
.yd3{bottom:1064.539500px;}
.y1b{bottom:1071.424500px;}
.yd1{bottom:1074.667500px;}
.y4b{bottom:1077.417000px;}
.y123{bottom:1079.447385px;}
.y24f{bottom:1080.028500px;}
.y79{bottom:1080.376500px;}
.y1c7{bottom:1080.784500px;}
.y280{bottom:1082.640000px;}
.y122{bottom:1089.077250px;}
.yd2{bottom:1089.675000px;}
.y49{bottom:1098.309000px;}
.y24e{bottom:1100.050500px;}
.y27f{bottom:1101.790500px;}
.y1a{bottom:1102.761000px;}
.y4a{bottom:1103.734500px;}
.y1c3{bottom:1105.918500px;}
.y48{bottom:1119.201000px;}
.y24d{bottom:1120.071000px;}
.y27e{bottom:1120.941000px;}
.yd0{bottom:1122.340500px;}
.y198{bottom:1137.363000px;}
.y47{bottom:1140.091500px;}
.ycf{bottom:1141.573500px;}
.y46{bottom:1200.196500px;}
.h2a{height:27.729727px;}
.h10{height:30.106714px;}
.h7{height:32.565965px;}
.h1f{height:33.486328px;}
.h2b{height:37.551283px;}
.h2{height:37.993262px;}
.h24{height:39.488026px;}
.hb{height:39.614278px;}
.h1c{height:40.070215px;}
.hc{height:41.250077px;}
.hd{height:41.723369px;}
.h27{height:43.200712px;}
.hf{height:43.217759px;}
.h8{height:43.421105px;}
.h1e{height:43.622227px;}
.h3{height:43.875290px;}
.h12{height:44.091448px;}
.h17{height:44.536816px;}
.h29{height:48.722607px;}
.he{height:48.848947px;}
.h15{height:49.492266px;}
.h14{height:49.727197px;}
.h1a{height:49.992188px;}
.h19{height:50.229492px;}
.ha{height:51.861658px;}
.h28{height:54.244503px;}
.h9{height:54.276245px;}
.h6{height:54.541601px;}
.h13{height:55.362946px;}
.h18{height:55.922168px;}
.h1d{height:59.985352px;}
.h4{height:77.792486px;}
.h5{height:78.115277px;}
.h23{height:88.392245px;}
.h25{height:88.398245px;}
.h20{height:90.138245px;}
.h22{height:90.144245px;}
.h21{height:124.260245px;}
.h16{height:139.795800px;}
.h1b{height:275.638500px;}
.h11{height:360.562455px;}
.h26{height:374.688690px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:708.443250px;}
.w3{width:732.612600px;}
.w2{width:766.908648px;}
.w5{width:769.257627px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7f{left:-43.452750px;}
.x74{left:-5.332932px;}
.x0{left:0.000000px;}
.x7a{left:4.073100px;}
.x1{left:53.574000px;}
.xab{left:61.614918px;}
.x73{left:62.788797px;}
.x92{left:76.297500px;}
.x79{left:79.938900px;}
.xb3{left:85.848000px;}
.x7e{left:92.022750px;}
.x93{left:113.217000px;}
.x95{left:126.673500px;}
.xa5{left:127.996500px;}
.x9f{left:129.327000px;}
.xa2{left:132.726000px;}
.xa0{left:134.377500px;}
.x97{left:138.453000px;}
.xa6{left:142.566000px;}
.x80{left:152.117250px;}
.xb4{left:170.698500px;}
.x82{left:183.977250px;}
.x76{left:188.281473px;}
.xac{left:193.653807px;}
.x7c{left:199.643206px;}
.x75{left:219.822768px;}
.xad{left:224.558007px;}
.xb6{left:226.321500px;}
.x7b{left:231.503100px;}
.xb7{left:235.231500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x8c{left:264.145500px;}
.x3{left:269.484000px;}
.x8d{left:274.045500px;}
.x63{left:277.588500px;}
.x5{left:281.479500px;}
.x6b{left:285.262500px;}
.x66{left:289.410000px;}
.x68{left:290.448000px;}
.x24{left:292.380000px;}
.x67{left:294.184500px;}
.x9b{left:296.902500px;}
.x6d{left:297.919500px;}
.x3c{left:299.979000px;}
.x20{left:301.081500px;}
.x9d{left:304.731000px;}
.x96{left:306.255000px;}
.x25{left:307.324500px;}
.x3d{left:309.208500px;}
.xa4{left:310.543500px;}
.x58{left:312.003000px;}
.x9e{left:313.443000px;}
.x53{left:314.887500px;}
.x21{left:316.026000px;}
.xa3{left:317.052000px;}
.x54{left:318.559500px;}
.x33{left:319.807500px;}
.x4b{left:322.834500px;}
.x3b{left:324.420000px;}
.xb8{left:325.836000px;}
.x59{left:326.946000px;}
.x5a{left:330.690000px;}
.x34{left:332.088000px;}
.x55{left:333.504000px;}
.x89{left:336.967500px;}
.x4e{left:343.056000px;}
.x5b{left:345.634500px;}
.x5c{left:349.377000px;}
.x4f{left:358.000500px;}
.x69{left:362.688000px;}
.x5d{left:364.321500px;}
.x22{left:370.438500px;}
.x35{left:371.917500px;}
.x23{left:377.910000px;}
.x36{left:386.862000px;}
.x14{left:406.789500px;}
.x2f{left:409.521000px;}
.xb5{left:410.911500px;}
.x65{left:412.872000px;}
.x15{left:414.262500px;}
.x6e{left:416.466000px;}
.x10{left:417.705000px;}
.x30{left:424.465500px;}
.x6f{left:428.590500px;}
.x11{left:429.996000px;}
.x12{left:445.239000px;}
.x8a{left:451.986000px;}
.x13{left:455.721000px;}
.x8b{left:461.886000px;}
.x43{left:480.703500px;}
.x8e{left:492.048000px;}
.x44{left:495.648000px;}
.x26{left:506.623500px;}
.x90{left:509.581500px;}
.x64{left:511.866000px;}
.x27{left:521.568000px;}
.x91{left:524.526000px;}
.x8f{left:529.944000px;}
.x84{left:536.147250px;}
.x6c{left:537.273000px;}
.x1a{left:546.046500px;}
.x1b{left:553.519500px;}
.x1c{left:554.875500px;}
.xa{left:560.836500px;}
.x1d{left:562.347000px;}
.x81{left:564.407250px;}
.x1e{left:566.157000px;}
.xb{left:568.309500px;}
.x70{left:570.738000px;}
.x1f{left:573.630000px;}
.x5e{left:575.104500px;}
.x50{left:578.142000px;}
.x51{left:581.953500px;}
.xa1{left:583.621500px;}
.x71{left:585.681000px;}
.x9a{left:588.358500px;}
.xa9{left:591.123000px;}
.x56{left:593.160000px;}
.xaa{left:594.253500px;}
.x52{left:596.898000px;}
.xa8{left:599.634000px;}
.x88{left:600.693000px;}
.x6a{left:601.942500px;}
.xa7{left:604.767000px;}
.x31{left:605.877000px;}
.x61{left:607.084500px;}
.x57{left:608.104500px;}
.xae{left:609.781500px;}
.x98{left:614.383500px;}
.x16{left:618.292500px;}
.x32{left:620.821500px;}
.x62{left:623.040000px;}
.x99{left:624.612000px;}
.x17{left:625.765500px;}
.x18{left:629.575500px;}
.x9c{left:631.188000px;}
.x94{left:633.331500px;}
.x47{left:635.320500px;}
.x19{left:637.047000px;}
.x85{left:640.389000px;}
.x6{left:645.070500px;}
.x48{left:650.263500px;}
.x7{left:652.542000px;}
.x8{left:656.353500px;}
.x2c{left:660.943500px;}
.x9{left:663.825000px;}
.x42{left:670.933500px;}
.xc{left:673.159500px;}
.x2d{left:675.888000px;}
.xd{left:680.631000px;}
.xe{left:684.441000px;}
.x40{left:689.277000px;}
.xf{left:691.914000px;}
.x2e{left:695.046000px;}
.x72{left:705.735000px;}
.x78{left:710.852868px;}
.x45{left:712.449000px;}
.x83{left:714.527100px;}
.x4c{left:720.424500px;}
.x3e{left:723.673500px;}
.xb2{left:725.611500px;}
.x46{left:727.393500px;}
.x4d{left:735.369000px;}
.x3f{left:737.941500px;}
.x41{left:740.155500px;}
.x37{left:742.278000px;}
.x38{left:754.569000px;}
.x5f{left:756.040500px;}
.x77{left:761.990656px;}
.x60{left:765.271500px;}
.x7d{left:779.147431px;}
.x2a{left:784.746000px;}
.x49{left:787.936500px;}
.x39{left:791.248500px;}
.x3a{left:800.479500px;}
.x2b{left:801.870000px;}
.x4a{left:802.881000px;}
.x86{left:807.693000px;}
.x87{left:811.842000px;}
.xaf{left:815.082000px;}
.x28{left:817.837500px;}
.xb0{left:818.893500px;}
.x29{left:832.782000px;}
.xb1{left:833.838000px;}
@media print{
.v4{vertical-align:-47.466667pt;}
.v2{vertical-align:-15.434667pt;}
.v3{vertical-align:-10.624000pt;}
.v7{vertical-align:-9.728000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v8{vertical-align:30.325333pt;}
.v5{vertical-align:31.877333pt;}
.v6{vertical-align:62.208000pt;}
.v9{vertical-align:81.498667pt;}
.ls6e{letter-spacing:-0.288576pt;}
.ls55{letter-spacing:-0.285690pt;}
.ls6c{letter-spacing:-0.272544pt;}
.ls53{letter-spacing:-0.269819pt;}
.lscb{letter-spacing:-0.259184pt;}
.ls6a{letter-spacing:-0.235136pt;}
.ls51{letter-spacing:-0.232785pt;}
.ls97{letter-spacing:-0.219104pt;}
.lsc8{letter-spacing:-0.212531pt;}
.ls74{letter-spacing:-0.208416pt;}
.ls5b{letter-spacing:-0.206332pt;}
.lsd2{letter-spacing:-0.202164pt;}
.ls76{letter-spacing:-0.192384pt;}
.ls5d{letter-spacing:-0.190460pt;}
.ls98{letter-spacing:-0.187040pt;}
.lsce{letter-spacing:-0.176245pt;}
.lscc{letter-spacing:-0.160694pt;}
.ls73{letter-spacing:-0.138944pt;}
.ls5a{letter-spacing:-0.137555pt;}
.ls77{letter-spacing:-0.133600pt;}
.ls5e{letter-spacing:-0.132264pt;}
.lsd1{letter-spacing:-0.119225pt;}
.lsca{letter-spacing:-0.114041pt;}
.lsc2{letter-spacing:-0.108857pt;}
.ls9a{letter-spacing:-0.106880pt;}
.lsc0{letter-spacing:-0.102432pt;}
.ls72{letter-spacing:-0.096192pt;}
.ls59{letter-spacing:-0.095230pt;}
.lsc1{letter-spacing:-0.093120pt;}
.ls7f{letter-spacing:-0.090848pt;}
.ls66{letter-spacing:-0.089940pt;}
.ls95{letter-spacing:-0.085504pt;}
.ls75{letter-spacing:-0.080160pt;}
.ls5c{letter-spacing:-0.079358pt;}
.ls7b{letter-spacing:-0.069472pt;}
.ls62{letter-spacing:-0.068777pt;}
.lsc4{letter-spacing:-0.067388pt;}
.ls7d{letter-spacing:-0.064128pt;}
.ls64{letter-spacing:-0.063487pt;}
.lsc7{letter-spacing:-0.062204pt;}
.ls79{letter-spacing:-0.058784pt;}
.ls60{letter-spacing:-0.058196pt;}
.ls91{letter-spacing:-0.057600pt;}
.lsd0{letter-spacing:-0.057020pt;}
.ls9c{letter-spacing:-0.053440pt;}
.ls9b{letter-spacing:-0.051200pt;}
.ls7a{letter-spacing:-0.048096pt;}
.ls61{letter-spacing:-0.047615pt;}
.ls78{letter-spacing:-0.042752pt;}
.ls5f{letter-spacing:-0.042324pt;}
.ls68{letter-spacing:-0.037408pt;}
.ls4f{letter-spacing:-0.037034pt;}
.lsbe{letter-spacing:-0.036286pt;}
.ls6f{letter-spacing:-0.032064pt;}
.ls56{letter-spacing:-0.031743pt;}
.lsc6{letter-spacing:-0.031102pt;}
.ls8f{letter-spacing:-0.028800pt;}
.ls70{letter-spacing:-0.026720pt;}
.ls57{letter-spacing:-0.026453pt;}
.lscf{letter-spacing:-0.025918pt;}
.ls92{letter-spacing:-0.024000pt;}
.ls71{letter-spacing:-0.021376pt;}
.ls58{letter-spacing:-0.021162pt;}
.lsbc{letter-spacing:-0.020735pt;}
.ls67{letter-spacing:-0.016032pt;}
.ls4e{letter-spacing:-0.015872pt;}
.lsc5{letter-spacing:-0.015551pt;}
.ls93{letter-spacing:-0.014400pt;}
.ls96{letter-spacing:-0.010688pt;}
.lsbf{letter-spacing:-0.010367pt;}
.ls7c{letter-spacing:-0.005344pt;}
.ls63{letter-spacing:-0.005291pt;}
.lsbd{letter-spacing:-0.005184pt;}
.ls90{letter-spacing:-0.004800pt;}
.ls8{letter-spacing:0.000000pt;}
.lse3{letter-spacing:0.000711pt;}
.lsdb{letter-spacing:0.001723pt;}
.lsbb{letter-spacing:0.002294pt;}
.lse0{letter-spacing:0.002703pt;}
.lsd7{letter-spacing:0.003071pt;}
.ls83{letter-spacing:0.004800pt;}
.lsa2{letter-spacing:0.005184pt;}
.ls21{letter-spacing:0.005291pt;}
.ls39{letter-spacing:0.005344pt;}
.ls84{letter-spacing:0.009600pt;}
.lsba{letter-spacing:0.010367pt;}
.ls89{letter-spacing:0.010688pt;}
.lsa8{letter-spacing:0.013968pt;}
.ls2b{letter-spacing:0.014256pt;}
.ls43{letter-spacing:0.014400pt;}
.lsa7{letter-spacing:0.015551pt;}
.ls86{letter-spacing:0.016032pt;}
.lsb0{letter-spacing:0.018624pt;}
.ls30{letter-spacing:0.019008pt;}
.ls48{letter-spacing:0.019200pt;}
.lsa5{letter-spacing:0.020735pt;}
.ls1e{letter-spacing:0.021162pt;}
.ls36{letter-spacing:0.021376pt;}
.lsb2{letter-spacing:0.023280pt;}
.ls81{letter-spacing:0.024000pt;}
.lsa3{letter-spacing:0.025918pt;}
.ls87{letter-spacing:0.026720pt;}
.lsa9{letter-spacing:0.027936pt;}
.ls80{letter-spacing:0.028800pt;}
.lsa1{letter-spacing:0.031102pt;}
.ls8d{letter-spacing:0.032064pt;}
.lsb1{letter-spacing:0.032592pt;}
.ls27{letter-spacing:0.033264pt;}
.ls3f{letter-spacing:0.033600pt;}
.lsb5{letter-spacing:0.036286pt;}
.ls24{letter-spacing:0.037034pt;}
.ls9d{letter-spacing:0.037155pt;}
.lsac{letter-spacing:0.037248pt;}
.ls3c{letter-spacing:0.037408pt;}
.ls1a{letter-spacing:0.037921pt;}
.ls28{letter-spacing:0.038016pt;}
.ls32{letter-spacing:0.038304pt;}
.ls40{letter-spacing:0.038400pt;}
.lsb3{letter-spacing:0.041469pt;}
.ls22{letter-spacing:0.042324pt;}
.ls3a{letter-spacing:0.042752pt;}
.ls2a{letter-spacing:0.042768pt;}
.ls42{letter-spacing:0.043200pt;}
.ls9f{letter-spacing:0.045412pt;}
.ls1c{letter-spacing:0.046348pt;}
.lsab{letter-spacing:0.046560pt;}
.ls34{letter-spacing:0.046816pt;}
.ls2c{letter-spacing:0.047520pt;}
.ls25{letter-spacing:0.047615pt;}
.ls44{letter-spacing:0.048000pt;}
.ls3d{letter-spacing:0.048096pt;}
.lsad{letter-spacing:0.051216pt;}
.lsb4{letter-spacing:0.051837pt;}
.ls2f{letter-spacing:0.052272pt;}
.ls47{letter-spacing:0.052800pt;}
.ls26{letter-spacing:0.052906pt;}
.ls3e{letter-spacing:0.053440pt;}
.lsaa{letter-spacing:0.055872pt;}
.lsb6{letter-spacing:0.057020pt;}
.ls31{letter-spacing:0.057024pt;}
.ls49{letter-spacing:0.057600pt;}
.ls8b{letter-spacing:0.058784pt;}
.lsaf{letter-spacing:0.060528pt;}
.ls29{letter-spacing:0.061776pt;}
.lsb7{letter-spacing:0.062204pt;}
.ls41{letter-spacing:0.062400pt;}
.ls23{letter-spacing:0.063487pt;}
.ls3b{letter-spacing:0.064128pt;}
.ls2e{letter-spacing:0.066528pt;}
.ls46{letter-spacing:0.067200pt;}
.lsa6{letter-spacing:0.067388pt;}
.ls65{letter-spacing:0.068777pt;}
.ls7e{letter-spacing:0.069472pt;}
.lsb8{letter-spacing:0.072572pt;}
.ls8c{letter-spacing:0.074816pt;}
.ls94{letter-spacing:0.080160pt;}
.lscd{letter-spacing:0.082939pt;}
.ls82{letter-spacing:0.086400pt;}
.ls1f{letter-spacing:0.089940pt;}
.ls37{letter-spacing:0.090848pt;}
.lsc9{letter-spacing:0.098490pt;}
.ls50{letter-spacing:0.100521pt;}
.ls69{letter-spacing:0.101536pt;}
.lsb9{letter-spacing:0.103674pt;}
.ls20{letter-spacing:0.105811pt;}
.ls38{letter-spacing:0.106880pt;}
.ls2d{letter-spacing:0.109296pt;}
.ls45{letter-spacing:0.110400pt;}
.ls85{letter-spacing:0.117568pt;}
.lsae{letter-spacing:0.121056pt;}
.ls99{letter-spacing:0.133600pt;}
.ls8a{letter-spacing:0.138944pt;}
.ls54{letter-spacing:0.153426pt;}
.ls6d{letter-spacing:0.154976pt;}
.lsa4{letter-spacing:0.155510pt;}
.ls1d{letter-spacing:0.155897pt;}
.lsa0{letter-spacing:0.156876pt;}
.ls35{letter-spacing:0.157472pt;}
.ls9e{letter-spacing:0.165133pt;}
.lsc3{letter-spacing:0.165878pt;}
.ls1b{letter-spacing:0.168538pt;}
.ls52{letter-spacing:0.169298pt;}
.ls33{letter-spacing:0.170240pt;}
.ls6b{letter-spacing:0.171008pt;}
.ls88{letter-spacing:0.219104pt;}
.ls1{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls0{letter-spacing:7.437600pt;}
.ls7{letter-spacing:10.626533pt;}
.lsd6{letter-spacing:11.675085pt;}
.lse6{letter-spacing:11.701943pt;}
.lsdf{letter-spacing:11.811434pt;}
.lsea{letter-spacing:11.839266pt;}
.lsd8{letter-spacing:11.945454pt;}
.lsd5{letter-spacing:11.954133pt;}
.lsd9{letter-spacing:11.959467pt;}
.lsdc{letter-spacing:12.036727pt;}
.lse1{letter-spacing:12.120835pt;}
.lsb{letter-spacing:12.136941pt;}
.lsa{letter-spacing:12.142384pt;}
.ls4c{letter-spacing:12.260113pt;}
.lsdd{letter-spacing:12.353297pt;}
.ls9{letter-spacing:12.425377pt;}
.lse9{letter-spacing:12.844800pt;}
.lsd3{letter-spacing:13.079634pt;}
.lse{letter-spacing:13.109696pt;}
.ls4a{letter-spacing:13.168821pt;}
.ls4b{letter-spacing:13.174050pt;}
.ls16{letter-spacing:13.184507pt;}
.ls15{letter-spacing:13.189736pt;}
.ls4d{letter-spacing:13.208250pt;}
.ls14{letter-spacing:13.231566pt;}
.lsd{letter-spacing:13.261022pt;}
.lsc{letter-spacing:13.266334pt;}
.ls17{letter-spacing:13.308384pt;}
.ls18{letter-spacing:13.313728pt;}
.lsd4{letter-spacing:13.334959pt;}
.ls8e{letter-spacing:13.389734pt;}
.ls13{letter-spacing:13.442868pt;}
.lse2{letter-spacing:13.754604pt;}
.lsf{letter-spacing:14.214573pt;}
.lse5{letter-spacing:14.564528pt;}
.lsde{letter-spacing:14.706222pt;}
.lsda{letter-spacing:14.823467pt;}
.lse8{letter-spacing:14.828800pt;}
.lse4{letter-spacing:15.114188pt;}
.ls10{letter-spacing:15.887775pt;}
.lse7{letter-spacing:16.473558pt;}
.ls11{letter-spacing:16.604115pt;}
.ls12{letter-spacing:19.765798pt;}
.ls19{letter-spacing:20.350271pt;}
.ls3{letter-spacing:55.681067pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:55.926400pt;}
.ls5{letter-spacing:57.174803pt;}
.ws108{word-spacing:-53.440000pt;}
.ws1c4{word-spacing:-51.836800pt;}
.ws101{word-spacing:-48.000000pt;}
.ws173{word-spacing:-42.077867pt;}
.ws89{word-spacing:-13.531008pt;}
.ws8a{word-spacing:-13.514976pt;}
.ws109{word-spacing:-13.493600pt;}
.ws88{word-spacing:-13.461536pt;}
.ws103{word-spacing:-13.450848pt;}
.ws8f{word-spacing:-13.424128pt;}
.ws105{word-spacing:-13.408096pt;}
.ws77{word-spacing:-13.395698pt;}
.ws78{word-spacing:-13.379826pt;}
.ws8e{word-spacing:-13.360000pt;}
.ws76{word-spacing:-13.326921pt;}
.ws8d{word-spacing:-13.311904pt;}
.ws7d{word-spacing:-13.289887pt;}
.ws4c{word-spacing:-13.283467pt;}
.ws107{word-spacing:-13.279840pt;}
.ws7c{word-spacing:-13.226400pt;}
.ws7b{word-spacing:-13.178785pt;}
.ws106{word-spacing:-13.172960pt;}
.ws104{word-spacing:-13.167616pt;}
.ws8c{word-spacing:-13.151584pt;}
.ws1bc{word-spacing:-13.125078pt;}
.ws1be{word-spacing:-13.057690pt;}
.ws1c1{word-spacing:-13.021404pt;}
.ws7a{word-spacing:-13.020068pt;}
.ws1b8{word-spacing:-12.985118pt;}
.ws1b9{word-spacing:-12.964384pt;}
.ws1bf{word-spacing:-12.928098pt;}
.ws1bd{word-spacing:-12.891812pt;}
.ws1c2{word-spacing:-12.782955pt;}
.wse{word-spacing:-12.760670pt;}
.ws1c3{word-spacing:-12.757036pt;}
.ws1c0{word-spacing:-12.700016pt;}
.ws91{word-spacing:-12.000000pt;}
.ws102{word-spacing:-11.976000pt;}
.ws100{word-spacing:-11.971200pt;}
.ws83{word-spacing:-11.955200pt;}
.ws7f{word-spacing:-11.880000pt;}
.ws1bb{word-spacing:-11.640000pt;}
.ws86{word-spacing:-10.810240pt;}
.ws74{word-spacing:-10.702138pt;}
.ws87{word-spacing:-10.640000pt;}
.ws11{word-spacing:-10.626800pt;}
.ws75{word-spacing:-10.533600pt;}
.ws1b5{word-spacing:-10.485933pt;}
.ws1b6{word-spacing:-10.320800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws10a{word-spacing:-7.948800pt;}
.ws44{word-spacing:-3.134898pt;}
.ws12a{word-spacing:-3.086400pt;}
.ws13{word-spacing:-2.816095pt;}
.ws129{word-spacing:-2.803200pt;}
.ws141{word-spacing:-2.779200pt;}
.ws128{word-spacing:-2.769600pt;}
.ws13f{word-spacing:-2.745600pt;}
.ws140{word-spacing:-2.702400pt;}
.ws11d{word-spacing:-2.656693pt;}
.ws12{word-spacing:-2.431693pt;}
.ws1ef{word-spacing:-2.431146pt;}
.ws1ee{word-spacing:-2.394860pt;}
.ws1c6{word-spacing:-2.295398pt;}
.ws1fa{word-spacing:-2.291187pt;}
.ws1fb{word-spacing:-2.286003pt;}
.ws168{word-spacing:-2.231622pt;}
.ws241{word-spacing:-2.199757pt;}
.ws151{word-spacing:-2.180352pt;}
.ws4d{word-spacing:-2.178489pt;}
.ws150{word-spacing:-2.142944pt;}
.wsd1{word-spacing:-2.137600pt;}
.wsa2{word-spacing:-2.116224pt;}
.ws165{word-spacing:-2.100192pt;}
.wsa3{word-spacing:-2.095062pt;}
.ws166{word-spacing:-2.089504pt;}
.ws237{word-spacing:-2.056294pt;}
.ws238{word-spacing:-2.008474pt;}
.ws22c{word-spacing:-1.960653pt;}
.ws152{word-spacing:-1.934528pt;}
.ws1c7{word-spacing:-1.912832pt;}
.ws3{word-spacing:-1.865206pt;}
.ws5{word-spacing:-1.862058pt;}
.ws3c{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws2{word-spacing:-1.857709pt;}
.ws137{word-spacing:-1.766400pt;}
.ws22e{word-spacing:-1.673728pt;}
.ws120{word-spacing:-1.594016pt;}
.ws167{word-spacing:-1.549760pt;}
.ws5d{word-spacing:-1.540882pt;}
.ws130{word-spacing:-1.492800pt;}
.ws131{word-spacing:-1.483200pt;}
.ws269{word-spacing:-1.482445pt;}
.ws13c{word-spacing:-1.478400pt;}
.ws132{word-spacing:-1.473600pt;}
.ws138{word-spacing:-1.468800pt;}
.ws13d{word-spacing:-1.459200pt;}
.ws266{word-spacing:-1.458538pt;}
.ws268{word-spacing:-1.454032pt;}
.ws139{word-spacing:-1.444800pt;}
.ws267{word-spacing:-1.434624pt;}
.ws21c{word-spacing:-1.434614pt;}
.ws13e{word-spacing:-1.411200pt;}
.ws20f{word-spacing:-1.381481pt;}
.ws57{word-spacing:-1.328347pt;}
.ws26{word-spacing:-1.275213pt;}
.ws121{word-spacing:-1.222079pt;}
.ws15f{word-spacing:-1.207744pt;}
.ws12d{word-spacing:-1.171200pt;}
.ws53{word-spacing:-1.169137pt;}
.ws1c{word-spacing:-1.168945pt;}
.wsfa{word-spacing:-1.166400pt;}
.ws15e{word-spacing:-1.164992pt;}
.ws201{word-spacing:-1.161144pt;}
.wscc{word-spacing:-1.154736pt;}
.ws12f{word-spacing:-1.152000pt;}
.wsf9{word-spacing:-1.147200pt;}
.wscb{word-spacing:-1.135728pt;}
.ws200{word-spacing:-1.135226pt;}
.wsde{word-spacing:-1.116896pt;}
.ws3d{word-spacing:-1.115811pt;}
.ws12e{word-spacing:-1.113600pt;}
.wsb0{word-spacing:-1.105727pt;}
.ws21{word-spacing:-1.062677pt;}
.ws24{word-spacing:-1.046908pt;}
.ws20{word-spacing:-1.045254pt;}
.ws1f{word-spacing:-1.044468pt;}
.ws98{word-spacing:-1.044127pt;}
.ws23{word-spacing:-1.044092pt;}
.ws25{word-spacing:-1.040374pt;}
.ws19{word-spacing:-1.009543pt;}
.ws1e{word-spacing:-0.963179pt;}
.ws1d{word-spacing:-0.956410pt;}
.wseb{word-spacing:-0.929856pt;}
.wsbd{word-spacing:-0.920557pt;}
.ws18{word-spacing:-0.903276pt;}
.ws14b{word-spacing:-0.897792pt;}
.ws235{word-spacing:-0.860774pt;}
.ws21a{word-spacing:-0.850142pt;}
.wse1{word-spacing:-0.833664pt;}
.wsb3{word-spacing:-0.825327pt;}
.ws10d{word-spacing:-0.765133pt;}
.ws10e{word-spacing:-0.755569pt;}
.ws17{word-spacing:-0.743874pt;}
.wse0{word-spacing:-0.742816pt;}
.wsdd{word-spacing:-0.737472pt;}
.wsb2{word-spacing:-0.735388pt;}
.wsaf{word-spacing:-0.730097pt;}
.ws110{word-spacing:-0.717312pt;}
.wsdf{word-spacing:-0.684032pt;}
.wsb1{word-spacing:-0.677192pt;}
.ws111{word-spacing:-0.621670pt;}
.wsea{word-spacing:-0.603872pt;}
.wsbc{word-spacing:-0.597833pt;}
.ws112{word-spacing:-0.573850pt;}
.ws10f{word-spacing:-0.526029pt;}
.ws26a{word-spacing:-0.382566pt;}
.ws52{word-spacing:-0.371937pt;}
.ws147{word-spacing:-0.352704pt;}
.ws228{word-spacing:-0.334746pt;}
.ws3f{word-spacing:-0.318803pt;}
.ws23c{word-spacing:-0.310490pt;}
.wsed{word-spacing:-0.304608pt;}
.wsbf{word-spacing:-0.301562pt;}
.ws229{word-spacing:-0.286925pt;}
.ws2c{word-spacing:-0.265669pt;}
.ws10{word-spacing:-0.255043pt;}
.wsce{word-spacing:-0.246848pt;}
.ws9f{word-spacing:-0.244380pt;}
.ws1d6{word-spacing:-0.243633pt;}
.ws1cb{word-spacing:-0.239443pt;}
.ws85{word-spacing:-0.239104pt;}
.ws1f2{word-spacing:-0.233266pt;}
.ws146{word-spacing:-0.229792pt;}
.ws2e{word-spacing:-0.212535pt;}
.ws1f1{word-spacing:-0.207347pt;}
.ws216{word-spacing:-0.205756pt;}
.ws1df{word-spacing:-0.204864pt;}
.ws1dd{word-spacing:-0.200208pt;}
.ws1f0{word-spacing:-0.196980pt;}
.ws71{word-spacing:-0.196431pt;}
.ws72{word-spacing:-0.194479pt;}
.ws81{word-spacing:-0.191283pt;}
.ws1de{word-spacing:-0.186240pt;}
.ws1ca{word-spacing:-0.170790pt;}
.wsec{word-spacing:-0.165664pt;}
.wsbe{word-spacing:-0.164007pt;}
.ws40{word-spacing:-0.159402pt;}
.ws245{word-spacing:-0.154148pt;}
.ws80{word-spacing:-0.143462pt;}
.wscf{word-spacing:-0.123424pt;}
.wsa0{word-spacing:-0.122190pt;}
.ws1cc{word-spacing:-0.119721pt;}
.ws20e{word-spacing:-0.109887pt;}
.ws36{word-spacing:-0.106268pt;}
.ws23b{word-spacing:-0.095642pt;}
.ws99{word-spacing:-0.088224pt;}
.ws58{word-spacing:-0.083904pt;}
.ws5f{word-spacing:-0.079499pt;}
.ws25e{word-spacing:-0.075553pt;}
.ws8b{word-spacing:-0.053440pt;}
.ws34{word-spacing:-0.053134pt;}
.ws79{word-spacing:-0.052906pt;}
.ws1b7{word-spacing:-0.051837pt;}
.ws90{word-spacing:-0.048000pt;}
.ws23e{word-spacing:-0.047895pt;}
.ws5e{word-spacing:-0.047821pt;}
.ws7e{word-spacing:-0.047520pt;}
.ws1ba{word-spacing:-0.046560pt;}
.ws54{word-spacing:-0.042424pt;}
.ws262{word-spacing:-0.038320pt;}
.ws244{word-spacing:-0.022753pt;}
.ws278{word-spacing:-0.006921pt;}
.ws279{word-spacing:-0.006161pt;}
.ws259{word-spacing:-0.006050pt;}
.ws258{word-spacing:-0.005999pt;}
.ws277{word-spacing:-0.005845pt;}
.ws249{word-spacing:-0.005538pt;}
.ws2f{word-spacing:-0.004369pt;}
.ws243{word-spacing:-0.003311pt;}
.ws246{word-spacing:-0.003081pt;}
.ws26d{word-spacing:-0.002935pt;}
.ws264{word-spacing:-0.002825pt;}
.ws73{word-spacing:-0.002647pt;}
.ws253{word-spacing:-0.002142pt;}
.wsa{word-spacing:-0.001600pt;}
.ws8{word-spacing:0.000000pt;}
.ws227{word-spacing:0.001758pt;}
.ws1ec{word-spacing:0.041469pt;}
.wsb7{word-spacing:0.042324pt;}
.wse5{word-spacing:0.042752pt;}
.ws220{word-spacing:0.043677pt;}
.ws97{word-spacing:0.047821pt;}
.ws37{word-spacing:0.053134pt;}
.ws24d{word-spacing:0.068574pt;}
.ws148{word-spacing:0.069472pt;}
.ws149{word-spacing:0.085504pt;}
.ws23f{word-spacing:0.090922pt;}
.ws1d7{word-spacing:0.093306pt;}
.ws224{word-spacing:0.095642pt;}
.ws1ed{word-spacing:0.098490pt;}
.wsc2{word-spacing:0.099792pt;}
.wsf0{word-spacing:0.100800pt;}
.ws145{word-spacing:0.101536pt;}
.wscd{word-spacing:0.104544pt;}
.wsfb{word-spacing:0.105600pt;}
.ws33{word-spacing:0.106268pt;}
.ws1e6{word-spacing:0.111744pt;}
.ws133{word-spacing:0.115200pt;}
.ws275{word-spacing:0.116116pt;}
.wsad{word-spacing:0.116392pt;}
.wsdb{word-spacing:0.117568pt;}
.ws142{word-spacing:0.124800pt;}
.ws134{word-spacing:0.134400pt;}
.ws70{word-spacing:0.135981pt;}
.ws6f{word-spacing:0.136342pt;}
.ws274{word-spacing:0.137634pt;}
.ws96{word-spacing:0.143462pt;}
.ws14a{word-spacing:0.149632pt;}
.ws43{word-spacing:0.159402pt;}
.ws26c{word-spacing:0.162672pt;}
.ws143{word-spacing:0.163200pt;}
.wsc0{word-spacing:0.174588pt;}
.wsee{word-spacing:0.176352pt;}
.wsae{word-spacing:0.179879pt;}
.wsdc{word-spacing:0.181696pt;}
.ws94{word-spacing:0.187518pt;}
.ws84{word-spacing:0.191283pt;}
.ws6d{word-spacing:0.201420pt;}
.ws6e{word-spacing:0.203048pt;}
.ws3e{word-spacing:0.212535pt;}
.ws22{word-spacing:0.222924pt;}
.ws6a{word-spacing:0.234053pt;}
.ws6b{word-spacing:0.236262pt;}
.ws27a{word-spacing:0.239104pt;}
.ws6c{word-spacing:0.241150pt;}
.ws59{word-spacing:0.265669pt;}
.ws236{word-spacing:0.286925pt;}
.ws218{word-spacing:0.290891pt;}
.ws42{word-spacing:0.318803pt;}
.ws206{word-spacing:0.342123pt;}
.wsbb{word-spacing:0.365049pt;}
.wse9{word-spacing:0.368736pt;}
.ws4{word-spacing:0.371980pt;}
.ws7{word-spacing:0.375335pt;}
.ws252{word-spacing:0.382566pt;}
.wsff{word-spacing:0.422503pt;}
.ws69{word-spacing:0.425071pt;}
.ws162{word-spacing:0.432864pt;}
.wsc1{word-spacing:0.446688pt;}
.wsef{word-spacing:0.451200pt;}
.ws205{word-spacing:0.513184pt;}
.ws251{word-spacing:0.621670pt;}
.ws16{word-spacing:0.637606pt;}
.ws250{word-spacing:0.669491pt;}
.ws1f6{word-spacing:0.679062pt;}
.wsba{word-spacing:0.724807pt;}
.wsc8{word-spacing:0.731808pt;}
.wse8{word-spacing:0.732128pt;}
.ws1e0{word-spacing:0.735648pt;}
.wsf6{word-spacing:0.739200pt;}
.wsc9{word-spacing:0.746064pt;}
.wsf7{word-spacing:0.753600pt;}
.wsc3{word-spacing:0.755568pt;}
.wsf1{word-spacing:0.763200pt;}
.ws1f5{word-spacing:0.772368pt;}
.wsc4{word-spacing:0.784080pt;}
.wsf2{word-spacing:0.792000pt;}
.ws160{word-spacing:0.812288pt;}
.ws10c{word-spacing:0.812954pt;}
.ws161{word-spacing:0.833664pt;}
.ws4f{word-spacing:0.843943pt;}
.ws32{word-spacing:0.850142pt;}
.ws1e1{word-spacing:0.875328pt;}
.ws48{word-spacing:0.903276pt;}
.ws41{word-spacing:0.956410pt;}
.wsa6{word-spacing:1.005206pt;}
.wsd4{word-spacing:1.015360pt;}
.ws9a{word-spacing:1.031740pt;}
.ws217{word-spacing:1.046167pt;}
.wsa4{word-spacing:1.052821pt;}
.wsd2{word-spacing:1.063456pt;}
.wsca{word-spacing:1.092960pt;}
.wsb4{word-spacing:1.095146pt;}
.ws210{word-spacing:1.097814pt;}
.wsf8{word-spacing:1.104000pt;}
.wse2{word-spacing:1.106208pt;}
.ws1c9{word-spacing:1.115811pt;}
.ws95{word-spacing:1.147699pt;}
.ws39{word-spacing:1.168945pt;}
.ws38{word-spacing:1.197485pt;}
.ws247{word-spacing:1.243341pt;}
.ws1fe{word-spacing:1.254451pt;}
.ws11b{word-spacing:1.275213pt;}
.ws273{word-spacing:1.280824pt;}
.wsa5{word-spacing:1.306768pt;}
.ws1e9{word-spacing:1.311471pt;}
.wsd3{word-spacing:1.319968pt;}
.ws11a{word-spacing:1.328347pt;}
.ws1d2{word-spacing:1.332206pt;}
.ws221{word-spacing:1.333568pt;}
.ws1d3{word-spacing:1.363308pt;}
.ws2d{word-spacing:1.381481pt;}
.ws233{word-spacing:1.386803pt;}
.ws1b4{word-spacing:1.434614pt;}
.ws10b{word-spacing:1.434624pt;}
.ws25f{word-spacing:1.482445pt;}
.ws1fd{word-spacing:1.487716pt;}
.ws260{word-spacing:1.492542pt;}
.ws4b{word-spacing:1.540882pt;}
.ws1ff{word-spacing:1.565471pt;}
.ws45{word-spacing:1.594016pt;}
.ws1fc{word-spacing:1.596573pt;}
.ws27{word-spacing:1.647150pt;}
.ws1eb{word-spacing:1.653594pt;}
.wsa8{word-spacing:1.666526pt;}
.wsd6{word-spacing:1.683360pt;}
.wsa7{word-spacing:1.698270pt;}
.wsd5{word-spacing:1.715424pt;}
.ws265{word-spacing:1.721549pt;}
.ws1ea{word-spacing:1.741716pt;}
.ws136{word-spacing:1.747200pt;}
.ws1b{word-spacing:1.753418pt;}
.ws226{word-spacing:1.774515pt;}
.ws47{word-spacing:1.806551pt;}
.ws225{word-spacing:1.817190pt;}
.ws232{word-spacing:1.865011pt;}
.ws117{word-spacing:1.912819pt;}
.ws230{word-spacing:1.912832pt;}
.ws1d1{word-spacing:1.923145pt;}
.ws46{word-spacing:1.965953pt;}
.ws135{word-spacing:2.073600pt;}
.ws22f{word-spacing:2.104115pt;}
.ws26f{word-spacing:2.198081pt;}
.ws270{word-spacing:2.199757pt;}
.ws1c5{word-spacing:2.295398pt;}
.ws5b{word-spacing:2.337890pt;}
.ws9c{word-spacing:2.391024pt;}
.ws15{word-spacing:2.444158pt;}
.ws21e{word-spacing:2.482967pt;}
.ws1c8{word-spacing:2.486682pt;}
.ws21d{word-spacing:2.497292pt;}
.ws3a{word-spacing:2.550426pt;}
.ws157{word-spacing:2.581152pt;}
.ws55{word-spacing:2.603559pt;}
.ws234{word-spacing:2.611015pt;}
.ws4e{word-spacing:2.656693pt;}
.ws1b3{word-spacing:2.762961pt;}
.ws24a{word-spacing:2.773606pt;}
.ws26e{word-spacing:2.821427pt;}
.ws22b{word-spacing:2.824466pt;}
.ws25b{word-spacing:2.859409pt;}
.ws256{word-spacing:2.859998pt;}
.ws242{word-spacing:2.861210pt;}
.ws23d{word-spacing:2.862857pt;}
.ws240{word-spacing:2.863078pt;}
.ws254{word-spacing:2.863300pt;}
.ws24b{word-spacing:2.864401pt;}
.ws25c{word-spacing:2.864435pt;}
.ws24f{word-spacing:2.864734pt;}
.ws24c{word-spacing:2.865630pt;}
.ws25d{word-spacing:2.867174pt;}
.ws255{word-spacing:2.867499pt;}
.ws9b{word-spacing:2.869229pt;}
.ws239{word-spacing:2.869248pt;}
.ws1d0{word-spacing:2.871759pt;}
.ws1e2{word-spacing:2.896032pt;}
.ws1cf{word-spacing:2.897677pt;}
.ws156{word-spacing:2.901792pt;}
.ws92{word-spacing:2.917069pt;}
.ws93{word-spacing:2.917313pt;}
.ws155{word-spacing:2.917824pt;}
.ws14{word-spacing:2.922363pt;}
.ws1e3{word-spacing:2.937936pt;}
.ws26b{word-spacing:2.964890pt;}
.ws21b{word-spacing:2.975497pt;}
.ws24e{word-spacing:3.012710pt;}
.ws31{word-spacing:3.081764pt;}
.ws261{word-spacing:3.108218pt;}
.ws23a{word-spacing:3.108352pt;}
.ws30{word-spacing:3.134898pt;}
.ws248{word-spacing:3.156173pt;}
.ws11f{word-spacing:3.157696pt;}
.ws11e{word-spacing:3.188032pt;}
.ws1db{word-spacing:3.217296pt;}
.ws1dc{word-spacing:3.226608pt;}
.ws9d{word-spacing:3.241166pt;}
.wsb6{word-spacing:3.248404pt;}
.wsb5{word-spacing:3.280147pt;}
.wse4{word-spacing:3.281216pt;}
.ws35{word-spacing:3.294300pt;}
.wse3{word-spacing:3.313280pt;}
.ws13b{word-spacing:3.345600pt;}
.ws219{word-spacing:3.347434pt;}
.ws13a{word-spacing:3.360000pt;}
.ws2b{word-spacing:3.400567pt;}
.ws68{word-spacing:3.453701pt;}
.ws169{word-spacing:3.464920pt;}
.ws20a{word-spacing:3.467882pt;}
.ws16a{word-spacing:3.469394pt;}
.ws113{word-spacing:3.470896pt;}
.ws114{word-spacing:3.474623pt;}
.ws115{word-spacing:3.475957pt;}
.ws49{word-spacing:3.506835pt;}
.ws204{word-spacing:3.530086pt;}
.ws272{word-spacing:3.538739pt;}
.ws203{word-spacing:3.556004pt;}
.ws271{word-spacing:3.586560pt;}
.ws158{word-spacing:3.596512pt;}
.ws222{word-spacing:3.634381pt;}
.ws159{word-spacing:3.655296pt;}
.ws21f{word-spacing:3.666237pt;}
.ws223{word-spacing:3.682202pt;}
.ws118{word-spacing:3.719371pt;}
.ws1f8{word-spacing:3.752984pt;}
.ws1f7{word-spacing:3.773719pt;}
.ws1f9{word-spacing:3.820372pt;}
.ws2a{word-spacing:3.825664pt;}
.ws144{word-spacing:3.847680pt;}
.ws1e4{word-spacing:3.855168pt;}
.ws1e5{word-spacing:3.864480pt;}
.ws4a{word-spacing:3.931906pt;}
.wsfc{word-spacing:3.985040pt;}
.wsfe{word-spacing:4.014093pt;}
.wsfd{word-spacing:4.038174pt;}
.ws1a{word-spacing:4.091308pt;}
.ws9e{word-spacing:4.102982pt;}
.ws211{word-spacing:4.144442pt;}
.ws214{word-spacing:4.150914pt;}
.ws212{word-spacing:4.151727pt;}
.ws213{word-spacing:4.154361pt;}
.ws15d{word-spacing:4.189696pt;}
.ws50{word-spacing:4.250709pt;}
.ws22a{word-spacing:4.256051pt;}
.ws12c{word-spacing:4.262400pt;}
.ws125{word-spacing:4.281600pt;}
.ws127{word-spacing:4.291200pt;}
.ws170{word-spacing:4.303843pt;}
.ws126{word-spacing:4.329600pt;}
.ws16e{word-spacing:4.339302pt;}
.ws16c{word-spacing:4.339482pt;}
.ws16d{word-spacing:4.351552pt;}
.ws82{word-spacing:4.351693pt;}
.ws16b{word-spacing:4.356977pt;}
.ws1e8{word-spacing:4.380210pt;}
.ws12b{word-spacing:4.382400pt;}
.ws1e7{word-spacing:4.390577pt;}
.ws257{word-spacing:4.447334pt;}
.ws1b2{word-spacing:4.516379pt;}
.ws15c{word-spacing:4.531712pt;}
.ws56{word-spacing:4.675780pt;}
.wsac{word-spacing:4.745632pt;}
.wsda{word-spacing:4.793568pt;}
.wsb8{word-spacing:4.978417pt;}
.ws20c{word-spacing:4.991884pt;}
.ws209{word-spacing:5.028170pt;}
.wse6{word-spacing:5.028704pt;}
.ws20b{word-spacing:5.038537pt;}
.ws20d{word-spacing:5.043721pt;}
.ws207{word-spacing:5.069639pt;}
.ws1da{word-spacing:5.070384pt;}
.wsa9{word-spacing:5.131843pt;}
.wsab{word-spacing:5.174168pt;}
.wsaa{word-spacing:5.179458pt;}
.wsd7{word-spacing:5.183680pt;}
.wsb9{word-spacing:5.221783pt;}
.wsd9{word-spacing:5.226432pt;}
.wsd8{word-spacing:5.231776pt;}
.ws276{word-spacing:5.260288pt;}
.wse7{word-spacing:5.274528pt;}
.ws208{word-spacing:5.339190pt;}
.ws1d9{word-spacing:5.410272pt;}
.ws215{word-spacing:5.419654pt;}
.ws1d8{word-spacing:5.424240pt;}
.ws16f{word-spacing:5.472788pt;}
.ws153{word-spacing:5.525696pt;}
.ws154{word-spacing:5.541728pt;}
.ws123{word-spacing:5.899200pt;}
.ws124{word-spacing:5.904000pt;}
.ws122{word-spacing:5.913600pt;}
.ws231{word-spacing:5.929779pt;}
.ws5a{word-spacing:6.110395pt;}
.ws163{word-spacing:6.140256pt;}
.ws1d4{word-spacing:6.225600pt;}
.ws11c{word-spacing:6.269796pt;}
.ws1d5{word-spacing:6.292988pt;}
.ws22d{word-spacing:6.312346pt;}
.ws119{word-spacing:6.322930pt;}
.ws164{word-spacing:6.412800pt;}
.wsc7{word-spacing:6.434208pt;}
.wsf5{word-spacing:6.499200pt;}
.ws5c{word-spacing:6.535466pt;}
.ws1ce{word-spacing:6.572906pt;}
.ws51{word-spacing:6.588599pt;}
.wsc5{word-spacing:6.771600pt;}
.wsc6{word-spacing:6.785856pt;}
.wsf3{word-spacing:6.840000pt;}
.wsf4{word-spacing:6.854400pt;}
.ws3b{word-spacing:7.066804pt;}
.ws202{word-spacing:7.194948pt;}
.ws263{word-spacing:7.460045pt;}
.ws25a{word-spacing:8.368640pt;}
.ws15b{word-spacing:9.341312pt;}
.ws14e{word-spacing:9.362688pt;}
.ws14f{word-spacing:9.774176pt;}
.ws1cd{word-spacing:10.015304pt;}
.ws67{word-spacing:10.148569pt;}
.wsa1{word-spacing:10.226019pt;}
.wsd0{word-spacing:10.329312pt;}
.ws1f3{word-spacing:10.393278pt;}
.ws1f4{word-spacing:10.543605pt;}
.ws14c{word-spacing:10.586464pt;}
.ws14d{word-spacing:10.650592pt;}
.ws116{word-spacing:14.080475pt;}
.ws15a{word-spacing:15.444160pt;}
.ws1{word-spacing:19.715148pt;}
.ws9{word-spacing:23.809143pt;}
.ws29{word-spacing:28.107815pt;}
.wsd{word-spacing:35.593054pt;}
.wsb{word-spacing:41.446878pt;}
.wsc{word-spacing:41.452211pt;}
.ws28{word-spacing:59.585416pt;}
.ws1a9{word-spacing:256.178918pt;}
.ws185{word-spacing:340.907552pt;}
.ws184{word-spacing:341.435607pt;}
.ws178{word-spacing:341.627679pt;}
.ws174{word-spacing:343.129134pt;}
.ws199{word-spacing:343.160785pt;}
.ws186{word-spacing:343.677995pt;}
.ws1a4{word-spacing:344.921969pt;}
.ws198{word-spacing:345.959052pt;}
.ws195{word-spacing:346.752475pt;}
.ws171{word-spacing:352.169355pt;}
.ws1a2{word-spacing:352.439708pt;}
.ws183{word-spacing:355.255819pt;}
.ws176{word-spacing:357.055319pt;}
.ws190{word-spacing:357.831314pt;}
.ws182{word-spacing:358.074997pt;}
.ws17f{word-spacing:359.186667pt;}
.ws196{word-spacing:359.422711pt;}
.ws1ac{word-spacing:360.500090pt;}
.ws66{word-spacing:362.213569pt;}
.ws172{word-spacing:362.822219pt;}
.ws18b{word-spacing:366.834126pt;}
.ws181{word-spacing:368.169931pt;}
.ws177{word-spacing:374.191808pt;}
.ws62{word-spacing:375.497036pt;}
.ws180{word-spacing:377.480508pt;}
.ws1a1{word-spacing:378.072019pt;}
.ws1a5{word-spacing:378.627830pt;}
.ws179{word-spacing:379.612450pt;}
.ws187{word-spacing:380.062393pt;}
.ws18a{word-spacing:380.066126pt;}
.ws1a8{word-spacing:381.553622pt;}
.ws1a6{word-spacing:381.576356pt;}
.ws1b0{word-spacing:383.010918pt;}
.ws1a7{word-spacing:384.720526pt;}
.ws17b{word-spacing:385.486768pt;}
.ws193{word-spacing:386.599444pt;}
.ws19e{word-spacing:387.452274pt;}
.ws1ad{word-spacing:388.458028pt;}
.ws63{word-spacing:388.780502pt;}
.ws1aa{word-spacing:389.919057pt;}
.ws19f{word-spacing:390.400800pt;}
.ws1ab{word-spacing:390.765841pt;}
.ws1a0{word-spacing:391.888297pt;}
.ws19a{word-spacing:392.391173pt;}
.ws17e{word-spacing:393.347726pt;}
.ws1ae{word-spacing:394.836822pt;}
.ws18c{word-spacing:397.758881pt;}
.ws1af{word-spacing:399.467193pt;}
.ws17d{word-spacing:399.537517pt;}
.ws191{word-spacing:401.743361pt;}
.ws64{word-spacing:402.063969pt;}
.ws19b{word-spacing:407.137536pt;}
.ws19c{word-spacing:410.590539pt;}
.ws18e{word-spacing:411.044214pt;}
.ws61{word-spacing:425.070933pt;}
.ws1b1{word-spacing:429.216885pt;}
.ws197{word-spacing:431.259552pt;}
.ws65{word-spacing:445.686874pt;}
.ws18d{word-spacing:560.030955pt;}
.ws17a{word-spacing:564.759869pt;}
.ws18f{word-spacing:573.314421pt;}
.ws17c{word-spacing:578.043335pt;}
.ws188{word-spacing:605.354143pt;}
.ws19d{word-spacing:610.242459pt;}
.ws175{word-spacing:612.208412pt;}
.ws60{word-spacing:615.111459pt;}
.ws189{word-spacing:618.637610pt;}
.ws194{word-spacing:632.824352pt;}
.ws192{word-spacing:646.107819pt;}
.ws1a3{word-spacing:653.440292pt;}
._4{margin-left:-10.610603pt;}
._a{margin-left:-6.248558pt;}
._c{margin-left:-5.100878pt;}
._3{margin-left:-4.016909pt;}
._9{margin-left:-2.663773pt;}
._1{margin-left:-1.338970pt;}
._37{width:0.889272pt;}
._5{width:2.666803pt;}
._6{width:3.630131pt;}
._2{width:8.628915pt;}
._0{width:9.670336pt;}
._10{width:11.430141pt;}
._b{width:12.412102pt;}
._16{width:13.347270pt;}
._e{width:15.107605pt;}
._17{width:16.099562pt;}
._d{width:17.002818pt;}
._1a{width:18.150545pt;}
._18{width:19.818932pt;}
._12{width:21.094145pt;}
._19{width:22.316224pt;}
._f{width:23.952693pt;}
._1b{width:25.133556pt;}
._15{width:26.301264pt;}
._39{width:27.480851pt;}
._48{width:29.871856pt;}
._4a{width:32.470310pt;}
._49{width:33.697494pt;}
._7{width:48.326174pt;}
._11{width:55.524891pt;}
._8{width:61.642727pt;}
._20{width:72.591485pt;}
._29{width:92.516685pt;}
._2c{width:105.800151pt;}
._3c{width:139.795203pt;}
._21{width:141.824913pt;}
._3b{width:143.408306pt;}
._42{width:147.818417pt;}
._3a{width:173.120761pt;}
._1f{width:181.717824pt;}
._2b{width:185.437195pt;}
._28{width:198.720661pt;}
._2a{width:229.389525pt;}
._45{width:240.191274pt;}
._2d{width:242.672992pt;}
._34{width:262.598192pt;}
._2e{width:322.426926pt;}
._1e{width:377.994327pt;}
._1c{width:383.640830pt;}
._31{width:385.114266pt;}
._40{width:408.174364pt;}
._32{width:420.664022pt;}
._23{width:432.403407pt;}
._3d{width:440.904826pt;}
._25{width:445.686874pt;}
._30{width:453.869489pt;}
._26{width:458.970340pt;}
._33{width:478.895540pt;}
._22{width:485.590407pt;}
._41{width:488.725333pt;}
._35{width:492.179007pt;}
._1d{width:498.873874pt;}
._27{width:512.157341pt;}
._24{width:525.440807pt;}
._2f{width:538.721074pt;}
._3f{width:541.710394pt;}
._44{width:552.762238pt;}
._3e{width:682.075814pt;}
._43{width:695.359281pt;}
._13{width:1576.914667pt;}
._47{width:1742.807443pt;}
._36{width:1799.657133pt;}
._38{width:1817.835488pt;}
._46{width:2182.813333pt;}
._14{width:2204.066667pt;}
.fs4{font-size:31.880533pt;}
.fs13{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fs17{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs14{font-size:41.283200pt;}
.fs9{font-size:42.077867pt;}
.fsa{font-size:42.134400pt;}
.fs5{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fs16{font-size:46.560000pt;}
.fsc{font-size:47.520000pt;}
.fs8{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fs15{font-size:51.836800pt;}
.fsb{font-size:52.905600pt;}
.fs1{font-size:53.133867pt;}
.fsf{font-size:53.440000pt;}
.fs7{font-size:55.365867pt;}
.fsd{font-size:63.360000pt;}
.fs6{font-size:63.761067pt;}
.fs11{font-size:64.000000pt;}
.fs12{font-size:80.000000pt;}
.fs2{font-size:95.641600pt;}
.y178{bottom:-558.431472pt;}
.y177{bottom:-539.791600pt;}
.y176{bottom:-539.791504pt;}
.y175{bottom:-521.151632pt;}
.y174{bottom:-502.431600pt;}
.y173{bottom:-502.430139pt;}
.y172{bottom:-483.790267pt;}
.y22b{bottom:-466.964192pt;}
.y171{bottom:-465.150395pt;}
.y22a{bottom:-448.805761pt;}
.y170{bottom:-446.430363pt;}
.y229{bottom:-430.725086pt;}
.y16f{bottom:-427.790491pt;}
.y228{bottom:-412.644410pt;}
.y16e{bottom:-409.150619pt;}
.y227{bottom:-394.485979pt;}
.y16d{bottom:-390.430587pt;}
.y226{bottom:-376.405303pt;}
.y16c{bottom:-371.790715pt;}
.y225{bottom:-358.324627pt;}
.y16b{bottom:-353.150843pt;}
.y224{bottom:-340.166196pt;}
.y16a{bottom:-334.430811pt;}
.y223{bottom:-322.085520pt;}
.y169{bottom:-315.790939pt;}
.y222{bottom:-304.004844pt;}
.y168{bottom:-297.151067pt;}
.y221{bottom:-285.846413pt;}
.y167{bottom:-278.431035pt;}
.y220{bottom:-267.765737pt;}
.y119{bottom:-263.102004pt;}
.y166{bottom:-255.791179pt;}
.y21f{bottom:-249.685062pt;}
.y165{bottom:-237.151307pt;}
.y21e{bottom:-231.526631pt;}
.y21d{bottom:-213.445955pt;}
.y164{bottom:-202.431339pt;}
.y21c{bottom:-195.365279pt;}
.y163{bottom:-183.791467pt;}
.y21b{bottom:-177.206848pt;}
.y21a{bottom:-159.126172pt;}
.y162{bottom:-149.550000pt;}
.y161{bottom:-130.830000pt;}
.y118{bottom:-128.539620pt;}
.y219{bottom:-125.911820pt;}
.y160{bottom:-112.190400pt;}
.y117{bottom:-110.086416pt;}
.y218{bottom:-107.753420pt;}
.y15f{bottom:-93.550800pt;}
.y116{bottom:-91.553616pt;}
.y217{bottom:-89.673008pt;}
.y15e{bottom:-74.830800pt;}
.y115{bottom:-73.100412pt;}
.y216{bottom:-71.592596pt;}
.y15d{bottom:-56.191200pt;}
.y114{bottom:-54.647208pt;}
.y215{bottom:-53.434196pt;}
.y15c{bottom:-37.551600pt;}
.y113{bottom:-36.114408pt;}
.y214{bottom:-35.353784pt;}
.y112{bottom:-17.661204pt;}
.y213{bottom:-17.273372pt;}
.y15b{bottom:-14.511600pt;}
.y0{bottom:0.000000pt;}
.y111{bottom:5.149370pt;}
.y212{bottom:5.153463pt;}
.y13d{bottom:5.188667pt;}
.y45{bottom:40.818667pt;}
.y27d{bottom:88.265333pt;}
.y19{bottom:89.120000pt;}
.y24c{bottom:90.046667pt;}
.y235{bottom:91.770667pt;}
.y14f{bottom:91.828000pt;}
.y44{bottom:92.788000pt;}
.y197{bottom:93.989333pt;}
.y2af{bottom:94.188000pt;}
.y18{bottom:105.020000pt;}
.y27c{bottom:105.288000pt;}
.y24b{bottom:107.842667pt;}
.y196{bottom:110.133333pt;}
.y234{bottom:110.341333pt;}
.y14e{bottom:110.398667pt;}
.y2ae{bottom:111.210667pt;}
.y43{bottom:111.358667pt;}
.y195{bottom:112.560000pt;}
.y17{bottom:120.920000pt;}
.y78{bottom:122.042667pt;}
.y27b{bottom:122.310667pt;}
.ya7{bottom:122.376000pt;}
.y24a{bottom:125.640000pt;}
.y2ad{bottom:128.233333pt;}
.y233{bottom:128.910667pt;}
.y14d{bottom:128.968000pt;}
.y42{bottom:129.928000pt;}
.y194{bottom:131.129333pt;}
.y1f9{bottom:131.972000pt;}
.y16{bottom:136.820000pt;}
.y27a{bottom:139.333333pt;}
.y1f6{bottom:139.941333pt;}
.y77{bottom:140.613333pt;}
.ya6{bottom:140.946667pt;}
.y13c{bottom:141.110267pt;}
.y249{bottom:143.436000pt;}
.y2ac{bottom:145.256000pt;}
.y14c{bottom:147.538667pt;}
.y1f8{bottom:147.912000pt;}
.y41{bottom:148.498667pt;}
.y192{bottom:149.700000pt;}
.y15{bottom:152.721333pt;}
.y193{bottom:154.522667pt;}
.y1f5{bottom:155.881333pt;}
.y279{bottom:156.356000pt;}
.y76{bottom:159.184000pt;}
.ya5{bottom:159.517333pt;}
.y13b{bottom:159.749867pt;}
.y232{bottom:160.580000pt;}
.y248{bottom:161.232000pt;}
.y2ab{bottom:162.278667pt;}
.y1f7{bottom:163.852000pt;}
.yce{bottom:164.182667pt;}
.y14b{bottom:166.109333pt;}
.y191{bottom:168.270667pt;}
.y14{bottom:168.621333pt;}
.y40{bottom:171.054667pt;}
.y278{bottom:173.378667pt;}
.y231{bottom:177.676000pt;}
.y75{bottom:177.753333pt;}
.ya4{bottom:178.086667pt;}
.y13a{bottom:178.469867pt;}
.y2aa{bottom:179.301333pt;}
.ycd{bottom:181.330667pt;}
.y1c2{bottom:182.990667pt;}
.y13{bottom:184.521333pt;}
.y14a{bottom:184.680000pt;}
.y1f4{bottom:186.194667pt;}
.y18f{bottom:186.841333pt;}
.y277{bottom:190.401333pt;}
.y190{bottom:191.662667pt;}
.yfc{bottom:192.094667pt;}
.y230{bottom:194.772000pt;}
.y247{bottom:194.969333pt;}
.y74{bottom:196.324000pt;}
.ya3{bottom:196.657333pt;}
.y139{bottom:197.109467pt;}
.ycc{bottom:197.270667pt;}
.y12{bottom:200.422667pt;}
.y149{bottom:203.249333pt;}
.y1c1{bottom:205.333333pt;}
.y18e{bottom:205.410667pt;}
.y276{bottom:207.424000pt;}
.y1f3{bottom:208.537333pt;}
.yfb{bottom:210.665333pt;}
.y22f{bottom:211.868000pt;}
.ycb{bottom:213.210667pt;}
.y1c0{bottom:213.302667pt;}
.y2a9{bottom:213.346667pt;}
.y246{bottom:213.540000pt;}
.y73{bottom:214.894667pt;}
.ya2{bottom:215.228000pt;}
.y138{bottom:215.749067pt;}
.y148{bottom:221.820000pt;}
.y18d{bottom:223.981333pt;}
.y11{bottom:224.293333pt;}
.y1f2{bottom:224.477333pt;}
.y1f1{bottom:224.865333pt;}
.y275{bottom:228.432000pt;}
.y22e{bottom:228.964000pt;}
.yca{bottom:229.150667pt;}
.yfa{bottom:229.236000pt;}
.y2a8{bottom:230.369333pt;}
.y245{bottom:232.109333pt;}
.y72{bottom:233.464000pt;}
.ya1{bottom:233.797333pt;}
.y137{bottom:234.469067pt;}
.y3f{bottom:237.857333pt;}
.y10{bottom:240.193333pt;}
.y147{bottom:240.390667pt;}
.y18c{bottom:242.552000pt;}
.y1bf{bottom:243.616000pt;}
.yc9{bottom:245.092000pt;}
.y22d{bottom:246.060000pt;}
.y2a7{bottom:247.392000pt;}
.yf9{bottom:247.806667pt;}
.y244{bottom:250.680000pt;}
.y1be{bottom:251.974667pt;}
.y71{bottom:252.034667pt;}
.ya0{bottom:252.368000pt;}
.y136{bottom:253.108667pt;}
.yf{bottom:256.093333pt;}
.y3e{bottom:256.428000pt;}
.y146{bottom:258.960000pt;}
.yc8{bottom:261.032000pt;}
.y18b{bottom:261.121333pt;}
.y1f0{bottom:262.760000pt;}
.y274{bottom:262.942667pt;}
.y22c{bottom:263.156000pt;}
.y2a6{bottom:264.414667pt;}
.y15a{bottom:265.888400pt;}
.y159{bottom:265.890000pt;}
.yf8{bottom:266.376000pt;}
.y243{bottom:269.250667pt;}
.y70{bottom:270.605333pt;}
.y9f{bottom:270.938667pt;}
.ye{bottom:271.994667pt;}
.y135{bottom:276.149651pt;}
.yc7{bottom:276.972000pt;}
.y145{bottom:277.530667pt;}
.y1ef{bottom:278.700000pt;}
.y18a{bottom:279.692000pt;}
.y273{bottom:280.274667pt;}
.y2a5{bottom:281.437333pt;}
.y1bd{bottom:281.898667pt;}
.y158{bottom:284.529600pt;}
.yf7{bottom:284.946667pt;}
.y209{bottom:285.749333pt;}
.y1ec{bottom:287.058667pt;}
.y242{bottom:287.820000pt;}
.yd{bottom:287.894667pt;}
.y6f{bottom:289.176000pt;}
.y9e{bottom:289.508000pt;}
.y3d{bottom:290.938667pt;}
.yc6{bottom:292.912000pt;}
.y1ee{bottom:294.640000pt;}
.y272{bottom:297.608000pt;}
.y1bc{bottom:297.838667pt;}
.y189{bottom:298.262667pt;}
.y2a4{bottom:298.460000pt;}
.y157{bottom:303.169200pt;}
.yf6{bottom:303.517333pt;}
.yc{bottom:303.794667pt;}
.y241{bottom:306.390667pt;}
.y6e{bottom:307.745333pt;}
.yc5{bottom:308.852000pt;}
.y144{bottom:309.200000pt;}
.y3c{bottom:309.509333pt;}
.y1ed{bottom:310.580000pt;}
.y9d{bottom:312.064000pt;}
.y2b0{bottom:313.152000pt;}
.y1bb{bottom:313.778667pt;}
.y2a3{bottom:315.482667pt;}
.y188{bottom:316.832000pt;}
.yb{bottom:319.696000pt;}
.y2b1{bottom:319.822667pt;}
.y156{bottom:321.889200pt;}
.yf5{bottom:322.086667pt;}
.y271{bottom:322.909333pt;}
.yc4{bottom:324.792000pt;}
.y240{bottom:324.961333pt;}
.y143{bottom:326.296000pt;}
.y6d{bottom:326.316000pt;}
.y3b{bottom:328.078667pt;}
.y1ba{bottom:329.718667pt;}
.y2a2{bottom:332.506667pt;}
.y1eb{bottom:332.922667pt;}
.y187{bottom:335.402667pt;}
.ya{bottom:335.596000pt;}
.y110{bottom:336.522273pt;}
.y1b5{bottom:338.077333pt;}
.y270{bottom:340.241333pt;}
.y155{bottom:340.528800pt;}
.yf4{bottom:340.657333pt;}
.yc3{bottom:340.733333pt;}
.y1ea{bottom:340.892000pt;}
.y142{bottom:343.392000pt;}
.y9c{bottom:343.478667pt;}
.y23f{bottom:343.530667pt;}
.y6c{bottom:344.886667pt;}
.y1b9{bottom:345.658667pt;}
.y3a{bottom:346.649333pt;}
.y211{bottom:347.214138pt;}
.y2a1{bottom:349.529333pt;}
.y9{bottom:351.496000pt;}
.y10f{bottom:355.055105pt;}
.yc2{bottom:356.673333pt;}
.y26f{bottom:357.574667pt;}
.y186{bottom:357.958667pt;}
.y154{bottom:359.168400pt;}
.yf3{bottom:359.228000pt;}
.y141{bottom:360.488000pt;}
.y1b8{bottom:361.598667pt;}
.y9b{bottom:362.049333pt;}
.y23e{bottom:362.101333pt;}
.y6b{bottom:363.456000pt;}
.y1e9{bottom:364.802667pt;}
.y39{bottom:365.220000pt;}
.y210{bottom:365.294814pt;}
.y2a0{bottom:366.552000pt;}
.y8{bottom:367.397333pt;}
.yc1{bottom:372.613333pt;}
.y185{bottom:373.433333pt;}
.y10e{bottom:373.508578pt;}
.y26e{bottom:374.906667pt;}
.y1b7{bottom:377.540000pt;}
.y140{bottom:377.582667pt;}
.yf2{bottom:377.797333pt;}
.y153{bottom:377.888400pt;}
.y9a{bottom:380.620000pt;}
.y23d{bottom:380.672000pt;}
.y1e8{bottom:380.742667pt;}
.y6a{bottom:382.026667pt;}
.y7{bottom:383.297333pt;}
.y20f{bottom:383.453245pt;}
.y29f{bottom:383.574667pt;}
.y38{bottom:383.789333pt;}
.yc0{bottom:388.553333pt;}
.y10d{bottom:391.962051pt;}
.y26d{bottom:392.238667pt;}
.y1b6{bottom:393.480000pt;}
.y13f{bottom:394.678667pt;}
.yf1{bottom:396.368000pt;}
.y1e1{bottom:396.454667pt;}
.y1e7{bottom:396.682667pt;}
.y99{bottom:399.190667pt;}
.y6{bottom:399.197333pt;}
.y23c{bottom:399.241333pt;}
.y69{bottom:400.597333pt;}
.y20e{bottom:401.533921pt;}
.y37{bottom:402.360000pt;}
.y1e3{bottom:404.653333pt;}
.y184{bottom:404.849333pt;}
.y26c{bottom:409.570667pt;}
.y10c{bottom:410.494883pt;}
.ybf{bottom:410.896000pt;}
.y13e{bottom:411.774667pt;}
.y1e6{bottom:412.624000pt;}
.yf0{bottom:414.938667pt;}
.y1b4{bottom:415.821333pt;}
.y29e{bottom:417.620000pt;}
.y98{bottom:417.760000pt;}
.y23b{bottom:417.812000pt;}
.y68{bottom:419.166667pt;}
.y20d{bottom:419.614597pt;}
.ybd{bottom:419.898667pt;}
.y5{bottom:420.412000pt;}
.y36{bottom:420.930667pt;}
.y183{bottom:423.418667pt;}
.y1b3{bottom:423.792000pt;}
.y26b{bottom:426.902667pt;}
.y152{bottom:428.208520pt;}
.y1e5{bottom:428.564000pt;}
.y10b{bottom:428.948356pt;}
.ybe{bottom:433.238667pt;}
.yef{bottom:433.508000pt;}
.y121{bottom:434.369067pt;}
.y29d{bottom:434.642667pt;}
.y4{bottom:436.312000pt;}
.y97{bottom:436.330667pt;}
.y23a{bottom:436.382667pt;}
.y151{bottom:436.768400pt;}
.y67{bottom:437.737333pt;}
.y20c{bottom:437.773028pt;}
.y35{bottom:439.501333pt;}
.y182{bottom:441.989333pt;}
.y1e4{bottom:444.504000pt;}
.y10a{bottom:447.401830pt;}
.y1b2{bottom:447.702667pt;}
.y29c{bottom:451.665333pt;}
.yee{bottom:452.078667pt;}
.y26a{bottom:452.205333pt;}
.y3{bottom:452.212000pt;}
.y96{bottom:454.901333pt;}
.y239{bottom:454.953333pt;}
.y1b1{bottom:455.672000pt;}
.y66{bottom:456.308000pt;}
.y34{bottom:458.070667pt;}
.y1e2{bottom:460.444000pt;}
.y181{bottom:460.560000pt;}
.ybc{bottom:462.274667pt;}
.y109{bottom:465.934661pt;}
.y2{bottom:468.113333pt;}
.y29b{bottom:468.688000pt;}
.y269{bottom:469.537333pt;}
.yed{bottom:470.649333pt;}
.y95{bottom:473.470667pt;}
.y238{bottom:473.522667pt;}
.y65{bottom:474.877333pt;}
.y33{bottom:476.641333pt;}
.y180{bottom:479.129333pt;}
.ybb{bottom:479.370667pt;}
.y1b0{bottom:479.582667pt;}
.y1e0{bottom:482.786667pt;}
.y108{bottom:484.388135pt;}
.y29a{bottom:485.710667pt;}
.y20b{bottom:486.195544pt;}
.y1af{bottom:487.553333pt;}
.yec{bottom:489.220000pt;}
.y1{bottom:489.326667pt;}
.y1df{bottom:491.145333pt;}
.y94{bottom:492.041333pt;}
.y237{bottom:492.093333pt;}
.y64{bottom:493.448000pt;}
.y20a{bottom:494.498628pt;}
.y268{bottom:494.840000pt;}
.y32{bottom:495.212000pt;}
.y299{bottom:502.733333pt;}
.y107{bottom:502.841608pt;}
.yeb{bottom:507.789333pt;}
.y93{bottom:510.612000pt;}
.y17f{bottom:510.798667pt;}
.y1ae{bottom:511.464000pt;}
.y63{bottom:512.018667pt;}
.yba{bottom:512.352000pt;}
.y31{bottom:513.781333pt;}
.y236{bottom:514.648000pt;}
.y1a6{bottom:519.205333pt;}
.y298{bottom:519.756000pt;}
.y267{bottom:520.142667pt;}
.y1de{bottom:521.069333pt;}
.y106{bottom:521.374440pt;}
.ye9{bottom:526.360000pt;}
.y1ac{bottom:527.404000pt;}
.y17e{bottom:527.894667pt;}
.y92{bottom:529.181333pt;}
.y62{bottom:530.589333pt;}
.yb9{bottom:530.921333pt;}
.yea{bottom:531.181333pt;}
.y30{bottom:532.352000pt;}
.y297{bottom:536.778667pt;}
.y1dd{bottom:537.009333pt;}
.y1dc{bottom:537.397333pt;}
.y266{bottom:537.474667pt;}
.y105{bottom:539.827913pt;}
.y1ad{bottom:543.344000pt;}
.ye8{bottom:544.930667pt;}
.y17d{bottom:544.990667pt;}
.y91{bottom:547.752000pt;}
.y61{bottom:549.158667pt;}
.yb8{bottom:549.492000pt;}
.y2f{bottom:550.922667pt;}
.y296{bottom:553.801333pt;}
.y265{bottom:554.806667pt;}
.y104{bottom:558.281386pt;}
.y1ab{bottom:559.284000pt;}
.y17c{bottom:562.086667pt;}
.ye7{bottom:563.500000pt;}
.y8f{bottom:566.322667pt;}
.y60{bottom:567.729333pt;}
.yb7{bottom:568.062667pt;}
.y2e{bottom:569.492000pt;}
.y295{bottom:570.824000pt;}
.y90{bottom:571.144000pt;}
.y264{bottom:572.138667pt;}
.y1aa{bottom:575.224000pt;}
.y1db{bottom:575.292000pt;}
.y103{bottom:576.814218pt;}
.y17b{bottom:579.182667pt;}
.y120{bottom:581.029333pt;}
.y8e{bottom:584.892000pt;}
.ye6{bottom:586.056000pt;}
.y5f{bottom:586.300000pt;}
.yb6{bottom:586.632000pt;}
.y294{bottom:587.846667pt;}
.y2d{bottom:588.062667pt;}
.y263{bottom:589.470667pt;}
.y1a9{bottom:591.164000pt;}
.y102{bottom:595.267691pt;}
.y17a{bottom:596.278667pt;}
.y11f{bottom:598.125333pt;}
.ye5{bottom:601.530667pt;}
.y8d{bottom:603.462667pt;}
.y5e{bottom:604.869333pt;}
.yb5{bottom:605.202667pt;}
.y2c{bottom:606.633333pt;}
.y262{bottom:606.804000pt;}
.y1da{bottom:606.984000pt;}
.y1a7{bottom:607.105333pt;}
.y134{bottom:610.869755pt;}
.y179{bottom:613.374667pt;}
.y101{bottom:613.721164pt;}
.y11e{bottom:615.220000pt;}
.y293{bottom:621.892000pt;}
.y8c{bottom:622.033333pt;}
.y1a8{bottom:623.045333pt;}
.y5d{bottom:623.440000pt;}
.yb4{bottom:623.773333pt;}
.y1d9{bottom:624.080000pt;}
.y261{bottom:624.136000pt;}
.y133{bottom:629.589787pt;}
.y100{bottom:632.253996pt;}
.y11d{bottom:632.316000pt;}
.ye4{bottom:632.946667pt;}
.y150{bottom:635.968000pt;}
.y292{bottom:638.914667pt;}
.y208{bottom:639.820000pt;}
.y8b{bottom:640.604000pt;}
.y260{bottom:641.468000pt;}
.y5c{bottom:642.010667pt;}
.yb3{bottom:642.344000pt;}
.y1a5{bottom:645.386667pt;}
.y2b{bottom:646.064000pt;}
.y132{bottom:648.229659pt;}
.y11c{bottom:649.412000pt;}
.ye3{bottom:651.516000pt;}
.y291{bottom:655.937333pt;}
.y2a{bottom:656.552000pt;}
.y207{bottom:658.390667pt;}
.y25f{bottom:658.800000pt;}
.y8a{bottom:659.173333pt;}
.y5b{bottom:660.580000pt;}
.y1a4{bottom:661.328000pt;}
.y1a3{bottom:661.716000pt;}
.y1d8{bottom:664.104000pt;}
.yb2{bottom:664.898667pt;}
.y11b{bottom:666.508000pt;}
.y131{bottom:666.869531pt;}
.y2b4{bottom:668.756000pt;}
.ye2{bottom:670.086667pt;}
.y290{bottom:672.961333pt;}
.y29{bottom:674.756000pt;}
.y25e{bottom:676.132000pt;}
.y206{bottom:676.960000pt;}
.y89{bottom:677.744000pt;}
.y5a{bottom:679.150667pt;}
.y1d6{bottom:680.045333pt;}
.yb1{bottom:680.373333pt;}
.yff{bottom:681.674915pt;}
.y11a{bottom:683.604000pt;}
.y130{bottom:685.589563pt;}
.y2b3{bottom:685.778667pt;}
.ye1{bottom:688.657333pt;}
.y28{bottom:689.102667pt;}
.y28f{bottom:689.984000pt;}
.yfe{bottom:690.149196pt;}
.y205{bottom:695.530667pt;}
.y1d7{bottom:695.985333pt;}
.y88{bottom:696.314667pt;}
.y59{bottom:697.721333pt;}
.y27{bottom:699.590667pt;}
.y1a2{bottom:699.609333pt;}
.y25d{bottom:701.434667pt;}
.yb0{bottom:702.090667pt;}
.y2b2{bottom:702.801333pt;}
.y12f{bottom:704.229435pt;}
.yfd{bottom:706.197333pt;}
.y28e{bottom:707.006667pt;}
.ye0{bottom:707.228000pt;}
.y204{bottom:714.101333pt;}
.y87{bottom:714.884000pt;}
.y1a1{bottom:715.550667pt;}
.y58{bottom:716.290667pt;}
.y26{bottom:717.794667pt;}
.y1d5{bottom:718.326667pt;}
.y25c{bottom:718.766667pt;}
.y12e{bottom:722.869307pt;}
.y28d{bottom:724.029333pt;}
.ydf{bottom:725.797333pt;}
.y1d4{bottom:726.685333pt;}
.y25{bottom:728.284000pt;}
.y1a0{bottom:731.490667pt;}
.y203{bottom:732.670667pt;}
.y86{bottom:733.454667pt;}
.y57{bottom:734.861333pt;}
.y25b{bottom:736.098667pt;}
.yaf{bottom:736.601333pt;}
.y19c{bottom:739.849333pt;}
.y28c{bottom:741.052000pt;}
.y12d{bottom:741.589339pt;}
.y24{bottom:742.630667pt;}
.y19f{bottom:747.430667pt;}
.y202{bottom:751.241333pt;}
.y85{bottom:752.025333pt;}
.y25a{bottom:753.430667pt;}
.y56{bottom:753.432000pt;}
.yae{bottom:755.172000pt;}
.y1d3{bottom:756.609333pt;}
.y28b{bottom:758.074667pt;}
.y12c{bottom:760.229211pt;}
.y23{bottom:760.833333pt;}
.yde{bottom:763.305333pt;}
.y19e{bottom:763.370667pt;}
.y201{bottom:769.812000pt;}
.y84{bottom:770.594667pt;}
.y259{bottom:770.764000pt;}
.y22{bottom:771.322667pt;}
.y19d{bottom:771.341333pt;}
.y55{bottom:772.002667pt;}
.yad{bottom:773.742667pt;}
.y28a{bottom:775.097333pt;}
.y12b{bottom:778.869083pt;}
.y1d2{bottom:778.952000pt;}
.ydd{bottom:780.453333pt;}
.y21{bottom:785.669333pt;}
.y258{bottom:788.096000pt;}
.y200{bottom:788.382667pt;}
.y82{bottom:789.165333pt;}
.y54{bottom:790.572000pt;}
.y289{bottom:792.120000pt;}
.yac{bottom:792.312000pt;}
.y83{bottom:793.986667pt;}
.y1d1{bottom:794.892000pt;}
.ydc{bottom:796.393333pt;}
.y12a{bottom:797.589115pt;}
.y19b{bottom:801.653333pt;}
.y20{bottom:803.873333pt;}
.y257{bottom:805.428000pt;}
.y1ff{bottom:806.952000pt;}
.y81{bottom:807.736000pt;}
.y53{bottom:809.142667pt;}
.y1d0{bottom:810.832000pt;}
.yab{bottom:810.882667pt;}
.ydb{bottom:812.333333pt;}
.y129{bottom:816.228987pt;}
.y1cc{bottom:818.546667pt;}
.y288{bottom:826.165333pt;}
.y80{bottom:826.305333pt;}
.y1cf{bottom:826.773333pt;}
.y52{bottom:827.713333pt;}
.yda{bottom:828.273333pt;}
.yaa{bottom:829.453333pt;}
.y256{bottom:830.730667pt;}
.y19a{bottom:833.346667pt;}
.y128{bottom:834.868859pt;}
.y1ce{bottom:842.713333pt;}
.y287{bottom:843.188000pt;}
.y1f{bottom:843.585333pt;}
.yd9{bottom:844.214667pt;}
.y7f{bottom:844.876000pt;}
.y51{bottom:846.282667pt;}
.ya9{bottom:848.022667pt;}
.y255{bottom:848.062667pt;}
.y199{bottom:850.442667pt;}
.y1fe{bottom:852.250667pt;}
.y127{bottom:853.588891pt;}
.y1cd{bottom:858.653333pt;}
.yd8{bottom:860.154667pt;}
.y286{bottom:860.210667pt;}
.y1fd{bottom:860.221333pt;}
.y1e{bottom:862.156000pt;}
.y7e{bottom:863.446667pt;}
.y50{bottom:864.853333pt;}
.y254{bottom:865.394667pt;}
.ya8{bottom:870.578667pt;}
.y126{bottom:872.228763pt;}
.yd7{bottom:876.094667pt;}
.y285{bottom:877.233333pt;}
.y1cb{bottom:880.996000pt;}
.y7d{bottom:882.017333pt;}
.y253{bottom:882.726667pt;}
.y4f{bottom:883.424000pt;}
.y1fc{bottom:890.533333pt;}
.y125{bottom:890.868635pt;}
.yd6{bottom:892.034667pt;}
.y284{bottom:894.256000pt;}
.y1d{bottom:896.665333pt;}
.y1c9{bottom:896.936000pt;}
.y1fb{bottom:898.892000pt;}
.y252{bottom:900.058667pt;}
.y7c{bottom:900.586667pt;}
.y4e{bottom:901.993333pt;}
.yd5{bottom:907.974667pt;}
.y124{bottom:909.588667pt;}
.y283{bottom:911.278667pt;}
.y1ca{bottom:912.876000pt;}
.y1c5{bottom:913.334667pt;}
.y251{bottom:917.390667pt;}
.y4d{bottom:920.564000pt;}
.y7b{bottom:923.142667pt;}
.yd4{bottom:923.914667pt;}
.y1c{bottom:924.521333pt;}
.y282{bottom:928.301333pt;}
.y1c8{bottom:928.816000pt;}
.y1c4{bottom:929.274667pt;}
.y250{bottom:934.724000pt;}
.y7a{bottom:938.617333pt;}
.y4c{bottom:939.134667pt;}
.y1fa{bottom:944.501333pt;}
.y1c6{bottom:944.756000pt;}
.y281{bottom:945.324000pt;}
.yd3{bottom:946.257333pt;}
.y1b{bottom:952.377333pt;}
.yd1{bottom:955.260000pt;}
.y4b{bottom:957.704000pt;}
.y123{bottom:959.508787pt;}
.y24f{bottom:960.025333pt;}
.y79{bottom:960.334667pt;}
.y1c7{bottom:960.697333pt;}
.y280{bottom:962.346667pt;}
.y122{bottom:968.068667pt;}
.yd2{bottom:968.600000pt;}
.y49{bottom:976.274667pt;}
.y24e{bottom:977.822667pt;}
.y27f{bottom:979.369333pt;}
.y1a{bottom:980.232000pt;}
.y4a{bottom:981.097333pt;}
.y1c3{bottom:983.038667pt;}
.y48{bottom:994.845333pt;}
.y24d{bottom:995.618667pt;}
.y27e{bottom:996.392000pt;}
.yd0{bottom:997.636000pt;}
.y198{bottom:1010.989333pt;}
.y47{bottom:1013.414667pt;}
.ycf{bottom:1014.732000pt;}
.y46{bottom:1066.841333pt;}
.h2a{height:24.648646pt;}
.h10{height:26.761523pt;}
.h7{height:28.947524pt;}
.h1f{height:29.765625pt;}
.h2b{height:33.378918pt;}
.h2{height:33.771789pt;}
.h24{height:35.100467pt;}
.hb{height:35.212691pt;}
.h1c{height:35.617969pt;}
.hc{height:36.666735pt;}
.hd{height:37.087439pt;}
.h27{height:38.400633pt;}
.hf{height:38.415786pt;}
.h8{height:38.596538pt;}
.h1e{height:38.775312pt;}
.h3{height:39.000258pt;}
.h12{height:39.192398pt;}
.h17{height:39.588281pt;}
.h29{height:43.308984pt;}
.he{height:43.421286pt;}
.h15{height:43.993125pt;}
.h14{height:44.201953pt;}
.h1a{height:44.437500pt;}
.h19{height:44.648438pt;}
.ha{height:46.099251pt;}
.h28{height:48.217336pt;}
.h9{height:48.245551pt;}
.h6{height:48.481423pt;}
.h13{height:49.211508pt;}
.h18{height:49.708594pt;}
.h1d{height:53.320312pt;}
.h4{height:69.148877pt;}
.h5{height:69.435802pt;}
.h23{height:78.570884pt;}
.h25{height:78.576218pt;}
.h20{height:80.122884pt;}
.h22{height:80.128218pt;}
.h21{height:110.453551pt;}
.h16{height:124.262933pt;}
.h1b{height:245.012000pt;}
.h11{height:320.499960pt;}
.h26{height:333.056613pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:629.727333pt;}
.w3{width:651.211200pt;}
.w2{width:681.696576pt;}
.w5{width:683.784557pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7f{left:-38.624667pt;}
.x74{left:-4.740384pt;}
.x0{left:0.000000pt;}
.x7a{left:3.620533pt;}
.x1{left:47.621333pt;}
.xab{left:54.768816pt;}
.x73{left:55.812264pt;}
.x92{left:67.820000pt;}
.x79{left:71.056800pt;}
.xb3{left:76.309333pt;}
.x7e{left:81.798000pt;}
.x93{left:100.637333pt;}
.x95{left:112.598667pt;}
.xa5{left:113.774667pt;}
.x9f{left:114.957333pt;}
.xa2{left:117.978667pt;}
.xa0{left:119.446667pt;}
.x97{left:123.069333pt;}
.xa6{left:126.725333pt;}
.x80{left:135.215333pt;}
.xb4{left:151.732000pt;}
.x82{left:163.535333pt;}
.x76{left:167.361309pt;}
.xac{left:172.136717pt;}
.x7c{left:177.460627pt;}
.x75{left:195.398016pt;}
.xad{left:199.607117pt;}
.xb6{left:201.174667pt;}
.x7b{left:205.780533pt;}
.xb7{left:209.094667pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x8c{left:234.796000pt;}
.x3{left:239.541333pt;}
.x8d{left:243.596000pt;}
.x63{left:246.745333pt;}
.x5{left:250.204000pt;}
.x6b{left:253.566667pt;}
.x66{left:257.253333pt;}
.x68{left:258.176000pt;}
.x24{left:259.893333pt;}
.x67{left:261.497333pt;}
.x9b{left:263.913333pt;}
.x6d{left:264.817333pt;}
.x3c{left:266.648000pt;}
.x20{left:267.628000pt;}
.x9d{left:270.872000pt;}
.x96{left:272.226667pt;}
.x25{left:273.177333pt;}
.x3d{left:274.852000pt;}
.xa4{left:276.038667pt;}
.x58{left:277.336000pt;}
.x9e{left:278.616000pt;}
.x53{left:279.900000pt;}
.x21{left:280.912000pt;}
.xa3{left:281.824000pt;}
.x54{left:283.164000pt;}
.x33{left:284.273333pt;}
.x4b{left:286.964000pt;}
.x3b{left:288.373333pt;}
.xb8{left:289.632000pt;}
.x59{left:290.618667pt;}
.x5a{left:293.946667pt;}
.x34{left:295.189333pt;}
.x55{left:296.448000pt;}
.x89{left:299.526667pt;}
.x4e{left:304.938667pt;}
.x5b{left:307.230667pt;}
.x5c{left:310.557333pt;}
.x4f{left:318.222667pt;}
.x69{left:322.389333pt;}
.x5d{left:323.841333pt;}
.x22{left:329.278667pt;}
.x35{left:330.593333pt;}
.x23{left:335.920000pt;}
.x36{left:343.877333pt;}
.x14{left:361.590667pt;}
.x2f{left:364.018667pt;}
.xb5{left:365.254667pt;}
.x65{left:366.997333pt;}
.x15{left:368.233333pt;}
.x6e{left:370.192000pt;}
.x10{left:371.293333pt;}
.x30{left:377.302667pt;}
.x6f{left:380.969333pt;}
.x11{left:382.218667pt;}
.x12{left:395.768000pt;}
.x8a{left:401.765333pt;}
.x13{left:405.085333pt;}
.x8b{left:410.565333pt;}
.x43{left:427.292000pt;}
.x8e{left:437.376000pt;}
.x44{left:440.576000pt;}
.x26{left:450.332000pt;}
.x90{left:452.961333pt;}
.x64{left:454.992000pt;}
.x27{left:463.616000pt;}
.x91{left:466.245333pt;}
.x8f{left:471.061333pt;}
.x84{left:476.575333pt;}
.x6c{left:477.576000pt;}
.x1a{left:485.374667pt;}
.x1b{left:492.017333pt;}
.x1c{left:493.222667pt;}
.xa{left:498.521333pt;}
.x1d{left:499.864000pt;}
.x81{left:501.695333pt;}
.x1e{left:503.250667pt;}
.xb{left:505.164000pt;}
.x70{left:507.322667pt;}
.x1f{left:509.893333pt;}
.x5e{left:511.204000pt;}
.x50{left:513.904000pt;}
.x51{left:517.292000pt;}
.xa1{left:518.774667pt;}
.x71{left:520.605333pt;}
.x9a{left:522.985333pt;}
.xa9{left:525.442667pt;}
.x56{left:527.253333pt;}
.xaa{left:528.225333pt;}
.x52{left:530.576000pt;}
.xa8{left:533.008000pt;}
.x88{left:533.949333pt;}
.x6a{left:535.060000pt;}
.xa7{left:537.570667pt;}
.x31{left:538.557333pt;}
.x61{left:539.630667pt;}
.x57{left:540.537333pt;}
.xae{left:542.028000pt;}
.x98{left:546.118667pt;}
.x16{left:549.593333pt;}
.x32{left:551.841333pt;}
.x62{left:553.813333pt;}
.x99{left:555.210667pt;}
.x17{left:556.236000pt;}
.x18{left:559.622667pt;}
.x9c{left:561.056000pt;}
.x94{left:562.961333pt;}
.x47{left:564.729333pt;}
.x19{left:566.264000pt;}
.x85{left:569.234667pt;}
.x6{left:573.396000pt;}
.x48{left:578.012000pt;}
.x7{left:580.037333pt;}
.x8{left:583.425333pt;}
.x2c{left:587.505333pt;}
.x9{left:590.066667pt;}
.x42{left:596.385333pt;}
.xc{left:598.364000pt;}
.x2d{left:600.789333pt;}
.xd{left:605.005333pt;}
.xe{left:608.392000pt;}
.x40{left:612.690667pt;}
.xf{left:615.034667pt;}
.x2e{left:617.818667pt;}
.x72{left:627.320000pt;}
.x78{left:631.869216pt;}
.x45{left:633.288000pt;}
.x83{left:635.135200pt;}
.x4c{left:640.377333pt;}
.x3e{left:643.265333pt;}
.xb2{left:644.988000pt;}
.x46{left:646.572000pt;}
.x4d{left:653.661333pt;}
.x3f{left:655.948000pt;}
.x41{left:657.916000pt;}
.x37{left:659.802667pt;}
.x38{left:670.728000pt;}
.x5f{left:672.036000pt;}
.x77{left:677.325027pt;}
.x60{left:680.241333pt;}
.x7d{left:692.575494pt;}
.x2a{left:697.552000pt;}
.x49{left:700.388000pt;}
.x39{left:703.332000pt;}
.x3a{left:711.537333pt;}
.x2b{left:712.773333pt;}
.x4a{left:713.672000pt;}
.x86{left:717.949333pt;}
.x87{left:721.637333pt;}
.xaf{left:724.517333pt;}
.x28{left:726.966667pt;}
.xb0{left:727.905333pt;}
.x29{left:740.250667pt;}
.xb1{left:741.189333pt;}
}




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