
    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_7716a616f6ca7d40071b1b0c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.226000;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_62498f51f5ebb0bb73254935.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_dc357d0c9a8dd4b61b48a0f1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_29e762679eaa63e05829d6d6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.722000;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_4041e8bb18d380fe905a3166.woff')format("woff");}.ff5{font-family:ff5;line-height:1.710000;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_54e7bc851af4b754c3274d87.woff')format("woff");}.ff6{font-family:ff6;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_358d9a78fd07bd6a72b232c9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_944d2f8121fee4b3f4ff764d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_63bf0a2ad76f5f55603d55d7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.198000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7fd598d69ec678395660d7eb.woff')format("woff");}.ffa{font-family:ffa;line-height:2.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_474d3179360089427ac5e017.woff')format("woff");}.ffb{font-family:ffb;line-height:0.623000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_78df773226572bbc6abd1677.woff')format("woff");}.ffc{font-family:ffc;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_71bd8dbbeb37411c86d2599d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.673000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_53d0660ac5143c4b4c522fa8.woff')format("woff");}.ffe{font-family:ffe;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_62ef673ece49fa7873710a1a.woff')format("woff");}.fff{font-family:fff;line-height:0.526000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_975019e771f87be03e2f6015.woff')format("woff");}.ff10{font-family:ff10;line-height:0.947000;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;}
