
    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_7a647737ad110b682b88f4a1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e1c05cdf57590449f96661d3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.142090;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_f209a5b8131600413635de3b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a8292536c312c032039ffbcb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6ef20093fc3f07c192f24afd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d8307f338ed71ff10c329f76.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_94fc3b1e6611730ab19bf639.woff')format("woff");}.ff7{font-family:ff7;line-height:0.882324;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;}
.m29{transform:matrix(0.149515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149515,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.188701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188701,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.188917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188917,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.189144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189144,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.236202,0.000000,-0.078735,0.237278,0,0);-ms-transform:matrix(0.236202,0.000000,-0.078735,0.237278,0,0);-webkit-transform:matrix(0.236202,0.000000,-0.078735,0.237278,0,0);}
.m44{transform:matrix(0.236209,0.000000,-0.078738,0.237277,0,0);-ms-transform:matrix(0.236209,0.000000,-0.078738,0.237277,0,0);-webkit-transform:matrix(0.236209,0.000000,-0.078738,0.237277,0,0);}
.m17{transform:matrix(0.236297,0.000000,-0.078767,0.237267,0,0);-ms-transform:matrix(0.236297,0.000000,-0.078767,0.237267,0,0);-webkit-transform:matrix(0.236297,0.000000,-0.078767,0.237267,0,0);}
.m41{transform:matrix(0.236544,0.000000,-0.078849,0.237240,0,0);-ms-transform:matrix(0.236544,0.000000,-0.078849,0.237240,0,0);-webkit-transform:matrix(0.236544,0.000000,-0.078849,0.237240,0,0);}
.m40{transform:matrix(0.236913,0.000000,-0.078971,0.237199,0,0);-ms-transform:matrix(0.236913,0.000000,-0.078971,0.237199,0,0);-webkit-transform:matrix(0.236913,0.000000,-0.078971,0.237199,0,0);}
.m1b{transform:matrix(0.237077,0.000000,-0.079026,0.237181,0,0);-ms-transform:matrix(0.237077,0.000000,-0.079026,0.237181,0,0);-webkit-transform:matrix(0.237077,0.000000,-0.079026,0.237181,0,0);}
.m3b{transform:matrix(0.237121,0.000000,-0.079041,0.237176,0,0);-ms-transform:matrix(0.237121,0.000000,-0.079041,0.237176,0,0);-webkit-transform:matrix(0.237121,0.000000,-0.079041,0.237176,0,0);}
.m3a{transform:matrix(0.237123,0.000000,-0.079040,0.237177,0,0);-ms-transform:matrix(0.237123,0.000000,-0.079040,0.237177,0,0);-webkit-transform:matrix(0.237123,0.000000,-0.079040,0.237177,0,0);}
.m45{transform:matrix(0.237170,0.000000,-0.079058,0.237170,0,0);-ms-transform:matrix(0.237170,0.000000,-0.079058,0.237170,0,0);-webkit-transform:matrix(0.237170,0.000000,-0.079058,0.237170,0,0);}
.m18{transform:matrix(0.237171,0.000000,-0.079056,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079056,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079056,0.237171,0,0);}
.m1c{transform:matrix(0.237173,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079057,0.237171,0,0);}
.m10{transform:matrix(0.237303,0.000000,-0.079101,0.237156,0,0);-ms-transform:matrix(0.237303,0.000000,-0.079101,0.237156,0,0);-webkit-transform:matrix(0.237303,0.000000,-0.079101,0.237156,0,0);}
.m35{transform:matrix(0.237314,0.000000,-0.079107,0.237154,0,0);-ms-transform:matrix(0.237314,0.000000,-0.079107,0.237154,0,0);-webkit-transform:matrix(0.237314,0.000000,-0.079107,0.237154,0,0);}
.m36{transform:matrix(0.237316,0.000000,-0.079106,0.237154,0,0);-ms-transform:matrix(0.237316,0.000000,-0.079106,0.237154,0,0);-webkit-transform:matrix(0.237316,0.000000,-0.079106,0.237154,0,0);}
.md{transform:matrix(0.237340,0.000000,-0.079113,0.237152,0,0);-ms-transform:matrix(0.237340,0.000000,-0.079113,0.237152,0,0);-webkit-transform:matrix(0.237340,0.000000,-0.079113,0.237152,0,0);}
.m2f{transform:matrix(0.237363,0.000000,-0.079122,0.237149,0,0);-ms-transform:matrix(0.237363,0.000000,-0.079122,0.237149,0,0);-webkit-transform:matrix(0.237363,0.000000,-0.079122,0.237149,0,0);}
.m30{transform:matrix(0.237365,0.000000,-0.079121,0.237149,0,0);-ms-transform:matrix(0.237365,0.000000,-0.079121,0.237149,0,0);-webkit-transform:matrix(0.237365,0.000000,-0.079121,0.237149,0,0);}
.m15{transform:matrix(0.237622,0.000000,-0.079208,0.237120,0,0);-ms-transform:matrix(0.237622,0.000000,-0.079208,0.237120,0,0);-webkit-transform:matrix(0.237622,0.000000,-0.079208,0.237120,0,0);}
.m27{transform:matrix(0.238085,0.000000,-0.079361,0.237069,0,0);-ms-transform:matrix(0.238085,0.000000,-0.079361,0.237069,0,0);-webkit-transform:matrix(0.238085,0.000000,-0.079361,0.237069,0,0);}
.m20{transform:matrix(0.238707,0.000000,-0.079568,0.237000,0,0);-ms-transform:matrix(0.238707,0.000000,-0.079568,0.237000,0,0);-webkit-transform:matrix(0.238707,0.000000,-0.079568,0.237000,0,0);}
.m21{transform:matrix(0.247091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247091,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248612,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248866,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249696,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250169,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250199,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250203,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250228,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250529,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250966,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251071,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251137,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251799,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.v9{vertical-align:-52.456950px;}
.v8{vertical-align:-34.651562px;}
.v1{vertical-align:-20.880000px;}
.ve{vertical-align:-18.000000px;}
.v5{vertical-align:-16.006922px;}
.v2{vertical-align:-13.682958px;}
.v7{vertical-align:-11.450603px;}
.v4{vertical-align:-7.299756px;}
.vb{vertical-align:-5.022000px;}
.va{vertical-align:-3.776560px;}
.vc{vertical-align:-1.458000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.062200px;}
.vd{vertical-align:18.000000px;}
.v3{vertical-align:22.814400px;}
.ls6a{letter-spacing:-5.640000px;}
.ls6f{letter-spacing:-4.994641px;}
.ls73{letter-spacing:-4.980000px;}
.ls7b{letter-spacing:-4.979950px;}
.lsbd{letter-spacing:-4.975468px;}
.lsdd{letter-spacing:-1.254240px;}
.ls3f{letter-spacing:-0.918000px;}
.ls44{letter-spacing:-0.776880px;}
.ls8f{letter-spacing:-0.728640px;}
.lsd3{letter-spacing:-0.556637px;}
.lsd2{letter-spacing:-0.556627px;}
.ls4e{letter-spacing:-0.554995px;}
.lsbb{letter-spacing:-0.554496px;}
.ls46{letter-spacing:-0.554246px;}
.ls41{letter-spacing:-0.540000px;}
.ls5a{letter-spacing:-0.537840px;}
.ls5d{letter-spacing:-0.530640px;}
.ls8e{letter-spacing:-0.463680px;}
.ls5e{letter-spacing:-0.434160px;}
.lsd4{letter-spacing:-0.382688px;}
.ls82{letter-spacing:-0.382681px;}
.ls4f{letter-spacing:-0.381559px;}
.ls84{letter-spacing:-0.381249px;}
.lsbe{letter-spacing:-0.381216px;}
.ls47{letter-spacing:-0.381044px;}
.ls65{letter-spacing:-0.380945px;}
.ls56{letter-spacing:-0.380371px;}
.ls40{letter-spacing:-0.378000px;}
.lscb{letter-spacing:-0.360000px;}
.lsbf{letter-spacing:-0.359672px;}
.ls6e{letter-spacing:-0.359050px;}
.lsd5{letter-spacing:-0.358560px;}
.ls5c{letter-spacing:-0.337680px;}
.lsdb{letter-spacing:-0.312185px;}
.ls42{letter-spacing:-0.289440px;}
.ls8b{letter-spacing:-0.288000px;}
.ls60{letter-spacing:-0.241200px;}
.ls45{letter-spacing:-0.239040px;}
.ls3e{letter-spacing:-0.216000px;}
.ls83{letter-spacing:-0.192960px;}
.ls78{letter-spacing:-0.180000px;}
.ls50{letter-spacing:-0.173436px;}
.ls48{letter-spacing:-0.173202px;}
.ls61{letter-spacing:-0.172770px;}
.lsd8{letter-spacing:-0.144720px;}
.ls8c{letter-spacing:-0.132480px;}
.lsd6{letter-spacing:-0.119520px;}
.ls3d{letter-spacing:-0.108000px;}
.ls70{letter-spacing:-0.104368px;}
.ls71{letter-spacing:-0.104062px;}
.ls81{letter-spacing:-0.103318px;}
.ls43{letter-spacing:-0.059760px;}
.lsd7{letter-spacing:-0.048240px;}
.ls3c{letter-spacing:0.000000px;}
.lsb9{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.048240px;}
.ls9e{letter-spacing:0.052560px;}
.ls33{letter-spacing:0.059760px;}
.lsd1{letter-spacing:0.104062px;}
.lsda{letter-spacing:0.104368px;}
.ls3{letter-spacing:0.106560px;}
.lsdc{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.113544px;}
.ls20{letter-spacing:0.119520px;}
.ls8d{letter-spacing:0.132480px;}
.ls13{letter-spacing:0.143424px;}
.ls8a{letter-spacing:0.144000px;}
.lsa9{letter-spacing:0.149040px;}
.ls9f{letter-spacing:0.153360px;}
.lsd9{letter-spacing:0.162000px;}
.ls12{letter-spacing:0.179280px;}
.ls4{letter-spacing:0.180000px;}
.ls35{letter-spacing:0.182880px;}
.lsb8{letter-spacing:0.186480px;}
.ls1f{letter-spacing:0.191232px;}
.ls1e{letter-spacing:0.192960px;}
.ls36{letter-spacing:0.206640px;}
.lsa0{letter-spacing:0.215136px;}
.ls2{letter-spacing:0.216000px;}
.lsa2{letter-spacing:0.227088px;}
.ls16{letter-spacing:0.239040px;}
.lsaa{letter-spacing:0.242424px;}
.ls3b{letter-spacing:0.288000px;}
.ls5f{letter-spacing:0.289440px;}
.ls21{letter-spacing:0.292824px;}
.lsa8{letter-spacing:0.298800px;}
.ls90{letter-spacing:0.331200px;}
.ls7{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.378000px;}
.ls5b{letter-spacing:0.385920px;}
.ls14{letter-spacing:0.896400px;}
.ls1c{letter-spacing:0.916560px;}
.lsb7{letter-spacing:1.015920px;}
.ls1a{letter-spacing:1.606392px;}
.ls1b{letter-spacing:1.611216px;}
.ls5{letter-spacing:1.613520px;}
.ls19{letter-spacing:1.640160px;}
.lsa7{letter-spacing:2.330640px;}
.ls1d{letter-spacing:2.363760px;}
.lsa3{letter-spacing:2.414304px;}
.lsa6{letter-spacing:4.482000px;}
.ls6{letter-spacing:5.916240px;}
.lsa4{letter-spacing:8.127360px;}
.lsa1{letter-spacing:13.105368px;}
.ls34{letter-spacing:13.434381px;}
.ls25{letter-spacing:16.175375px;}
.lsa5{letter-spacing:23.246640px;}
.ls57{letter-spacing:24.642626px;}
.ls99{letter-spacing:26.115120px;}
.ls18{letter-spacing:30.439440px;}
.ls59{letter-spacing:31.222282px;}
.ls4a{letter-spacing:31.277405px;}
.ls30{letter-spacing:31.852080px;}
.ls26{letter-spacing:33.385140px;}
.ls67{letter-spacing:35.402909px;}
.lsba{letter-spacing:39.103344px;}
.ls8{letter-spacing:44.939250px;}
.lsc{letter-spacing:45.000000px;}
.ls95{letter-spacing:45.858231px;}
.ls9d{letter-spacing:45.900000px;}
.ls2f{letter-spacing:46.254240px;}
.ls22{letter-spacing:56.608713px;}
.ls96{letter-spacing:57.568245px;}
.ls91{letter-spacing:57.569455px;}
.ls9a{letter-spacing:57.615432px;}
.ls28{letter-spacing:57.829520px;}
.ls7e{letter-spacing:59.699403px;}
.ls76{letter-spacing:59.700000px;}
.ls2a{letter-spacing:60.778164px;}
.ls85{letter-spacing:61.149816px;}
.ls72{letter-spacing:62.340000px;}
.ls6d{letter-spacing:63.840000px;}
.ls2d{letter-spacing:65.460000px;}
.ls29{letter-spacing:65.652452px;}
.lsa{letter-spacing:65.790403px;}
.lsf{letter-spacing:65.880000px;}
.ls49{letter-spacing:67.348282px;}
.ls51{letter-spacing:67.440000px;}
.ls7c{letter-spacing:69.479305px;}
.ls31{letter-spacing:69.480000px;}
.lsb{letter-spacing:70.038720px;}
.ls74{letter-spacing:73.200000px;}
.ls55{letter-spacing:89.419239px;}
.ls58{letter-spacing:89.420136px;}
.lsd{letter-spacing:89.700000px;}
.ls2c{letter-spacing:95.145000px;}
.ls94{letter-spacing:99.449419px;}
.ls86{letter-spacing:99.578279px;}
.lsc0{letter-spacing:104.604723px;}
.lsc4{letter-spacing:106.642867px;}
.lsd0{letter-spacing:106.740000px;}
.lscc{letter-spacing:108.180000px;}
.ls9c{letter-spacing:109.680000px;}
.lsac{letter-spacing:110.322000px;}
.ls9{letter-spacing:112.646592px;}
.lse{letter-spacing:112.800000px;}
.lsc1{letter-spacing:115.995402px;}
.ls4d{letter-spacing:116.301614px;}
.ls4c{letter-spacing:116.361533px;}
.ls93{letter-spacing:116.413967px;}
.ls53{letter-spacing:116.520000px;}
.ls54{letter-spacing:117.420000px;}
.lsc5{letter-spacing:118.572001px;}
.lsb0{letter-spacing:118.962000px;}
.lscd{letter-spacing:119.047936px;}
.ls98{letter-spacing:120.070636px;}
.ls87{letter-spacing:122.239681px;}
.ls6c{letter-spacing:123.462976px;}
.lsc2{letter-spacing:125.859578px;}
.ls80{letter-spacing:126.660000px;}
.lsb1{letter-spacing:128.358000px;}
.lsc6{letter-spacing:129.802550px;}
.lsaf{letter-spacing:130.518000px;}
.ls89{letter-spacing:132.371366px;}
.lsb4{letter-spacing:132.678000px;}
.lsce{letter-spacing:136.634563px;}
.lsb3{letter-spacing:136.998000px;}
.lsc9{letter-spacing:137.035184px;}
.ls7a{letter-spacing:137.160000px;}
.ls88{letter-spacing:141.903544px;}
.lsb5{letter-spacing:144.180000px;}
.ls37{letter-spacing:146.519755px;}
.lsc7{letter-spacing:147.557697px;}
.ls6b{letter-spacing:148.599965px;}
.ls39{letter-spacing:149.277492px;}
.lsb6{letter-spacing:156.438000px;}
.lsb2{letter-spacing:159.300000px;}
.ls38{letter-spacing:159.589030px;}
.lsae{letter-spacing:161.460000px;}
.lsab{letter-spacing:165.780000px;}
.ls10{letter-spacing:172.792262px;}
.lsad{letter-spacing:178.038000px;}
.lsbc{letter-spacing:179.836200px;}
.lsca{letter-spacing:180.000000px;}
.ls3a{letter-spacing:199.598400px;}
.ls92{letter-spacing:229.111319px;}
.ls69{letter-spacing:235.689140px;}
.ls9b{letter-spacing:239.400000px;}
.ls97{letter-spacing:249.672591px;}
.ls11{letter-spacing:262.286640px;}
.ls23{letter-spacing:271.609200px;}
.ls68{letter-spacing:272.613050px;}
.ls79{letter-spacing:273.525258px;}
.ls64{letter-spacing:276.600992px;}
.ls62{letter-spacing:282.384436px;}
.ls32{letter-spacing:283.860000px;}
.ls63{letter-spacing:287.163922px;}
.ls66{letter-spacing:290.072606px;}
.ls27{letter-spacing:355.153680px;}
.ls2b{letter-spacing:379.595520px;}
.ls7f{letter-spacing:396.232995px;}
.ls24{letter-spacing:396.925920px;}
.ls2e{letter-spacing:439.355520px;}
.ls7d{letter-spacing:681.274286px;}
.lsc3{letter-spacing:694.056343px;}
.ls75{letter-spacing:703.416339px;}
.lscf{letter-spacing:726.612177px;}
.lsc8{letter-spacing:759.193074px;}
.ls77{letter-spacing:775.680000px;}
.ls4b{letter-spacing:841.673765px;}
.ls52{letter-spacing:842.820000px;}
.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;}
}
.ws8c{word-spacing:-842.820000px;}
.ws89{word-spacing:-841.673765px;}
.wsb6{word-spacing:-775.680000px;}
.ws10e{word-spacing:-759.193074px;}
.ws110{word-spacing:-726.612177px;}
.wsb5{word-spacing:-703.416339px;}
.ws10d{word-spacing:-694.056343px;}
.wsb7{word-spacing:-681.274286px;}
.wsb8{word-spacing:-396.232995px;}
.wsb1{word-spacing:-290.072606px;}
.wsaf{word-spacing:-287.163922px;}
.wsae{word-spacing:-282.384436px;}
.wsb0{word-spacing:-276.600992px;}
.wsb2{word-spacing:-272.613050px;}
.ws38{word-spacing:-258.152840px;}
.ws10f{word-spacing:-180.000000px;}
.ws10b{word-spacing:-179.836200px;}
.wsb3{word-spacing:-148.599965px;}
.wse8{word-spacing:-148.193376px;}
.wsc9{word-spacing:-141.903544px;}
.ws3a{word-spacing:-139.275345px;}
.wsf4{word-spacing:-137.289034px;}
.wse7{word-spacing:-132.622915px;}
.wsca{word-spacing:-132.371366px;}
.wsdd{word-spacing:-126.509883px;}
.wsc8{word-spacing:-122.239681px;}
.ws8e{word-spacing:-117.420000px;}
.ws8d{word-spacing:-116.520000px;}
.ws8a{word-spacing:-116.361533px;}
.ws8b{word-spacing:-116.301614px;}
.ws65{word-spacing:-114.565979px;}
.wsdc{word-spacing:-112.908280px;}
.wsf3{word-spacing:-111.208907px;}
.ws23{word-spacing:-110.584282px;}
.wsf7{word-spacing:-105.420000px;}
.wseb{word-spacing:-94.833623px;}
.ws91{word-spacing:-89.420136px;}
.ws8f{word-spacing:-89.419239px;}
.ws20{word-spacing:-82.440000px;}
.ws12{word-spacing:-82.327882px;}
.ws4e{word-spacing:-80.760000px;}
.ws43{word-spacing:-77.340000px;}
.ws40{word-spacing:-75.822264px;}
.ws4d{word-spacing:-70.566354px;}
.ws57{word-spacing:-68.574000px;}
.ws21{word-spacing:-63.030000px;}
.ws1f{word-spacing:-60.138000px;}
.ws11{word-spacing:-60.056212px;}
.ws62{word-spacing:-54.579208px;}
.ws107{word-spacing:-54.000000px;}
.ws19{word-spacing:-50.586000px;}
.ws64{word-spacing:-47.373122px;}
.ws63{word-spacing:-40.622662px;}
.ws53{word-spacing:-37.715623px;}
.ws69{word-spacing:-36.288000px;}
.ws68{word-spacing:-36.000000px;}
.ws48{word-spacing:-34.656000px;}
.ws92{word-spacing:-31.222282px;}
.ws27{word-spacing:-20.892401px;}
.ws3b{word-spacing:-18.306000px;}
.ws6e{word-spacing:-16.891200px;}
.ws6b{word-spacing:-16.560000px;}
.ws6a{word-spacing:-16.427520px;}
.ws18{word-spacing:-16.230000px;}
.wsa{word-spacing:-16.208090px;}
.ws6c{word-spacing:-16.096320px;}
.ws6d{word-spacing:-15.831360px;}
.ws7{word-spacing:-15.298560px;}
.wsb{word-spacing:-15.273353px;}
.ws15{word-spacing:-15.179040px;}
.ws5a{word-spacing:-15.059520px;}
.wsfd{word-spacing:-14.999760px;}
.ws24{word-spacing:-14.953050px;}
.ws4{word-spacing:-14.940000px;}
.ws100{word-spacing:-14.880240px;}
.wsfc{word-spacing:-14.820480px;}
.ws102{word-spacing:-14.820000px;}
.ws2a{word-spacing:-14.700960px;}
.ws6{word-spacing:-14.163120px;}
.ws101{word-spacing:-13.878000px;}
.ws1{word-spacing:-13.716000px;}
.ws105{word-spacing:-13.662000px;}
.ws109{word-spacing:-13.608000px;}
.ws3{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.392000px;}
.ws2{word-spacing:-13.284000px;}
.ws104{word-spacing:-13.122000px;}
.ws103{word-spacing:-12.960000px;}
.ws2c{word-spacing:-12.445920px;}
.ws13{word-spacing:-12.169427px;}
.ws10a{word-spacing:-12.108240px;}
.ws2f{word-spacing:-12.060000px;}
.wsff{word-spacing:-11.915280px;}
.wsfe{word-spacing:-11.867040px;}
.ws30{word-spacing:-11.818800px;}
.ws5{word-spacing:-11.770560px;}
.ws2d{word-spacing:-11.722320px;}
.ws2e{word-spacing:-11.529360px;}
.ws54{word-spacing:-11.339887px;}
.wse0{word-spacing:-11.095894px;}
.wsd6{word-spacing:-10.010882px;}
.ws108{word-spacing:-9.000000px;}
.ws3e{word-spacing:-8.592932px;}
.ws41{word-spacing:-8.567738px;}
.ws58{word-spacing:-8.506532px;}
.ws2b{word-spacing:-8.498364px;}
.ws31{word-spacing:-8.465730px;}
.ws106{word-spacing:-8.359615px;}
.wsfa{word-spacing:-8.314762px;}
.ws59{word-spacing:-8.314619px;}
.ws1e{word-spacing:-8.290241px;}
.ws10{word-spacing:-8.279056px;}
.ws33{word-spacing:-8.276905px;}
.ws29{word-spacing:-8.264429px;}
.wsf9{word-spacing:-8.140813px;}
.wsf8{word-spacing:-8.140673px;}
.wsfb{word-spacing:-8.116805px;}
.wsa8{word-spacing:-0.916560px;}
.wsad{word-spacing:-0.896400px;}
.wsd1{word-spacing:-0.861120px;}
.ws49{word-spacing:-0.840000px;}
.wsce{word-spacing:-0.728640px;}
.ws80{word-spacing:-0.378000px;}
.ws87{word-spacing:-0.358560px;}
.ws127{word-spacing:-0.324000px;}
.ws119{word-spacing:-0.298800px;}
.wsa5{word-spacing:-0.289440px;}
.wscc{word-spacing:-0.288000px;}
.wsac{word-spacing:-0.239040px;}
.ws126{word-spacing:-0.216000px;}
.ws9d{word-spacing:-0.192960px;}
.ws88{word-spacing:-0.179280px;}
.wscb{word-spacing:-0.144000px;}
.wsd0{word-spacing:-0.132480px;}
.ws90{word-spacing:-0.119520px;}
.ws124{word-spacing:-0.104368px;}
.ws111{word-spacing:-0.104062px;}
.wsc3{word-spacing:-0.059760px;}
.ws6f{word-spacing:0.000000px;}
.ws121{word-spacing:0.048240px;}
.ws125{word-spacing:0.054000px;}
.wsc2{word-spacing:0.059760px;}
.ws11c{word-spacing:0.119520px;}
.wscf{word-spacing:0.132480px;}
.ws129{word-spacing:0.162000px;}
.ws7f{word-spacing:0.216000px;}
.ws85{word-spacing:0.239040px;}
.ws132{word-spacing:0.241200px;}
.ws128{word-spacing:0.270000px;}
.wscd{word-spacing:0.288000px;}
.ws81{word-spacing:0.289440px;}
.ws9f{word-spacing:0.337680px;}
.ws113{word-spacing:0.358560px;}
.wsb4{word-spacing:0.359050px;}
.ws7b{word-spacing:0.378000px;}
.wsc4{word-spacing:0.385920px;}
.wsa4{word-spacing:0.434160px;}
.ws123{word-spacing:0.482400px;}
.wsa0{word-spacing:0.530640px;}
.ws94{word-spacing:0.537840px;}
.ws7e{word-spacing:0.540000px;}
.ws75{word-spacing:0.702000px;}
.ws122{word-spacing:0.723600px;}
.ws74{word-spacing:0.918000px;}
.ws93{word-spacing:0.956160px;}
.ws73{word-spacing:1.134000px;}
.ws76{word-spacing:1.242000px;}
.ws12e{word-spacing:1.254240px;}
.wsb9{word-spacing:1.254960px;}
.ws84{word-spacing:1.673280px;}
.ws77{word-spacing:1.836000px;}
.wsc7{word-spacing:1.972080px;}
.wsa6{word-spacing:1.977840px;}
.wsa1{word-spacing:2.170800px;}
.ws11b{word-spacing:2.211120px;}
.ws120{word-spacing:2.390400px;}
.ws12c{word-spacing:2.653200px;}
.ws71{word-spacing:2.862000px;}
.ws7a{word-spacing:3.294000px;}
.ws12b{word-spacing:3.473280px;}
.ws12a{word-spacing:3.569760px;}
.wsbc{word-spacing:4.123440px;}
.ws11f{word-spacing:4.362480px;}
.ws9a{word-spacing:4.824000px;}
.ws10c{word-spacing:4.975468px;}
.ws98{word-spacing:5.547600px;}
.ws114{word-spacing:5.557680px;}
.ws86{word-spacing:5.796720px;}
.wsbb{word-spacing:6.274800px;}
.wsba{word-spacing:6.693120px;}
.ws95{word-spacing:7.051680px;}
.ws117{word-spacing:7.290720px;}
.ws12d{word-spacing:7.718400px;}
.ws11e{word-spacing:7.768800px;}
.ws11d{word-spacing:8.007840px;}
.ws99{word-spacing:8.442000px;}
.ws130{word-spacing:8.538480px;}
.ws131{word-spacing:8.634960px;}
.ws12f{word-spacing:9.165600px;}
.ws118{word-spacing:10.876320px;}
.ws9e{word-spacing:11.336400px;}
.ws115{word-spacing:11.354400px;}
.ws72{word-spacing:11.934000px;}
.wsa2{word-spacing:12.060000px;}
.ws11a{word-spacing:12.071520px;}
.wsa7{word-spacing:12.252960px;}
.ws82{word-spacing:12.788640px;}
.ws97{word-spacing:13.206960px;}
.wsc5{word-spacing:14.222880px;}
.ws96{word-spacing:14.940000px;}
.ws7c{word-spacing:16.254000px;}
.ws112{word-spacing:17.330400px;}
.ws7d{word-spacing:17.658000px;}
.wsda{word-spacing:19.997785px;}
.wsf1{word-spacing:20.016000px;}
.ws78{word-spacing:21.762000px;}
.ws79{word-spacing:21.978000px;}
.wsc0{word-spacing:22.170960px;}
.wsc1{word-spacing:22.589280px;}
.ws83{word-spacing:22.888080px;}
.wsbd{word-spacing:23.605200px;}
.wsbf{word-spacing:23.784480px;}
.wsbe{word-spacing:24.023520px;}
.wsa9{word-spacing:27.609120px;}
.ws116{word-spacing:27.907920px;}
.wsa3{word-spacing:28.606320px;}
.wsc6{word-spacing:29.342160px;}
.ws70{word-spacing:29.916000px;}
.ws9b{word-spacing:30.777120px;}
.ws9c{word-spacing:30.970080px;}
.wsea{word-spacing:31.711117px;}
.ws34{word-spacing:33.769078px;}
.ws22{word-spacing:35.358000px;}
.wsaa{word-spacing:35.796240px;}
.wsab{word-spacing:36.214560px;}
.ws4a{word-spacing:39.501783px;}
.ws42{word-spacing:39.906000px;}
.wsf6{word-spacing:42.240000px;}
.ws5f{word-spacing:44.848746px;}
.ws3c{word-spacing:49.833907px;}
.wsdf{word-spacing:52.350318px;}
.ws4c{word-spacing:58.566000px;}
.wsd8{word-spacing:83.995747px;}
.wsd9{word-spacing:84.931459px;}
.ws56{word-spacing:88.848000px;}
.wsd{word-spacing:92.011830px;}
.wsd7{word-spacing:92.053267px;}
.ws4b{word-spacing:92.132672px;}
.ws1b{word-spacing:92.136141px;}
.wsf0{word-spacing:94.196560px;}
.ws52{word-spacing:102.261334px;}
.ws35{word-spacing:104.052206px;}
.wse4{word-spacing:104.602205px;}
.wse5{word-spacing:105.537917px;}
.wsd5{word-spacing:105.677746px;}
.wsef{word-spacing:105.774000px;}
.ws5e{word-spacing:110.662721px;}
.wsc{word-spacing:110.977449px;}
.ws1a{word-spacing:111.127383px;}
.wse3{word-spacing:112.656259px;}
.ws47{word-spacing:112.768087px;}
.ws55{word-spacing:114.131294px;}
.ws39{word-spacing:119.844000px;}
.ws51{word-spacing:120.697581px;}
.ws61{word-spacing:120.779683px;}
.wse6{word-spacing:123.643382px;}
.ws60{word-spacing:130.335169px;}
.ws67{word-spacing:130.830631px;}
.ws46{word-spacing:131.197397px;}
.wsf2{word-spacing:134.256000px;}
.wsdb{word-spacing:137.622649px;}
.ws32{word-spacing:139.874439px;}
.ws66{word-spacing:141.322021px;}
.wsd2{word-spacing:149.886032px;}
.wsec{word-spacing:150.053802px;}
.wse{word-spacing:155.795199px;}
.ws3f{word-spacing:159.244807px;}
.ws1c{word-spacing:160.792516px;}
.ws14{word-spacing:165.446686px;}
.ws50{word-spacing:170.998290px;}
.ws45{word-spacing:171.000000px;}
.ws3d{word-spacing:171.526811px;}
.ws26{word-spacing:181.201924px;}
.ws9{word-spacing:188.232470px;}
.ws17{word-spacing:188.486776px;}
.ws25{word-spacing:200.130578px;}
.ws37{word-spacing:251.839884px;}
.ws36{word-spacing:272.029647px;}
.ws8{word-spacing:294.027715px;}
.ws16{word-spacing:294.424954px;}
.wsde{word-spacing:294.545808px;}
.wsf5{word-spacing:316.094321px;}
.wse9{word-spacing:337.952768px;}
.wsd3{word-spacing:352.590144px;}
.wsed{word-spacing:373.164898px;}
.wse1{word-spacing:393.796128px;}
.ws28{word-spacing:403.971599px;}
.ws5d{word-spacing:407.931030px;}
.ws5b{word-spacing:423.990479px;}
.ws5c{word-spacing:433.209773px;}
.wsf{word-spacing:565.192766px;}
.wsd4{word-spacing:612.603715px;}
.ws4f{word-spacing:640.013600px;}
.wsee{word-spacing:643.541215px;}
.ws44{word-spacing:661.020000px;}
.ws1d{word-spacing:664.745501px;}
.wse2{word-spacing:674.430019px;}
._13{margin-left:-293.378841px;}
._12{margin-left:-286.697818px;}
._d{margin-left:-258.442535px;}
._c{margin-left:-129.260145px;}
._5a{margin-left:-122.546240px;}
._59{margin-left:-116.771232px;}
._3b{margin-left:-61.671388px;}
._b{margin-left:-33.697865px;}
._14{margin-left:-29.854800px;}
._3c{margin-left:-7.524000px;}
._5d{margin-left:-6.426720px;}
._5e{margin-left:-3.276000px;}
._2{margin-left:-1.566000px;}
._0{width:1.236600px;}
._5{width:2.940970px;}
._1d{width:4.704000px;}
._e{width:6.585323px;}
._41{width:8.074645px;}
._46{width:9.747122px;}
._43{width:11.833358px;}
._5b{width:13.381704px;}
._4{width:17.101800px;}
._3{width:18.419400px;}
._58{width:20.640021px;}
._56{width:22.626650px;}
._5c{width:23.904000px;}
._16{width:25.935840px;}
._17{width:27.621360px;}
._15{width:28.663920px;}
._1{width:29.813400px;}
._18{width:36.449064px;}
._38{width:44.417548px;}
._31{width:47.977320px;}
._9{width:51.499865px;}
._3a{width:57.432866px;}
._2f{width:66.921589px;}
._22{width:77.424000px;}
._11{width:78.808555px;}
._8{width:85.952945px;}
._4d{width:91.552425px;}
._32{width:93.672879px;}
._a{width:96.324820px;}
._1b{width:101.012868px;}
._57{width:102.449412px;}
._36{width:103.789841px;}
._44{width:105.824341px;}
._f{width:107.410749px;}
._42{width:110.380129px;}
._34{width:113.345328px;}
._45{width:114.837403px;}
._54{width:116.604000px;}
._4a{width:121.354915px;}
._39{width:124.313979px;}
._10{width:125.910662px;}
._29{width:126.924000px;}
._4f{width:131.679508px;}
._4e{width:135.446631px;}
._35{width:140.455597px;}
._33{width:150.759718px;}
._37{width:152.514835px;}
._27{width:161.898000px;}
._7{width:168.335024px;}
._30{width:172.204604px;}
._21{width:174.174000px;}
._19{width:181.572430px;}
._24{width:182.952432px;}
._6{width:186.815677px;}
._28{width:187.968000px;}
._2c{width:197.226411px;}
._1c{width:207.295716px;}
._2a{width:210.678000px;}
._3e{width:226.858176px;}
._51{width:237.191074px;}
._1a{width:239.160985px;}
._53{width:242.790000px;}
._48{width:247.478496px;}
._4b{width:253.059506px;}
._23{width:264.704961px;}
._25{width:266.616630px;}
._2e{width:283.197168px;}
._20{width:286.230000px;}
._40{width:321.339928px;}
._55{width:329.226000px;}
._4c{width:335.764570px;}
._3f{width:350.382557px;}
._52{width:360.830129px;}
._49{width:370.982083px;}
._2b{width:439.915601px;}
._1e{width:460.920000px;}
._2d{width:466.855025px;}
._1f{width:477.365246px;}
._3d{width:514.037800px;}
._50{width:544.866000px;}
._47{width:575.841507px;}
._26{width:594.365172px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1a{font-size:25.059000px;}
.fs11{font-size:25.084200px;}
.fs14{font-size:25.125000px;}
.fs23{font-size:34.439400px;}
.fsd{font-size:34.554000px;}
.fs9{font-size:34.579200px;}
.fs18{font-size:34.596000px;}
.fsf{font-size:34.631400px;}
.fs4{font-size:34.640400px;}
.fs2f{font-size:34.656000px;}
.fs2a{font-size:34.659000px;}
.fs7{font-size:34.687200px;}
.fs1d{font-size:34.789200px;}
.fs3a{font-size:34.789800px;}
.fs3f{font-size:36.000000px;}
.fs33{font-size:36.533225px;}
.fs31{font-size:36.533985px;}
.fs36{font-size:36.562634px;}
.fs3c{font-size:36.563582px;}
.fs3d{font-size:36.654500px;}
.fs3b{font-size:36.655258px;}
.fs39{font-size:36.660362px;}
.fs38{font-size:36.666612px;}
.fs1{font-size:38.880000px;}
.fs3e{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs22{font-size:59.571000px;}
.fs2{font-size:59.760000px;}
.fse{font-size:59.769000px;}
.fsa{font-size:59.812200px;}
.fsb{font-size:59.812800px;}
.fs19{font-size:59.841600px;}
.fs10{font-size:59.903400px;}
.fs6{font-size:59.918400px;}
.fs5{font-size:59.919000px;}
.fs30{font-size:59.945400px;}
.fs2b{font-size:59.950800px;}
.fsc{font-size:59.999400px;}
.fs8{font-size:60.000000px;}
.fs26{font-size:60.175800px;}
.fs1c{font-size:60.176400px;}
.fs25{font-size:60.272400px;}
.fs24{font-size:62.838651px;}
.fs27{font-size:63.074589px;}
.fs1b{font-size:63.092006px;}
.fs12{font-size:63.148726px;}
.fs34{font-size:63.192365px;}
.fs32{font-size:63.193694px;}
.fs20{font-size:63.242834px;}
.fs37{font-size:63.244162px;}
.fs21{font-size:63.244921px;}
.fs1f{font-size:63.245490px;}
.fs15{font-size:63.249476px;}
.fs1e{font-size:63.405675px;}
.fs2d{font-size:66.240000px;}
.fs17{font-size:78.355200px;}
.fs2e{font-size:78.490800px;}
.fs35{font-size:78.562200px;}
.fs13{font-size:89.854800px;}
.fs16{font-size:90.000000px;}
.fs28{font-size:97.045200px;}
.fs29{font-size:99.106200px;}
.fs2c{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.520000px;}
.y1b8{bottom:2.880000px;}
.yc6{bottom:2.973328px;}
.y6d{bottom:2.988450px;}
.yd0{bottom:2.988600px;}
.yd4{bottom:2.988750px;}
.y53{bottom:3.000300px;}
.yd6{bottom:3.013950px;}
.y1ba{bottom:3.060000px;}
.y92{bottom:3.271950px;}
.y8d{bottom:3.272550px;}
.y18f{bottom:3.420000px;}
.y191{bottom:3.519450px;}
.y45{bottom:3.598280px;}
.y42{bottom:3.598430px;}
.yab{bottom:3.608501px;}
.y198{bottom:3.609450px;}
.y4c{bottom:3.609600px;}
.ya6{bottom:3.609851px;}
.yd9{bottom:3.620563px;}
.y78{bottom:3.789968px;}
.y7a{bottom:3.790800px;}
.y71{bottom:3.790950px;}
.y85{bottom:3.796214px;}
.y87{bottom:3.796800px;}
.y80{bottom:3.796950px;}
.yff{bottom:4.404629px;}
.ycd{bottom:4.466550px;}
.y195{bottom:4.500000px;}
.y9e{bottom:4.500150px;}
.y9f{bottom:4.500300px;}
.y156{bottom:4.504500px;}
.y29{bottom:4.783986px;}
.y3d{bottom:4.805700px;}
.y125{bottom:4.959518px;}
.y139{bottom:4.974354px;}
.y1ad{bottom:5.004450px;}
.y1a7{bottom:5.019450px;}
.y1a1{bottom:5.034450px;}
.yc1{bottom:5.093550px;}
.y90{bottom:5.096181px;}
.y16e{bottom:5.109600px;}
.y164{bottom:5.124450px;}
.y174{bottom:5.124600px;}
.y19{bottom:6.035678px;}
.y21{bottom:6.035885px;}
.y2e{bottom:6.043970px;}
.y36{bottom:6.044222px;}
.y155{bottom:6.754500px;}
.yc5{bottom:6.934800px;}
.y28{bottom:7.165742px;}
.y3c{bottom:7.190700px;}
.y124{bottom:7.207471px;}
.y138{bottom:7.222307px;}
.y19c{bottom:7.380000px;}
.y192{bottom:7.410150px;}
.y46{bottom:7.476450px;}
.y43{bottom:7.476600px;}
.ye2{bottom:7.476750px;}
.ye0{bottom:7.476900px;}
.ya4{bottom:7.494600px;}
.ya9{bottom:7.498650px;}
.yac{bottom:7.498950px;}
.yad{bottom:7.499100px;}
.yb7{bottom:7.499850px;}
.yb6{bottom:7.500000px;}
.y4f{bottom:7.500150px;}
.y4d{bottom:7.500300px;}
.yb2{bottom:7.503942px;}
.yda{bottom:7.522350px;}
.y98{bottom:7.522650px;}
.y99{bottom:7.522800px;}
.y108{bottom:7.740000px;}
.y8c{bottom:7.901100px;}
.yf5{bottom:8.148843px;}
.y9d{bottom:8.484600px;}
.y1af{bottom:8.906400px;}
.y1a9{bottom:8.921400px;}
.y1a3{bottom:8.936550px;}
.yc2{bottom:8.971950px;}
.y91{bottom:8.975700px;}
.y16f{bottom:9.000300px;}
.y165{bottom:9.026250px;}
.y168{bottom:9.026550px;}
.y175{bottom:9.026700px;}
.y6c{bottom:9.712650px;}
.y52{bottom:9.750150px;}
.y57{bottom:9.750300px;}
.yef{bottom:9.789000px;}
.y24{bottom:9.921989px;}
.y1c{bottom:9.937156px;}
.y31{bottom:9.950700px;}
.yfe{bottom:10.909291px;}
.y10f{bottom:10.959127px;}
.y140{bottom:10.967730px;}
.ycc{bottom:11.168400px;}
.ya3{bottom:11.484600px;}
.y15f{bottom:11.489850px;}
.y15e{bottom:11.490000px;}
.y15c{bottom:11.490150px;}
.y96{bottom:11.518350px;}
.y161{bottom:11.715150px;}
.y160{bottom:11.715300px;}
.yb1{bottom:11.718900px;}
.ydc{bottom:11.753400px;}
.yf8{bottom:12.033369px;}
.y132{bottom:12.040615px;}
.y11e{bottom:12.040765px;}
.y119{bottom:12.041065px;}
.y114{bottom:12.041215px;}
.y12d{bottom:12.041365px;}
.y145{bottom:12.047250px;}
.y14a{bottom:12.047400px;}
.y14f{bottom:12.047550px;}
.y77{bottom:14.084151px;}
.y84{bottom:14.106985px;}
.y19b{bottom:14.130000px;}
.y44{bottom:14.205450px;}
.y41{bottom:14.205600px;}
.ye1{bottom:14.205750px;}
.yaa{bottom:14.248800px;}
.ya5{bottom:14.250150px;}
.ydd{bottom:14.292150px;}
.y97{bottom:14.292300px;}
.y7c{bottom:14.554650px;}
.y88{bottom:14.578050px;}
.y8e{bottom:15.661500px;}
.y1ae{bottom:15.676037px;}
.y1a8{bottom:15.691037px;}
.y1a2{bottom:15.706037px;}
.y170{bottom:15.750150px;}
.y166{bottom:15.796050px;}
.y169{bottom:15.796350px;}
.y176{bottom:15.796500px;}
.y102{bottom:16.259900px;}
.y8f{bottom:17.905350px;}
.y73{bottom:17.965474px;}
.y7b{bottom:17.970900px;}
.y79{bottom:17.971050px;}
.y86{bottom:18.000000px;}
.y81{bottom:18.000150px;}
.yf4{bottom:18.780491px;}
.y20{bottom:20.082567px;}
.y35{bottom:20.109881px;}
.y123{bottom:20.650227px;}
.y137{bottom:20.665063px;}
.y154{bottom:20.674500px;}
.y27{bottom:21.396362px;}
.y3b{bottom:21.440700px;}
.y72{bottom:21.949050px;}
.y23{bottom:23.972854px;}
.y1b{bottom:23.973182px;}
.y30{bottom:24.005700px;}
.y3a{bottom:24.020700px;}
.y76{bottom:24.707333px;}
.yfd{bottom:25.147606px;}
.y1f{bottom:30.708510px;}
.y34{bottom:30.750180px;}
.y18{bottom:32.206500px;}
.y1e{bottom:32.206707px;}
.y2d{bottom:32.250150px;}
.y33{bottom:32.250401px;}
.y26{bottom:32.631062px;}
.y39{bottom:32.690700px;}
.y74{bottom:33.508500px;}
.y82{bottom:33.562500px;}
.y12f{bottom:33.575214px;}
.y116{bottom:33.575364px;}
.y111{bottom:33.575514px;}
.y12a{bottom:33.575664px;}
.y142{bottom:33.607243px;}
.y147{bottom:33.607393px;}
.y122{bottom:34.887259px;}
.y136{bottom:34.902095px;}
.y153{bottom:34.924500px;}
.y75{bottom:35.754750px;}
.y83{bottom:35.812500px;}
.y22{bottom:36.091350px;}
.y1a{bottom:36.091800px;}
.y2f{bottom:36.140700px;}
.y38{bottom:36.155700px;}
.y131{bottom:37.472451px;}
.y11d{bottom:37.472601px;}
.y118{bottom:37.472901px;}
.y113{bottom:37.473051px;}
.y12c{bottom:37.473201px;}
.y144{bottom:37.502250px;}
.y149{bottom:37.502400px;}
.y14e{bottom:37.502550px;}
.y25{bottom:38.008739px;}
.y37{bottom:38.075700px;}
.yf3{bottom:38.076889px;}
.yfc{bottom:39.385921px;}
.yee{bottom:39.861787px;}
.y127{bottom:41.451280px;}
.y13b{bottom:41.466117px;}
.y158{bottom:41.719500px;}
.yf7{bottom:41.963806px;}
.y1d{bottom:42.832650px;}
.y32{bottom:42.890700px;}
.y10a{bottom:43.200000px;}
.y11b{bottom:44.206014px;}
.y14c{bottom:44.248093px;}
.y101{bottom:45.950534px;}
.y121{bottom:46.127022px;}
.y135{bottom:46.141858px;}
.y152{bottom:46.174500px;}
.yf2{bottom:48.708538px;}
.y120{bottom:50.577967px;}
.y134{bottom:50.592804px;}
.yfb{bottom:50.626696px;}
.y151{bottom:51.094500px;}
.y12e{bottom:59.991750px;}
.y115{bottom:59.991900px;}
.y110{bottom:59.992050px;}
.y129{bottom:59.992200px;}
.yfa{bottom:60.128898px;}
.y141{bottom:60.281700px;}
.y146{bottom:60.281850px;}
.y10e{bottom:62.802300px;}
.y13f{bottom:63.093750px;}
.y130{bottom:63.878400px;}
.y11c{bottom:63.878550px;}
.y117{bottom:63.878850px;}
.y112{bottom:63.879000px;}
.y12b{bottom:63.879150px;}
.y143{bottom:64.172250px;}
.y148{bottom:64.172400px;}
.y14d{bottom:64.172550px;}
.y133{bottom:64.814850px;}
.y11f{bottom:64.815000px;}
.y150{bottom:65.344500px;}
.yf1{bottom:67.632352px;}
.y126{bottom:67.857229px;}
.y13a{bottom:67.872065px;}
.y157{bottom:68.389500px;}
.yed{bottom:69.412050px;}
.y11a{bottom:70.622550px;}
.y14b{bottom:70.922550px;}
.yf6{bottom:71.519550px;}
.yf9{bottom:74.367213px;}
.y67{bottom:74.560320px;}
.y100{bottom:75.506278px;}
.yf0{bottom:78.264000px;}
.y18b{bottom:81.183600px;}
.y66{bottom:88.417260px;}
.y18a{bottom:92.339100px;}
.yec{bottom:101.610000px;}
.y65{bottom:102.093300px;}
.y64{bottom:115.950240px;}
.y63{bottom:129.807180px;}
.y105{bottom:131.940000px;}
.y62{bottom:143.483220px;}
.yeb{bottom:143.639280px;}
.y103{bottom:143.640000px;}
.y61{bottom:157.340160px;}
.y60{bottom:171.197100px;}
.y5f{bottom:184.873140px;}
.yea{bottom:197.094600px;}
.y5e{bottom:198.730080px;}
.y5d{bottom:212.587020px;}
.ye9{bottom:215.276580px;}
.y5c{bottom:226.263060px;}
.ye8{bottom:233.279280px;}
.y5b{bottom:240.120000px;}
.y189{bottom:250.204500px;}
.ye7{bottom:251.461260px;}
.y5a{bottom:254.700000px;}
.y188{bottom:261.360000px;}
.ye6{bottom:269.643240px;}
.y59{bottom:279.533700px;}
.ye5{bottom:292.856940px;}
.y56{bottom:293.460000px;}
.y58{bottom:296.640000px;}
.y55{bottom:296.644500px;}
.y51{bottom:313.260000px;}
.y50{bottom:316.435500px;}
.y54{bottom:316.440000px;}
.ydf{bottom:325.560000px;}
.ye4{bottom:330.060000px;}
.yde{bottom:333.174780px;}
.ye3{bottom:333.180000px;}
.y4b{bottom:333.810000px;}
.y4e{bottom:341.460000px;}
.yd8{bottom:350.385000px;}
.y49{bottom:357.060000px;}
.yd7{bottom:358.018920px;}
.ydb{bottom:358.020000px;}
.y48{bottom:364.674780px;}
.y4a{bottom:364.680000px;}
.yd3{bottom:377.010000px;}
.yd5{bottom:380.160000px;}
.yd2{bottom:380.167380px;}
.y40{bottom:381.885000px;}
.y47{bottom:389.520000px;}
.y3f{bottom:389.521260px;}
.ycf{bottom:397.560000px;}
.yce{bottom:400.675500px;}
.yd1{bottom:400.680000px;}
.y2c{bottom:406.860000px;}
.yc9{bottom:418.035000px;}
.ycb{bottom:421.111500px;}
.y187{bottom:425.313900px;}
.yca{bottom:425.700000px;}
.yc8{bottom:425.707380px;}
.y3e{bottom:430.920000px;}
.y2b{bottom:430.921260px;}
.yc4{bottom:443.085000px;}
.y186{bottom:443.316600px;}
.yc7{bottom:446.220000px;}
.yc3{bottom:446.227020px;}
.y185{bottom:461.498580px;}
.y17{bottom:463.260000px;}
.yc0{bottom:465.060000px;}
.ybe{bottom:469.560000px;}
.ybf{bottom:474.120000px;}
.ybd{bottom:474.123960px;}
.y184{bottom:479.501280px;}
.y16{bottom:487.247040px;}
.y2a{bottom:487.260000px;}
.yba{bottom:489.885000px;}
.ybc{bottom:492.960000px;}
.y1ce{bottom:494.660160px;}
.ybb{bottom:497.520000px;}
.yb9{bottom:497.523240px;}
.y183{bottom:497.683260px;}
.y1cd{bottom:508.517100px;}
.yb5{bottom:513.060000px;}
.y182{bottom:515.865240px;}
.yb4{bottom:520.734780px;}
.yb8{bottom:520.740000px;}
.y1cc{bottom:522.193140px;}
.y15{bottom:522.893880px;}
.y181{bottom:533.867940px;}
.y1cb{bottom:536.050080px;}
.yb0{bottom:537.960000px;}
.y14{bottom:540.896580px;}
.yb3{bottom:545.580000px;}
.yaf{bottom:545.581260px;}
.y1ca{bottom:549.907020px;}
.y180{bottom:552.049920px;}
.y13{bottom:559.078560px;}
.y1c9{bottom:563.583060px;}
.ya8{bottom:564.361500px;}
.y17f{bottom:570.052620px;}
.yae{bottom:572.040000px;}
.y12{bottom:577.260540px;}
.y1c8{bottom:577.440000px;}
.y17e{bottom:588.234600px;}
.ya2{bottom:589.260000px;}
.y11{bottom:595.263240px;}
.ya7{bottom:596.880000px;}
.ya1{bottom:596.883960px;}
.y1c7{bottom:597.960000px;}
.y17d{bottom:606.416580px;}
.y9c{bottom:615.660000px;}
.y10{bottom:618.480000px;}
.ya0{bottom:620.280000px;}
.y9b{bottom:620.280540px;}
.y17c{bottom:624.419280px;}
.y1c6{bottom:633.240000px;}
.y95{bottom:638.910000px;}
.y17b{bottom:642.601260px;}
.y9a{bottom:646.560000px;}
.y94{bottom:646.567020px;}
.y1c5{bottom:648.900000px;}
.yf{bottom:653.575500px;}
.y17a{bottom:660.783240px;}
.y1c4{bottom:664.380000px;}
.y8b{bottom:665.385000px;}
.ye{bottom:669.060000px;}
.y93{bottom:674.460000px;}
.y8a{bottom:674.464680px;}
.y1c3{bottom:679.860000px;}
.y179{bottom:684.000720px;}
.yd{bottom:684.900000px;}
.y7f{bottom:694.860000px;}
.y1c2{bottom:695.340000px;}
.yc{bottom:701.793000px;}
.y1c1{bottom:711.000000px;}
.y7e{bottom:712.975140px;}
.y89{bottom:712.980000px;}
.yb{bottom:717.277500px;}
.y178{bottom:720.006120px;}
.y1c0{bottom:726.480000px;}
.ya{bottom:732.762000px;}
.y173{bottom:734.835000px;}
.y1bf{bottom:741.960000px;}
.y70{bottom:742.260000px;}
.y177{bottom:743.940000px;}
.y172{bottom:743.940540px;}
.y9{bottom:748.422000px;}
.y1be{bottom:757.440000px;}
.y7d{bottom:760.320000px;}
.y6f{bottom:760.327200px;}
.y16d{bottom:761.160000px;}
.y8{bottom:763.906500px;}
.y171{bottom:770.220000px;}
.y1bd{bottom:773.100000px;}
.y7{bottom:779.391000px;}
.y16b{bottom:787.560000px;}
.y1bc{bottom:788.580000px;}
.y6b{bottom:788.835000px;}
.y6a{bottom:791.998200px;}
.y6e{bottom:792.000000px;}
.y6{bottom:794.875500px;}
.y16c{bottom:796.680000px;}
.y16a{bottom:796.680540px;}
.y1bb{bottom:804.060000px;}
.y5{bottom:810.360000px;}
.y69{bottom:811.614420px;}
.y163{bottom:813.885000px;}
.y1b9{bottom:819.540000px;}
.y162{bottom:822.955500px;}
.y167{bottom:822.960000px;}
.y68{bottom:828.900000px;}
.y4{bottom:833.040000px;}
.y1b7{bottom:835.200000px;}
.y15b{bottom:840.360000px;}
.y15d{bottom:847.980000px;}
.y15a{bottom:847.981260px;}
.y1b6{bottom:851.400000px;}
.y109{bottom:856.980000px;}
.y13e{bottom:866.760000px;}
.y1b5{bottom:875.337300px;}
.y10b{bottom:881.100000px;}
.y1b4{bottom:893.340000px;}
.y159{bottom:904.320000px;}
.y13d{bottom:904.324680px;}
.y1b3{bottom:910.800000px;}
.y1b1{bottom:912.135000px;}
.y1b2{bottom:919.800000px;}
.y104{bottom:932.040000px;}
.y1ac{bottom:936.180000px;}
.y1aa{bottom:937.710000px;}
.y1b0{bottom:945.180000px;}
.y1ab{bottom:945.360000px;}
.y128{bottom:950.160000px;}
.y1a6{bottom:961.740000px;}
.y1a4{bottom:963.060000px;}
.y1a5{bottom:970.740000px;}
.y107{bottom:981.180000px;}
.y1a0{bottom:987.300000px;}
.y13c{bottom:987.660000px;}
.y19e{bottom:988.635000px;}
.y19f{bottom:996.300000px;}
.y19a{bottom:1012.680000px;}
.y197{bottom:1013.460000px;}
.y19d{bottom:1020.240000px;}
.y199{bottom:1021.140000px;}
.y106{bottom:1022.580000px;}
.y10d{bottom:1033.485000px;}
.y190{bottom:1036.800000px;}
.y194{bottom:1038.885000px;}
.y196{bottom:1043.460000px;}
.y193{bottom:1044.360000px;}
.y18e{bottom:1060.020000px;}
.y10c{bottom:1071.000000px;}
.y18d{bottom:1083.957300px;}
.y18c{bottom:1101.960000px;}
.y2{bottom:1133.640000px;}
.y1{bottom:1136.160000px;}
.h2{height:13.860000px;}
.h80{height:15.478500px;}
.h82{height:15.480000px;}
.h81{height:15.660000px;}
.h4c{height:16.575000px;}
.h79{height:17.280000px;}
.h32{height:17.399364px;}
.h23{height:17.416862px;}
.h2b{height:17.445190px;}
.h43{height:18.000000px;}
.h44{height:18.001500px;}
.h1d{height:19.425000px;}
.h1b{height:19.500000px;}
.h49{height:20.850000px;}
.h46{height:20.851500px;}
.h7a{height:22.410000px;}
.h19{height:22.498500px;}
.h42{height:22.500000px;}
.h7c{height:23.880000px;}
.h4a{height:23.912513px;}
.h12{height:23.925000px;}
.h1e{height:23.992084px;}
.h3e{height:23.998500px;}
.h15{height:24.009581px;}
.h33{height:24.021246px;}
.h13{height:24.026466px;}
.h24{height:24.045826px;}
.h9{height:24.052075px;}
.h21{height:24.062735px;}
.h61{height:24.062906px;}
.h55{height:24.064989px;}
.h7{height:24.068989px;}
.h62{height:24.075050px;}
.h68{height:24.075650px;}
.h5f{height:24.079828px;}
.hf{height:24.084570px;}
.hd{height:24.101507px;}
.h38{height:24.155392px;}
.h70{height:24.172379px;}
.h73{height:24.172796px;}
.h7d{height:25.380000px;}
.h7f{height:25.453500px;}
.h7e{height:25.470000px;}
.h3d{height:25.500000px;}
.h36{height:25.575000px;}
.h76{height:25.576500px;}
.h2f{height:28.423500px;}
.h35{height:32.045221px;}
.h27{height:32.078011px;}
.h2d{height:32.129696px;}
.h1{height:33.518320px;}
.h69{height:33.839614px;}
.h64{height:33.840317px;}
.h6d{height:33.866854px;}
.h75{height:33.867732px;}
.h77{height:33.951947px;}
.h74{height:33.952649px;}
.h72{height:33.957376px;}
.h71{height:33.963165px;}
.h3{height:36.013359px;}
.h4{height:36.597656px;}
.h7b{height:37.520508px;}
.h67{height:39.923636px;}
.h58{height:39.927233px;}
.h6f{height:39.960000px;}
.h48{height:41.362286px;}
.h47{height:41.391374px;}
.h5{height:41.522695px;}
.h45{height:41.529760px;}
.h18{height:41.530177px;}
.h78{height:41.533495px;}
.h51{height:41.534935px;}
.h14{height:41.558965px;}
.h17{height:41.559382px;}
.h25{height:41.593083px;}
.ha{height:41.603498px;}
.h63{height:41.622246px;}
.h22{height:41.622333px;}
.h56{height:41.625995px;}
.h8{height:41.633172px;}
.h60{height:41.651516px;}
.h1a{height:41.659740px;}
.h10{height:41.660156px;}
.h40{height:41.689036px;}
.he{height:41.689453px;}
.h4f{height:41.782221px;}
.h39{height:41.782637px;}
.h4e{height:41.811603px;}
.h37{height:41.812020px;}
.h4d{height:41.849293px;}
.h83{height:43.013672px;}
.h5c{height:46.025156px;}
.h20{height:46.425000px;}
.h2a{height:46.500000px;}
.h1f{height:55.362204px;}
.h16{height:55.402218px;}
.h6{height:55.423500px;}
.h28{height:55.486694px;}
.hc{height:55.500000px;}
.hb{height:55.500588px;}
.h66{height:55.525598px;}
.h57{height:55.530599px;}
.h1c{height:55.575616px;}
.h11{height:55.576172px;}
.h3b{height:55.739566px;}
.h4b{height:58.205528px;}
.h50{height:58.424070px;}
.h34{height:58.440203px;}
.h26{height:58.492741px;}
.h5b{height:58.500000px;}
.h6a{height:58.533162px;}
.h65{height:58.534393px;}
.h3f{height:58.579910px;}
.h6e{height:58.581140px;}
.h41{height:58.581843px;}
.h3c{height:58.582370px;}
.h2c{height:58.586062px;}
.h3a{height:58.730745px;}
.h31{height:64.393793px;}
.h30{height:72.578034px;}
.h5e{height:72.703637px;}
.h6c{height:72.769772px;}
.h5d{height:82.425000px;}
.h6b{height:82.501500px;}
.h29{height:83.229763px;}
.h2e{height:83.364258px;}
.h53{height:89.890012px;}
.h52{height:91.425000px;}
.h54{height:91.799053px;}
.h5a{height:100.054688px;}
.h59{height:165.420000px;}
.h0{height:1188.000000px;}
.w1{width:6.121500px;}
.w11{width:10.425000px;}
.w14{width:14.923500px;}
.w5{width:16.575000px;}
.w6{width:18.000000px;}
.w12{width:18.001500px;}
.w17{width:20.850000px;}
.w13{width:22.500000px;}
.w33{width:23.925000px;}
.w2f{width:25.500000px;}
.w22{width:25.575000px;}
.w21{width:25.576500px;}
.w30{width:27.000000px;}
.w32{width:28.423500px;}
.w19{width:28.425000px;}
.w2e{width:30.075000px;}
.w18{width:31.500000px;}
.w16{width:35.998500px;}
.w2d{width:37.498500px;}
.w7{width:40.500000px;}
.w31{width:43.501500px;}
.w23{width:43.575000px;}
.w24{width:45.000000px;}
.w27{width:45.001500px;}
.w28{width:46.423500px;}
.w4{width:47.850000px;}
.w15{width:47.851500px;}
.w25{width:47.925000px;}
.w26{width:49.500000px;}
.w2a{width:55.801500px;}
.w1a{width:66.075000px;}
.w2b{width:82.440000px;}
.w29{width:82.978500px;}
.w2c{width:86.760000px;}
.wc{width:99.000000px;}
.w9{width:120.076500px;}
.w35{width:124.200000px;}
.wb{width:128.850000px;}
.wa{width:140.925000px;}
.w10{width:162.000000px;}
.w8{width:182.850000px;}
.w3{width:187.498500px;}
.w1b{width:203.923500px;}
.w34{width:243.360000px;}
.w2{width:283.498500px;}
.wf{width:288.000000px;}
.wd{width:295.500000px;}
.w1e{width:307.500000px;}
.w20{width:320.925000px;}
.w1f{width:334.425000px;}
.we{width:344.851500px;}
.w1d{width:708.480000px;}
.w1c{width:730.080000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:2.533350px;}
.x3d{left:4.074731px;}
.x3b{left:5.159400px;}
.x90{left:6.388117px;}
.x3f{left:7.410900px;}
.x22{left:8.852550px;}
.x33{left:9.927336px;}
.x74{left:11.058300px;}
.x20{left:12.102750px;}
.x53{left:13.781550px;}
.xc{left:14.816105px;}
.x4d{left:16.359150px;}
.x44{left:17.985518px;}
.x3e{left:19.793700px;}
.x56{left:20.812350px;}
.x4f{left:21.974700px;}
.x88{left:23.479050px;}
.x1d{left:24.704558px;}
.x7c{left:26.640000px;}
.x1c{left:27.843750px;}
.x3c{left:29.967944px;}
.x80{left:31.031250px;}
.x45{left:32.091450px;}
.x7f{left:33.417696px;}
.xb6{left:34.560000px;}
.x43{left:36.308250px;}
.x40{left:38.226900px;}
.x37{left:40.232400px;}
.x34{left:41.631656px;}
.x32{left:42.714750px;}
.x36{left:44.962950px;}
.xb8{left:46.800000px;}
.x3a{left:48.592800px;}
.x2f{left:50.302350px;}
.x82{left:53.720550px;}
.x12{left:55.168350px;}
.x35{left:57.327750px;}
.x71{left:58.337700px;}
.xb5{left:59.400000px;}
.x72{left:61.621013px;}
.x9{left:62.771250px;}
.x1a{left:66.325262px;}
.x10{left:68.623350px;}
.x1{left:72.000000px;}
.x76{left:73.030362px;}
.xd{left:75.327926px;}
.x75{left:76.778974px;}
.x73{left:80.358572px;}
.xb7{left:81.720000px;}
.x48{left:82.825500px;}
.x31{left:84.770356px;}
.x50{left:85.931250px;}
.x23{left:88.560000px;}
.x3{left:90.000000px;}
.x8d{left:91.247653px;}
.x30{left:93.673050px;}
.x24{left:96.240000px;}
.x1b{left:99.374850px;}
.x8a{left:100.740000px;}
.x7b{left:103.500000px;}
.x19{left:104.906100px;}
.x7e{left:107.340000px;}
.x83{left:108.891488px;}
.x1f{left:112.440000px;}
.x11{left:113.668350px;}
.xf{left:115.078350px;}
.x5{left:119.415000px;}
.x7{left:121.215279px;}
.x4{left:122.940000px;}
.xb{left:124.921950px;}
.x78{left:129.960000px;}
.x6{left:135.046800px;}
.x9b{left:137.415000px;}
.x15{left:140.293350px;}
.x91{left:142.020000px;}
.x25{left:143.340000px;}
.x7d{left:144.720000px;}
.x84{left:149.240850px;}
.x92{left:151.440000px;}
.x7a{left:153.540000px;}
.x8e{left:154.694998px;}
.x13{left:156.883350px;}
.x21{left:160.200000px;}
.x79{left:163.980000px;}
.xa0{left:165.540000px;}
.x18{left:167.340000px;}
.x81{left:171.515550px;}
.x8c{left:179.067450px;}
.x9c{left:184.140000px;}
.x87{left:186.942300px;}
.x93{left:188.565000px;}
.xa{left:200.441250px;}
.x8b{left:207.513900px;}
.xa1{left:210.960000px;}
.x86{left:215.389200px;}
.x9d{left:216.840000px;}
.x94{left:221.940000px;}
.xe{left:228.003637px;}
.x95{left:231.540000px;}
.xa2{left:240.915000px;}
.x8{left:246.281250px;}
.x17{left:252.935373px;}
.x96{left:264.960000px;}
.x97{left:274.590000px;}
.x28{left:288.000000px;}
.x98{left:304.920000px;}
.x99{left:336.165000px;}
.x1e{left:354.780000px;}
.x9a{left:366.660000px;}
.x9e{left:376.815000px;}
.x16{left:402.840000px;}
.x89{left:406.440000px;}
.x26{left:409.590000px;}
.x85{left:414.720000px;}
.x8f{left:421.560000px;}
.x9f{left:424.620000px;}
.x27{left:450.000000px;}
.x29{left:468.000000px;}
.xb4{left:473.220000px;}
.x60{left:484.290000px;}
.x6f{left:486.005400px;}
.xb3{left:491.025600px;}
.xba{left:494.821440px;}
.xa5{left:502.560000px;}
.x4c{left:509.340000px;}
.x52{left:513.090000px;}
.x69{left:521.340000px;}
.x58{left:526.320000px;}
.xa4{left:529.356060px;}
.xae{left:530.565000px;}
.x61{left:532.080000px;}
.x62{left:539.715000px;}
.x2a{left:544.215000px;}
.x6a{left:552.780000px;}
.x70{left:555.240000px;}
.xaf{left:557.460000px;}
.xab{left:558.900000px;}
.xa8{left:561.960000px;}
.x2e{left:565.665000px;}
.x55{left:576.090000px;}
.x6b{left:582.015000px;}
.x2b{left:584.640000px;}
.x42{left:586.740000px;}
.x47{left:592.665000px;}
.x39{left:597.165000px;}
.xb9{left:604.800000px;}
.x4a{left:607.590000px;}
.x6c{left:610.380000px;}
.x2c{left:613.890000px;}
.x65{left:615.538500px;}
.xb2{left:621.900000px;}
.xa3{left:624.240000px;}
.xa6{left:642.240000px;}
.x5d{left:643.965000px;}
.x2d{left:654.300000px;}
.x66{left:659.160000px;}
.xb1{left:660.690000px;}
.x5e{left:661.965000px;}
.xa9{left:664.440000px;}
.xac{left:670.440000px;}
.x67{left:675.090000px;}
.x5f{left:684.360000px;}
.xad{left:695.880000px;}
.x68{left:699.300000px;}
.xaa{left:701.820000px;}
.xb0{left:704.880000px;}
.x4b{left:706.500000px;}
.x41{left:717.120000px;}
.x49{left:721.440000px;}
.xa7{left:724.680000px;}
.x46{left:727.560000px;}
.x57{left:738.000000px;}
.x38{left:748.440000px;}
.x77{left:759.060000px;}
.x59{left:774.090000px;}
.x63{left:780.913500px;}
.x5a{left:784.440000px;}
.x5b{left:792.090000px;}
.x6d{left:794.940000px;}
.x54{left:801.000000px;}
.x4e{left:804.780000px;}
.x5c{left:810.000000px;}
.x51{left:812.880000px;}
.x64{left:824.940000px;}
.x6e{left:835.380000px;}
.x2{left:839.880000px;}
@media print{
.v9{vertical-align:-46.628400pt;}
.v8{vertical-align:-30.801389pt;}
.v1{vertical-align:-18.560000pt;}
.ve{vertical-align:-16.000000pt;}
.v5{vertical-align:-14.228375pt;}
.v2{vertical-align:-12.162629pt;}
.v7{vertical-align:-10.178314pt;}
.v4{vertical-align:-6.488672pt;}
.vb{vertical-align:-4.464000pt;}
.va{vertical-align:-3.356942pt;}
.vc{vertical-align:-1.296000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.833067pt;}
.vd{vertical-align:16.000000pt;}
.v3{vertical-align:20.279467pt;}
.ls6a{letter-spacing:-5.013333pt;}
.ls6f{letter-spacing:-4.439681pt;}
.ls73{letter-spacing:-4.426667pt;}
.ls7b{letter-spacing:-4.426622pt;}
.lsbd{letter-spacing:-4.422638pt;}
.lsdd{letter-spacing:-1.114880pt;}
.ls3f{letter-spacing:-0.816000pt;}
.ls44{letter-spacing:-0.690560pt;}
.ls8f{letter-spacing:-0.647680pt;}
.lsd3{letter-spacing:-0.494788pt;}
.lsd2{letter-spacing:-0.494780pt;}
.ls4e{letter-spacing:-0.493329pt;}
.lsbb{letter-spacing:-0.492885pt;}
.ls46{letter-spacing:-0.492663pt;}
.ls41{letter-spacing:-0.480000pt;}
.ls5a{letter-spacing:-0.478080pt;}
.ls5d{letter-spacing:-0.471680pt;}
.ls8e{letter-spacing:-0.412160pt;}
.ls5e{letter-spacing:-0.385920pt;}
.lsd4{letter-spacing:-0.340167pt;}
.ls82{letter-spacing:-0.340161pt;}
.ls4f{letter-spacing:-0.339164pt;}
.ls84{letter-spacing:-0.338888pt;}
.lsbe{letter-spacing:-0.338859pt;}
.ls47{letter-spacing:-0.338706pt;}
.ls65{letter-spacing:-0.338618pt;}
.ls56{letter-spacing:-0.338108pt;}
.ls40{letter-spacing:-0.336000pt;}
.lscb{letter-spacing:-0.320000pt;}
.lsbf{letter-spacing:-0.319709pt;}
.ls6e{letter-spacing:-0.319155pt;}
.lsd5{letter-spacing:-0.318720pt;}
.ls5c{letter-spacing:-0.300160pt;}
.lsdb{letter-spacing:-0.277498pt;}
.ls42{letter-spacing:-0.257280pt;}
.ls8b{letter-spacing:-0.256000pt;}
.ls60{letter-spacing:-0.214400pt;}
.ls45{letter-spacing:-0.212480pt;}
.ls3e{letter-spacing:-0.192000pt;}
.ls83{letter-spacing:-0.171520pt;}
.ls78{letter-spacing:-0.160000pt;}
.ls50{letter-spacing:-0.154165pt;}
.ls48{letter-spacing:-0.153957pt;}
.ls61{letter-spacing:-0.153573pt;}
.lsd8{letter-spacing:-0.128640pt;}
.ls8c{letter-spacing:-0.117760pt;}
.lsd6{letter-spacing:-0.106240pt;}
.ls3d{letter-spacing:-0.096000pt;}
.ls70{letter-spacing:-0.092771pt;}
.ls71{letter-spacing:-0.092499pt;}
.ls81{letter-spacing:-0.091838pt;}
.ls43{letter-spacing:-0.053120pt;}
.lsd7{letter-spacing:-0.042880pt;}
.ls3c{letter-spacing:0.000000pt;}
.lsb9{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.042880pt;}
.ls9e{letter-spacing:0.046720pt;}
.ls33{letter-spacing:0.053120pt;}
.lsd1{letter-spacing:0.092499pt;}
.lsda{letter-spacing:0.092771pt;}
.ls3{letter-spacing:0.094720pt;}
.lsdc{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.100928pt;}
.ls20{letter-spacing:0.106240pt;}
.ls8d{letter-spacing:0.117760pt;}
.ls13{letter-spacing:0.127488pt;}
.ls8a{letter-spacing:0.128000pt;}
.lsa9{letter-spacing:0.132480pt;}
.ls9f{letter-spacing:0.136320pt;}
.lsd9{letter-spacing:0.144000pt;}
.ls12{letter-spacing:0.159360pt;}
.ls4{letter-spacing:0.160000pt;}
.ls35{letter-spacing:0.162560pt;}
.lsb8{letter-spacing:0.165760pt;}
.ls1f{letter-spacing:0.169984pt;}
.ls1e{letter-spacing:0.171520pt;}
.ls36{letter-spacing:0.183680pt;}
.lsa0{letter-spacing:0.191232pt;}
.ls2{letter-spacing:0.192000pt;}
.lsa2{letter-spacing:0.201856pt;}
.ls16{letter-spacing:0.212480pt;}
.lsaa{letter-spacing:0.215488pt;}
.ls3b{letter-spacing:0.256000pt;}
.ls5f{letter-spacing:0.257280pt;}
.ls21{letter-spacing:0.260288pt;}
.lsa8{letter-spacing:0.265600pt;}
.ls90{letter-spacing:0.294400pt;}
.ls7{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.336000pt;}
.ls5b{letter-spacing:0.343040pt;}
.ls14{letter-spacing:0.796800pt;}
.ls1c{letter-spacing:0.814720pt;}
.lsb7{letter-spacing:0.903040pt;}
.ls1a{letter-spacing:1.427904pt;}
.ls1b{letter-spacing:1.432192pt;}
.ls5{letter-spacing:1.434240pt;}
.ls19{letter-spacing:1.457920pt;}
.lsa7{letter-spacing:2.071680pt;}
.ls1d{letter-spacing:2.101120pt;}
.lsa3{letter-spacing:2.146048pt;}
.lsa6{letter-spacing:3.984000pt;}
.ls6{letter-spacing:5.258880pt;}
.lsa4{letter-spacing:7.224320pt;}
.lsa1{letter-spacing:11.649216pt;}
.ls34{letter-spacing:11.941672pt;}
.ls25{letter-spacing:14.378111pt;}
.lsa5{letter-spacing:20.663680pt;}
.ls57{letter-spacing:21.904557pt;}
.ls99{letter-spacing:23.213440pt;}
.ls18{letter-spacing:27.057280pt;}
.ls59{letter-spacing:27.753139pt;}
.ls4a{letter-spacing:27.802138pt;}
.ls30{letter-spacing:28.312960pt;}
.ls26{letter-spacing:29.675680pt;}
.ls67{letter-spacing:31.469253pt;}
.lsba{letter-spacing:34.758528pt;}
.ls8{letter-spacing:39.946000pt;}
.lsc{letter-spacing:40.000000pt;}
.ls95{letter-spacing:40.762872pt;}
.ls9d{letter-spacing:40.800000pt;}
.ls2f{letter-spacing:41.114880pt;}
.ls22{letter-spacing:50.318856pt;}
.ls96{letter-spacing:51.171773pt;}
.ls91{letter-spacing:51.172849pt;}
.ls9a{letter-spacing:51.213717pt;}
.ls28{letter-spacing:51.404018pt;}
.ls7e{letter-spacing:53.066136pt;}
.ls76{letter-spacing:53.066667pt;}
.ls2a{letter-spacing:54.025035pt;}
.ls85{letter-spacing:54.355392pt;}
.ls72{letter-spacing:55.413333pt;}
.ls6d{letter-spacing:56.746667pt;}
.ls2d{letter-spacing:58.186667pt;}
.ls29{letter-spacing:58.357735pt;}
.lsa{letter-spacing:58.480358pt;}
.lsf{letter-spacing:58.560000pt;}
.ls49{letter-spacing:59.865139pt;}
.ls51{letter-spacing:59.946667pt;}
.ls7c{letter-spacing:61.759382pt;}
.ls31{letter-spacing:61.760000pt;}
.lsb{letter-spacing:62.256640pt;}
.ls74{letter-spacing:65.066667pt;}
.ls55{letter-spacing:79.483768pt;}
.ls58{letter-spacing:79.484565pt;}
.lsd{letter-spacing:79.733333pt;}
.ls2c{letter-spacing:84.573333pt;}
.ls94{letter-spacing:88.399483pt;}
.ls86{letter-spacing:88.514026pt;}
.lsc0{letter-spacing:92.981976pt;}
.lsc4{letter-spacing:94.793659pt;}
.lsd0{letter-spacing:94.880000pt;}
.lscc{letter-spacing:96.160000pt;}
.ls9c{letter-spacing:97.493333pt;}
.lsac{letter-spacing:98.064000pt;}
.ls9{letter-spacing:100.130304pt;}
.lse{letter-spacing:100.266667pt;}
.lsc1{letter-spacing:103.107024pt;}
.ls4d{letter-spacing:103.379213pt;}
.ls4c{letter-spacing:103.432474pt;}
.ls93{letter-spacing:103.479082pt;}
.ls53{letter-spacing:103.573333pt;}
.ls54{letter-spacing:104.373333pt;}
.lsc5{letter-spacing:105.397334pt;}
.lsb0{letter-spacing:105.744000pt;}
.lscd{letter-spacing:105.820387pt;}
.ls98{letter-spacing:106.729454pt;}
.ls87{letter-spacing:108.657494pt;}
.ls6c{letter-spacing:109.744868pt;}
.lsc2{letter-spacing:111.875181pt;}
.ls80{letter-spacing:112.586667pt;}
.lsb1{letter-spacing:114.096000pt;}
.lsc6{letter-spacing:115.380044pt;}
.lsaf{letter-spacing:116.016000pt;}
.ls89{letter-spacing:117.663437pt;}
.lsb4{letter-spacing:117.936000pt;}
.lsce{letter-spacing:121.452945pt;}
.lsb3{letter-spacing:121.776000pt;}
.lsc9{letter-spacing:121.809053pt;}
.ls7a{letter-spacing:121.920000pt;}
.ls88{letter-spacing:126.136483pt;}
.lsb5{letter-spacing:128.160000pt;}
.ls37{letter-spacing:130.239782pt;}
.lsc7{letter-spacing:131.162398pt;}
.ls6b{letter-spacing:132.088858pt;}
.ls39{letter-spacing:132.691104pt;}
.lsb6{letter-spacing:139.056000pt;}
.lsb2{letter-spacing:141.600000pt;}
.ls38{letter-spacing:141.856915pt;}
.lsae{letter-spacing:143.520000pt;}
.lsab{letter-spacing:147.360000pt;}
.ls10{letter-spacing:153.593122pt;}
.lsad{letter-spacing:158.256000pt;}
.lsbc{letter-spacing:159.854400pt;}
.lsca{letter-spacing:160.000000pt;}
.ls3a{letter-spacing:177.420800pt;}
.ls92{letter-spacing:203.654506pt;}
.ls69{letter-spacing:209.501458pt;}
.ls9b{letter-spacing:212.800000pt;}
.ls97{letter-spacing:221.931192pt;}
.ls11{letter-spacing:233.143680pt;}
.ls23{letter-spacing:241.430400pt;}
.ls68{letter-spacing:242.322711pt;}
.ls79{letter-spacing:243.133562pt;}
.ls64{letter-spacing:245.867548pt;}
.ls62{letter-spacing:251.008387pt;}
.ls32{letter-spacing:252.320000pt;}
.ls63{letter-spacing:255.256819pt;}
.ls66{letter-spacing:257.842317pt;}
.ls27{letter-spacing:315.692160pt;}
.ls2b{letter-spacing:337.418240pt;}
.ls7f{letter-spacing:352.207106pt;}
.ls24{letter-spacing:352.823040pt;}
.ls2e{letter-spacing:390.538240pt;}
.ls7d{letter-spacing:605.577143pt;}
.lsc3{letter-spacing:616.938971pt;}
.ls75{letter-spacing:625.258968pt;}
.lscf{letter-spacing:645.877490pt;}
.lsc8{letter-spacing:674.838288pt;}
.ls77{letter-spacing:689.493333pt;}
.ls4b{letter-spacing:748.154458pt;}
.ls52{letter-spacing:749.173333pt;}
.ws8c{word-spacing:-749.173333pt;}
.ws89{word-spacing:-748.154458pt;}
.wsb6{word-spacing:-689.493333pt;}
.ws10e{word-spacing:-674.838288pt;}
.ws110{word-spacing:-645.877490pt;}
.wsb5{word-spacing:-625.258968pt;}
.ws10d{word-spacing:-616.938971pt;}
.wsb7{word-spacing:-605.577143pt;}
.wsb8{word-spacing:-352.207106pt;}
.wsb1{word-spacing:-257.842317pt;}
.wsaf{word-spacing:-255.256819pt;}
.wsae{word-spacing:-251.008387pt;}
.wsb0{word-spacing:-245.867548pt;}
.wsb2{word-spacing:-242.322711pt;}
.ws38{word-spacing:-229.469191pt;}
.ws10f{word-spacing:-160.000000pt;}
.ws10b{word-spacing:-159.854400pt;}
.wsb3{word-spacing:-132.088858pt;}
.wse8{word-spacing:-131.727445pt;}
.wsc9{word-spacing:-126.136483pt;}
.ws3a{word-spacing:-123.800307pt;}
.wsf4{word-spacing:-122.034697pt;}
.wse7{word-spacing:-117.887036pt;}
.wsca{word-spacing:-117.663437pt;}
.wsdd{word-spacing:-112.453229pt;}
.wsc8{word-spacing:-108.657494pt;}
.ws8e{word-spacing:-104.373333pt;}
.ws8d{word-spacing:-103.573333pt;}
.ws8a{word-spacing:-103.432474pt;}
.ws8b{word-spacing:-103.379213pt;}
.ws65{word-spacing:-101.836426pt;}
.wsdc{word-spacing:-100.362916pt;}
.wsf3{word-spacing:-98.852362pt;}
.ws23{word-spacing:-98.297139pt;}
.wsf7{word-spacing:-93.706667pt;}
.wseb{word-spacing:-84.296554pt;}
.ws91{word-spacing:-79.484565pt;}
.ws8f{word-spacing:-79.483768pt;}
.ws20{word-spacing:-73.280000pt;}
.ws12{word-spacing:-73.180339pt;}
.ws4e{word-spacing:-71.786667pt;}
.ws43{word-spacing:-68.746667pt;}
.ws40{word-spacing:-67.397568pt;}
.ws4d{word-spacing:-62.725648pt;}
.ws57{word-spacing:-60.954667pt;}
.ws21{word-spacing:-56.026667pt;}
.ws1f{word-spacing:-53.456000pt;}
.ws11{word-spacing:-53.383300pt;}
.ws62{word-spacing:-48.514852pt;}
.ws107{word-spacing:-48.000000pt;}
.ws19{word-spacing:-44.965333pt;}
.ws64{word-spacing:-42.109442pt;}
.ws63{word-spacing:-36.109033pt;}
.ws53{word-spacing:-33.524998pt;}
.ws69{word-spacing:-32.256000pt;}
.ws68{word-spacing:-32.000000pt;}
.ws48{word-spacing:-30.805333pt;}
.ws92{word-spacing:-27.753139pt;}
.ws27{word-spacing:-18.571024pt;}
.ws3b{word-spacing:-16.272000pt;}
.ws6e{word-spacing:-15.014400pt;}
.ws6b{word-spacing:-14.720000pt;}
.ws6a{word-spacing:-14.602240pt;}
.ws18{word-spacing:-14.426667pt;}
.wsa{word-spacing:-14.407191pt;}
.ws6c{word-spacing:-14.307840pt;}
.ws6d{word-spacing:-14.072320pt;}
.ws7{word-spacing:-13.598720pt;}
.wsb{word-spacing:-13.576314pt;}
.ws15{word-spacing:-13.492480pt;}
.ws5a{word-spacing:-13.386240pt;}
.wsfd{word-spacing:-13.333120pt;}
.ws24{word-spacing:-13.291600pt;}
.ws4{word-spacing:-13.280000pt;}
.ws100{word-spacing:-13.226880pt;}
.wsfc{word-spacing:-13.173760pt;}
.ws102{word-spacing:-13.173333pt;}
.ws2a{word-spacing:-13.067520pt;}
.ws6{word-spacing:-12.589440pt;}
.ws101{word-spacing:-12.336000pt;}
.ws1{word-spacing:-12.192000pt;}
.ws105{word-spacing:-12.144000pt;}
.ws109{word-spacing:-12.096000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.904000pt;}
.ws2{word-spacing:-11.808000pt;}
.ws104{word-spacing:-11.664000pt;}
.ws103{word-spacing:-11.520000pt;}
.ws2c{word-spacing:-11.063040pt;}
.ws13{word-spacing:-10.817268pt;}
.ws10a{word-spacing:-10.762880pt;}
.ws2f{word-spacing:-10.720000pt;}
.wsff{word-spacing:-10.591360pt;}
.wsfe{word-spacing:-10.548480pt;}
.ws30{word-spacing:-10.505600pt;}
.ws5{word-spacing:-10.462720pt;}
.ws2d{word-spacing:-10.419840pt;}
.ws2e{word-spacing:-10.248320pt;}
.ws54{word-spacing:-10.079899pt;}
.wse0{word-spacing:-9.863016pt;}
.wsd6{word-spacing:-8.898562pt;}
.ws108{word-spacing:-8.000000pt;}
.ws3e{word-spacing:-7.638162pt;}
.ws41{word-spacing:-7.615767pt;}
.ws58{word-spacing:-7.561362pt;}
.ws2b{word-spacing:-7.554101pt;}
.ws31{word-spacing:-7.525093pt;}
.ws106{word-spacing:-7.430769pt;}
.wsfa{word-spacing:-7.390900pt;}
.ws59{word-spacing:-7.390772pt;}
.ws1e{word-spacing:-7.369103pt;}
.ws10{word-spacing:-7.359161pt;}
.ws33{word-spacing:-7.357249pt;}
.ws29{word-spacing:-7.346159pt;}
.wsf9{word-spacing:-7.236278pt;}
.wsf8{word-spacing:-7.236154pt;}
.wsfb{word-spacing:-7.214938pt;}
.wsa8{word-spacing:-0.814720pt;}
.wsad{word-spacing:-0.796800pt;}
.wsd1{word-spacing:-0.765440pt;}
.ws49{word-spacing:-0.746667pt;}
.wsce{word-spacing:-0.647680pt;}
.ws80{word-spacing:-0.336000pt;}
.ws87{word-spacing:-0.318720pt;}
.ws127{word-spacing:-0.288000pt;}
.ws119{word-spacing:-0.265600pt;}
.wsa5{word-spacing:-0.257280pt;}
.wscc{word-spacing:-0.256000pt;}
.wsac{word-spacing:-0.212480pt;}
.ws126{word-spacing:-0.192000pt;}
.ws9d{word-spacing:-0.171520pt;}
.ws88{word-spacing:-0.159360pt;}
.wscb{word-spacing:-0.128000pt;}
.wsd0{word-spacing:-0.117760pt;}
.ws90{word-spacing:-0.106240pt;}
.ws124{word-spacing:-0.092771pt;}
.ws111{word-spacing:-0.092499pt;}
.wsc3{word-spacing:-0.053120pt;}
.ws6f{word-spacing:0.000000pt;}
.ws121{word-spacing:0.042880pt;}
.ws125{word-spacing:0.048000pt;}
.wsc2{word-spacing:0.053120pt;}
.ws11c{word-spacing:0.106240pt;}
.wscf{word-spacing:0.117760pt;}
.ws129{word-spacing:0.144000pt;}
.ws7f{word-spacing:0.192000pt;}
.ws85{word-spacing:0.212480pt;}
.ws132{word-spacing:0.214400pt;}
.ws128{word-spacing:0.240000pt;}
.wscd{word-spacing:0.256000pt;}
.ws81{word-spacing:0.257280pt;}
.ws9f{word-spacing:0.300160pt;}
.ws113{word-spacing:0.318720pt;}
.wsb4{word-spacing:0.319155pt;}
.ws7b{word-spacing:0.336000pt;}
.wsc4{word-spacing:0.343040pt;}
.wsa4{word-spacing:0.385920pt;}
.ws123{word-spacing:0.428800pt;}
.wsa0{word-spacing:0.471680pt;}
.ws94{word-spacing:0.478080pt;}
.ws7e{word-spacing:0.480000pt;}
.ws75{word-spacing:0.624000pt;}
.ws122{word-spacing:0.643200pt;}
.ws74{word-spacing:0.816000pt;}
.ws93{word-spacing:0.849920pt;}
.ws73{word-spacing:1.008000pt;}
.ws76{word-spacing:1.104000pt;}
.ws12e{word-spacing:1.114880pt;}
.wsb9{word-spacing:1.115520pt;}
.ws84{word-spacing:1.487360pt;}
.ws77{word-spacing:1.632000pt;}
.wsc7{word-spacing:1.752960pt;}
.wsa6{word-spacing:1.758080pt;}
.wsa1{word-spacing:1.929600pt;}
.ws11b{word-spacing:1.965440pt;}
.ws120{word-spacing:2.124800pt;}
.ws12c{word-spacing:2.358400pt;}
.ws71{word-spacing:2.544000pt;}
.ws7a{word-spacing:2.928000pt;}
.ws12b{word-spacing:3.087360pt;}
.ws12a{word-spacing:3.173120pt;}
.wsbc{word-spacing:3.665280pt;}
.ws11f{word-spacing:3.877760pt;}
.ws9a{word-spacing:4.288000pt;}
.ws10c{word-spacing:4.422638pt;}
.ws98{word-spacing:4.931200pt;}
.ws114{word-spacing:4.940160pt;}
.ws86{word-spacing:5.152640pt;}
.wsbb{word-spacing:5.577600pt;}
.wsba{word-spacing:5.949440pt;}
.ws95{word-spacing:6.268160pt;}
.ws117{word-spacing:6.480640pt;}
.ws12d{word-spacing:6.860800pt;}
.ws11e{word-spacing:6.905600pt;}
.ws11d{word-spacing:7.118080pt;}
.ws99{word-spacing:7.504000pt;}
.ws130{word-spacing:7.589760pt;}
.ws131{word-spacing:7.675520pt;}
.ws12f{word-spacing:8.147200pt;}
.ws118{word-spacing:9.667840pt;}
.ws9e{word-spacing:10.076800pt;}
.ws115{word-spacing:10.092800pt;}
.ws72{word-spacing:10.608000pt;}
.wsa2{word-spacing:10.720000pt;}
.ws11a{word-spacing:10.730240pt;}
.wsa7{word-spacing:10.891520pt;}
.ws82{word-spacing:11.367680pt;}
.ws97{word-spacing:11.739520pt;}
.wsc5{word-spacing:12.642560pt;}
.ws96{word-spacing:13.280000pt;}
.ws7c{word-spacing:14.448000pt;}
.ws112{word-spacing:15.404800pt;}
.ws7d{word-spacing:15.696000pt;}
.wsda{word-spacing:17.775809pt;}
.wsf1{word-spacing:17.792000pt;}
.ws78{word-spacing:19.344000pt;}
.ws79{word-spacing:19.536000pt;}
.wsc0{word-spacing:19.707520pt;}
.wsc1{word-spacing:20.079360pt;}
.ws83{word-spacing:20.344960pt;}
.wsbd{word-spacing:20.982400pt;}
.wsbf{word-spacing:21.141760pt;}
.wsbe{word-spacing:21.354240pt;}
.wsa9{word-spacing:24.541440pt;}
.ws116{word-spacing:24.807040pt;}
.wsa3{word-spacing:25.427840pt;}
.wsc6{word-spacing:26.081920pt;}
.ws70{word-spacing:26.592000pt;}
.ws9b{word-spacing:27.357440pt;}
.ws9c{word-spacing:27.528960pt;}
.wsea{word-spacing:28.187659pt;}
.ws34{word-spacing:30.016958pt;}
.ws22{word-spacing:31.429333pt;}
.wsaa{word-spacing:31.818880pt;}
.wsab{word-spacing:32.190720pt;}
.ws4a{word-spacing:35.112696pt;}
.ws42{word-spacing:35.472000pt;}
.wsf6{word-spacing:37.546667pt;}
.ws5f{word-spacing:39.865552pt;}
.ws3c{word-spacing:44.296806pt;}
.wsdf{word-spacing:46.533616pt;}
.ws4c{word-spacing:52.058667pt;}
.wsd8{word-spacing:74.662886pt;}
.wsd9{word-spacing:75.494630pt;}
.ws56{word-spacing:78.976000pt;}
.wsd{word-spacing:81.788294pt;}
.wsd7{word-spacing:81.825126pt;}
.ws4b{word-spacing:81.895708pt;}
.ws1b{word-spacing:81.898792pt;}
.wsf0{word-spacing:83.730276pt;}
.ws52{word-spacing:90.898964pt;}
.ws35{word-spacing:92.490850pt;}
.wse4{word-spacing:92.979738pt;}
.wse5{word-spacing:93.811482pt;}
.wsd5{word-spacing:93.935774pt;}
.wsef{word-spacing:94.021333pt;}
.ws5e{word-spacing:98.366863pt;}
.wsc{word-spacing:98.646622pt;}
.ws1a{word-spacing:98.779896pt;}
.wse3{word-spacing:100.138897pt;}
.ws47{word-spacing:100.238300pt;}
.ws55{word-spacing:101.450039pt;}
.ws39{word-spacing:106.528000pt;}
.ws51{word-spacing:107.286739pt;}
.ws61{word-spacing:107.359718pt;}
.wse6{word-spacing:109.905228pt;}
.ws60{word-spacing:115.853484pt;}
.ws67{word-spacing:116.293894pt;}
.ws46{word-spacing:116.619908pt;}
.wsf2{word-spacing:119.338667pt;}
.wsdb{word-spacing:122.331244pt;}
.ws32{word-spacing:124.332835pt;}
.ws66{word-spacing:125.619574pt;}
.wsd2{word-spacing:133.232028pt;}
.wsec{word-spacing:133.381157pt;}
.wse{word-spacing:138.484621pt;}
.ws3f{word-spacing:141.550940pt;}
.ws1c{word-spacing:142.926681pt;}
.ws14{word-spacing:147.063721pt;}
.ws50{word-spacing:151.998480pt;}
.ws45{word-spacing:152.000000pt;}
.ws3d{word-spacing:152.468276pt;}
.ws26{word-spacing:161.068377pt;}
.ws9{word-spacing:167.317751pt;}
.ws17{word-spacing:167.543801pt;}
.ws25{word-spacing:177.893847pt;}
.ws37{word-spacing:223.857675pt;}
.ws36{word-spacing:241.804131pt;}
.ws8{word-spacing:261.357969pt;}
.ws16{word-spacing:261.711070pt;}
.wsde{word-spacing:261.818496pt;}
.wsf5{word-spacing:280.972730pt;}
.wse9{word-spacing:300.402461pt;}
.wsd3{word-spacing:313.413461pt;}
.wsed{word-spacing:331.702131pt;}
.wse1{word-spacing:350.041003pt;}
.ws28{word-spacing:359.085866pt;}
.ws5d{word-spacing:362.605360pt;}
.ws5b{word-spacing:376.880426pt;}
.ws5c{word-spacing:385.075354pt;}
.wsf{word-spacing:502.393570pt;}
.wsd4{word-spacing:544.536636pt;}
.ws4f{word-spacing:568.900978pt;}
.wsee{word-spacing:572.036636pt;}
.ws44{word-spacing:587.573333pt;}
.ws1d{word-spacing:590.884890pt;}
.wse2{word-spacing:599.493350pt;}
._13{margin-left:-260.781192pt;}
._12{margin-left:-254.842505pt;}
._d{margin-left:-229.726698pt;}
._c{margin-left:-114.897907pt;}
._5a{margin-left:-108.929991pt;}
._59{margin-left:-103.796651pt;}
._3b{margin-left:-54.819012pt;}
._b{margin-left:-29.953658pt;}
._14{margin-left:-26.537600pt;}
._3c{margin-left:-6.688000pt;}
._5d{margin-left:-5.712640pt;}
._5e{margin-left:-2.912000pt;}
._2{margin-left:-1.392000pt;}
._0{width:1.099200pt;}
._5{width:2.614196pt;}
._1d{width:4.181333pt;}
._e{width:5.853621pt;}
._41{width:7.177463pt;}
._46{width:8.664108pt;}
._43{width:10.518540pt;}
._5b{width:11.894848pt;}
._4{width:15.201600pt;}
._3{width:16.372800pt;}
._58{width:18.346685pt;}
._56{width:20.112578pt;}
._5c{width:21.248000pt;}
._16{width:23.054080pt;}
._17{width:24.552320pt;}
._15{width:25.479040pt;}
._1{width:26.500800pt;}
._18{width:32.399168pt;}
._38{width:39.482265pt;}
._31{width:42.646507pt;}
._9{width:45.777658pt;}
._3a{width:51.051437pt;}
._2f{width:59.485857pt;}
._22{width:68.821333pt;}
._11{width:70.052049pt;}
._8{width:76.402618pt;}
._4d{width:81.379933pt;}
._32{width:83.264782pt;}
._a{width:85.622062pt;}
._1b{width:89.789216pt;}
._57{width:91.066144pt;}
._36{width:92.257637pt;}
._44{width:94.066081pt;}
._f{width:95.476221pt;}
._42{width:98.115670pt;}
._34{width:100.751402pt;}
._45{width:102.077691pt;}
._54{width:103.648000pt;}
._4a{width:107.871036pt;}
._39{width:110.501315pt;}
._10{width:111.920589pt;}
._29{width:112.821333pt;}
._4f{width:117.048451pt;}
._4e{width:120.397006pt;}
._35{width:124.849420pt;}
._33{width:134.008638pt;}
._37{width:135.568742pt;}
._27{width:143.909333pt;}
._7{width:149.631132pt;}
._30{width:153.070759pt;}
._21{width:154.821333pt;}
._19{width:161.397716pt;}
._24{width:162.624384pt;}
._6{width:166.058380pt;}
._28{width:167.082667pt;}
._2c{width:175.312365pt;}
._1c{width:184.262858pt;}
._2a{width:187.269333pt;}
._3e{width:201.651712pt;}
._51{width:210.836510pt;}
._1a{width:212.587542pt;}
._53{width:215.813333pt;}
._48{width:219.980885pt;}
._4b{width:224.941783pt;}
._23{width:235.293298pt;}
._25{width:236.992560pt;}
._2e{width:251.730816pt;}
._20{width:254.426667pt;}
._40{width:285.635492pt;}
._55{width:292.645333pt;}
._4c{width:298.457395pt;}
._3f{width:311.451162pt;}
._52{width:320.737893pt;}
._49{width:329.761852pt;}
._2b{width:391.036090pt;}
._1e{width:409.706667pt;}
._2d{width:414.982244pt;}
._1f{width:424.324663pt;}
._3d{width:456.922488pt;}
._50{width:484.325333pt;}
._47{width:511.859117pt;}
._26{width:528.324597pt;}
.fs1a{font-size:22.274667pt;}
.fs11{font-size:22.297067pt;}
.fs14{font-size:22.333333pt;}
.fs23{font-size:30.612800pt;}
.fsd{font-size:30.714667pt;}
.fs9{font-size:30.737067pt;}
.fs18{font-size:30.752000pt;}
.fsf{font-size:30.783467pt;}
.fs4{font-size:30.791467pt;}
.fs2f{font-size:30.805333pt;}
.fs2a{font-size:30.808000pt;}
.fs7{font-size:30.833067pt;}
.fs1d{font-size:30.923733pt;}
.fs3a{font-size:30.924267pt;}
.fs3f{font-size:32.000000pt;}
.fs33{font-size:32.473978pt;}
.fs31{font-size:32.474653pt;}
.fs36{font-size:32.500119pt;}
.fs3c{font-size:32.500962pt;}
.fs3d{font-size:32.581778pt;}
.fs3b{font-size:32.582452pt;}
.fs39{font-size:32.586989pt;}
.fs38{font-size:32.592544pt;}
.fs1{font-size:34.560000pt;}
.fs3e{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs22{font-size:52.952000pt;}
.fs2{font-size:53.120000pt;}
.fse{font-size:53.128000pt;}
.fsa{font-size:53.166400pt;}
.fsb{font-size:53.166933pt;}
.fs19{font-size:53.192533pt;}
.fs10{font-size:53.247467pt;}
.fs6{font-size:53.260800pt;}
.fs5{font-size:53.261333pt;}
.fs30{font-size:53.284800pt;}
.fs2b{font-size:53.289600pt;}
.fsc{font-size:53.332800pt;}
.fs8{font-size:53.333333pt;}
.fs26{font-size:53.489600pt;}
.fs1c{font-size:53.490133pt;}
.fs25{font-size:53.575467pt;}
.fs24{font-size:55.856579pt;}
.fs27{font-size:56.066301pt;}
.fs1b{font-size:56.081783pt;}
.fs12{font-size:56.132201pt;}
.fs34{font-size:56.170991pt;}
.fs32{font-size:56.172173pt;}
.fs20{font-size:56.215853pt;}
.fs37{font-size:56.217033pt;}
.fs21{font-size:56.217707pt;}
.fs1f{font-size:56.218213pt;}
.fs15{font-size:56.221756pt;}
.fs1e{font-size:56.360600pt;}
.fs2d{font-size:58.880000pt;}
.fs17{font-size:69.649067pt;}
.fs2e{font-size:69.769600pt;}
.fs35{font-size:69.833067pt;}
.fs13{font-size:79.870933pt;}
.fs16{font-size:80.000000pt;}
.fs28{font-size:86.262400pt;}
.fs29{font-size:88.094400pt;}
.fs2c{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.240000pt;}
.y1b8{bottom:2.560000pt;}
.yc6{bottom:2.642959pt;}
.y6d{bottom:2.656400pt;}
.yd0{bottom:2.656533pt;}
.yd4{bottom:2.656667pt;}
.y53{bottom:2.666933pt;}
.yd6{bottom:2.679067pt;}
.y1ba{bottom:2.720000pt;}
.y92{bottom:2.908400pt;}
.y8d{bottom:2.908933pt;}
.y18f{bottom:3.040000pt;}
.y191{bottom:3.128400pt;}
.y45{bottom:3.198471pt;}
.y42{bottom:3.198605pt;}
.yab{bottom:3.207557pt;}
.y198{bottom:3.208400pt;}
.y4c{bottom:3.208533pt;}
.ya6{bottom:3.208757pt;}
.yd9{bottom:3.218278pt;}
.y78{bottom:3.368860pt;}
.y7a{bottom:3.369600pt;}
.y71{bottom:3.369733pt;}
.y85{bottom:3.374413pt;}
.y87{bottom:3.374933pt;}
.y80{bottom:3.375067pt;}
.yff{bottom:3.915226pt;}
.ycd{bottom:3.970267pt;}
.y195{bottom:4.000000pt;}
.y9e{bottom:4.000133pt;}
.y9f{bottom:4.000267pt;}
.y156{bottom:4.004000pt;}
.y29{bottom:4.252432pt;}
.y3d{bottom:4.271733pt;}
.y125{bottom:4.408461pt;}
.y139{bottom:4.421648pt;}
.y1ad{bottom:4.448400pt;}
.y1a7{bottom:4.461733pt;}
.y1a1{bottom:4.475067pt;}
.yc1{bottom:4.527600pt;}
.y90{bottom:4.529939pt;}
.y16e{bottom:4.541867pt;}
.y164{bottom:4.555067pt;}
.y174{bottom:4.555200pt;}
.y19{bottom:5.365047pt;}
.y21{bottom:5.365231pt;}
.y2e{bottom:5.372418pt;}
.y36{bottom:5.372642pt;}
.y155{bottom:6.004000pt;}
.yc5{bottom:6.164267pt;}
.y28{bottom:6.369549pt;}
.y3c{bottom:6.391733pt;}
.y124{bottom:6.406641pt;}
.y138{bottom:6.419828pt;}
.y19c{bottom:6.560000pt;}
.y192{bottom:6.586800pt;}
.y46{bottom:6.645733pt;}
.y43{bottom:6.645867pt;}
.ye2{bottom:6.646000pt;}
.ye0{bottom:6.646133pt;}
.ya4{bottom:6.661867pt;}
.ya9{bottom:6.665467pt;}
.yac{bottom:6.665733pt;}
.yad{bottom:6.665867pt;}
.yb7{bottom:6.666533pt;}
.yb6{bottom:6.666667pt;}
.y4f{bottom:6.666800pt;}
.y4d{bottom:6.666933pt;}
.yb2{bottom:6.670171pt;}
.yda{bottom:6.686533pt;}
.y98{bottom:6.686800pt;}
.y99{bottom:6.686933pt;}
.y108{bottom:6.880000pt;}
.y8c{bottom:7.023200pt;}
.yf5{bottom:7.243416pt;}
.y9d{bottom:7.541867pt;}
.y1af{bottom:7.916800pt;}
.y1a9{bottom:7.930133pt;}
.y1a3{bottom:7.943600pt;}
.yc2{bottom:7.975067pt;}
.y91{bottom:7.978400pt;}
.y16f{bottom:8.000267pt;}
.y165{bottom:8.023333pt;}
.y168{bottom:8.023600pt;}
.y175{bottom:8.023733pt;}
.y6c{bottom:8.633467pt;}
.y52{bottom:8.666800pt;}
.y57{bottom:8.666933pt;}
.yef{bottom:8.701333pt;}
.y24{bottom:8.819546pt;}
.y1c{bottom:8.833028pt;}
.y31{bottom:8.845067pt;}
.yfe{bottom:9.697148pt;}
.y10f{bottom:9.741446pt;}
.y140{bottom:9.749094pt;}
.ycc{bottom:9.927467pt;}
.ya3{bottom:10.208533pt;}
.y15f{bottom:10.213200pt;}
.y15e{bottom:10.213333pt;}
.y15c{bottom:10.213467pt;}
.y96{bottom:10.238533pt;}
.y161{bottom:10.413467pt;}
.y160{bottom:10.413600pt;}
.yb1{bottom:10.416800pt;}
.ydc{bottom:10.447467pt;}
.yf8{bottom:10.696328pt;}
.y132{bottom:10.702769pt;}
.y11e{bottom:10.702903pt;}
.y119{bottom:10.703169pt;}
.y114{bottom:10.703303pt;}
.y12d{bottom:10.703436pt;}
.y145{bottom:10.708667pt;}
.y14a{bottom:10.708800pt;}
.y14f{bottom:10.708933pt;}
.y77{bottom:12.519246pt;}
.y84{bottom:12.539542pt;}
.y19b{bottom:12.560000pt;}
.y44{bottom:12.627067pt;}
.y41{bottom:12.627200pt;}
.ye1{bottom:12.627333pt;}
.yaa{bottom:12.665600pt;}
.ya5{bottom:12.666800pt;}
.ydd{bottom:12.704133pt;}
.y97{bottom:12.704267pt;}
.y7c{bottom:12.937467pt;}
.y88{bottom:12.958267pt;}
.y8e{bottom:13.921333pt;}
.y1ae{bottom:13.934255pt;}
.y1a8{bottom:13.947589pt;}
.y1a2{bottom:13.960922pt;}
.y170{bottom:14.000133pt;}
.y166{bottom:14.040933pt;}
.y169{bottom:14.041200pt;}
.y176{bottom:14.041333pt;}
.y102{bottom:14.453245pt;}
.y8f{bottom:15.915867pt;}
.y73{bottom:15.969310pt;}
.y7b{bottom:15.974133pt;}
.y79{bottom:15.974267pt;}
.y86{bottom:16.000000pt;}
.y81{bottom:16.000133pt;}
.yf4{bottom:16.693770pt;}
.y20{bottom:17.851171pt;}
.y35{bottom:17.875450pt;}
.y123{bottom:18.355757pt;}
.y137{bottom:18.368945pt;}
.y154{bottom:18.377333pt;}
.y27{bottom:19.018989pt;}
.y3b{bottom:19.058400pt;}
.y72{bottom:19.510267pt;}
.y23{bottom:21.309203pt;}
.y1b{bottom:21.309495pt;}
.y30{bottom:21.338400pt;}
.y3a{bottom:21.351733pt;}
.y76{bottom:21.962074pt;}
.yfd{bottom:22.353428pt;}
.y1f{bottom:27.296453pt;}
.y34{bottom:27.333493pt;}
.y18{bottom:28.628000pt;}
.y1e{bottom:28.628184pt;}
.y2d{bottom:28.666800pt;}
.y33{bottom:28.667023pt;}
.y26{bottom:29.005389pt;}
.y39{bottom:29.058400pt;}
.y74{bottom:29.785333pt;}
.y82{bottom:29.833333pt;}
.y12f{bottom:29.844635pt;}
.y116{bottom:29.844768pt;}
.y111{bottom:29.844901pt;}
.y12a{bottom:29.845035pt;}
.y142{bottom:29.873105pt;}
.y147{bottom:29.873238pt;}
.y122{bottom:31.010897pt;}
.y136{bottom:31.024085pt;}
.y153{bottom:31.044000pt;}
.y75{bottom:31.782000pt;}
.y83{bottom:31.833333pt;}
.y22{bottom:32.081200pt;}
.y1a{bottom:32.081600pt;}
.y2f{bottom:32.125067pt;}
.y38{bottom:32.138400pt;}
.y131{bottom:33.308846pt;}
.y11d{bottom:33.308979pt;}
.y118{bottom:33.309246pt;}
.y113{bottom:33.309379pt;}
.y12c{bottom:33.309512pt;}
.y144{bottom:33.335333pt;}
.y149{bottom:33.335467pt;}
.y14e{bottom:33.335600pt;}
.y25{bottom:33.785546pt;}
.y37{bottom:33.845067pt;}
.yf3{bottom:33.846124pt;}
.yfc{bottom:35.009708pt;}
.yee{bottom:35.432699pt;}
.y127{bottom:36.845583pt;}
.y13b{bottom:36.858770pt;}
.y158{bottom:37.084000pt;}
.yf7{bottom:37.301161pt;}
.y1d{bottom:38.073467pt;}
.y32{bottom:38.125067pt;}
.y10a{bottom:38.400000pt;}
.y11b{bottom:39.294235pt;}
.y14c{bottom:39.331638pt;}
.y101{bottom:40.844919pt;}
.y121{bottom:41.001797pt;}
.y135{bottom:41.014985pt;}
.y152{bottom:41.044000pt;}
.yf2{bottom:43.296478pt;}
.y120{bottom:44.958193pt;}
.y134{bottom:44.971381pt;}
.yfb{bottom:45.001508pt;}
.y151{bottom:45.417333pt;}
.y12e{bottom:53.326000pt;}
.y115{bottom:53.326133pt;}
.y110{bottom:53.326267pt;}
.y129{bottom:53.326400pt;}
.yfa{bottom:53.447909pt;}
.y141{bottom:53.583733pt;}
.y146{bottom:53.583867pt;}
.y10e{bottom:55.824267pt;}
.y13f{bottom:56.083333pt;}
.y130{bottom:56.780800pt;}
.y11c{bottom:56.780933pt;}
.y117{bottom:56.781200pt;}
.y112{bottom:56.781333pt;}
.y12b{bottom:56.781467pt;}
.y143{bottom:57.042000pt;}
.y148{bottom:57.042133pt;}
.y14d{bottom:57.042267pt;}
.y133{bottom:57.613200pt;}
.y11f{bottom:57.613333pt;}
.y150{bottom:58.084000pt;}
.yf1{bottom:60.117646pt;}
.y126{bottom:60.317537pt;}
.y13a{bottom:60.330725pt;}
.y157{bottom:60.790667pt;}
.yed{bottom:61.699600pt;}
.y11a{bottom:62.775600pt;}
.y14b{bottom:63.042267pt;}
.yf6{bottom:63.572933pt;}
.yf9{bottom:66.104189pt;}
.y67{bottom:66.275840pt;}
.y100{bottom:67.116692pt;}
.yf0{bottom:69.568000pt;}
.y18b{bottom:72.163200pt;}
.y66{bottom:78.593120pt;}
.y18a{bottom:82.079200pt;}
.yec{bottom:90.320000pt;}
.y65{bottom:90.749600pt;}
.y64{bottom:103.066880pt;}
.y63{bottom:115.384160pt;}
.y105{bottom:117.280000pt;}
.y62{bottom:127.540640pt;}
.yeb{bottom:127.679360pt;}
.y103{bottom:127.680000pt;}
.y61{bottom:139.857920pt;}
.y60{bottom:152.175200pt;}
.y5f{bottom:164.331680pt;}
.yea{bottom:175.195200pt;}
.y5e{bottom:176.648960pt;}
.y5d{bottom:188.966240pt;}
.ye9{bottom:191.356960pt;}
.y5c{bottom:201.122720pt;}
.ye8{bottom:207.359360pt;}
.y5b{bottom:213.440000pt;}
.y189{bottom:222.404000pt;}
.ye7{bottom:223.521120pt;}
.y5a{bottom:226.400000pt;}
.y188{bottom:232.320000pt;}
.ye6{bottom:239.682880pt;}
.y59{bottom:248.474400pt;}
.ye5{bottom:260.317280pt;}
.y56{bottom:260.853333pt;}
.y58{bottom:263.680000pt;}
.y55{bottom:263.684000pt;}
.y51{bottom:278.453333pt;}
.y50{bottom:281.276000pt;}
.y54{bottom:281.280000pt;}
.ydf{bottom:289.386667pt;}
.ye4{bottom:293.386667pt;}
.yde{bottom:296.155360pt;}
.ye3{bottom:296.160000pt;}
.y4b{bottom:296.720000pt;}
.y4e{bottom:303.520000pt;}
.yd8{bottom:311.453333pt;}
.y49{bottom:317.386667pt;}
.yd7{bottom:318.239040pt;}
.ydb{bottom:318.240000pt;}
.y48{bottom:324.155360pt;}
.y4a{bottom:324.160000pt;}
.yd3{bottom:335.120000pt;}
.yd5{bottom:337.920000pt;}
.yd2{bottom:337.926560pt;}
.y40{bottom:339.453333pt;}
.y47{bottom:346.240000pt;}
.y3f{bottom:346.241120pt;}
.ycf{bottom:353.386667pt;}
.yce{bottom:356.156000pt;}
.yd1{bottom:356.160000pt;}
.y2c{bottom:361.653333pt;}
.yc9{bottom:371.586667pt;}
.ycb{bottom:374.321333pt;}
.y187{bottom:378.056800pt;}
.yca{bottom:378.400000pt;}
.yc8{bottom:378.406560pt;}
.y3e{bottom:383.040000pt;}
.y2b{bottom:383.041120pt;}
.yc4{bottom:393.853333pt;}
.y186{bottom:394.059200pt;}
.yc7{bottom:396.640000pt;}
.yc3{bottom:396.646240pt;}
.y185{bottom:410.220960pt;}
.y17{bottom:411.786667pt;}
.yc0{bottom:413.386667pt;}
.ybe{bottom:417.386667pt;}
.ybf{bottom:421.440000pt;}
.ybd{bottom:421.443520pt;}
.y184{bottom:426.223360pt;}
.y16{bottom:433.108480pt;}
.y2a{bottom:433.120000pt;}
.yba{bottom:435.453333pt;}
.ybc{bottom:438.186667pt;}
.y1ce{bottom:439.697920pt;}
.ybb{bottom:442.240000pt;}
.yb9{bottom:442.242880pt;}
.y183{bottom:442.385120pt;}
.y1cd{bottom:452.015200pt;}
.yb5{bottom:456.053333pt;}
.y182{bottom:458.546880pt;}
.yb4{bottom:462.875360pt;}
.yb8{bottom:462.880000pt;}
.y1cc{bottom:464.171680pt;}
.y15{bottom:464.794560pt;}
.y181{bottom:474.549280pt;}
.y1cb{bottom:476.488960pt;}
.yb0{bottom:478.186667pt;}
.y14{bottom:480.796960pt;}
.yb3{bottom:484.960000pt;}
.yaf{bottom:484.961120pt;}
.y1ca{bottom:488.806240pt;}
.y180{bottom:490.711040pt;}
.y13{bottom:496.958720pt;}
.y1c9{bottom:500.962720pt;}
.ya8{bottom:501.654667pt;}
.y17f{bottom:506.713440pt;}
.yae{bottom:508.480000pt;}
.y12{bottom:513.120480pt;}
.y1c8{bottom:513.280000pt;}
.y17e{bottom:522.875200pt;}
.ya2{bottom:523.786667pt;}
.y11{bottom:529.122880pt;}
.ya7{bottom:530.560000pt;}
.ya1{bottom:530.563520pt;}
.y1c7{bottom:531.520000pt;}
.y17d{bottom:539.036960pt;}
.y9c{bottom:547.253333pt;}
.y10{bottom:549.760000pt;}
.ya0{bottom:551.360000pt;}
.y9b{bottom:551.360480pt;}
.y17c{bottom:555.039360pt;}
.y1c6{bottom:562.880000pt;}
.y95{bottom:567.920000pt;}
.y17b{bottom:571.201120pt;}
.y9a{bottom:574.720000pt;}
.y94{bottom:574.726240pt;}
.y1c5{bottom:576.800000pt;}
.yf{bottom:580.956000pt;}
.y17a{bottom:587.362880pt;}
.y1c4{bottom:590.560000pt;}
.y8b{bottom:591.453333pt;}
.ye{bottom:594.720000pt;}
.y93{bottom:599.520000pt;}
.y8a{bottom:599.524160pt;}
.y1c3{bottom:604.320000pt;}
.y179{bottom:608.000640pt;}
.yd{bottom:608.800000pt;}
.y7f{bottom:617.653333pt;}
.y1c2{bottom:618.080000pt;}
.yc{bottom:623.816000pt;}
.y1c1{bottom:632.000000pt;}
.y7e{bottom:633.755680pt;}
.y89{bottom:633.760000pt;}
.yb{bottom:637.580000pt;}
.y178{bottom:640.005440pt;}
.y1c0{bottom:645.760000pt;}
.ya{bottom:651.344000pt;}
.y173{bottom:653.186667pt;}
.y1bf{bottom:659.520000pt;}
.y70{bottom:659.786667pt;}
.y177{bottom:661.280000pt;}
.y172{bottom:661.280480pt;}
.y9{bottom:665.264000pt;}
.y1be{bottom:673.280000pt;}
.y7d{bottom:675.840000pt;}
.y6f{bottom:675.846400pt;}
.y16d{bottom:676.586667pt;}
.y8{bottom:679.028000pt;}
.y171{bottom:684.640000pt;}
.y1bd{bottom:687.200000pt;}
.y7{bottom:692.792000pt;}
.y16b{bottom:700.053333pt;}
.y1bc{bottom:700.960000pt;}
.y6b{bottom:701.186667pt;}
.y6a{bottom:703.998400pt;}
.y6e{bottom:704.000000pt;}
.y6{bottom:706.556000pt;}
.y16c{bottom:708.160000pt;}
.y16a{bottom:708.160480pt;}
.y1bb{bottom:714.720000pt;}
.y5{bottom:720.320000pt;}
.y69{bottom:721.435040pt;}
.y163{bottom:723.453333pt;}
.y1b9{bottom:728.480000pt;}
.y162{bottom:731.516000pt;}
.y167{bottom:731.520000pt;}
.y68{bottom:736.800000pt;}
.y4{bottom:740.480000pt;}
.y1b7{bottom:742.400000pt;}
.y15b{bottom:746.986667pt;}
.y15d{bottom:753.760000pt;}
.y15a{bottom:753.761120pt;}
.y1b6{bottom:756.800000pt;}
.y109{bottom:761.760000pt;}
.y13e{bottom:770.453333pt;}
.y1b5{bottom:778.077600pt;}
.y10b{bottom:783.200000pt;}
.y1b4{bottom:794.080000pt;}
.y159{bottom:803.840000pt;}
.y13d{bottom:803.844160pt;}
.y1b3{bottom:809.600000pt;}
.y1b1{bottom:810.786667pt;}
.y1b2{bottom:817.600000pt;}
.y104{bottom:828.480000pt;}
.y1ac{bottom:832.160000pt;}
.y1aa{bottom:833.520000pt;}
.y1b0{bottom:840.160000pt;}
.y1ab{bottom:840.320000pt;}
.y128{bottom:844.586667pt;}
.y1a6{bottom:854.880000pt;}
.y1a4{bottom:856.053333pt;}
.y1a5{bottom:862.880000pt;}
.y107{bottom:872.160000pt;}
.y1a0{bottom:877.600000pt;}
.y13c{bottom:877.920000pt;}
.y19e{bottom:878.786667pt;}
.y19f{bottom:885.600000pt;}
.y19a{bottom:900.160000pt;}
.y197{bottom:900.853333pt;}
.y19d{bottom:906.880000pt;}
.y199{bottom:907.680000pt;}
.y106{bottom:908.960000pt;}
.y10d{bottom:918.653333pt;}
.y190{bottom:921.600000pt;}
.y194{bottom:923.453333pt;}
.y196{bottom:927.520000pt;}
.y193{bottom:928.320000pt;}
.y18e{bottom:942.240000pt;}
.y10c{bottom:952.000000pt;}
.y18d{bottom:963.517600pt;}
.y18c{bottom:979.520000pt;}
.y2{bottom:1007.680000pt;}
.y1{bottom:1009.920000pt;}
.h2{height:12.320000pt;}
.h80{height:13.758667pt;}
.h82{height:13.760000pt;}
.h81{height:13.920000pt;}
.h4c{height:14.733333pt;}
.h79{height:15.360000pt;}
.h32{height:15.466102pt;}
.h23{height:15.481655pt;}
.h2b{height:15.506836pt;}
.h43{height:16.000000pt;}
.h44{height:16.001333pt;}
.h1d{height:17.266667pt;}
.h1b{height:17.333333pt;}
.h49{height:18.533333pt;}
.h46{height:18.534667pt;}
.h7a{height:19.920000pt;}
.h19{height:19.998667pt;}
.h42{height:20.000000pt;}
.h7c{height:21.226667pt;}
.h4a{height:21.255567pt;}
.h12{height:21.266667pt;}
.h1e{height:21.326297pt;}
.h3e{height:21.332000pt;}
.h15{height:21.341850pt;}
.h33{height:21.352219pt;}
.h13{height:21.356858pt;}
.h24{height:21.374067pt;}
.h9{height:21.379622pt;}
.h21{height:21.389098pt;}
.h61{height:21.389250pt;}
.h55{height:21.391102pt;}
.h7{height:21.394657pt;}
.h62{height:21.400045pt;}
.h68{height:21.400578pt;}
.h5f{height:21.404292pt;}
.hf{height:21.408506pt;}
.hd{height:21.423561pt;}
.h38{height:21.471459pt;}
.h70{height:21.486559pt;}
.h73{height:21.486929pt;}
.h7d{height:22.560000pt;}
.h7f{height:22.625333pt;}
.h7e{height:22.640000pt;}
.h3d{height:22.666667pt;}
.h36{height:22.733333pt;}
.h76{height:22.734667pt;}
.h2f{height:25.265333pt;}
.h35{height:28.484641pt;}
.h27{height:28.513787pt;}
.h2d{height:28.559730pt;}
.h1{height:29.794062pt;}
.h69{height:30.079657pt;}
.h64{height:30.080282pt;}
.h6d{height:30.103870pt;}
.h75{height:30.104651pt;}
.h77{height:30.179508pt;}
.h74{height:30.180133pt;}
.h72{height:30.184335pt;}
.h71{height:30.189480pt;}
.h3{height:32.011875pt;}
.h4{height:32.531250pt;}
.h7b{height:33.351562pt;}
.h67{height:35.487677pt;}
.h58{height:35.490874pt;}
.h6f{height:35.520000pt;}
.h48{height:36.766477pt;}
.h47{height:36.792332pt;}
.h5{height:36.909063pt;}
.h45{height:36.915342pt;}
.h18{height:36.915712pt;}
.h78{height:36.918663pt;}
.h51{height:36.919942pt;}
.h14{height:36.941302pt;}
.h17{height:36.941673pt;}
.h25{height:36.971630pt;}
.ha{height:36.980888pt;}
.h63{height:36.997552pt;}
.h22{height:36.997629pt;}
.h56{height:37.000884pt;}
.h8{height:37.007264pt;}
.h60{height:37.023570pt;}
.h1a{height:37.030880pt;}
.h10{height:37.031250pt;}
.h40{height:37.056921pt;}
.he{height:37.057292pt;}
.h4f{height:37.139752pt;}
.h39{height:37.140122pt;}
.h4e{height:37.165870pt;}
.h37{height:37.166240pt;}
.h4d{height:37.199372pt;}
.h83{height:38.234375pt;}
.h5c{height:40.911250pt;}
.h20{height:41.266667pt;}
.h2a{height:41.333333pt;}
.h1f{height:49.210848pt;}
.h16{height:49.246416pt;}
.h6{height:49.265333pt;}
.h28{height:49.321506pt;}
.hc{height:49.333333pt;}
.hb{height:49.333856pt;}
.h66{height:49.356087pt;}
.h57{height:49.360533pt;}
.h1c{height:49.400548pt;}
.h11{height:49.401042pt;}
.h3b{height:49.546281pt;}
.h4b{height:51.738247pt;}
.h50{height:51.932507pt;}
.h34{height:51.946847pt;}
.h26{height:51.993547pt;}
.h5b{height:52.000000pt;}
.h6a{height:52.029478pt;}
.h65{height:52.030572pt;}
.h3f{height:52.071031pt;}
.h6e{height:52.072125pt;}
.h41{height:52.072749pt;}
.h3c{height:52.073218pt;}
.h2c{height:52.076500pt;}
.h3a{height:52.205107pt;}
.h31{height:57.238927pt;}
.h30{height:64.513808pt;}
.h5e{height:64.625455pt;}
.h6c{height:64.684242pt;}
.h5d{height:73.266667pt;}
.h6b{height:73.334667pt;}
.h29{height:73.982012pt;}
.h2e{height:74.101562pt;}
.h53{height:79.902233pt;}
.h52{height:81.266667pt;}
.h54{height:81.599159pt;}
.h5a{height:88.937500pt;}
.h59{height:147.040000pt;}
.h0{height:1056.000000pt;}
.w1{width:5.441333pt;}
.w11{width:9.266667pt;}
.w14{width:13.265333pt;}
.w5{width:14.733333pt;}
.w6{width:16.000000pt;}
.w12{width:16.001333pt;}
.w17{width:18.533333pt;}
.w13{width:20.000000pt;}
.w33{width:21.266667pt;}
.w2f{width:22.666667pt;}
.w22{width:22.733333pt;}
.w21{width:22.734667pt;}
.w30{width:24.000000pt;}
.w32{width:25.265333pt;}
.w19{width:25.266667pt;}
.w2e{width:26.733333pt;}
.w18{width:28.000000pt;}
.w16{width:31.998667pt;}
.w2d{width:33.332000pt;}
.w7{width:36.000000pt;}
.w31{width:38.668000pt;}
.w23{width:38.733333pt;}
.w24{width:40.000000pt;}
.w27{width:40.001333pt;}
.w28{width:41.265333pt;}
.w4{width:42.533333pt;}
.w15{width:42.534667pt;}
.w25{width:42.600000pt;}
.w26{width:44.000000pt;}
.w2a{width:49.601333pt;}
.w1a{width:58.733333pt;}
.w2b{width:73.280000pt;}
.w29{width:73.758667pt;}
.w2c{width:77.120000pt;}
.wc{width:88.000000pt;}
.w9{width:106.734667pt;}
.w35{width:110.400000pt;}
.wb{width:114.533333pt;}
.wa{width:125.266667pt;}
.w10{width:144.000000pt;}
.w8{width:162.533333pt;}
.w3{width:166.665333pt;}
.w1b{width:181.265333pt;}
.w34{width:216.320000pt;}
.w2{width:251.998667pt;}
.wf{width:256.000000pt;}
.wd{width:262.666667pt;}
.w1e{width:273.333333pt;}
.w20{width:285.266667pt;}
.w1f{width:297.266667pt;}
.we{width:306.534667pt;}
.w1d{width:629.760000pt;}
.w1c{width:648.960000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:2.251867pt;}
.x3d{left:3.621983pt;}
.x3b{left:4.586133pt;}
.x90{left:5.678326pt;}
.x3f{left:6.587467pt;}
.x22{left:7.868933pt;}
.x33{left:8.824299pt;}
.x74{left:9.829600pt;}
.x20{left:10.758000pt;}
.x53{left:12.250267pt;}
.xc{left:13.169871pt;}
.x4d{left:14.541467pt;}
.x44{left:15.987127pt;}
.x3e{left:17.594400pt;}
.x56{left:18.499867pt;}
.x4f{left:19.533067pt;}
.x88{left:20.870267pt;}
.x1d{left:21.959607pt;}
.x7c{left:23.680000pt;}
.x1c{left:24.750000pt;}
.x3c{left:26.638172pt;}
.x80{left:27.583333pt;}
.x45{left:28.525733pt;}
.x7f{left:29.704619pt;}
.xb6{left:30.720000pt;}
.x43{left:32.274000pt;}
.x40{left:33.979467pt;}
.x37{left:35.762133pt;}
.x34{left:37.005917pt;}
.x32{left:37.968667pt;}
.x36{left:39.967067pt;}
.xb8{left:41.600000pt;}
.x3a{left:43.193600pt;}
.x2f{left:44.713200pt;}
.x82{left:47.751600pt;}
.x12{left:49.038533pt;}
.x35{left:50.958000pt;}
.x71{left:51.855733pt;}
.xb5{left:52.800000pt;}
.x72{left:54.774234pt;}
.x9{left:55.796667pt;}
.x1a{left:58.955788pt;}
.x10{left:60.998533pt;}
.x1{left:64.000000pt;}
.x76{left:64.915877pt;}
.xd{left:66.958156pt;}
.x75{left:68.247977pt;}
.x73{left:71.429842pt;}
.xb7{left:72.640000pt;}
.x48{left:73.622667pt;}
.x31{left:75.351428pt;}
.x50{left:76.383333pt;}
.x23{left:78.720000pt;}
.x3{left:80.000000pt;}
.x8d{left:81.109025pt;}
.x30{left:83.264933pt;}
.x24{left:85.546667pt;}
.x1b{left:88.333200pt;}
.x8a{left:89.546667pt;}
.x7b{left:92.000000pt;}
.x19{left:93.249867pt;}
.x7e{left:95.413333pt;}
.x83{left:96.792434pt;}
.x1f{left:99.946667pt;}
.x11{left:101.038533pt;}
.xf{left:102.291867pt;}
.x5{left:106.146667pt;}
.x7{left:107.746915pt;}
.x4{left:109.280000pt;}
.xb{left:111.041733pt;}
.x78{left:115.520000pt;}
.x6{left:120.041600pt;}
.x9b{left:122.146667pt;}
.x15{left:124.705200pt;}
.x91{left:126.240000pt;}
.x25{left:127.413333pt;}
.x7d{left:128.640000pt;}
.x84{left:132.658533pt;}
.x92{left:134.613333pt;}
.x7a{left:136.480000pt;}
.x8e{left:137.506665pt;}
.x13{left:139.451867pt;}
.x21{left:142.400000pt;}
.x79{left:145.760000pt;}
.xa0{left:147.146667pt;}
.x18{left:148.746667pt;}
.x81{left:152.458267pt;}
.x8c{left:159.171067pt;}
.x9c{left:163.680000pt;}
.x87{left:166.170933pt;}
.x93{left:167.613333pt;}
.xa{left:178.170000pt;}
.x8b{left:184.456800pt;}
.xa1{left:187.520000pt;}
.x86{left:191.457067pt;}
.x9d{left:192.746667pt;}
.x94{left:197.280000pt;}
.xe{left:202.669899pt;}
.x95{left:205.813333pt;}
.xa2{left:214.146667pt;}
.x8{left:218.916667pt;}
.x17{left:224.831443pt;}
.x96{left:235.520000pt;}
.x97{left:244.080000pt;}
.x28{left:256.000000pt;}
.x98{left:271.040000pt;}
.x99{left:298.813333pt;}
.x1e{left:315.360000pt;}
.x9a{left:325.920000pt;}
.x9e{left:334.946667pt;}
.x16{left:358.080000pt;}
.x89{left:361.280000pt;}
.x26{left:364.080000pt;}
.x85{left:368.640000pt;}
.x8f{left:374.720000pt;}
.x9f{left:377.440000pt;}
.x27{left:400.000000pt;}
.x29{left:416.000000pt;}
.xb4{left:420.640000pt;}
.x60{left:430.480000pt;}
.x6f{left:432.004800pt;}
.xb3{left:436.467200pt;}
.xba{left:439.841280pt;}
.xa5{left:446.720000pt;}
.x4c{left:452.746667pt;}
.x52{left:456.080000pt;}
.x69{left:463.413333pt;}
.x58{left:467.840000pt;}
.xa4{left:470.538720pt;}
.xae{left:471.613333pt;}
.x61{left:472.960000pt;}
.x62{left:479.746667pt;}
.x2a{left:483.746667pt;}
.x6a{left:491.360000pt;}
.x70{left:493.546667pt;}
.xaf{left:495.520000pt;}
.xab{left:496.800000pt;}
.xa8{left:499.520000pt;}
.x2e{left:502.813333pt;}
.x55{left:512.080000pt;}
.x6b{left:517.346667pt;}
.x2b{left:519.680000pt;}
.x42{left:521.546667pt;}
.x47{left:526.813333pt;}
.x39{left:530.813333pt;}
.xb9{left:537.600000pt;}
.x4a{left:540.080000pt;}
.x6c{left:542.560000pt;}
.x2c{left:545.680000pt;}
.x65{left:547.145333pt;}
.xb2{left:552.800000pt;}
.xa3{left:554.880000pt;}
.xa6{left:570.880000pt;}
.x5d{left:572.413333pt;}
.x2d{left:581.600000pt;}
.x66{left:585.920000pt;}
.xb1{left:587.280000pt;}
.x5e{left:588.413333pt;}
.xa9{left:590.613333pt;}
.xac{left:595.946667pt;}
.x67{left:600.080000pt;}
.x5f{left:608.320000pt;}
.xad{left:618.560000pt;}
.x68{left:621.600000pt;}
.xaa{left:623.840000pt;}
.xb0{left:626.560000pt;}
.x4b{left:628.000000pt;}
.x41{left:637.440000pt;}
.x49{left:641.280000pt;}
.xa7{left:644.160000pt;}
.x46{left:646.720000pt;}
.x57{left:656.000000pt;}
.x38{left:665.280000pt;}
.x77{left:674.720000pt;}
.x59{left:688.080000pt;}
.x63{left:694.145333pt;}
.x5a{left:697.280000pt;}
.x5b{left:704.080000pt;}
.x6d{left:706.613333pt;}
.x54{left:712.000000pt;}
.x4e{left:715.360000pt;}
.x5c{left:720.000000pt;}
.x51{left:722.560000pt;}
.x64{left:733.280000pt;}
.x6e{left:742.560000pt;}
.x2{left:746.560000pt;}
}




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