
    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_4446c4b6fd5183ba3eb0a239.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0b9843b9c04b56d797d5f8d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_1616d04aa52da72cef2edf91.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_1bd48ea1b33f65d2a5bd8bc7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.841000;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_b3a0e046c2240f1d36c0f812.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a1db94b9d7c23422fd644bf1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761000;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_a84bb6cb8a89b487e7c660b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6ba1d1cc88e3613f025da208.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.712000;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_126feee0fc9b22e8e677fad8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e46f3a0d96f80b775643daef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933000;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_44db8785858578940d301129.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4dbbc35d4637e08226d6d4a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f584e4031bde58b050cb8dee.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.014160;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_9fa58c399d88444676d88c4f.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ac7b26b6b4769f8c87d274c8.woff2')format("woff");}.fff{font-family:fff;line-height:1.206055;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_ccfb1bce83cf9a1960530bbd.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_accf4e3b9b7298a20c1aa1d2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.057617;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_1c3a3f71a9b8a3f9008fa19c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.206055;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_f8e6eb3308c663edbcd16bec.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.014160;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_f584e4031bde58b050cb8dee.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.014160;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_9fa58c399d88444676d88c4f.woff2')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_f39a051273a77e1925e753de.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.206055;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_7c3722c879ff614db0d0a859.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.206055;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_f19fa5fe4f47da743c0fb87c.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.014160;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_93d9cb709bafe421c26a86d7.woff2')format("woff");}.ff19{font-family:ff19;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;}