.m23{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.ve{vertical-align:-24.414000px;}
.v2{vertical-align:-17.358000px;}
.v1e{vertical-align:-15.964560px;}
.v9{vertical-align:-13.236000px;}
.v3{vertical-align:-11.952000px;}
.v5{vertical-align:-10.854000px;}
.v4{vertical-align:-8.964000px;}
.v17{vertical-align:-4.608000px;}
.v0{vertical-align:0.000000px;}
.v1f{vertical-align:2.688000px;}
.v8{vertical-align:5.670000px;}
.v15{vertical-align:8.862000px;}
.v1b{vertical-align:10.176000px;}
.vc{vertical-align:11.760000px;}
.v16{vertical-align:14.082000px;}
.v7{vertical-align:17.430000px;}
.v14{vertical-align:20.622000px;}
.v1{vertical-align:21.702000px;}
.v13{vertical-align:23.550000px;}
.v6{vertical-align:24.684000px;}
.vb{vertical-align:30.078000px;}
.v19{vertical-align:32.844000px;}
.v12{vertical-align:35.340000px;}
.v1d{vertical-align:42.572160px;}
.v1c{vertical-align:43.638000px;}
.v18{vertical-align:46.110000px;}
.v11{vertical-align:48.012000px;}
.va{vertical-align:49.098000px;}
.vd{vertical-align:52.590000px;}
.v10{vertical-align:57.186000px;}
.v1a{vertical-align:70.176000px;}
.vf{vertical-align:74.724000px;}
.ls5{letter-spacing:0.000000px;}
.lseb{letter-spacing:0.000699px;}
.lsf3{letter-spacing:0.000800px;}
.ls1e{letter-spacing:0.246600px;}
.ls10{letter-spacing:0.542815px;}
.ls9{letter-spacing:0.548815px;}
.ls61{letter-spacing:0.564571px;}
.ls7a{letter-spacing:0.571200px;}
.lsd7{letter-spacing:0.656869px;}
.lsde{letter-spacing:0.670090px;}
.ls5c{letter-spacing:0.670741px;}
.ls9d{letter-spacing:0.670800px;}
.ls9a{letter-spacing:0.673133px;}
.ls9e{letter-spacing:0.676090px;}
.ls76{letter-spacing:0.714783px;}
.lsac{letter-spacing:0.717483px;}
.ls71{letter-spacing:0.720783px;}
.ls2b{letter-spacing:0.745331px;}
.ls2a{letter-spacing:0.746100px;}
.lsab{letter-spacing:0.746725px;}
.ls89{letter-spacing:0.748766px;}
.ls32{letter-spacing:0.778514px;}
.ls75{letter-spacing:0.864783px;}
.ls70{letter-spacing:0.870783px;}
.ls54{letter-spacing:0.882571px;}
.ls1d{letter-spacing:0.888571px;}
.lscc{letter-spacing:0.904090px;}
.ls85{letter-spacing:0.922741px;}
.lsb{letter-spacing:0.953108px;}
.lsc{letter-spacing:0.959108px;}
.ls1c{letter-spacing:0.992725px;}
.ls26{letter-spacing:0.993634px;}
.ls2d{letter-spacing:0.994766px;}
.ls5b{letter-spacing:0.995675px;}
.ls4f{letter-spacing:0.996017px;}
.ls79{letter-spacing:0.996583px;}
.ls57{letter-spacing:0.998725px;}
.ls14{letter-spacing:0.999634px;}
.ls6d{letter-spacing:1.000766px;}
.ls5d{letter-spacing:1.001675px;}
.ls69{letter-spacing:1.002583px;}
.ls8e{letter-spacing:1.047634px;}
.ls33{letter-spacing:1.112815px;}
.ls58{letter-spacing:1.134571px;}
.ls66{letter-spacing:1.240741px;}
.lsdb{letter-spacing:1.275044px;}
.ls3f{letter-spacing:1.284783px;}
.ls44{letter-spacing:1.290783px;}
.ls20{letter-spacing:1.311634px;}
.ls63{letter-spacing:1.313108px;}
.ls83{letter-spacing:1.314017px;}
.ls12{letter-spacing:1.317634px;}
.ls6{letter-spacing:1.318200px;}
.ls3c{letter-spacing:1.414741px;}
.ls38{letter-spacing:1.420741px;}
.lsf{letter-spacing:1.452571px;}
.ls47{letter-spacing:1.458017px;}
.ls1b{letter-spacing:1.458571px;}
.ls8{letter-spacing:1.491986px;}
.ls37{letter-spacing:1.493108px;}
.ls88{letter-spacing:1.494017px;}
.ls82{letter-spacing:1.494374px;}
.ls72{letter-spacing:1.494775px;}
.ls68{letter-spacing:1.499108px;}
.ls67{letter-spacing:1.499675px;}
.ls6c{letter-spacing:1.910383px;}
.ls50{letter-spacing:2.154600px;}
.ls55{letter-spacing:2.160600px;}
.ls39{letter-spacing:2.314741px;}
.ls36{letter-spacing:2.320741px;}
.ls29{letter-spacing:2.364583px;}
.ls3d{letter-spacing:2.364783px;}
.ls8b{letter-spacing:2.396143px;}
.lse3{letter-spacing:2.496571px;}
.ls1a{letter-spacing:2.539771px;}
.ls77{letter-spacing:2.984143px;}
.ls9f{letter-spacing:2.988600px;}
.lsca{letter-spacing:2.989200px;}
.ls97{letter-spacing:3.093802px;}
.ls43{letter-spacing:3.108583px;}
.ls8c{letter-spacing:3.258017px;}
.ls94{letter-spacing:3.321802px;}
.lsd1{letter-spacing:3.327802px;}
.lsa2{letter-spacing:3.438374px;}
.lsd{letter-spacing:3.684374px;}
.ls53{letter-spacing:3.690374px;}
.ls84{letter-spacing:3.733200px;}
.ls7{letter-spacing:3.739200px;}
.ls5f{letter-spacing:3.828017px;}
.ls2e{letter-spacing:3.876571px;}
.ls60{letter-spacing:3.931258px;}
.ls40{letter-spacing:4.280815px;}
.ls51{letter-spacing:4.302571px;}
.ls81{letter-spacing:4.322160px;}
.ls7e{letter-spacing:4.328160px;}
.ls62{letter-spacing:4.525258px;}
.ls65{letter-spacing:4.531258px;}
.ls35{letter-spacing:4.620571px;}
.ls1f{letter-spacing:4.633200px;}
.ls78{letter-spacing:4.933200px;}
.ls17{letter-spacing:5.425258px;}
.ls24{letter-spacing:5.431258px;}
.ls11{letter-spacing:5.520571px;}
.ls18{letter-spacing:7.741258px;}
.ls25{letter-spacing:7.747258px;}
.ls0{letter-spacing:8.367300px;}
.lsda{letter-spacing:10.684800px;}
.ls23{letter-spacing:10.711200px;}
.lse2{letter-spacing:10.712725px;}
.ls4{letter-spacing:11.954850px;}
.ls3b{letter-spacing:12.614731px;}
.ls3e{letter-spacing:12.798571px;}
.ls6e{letter-spacing:12.950143px;}
.ls5a{letter-spacing:13.042741px;}
.ls41{letter-spacing:13.048741px;}
.ls3a{letter-spacing:13.071483px;}
.lsaa{letter-spacing:13.077483px;}
.ls16{letter-spacing:13.089483px;}
.ls42{letter-spacing:13.095483px;}
.ls52{letter-spacing:13.115108px;}
.ls7f{letter-spacing:13.121108px;}
.lsf7{letter-spacing:13.200057px;}
.lsf0{letter-spacing:13.286826px;}
.lsec{letter-spacing:13.336114px;}
.ls93{letter-spacing:13.342003px;}
.ls7c{letter-spacing:13.386267px;}
.lse8{letter-spacing:13.448400px;}
.lsb8{letter-spacing:13.449600px;}
.lsed{letter-spacing:13.454400px;}
.lsf5{letter-spacing:13.496400px;}
.lsee{letter-spacing:13.602177px;}
.lsf6{letter-spacing:13.638905px;}
.lsea{letter-spacing:13.644434px;}
.lse9{letter-spacing:13.681631px;}
.ls5e{letter-spacing:13.891258px;}
.ls80{letter-spacing:13.983483px;}
.ls7d{letter-spacing:14.264551px;}
.ls6b{letter-spacing:14.385483px;}
.ls6f{letter-spacing:14.491258px;}
.lsef{letter-spacing:14.668047px;}
.lsf2{letter-spacing:14.726871px;}
.ls6a{letter-spacing:14.764741px;}
.ls74{letter-spacing:14.805483px;}
.ls73{letter-spacing:14.831108px;}
.ls91{letter-spacing:14.943900px;}
.ls4a{letter-spacing:14.970583px;}
.ls8d{letter-spacing:15.097258px;}
.lsb4{letter-spacing:15.144583px;}
.ls4b{letter-spacing:15.183483px;}
.lsc4{letter-spacing:15.242778px;}
.lsa9{letter-spacing:15.343200px;}
.ls59{letter-spacing:15.355200px;}
.ls28{letter-spacing:15.357483px;}
.ls22{letter-spacing:15.361200px;}
.lse5{letter-spacing:15.571834px;}
.ls9b{letter-spacing:15.588088px;}
.ls99{letter-spacing:15.594088px;}
.ls13{letter-spacing:15.600571px;}
.ls21{letter-spacing:15.606571px;}
.ls4d{letter-spacing:15.616741px;}
.ls4e{letter-spacing:15.696017px;}
.ls64{letter-spacing:15.902815px;}
.lse0{letter-spacing:15.915483px;}
.ls56{letter-spacing:15.924571px;}
.ls34{letter-spacing:16.058551px;}
.lsa{letter-spacing:16.079636px;}
.ls19{letter-spacing:16.153258px;}
.ls15{letter-spacing:16.242571px;}
.ls27{letter-spacing:16.248571px;}
.ls96{letter-spacing:16.260088px;}
.lsd6{letter-spacing:16.266088px;}
.lsd8{letter-spacing:16.285133px;}
.lsdd{letter-spacing:16.288090px;}
.lsdc{letter-spacing:16.291133px;}
.ls9c{letter-spacing:16.294090px;}
.lsb9{letter-spacing:16.315133px;}
.lsd9{letter-spacing:16.558310px;}
.lsce{letter-spacing:16.686088px;}
.ls4c{letter-spacing:17.544583px;}
.lsf4{letter-spacing:17.591576px;}
.lsbe{letter-spacing:17.730088px;}
.lsbf{letter-spacing:17.752090px;}
.ls92{letter-spacing:17.958845px;}
.lsd3{letter-spacing:17.988088px;}
.lsb7{letter-spacing:18.006845px;}
.lsd4{letter-spacing:18.019133px;}
.ls30{letter-spacing:18.069483px;}
.lsa8{letter-spacing:18.095108px;}
.lsa4{letter-spacing:18.101108px;}
.lsb6{letter-spacing:18.147483px;}
.lsad{letter-spacing:18.149108px;}
.lsb5{letter-spacing:18.179108px;}
.lsb1{letter-spacing:18.189483px;}
.lsb0{letter-spacing:18.221108px;}
.lsbb{letter-spacing:18.244090px;}
.lsbc{letter-spacing:18.247133px;}
.lsd0{letter-spacing:18.286310px;}
.lsd5{letter-spacing:18.600600px;}
.ls98{letter-spacing:18.606600px;}
.lsba{letter-spacing:18.630600px;}
.lsa7{letter-spacing:18.947108px;}
.lscd{letter-spacing:19.026600px;}
.lsdf{letter-spacing:19.207142px;}
.lse6{letter-spacing:19.243834px;}
.ls95{letter-spacing:19.423702px;}
.ls7b{letter-spacing:19.586731px;}
.lsb2{letter-spacing:19.950583px;}
.lsc5{letter-spacing:20.034583px;}
.lsbd{letter-spacing:20.070600px;}
.lsc7{letter-spacing:20.163483px;}
.lsc0{letter-spacing:20.341200px;}
.lsae{letter-spacing:20.543108px;}
.lsd2{letter-spacing:21.145702px;}
.lse7{letter-spacing:21.187200px;}
.ls2f{letter-spacing:21.228571px;}
.lsc9{letter-spacing:21.300571px;}
.ls48{letter-spacing:21.363886px;}
.lsb3{letter-spacing:21.385142px;}
.lsc6{letter-spacing:22.435200px;}
.ls87{letter-spacing:22.612741px;}
.ls45{letter-spacing:23.058017px;}
.lscf{letter-spacing:23.550600px;}
.lsa1{letter-spacing:23.745483px;}
.lsa0{letter-spacing:23.777108px;}
.lsa6{letter-spacing:24.705483px;}
.lsa5{letter-spacing:24.731108px;}
.ls31{letter-spacing:25.903609px;}
.lsa3{letter-spacing:26.017200px;}
.ls49{letter-spacing:26.169483px;}
.ls86{letter-spacing:27.573483px;}
.lsc8{letter-spacing:27.667200px;}
.lsf1{letter-spacing:28.568047px;}
.ls2c{letter-spacing:29.306383px;}
.lsaf{letter-spacing:29.993108px;}
.lse4{letter-spacing:30.668383px;}
.lsc2{letter-spacing:31.011483px;}
.ls46{letter-spacing:31.272783px;}
.ls8f{letter-spacing:32.490017px;}
.ls90{letter-spacing:32.671142px;}
.lsc3{letter-spacing:33.277200px;}
.lsc1{letter-spacing:34.170571px;}
.lse1{letter-spacing:34.489200px;}
.ls8a{letter-spacing:39.907200px;}
.ls1{letter-spacing:62.761200px;}
.lse{letter-spacing:62.886583px;}
.ls3{letter-spacing:62.917200px;}
.ls2{letter-spacing:64.321654px;}
.lscb{letter-spacing:368.514817px;}
.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;}
}
.ws62{word-spacing:-62.286600px;}
.wsa6{word-spacing:-44.223486px;}
.wsb{word-spacing:-14.943900px;}
.wsad{word-spacing:-14.793826px;}
.ws94{word-spacing:-13.806720px;}
.ws97{word-spacing:-13.449600px;}
.ws95{word-spacing:-12.282458px;}
.ws28{word-spacing:-11.955150px;}
.wsa{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws58{word-spacing:-3.526760px;}
.ws44{word-spacing:-3.407209px;}
.ws45{word-spacing:-3.347434px;}
.ws23{word-spacing:-2.809453px;}
.ws5b{word-spacing:-2.510575px;}
.wscb{word-spacing:-2.313331px;}
.ws8f{word-spacing:-2.271473px;}
.wscc{word-spacing:-2.259533px;}
.wsc1{word-spacing:-2.151922px;}
.wsc0{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws49{word-spacing:-2.032370px;}
.ws7c{word-spacing:-1.990541px;}
.ws2{word-spacing:-1.966612px;}
.wsab{word-spacing:-1.853044px;}
.ws2a{word-spacing:-1.554166px;}
.wsb1{word-spacing:-1.398758px;}
.ws9e{word-spacing:-1.374839px;}
.wsc2{word-spacing:-1.255288px;}
.wsd4{word-spacing:-1.075968px;}
.wsc5{word-spacing:-1.016185px;}
.ws7a{word-spacing:-0.968371px;}
.ws4d{word-spacing:-0.956410px;}
.ws2c{word-spacing:-0.896634px;}
.ws91{word-spacing:-0.777083px;}
.ws73{word-spacing:-0.717307px;}
.ws43{word-spacing:-0.597756px;}
.wsf3{word-spacing:-0.484186px;}
.wsa1{word-spacing:-0.418429px;}
.ws50{word-spacing:-0.376589px;}
.ws24{word-spacing:-0.358654px;}
.ws19{word-spacing:-0.298878px;}
.wsd7{word-spacing:-0.268992px;}
.ws10{word-spacing:-0.239102px;}
.wsb7{word-spacing:-0.221290px;}
.wsb8{word-spacing:-0.215194px;}
.ws14{word-spacing:-0.179327px;}
.ws7b{word-spacing:-0.161395px;}
.ws8b{word-spacing:-0.133638px;}
.ws18{word-spacing:-0.119551px;}
.wsc9{word-spacing:-0.107597px;}
.ws21{word-spacing:-0.059776px;}
.wsb3{word-spacing:-0.053798px;}
.ws29{word-spacing:-0.047821px;}
.ws60{word-spacing:-0.045430px;}
.ws6{word-spacing:-0.041843px;}
.ws9{word-spacing:-0.002624px;}
.ws8{word-spacing:0.000000px;}
.wsdd{word-spacing:0.053798px;}
.ws22{word-spacing:0.059776px;}
.wsf6{word-spacing:0.080764px;}
.wsf4{word-spacing:0.107597px;}
.ws1c{word-spacing:0.119551px;}
.ws87{word-spacing:0.156535px;}
.ws7d{word-spacing:0.161395px;}
.ws16{word-spacing:0.179327px;}
.wsce{word-spacing:0.215194px;}
.ws11{word-spacing:0.239102px;}
.ws102{word-spacing:0.268992px;}
.ws13{word-spacing:0.298878px;}
.wsc7{word-spacing:0.322790px;}
.ws32{word-spacing:0.358654px;}
.wsac{word-spacing:0.418429px;}
.ws3{word-spacing:0.420193px;}
.ws7{word-spacing:0.422252px;}
.ws9a{word-spacing:0.510024px;}
.ws2b{word-spacing:0.537980px;}
.ws9c{word-spacing:0.537984px;}
.wsf8{word-spacing:0.591782px;}
.ws39{word-spacing:0.597756px;}
.wsb5{word-spacing:0.645581px;}
.ws7e{word-spacing:0.669600px;}
.ws9b{word-spacing:0.699379px;}
.ws93{word-spacing:0.717307px;}
.ws98{word-spacing:0.753178px;}
.ws40{word-spacing:0.777083px;}
.ws25{word-spacing:0.836858px;}
.ws80{word-spacing:0.896634px;}
.wsdb{word-spacing:0.914573px;}
.ws81{word-spacing:0.956410px;}
.wse6{word-spacing:0.968371px;}
.ws1d{word-spacing:1.016185px;}
.ws99{word-spacing:1.022170px;}
.ws4c{word-spacing:1.075961px;}
.ws4b{word-spacing:1.135736px;}
.ws17{word-spacing:1.195512px;}
.ws48{word-spacing:1.255288px;}
.wsc3{word-spacing:1.315063px;}
.ws12{word-spacing:1.374839px;}
.ws31{word-spacing:1.434614px;}
.ws4f{word-spacing:1.452557px;}
.ws30{word-spacing:1.494390px;}
.wsa9{word-spacing:1.554166px;}
.ws15{word-spacing:1.613941px;}
.wsb2{word-spacing:1.613952px;}
.ws75{word-spacing:1.673717px;}
.ws33{word-spacing:1.733492px;}
.ws2e{word-spacing:1.853044px;}
.ws74{word-spacing:1.912819px;}
.wsd1{word-spacing:1.936742px;}
.wsa2{word-spacing:1.972595px;}
.ws6b{word-spacing:2.032370px;}
.wsc4{word-spacing:2.092146px;}
.ws66{word-spacing:2.151922px;}
.ws35{word-spacing:2.211697px;}
.wsfc{word-spacing:2.313331px;}
.wsb4{word-spacing:2.367130px;}
.ws38{word-spacing:2.391024px;}
.ws46{word-spacing:2.450800px;}
.ws51{word-spacing:2.510575px;}
.wsa0{word-spacing:2.570351px;}
.ws100{word-spacing:2.582323px;}
.ws41{word-spacing:2.630126px;}
.ws20{word-spacing:2.689902px;}
.wse4{word-spacing:2.689920px;}
.ws52{word-spacing:2.749678px;}
.wsbc{word-spacing:2.755402px;}
.ws4a{word-spacing:2.809453px;}
.wse1{word-spacing:2.958912px;}
.ws1f{word-spacing:2.988780px;}
.wsa5{word-spacing:3.048556px;}
.ws36{word-spacing:3.108331px;}
.wsfe{word-spacing:3.120307px;}
.wsca{word-spacing:3.154994px;}
.ws56{word-spacing:3.168107px;}
.ws85{word-spacing:3.227882px;}
.ws96{word-spacing:3.227904px;}
.wsef{word-spacing:3.281702px;}
.ws2d{word-spacing:3.347434px;}
.wsa8{word-spacing:3.407209px;}
.wsf{word-spacing:3.466985px;}
.wsdf{word-spacing:3.496896px;}
.ws4e{word-spacing:3.526760px;}
.ws1a{word-spacing:3.583475px;}
.ws82{word-spacing:3.586536px;}
.ws72{word-spacing:3.646312px;}
.ws67{word-spacing:3.706087px;}
.ws3a{word-spacing:3.765863px;}
.ws8e{word-spacing:3.885414px;}
.wsc6{word-spacing:3.945190px;}
.ws84{word-spacing:4.004965px;}
.wsbf{word-spacing:4.064741px;}
.ws26{word-spacing:4.124516px;}
.wsed{word-spacing:4.142477px;}
.ws34{word-spacing:4.244068px;}
.wsc8{word-spacing:4.250074px;}
.ws55{word-spacing:4.303843px;}
.ws1b{word-spacing:4.303872px;}
.wsb9{word-spacing:4.363619px;}
.ws3f{word-spacing:4.542946px;}
.ws9f{word-spacing:4.602721px;}
.ws83{word-spacing:4.782048px;}
.ws3b{word-spacing:5.021150px;}
.wsfa{word-spacing:5.057050px;}
.ws71{word-spacing:5.140702px;}
.ws3e{word-spacing:5.200477px;}
.wsbe{word-spacing:5.320028px;}
.ws5a{word-spacing:5.379804px;}
.ws57{word-spacing:5.439580px;}
.ws37{word-spacing:5.618906px;}
.ws78{word-spacing:5.678682px;}
.wse5{word-spacing:5.917824px;}
.ws8c{word-spacing:5.977560px;}
.ws2f{word-spacing:6.276438px;}
.wsa3{word-spacing:6.395989px;}
.ws70{word-spacing:6.515540px;}
.wsa4{word-spacing:6.575316px;}
.ws53{word-spacing:6.635092px;}
.ws47{word-spacing:6.694867px;}
.ws79{word-spacing:6.814418px;}
.ws59{word-spacing:6.874194px;}
.wsbb{word-spacing:7.173072px;}
.ws77{word-spacing:7.352399px;}
.ws3d{word-spacing:7.770828px;}
.ws1e{word-spacing:7.890379px;}
.ws92{word-spacing:8.009930px;}
.ws7f{word-spacing:8.146500px;}
.ws4{word-spacing:8.321351px;}
.ws88{word-spacing:8.985000px;}
.wsbd{word-spacing:9.085891px;}
.wse8{word-spacing:9.130969px;}
.ws76{word-spacing:10.042301px;}
.ws5c{word-spacing:10.650509px;}
.ws3c{word-spacing:10.938935px;}
.ws27{word-spacing:11.905687px;}
.wsba{word-spacing:12.313774px;}
.wsf2{word-spacing:12.857818px;}
.wsf7{word-spacing:13.126810px;}
.wse3{word-spacing:13.236306px;}
.wsda{word-spacing:13.288205px;}
.wsfb{word-spacing:13.390022px;}
.wseb{word-spacing:13.390224px;}
.wsf0{word-spacing:13.390877px;}
.wscd{word-spacing:13.393373px;}
.ws101{word-spacing:13.394669px;}
.wsff{word-spacing:13.395542px;}
.wsd2{word-spacing:13.395802px;}
.wsf5{word-spacing:13.449600px;}
.wsd8{word-spacing:13.557197px;}
.wscf{word-spacing:13.619628px;}
.wsea{word-spacing:14.044596px;}
.ws5e{word-spacing:14.047266px;}
.wsdc{word-spacing:14.292856px;}
.ws42{word-spacing:14.884124px;}
.wse{word-spacing:16.019861px;}
.wsb6{word-spacing:16.200762px;}
.wsec{word-spacing:16.300915px;}
.wse2{word-spacing:16.354714px;}
.wsd6{word-spacing:16.462310px;}
.wse0{word-spacing:16.616669px;}
.wsd5{word-spacing:16.618330px;}
.wsf9{word-spacing:16.618992px;}
.wse9{word-spacing:16.622669px;}
.wsd0{word-spacing:16.623706px;}
.wsf1{word-spacing:16.731302px;}
.wsde{word-spacing:16.785101px;}
.wsd9{word-spacing:16.835368px;}
.wsd3{word-spacing:16.892698px;}
.ws6f{word-spacing:16.966004px;}
.ws90{word-spacing:17.036046px;}
.ws5f{word-spacing:17.938541px;}
.ws61{word-spacing:18.000827px;}
.ws89{word-spacing:18.063114px;}
.wsa7{word-spacing:18.291334px;}
.ws86{word-spacing:18.872840px;}
.ws9d{word-spacing:19.187968px;}
.wse7{word-spacing:19.986535px;}
.ws8a{word-spacing:20.430005px;}
.ws6e{word-spacing:21.875587px;}
.ws6a{word-spacing:22.298603px;}
.ws6c{word-spacing:22.532159px;}
.ws65{word-spacing:22.547749px;}
.ws1{word-spacing:22.641176px;}
.wsfd{word-spacing:23.994086px;}
.wsae{word-spacing:24.922452px;}
.wsaa{word-spacing:25.350646px;}
.ws69{word-spacing:25.662079px;}
.ws68{word-spacing:26.534092px;}
.wsb0{word-spacing:26.696292px;}
.wsee{word-spacing:26.845402px;}
.wsaf{word-spacing:28.026672px;}
.ws8d{word-spacing:29.897568px;}
.ws6d{word-spacing:31.435973px;}
.wsc{word-spacing:46.647245px;}
.ws63{word-spacing:61.103155px;}
.wsd{word-spacing:61.549015px;}
.ws54{word-spacing:184.347950px;}
.ws64{word-spacing:362.060809px;}
.ws5d{word-spacing:846.840925px;}
._8{margin-left:-28.214083px;}
._3c{margin-left:-24.585869px;}
._2{margin-left:-19.247688px;}
._5{margin-left:-7.962163px;}
._6{margin-left:-6.635092px;}
._b{margin-left:-5.308087px;}
._18{margin-left:-4.256018px;}
._3{margin-left:-3.138210px;}
._4{margin-left:-1.506341px;}
._a{width:1.130390px;}
._9{width:2.989800px;}
._1{width:5.314036px;}
._3b{width:6.671002px;}
._7{width:8.311433px;}
._2b{width:9.687372px;}
._0{width:10.879128px;}
._39{width:12.319834px;}
._c{width:13.963615px;}
._31{width:14.991734px;}
._17{width:16.438299px;}
._1e{width:17.562085px;}
._10{width:18.614113px;}
._d{width:20.323704px;}
._12{width:21.877870px;}
._f{width:23.192933px;}
._16{width:24.687323px;}
._2a{width:25.980928px;}
._1d{width:27.437000px;}
._e{width:29.003117px;}
._1a{width:30.318180px;}
._13{width:31.382190px;}
._1c{width:33.127633px;}
._1b{width:34.359028px;}
._19{width:35.984911px;}
._29{width:37.206457px;}
._27{width:38.496310px;}
._24{width:40.001827px;}
._1f{width:41.094900px;}
._11{width:43.110158px;}
._23{width:44.728051px;}
._28{width:52.267369px;}
._34{width:54.510103px;}
._20{width:56.247831px;}
._36{width:57.614323px;}
._2e{width:58.893889px;}
._30{width:62.338461px;}
._2c{width:67.721312px;}
._33{width:69.303929px;}
._37{width:71.077769px;}
._35{width:72.408149px;}
._2f{width:75.421509px;}
._25{width:77.917096px;}
._26{width:79.087960px;}
._2d{width:83.723950px;}
._3a{width:88.767360px;}
._21{width:96.079775px;}
._22{width:110.063679px;}
._32{width:551.948054px;}
._14{width:1855.898700px;}
._38{width:2494.970700px;}
._15{width:2518.880700px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,158,115);}
.fc4{color:rgb(0,115,178);}
.fc5{color:rgb(148,0,212);}
.fc3{color:rgb(230,158,0);}
.fc2{color:rgb(230,31,15);}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fsa{font-size:41.080800px;}
.fs0{font-size:41.842800px;}
.fs13{font-size:42.572160px;}
.fs11{font-size:44.181504px;}
.fs3{font-size:45.429600px;}
.fsd{font-size:46.834560px;}
.fs7{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs9{font-size:49.296960px;}
.fs10{font-size:50.624640px;}
.fs12{font-size:53.215200px;}
.fsb{font-size:53.798400px;}
.fsf{font-size:55.226880px;}
.fse{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fsc{font-size:83.686200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y196{bottom:3.937858px;}
.y110{bottom:4.293168px;}
.y93{bottom:4.518888px;}
.y161{bottom:5.062464px;}
.y109{bottom:21.856128px;}
.y8c{bottom:23.005248px;}
.y194{bottom:23.893558px;}
.y158{bottom:25.772544px;}
.y104{bottom:33.564768px;}
.y85{bottom:35.329488px;}
.y190{bottom:37.197358px;}
.y151{bottom:39.579264px;}
.y3d{bottom:45.921000px;}
.y8e{bottom:49.091556px;}
.y19a{bottom:51.166348px;}
.y10f{bottom:59.927844px;}
.y105{bottom:61.958220px;}
.y86{bottom:69.631956px;}
.y8d{bottom:76.512990px;}
.y191{bottom:77.108758px;}
.y15e{bottom:83.415600px;}
.y199{bottom:85.091038px;}
.y106{bottom:90.351672px;}
.y162{bottom:92.965248px;}
.y152{bottom:94.345920px;}
.y13{bottom:100.260000px;}
.y195{bottom:100.499943px;}
.y202{bottom:101.478000px;}
.yf9{bottom:102.154500px;}
.y87{bottom:103.934424px;}
.y198{bottom:104.935873px;}
.y1a3{bottom:107.034000px;}
.y92{bottom:107.174672px;}
.y130{bottom:109.063500px;}
.y3c{bottom:110.328000px;}
.y83{bottom:111.342000px;}
.y159{bottom:116.321616px;}
.y70{bottom:116.407500px;}
.y186{bottom:116.701500px;}
.y192{bottom:116.909293px;}
.y201{bottom:118.006500px;}
.y12{bottom:118.147500px;}
.y107{bottom:118.745124px;}
.y200{bottom:120.628500px;}
.yf8{bottom:123.046500px;}
.y1a2{bottom:127.926000px;}
.y12f{bottom:129.955500px;}
.y3b{bottom:131.220000px;}
.y82{bottom:132.234000px;}
.y8f{bottom:134.745024px;}
.y11{bottom:136.035000px;}
.y6f{bottom:137.298000px;}
.y185{bottom:137.593500px;}
.y88{bottom:138.236892px;}
.y1ff{bottom:139.779000px;}
.y197{bottom:140.856133px;}
.y102{bottom:141.284256px;}
.yf7{bottom:143.938500px;}
.y95{bottom:144.842685px;}
.y108{bottom:147.138576px;}
.y111{bottom:147.919152px;}
.y153{bottom:149.112576px;}
.y12e{bottom:150.846000px;}
.y3a{bottom:152.110500px;}
.y1ca{bottom:152.224500px;}
.y81{bottom:153.126000px;}
.y10{bottom:153.924000px;}
.y193{bottom:156.820693px;}
.y6e{bottom:158.190000px;}
.y184{bottom:158.485500px;}
.y100{bottom:158.847216px;}
.y1fe{bottom:158.929500px;}
.y14f{bottom:160.147500px;}
.y1a1{bottom:163.554000px;}
.y163{bottom:164.184912px;}
.yf6{bottom:164.829000px;}
.y91{bottom:167.404260px;}
.y94{bottom:169.252896px;}
.y15a{bottom:169.707600px;}
.yfb{bottom:170.555856px;}
.yb7{bottom:171.400500px;}
.y1c9{bottom:171.723000px;}
.y12d{bottom:171.738000px;}
.yf{bottom:171.811500px;}
.y89{bottom:172.539360px;}
.y39{bottom:173.002500px;}
.y80{bottom:174.016500px;}
.y160{bottom:174.216645px;}
.y1fd{bottom:178.080000px;}
.y6d{bottom:179.082000px;}
.y183{bottom:179.376000px;}
.y188{bottom:179.548018px;}
.y10b{bottom:179.825196px;}
.y14e{bottom:181.039500px;}
.y1a0{bottom:182.787000px;}
.ye{bottom:189.699000px;}
.yf5{bottom:190.204500px;}
.y1c8{bottom:191.221500px;}
.yb6{bottom:192.292500px;}
.y10a{bottom:192.607128px;}
.y12c{bottom:192.630000px;}
.y38{bottom:193.894500px;}
.y7f{bottom:194.908500px;}
.y101{bottom:196.918835px;}
.y1fc{bottom:197.230500px;}
.yfc{bottom:198.949308px;}
.y6c{bottom:199.972500px;}
.y182{bottom:200.268000px;}
.y14d{bottom:201.930000px;}
.y19f{bottom:202.020000px;}
.y154{bottom:203.879232px;}
.y189{bottom:206.155618px;}
.y8a{bottom:206.841828px;}
.yd{bottom:207.586500px;}
.y10c{bottom:208.218648px;}
.yb5{bottom:213.184500px;}
.y12b{bottom:213.520500px;}
.yf4{bottom:214.636500px;}
.y37{bottom:214.785000px;}
.y7e{bottom:215.800500px;}
.y1fb{bottom:216.381000px;}
.y90{bottom:217.112028px;}
.y1c7{bottom:219.687000px;}
.y168{bottom:220.254002px;}
.y6b{bottom:220.864500px;}
.y181{bottom:221.160000px;}
.y19e{bottom:221.253000px;}
.y10e{bottom:222.366588px;}
.y14c{bottom:222.822000px;}
.y15b{bottom:224.474256px;}
.yc{bottom:225.475500px;}
.yfd{bottom:227.342760px;}
.y18a{bottom:232.763218px;}
.yb4{bottom:234.076500px;}
.y12a{bottom:234.412500px;}
.y164{bottom:235.404576px;}
.y1fa{bottom:235.531500px;}
.y36{bottom:235.677000px;}
.y7d{bottom:236.691000px;}
.y1c6{bottom:239.185500px;}
.y10d{bottom:239.441688px;}
.y19d{bottom:240.486000px;}
.y8b{bottom:241.144296px;}
.y6a{bottom:241.756500px;}
.y180{bottom:242.050500px;}
.y14b{bottom:243.714000px;}
.y18e{bottom:245.511585px;}
.yb3{bottom:246.700500px;}
.yb1{bottom:248.863500px;}
.yb2{bottom:249.495000px;}
.yb{bottom:252.330000px;}
.yf3{bottom:253.461000px;}
.y1f9{bottom:254.682000px;}
.yb0{bottom:254.967000px;}
.y129{bottom:255.304500px;}
.yfe{bottom:255.736212px;}
.y35{bottom:256.569000px;}
.y7c{bottom:257.583000px;}
.y155{bottom:258.760944px;}
.y18b{bottom:259.259953px;}
.y19c{bottom:259.717500px;}
.y69{bottom:262.647000px;}
.y17f{bottom:262.942500px;}
.y14a{bottom:264.606000px;}
.y1c5{bottom:267.651000px;}
.ya{bottom:270.217500px;}
.yaf{bottom:270.754500px;}
.y1f8{bottom:273.832500px;}
.yf2{bottom:274.351500px;}
.yad{bottom:275.859000px;}
.y128{bottom:276.195000px;}
.y34{bottom:277.459500px;}
.y7b{bottom:278.475000px;}
.y19b{bottom:278.950500px;}
.yae{bottom:279.535500px;}
.y68{bottom:283.539000px;}
.y17e{bottom:283.834500px;}
.yff{bottom:284.129664px;}
.y103{bottom:284.910240px;}
.y149{bottom:285.496500px;}
.y18c{bottom:285.867553px;}
.y1c4{bottom:287.149500px;}
.y9{bottom:288.105000px;}
.y15c{bottom:288.905616px;}
.yac{bottom:292.255500px;}
.y1f7{bottom:292.984500px;}
.yf1{bottom:295.243500px;}
.y127{bottom:297.087000px;}
.y33{bottom:298.351500px;}
.yab{bottom:298.359000px;}
.yf0{bottom:298.920000px;}
.y7a{bottom:299.365500px;}
.y187{bottom:301.380067px;}
.y67{bottom:304.431000px;}
.y17d{bottom:304.725000px;}
.y8{bottom:305.994000px;}
.y148{bottom:306.388500px;}
.y165{bottom:306.624240px;}
.yef{bottom:311.640000px;}
.y1f6{bottom:312.135000px;}
.y18d{bottom:312.475153px;}
.y156{bottom:313.527600px;}
.yee{bottom:314.434500px;}
.y1c3{bottom:315.615000px;}
.y126{bottom:317.979000px;}
.y32{bottom:319.243500px;}
.yaa{bottom:319.251000px;}
.yed{bottom:319.918500px;}
.y78{bottom:320.257500px;}
.y18f{bottom:323.118193px;}
.y7{bottom:323.881500px;}
.y66{bottom:325.323000px;}
.y17c{bottom:325.617000px;}
.y79{bottom:325.683000px;}
.y147{bottom:327.280500px;}
.y1f5{bottom:331.285500px;}
.y1c2{bottom:335.113500px;}
.y125{bottom:338.869500px;}
.y31{bottom:340.134000px;}
.yec{bottom:340.810500px;}
.y77{bottom:341.149500px;}
.y6{bottom:341.769000px;}
.y65{bottom:346.213500px;}
.y15d{bottom:346.318560px;}
.y17b{bottom:346.509000px;}
.y146{bottom:348.171000px;}
.y1f4{bottom:350.436000px;}
.ya6{bottom:350.568000px;}
.ya5{bottom:353.362500px;}
.ya3{bottom:353.731500px;}
.y1c1{bottom:354.612000px;}
.y124{bottom:359.761500px;}
.y30{bottom:361.026000px;}
.yeb{bottom:361.701000px;}
.y76{bottom:362.041500px;}
.ya9{bottom:362.467500px;}
.ya7{bottom:363.883500px;}
.ya8{bottom:365.260500px;}
.ya4{bottom:365.629500px;}
.y5{bottom:365.635500px;}
.ya2{bottom:366.879000px;}
.y64{bottom:367.105500px;}
.y17a{bottom:367.401000px;}
.y157{bottom:368.294256px;}
.y145{bottom:369.063000px;}
.y1f3{bottom:369.586500px;}
.ya0{bottom:369.987000px;}
.y1c0{bottom:374.110500px;}
.y166{bottom:377.843904px;}
.y167{bottom:379.224576px;}
.y15f{bottom:380.605248px;}
.y123{bottom:380.653500px;}
.y2f{bottom:381.918000px;}
.yea{bottom:382.593000px;}
.y75{bottom:382.932000px;}
.y4{bottom:383.523000px;}
.ya1{bottom:386.125500px;}
.y63{bottom:387.997500px;}
.y179{bottom:388.291500px;}
.y1f2{bottom:388.737000px;}
.y144{bottom:389.955000px;}
.y1bf{bottom:393.609000px;}
.y3{bottom:401.410500px;}
.y122{bottom:401.545500px;}
.y2e{bottom:402.810000px;}
.ye9{bottom:403.485000px;}
.y74{bottom:403.824000px;}
.y1f1{bottom:407.887500px;}
.y62{bottom:408.888000px;}
.y178{bottom:409.183500px;}
.y143{bottom:410.845500px;}
.y1be{bottom:413.109000px;}
.y9f{bottom:418.666500px;}
.y2{bottom:419.299500px;}
.y121{bottom:422.436000px;}
.ye8{bottom:424.375500px;}
.y73{bottom:424.716000px;}
.y1f0{bottom:427.038000px;}
.y2d{bottom:428.184000px;}
.y61{bottom:429.780000px;}
.y177{bottom:430.075500px;}
.y142{bottom:431.737500px;}
.y1bd{bottom:432.607500px;}
.y9e{bottom:439.557000px;}
.y1{bottom:443.164500px;}
.y120{bottom:443.328000px;}
.ye7{bottom:445.267500px;}
.y1ef{bottom:446.188500px;}
.y224{bottom:448.930500px;}
.y72{bottom:450.090000px;}
.y60{bottom:450.672000px;}
.y176{bottom:450.966000px;}
.y141{bottom:452.629500px;}
.y9d{bottom:460.449000px;}
.y11f{bottom:464.220000px;}
.y1ee{bottom:465.339000px;}
.ye6{bottom:466.159500px;}
.y223{bottom:468.081000px;}
.y1bc{bottom:470.038500px;}
.y5f{bottom:471.562500px;}
.y175{bottom:471.858000px;}
.y140{bottom:473.520000px;}
.y71{bottom:474.522000px;}
.y9c{bottom:481.341000px;}
.y1ed{bottom:484.489500px;}
.y11e{bottom:485.110500px;}
.ye5{bottom:487.050000px;}
.y1bb{bottom:490.930500px;}
.y5e{bottom:492.454500px;}
.y174{bottom:492.750000px;}
.y13f{bottom:494.412000px;}
.y9b{bottom:502.231500px;}
.y1ec{bottom:503.640000px;}
.y11d{bottom:506.002500px;}
.y2c{bottom:507.396000px;}
.ye4{bottom:507.942000px;}
.y222{bottom:508.123500px;}
.y1ba{bottom:511.822500px;}
.y5d{bottom:513.346500px;}
.y173{bottom:513.640500px;}
.y13e{bottom:515.304000px;}
.y1eb{bottom:522.790500px;}
.y9a{bottom:523.123500px;}
.y11c{bottom:526.894500px;}
.y221{bottom:527.274000px;}
.ye3{bottom:528.834000px;}
.y1b9{bottom:532.713000px;}
.y5c{bottom:534.237000px;}
.y172{bottom:534.532500px;}
.y13d{bottom:536.194500px;}
.y1ea{bottom:541.941000px;}
.y2b{bottom:546.220500px;}
.y220{bottom:546.424500px;}
.y11b{bottom:547.785000px;}
.y99{bottom:548.499000px;}
.ye1{bottom:549.726000px;}
.ye2{bottom:553.245000px;}
.y1b8{bottom:553.605000px;}
.y5b{bottom:555.129000px;}
.y171{bottom:555.424500px;}
.y13c{bottom:557.086500px;}
.y1e9{bottom:561.091500px;}
.ye0{bottom:565.462500px;}
.y21f{bottom:565.575000px;}
.y2a{bottom:567.111000px;}
.y11a{bottom:568.677000px;}
.yde{bottom:570.616500px;}
.ydf{bottom:574.135500px;}
.y1b7{bottom:574.497000px;}
.y5a{bottom:576.021000px;}
.y170{bottom:576.315000px;}
.y13b{bottom:577.978500px;}
.y1e8{bottom:580.242000px;}
.y98{bottom:580.644000px;}
.y21e{bottom:584.725500px;}
.y29{bottom:588.003000px;}
.y119{bottom:589.569000px;}
.ydd{bottom:591.508500px;}
.y1b6{bottom:595.387500px;}
.y59{bottom:596.913000px;}
.y13a{bottom:598.870500px;}
.y1e7{bottom:599.392500px;}
.y97{bottom:599.877000px;}
.y21d{bottom:603.876000px;}
.y28{bottom:608.895000px;}
.y118{bottom:610.459500px;}
.y16f{bottom:611.943000px;}
.ydc{bottom:612.400500px;}
.y1b5{bottom:616.279500px;}
.y58{bottom:617.803500px;}
.y1e6{bottom:618.543000px;}
.y96{bottom:619.110000px;}
.y139{bottom:619.761000px;}
.y21c{bottom:623.026500px;}
.ydb{bottom:627.807000px;}
.yda{bottom:628.135500px;}
.y27{bottom:629.785500px;}
.y16e{bottom:631.176000px;}
.y117{bottom:631.351500px;}
.yd9{bottom:633.291000px;}
.y1b4{bottom:637.171500px;}
.y1e5{bottom:637.693500px;}
.y57{bottom:638.695500px;}
.y138{bottom:640.653000px;}
.y84{bottom:641.539500px;}
.y21b{bottom:642.177000px;}
.y16d{bottom:650.409000px;}
.y26{bottom:650.677500px;}
.yd8{bottom:654.183000px;}
.y1e4{bottom:656.844000px;}
.y1b3{bottom:658.062000px;}
.y56{bottom:659.587500px;}
.y21a{bottom:661.327500px;}
.y137{bottom:661.545000px;}
.y116{bottom:666.979500px;}
.y16c{bottom:669.642000px;}
.y25{bottom:671.569500px;}
.yd7{bottom:675.075000px;}
.y1e3{bottom:675.996000px;}
.y1b2{bottom:678.954000px;}
.y55{bottom:680.478000px;}
.y136{bottom:682.435500px;}
.y115{bottom:686.212500px;}
.y16b{bottom:688.875000px;}
.yd6{bottom:689.863500px;}
.y24{bottom:692.460000px;}
.yd5{bottom:692.656500px;}
.y1e2{bottom:695.146500px;}
.yd4{bottom:695.965500px;}
.y219{bottom:699.628500px;}
.y1b1{bottom:699.846000px;}
.y54{bottom:701.370000px;}
.y135{bottom:703.327500px;}
.y114{bottom:705.445500px;}
.y16a{bottom:708.108000px;}
.yd2{bottom:712.390500px;}
.y23{bottom:713.352000px;}
.y1e1{bottom:714.297000px;}
.yd1{bottom:718.494000px;}
.y218{bottom:718.779000px;}
.y1b0{bottom:720.736500px;}
.yd3{bottom:722.170500px;}
.y53{bottom:722.262000px;}
.y134{bottom:724.219500px;}
.y113{bottom:724.678500px;}
.y169{bottom:727.341000px;}
.y1e0{bottom:733.447500px;}
.y22{bottom:734.244000px;}
.yd0{bottom:736.531500px;}
.y217{bottom:737.929500px;}
.y1af{bottom:741.628500px;}
.ycf{bottom:742.635000px;}
.y52{bottom:743.152500px;}
.y112{bottom:743.911500px;}
.y133{bottom:745.110000px;}
.y150{bottom:749.770500px;}
.y1df{bottom:752.598000px;}
.y21{bottom:755.136000px;}
.y216{bottom:757.081500px;}
.y1ae{bottom:762.520500px;}
.yce{bottom:763.527000px;}
.y51{bottom:764.044500px;}
.y132{bottom:766.002000px;}
.yfa{bottom:766.339500px;}
.y1de{bottom:771.748500px;}
.y20{bottom:776.026500px;}
.y215{bottom:776.232000px;}
.y1ad{bottom:783.411000px;}
.ycd{bottom:784.417500px;}
.y50{bottom:784.936500px;}
.y1dd{bottom:790.899000px;}
.y131{bottom:791.377500px;}
.y214{bottom:795.382500px;}
.y1f{bottom:796.918500px;}
.y1ac{bottom:804.303000px;}
.ycb{bottom:805.309500px;}
.y4f{bottom:805.827000px;}
.ycc{bottom:808.612500px;}
.y1dc{bottom:810.049500px;}
.y213{bottom:814.533000px;}
.y1e{bottom:817.810500px;}
.y1ab{bottom:825.195000px;}
.yca{bottom:826.201500px;}
.y4e{bottom:826.719000px;}
.y1db{bottom:829.200000px;}
.y212{bottom:833.683500px;}
.yc9{bottom:838.882500px;}
.yc8{bottom:840.990000px;}
.y1aa{bottom:846.087000px;}
.yc7{bottom:847.093500px;}
.y4d{bottom:847.611000px;}
.y1d{bottom:847.668000px;}
.y1da{bottom:848.350500px;}
.y211{bottom:852.834000px;}
.y1a9{bottom:866.977500px;}
.y1d8{bottom:867.501000px;}
.y4c{bottom:868.503000px;}
.y1d9{bottom:870.499500px;}
.y210{bottom:871.984500px;}
.yc6{bottom:885.394500px;}
.y1d7{bottom:886.651500px;}
.y1a8{bottom:887.869500px;}
.y4b{bottom:889.393500px;}
.y20f{bottom:891.135000px;}
.y1c{bottom:892.027500px;}
.y1b{bottom:903.828000px;}
.y1d6{bottom:905.802000px;}
.y1a7{bottom:908.761500px;}
.y4a{bottom:910.285500px;}
.yc5{bottom:918.540000px;}
.y1a{bottom:919.966500px;}
.yc4{bottom:923.695500px;}
.y1d5{bottom:924.952500px;}
.y20e{bottom:929.436000px;}
.y1a6{bottom:929.652000px;}
.y49{bottom:931.177500px;}
.y19{bottom:940.446000px;}
.y1d4{bottom:944.103000px;}
.yc1{bottom:944.586000px;}
.yc3{bottom:947.911500px;}
.yc2{bottom:948.106500px;}
.y20d{bottom:948.586500px;}
.y48{bottom:952.068000px;}
.y1a5{bottom:955.027500px;}
.y18{bottom:956.586000px;}
.ybf{bottom:962.760000px;}
.yc0{bottom:962.811000px;}
.y1d3{bottom:963.253500px;}
.y20c{bottom:967.737000px;}
.ybe{bottom:967.915500px;}
.y47{bottom:972.960000px;}
.y1d2{bottom:982.404000px;}
.ybd{bottom:983.652000px;}
.y20b{bottom:986.887500px;}
.ybc{bottom:988.807500px;}
.y46{bottom:993.852000px;}
.y17{bottom:1001.262000px;}
.y1d1{bottom:1001.554500px;}
.y20a{bottom:1006.038000px;}
.ybb{bottom:1009.698000px;}
.y45{bottom:1014.742500px;}
.y1d0{bottom:1020.705000px;}
.y209{bottom:1025.188500px;}
.yba{bottom:1030.590000px;}
.y44{bottom:1035.634500px;}
.y1cf{bottom:1039.855500px;}
.y16{bottom:1040.086500px;}
.y208{bottom:1044.339000px;}
.y43{bottom:1056.526500px;}
.y1ce{bottom:1059.007500px;}
.yb9{bottom:1062.157500px;}
.y207{bottom:1063.489500px;}
.y15{bottom:1071.424500px;}
.yb8{bottom:1073.932500px;}
.y42{bottom:1077.417000px;}
.y1cd{bottom:1078.158000px;}
.y206{bottom:1082.640000px;}
.y1cc{bottom:1097.308500px;}
.y41{bottom:1098.309000px;}
.y205{bottom:1101.790500px;}
.y14{bottom:1102.761000px;}
.y1cb{bottom:1116.459000px;}
.y40{bottom:1119.201000px;}
.y204{bottom:1120.941000px;}
.y1a4{bottom:1134.936000px;}
.y203{bottom:1137.469500px;}
.y3f{bottom:1140.091500px;}
.y3e{bottom:1200.196500px;}
.h12{height:30.440873px;}
.h3b{height:31.004479px;}
.h14{height:33.299897px;}
.h18{height:33.799046px;}
.h6{height:33.821261px;}
.h3a{height:34.704409px;}
.h11{height:36.529047px;}
.h3f{height:37.512858px;}
.h44{height:38.250662px;}
.h41{height:38.793881px;}
.h43{height:39.434227px;}
.h2{height:39.457760px;}
.h3e{height:40.923118px;}
.h3c{height:42.043500px;}
.hc{height:42.500452px;}
.hd{height:42.840113px;}
.h8{height:43.038432px;}
.h3{height:43.815515px;}
.h1f{height:44.472632px;}
.h2d{height:44.977046px;}
.h7{height:45.094826px;}
.hf{height:46.445641px;}
.he{height:46.714950px;}
.h2a{height:50.579897px;}
.h13{height:50.731891px;}
.ha{height:51.646464px;}
.h48{height:53.419891px;}
.h5{height:54.411312px;}
.h26{height:54.995897px;}
.h35{height:55.001897px;}
.h9{height:56.368391px;}
.h47{height:56.855897px;}
.h30{height:57.199200px;}
.h1c{height:64.144950px;}
.hb{height:64.536113px;}
.h20{height:64.542113px;}
.h15{height:65.024177px;}
.h23{height:66.390113px;}
.h32{height:66.396113px;}
.h27{height:67.132950px;}
.h25{height:67.336950px;}
.h16{height:67.524113px;}
.h29{height:69.670391px;}
.h17{height:70.022177px;}
.h37{height:70.444391px;}
.h28{height:70.450391px;}
.h1b{height:71.128950px;}
.h1a{height:73.893515px;}
.h24{height:75.617897px;}
.h2e{height:76.659515px;}
.h4{height:77.469696px;}
.h34{height:79.141200px;}
.h42{height:81.366041px;}
.h2c{height:81.613200px;}
.h1e{height:86.446391px;}
.h33{height:87.942799px;}
.h46{height:88.225500px;}
.h45{height:88.495500px;}
.h2f{height:88.950113px;}
.h31{height:88.956113px;}
.h38{height:89.482391px;}
.h21{height:90.485897px;}
.h36{height:91.060391px;}
.h2b{height:91.066391px;}
.h19{height:91.938113px;}
.h22{height:103.468391px;}
.h1d{height:117.614177px;}
.h10{height:265.998180px;}
.h39{height:308.327520px;}
.h40{height:334.563896px;}
.h3d{height:405.265200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:294.667440px;}
.w2{width:383.078460px;}
.w5{width:559.868250px;}
.w4{width:559.869135px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x103{left:10.199580px;}
.x62{left:14.789088px;}
.xce{left:18.928968px;}
.xea{left:24.452012px;}
.x5e{left:27.713518px;}
.xcb{left:31.207819px;}
.x102{left:36.284008px;}
.x5d{left:37.991729px;}
.xca{left:40.972629px;}
.x5f{left:46.926803px;}
.x104{left:47.964744px;}
.x60{left:50.837490px;}
.x1{left:53.574000px;}
.x61{left:55.664484px;}
.xd1{left:60.877317px;}
.xcd{left:64.592664px;}
.xeb{left:66.424095px;}
.xcc{left:67.551047px;}
.x11e{left:85.848000px;}
.x11f{left:88.645500px;}
.xf0{left:103.997473px;}
.x63{left:117.849518px;}
.x105{left:126.904948px;}
.xd2{left:141.429638px;}
.xef{left:162.734942px;}
.xcf{left:171.367655px;}
.xd0{left:192.935653px;}
.xee{left:199.782974px;}
.xed{left:203.004542px;}
.xec{left:206.341166px;}
.x106{left:212.599159px;}
.xf3{left:222.909230px;}
.x67{left:232.928136px;}
.x65{left:234.760340px;}
.xf1{left:242.344489px;}
.x64{left:245.038756px;}
.xc7{left:246.930000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.xe7{left:254.940000px;}
.xdc{left:258.945000px;}
.x66{left:265.373752px;}
.xd3{left:267.094500px;}
.x3{left:269.914500px;}
.x107{left:271.505059px;}
.x89{left:276.006000px;}
.xf7{left:277.086000px;}
.x8a{left:280.452000px;}
.x5{left:281.479500px;}
.x101{left:283.462500px;}
.x68{left:286.075394px;}
.x117{left:288.555000px;}
.x4f{left:293.791500px;}
.x118{left:296.026500px;}
.x96{left:298.138500px;}
.x119{left:299.688000px;}
.xe3{left:300.861000px;}
.xe1{left:302.832000px;}
.x1c{left:304.531500px;}
.x114{left:306.949500px;}
.x50{left:308.736000px;}
.xf2{left:309.891566px;}
.x11a{left:314.632500px;}
.x6d{left:316.092000px;}
.x1d{left:319.474500px;}
.x98{left:323.041500px;}
.xe{left:325.266000px;}
.x12{left:327.691500px;}
.xf{left:332.739000px;}
.x13{left:335.164500px;}
.xd4{left:336.741000px;}
.x99{left:337.986000px;}
.x3b{left:339.937500px;}
.x9a{left:341.710500px;}
.xe4{left:343.435500px;}
.xb6{left:345.447000px;}
.xe2{left:346.629000px;}
.xc8{left:351.357000px;}
.xbb{left:352.612500px;}
.x30{left:354.243000px;}
.x3d{left:355.603500px;}
.x9b{left:356.655000px;}
.xbd{left:357.774000px;}
.x3c{left:359.932500px;}
.x6c{left:362.689500px;}
.x22{left:364.183500px;}
.x10d{left:365.239500px;}
.x31{left:369.186000px;}
.x3e{left:370.548000px;}
.x6f{left:371.952000px;}
.x3f{left:374.257500px;}
.x6e{left:375.582000px;}
.x115{left:377.691000px;}
.x23{left:379.128000px;}
.x108{left:380.227039px;}
.xfa{left:381.886500px;}
.x10f{left:384.555000px;}
.x32{left:385.714500px;}
.xc2{left:387.226500px;}
.x40{left:389.202000px;}
.x70{left:391.956000px;}
.x34{left:393.352500px;}
.xde{left:397.258500px;}
.x33{left:400.659000px;}
.xaa{left:401.659500px;}
.x45{left:407.190000px;}
.xbe{left:408.232500px;}
.x71{left:409.918500px;}
.xe0{left:411.279000px;}
.x59{left:414.465000px;}
.xab{left:419.496000px;}
.xdd{left:420.975000px;}
.x46{left:422.133000px;}
.x8b{left:424.765500px;}
.xac{left:425.856000px;}
.x14{left:430.708500px;}
.xc3{left:432.711000px;}
.x111{left:434.253000px;}
.xb1{left:435.409500px;}
.xbf{left:436.737000px;}
.x15{left:438.180000px;}
.xb7{left:439.732500px;}
.xf4{left:442.377399px;}
.xad{left:447.960000px;}
.x72{left:449.773500px;}
.xdf{left:450.865500px;}
.x73{left:451.938000px;}
.xb2{left:454.164000px;}
.x8c{left:455.385000px;}
.x83{left:457.152000px;}
.x84{left:459.999000px;}
.x26{left:464.433000px;}
.xb9{left:465.531000px;}
.x85{left:466.894500px;}
.x10{left:469.135500px;}
.x74{left:471.997500px;}
.xe6{left:474.699000px;}
.x11{left:476.607000px;}
.x1e{left:479.488500px;}
.x75{left:483.196500px;}
.x5b{left:484.774500px;}
.x10c{left:487.468500px;}
.x8d{left:489.109500px;}
.xff{left:491.337000px;}
.x95{left:492.712500px;}
.x1f{left:494.433000px;}
.x8e{left:496.120500px;}
.x11b{left:497.713500px;}
.x76{left:499.303500px;}
.x9c{left:500.373000px;}
.x20{left:502.053000px;}
.x2a{left:504.315000px;}
.xae{left:505.414500px;}
.xc9{left:506.592000px;}
.x8f{left:508.396500px;}
.x4c{left:511.467000px;}
.x11c{left:512.658000px;}
.xbc{left:514.207500px;}
.x21{left:516.997500px;}
.x2b{left:518.743500px;}
.x37{left:519.822000px;}
.x77{left:524.121000px;}
.x4d{left:526.242000px;}
.x78{left:528.072000px;}
.x109{left:531.070500px;}
.x35{left:532.539000px;}
.x16{left:533.724000px;}
.x38{left:534.765000px;}
.x39{left:538.542000px;}
.x69{left:546.108000px;}
.x17{left:548.668500px;}
.x79{left:551.290500px;}
.x18{left:552.478500px;}
.x3a{left:553.486500px;}
.xd5{left:554.568000px;}
.xfb{left:559.570500px;}
.x90{left:561.213000px;}
.x6a{left:562.894500px;}
.xa9{left:565.047000px;}
.x112{left:566.307000px;}
.x19{left:567.423000px;}
.xa4{left:568.590000px;}
.x91{left:572.394000px;}
.x9d{left:574.206000px;}
.x86{left:576.736500px;}
.x92{left:577.881000px;}
.x27{left:578.898000px;}
.x9e{left:580.833000px;}
.x93{left:582.681000px;}
.x94{left:584.845500px;}
.x9f{left:588.195000px;}
.x7a{left:589.378500px;}
.x87{left:592.242000px;}
.x36{left:594.103500px;}
.x28{left:596.818500px;}
.x88{left:604.612500px;}
.x51{left:606.889500px;}
.xb8{left:608.089500px;}
.x2c{left:610.740000px;}
.xe9{left:612.348000px;}
.x24{left:614.331000px;}
.x110{left:617.668500px;}
.x52{left:622.116000px;}
.xd6{left:623.347500px;}
.x2d{left:625.683000px;}
.x116{left:628.461000px;}
.xa5{left:631.024500px;}
.x2e{left:633.058500px;}
.x25{left:635.425500px;}
.xba{left:636.615000px;}
.x5a{left:638.694000px;}
.x97{left:639.751500px;}
.x7c{left:640.962000px;}
.x7b{left:642.175500px;}
.x6b{left:643.605000px;}
.x113{left:644.698500px;}
.x5c{left:646.084500px;}
.x2f{left:648.003000px;}
.xaf{left:653.617500px;}
.x1a{left:656.044500px;}
.xfd{left:657.489000px;}
.xb0{left:659.977500px;}
.xd7{left:661.842000px;}
.x53{left:663.327000px;}
.x7d{left:665.491500px;}
.x7e{left:667.654500px;}
.xa0{left:669.895500px;}
.x1b{left:670.989000px;}
.xd8{left:674.133000px;}
.xa{left:675.597000px;}
.x7f{left:680.944500px;}
.xb{left:683.070000px;}
.x54{left:684.688500px;}
.xc{left:686.880000px;}
.xfe{left:690.547500px;}
.x100{left:692.316000px;}
.xd{left:694.351500px;}
.x55{left:695.380500px;}
.x80{left:696.624000px;}
.x56{left:700.642500px;}
.xa1{left:703.662000px;}
.x41{left:708.096000px;}
.x81{left:709.987500px;}
.xa2{left:711.024000px;}
.xd9{left:712.627500px;}
.x57{left:715.302000px;}
.xc4{left:719.587500px;}
.x42{left:723.039000px;}
.x43{left:726.850500px;}
.xc1{left:727.950000px;}
.x58{left:729.778500px;}
.xc0{left:732.501000px;}
.xf5{left:736.261500px;}
.xa3{left:738.156000px;}
.xc5{left:739.717500px;}
.x44{left:741.793500px;}
.xb4{left:749.310000px;}
.xa7{left:751.123500px;}
.xe5{left:753.913500px;}
.xa6{left:756.754500px;}
.xb5{left:758.152500px;}
.xf6{left:759.624000px;}
.x10a{left:762.525000px;}
.xb3{left:765.151500px;}
.xf8{left:767.089500px;}
.x4a{left:769.174500px;}
.xa8{left:771.429000px;}
.xc6{left:775.317000px;}
.x10b{left:777.936000px;}
.x11d{left:779.116500px;}
.x49{left:784.051500px;}
.x29{left:787.110000px;}
.x4b{left:789.075000px;}
.xf9{left:791.418000px;}
.xfc{left:795.978000px;}
.x10e{left:797.808000px;}
.x47{left:798.943500px;}
.xda{left:806.208000px;}
.x6{left:809.329500px;}
.xe8{left:812.077500px;}
.x48{left:813.886500px;}
.x7{left:816.801000px;}
.xdb{left:818.500500px;}
.x8{left:824.422500px;}
.x4e{left:830.418000px;}
.x9{left:831.894000px;}
.x82{left:836.970000px;}
@media print{
.ve{vertical-align:-21.701333pt;}
.v2{vertical-align:-15.429333pt;}
.v1e{vertical-align:-14.190720pt;}
.v9{vertical-align:-11.765333pt;}
.v3{vertical-align:-10.624000pt;}
.v5{vertical-align:-9.648000pt;}
.v4{vertical-align:-7.968000pt;}
.v17{vertical-align:-4.096000pt;}
.v0{vertical-align:0.000000pt;}
.v1f{vertical-align:2.389333pt;}
.v8{vertical-align:5.040000pt;}
.v15{vertical-align:7.877333pt;}
.v1b{vertical-align:9.045333pt;}
.vc{vertical-align:10.453333pt;}
.v16{vertical-align:12.517333pt;}
.v7{vertical-align:15.493333pt;}
.v14{vertical-align:18.330667pt;}
.v1{vertical-align:19.290667pt;}
.v13{vertical-align:20.933333pt;}
.v6{vertical-align:21.941333pt;}
.vb{vertical-align:26.736000pt;}
.v19{vertical-align:29.194667pt;}
.v12{vertical-align:31.413333pt;}
.v1d{vertical-align:37.841920pt;}
.v1c{vertical-align:38.789333pt;}
.v18{vertical-align:40.986667pt;}
.v11{vertical-align:42.677333pt;}
.va{vertical-align:43.642667pt;}
.vd{vertical-align:46.746667pt;}
.v10{vertical-align:50.832000pt;}
.v1a{vertical-align:62.378667pt;}
.vf{vertical-align:66.421333pt;}
.ls5{letter-spacing:0.000000pt;}
.lseb{letter-spacing:0.000621pt;}
.lsf3{letter-spacing:0.000711pt;}
.ls1e{letter-spacing:0.219200pt;}
.ls10{letter-spacing:0.482502pt;}
.ls9{letter-spacing:0.487835pt;}
.ls61{letter-spacing:0.501841pt;}
.ls7a{letter-spacing:0.507733pt;}
.lsd7{letter-spacing:0.583883pt;}
.lsde{letter-spacing:0.595635pt;}
.ls5c{letter-spacing:0.596214pt;}
.ls9d{letter-spacing:0.596267pt;}
.ls9a{letter-spacing:0.598340pt;}
.ls9e{letter-spacing:0.600969pt;}
.ls76{letter-spacing:0.635362pt;}
.lsac{letter-spacing:0.637762pt;}
.ls71{letter-spacing:0.640696pt;}
.ls2b{letter-spacing:0.662516pt;}
.ls2a{letter-spacing:0.663200pt;}
.lsab{letter-spacing:0.663756pt;}
.ls89{letter-spacing:0.665570pt;}
.ls32{letter-spacing:0.692013pt;}
.ls75{letter-spacing:0.768696pt;}
.ls70{letter-spacing:0.774029pt;}
.ls54{letter-spacing:0.784508pt;}
.ls1d{letter-spacing:0.789841pt;}
.lscc{letter-spacing:0.803635pt;}
.ls85{letter-spacing:0.820214pt;}
.lsb{letter-spacing:0.847207pt;}
.lsc{letter-spacing:0.852541pt;}
.ls1c{letter-spacing:0.882422pt;}
.ls26{letter-spacing:0.883230pt;}
.ls2d{letter-spacing:0.884237pt;}
.ls5b{letter-spacing:0.885044pt;}
.ls4f{letter-spacing:0.885348pt;}
.ls79{letter-spacing:0.885852pt;}
.ls57{letter-spacing:0.887756pt;}
.ls14{letter-spacing:0.888563pt;}
.ls6d{letter-spacing:0.889570pt;}
.ls5d{letter-spacing:0.890378pt;}
.ls69{letter-spacing:0.891185pt;}
.ls8e{letter-spacing:0.931230pt;}
.ls33{letter-spacing:0.989169pt;}
.ls58{letter-spacing:1.008508pt;}
.ls66{letter-spacing:1.102881pt;}
.lsdb{letter-spacing:1.133372pt;}
.ls3f{letter-spacing:1.142029pt;}
.ls44{letter-spacing:1.147362pt;}
.ls20{letter-spacing:1.165897pt;}
.ls63{letter-spacing:1.167207pt;}
.ls83{letter-spacing:1.168015pt;}
.ls12{letter-spacing:1.171230pt;}
.ls6{letter-spacing:1.171733pt;}
.ls3c{letter-spacing:1.257548pt;}
.ls38{letter-spacing:1.262881pt;}
.lsf{letter-spacing:1.291174pt;}
.ls47{letter-spacing:1.296015pt;}
.ls1b{letter-spacing:1.296508pt;}
.ls8{letter-spacing:1.326210pt;}
.ls37{letter-spacing:1.327207pt;}
.ls88{letter-spacing:1.328015pt;}
.ls82{letter-spacing:1.328333pt;}
.ls72{letter-spacing:1.328689pt;}
.ls68{letter-spacing:1.332541pt;}
.ls67{letter-spacing:1.333044pt;}
.ls6c{letter-spacing:1.698118pt;}
.ls50{letter-spacing:1.915200pt;}
.ls55{letter-spacing:1.920533pt;}
.ls39{letter-spacing:2.057548pt;}
.ls36{letter-spacing:2.062881pt;}
.ls29{letter-spacing:2.101852pt;}
.ls3d{letter-spacing:2.102029pt;}
.ls8b{letter-spacing:2.129905pt;}
.lse3{letter-spacing:2.219174pt;}
.ls1a{letter-spacing:2.257574pt;}
.ls77{letter-spacing:2.652572pt;}
.ls9f{letter-spacing:2.656533pt;}
.lsca{letter-spacing:2.657067pt;}
.ls97{letter-spacing:2.750046pt;}
.ls43{letter-spacing:2.763185pt;}
.ls8c{letter-spacing:2.896015pt;}
.ls94{letter-spacing:2.952713pt;}
.lsd1{letter-spacing:2.958046pt;}
.lsa2{letter-spacing:3.056333pt;}
.lsd{letter-spacing:3.274999pt;}
.ls53{letter-spacing:3.280333pt;}
.ls84{letter-spacing:3.318400pt;}
.ls7{letter-spacing:3.323733pt;}
.ls5f{letter-spacing:3.402682pt;}
.ls2e{letter-spacing:3.445841pt;}
.ls60{letter-spacing:3.494451pt;}
.ls40{letter-spacing:3.805169pt;}
.ls51{letter-spacing:3.824508pt;}
.ls81{letter-spacing:3.841920pt;}
.ls7e{letter-spacing:3.847253pt;}
.ls62{letter-spacing:4.022451pt;}
.ls65{letter-spacing:4.027785pt;}
.ls35{letter-spacing:4.107174pt;}
.ls1f{letter-spacing:4.118400pt;}
.ls78{letter-spacing:4.385067pt;}
.ls17{letter-spacing:4.822451pt;}
.ls24{letter-spacing:4.827785pt;}
.ls11{letter-spacing:4.907174pt;}
.ls18{letter-spacing:6.881118pt;}
.ls25{letter-spacing:6.886451pt;}
.ls0{letter-spacing:7.437600pt;}
.lsda{letter-spacing:9.497600pt;}
.ls23{letter-spacing:9.521067pt;}
.lse2{letter-spacing:9.522422pt;}
.ls4{letter-spacing:10.626533pt;}
.ls3b{letter-spacing:11.213094pt;}
.ls3e{letter-spacing:11.376508pt;}
.ls6e{letter-spacing:11.511238pt;}
.ls5a{letter-spacing:11.593548pt;}
.ls41{letter-spacing:11.598881pt;}
.ls3a{letter-spacing:11.619096pt;}
.lsaa{letter-spacing:11.624429pt;}
.ls16{letter-spacing:11.635096pt;}
.ls42{letter-spacing:11.640429pt;}
.ls52{letter-spacing:11.657874pt;}
.ls7f{letter-spacing:11.663207pt;}
.lsf7{letter-spacing:11.733384pt;}
.lsf0{letter-spacing:11.810512pt;}
.lsec{letter-spacing:11.854324pt;}
.ls93{letter-spacing:11.859558pt;}
.ls7c{letter-spacing:11.898904pt;}
.lse8{letter-spacing:11.954133pt;}
.lsb8{letter-spacing:11.955200pt;}
.lsed{letter-spacing:11.959467pt;}
.lsf5{letter-spacing:11.996800pt;}
.lsee{letter-spacing:12.090824pt;}
.lsf6{letter-spacing:12.123471pt;}
.lsea{letter-spacing:12.128386pt;}
.lse9{letter-spacing:12.161450pt;}
.ls5e{letter-spacing:12.347785pt;}
.ls80{letter-spacing:12.429762pt;}
.ls7d{letter-spacing:12.679601pt;}
.ls6b{letter-spacing:12.787096pt;}
.ls6f{letter-spacing:12.881118pt;}
.lsef{letter-spacing:13.038264pt;}
.lsf2{letter-spacing:13.090552pt;}
.ls6a{letter-spacing:13.124214pt;}
.ls74{letter-spacing:13.160429pt;}
.ls73{letter-spacing:13.183207pt;}
.ls91{letter-spacing:13.283467pt;}
.ls4a{letter-spacing:13.307185pt;}
.ls8d{letter-spacing:13.419785pt;}
.lsb4{letter-spacing:13.461852pt;}
.ls4b{letter-spacing:13.496429pt;}
.lsc4{letter-spacing:13.549136pt;}
.lsa9{letter-spacing:13.638400pt;}
.ls59{letter-spacing:13.649067pt;}
.ls28{letter-spacing:13.651096pt;}
.ls22{letter-spacing:13.654400pt;}
.lse5{letter-spacing:13.841630pt;}
.ls9b{letter-spacing:13.856078pt;}
.ls99{letter-spacing:13.861411pt;}
.ls13{letter-spacing:13.867174pt;}
.ls21{letter-spacing:13.872508pt;}
.ls4d{letter-spacing:13.881548pt;}
.ls4e{letter-spacing:13.952015pt;}
.ls64{letter-spacing:14.135835pt;}
.lse0{letter-spacing:14.147096pt;}
.ls56{letter-spacing:14.155174pt;}
.ls34{letter-spacing:14.274268pt;}
.lsa{letter-spacing:14.293010pt;}
.ls19{letter-spacing:14.358451pt;}
.ls15{letter-spacing:14.437841pt;}
.ls27{letter-spacing:14.443174pt;}
.ls96{letter-spacing:14.453411pt;}
.lsd6{letter-spacing:14.458745pt;}
.lsd8{letter-spacing:14.475674pt;}
.lsdd{letter-spacing:14.478302pt;}
.lsdc{letter-spacing:14.481007pt;}
.ls9c{letter-spacing:14.483635pt;}
.lsb9{letter-spacing:14.502340pt;}
.lsd9{letter-spacing:14.718498pt;}
.lsce{letter-spacing:14.832078pt;}
.ls4c{letter-spacing:15.595185pt;}
.lsf4{letter-spacing:15.636957pt;}
.lsbe{letter-spacing:15.760078pt;}
.lsbf{letter-spacing:15.779635pt;}
.ls92{letter-spacing:15.963418pt;}
.lsd3{letter-spacing:15.989411pt;}
.lsb7{letter-spacing:16.006084pt;}
.lsd4{letter-spacing:16.017007pt;}
.ls30{letter-spacing:16.061762pt;}
.lsa8{letter-spacing:16.084541pt;}
.lsa4{letter-spacing:16.089874pt;}
.lsb6{letter-spacing:16.131096pt;}
.lsad{letter-spacing:16.132541pt;}
.lsb5{letter-spacing:16.159207pt;}
.lsb1{letter-spacing:16.168429pt;}
.lsb0{letter-spacing:16.196541pt;}
.lsbb{letter-spacing:16.216969pt;}
.lsbc{letter-spacing:16.219674pt;}
.lsd0{letter-spacing:16.254498pt;}
.lsd5{letter-spacing:16.533867pt;}
.ls98{letter-spacing:16.539200pt;}
.lsba{letter-spacing:16.560533pt;}
.lsa7{letter-spacing:16.841874pt;}
.lscd{letter-spacing:16.912533pt;}
.lsdf{letter-spacing:17.073015pt;}
.lse6{letter-spacing:17.105630pt;}
.ls95{letter-spacing:17.265513pt;}
.ls7b{letter-spacing:17.410428pt;}
.lsb2{letter-spacing:17.733852pt;}
.lsc5{letter-spacing:17.808518pt;}
.lsbd{letter-spacing:17.840533pt;}
.lsc7{letter-spacing:17.923096pt;}
.lsc0{letter-spacing:18.081067pt;}
.lsae{letter-spacing:18.260541pt;}
.lsd2{letter-spacing:18.796179pt;}
.lse7{letter-spacing:18.833067pt;}
.ls2f{letter-spacing:18.869841pt;}
.lsc9{letter-spacing:18.933841pt;}
.ls48{letter-spacing:18.990121pt;}
.lsb3{letter-spacing:19.009015pt;}
.lsc6{letter-spacing:19.942400pt;}
.ls87{letter-spacing:20.100214pt;}
.ls45{letter-spacing:20.496015pt;}
.lscf{letter-spacing:20.933867pt;}
.lsa1{letter-spacing:21.107096pt;}
.lsa0{letter-spacing:21.135207pt;}
.lsa6{letter-spacing:21.960429pt;}
.lsa5{letter-spacing:21.983207pt;}
.ls31{letter-spacing:23.025430pt;}
.lsa3{letter-spacing:23.126400pt;}
.ls49{letter-spacing:23.261762pt;}
.ls86{letter-spacing:24.509762pt;}
.lsc8{letter-spacing:24.593067pt;}
.lsf1{letter-spacing:25.393820pt;}
.ls2c{letter-spacing:26.050118pt;}
.lsaf{letter-spacing:26.660541pt;}
.lse4{letter-spacing:27.260785pt;}
.lsc2{letter-spacing:27.565762pt;}
.ls46{letter-spacing:27.798029pt;}
.ls8f{letter-spacing:28.880015pt;}
.ls90{letter-spacing:29.041015pt;}
.lsc3{letter-spacing:29.579733pt;}
.lsc1{letter-spacing:30.373841pt;}
.lse1{letter-spacing:30.657067pt;}
.ls8a{letter-spacing:35.473067pt;}
.ls1{letter-spacing:55.787733pt;}
.lse{letter-spacing:55.899185pt;}
.ls3{letter-spacing:55.926400pt;}
.ls2{letter-spacing:57.174803pt;}
.lscb{letter-spacing:327.568726pt;}
.ws62{word-spacing:-55.365867pt;}
.wsa6{word-spacing:-39.309765pt;}
.wsb{word-spacing:-13.283467pt;}
.wsad{word-spacing:-13.150067pt;}
.ws94{word-spacing:-12.272640pt;}
.ws97{word-spacing:-11.955200pt;}
.ws95{word-spacing:-10.917741pt;}
.ws28{word-spacing:-10.626800pt;}
.wsa{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws58{word-spacing:-3.134898pt;}
.ws44{word-spacing:-3.028630pt;}
.ws45{word-spacing:-2.975497pt;}
.ws23{word-spacing:-2.497292pt;}
.ws5b{word-spacing:-2.231622pt;}
.wscb{word-spacing:-2.056294pt;}
.ws8f{word-spacing:-2.019087pt;}
.wscc{word-spacing:-2.008474pt;}
.wsc1{word-spacing:-1.912819pt;}
.wsc0{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws49{word-spacing:-1.806551pt;}
.ws7c{word-spacing:-1.769370pt;}
.ws2{word-spacing:-1.748099pt;}
.wsab{word-spacing:-1.647150pt;}
.ws2a{word-spacing:-1.381481pt;}
.wsb1{word-spacing:-1.243341pt;}
.ws9e{word-spacing:-1.222079pt;}
.wsc2{word-spacing:-1.115811pt;}
.wsd4{word-spacing:-0.956416pt;}
.wsc5{word-spacing:-0.903276pt;}
.ws7a{word-spacing:-0.860774pt;}
.ws4d{word-spacing:-0.850142pt;}
.ws2c{word-spacing:-0.797008pt;}
.ws91{word-spacing:-0.690740pt;}
.ws73{word-spacing:-0.637606pt;}
.ws43{word-spacing:-0.531339pt;}
.wsf3{word-spacing:-0.430387pt;}
.wsa1{word-spacing:-0.371937pt;}
.ws50{word-spacing:-0.334746pt;}
.ws24{word-spacing:-0.318803pt;}
.ws19{word-spacing:-0.265669pt;}
.wsd7{word-spacing:-0.239104pt;}
.ws10{word-spacing:-0.212535pt;}
.wsb7{word-spacing:-0.196702pt;}
.wsb8{word-spacing:-0.191283pt;}
.ws14{word-spacing:-0.159402pt;}
.ws7b{word-spacing:-0.143462pt;}
.ws8b{word-spacing:-0.118789pt;}
.ws18{word-spacing:-0.106268pt;}
.wsc9{word-spacing:-0.095642pt;}
.ws21{word-spacing:-0.053134pt;}
.wsb3{word-spacing:-0.047821pt;}
.ws29{word-spacing:-0.042507pt;}
.ws60{word-spacing:-0.040382pt;}
.ws6{word-spacing:-0.037194pt;}
.ws9{word-spacing:-0.002333pt;}
.ws8{word-spacing:0.000000pt;}
.wsdd{word-spacing:0.047821pt;}
.ws22{word-spacing:0.053134pt;}
.wsf6{word-spacing:0.071790pt;}
.wsf4{word-spacing:0.095642pt;}
.ws1c{word-spacing:0.106268pt;}
.ws87{word-spacing:0.139142pt;}
.ws7d{word-spacing:0.143462pt;}
.ws16{word-spacing:0.159402pt;}
.wsce{word-spacing:0.191283pt;}
.ws11{word-spacing:0.212535pt;}
.ws102{word-spacing:0.239104pt;}
.ws13{word-spacing:0.265669pt;}
.wsc7{word-spacing:0.286925pt;}
.ws32{word-spacing:0.318803pt;}
.wsac{word-spacing:0.371937pt;}
.ws3{word-spacing:0.373505pt;}
.ws7{word-spacing:0.375335pt;}
.ws9a{word-spacing:0.453354pt;}
.ws2b{word-spacing:0.478205pt;}
.ws9c{word-spacing:0.478208pt;}
.wsf8{word-spacing:0.526029pt;}
.ws39{word-spacing:0.531339pt;}
.wsb5{word-spacing:0.573850pt;}
.ws7e{word-spacing:0.595200pt;}
.ws9b{word-spacing:0.621670pt;}
.ws93{word-spacing:0.637606pt;}
.ws98{word-spacing:0.669491pt;}
.ws40{word-spacing:0.690740pt;}
.ws25{word-spacing:0.743874pt;}
.ws80{word-spacing:0.797008pt;}
.wsdb{word-spacing:0.812954pt;}
.ws81{word-spacing:0.850142pt;}
.wse6{word-spacing:0.860774pt;}
.ws1d{word-spacing:0.903276pt;}
.ws99{word-spacing:0.908595pt;}
.ws4c{word-spacing:0.956410pt;}
.ws4b{word-spacing:1.009543pt;}
.ws17{word-spacing:1.062677pt;}
.ws48{word-spacing:1.115811pt;}
.wsc3{word-spacing:1.168945pt;}
.ws12{word-spacing:1.222079pt;}
.ws31{word-spacing:1.275213pt;}
.ws4f{word-spacing:1.291162pt;}
.ws30{word-spacing:1.328347pt;}
.wsa9{word-spacing:1.381481pt;}
.ws15{word-spacing:1.434614pt;}
.wsb2{word-spacing:1.434624pt;}
.ws75{word-spacing:1.487748pt;}
.ws33{word-spacing:1.540882pt;}
.ws2e{word-spacing:1.647150pt;}
.ws74{word-spacing:1.700284pt;}
.wsd1{word-spacing:1.721549pt;}
.wsa2{word-spacing:1.753418pt;}
.ws6b{word-spacing:1.806551pt;}
.wsc4{word-spacing:1.859685pt;}
.ws66{word-spacing:1.912819pt;}
.ws35{word-spacing:1.965953pt;}
.wsfc{word-spacing:2.056294pt;}
.wsb4{word-spacing:2.104115pt;}
.ws38{word-spacing:2.125355pt;}
.ws46{word-spacing:2.178489pt;}
.ws51{word-spacing:2.231622pt;}
.wsa0{word-spacing:2.284756pt;}
.ws100{word-spacing:2.295398pt;}
.ws41{word-spacing:2.337890pt;}
.ws20{word-spacing:2.391024pt;}
.wse4{word-spacing:2.391040pt;}
.ws52{word-spacing:2.444158pt;}
.wsbc{word-spacing:2.449246pt;}
.ws4a{word-spacing:2.497292pt;}
.wse1{word-spacing:2.630144pt;}
.ws1f{word-spacing:2.656693pt;}
.wsa5{word-spacing:2.709827pt;}
.ws36{word-spacing:2.762961pt;}
.wsfe{word-spacing:2.773606pt;}
.wsca{word-spacing:2.804439pt;}
.ws56{word-spacing:2.816095pt;}
.ws85{word-spacing:2.869229pt;}
.ws96{word-spacing:2.869248pt;}
.wsef{word-spacing:2.917069pt;}
.ws2d{word-spacing:2.975497pt;}
.wsa8{word-spacing:3.028630pt;}
.wsf{word-spacing:3.081764pt;}
.wsdf{word-spacing:3.108352pt;}
.ws4e{word-spacing:3.134898pt;}
.ws1a{word-spacing:3.185311pt;}
.ws82{word-spacing:3.188032pt;}
.ws72{word-spacing:3.241166pt;}
.ws67{word-spacing:3.294300pt;}
.ws3a{word-spacing:3.347434pt;}
.ws8e{word-spacing:3.453701pt;}
.wsc6{word-spacing:3.506835pt;}
.ws84{word-spacing:3.559969pt;}
.wsbf{word-spacing:3.613103pt;}
.ws26{word-spacing:3.666237pt;}
.wsed{word-spacing:3.682202pt;}
.ws34{word-spacing:3.772505pt;}
.wsc8{word-spacing:3.777843pt;}
.ws55{word-spacing:3.825638pt;}
.ws1b{word-spacing:3.825664pt;}
.wsb9{word-spacing:3.878772pt;}
.ws3f{word-spacing:4.038174pt;}
.ws9f{word-spacing:4.091308pt;}
.ws83{word-spacing:4.250709pt;}
.ws3b{word-spacing:4.463245pt;}
.wsfa{word-spacing:4.495155pt;}
.ws71{word-spacing:4.569513pt;}
.ws3e{word-spacing:4.622646pt;}
.wsbe{word-spacing:4.728914pt;}
.ws5a{word-spacing:4.782048pt;}
.ws57{word-spacing:4.835182pt;}
.ws37{word-spacing:4.994583pt;}
.ws78{word-spacing:5.047717pt;}
.wse5{word-spacing:5.260288pt;}
.ws8c{word-spacing:5.313387pt;}
.ws2f{word-spacing:5.579056pt;}
.wsa3{word-spacing:5.685324pt;}
.ws70{word-spacing:5.791591pt;}
.wsa4{word-spacing:5.844725pt;}
.ws53{word-spacing:5.897859pt;}
.ws47{word-spacing:5.950993pt;}
.ws79{word-spacing:6.057261pt;}
.ws59{word-spacing:6.110395pt;}
.wsbb{word-spacing:6.376064pt;}
.ws77{word-spacing:6.535466pt;}
.ws3d{word-spacing:6.907403pt;}
.ws1e{word-spacing:7.013670pt;}
.ws92{word-spacing:7.119938pt;}
.ws7f{word-spacing:7.241333pt;}
.ws4{word-spacing:7.396756pt;}
.ws88{word-spacing:7.986667pt;}
.wsbd{word-spacing:8.076348pt;}
.wse8{word-spacing:8.116417pt;}
.ws76{word-spacing:8.926490pt;}
.ws5c{word-spacing:9.467119pt;}
.ws3c{word-spacing:9.723498pt;}
.ws27{word-spacing:10.582833pt;}
.wsba{word-spacing:10.945577pt;}
.wsf2{word-spacing:11.429171pt;}
.wsf7{word-spacing:11.668275pt;}
.wse3{word-spacing:11.765605pt;}
.wsda{word-spacing:11.811738pt;}
.wsfb{word-spacing:11.902242pt;}
.wseb{word-spacing:11.902421pt;}
.wsf0{word-spacing:11.903002pt;}
.wscd{word-spacing:11.905220pt;}
.ws101{word-spacing:11.906372pt;}
.wsff{word-spacing:11.907149pt;}
.wsd2{word-spacing:11.907379pt;}
.wsf5{word-spacing:11.955200pt;}
.wsd8{word-spacing:12.050842pt;}
.wscf{word-spacing:12.106336pt;}
.wsea{word-spacing:12.484085pt;}
.ws5e{word-spacing:12.486459pt;}
.wsdc{word-spacing:12.704761pt;}
.ws42{word-spacing:13.230333pt;}
.wse{word-spacing:14.239876pt;}
.wsb6{word-spacing:14.400677pt;}
.wsec{word-spacing:14.489702pt;}
.wse2{word-spacing:14.537523pt;}
.wsd6{word-spacing:14.633165pt;}
.wse0{word-spacing:14.770372pt;}
.wsd5{word-spacing:14.771849pt;}
.wsf9{word-spacing:14.772437pt;}
.wse9{word-spacing:14.775706pt;}
.wsd0{word-spacing:14.776627pt;}
.wsf1{word-spacing:14.872269pt;}
.wsde{word-spacing:14.920090pt;}
.wsd9{word-spacing:14.964772pt;}
.wsd3{word-spacing:15.015731pt;}
.ws6f{word-spacing:15.080893pt;}
.ws90{word-spacing:15.143152pt;}
.ws5f{word-spacing:15.945370pt;}
.ws61{word-spacing:16.000735pt;}
.ws89{word-spacing:16.056101pt;}
.wsa7{word-spacing:16.258963pt;}
.ws86{word-spacing:16.775858pt;}
.ws9d{word-spacing:17.055971pt;}
.wse7{word-spacing:17.765809pt;}
.ws8a{word-spacing:18.160004pt;}
.ws6e{word-spacing:19.444966pt;}
.ws6a{word-spacing:19.820980pt;}
.ws6c{word-spacing:20.028586pt;}
.ws65{word-spacing:20.042444pt;}
.ws1{word-spacing:20.125490pt;}
.wsfd{word-spacing:21.328077pt;}
.wsae{word-spacing:22.153291pt;}
.wsaa{word-spacing:22.533908pt;}
.ws69{word-spacing:22.810737pt;}
.ws68{word-spacing:23.585859pt;}
.wsb0{word-spacing:23.730037pt;}
.wsee{word-spacing:23.862579pt;}
.wsaf{word-spacing:24.912597pt;}
.ws8d{word-spacing:26.575616pt;}
.ws6d{word-spacing:27.943087pt;}
.wsc{word-spacing:41.464218pt;}
.ws63{word-spacing:54.313915pt;}
.wsd{word-spacing:54.710236pt;}
.ws54{word-spacing:163.864845pt;}
.ws64{word-spacing:321.831830pt;}
.ws5d{word-spacing:752.747489pt;}
._8{margin-left:-25.079185pt;}
._3c{margin-left:-21.854106pt;}
._2{margin-left:-17.109056pt;}
._5{margin-left:-7.077478pt;}
._6{margin-left:-5.897859pt;}
._b{margin-left:-4.718299pt;}
._18{margin-left:-3.783127pt;}
._3{margin-left:-2.789520pt;}
._4{margin-left:-1.338970pt;}
._a{width:1.004791pt;}
._9{width:2.657600pt;}
._1{width:4.723587pt;}
._3b{width:5.929779pt;}
._7{width:7.387940pt;}
._2b{width:8.610997pt;}
._0{width:9.670336pt;}
._39{width:10.950963pt;}
._c{width:12.412102pt;}
._31{width:13.325986pt;}
._17{width:14.611821pt;}
._1e{width:15.610742pt;}
._10{width:16.545878pt;}
._d{width:18.065515pt;}
._12{width:19.446995pt;}
._f{width:20.615940pt;}
._16{width:21.944287pt;}
._2a{width:23.094158pt;}
._1d{width:24.388445pt;}
._e{width:25.780548pt;}
._1a{width:26.949493pt;}
._13{width:27.895280pt;}
._1c{width:29.446785pt;}
._1b{width:30.541358pt;}
._19{width:31.986588pt;}
._29{width:33.072407pt;}
._27{width:34.218942pt;}
._24{width:35.557180pt;}
._1f{width:36.528800pt;}
._11{width:38.320141pt;}
._23{width:39.758267pt;}
._28{width:46.459884pt;}
._34{width:48.453425pt;}
._20{width:49.998072pt;}
._36{width:51.212732pt;}
._2e{width:52.350124pt;}
._30{width:55.411965pt;}
._2c{width:60.196722pt;}
._33{width:61.603492pt;}
._37{width:63.180239pt;}
._35{width:64.362799pt;}
._2f{width:67.041341pt;}
._25{width:69.259641pt;}
._26{width:70.300409pt;}
._2d{width:74.421289pt;}
._3a{width:78.904320pt;}
._21{width:85.404244pt;}
._22{width:97.834382pt;}
._32{width:490.620493pt;}
._14{width:1649.687733pt;}
._38{width:2217.751733pt;}
._15{width:2239.005067pt;}
.fs4{font-size:31.880533pt;}
.fsa{font-size:36.516267pt;}
.fs0{font-size:37.193600pt;}
.fs13{font-size:37.841920pt;}
.fs11{font-size:39.272448pt;}
.fs3{font-size:40.381867pt;}
.fsd{font-size:41.630720pt;}
.fs7{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs9{font-size:43.819520pt;}
.fs10{font-size:44.999680pt;}
.fs12{font-size:47.302400pt;}
.fsb{font-size:47.820800pt;}
.fsf{font-size:49.090560pt;}
.fse{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fsc{font-size:74.387733pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y196{bottom:3.500318pt;}
.y110{bottom:3.816149pt;}
.y93{bottom:4.016789pt;}
.y161{bottom:4.499968pt;}
.y109{bottom:19.427669pt;}
.y8c{bottom:20.449109pt;}
.y194{bottom:21.238718pt;}
.y158{bottom:22.908928pt;}
.y104{bottom:29.835349pt;}
.y85{bottom:31.403989pt;}
.y190{bottom:33.064318pt;}
.y151{bottom:35.181568pt;}
.y3d{bottom:40.818667pt;}
.y8e{bottom:43.636939pt;}
.y19a{bottom:45.481198pt;}
.y10f{bottom:53.269195pt;}
.y105{bottom:55.073973pt;}
.y86{bottom:61.895072pt;}
.y8d{bottom:68.011547pt;}
.y191{bottom:68.541118pt;}
.y15e{bottom:74.147200pt;}
.y199{bottom:75.636478pt;}
.y106{bottom:80.312597pt;}
.y162{bottom:82.635776pt;}
.y152{bottom:83.863040pt;}
.y13{bottom:89.120000pt;}
.y195{bottom:89.333283pt;}
.y202{bottom:90.202667pt;}
.yf9{bottom:90.804000pt;}
.y87{bottom:92.386155pt;}
.y198{bottom:93.276332pt;}
.y1a3{bottom:95.141333pt;}
.y92{bottom:95.266375pt;}
.y130{bottom:96.945333pt;}
.y3c{bottom:98.069333pt;}
.y83{bottom:98.970667pt;}
.y159{bottom:103.396992pt;}
.y70{bottom:103.473333pt;}
.y186{bottom:103.734667pt;}
.y192{bottom:103.919372pt;}
.y201{bottom:104.894667pt;}
.y12{bottom:105.020000pt;}
.y107{bottom:105.551221pt;}
.y200{bottom:107.225333pt;}
.yf8{bottom:109.374667pt;}
.y1a2{bottom:113.712000pt;}
.y12f{bottom:115.516000pt;}
.y3b{bottom:116.640000pt;}
.y82{bottom:117.541333pt;}
.y8f{bottom:119.773355pt;}
.y11{bottom:120.920000pt;}
.y6f{bottom:122.042667pt;}
.y185{bottom:122.305333pt;}
.y88{bottom:122.877237pt;}
.y1ff{bottom:124.248000pt;}
.y197{bottom:125.205452pt;}
.y102{bottom:125.586005pt;}
.yf7{bottom:127.945333pt;}
.y95{bottom:128.749053pt;}
.y108{bottom:130.789845pt;}
.y111{bottom:131.483691pt;}
.y153{bottom:132.544512pt;}
.y12e{bottom:134.085333pt;}
.y3a{bottom:135.209333pt;}
.y1ca{bottom:135.310667pt;}
.y81{bottom:136.112000pt;}
.y10{bottom:136.821333pt;}
.y193{bottom:139.396172pt;}
.y6e{bottom:140.613333pt;}
.y184{bottom:140.876000pt;}
.y100{bottom:141.197525pt;}
.y1fe{bottom:141.270667pt;}
.y14f{bottom:142.353333pt;}
.y1a1{bottom:145.381333pt;}
.y163{bottom:145.942144pt;}
.yf6{bottom:146.514667pt;}
.y91{bottom:148.803787pt;}
.y94{bottom:150.447019pt;}
.y15a{bottom:150.851200pt;}
.yfb{bottom:151.605205pt;}
.yb7{bottom:152.356000pt;}
.y1c9{bottom:152.642667pt;}
.y12d{bottom:152.656000pt;}
.yf{bottom:152.721333pt;}
.y89{bottom:153.368320pt;}
.y39{bottom:153.780000pt;}
.y80{bottom:154.681333pt;}
.y160{bottom:154.859240pt;}
.y1fd{bottom:158.293333pt;}
.y6d{bottom:159.184000pt;}
.y183{bottom:159.445333pt;}
.y188{bottom:159.598238pt;}
.y10b{bottom:159.844619pt;}
.y14e{bottom:160.924000pt;}
.y1a0{bottom:162.477333pt;}
.ye{bottom:168.621333pt;}
.yf5{bottom:169.070667pt;}
.y1c8{bottom:169.974667pt;}
.yb6{bottom:170.926667pt;}
.y10a{bottom:171.206336pt;}
.y12c{bottom:171.226667pt;}
.y38{bottom:172.350667pt;}
.y7f{bottom:173.252000pt;}
.y101{bottom:175.038964pt;}
.y1fc{bottom:175.316000pt;}
.yfc{bottom:176.843829pt;}
.y6c{bottom:177.753333pt;}
.y182{bottom:178.016000pt;}
.y14d{bottom:179.493333pt;}
.y19f{bottom:179.573333pt;}
.y154{bottom:181.225984pt;}
.y189{bottom:183.249438pt;}
.y8a{bottom:183.859403pt;}
.yd{bottom:184.521333pt;}
.y10c{bottom:185.083243pt;}
.yb5{bottom:189.497333pt;}
.y12b{bottom:189.796000pt;}
.yf4{bottom:190.788000pt;}
.y37{bottom:190.920000pt;}
.y7e{bottom:191.822667pt;}
.y1fb{bottom:192.338667pt;}
.y90{bottom:192.988469pt;}
.y1c7{bottom:195.277333pt;}
.y168{bottom:195.781335pt;}
.y6b{bottom:196.324000pt;}
.y181{bottom:196.586667pt;}
.y19e{bottom:196.669333pt;}
.y10e{bottom:197.659189pt;}
.y14c{bottom:198.064000pt;}
.y15b{bottom:199.532672pt;}
.yc{bottom:200.422667pt;}
.yfd{bottom:202.082453pt;}
.y18a{bottom:206.900638pt;}
.yb4{bottom:208.068000pt;}
.y12a{bottom:208.366667pt;}
.y164{bottom:209.248512pt;}
.y1fa{bottom:209.361333pt;}
.y36{bottom:209.490667pt;}
.y7d{bottom:210.392000pt;}
.y1c6{bottom:212.609333pt;}
.y10d{bottom:212.837056pt;}
.y19d{bottom:213.765333pt;}
.y8b{bottom:214.350485pt;}
.y6a{bottom:214.894667pt;}
.y180{bottom:215.156000pt;}
.y14b{bottom:216.634667pt;}
.y18e{bottom:218.232520pt;}
.yb3{bottom:219.289333pt;}
.yb1{bottom:221.212000pt;}
.yb2{bottom:221.773333pt;}
.yb{bottom:224.293333pt;}
.yf3{bottom:225.298667pt;}
.y1f9{bottom:226.384000pt;}
.yb0{bottom:226.637333pt;}
.y129{bottom:226.937333pt;}
.yfe{bottom:227.321077pt;}
.y35{bottom:228.061333pt;}
.y7c{bottom:228.962667pt;}
.y155{bottom:230.009728pt;}
.y18b{bottom:230.453292pt;}
.y19c{bottom:230.860000pt;}
.y69{bottom:233.464000pt;}
.y17f{bottom:233.726667pt;}
.y14a{bottom:235.205333pt;}
.y1c5{bottom:237.912000pt;}
.ya{bottom:240.193333pt;}
.yaf{bottom:240.670667pt;}
.y1f8{bottom:243.406667pt;}
.yf2{bottom:243.868000pt;}
.yad{bottom:245.208000pt;}
.y128{bottom:245.506667pt;}
.y34{bottom:246.630667pt;}
.y7b{bottom:247.533333pt;}
.y19b{bottom:247.956000pt;}
.yae{bottom:248.476000pt;}
.y68{bottom:252.034667pt;}
.y17e{bottom:252.297333pt;}
.yff{bottom:252.559701pt;}
.y103{bottom:253.253547pt;}
.y149{bottom:253.774667pt;}
.y18c{bottom:254.104492pt;}
.y1c4{bottom:255.244000pt;}
.y9{bottom:256.093333pt;}
.y15c{bottom:256.804992pt;}
.yac{bottom:259.782667pt;}
.y1f7{bottom:260.430667pt;}
.yf1{bottom:262.438667pt;}
.y127{bottom:264.077333pt;}
.y33{bottom:265.201333pt;}
.yab{bottom:265.208000pt;}
.yf0{bottom:265.706667pt;}
.y7a{bottom:266.102667pt;}
.y187{bottom:267.893392pt;}
.y67{bottom:270.605333pt;}
.y17d{bottom:270.866667pt;}
.y8{bottom:271.994667pt;}
.y148{bottom:272.345333pt;}
.y165{bottom:272.554880pt;}
.yef{bottom:277.013333pt;}
.y1f6{bottom:277.453333pt;}
.y18d{bottom:277.755692pt;}
.y156{bottom:278.691200pt;}
.yee{bottom:279.497333pt;}
.y1c3{bottom:280.546667pt;}
.y126{bottom:282.648000pt;}
.y32{bottom:283.772000pt;}
.yaa{bottom:283.778667pt;}
.yed{bottom:284.372000pt;}
.y78{bottom:284.673333pt;}
.y18f{bottom:287.216172pt;}
.y7{bottom:287.894667pt;}
.y66{bottom:289.176000pt;}
.y17c{bottom:289.437333pt;}
.y79{bottom:289.496000pt;}
.y147{bottom:290.916000pt;}
.y1f5{bottom:294.476000pt;}
.y1c2{bottom:297.878667pt;}
.y125{bottom:301.217333pt;}
.y31{bottom:302.341333pt;}
.yec{bottom:302.942667pt;}
.y77{bottom:303.244000pt;}
.y6{bottom:303.794667pt;}
.y65{bottom:307.745333pt;}
.y15d{bottom:307.838720pt;}
.y17b{bottom:308.008000pt;}
.y146{bottom:309.485333pt;}
.y1f4{bottom:311.498667pt;}
.ya6{bottom:311.616000pt;}
.ya5{bottom:314.100000pt;}
.ya3{bottom:314.428000pt;}
.y1c1{bottom:315.210667pt;}
.y124{bottom:319.788000pt;}
.y30{bottom:320.912000pt;}
.yeb{bottom:321.512000pt;}
.y76{bottom:321.814667pt;}
.ya9{bottom:322.193333pt;}
.ya7{bottom:323.452000pt;}
.ya8{bottom:324.676000pt;}
.ya4{bottom:325.004000pt;}
.y5{bottom:325.009333pt;}
.ya2{bottom:326.114667pt;}
.y64{bottom:326.316000pt;}
.y17a{bottom:326.578667pt;}
.y157{bottom:327.372672pt;}
.y145{bottom:328.056000pt;}
.y1f3{bottom:328.521333pt;}
.ya0{bottom:328.877333pt;}
.y1c0{bottom:332.542667pt;}
.y166{bottom:335.861248pt;}
.y167{bottom:337.088512pt;}
.y15f{bottom:338.315776pt;}
.y123{bottom:338.358667pt;}
.y2f{bottom:339.482667pt;}
.yea{bottom:340.082667pt;}
.y75{bottom:340.384000pt;}
.y4{bottom:340.909333pt;}
.ya1{bottom:343.222667pt;}
.y63{bottom:344.886667pt;}
.y179{bottom:345.148000pt;}
.y1f2{bottom:345.544000pt;}
.y144{bottom:346.626667pt;}
.y1bf{bottom:349.874667pt;}
.y3{bottom:356.809333pt;}
.y122{bottom:356.929333pt;}
.y2e{bottom:358.053333pt;}
.ye9{bottom:358.653333pt;}
.y74{bottom:358.954667pt;}
.y1f1{bottom:362.566667pt;}
.y62{bottom:363.456000pt;}
.y178{bottom:363.718667pt;}
.y143{bottom:365.196000pt;}
.y1be{bottom:367.208000pt;}
.y9f{bottom:372.148000pt;}
.y2{bottom:372.710667pt;}
.y121{bottom:375.498667pt;}
.ye8{bottom:377.222667pt;}
.y73{bottom:377.525333pt;}
.y1f0{bottom:379.589333pt;}
.y2d{bottom:380.608000pt;}
.y61{bottom:382.026667pt;}
.y177{bottom:382.289333pt;}
.y142{bottom:383.766667pt;}
.y1bd{bottom:384.540000pt;}
.y9e{bottom:390.717333pt;}
.y1{bottom:393.924000pt;}
.y120{bottom:394.069333pt;}
.ye7{bottom:395.793333pt;}
.y1ef{bottom:396.612000pt;}
.y224{bottom:399.049333pt;}
.y72{bottom:400.080000pt;}
.y60{bottom:400.597333pt;}
.y176{bottom:400.858667pt;}
.y141{bottom:402.337333pt;}
.y9d{bottom:409.288000pt;}
.y11f{bottom:412.640000pt;}
.y1ee{bottom:413.634667pt;}
.ye6{bottom:414.364000pt;}
.y223{bottom:416.072000pt;}
.y1bc{bottom:417.812000pt;}
.y5f{bottom:419.166667pt;}
.y175{bottom:419.429333pt;}
.y140{bottom:420.906667pt;}
.y71{bottom:421.797333pt;}
.y9c{bottom:427.858667pt;}
.y1ed{bottom:430.657333pt;}
.y11e{bottom:431.209333pt;}
.ye5{bottom:432.933333pt;}
.y1bb{bottom:436.382667pt;}
.y5e{bottom:437.737333pt;}
.y174{bottom:438.000000pt;}
.y13f{bottom:439.477333pt;}
.y9b{bottom:446.428000pt;}
.y1ec{bottom:447.680000pt;}
.y11d{bottom:449.780000pt;}
.y2c{bottom:451.018667pt;}
.ye4{bottom:451.504000pt;}
.y222{bottom:451.665333pt;}
.y1ba{bottom:454.953333pt;}
.y5d{bottom:456.308000pt;}
.y173{bottom:456.569333pt;}
.y13e{bottom:458.048000pt;}
.y1eb{bottom:464.702667pt;}
.y9a{bottom:464.998667pt;}
.y11c{bottom:468.350667pt;}
.y221{bottom:468.688000pt;}
.ye3{bottom:470.074667pt;}
.y1b9{bottom:473.522667pt;}
.y5c{bottom:474.877333pt;}
.y172{bottom:475.140000pt;}
.y13d{bottom:476.617333pt;}
.y1ea{bottom:481.725333pt;}
.y2b{bottom:485.529333pt;}
.y220{bottom:485.710667pt;}
.y11b{bottom:486.920000pt;}
.y99{bottom:487.554667pt;}
.ye1{bottom:488.645333pt;}
.ye2{bottom:491.773333pt;}
.y1b8{bottom:492.093333pt;}
.y5b{bottom:493.448000pt;}
.y171{bottom:493.710667pt;}
.y13c{bottom:495.188000pt;}
.y1e9{bottom:498.748000pt;}
.ye0{bottom:502.633333pt;}
.y21f{bottom:502.733333pt;}
.y2a{bottom:504.098667pt;}
.y11a{bottom:505.490667pt;}
.yde{bottom:507.214667pt;}
.ydf{bottom:510.342667pt;}
.y1b7{bottom:510.664000pt;}
.y5a{bottom:512.018667pt;}
.y170{bottom:512.280000pt;}
.y13b{bottom:513.758667pt;}
.y1e8{bottom:515.770667pt;}
.y98{bottom:516.128000pt;}
.y21e{bottom:519.756000pt;}
.y29{bottom:522.669333pt;}
.y119{bottom:524.061333pt;}
.ydd{bottom:525.785333pt;}
.y1b6{bottom:529.233333pt;}
.y59{bottom:530.589333pt;}
.y13a{bottom:532.329333pt;}
.y1e7{bottom:532.793333pt;}
.y97{bottom:533.224000pt;}
.y21d{bottom:536.778667pt;}
.y28{bottom:541.240000pt;}
.y118{bottom:542.630667pt;}
.y16f{bottom:543.949333pt;}
.ydc{bottom:544.356000pt;}
.y1b5{bottom:547.804000pt;}
.y58{bottom:549.158667pt;}
.y1e6{bottom:549.816000pt;}
.y96{bottom:550.320000pt;}
.y139{bottom:550.898667pt;}
.y21c{bottom:553.801333pt;}
.ydb{bottom:558.050667pt;}
.yda{bottom:558.342667pt;}
.y27{bottom:559.809333pt;}
.y16e{bottom:561.045333pt;}
.y117{bottom:561.201333pt;}
.yd9{bottom:562.925333pt;}
.y1b4{bottom:566.374667pt;}
.y1e5{bottom:566.838667pt;}
.y57{bottom:567.729333pt;}
.y138{bottom:569.469333pt;}
.y84{bottom:570.257333pt;}
.y21b{bottom:570.824000pt;}
.y16d{bottom:578.141333pt;}
.y26{bottom:578.380000pt;}
.yd8{bottom:581.496000pt;}
.y1e4{bottom:583.861333pt;}
.y1b3{bottom:584.944000pt;}
.y56{bottom:586.300000pt;}
.y21a{bottom:587.846667pt;}
.y137{bottom:588.040000pt;}
.y116{bottom:592.870667pt;}
.y16c{bottom:595.237333pt;}
.y25{bottom:596.950667pt;}
.yd7{bottom:600.066667pt;}
.y1e3{bottom:600.885333pt;}
.y1b2{bottom:603.514667pt;}
.y55{bottom:604.869333pt;}
.y136{bottom:606.609333pt;}
.y115{bottom:609.966667pt;}
.y16b{bottom:612.333333pt;}
.yd6{bottom:613.212000pt;}
.y24{bottom:615.520000pt;}
.yd5{bottom:615.694667pt;}
.y1e2{bottom:617.908000pt;}
.yd4{bottom:618.636000pt;}
.y219{bottom:621.892000pt;}
.y1b1{bottom:622.085333pt;}
.y54{bottom:623.440000pt;}
.y135{bottom:625.180000pt;}
.y114{bottom:627.062667pt;}
.y16a{bottom:629.429333pt;}
.yd2{bottom:633.236000pt;}
.y23{bottom:634.090667pt;}
.y1e1{bottom:634.930667pt;}
.yd1{bottom:638.661333pt;}
.y218{bottom:638.914667pt;}
.y1b0{bottom:640.654667pt;}
.yd3{bottom:641.929333pt;}
.y53{bottom:642.010667pt;}
.y134{bottom:643.750667pt;}
.y113{bottom:644.158667pt;}
.y169{bottom:646.525333pt;}
.y1e0{bottom:651.953333pt;}
.y22{bottom:652.661333pt;}
.yd0{bottom:654.694667pt;}
.y217{bottom:655.937333pt;}
.y1af{bottom:659.225333pt;}
.ycf{bottom:660.120000pt;}
.y52{bottom:660.580000pt;}
.y112{bottom:661.254667pt;}
.y133{bottom:662.320000pt;}
.y150{bottom:666.462667pt;}
.y1df{bottom:668.976000pt;}
.y21{bottom:671.232000pt;}
.y216{bottom:672.961333pt;}
.y1ae{bottom:677.796000pt;}
.yce{bottom:678.690667pt;}
.y51{bottom:679.150667pt;}
.y132{bottom:680.890667pt;}
.yfa{bottom:681.190667pt;}
.y1de{bottom:685.998667pt;}
.y20{bottom:689.801333pt;}
.y215{bottom:689.984000pt;}
.y1ad{bottom:696.365333pt;}
.ycd{bottom:697.260000pt;}
.y50{bottom:697.721333pt;}
.y1dd{bottom:703.021333pt;}
.y131{bottom:703.446667pt;}
.y214{bottom:707.006667pt;}
.y1f{bottom:708.372000pt;}
.y1ac{bottom:714.936000pt;}
.ycb{bottom:715.830667pt;}
.y4f{bottom:716.290667pt;}
.ycc{bottom:718.766667pt;}
.y1dc{bottom:720.044000pt;}
.y213{bottom:724.029333pt;}
.y1e{bottom:726.942667pt;}
.y1ab{bottom:733.506667pt;}
.yca{bottom:734.401333pt;}
.y4e{bottom:734.861333pt;}
.y1db{bottom:737.066667pt;}
.y212{bottom:741.052000pt;}
.yc9{bottom:745.673333pt;}
.yc8{bottom:747.546667pt;}
.y1aa{bottom:752.077333pt;}
.yc7{bottom:752.972000pt;}
.y4d{bottom:753.432000pt;}
.y1d{bottom:753.482667pt;}
.y1da{bottom:754.089333pt;}
.y211{bottom:758.074667pt;}
.y1a9{bottom:770.646667pt;}
.y1d8{bottom:771.112000pt;}
.y4c{bottom:772.002667pt;}
.y1d9{bottom:773.777333pt;}
.y210{bottom:775.097333pt;}
.yc6{bottom:787.017333pt;}
.y1d7{bottom:788.134667pt;}
.y1a8{bottom:789.217333pt;}
.y4b{bottom:790.572000pt;}
.y20f{bottom:792.120000pt;}
.y1c{bottom:792.913333pt;}
.y1b{bottom:803.402667pt;}
.y1d6{bottom:805.157333pt;}
.y1a7{bottom:807.788000pt;}
.y4a{bottom:809.142667pt;}
.yc5{bottom:816.480000pt;}
.y1a{bottom:817.748000pt;}
.yc4{bottom:821.062667pt;}
.y1d5{bottom:822.180000pt;}
.y20e{bottom:826.165333pt;}
.y1a6{bottom:826.357333pt;}
.y49{bottom:827.713333pt;}
.y19{bottom:835.952000pt;}
.y1d4{bottom:839.202667pt;}
.yc1{bottom:839.632000pt;}
.yc3{bottom:842.588000pt;}
.yc2{bottom:842.761333pt;}
.y20d{bottom:843.188000pt;}
.y48{bottom:846.282667pt;}
.y1a5{bottom:848.913333pt;}
.y18{bottom:850.298667pt;}
.ybf{bottom:855.786667pt;}
.yc0{bottom:855.832000pt;}
.y1d3{bottom:856.225333pt;}
.y20c{bottom:860.210667pt;}
.ybe{bottom:860.369333pt;}
.y47{bottom:864.853333pt;}
.y1d2{bottom:873.248000pt;}
.ybd{bottom:874.357333pt;}
.y20b{bottom:877.233333pt;}
.ybc{bottom:878.940000pt;}
.y46{bottom:883.424000pt;}
.y17{bottom:890.010667pt;}
.y1d1{bottom:890.270667pt;}
.y20a{bottom:894.256000pt;}
.ybb{bottom:897.509333pt;}
.y45{bottom:901.993333pt;}
.y1d0{bottom:907.293333pt;}
.y209{bottom:911.278667pt;}
.yba{bottom:916.080000pt;}
.y44{bottom:920.564000pt;}
.y1cf{bottom:924.316000pt;}
.y16{bottom:924.521333pt;}
.y208{bottom:928.301333pt;}
.y43{bottom:939.134667pt;}
.y1ce{bottom:941.340000pt;}
.yb9{bottom:944.140000pt;}
.y207{bottom:945.324000pt;}
.y15{bottom:952.377333pt;}
.yb8{bottom:954.606667pt;}
.y42{bottom:957.704000pt;}
.y1cd{bottom:958.362667pt;}
.y206{bottom:962.346667pt;}
.y1cc{bottom:975.385333pt;}
.y41{bottom:976.274667pt;}
.y205{bottom:979.369333pt;}
.y14{bottom:980.232000pt;}
.y1cb{bottom:992.408000pt;}
.y40{bottom:994.845333pt;}
.y204{bottom:996.392000pt;}
.y1a4{bottom:1008.832000pt;}
.y203{bottom:1011.084000pt;}
.y3f{bottom:1013.414667pt;}
.y3e{bottom:1066.841333pt;}
.h12{height:27.058554pt;}
.h3b{height:27.559537pt;}
.h14{height:29.599908pt;}
.h18{height:30.043597pt;}
.h6{height:30.063343pt;}
.h3a{height:30.848364pt;}
.h11{height:32.470264pt;}
.h3f{height:33.344763pt;}
.h44{height:34.000589pt;}
.h41{height:34.483450pt;}
.h43{height:35.052646pt;}
.h2{height:35.073565pt;}
.h3e{height:36.376105pt;}
.h3c{height:37.372000pt;}
.hc{height:37.778179pt;}
.hd{height:38.080100pt;}
.h8{height:38.256384pt;}
.h3{height:38.947124pt;}
.h1f{height:39.531229pt;}
.h2d{height:39.979597pt;}
.h7{height:40.084290pt;}
.hf{height:41.285014pt;}
.he{height:41.524400pt;}
.h2a{height:44.959908pt;}
.h13{height:45.095014pt;}
.ha{height:45.907968pt;}
.h48{height:47.484348pt;}
.h5{height:48.365611pt;}
.h26{height:48.885242pt;}
.h35{height:48.890575pt;}
.h9{height:50.105236pt;}
.h47{height:50.538575pt;}
.h30{height:50.843733pt;}
.h1c{height:57.017733pt;}
.hb{height:57.365434pt;}
.h20{height:57.370767pt;}
.h15{height:57.799269pt;}
.h23{height:59.013434pt;}
.h32{height:59.018767pt;}
.h27{height:59.673733pt;}
.h25{height:59.855067pt;}
.h16{height:60.021434pt;}
.h29{height:61.929236pt;}
.h17{height:62.241935pt;}
.h37{height:62.617236pt;}
.h28{height:62.622570pt;}
.h1b{height:63.225733pt;}
.h1a{height:65.683124pt;}
.h24{height:67.215908pt;}
.h2e{height:68.141791pt;}
.h4{height:68.861952pt;}
.h34{height:70.347733pt;}
.h42{height:72.325370pt;}
.h2c{height:72.545067pt;}
.h1e{height:76.841236pt;}
.h33{height:78.171377pt;}
.h46{height:78.422667pt;}
.h45{height:78.662667pt;}
.h2f{height:79.066767pt;}
.h31{height:79.072100pt;}
.h38{height:79.539903pt;}
.h21{height:80.431908pt;}
.h36{height:80.942570pt;}
.h2b{height:80.947903pt;}
.h19{height:81.722767pt;}
.h22{height:91.971903pt;}
.h1d{height:104.545935pt;}
.h10{height:236.442827pt;}
.h39{height:274.068907pt;}
.h40{height:297.390130pt;}
.h3d{height:360.235734pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:261.926613pt;}
.w2{width:340.514187pt;}
.w5{width:497.660667pt;}
.w4{width:497.661453pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x103{left:9.066293pt;}
.x62{left:13.145856pt;}
.xce{left:16.825749pt;}
.xea{left:21.735122pt;}
.x5e{left:24.634239pt;}
.xcb{left:27.740283pt;}
.x102{left:32.252452pt;}
.x5d{left:33.770426pt;}
.xca{left:36.420115pt;}
.x5f{left:41.712714pt;}
.x104{left:42.635328pt;}
.x60{left:45.188880pt;}
.x1{left:47.621333pt;}
.x61{left:49.479541pt;}
.xd1{left:54.113171pt;}
.xcd{left:57.415701pt;}
.xeb{left:59.043640pt;}
.xcc{left:60.045375pt;}
.x11e{left:76.309333pt;}
.x11f{left:78.796000pt;}
.xf0{left:92.442198pt;}
.x63{left:104.755127pt;}
.x105{left:112.804398pt;}
.xd2{left:125.715234pt;}
.xef{left:144.653282pt;}
.xcf{left:152.326804pt;}
.xd0{left:171.498358pt;}
.xee{left:177.584866pt;}
.xed{left:180.448482pt;}
.xec{left:183.414370pt;}
.x106{left:188.977030pt;}
.xf3{left:198.141538pt;}
.x67{left:207.047232pt;}
.x65{left:208.675857pt;}
.xf1{left:215.417324pt;}
.x64{left:217.812227pt;}
.xc7{left:219.493333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.xe7{left:226.613333pt;}
.xdc{left:230.173333pt;}
.x66{left:235.887779pt;}
.xd3{left:237.417333pt;}
.x3{left:239.924000pt;}
.x107{left:241.337830pt;}
.x89{left:245.338667pt;}
.xf7{left:246.298667pt;}
.x8a{left:249.290667pt;}
.x5{left:250.204000pt;}
.x101{left:251.966667pt;}
.x68{left:254.289239pt;}
.x117{left:256.493333pt;}
.x4f{left:261.148000pt;}
.x118{left:263.134667pt;}
.x96{left:265.012000pt;}
.x119{left:266.389333pt;}
.xe3{left:267.432000pt;}
.xe1{left:269.184000pt;}
.x1c{left:270.694667pt;}
.x114{left:272.844000pt;}
.x50{left:274.432000pt;}
.xf2{left:275.459170pt;}
.x11a{left:279.673333pt;}
.x6d{left:280.970667pt;}
.x1d{left:283.977333pt;}
.x98{left:287.148000pt;}
.xe{left:289.125333pt;}
.x12{left:291.281333pt;}
.xf{left:295.768000pt;}
.x13{left:297.924000pt;}
.xd4{left:299.325333pt;}
.x99{left:300.432000pt;}
.x3b{left:302.166667pt;}
.x9a{left:303.742667pt;}
.xe4{left:305.276000pt;}
.xb6{left:307.064000pt;}
.xe2{left:308.114667pt;}
.xc8{left:312.317333pt;}
.xbb{left:313.433333pt;}
.x30{left:314.882667pt;}
.x3d{left:316.092000pt;}
.x9b{left:317.026667pt;}
.xbd{left:318.021333pt;}
.x3c{left:319.940000pt;}
.x6c{left:322.390667pt;}
.x22{left:323.718667pt;}
.x10d{left:324.657333pt;}
.x31{left:328.165333pt;}
.x3e{left:329.376000pt;}
.x6f{left:330.624000pt;}
.x3f{left:332.673333pt;}
.x6e{left:333.850667pt;}
.x115{left:335.725333pt;}
.x23{left:337.002667pt;}
.x108{left:337.979590pt;}
.xfa{left:339.454667pt;}
.x10f{left:341.826667pt;}
.x32{left:342.857333pt;}
.xc2{left:344.201333pt;}
.x40{left:345.957333pt;}
.x70{left:348.405333pt;}
.x34{left:349.646667pt;}
.xde{left:353.118667pt;}
.x33{left:356.141333pt;}
.xaa{left:357.030667pt;}
.x45{left:361.946667pt;}
.xbe{left:362.873333pt;}
.x71{left:364.372000pt;}
.xe0{left:365.581333pt;}
.x59{left:368.413333pt;}
.xab{left:372.885333pt;}
.xdd{left:374.200000pt;}
.x46{left:375.229333pt;}
.x8b{left:377.569333pt;}
.xac{left:378.538667pt;}
.x14{left:382.852000pt;}
.xc3{left:384.632000pt;}
.x111{left:386.002667pt;}
.xb1{left:387.030667pt;}
.xbf{left:388.210667pt;}
.x15{left:389.493333pt;}
.xb7{left:390.873333pt;}
.xf4{left:393.224355pt;}
.xad{left:398.186667pt;}
.x72{left:399.798667pt;}
.xdf{left:400.769333pt;}
.x73{left:401.722667pt;}
.xb2{left:403.701333pt;}
.x8c{left:404.786667pt;}
.x83{left:406.357333pt;}
.x84{left:408.888000pt;}
.x26{left:412.829333pt;}
.xb9{left:413.805333pt;}
.x85{left:415.017333pt;}
.x10{left:417.009333pt;}
.x74{left:419.553333pt;}
.xe6{left:421.954667pt;}
.x11{left:423.650667pt;}
.x1e{left:426.212000pt;}
.x75{left:429.508000pt;}
.x5b{left:430.910667pt;}
.x10c{left:433.305333pt;}
.x8d{left:434.764000pt;}
.xff{left:436.744000pt;}
.x95{left:437.966667pt;}
.x1f{left:439.496000pt;}
.x8e{left:440.996000pt;}
.x11b{left:442.412000pt;}
.x76{left:443.825333pt;}
.x9c{left:444.776000pt;}
.x20{left:446.269333pt;}
.x2a{left:448.280000pt;}
.xae{left:449.257333pt;}
.xc9{left:450.304000pt;}
.x8f{left:451.908000pt;}
.x4c{left:454.637333pt;}
.x11c{left:455.696000pt;}
.xbc{left:457.073333pt;}
.x21{left:459.553333pt;}
.x2b{left:461.105333pt;}
.x37{left:462.064000pt;}
.x77{left:465.885333pt;}
.x4d{left:467.770667pt;}
.x78{left:469.397333pt;}
.x109{left:472.062667pt;}
.x35{left:473.368000pt;}
.x16{left:474.421333pt;}
.x38{left:475.346667pt;}
.x39{left:478.704000pt;}
.x69{left:485.429333pt;}
.x17{left:487.705333pt;}
.x79{left:490.036000pt;}
.x18{left:491.092000pt;}
.x3a{left:491.988000pt;}
.xd5{left:492.949333pt;}
.xfb{left:497.396000pt;}
.x90{left:498.856000pt;}
.x6a{left:500.350667pt;}
.xa9{left:502.264000pt;}
.x112{left:503.384000pt;}
.x19{left:504.376000pt;}
.xa4{left:505.413333pt;}
.x91{left:508.794667pt;}
.x9d{left:510.405333pt;}
.x86{left:512.654667pt;}
.x92{left:513.672000pt;}
.x27{left:514.576000pt;}
.x9e{left:516.296000pt;}
.x93{left:517.938667pt;}
.x94{left:519.862667pt;}
.x9f{left:522.840000pt;}
.x7a{left:523.892000pt;}
.x87{left:526.437333pt;}
.x36{left:528.092000pt;}
.x28{left:530.505333pt;}
.x88{left:537.433333pt;}
.x51{left:539.457333pt;}
.xb8{left:540.524000pt;}
.x2c{left:542.880000pt;}
.xe9{left:544.309333pt;}
.x24{left:546.072000pt;}
.x110{left:549.038667pt;}
.x52{left:552.992000pt;}
.xd6{left:554.086667pt;}
.x2d{left:556.162667pt;}
.x116{left:558.632000pt;}
.xa5{left:560.910667pt;}
.x2e{left:562.718667pt;}
.x25{left:564.822667pt;}
.xba{left:565.880000pt;}
.x5a{left:567.728000pt;}
.x97{left:568.668000pt;}
.x7c{left:569.744000pt;}
.x7b{left:570.822667pt;}
.x6b{left:572.093333pt;}
.x113{left:573.065333pt;}
.x5c{left:574.297333pt;}
.x2f{left:576.002667pt;}
.xaf{left:580.993333pt;}
.x1a{left:583.150667pt;}
.xfd{left:584.434667pt;}
.xb0{left:586.646667pt;}
.xd7{left:588.304000pt;}
.x53{left:589.624000pt;}
.x7d{left:591.548000pt;}
.x7e{left:593.470667pt;}
.xa0{left:595.462667pt;}
.x1b{left:596.434667pt;}
.xd8{left:599.229333pt;}
.xa{left:600.530667pt;}
.x7f{left:605.284000pt;}
.xb{left:607.173333pt;}
.x54{left:608.612000pt;}
.xc{left:610.560000pt;}
.xfe{left:613.820000pt;}
.x100{left:615.392000pt;}
.xd{left:617.201333pt;}
.x55{left:618.116000pt;}
.x80{left:619.221333pt;}
.x56{left:622.793333pt;}
.xa1{left:625.477333pt;}
.x41{left:629.418667pt;}
.x81{left:631.100000pt;}
.xa2{left:632.021333pt;}
.xd9{left:633.446667pt;}
.x57{left:635.824000pt;}
.xc4{left:639.633333pt;}
.x42{left:642.701333pt;}
.x43{left:646.089333pt;}
.xc1{left:647.066667pt;}
.x58{left:648.692000pt;}
.xc0{left:651.112000pt;}
.xf5{left:654.454667pt;}
.xa3{left:656.138667pt;}
.xc5{left:657.526667pt;}
.x44{left:659.372000pt;}
.xb4{left:666.053333pt;}
.xa7{left:667.665333pt;}
.xe5{left:670.145333pt;}
.xa6{left:672.670667pt;}
.xb5{left:673.913333pt;}
.xf6{left:675.221333pt;}
.x10a{left:677.800000pt;}
.xb3{left:680.134667pt;}
.xf8{left:681.857333pt;}
.x4a{left:683.710667pt;}
.xa8{left:685.714667pt;}
.xc6{left:689.170667pt;}
.x10b{left:691.498667pt;}
.x11d{left:692.548000pt;}
.x49{left:696.934667pt;}
.x29{left:699.653333pt;}
.x4b{left:701.400000pt;}
.xf9{left:703.482667pt;}
.xfc{left:707.536000pt;}
.x10e{left:709.162667pt;}
.x47{left:710.172000pt;}
.xda{left:716.629333pt;}
.x6{left:719.404000pt;}
.xe8{left:721.846667pt;}
.x48{left:723.454667pt;}
.x7{left:726.045333pt;}
.xdb{left:727.556000pt;}
.x8{left:732.820000pt;}
.x4e{left:738.149333pt;}
.x9{left:739.461333pt;}
.x82{left:743.973333pt;}
}




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