
    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_7ab7f2cc3d9e887bd4f10138.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_560a6eb1148854be67632cd0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_485ec296893e1b968d04bacf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8615ca29b57c8ced641d60d2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6e5117e147614ead0b5e75c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_3147fc4503bee1b036a30492.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_63624de5d69e32e72ddff87f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5f2c853675a0110b8fdb446a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4b5389b5dc61119d0f56eb24.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_56bd5e8d28d40edaebd6c8dd.woff2')format("woff");}.ffc{font-family:ffc;line-height:3.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_37c6e7ee4d6ce6e5b2cd2a21.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.987000;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_d24f883bdd6124e2a1be2302.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.580000;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_ae0c567f186840c329d3d500.woff2')format("woff");}.fff{font-family:fff;line-height:0.966000;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_d056b3d0ed683bd9f1a103c4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.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);}
.md{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);}
.m14{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);}
.m12{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);}
.m6{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);}
.m17{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);}
.m19{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);}
.m1c{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);}
.m25{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);}
.m22{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);}
.m1e{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);}
.m1a{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);}
.m4{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);}
.mb{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);}
.m23{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);}
.me{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);}
.m28{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);}
.m3{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);}
.m9{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);}
.mf{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);}
.m11{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);}
.ma{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);}
.m29{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);}
.m27{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);}
.m18{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);}
.m13{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);}
.m15{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);}
.m10{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);}
.m7{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);}
.m1b{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);}
.m26{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);}
.m24{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);}
.m21{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);}
.m1d{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);}
.m16{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);}
.m1f{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);}
.m20{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);}
.m8{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);}
.m1{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);}
.v17{vertical-align:-88.920000px;}
.vc{vertical-align:-83.376000px;}
.vb{vertical-align:-73.752000px;}
.vd{vertical-align:-69.150000px;}
.v18{vertical-align:-60.006000px;}
.ve{vertical-align:-48.318000px;}
.v1c{vertical-align:-39.918000px;}
.v1b{vertical-align:-35.316000px;}
.v2a{vertical-align:-18.798000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v12{vertical-align:-10.464000px;}
.v1f{vertical-align:-4.602000px;}
.v4{vertical-align:-2.658000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:7.098000px;}
.v27{vertical-align:8.862000px;}
.va{vertical-align:11.130000px;}
.v21{vertical-align:14.454000px;}
.v15{vertical-align:18.306000px;}
.v5{vertical-align:20.112000px;}
.v1{vertical-align:21.702000px;}
.v20{vertical-align:24.306000px;}
.v7{vertical-align:26.244000px;}
.v9{vertical-align:28.710000px;}
.v25{vertical-align:33.456000px;}
.v6{vertical-align:35.868000px;}
.v2b{vertical-align:37.776000px;}
.v8{vertical-align:39.840000px;}
.v11{vertical-align:42.156000px;}
.v22{vertical-align:43.362000px;}
.v1d{vertical-align:49.002000px;}
.v16{vertical-align:60.210000px;}
.v24{vertical-align:62.664000px;}
.v14{vertical-align:66.756000px;}
.v29{vertical-align:71.958000px;}
.v23{vertical-align:74.424000px;}
.v19{vertical-align:84.690000px;}
.v1a{vertical-align:87.708000px;}
.vf{vertical-align:90.474000px;}
.v26{vertical-align:96.120000px;}
.v28{vertical-align:99.138000px;}
.v13{vertical-align:173.952000px;}
.v1e{vertical-align:177.168000px;}
.ls0{letter-spacing:0.000000px;}
.ls8a{letter-spacing:0.000608px;}
.ls5a{letter-spacing:0.004740px;}
.ls25{letter-spacing:0.144017px;}
.ls1c{letter-spacing:0.150017px;}
.ls32{letter-spacing:0.542815px;}
.ls2e{letter-spacing:0.548815px;}
.ls8e{letter-spacing:0.642088px;}
.ls8d{letter-spacing:0.648088px;}
.ls28{letter-spacing:0.670741px;}
.ls8f{letter-spacing:0.673133px;}
.ls7d{letter-spacing:0.741762px;}
.ls46{letter-spacing:0.742115px;}
.ls70{letter-spacing:0.742483px;}
.ls76{letter-spacing:0.747762px;}
.ls30{letter-spacing:0.748115px;}
.ls20{letter-spacing:0.748200px;}
.ls6c{letter-spacing:0.748483px;}
.ls16{letter-spacing:0.750017px;}
.ls36{letter-spacing:0.888571px;}
.lsd{letter-spacing:0.994115px;}
.ls35{letter-spacing:0.994200px;}
.ls10{letter-spacing:0.996017px;}
.ls14{letter-spacing:1.000115px;}
.ls5d{letter-spacing:1.014017px;}
.ls60{letter-spacing:1.020017px;}
.ls2f{letter-spacing:1.134571px;}
.ls49{letter-spacing:1.140571px;}
.ls48{letter-spacing:1.312115px;}
.ls4f{letter-spacing:1.312200px;}
.ls54{letter-spacing:1.318200px;}
.ls3c{letter-spacing:1.342200px;}
.ls1a{letter-spacing:1.342766px;}
.ls61{letter-spacing:1.348200px;}
.ls2d{letter-spacing:1.363258px;}
.ls31{letter-spacing:1.452571px;}
.ls40{letter-spacing:1.458571px;}
.ls81{letter-spacing:1.461483px;}
.ls85{letter-spacing:1.467483px;}
.ls3a{letter-spacing:1.485181px;}
.ls7f{letter-spacing:1.493108px;}
.ls77{letter-spacing:1.494390px;}
.ls13{letter-spacing:1.496400px;}
.ls7b{letter-spacing:1.499108px;}
.ls50{letter-spacing:1.912200px;}
.ls37{letter-spacing:2.154600px;}
.ls4d{letter-spacing:2.179178px;}
.ls55{letter-spacing:2.185178px;}
.ls1f{letter-spacing:2.434741px;}
.ls34{letter-spacing:2.490843px;}
.ls3b{letter-spacing:2.498012px;}
.ls24{letter-spacing:2.535634px;}
.ls23{letter-spacing:2.541634px;}
.ls4a{letter-spacing:2.901634px;}
.ls2b{letter-spacing:2.907634px;}
.ls7a{letter-spacing:2.914741px;}
.ls82{letter-spacing:3.284912px;}
.ls84{letter-spacing:3.290912px;}
.ls86{letter-spacing:3.313200px;}
.ls71{letter-spacing:3.319200px;}
.ls66{letter-spacing:3.380815px;}
.ls73{letter-spacing:3.684374px;}
.ls88{letter-spacing:3.690374px;}
.ls47{letter-spacing:3.733200px;}
.ls33{letter-spacing:3.739200px;}
.ls7e{letter-spacing:3.944725px;}
.ls79{letter-spacing:3.950725px;}
.ls3d{letter-spacing:4.302571px;}
.lsf{letter-spacing:4.408741px;}
.lse{letter-spacing:4.620571px;}
.ls6f{letter-spacing:4.627200px;}
.ls80{letter-spacing:4.633200px;}
.ls3e{letter-spacing:7.910012px;}
.ls42{letter-spacing:8.661181px;}
.ls64{letter-spacing:10.160400px;}
.ls41{letter-spacing:10.909200px;}
.ls87{letter-spacing:11.503200px;}
.ls72{letter-spacing:11.509200px;}
.ls21{letter-spacing:11.726100px;}
.ls90{letter-spacing:11.951700px;}
.ls4{letter-spacing:11.954850px;}
.ls91{letter-spacing:11.957700px;}
.ls69{letter-spacing:12.339483px;}
.ls52{letter-spacing:12.345483px;}
.ls43{letter-spacing:12.806100px;}
.ls4c{letter-spacing:12.858141px;}
.ls7c{letter-spacing:13.042741px;}
.ls83{letter-spacing:13.048741px;}
.ls6e{letter-spacing:13.083483px;}
.ls18{letter-spacing:13.089483px;}
.ls67{letter-spacing:13.117331px;}
.lsa{letter-spacing:13.448400px;}
.ls95{letter-spacing:13.451510px;}
.ls8c{letter-spacing:13.703039px;}
.ls8b{letter-spacing:13.748388px;}
.ls7{letter-spacing:13.808164px;}
.ls93{letter-spacing:14.094088px;}
.ls39{letter-spacing:14.103483px;}
.ls12{letter-spacing:14.577483px;}
.ls68{letter-spacing:14.583483px;}
.ls8{letter-spacing:14.704798px;}
.ls9{letter-spacing:14.735701px;}
.ls5{letter-spacing:14.824349px;}
.ls5e{letter-spacing:14.839526px;}
.ls92{letter-spacing:14.943900px;}
.ls6b{letter-spacing:15.013331px;}
.ls74{letter-spacing:15.108827px;}
.ls5b{letter-spacing:15.310955px;}
.ls6d{letter-spacing:15.361200px;}
.ls75{letter-spacing:15.690374px;}
.ls38{letter-spacing:15.930571px;}
.ls89{letter-spacing:15.960085px;}
.ls78{letter-spacing:16.071483px;}
.ls65{letter-spacing:16.077483px;}
.ls19{letter-spacing:16.080571px;}
.ls11{letter-spacing:16.248571px;}
.ls94{letter-spacing:16.338453px;}
.ls56{letter-spacing:16.682383px;}
.ls57{letter-spacing:16.688266px;}
.ls45{letter-spacing:17.319483px;}
.ls62{letter-spacing:17.325483px;}
.ls5c{letter-spacing:17.486912px;}
.ls15{letter-spacing:17.568571px;}
.ls58{letter-spacing:17.729442px;}
.ls59{letter-spacing:17.735324px;}
.ls1e{letter-spacing:18.069483px;}
.ls63{letter-spacing:18.097331px;}
.ls44{letter-spacing:18.098383px;}
.ls6{letter-spacing:18.231558px;}
.ls1b{letter-spacing:18.816571px;}
.ls1d{letter-spacing:20.341200px;}
.ls2c{letter-spacing:20.904571px;}
.ls5f{letter-spacing:21.222571px;}
.ls3f{letter-spacing:22.531200px;}
.ls17{letter-spacing:25.194571px;}
.ls27{letter-spacing:27.459483px;}
.ls2a{letter-spacing:27.465483px;}
.ls29{letter-spacing:29.731200px;}
.ls26{letter-spacing:29.737200px;}
.ls53{letter-spacing:37.233483px;}
.ls4e{letter-spacing:40.689483px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls1{letter-spacing:72.361200px;}
.ls51{letter-spacing:84.714571px;}
.lsb{letter-spacing:112.080600px;}
.lsc{letter-spacing:115.119483px;}
.ls6a{letter-spacing:574.000741px;}
.ls22{letter-spacing:849.898741px;}
.ls4b{letter-spacing:870.270571px;}
.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;}
}
.wsb9{word-spacing:-16.438290px;}
.ws5c{word-spacing:-14.943900px;}
.ws75{word-spacing:-13.449600px;}
.ws29{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.wsa8{word-spacing:-5.798233px;}
.wsa6{word-spacing:-5.678682px;}
.wsa7{word-spacing:-5.379804px;}
.ws7d{word-spacing:-5.021150px;}
.ws107{word-spacing:-3.706087px;}
.wsac{word-spacing:-3.526760px;}
.wsad{word-spacing:-3.466985px;}
.wsd6{word-spacing:-2.988780px;}
.ws43{word-spacing:-2.929004px;}
.ws93{word-spacing:-2.573400px;}
.ws7f{word-spacing:-2.211697px;}
.ws56{word-spacing:-2.151922px;}
.ws84{word-spacing:-2.092146px;}
.ws80{word-spacing:-1.972595px;}
.ws163{word-spacing:-1.882944px;}
.ws91{word-spacing:-1.827032px;}
.ws47{word-spacing:-1.793268px;}
.ws48{word-spacing:-1.733492px;}
.ws53{word-spacing:-1.673717px;}
.ws8b{word-spacing:-1.613941px;}
.ws10b{word-spacing:-1.554166px;}
.ws3b{word-spacing:-1.374839px;}
.wsd7{word-spacing:-1.255288px;}
.wsd8{word-spacing:-1.243028px;}
.ws3c{word-spacing:-1.195512px;}
.ws19{word-spacing:-1.183565px;}
.ws4c{word-spacing:-1.135736px;}
.wsed{word-spacing:-1.114457px;}
.ws81{word-spacing:-1.075961px;}
.ws31{word-spacing:-1.016185px;}
.ws78{word-spacing:-0.956410px;}
.ws4e{word-spacing:-0.896634px;}
.wsa3{word-spacing:-0.836858px;}
.ws68{word-spacing:-0.717307px;}
.ws70{word-spacing:-0.657532px;}
.ws71{word-spacing:-0.597756px;}
.ws157{word-spacing:-0.537984px;}
.ws85{word-spacing:-0.418429px;}
.wse6{word-spacing:-0.368995px;}
.ws5e{word-spacing:-0.358654px;}
.ws16{word-spacing:-0.322790px;}
.ws4b{word-spacing:-0.298878px;}
.wsc1{word-spacing:-0.281928px;}
.wsc2{word-spacing:-0.278550px;}
.ws146{word-spacing:-0.268992px;}
.ws141{word-spacing:-0.242392px;}
.ws3a{word-spacing:-0.239102px;}
.ws136{word-spacing:-0.225540px;}
.ws127{word-spacing:-0.224710px;}
.ws128{word-spacing:-0.218816px;}
.ws15{word-spacing:-0.215194px;}
.ws13c{word-spacing:-0.208714px;}
.ws13e{word-spacing:-0.206818px;}
.ws13f{word-spacing:-0.203663px;}
.ws13d{word-spacing:-0.199327px;}
.ws137{word-spacing:-0.198057px;}
.wsc4{word-spacing:-0.197088px;}
.wsc3{word-spacing:-0.194769px;}
.wsc5{word-spacing:-0.192244px;}
.ws26{word-spacing:-0.179327px;}
.ws96{word-spacing:-0.167659px;}
.ws97{word-spacing:-0.165469px;}
.ws144{word-spacing:-0.161395px;}
.ws125{word-spacing:-0.156508px;}
.ws124{word-spacing:-0.150017px;}
.ws27{word-spacing:-0.119551px;}
.wsc9{word-spacing:-0.110591px;}
.ws135{word-spacing:-0.108860px;}
.ws13{word-spacing:-0.107597px;}
.ws103{word-spacing:-0.064488px;}
.ws102{word-spacing:-0.064469px;}
.ws32{word-spacing:-0.059776px;}
.ws10e{word-spacing:-0.053798px;}
.ws134{word-spacing:-0.016715px;}
.ws132{word-spacing:-0.016683px;}
.ws133{word-spacing:-0.013600px;}
.ws168{word-spacing:-0.011760px;}
.ws156{word-spacing:-0.009696px;}
.ws12a{word-spacing:-0.009324px;}
.ws166{word-spacing:-0.009302px;}
.ws15e{word-spacing:-0.008429px;}
.ws160{word-spacing:-0.007939px;}
.wsc7{word-spacing:-0.005778px;}
.ws172{word-spacing:-0.005683px;}
.ws142{word-spacing:-0.005608px;}
.ws169{word-spacing:-0.005510px;}
.ws15b{word-spacing:-0.005414px;}
.ws15d{word-spacing:-0.005194px;}
.ws14d{word-spacing:-0.005030px;}
.ws170{word-spacing:-0.004896px;}
.wsdc{word-spacing:-0.004291px;}
.ws159{word-spacing:-0.003955px;}
.ws164{word-spacing:-0.003898px;}
.ws165{word-spacing:-0.003830px;}
.ws15c{word-spacing:-0.003754px;}
.ws151{word-spacing:-0.003302px;}
.wsda{word-spacing:-0.003149px;}
.ws150{word-spacing:-0.003110px;}
.wsce{word-spacing:-0.002822px;}
.wsbe{word-spacing:-0.001991px;}
.wsc8{word-spacing:-0.001428px;}
.ws28{word-spacing:-0.000448px;}
.wsc{word-spacing:-0.000392px;}
.wsbd{word-spacing:-0.000350px;}
.ws0{word-spacing:0.000000px;}
.ws11c{word-spacing:0.000134px;}
.ws3{word-spacing:0.000631px;}
.wscf{word-spacing:0.001709px;}
.wsdd{word-spacing:0.002179px;}
.wsdb{word-spacing:0.003178px;}
.wscd{word-spacing:0.003608px;}
.wsd9{word-spacing:0.005951px;}
.wsb8{word-spacing:0.008033px;}
.wse2{word-spacing:0.017240px;}
.wsb3{word-spacing:0.025412px;}
.wsb1{word-spacing:0.025443px;}
.wsb2{word-spacing:0.028527px;}
.ws95{word-spacing:0.031879px;}
.wsa2{word-spacing:0.033119px;}
.wsa1{word-spacing:0.035601px;}
.wsa0{word-spacing:0.037854px;}
.wsb4{word-spacing:0.047650px;}
.wsff{word-spacing:0.048808px;}
.wsb7{word-spacing:0.050033px;}
.wsb6{word-spacing:0.051608px;}
.wsb5{word-spacing:0.052009px;}
.ws1e{word-spacing:0.053798px;}
.ws2a{word-spacing:0.059776px;}
.ws94{word-spacing:0.074033px;}
.wscc{word-spacing:0.091610px;}
.wsca{word-spacing:0.094725px;}
.ws14a{word-spacing:0.095641px;}
.wscb{word-spacing:0.097628px;}
.ws12{word-spacing:0.107597px;}
.ws44{word-spacing:0.119551px;}
.wsb0{word-spacing:0.131895px;}
.ws14b{word-spacing:0.143462px;}
.wsbc{word-spacing:0.154454px;}
.wsaa{word-spacing:0.160003px;}
.ws1d{word-spacing:0.161395px;}
.ws140{word-spacing:0.162944px;}
.wsab{word-spacing:0.166040px;}
.ws3f{word-spacing:0.179327px;}
.ws149{word-spacing:0.191282px;}
.ws14{word-spacing:0.215194px;}
.wsc6{word-spacing:0.231293px;}
.ws2e{word-spacing:0.239102px;}
.ws20{word-spacing:0.268992px;}
.ws2b{word-spacing:0.298878px;}
.ws1f{word-spacing:0.322790px;}
.ws46{word-spacing:0.358654px;}
.wsdf{word-spacing:0.362974px;}
.ws162{word-spacing:0.376589px;}
.ws57{word-spacing:0.418429px;}
.ws15a{word-spacing:0.430387px;}
.wsee{word-spacing:0.430995px;}
.wsf1{word-spacing:0.434079px;}
.wsf0{word-spacing:0.438362px;}
.wsef{word-spacing:0.439414px;}
.wse0{word-spacing:0.478205px;}
.wse1{word-spacing:0.498268px;}
.ws4a{word-spacing:0.597756px;}
.wsec{word-spacing:0.628197px;}
.ws65{word-spacing:0.657532px;}
.ws11b{word-spacing:0.672134px;}
.ws11d{word-spacing:0.675178px;}
.ws4d{word-spacing:0.717307px;}
.ws8c{word-spacing:0.741192px;}
.ws8d{word-spacing:0.749446px;}
.ws49{word-spacing:0.777083px;}
.ws40{word-spacing:0.836858px;}
.ws153{word-spacing:0.860774px;}
.ws121{word-spacing:0.873656px;}
.ws120{word-spacing:0.874708px;}
.ws122{word-spacing:0.875255px;}
.ws52{word-spacing:0.896634px;}
.ws37{word-spacing:0.956410px;}
.ws12b{word-spacing:0.998268px;}
.ws64{word-spacing:1.016185px;}
.ws23{word-spacing:1.022170px;}
.ws12d{word-spacing:1.075961px;}
.wse5{word-spacing:1.135736px;}
.ws18{word-spacing:1.183565px;}
.ws123{word-spacing:1.195512px;}
.ws100{word-spacing:1.236877px;}
.ws101{word-spacing:1.245327px;}
.ws50{word-spacing:1.255288px;}
.ws60{word-spacing:1.315063px;}
.ws21{word-spacing:1.344960px;}
.ws98{word-spacing:1.351179px;}
.ws9a{word-spacing:1.351726px;}
.ws99{word-spacing:1.361892px;}
.ws45{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.ws108{word-spacing:1.434614px;}
.wsd3{word-spacing:1.494390px;}
.ws1c{word-spacing:1.506355px;}
.ws63{word-spacing:1.554166px;}
.ws6c{word-spacing:1.613941px;}
.wse3{word-spacing:1.665388px;}
.ws41{word-spacing:1.673717px;}
.wse4{word-spacing:1.680621px;}
.ws42{word-spacing:1.733492px;}
.ws6b{word-spacing:1.793268px;}
.ws6a{word-spacing:1.853044px;}
.ws155{word-spacing:1.882944px;}
.ws33{word-spacing:1.912819px;}
.ws69{word-spacing:1.972595px;}
.ws12e{word-spacing:2.032370px;}
.ws17{word-spacing:2.044339px;}
.ws59{word-spacing:2.092146px;}
.ws14f{word-spacing:2.151936px;}
.ws62{word-spacing:2.211697px;}
.ws1b{word-spacing:2.259533px;}
.ws16a{word-spacing:2.367130px;}
.ws39{word-spacing:2.391024px;}
.wsaf{word-spacing:2.450127px;}
.ws2d{word-spacing:2.450800px;}
.wsae{word-spacing:2.451179px;}
.ws2c{word-spacing:2.510575px;}
.ws2{word-spacing:2.511052px;}
.ws1{word-spacing:2.511541px;}
.ws73{word-spacing:2.570351px;}
.ws9d{word-spacing:2.574708px;}
.ws9e{word-spacing:2.575255px;}
.ws38{word-spacing:2.630126px;}
.ws5b{word-spacing:2.689902px;}
.ws89{word-spacing:2.749678px;}
.ws8a{word-spacing:2.757522px;}
.ws10{word-spacing:2.797517px;}
.ws36{word-spacing:2.809453px;}
.wsfe{word-spacing:2.863151px;}
.ws82{word-spacing:2.869229px;}
.wse{word-spacing:2.869236px;}
.ws131{word-spacing:2.929004px;}
.ws130{word-spacing:2.951209px;}
.ws158{word-spacing:2.958912px;}
.ws74{word-spacing:2.988780px;}
.ws67{word-spacing:3.048556px;}
.ws66{word-spacing:3.108331px;}
.ws79{word-spacing:3.154907px;}
.ws7e{word-spacing:3.155815px;}
.ws143{word-spacing:3.168107px;}
.ws167{word-spacing:3.174106px;}
.ws24{word-spacing:3.214476px;}
.ws16d{word-spacing:3.219312px;}
.ws15f{word-spacing:3.223296px;}
.wse7{word-spacing:3.227680px;}
.ws54{word-spacing:3.227882px;}
.ws14e{word-spacing:3.227904px;}
.ws12c{word-spacing:3.262974px;}
.ws35{word-spacing:3.287658px;}
.ws5f{word-spacing:3.347434px;}
.ws126{word-spacing:3.381138px;}
.ws171{word-spacing:3.389299px;}
.ws6d{word-spacing:3.407209px;}
.ws154{word-spacing:3.443098px;}
.ws3e{word-spacing:3.466985px;}
.ws173{word-spacing:3.496896px;}
.ws25{word-spacing:3.586536px;}
.wsd4{word-spacing:3.706087px;}
.ws16b{word-spacing:3.712090px;}
.ws92{word-spacing:3.753331px;}
.ws104{word-spacing:3.765863px;}
.wse8{word-spacing:3.819060px;}
.wsea{word-spacing:3.821798px;}
.wse9{word-spacing:3.825638px;}
.ws9f{word-spacing:3.847805px;}
.ws22{word-spacing:4.088678px;}
.ws34{word-spacing:4.124516px;}
.ws5d{word-spacing:4.244068px;}
.ws11{word-spacing:4.250074px;}
.ws6e{word-spacing:4.303843px;}
.ws106{word-spacing:4.483170px;}
.ws13a{word-spacing:4.522314px;}
.ws138{word-spacing:4.527650px;}
.ws139{word-spacing:4.532480px;}
.ws83{word-spacing:4.542946px;}
.ws8e{word-spacing:4.565959px;}
.wsa5{word-spacing:4.569367px;}
.ws87{word-spacing:4.571959px;}
.ws152{word-spacing:4.572864px;}
.ws13b{word-spacing:4.602721px;}
.ws2f{word-spacing:4.662497px;}
.wsc0{word-spacing:4.782048px;}
.ws3d{word-spacing:4.841824px;}
.ws12f{word-spacing:4.851209px;}
.ws105{word-spacing:4.961375px;}
.ws1a{word-spacing:5.057050px;}
.ws55{word-spacing:5.140702px;}
.ws16f{word-spacing:5.272243px;}
.ws4f{word-spacing:5.320028px;}
.ws16e{word-spacing:5.326042px;}
.ws109{word-spacing:5.379804px;}
.ws9{word-spacing:5.481407px;}
.ws16c{word-spacing:5.595034px;}
.ws5a{word-spacing:5.738458px;}
.wseb{word-spacing:5.798233px;}
.ws145{word-spacing:5.810227px;}
.ws7a{word-spacing:5.917784px;}
.ws61{word-spacing:5.977560px;}
.ws72{word-spacing:6.216662px;}
.ws10a{word-spacing:6.395989px;}
.ws58{word-spacing:6.455765px;}
.wsbf{word-spacing:6.515540px;}
.ws7b{word-spacing:6.754643px;}
.ws51{word-spacing:6.933970px;}
.wsd5{word-spacing:7.232848px;}
.ws148{word-spacing:7.316582px;}
.ws129{word-spacing:7.352399px;}
.ws161{word-spacing:7.370381px;}
.ws9c{word-spacing:8.956028px;}
.wsf{word-spacing:9.062978px;}
.wsa4{word-spacing:9.549367px;}
.ws86{word-spacing:9.551959px;}
.ws7{word-spacing:9.833058px;}
.ws7c{word-spacing:9.922750px;}
.ws8{word-spacing:11.841512px;}
.ws113{word-spacing:13.395024px;}
.ws114{word-spacing:13.397357px;}
.ws4{word-spacing:15.481836px;}
.wsa{word-spacing:16.067635px;}
.ws147{word-spacing:18.043528px;}
.ws30{word-spacing:18.052231px;}
.ws6{word-spacing:22.339429px;}
.ws10f{word-spacing:124.273421px;}
.ws10d{word-spacing:138.499795px;}
.ws14c{word-spacing:151.554578px;}
.ws10c{word-spacing:163.464288px;}
.wsde{word-spacing:203.142758px;}
.ws77{word-spacing:228.374208px;}
.ws76{word-spacing:228.428006px;}
.ws111{word-spacing:244.513728px;}
.wsf5{word-spacing:256.075248px;}
.wsf9{word-spacing:256.187981px;}
.ws110{word-spacing:256.398134px;}
.ws112{word-spacing:262.395178px;}
.wsa9{word-spacing:272.433367px;}
.wsf6{word-spacing:275.526000px;}
.wsf8{word-spacing:276.573629px;}
.wsf7{word-spacing:283.087181px;}
.wsfa{word-spacing:292.125312px;}
.wsf3{word-spacing:297.980410px;}
.wsfb{word-spacing:301.109645px;}
.wsf4{word-spacing:305.574912px;}
.wsf2{word-spacing:328.008845px;}
.wsfd{word-spacing:336.939379px;}
.wsfc{word-spacing:356.790989px;}
.wsd2{word-spacing:407.038694px;}
.wsd0{word-spacing:423.959971px;}
.wsd1{word-spacing:437.380992px;}
.ws116{word-spacing:570.379248px;}
.ws119{word-spacing:570.532032px;}
.ws6f{word-spacing:576.934042px;}
.ws11f{word-spacing:589.253875px;}
.ws118{word-spacing:590.877629px;}
.ws117{word-spacing:597.431232px;}
.ws11a{word-spacing:615.453696px;}
.ws9b{word-spacing:626.482368px;}
.ws115{word-spacing:642.352896px;}
.ws11e{word-spacing:664.733030px;}
.ws88{word-spacing:764.350597px;}
.ws8f{word-spacing:852.659959px;}
.ws90{word-spacing:954.317454px;}
.wsbb{word-spacing:1557.861367px;}
.wsba{word-spacing:1571.433367px;}
._12{margin-left:-7.089397px;}
._6{margin-left:-5.917824px;}
._3b{margin-left:-4.913575px;}
._0{margin-left:-3.849538px;}
._14{margin-left:-2.116066px;}
._2{margin-left:-1.087913px;}
._27{width:1.344960px;}
._7{width:2.998746px;}
._2a{width:4.483170px;}
._36{width:5.593560px;}
._5f{width:10.209738px;}
._1{width:12.971268px;}
._e{width:14.822586px;}
._8{width:16.067758px;}
._b{width:17.735508px;}
._d{width:19.164088px;}
._a{width:20.395519px;}
._6e{width:21.447691px;}
._9{width:22.553474px;}
._13{width:23.970055px;}
._3{width:25.314894px;}
._11{width:26.612094px;}
._4d{width:28.118393px;}
._c{width:29.332073px;}
._4{width:31.256572px;}
._5{width:33.355008px;}
._15{width:35.363251px;}
._17{width:36.672209px;}
._19{width:37.742308px;}
._16{width:39.176938px;}
._39{width:40.958198px;}
._61{width:137.196000px;}
._48{width:178.987277px;}
._72{width:180.625562px;}
._41{width:186.250061px;}
._4a{width:201.636403px;}
._3e{width:210.136550px;}
._1c{width:212.503680px;}
._58{width:229.927267px;}
._21{width:235.529395px;}
._25{width:241.823808px;}
._50{width:244.298534px;}
._60{width:245.428301px;}
._57{width:250.860422px;}
._22{width:253.336666px;}
._4f{width:265.226112px;}
._56{width:268.045267px;}
._55{width:272.650291px;}
._52{width:274.210445px;}
._4e{width:280.935245px;}
._42{width:282.710592px;}
._53{width:284.754931px;}
._5e{width:287.444851px;}
._2b{width:288.656372px;}
._59{width:289.811981px;}
._3c{width:297.200282px;}
._3d{width:298.725139px;}
._73{width:303.756451px;}
._5b{width:305.682509px;}
._44{width:310.285224px;}
._4b{width:312.891494px;}
._4c{width:314.720640px;}
._5a{width:319.722797px;}
._45{width:326.233498px;}
._5c{width:328.008845px;}
._51{width:332.474112px;}
._40{width:335.379226px;}
._2d{width:344.704277px;}
._46{width:350.353102px;}
._49{width:362.762611px;}
._43{width:368.034854px;}
._70{width:371.582138px;}
._2f{width:375.620429px;}
._54{width:377.718566px;}
._23{width:384.299899px;}
._31{width:386.164915px;}
._5d{width:390.361190px;}
._71{width:401.693040px;}
._47{width:404.241178px;}
._30{width:410.159002px;}
._35{width:412.257139px;}
._33{width:420.057907px;}
._2c{width:426.567514px;}
._2e{width:437.542387px;}
._1f{width:441.792461px;}
._37{width:444.243240px;}
._32{width:461.697869px;}
._34{width:466.001741px;}
._67{width:469.282598px;}
._68{width:482.571379px;}
._1e{width:486.767923px;}
._20{width:502.423258px;}
._3f{width:506.229907px;}
._1d{width:518.777971px;}
._66{width:544.237267px;}
._28{width:557.299819px;}
._29{width:576.292325px;}
._63{width:588.500698px;}
._62{width:599.045184px;}
._6b{width:619.972762px;}
._38{width:632.521440px;}
._65{width:647.517542px;}
._26{width:660.080746px;}
._6d{width:663.764659px;}
._74{width:666.762626px;}
._6c{width:684.530842px;}
._64{width:692.008819px;}
._f{width:723.860422px;}
._24{width:740.642573px;}
._1b{width:886.328640px;}
._1a{width:910.537920px;}
._6f{width:926.056699px;}
._18{width:1096.303795px;}
._69{width:1268.183414px;}
._6a{width:1274.322432px;}
._3a{width:2502.045000px;}
._10{width:2525.955000px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsf{font-size:47.337600px;}
.fsb{font-size:47.820600px;}
.fsc{font-size:53.798400px;}
.fs10{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fse{font-size:83.686200px;}
.fs2{font-size:84.000000px;}
.fs8{font-size:107.596800px;}
.fs6{font-size:128.507760px;}
.y0{bottom:0.000000px;}
.y40{bottom:16.704213px;}
.y6c{bottom:31.890000px;}
.y6{bottom:50.595005px;}
.y5{bottom:75.795004px;}
.y4{bottom:100.995005px;}
.y18c{bottom:103.621500px;}
.y1e5{bottom:103.684500px;}
.y3e{bottom:104.646000px;}
.y15f{bottom:104.952000px;}
.y130{bottom:108.849000px;}
.y219{bottom:111.270000px;}
.y254{bottom:113.092500px;}
.y6b{bottom:113.991000px;}
.ycb{bottom:119.148000px;}
.ya3{bottom:119.596500px;}
.y18b{bottom:122.449500px;}
.y1e4{bottom:122.514000px;}
.y3d{bottom:122.535000px;}
.y21f{bottom:122.724000px;}
.y15e{bottom:123.781500px;}
.y12f{bottom:127.677000px;}
.y218{bottom:130.099500px;}
.y253{bottom:131.922000px;}
.y6a{bottom:132.820500px;}
.yca{bottom:137.977500px;}
.ya2{bottom:138.426000px;}
.y21e{bottom:139.162500px;}
.y23{bottom:139.264499px;}
.y3c{bottom:140.422500px;}
.y18a{bottom:141.279000px;}
.y1e3{bottom:141.343500px;}
.y15d{bottom:142.611000px;}
.y2d6{bottom:146.496000px;}
.y12e{bottom:146.506500px;}
.y217{bottom:148.929000px;}
.y29e{bottom:149.076000px;}
.y252{bottom:150.751500px;}
.y69{bottom:151.650000px;}
.y29d{bottom:156.175500px;}
.y26e{bottom:156.358500px;}
.yc9{bottom:156.807000px;}
.ya1{bottom:157.255500px;}
.y3b{bottom:158.310000px;}
.y1e2{bottom:160.173000px;}
.y15c{bottom:161.440500px;}
.y21d{bottom:162.804000px;}
.y2d5{bottom:163.756500px;}
.y189{bottom:164.592000px;}
.y1b2{bottom:164.685000px;}
.y216{bottom:167.758500px;}
.y29b{bottom:169.269000px;}
.y251{bottom:169.581000px;}
.y68{bottom:174.963000px;}
.y26d{bottom:175.188000px;}
.yc8{bottom:175.636500px;}
.ya0{bottom:176.085000px;}
.y3a{bottom:176.199000px;}
.y12c{bottom:176.263500px;}
.y12d{bottom:176.524500px;}
.y1e1{bottom:179.002500px;}
.y21c{bottom:179.241000px;}
.y15b{bottom:180.268500px;}
.y2d4{bottom:181.015500px;}
.y12b{bottom:181.027500px;}
.y1b1{bottom:183.514500px;}
.y29c{bottom:184.672500px;}
.y188{bottom:184.767000px;}
.y215{bottom:186.588000px;}
.y250{bottom:188.410500px;}
.y26c{bottom:194.017500px;}
.y39{bottom:194.086500px;}
.yc7{bottom:194.466000px;}
.y9f{bottom:194.914500px;}
.y1a{bottom:196.933500px;}
.y1e0{bottom:197.832000px;}
.y2d3{bottom:198.276000px;}
.y1b0{bottom:202.344000px;}
.y214{bottom:205.417500px;}
.y29a{bottom:206.071500px;}
.y24f{bottom:207.240000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y38{bottom:211.974000px;}
.y26b{bottom:212.847000px;}
.yc6{bottom:213.295500px;}
.y9e{bottom:213.744000px;}
.y21b{bottom:213.850500px;}
.y2d2{bottom:215.536500px;}
.y12a{bottom:215.548500px;}
.y15a{bottom:216.579000px;}
.y1df{bottom:216.661500px;}
.y187{bottom:218.391000px;}
.y297{bottom:220.269000px;}
.y1af{bottom:221.173500px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y213{bottom:224.247000px;}
.y24e{bottom:226.069500px;}
.y296{bottom:227.367000px;}
.y37{bottom:229.863000px;}
.y2d1{bottom:230.175000px;}
.y26a{bottom:231.676500px;}
.yc5{bottom:232.125000px;}
.y9d{bottom:232.573500px;}
.y2d0{bottom:232.797000px;}
.y299{bottom:234.465000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y1de{bottom:235.491000px;}
.y186{bottom:237.220500px;}
.y1ae{bottom:240.003000px;}
.y212{bottom:243.075000px;}
.y24d{bottom:244.899000px;}
.y298{bottom:248.662500px;}
.y2cf{bottom:250.057500px;}
.y67{bottom:250.113000px;}
.y269{bottom:250.506000px;}
.yc4{bottom:250.954500px;}
.y9c{bottom:251.403000px;}
.y128{bottom:252.928500px;}
.y127{bottom:253.683000px;}
.y1dd{bottom:254.320500px;}
.y159{bottom:257.133000px;}
.y1ad{bottom:258.832500px;}
.yee{bottom:259.230000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y211{bottom:261.904500px;}
.y11e{bottom:263.701500px;}
.y24c{bottom:263.728500px;}
.y11f{bottom:263.889000px;}
.y185{bottom:264.589500px;}
.y129{bottom:267.088500px;}
.y2ce{bottom:267.318000px;}
.y268{bottom:269.335500px;}
.y66{bottom:269.569500px;}
.yc3{bottom:269.784000px;}
.y123{bottom:269.847000px;}
.y295{bottom:270.061500px;}
.y9b{bottom:270.232500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1dc{bottom:273.150000px;}
.y11d{bottom:277.035000px;}
.y1ac{bottom:277.662000px;}
.yed{bottom:278.059500px;}
.y126{bottom:279.339000px;}
.y122{bottom:279.396000px;}
.y11b{bottom:280.143000px;}
.y210{bottom:280.734000px;}
.y24b{bottom:282.558000px;}
.y184{bottom:283.419000px;}
.y294{bottom:284.257500px;}
.y2cd{bottom:284.578500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y158{bottom:287.328000px;}
.y125{bottom:287.475000px;}
.y267{bottom:288.165000px;}
.y121{bottom:288.363000px;}
.yc2{bottom:288.613500px;}
.y9a{bottom:289.062000px;}
.y124{bottom:290.901000px;}
.y1db{bottom:291.979500px;}
.y11c{bottom:296.283000px;}
.y1ab{bottom:296.491500px;}
.yec{bottom:296.889000px;}
.y120{bottom:297.328500px;}
.y157{bottom:298.371000px;}
.y20f{bottom:299.563500px;}
.y36{bottom:299.892000px;}
.y24a{bottom:301.387500px;}
.y2cc{bottom:301.839000px;}
.y156{bottom:304.581000px;}
.y293{bottom:305.656500px;}
.y65{bottom:306.960000px;}
.y266{bottom:306.994500px;}
.yc1{bottom:307.443000px;}
.y99{bottom:307.891500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y1da{bottom:310.809000px;}
.y21a{bottom:311.925000px;}
.y183{bottom:313.158000px;}
.y1aa{bottom:315.321000px;}
.yeb{bottom:315.718500px;}
.y35{bottom:317.779500px;}
.y20e{bottom:318.393000px;}
.y2cb{bottom:319.099500px;}
.y249{bottom:320.217000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y265{bottom:325.824000px;}
.yc0{bottom:326.272500px;}
.y64{bottom:326.416500px;}
.y98{bottom:326.719500px;}
.y292{bottom:327.055500px;}
.y1d9{bottom:329.638500px;}
.y182{bottom:331.987500px;}
.y1a9{bottom:334.150500px;}
.y290{bottom:334.155000px;}
.yea{bottom:334.548000px;}
.y34{bottom:335.667000px;}
.y301{bottom:336.285000px;}
.y2ca{bottom:336.358500px;}
.y20d{bottom:337.222500px;}
.y248{bottom:339.046500px;}
.y291{bottom:341.253000px;}
.y264{bottom:344.653500px;}
.ybf{bottom:345.102000px;}
.y97{bottom:345.549000px;}
.y11a{bottom:345.613500px;}
.y63{bottom:345.874500px;}
.y11{bottom:348.133500px;}
.y1d8{bottom:348.468000px;}
.y155{bottom:351.930000px;}
.y1a8{bottom:352.980000px;}
.ye9{bottom:353.377500px;}
.y300{bottom:353.544000px;}
.y33{bottom:353.556000px;}
.y2c9{bottom:353.619000px;}
.y20c{bottom:356.052000px;}
.y247{bottom:357.876000px;}
.y28f{bottom:362.652000px;}
.y263{bottom:363.483000px;}
.ybe{bottom:363.931500px;}
.y96{bottom:364.378500px;}
.y119{bottom:364.443000px;}
.y62{bottom:365.331000px;}
.y181{bottom:365.491500px;}
.y1d7{bottom:367.297500px;}
.y28e{bottom:369.750000px;}
.y154{bottom:370.759500px;}
.y2ff{bottom:370.804500px;}
.y2c8{bottom:370.879500px;}
.y1a7{bottom:371.809500px;}
.ye8{bottom:372.207000px;}
.y20b{bottom:374.881500px;}
.y246{bottom:381.189000px;}
.y32{bottom:381.904500px;}
.y262{bottom:382.312500px;}
.ybd{bottom:382.761000px;}
.y95{bottom:383.208000px;}
.y118{bottom:383.272500px;}
.y180{bottom:384.321000px;}
.y61{bottom:384.787500px;}
.y1d6{bottom:386.127000px;}
.y10{bottom:386.785499px;}
.y2c7{bottom:388.140000px;}
.y153{bottom:389.589000px;}
.y1a6{bottom:390.639000px;}
.ye7{bottom:391.036500px;}
.y20a{bottom:393.711000px;}
.y28d{bottom:398.247000px;}
.y31{bottom:399.792000px;}
.y261{bottom:401.142000px;}
.ybc{bottom:401.589000px;}
.y94{bottom:402.037500px;}
.y17f{bottom:403.150500px;}
.y287{bottom:404.242500px;}
.y60{bottom:404.245500px;}
.y1d5{bottom:404.956500px;}
.y28b{bottom:405.346500px;}
.y2c6{bottom:405.400500px;}
.yf{bottom:408.044999px;}
.y1a5{bottom:409.468500px;}
.ye6{bottom:409.866000px;}
.y2fe{bottom:409.884000px;}
.y117{bottom:411.516000px;}
.y28c{bottom:412.444500px;}
.y209{bottom:412.540500px;}
.y152{bottom:412.902000px;}
.y245{bottom:414.813000px;}
.y30{bottom:417.679500px;}
.y260{bottom:419.971500px;}
.ybb{bottom:420.418500px;}
.y93{bottom:420.867000px;}
.y17e{bottom:421.980000px;}
.y2c5{bottom:422.661000px;}
.y5f{bottom:423.702000px;}
.y1d4{bottom:423.784500px;}
.y2fd{bottom:427.144500px;}
.y1a4{bottom:428.298000px;}
.ye5{bottom:428.695500px;}
.y116{bottom:430.345500px;}
.y208{bottom:431.370000px;}
.y244{bottom:433.641000px;}
.y28a{bottom:433.843500px;}
.y2f{bottom:435.568500px;}
.y25f{bottom:438.801000px;}
.yba{bottom:439.248000px;}
.y92{bottom:439.696500px;}
.y2c4{bottom:439.921500px;}
.y17d{bottom:440.809500px;}
.y288{bottom:440.941500px;}
.y1d3{bottom:442.614000px;}
.y5e{bottom:443.160000px;}
.y2fc{bottom:444.403500px;}
.y1a3{bottom:447.127500px;}
.ye4{bottom:447.523500px;}
.y150{bottom:447.946500px;}
.y289{bottom:448.041000px;}
.y115{bottom:449.175000px;}
.y207{bottom:450.199500px;}
.y243{bottom:452.470500px;}
.y2e{bottom:453.456000px;}
.y2c3{bottom:457.182000px;}
.y25e{bottom:457.630500px;}
.yb9{bottom:458.077500px;}
.y91{bottom:458.526000px;}
.y17c{bottom:459.639000px;}
.y14f{bottom:461.094000px;}
.y1d2{bottom:461.443500px;}
.y2fb{bottom:461.664000px;}
.y5d{bottom:462.616500px;}
.y151{bottom:464.202000px;}
.y1a2{bottom:465.957000px;}
.y114{bottom:468.004500px;}
.y206{bottom:469.029000px;}
.y286{bottom:469.440000px;}
.ye3{bottom:470.836500px;}
.y242{bottom:471.300000px;}
.y2c2{bottom:474.441000px;}
.y25d{bottom:476.458500px;}
.yb8{bottom:476.907000px;}
.y90{bottom:477.355500px;}
.y17b{bottom:478.468500px;}
.y2fa{bottom:478.924500px;}
.y1d1{bottom:480.273000px;}
.y2d{bottom:480.310500px;}
.y5c{bottom:482.073000px;}
.y14e{bottom:483.031500px;}
.y1a1{bottom:484.786500px;}
.ye{bottom:484.864502px;}
.y113{bottom:486.834000px;}
.y205{bottom:487.858500px;}
.y241{bottom:490.129500px;}
.y2c1{bottom:491.701500px;}
.y25c{bottom:495.288000px;}
.yb7{bottom:495.736500px;}
.y8f{bottom:496.185000px;}
.y17a{bottom:497.298000px;}
.y2c{bottom:498.198000px;}
.y1d0{bottom:499.102500px;}
.y5b{bottom:501.531000px;}
.y285{bottom:502.479000px;}
.yd{bottom:502.864502px;}
.y1a0{bottom:503.616000px;}
.y112{bottom:505.663500px;}
.y240{bottom:508.959000px;}
.y2c0{bottom:508.962000px;}
.y14c{bottom:509.388000px;}
.y2f9{bottom:510.823500px;}
.y2f8{bottom:513.445500px;}
.y25b{bottom:514.117500px;}
.yb6{bottom:514.566000px;}
.y8e{bottom:515.014500px;}
.y2b{bottom:516.087000px;}
.ye0{bottom:516.150000px;}
.y1cf{bottom:517.932000px;}
.y179{bottom:520.611000px;}
.yc{bottom:520.864502px;}
.y5a{bottom:520.987500px;}
.y14d{bottom:521.161500px;}
.ye2{bottom:524.368500px;}
.y111{bottom:524.493000px;}
.y14b{bottom:525.642000px;}
.y2bf{bottom:526.222500px;}
.y23f{bottom:527.788500px;}
.y204{bottom:527.992500px;}
.y2f7{bottom:530.706000px;}
.yde{bottom:532.588500px;}
.y25a{bottom:532.947000px;}
.yb5{bottom:533.395500px;}
.y8d{bottom:533.844000px;}
.y2a{bottom:533.974500px;}
.y1ce{bottom:536.761500px;}
.yb{bottom:538.864499px;}
.y59{bottom:540.444000px;}
.ye1{bottom:540.807000px;}
.y110{bottom:543.322500px;}
.y2be{bottom:543.483000px;}
.y14a{bottom:544.471500px;}
.y284{bottom:545.500500px;}
.y23e{bottom:546.618000px;}
.y203{bottom:546.835500px;}
.y2f6{bottom:547.966500px;}
.ydf{bottom:549.025500px;}
.y259{bottom:551.776500px;}
.y29{bottom:551.862000px;}
.y19f{bottom:552.066000px;}
.yb4{bottom:552.225000px;}
.y8c{bottom:552.673500px;}
.y178{bottom:554.235000px;}
.y1cd{bottom:555.591000px;}
.ya{bottom:556.864499px;}
.y58{bottom:559.902000px;}
.y2bd{bottom:560.743500px;}
.y10f{bottom:562.152000px;}
.y202{bottom:563.274000px;}
.y149{bottom:563.301000px;}
.y2f5{bottom:565.227000px;}
.y23d{bottom:565.447500px;}
.y19e{bottom:568.504500px;}
.y28{bottom:569.751000px;}
.yb3{bottom:571.054500px;}
.y8b{bottom:571.503000px;}
.ydd{bottom:572.667000px;}
.y177{bottom:573.064500px;}
.y258{bottom:575.089500px;}
.y2bc{bottom:578.004000px;}
.y57{bottom:579.358500px;}
.y201{bottom:579.712500px;}
.y10e{bottom:580.981500px;}
.y148{bottom:582.130500px;}
.y283{bottom:582.262500px;}
.y2f4{bottom:582.487500px;}
.y23c{bottom:584.277000px;}
.y19d{bottom:584.943000px;}
.y27{bottom:587.638500px;}
.ydb{bottom:589.105500px;}
.yb2{bottom:589.884000px;}
.y8a{bottom:590.332500px;}
.y2bb{bottom:595.264500px;}
.y200{bottom:596.151000px;}
.y56{bottom:598.816500px;}
.y2f3{bottom:599.746500px;}
.y10d{bottom:599.811000px;}
.y147{bottom:600.960000px;}
.y176{bottom:601.308000px;}
.y19c{bottom:601.381500px;}
.y23b{bottom:603.106500px;}
.y1cc{bottom:604.042500px;}
.y26{bottom:605.526000px;}
.yda{bottom:605.544000px;}
.yb1{bottom:608.713500px;}
.y282{bottom:608.803500px;}
.y89{bottom:609.162000px;}
.y2ba{bottom:612.525000px;}
.y1ff{bottom:612.589500px;}
.y2f2{bottom:617.007000px;}
.y19b{bottom:617.820000px;}
.y55{bottom:618.273000px;}
.y146{bottom:619.789500px;}
.y1cb{bottom:620.481000px;}
.y23a{bottom:621.936000px;}
.ydc{bottom:621.982500px;}
.y25{bottom:623.415000px;}
.y281{bottom:626.377500px;}
.yb0{bottom:627.543000px;}
.y88{bottom:627.991500px;}
.y1fe{bottom:629.028000px;}
.y2b9{bottom:629.784000px;}
.y10c{bottom:631.491000px;}
.y19a{bottom:634.258500px;}
.y2f1{bottom:634.267500px;}
.y1ca{bottom:636.919500px;}
.y54{bottom:637.729500px;}
.y145{bottom:638.619000px;}
.y175{bottom:638.967000px;}
.y239{bottom:640.765500px;}
.y24{bottom:641.302500px;}
.y1fd{bottom:645.466500px;}
.y9{bottom:645.510000px;}
.yd9{bottom:645.622500px;}
.yaf{bottom:646.372500px;}
.y87{bottom:646.821000px;}
.y2b8{bottom:647.044500px;}
.y199{bottom:650.697000px;}
.y2f0{bottom:651.528000px;}
.y280{bottom:652.918500px;}
.y1c9{bottom:653.356500px;}
.y10a{bottom:653.631000px;}
.y144{bottom:654.066000px;}
.y10b{bottom:654.109500px;}
.y53{bottom:657.187500px;}
.y174{bottom:657.796500px;}
.y143{bottom:659.221500px;}
.y238{bottom:659.595000px;}
.y1fc{bottom:661.903500px;}
.yd8{bottom:662.061000px;}
.y2b7{bottom:664.305000px;}
.yae{bottom:665.202000px;}
.y86{bottom:665.650500px;}
.y8{bottom:666.771000px;}
.y198{bottom:667.134000px;}
.y2ef{bottom:668.788500px;}
.y1c8{bottom:669.795000px;}
.y173{bottom:676.626000px;}
.y52{bottom:676.644000px;}
.y1c2{bottom:676.861500px;}
.y1fb{bottom:678.342000px;}
.yd7{bottom:678.499500px;}
.y27f{bottom:679.458000px;}
.y142{bottom:680.301000px;}
.y2b6{bottom:681.565500px;}
.y197{bottom:683.572500px;}
.yad{bottom:684.031500px;}
.y85{bottom:684.480000px;}
.y2ee{bottom:686.049000px;}
.y1c7{bottom:686.233500px;}
.y1fa{bottom:694.780500px;}
.yd3{bottom:694.938000px;}
.y172{bottom:695.455500px;}
.y141{bottom:695.748000px;}
.y51{bottom:696.100500px;}
.y109{bottom:696.676500px;}
.y27e{bottom:697.033500px;}
.y2b5{bottom:698.826000px;}
.y237{bottom:699.729000px;}
.y196{bottom:700.011000px;}
.y140{bottom:700.977000px;}
.y1c6{bottom:702.672000px;}
.yac{bottom:702.861000px;}
.y84{bottom:703.309500px;}
.y1f9{bottom:711.219000px;}
.yd2{bottom:711.376500px;}
.y171{bottom:714.285000px;}
.y108{bottom:715.506000px;}
.y50{bottom:715.558500px;}
.y2b4{bottom:716.086500px;}
.y195{bottom:716.449500px;}
.y236{bottom:718.572000px;}
.y1c5{bottom:719.110500px;}
.y2ed{bottom:720.570000px;}
.yab{bottom:721.690500px;}
.y83{bottom:722.139000px;}
.y27d{bottom:723.573000px;}
.y7{bottom:726.298500px;}
.y1f8{bottom:727.657500px;}
.yd6{bottom:727.815000px;}
.y13f{bottom:728.208000px;}
.y194{bottom:732.888000px;}
.y170{bottom:733.114500px;}
.y2b3{bottom:733.347000px;}
.y13e{bottom:733.539000px;}
.y107{bottom:734.335500px;}
.y235{bottom:735.010500px;}
.y4f{bottom:735.015000px;}
.y1c4{bottom:735.549000px;}
.y2ec{bottom:737.829000px;}
.yaa{bottom:740.520000px;}
.y13c{bottom:740.742000px;}
.y82{bottom:740.968500px;}
.y27c{bottom:741.147000px;}
.y1f7{bottom:744.096000px;}
.yd5{bottom:744.253500px;}
.y13b{bottom:745.224000px;}
.y193{bottom:749.326500px;}
.y2b2{bottom:750.607500px;}
.y234{bottom:751.449000px;}
.y16f{bottom:751.944000px;}
.y1c3{bottom:751.987500px;}
.y3{bottom:752.599495px;}
.y106{bottom:753.165000px;}
.y13d{bottom:754.192500px;}
.y4e{bottom:754.473000px;}
.y2eb{bottom:755.089500px;}
.y27b{bottom:758.721000px;}
.ya9{bottom:759.349500px;}
.y81{bottom:759.798000px;}
.y1f6{bottom:760.534500px;}
.yd4{bottom:760.690500px;}
.y192{bottom:765.765000px;}
.y2b1{bottom:767.866500px;}
.y233{bottom:767.887500px;}
.y16e{bottom:770.773500px;}
.y105{bottom:771.994500px;}
.y2ea{bottom:772.350000px;}
.y4d{bottom:773.929500px;}
.y1c1{bottom:775.627500px;}
.y27a{bottom:776.295000px;}
.y1f5{bottom:776.973000px;}
.ya8{bottom:778.179000px;}
.y80{bottom:778.627500px;}
.y191{bottom:782.203500px;}
.y232{bottom:784.326000px;}
.yd1{bottom:784.332000px;}
.y2b0{bottom:785.127000px;}
.y16d{bottom:789.603000px;}
.y2e9{bottom:789.610500px;}
.y13a{bottom:790.590000px;}
.y104{bottom:790.824000px;}
.y1c0{bottom:792.066000px;}
.y4c{bottom:793.386000px;}
.y1f4{bottom:793.411500px;}
.y139{bottom:795.921000px;}
.ya7{bottom:797.008500px;}
.y7f{bottom:797.457000px;}
.y190{bottom:798.642000px;}
.y231{bottom:800.764500px;}
.y2af{bottom:802.387500px;}
.y137{bottom:803.124000px;}
.y2e8{bottom:806.871000px;}
.y136{bottom:807.606000px;}
.y16c{bottom:808.432500px;}
.y1bf{bottom:808.504500px;}
.y103{bottom:809.653500px;}
.y279{bottom:811.803000px;}
.y4b{bottom:812.844000px;}
.y18f{bottom:815.080500px;}
.ya6{bottom:815.838000px;}
.y7e{bottom:816.286500px;}
.y138{bottom:816.574500px;}
.y1f3{bottom:817.051500px;}
.y230{bottom:817.203000px;}
.yd0{bottom:818.940000px;}
.y2ae{bottom:819.648000px;}
.y2e7{bottom:824.131500px;}
.y1be{bottom:824.943000px;}
.y102{bottom:828.483000px;}
.y278{bottom:830.632500px;}
.y16b{bottom:831.744000px;}
.y4a{bottom:832.300500px;}
.y22f{bottom:833.640000px;}
.ya5{bottom:834.667500px;}
.y7d{bottom:835.114500px;}
.y2ad{bottom:836.908500px;}
.y18e{bottom:838.720500px;}
.y1bd{bottom:841.381500px;}
.y2e6{bottom:841.392000px;}
.y1b7{bottom:848.448000px;}
.y1f2{bottom:848.671500px;}
.y277{bottom:849.462000px;}
.y22e{bottom:850.078500px;}
.y101{bottom:851.796000px;}
.y16a{bottom:851.919000px;}
.ycf{bottom:852.151500px;}
.y257{bottom:853.497000px;}
.y7c{bottom:853.944000px;}
.y2ac{bottom:854.169000px;}
.y135{bottom:856.635000px;}
.y1bc{bottom:857.820000px;}
.ya4{bottom:857.979000px;}
.y2e5{bottom:858.652500px;}
.y22d{bottom:866.517000px;}
.y276{bottom:868.291500px;}
.y49{bottom:870.886500px;}
.yce{bottom:870.981000px;}
.y2ab{bottom:871.429500px;}
.y256{bottom:872.326500px;}
.y7b{bottom:872.773500px;}
.y18d{bottom:873.328500px;}
.y1bb{bottom:874.258500px;}
.y134{bottom:875.464500px;}
.y2e4{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y22c{bottom:882.955500px;}
.y1f1{bottom:885.775500px;}
.y275{bottom:887.121000px;}
.y2aa{bottom:888.690000px;}
.y1ba{bottom:890.697000px;}
.y255{bottom:891.156000px;}
.y48{bottom:891.366000px;}
.y7a{bottom:891.603000px;}
.y2e3{bottom:893.172000px;}
.ycd{bottom:894.294000px;}
.y169{bottom:896.355000px;}
.yfe{bottom:896.940000px;}
.y100{bottom:897.108000px;}
.y22b{bottom:899.394000px;}
.y47{bottom:903.165000px;}
.y1f0{bottom:904.605000px;}
.y274{bottom:905.950500px;}
.y1b9{bottom:907.135500px;}
.y79{bottom:910.432500px;}
.y168{bottom:912.793500px;}
.y133{bottom:913.123500px;}
.yfd{bottom:913.378500px;}
.yff{bottom:913.546500px;}
.ycc{bottom:914.467500px;}
.y22a{bottom:915.832500px;}
.y2a9{bottom:923.209500px;}
.y1ef{bottom:923.434500px;}
.y1b8{bottom:923.574000px;}
.y46{bottom:923.644500px;}
.y273{bottom:924.778500px;}
.y2e2{bottom:927.693000px;}
.y167{bottom:929.232000px;}
.y78{bottom:929.262000px;}
.y229{bottom:932.271000px;}
.y132{bottom:936.435000px;}
.yfc{bottom:937.852500px;}
.yfa{bottom:938.836500px;}
.y2a8{bottom:940.470000px;}
.y1ee{bottom:942.264000px;}
.y272{bottom:943.608000px;}
.y2e1{bottom:944.953500px;}
.y166{bottom:945.670500px;}
.y1b6{bottom:947.214000px;}
.y77{bottom:948.091500px;}
.y228{bottom:948.709500px;}
.y131{bottom:952.126500px;}
.yfb{bottom:954.957000px;}
.yf9{bottom:955.275000px;}
.y2a7{bottom:957.730500px;}
.y1ed{bottom:961.093500px;}
.y165{bottom:962.109000px;}
.y2e0{bottom:962.214000px;}
.y271{bottom:962.437500px;}
.y227{bottom:965.148000px;}
.y1{bottom:966.726000px;}
.y76{bottom:966.921000px;}
.y45{bottom:968.320500px;}
.y2a6{bottom:974.991000px;}
.yf8{bottom:978.597000px;}
.y2df{bottom:979.474500px;}
.y1ec{bottom:979.923000px;}
.y270{bottom:981.267000px;}
.y226{bottom:981.586500px;}
.y1b5{bottom:981.822000px;}
.y164{bottom:985.749000px;}
.y75{bottom:985.750500px;}
.y2a5{bottom:992.251500px;}
.yf7{bottom:995.035500px;}
.y2de{bottom:996.735000px;}
.y225{bottom:998.023500px;}
.y1eb{bottom:998.752500px;}
.y26f{bottom:1000.096500px;}
.y74{bottom:1004.580000px;}
.y44{bottom:1008.240000px;}
.y2a4{bottom:1009.512000px;}
.yf6{bottom:1011.474000px;}
.yf2{bottom:1011.792000px;}
.y2dd{bottom:1013.995500px;}
.y224{bottom:1014.462000px;}
.y1ea{bottom:1017.582000px;}
.y1b4{bottom:1018.926000px;}
.y163{bottom:1020.357000px;}
.y73{bottom:1023.409500px;}
.y2a3{bottom:1026.772500px;}
.yf5{bottom:1027.912500px;}
.yf1{bottom:1028.230500px;}
.y2dc{bottom:1028.632500px;}
.y223{bottom:1030.900500px;}
.y2db{bottom:1031.254500px;}
.y1e9{bottom:1036.411500px;}
.y43{bottom:1036.485000px;}
.y1b3{bottom:1037.755500px;}
.y72{bottom:1042.239000px;}
.y2a2{bottom:1044.033000px;}
.yf4{bottom:1044.351000px;}
.y222{bottom:1047.339000px;}
.y2da{bottom:1048.515000px;}
.y1e8{bottom:1055.241000px;}
.y162{bottom:1056.585000px;}
.yf3{bottom:1060.789500px;}
.y71{bottom:1061.068500px;}
.y2a1{bottom:1061.292000px;}
.y221{bottom:1063.777500px;}
.y42{bottom:1064.728500px;}
.y2d9{bottom:1065.775500px;}
.y1e7{bottom:1074.070500px;}
.y161{bottom:1075.414500px;}
.y2a0{bottom:1078.552500px;}
.y70{bottom:1079.898000px;}
.y2d8{bottom:1083.036000px;}
.yf0{bottom:1084.429500px;}
.y220{bottom:1087.419000px;}
.y41{bottom:1092.972000px;}
.y160{bottom:1094.244000px;}
.y29f{bottom:1095.813000px;}
.y1e6{bottom:1097.382000px;}
.y6f{bottom:1098.727500px;}
.y2d7{bottom:1100.296500px;}
.y6e{bottom:1117.557000px;}
.yef{bottom:1119.037500px;}
.y3f{bottom:1136.460000px;}
.y6d{bottom:1177.662000px;}
.h1a{height:2.988780px;}
.h10{height:26.110157px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h1f{height:33.072749px;}
.h1c{height:33.299897px;}
.h39{height:34.430832px;}
.h11{height:34.813397px;}
.h15{height:35.052500px;}
.h21{height:35.503200px;}
.h16{height:38.734848px;}
.h12{height:39.165235px;}
.h17{height:39.434227px;}
.h1e{height:42.500452px;}
.h13{height:43.038432px;}
.h14{height:43.516637px;}
.hd{height:43.815515px;}
.h6{height:45.900000px;}
.h1d{height:46.714950px;}
.h3{height:48.195000px;}
.h18{height:50.573558px;}
.hb{height:50.930649px;}
.h32{height:52.592177px;}
.h2d{height:54.293897px;}
.hf{height:54.411312px;}
.h30{height:54.768749px;}
.h31{height:54.995897px;}
.h2{height:55.080000px;}
.h28{height:57.378749px;}
.h2b{height:57.762749px;}
.h33{height:61.438637px;}
.h2a{height:61.528637px;}
.h23{height:61.986749px;}
.h3a{height:63.205397px;}
.h5{height:64.260000px;}
.h2f{height:64.437515px;}
.h20{height:65.024177px;}
.h24{height:69.744780px;}
.h35{height:74.946780px;}
.h2e{height:75.617897px;}
.h29{height:76.661897px;}
.he{height:77.469696px;}
.h36{height:81.292637px;}
.h37{height:81.298637px;}
.h19{height:86.554950px;}
.hc{height:87.128261px;}
.h25{height:87.678780px;}
.h1b{height:93.462780px;}
.h34{height:102.126780px;}
.h38{height:104.482848px;}
.h26{height:116.512157px;}
.h4{height:119.055004px;}
.h2c{height:129.419897px;}
.h22{height:176.940780px;}
.h27{height:229.158780px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.247128px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x6{left:58.056593px;}
.xb{left:62.541000px;}
.x18{left:69.607500px;}
.x79{left:70.878000px;}
.xf{left:74.287500px;}
.x65{left:78.655500px;}
.x9b{left:80.398500px;}
.x8f{left:82.347000px;}
.x9f{left:85.848000px;}
.x81{left:90.298500px;}
.x10{left:92.464500px;}
.x19{left:93.964500px;}
.x8e{left:96.018000px;}
.xe{left:100.729500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x64{left:107.937000px;}
.x5a{left:113.586000px;}
.x59{left:132.261000px;}
.x5e{left:146.028000px;}
.x5b{left:147.222000px;}
.x5f{left:149.419500px;}
.x6b{left:151.621500px;}
.x6e{left:157.527000px;}
.x7a{left:168.991500px;}
.x7b{left:179.953500px;}
.x68{left:184.465500px;}
.x69{left:188.674500px;}
.x66{left:190.719000px;}
.x6a{left:194.472000px;}
.x6d{left:197.808000px;}
.x67{left:199.119000px;}
.x4{left:203.484001px;}
.x6c{left:207.948000px;}
.x90{left:215.154000px;}
.x97{left:216.367500px;}
.x96{left:218.895000px;}
.x91{left:220.713000px;}
.x94{left:224.047500px;}
.x9e{left:227.013000px;}
.x92{left:228.178500px;}
.x9c{left:236.026500px;}
.xc{left:237.778500px;}
.x16{left:242.521500px;}
.x8d{left:247.348500px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x99{left:258.897000px;}
.x7c{left:267.106500px;}
.x8{left:269.914500px;}
.x17{left:274.968000px;}
.x78{left:277.891500px;}
.xa{left:281.479500px;}
.x75{left:283.729500px;}
.x70{left:286.506000px;}
.x72{left:288.147000px;}
.x77{left:291.738000px;}
.x73{left:293.271000px;}
.x22{left:296.974500px;}
.x6f{left:298.443000px;}
.x71{left:300.217500px;}
.x15{left:304.543500px;}
.x14{left:317.005500px;}
.x1c{left:321.261000px;}
.x89{left:323.017500px;}
.x83{left:325.794000px;}
.x13{left:328.242000px;}
.x8c{left:331.026000px;}
.x87{left:332.559000px;}
.x11{left:336.493500px;}
.x2e{left:337.849500px;}
.x85{left:339.505500px;}
.x2a{left:347.893500px;}
.x2b{left:357.435000px;}
.x1a{left:362.524500px;}
.x4d{left:363.559500px;}
.x31{left:370.179000px;}
.x30{left:372.285000px;}
.x1b{left:375.577500px;}
.x2f{left:377.470500px;}
.x9a{left:380.628000px;}
.x4a{left:383.398500px;}
.x48{left:387.901500px;}
.x33{left:394.549500px;}
.x49{left:395.701500px;}
.x32{left:400.024500px;}
.x74{left:401.163000px;}
.x60{left:404.100000px;}
.x76{left:406.777500px;}
.x4e{left:409.858500px;}
.x34{left:414.565500px;}
.x58{left:416.451000px;}
.x4f{left:418.057500px;}
.x4b{left:420.681000px;}
.xa0{left:421.710000px;}
.xa1{left:427.687500px;}
.x50{left:442.561500px;}
.x4c{left:447.429000px;}
.x3{left:454.959000px;}
.x1d{left:459.577500px;}
.x41{left:460.791000px;}
.x82{left:462.627000px;}
.x42{left:468.591000px;}
.x37{left:470.866500px;}
.x23{left:478.237500px;}
.x51{left:479.256000px;}
.x3e{left:482.013000px;}
.x56{left:483.898500px;}
.xa4{left:492.280500px;}
.x38{left:493.950000px;}
.x2c{left:495.679500px;}
.x52{left:498.774000px;}
.xa5{left:503.040000px;}
.x95{left:505.008000px;}
.x44{left:506.032500px;}
.x1e{left:507.883500px;}
.x9d{left:511.852500px;}
.x45{left:514.230000px;}
.x47{left:516.973500px;}
.x35{left:518.020500px;}
.x88{left:519.027000px;}
.x86{left:522.390000px;}
.x8a{left:524.643000px;}
.x55{left:526.941000px;}
.x84{left:528.004500px;}
.x36{left:529.732500px;}
.x98{left:533.988000px;}
.x93{left:538.578000px;}
.x57{left:539.685000px;}
.x3f{left:541.975500px;}
.x1f{left:553.501500px;}
.x43{left:558.795000px;}
.x46{left:562.402500px;}
.x7d{left:572.395500px;}
.x40{left:575.500500px;}
.xd{left:585.816000px;}
.x39{left:589.797000px;}
.x54{left:593.440500px;}
.x2d{left:598.575000px;}
.x20{left:619.611000px;}
.x24{left:621.003000px;}
.x3a{left:626.542500px;}
.x25{left:634.699500px;}
.x26{left:642.306000px;}
.x3b{left:650.275500px;}
.x27{left:656.001000px;}
.x7e{left:657.517500px;}
.x61{left:659.337000px;}
.x53{left:667.428000px;}
.x3c{left:670.651500px;}
.x62{left:672.406500px;}
.x3d{left:683.913000px;}
.x28{left:692.202000px;}
.x63{left:701.493000px;}
.x29{left:709.645500px;}
.x5c{left:712.168500px;}
.x8b{left:724.446000px;}
.x5d{left:729.291000px;}
.x7f{left:755.632500px;}
.x80{left:768.624000px;}
.xa2{left:777.852000px;}
.x12{left:780.825000px;}
.xa3{left:787.194000px;}
.x21{left:822.982500px;}
@media print{
.v17{vertical-align:-79.040000pt;}
.vc{vertical-align:-74.112000pt;}
.vb{vertical-align:-65.557333pt;}
.vd{vertical-align:-61.466667pt;}
.v18{vertical-align:-53.338667pt;}
.ve{vertical-align:-42.949333pt;}
.v1c{vertical-align:-35.482667pt;}
.v1b{vertical-align:-31.392000pt;}
.v2a{vertical-align:-16.709333pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v12{vertical-align:-9.301333pt;}
.v1f{vertical-align:-4.090667pt;}
.v4{vertical-align:-2.362667pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:6.309333pt;}
.v27{vertical-align:7.877333pt;}
.va{vertical-align:9.893333pt;}
.v21{vertical-align:12.848000pt;}
.v15{vertical-align:16.272000pt;}
.v5{vertical-align:17.877333pt;}
.v1{vertical-align:19.290667pt;}
.v20{vertical-align:21.605333pt;}
.v7{vertical-align:23.328000pt;}
.v9{vertical-align:25.520000pt;}
.v25{vertical-align:29.738667pt;}
.v6{vertical-align:31.882667pt;}
.v2b{vertical-align:33.578667pt;}
.v8{vertical-align:35.413333pt;}
.v11{vertical-align:37.472000pt;}
.v22{vertical-align:38.544000pt;}
.v1d{vertical-align:43.557333pt;}
.v16{vertical-align:53.520000pt;}
.v24{vertical-align:55.701333pt;}
.v14{vertical-align:59.338667pt;}
.v29{vertical-align:63.962667pt;}
.v23{vertical-align:66.154667pt;}
.v19{vertical-align:75.280000pt;}
.v1a{vertical-align:77.962667pt;}
.vf{vertical-align:80.421333pt;}
.v26{vertical-align:85.440000pt;}
.v28{vertical-align:88.122667pt;}
.v13{vertical-align:154.624000pt;}
.v1e{vertical-align:157.482667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8a{letter-spacing:0.000540pt;}
.ls5a{letter-spacing:0.004213pt;}
.ls25{letter-spacing:0.128015pt;}
.ls1c{letter-spacing:0.133348pt;}
.ls32{letter-spacing:0.482502pt;}
.ls2e{letter-spacing:0.487835pt;}
.ls8e{letter-spacing:0.570745pt;}
.ls8d{letter-spacing:0.576078pt;}
.ls28{letter-spacing:0.596214pt;}
.ls8f{letter-spacing:0.598340pt;}
.ls7d{letter-spacing:0.659344pt;}
.ls46{letter-spacing:0.659658pt;}
.ls70{letter-spacing:0.659985pt;}
.ls76{letter-spacing:0.664677pt;}
.ls30{letter-spacing:0.664991pt;}
.ls20{letter-spacing:0.665067pt;}
.ls6c{letter-spacing:0.665318pt;}
.ls16{letter-spacing:0.666682pt;}
.ls36{letter-spacing:0.789841pt;}
.lsd{letter-spacing:0.883658pt;}
.ls35{letter-spacing:0.883733pt;}
.ls10{letter-spacing:0.885348pt;}
.ls14{letter-spacing:0.888991pt;}
.ls5d{letter-spacing:0.901348pt;}
.ls60{letter-spacing:0.906682pt;}
.ls2f{letter-spacing:1.008508pt;}
.ls49{letter-spacing:1.013841pt;}
.ls48{letter-spacing:1.166324pt;}
.ls4f{letter-spacing:1.166400pt;}
.ls54{letter-spacing:1.171733pt;}
.ls3c{letter-spacing:1.193067pt;}
.ls1a{letter-spacing:1.193570pt;}
.ls61{letter-spacing:1.198400pt;}
.ls2d{letter-spacing:1.211785pt;}
.ls31{letter-spacing:1.291174pt;}
.ls40{letter-spacing:1.296508pt;}
.ls81{letter-spacing:1.299096pt;}
.ls85{letter-spacing:1.304429pt;}
.ls3a{letter-spacing:1.320161pt;}
.ls7f{letter-spacing:1.327207pt;}
.ls77{letter-spacing:1.328347pt;}
.ls13{letter-spacing:1.330133pt;}
.ls7b{letter-spacing:1.332541pt;}
.ls50{letter-spacing:1.699733pt;}
.ls37{letter-spacing:1.915200pt;}
.ls4d{letter-spacing:1.937047pt;}
.ls55{letter-spacing:1.942381pt;}
.ls1f{letter-spacing:2.164214pt;}
.ls34{letter-spacing:2.214082pt;}
.ls3b{letter-spacing:2.220455pt;}
.ls24{letter-spacing:2.253897pt;}
.ls23{letter-spacing:2.259230pt;}
.ls4a{letter-spacing:2.579230pt;}
.ls2b{letter-spacing:2.584563pt;}
.ls7a{letter-spacing:2.590881pt;}
.ls82{letter-spacing:2.919922pt;}
.ls84{letter-spacing:2.925255pt;}
.ls86{letter-spacing:2.945067pt;}
.ls71{letter-spacing:2.950400pt;}
.ls66{letter-spacing:3.005169pt;}
.ls73{letter-spacing:3.274999pt;}
.ls88{letter-spacing:3.280333pt;}
.ls47{letter-spacing:3.318400pt;}
.ls33{letter-spacing:3.323733pt;}
.ls7e{letter-spacing:3.506422pt;}
.ls79{letter-spacing:3.511756pt;}
.ls3d{letter-spacing:3.824508pt;}
.lsf{letter-spacing:3.918881pt;}
.lse{letter-spacing:4.107174pt;}
.ls6f{letter-spacing:4.113067pt;}
.ls80{letter-spacing:4.118400pt;}
.ls3e{letter-spacing:7.031121pt;}
.ls42{letter-spacing:7.698827pt;}
.ls64{letter-spacing:9.031467pt;}
.ls41{letter-spacing:9.697067pt;}
.ls87{letter-spacing:10.225067pt;}
.ls72{letter-spacing:10.230400pt;}
.ls21{letter-spacing:10.423200pt;}
.ls90{letter-spacing:10.623733pt;}
.ls4{letter-spacing:10.626533pt;}
.ls91{letter-spacing:10.629067pt;}
.ls69{letter-spacing:10.968429pt;}
.ls52{letter-spacing:10.973762pt;}
.ls43{letter-spacing:11.383200pt;}
.ls4c{letter-spacing:11.429459pt;}
.ls7c{letter-spacing:11.593548pt;}
.ls83{letter-spacing:11.598881pt;}
.ls6e{letter-spacing:11.629762pt;}
.ls18{letter-spacing:11.635096pt;}
.ls67{letter-spacing:11.659850pt;}
.lsa{letter-spacing:11.954133pt;}
.ls95{letter-spacing:11.956898pt;}
.ls8c{letter-spacing:12.180479pt;}
.ls8b{letter-spacing:12.220789pt;}
.ls7{letter-spacing:12.273923pt;}
.ls93{letter-spacing:12.528078pt;}
.ls39{letter-spacing:12.536429pt;}
.ls12{letter-spacing:12.957762pt;}
.ls68{letter-spacing:12.963096pt;}
.ls8{letter-spacing:13.070931pt;}
.ls9{letter-spacing:13.098401pt;}
.ls5{letter-spacing:13.177199pt;}
.ls5e{letter-spacing:13.190690pt;}
.ls92{letter-spacing:13.283467pt;}
.ls6b{letter-spacing:13.345183pt;}
.ls74{letter-spacing:13.430068pt;}
.ls5b{letter-spacing:13.609737pt;}
.ls6d{letter-spacing:13.654400pt;}
.ls75{letter-spacing:13.946999pt;}
.ls38{letter-spacing:14.160508pt;}
.ls89{letter-spacing:14.186742pt;}
.ls78{letter-spacing:14.285762pt;}
.ls65{letter-spacing:14.291096pt;}
.ls19{letter-spacing:14.293841pt;}
.ls11{letter-spacing:14.443174pt;}
.ls94{letter-spacing:14.523069pt;}
.ls56{letter-spacing:14.828785pt;}
.ls57{letter-spacing:14.834014pt;}
.ls45{letter-spacing:15.395096pt;}
.ls62{letter-spacing:15.400429pt;}
.ls5c{letter-spacing:15.543922pt;}
.ls15{letter-spacing:15.616508pt;}
.ls58{letter-spacing:15.759504pt;}
.ls59{letter-spacing:15.764733pt;}
.ls1e{letter-spacing:16.061762pt;}
.ls63{letter-spacing:16.086516pt;}
.ls44{letter-spacing:16.087452pt;}
.ls6{letter-spacing:16.205829pt;}
.ls1b{letter-spacing:16.725841pt;}
.ls1d{letter-spacing:18.081067pt;}
.ls2c{letter-spacing:18.581841pt;}
.ls5f{letter-spacing:18.864508pt;}
.ls3f{letter-spacing:20.027733pt;}
.ls17{letter-spacing:22.395174pt;}
.ls27{letter-spacing:24.408429pt;}
.ls2a{letter-spacing:24.413762pt;}
.ls29{letter-spacing:26.427733pt;}
.ls26{letter-spacing:26.433067pt;}
.ls53{letter-spacing:33.096429pt;}
.ls4e{letter-spacing:36.168429pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls1{letter-spacing:64.321067pt;}
.ls51{letter-spacing:75.301841pt;}
.lsb{letter-spacing:99.627200pt;}
.lsc{letter-spacing:102.328429pt;}
.ls6a{letter-spacing:510.222881pt;}
.ls22{letter-spacing:755.465548pt;}
.ls4b{letter-spacing:773.573841pt;}
.wsb9{word-spacing:-14.611813pt;}
.ws5c{word-spacing:-13.283467pt;}
.ws75{word-spacing:-11.955200pt;}
.ws29{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.wsa8{word-spacing:-5.153985pt;}
.wsa6{word-spacing:-5.047717pt;}
.wsa7{word-spacing:-4.782048pt;}
.ws7d{word-spacing:-4.463245pt;}
.ws107{word-spacing:-3.294300pt;}
.wsac{word-spacing:-3.134898pt;}
.wsad{word-spacing:-3.081764pt;}
.wsd6{word-spacing:-2.656693pt;}
.ws43{word-spacing:-2.603559pt;}
.ws93{word-spacing:-2.287467pt;}
.ws7f{word-spacing:-1.965953pt;}
.ws56{word-spacing:-1.912819pt;}
.ws84{word-spacing:-1.859685pt;}
.ws80{word-spacing:-1.753418pt;}
.ws163{word-spacing:-1.673728pt;}
.ws91{word-spacing:-1.624029pt;}
.ws47{word-spacing:-1.594016pt;}
.ws48{word-spacing:-1.540882pt;}
.ws53{word-spacing:-1.487748pt;}
.ws8b{word-spacing:-1.434614pt;}
.ws10b{word-spacing:-1.381481pt;}
.ws3b{word-spacing:-1.222079pt;}
.wsd7{word-spacing:-1.115811pt;}
.wsd8{word-spacing:-1.104914pt;}
.ws3c{word-spacing:-1.062677pt;}
.ws19{word-spacing:-1.052058pt;}
.ws4c{word-spacing:-1.009543pt;}
.wsed{word-spacing:-0.990628pt;}
.ws81{word-spacing:-0.956410pt;}
.ws31{word-spacing:-0.903276pt;}
.ws78{word-spacing:-0.850142pt;}
.ws4e{word-spacing:-0.797008pt;}
.wsa3{word-spacing:-0.743874pt;}
.ws68{word-spacing:-0.637606pt;}
.ws70{word-spacing:-0.584473pt;}
.ws71{word-spacing:-0.531339pt;}
.ws157{word-spacing:-0.478208pt;}
.ws85{word-spacing:-0.371937pt;}
.wse6{word-spacing:-0.327996pt;}
.ws5e{word-spacing:-0.318803pt;}
.ws16{word-spacing:-0.286925pt;}
.ws4b{word-spacing:-0.265669pt;}
.wsc1{word-spacing:-0.250603pt;}
.wsc2{word-spacing:-0.247600pt;}
.ws146{word-spacing:-0.239104pt;}
.ws141{word-spacing:-0.215459pt;}
.ws3a{word-spacing:-0.212535pt;}
.ws136{word-spacing:-0.200480pt;}
.ws127{word-spacing:-0.199742pt;}
.ws128{word-spacing:-0.194503pt;}
.ws15{word-spacing:-0.191283pt;}
.ws13c{word-spacing:-0.185524pt;}
.ws13e{word-spacing:-0.183839pt;}
.ws13f{word-spacing:-0.181034pt;}
.ws13d{word-spacing:-0.177179pt;}
.ws137{word-spacing:-0.176050pt;}
.wsc4{word-spacing:-0.175189pt;}
.wsc3{word-spacing:-0.173128pt;}
.wsc5{word-spacing:-0.170884pt;}
.ws26{word-spacing:-0.159402pt;}
.ws96{word-spacing:-0.149031pt;}
.ws97{word-spacing:-0.147083pt;}
.ws144{word-spacing:-0.143462pt;}
.ws125{word-spacing:-0.139118pt;}
.ws124{word-spacing:-0.133348pt;}
.ws27{word-spacing:-0.106268pt;}
.wsc9{word-spacing:-0.098303pt;}
.ws135{word-spacing:-0.096765pt;}
.ws13{word-spacing:-0.095642pt;}
.ws103{word-spacing:-0.057323pt;}
.ws102{word-spacing:-0.057306pt;}
.ws32{word-spacing:-0.053134pt;}
.ws10e{word-spacing:-0.047821pt;}
.ws134{word-spacing:-0.014857pt;}
.ws132{word-spacing:-0.014830pt;}
.ws133{word-spacing:-0.012089pt;}
.ws168{word-spacing:-0.010453pt;}
.ws156{word-spacing:-0.008619pt;}
.ws12a{word-spacing:-0.008288pt;}
.ws166{word-spacing:-0.008269pt;}
.ws15e{word-spacing:-0.007492pt;}
.ws160{word-spacing:-0.007057pt;}
.wsc7{word-spacing:-0.005136pt;}
.ws172{word-spacing:-0.005052pt;}
.ws142{word-spacing:-0.004985pt;}
.ws169{word-spacing:-0.004898pt;}
.ws15b{word-spacing:-0.004813pt;}
.ws15d{word-spacing:-0.004617pt;}
.ws14d{word-spacing:-0.004471pt;}
.ws170{word-spacing:-0.004352pt;}
.wsdc{word-spacing:-0.003814pt;}
.ws159{word-spacing:-0.003516pt;}
.ws164{word-spacing:-0.003465pt;}
.ws165{word-spacing:-0.003405pt;}
.ws15c{word-spacing:-0.003337pt;}
.ws151{word-spacing:-0.002935pt;}
.wsda{word-spacing:-0.002799pt;}
.ws150{word-spacing:-0.002765pt;}
.wsce{word-spacing:-0.002509pt;}
.wsbe{word-spacing:-0.001770pt;}
.wsc8{word-spacing:-0.001269pt;}
.ws28{word-spacing:-0.000398pt;}
.wsc{word-spacing:-0.000349pt;}
.wsbd{word-spacing:-0.000311pt;}
.ws0{word-spacing:0.000000pt;}
.ws11c{word-spacing:0.000119pt;}
.ws3{word-spacing:0.000561pt;}
.wscf{word-spacing:0.001519pt;}
.wsdd{word-spacing:0.001937pt;}
.wsdb{word-spacing:0.002825pt;}
.wscd{word-spacing:0.003207pt;}
.wsd9{word-spacing:0.005290pt;}
.wsb8{word-spacing:0.007140pt;}
.wse2{word-spacing:0.015324pt;}
.wsb3{word-spacing:0.022588pt;}
.wsb1{word-spacing:0.022616pt;}
.wsb2{word-spacing:0.025357pt;}
.ws95{word-spacing:0.028337pt;}
.wsa2{word-spacing:0.029439pt;}
.wsa1{word-spacing:0.031645pt;}
.wsa0{word-spacing:0.033648pt;}
.wsb4{word-spacing:0.042355pt;}
.wsff{word-spacing:0.043385pt;}
.wsb7{word-spacing:0.044474pt;}
.wsb6{word-spacing:0.045874pt;}
.wsb5{word-spacing:0.046230pt;}
.ws1e{word-spacing:0.047821pt;}
.ws2a{word-spacing:0.053134pt;}
.ws94{word-spacing:0.065807pt;}
.wscc{word-spacing:0.081431pt;}
.wsca{word-spacing:0.084200pt;}
.ws14a{word-spacing:0.085014pt;}
.wscb{word-spacing:0.086781pt;}
.ws12{word-spacing:0.095642pt;}
.ws44{word-spacing:0.106268pt;}
.wsb0{word-spacing:0.117240pt;}
.ws14b{word-spacing:0.127522pt;}
.wsbc{word-spacing:0.137292pt;}
.wsaa{word-spacing:0.142225pt;}
.ws1d{word-spacing:0.143462pt;}
.ws140{word-spacing:0.144839pt;}
.wsab{word-spacing:0.147591pt;}
.ws3f{word-spacing:0.159402pt;}
.ws149{word-spacing:0.170029pt;}
.ws14{word-spacing:0.191283pt;}
.wsc6{word-spacing:0.205593pt;}
.ws2e{word-spacing:0.212535pt;}
.ws20{word-spacing:0.239104pt;}
.ws2b{word-spacing:0.265669pt;}
.ws1f{word-spacing:0.286925pt;}
.ws46{word-spacing:0.318803pt;}
.wsdf{word-spacing:0.322644pt;}
.ws162{word-spacing:0.334746pt;}
.ws57{word-spacing:0.371937pt;}
.ws15a{word-spacing:0.382566pt;}
.wsee{word-spacing:0.383106pt;}
.wsf1{word-spacing:0.385848pt;}
.wsf0{word-spacing:0.389655pt;}
.wsef{word-spacing:0.390590pt;}
.wse0{word-spacing:0.425071pt;}
.wse1{word-spacing:0.442905pt;}
.ws4a{word-spacing:0.531339pt;}
.wsec{word-spacing:0.558397pt;}
.ws65{word-spacing:0.584473pt;}
.ws11b{word-spacing:0.597453pt;}
.ws11d{word-spacing:0.600158pt;}
.ws4d{word-spacing:0.637606pt;}
.ws8c{word-spacing:0.658837pt;}
.ws8d{word-spacing:0.666174pt;}
.ws49{word-spacing:0.690740pt;}
.ws40{word-spacing:0.743874pt;}
.ws153{word-spacing:0.765133pt;}
.ws121{word-spacing:0.776583pt;}
.ws120{word-spacing:0.777519pt;}
.ws122{word-spacing:0.778005pt;}
.ws52{word-spacing:0.797008pt;}
.ws37{word-spacing:0.850142pt;}
.ws12b{word-spacing:0.887349pt;}
.ws64{word-spacing:0.903276pt;}
.ws23{word-spacing:0.908595pt;}
.ws12d{word-spacing:0.956410pt;}
.wse5{word-spacing:1.009543pt;}
.ws18{word-spacing:1.052058pt;}
.ws123{word-spacing:1.062677pt;}
.ws100{word-spacing:1.099446pt;}
.ws101{word-spacing:1.106957pt;}
.ws50{word-spacing:1.115811pt;}
.ws60{word-spacing:1.168945pt;}
.ws21{word-spacing:1.195520pt;}
.ws98{word-spacing:1.201048pt;}
.ws9a{word-spacing:1.201534pt;}
.ws99{word-spacing:1.210570pt;}
.ws45{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.ws108{word-spacing:1.275213pt;}
.wsd3{word-spacing:1.328347pt;}
.ws1c{word-spacing:1.338982pt;}
.ws63{word-spacing:1.381481pt;}
.ws6c{word-spacing:1.434614pt;}
.wse3{word-spacing:1.480345pt;}
.ws41{word-spacing:1.487748pt;}
.wse4{word-spacing:1.493885pt;}
.ws42{word-spacing:1.540882pt;}
.ws6b{word-spacing:1.594016pt;}
.ws6a{word-spacing:1.647150pt;}
.ws155{word-spacing:1.673728pt;}
.ws33{word-spacing:1.700284pt;}
.ws69{word-spacing:1.753418pt;}
.ws12e{word-spacing:1.806551pt;}
.ws17{word-spacing:1.817190pt;}
.ws59{word-spacing:1.859685pt;}
.ws14f{word-spacing:1.912832pt;}
.ws62{word-spacing:1.965953pt;}
.ws1b{word-spacing:2.008474pt;}
.ws16a{word-spacing:2.104115pt;}
.ws39{word-spacing:2.125355pt;}
.wsaf{word-spacing:2.177891pt;}
.ws2d{word-spacing:2.178489pt;}
.wsae{word-spacing:2.178826pt;}
.ws2c{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232046pt;}
.ws1{word-spacing:2.232481pt;}
.ws73{word-spacing:2.284756pt;}
.ws9d{word-spacing:2.288630pt;}
.ws9e{word-spacing:2.289116pt;}
.ws38{word-spacing:2.337890pt;}
.ws5b{word-spacing:2.391024pt;}
.ws89{word-spacing:2.444158pt;}
.ws8a{word-spacing:2.451131pt;}
.ws10{word-spacing:2.486682pt;}
.ws36{word-spacing:2.497292pt;}
.wsfe{word-spacing:2.545023pt;}
.ws82{word-spacing:2.550426pt;}
.wse{word-spacing:2.550432pt;}
.ws131{word-spacing:2.603559pt;}
.ws130{word-spacing:2.623297pt;}
.ws158{word-spacing:2.630144pt;}
.ws74{word-spacing:2.656693pt;}
.ws67{word-spacing:2.709827pt;}
.ws66{word-spacing:2.762961pt;}
.ws79{word-spacing:2.804362pt;}
.ws7e{word-spacing:2.805169pt;}
.ws143{word-spacing:2.816095pt;}
.ws167{word-spacing:2.821427pt;}
.ws24{word-spacing:2.857312pt;}
.ws16d{word-spacing:2.861611pt;}
.ws15f{word-spacing:2.865152pt;}
.wse7{word-spacing:2.869049pt;}
.ws54{word-spacing:2.869229pt;}
.ws14e{word-spacing:2.869248pt;}
.ws12c{word-spacing:2.900421pt;}
.ws35{word-spacing:2.922363pt;}
.ws5f{word-spacing:2.975497pt;}
.ws126{word-spacing:3.005456pt;}
.ws171{word-spacing:3.012710pt;}
.ws6d{word-spacing:3.028630pt;}
.ws154{word-spacing:3.060531pt;}
.ws3e{word-spacing:3.081764pt;}
.ws173{word-spacing:3.108352pt;}
.ws25{word-spacing:3.188032pt;}
.wsd4{word-spacing:3.294300pt;}
.ws16b{word-spacing:3.299635pt;}
.ws92{word-spacing:3.336294pt;}
.ws104{word-spacing:3.347434pt;}
.wse8{word-spacing:3.394720pt;}
.wsea{word-spacing:3.397153pt;}
.wse9{word-spacing:3.400567pt;}
.ws9f{word-spacing:3.420271pt;}
.ws22{word-spacing:3.634381pt;}
.ws34{word-spacing:3.666237pt;}
.ws5d{word-spacing:3.772505pt;}
.ws11{word-spacing:3.777843pt;}
.ws6e{word-spacing:3.825638pt;}
.ws106{word-spacing:3.985040pt;}
.ws13a{word-spacing:4.019835pt;}
.ws138{word-spacing:4.024577pt;}
.ws139{word-spacing:4.028871pt;}
.ws83{word-spacing:4.038174pt;}
.ws8e{word-spacing:4.058630pt;}
.wsa5{word-spacing:4.061660pt;}
.ws87{word-spacing:4.063964pt;}
.ws152{word-spacing:4.064768pt;}
.ws13b{word-spacing:4.091308pt;}
.ws2f{word-spacing:4.144442pt;}
.wsc0{word-spacing:4.250709pt;}
.ws3d{word-spacing:4.303843pt;}
.ws12f{word-spacing:4.312186pt;}
.ws105{word-spacing:4.410111pt;}
.ws1a{word-spacing:4.495155pt;}
.ws55{word-spacing:4.569513pt;}
.ws16f{word-spacing:4.686438pt;}
.ws4f{word-spacing:4.728914pt;}
.ws16e{word-spacing:4.734259pt;}
.ws109{word-spacing:4.782048pt;}
.ws9{word-spacing:4.872362pt;}
.ws16c{word-spacing:4.973363pt;}
.ws5a{word-spacing:5.100851pt;}
.wseb{word-spacing:5.153985pt;}
.ws145{word-spacing:5.164646pt;}
.ws7a{word-spacing:5.260253pt;}
.ws61{word-spacing:5.313387pt;}
.ws72{word-spacing:5.525922pt;}
.ws10a{word-spacing:5.685324pt;}
.ws58{word-spacing:5.738458pt;}
.wsbf{word-spacing:5.791591pt;}
.ws7b{word-spacing:6.004127pt;}
.ws51{word-spacing:6.163529pt;}
.wsd5{word-spacing:6.429198pt;}
.ws148{word-spacing:6.503629pt;}
.ws129{word-spacing:6.535466pt;}
.ws161{word-spacing:6.551450pt;}
.ws9c{word-spacing:7.960914pt;}
.wsf{word-spacing:8.055981pt;}
.wsa4{word-spacing:8.488326pt;}
.ws86{word-spacing:8.490630pt;}
.ws7{word-spacing:8.740496pt;}
.ws7c{word-spacing:8.820222pt;}
.ws8{word-spacing:10.525789pt;}
.ws113{word-spacing:11.906688pt;}
.ws114{word-spacing:11.908762pt;}
.ws4{word-spacing:13.761632pt;}
.wsa{word-spacing:14.282342pt;}
.ws147{word-spacing:16.038692pt;}
.ws30{word-spacing:16.046428pt;}
.ws6{word-spacing:19.857270pt;}
.ws10f{word-spacing:110.465263pt;}
.ws10d{word-spacing:123.110929pt;}
.ws14c{word-spacing:134.715181pt;}
.ws10c{word-spacing:145.301589pt;}
.wsde{word-spacing:180.571341pt;}
.ws77{word-spacing:202.999296pt;}
.ws76{word-spacing:203.047117pt;}
.ws111{word-spacing:217.345536pt;}
.wsf5{word-spacing:227.622443pt;}
.wsf9{word-spacing:227.722650pt;}
.ws110{word-spacing:227.909453pt;}
.ws112{word-spacing:233.240158pt;}
.wsa9{word-spacing:242.162993pt;}
.wsf6{word-spacing:244.912000pt;}
.wsf8{word-spacing:245.843226pt;}
.wsf7{word-spacing:251.633050pt;}
.wsfa{word-spacing:259.666944pt;}
.wsf3{word-spacing:264.871475pt;}
.wsfb{word-spacing:267.653018pt;}
.wsf4{word-spacing:271.622144pt;}
.wsf2{word-spacing:291.563418pt;}
.wsfd{word-spacing:299.501670pt;}
.wsfc{word-spacing:317.147546pt;}
.wsd2{word-spacing:361.812173pt;}
.wsd0{word-spacing:376.853308pt;}
.wsd1{word-spacing:388.783104pt;}
.ws116{word-spacing:507.003776pt;}
.ws119{word-spacing:507.139584pt;}
.ws6f{word-spacing:512.830259pt;}
.ws11f{word-spacing:523.781222pt;}
.ws118{word-spacing:525.224559pt;}
.ws117{word-spacing:531.049984pt;}
.ws11a{word-spacing:547.069952pt;}
.ws9b{word-spacing:556.873216pt;}
.ws115{word-spacing:570.980352pt;}
.ws11e{word-spacing:590.873805pt;}
.ws88{word-spacing:679.422753pt;}
.ws8f{word-spacing:757.919964pt;}
.ws90{word-spacing:848.282181pt;}
.wsbb{word-spacing:1384.765660pt;}
.wsba{word-spacing:1396.829660pt;}
._12{margin-left:-6.301686pt;}
._6{margin-left:-5.260288pt;}
._3b{margin-left:-4.367622pt;}
._0{margin-left:-3.421811pt;}
._14{margin-left:-1.880947pt;}
._2{margin-left:-0.967034pt;}
._27{width:1.195520pt;}
._7{width:2.665552pt;}
._2a{width:3.985040pt;}
._36{width:4.972053pt;}
._5f{width:9.075323pt;}
._1{width:11.530016pt;}
._e{width:13.175632pt;}
._8{width:14.282451pt;}
._b{width:15.764896pt;}
._d{width:17.034745pt;}
._a{width:18.129350pt;}
._6e{width:19.064614pt;}
._9{width:20.047533pt;}
._13{width:21.306716pt;}
._3{width:22.502128pt;}
._11{width:23.655195pt;}
._4d{width:24.994127pt;}
._c{width:26.072954pt;}
._4{width:27.783619pt;}
._5{width:29.648896pt;}
._15{width:31.434001pt;}
._17{width:32.597519pt;}
._19{width:33.548718pt;}
._16{width:34.823945pt;}
._39{width:36.407287pt;}
._61{width:121.952000pt;}
._48{width:159.099802pt;}
._72{width:160.556055pt;}
._41{width:165.555610pt;}
._4a{width:179.232358pt;}
._3e{width:186.788045pt;}
._1c{width:188.892160pt;}
._58{width:204.379793pt;}
._21{width:209.359462pt;}
._25{width:214.954496pt;}
._50{width:217.154253pt;}
._60{width:218.158490pt;}
._57{width:222.987042pt;}
._22{width:225.188147pt;}
._4f{width:235.756544pt;}
._56{width:238.262460pt;}
._55{width:242.355814pt;}
._52{width:243.742618pt;}
._4e{width:249.720218pt;}
._42{width:251.298304pt;}
._53{width:253.115494pt;}
._5e{width:255.506534pt;}
._2b{width:256.583442pt;}
._59{width:257.610650pt;}
._3c{width:264.178029pt;}
._3d{width:265.533457pt;}
._73{width:270.005734pt;}
._5b{width:271.717786pt;}
._44{width:275.809088pt;}
._4b{width:278.125773pt;}
._4c{width:279.751680pt;}
._5a{width:284.198042pt;}
._45{width:289.985331pt;}
._5c{width:291.563418pt;}
._51{width:295.532544pt;}
._40{width:298.114867pt;}
._2d{width:306.403802pt;}
._46{width:311.424979pt;}
._49{width:322.455654pt;}
._43{width:327.142093pt;}
._70{width:330.295234pt;}
._2f{width:333.884826pt;}
._54{width:335.749837pt;}
._23{width:341.599910pt;}
._31{width:343.257702pt;}
._5d{width:346.987725pt;}
._71{width:357.060480pt;}
._47{width:359.325491pt;}
._30{width:364.585779pt;}
._35{width:366.450790pt;}
._33{width:373.384806pt;}
._2c{width:379.171123pt;}
._2e{width:388.926566pt;}
._1f{width:392.704410pt;}
._37{width:394.882880pt;}
._32{width:410.398106pt;}
._34{width:414.223770pt;}
._67{width:417.140087pt;}
._68{width:428.952337pt;}
._1e{width:432.682598pt;}
._20{width:446.598451pt;}
._3f{width:449.982140pt;}
._1d{width:461.135974pt;}
._66{width:483.766460pt;}
._28{width:495.377617pt;}
._29{width:512.259844pt;}
._63{width:523.111731pt;}
._62{width:532.484608pt;}
._6b{width:551.086899pt;}
._38{width:562.241280pt;}
._65{width:575.571149pt;}
._26{width:586.738441pt;}
._6d{width:590.013030pt;}
._74{width:592.677890pt;}
._6c{width:608.471859pt;}
._64{width:615.118950pt;}
._f{width:643.431486pt;}
._24{width:658.348954pt;}
._1b{width:787.847680pt;}
._1a{width:809.367040pt;}
._6f{width:823.161510pt;}
._18{width:974.492262pt;}
._69{width:1127.274146pt;}
._6a{width:1132.731051pt;}
._3a{width:2224.040000pt;}
._10{width:2245.293333pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsf{font-size:42.077867pt;}
.fsb{font-size:42.507200pt;}
.fsc{font-size:47.820800pt;}
.fs10{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:74.387733pt;}
.fs2{font-size:74.666667pt;}
.fs8{font-size:95.641600pt;}
.fs6{font-size:114.229120pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:14.848190pt;}
.y6c{bottom:28.346667pt;}
.y6{bottom:44.973338pt;}
.y5{bottom:67.373337pt;}
.y4{bottom:89.773337pt;}
.y18c{bottom:92.108000pt;}
.y1e5{bottom:92.164000pt;}
.y3e{bottom:93.018667pt;}
.y15f{bottom:93.290667pt;}
.y130{bottom:96.754667pt;}
.y219{bottom:98.906667pt;}
.y254{bottom:100.526667pt;}
.y6b{bottom:101.325333pt;}
.ycb{bottom:105.909333pt;}
.ya3{bottom:106.308000pt;}
.y18b{bottom:108.844000pt;}
.y1e4{bottom:108.901333pt;}
.y3d{bottom:108.920000pt;}
.y21f{bottom:109.088000pt;}
.y15e{bottom:110.028000pt;}
.y12f{bottom:113.490667pt;}
.y218{bottom:115.644000pt;}
.y253{bottom:117.264000pt;}
.y6a{bottom:118.062667pt;}
.yca{bottom:122.646667pt;}
.ya2{bottom:123.045333pt;}
.y21e{bottom:123.700000pt;}
.y23{bottom:123.790666pt;}
.y3c{bottom:124.820000pt;}
.y18a{bottom:125.581333pt;}
.y1e3{bottom:125.638667pt;}
.y15d{bottom:126.765333pt;}
.y2d6{bottom:130.218667pt;}
.y12e{bottom:130.228000pt;}
.y217{bottom:132.381333pt;}
.y29e{bottom:132.512000pt;}
.y252{bottom:134.001333pt;}
.y69{bottom:134.800000pt;}
.y29d{bottom:138.822667pt;}
.y26e{bottom:138.985333pt;}
.yc9{bottom:139.384000pt;}
.ya1{bottom:139.782667pt;}
.y3b{bottom:140.720000pt;}
.y1e2{bottom:142.376000pt;}
.y15c{bottom:143.502667pt;}
.y21d{bottom:144.714667pt;}
.y2d5{bottom:145.561333pt;}
.y189{bottom:146.304000pt;}
.y1b2{bottom:146.386667pt;}
.y216{bottom:149.118667pt;}
.y29b{bottom:150.461333pt;}
.y251{bottom:150.738667pt;}
.y68{bottom:155.522667pt;}
.y26d{bottom:155.722667pt;}
.yc8{bottom:156.121333pt;}
.ya0{bottom:156.520000pt;}
.y3a{bottom:156.621333pt;}
.y12c{bottom:156.678667pt;}
.y12d{bottom:156.910667pt;}
.y1e1{bottom:159.113333pt;}
.y21c{bottom:159.325333pt;}
.y15b{bottom:160.238667pt;}
.y2d4{bottom:160.902667pt;}
.y12b{bottom:160.913333pt;}
.y1b1{bottom:163.124000pt;}
.y29c{bottom:164.153333pt;}
.y188{bottom:164.237333pt;}
.y215{bottom:165.856000pt;}
.y250{bottom:167.476000pt;}
.y26c{bottom:172.460000pt;}
.y39{bottom:172.521333pt;}
.yc7{bottom:172.858667pt;}
.y9f{bottom:173.257333pt;}
.y1a{bottom:175.052000pt;}
.y1e0{bottom:175.850667pt;}
.y2d3{bottom:176.245333pt;}
.y1b0{bottom:179.861333pt;}
.y214{bottom:182.593333pt;}
.y29a{bottom:183.174667pt;}
.y24f{bottom:184.213333pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y38{bottom:188.421333pt;}
.y26b{bottom:189.197333pt;}
.yc6{bottom:189.596000pt;}
.y9e{bottom:189.994667pt;}
.y21b{bottom:190.089333pt;}
.y2d2{bottom:191.588000pt;}
.y12a{bottom:191.598667pt;}
.y15a{bottom:192.514667pt;}
.y1df{bottom:192.588000pt;}
.y187{bottom:194.125333pt;}
.y297{bottom:195.794667pt;}
.y1af{bottom:196.598667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y213{bottom:199.330667pt;}
.y24e{bottom:200.950667pt;}
.y296{bottom:202.104000pt;}
.y37{bottom:204.322667pt;}
.y2d1{bottom:204.600000pt;}
.y26a{bottom:205.934667pt;}
.yc5{bottom:206.333333pt;}
.y9d{bottom:206.732000pt;}
.y2d0{bottom:206.930667pt;}
.y299{bottom:208.413333pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y1de{bottom:209.325333pt;}
.y186{bottom:210.862667pt;}
.y1ae{bottom:213.336000pt;}
.y212{bottom:216.066667pt;}
.y24d{bottom:217.688000pt;}
.y298{bottom:221.033333pt;}
.y2cf{bottom:222.273333pt;}
.y67{bottom:222.322667pt;}
.y269{bottom:222.672000pt;}
.yc4{bottom:223.070667pt;}
.y9c{bottom:223.469333pt;}
.y128{bottom:224.825333pt;}
.y127{bottom:225.496000pt;}
.y1dd{bottom:226.062667pt;}
.y159{bottom:228.562667pt;}
.y1ad{bottom:230.073333pt;}
.yee{bottom:230.426667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y211{bottom:232.804000pt;}
.y11e{bottom:234.401333pt;}
.y24c{bottom:234.425333pt;}
.y11f{bottom:234.568000pt;}
.y185{bottom:235.190667pt;}
.y129{bottom:237.412000pt;}
.y2ce{bottom:237.616000pt;}
.y268{bottom:239.409333pt;}
.y66{bottom:239.617333pt;}
.yc3{bottom:239.808000pt;}
.y123{bottom:239.864000pt;}
.y295{bottom:240.054667pt;}
.y9b{bottom:240.206667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1dc{bottom:242.800000pt;}
.y11d{bottom:246.253333pt;}
.y1ac{bottom:246.810667pt;}
.yed{bottom:247.164000pt;}
.y126{bottom:248.301333pt;}
.y122{bottom:248.352000pt;}
.y11b{bottom:249.016000pt;}
.y210{bottom:249.541333pt;}
.y24b{bottom:251.162667pt;}
.y184{bottom:251.928000pt;}
.y294{bottom:252.673333pt;}
.y2cd{bottom:252.958667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y158{bottom:255.402667pt;}
.y125{bottom:255.533333pt;}
.y267{bottom:256.146667pt;}
.y121{bottom:256.322667pt;}
.yc2{bottom:256.545333pt;}
.y9a{bottom:256.944000pt;}
.y124{bottom:258.578667pt;}
.y1db{bottom:259.537333pt;}
.y11c{bottom:263.362667pt;}
.y1ab{bottom:263.548000pt;}
.yec{bottom:263.901333pt;}
.y120{bottom:264.292000pt;}
.y157{bottom:265.218667pt;}
.y20f{bottom:266.278667pt;}
.y36{bottom:266.570667pt;}
.y24a{bottom:267.900000pt;}
.y2cc{bottom:268.301333pt;}
.y156{bottom:270.738667pt;}
.y293{bottom:271.694667pt;}
.y65{bottom:272.853333pt;}
.y266{bottom:272.884000pt;}
.yc1{bottom:273.282667pt;}
.y99{bottom:273.681333pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y1da{bottom:276.274667pt;}
.y21a{bottom:277.266667pt;}
.y183{bottom:278.362667pt;}
.y1aa{bottom:280.285333pt;}
.yeb{bottom:280.638667pt;}
.y35{bottom:282.470667pt;}
.y20e{bottom:283.016000pt;}
.y2cb{bottom:283.644000pt;}
.y249{bottom:284.637333pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y265{bottom:289.621333pt;}
.yc0{bottom:290.020000pt;}
.y64{bottom:290.148000pt;}
.y98{bottom:290.417333pt;}
.y292{bottom:290.716000pt;}
.y1d9{bottom:293.012000pt;}
.y182{bottom:295.100000pt;}
.y1a9{bottom:297.022667pt;}
.y290{bottom:297.026667pt;}
.yea{bottom:297.376000pt;}
.y34{bottom:298.370667pt;}
.y301{bottom:298.920000pt;}
.y2ca{bottom:298.985333pt;}
.y20d{bottom:299.753333pt;}
.y248{bottom:301.374667pt;}
.y291{bottom:303.336000pt;}
.y264{bottom:306.358667pt;}
.ybf{bottom:306.757333pt;}
.y97{bottom:307.154667pt;}
.y11a{bottom:307.212000pt;}
.y63{bottom:307.444000pt;}
.y11{bottom:309.452000pt;}
.y1d8{bottom:309.749333pt;}
.y155{bottom:312.826667pt;}
.y1a8{bottom:313.760000pt;}
.ye9{bottom:314.113333pt;}
.y300{bottom:314.261333pt;}
.y33{bottom:314.272000pt;}
.y2c9{bottom:314.328000pt;}
.y20c{bottom:316.490667pt;}
.y247{bottom:318.112000pt;}
.y28f{bottom:322.357333pt;}
.y263{bottom:323.096000pt;}
.ybe{bottom:323.494667pt;}
.y96{bottom:323.892000pt;}
.y119{bottom:323.949333pt;}
.y62{bottom:324.738667pt;}
.y181{bottom:324.881333pt;}
.y1d7{bottom:326.486667pt;}
.y28e{bottom:328.666667pt;}
.y154{bottom:329.564000pt;}
.y2ff{bottom:329.604000pt;}
.y2c8{bottom:329.670667pt;}
.y1a7{bottom:330.497333pt;}
.ye8{bottom:330.850667pt;}
.y20b{bottom:333.228000pt;}
.y246{bottom:338.834667pt;}
.y32{bottom:339.470667pt;}
.y262{bottom:339.833333pt;}
.ybd{bottom:340.232000pt;}
.y95{bottom:340.629333pt;}
.y118{bottom:340.686667pt;}
.y180{bottom:341.618667pt;}
.y61{bottom:342.033333pt;}
.y1d6{bottom:343.224000pt;}
.y10{bottom:343.809333pt;}
.y2c7{bottom:345.013333pt;}
.y153{bottom:346.301333pt;}
.y1a6{bottom:347.234667pt;}
.ye7{bottom:347.588000pt;}
.y20a{bottom:349.965333pt;}
.y28d{bottom:353.997333pt;}
.y31{bottom:355.370667pt;}
.y261{bottom:356.570667pt;}
.ybc{bottom:356.968000pt;}
.y94{bottom:357.366667pt;}
.y17f{bottom:358.356000pt;}
.y287{bottom:359.326667pt;}
.y60{bottom:359.329333pt;}
.y1d5{bottom:359.961333pt;}
.y28b{bottom:360.308000pt;}
.y2c6{bottom:360.356000pt;}
.yf{bottom:362.706666pt;}
.y1a5{bottom:363.972000pt;}
.ye6{bottom:364.325333pt;}
.y2fe{bottom:364.341333pt;}
.y117{bottom:365.792000pt;}
.y28c{bottom:366.617333pt;}
.y209{bottom:366.702667pt;}
.y152{bottom:367.024000pt;}
.y245{bottom:368.722667pt;}
.y30{bottom:371.270667pt;}
.y260{bottom:373.308000pt;}
.ybb{bottom:373.705333pt;}
.y93{bottom:374.104000pt;}
.y17e{bottom:375.093333pt;}
.y2c5{bottom:375.698667pt;}
.y5f{bottom:376.624000pt;}
.y1d4{bottom:376.697333pt;}
.y2fd{bottom:379.684000pt;}
.y1a4{bottom:380.709333pt;}
.ye5{bottom:381.062667pt;}
.y116{bottom:382.529333pt;}
.y208{bottom:383.440000pt;}
.y244{bottom:385.458667pt;}
.y28a{bottom:385.638667pt;}
.y2f{bottom:387.172000pt;}
.y25f{bottom:390.045333pt;}
.yba{bottom:390.442667pt;}
.y92{bottom:390.841333pt;}
.y2c4{bottom:391.041333pt;}
.y17d{bottom:391.830667pt;}
.y288{bottom:391.948000pt;}
.y1d3{bottom:393.434667pt;}
.y5e{bottom:393.920000pt;}
.y2fc{bottom:395.025333pt;}
.y1a3{bottom:397.446667pt;}
.ye4{bottom:397.798667pt;}
.y150{bottom:398.174667pt;}
.y289{bottom:398.258667pt;}
.y115{bottom:399.266667pt;}
.y207{bottom:400.177333pt;}
.y243{bottom:402.196000pt;}
.y2e{bottom:403.072000pt;}
.y2c3{bottom:406.384000pt;}
.y25e{bottom:406.782667pt;}
.yb9{bottom:407.180000pt;}
.y91{bottom:407.578667pt;}
.y17c{bottom:408.568000pt;}
.y14f{bottom:409.861333pt;}
.y1d2{bottom:410.172000pt;}
.y2fb{bottom:410.368000pt;}
.y5d{bottom:411.214667pt;}
.y151{bottom:412.624000pt;}
.y1a2{bottom:414.184000pt;}
.y114{bottom:416.004000pt;}
.y206{bottom:416.914667pt;}
.y286{bottom:417.280000pt;}
.ye3{bottom:418.521333pt;}
.y242{bottom:418.933333pt;}
.y2c2{bottom:421.725333pt;}
.y25d{bottom:423.518667pt;}
.yb8{bottom:423.917333pt;}
.y90{bottom:424.316000pt;}
.y17b{bottom:425.305333pt;}
.y2fa{bottom:425.710667pt;}
.y1d1{bottom:426.909333pt;}
.y2d{bottom:426.942667pt;}
.y5c{bottom:428.509333pt;}
.y14e{bottom:429.361333pt;}
.y1a1{bottom:430.921333pt;}
.ye{bottom:430.990669pt;}
.y113{bottom:432.741333pt;}
.y205{bottom:433.652000pt;}
.y241{bottom:435.670667pt;}
.y2c1{bottom:437.068000pt;}
.y25c{bottom:440.256000pt;}
.yb7{bottom:440.654667pt;}
.y8f{bottom:441.053333pt;}
.y17a{bottom:442.042667pt;}
.y2c{bottom:442.842667pt;}
.y1d0{bottom:443.646667pt;}
.y5b{bottom:445.805333pt;}
.y285{bottom:446.648000pt;}
.yd{bottom:446.990669pt;}
.y1a0{bottom:447.658667pt;}
.y112{bottom:449.478667pt;}
.y240{bottom:452.408000pt;}
.y2c0{bottom:452.410667pt;}
.y14c{bottom:452.789333pt;}
.y2f9{bottom:454.065333pt;}
.y2f8{bottom:456.396000pt;}
.y25b{bottom:456.993333pt;}
.yb6{bottom:457.392000pt;}
.y8e{bottom:457.790667pt;}
.y2b{bottom:458.744000pt;}
.ye0{bottom:458.800000pt;}
.y1cf{bottom:460.384000pt;}
.y179{bottom:462.765333pt;}
.yc{bottom:462.990669pt;}
.y5a{bottom:463.100000pt;}
.y14d{bottom:463.254667pt;}
.ye2{bottom:466.105333pt;}
.y111{bottom:466.216000pt;}
.y14b{bottom:467.237333pt;}
.y2bf{bottom:467.753333pt;}
.y23f{bottom:469.145333pt;}
.y204{bottom:469.326667pt;}
.y2f7{bottom:471.738667pt;}
.yde{bottom:473.412000pt;}
.y25a{bottom:473.730667pt;}
.yb5{bottom:474.129333pt;}
.y8d{bottom:474.528000pt;}
.y2a{bottom:474.644000pt;}
.y1ce{bottom:477.121333pt;}
.yb{bottom:478.990666pt;}
.y59{bottom:480.394667pt;}
.ye1{bottom:480.717333pt;}
.y110{bottom:482.953333pt;}
.y2be{bottom:483.096000pt;}
.y14a{bottom:483.974667pt;}
.y284{bottom:484.889333pt;}
.y23e{bottom:485.882667pt;}
.y203{bottom:486.076000pt;}
.y2f6{bottom:487.081333pt;}
.ydf{bottom:488.022667pt;}
.y259{bottom:490.468000pt;}
.y29{bottom:490.544000pt;}
.y19f{bottom:490.725333pt;}
.yb4{bottom:490.866667pt;}
.y8c{bottom:491.265333pt;}
.y178{bottom:492.653333pt;}
.y1cd{bottom:493.858667pt;}
.ya{bottom:494.990666pt;}
.y58{bottom:497.690667pt;}
.y2bd{bottom:498.438667pt;}
.y10f{bottom:499.690667pt;}
.y202{bottom:500.688000pt;}
.y149{bottom:500.712000pt;}
.y2f5{bottom:502.424000pt;}
.y23d{bottom:502.620000pt;}
.y19e{bottom:505.337333pt;}
.y28{bottom:506.445333pt;}
.yb3{bottom:507.604000pt;}
.y8b{bottom:508.002667pt;}
.ydd{bottom:509.037333pt;}
.y177{bottom:509.390667pt;}
.y258{bottom:511.190667pt;}
.y2bc{bottom:513.781333pt;}
.y57{bottom:514.985333pt;}
.y201{bottom:515.300000pt;}
.y10e{bottom:516.428000pt;}
.y148{bottom:517.449333pt;}
.y283{bottom:517.566667pt;}
.y2f4{bottom:517.766667pt;}
.y23c{bottom:519.357333pt;}
.y19d{bottom:519.949333pt;}
.y27{bottom:522.345333pt;}
.ydb{bottom:523.649333pt;}
.yb2{bottom:524.341333pt;}
.y8a{bottom:524.740000pt;}
.y2bb{bottom:529.124000pt;}
.y200{bottom:529.912000pt;}
.y56{bottom:532.281333pt;}
.y2f3{bottom:533.108000pt;}
.y10d{bottom:533.165333pt;}
.y147{bottom:534.186667pt;}
.y176{bottom:534.496000pt;}
.y19c{bottom:534.561333pt;}
.y23b{bottom:536.094667pt;}
.y1cc{bottom:536.926667pt;}
.y26{bottom:538.245333pt;}
.yda{bottom:538.261333pt;}
.yb1{bottom:541.078667pt;}
.y282{bottom:541.158667pt;}
.y89{bottom:541.477333pt;}
.y2ba{bottom:544.466667pt;}
.y1ff{bottom:544.524000pt;}
.y2f2{bottom:548.450667pt;}
.y19b{bottom:549.173333pt;}
.y55{bottom:549.576000pt;}
.y146{bottom:550.924000pt;}
.y1cb{bottom:551.538667pt;}
.y23a{bottom:552.832000pt;}
.ydc{bottom:552.873333pt;}
.y25{bottom:554.146667pt;}
.y281{bottom:556.780000pt;}
.yb0{bottom:557.816000pt;}
.y88{bottom:558.214667pt;}
.y1fe{bottom:559.136000pt;}
.y2b9{bottom:559.808000pt;}
.y10c{bottom:561.325333pt;}
.y19a{bottom:563.785333pt;}
.y2f1{bottom:563.793333pt;}
.y1ca{bottom:566.150667pt;}
.y54{bottom:566.870667pt;}
.y145{bottom:567.661333pt;}
.y175{bottom:567.970667pt;}
.y239{bottom:569.569333pt;}
.y24{bottom:570.046667pt;}
.y1fd{bottom:573.748000pt;}
.y9{bottom:573.786667pt;}
.yd9{bottom:573.886667pt;}
.yaf{bottom:574.553333pt;}
.y87{bottom:574.952000pt;}
.y2b8{bottom:575.150667pt;}
.y199{bottom:578.397333pt;}
.y2f0{bottom:579.136000pt;}
.y280{bottom:580.372000pt;}
.y1c9{bottom:580.761333pt;}
.y10a{bottom:581.005333pt;}
.y144{bottom:581.392000pt;}
.y10b{bottom:581.430667pt;}
.y53{bottom:584.166667pt;}
.y174{bottom:584.708000pt;}
.y143{bottom:585.974667pt;}
.y238{bottom:586.306667pt;}
.y1fc{bottom:588.358667pt;}
.yd8{bottom:588.498667pt;}
.y2b7{bottom:590.493333pt;}
.yae{bottom:591.290667pt;}
.y86{bottom:591.689333pt;}
.y8{bottom:592.685334pt;}
.y198{bottom:593.008000pt;}
.y2ef{bottom:594.478667pt;}
.y1c8{bottom:595.373333pt;}
.y173{bottom:601.445333pt;}
.y52{bottom:601.461333pt;}
.y1c2{bottom:601.654667pt;}
.y1fb{bottom:602.970667pt;}
.yd7{bottom:603.110667pt;}
.y27f{bottom:603.962667pt;}
.y142{bottom:604.712000pt;}
.y2b6{bottom:605.836000pt;}
.y197{bottom:607.620000pt;}
.yad{bottom:608.028000pt;}
.y85{bottom:608.426667pt;}
.y2ee{bottom:609.821333pt;}
.y1c7{bottom:609.985333pt;}
.y1fa{bottom:617.582667pt;}
.yd3{bottom:617.722667pt;}
.y172{bottom:618.182667pt;}
.y141{bottom:618.442667pt;}
.y51{bottom:618.756000pt;}
.y109{bottom:619.268000pt;}
.y27e{bottom:619.585333pt;}
.y2b5{bottom:621.178667pt;}
.y237{bottom:621.981333pt;}
.y196{bottom:622.232000pt;}
.y140{bottom:623.090667pt;}
.y1c6{bottom:624.597333pt;}
.yac{bottom:624.765333pt;}
.y84{bottom:625.164000pt;}
.y1f9{bottom:632.194667pt;}
.yd2{bottom:632.334667pt;}
.y171{bottom:634.920000pt;}
.y108{bottom:636.005333pt;}
.y50{bottom:636.052000pt;}
.y2b4{bottom:636.521333pt;}
.y195{bottom:636.844000pt;}
.y236{bottom:638.730667pt;}
.y1c5{bottom:639.209333pt;}
.y2ed{bottom:640.506667pt;}
.yab{bottom:641.502667pt;}
.y83{bottom:641.901333pt;}
.y27d{bottom:643.176000pt;}
.y7{bottom:645.598667pt;}
.y1f8{bottom:646.806667pt;}
.yd6{bottom:646.946667pt;}
.y13f{bottom:647.296000pt;}
.y194{bottom:651.456000pt;}
.y170{bottom:651.657333pt;}
.y2b3{bottom:651.864000pt;}
.y13e{bottom:652.034667pt;}
.y107{bottom:652.742667pt;}
.y235{bottom:653.342667pt;}
.y4f{bottom:653.346667pt;}
.y1c4{bottom:653.821333pt;}
.y2ec{bottom:655.848000pt;}
.yaa{bottom:658.240000pt;}
.y13c{bottom:658.437333pt;}
.y82{bottom:658.638667pt;}
.y27c{bottom:658.797333pt;}
.y1f7{bottom:661.418667pt;}
.yd5{bottom:661.558667pt;}
.y13b{bottom:662.421333pt;}
.y193{bottom:666.068000pt;}
.y2b2{bottom:667.206667pt;}
.y234{bottom:667.954667pt;}
.y16f{bottom:668.394667pt;}
.y1c3{bottom:668.433333pt;}
.y3{bottom:668.977329pt;}
.y106{bottom:669.480000pt;}
.y13d{bottom:670.393333pt;}
.y4e{bottom:670.642667pt;}
.y2eb{bottom:671.190667pt;}
.y27b{bottom:674.418667pt;}
.ya9{bottom:674.977333pt;}
.y81{bottom:675.376000pt;}
.y1f6{bottom:676.030667pt;}
.yd4{bottom:676.169333pt;}
.y192{bottom:680.680000pt;}
.y2b1{bottom:682.548000pt;}
.y233{bottom:682.566667pt;}
.y16e{bottom:685.132000pt;}
.y105{bottom:686.217333pt;}
.y2ea{bottom:686.533333pt;}
.y4d{bottom:687.937333pt;}
.y1c1{bottom:689.446667pt;}
.y27a{bottom:690.040000pt;}
.y1f5{bottom:690.642667pt;}
.ya8{bottom:691.714667pt;}
.y80{bottom:692.113333pt;}
.y191{bottom:695.292000pt;}
.y232{bottom:697.178667pt;}
.yd1{bottom:697.184000pt;}
.y2b0{bottom:697.890667pt;}
.y16d{bottom:701.869333pt;}
.y2e9{bottom:701.876000pt;}
.y13a{bottom:702.746667pt;}
.y104{bottom:702.954667pt;}
.y1c0{bottom:704.058667pt;}
.y4c{bottom:705.232000pt;}
.y1f4{bottom:705.254667pt;}
.y139{bottom:707.485333pt;}
.ya7{bottom:708.452000pt;}
.y7f{bottom:708.850667pt;}
.y190{bottom:709.904000pt;}
.y231{bottom:711.790667pt;}
.y2af{bottom:713.233333pt;}
.y137{bottom:713.888000pt;}
.y2e8{bottom:717.218667pt;}
.y136{bottom:717.872000pt;}
.y16c{bottom:718.606667pt;}
.y1bf{bottom:718.670667pt;}
.y103{bottom:719.692000pt;}
.y279{bottom:721.602667pt;}
.y4b{bottom:722.528000pt;}
.y18f{bottom:724.516000pt;}
.ya6{bottom:725.189333pt;}
.y7e{bottom:725.588000pt;}
.y138{bottom:725.844000pt;}
.y1f3{bottom:726.268000pt;}
.y230{bottom:726.402667pt;}
.yd0{bottom:727.946667pt;}
.y2ae{bottom:728.576000pt;}
.y2e7{bottom:732.561333pt;}
.y1be{bottom:733.282667pt;}
.y102{bottom:736.429333pt;}
.y278{bottom:738.340000pt;}
.y16b{bottom:739.328000pt;}
.y4a{bottom:739.822667pt;}
.y22f{bottom:741.013333pt;}
.ya5{bottom:741.926667pt;}
.y7d{bottom:742.324000pt;}
.y2ad{bottom:743.918667pt;}
.y18e{bottom:745.529333pt;}
.y1bd{bottom:747.894667pt;}
.y2e6{bottom:747.904000pt;}
.y1b7{bottom:754.176000pt;}
.y1f2{bottom:754.374667pt;}
.y277{bottom:755.077333pt;}
.y22e{bottom:755.625333pt;}
.y101{bottom:757.152000pt;}
.y16a{bottom:757.261333pt;}
.ycf{bottom:757.468000pt;}
.y257{bottom:758.664000pt;}
.y7c{bottom:759.061333pt;}
.y2ac{bottom:759.261333pt;}
.y135{bottom:761.453333pt;}
.y1bc{bottom:762.506667pt;}
.ya4{bottom:762.648000pt;}
.y2e5{bottom:763.246667pt;}
.y22d{bottom:770.237333pt;}
.y276{bottom:771.814667pt;}
.y49{bottom:774.121333pt;}
.yce{bottom:774.205333pt;}
.y2ab{bottom:774.604000pt;}
.y256{bottom:775.401333pt;}
.y7b{bottom:775.798667pt;}
.y18d{bottom:776.292000pt;}
.y1bb{bottom:777.118667pt;}
.y134{bottom:778.190667pt;}
.y2e4{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y22c{bottom:784.849333pt;}
.y1f1{bottom:787.356000pt;}
.y275{bottom:788.552000pt;}
.y2aa{bottom:789.946667pt;}
.y1ba{bottom:791.730667pt;}
.y255{bottom:792.138667pt;}
.y48{bottom:792.325333pt;}
.y7a{bottom:792.536000pt;}
.y2e3{bottom:793.930667pt;}
.ycd{bottom:794.928000pt;}
.y169{bottom:796.760000pt;}
.yfe{bottom:797.280000pt;}
.y100{bottom:797.429333pt;}
.y22b{bottom:799.461333pt;}
.y47{bottom:802.813333pt;}
.y1f0{bottom:804.093333pt;}
.y274{bottom:805.289333pt;}
.y1b9{bottom:806.342667pt;}
.y79{bottom:809.273333pt;}
.y168{bottom:811.372000pt;}
.y133{bottom:811.665333pt;}
.yfd{bottom:811.892000pt;}
.yff{bottom:812.041333pt;}
.ycc{bottom:812.860000pt;}
.y22a{bottom:814.073333pt;}
.y2a9{bottom:820.630667pt;}
.y1ef{bottom:820.830667pt;}
.y1b8{bottom:820.954667pt;}
.y46{bottom:821.017333pt;}
.y273{bottom:822.025333pt;}
.y2e2{bottom:824.616000pt;}
.y167{bottom:825.984000pt;}
.y78{bottom:826.010667pt;}
.y229{bottom:828.685333pt;}
.y132{bottom:832.386667pt;}
.yfc{bottom:833.646667pt;}
.yfa{bottom:834.521333pt;}
.y2a8{bottom:835.973333pt;}
.y1ee{bottom:837.568000pt;}
.y272{bottom:838.762667pt;}
.y2e1{bottom:839.958667pt;}
.y166{bottom:840.596000pt;}
.y1b6{bottom:841.968000pt;}
.y77{bottom:842.748000pt;}
.y228{bottom:843.297333pt;}
.y131{bottom:846.334667pt;}
.yfb{bottom:848.850667pt;}
.yf9{bottom:849.133333pt;}
.y2a7{bottom:851.316000pt;}
.y1ed{bottom:854.305333pt;}
.y165{bottom:855.208000pt;}
.y2e0{bottom:855.301333pt;}
.y271{bottom:855.500000pt;}
.y227{bottom:857.909333pt;}
.y1{bottom:859.312000pt;}
.y76{bottom:859.485333pt;}
.y45{bottom:860.729333pt;}
.y2a6{bottom:866.658667pt;}
.yf8{bottom:869.864000pt;}
.y2df{bottom:870.644000pt;}
.y1ec{bottom:871.042667pt;}
.y270{bottom:872.237333pt;}
.y226{bottom:872.521333pt;}
.y1b5{bottom:872.730667pt;}
.y164{bottom:876.221333pt;}
.y75{bottom:876.222667pt;}
.y2a5{bottom:882.001333pt;}
.yf7{bottom:884.476000pt;}
.y2de{bottom:885.986667pt;}
.y225{bottom:887.132000pt;}
.y1eb{bottom:887.780000pt;}
.y26f{bottom:888.974667pt;}
.y74{bottom:892.960000pt;}
.y44{bottom:896.213333pt;}
.y2a4{bottom:897.344000pt;}
.yf6{bottom:899.088000pt;}
.yf2{bottom:899.370667pt;}
.y2dd{bottom:901.329333pt;}
.y224{bottom:901.744000pt;}
.y1ea{bottom:904.517333pt;}
.y1b4{bottom:905.712000pt;}
.y163{bottom:906.984000pt;}
.y73{bottom:909.697333pt;}
.y2a3{bottom:912.686667pt;}
.yf5{bottom:913.700000pt;}
.yf1{bottom:913.982667pt;}
.y2dc{bottom:914.340000pt;}
.y223{bottom:916.356000pt;}
.y2db{bottom:916.670667pt;}
.y1e9{bottom:921.254667pt;}
.y43{bottom:921.320000pt;}
.y1b3{bottom:922.449333pt;}
.y72{bottom:926.434667pt;}
.y2a2{bottom:928.029333pt;}
.yf4{bottom:928.312000pt;}
.y222{bottom:930.968000pt;}
.y2da{bottom:932.013333pt;}
.y1e8{bottom:937.992000pt;}
.y162{bottom:939.186667pt;}
.yf3{bottom:942.924000pt;}
.y71{bottom:943.172000pt;}
.y2a1{bottom:943.370667pt;}
.y221{bottom:945.580000pt;}
.y42{bottom:946.425333pt;}
.y2d9{bottom:947.356000pt;}
.y1e7{bottom:954.729333pt;}
.y161{bottom:955.924000pt;}
.y2a0{bottom:958.713333pt;}
.y70{bottom:959.909333pt;}
.y2d8{bottom:962.698667pt;}
.yf0{bottom:963.937333pt;}
.y220{bottom:966.594667pt;}
.y41{bottom:971.530667pt;}
.y160{bottom:972.661333pt;}
.y29f{bottom:974.056000pt;}
.y1e6{bottom:975.450667pt;}
.y6f{bottom:976.646667pt;}
.y2d7{bottom:978.041333pt;}
.y6e{bottom:993.384000pt;}
.yef{bottom:994.700000pt;}
.y3f{bottom:1010.186667pt;}
.y6d{bottom:1046.810667pt;}
.h1a{height:2.656693pt;}
.h10{height:23.209028pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h1f{height:29.397999pt;}
.h1c{height:29.599908pt;}
.h39{height:30.605184pt;}
.h11{height:30.945242pt;}
.h15{height:31.157778pt;}
.h21{height:31.558400pt;}
.h16{height:34.430976pt;}
.h12{height:34.813542pt;}
.h17{height:35.052646pt;}
.h1e{height:37.778179pt;}
.h13{height:38.256384pt;}
.h14{height:38.681455pt;}
.hd{height:38.947124pt;}
.h6{height:40.800000pt;}
.h1d{height:41.524400pt;}
.h3{height:42.840000pt;}
.h18{height:44.954274pt;}
.hb{height:45.271688pt;}
.h32{height:46.748602pt;}
.h2d{height:48.261242pt;}
.hf{height:48.365611pt;}
.h30{height:48.683332pt;}
.h31{height:48.885242pt;}
.h2{height:48.960000pt;}
.h28{height:51.003332pt;}
.h2b{height:51.344666pt;}
.h33{height:54.612122pt;}
.h2a{height:54.692122pt;}
.h23{height:55.099332pt;}
.h3a{height:56.182575pt;}
.h5{height:57.120000pt;}
.h2f{height:57.277791pt;}
.h20{height:57.799269pt;}
.h24{height:61.995360pt;}
.h35{height:66.619360pt;}
.h2e{height:67.215908pt;}
.h29{height:68.143908pt;}
.he{height:68.861952pt;}
.h36{height:72.260122pt;}
.h37{height:72.265455pt;}
.h19{height:76.937733pt;}
.hc{height:77.447343pt;}
.h25{height:77.936693pt;}
.h1b{height:83.078027pt;}
.h34{height:90.779360pt;}
.h38{height:92.873643pt;}
.h26{height:103.566362pt;}
.h4{height:105.826671pt;}
.h2c{height:115.039908pt;}
.h22{height:157.280693pt;}
.h27{height:203.696693pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.330780pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x6{left:51.605861pt;}
.xb{left:55.592000pt;}
.x18{left:61.873333pt;}
.x79{left:63.002667pt;}
.xf{left:66.033333pt;}
.x65{left:69.916000pt;}
.x9b{left:71.465333pt;}
.x8f{left:73.197333pt;}
.x9f{left:76.309333pt;}
.x81{left:80.265333pt;}
.x10{left:82.190667pt;}
.x19{left:83.524000pt;}
.x8e{left:85.349333pt;}
.xe{left:89.537333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x64{left:95.944000pt;}
.x5a{left:100.965333pt;}
.x59{left:117.565333pt;}
.x5e{left:129.802667pt;}
.x5b{left:130.864000pt;}
.x5f{left:132.817333pt;}
.x6b{left:134.774667pt;}
.x6e{left:140.024000pt;}
.x7a{left:150.214667pt;}
.x7b{left:159.958667pt;}
.x68{left:163.969333pt;}
.x69{left:167.710667pt;}
.x66{left:169.528000pt;}
.x6a{left:172.864000pt;}
.x6d{left:175.829333pt;}
.x67{left:176.994667pt;}
.x4{left:180.874667pt;}
.x6c{left:184.842667pt;}
.x90{left:191.248000pt;}
.x97{left:192.326667pt;}
.x96{left:194.573333pt;}
.x91{left:196.189333pt;}
.x94{left:199.153333pt;}
.x9e{left:201.789333pt;}
.x92{left:202.825333pt;}
.x9c{left:209.801333pt;}
.xc{left:211.358667pt;}
.x16{left:215.574667pt;}
.x8d{left:219.865333pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x99{left:230.130667pt;}
.x7c{left:237.428000pt;}
.x8{left:239.924000pt;}
.x17{left:244.416000pt;}
.x78{left:247.014667pt;}
.xa{left:250.204000pt;}
.x75{left:252.204000pt;}
.x70{left:254.672000pt;}
.x72{left:256.130667pt;}
.x77{left:259.322667pt;}
.x73{left:260.685333pt;}
.x22{left:263.977333pt;}
.x6f{left:265.282667pt;}
.x71{left:266.860000pt;}
.x15{left:270.705333pt;}
.x14{left:281.782667pt;}
.x1c{left:285.565333pt;}
.x89{left:287.126667pt;}
.x83{left:289.594667pt;}
.x13{left:291.770667pt;}
.x8c{left:294.245333pt;}
.x87{left:295.608000pt;}
.x11{left:299.105333pt;}
.x2e{left:300.310667pt;}
.x85{left:301.782667pt;}
.x2a{left:309.238667pt;}
.x2b{left:317.720000pt;}
.x1a{left:322.244000pt;}
.x4d{left:323.164000pt;}
.x31{left:329.048000pt;}
.x30{left:330.920000pt;}
.x1b{left:333.846667pt;}
.x2f{left:335.529333pt;}
.x9a{left:338.336000pt;}
.x4a{left:340.798667pt;}
.x48{left:344.801333pt;}
.x33{left:350.710667pt;}
.x49{left:351.734667pt;}
.x32{left:355.577333pt;}
.x74{left:356.589333pt;}
.x60{left:359.200000pt;}
.x76{left:361.580000pt;}
.x4e{left:364.318667pt;}
.x34{left:368.502667pt;}
.x58{left:370.178667pt;}
.x4f{left:371.606667pt;}
.x4b{left:373.938667pt;}
.xa0{left:374.853333pt;}
.xa1{left:380.166667pt;}
.x50{left:393.388000pt;}
.x4c{left:397.714667pt;}
.x3{left:404.408000pt;}
.x1d{left:408.513333pt;}
.x41{left:409.592000pt;}
.x82{left:411.224000pt;}
.x42{left:416.525333pt;}
.x37{left:418.548000pt;}
.x23{left:425.100000pt;}
.x51{left:426.005333pt;}
.x3e{left:428.456000pt;}
.x56{left:430.132000pt;}
.xa4{left:437.582667pt;}
.x38{left:439.066667pt;}
.x2c{left:440.604000pt;}
.x52{left:443.354667pt;}
.xa5{left:447.146667pt;}
.x95{left:448.896000pt;}
.x44{left:449.806667pt;}
.x1e{left:451.452000pt;}
.x9d{left:454.980000pt;}
.x45{left:457.093333pt;}
.x47{left:459.532000pt;}
.x35{left:460.462667pt;}
.x88{left:461.357333pt;}
.x86{left:464.346667pt;}
.x8a{left:466.349333pt;}
.x55{left:468.392000pt;}
.x84{left:469.337333pt;}
.x36{left:470.873333pt;}
.x98{left:474.656000pt;}
.x93{left:478.736000pt;}
.x57{left:479.720000pt;}
.x3f{left:481.756000pt;}
.x1f{left:492.001333pt;}
.x43{left:496.706667pt;}
.x46{left:499.913333pt;}
.x7d{left:508.796000pt;}
.x40{left:511.556000pt;}
.xd{left:520.725333pt;}
.x39{left:524.264000pt;}
.x54{left:527.502667pt;}
.x2d{left:532.066667pt;}
.x20{left:550.765333pt;}
.x24{left:552.002667pt;}
.x3a{left:556.926667pt;}
.x25{left:564.177333pt;}
.x26{left:570.938667pt;}
.x3b{left:578.022667pt;}
.x27{left:583.112000pt;}
.x7e{left:584.460000pt;}
.x61{left:586.077333pt;}
.x53{left:593.269333pt;}
.x3c{left:596.134667pt;}
.x62{left:597.694667pt;}
.x3d{left:607.922667pt;}
.x28{left:615.290667pt;}
.x63{left:623.549333pt;}
.x29{left:630.796000pt;}
.x5c{left:633.038667pt;}
.x8b{left:643.952000pt;}
.x5d{left:648.258667pt;}
.x7f{left:671.673333pt;}
.x80{left:683.221333pt;}
.xa2{left:691.424000pt;}
.x12{left:694.066667pt;}
.xa3{left:699.728000pt;}
.x21{left:731.540000pt;}
}




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