.m7{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);}
.m18{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);}
.m1d{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);}
.m23{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);}
.m2{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);}
.m28{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);}
.m24{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);}
.m3{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);}
.ma{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);}
.md{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);}
.m13{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);}
.m22{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);}
.m16{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);}
.m20{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);}
.m11{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);}
.me{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);}
.m14{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);}
.m10{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);}
.m1f{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);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m25{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);}
.m9{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);}
.m12{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);}
.m26{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);}
.mb{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m8{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);}
.m1b{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);}
.m27{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);}
.m1a{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);}
.m4{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);}
.m29{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);}
.m5{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);}
.m15{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);}
.m1e{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);}
.m1c{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);}
.m19{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);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-10.920000px;}
.v7{vertical-align:-9.546000px;}
.v8{vertical-align:-8.064000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.920000px;}
.v9{vertical-align:13.020000px;}
.v4{vertical-align:15.192000px;}
.v5{vertical-align:19.530000px;}
.v3{vertical-align:21.702000px;}
.va{vertical-align:28.392000px;}
.v6{vertical-align:32.874000px;}
.ls54{letter-spacing:-0.126600px;}
.ls60{letter-spacing:-0.126000px;}
.ls61{letter-spacing:-0.013320px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000017px;}
.ls31{letter-spacing:0.000094px;}
.ls2c{letter-spacing:0.000150px;}
.ls3f{letter-spacing:0.000263px;}
.ls18{letter-spacing:0.000280px;}
.ls6b{letter-spacing:0.000292px;}
.lsd{letter-spacing:0.000368px;}
.ls29{letter-spacing:0.000450px;}
.ls9{letter-spacing:0.000612px;}
.ls3e{letter-spacing:0.000638px;}
.ls2b{letter-spacing:0.000639px;}
.lsb{letter-spacing:0.000810px;}
.ls3b{letter-spacing:0.000840px;}
.ls6f{letter-spacing:0.001036px;}
.ls19{letter-spacing:0.001100px;}
.ls30{letter-spacing:0.001133px;}
.ls14{letter-spacing:0.001897px;}
.ls66{letter-spacing:0.002544px;}
.ls52{letter-spacing:0.002728px;}
.ls3d{letter-spacing:0.003926px;}
.ls1b{letter-spacing:0.003986px;}
.ls71{letter-spacing:0.004772px;}
.ls1f{letter-spacing:0.004800px;}
.ls5a{letter-spacing:0.018000px;}
.ls59{letter-spacing:0.108000px;}
.ls5b{letter-spacing:0.126000px;}
.ls53{letter-spacing:0.139800px;}
.ls58{letter-spacing:0.145200px;}
.ls4f{letter-spacing:0.153360px;}
.ls4c{letter-spacing:0.180000px;}
.ls5c{letter-spacing:0.244440px;}
.ls45{letter-spacing:0.428370px;}
.ls42{letter-spacing:0.434370px;}
.ls44{letter-spacing:0.445654px;}
.ls46{letter-spacing:0.451654px;}
.ls47{letter-spacing:0.476889px;}
.ls2f{letter-spacing:0.497764px;}
.ls1c{letter-spacing:0.503764px;}
.ls5{letter-spacing:0.542815px;}
.ls6{letter-spacing:0.548815px;}
.ls36{letter-spacing:0.671933px;}
.ls37{letter-spacing:0.673805px;}
.ls17{letter-spacing:0.744973px;}
.ls16{letter-spacing:0.746378px;}
.ls4d{letter-spacing:1.620000px;}
.ls4e{letter-spacing:1.890000px;}
.ls1d{letter-spacing:2.988600px;}
.ls43{letter-spacing:2.989200px;}
.ls56{letter-spacing:2.994600px;}
.ls55{letter-spacing:3.491764px;}
.ls7{letter-spacing:3.733200px;}
.ls8{letter-spacing:3.739200px;}
.ls50{letter-spacing:8.370000px;}
.ls0{letter-spacing:10.461300px;}
.ls6e{letter-spacing:11.721674px;}
.ls33{letter-spacing:11.934011px;}
.ls21{letter-spacing:11.951700px;}
.ls3{letter-spacing:11.954850px;}
.ls4b{letter-spacing:11.957700px;}
.ls3a{letter-spacing:12.047531px;}
.ls57{letter-spacing:12.077615px;}
.ls4a{letter-spacing:12.524693px;}
.ls49{letter-spacing:12.530693px;}
.ls34{letter-spacing:12.716776px;}
.ls24{letter-spacing:12.967797px;}
.ls6d{letter-spacing:13.247042px;}
.ls2d{letter-spacing:13.330945px;}
.ls65{letter-spacing:13.417925px;}
.ls5e{letter-spacing:13.444800px;}
.ls68{letter-spacing:13.448400px;}
.ls5d{letter-spacing:13.449600px;}
.ls6a{letter-spacing:13.454400px;}
.ls73{letter-spacing:13.502207px;}
.ls5f{letter-spacing:13.502841px;}
.ls69{letter-spacing:13.620451px;}
.ls20{letter-spacing:14.066171px;}
.ls1e{letter-spacing:14.094088px;}
.ls39{letter-spacing:14.100088px;}
.lse{letter-spacing:14.631374px;}
.ls23{letter-spacing:14.688603px;}
.ls64{letter-spacing:14.694177px;}
.ls3c{letter-spacing:14.703728px;}
.ls2a{letter-spacing:14.807571px;}
.ls26{letter-spacing:14.824394px;}
.ls25{letter-spacing:14.934067px;}
.ls12{letter-spacing:14.941897px;}
.lsf{letter-spacing:14.943634px;}
.ls1{letter-spacing:14.944200px;}
.ls67{letter-spacing:14.956282px;}
.ls35{letter-spacing:15.018101px;}
.ls41{letter-spacing:15.067421px;}
.ls63{letter-spacing:15.085227px;}
.ls22{letter-spacing:15.653751px;}
.ls11{letter-spacing:15.657483px;}
.ls10{letter-spacing:15.663483px;}
.ls13{letter-spacing:15.687634px;}
.ls32{letter-spacing:16.434600px;}
.ls2e{letter-spacing:16.440600px;}
.ls70{letter-spacing:16.826871px;}
.ls6c{letter-spacing:16.987205px;}
.ls72{letter-spacing:17.209224px;}
.ls62{letter-spacing:17.441987px;}
.lsc{letter-spacing:18.694485px;}
.lsa{letter-spacing:18.700810px;}
.ls15{letter-spacing:19.512575px;}
.ls27{letter-spacing:20.059634px;}
.ls28{letter-spacing:20.065074px;}
.ls40{letter-spacing:21.382991px;}
.ls2{letter-spacing:28.453654px;}
.ls48{letter-spacing:168.137740px;}
.ls38{letter-spacing:290.409403px;}
.ls51{letter-spacing:849.090000px;}
.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;}
}
.wsd{word-spacing:-102.481160px;}
.ws13f{word-spacing:-26.899200px;}
.wsf6{word-spacing:-15.210000px;}
.wsf5{word-spacing:-15.030000px;}
.ws8c{word-spacing:-14.943900px;}
.wsf7{word-spacing:-14.903400px;}
.wsf3{word-spacing:-13.500000px;}
.wsab{word-spacing:-13.449600px;}
.ws139{word-spacing:-13.374000px;}
.wsf1{word-spacing:-12.150000px;}
.wsf2{word-spacing:-11.970000px;}
.ws3f{word-spacing:-11.955150px;}
.ws94{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.wsf4{word-spacing:-9.000000px;}
.ws78{word-spacing:-3.347434px;}
.ws8e{word-spacing:-2.988780px;}
.ws11f{word-spacing:-2.797517px;}
.ws120{word-spacing:-2.582323px;}
.ws71{word-spacing:-2.271473px;}
.wsc8{word-spacing:-2.240997px;}
.ws6f{word-spacing:-2.211697px;}
.wsb8{word-spacing:-1.972595px;}
.ws58{word-spacing:-1.793268px;}
.ws182{word-spacing:-1.775347px;}
.wsfb{word-spacing:-1.733492px;}
.ws181{word-spacing:-1.721549px;}
.ws103{word-spacing:-1.673717px;}
.ws157{word-spacing:-1.667750px;}
.ws56{word-spacing:-1.613941px;}
.ws14b{word-spacing:-1.554166px;}
.ws158{word-spacing:-1.452557px;}
.ws9a{word-spacing:-1.434614px;}
.ws93{word-spacing:-1.374839px;}
.ws43{word-spacing:-1.315063px;}
.wsc9{word-spacing:-1.255288px;}
.ws7d{word-spacing:-1.195512px;}
.ws79{word-spacing:-1.075961px;}
.ws26{word-spacing:-0.968371px;}
.ws7c{word-spacing:-0.956410px;}
.ws41{word-spacing:-0.896634px;}
.ws15d{word-spacing:-0.806976px;}
.ws14d{word-spacing:-0.777083px;}
.ws4a{word-spacing:-0.717307px;}
.ws6c{word-spacing:-0.673826px;}
.ws4e{word-spacing:-0.657532px;}
.ws90{word-spacing:-0.597756px;}
.ws92{word-spacing:-0.537980px;}
.ws151{word-spacing:-0.484186px;}
.ws42{word-spacing:-0.418429px;}
.ws76{word-spacing:-0.358654px;}
.ws17a{word-spacing:-0.322790px;}
.ws69{word-spacing:-0.298878px;}
.ws1c{word-spacing:-0.268992px;}
.ws4b{word-spacing:-0.239102px;}
.wsd7{word-spacing:-0.233278px;}
.ws150{word-spacing:-0.215194px;}
.ws180{word-spacing:-0.197947px;}
.ws10e{word-spacing:-0.192071px;}
.ws55{word-spacing:-0.179327px;}
.ws3c{word-spacing:-0.119551px;}
.wsbd{word-spacing:-0.114011px;}
.wsbe{word-spacing:-0.108444px;}
.ws1e{word-spacing:-0.107597px;}
.wsf{word-spacing:-0.059776px;}
.ws2e{word-spacing:-0.053798px;}
.ws40{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws4c{word-spacing:-0.015817px;}
.wse5{word-spacing:-0.007492px;}
.ws86{word-spacing:-0.004423px;}
.wsbf{word-spacing:-0.003734px;}
.ws121{word-spacing:-0.003322px;}
.ws8b{word-spacing:-0.002899px;}
.ws131{word-spacing:-0.002195px;}
.ws2b{word-spacing:-0.001680px;}
.ws28{word-spacing:-0.001603px;}
.ws7b{word-spacing:-0.001200px;}
.ws1{word-spacing:0.000000px;}
.ws8d{word-spacing:0.001087px;}
.wsc0{word-spacing:0.002266px;}
.ws99{word-spacing:0.002700px;}
.ws8a{word-spacing:0.003101px;}
.ws10d{word-spacing:0.004009px;}
.ws2d{word-spacing:0.004378px;}
.ws118{word-spacing:0.044240px;}
.ws13e{word-spacing:0.053798px;}
.ws36{word-spacing:0.059776px;}
.wsd3{word-spacing:0.095641px;}
.ws160{word-spacing:0.107597px;}
.ws39{word-spacing:0.119551px;}
.ws130{word-spacing:0.143462px;}
.ws101{word-spacing:0.147960px;}
.ws15{word-spacing:0.153250px;}
.ws13{word-spacing:0.161395px;}
.ws38{word-spacing:0.179327px;}
.wsf9{word-spacing:0.215194px;}
.ws75{word-spacing:0.239102px;}
.ws17{word-spacing:0.268992px;}
.ws91{word-spacing:0.298878px;}
.ws35{word-spacing:0.358654px;}
.ws156{word-spacing:0.376589px;}
.ws95{word-spacing:0.418429px;}
.ws33{word-spacing:0.478205px;}
.wsf8{word-spacing:0.484186px;}
.wsc7{word-spacing:0.537980px;}
.ws124{word-spacing:0.583521px;}
.ws123{word-spacing:0.583720px;}
.ws12c{word-spacing:0.586371px;}
.ws126{word-spacing:0.586671px;}
.ws135{word-spacing:0.586807px;}
.ws129{word-spacing:0.588483px;}
.wsea{word-spacing:0.589301px;}
.ws125{word-spacing:0.589521px;}
.ws128{word-spacing:0.590733px;}
.ws127{word-spacing:0.592371px;}
.ws12a{word-spacing:0.592671px;}
.ws9e{word-spacing:0.597756px;}
.wsec{word-spacing:0.598500px;}
.wse9{word-spacing:0.601600px;}
.wse7{word-spacing:0.604450px;}
.wse8{word-spacing:0.607000px;}
.wsed{word-spacing:0.607600px;}
.wse6{word-spacing:0.616409px;}
.wsae{word-spacing:0.644486px;}
.ws37{word-spacing:0.657532px;}
.wsce{word-spacing:0.665549px;}
.wscd{word-spacing:0.668707px;}
.wsc3{word-spacing:0.672000px;}
.wsb1{word-spacing:0.673200px;}
.wsad{word-spacing:0.695885px;}
.wsac{word-spacing:0.699043px;}
.ws18{word-spacing:0.699379px;}
.wsaf{word-spacing:0.699485px;}
.ws64{word-spacing:0.717307px;}
.ws89{word-spacing:0.742800px;}
.ws88{word-spacing:0.747000px;}
.ws87{word-spacing:0.748800px;}
.ws175{word-spacing:0.753178px;}
.wsda{word-spacing:0.777083px;}
.ws11{word-spacing:0.806976px;}
.ws31{word-spacing:0.836858px;}
.ws6e{word-spacing:0.896634px;}
.ws10b{word-spacing:1.016185px;}
.wsa1{word-spacing:1.075961px;}
.ws159{word-spacing:1.129766px;}
.ws172{word-spacing:1.183565px;}
.ws49{word-spacing:1.195512px;}
.ws155{word-spacing:1.237363px;}
.ws47{word-spacing:1.255288px;}
.ws140{word-spacing:1.315063px;}
.wsc5{word-spacing:1.374839px;}
.ws162{word-spacing:1.398758px;}
.wsc6{word-spacing:1.434614px;}
.ws24{word-spacing:1.490843px;}
.ws59{word-spacing:1.494390px;}
.ws12{word-spacing:1.506355px;}
.ws21{word-spacing:1.551660px;}
.ws5a{word-spacing:1.554166px;}
.ws1f{word-spacing:1.560154px;}
.ws57{word-spacing:1.613941px;}
.wsd5{word-spacing:1.673717px;}
.ws5c{word-spacing:1.733492px;}
.ws192{word-spacing:1.775347px;}
.wse1{word-spacing:1.793268px;}
.ws16f{word-spacing:1.829146px;}
.ws7f{word-spacing:1.853044px;}
.wsa6{word-spacing:1.912819px;}
.ws5b{word-spacing:1.972595px;}
.wsb7{word-spacing:2.104106px;}
.ws5f{word-spacing:2.151922px;}
.wsa7{word-spacing:2.207947px;}
.ws46{word-spacing:2.211697px;}
.ws98{word-spacing:2.271473px;}
.ws80{word-spacing:2.331248px;}
.ws141{word-spacing:2.391024px;}
.ws52{word-spacing:2.450800px;}
.ws10f{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws9b{word-spacing:2.570351px;}
.wsd4{word-spacing:2.630126px;}
.ws186{word-spacing:2.636122px;}
.ws77{word-spacing:2.689902px;}
.ws153{word-spacing:2.689920px;}
.ws30{word-spacing:2.749678px;}
.ws16b{word-spacing:2.797517px;}
.ws34{word-spacing:2.869229px;}
.ws10{word-spacing:2.869236px;}
.ws185{word-spacing:2.905114px;}
.wsb5{word-spacing:2.917057px;}
.ws32{word-spacing:2.929004px;}
.ws18e{word-spacing:2.958912px;}
.wsb6{word-spacing:2.964877px;}
.wsca{word-spacing:3.048556px;}
.ws96{word-spacing:3.108331px;}
.ws44{word-spacing:3.168107px;}
.ws23{word-spacing:3.174106px;}
.ws18b{word-spacing:3.218534px;}
.ws190{word-spacing:3.218918px;}
.ws2a{word-spacing:3.219667px;}
.ws17e{word-spacing:3.224323px;}
.ws18d{word-spacing:3.225686px;}
.ws67{word-spacing:3.227882px;}
.ws13a{word-spacing:3.227904px;}
.ws178{word-spacing:3.230218px;}
.wse2{word-spacing:3.287658px;}
.ws62{word-spacing:3.302492px;}
.ws17c{word-spacing:3.389299px;}
.wsaa{word-spacing:3.407209px;}
.ws154{word-spacing:3.443098px;}
.ws3d{word-spacing:3.466985px;}
.ws1b{word-spacing:3.496896px;}
.wsa0{word-spacing:3.526760px;}
.ws19{word-spacing:3.550694px;}
.ws2f{word-spacing:3.586536px;}
.ws82{word-spacing:3.750532px;}
.ws83{word-spacing:3.761191px;}
.ws84{word-spacing:3.765863px;}
.ws81{word-spacing:3.770989px;}
.ws9f{word-spacing:3.885414px;}
.ws115{word-spacing:3.913736px;}
.ws113{word-spacing:3.945190px;}
.ws53{word-spacing:4.004965px;}
.ws18a{word-spacing:4.034880px;}
.wsa2{word-spacing:4.124516px;}
.ws14f{word-spacing:4.142477px;}
.ws152{word-spacing:4.196275px;}
.wsd9{word-spacing:4.244068px;}
.ws195{word-spacing:4.250074px;}
.ws16e{word-spacing:4.303872px;}
.ws9d{word-spacing:4.363619px;}
.ws9c{word-spacing:4.423394px;}
.ws8f{word-spacing:4.542946px;}
.ws13b{word-spacing:4.572864px;}
.ws194{word-spacing:4.626662px;}
.wsfc{word-spacing:4.662497px;}
.ws61{word-spacing:4.722272px;}
.wsb{word-spacing:4.770079px;}
.ws3b{word-spacing:4.782048px;}
.wsc{word-spacing:4.853765px;}
.ws7a{word-spacing:4.901599px;}
.ws144{word-spacing:4.950527px;}
.wsba{word-spacing:5.097272px;}
.wsbb{word-spacing:5.140702px;}
.ws14e{word-spacing:5.164646px;}
.ws112{word-spacing:5.379804px;}
.ws73{word-spacing:5.439580px;}
.ws143{word-spacing:5.499355px;}
.ws68{word-spacing:5.678682px;}
.wsd6{word-spacing:5.798233px;}
.ws74{word-spacing:5.917784px;}
.ws3a{word-spacing:5.977560px;}
.ws45{word-spacing:6.097111px;}
.ws133{word-spacing:6.133018px;}
.ws51{word-spacing:6.336214px;}
.ws4f{word-spacing:6.340504px;}
.wsdd{word-spacing:6.443162px;}
.wse0{word-spacing:6.455765px;}
.ws132{word-spacing:6.509606px;}
.ws16d{word-spacing:6.563405px;}
.ws109{word-spacing:6.575316px;}
.ws105{word-spacing:6.694867px;}
.ws147{word-spacing:6.814418px;}
.ws60{word-spacing:6.874194px;}
.ws85{word-spacing:7.173072px;}
.wsdc{word-spacing:7.591501px;}
.ws9{word-spacing:7.782761px;}
.wsdf{word-spacing:8.129482px;}
.ws97{word-spacing:8.189257px;}
.ws168{word-spacing:8.607744px;}
.ws2{word-spacing:10.415579px;}
.ws3{word-spacing:10.422475px;}
.ws183{word-spacing:11.620454px;}
.ws11e{word-spacing:11.904290px;}
.ws3e{word-spacing:11.910290px;}
.ws7{word-spacing:12.176255px;}
.ws27{word-spacing:12.411814px;}
.ws70{word-spacing:12.656349px;}
.wsb9{word-spacing:12.913762px;}
.ws1d{word-spacing:13.156705px;}
.ws104{word-spacing:13.238252px;}
.ws179{word-spacing:13.340201px;}
.ws15b{word-spacing:13.342003px;}
.ws14c{word-spacing:13.360701px;}
.ws2c{word-spacing:13.384406px;}
.ws193{word-spacing:13.388534px;}
.ws17b{word-spacing:13.389600px;}
.ws171{word-spacing:13.389907px;}
.ws17f{word-spacing:13.390032px;}
.ws177{word-spacing:13.390445px;}
.ws161{word-spacing:13.390541px;}
.ws15c{word-spacing:13.390579px;}
.ws29{word-spacing:13.392422px;}
.ws18c{word-spacing:13.393757px;}
.ws174{word-spacing:13.394957px;}
.ws176{word-spacing:13.395763px;}
.ws165{word-spacing:13.395802px;}
.ws16a{word-spacing:13.396579px;}
.ws15e{word-spacing:13.545179px;}
.ws16{word-spacing:13.557197px;}
.ws14{word-spacing:13.569773px;}
.wsfa{word-spacing:13.610995px;}
.ws7e{word-spacing:13.685191px;}
.ws4d{word-spacing:13.967658px;}
.wsff{word-spacing:14.211721px;}
.wsfe{word-spacing:14.214902px;}
.ws6d{word-spacing:14.226593px;}
.ws184{word-spacing:14.579366px;}
.ws6a{word-spacing:14.605880px;}
.ws63{word-spacing:14.634462px;}
.wsa5{word-spacing:14.645022px;}
.wsdb{word-spacing:14.648464px;}
.wsa9{word-spacing:14.764573px;}
.ws149{word-spacing:14.770806px;}
.wsd8{word-spacing:14.787231px;}
.wsfd{word-spacing:14.812431px;}
.ws10c{word-spacing:14.881800px;}
.ws5d{word-spacing:14.884124px;}
.ws25{word-spacing:14.889070px;}
.ws119{word-spacing:14.929968px;}
.ws11a{word-spacing:14.937095px;}
.ws117{word-spacing:14.939453px;}
.ws20{word-spacing:14.947893px;}
.ws6b{word-spacing:14.948821px;}
.ws22{word-spacing:14.951563px;}
.ws102{word-spacing:15.001517px;}
.wse4{word-spacing:15.003676px;}
.ws14a{word-spacing:15.024983px;}
.ws54{word-spacing:15.025920px;}
.ws11c{word-spacing:15.058784px;}
.wsa3{word-spacing:15.063451px;}
.ws110{word-spacing:15.078566px;}
.ws72{word-spacing:15.094363px;}
.ws146{word-spacing:15.117105px;}
.ws11d{word-spacing:15.123227px;}
.ws100{word-spacing:15.183002px;}
.ws108{word-spacing:15.242778px;}
.ws107{word-spacing:15.253258px;}
.ws187{word-spacing:16.025263px;}
.ws8{word-spacing:16.109478px;}
.ws48{word-spacing:16.139412px;}
.ws18f{word-spacing:16.354714px;}
.ws169{word-spacing:16.408512px;}
.wsa4{word-spacing:16.447878px;}
.ws11b{word-spacing:16.570905px;}
.ws189{word-spacing:16.617802px;}
.ws191{word-spacing:16.618003px;}
.ws163{word-spacing:16.618253px;}
.ws167{word-spacing:16.619386px;}
.ws170{word-spacing:16.621142px;}
.ws16c{word-spacing:16.623706px;}
.ws166{word-spacing:16.677504px;}
.ws164{word-spacing:16.731302px;}
.ws17d{word-spacing:16.793781px;}
.ws15f{word-spacing:16.838899px;}
.ws1a{word-spacing:16.912599px;}
.ws5e{word-spacing:17.036046px;}
.wsa8{word-spacing:17.117964px;}
.ws13d{word-spacing:17.968666px;}
.ws13c{word-spacing:17.971422px;}
.ws142{word-spacing:17.992456px;}
.ws66{word-spacing:18.052231px;}
.ws65{word-spacing:18.065022px;}
.ws148{word-spacing:18.106199px;}
.wse3{word-spacing:18.129728px;}
.ws114{word-spacing:18.817964px;}
.ws116{word-spacing:18.829314px;}
.ws111{word-spacing:19.282670px;}
.wsbc{word-spacing:19.486846px;}
.ws134{word-spacing:19.536128px;}
.ws145{word-spacing:19.806199px;}
.ws15a{word-spacing:20.550989px;}
.ws173{word-spacing:20.604787px;}
.ws50{word-spacing:21.235611px;}
.wsde{word-spacing:21.329128px;}
.ws10a{word-spacing:21.470905px;}
.ws106{word-spacing:21.594434px;}
.ws188{word-spacing:25.070054px;}
.wsa{word-spacing:26.109907px;}
.wse{word-spacing:26.782051px;}
.ws6{word-spacing:26.840252px;}
.wsc1{word-spacing:115.445222px;}
.ws12b{word-spacing:150.906515px;}
.wseb{word-spacing:180.444515px;}
.ws12e{word-spacing:181.822800px;}
.wscf{word-spacing:189.039187px;}
.wscb{word-spacing:200.560435px;}
.wsef{word-spacing:211.360800px;}
.ws136{word-spacing:215.706515px;}
.wsd1{word-spacing:235.406400px;}
.wsd2{word-spacing:258.393715px;}
.ws138{word-spacing:258.574800px;}
.wsc2{word-spacing:267.615187px;}
.ws12f{word-spacing:277.359480px;}
.wsb0{word-spacing:294.513187px;}
.wscc{word-spacing:303.036752px;}
.wsf0{word-spacing:304.569401px;}
.wsd0{word-spacing:306.489485px;}
.ws12d{word-spacing:308.108126px;}
.ws137{word-spacing:308.155946px;}
.wsb3{word-spacing:327.434400px;}
.ws122{word-spacing:339.765363px;}
.wsee{word-spacing:359.276168px;}
.wsb4{word-spacing:363.838579px;}
.wsc4{word-spacing:400.582886px;}
.wsb2{word-spacing:411.073574px;}
._5e{margin-left:-13.449600px;}
._c{margin-left:-6.676870px;}
._8{margin-left:-5.308087px;}
._1c{margin-left:-4.303843px;}
._3{margin-left:-3.096367px;}
._0{margin-left:-1.506341px;}
._19{width:1.169444px;}
._1a{width:2.983861px;}
._1d{width:4.853774px;}
._5c{width:5.891760px;}
._5d{width:7.032686px;}
._38{width:8.296560px;}
._39{width:9.309101px;}
._3a{width:10.586779px;}
._60{width:11.943245px;}
._2{width:12.971268px;}
._17{width:14.118992px;}
._14{width:15.589490px;}
._b{width:16.838870px;}
._d{width:17.861069px;}
._a{width:19.259827px;}
._1b{width:20.437240px;}
._9{width:21.513506px;}
._11{width:22.535401px;}
._15{width:23.611362px;}
._1{width:25.186966px;}
._e{width:26.845373px;}
._f{width:27.855430px;}
._16{width:29.479598px;}
._4{width:30.587087px;}
._5{width:33.351091px;}
._50{width:35.580682px;}
._10{width:37.001096px;}
._2e{width:38.545239px;}
._5f{width:39.882276px;}
._18{width:41.119566px;}
._2d{width:42.799330px;}
._6{width:54.423042px;}
._62{width:61.868160px;}
._7{width:69.371016px;}
._53{width:82.968741px;}
._61{width:88.767360px;}
._54{width:94.923891px;}
._29{width:105.875251px;}
._47{width:116.921367px;}
._48{width:118.834191px;}
._45{width:129.832929px;}
._2a{width:132.774451px;}
._46{width:141.788079px;}
._44{width:154.030153px;}
._24{width:157.521715px;}
._31{width:161.317622px;}
._25{width:171.025114px;}
._30{width:181.316977px;}
._2f{width:183.535463px;}
._28{width:192.544474px;}
._20{width:197.924314px;}
._1f{width:211.320115px;}
._49{width:214.044706px;}
._52{width:218.827066px;}
._32{width:239.054879px;}
._27{width:242.472403px;}
._59{width:253.401359px;}
._58{width:266.025998px;}
._23{width:271.090138px;}
._55{width:274.298662px;}
._4f{width:277.024736px;}
._2b{width:283.947955px;}
._36{width:285.297700px;}
._1e{width:297.989338px;}
._57{width:301.270434px;}
._42{width:314.563907px;}
._43{width:315.855063px;}
._3e{width:318.533017px;}
._51{width:322.502126px;}
._4a{width:324.606233px;}
._35{width:328.480355px;}
._4e{width:330.154076px;}
._56{width:334.296097px;}
._2c{width:335.486822px;}
._41{width:337.135230px;}
._3d{width:341.104340px;}
._4b{width:343.304087px;}
._21{width:346.999680px;}
._3c{width:350.429357px;}
._4d{width:357.224193px;}
._26{width:362.547418px;}
._34{width:364.966819px;}
._3f{width:387.299039px;}
._33{width:394.376488px;}
._22{width:398.484749px;}
._40{width:408.531386px;}
._4c{width:421.873333px;}
._12{width:711.652484px;}
._5b{width:2063.640796px;}
._37{width:2087.400796px;}
._5a{width:2475.407929px;}
._13{width:2499.317929px;}
._3b{width:3953.393929px;}
.fc4{color:transparent;}
.fc3{color:rgb(91,155,213);}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(52,74,39);}
.fc5{color:rgb(46,46,46);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.865600px;}
.fs11{font-size:36.000000px;}
.fsc{font-size:37.371600px;}
.fs0{font-size:41.842800px;}
.fs9{font-size:43.600200px;}
.fs7{font-size:45.429600px;}
.fs6{font-size:47.337600px;}
.fs4{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fsb{font-size:49.829400px;}
.fs5{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fsa{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fsf{font-size:60.120000px;}
.fs8{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:131.723856px;}
.y18e{bottom:-533.857500px;}
.y1a2{bottom:-382.027500px;}
.y1e7{bottom:-363.198000px;}
.y1a1{bottom:-360.517500px;}
.y1a0{bottom:-341.347500px;}
.y19f{bottom:-322.057500px;}
.y202{bottom:-306.048000px;}
.y19e{bottom:-302.797500px;}
.y201{bottom:-286.878000px;}
.y19d{bottom:-283.627500px;}
.y200{bottom:-267.618000px;}
.y19c{bottom:-264.367500px;}
.y1ff{bottom:-248.358000px;}
.y19b{bottom:-245.107500px;}
.y1fe{bottom:-229.188000px;}
.y19a{bottom:-225.937500px;}
.y1fd{bottom:-209.928000px;}
.y199{bottom:-206.677500px;}
.y1fc{bottom:-190.758000px;}
.y198{bottom:-187.507500px;}
.y1fb{bottom:-171.498000px;}
.y197{bottom:-168.247500px;}
.y196{bottom:-148.987500px;}
.y1fa{bottom:-147.798000px;}
.y195{bottom:-129.817500px;}
.y1f9{bottom:-110.988000px;}
.y194{bottom:-110.557500px;}
.y1f8{bottom:-93.528000px;}
.y193{bottom:-91.387500px;}
.y1f7{bottom:-76.248000px;}
.y192{bottom:-63.577500px;}
.y1f6{bottom:-58.968000px;}
.y191{bottom:-46.117500px;}
.y1f5{bottom:-41.688000px;}
.y190{bottom:-28.837500px;}
.y1f4{bottom:-19.278000px;}
.y0{bottom:0.000000px;}
.y18f{bottom:2.572500px;}
.y1c{bottom:16.849635px;}
.y4a{bottom:31.890000px;}
.y1af{bottom:91.665000px;}
.y117{bottom:97.302000px;}
.y148{bottom:98.953500px;}
.y49{bottom:103.621500px;}
.y1a{bottom:104.646000px;}
.y250{bottom:104.689500px;}
.yf0{bottom:105.847500px;}
.y81{bottom:107.641500px;}
.y1ae{bottom:110.494500px;}
.y116{bottom:116.131500px;}
.y147{bottom:117.783000px;}
.y24f{bottom:121.950000px;}
.y48{bottom:122.449500px;}
.y19{bottom:122.535000px;}
.yef{bottom:124.677000px;}
.y289{bottom:124.752000px;}
.y80{bottom:126.471000px;}
.yba{bottom:126.919500px;}
.y1ad{bottom:129.324000px;}
.y115{bottom:134.961000px;}
.y146{bottom:136.612500px;}
.y24e{bottom:139.210500px;}
.y18{bottom:140.422500px;}
.y47{bottom:141.279000px;}
.y288{bottom:142.012500px;}
.y7f{bottom:145.300500px;}
.yee{bottom:147.990000px;}
.y1ac{bottom:148.153500px;}
.y114{bottom:153.790500px;}
.y145{bottom:155.442000px;}
.y24d{bottom:156.471000px;}
.y17{bottom:158.310000px;}
.y287{bottom:159.273000px;}
.y46{bottom:160.108500px;}
.yb9{bottom:161.440500px;}
.y7e{bottom:164.130000px;}
.y21b{bottom:164.592000px;}
.y1ab{bottom:166.983000px;}
.y24c{bottom:173.731500px;}
.y144{bottom:174.271500px;}
.y16{bottom:176.199000px;}
.y286{bottom:176.533500px;}
.y113{bottom:177.103500px;}
.y45{bottom:178.938000px;}
.yb8{bottom:180.268500px;}
.yed{bottom:181.614000px;}
.y1ce{bottom:182.062500px;}
.y7d{bottom:182.959500px;}
.y1aa{bottom:185.812500px;}
.y24b{bottom:190.992000px;}
.y143{bottom:193.101000px;}
.y285{bottom:193.794000px;}
.y15{bottom:194.086500px;}
.y44{bottom:197.767500px;}
.y21a{bottom:198.216000px;}
.yb7{bottom:199.098000px;}
.yec{bottom:200.443500px;}
.y1cd{bottom:200.892000px;}
.y7c{bottom:201.789000px;}
.y1a9{bottom:204.642000px;}
.y24a{bottom:208.252500px;}
.y284{bottom:211.053000px;}
.y142{bottom:211.930500px;}
.y14{bottom:211.974000px;}
.y112{bottom:214.026000px;}
.y43{bottom:216.597000px;}
.y219{bottom:217.045500px;}
.yb6{bottom:217.927500px;}
.yeb{bottom:219.273000px;}
.y1cc{bottom:219.721500px;}
.y7b{bottom:220.618500px;}
.y1a8{bottom:223.471500px;}
.y249{bottom:225.513000px;}
.y111{bottom:228.223500px;}
.y283{bottom:228.313500px;}
.y13{bottom:229.863000px;}
.y141{bottom:230.760000px;}
.y42{bottom:235.426500px;}
.y218{bottom:235.875000px;}
.yb5{bottom:236.757000px;}
.yea{bottom:238.102500px;}
.y1cb{bottom:238.551000px;}
.y7a{bottom:239.446500px;}
.y1a7{bottom:242.301000px;}
.y110{bottom:242.419500px;}
.y248{bottom:242.773500px;}
.y282{bottom:245.574000px;}
.y181{bottom:248.527500px;}
.y140{bottom:249.589500px;}
.y41{bottom:254.256000px;}
.y217{bottom:254.704500px;}
.ye9{bottom:256.932000px;}
.y1ca{bottom:257.380500px;}
.y79{bottom:258.276000px;}
.y247{bottom:260.032500px;}
.yb4{bottom:260.070000px;}
.y10f{bottom:261.264000px;}
.y281{bottom:262.834500px;}
.y1a6{bottom:265.614000px;}
.y180{bottom:267.357000px;}
.y13e{bottom:268.417500px;}
.ye8{bottom:273.031500px;}
.y40{bottom:273.085500px;}
.y216{bottom:273.534000px;}
.y13f{bottom:273.843000px;}
.ye7{bottom:275.761500px;}
.y1c9{bottom:276.210000px;}
.y78{bottom:277.105500px;}
.y246{bottom:277.293000px;}
.y10e{bottom:277.702500px;}
.y280{bottom:280.095000px;}
.y17f{bottom:286.186500px;}
.y13c{bottom:287.247000px;}
.y3f{bottom:291.915000px;}
.y215{bottom:292.363500px;}
.y13d{bottom:292.672500px;}
.y1a5{bottom:293.539500px;}
.yb3{bottom:293.694000px;}
.y245{bottom:294.553500px;}
.ye6{bottom:294.591000px;}
.y1c8{bottom:295.039500px;}
.y77{bottom:295.935000px;}
.y27f{bottom:297.355500px;}
.y12{bottom:298.876500px;}
.y10d{bottom:301.342500px;}
.y13b{bottom:303.346500px;}
.y17e{bottom:305.016000px;}
.y13a{bottom:306.076500px;}
.y3e{bottom:310.744500px;}
.y214{bottom:311.193000px;}
.y244{bottom:311.814000px;}
.yb2{bottom:312.523500px;}
.y1a4{bottom:312.772500px;}
.ye5{bottom:313.420500px;}
.y1c7{bottom:313.869000px;}
.y27e{bottom:314.616000px;}
.y76{bottom:314.764500px;}
.y11{bottom:316.764000px;}
.y10c{bottom:317.781000px;}
.y138{bottom:322.176000px;}
.y17d{bottom:323.845500px;}
.y137{bottom:324.906000px;}
.y243{bottom:329.074500px;}
.y3d{bottom:329.574000px;}
.y213{bottom:330.022500px;}
.y139{bottom:330.331500px;}
.yb0{bottom:331.353000px;}
.y27d{bottom:331.876500px;}
.y1a3{bottom:332.005500px;}
.ye4{bottom:332.250000px;}
.y1c6{bottom:332.698500px;}
.y75{bottom:333.594000px;}
.y10{bottom:334.653000px;}
.yb1{bottom:336.777000px;}
.y10b{bottom:341.421000px;}
.y17c{bottom:342.675000px;}
.y136{bottom:343.735500px;}
.y242{bottom:346.335000px;}
.y3c{bottom:348.403500px;}
.y212{bottom:348.852000px;}
.y27c{bottom:349.135500px;}
.yae{bottom:350.182500px;}
.ye3{bottom:351.079500px;}
.y1c5{bottom:351.528000px;}
.y74{bottom:352.423500px;}
.yf{bottom:352.540500px;}
.y18b{bottom:354.435000px;}
.yaf{bottom:355.606500px;}
.y10a{bottom:357.859500px;}
.y17b{bottom:361.504500px;}
.y135{bottom:362.565000px;}
.y241{bottom:363.595500px;}
.y27b{bottom:366.396000px;}
.y3b{bottom:367.233000px;}
.y211{bottom:367.681500px;}
.yad{bottom:369.012000px;}
.ye2{bottom:369.909000px;}
.y1c4{bottom:370.357500px;}
.y73{bottom:371.253000px;}
.y17a{bottom:377.604000px;}
.y179{bottom:380.334000px;}
.y240{bottom:380.856000px;}
.ye{bottom:380.889000px;}
.y134{bottom:381.394500px;}
.y27a{bottom:383.656500px;}
.y3a{bottom:386.062500px;}
.y210{bottom:386.511000px;}
.yac{bottom:387.841500px;}
.ye1{bottom:388.738500px;}
.y1c3{bottom:389.187000px;}
.y109{bottom:389.479500px;}
.y72{bottom:390.082500px;}
.y23f{bottom:398.115000px;}
.yd{bottom:398.776500px;}
.y178{bottom:399.163500px;}
.y133{bottom:400.224000px;}
.y279{bottom:400.917000px;}
.y39{bottom:404.892000px;}
.y20f{bottom:405.340500px;}
.yab{bottom:406.671000px;}
.ye0{bottom:407.568000px;}
.y1c2{bottom:408.015000px;}
.y71{bottom:408.912000px;}
.y23e{bottom:415.375500px;}
.y131{bottom:416.323500px;}
.yc{bottom:416.665500px;}
.y1e2{bottom:417.436500px;}
.y177{bottom:417.993000px;}
.y278{bottom:418.177500px;}
.y130{bottom:419.053500px;}
.y38{bottom:423.721500px;}
.y20e{bottom:424.170000px;}
.y132{bottom:424.479000px;}
.yaa{bottom:425.500500px;}
.ydf{bottom:426.397500px;}
.y70{bottom:427.741500px;}
.y1c1{bottom:431.328000px;}
.y1e1{bottom:431.632500px;}
.y23d{bottom:432.636000px;}
.y176{bottom:434.092500px;}
.yb{bottom:434.553000px;}
.y12f{bottom:435.153000px;}
.y277{bottom:435.438000px;}
.y175{bottom:436.822500px;}
.y12d{bottom:437.883000px;}
.y37{bottom:442.551000px;}
.y20d{bottom:442.999500px;}
.y12e{bottom:443.308500px;}
.ya9{bottom:444.330000px;}
.yde{bottom:445.227000px;}
.y6f{bottom:446.571000px;}
.y23c{bottom:449.896500px;}
.ya{bottom:452.440500px;}
.y276{bottom:452.698500px;}
.y1e0{bottom:452.793000px;}
.y174{bottom:455.652000px;}
.y12b{bottom:456.712500px;}
.y20c{bottom:461.829000px;}
.y12c{bottom:462.138000px;}
.y108{bottom:463.159500px;}
.y1c0{bottom:464.952000px;}
.y6e{bottom:465.400500px;}
.y36{bottom:465.864000px;}
.y1df{bottom:466.989000px;}
.y23b{bottom:467.157000px;}
.ya8{bottom:467.643000px;}
.ydd{bottom:468.538500px;}
.y275{bottom:469.959000px;}
.y173{bottom:474.480000px;}
.y12a{bottom:475.542000px;}
.y9{bottom:479.295000px;}
.y20b{bottom:480.658500px;}
.y107{bottom:481.989000px;}
.y1bf{bottom:483.781500px;}
.y6d{bottom:484.230000px;}
.y23a{bottom:484.417500px;}
.y274{bottom:487.219500px;}
.y1de{bottom:488.388000px;}
.y172{bottom:493.309500px;}
.y129{bottom:494.371500px;}
.y8{bottom:497.184000px;}
.y20a{bottom:499.488000px;}
.y106{bottom:500.818500px;}
.ya7{bottom:501.267000px;}
.ydc{bottom:502.162500px;}
.y1dd{bottom:502.585500px;}
.y1be{bottom:502.611000px;}
.y6c{bottom:503.059500px;}
.y273{bottom:504.478500px;}
.y1f3{bottom:504.732000px;}
.y239{bottom:506.161500px;}
.y171{bottom:509.410500px;}
.y170{bottom:512.139000px;}
.y7{bottom:515.071500px;}
.ya6{bottom:517.366500px;}
.y128{bottom:517.684500px;}
.y209{bottom:518.317500px;}
.y105{bottom:519.648000px;}
.ya5{bottom:520.095000px;}
.ydb{bottom:520.992000px;}
.y1bd{bottom:521.440500px;}
.y272{bottom:521.739000px;}
.y6b{bottom:521.889000px;}
.y1dc{bottom:523.984500px;}
.y1f2{bottom:523.992000px;}
.y16f{bottom:530.968500px;}
.y6{bottom:532.959000px;}
.ya4{bottom:536.196000px;}
.yda{bottom:537.091500px;}
.y208{bottom:537.145500px;}
.y104{bottom:538.477500px;}
.ya3{bottom:538.924500px;}
.y271{bottom:538.999500px;}
.y238{bottom:539.785500px;}
.yd9{bottom:539.821500px;}
.y1bb{bottom:540.270000px;}
.y6a{bottom:540.718500px;}
.y35{bottom:541.014000px;}
.y1f1{bottom:543.252000px;}
.y1bc{bottom:545.694000px;}
.y16e{bottom:549.798000px;}
.y5{bottom:550.848000px;}
.y127{bottom:551.308500px;}
.y1db{bottom:554.035500px;}
.y270{bottom:556.260000px;}
.y103{bottom:557.307000px;}
.y237{bottom:557.359500px;}
.ya2{bottom:557.754000px;}
.yd7{bottom:558.651000px;}
.y1b9{bottom:559.099500px;}
.y69{bottom:559.548000px;}
.y1f0{bottom:562.422000px;}
.yd8{bottom:564.076500px;}
.y1ba{bottom:564.523500px;}
.y207{bottom:568.599000px;}
.y16d{bottom:568.627500px;}
.y4{bottom:568.735500px;}
.y126{bottom:570.138000px;}
.y1d9{bottom:573.267000px;}
.y26f{bottom:573.520500px;}
.ya1{bottom:573.853500px;}
.y236{bottom:574.933500px;}
.y102{bottom:576.136500px;}
.ya0{bottom:576.583500px;}
.yd5{bottom:577.480500px;}
.y1b8{bottom:577.929000px;}
.y1da{bottom:578.149500px;}
.y68{bottom:578.377500px;}
.y34{bottom:578.403000px;}
.y1ef{bottom:581.682000px;}
.yd6{bottom:582.906000px;}
.y16c{bottom:584.727000px;}
.y3{bottom:586.623000px;}
.y16b{bottom:587.457000px;}
.y206{bottom:587.832000px;}
.y125{bottom:588.967500px;}
.y26e{bottom:590.781000px;}
.y9f{bottom:592.683000px;}
.yd4{bottom:593.580000px;}
.y101{bottom:594.964500px;}
.y9e{bottom:595.413000px;}
.yd3{bottom:596.310000px;}
.y1b7{bottom:596.758500px;}
.y67{bottom:597.207000px;}
.y33{bottom:597.861000px;}
.y18d{bottom:600.322500px;}
.y1ee{bottom:600.942000px;}
.y235{bottom:601.473000px;}
.y2{bottom:604.512000px;}
.y16a{bottom:606.286500px;}
.y205{bottom:607.065000px;}
.y124{bottom:607.797000px;}
.y26d{bottom:608.041500px;}
.y18c{bottom:609.952500px;}
.y1d8{bottom:612.517500px;}
.y100{bottom:613.794000px;}
.y9d{bottom:614.242500px;}
.yd2{bottom:615.139500px;}
.y1b6{bottom:615.588000px;}
.y66{bottom:616.036500px;}
.y32{bottom:617.317500px;}
.y234{bottom:619.047000px;}
.y1ed{bottom:620.112000px;}
.y1{bottom:622.399500px;}
.y169{bottom:625.116000px;}
.y26c{bottom:625.302000px;}
.y204{bottom:626.298000px;}
.y123{bottom:626.626500px;}
.y1d7{bottom:626.715000px;}
.y9c{bottom:630.342000px;}
.yff{bottom:632.623500px;}
.y9b{bottom:633.072000px;}
.yd1{bottom:633.969000px;}
.y1b5{bottom:634.417500px;}
.y65{bottom:634.866000px;}
.y31{bottom:636.774000px;}
.y1ec{bottom:639.372000px;}
.y26b{bottom:642.561000px;}
.y168{bottom:643.945500px;}
.y203{bottom:645.529500px;}
.y233{bottom:645.588000px;}
.y1d6{bottom:647.874000px;}
.y9a{bottom:649.171500px;}
.yfe{bottom:651.453000px;}
.y99{bottom:651.901500px;}
.yd0{bottom:652.798500px;}
.y1b4{bottom:653.247000px;}
.y64{bottom:653.695500px;}
.y30{bottom:656.232000px;}
.y1eb{bottom:658.542000px;}
.y26a{bottom:659.821500px;}
.y1d5{bottom:662.071500px;}
.y232{bottom:663.162000px;}
.y122{bottom:666.687000px;}
.y167{bottom:667.258500px;}
.y1e4{bottom:667.959000px;}
.y98{bottom:668.001000px;}
.yfd{bottom:670.282500px;}
.y97{bottom:670.731000px;}
.ycf{bottom:671.628000px;}
.y1b3{bottom:672.076500px;}
.y63{bottom:672.525000px;}
.y2f{bottom:675.688500px;}
.y269{bottom:677.082000px;}
.y1ea{bottom:677.832000px;}
.y121{bottom:680.884500px;}
.y1d4{bottom:683.470500px;}
.yfc{bottom:689.112000px;}
.y96{bottom:689.560500px;}
.y231{bottom:689.703000px;}
.yce{bottom:690.457500px;}
.y1b2{bottom:690.906000px;}
.y62{bottom:691.354500px;}
.y268{bottom:694.342500px;}
.y120{bottom:695.080500px;}
.y2e{bottom:695.145000px;}
.y1e9{bottom:697.092000px;}
.y1d3{bottom:697.666500px;}
.y166{bottom:700.882500px;}
.y230{bottom:707.277000px;}
.yfb{bottom:707.941500px;}
.y94{bottom:708.390000px;}
.y1b1{bottom:709.735500px;}
.y61{bottom:710.184000px;}
.y267{bottom:711.603000px;}
.ycd{bottom:713.770500px;}
.y95{bottom:713.815500px;}
.y11f{bottom:713.925000px;}
.y2d{bottom:714.603000px;}
.y1e8{bottom:716.262000px;}
.y1d2{bottom:719.067000px;}
.y165{bottom:719.712000px;}
.y22f{bottom:724.851000px;}
.yfa{bottom:726.771000px;}
.y93{bottom:727.219500px;}
.y1b0{bottom:728.565000px;}
.y266{bottom:728.863500px;}
.y60{bottom:729.013500px;}
.y11e{bottom:730.363500px;}
.y2c{bottom:734.059500px;}
.y164{bottom:735.811500px;}
.y163{bottom:738.541500px;}
.yf9{bottom:745.600500px;}
.y91{bottom:746.049000px;}
.y265{bottom:746.124000px;}
.ycc{bottom:747.394500px;}
.y5f{bottom:747.843000px;}
.y1d0{bottom:749.116500px;}
.y22e{bottom:751.392000px;}
.y92{bottom:751.473000px;}
.y2b{bottom:753.517500px;}
.y1d1{bottom:753.999000px;}
.y11d{bottom:754.003500px;}
.y162{bottom:757.371000px;}
.y264{bottom:763.384500px;}
.ycb{bottom:763.494000px;}
.yf8{bottom:764.430000px;}
.y90{bottom:764.878500px;}
.yc9{bottom:766.224000px;}
.y5e{bottom:766.671000px;}
.y22d{bottom:768.966000px;}
.y2a{bottom:770.352000px;}
.y11c{bottom:770.442000px;}
.y1e6{bottom:770.982000px;}
.yca{bottom:771.648000px;}
.y29{bottom:772.974000px;}
.y161{bottom:773.470500px;}
.y160{bottom:776.200500px;}
.y1e5{bottom:780.612000px;}
.y263{bottom:780.645000px;}
.yf7{bottom:783.259500px;}
.y8e{bottom:783.708000px;}
.yc7{bottom:785.053500px;}
.y5d{bottom:785.500500px;}
.y22c{bottom:786.540000px;}
.y8f{bottom:789.132000px;}
.yc8{bottom:790.477500px;}
.y28{bottom:792.430500px;}
.y11b{bottom:794.083500px;}
.y15f{bottom:795.030000px;}
.y262{bottom:797.904000px;}
.y1cf{bottom:801.433500px;}
.yf6{bottom:802.089000px;}
.y8d{bottom:802.537500px;}
.yc6{bottom:803.883000px;}
.y22b{bottom:804.114000px;}
.y5c{bottom:804.330000px;}
.y11a{bottom:810.522000px;}
.y15d{bottom:811.129500px;}
.y27{bottom:811.888500px;}
.y15c{bottom:813.859500px;}
.y261{bottom:815.164500px;}
.y15e{bottom:819.283500px;}
.y8c{bottom:821.367000px;}
.y22a{bottom:821.688000px;}
.yc5{bottom:822.712500px;}
.y5b{bottom:823.159500px;}
.yf5{bottom:825.402000px;}
.y26{bottom:831.345000px;}
.y260{bottom:832.425000px;}
.y15a{bottom:832.689000px;}
.y15b{bottom:838.113000px;}
.y8b{bottom:840.196500px;}
.yc4{bottom:841.540500px;}
.y5a{bottom:841.989000px;}
.y119{bottom:842.140500px;}
.yf4{bottom:845.575500px;}
.y229{bottom:848.229000px;}
.y159{bottom:848.788500px;}
.y25f{bottom:849.685500px;}
.y25{bottom:850.801500px;}
.y157{bottom:851.518500px;}
.y158{bottom:856.942500px;}
.y8a{bottom:859.026000px;}
.yc3{bottom:860.370000px;}
.y59{bottom:860.818500px;}
.y118{bottom:861.373500px;}
.y228{bottom:866.274000px;}
.y25e{bottom:866.946000px;}
.y155{bottom:870.348000px;}
.y156{bottom:875.772000px;}
.y89{bottom:877.855500px;}
.yc1{bottom:879.199500px;}
.y58{bottom:879.648000px;}
.y25d{bottom:884.206500px;}
.y227{bottom:884.319000px;}
.yc2{bottom:884.625000px;}
.y24{bottom:888.313500px;}
.y154{bottom:889.177500px;}
.y88{bottom:896.685000px;}
.y28b{bottom:896.908500px;}
.yc0{bottom:898.029000px;}
.y57{bottom:898.477500px;}
.y25c{bottom:901.467000px;}
.y23{bottom:904.453500px;}
.y152{bottom:908.005500px;}
.y153{bottom:913.431000px;}
.y28a{bottom:914.169000px;}
.y87{bottom:915.514500px;}
.ybf{bottom:916.858500px;}
.y56{bottom:917.307000px;}
.y25b{bottom:918.727500px;}
.y226{bottom:920.296500px;}
.y22{bottom:920.593500px;}
.y86{bottom:934.344000px;}
.ybe{bottom:935.688000px;}
.y25a{bottom:935.986500px;}
.y55{bottom:936.136500px;}
.y225{bottom:939.126000px;}
.y18a{bottom:945.079500px;}
.y151{bottom:948.067500px;}
.y85{bottom:953.173500px;}
.y259{bottom:953.247000px;}
.ybd{bottom:954.517500px;}
.y54{bottom:954.966000px;}
.y224{bottom:957.955500px;}
.yf3{bottom:959.001000px;}
.y189{bottom:959.275500px;}
.y150{bottom:962.265000px;}
.y21{bottom:968.535000px;}
.y258{bottom:970.507500px;}
.y84{bottom:972.003000px;}
.y188{bottom:973.473000px;}
.y53{bottom:973.795500px;}
.y14f{bottom:976.461000px;}
.y223{bottom:976.785000px;}
.ybc{bottom:977.830500px;}
.y257{bottom:987.768000px;}
.y187{bottom:991.644000px;}
.y52{bottom:992.625000px;}
.y14e{bottom:995.305500px;}
.y83{bottom:995.314500px;}
.y222{bottom:995.614500px;}
.y256{bottom:1005.028500px;}
.y186{bottom:1005.840000px;}
.y20{bottom:1008.454500px;}
.y51{bottom:1011.454500px;}
.y14d{bottom:1011.744000px;}
.y221{bottom:1014.444000px;}
.y82{bottom:1015.489500px;}
.y255{bottom:1022.289000px;}
.y185{bottom:1027.240500px;}
.y50{bottom:1030.284000px;}
.y220{bottom:1033.272000px;}
.y14c{bottom:1035.384000px;}
.y1f{bottom:1036.699500px;}
.y254{bottom:1039.549500px;}
.ybb{bottom:1039.698000px;}
.y184{bottom:1041.436500px;}
.y4f{bottom:1049.113500px;}
.y14b{bottom:1051.822500px;}
.y21f{bottom:1052.101500px;}
.y253{bottom:1056.810000px;}
.y183{bottom:1062.835500px;}
.y1e{bottom:1064.943000px;}
.yf2{bottom:1065.213000px;}
.y4e{bottom:1067.943000px;}
.y21e{bottom:1070.931000px;}
.y252{bottom:1074.070500px;}
.y14a{bottom:1075.462500px;}
.y182{bottom:1077.033000px;}
.yf1{bottom:1084.042500px;}
.y4d{bottom:1086.772500px;}
.y21d{bottom:1089.760500px;}
.y251{bottom:1091.329500px;}
.y1d{bottom:1093.188000px;}
.y4c{bottom:1105.602000px;}
.y149{bottom:1107.082500px;}
.y21c{bottom:1108.590000px;}
.y1b{bottom:1136.674500px;}
.y4b{bottom:1168.366500px;}
.y1e3{bottom:1171.354500px;}
.he{height:25.070054px;}
.h12{height:27.855430px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h14{height:31.526842px;}
.h15{height:33.072749px;}
.h1c{height:33.186380px;}
.h2b{height:34.574294px;}
.h20{height:34.717756px;}
.ha{height:34.813397px;}
.h11{height:35.052500px;}
.h2e{height:37.334628px;}
.hb{height:38.896243px;}
.h21{height:38.950829px;}
.h1d{height:39.057638px;}
.hc{height:39.165235px;}
.hd{height:39.434227px;}
.h17{height:41.482876px;}
.h13{height:42.380900px;}
.hf{height:43.217759px;}
.h10{height:43.516637px;}
.h6{height:43.815515px;}
.h27{height:44.268047px;}
.h24{height:44.279648px;}
.h9{height:44.473046px;}
.h1e{height:45.438344px;}
.h1a{height:45.444344px;}
.h2f{height:49.117939px;}
.h1b{height:49.782344px;}
.h26{height:49.939453px;}
.h2c{height:49.985558px;}
.h2a{height:49.991558px;}
.h4{height:50.931027px;}
.h16{height:52.402876px;}
.h19{height:54.575123px;}
.h18{height:54.774749px;}
.h25{height:55.599258px;}
.h22{height:62.966294px;}
.h1f{height:71.931638px;}
.h8{height:77.792486px;}
.h7{height:78.115277px;}
.h5{height:82.327410px;}
.h2d{height:464.542500px;}
.h23{height:563.955000px;}
.h28{height:892.914000px;}
.h29{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:196.723648px;}
.w3{width:409.221000px;}
.w6{width:413.242500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.xf1{left:-214.846500px;}
.xd5{left:-190.275000px;}
.xf2{left:-19.246500px;}
.x0{left:0.000000px;}
.xd6{left:5.325000px;}
.xf3{left:12.613500px;}
.xd7{left:37.185000px;}
.x1{left:53.574000px;}
.x2{left:58.043648px;}
.xeb{left:66.366000px;}
.xea{left:76.276500px;}
.xf0{left:82.566000px;}
.x100{left:85.848000px;}
.xef{left:92.476500px;}
.xe9{left:160.975500px;}
.x103{left:185.089500px;}
.xee{left:193.375500px;}
.x106{left:238.488000px;}
.x39{left:247.348500px;}
.x4{left:248.526000px;}
.x3{left:249.591000px;}
.x8f{left:254.205000px;}
.x83{left:262.068000px;}
.x78{left:269.083500px;}
.xd4{left:272.094000px;}
.x17{left:273.423000px;}
.x79{left:275.508000px;}
.xbc{left:276.703500px;}
.x10{left:281.479500px;}
.x90{left:283.758000px;}
.x60{left:286.612500px;}
.x82{left:287.641500px;}
.x97{left:288.774000px;}
.xfa{left:291.949500px;}
.xfe{left:294.727500px;}
.x99{left:296.707500px;}
.x61{left:297.730500px;}
.x9c{left:298.803000px;}
.xad{left:300.408000px;}
.x7a{left:301.723500px;}
.x98{left:303.718500px;}
.x11{left:307.092000px;}
.x5{left:308.697000px;}
.xf4{left:310.357500px;}
.x7b{left:311.518500px;}
.x12{left:314.565000px;}
.xfd{left:316.164000px;}
.x62{left:317.238000px;}
.xa4{left:321.925500px;}
.x63{left:323.664000px;}
.xd8{left:327.630000px;}
.x9e{left:329.761500px;}
.xa5{left:336.870000px;}
.xd9{left:338.094000px;}
.x57{left:342.258000px;}
.x6{left:343.920000px;}
.x58{left:348.684000px;}
.xe4{left:350.541000px;}
.x7{left:352.228500px;}
.x59{left:353.760000px;}
.xd0{left:355.527000px;}
.x64{left:361.071000px;}
.x5a{left:364.878000px;}
.x87{left:367.302000px;}
.xc8{left:368.838000px;}
.xe1{left:369.900000px;}
.x86{left:371.179500px;}
.x45{left:372.960000px;}
.xbb{left:377.736000px;}
.x46{left:382.189500px;}
.x5b{left:385.180500px;}
.xae{left:387.048000px;}
.x5c{left:391.606500px;}
.xa7{left:392.851500px;}
.x9a{left:396.222000px;}
.xa6{left:399.265500px;}
.xb5{left:400.974000px;}
.x8{left:402.741000px;}
.xb8{left:405.067500px;}
.x4b{left:406.236000px;}
.x9{left:408.718500px;}
.x75{left:410.332500px;}
.x4c{left:412.662000px;}
.x65{left:415.255500px;}
.x76{left:416.758500px;}
.xdd{left:420.699000px;}
.x47{left:424.339500px;}
.x66{left:426.373500px;}
.xc9{left:428.352000px;}
.x7c{left:429.432000px;}
.xa{left:433.273500px;}
.xde{left:435.643500px;}
.x37{left:436.816500px;}
.x48{left:440.106000px;}
.x9f{left:441.268500px;}
.xb{left:442.860000px;}
.xb1{left:445.243500px;}
.x49{left:446.482500px;}
.xa0{left:447.694500px;}
.xb7{left:450.345000px;}
.x38{left:451.761000px;}
.xc3{left:455.740500px;}
.xa1{left:459.205500px;}
.xdc{left:462.003000px;}
.xc4{left:463.428000px;}
.x4a{left:465.981000px;}
.xbe{left:472.179000px;}
.xd1{left:473.299500px;}
.x3a{left:477.871500px;}
.xc6{left:481.014000px;}
.xcb{left:482.664000px;}
.x96{left:486.063000px;}
.x18{left:488.347500px;}
.x3b{left:492.814500px;}
.x19{left:495.820500px;}
.xc{left:497.311500px;}
.xf5{left:498.933000px;}
.x70{left:501.124500px;}
.x1a{left:503.440500px;}
.xd{left:505.618500px;}
.xc7{left:508.078500px;}
.xab{left:509.385000px;}
.x1b{left:510.913500px;}
.xb0{left:513.412500px;}
.xa8{left:516.007500px;}
.xdf{left:521.023500px;}
.x4d{left:523.726500px;}
.xaf{left:527.755500px;}
.x4e{left:530.152500px;}
.xcc{left:532.254000px;}
.xe0{left:536.790000px;}
.xcd{left:547.198500px;}
.x22{left:548.544000px;}
.x4f{left:551.340000px;}
.x88{left:554.992500px;}
.x23{left:556.017000px;}
.xbf{left:558.232500px;}
.x24{left:559.741500px;}
.x2a{left:561.102000px;}
.x50{left:562.458000px;}
.x89{left:564.223500px;}
.xf6{left:566.026500px;}
.x25{left:567.213000px;}
.xe{left:569.698500px;}
.x26{left:570.937500px;}
.xc0{left:573.177000px;}
.xf7{left:574.998000px;}
.x2b{left:576.046500px;}
.x67{left:577.947000px;}
.xf{left:579.285000px;}
.xd2{left:581.818500px;}
.x30{left:582.981000px;}
.x27{left:585.882000px;}
.x13{left:587.616000px;}
.x51{left:589.188000px;}
.xff{left:590.605500px;}
.x31{left:592.210500px;}
.x14{left:595.087500px;}
.x68{left:597.453000px;}
.xe2{left:600.895500px;}
.x15{left:602.709000px;}
.x69{left:603.879000px;}
.x101{left:607.849500px;}
.x16{left:610.180500px;}
.xbd{left:611.908500px;}
.xe3{left:615.840000px;}
.x84{left:620.199000px;}
.xa9{left:624.195000px;}
.xce{left:631.966500px;}
.x102{left:634.747500px;}
.x85{left:636.211500px;}
.x3c{left:638.154000px;}
.xc1{left:639.330000px;}
.xcf{left:642.657000px;}
.x93{left:646.174500px;}
.xaa{left:648.451500px;}
.xb9{left:650.212500px;}
.xb2{left:651.808500px;}
.x3d{left:653.098500px;}
.xd3{left:654.684000px;}
.x8a{left:662.326500px;}
.xba{left:665.157000px;}
.x7d{left:668.790000px;}
.x6a{left:670.674000px;}
.x7e{left:678.021000px;}
.x6b{left:679.903500px;}
.x105{left:682.207500px;}
.x8b{left:684.445500px;}
.x71{left:686.052000px;}
.xb6{left:687.625500px;}
.x94{left:688.815000px;}
.xc5{left:691.219500px;}
.x72{left:692.478000px;}
.x41{left:694.566000px;}
.xb3{left:697.894500px;}
.x8c{left:700.212000px;}
.x42{left:701.371500px;}
.xa2{left:702.568500px;}
.x95{left:704.583000px;}
.x52{left:705.642000px;}
.x3e{left:711.241500px;}
.x20{left:716.266500px;}
.xa3{left:717.511500px;}
.x73{left:719.761500px;}
.x6c{left:722.515500px;}
.x21{left:723.738000px;}
.x53{left:725.946000px;}
.x3f{left:727.587000px;}
.x7f{left:730.978500px;}
.x54{left:732.372000px;}
.xac{left:733.378500px;}
.x5d{left:735.294000px;}
.x80{left:737.404500px;}
.x43{left:739.041000px;}
.x1c{left:740.808000px;}
.x44{left:745.846500px;}
.x92{left:747.163500px;}
.x1d{left:748.279500px;}
.x1e{left:752.037000px;}
.x9d{left:753.328500px;}
.x32{left:755.241000px;}
.x1f{left:759.510000px;}
.x8d{left:760.653000px;}
.x33{left:762.862500px;}
.x6d{left:766.995000px;}
.xfb{left:769.323000px;}
.x8e{left:770.742000px;}
.x81{left:773.413500px;}
.x28{left:775.407000px;}
.xda{left:776.434500px;}
.x34{left:777.807000px;}
.x9b{left:782.527500px;}
.x40{left:783.661500px;}
.xfc{left:784.981500px;}
.x6e{left:786.502500px;}
.x5e{left:788.196000px;}
.x29{left:790.350000px;}
.xdb{left:791.379000px;}
.x6f{left:792.928500px;}
.x35{left:795.132000px;}
.xf8{left:797.163000px;}
.x2c{left:799.441500px;}
.x91{left:801.778500px;}
.xca{left:803.751000px;}
.xf9{left:806.872500px;}
.x77{left:807.996000px;}
.x36{left:810.076500px;}
.xc2{left:811.860000px;}
.x2d{left:814.384500px;}
.x104{left:815.628000px;}
.x2e{left:818.046000px;}
.x5f{left:824.493000px;}
.x74{left:825.514500px;}
.xb4{left:826.882500px;}
.x55{left:830.544000px;}
.x2f{left:832.990500px;}
.x56{left:836.970000px;}
.xe5{left:879.360000px;}
.xe6{left:897.348000px;}
.xec{left:950.839500px;}
.xed{left:970.416000px;}
.xe7{left:1120.443000px;}
.xe8{left:1205.539500px;}
@media print{
.v2{vertical-align:-9.706667pt;}
.v7{vertical-align:-8.485333pt;}
.v8{vertical-align:-7.168000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.706667pt;}
.v9{vertical-align:11.573333pt;}
.v4{vertical-align:13.504000pt;}
.v5{vertical-align:17.360000pt;}
.v3{vertical-align:19.290667pt;}
.va{vertical-align:25.237333pt;}
.v6{vertical-align:29.221333pt;}
.ls54{letter-spacing:-0.112533pt;}
.ls60{letter-spacing:-0.112000pt;}
.ls61{letter-spacing:-0.011840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000015pt;}
.ls31{letter-spacing:0.000084pt;}
.ls2c{letter-spacing:0.000133pt;}
.ls3f{letter-spacing:0.000234pt;}
.ls18{letter-spacing:0.000249pt;}
.ls6b{letter-spacing:0.000260pt;}
.lsd{letter-spacing:0.000327pt;}
.ls29{letter-spacing:0.000400pt;}
.ls9{letter-spacing:0.000544pt;}
.ls3e{letter-spacing:0.000567pt;}
.ls2b{letter-spacing:0.000568pt;}
.lsb{letter-spacing:0.000720pt;}
.ls3b{letter-spacing:0.000747pt;}
.ls6f{letter-spacing:0.000921pt;}
.ls19{letter-spacing:0.000978pt;}
.ls30{letter-spacing:0.001007pt;}
.ls14{letter-spacing:0.001686pt;}
.ls66{letter-spacing:0.002262pt;}
.ls52{letter-spacing:0.002425pt;}
.ls3d{letter-spacing:0.003490pt;}
.ls1b{letter-spacing:0.003543pt;}
.ls71{letter-spacing:0.004242pt;}
.ls1f{letter-spacing:0.004267pt;}
.ls5a{letter-spacing:0.016000pt;}
.ls59{letter-spacing:0.096000pt;}
.ls5b{letter-spacing:0.112000pt;}
.ls53{letter-spacing:0.124267pt;}
.ls58{letter-spacing:0.129067pt;}
.ls4f{letter-spacing:0.136320pt;}
.ls4c{letter-spacing:0.160000pt;}
.ls5c{letter-spacing:0.217280pt;}
.ls45{letter-spacing:0.380773pt;}
.ls42{letter-spacing:0.386106pt;}
.ls44{letter-spacing:0.396137pt;}
.ls46{letter-spacing:0.401470pt;}
.ls47{letter-spacing:0.423901pt;}
.ls2f{letter-spacing:0.442457pt;}
.ls1c{letter-spacing:0.447791pt;}
.ls5{letter-spacing:0.482502pt;}
.ls6{letter-spacing:0.487835pt;}
.ls36{letter-spacing:0.597274pt;}
.ls37{letter-spacing:0.598938pt;}
.ls17{letter-spacing:0.662198pt;}
.ls16{letter-spacing:0.663447pt;}
.ls4d{letter-spacing:1.440000pt;}
.ls4e{letter-spacing:1.680000pt;}
.ls1d{letter-spacing:2.656533pt;}
.ls43{letter-spacing:2.657067pt;}
.ls56{letter-spacing:2.661867pt;}
.ls55{letter-spacing:3.103791pt;}
.ls7{letter-spacing:3.318400pt;}
.ls8{letter-spacing:3.323733pt;}
.ls50{letter-spacing:7.440000pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6e{letter-spacing:10.419265pt;}
.ls33{letter-spacing:10.608010pt;}
.ls21{letter-spacing:10.623733pt;}
.ls3{letter-spacing:10.626533pt;}
.ls4b{letter-spacing:10.629067pt;}
.ls3a{letter-spacing:10.708917pt;}
.ls57{letter-spacing:10.735658pt;}
.ls4a{letter-spacing:11.133060pt;}
.ls49{letter-spacing:11.138393pt;}
.ls34{letter-spacing:11.303801pt;}
.ls24{letter-spacing:11.526931pt;}
.ls6d{letter-spacing:11.775148pt;}
.ls2d{letter-spacing:11.849729pt;}
.ls65{letter-spacing:11.927044pt;}
.ls5e{letter-spacing:11.950933pt;}
.ls68{letter-spacing:11.954133pt;}
.ls5d{letter-spacing:11.955200pt;}
.ls6a{letter-spacing:11.959467pt;}
.ls73{letter-spacing:12.001962pt;}
.ls5f{letter-spacing:12.002525pt;}
.ls69{letter-spacing:12.107067pt;}
.ls20{letter-spacing:12.503263pt;}
.ls1e{letter-spacing:12.528078pt;}
.ls39{letter-spacing:12.533411pt;}
.lse{letter-spacing:13.005666pt;}
.ls23{letter-spacing:13.056536pt;}
.ls64{letter-spacing:13.061491pt;}
.ls3c{letter-spacing:13.069981pt;}
.ls2a{letter-spacing:13.162285pt;}
.ls26{letter-spacing:13.177239pt;}
.ls25{letter-spacing:13.274726pt;}
.ls12{letter-spacing:13.281686pt;}
.lsf{letter-spacing:13.283230pt;}
.ls1{letter-spacing:13.283733pt;}
.ls67{letter-spacing:13.294473pt;}
.ls35{letter-spacing:13.349423pt;}
.ls41{letter-spacing:13.393263pt;}
.ls63{letter-spacing:13.409090pt;}
.ls22{letter-spacing:13.914446pt;}
.ls11{letter-spacing:13.917762pt;}
.ls10{letter-spacing:13.923096pt;}
.ls13{letter-spacing:13.944563pt;}
.ls32{letter-spacing:14.608533pt;}
.ls2e{letter-spacing:14.613867pt;}
.ls70{letter-spacing:14.957218pt;}
.ls6c{letter-spacing:15.099738pt;}
.ls72{letter-spacing:15.297088pt;}
.ls62{letter-spacing:15.503988pt;}
.lsc{letter-spacing:16.617320pt;}
.lsa{letter-spacing:16.622942pt;}
.ls15{letter-spacing:17.344511pt;}
.ls27{letter-spacing:17.830785pt;}
.ls28{letter-spacing:17.835621pt;}
.ls40{letter-spacing:19.007103pt;}
.ls2{letter-spacing:25.292137pt;}
.ls48{letter-spacing:149.455769pt;}
.ls38{letter-spacing:258.141692pt;}
.ls51{letter-spacing:754.746667pt;}
.wsd{word-spacing:-91.094364pt;}
.ws13f{word-spacing:-23.910400pt;}
.wsf6{word-spacing:-13.520000pt;}
.wsf5{word-spacing:-13.360000pt;}
.ws8c{word-spacing:-13.283467pt;}
.wsf7{word-spacing:-13.247467pt;}
.wsf3{word-spacing:-12.000000pt;}
.wsab{word-spacing:-11.955200pt;}
.ws139{word-spacing:-11.888000pt;}
.wsf1{word-spacing:-10.800000pt;}
.wsf2{word-spacing:-10.640000pt;}
.ws3f{word-spacing:-10.626800pt;}
.ws94{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.wsf4{word-spacing:-8.000000pt;}
.ws78{word-spacing:-2.975497pt;}
.ws8e{word-spacing:-2.656693pt;}
.ws11f{word-spacing:-2.486682pt;}
.ws120{word-spacing:-2.295398pt;}
.ws71{word-spacing:-2.019087pt;}
.wsc8{word-spacing:-1.991998pt;}
.ws6f{word-spacing:-1.965953pt;}
.wsb8{word-spacing:-1.753418pt;}
.ws58{word-spacing:-1.594016pt;}
.ws182{word-spacing:-1.578086pt;}
.wsfb{word-spacing:-1.540882pt;}
.ws181{word-spacing:-1.530266pt;}
.ws103{word-spacing:-1.487748pt;}
.ws157{word-spacing:-1.482445pt;}
.ws56{word-spacing:-1.434614pt;}
.ws14b{word-spacing:-1.381481pt;}
.ws158{word-spacing:-1.291162pt;}
.ws9a{word-spacing:-1.275213pt;}
.ws93{word-spacing:-1.222079pt;}
.ws43{word-spacing:-1.168945pt;}
.wsc9{word-spacing:-1.115811pt;}
.ws7d{word-spacing:-1.062677pt;}
.ws79{word-spacing:-0.956410pt;}
.ws26{word-spacing:-0.860774pt;}
.ws7c{word-spacing:-0.850142pt;}
.ws41{word-spacing:-0.797008pt;}
.ws15d{word-spacing:-0.717312pt;}
.ws14d{word-spacing:-0.690740pt;}
.ws4a{word-spacing:-0.637606pt;}
.ws6c{word-spacing:-0.598956pt;}
.ws4e{word-spacing:-0.584473pt;}
.ws90{word-spacing:-0.531339pt;}
.ws92{word-spacing:-0.478205pt;}
.ws151{word-spacing:-0.430387pt;}
.ws42{word-spacing:-0.371937pt;}
.ws76{word-spacing:-0.318803pt;}
.ws17a{word-spacing:-0.286925pt;}
.ws69{word-spacing:-0.265669pt;}
.ws1c{word-spacing:-0.239104pt;}
.ws4b{word-spacing:-0.212535pt;}
.wsd7{word-spacing:-0.207359pt;}
.ws150{word-spacing:-0.191283pt;}
.ws180{word-spacing:-0.175953pt;}
.ws10e{word-spacing:-0.170730pt;}
.ws55{word-spacing:-0.159402pt;}
.ws3c{word-spacing:-0.106268pt;}
.wsbd{word-spacing:-0.101343pt;}
.wsbe{word-spacing:-0.096395pt;}
.ws1e{word-spacing:-0.095642pt;}
.wsf{word-spacing:-0.053134pt;}
.ws2e{word-spacing:-0.047821pt;}
.ws40{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws4c{word-spacing:-0.014060pt;}
.wse5{word-spacing:-0.006659pt;}
.ws86{word-spacing:-0.003932pt;}
.wsbf{word-spacing:-0.003319pt;}
.ws121{word-spacing:-0.002953pt;}
.ws8b{word-spacing:-0.002577pt;}
.ws131{word-spacing:-0.001951pt;}
.ws2b{word-spacing:-0.001493pt;}
.ws28{word-spacing:-0.001425pt;}
.ws7b{word-spacing:-0.001067pt;}
.ws1{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.000966pt;}
.wsc0{word-spacing:0.002014pt;}
.ws99{word-spacing:0.002400pt;}
.ws8a{word-spacing:0.002756pt;}
.ws10d{word-spacing:0.003564pt;}
.ws2d{word-spacing:0.003891pt;}
.ws118{word-spacing:0.039325pt;}
.ws13e{word-spacing:0.047821pt;}
.ws36{word-spacing:0.053134pt;}
.wsd3{word-spacing:0.085014pt;}
.ws160{word-spacing:0.095642pt;}
.ws39{word-spacing:0.106268pt;}
.ws130{word-spacing:0.127522pt;}
.ws101{word-spacing:0.131520pt;}
.ws15{word-spacing:0.136222pt;}
.ws13{word-spacing:0.143462pt;}
.ws38{word-spacing:0.159402pt;}
.wsf9{word-spacing:0.191283pt;}
.ws75{word-spacing:0.212535pt;}
.ws17{word-spacing:0.239104pt;}
.ws91{word-spacing:0.265669pt;}
.ws35{word-spacing:0.318803pt;}
.ws156{word-spacing:0.334746pt;}
.ws95{word-spacing:0.371937pt;}
.ws33{word-spacing:0.425071pt;}
.wsf8{word-spacing:0.430387pt;}
.wsc7{word-spacing:0.478205pt;}
.ws124{word-spacing:0.518685pt;}
.ws123{word-spacing:0.518862pt;}
.ws12c{word-spacing:0.521219pt;}
.ws126{word-spacing:0.521485pt;}
.ws135{word-spacing:0.521606pt;}
.ws129{word-spacing:0.523096pt;}
.wsea{word-spacing:0.523823pt;}
.ws125{word-spacing:0.524019pt;}
.ws128{word-spacing:0.525096pt;}
.ws127{word-spacing:0.526552pt;}
.ws12a{word-spacing:0.526819pt;}
.ws9e{word-spacing:0.531339pt;}
.wsec{word-spacing:0.532000pt;}
.wse9{word-spacing:0.534755pt;}
.wse7{word-spacing:0.537289pt;}
.wse8{word-spacing:0.539555pt;}
.wsed{word-spacing:0.540089pt;}
.wse6{word-spacing:0.547919pt;}
.wsae{word-spacing:0.572877pt;}
.ws37{word-spacing:0.584473pt;}
.wsce{word-spacing:0.591599pt;}
.wscd{word-spacing:0.594406pt;}
.wsc3{word-spacing:0.597333pt;}
.wsb1{word-spacing:0.598400pt;}
.wsad{word-spacing:0.618564pt;}
.wsac{word-spacing:0.621372pt;}
.ws18{word-spacing:0.621670pt;}
.wsaf{word-spacing:0.621764pt;}
.ws64{word-spacing:0.637606pt;}
.ws89{word-spacing:0.660267pt;}
.ws88{word-spacing:0.664000pt;}
.ws87{word-spacing:0.665600pt;}
.ws175{word-spacing:0.669491pt;}
.wsda{word-spacing:0.690740pt;}
.ws11{word-spacing:0.717312pt;}
.ws31{word-spacing:0.743874pt;}
.ws6e{word-spacing:0.797008pt;}
.ws10b{word-spacing:0.903276pt;}
.wsa1{word-spacing:0.956410pt;}
.ws159{word-spacing:1.004237pt;}
.ws172{word-spacing:1.052058pt;}
.ws49{word-spacing:1.062677pt;}
.ws155{word-spacing:1.099878pt;}
.ws47{word-spacing:1.115811pt;}
.ws140{word-spacing:1.168945pt;}
.wsc5{word-spacing:1.222079pt;}
.ws162{word-spacing:1.243341pt;}
.wsc6{word-spacing:1.275213pt;}
.ws24{word-spacing:1.325194pt;}
.ws59{word-spacing:1.328347pt;}
.ws12{word-spacing:1.338982pt;}
.ws21{word-spacing:1.379253pt;}
.ws5a{word-spacing:1.381481pt;}
.ws1f{word-spacing:1.386803pt;}
.ws57{word-spacing:1.434614pt;}
.wsd5{word-spacing:1.487748pt;}
.ws5c{word-spacing:1.540882pt;}
.ws192{word-spacing:1.578086pt;}
.wse1{word-spacing:1.594016pt;}
.ws16f{word-spacing:1.625907pt;}
.ws7f{word-spacing:1.647150pt;}
.wsa6{word-spacing:1.700284pt;}
.ws5b{word-spacing:1.753418pt;}
.wsb7{word-spacing:1.870317pt;}
.ws5f{word-spacing:1.912819pt;}
.wsa7{word-spacing:1.962620pt;}
.ws46{word-spacing:1.965953pt;}
.ws98{word-spacing:2.019087pt;}
.ws80{word-spacing:2.072221pt;}
.ws141{word-spacing:2.125355pt;}
.ws52{word-spacing:2.178489pt;}
.ws10f{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws9b{word-spacing:2.284756pt;}
.wsd4{word-spacing:2.337890pt;}
.ws186{word-spacing:2.343219pt;}
.ws77{word-spacing:2.391024pt;}
.ws153{word-spacing:2.391040pt;}
.ws30{word-spacing:2.444158pt;}
.ws16b{word-spacing:2.486682pt;}
.ws34{word-spacing:2.550426pt;}
.ws10{word-spacing:2.550432pt;}
.ws185{word-spacing:2.582323pt;}
.wsb5{word-spacing:2.592939pt;}
.ws32{word-spacing:2.603559pt;}
.ws18e{word-spacing:2.630144pt;}
.wsb6{word-spacing:2.635446pt;}
.wsca{word-spacing:2.709827pt;}
.ws96{word-spacing:2.762961pt;}
.ws44{word-spacing:2.816095pt;}
.ws23{word-spacing:2.821427pt;}
.ws18b{word-spacing:2.860919pt;}
.ws190{word-spacing:2.861261pt;}
.ws2a{word-spacing:2.861926pt;}
.ws17e{word-spacing:2.866065pt;}
.ws18d{word-spacing:2.867277pt;}
.ws67{word-spacing:2.869229pt;}
.ws13a{word-spacing:2.869248pt;}
.ws178{word-spacing:2.871305pt;}
.wse2{word-spacing:2.922363pt;}
.ws62{word-spacing:2.935548pt;}
.ws17c{word-spacing:3.012710pt;}
.wsaa{word-spacing:3.028630pt;}
.ws154{word-spacing:3.060531pt;}
.ws3d{word-spacing:3.081764pt;}
.ws1b{word-spacing:3.108352pt;}
.wsa0{word-spacing:3.134898pt;}
.ws19{word-spacing:3.156173pt;}
.ws2f{word-spacing:3.188032pt;}
.ws82{word-spacing:3.333806pt;}
.ws83{word-spacing:3.343281pt;}
.ws84{word-spacing:3.347434pt;}
.ws81{word-spacing:3.351990pt;}
.ws9f{word-spacing:3.453701pt;}
.ws115{word-spacing:3.478877pt;}
.ws113{word-spacing:3.506835pt;}
.ws53{word-spacing:3.559969pt;}
.ws18a{word-spacing:3.586560pt;}
.wsa2{word-spacing:3.666237pt;}
.ws14f{word-spacing:3.682202pt;}
.ws152{word-spacing:3.730022pt;}
.wsd9{word-spacing:3.772505pt;}
.ws195{word-spacing:3.777843pt;}
.ws16e{word-spacing:3.825664pt;}
.ws9d{word-spacing:3.878772pt;}
.ws9c{word-spacing:3.931906pt;}
.ws8f{word-spacing:4.038174pt;}
.ws13b{word-spacing:4.064768pt;}
.ws194{word-spacing:4.112589pt;}
.wsfc{word-spacing:4.144442pt;}
.ws61{word-spacing:4.197575pt;}
.wsb{word-spacing:4.240070pt;}
.ws3b{word-spacing:4.250709pt;}
.wsc{word-spacing:4.314458pt;}
.ws7a{word-spacing:4.356977pt;}
.ws144{word-spacing:4.400468pt;}
.wsba{word-spacing:4.530908pt;}
.wsbb{word-spacing:4.569513pt;}
.ws14e{word-spacing:4.590797pt;}
.ws112{word-spacing:4.782048pt;}
.ws73{word-spacing:4.835182pt;}
.ws143{word-spacing:4.888316pt;}
.ws68{word-spacing:5.047717pt;}
.wsd6{word-spacing:5.153985pt;}
.ws74{word-spacing:5.260253pt;}
.ws3a{word-spacing:5.313387pt;}
.ws45{word-spacing:5.419654pt;}
.ws133{word-spacing:5.451571pt;}
.ws51{word-spacing:5.632190pt;}
.ws4f{word-spacing:5.636003pt;}
.wsdd{word-spacing:5.727255pt;}
.wse0{word-spacing:5.738458pt;}
.ws132{word-spacing:5.786317pt;}
.ws16d{word-spacing:5.834138pt;}
.ws109{word-spacing:5.844725pt;}
.ws105{word-spacing:5.950993pt;}
.ws147{word-spacing:6.057261pt;}
.ws60{word-spacing:6.110395pt;}
.ws85{word-spacing:6.376064pt;}
.wsdc{word-spacing:6.748001pt;}
.ws9{word-spacing:6.918010pt;}
.wsdf{word-spacing:7.226206pt;}
.ws97{word-spacing:7.279340pt;}
.ws168{word-spacing:7.651328pt;}
.ws2{word-spacing:9.258292pt;}
.ws3{word-spacing:9.264422pt;}
.ws183{word-spacing:10.329293pt;}
.ws11e{word-spacing:10.581591pt;}
.ws3e{word-spacing:10.586925pt;}
.ws7{word-spacing:10.823338pt;}
.ws27{word-spacing:11.032723pt;}
.ws70{word-spacing:11.250088pt;}
.wsb9{word-spacing:11.478900pt;}
.ws1d{word-spacing:11.694849pt;}
.ws104{word-spacing:11.767335pt;}
.ws179{word-spacing:11.857956pt;}
.ws15b{word-spacing:11.859558pt;}
.ws14c{word-spacing:11.876178pt;}
.ws2c{word-spacing:11.897250pt;}
.ws193{word-spacing:11.900919pt;}
.ws17b{word-spacing:11.901867pt;}
.ws171{word-spacing:11.902140pt;}
.ws17f{word-spacing:11.902251pt;}
.ws177{word-spacing:11.902618pt;}
.ws161{word-spacing:11.902703pt;}
.ws15c{word-spacing:11.902737pt;}
.ws29{word-spacing:11.904375pt;}
.ws18c{word-spacing:11.905562pt;}
.ws174{word-spacing:11.906628pt;}
.ws176{word-spacing:11.907345pt;}
.ws165{word-spacing:11.907379pt;}
.ws16a{word-spacing:11.908070pt;}
.ws15e{word-spacing:12.040159pt;}
.ws16{word-spacing:12.050842pt;}
.ws14{word-spacing:12.062020pt;}
.wsfa{word-spacing:12.098662pt;}
.ws7e{word-spacing:12.164614pt;}
.ws4d{word-spacing:12.415696pt;}
.wsff{word-spacing:12.632641pt;}
.wsfe{word-spacing:12.635468pt;}
.ws6d{word-spacing:12.645860pt;}
.ws184{word-spacing:12.959437pt;}
.ws6a{word-spacing:12.983005pt;}
.ws63{word-spacing:13.008410pt;}
.wsa5{word-spacing:13.017797pt;}
.wsdb{word-spacing:13.020857pt;}
.wsa9{word-spacing:13.124065pt;}
.ws149{word-spacing:13.129605pt;}
.wsd8{word-spacing:13.144206pt;}
.wsfd{word-spacing:13.166605pt;}
.ws10c{word-spacing:13.228267pt;}
.ws5d{word-spacing:13.230333pt;}
.ws25{word-spacing:13.234728pt;}
.ws119{word-spacing:13.271082pt;}
.ws11a{word-spacing:13.277418pt;}
.ws117{word-spacing:13.279514pt;}
.ws20{word-spacing:13.287016pt;}
.ws6b{word-spacing:13.287841pt;}
.ws22{word-spacing:13.290278pt;}
.ws102{word-spacing:13.334682pt;}
.wse4{word-spacing:13.336601pt;}
.ws14a{word-spacing:13.355541pt;}
.ws54{word-spacing:13.356373pt;}
.ws11c{word-spacing:13.385585pt;}
.wsa3{word-spacing:13.389734pt;}
.ws110{word-spacing:13.403170pt;}
.ws72{word-spacing:13.417211pt;}
.ws146{word-spacing:13.437427pt;}
.ws11d{word-spacing:13.442868pt;}
.ws100{word-spacing:13.496002pt;}
.ws108{word-spacing:13.549136pt;}
.ws107{word-spacing:13.558451pt;}
.ws187{word-spacing:14.244679pt;}
.ws8{word-spacing:14.319536pt;}
.ws48{word-spacing:14.346144pt;}
.ws18f{word-spacing:14.537523pt;}
.ws169{word-spacing:14.585344pt;}
.wsa4{word-spacing:14.620336pt;}
.ws11b{word-spacing:14.729693pt;}
.ws189{word-spacing:14.771379pt;}
.ws191{word-spacing:14.771558pt;}
.ws163{word-spacing:14.771780pt;}
.ws167{word-spacing:14.772787pt;}
.ws170{word-spacing:14.774349pt;}
.ws16c{word-spacing:14.776627pt;}
.ws166{word-spacing:14.824448pt;}
.ws164{word-spacing:14.872269pt;}
.ws17d{word-spacing:14.927805pt;}
.ws15f{word-spacing:14.967910pt;}
.ws1a{word-spacing:15.033421pt;}
.ws5e{word-spacing:15.143152pt;}
.wsa8{word-spacing:15.215968pt;}
.ws13d{word-spacing:15.972147pt;}
.ws13c{word-spacing:15.974598pt;}
.ws142{word-spacing:15.993294pt;}
.ws66{word-spacing:16.046428pt;}
.ws65{word-spacing:16.057798pt;}
.ws148{word-spacing:16.094399pt;}
.wse3{word-spacing:16.115314pt;}
.ws114{word-spacing:16.727079pt;}
.ws116{word-spacing:16.737168pt;}
.ws111{word-spacing:17.140151pt;}
.wsbc{word-spacing:17.321641pt;}
.ws134{word-spacing:17.365447pt;}
.ws145{word-spacing:17.605510pt;}
.ws15a{word-spacing:18.267546pt;}
.ws173{word-spacing:18.315366pt;}
.ws50{word-spacing:18.876098pt;}
.wsde{word-spacing:18.959225pt;}
.ws10a{word-spacing:19.085249pt;}
.ws106{word-spacing:19.195053pt;}
.ws188{word-spacing:22.284493pt;}
.wsa{word-spacing:23.208806pt;}
.wse{word-spacing:23.806268pt;}
.ws6{word-spacing:23.858002pt;}
.wsc1{word-spacing:102.617975pt;}
.ws12b{word-spacing:134.139124pt;}
.wseb{word-spacing:160.395124pt;}
.ws12e{word-spacing:161.620267pt;}
.wscf{word-spacing:168.034833pt;}
.wscb{word-spacing:178.275942pt;}
.wsef{word-spacing:187.876267pt;}
.ws136{word-spacing:191.739124pt;}
.wsd1{word-spacing:209.250133pt;}
.wsd2{word-spacing:229.683302pt;}
.ws138{word-spacing:229.844267pt;}
.wsc2{word-spacing:237.880166pt;}
.ws12f{word-spacing:246.541760pt;}
.wsb0{word-spacing:261.789500pt;}
.wscc{word-spacing:269.366002pt;}
.wsf0{word-spacing:270.728357pt;}
.wsd0{word-spacing:272.435098pt;}
.ws12d{word-spacing:273.873890pt;}
.ws137{word-spacing:273.916397pt;}
.wsb3{word-spacing:291.052800pt;}
.ws122{word-spacing:302.013656pt;}
.wsee{word-spacing:319.356594pt;}
.wsb4{word-spacing:323.412070pt;}
.wsc4{word-spacing:356.073677pt;}
.wsb2{word-spacing:365.398733pt;}
._5e{margin-left:-11.955200pt;}
._c{margin-left:-5.934995pt;}
._8{margin-left:-4.718299pt;}
._1c{margin-left:-3.825638pt;}
._3{margin-left:-2.752326pt;}
._0{margin-left:-1.338970pt;}
._19{width:1.039506pt;}
._1a{width:2.652321pt;}
._1d{width:4.314466pt;}
._5c{width:5.237120pt;}
._5d{width:6.251277pt;}
._38{width:7.374720pt;}
._39{width:8.274756pt;}
._3a{width:9.410470pt;}
._60{width:10.616218pt;}
._2{width:11.530016pt;}
._17{width:12.550215pt;}
._14{width:13.857324pt;}
._b{width:14.967885pt;}
._d{width:15.876506pt;}
._a{width:17.119846pt;}
._1b{width:18.166436pt;}
._9{width:19.123117pt;}
._11{width:20.031468pt;}
._15{width:20.987877pt;}
._1{width:22.388414pt;}
._e{width:23.862554pt;}
._f{width:24.760382pt;}
._16{width:26.204087pt;}
._4{width:27.188522pt;}
._5{width:29.645414pt;}
._50{width:31.627273pt;}
._10{width:32.889863pt;}
._2e{width:34.262435pt;}
._5f{width:35.450912pt;}
._18{width:36.550725pt;}
._2d{width:38.043849pt;}
._6{width:48.376037pt;}
._62{width:54.993920pt;}
._7{width:61.663125pt;}
._53{width:73.749992pt;}
._61{width:78.904320pt;}
._54{width:84.376792pt;}
._29{width:94.111334pt;}
._47{width:103.930104pt;}
._48{width:105.630392pt;}
._45{width:115.407048pt;}
._2a{width:118.021734pt;}
._46{width:126.033848pt;}
._44{width:136.915691pt;}
._24{width:140.019302pt;}
._31{width:143.393442pt;}
._25{width:152.022323pt;}
._30{width:161.170646pt;}
._2f{width:163.142634pt;}
._28{width:171.150643pt;}
._20{width:175.932723pt;}
._1f{width:187.840102pt;}
._49{width:190.261961pt;}
._52{width:194.512947pt;}
._32{width:212.493226pt;}
._27{width:215.531025pt;}
._59{width:225.245653pt;}
._58{width:236.467554pt;}
._23{width:240.969011pt;}
._55{width:243.821033pt;}
._4f{width:246.244210pt;}
._2b{width:252.398182pt;}
._36{width:253.597955pt;}
._1e{width:264.879411pt;}
._57{width:267.795941pt;}
._42{width:279.612362pt;}
._43{width:280.760056pt;}
._3e{width:283.140459pt;}
._51{width:286.668557pt;}
._4a{width:288.538874pt;}
._35{width:291.982538pt;}
._4e{width:293.470290pt;}
._56{width:297.152086pt;}
._2c{width:298.210509pt;}
._41{width:299.675760pt;}
._3d{width:303.203858pt;}
._4b{width:305.159189pt;}
._21{width:308.444160pt;}
._3c{width:311.492762pt;}
._4d{width:317.532616pt;}
._26{width:322.264371pt;}
._34{width:324.414950pt;}
._3f{width:344.265813pt;}
._33{width:350.556878pt;}
._22{width:354.208666pt;}
._40{width:363.139010pt;}
._4c{width:374.998518pt;}
._12{width:632.579986pt;}
._5b{width:1834.347374pt;}
._37{width:1855.467374pt;}
._5a{width:2200.362604pt;}
._13{width:2221.615937pt;}
._3b{width:3514.127937pt;}
.fsd{font-size:31.880533pt;}
.fs11{font-size:32.000000pt;}
.fsc{font-size:33.219200pt;}
.fs0{font-size:37.193600pt;}
.fs9{font-size:38.755733pt;}
.fs7{font-size:40.381867pt;}
.fs6{font-size:42.077867pt;}
.fs4{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fsb{font-size:44.292800pt;}
.fs5{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fsa{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fsf{font-size:53.440000pt;}
.fs8{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:117.087872pt;}
.y18e{bottom:-474.540000pt;}
.y1a2{bottom:-339.580000pt;}
.y1e7{bottom:-322.842667pt;}
.y1a1{bottom:-320.460000pt;}
.y1a0{bottom:-303.420000pt;}
.y19f{bottom:-286.273333pt;}
.y202{bottom:-272.042667pt;}
.y19e{bottom:-269.153333pt;}
.y201{bottom:-255.002667pt;}
.y19d{bottom:-252.113333pt;}
.y200{bottom:-237.882667pt;}
.y19c{bottom:-234.993333pt;}
.y1ff{bottom:-220.762667pt;}
.y19b{bottom:-217.873333pt;}
.y1fe{bottom:-203.722667pt;}
.y19a{bottom:-200.833333pt;}
.y1fd{bottom:-186.602667pt;}
.y199{bottom:-183.713333pt;}
.y1fc{bottom:-169.562667pt;}
.y198{bottom:-166.673333pt;}
.y1fb{bottom:-152.442667pt;}
.y197{bottom:-149.553333pt;}
.y196{bottom:-132.433333pt;}
.y1fa{bottom:-131.376000pt;}
.y195{bottom:-115.393333pt;}
.y1f9{bottom:-98.656000pt;}
.y194{bottom:-98.273333pt;}
.y1f8{bottom:-83.136000pt;}
.y193{bottom:-81.233333pt;}
.y1f7{bottom:-67.776000pt;}
.y192{bottom:-56.513333pt;}
.y1f6{bottom:-52.416000pt;}
.y191{bottom:-40.993333pt;}
.y1f5{bottom:-37.056000pt;}
.y190{bottom:-25.633333pt;}
.y1f4{bottom:-17.136000pt;}
.y0{bottom:0.000000pt;}
.y18f{bottom:2.286667pt;}
.y1c{bottom:14.977453pt;}
.y4a{bottom:28.346667pt;}
.y1af{bottom:81.480000pt;}
.y117{bottom:86.490667pt;}
.y148{bottom:87.958667pt;}
.y49{bottom:92.108000pt;}
.y1a{bottom:93.018667pt;}
.y250{bottom:93.057333pt;}
.yf0{bottom:94.086667pt;}
.y81{bottom:95.681333pt;}
.y1ae{bottom:98.217333pt;}
.y116{bottom:103.228000pt;}
.y147{bottom:104.696000pt;}
.y24f{bottom:108.400000pt;}
.y48{bottom:108.844000pt;}
.y19{bottom:108.920000pt;}
.yef{bottom:110.824000pt;}
.y289{bottom:110.890667pt;}
.y80{bottom:112.418667pt;}
.yba{bottom:112.817333pt;}
.y1ad{bottom:114.954667pt;}
.y115{bottom:119.965333pt;}
.y146{bottom:121.433333pt;}
.y24e{bottom:123.742667pt;}
.y18{bottom:124.820000pt;}
.y47{bottom:125.581333pt;}
.y288{bottom:126.233333pt;}
.y7f{bottom:129.156000pt;}
.yee{bottom:131.546667pt;}
.y1ac{bottom:131.692000pt;}
.y114{bottom:136.702667pt;}
.y145{bottom:138.170667pt;}
.y24d{bottom:139.085333pt;}
.y17{bottom:140.720000pt;}
.y287{bottom:141.576000pt;}
.y46{bottom:142.318667pt;}
.yb9{bottom:143.502667pt;}
.y7e{bottom:145.893333pt;}
.y21b{bottom:146.304000pt;}
.y1ab{bottom:148.429333pt;}
.y24c{bottom:154.428000pt;}
.y144{bottom:154.908000pt;}
.y16{bottom:156.621333pt;}
.y286{bottom:156.918667pt;}
.y113{bottom:157.425333pt;}
.y45{bottom:159.056000pt;}
.yb8{bottom:160.238667pt;}
.yed{bottom:161.434667pt;}
.y1ce{bottom:161.833333pt;}
.y7d{bottom:162.630667pt;}
.y1aa{bottom:165.166667pt;}
.y24b{bottom:169.770667pt;}
.y143{bottom:171.645333pt;}
.y285{bottom:172.261333pt;}
.y15{bottom:172.521333pt;}
.y44{bottom:175.793333pt;}
.y21a{bottom:176.192000pt;}
.yb7{bottom:176.976000pt;}
.yec{bottom:178.172000pt;}
.y1cd{bottom:178.570667pt;}
.y7c{bottom:179.368000pt;}
.y1a9{bottom:181.904000pt;}
.y24a{bottom:185.113333pt;}
.y284{bottom:187.602667pt;}
.y142{bottom:188.382667pt;}
.y14{bottom:188.421333pt;}
.y112{bottom:190.245333pt;}
.y43{bottom:192.530667pt;}
.y219{bottom:192.929333pt;}
.yb6{bottom:193.713333pt;}
.yeb{bottom:194.909333pt;}
.y1cc{bottom:195.308000pt;}
.y7b{bottom:196.105333pt;}
.y1a8{bottom:198.641333pt;}
.y249{bottom:200.456000pt;}
.y111{bottom:202.865333pt;}
.y283{bottom:202.945333pt;}
.y13{bottom:204.322667pt;}
.y141{bottom:205.120000pt;}
.y42{bottom:209.268000pt;}
.y218{bottom:209.666667pt;}
.yb5{bottom:210.450667pt;}
.yea{bottom:211.646667pt;}
.y1cb{bottom:212.045333pt;}
.y7a{bottom:212.841333pt;}
.y1a7{bottom:215.378667pt;}
.y110{bottom:215.484000pt;}
.y248{bottom:215.798667pt;}
.y282{bottom:218.288000pt;}
.y181{bottom:220.913333pt;}
.y140{bottom:221.857333pt;}
.y41{bottom:226.005333pt;}
.y217{bottom:226.404000pt;}
.ye9{bottom:228.384000pt;}
.y1ca{bottom:228.782667pt;}
.y79{bottom:229.578667pt;}
.y247{bottom:231.140000pt;}
.yb4{bottom:231.173333pt;}
.y10f{bottom:232.234667pt;}
.y281{bottom:233.630667pt;}
.y1a6{bottom:236.101333pt;}
.y180{bottom:237.650667pt;}
.y13e{bottom:238.593333pt;}
.ye8{bottom:242.694667pt;}
.y40{bottom:242.742667pt;}
.y216{bottom:243.141333pt;}
.y13f{bottom:243.416000pt;}
.ye7{bottom:245.121333pt;}
.y1c9{bottom:245.520000pt;}
.y78{bottom:246.316000pt;}
.y246{bottom:246.482667pt;}
.y10e{bottom:246.846667pt;}
.y280{bottom:248.973333pt;}
.y17f{bottom:254.388000pt;}
.y13c{bottom:255.330667pt;}
.y3f{bottom:259.480000pt;}
.y215{bottom:259.878667pt;}
.y13d{bottom:260.153333pt;}
.y1a5{bottom:260.924000pt;}
.yb3{bottom:261.061333pt;}
.y245{bottom:261.825333pt;}
.ye6{bottom:261.858667pt;}
.y1c8{bottom:262.257333pt;}
.y77{bottom:263.053333pt;}
.y27f{bottom:264.316000pt;}
.y12{bottom:265.668000pt;}
.y10d{bottom:267.860000pt;}
.y13b{bottom:269.641333pt;}
.y17e{bottom:271.125333pt;}
.y13a{bottom:272.068000pt;}
.y3e{bottom:276.217333pt;}
.y214{bottom:276.616000pt;}
.y244{bottom:277.168000pt;}
.yb2{bottom:277.798667pt;}
.y1a4{bottom:278.020000pt;}
.ye5{bottom:278.596000pt;}
.y1c7{bottom:278.994667pt;}
.y27e{bottom:279.658667pt;}
.y76{bottom:279.790667pt;}
.y11{bottom:281.568000pt;}
.y10c{bottom:282.472000pt;}
.y138{bottom:286.378667pt;}
.y17d{bottom:287.862667pt;}
.y137{bottom:288.805333pt;}
.y243{bottom:292.510667pt;}
.y3d{bottom:292.954667pt;}
.y213{bottom:293.353333pt;}
.y139{bottom:293.628000pt;}
.yb0{bottom:294.536000pt;}
.y27d{bottom:295.001333pt;}
.y1a3{bottom:295.116000pt;}
.ye4{bottom:295.333333pt;}
.y1c6{bottom:295.732000pt;}
.y75{bottom:296.528000pt;}
.y10{bottom:297.469333pt;}
.yb1{bottom:299.357333pt;}
.y10b{bottom:303.485333pt;}
.y17c{bottom:304.600000pt;}
.y136{bottom:305.542667pt;}
.y242{bottom:307.853333pt;}
.y3c{bottom:309.692000pt;}
.y212{bottom:310.090667pt;}
.y27c{bottom:310.342667pt;}
.yae{bottom:311.273333pt;}
.ye3{bottom:312.070667pt;}
.y1c5{bottom:312.469333pt;}
.y74{bottom:313.265333pt;}
.yf{bottom:313.369333pt;}
.y18b{bottom:315.053333pt;}
.yaf{bottom:316.094667pt;}
.y10a{bottom:318.097333pt;}
.y17b{bottom:321.337333pt;}
.y135{bottom:322.280000pt;}
.y241{bottom:323.196000pt;}
.y27b{bottom:325.685333pt;}
.y3b{bottom:326.429333pt;}
.y211{bottom:326.828000pt;}
.yad{bottom:328.010667pt;}
.ye2{bottom:328.808000pt;}
.y1c4{bottom:329.206667pt;}
.y73{bottom:330.002667pt;}
.y17a{bottom:335.648000pt;}
.y179{bottom:338.074667pt;}
.y240{bottom:338.538667pt;}
.ye{bottom:338.568000pt;}
.y134{bottom:339.017333pt;}
.y27a{bottom:341.028000pt;}
.y3a{bottom:343.166667pt;}
.y210{bottom:343.565333pt;}
.yac{bottom:344.748000pt;}
.ye1{bottom:345.545333pt;}
.y1c3{bottom:345.944000pt;}
.y109{bottom:346.204000pt;}
.y72{bottom:346.740000pt;}
.y23f{bottom:353.880000pt;}
.yd{bottom:354.468000pt;}
.y178{bottom:354.812000pt;}
.y133{bottom:355.754667pt;}
.y279{bottom:356.370667pt;}
.y39{bottom:359.904000pt;}
.y20f{bottom:360.302667pt;}
.yab{bottom:361.485333pt;}
.ye0{bottom:362.282667pt;}
.y1c2{bottom:362.680000pt;}
.y71{bottom:363.477333pt;}
.y23e{bottom:369.222667pt;}
.y131{bottom:370.065333pt;}
.yc{bottom:370.369333pt;}
.y1e2{bottom:371.054667pt;}
.y177{bottom:371.549333pt;}
.y278{bottom:371.713333pt;}
.y130{bottom:372.492000pt;}
.y38{bottom:376.641333pt;}
.y20e{bottom:377.040000pt;}
.y132{bottom:377.314667pt;}
.yaa{bottom:378.222667pt;}
.ydf{bottom:379.020000pt;}
.y70{bottom:380.214667pt;}
.y1c1{bottom:383.402667pt;}
.y1e1{bottom:383.673333pt;}
.y23d{bottom:384.565333pt;}
.y176{bottom:385.860000pt;}
.yb{bottom:386.269333pt;}
.y12f{bottom:386.802667pt;}
.y277{bottom:387.056000pt;}
.y175{bottom:388.286667pt;}
.y12d{bottom:389.229333pt;}
.y37{bottom:393.378667pt;}
.y20d{bottom:393.777333pt;}
.y12e{bottom:394.052000pt;}
.ya9{bottom:394.960000pt;}
.yde{bottom:395.757333pt;}
.y6f{bottom:396.952000pt;}
.y23c{bottom:399.908000pt;}
.ya{bottom:402.169333pt;}
.y276{bottom:402.398667pt;}
.y1e0{bottom:402.482667pt;}
.y174{bottom:405.024000pt;}
.y12b{bottom:405.966667pt;}
.y20c{bottom:410.514667pt;}
.y12c{bottom:410.789333pt;}
.y108{bottom:411.697333pt;}
.y1c0{bottom:413.290667pt;}
.y6e{bottom:413.689333pt;}
.y36{bottom:414.101333pt;}
.y1df{bottom:415.101333pt;}
.y23b{bottom:415.250667pt;}
.ya8{bottom:415.682667pt;}
.ydd{bottom:416.478667pt;}
.y275{bottom:417.741333pt;}
.y173{bottom:421.760000pt;}
.y12a{bottom:422.704000pt;}
.y9{bottom:426.040000pt;}
.y20b{bottom:427.252000pt;}
.y107{bottom:428.434667pt;}
.y1bf{bottom:430.028000pt;}
.y6d{bottom:430.426667pt;}
.y23a{bottom:430.593333pt;}
.y274{bottom:433.084000pt;}
.y1de{bottom:434.122667pt;}
.y172{bottom:438.497333pt;}
.y129{bottom:439.441333pt;}
.y8{bottom:441.941333pt;}
.y20a{bottom:443.989333pt;}
.y106{bottom:445.172000pt;}
.ya7{bottom:445.570667pt;}
.ydc{bottom:446.366667pt;}
.y1dd{bottom:446.742667pt;}
.y1be{bottom:446.765333pt;}
.y6c{bottom:447.164000pt;}
.y273{bottom:448.425333pt;}
.y1f3{bottom:448.650667pt;}
.y239{bottom:449.921333pt;}
.y171{bottom:452.809333pt;}
.y170{bottom:455.234667pt;}
.y7{bottom:457.841333pt;}
.ya6{bottom:459.881333pt;}
.y128{bottom:460.164000pt;}
.y209{bottom:460.726667pt;}
.y105{bottom:461.909333pt;}
.ya5{bottom:462.306667pt;}
.ydb{bottom:463.104000pt;}
.y1bd{bottom:463.502667pt;}
.y272{bottom:463.768000pt;}
.y6b{bottom:463.901333pt;}
.y1dc{bottom:465.764000pt;}
.y1f2{bottom:465.770667pt;}
.y16f{bottom:471.972000pt;}
.y6{bottom:473.741333pt;}
.ya4{bottom:476.618667pt;}
.yda{bottom:477.414667pt;}
.y208{bottom:477.462667pt;}
.y104{bottom:478.646667pt;}
.ya3{bottom:479.044000pt;}
.y271{bottom:479.110667pt;}
.y238{bottom:479.809333pt;}
.yd9{bottom:479.841333pt;}
.y1bb{bottom:480.240000pt;}
.y6a{bottom:480.638667pt;}
.y35{bottom:480.901333pt;}
.y1f1{bottom:482.890667pt;}
.y1bc{bottom:485.061333pt;}
.y16e{bottom:488.709333pt;}
.y5{bottom:489.642667pt;}
.y127{bottom:490.052000pt;}
.y1db{bottom:492.476000pt;}
.y270{bottom:494.453333pt;}
.y103{bottom:495.384000pt;}
.y237{bottom:495.430667pt;}
.ya2{bottom:495.781333pt;}
.yd7{bottom:496.578667pt;}
.y1b9{bottom:496.977333pt;}
.y69{bottom:497.376000pt;}
.y1f0{bottom:499.930667pt;}
.yd8{bottom:501.401333pt;}
.y1ba{bottom:501.798667pt;}
.y207{bottom:505.421333pt;}
.y16d{bottom:505.446667pt;}
.y4{bottom:505.542667pt;}
.y126{bottom:506.789333pt;}
.y1d9{bottom:509.570667pt;}
.y26f{bottom:509.796000pt;}
.ya1{bottom:510.092000pt;}
.y236{bottom:511.052000pt;}
.y102{bottom:512.121333pt;}
.ya0{bottom:512.518667pt;}
.yd5{bottom:513.316000pt;}
.y1b8{bottom:513.714667pt;}
.y1da{bottom:513.910667pt;}
.y68{bottom:514.113333pt;}
.y34{bottom:514.136000pt;}
.y1ef{bottom:517.050667pt;}
.yd6{bottom:518.138667pt;}
.y16c{bottom:519.757333pt;}
.y3{bottom:521.442667pt;}
.y16b{bottom:522.184000pt;}
.y206{bottom:522.517333pt;}
.y125{bottom:523.526667pt;}
.y26e{bottom:525.138667pt;}
.y9f{bottom:526.829333pt;}
.yd4{bottom:527.626667pt;}
.y101{bottom:528.857333pt;}
.y9e{bottom:529.256000pt;}
.yd3{bottom:530.053333pt;}
.y1b7{bottom:530.452000pt;}
.y67{bottom:530.850667pt;}
.y33{bottom:531.432000pt;}
.y18d{bottom:533.620000pt;}
.y1ee{bottom:534.170667pt;}
.y235{bottom:534.642667pt;}
.y2{bottom:537.344000pt;}
.y16a{bottom:538.921333pt;}
.y205{bottom:539.613333pt;}
.y124{bottom:540.264000pt;}
.y26d{bottom:540.481333pt;}
.y18c{bottom:542.180000pt;}
.y1d8{bottom:544.460000pt;}
.y100{bottom:545.594667pt;}
.y9d{bottom:545.993333pt;}
.yd2{bottom:546.790667pt;}
.y1b6{bottom:547.189333pt;}
.y66{bottom:547.588000pt;}
.y32{bottom:548.726667pt;}
.y234{bottom:550.264000pt;}
.y1ed{bottom:551.210667pt;}
.y1{bottom:553.244000pt;}
.y169{bottom:555.658667pt;}
.y26c{bottom:555.824000pt;}
.y204{bottom:556.709333pt;}
.y123{bottom:557.001333pt;}
.y1d7{bottom:557.080000pt;}
.y9c{bottom:560.304000pt;}
.yff{bottom:562.332000pt;}
.y9b{bottom:562.730667pt;}
.yd1{bottom:563.528000pt;}
.y1b5{bottom:563.926667pt;}
.y65{bottom:564.325333pt;}
.y31{bottom:566.021333pt;}
.y1ec{bottom:568.330667pt;}
.y26b{bottom:571.165333pt;}
.y168{bottom:572.396000pt;}
.y203{bottom:573.804000pt;}
.y233{bottom:573.856000pt;}
.y1d6{bottom:575.888000pt;}
.y9a{bottom:577.041333pt;}
.yfe{bottom:579.069333pt;}
.y99{bottom:579.468000pt;}
.yd0{bottom:580.265333pt;}
.y1b4{bottom:580.664000pt;}
.y64{bottom:581.062667pt;}
.y30{bottom:583.317333pt;}
.y1eb{bottom:585.370667pt;}
.y26a{bottom:586.508000pt;}
.y1d5{bottom:588.508000pt;}
.y232{bottom:589.477333pt;}
.y122{bottom:592.610667pt;}
.y167{bottom:593.118667pt;}
.y1e4{bottom:593.741333pt;}
.y98{bottom:593.778667pt;}
.yfd{bottom:595.806667pt;}
.y97{bottom:596.205333pt;}
.ycf{bottom:597.002667pt;}
.y1b3{bottom:597.401333pt;}
.y63{bottom:597.800000pt;}
.y2f{bottom:600.612000pt;}
.y269{bottom:601.850667pt;}
.y1ea{bottom:602.517333pt;}
.y121{bottom:605.230667pt;}
.y1d4{bottom:607.529333pt;}
.yfc{bottom:612.544000pt;}
.y96{bottom:612.942667pt;}
.y231{bottom:613.069333pt;}
.yce{bottom:613.740000pt;}
.y1b2{bottom:614.138667pt;}
.y62{bottom:614.537333pt;}
.y268{bottom:617.193333pt;}
.y120{bottom:617.849333pt;}
.y2e{bottom:617.906667pt;}
.y1e9{bottom:619.637333pt;}
.y1d3{bottom:620.148000pt;}
.y166{bottom:623.006667pt;}
.y230{bottom:628.690667pt;}
.yfb{bottom:629.281333pt;}
.y94{bottom:629.680000pt;}
.y1b1{bottom:630.876000pt;}
.y61{bottom:631.274667pt;}
.y267{bottom:632.536000pt;}
.ycd{bottom:634.462667pt;}
.y95{bottom:634.502667pt;}
.y11f{bottom:634.600000pt;}
.y2d{bottom:635.202667pt;}
.y1e8{bottom:636.677333pt;}
.y1d2{bottom:639.170667pt;}
.y165{bottom:639.744000pt;}
.y22f{bottom:644.312000pt;}
.yfa{bottom:646.018667pt;}
.y93{bottom:646.417333pt;}
.y1b0{bottom:647.613333pt;}
.y266{bottom:647.878667pt;}
.y60{bottom:648.012000pt;}
.y11e{bottom:649.212000pt;}
.y2c{bottom:652.497333pt;}
.y164{bottom:654.054667pt;}
.y163{bottom:656.481333pt;}
.yf9{bottom:662.756000pt;}
.y91{bottom:663.154667pt;}
.y265{bottom:663.221333pt;}
.ycc{bottom:664.350667pt;}
.y5f{bottom:664.749333pt;}
.y1d0{bottom:665.881333pt;}
.y22e{bottom:667.904000pt;}
.y92{bottom:667.976000pt;}
.y2b{bottom:669.793333pt;}
.y1d1{bottom:670.221333pt;}
.y11d{bottom:670.225333pt;}
.y162{bottom:673.218667pt;}
.y264{bottom:678.564000pt;}
.ycb{bottom:678.661333pt;}
.yf8{bottom:679.493333pt;}
.y90{bottom:679.892000pt;}
.yc9{bottom:681.088000pt;}
.y5e{bottom:681.485333pt;}
.y22d{bottom:683.525333pt;}
.y2a{bottom:684.757333pt;}
.y11c{bottom:684.837333pt;}
.y1e6{bottom:685.317333pt;}
.yca{bottom:685.909333pt;}
.y29{bottom:687.088000pt;}
.y161{bottom:687.529333pt;}
.y160{bottom:689.956000pt;}
.y1e5{bottom:693.877333pt;}
.y263{bottom:693.906667pt;}
.yf7{bottom:696.230667pt;}
.y8e{bottom:696.629333pt;}
.yc7{bottom:697.825333pt;}
.y5d{bottom:698.222667pt;}
.y22c{bottom:699.146667pt;}
.y8f{bottom:701.450667pt;}
.yc8{bottom:702.646667pt;}
.y28{bottom:704.382667pt;}
.y11b{bottom:705.852000pt;}
.y15f{bottom:706.693333pt;}
.y262{bottom:709.248000pt;}
.y1cf{bottom:712.385333pt;}
.yf6{bottom:712.968000pt;}
.y8d{bottom:713.366667pt;}
.yc6{bottom:714.562667pt;}
.y22b{bottom:714.768000pt;}
.y5c{bottom:714.960000pt;}
.y11a{bottom:720.464000pt;}
.y15d{bottom:721.004000pt;}
.y27{bottom:721.678667pt;}
.y15c{bottom:723.430667pt;}
.y261{bottom:724.590667pt;}
.y15e{bottom:728.252000pt;}
.y8c{bottom:730.104000pt;}
.y22a{bottom:730.389333pt;}
.yc5{bottom:731.300000pt;}
.y5b{bottom:731.697333pt;}
.yf5{bottom:733.690667pt;}
.y26{bottom:738.973333pt;}
.y260{bottom:739.933333pt;}
.y15a{bottom:740.168000pt;}
.y15b{bottom:744.989333pt;}
.y8b{bottom:746.841333pt;}
.yc4{bottom:748.036000pt;}
.y5a{bottom:748.434667pt;}
.y119{bottom:748.569333pt;}
.yf4{bottom:751.622667pt;}
.y229{bottom:753.981333pt;}
.y159{bottom:754.478667pt;}
.y25f{bottom:755.276000pt;}
.y25{bottom:756.268000pt;}
.y157{bottom:756.905333pt;}
.y158{bottom:761.726667pt;}
.y8a{bottom:763.578667pt;}
.yc3{bottom:764.773333pt;}
.y59{bottom:765.172000pt;}
.y118{bottom:765.665333pt;}
.y228{bottom:770.021333pt;}
.y25e{bottom:770.618667pt;}
.y155{bottom:773.642667pt;}
.y156{bottom:778.464000pt;}
.y89{bottom:780.316000pt;}
.yc1{bottom:781.510667pt;}
.y58{bottom:781.909333pt;}
.y25d{bottom:785.961333pt;}
.y227{bottom:786.061333pt;}
.yc2{bottom:786.333333pt;}
.y24{bottom:789.612000pt;}
.y154{bottom:790.380000pt;}
.y88{bottom:797.053333pt;}
.y28b{bottom:797.252000pt;}
.yc0{bottom:798.248000pt;}
.y57{bottom:798.646667pt;}
.y25c{bottom:801.304000pt;}
.y23{bottom:803.958667pt;}
.y152{bottom:807.116000pt;}
.y153{bottom:811.938667pt;}
.y28a{bottom:812.594667pt;}
.y87{bottom:813.790667pt;}
.ybf{bottom:814.985333pt;}
.y56{bottom:815.384000pt;}
.y25b{bottom:816.646667pt;}
.y226{bottom:818.041333pt;}
.y22{bottom:818.305333pt;}
.y86{bottom:830.528000pt;}
.ybe{bottom:831.722667pt;}
.y25a{bottom:831.988000pt;}
.y55{bottom:832.121333pt;}
.y225{bottom:834.778667pt;}
.y18a{bottom:840.070667pt;}
.y151{bottom:842.726667pt;}
.y85{bottom:847.265333pt;}
.y259{bottom:847.330667pt;}
.ybd{bottom:848.460000pt;}
.y54{bottom:848.858667pt;}
.y224{bottom:851.516000pt;}
.yf3{bottom:852.445333pt;}
.y189{bottom:852.689333pt;}
.y150{bottom:855.346667pt;}
.y21{bottom:860.920000pt;}
.y258{bottom:862.673333pt;}
.y84{bottom:864.002667pt;}
.y188{bottom:865.309333pt;}
.y53{bottom:865.596000pt;}
.y14f{bottom:867.965333pt;}
.y223{bottom:868.253333pt;}
.ybc{bottom:869.182667pt;}
.y257{bottom:878.016000pt;}
.y187{bottom:881.461333pt;}
.y52{bottom:882.333333pt;}
.y14e{bottom:884.716000pt;}
.y83{bottom:884.724000pt;}
.y222{bottom:884.990667pt;}
.y256{bottom:893.358667pt;}
.y186{bottom:894.080000pt;}
.y20{bottom:896.404000pt;}
.y51{bottom:899.070667pt;}
.y14d{bottom:899.328000pt;}
.y221{bottom:901.728000pt;}
.y82{bottom:902.657333pt;}
.y255{bottom:908.701333pt;}
.y185{bottom:913.102667pt;}
.y50{bottom:915.808000pt;}
.y220{bottom:918.464000pt;}
.y14c{bottom:920.341333pt;}
.y1f{bottom:921.510667pt;}
.y254{bottom:924.044000pt;}
.ybb{bottom:924.176000pt;}
.y184{bottom:925.721333pt;}
.y4f{bottom:932.545333pt;}
.y14b{bottom:934.953333pt;}
.y21f{bottom:935.201333pt;}
.y253{bottom:939.386667pt;}
.y183{bottom:944.742667pt;}
.y1e{bottom:946.616000pt;}
.yf2{bottom:946.856000pt;}
.y4e{bottom:949.282667pt;}
.y21e{bottom:951.938667pt;}
.y252{bottom:954.729333pt;}
.y14a{bottom:955.966667pt;}
.y182{bottom:957.362667pt;}
.yf1{bottom:963.593333pt;}
.y4d{bottom:966.020000pt;}
.y21d{bottom:968.676000pt;}
.y251{bottom:970.070667pt;}
.y1d{bottom:971.722667pt;}
.y4c{bottom:982.757333pt;}
.y149{bottom:984.073333pt;}
.y21c{bottom:985.413333pt;}
.y1b{bottom:1010.377333pt;}
.y4b{bottom:1038.548000pt;}
.y1e3{bottom:1041.204000pt;}
.he{height:22.284493pt;}
.h12{height:24.760382pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h14{height:28.023859pt;}
.h15{height:29.397999pt;}
.h1c{height:29.499005pt;}
.h2b{height:30.732706pt;}
.h20{height:30.860227pt;}
.ha{height:30.945242pt;}
.h11{height:31.157778pt;}
.h2e{height:33.186336pt;}
.hb{height:34.574438pt;}
.h21{height:34.622959pt;}
.h1d{height:34.717901pt;}
.hc{height:34.813542pt;}
.hd{height:35.052646pt;}
.h17{height:36.873667pt;}
.h13{height:37.671911pt;}
.hf{height:38.415786pt;}
.h10{height:38.681455pt;}
.h6{height:38.947124pt;}
.h27{height:39.349375pt;}
.h24{height:39.359687pt;}
.h9{height:39.531597pt;}
.h1e{height:40.389639pt;}
.h1a{height:40.394973pt;}
.h2f{height:43.660390pt;}
.h1b{height:44.250973pt;}
.h26{height:44.390625pt;}
.h2c{height:44.431607pt;}
.h2a{height:44.436941pt;}
.h4{height:45.272024pt;}
.h16{height:46.580334pt;}
.h19{height:48.511220pt;}
.h18{height:48.688666pt;}
.h25{height:49.421563pt;}
.h22{height:55.970039pt;}
.h1f{height:63.939234pt;}
.h8{height:69.148877pt;}
.h7{height:69.435802pt;}
.h5{height:73.179920pt;}
.h2d{height:412.926667pt;}
.h23{height:501.293333pt;}
.h28{height:793.701333pt;}
.h29{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:174.865465pt;}
.w3{width:363.752000pt;}
.w6{width:367.326667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.xf1{left:-190.974667pt;}
.xd5{left:-169.133333pt;}
.xf2{left:-17.108000pt;}
.x0{left:0.000000pt;}
.xd6{left:4.733333pt;}
.xf3{left:11.212000pt;}
.xd7{left:33.053333pt;}
.x1{left:47.621333pt;}
.x2{left:51.594354pt;}
.xeb{left:58.992000pt;}
.xea{left:67.801333pt;}
.xf0{left:73.392000pt;}
.x100{left:76.309333pt;}
.xef{left:82.201333pt;}
.xe9{left:143.089333pt;}
.x103{left:164.524000pt;}
.xee{left:171.889333pt;}
.x106{left:211.989333pt;}
.x39{left:219.865333pt;}
.x4{left:220.912000pt;}
.x3{left:221.858667pt;}
.x8f{left:225.960000pt;}
.x83{left:232.949333pt;}
.x78{left:239.185333pt;}
.xd4{left:241.861333pt;}
.x17{left:243.042667pt;}
.x79{left:244.896000pt;}
.xbc{left:245.958667pt;}
.x10{left:250.204000pt;}
.x90{left:252.229333pt;}
.x60{left:254.766667pt;}
.x82{left:255.681333pt;}
.x97{left:256.688000pt;}
.xfa{left:259.510667pt;}
.xfe{left:261.980000pt;}
.x99{left:263.740000pt;}
.x61{left:264.649333pt;}
.x9c{left:265.602667pt;}
.xad{left:267.029333pt;}
.x7a{left:268.198667pt;}
.x98{left:269.972000pt;}
.x11{left:272.970667pt;}
.x5{left:274.397333pt;}
.xf4{left:275.873333pt;}
.x7b{left:276.905333pt;}
.x12{left:279.613333pt;}
.xfd{left:281.034667pt;}
.x62{left:281.989333pt;}
.xa4{left:286.156000pt;}
.x63{left:287.701333pt;}
.xd8{left:291.226667pt;}
.x9e{left:293.121333pt;}
.xa5{left:299.440000pt;}
.xd9{left:300.528000pt;}
.x57{left:304.229333pt;}
.x6{left:305.706667pt;}
.x58{left:309.941333pt;}
.xe4{left:311.592000pt;}
.x7{left:313.092000pt;}
.x59{left:314.453333pt;}
.xd0{left:316.024000pt;}
.x64{left:320.952000pt;}
.x5a{left:324.336000pt;}
.x87{left:326.490667pt;}
.xc8{left:327.856000pt;}
.xe1{left:328.800000pt;}
.x86{left:329.937333pt;}
.x45{left:331.520000pt;}
.xbb{left:335.765333pt;}
.x46{left:339.724000pt;}
.x5b{left:342.382667pt;}
.xae{left:344.042667pt;}
.x5c{left:348.094667pt;}
.xa7{left:349.201333pt;}
.x9a{left:352.197333pt;}
.xa6{left:354.902667pt;}
.xb5{left:356.421333pt;}
.x8{left:357.992000pt;}
.xb8{left:360.060000pt;}
.x4b{left:361.098667pt;}
.x9{left:363.305333pt;}
.x75{left:364.740000pt;}
.x4c{left:366.810667pt;}
.x65{left:369.116000pt;}
.x76{left:370.452000pt;}
.xdd{left:373.954667pt;}
.x47{left:377.190667pt;}
.x66{left:378.998667pt;}
.xc9{left:380.757333pt;}
.x7c{left:381.717333pt;}
.xa{left:385.132000pt;}
.xde{left:387.238667pt;}
.x37{left:388.281333pt;}
.x48{left:391.205333pt;}
.x9f{left:392.238667pt;}
.xb{left:393.653333pt;}
.xb1{left:395.772000pt;}
.x49{left:396.873333pt;}
.xa0{left:397.950667pt;}
.xb7{left:400.306667pt;}
.x38{left:401.565333pt;}
.xc3{left:405.102667pt;}
.xa1{left:408.182667pt;}
.xdc{left:410.669333pt;}
.xc4{left:411.936000pt;}
.x4a{left:414.205333pt;}
.xbe{left:419.714667pt;}
.xd1{left:420.710667pt;}
.x3a{left:424.774667pt;}
.xc6{left:427.568000pt;}
.xcb{left:429.034667pt;}
.x96{left:432.056000pt;}
.x18{left:434.086667pt;}
.x3b{left:438.057333pt;}
.x19{left:440.729333pt;}
.xc{left:442.054667pt;}
.xf5{left:443.496000pt;}
.x70{left:445.444000pt;}
.x1a{left:447.502667pt;}
.xd{left:449.438667pt;}
.xc7{left:451.625333pt;}
.xab{left:452.786667pt;}
.x1b{left:454.145333pt;}
.xb0{left:456.366667pt;}
.xa8{left:458.673333pt;}
.xdf{left:463.132000pt;}
.x4d{left:465.534667pt;}
.xaf{left:469.116000pt;}
.x4e{left:471.246667pt;}
.xcc{left:473.114667pt;}
.xe0{left:477.146667pt;}
.xcd{left:486.398667pt;}
.x22{left:487.594667pt;}
.x4f{left:490.080000pt;}
.x88{left:493.326667pt;}
.x23{left:494.237333pt;}
.xbf{left:496.206667pt;}
.x24{left:497.548000pt;}
.x2a{left:498.757333pt;}
.x50{left:499.962667pt;}
.x89{left:501.532000pt;}
.xf6{left:503.134667pt;}
.x25{left:504.189333pt;}
.xe{left:506.398667pt;}
.x26{left:507.500000pt;}
.xc0{left:509.490667pt;}
.xf7{left:511.109333pt;}
.x2b{left:512.041333pt;}
.x67{left:513.730667pt;}
.xf{left:514.920000pt;}
.xd2{left:517.172000pt;}
.x30{left:518.205333pt;}
.x27{left:520.784000pt;}
.x13{left:522.325333pt;}
.x51{left:523.722667pt;}
.xff{left:524.982667pt;}
.x31{left:526.409333pt;}
.x14{left:528.966667pt;}
.x68{left:531.069333pt;}
.xe2{left:534.129333pt;}
.x15{left:535.741333pt;}
.x69{left:536.781333pt;}
.x101{left:540.310667pt;}
.x16{left:542.382667pt;}
.xbd{left:543.918667pt;}
.xe3{left:547.413333pt;}
.x84{left:551.288000pt;}
.xa9{left:554.840000pt;}
.xce{left:561.748000pt;}
.x102{left:564.220000pt;}
.x85{left:565.521333pt;}
.x3c{left:567.248000pt;}
.xc1{left:568.293333pt;}
.xcf{left:571.250667pt;}
.x93{left:574.377333pt;}
.xaa{left:576.401333pt;}
.xb9{left:577.966667pt;}
.xb2{left:579.385333pt;}
.x3d{left:580.532000pt;}
.xd3{left:581.941333pt;}
.x8a{left:588.734667pt;}
.xba{left:591.250667pt;}
.x7d{left:594.480000pt;}
.x6a{left:596.154667pt;}
.x7e{left:602.685333pt;}
.x6b{left:604.358667pt;}
.x105{left:606.406667pt;}
.x8b{left:608.396000pt;}
.x71{left:609.824000pt;}
.xb6{left:611.222667pt;}
.x94{left:612.280000pt;}
.xc5{left:614.417333pt;}
.x72{left:615.536000pt;}
.x41{left:617.392000pt;}
.xb3{left:620.350667pt;}
.x8c{left:622.410667pt;}
.x42{left:623.441333pt;}
.xa2{left:624.505333pt;}
.x95{left:626.296000pt;}
.x52{left:627.237333pt;}
.x3e{left:632.214667pt;}
.x20{left:636.681333pt;}
.xa3{left:637.788000pt;}
.x73{left:639.788000pt;}
.x6c{left:642.236000pt;}
.x21{left:643.322667pt;}
.x53{left:645.285333pt;}
.x3f{left:646.744000pt;}
.x7f{left:649.758667pt;}
.x54{left:650.997333pt;}
.xac{left:651.892000pt;}
.x5d{left:653.594667pt;}
.x80{left:655.470667pt;}
.x43{left:656.925333pt;}
.x1c{left:658.496000pt;}
.x44{left:662.974667pt;}
.x92{left:664.145333pt;}
.x1d{left:665.137333pt;}
.x1e{left:668.477333pt;}
.x9d{left:669.625333pt;}
.x32{left:671.325333pt;}
.x1f{left:675.120000pt;}
.x8d{left:676.136000pt;}
.x33{left:678.100000pt;}
.x6d{left:681.773333pt;}
.xfb{left:683.842667pt;}
.x8e{left:685.104000pt;}
.x81{left:687.478667pt;}
.x28{left:689.250667pt;}
.xda{left:690.164000pt;}
.x34{left:691.384000pt;}
.x9b{left:695.580000pt;}
.x40{left:696.588000pt;}
.xfc{left:697.761333pt;}
.x6e{left:699.113333pt;}
.x5e{left:700.618667pt;}
.x29{left:702.533333pt;}
.xdb{left:703.448000pt;}
.x6f{left:704.825333pt;}
.x35{left:706.784000pt;}
.xf8{left:708.589333pt;}
.x2c{left:710.614667pt;}
.x91{left:712.692000pt;}
.xca{left:714.445333pt;}
.xf9{left:717.220000pt;}
.x77{left:718.218667pt;}
.x36{left:720.068000pt;}
.xc2{left:721.653333pt;}
.x2d{left:723.897333pt;}
.x104{left:725.002667pt;}
.x2e{left:727.152000pt;}
.x5f{left:732.882667pt;}
.x74{left:733.790667pt;}
.xb4{left:735.006667pt;}
.x55{left:738.261333pt;}
.x2f{left:740.436000pt;}
.x56{left:743.973333pt;}
.xe5{left:781.653333pt;}
.xe6{left:797.642667pt;}
.xec{left:845.190667pt;}
.xed{left:862.592000pt;}
.xe7{left:995.949333pt;}
.xe8{left:1071.590667pt;}
}




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