
    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_6f424a4b7c66a2ea94db1503.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8dbe1fda0fb678e7f158224e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.151000;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_653ab32ed7f87d2840a5a587.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7495236842ca613c466d8dd0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b03c454c0822696ef2c69a83.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747000;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_12d17d4e3cc1a95d60be095c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.514000;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_5587a08d07193fecd8e51760.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_686ea496c41664099ba0a309.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c4e80bd3c83b7645bb659faa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d332d1d7c38de66235ca20cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_ee2d9788ee9366819e2818d2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.488000;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;}
.m2f{transform:matrix(0.000000,-0.245000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.245000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.245000,0.250000,0.000000,0,0);}
.m29{transform:matrix(0.000000,-0.248250,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248250,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248250,0.250000,0.000000,0,0);}
.m28{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m8{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);}
.m1b{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);}
.m2b{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);}
.m18{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);}
.m1a{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);}
.m20{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);}
.m16{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);}
.m7{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);}
.m13{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);}
.m21{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);}
.m1f{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);}
.m9{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);}
.m2e{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);}
.m19{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);}
.m10{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);}
.m2a{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);}
.m11{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);}
.m4{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);}
.m1{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);}
.m1c{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m15{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);}
.m2c{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);}
.m22{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);}
.m23{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);}
.m25{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);}
.me{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);}
.m6{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);}
.mb{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);}
.mc{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);}
.m27{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);}
.md{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);}
.m26{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);}
.ma{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);}
.m5{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);}
.m2d{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);}
.m14{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);}
.m17{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.ls1f{letter-spacing:-0.220590px;}
.ls25{letter-spacing:-0.125651px;}
.ls23{letter-spacing:-0.071820px;}
.ls1d{letter-spacing:-0.059132px;}
.ls22{letter-spacing:-0.046170px;}
.ls21{letter-spacing:-0.025650px;}
.ls1e{letter-spacing:-0.010260px;}
.ls24{letter-spacing:-0.005711px;}
.ls20{letter-spacing:-0.005130px;}
.ls8{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.000088px;}
.ls35{letter-spacing:0.000196px;}
.ls6a{letter-spacing:0.000406px;}
.ls37{letter-spacing:0.000699px;}
.ls1c{letter-spacing:0.000800px;}
.ls39{letter-spacing:0.000959px;}
.ls44{letter-spacing:0.001036px;}
.ls45{letter-spacing:0.001155px;}
.ls3f{letter-spacing:0.001693px;}
.ls5c{letter-spacing:0.001938px;}
.ls5{letter-spacing:0.001952px;}
.ls60{letter-spacing:0.002382px;}
.ls2d{letter-spacing:0.002461px;}
.ls1{letter-spacing:0.002725px;}
.ls6b{letter-spacing:0.002773px;}
.ls42{letter-spacing:0.002841px;}
.ls57{letter-spacing:0.003319px;}
.ls2c{letter-spacing:0.003634px;}
.ls40{letter-spacing:0.004800px;}
.ls13{letter-spacing:0.005130px;}
.ls9{letter-spacing:0.005203px;}
.lse{letter-spacing:0.010260px;}
.lsd{letter-spacing:0.015390px;}
.ls17{letter-spacing:0.020520px;}
.ls15{letter-spacing:0.025650px;}
.ls11{letter-spacing:0.030780px;}
.ls16{letter-spacing:0.035910px;}
.lsb{letter-spacing:0.040937px;}
.ls12{letter-spacing:0.041040px;}
.ls1b{letter-spacing:0.045691px;}
.lsf{letter-spacing:0.046170px;}
.ls10{letter-spacing:0.051300px;}
.ls19{letter-spacing:0.056430px;}
.ls14{letter-spacing:0.066690px;}
.ls1a{letter-spacing:0.068537px;}
.ls18{letter-spacing:0.133380px;}
.lsc{letter-spacing:0.168298px;}
.lsa{letter-spacing:0.181944px;}
.ls29{letter-spacing:0.896634px;}
.ls3{letter-spacing:2.998354px;}
.ls0{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls28{letter-spacing:11.955150px;}
.ls62{letter-spacing:12.062645px;}
.ls6e{letter-spacing:12.160604px;}
.ls63{letter-spacing:12.925910px;}
.ls66{letter-spacing:13.201288px;}
.ls2e{letter-spacing:13.205945px;}
.ls33{letter-spacing:13.238023px;}
.ls4f{letter-spacing:13.272293px;}
.ls53{letter-spacing:13.287135px;}
.ls70{letter-spacing:13.356370px;}
.ls54{letter-spacing:13.359545px;}
.ls48{letter-spacing:13.377781px;}
.ls52{letter-spacing:13.382400px;}
.ls69{letter-spacing:13.406111px;}
.ls6f{letter-spacing:13.406687px;}
.ls2b{letter-spacing:13.448400px;}
.ls27{letter-spacing:13.449600px;}
.ls2f{letter-spacing:13.454400px;}
.ls5e{letter-spacing:13.464686px;}
.ls3b{letter-spacing:13.501420px;}
.ls5d{letter-spacing:13.511204px;}
.ls41{letter-spacing:13.538155px;}
.ls5f{letter-spacing:13.544364px;}
.ls3a{letter-spacing:13.553421px;}
.ls3e{letter-spacing:13.583633px;}
.ls31{letter-spacing:13.583700px;}
.ls36{letter-spacing:13.595901px;}
.ls32{letter-spacing:13.629347px;}
.ls51{letter-spacing:13.632801px;}
.ls46{letter-spacing:13.635940px;}
.ls5b{letter-spacing:13.644245px;}
.ls4a{letter-spacing:13.656999px;}
.ls58{letter-spacing:13.659712px;}
.ls47{letter-spacing:13.665785px;}
.ls67{letter-spacing:13.694131px;}
.ls65{letter-spacing:13.785694px;}
.ls43{letter-spacing:14.179812px;}
.ls55{letter-spacing:14.268047px;}
.ls2a{letter-spacing:14.456282px;}
.ls26{letter-spacing:14.824349px;}
.ls59{letter-spacing:14.926871px;}
.ls3c{letter-spacing:15.297459px;}
.ls4b{letter-spacing:15.532753px;}
.ls6d{letter-spacing:15.544518px;}
.ls30{letter-spacing:15.573929px;}
.ls4e{letter-spacing:15.989035px;}
.ls3d{letter-spacing:16.062165px;}
.ls4d{letter-spacing:16.691576px;}
.ls56{letter-spacing:16.779812px;}
.ls38{letter-spacing:16.983945px;}
.ls4c{letter-spacing:17.156282px;}
.ls64{letter-spacing:17.915106px;}
.ls6c{letter-spacing:17.932753px;}
.ls2{letter-spacing:17.935200px;}
.ls50{letter-spacing:18.062165px;}
.ls68{letter-spacing:18.968047px;}
.ls34{letter-spacing:19.009224px;}
.ls5a{letter-spacing:19.632753px;}
.ls49{letter-spacing:19.644518px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc7{word-spacing:-15.840534px;}
.wsb{word-spacing:-14.943900px;}
.wsf{word-spacing:-14.355754px;}
.ws5a{word-spacing:-13.449600px;}
.ws4e{word-spacing:-12.825000px;}
.ws4f{word-spacing:-12.778830px;}
.ws50{word-spacing:-12.753180px;}
.ws2c{word-spacing:-11.955150px;}
.ws4c{word-spacing:-11.553444px;}
.ws4d{word-spacing:-11.371500px;}
.ws2{word-spacing:-10.460700px;}
.ws86{word-spacing:-3.765863px;}
.ws87{word-spacing:-3.755285px;}
.ws88{word-spacing:-3.706087px;}
.ws98{word-spacing:-3.227882px;}
.ws17{word-spacing:-2.958912px;}
.ws8b{word-spacing:-2.929004px;}
.ws10b{word-spacing:-2.905114px;}
.wsf7{word-spacing:-2.869229px;}
.ws47{word-spacing:-2.809453px;}
.wscd{word-spacing:-2.510575px;}
.wse1{word-spacing:-2.450800px;}
.ws48{word-spacing:-2.211697px;}
.ws96{word-spacing:-2.151922px;}
.ws19{word-spacing:-2.098138px;}
.wse3{word-spacing:-1.972595px;}
.wsba{word-spacing:-1.912819px;}
.wseb{word-spacing:-1.853044px;}
.ws192{word-spacing:-1.829146px;}
.ws9c{word-spacing:-1.733492px;}
.ws173{word-spacing:-1.721549px;}
.ws170{word-spacing:-1.667750px;}
.ws95{word-spacing:-1.613941px;}
.ws132{word-spacing:-1.506355px;}
.wsd6{word-spacing:-1.494390px;}
.ws8d{word-spacing:-1.434614px;}
.ws176{word-spacing:-1.398758px;}
.wsed{word-spacing:-1.374839px;}
.ws31{word-spacing:-1.315063px;}
.ws12b{word-spacing:-1.291162px;}
.ws3f{word-spacing:-1.255288px;}
.ws91{word-spacing:-1.135736px;}
.ws18{word-spacing:-1.075968px;}
.wsf3{word-spacing:-0.956410px;}
.ws90{word-spacing:-0.896634px;}
.ws71{word-spacing:-0.887490px;}
.ws72{word-spacing:-0.877230px;}
.ws1a5{word-spacing:-0.860774px;}
.wsc9{word-spacing:-0.836858px;}
.ws89{word-spacing:-0.777083px;}
.wsbe{word-spacing:-0.717307px;}
.ws194{word-spacing:-0.699379px;}
.wsa9{word-spacing:-0.669488px;}
.wscc{word-spacing:-0.657532px;}
.wsf2{word-spacing:-0.597756px;}
.ws104{word-spacing:-0.537984px;}
.wsa4{word-spacing:-0.537980px;}
.ws4b{word-spacing:-0.478205px;}
.ws1a3{word-spacing:-0.430387px;}
.ws93{word-spacing:-0.418429px;}
.wsca{word-spacing:-0.358654px;}
.ws119{word-spacing:-0.322790px;}
.ws29{word-spacing:-0.298878px;}
.ws19f{word-spacing:-0.292635px;}
.ws102{word-spacing:-0.268992px;}
.ws5e{word-spacing:-0.263819px;}
.ws24{word-spacing:-0.239102px;}
.ws118{word-spacing:-0.218276px;}
.ws12{word-spacing:-0.215194px;}
.ws21{word-spacing:-0.179327px;}
.ws13{word-spacing:-0.161395px;}
.wsaa{word-spacing:-0.143462px;}
.ws5f{word-spacing:-0.122812px;}
.ws22{word-spacing:-0.119551px;}
.ws1b{word-spacing:-0.107597px;}
.ws1ae{word-spacing:-0.106985px;}
.ws15f{word-spacing:-0.087888px;}
.wsd{word-spacing:-0.059776px;}
.ws100{word-spacing:-0.053798px;}
.ws1ac{word-spacing:-0.051298px;}
.ws3{word-spacing:-0.041843px;}
.ws5d{word-spacing:-0.022743px;}
.ws191{word-spacing:-0.013056px;}
.ws19c{word-spacing:-0.012278px;}
.ws147{word-spacing:-0.010886px;}
.ws18f{word-spacing:-0.008726px;}
.ws141{word-spacing:-0.008630px;}
.ws178{word-spacing:-0.008563px;}
.ws11e{word-spacing:-0.008266px;}
.ws116{word-spacing:-0.006806px;}
.ws137{word-spacing:-0.006326px;}
.ws16b{word-spacing:-0.006221px;}
.ws13d{word-spacing:-0.005414px;}
.ws128{word-spacing:-0.005050px;}
.ws126{word-spacing:-0.005000px;}
.ws114{word-spacing:-0.004733px;}
.ws1b6{word-spacing:-0.004224px;}
.ws113{word-spacing:-0.004157px;}
.ws1b1{word-spacing:-0.004022px;}
.ws15e{word-spacing:-0.003888px;}
.ws124{word-spacing:-0.003859px;}
.ws134{word-spacing:-0.003725px;}
.wsc{word-spacing:-0.003583px;}
.ws162{word-spacing:-0.003466px;}
.ws17b{word-spacing:-0.003110px;}
.ws175{word-spacing:-0.003024px;}
.ws19b{word-spacing:-0.003014px;}
.ws189{word-spacing:-0.002688px;}
.ws10a{word-spacing:-0.002621px;}
.ws171{word-spacing:-0.002563px;}
.ws10d{word-spacing:-0.000806px;}
.ws1b7{word-spacing:-0.000202px;}
.ws1{word-spacing:0.000000px;}
.ws1b3{word-spacing:0.001267px;}
.wse{word-spacing:0.001859px;}
.ws117{word-spacing:0.002467px;}
.ws10e{word-spacing:0.003379px;}
.wsc1{word-spacing:0.003850px;}
.wsab{word-spacing:0.047821px;}
.ws1a{word-spacing:0.053798px;}
.ws28{word-spacing:0.059776px;}
.ws122{word-spacing:0.095194px;}
.ws101{word-spacing:0.107597px;}
.ws7a{word-spacing:0.117990px;}
.ws33{word-spacing:0.119551px;}
.ws67{word-spacing:0.128250px;}
.ws110{word-spacing:0.132122px;}
.wsa8{word-spacing:0.143462px;}
.ws38{word-spacing:0.153125px;}
.ws7b{word-spacing:0.153900px;}
.ws37{word-spacing:0.156399px;}
.ws58{word-spacing:0.161395px;}
.ws15c{word-spacing:0.170798px;}
.ws36{word-spacing:0.179327px;}
.ws68{word-spacing:0.179550px;}
.ws16{word-spacing:0.215194px;}
.wsb7{word-spacing:0.218282px;}
.wsb8{word-spacing:0.220571px;}
.ws2a{word-spacing:0.239102px;}
.ws5b{word-spacing:0.268992px;}
.wsad{word-spacing:0.298878px;}
.ws5c{word-spacing:0.322790px;}
.ws4a{word-spacing:0.358654px;}
.ws1a9{word-spacing:0.376589px;}
.ws85{word-spacing:0.418429px;}
.wsf9{word-spacing:0.430387px;}
.ws6f{word-spacing:0.471960px;}
.ws6c{word-spacing:0.477090px;}
.ws49{word-spacing:0.478205px;}
.wsfe{word-spacing:0.484186px;}
.ws6b{word-spacing:0.487350px;}
.ws70{word-spacing:0.492480px;}
.ws26{word-spacing:0.537980px;}
.ws13a{word-spacing:0.537984px;}
.ws167{word-spacing:0.591782px;}
.ws27{word-spacing:0.597756px;}
.ws168{word-spacing:0.599802px;}
.wsbf{word-spacing:0.657532px;}
.wsfa{word-spacing:0.753178px;}
.ws2f{word-spacing:0.777083px;}
.ws6e{word-spacing:0.795150px;}
.ws169{word-spacing:0.806976px;}
.ws6d{word-spacing:0.856710px;}
.wscb{word-spacing:0.896634px;}
.ws133{word-spacing:0.914573px;}
.wsfc{word-spacing:1.022170px;}
.ws3d{word-spacing:1.075961px;}
.ws1d{word-spacing:1.075968px;}
.ws179{word-spacing:1.129766px;}
.ws3e{word-spacing:1.135736px;}
.ws75{word-spacing:1.169640px;}
.ws76{word-spacing:1.179900px;}
.wsdb{word-spacing:1.195512px;}
.ws174{word-spacing:1.237363px;}
.wse4{word-spacing:1.255288px;}
.ws15{word-spacing:1.291162px;}
.wsc0{word-spacing:1.315063px;}
.ws16a{word-spacing:1.344960px;}
.wsa{word-spacing:1.380812px;}
.ws129{word-spacing:1.398758px;}
.ws94{word-spacing:1.434614px;}
.wsec{word-spacing:1.494390px;}
.ws2e{word-spacing:1.554166px;}
.ws55{word-spacing:1.560154px;}
.ws3c{word-spacing:1.599888px;}
.ws25{word-spacing:1.613941px;}
.ws108{word-spacing:1.613952px;}
.ws23{word-spacing:1.673717px;}
.ws112{word-spacing:1.721549px;}
.ws84{word-spacing:1.733492px;}
.ws3b{word-spacing:1.793268px;}
.ws3a{word-spacing:1.822982px;}
.ws78{word-spacing:1.836540px;}
.ws77{word-spacing:1.851930px;}
.ws39{word-spacing:1.853044px;}
.ws79{word-spacing:1.857060px;}
.ws61{word-spacing:1.872450px;}
.ws10c{word-spacing:1.882944px;}
.ws63{word-spacing:1.887840px;}
.ws62{word-spacing:1.898100px;}
.wsb6{word-spacing:1.912819px;}
.wsb5{word-spacing:1.914833px;}
.ws183{word-spacing:1.936742px;}
.wsb1{word-spacing:1.972595px;}
.ws1b4{word-spacing:1.990541px;}
.wsb2{word-spacing:2.028287px;}
.ws99{word-spacing:2.032370px;}
.ws12e{word-spacing:2.034630px;}
.ws12d{word-spacing:2.044339px;}
.wse8{word-spacing:2.092146px;}
.ws56{word-spacing:2.098138px;}
.ws64{word-spacing:2.108430px;}
.ws35{word-spacing:2.151922px;}
.ws1ab{word-spacing:2.151936px;}
.ws59{word-spacing:2.205734px;}
.ws53{word-spacing:2.259533px;}
.ws97{word-spacing:2.271473px;}
.ws44{word-spacing:2.331248px;}
.ws120{word-spacing:2.367130px;}
.ws8c{word-spacing:2.391024px;}
.wscf{word-spacing:2.450800px;}
.ws4{word-spacing:2.510568px;}
.ws0{word-spacing:2.511541px;}
.ws7e{word-spacing:2.513700px;}
.ws157{word-spacing:2.528525px;}
.ws43{word-spacing:2.570351px;}
.ws16d{word-spacing:2.582323px;}
.wse7{word-spacing:2.630126px;}
.ws16e{word-spacing:2.636122px;}
.wsc8{word-spacing:2.689902px;}
.ws15a{word-spacing:2.689920px;}
.ws2b{word-spacing:2.749678px;}
.wsd0{word-spacing:2.809453px;}
.wsb4{word-spacing:2.841439px;}
.ws193{word-spacing:2.851315px;}
.ws42{word-spacing:2.869229px;}
.ws10{word-spacing:2.869236px;}
.ws7f{word-spacing:2.898450px;}
.ws155{word-spacing:2.905114px;}
.ws8a{word-spacing:2.929004px;}
.ws103{word-spacing:2.958912px;}
.ws11{word-spacing:2.978829px;}
.wsee{word-spacing:2.988780px;}
.ws143{word-spacing:3.012710px;}
.ws2d{word-spacing:3.048556px;}
.ws146{word-spacing:3.066509px;}
.wsa3{word-spacing:3.108331px;}
.ws164{word-spacing:3.120307px;}
.ws45{word-spacing:3.168107px;}
.ws188{word-spacing:3.170499px;}
.ws148{word-spacing:3.173141px;}
.ws1af{word-spacing:3.216010px;}
.ws154{word-spacing:3.216874px;}
.ws1b5{word-spacing:3.217498px;}
.ws17c{word-spacing:3.217910px;}
.ws1b2{word-spacing:3.218150px;}
.ws184{word-spacing:3.219235px;}
.ws165{word-spacing:3.219245px;}
.ws1a0{word-spacing:3.219302px;}
.ws1e{word-spacing:3.219667px;}
.ws136{word-spacing:3.219869px;}
.ws163{word-spacing:3.220186px;}
.ws1aa{word-spacing:3.220224px;}
.ws196{word-spacing:3.220243px;}
.ws1a1{word-spacing:3.220598px;}
.ws18a{word-spacing:3.220675px;}
.ws13f{word-spacing:3.220733px;}
.ws15d{word-spacing:3.220781px;}
.ws12f{word-spacing:3.220877px;}
.ws13c{word-spacing:3.221011px;}
.ws14e{word-spacing:3.221280px;}
.ws18d{word-spacing:3.221587px;}
.ws198{word-spacing:3.221770px;}
.ws14f{word-spacing:3.222010px;}
.ws135{word-spacing:3.222269px;}
.ws1b0{word-spacing:3.222355px;}
.ws18e{word-spacing:3.222547px;}
.ws115{word-spacing:3.222816px;}
.ws17d{word-spacing:3.223037px;}
.ws1a4{word-spacing:3.223085px;}
.ws17e{word-spacing:3.223267px;}
.ws106{word-spacing:3.223402px;}
.ws1a8{word-spacing:3.223469px;}
.ws177{word-spacing:3.223517px;}
.ws105{word-spacing:3.223594px;}
.ws186{word-spacing:3.223632px;}
.wsff{word-spacing:3.223661px;}
.ws144{word-spacing:3.223680px;}
.ws138{word-spacing:3.223718px;}
.ws131{word-spacing:3.223747px;}
.ws166{word-spacing:3.223910px;}
.ws1ad{word-spacing:3.223968px;}
.ws10f{word-spacing:3.224112px;}
.ws19d{word-spacing:3.224333px;}
.wsf8{word-spacing:3.224822px;}
.ws172{word-spacing:3.224957px;}
.ws127{word-spacing:3.225322px;}
.ws180{word-spacing:3.225466px;}
.ws161{word-spacing:3.225571px;}
.ws107{word-spacing:3.227098px;}
.ws125{word-spacing:3.227453px;}
.ws151{word-spacing:3.227578px;}
.ws11a{word-spacing:3.227779px;}
.wsd7{word-spacing:3.227882px;}
.wsfd{word-spacing:3.227904px;}
.ws195{word-spacing:3.281702px;}
.ws9d{word-spacing:3.287658px;}
.ws187{word-spacing:3.327127px;}
.ws123{word-spacing:3.335501px;}
.wsd8{word-spacing:3.347434px;}
.ws160{word-spacing:3.385115px;}
.ws11f{word-spacing:3.389299px;}
.wsea{word-spacing:3.407209px;}
.ws111{word-spacing:3.443098px;}
.wsae{word-spacing:3.466985px;}
.ws139{word-spacing:3.480308px;}
.ws14c{word-spacing:3.496896px;}
.ws199{word-spacing:3.515614px;}
.wsc5{word-spacing:3.526760px;}
.ws16f{word-spacing:3.539673px;}
.ws142{word-spacing:3.550694px;}
.wsaf{word-spacing:3.576014px;}
.ws1f{word-spacing:3.586536px;}
.ws150{word-spacing:3.604493px;}
.ws20{word-spacing:3.646312px;}
.ws15b{word-spacing:3.658291px;}
.ws92{word-spacing:3.706087px;}
.ws8e{word-spacing:3.765863px;}
.ws14d{word-spacing:3.765888px;}
.wsc4{word-spacing:3.945190px;}
.ws34{word-spacing:4.004965px;}
.wsf1{word-spacing:4.064741px;}
.ws121{word-spacing:4.088678px;}
.wsbc{word-spacing:4.124516px;}
.ws51{word-spacing:4.250074px;}
.ws8f{word-spacing:4.303843px;}
.ws52{word-spacing:4.303872px;}
.ws19a{word-spacing:4.357670px;}
.wsdf{word-spacing:4.363619px;}
.ws11c{word-spacing:4.411469px;}
.ws18c{word-spacing:4.465267px;}
.ws16c{word-spacing:4.519066px;}
.wsb0{word-spacing:4.542946px;}
.ws6a{word-spacing:4.565700px;}
.ws69{word-spacing:4.570830px;}
.wsd4{word-spacing:4.602721px;}
.ws14{word-spacing:4.626662px;}
.wsf0{word-spacing:4.662497px;}
.ws130{word-spacing:4.680461px;}
.wsac{word-spacing:4.722272px;}
.ws159{word-spacing:4.734259px;}
.wse9{word-spacing:4.782048px;}
.ws1c{word-spacing:4.788058px;}
.ws81{word-spacing:4.814710px;}
.wsd5{word-spacing:4.841824px;}
.ws11b{word-spacing:4.841856px;}
.ws17a{word-spacing:4.876232px;}
.ws149{word-spacing:4.895654px;}
.wsa0{word-spacing:4.901599px;}
.ws57{word-spacing:4.949453px;}
.ws46{word-spacing:5.021150px;}
.ws17f{word-spacing:5.057050px;}
.wse5{word-spacing:5.080926px;}
.wsc2{word-spacing:5.200477px;}
.ws13e{word-spacing:5.218445px;}
.ws80{word-spacing:5.225931px;}
.ws13b{word-spacing:5.272243px;}
.ws140{word-spacing:5.326042px;}
.wsde{word-spacing:5.379804px;}
.ws19e{word-spacing:5.433638px;}
.wsf6{word-spacing:5.439580px;}
.ws8{word-spacing:5.481407px;}
.ws11d{word-spacing:5.541235px;}
.ws74{word-spacing:5.612220px;}
.wsf5{word-spacing:5.618906px;}
.ws73{word-spacing:5.637870px;}
.ws197{word-spacing:5.648832px;}
.wsbd{word-spacing:5.738458px;}
.ws12c{word-spacing:5.756429px;}
.ws18b{word-spacing:5.810227px;}
.ws41{word-spacing:5.858009px;}
.ws40{word-spacing:5.917784px;}
.wsfb{word-spacing:5.971622px;}
.ws54{word-spacing:6.025421px;}
.wsa1{word-spacing:6.037336px;}
.wse0{word-spacing:6.097111px;}
.ws14b{word-spacing:6.186816px;}
.wsb3{word-spacing:6.216662px;}
.ws153{word-spacing:6.294413px;}
.wsd9{word-spacing:6.336214px;}
.ws9f{word-spacing:6.395989px;}
.ws190{word-spacing:6.402010px;}
.ws32{word-spacing:6.455765px;}
.wsc3{word-spacing:6.575316px;}
.ws30{word-spacing:6.754643px;}
.wsda{word-spacing:6.874194px;}
.wsdd{word-spacing:6.933970px;}
.ws9e{word-spacing:6.993745px;}
.ws185{word-spacing:7.155187px;}
.ws9a{word-spacing:7.173072px;}
.wsd3{word-spacing:7.232848px;}
.wsd2{word-spacing:7.292623px;}
.wsd1{word-spacing:7.352399px;}
.wsa2{word-spacing:7.412174px;}
.wsce{word-spacing:7.591501px;}
.wsf4{word-spacing:7.651277px;}
.wsef{word-spacing:7.770828px;}
.wsb9{word-spacing:7.890379px;}
.ws12a{word-spacing:7.962163px;}
.ws7c{word-spacing:8.018190px;}
.ws7d{word-spacing:8.033580px;}
.ws145{word-spacing:8.338752px;}
.wsbb{word-spacing:8.428360px;}
.ws152{word-spacing:8.524674px;}
.ws1a7{word-spacing:8.553946px;}
.ws109{word-spacing:8.607744px;}
.ws181{word-spacing:9.253325px;}
.wse2{word-spacing:9.384769px;}
.wsc6{word-spacing:9.564096px;}
.ws6{word-spacing:9.833058px;}
.ws60{word-spacing:11.039452px;}
.ws65{word-spacing:11.132100px;}
.ws182{word-spacing:11.136269px;}
.ws66{word-spacing:11.152620px;}
.ws158{word-spacing:11.297664px;}
.ws7{word-spacing:11.841512px;}
.ws156{word-spacing:12.427430px;}
.wsa6{word-spacing:13.449600px;}
.ws1a6{word-spacing:14.290269px;}
.ws83{word-spacing:14.415574px;}
.ws82{word-spacing:14.586916px;}
.ws9{word-spacing:16.067635px;}
.ws1a2{word-spacing:16.762601px;}
.ws14a{word-spacing:18.399053px;}
.wse6{word-spacing:19.427070px;}
.ws5{word-spacing:22.339429px;}
.ws9b{word-spacing:23.551586px;}
.wsa5{word-spacing:387.348480px;}
.wsa7{word-spacing:402.410349px;}
.wsdc{word-spacing:631.862208px;}
._2a{margin-left:-23.940288px;}
._2d{margin-left:-20.636810px;}
._2b{margin-left:-19.390980px;}
._7{margin-left:-11.943245px;}
._1c{margin-left:-8.458252px;}
._8{margin-left:-6.633774px;}
._0{margin-left:-5.397000px;}
._1{margin-left:-3.849538px;}
._f{margin-left:-2.779570px;}
._6{margin-left:-1.464498px;}
._1a{width:1.373677px;}
._2c{width:3.066509px;}
._26{width:4.483170px;}
._29{width:6.025421px;}
._3{width:10.460700px;}
._10{width:11.955150px;}
._2{width:12.967630px;}
._11{width:14.821397px;}
._c{width:15.940897px;}
._9{width:17.054093px;}
._e{width:18.291334px;}
._d{width:19.295950px;}
._b{width:20.861023px;}
._17{width:22.356074px;}
._15{width:23.730913px;}
._1e{width:24.776982px;}
._4{width:25.946136px;}
._27{width:27.018571px;}
._14{width:28.094532px;}
._a{width:30.073306px;}
._5{width:31.256572px;}
._25{width:32.517926px;}
._19{width:34.012316px;}
._23{width:35.058385px;}
._18{width:36.761994px;}
._16{width:40.287437px;}
._1d{width:41.872804px;}
._28{width:61.868160px;}
._1f{width:415.700237px;}
._21{width:427.659626px;}
._12{width:825.096632px;}
._20{width:833.713805px;}
._22{width:847.476673px;}
._1b{width:1899.095083px;}
._24{width:2354.185211px;}
._13{width:2378.095211px;}
.fc5{color:rgb(83,129,53);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(68,114,196);}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc6{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsb{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs8{font-size:45.486000px;}
.fs7{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fsa{font-size:51.300000px;}
.fs6{font-size:53.798400px;}
.fs9{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.y7a{bottom:-367.759298px;}
.y8c{bottom:-301.838096px;}
.y8b{bottom:-283.627297px;}
.y8a{bottom:-248.658652px;}
.y89{bottom:-232.072080px;}
.y88{bottom:-215.656080px;}
.y87{bottom:-199.240080px;}
.y86{bottom:-182.824080px;}
.y85{bottom:-166.322153px;}
.y84{bottom:-149.906153px;}
.y83{bottom:-133.490153px;}
.y82{bottom:-117.074153px;}
.y81{bottom:-100.572225px;}
.y80{bottom:-84.156225px;}
.y7f{bottom:-67.740225px;}
.y7e{bottom:-51.324225px;}
.y7d{bottom:-34.822298px;}
.y7c{bottom:-18.406298px;}
.y0{bottom:0.000000px;}
.y7b{bottom:2.883433px;}
.y42{bottom:31.890000px;}
.y41{bottom:103.621500px;}
.y13{bottom:104.646000px;}
.y1e2{bottom:113.365500px;}
.y9d{bottom:114.705000px;}
.y21c{bottom:116.458500px;}
.ycd{bottom:118.251000px;}
.y14d{bottom:118.699500px;}
.y176{bottom:119.148000px;}
.y13d{bottom:120.714000px;}
.y40{bottom:122.449500px;}
.y12{bottom:122.535000px;}
.y1e1{bottom:130.624500px;}
.y9c{bottom:133.534500px;}
.y21b{bottom:133.719000px;}
.ycc{bottom:137.080500px;}
.y14c{bottom:137.529000px;}
.y175{bottom:137.977500px;}
.y13c{bottom:139.543500px;}
.y11{bottom:140.422500px;}
.y3f{bottom:141.279000px;}
.y1e0{bottom:147.885000px;}
.y21a{bottom:150.978000px;}
.ycb{bottom:155.910000px;}
.y14b{bottom:156.358500px;}
.y174{bottom:156.807000px;}
.y10{bottom:158.310000px;}
.y13b{bottom:158.373000px;}
.y3e{bottom:160.108500px;}
.y1df{bottom:165.145500px;}
.y9b{bottom:167.100000px;}
.y219{bottom:168.238500px;}
.yf3{bottom:172.189500px;}
.y76{bottom:174.291000px;}
.y14a{bottom:175.188000px;}
.y173{bottom:175.636500px;}
.yf{bottom:176.199000px;}
.y13a{bottom:177.202500px;}
.y3d{bottom:178.938000px;}
.yca{bottom:179.223000px;}
.y1de{bottom:182.406000px;}
.y218{bottom:185.499000px;}
.y9a{bottom:186.333000px;}
.yf2{bottom:188.628000px;}
.y75{bottom:193.120500px;}
.y149{bottom:194.017500px;}
.ye{bottom:194.086500px;}
.y172{bottom:194.466000px;}
.y139{bottom:196.032000px;}
.yfd{bottom:196.848000px;}
.y3c{bottom:197.767500px;}
.y1dd{bottom:199.666500px;}
.y217{bottom:202.759500px;}
.yf1{bottom:205.066500px;}
.y99{bottom:205.566000px;}
.y74{bottom:211.950000px;}
.yd{bottom:211.974000px;}
.yc9{bottom:212.847000px;}
.yfc{bottom:213.285000px;}
.y171{bottom:213.295500px;}
.y138{bottom:214.861500px;}
.y3b{bottom:216.597000px;}
.y1dc{bottom:216.927000px;}
.y216{bottom:220.020000px;}
.ye9{bottom:221.505000px;}
.y98{bottom:224.799000px;}
.yfb{bottom:229.723500px;}
.yc{bottom:229.863000px;}
.y73{bottom:230.779500px;}
.yc8{bottom:231.676500px;}
.y170{bottom:232.125000px;}
.y137{bottom:233.691000px;}
.y1db{bottom:234.187500px;}
.y3a{bottom:235.426500px;}
.y215{bottom:237.280500px;}
.ye8{bottom:237.943500px;}
.y97{bottom:244.030500px;}
.yfa{bottom:246.162000px;}
.y72{bottom:249.609000px;}
.yc7{bottom:250.506000px;}
.y16f{bottom:250.954500px;}
.y1da{bottom:251.448000px;}
.y136{bottom:252.520500px;}
.y39{bottom:254.256000px;}
.ye7{bottom:254.382000px;}
.y214{bottom:254.541000px;}
.ydf{bottom:258.711000px;}
.yf9{bottom:262.600500px;}
.y96{bottom:263.263500px;}
.y71{bottom:268.438500px;}
.y1d9{bottom:268.708500px;}
.yc6{bottom:269.335500px;}
.y16e{bottom:269.784000px;}
.ye6{bottom:270.819000px;}
.yf0{bottom:270.820500px;}
.y135{bottom:271.350000px;}
.y213{bottom:271.801500px;}
.y38{bottom:273.085500px;}
.yec{bottom:279.039000px;}
.y95{bottom:282.496500px;}
.y1d8{bottom:285.967500px;}
.ye5{bottom:287.257500px;}
.y70{bottom:287.268000px;}
.yc5{bottom:288.165000px;}
.y16d{bottom:288.613500px;}
.y212{bottom:289.062000px;}
.y134{bottom:290.179500px;}
.y37{bottom:291.915000px;}
.y148{bottom:292.648500px;}
.yeb{bottom:295.477500px;}
.yb{bottom:297.166500px;}
.y94{bottom:301.729500px;}
.y1d7{bottom:303.228000px;}
.ye4{bottom:303.696000px;}
.y6f{bottom:306.097500px;}
.y211{bottom:306.321000px;}
.yc4{bottom:306.994500px;}
.y16c{bottom:307.443000px;}
.y133{bottom:309.009000px;}
.y36{bottom:310.744500px;}
.yea{bottom:311.916000px;}
.ya{bottom:315.054000px;}
.ye3{bottom:320.134500px;}
.y1d6{bottom:320.488500px;}
.y93{bottom:320.962500px;}
.y210{bottom:323.581500px;}
.y6e{bottom:324.927000px;}
.yc3{bottom:325.824000px;}
.y147{bottom:326.272500px;}
.y132{bottom:327.838500px;}
.yf8{bottom:328.354500px;}
.y35{bottom:329.574000px;}
.y178{bottom:330.307500px;}
.y9{bottom:332.943000px;}
.ye2{bottom:336.573000px;}
.y1d5{bottom:337.749000px;}
.y92{bottom:340.195500px;}
.y20e{bottom:340.842000px;}
.y6d{bottom:343.756500px;}
.yc2{bottom:344.653500px;}
.yf7{bottom:344.793000px;}
.y146{bottom:345.102000px;}
.y20f{bottom:345.724500px;}
.y131{bottom:346.666500px;}
.y34{bottom:348.403500px;}
.y16b{bottom:349.584000px;}
.y8{bottom:350.830500px;}
.ye1{bottom:353.011500px;}
.y1d4{bottom:355.009500px;}
.y20d{bottom:358.102500px;}
.y91{bottom:359.428500px;}
.yf6{bottom:361.231500px;}
.y6c{bottom:362.586000px;}
.yc1{bottom:363.483000px;}
.y145{bottom:363.931500px;}
.y130{bottom:365.496000px;}
.y33{bottom:367.233000px;}
.ye0{bottom:369.450000px;}
.y1d3{bottom:372.270000px;}
.y20b{bottom:375.363000px;}
.yf5{bottom:377.668500px;}
.y90{bottom:378.661500px;}
.y7{bottom:379.179000px;}
.y20c{bottom:380.245500px;}
.y6b{bottom:381.415500px;}
.yc0{bottom:382.312500px;}
.y144{bottom:382.761000px;}
.y16a{bottom:383.208000px;}
.y12f{bottom:384.325500px;}
.yef{bottom:385.888500px;}
.y32{bottom:386.062500px;}
.y1ae{bottom:386.794500px;}
.y1d2{bottom:389.530500px;}
.y20a{bottom:392.623500px;}
.yf4{bottom:394.107000px;}
.y8f{bottom:397.894500px;}
.y6a{bottom:400.245000px;}
.ybf{bottom:401.142000px;}
.y143{bottom:401.589000px;}
.y169{bottom:402.037500px;}
.yee{bottom:402.327000px;}
.y12e{bottom:403.155000px;}
.y31{bottom:404.892000px;}
.y6{bottom:406.033500px;}
.y1d1{bottom:406.791000px;}
.y209{bottom:409.884000px;}
.y8e{bottom:417.127500px;}
.yed{bottom:418.765500px;}
.y69{bottom:419.074500px;}
.ybe{bottom:419.971500px;}
.y142{bottom:420.418500px;}
.y168{bottom:420.867000px;}
.y12d{bottom:421.984500px;}
.y30{bottom:423.721500px;}
.y5{bottom:423.921000px;}
.y1d0{bottom:424.050000px;}
.y207{bottom:427.144500px;}
.y208{bottom:432.025500px;}
.y8d{bottom:436.359000px;}
.y68{bottom:437.904000px;}
.y141{bottom:439.248000px;}
.y167{bottom:439.696500px;}
.y12c{bottom:440.814000px;}
.y1cf{bottom:441.310500px;}
.y4{bottom:441.810000px;}
.yde{bottom:442.405500px;}
.y1ac{bottom:442.551000px;}
.ybd{bottom:443.283000px;}
.y206{bottom:444.403500px;}
.y2f{bottom:447.034500px;}
.y67{bottom:456.733500px;}
.y140{bottom:458.077500px;}
.y166{bottom:458.526000px;}
.y1ce{bottom:458.571000px;}
.y77{bottom:458.788500px;}
.y12b{bottom:459.643500px;}
.y3{bottom:459.697500px;}
.y1ab{bottom:461.380500px;}
.y205{bottom:461.664000px;}
.y66{bottom:475.563000px;}
.y1cd{bottom:475.831500px;}
.ybc{bottom:476.907000px;}
.ydd{bottom:477.013500px;}
.y165{bottom:477.355500px;}
.y2{bottom:477.585000px;}
.y12a{bottom:478.473000px;}
.y204{bottom:478.924500px;}
.y1aa{bottom:480.210000px;}
.y1cc{bottom:493.092000px;}
.y65{bottom:494.392500px;}
.y1{bottom:495.474000px;}
.ybb{bottom:495.736500px;}
.y164{bottom:496.185000px;}
.y129{bottom:497.302500px;}
.y1a9{bottom:499.039500px;}
.y1cb{bottom:510.352500px;}
.y64{bottom:513.222000px;}
.y203{bottom:513.445500px;}
.ydc{bottom:514.117500px;}
.yba{bottom:514.566000px;}
.y163{bottom:515.014500px;}
.y128{bottom:516.132000px;}
.y1a8{bottom:517.869000px;}
.y2e{bottom:522.184500px;}
.y1ca{bottom:527.613000px;}
.y202{bottom:530.706000px;}
.y63{bottom:532.051500px;}
.ydb{bottom:532.947000px;}
.yb9{bottom:533.395500px;}
.y162{bottom:533.844000px;}
.y127{bottom:534.961500px;}
.y1a7{bottom:536.698500px;}
.y1af{bottom:537.879000px;}
.y1c9{bottom:544.873500px;}
.y201{bottom:547.966500px;}
.y62{bottom:550.881000px;}
.yda{bottom:551.776500px;}
.yb8{bottom:552.225000px;}
.y161{bottom:552.673500px;}
.y126{bottom:553.791000px;}
.y1a6{bottom:555.528000px;}
.y2d{bottom:559.573500px;}
.y1c8{bottom:562.134000px;}
.y200{bottom:565.227000px;}
.y61{bottom:569.710500px;}
.yd9{bottom:570.606000px;}
.yb7{bottom:571.054500px;}
.y160{bottom:571.503000px;}
.y125{bottom:572.620500px;}
.y1a5{bottom:574.357500px;}
.y2c{bottom:579.031500px;}
.y1ff{bottom:582.487500px;}
.y1c7{bottom:583.876500px;}
.y60{bottom:588.538500px;}
.yd8{bottom:589.435500px;}
.yb6{bottom:589.884000px;}
.y15f{bottom:590.332500px;}
.y124{bottom:591.450000px;}
.y1a4{bottom:593.187000px;}
.y2b{bottom:598.488000px;}
.y1fe{bottom:599.746500px;}
.y5f{bottom:607.368000px;}
.yd7{bottom:608.265000px;}
.yb5{bottom:608.713500px;}
.y15e{bottom:609.162000px;}
.y123{bottom:610.279500px;}
.y1a3{bottom:612.016500px;}
.y1fd{bottom:617.007000px;}
.y1c6{bottom:617.500500px;}
.y2a{bottom:617.944500px;}
.y5e{bottom:626.197500px;}
.yd6{bottom:627.094500px;}
.yb4{bottom:627.543000px;}
.y15d{bottom:627.991500px;}
.y122{bottom:629.109000px;}
.y1a2{bottom:630.844500px;}
.y1fc{bottom:634.267500px;}
.y29{bottom:637.402500px;}
.y1c5{bottom:644.041500px;}
.y5c{bottom:645.027000px;}
.yd5{bottom:645.924000px;}
.yb3{bottom:646.372500px;}
.y15c{bottom:646.821000px;}
.y121{bottom:647.938500px;}
.y5d{bottom:650.452500px;}
.y1fb{bottom:651.528000px;}
.y1a1{bottom:654.157500px;}
.y28{bottom:656.859000px;}
.y5b{bottom:663.856500px;}
.yd4{bottom:664.753500px;}
.yb2{bottom:665.202000px;}
.y15b{bottom:665.650500px;}
.y120{bottom:666.768000px;}
.y1fa{bottom:668.788500px;}
.y27{bottom:676.315500px;}
.y1c4{bottom:679.548000px;}
.y5a{bottom:682.686000px;}
.yd3{bottom:683.583000px;}
.yb1{bottom:684.031500px;}
.y15a{bottom:684.480000px;}
.y11f{bottom:685.597500px;}
.y1f9{bottom:686.049000px;}
.y1a0{bottom:690.031500px;}
.y26{bottom:695.773500px;}
.y1c3{bottom:698.377500px;}
.y59{bottom:701.515500px;}
.yd2{bottom:702.412500px;}
.yb0{bottom:702.861000px;}
.y159{bottom:703.309500px;}
.y19f{bottom:704.227500px;}
.y11e{bottom:704.427000px;}
.y79{bottom:709.626331px;}
.y25{bottom:715.230000px;}
.y1c2{bottom:717.207000px;}
.y19e{bottom:718.425000px;}
.y78{bottom:718.774702px;}
.y58{bottom:720.345000px;}
.y1f8{bottom:720.570000px;}
.yd1{bottom:721.242000px;}
.yae{bottom:721.690500px;}
.y158{bottom:722.139000px;}
.y11d{bottom:723.256500px;}
.yaf{bottom:727.114500px;}
.y24{bottom:734.688000px;}
.y1c1{bottom:736.036500px;}
.y193{bottom:737.268000px;}
.y1f7{bottom:737.829000px;}
.y57{bottom:739.174500px;}
.yad{bottom:740.520000px;}
.y157{bottom:740.968500px;}
.y11c{bottom:742.086000px;}
.yd0{bottom:744.555000px;}
.y177{bottom:745.003500px;}
.y19c{bottom:745.488000px;}
.y192{bottom:753.706500px;}
.y23{bottom:754.144500px;}
.y1c0{bottom:754.866000px;}
.y1f6{bottom:755.089500px;}
.y56{bottom:758.004000px;}
.yab{bottom:759.349500px;}
.y156{bottom:759.798000px;}
.y11b{bottom:760.915500px;}
.y19b{bottom:761.926500px;}
.yac{bottom:764.773500px;}
.y21f{bottom:767.793000px;}
.y191{bottom:770.145000px;}
.y1f5{bottom:772.350000px;}
.y22{bottom:773.601000px;}
.y1bf{bottom:773.695500px;}
.y189{bottom:774.475500px;}
.y55{bottom:776.833500px;}
.yaa{bottom:778.179000px;}
.y19a{bottom:778.365000px;}
.y155{bottom:778.627500px;}
.y11a{bottom:779.745000px;}
.y21e{bottom:785.053500px;}
.y190{bottom:786.583500px;}
.y1f4{bottom:789.610500px;}
.y1be{bottom:792.525000px;}
.y21{bottom:793.059000px;}
.y199{bottom:794.803500px;}
.y54{bottom:795.663000px;}
.ya8{bottom:797.008500px;}
.y154{bottom:797.457000px;}
.y119{bottom:798.574500px;}
.y21d{bottom:802.312500px;}
.ya9{bottom:802.432500px;}
.y18f{bottom:803.022000px;}
.y1f3{bottom:806.871000px;}
.y198{bottom:811.240500px;}
.y19d{bottom:811.242000px;}
.y1bd{bottom:811.354500px;}
.y20{bottom:812.515500px;}
.y53{bottom:814.492500px;}
.ya7{bottom:815.838000px;}
.y153{bottom:816.286500px;}
.y18e{bottom:819.460500px;}
.y118{bottom:821.886000px;}
.y1f2{bottom:824.131500px;}
.y197{bottom:827.679000px;}
.y1bc{bottom:830.184000px;}
.y1f{bottom:831.972000px;}
.y52{bottom:833.322000px;}
.ya6{bottom:834.667500px;}
.y152{bottom:835.114500px;}
.y18d{bottom:835.899000px;}
.y1f1{bottom:841.392000px;}
.y196{bottom:844.117500px;}
.y1bb{bottom:849.013500px;}
.y51{bottom:852.151500px;}
.y18c{bottom:852.337500px;}
.ya5{bottom:853.497000px;}
.y151{bottom:853.944000px;}
.y1f0{bottom:858.652500px;}
.y117{bottom:858.882000px;}
.y195{bottom:860.556000px;}
.y18b{bottom:868.776000px;}
.y1e{bottom:868.873500px;}
.y50{bottom:870.981000px;}
.ya4{bottom:872.326500px;}
.y150{bottom:872.773500px;}
.y116{bottom:873.078000px;}
.y1ef{bottom:875.913000px;}
.y194{bottom:876.994500px;}
.y1d{bottom:885.012000px;}
.y18a{bottom:885.214500px;}
.y115{bottom:887.275500px;}
.ya3{bottom:891.156000px;}
.y14f{bottom:891.603000px;}
.y1ee{bottom:893.172000px;}
.y4f{bottom:894.294000px;}
.y13f{bottom:895.638000px;}
.y1c{bottom:901.152000px;}
.y114{bottom:901.471500px;}
.y1b{bottom:905.491500px;}
.y1ba{bottom:905.950500px;}
.y182{bottom:908.854500px;}
.ya2{bottom:909.984000px;}
.y14e{bottom:910.432500px;}
.y4e{bottom:914.467500px;}
.y113{bottom:915.669000px;}
.y188{bottom:917.074500px;}
.y17b{bottom:921.403500px;}
.y1a{bottom:921.631500px;}
.y1b9{bottom:924.778500px;}
.y181{bottom:925.293000px;}
.y1ed{bottom:927.693000px;}
.ya1{bottom:928.813500px;}
.y13e{bottom:929.262000px;}
.y112{bottom:929.865000px;}
.y1ad{bottom:933.297000px;}
.y19{bottom:933.432000px;}
.y187{bottom:933.511500px;}
.y180{bottom:941.731500px;}
.y1b8{bottom:943.608000px;}
.y1ec{bottom:944.953500px;}
.ya0{bottom:947.643000px;}
.y4d{bottom:948.091500px;}
.y186{bottom:949.950000px;}
.y109{bottom:951.025500px;}
.y18{bottom:953.910000px;}
.y111{bottom:958.123500px;}
.y17f{bottom:958.170000px;}
.y1eb{bottom:962.214000px;}
.y1b7{bottom:962.437500px;}
.y107{bottom:965.223000px;}
.y185{bottom:966.388500px;}
.ycf{bottom:966.472500px;}
.y4c{bottom:966.921000px;}
.y100{bottom:970.261500px;}
.y9f{bottom:970.956000px;}
.y110{bottom:972.321000px;}
.y17e{bottom:974.608500px;}
.y106{bottom:979.419000px;}
.y1ea{bottom:979.474500px;}
.y1b6{bottom:981.267000px;}
.y184{bottom:982.827000px;}
.y4b{bottom:985.750500px;}
.y10f{bottom:986.517000px;}
.yce{bottom:989.785500px;}
.y17d{bottom:991.047000px;}
.y105{bottom:993.616500px;}
.y1e9{bottom:996.735000px;}
.y17{bottom:996.901500px;}
.y183{bottom:999.265500px;}
.y1b5{bottom:1000.096500px;}
.y10e{bottom:1000.714500px;}
.y4a{bottom:1004.580000px;}
.y17c{bottom:1007.484000px;}
.y104{bottom:1007.812500px;}
.y1e8{bottom:1013.995500px;}
.y10d{bottom:1014.910500px;}
.y1b4{bottom:1018.926000px;}
.y103{bottom:1022.010000px;}
.y49{bottom:1023.409500px;}
.y10c{bottom:1029.108000px;}
.y17a{bottom:1031.125500px;}
.y1e7{bottom:1031.254500px;}
.y102{bottom:1036.206000px;}
.y16{bottom:1036.821000px;}
.y1b3{bottom:1037.755500px;}
.y48{bottom:1042.239000px;}
.y10b{bottom:1043.304000px;}
.y1e6{bottom:1048.515000px;}
.y101{bottom:1050.403500px;}
.y1b2{bottom:1056.585000px;}
.y10a{bottom:1057.501500px;}
.y47{bottom:1061.068500px;}
.y179{bottom:1062.745500px;}
.y108{bottom:1064.599500px;}
.y15{bottom:1065.066000px;}
.y1e5{bottom:1065.775500px;}
.y9e{bottom:1066.492500px;}
.y1b1{bottom:1075.414500px;}
.y46{bottom:1079.898000px;}
.y1e4{bottom:1083.036000px;}
.yff{bottom:1085.998500px;}
.y14{bottom:1093.309500px;}
.y1b0{bottom:1094.244000px;}
.y45{bottom:1098.727500px;}
.y1e3{bottom:1100.296500px;}
.y44{bottom:1117.557000px;}
.yfe{bottom:1119.037500px;}
.y43{bottom:1177.662000px;}
.h17{height:24.372512px;}
.hd{height:26.461718px;}
.h7{height:31.131341px;}
.h15{height:34.430832px;}
.h2{height:36.319550px;}
.h3{height:38.202476px;}
.h13{height:38.734848px;}
.h14{height:39.434227px;}
.h8{height:41.508281px;}
.h11{height:42.054645px;}
.hf{height:42.065666px;}
.hb{height:43.038432px;}
.h9{height:43.660208px;}
.h4{height:43.815515px;}
.ha{height:46.697011px;}
.h12{height:47.442480px;}
.h16{height:49.117939px;}
.hc{height:51.885221px;}
.h10{height:52.819295px;}
.h6{height:54.411312px;}
.h5{height:77.469696px;}
.he{height:673.715775px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:509.484525px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x35{left:-187.579875px;}
.x37{left:-1.788375px;}
.x0{left:0.000000px;}
.x38{left:28.478625px;}
.x1{left:53.574000px;}
.x7e{left:78.921000px;}
.x112{left:85.848000px;}
.x84{left:111.339000px;}
.x80{left:112.798500px;}
.x83{left:114.702000px;}
.x7f{left:116.161500px;}
.x93{left:118.422000px;}
.x95{left:119.718000px;}
.x82{left:120.760500px;}
.x94{left:124.399500px;}
.x81{left:125.805000px;}
.x96{left:126.993000px;}
.x7d{left:147.343500px;}
.x92{left:149.128500px;}
.x86{left:245.521500px;}
.x87{left:246.979500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x85{left:252.325500px;}
.x48{left:257.160000px;}
.x49{left:265.761000px;}
.x3{left:269.914500px;}
.xf8{left:272.692500px;}
.x109{left:275.635500px;}
.x5{left:281.479500px;}
.xe0{left:282.961500px;}
.x103{left:287.622000px;}
.x5f{left:294.898500px;}
.xf1{left:296.712000px;}
.x105{left:298.044000px;}
.x4a{left:300.058500px;}
.x8{left:304.768500px;}
.x32{left:306.603000px;}
.x60{left:309.843000px;}
.xb2{left:311.074500px;}
.x9{left:312.241500px;}
.x4b{left:314.554500px;}
.xd1{left:315.955500px;}
.xc3{left:318.649500px;}
.x106{left:320.460000px;}
.x33{left:321.546000px;}
.x107{left:322.590000px;}
.x54{left:324.384000px;}
.xbd{left:328.177500px;}
.x113{left:329.512500px;}
.xb3{left:333.490500px;}
.xee{left:335.649000px;}
.xf2{left:337.869000px;}
.x55{left:338.878500px;}
.xf0{left:340.209000px;}
.xdc{left:343.264500px;}
.x2f{left:344.764500px;}
.x111{left:346.062000px;}
.xc2{left:347.224500px;}
.x20{left:348.763500px;}
.xa5{left:351.822000px;}
.xd7{left:354.903000px;}
.x21{left:356.638500px;}
.xef{left:358.065000px;}
.x30{left:359.707500px;}
.xeb{left:362.620500px;}
.x61{left:364.056000px;}
.xc9{left:365.392500px;}
.x31{left:367.135500px;}
.x16{left:368.148000px;}
.x34{left:371.065500px;}
.xe9{left:372.405000px;}
.x39{left:374.577000px;}
.x17{left:375.621000px;}
.xd8{left:377.319000px;}
.x62{left:378.999000px;}
.xc{left:381.525000px;}
.x26{left:383.674500px;}
.x88{left:387.442500px;}
.xd{left:388.996500px;}
.xd9{left:391.948500px;}
.x3a{left:393.273000px;}
.x2c{left:396.631500px;}
.x27{left:398.617500px;}
.x41{left:401.163000px;}
.xe1{left:402.576000px;}
.xa1{left:403.956000px;}
.x28{left:406.239000px;}
.x10b{left:407.400000px;}
.x10{left:408.562500px;}
.xaa{left:410.976000px;}
.xda{left:414.364500px;}
.x11{left:416.034000px;}
.x12{left:419.722500px;}
.x29{left:421.183500px;}
.xe2{left:424.992000px;}
.x13{left:427.194000px;}
.x10a{left:428.370000px;}
.xa2{left:430.069500px;}
.x18{left:434.226000px;}
.xff{left:435.411000px;}
.x63{left:436.449000px;}
.xf9{left:443.107500px;}
.x6d{left:444.172500px;}
.x4e{left:447.888000px;}
.x19{left:449.170500px;}
.xd4{left:450.213000px;}
.x4f{left:451.839000px;}
.xe6{left:455.443500px;}
.xce{left:457.198500px;}
.x6e{left:459.117000px;}
.xa8{left:462.171000px;}
.x75{left:464.211000px;}
.xfa{left:465.523500px;}
.x6f{left:466.738500px;}
.x76{left:471.832500px;}
.xa4{left:474.825000px;}
.xa9{left:477.114000px;}
.x10c{left:478.632000px;}
.x70{left:481.683000px;}
.xad{left:484.192500px;}
.x22{left:486.927000px;}
.xde{left:491.182500px;}
.xc1{left:493.642500px;}
.x4c{left:497.160000px;}
.x23{left:501.870000px;}
.xe3{left:503.787000px;}
.xae{left:506.608500px;}
.x36{left:507.789514px;}
.x4d{left:511.654500px;}
.xec{left:514.342500px;}
.x2a{left:516.768000px;}
.x9a{left:519.028500px;}
.xab{left:520.317000px;}
.x99{left:522.016500px;}
.x8a{left:523.492500px;}
.x8b{left:526.855500px;}
.x2b{left:531.711000px;}
.x8c{left:533.136000px;}
.xac{left:535.260000px;}
.x8d{left:536.497500px;}
.x3b{left:538.188000px;}
.x89{left:539.503500px;}
.x98{left:541.050000px;}
.xca{left:542.628000px;}
.x97{left:544.038000px;}
.x3c{left:546.586500px;}
.x1c{left:548.328000px;}
.xaf{left:552.900000px;}
.x9f{left:554.526000px;}
.xdb{left:557.155500px;}
.xa7{left:558.774000px;}
.xd0{left:561.492000px;}
.x1d{left:563.271000px;}
.xf5{left:566.817000px;}
.xb0{left:567.844500px;}
.xa0{left:569.469000px;}
.xfb{left:571.527000px;}
.x3d{left:572.944500px;}
.x56{left:575.803500px;}
.x64{left:578.571000px;}
.x77{left:579.802500px;}
.x3e{left:581.344500px;}
.x50{left:587.095500px;}
.xa6{left:588.531000px;}
.x57{left:590.746500px;}
.x58{left:594.501000px;}
.xe4{left:597.087000px;}
.x78{left:598.557000px;}
.xd5{left:600.438000px;}
.x51{left:601.590000px;}
.x67{left:602.605500px;}
.x52{left:605.172000px;}
.x59{left:609.445500px;}
.xcb{left:611.896500px;}
.x79{left:613.501500px;}
.xcf{left:617.142000px;}
.x10d{left:618.172500px;}
.x53{left:619.668000px;}
.xb8{left:621.150000px;}
.xbb{left:626.704500px;}
.xf3{left:631.764000px;}
.xcc{left:634.312500px;}
.x1e{left:637.983000px;}
.x10e{left:640.588500px;}
.x3f{left:642.649500px;}
.xc5{left:644.176500px;}
.xfd{left:647.485500px;}
.xe5{left:648.588000px;}
.xbc{left:649.794000px;}
.xa{left:651.297000px;}
.x1f{left:652.926000px;}
.xf4{left:654.180000px;}
.x40{left:657.594000px;}
.xb{left:658.768500px;}
.x6a{left:661.135500px;}
.xc7{left:662.662500px;}
.x6{left:665.509500px;}
.xc6{left:667.264500px;}
.xfe{left:669.901500px;}
.x7{left:672.982500px;}
.x8f{left:674.761500px;}
.x6b{left:676.080000px;}
.xfc{left:677.458500px;}
.x65{left:682.969500px;}
.xc8{left:685.078500px;}
.xe{left:692.842500px;}
.x91{left:696.051000px;}
.x66{left:697.912500px;}
.x9d{left:699.220500px;}
.xf{left:700.315500px;}
.x9b{left:702.676500px;}
.x8e{left:705.694500px;}
.xed{left:706.740000px;}
.x100{left:708.391500px;}
.x90{left:710.893500px;}
.x68{left:712.053000px;}
.x9e{left:713.401500px;}
.x9c{left:715.068000px;}
.x104{left:716.226000px;}
.x7c{left:719.442000px;}
.xea{left:720.568500px;}
.x42{left:722.095500px;}
.x71{left:724.120500px;}
.x2d{left:727.731000px;}
.x101{left:730.807500px;}
.x10f{left:732.399000px;}
.xb9{left:733.500000px;}
.x24{left:735.067500px;}
.x43{left:736.591500px;}
.xb6{left:737.674500px;}
.x102{left:738.778500px;}
.x44{left:740.043000px;}
.x2e{left:742.675500px;}
.x72{left:746.686500px;}
.x25{left:750.012000px;}
.xcd{left:751.885500px;}
.x108{left:753.447000px;}
.x45{left:754.539000px;}
.xba{left:755.916000px;}
.xbe{left:757.525500px;}
.xdd{left:758.887500px;}
.xb7{left:760.090500px;}
.x73{left:761.629500px;}
.xb1{left:762.633000px;}
.x5a{left:764.116500px;}
.xbf{left:765.298500px;}
.xd6{left:768.394500px;}
.xd2{left:773.083500px;}
.xb4{left:774.372000px;}
.xa3{left:776.833500px;}
.x5b{left:779.061000px;}
.xe7{left:780.417000px;}
.xf7{left:781.986000px;}
.x1a{left:783.496500px;}
.x69{left:784.713000px;}
.xc4{left:786.118500px;}
.xc0{left:788.386500px;}
.x74{left:790.225500px;}
.x110{left:792.474000px;}
.x7a{left:794.385000px;}
.xd3{left:795.499500px;}
.xb5{left:796.788000px;}
.x1b{left:798.441000px;}
.x46{left:800.544000px;}
.x47{left:804.495000px;}
.xf6{left:806.913000px;}
.x7b{left:809.329500px;}
.xe8{left:810.454500px;}
.xdf{left:811.455000px;}
.x5c{left:814.086000px;}
.x5d{left:817.837500px;}
.x6c{left:819.028500px;}
.x14{left:826.365000px;}
.x5e{left:832.782000px;}
.x15{left:833.838000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.ls1f{letter-spacing:-0.196080pt;}
.ls25{letter-spacing:-0.111690pt;}
.ls23{letter-spacing:-0.063840pt;}
.ls1d{letter-spacing:-0.052562pt;}
.ls22{letter-spacing:-0.041040pt;}
.ls21{letter-spacing:-0.022800pt;}
.ls1e{letter-spacing:-0.009120pt;}
.ls24{letter-spacing:-0.005077pt;}
.ls20{letter-spacing:-0.004560pt;}
.ls8{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.000078pt;}
.ls35{letter-spacing:0.000174pt;}
.ls6a{letter-spacing:0.000361pt;}
.ls37{letter-spacing:0.000621pt;}
.ls1c{letter-spacing:0.000711pt;}
.ls39{letter-spacing:0.000853pt;}
.ls44{letter-spacing:0.000921pt;}
.ls45{letter-spacing:0.001026pt;}
.ls3f{letter-spacing:0.001505pt;}
.ls5c{letter-spacing:0.001723pt;}
.ls5{letter-spacing:0.001735pt;}
.ls60{letter-spacing:0.002117pt;}
.ls2d{letter-spacing:0.002188pt;}
.ls1{letter-spacing:0.002422pt;}
.ls6b{letter-spacing:0.002465pt;}
.ls42{letter-spacing:0.002525pt;}
.ls57{letter-spacing:0.002950pt;}
.ls2c{letter-spacing:0.003230pt;}
.ls40{letter-spacing:0.004267pt;}
.ls13{letter-spacing:0.004560pt;}
.ls9{letter-spacing:0.004625pt;}
.lse{letter-spacing:0.009120pt;}
.lsd{letter-spacing:0.013680pt;}
.ls17{letter-spacing:0.018240pt;}
.ls15{letter-spacing:0.022800pt;}
.ls11{letter-spacing:0.027360pt;}
.ls16{letter-spacing:0.031920pt;}
.lsb{letter-spacing:0.036389pt;}
.ls12{letter-spacing:0.036480pt;}
.ls1b{letter-spacing:0.040614pt;}
.lsf{letter-spacing:0.041040pt;}
.ls10{letter-spacing:0.045600pt;}
.ls19{letter-spacing:0.050160pt;}
.ls14{letter-spacing:0.059280pt;}
.ls1a{letter-spacing:0.060922pt;}
.ls18{letter-spacing:0.118560pt;}
.lsc{letter-spacing:0.149598pt;}
.lsa{letter-spacing:0.161728pt;}
.ls29{letter-spacing:0.797008pt;}
.ls3{letter-spacing:2.665203pt;}
.ls0{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls28{letter-spacing:10.626800pt;}
.ls62{letter-spacing:10.722351pt;}
.ls6e{letter-spacing:10.809426pt;}
.ls63{letter-spacing:11.489698pt;}
.ls66{letter-spacing:11.734478pt;}
.ls2e{letter-spacing:11.738617pt;}
.ls33{letter-spacing:11.767131pt;}
.ls4f{letter-spacing:11.797594pt;}
.ls53{letter-spacing:11.810786pt;}
.ls70{letter-spacing:11.872329pt;}
.ls54{letter-spacing:11.875151pt;}
.ls48{letter-spacing:11.891361pt;}
.ls52{letter-spacing:11.895467pt;}
.ls69{letter-spacing:11.916543pt;}
.ls6f{letter-spacing:11.917055pt;}
.ls2b{letter-spacing:11.954133pt;}
.ls27{letter-spacing:11.955200pt;}
.ls2f{letter-spacing:11.959467pt;}
.ls5e{letter-spacing:11.968610pt;}
.ls3b{letter-spacing:12.001263pt;}
.ls5d{letter-spacing:12.009959pt;}
.ls41{letter-spacing:12.033916pt;}
.ls5f{letter-spacing:12.039434pt;}
.ls3a{letter-spacing:12.047485pt;}
.ls3e{letter-spacing:12.074340pt;}
.ls31{letter-spacing:12.074400pt;}
.ls36{letter-spacing:12.085245pt;}
.ls32{letter-spacing:12.114975pt;}
.ls51{letter-spacing:12.118045pt;}
.ls46{letter-spacing:12.120835pt;}
.ls5b{letter-spacing:12.128217pt;}
.ls4a{letter-spacing:12.139555pt;}
.ls58{letter-spacing:12.141966pt;}
.ls47{letter-spacing:12.147364pt;}
.ls67{letter-spacing:12.172561pt;}
.ls65{letter-spacing:12.253950pt;}
.ls43{letter-spacing:12.604277pt;}
.ls55{letter-spacing:12.682708pt;}
.ls2a{letter-spacing:12.850029pt;}
.ls26{letter-spacing:13.177199pt;}
.ls59{letter-spacing:13.268329pt;}
.ls3c{letter-spacing:13.597741pt;}
.ls4b{letter-spacing:13.806892pt;}
.ls6d{letter-spacing:13.817349pt;}
.ls30{letter-spacing:13.843493pt;}
.ls4e{letter-spacing:14.212476pt;}
.ls3d{letter-spacing:14.277480pt;}
.ls4d{letter-spacing:14.836957pt;}
.ls56{letter-spacing:14.915388pt;}
.ls38{letter-spacing:15.096840pt;}
.ls4c{letter-spacing:15.250029pt;}
.ls64{letter-spacing:15.924539pt;}
.ls6c{letter-spacing:15.940225pt;}
.ls2{letter-spacing:15.942400pt;}
.ls50{letter-spacing:16.055258pt;}
.ls68{letter-spacing:16.860486pt;}
.ls34{letter-spacing:16.897088pt;}
.ls5a{letter-spacing:17.451336pt;}
.ls49{letter-spacing:17.461793pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.wsc7{word-spacing:-14.080475pt;}
.wsb{word-spacing:-13.283467pt;}
.wsf{word-spacing:-12.760670pt;}
.ws5a{word-spacing:-11.955200pt;}
.ws4e{word-spacing:-11.400000pt;}
.ws4f{word-spacing:-11.358960pt;}
.ws50{word-spacing:-11.336160pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws4c{word-spacing:-10.269728pt;}
.ws4d{word-spacing:-10.108000pt;}
.ws2{word-spacing:-9.298400pt;}
.ws86{word-spacing:-3.347434pt;}
.ws87{word-spacing:-3.338031pt;}
.ws88{word-spacing:-3.294300pt;}
.ws98{word-spacing:-2.869229pt;}
.ws17{word-spacing:-2.630144pt;}
.ws8b{word-spacing:-2.603559pt;}
.ws10b{word-spacing:-2.582323pt;}
.wsf7{word-spacing:-2.550426pt;}
.ws47{word-spacing:-2.497292pt;}
.wscd{word-spacing:-2.231622pt;}
.wse1{word-spacing:-2.178489pt;}
.ws48{word-spacing:-1.965953pt;}
.ws96{word-spacing:-1.912819pt;}
.ws19{word-spacing:-1.865011pt;}
.wse3{word-spacing:-1.753418pt;}
.wsba{word-spacing:-1.700284pt;}
.wseb{word-spacing:-1.647150pt;}
.ws192{word-spacing:-1.625907pt;}
.ws9c{word-spacing:-1.540882pt;}
.ws173{word-spacing:-1.530266pt;}
.ws170{word-spacing:-1.482445pt;}
.ws95{word-spacing:-1.434614pt;}
.ws132{word-spacing:-1.338982pt;}
.wsd6{word-spacing:-1.328347pt;}
.ws8d{word-spacing:-1.275213pt;}
.ws176{word-spacing:-1.243341pt;}
.wsed{word-spacing:-1.222079pt;}
.ws31{word-spacing:-1.168945pt;}
.ws12b{word-spacing:-1.147699pt;}
.ws3f{word-spacing:-1.115811pt;}
.ws91{word-spacing:-1.009543pt;}
.ws18{word-spacing:-0.956416pt;}
.wsf3{word-spacing:-0.850142pt;}
.ws90{word-spacing:-0.797008pt;}
.ws71{word-spacing:-0.788880pt;}
.ws72{word-spacing:-0.779760pt;}
.ws1a5{word-spacing:-0.765133pt;}
.wsc9{word-spacing:-0.743874pt;}
.ws89{word-spacing:-0.690740pt;}
.wsbe{word-spacing:-0.637606pt;}
.ws194{word-spacing:-0.621670pt;}
.wsa9{word-spacing:-0.595101pt;}
.wscc{word-spacing:-0.584473pt;}
.wsf2{word-spacing:-0.531339pt;}
.ws104{word-spacing:-0.478208pt;}
.wsa4{word-spacing:-0.478205pt;}
.ws4b{word-spacing:-0.425071pt;}
.ws1a3{word-spacing:-0.382566pt;}
.ws93{word-spacing:-0.371937pt;}
.wsca{word-spacing:-0.318803pt;}
.ws119{word-spacing:-0.286925pt;}
.ws29{word-spacing:-0.265669pt;}
.ws19f{word-spacing:-0.260120pt;}
.ws102{word-spacing:-0.239104pt;}
.ws5e{word-spacing:-0.234506pt;}
.ws24{word-spacing:-0.212535pt;}
.ws118{word-spacing:-0.194023pt;}
.ws12{word-spacing:-0.191283pt;}
.ws21{word-spacing:-0.159402pt;}
.ws13{word-spacing:-0.143462pt;}
.wsaa{word-spacing:-0.127522pt;}
.ws5f{word-spacing:-0.109166pt;}
.ws22{word-spacing:-0.106268pt;}
.ws1b{word-spacing:-0.095642pt;}
.ws1ae{word-spacing:-0.095097pt;}
.ws15f{word-spacing:-0.078123pt;}
.wsd{word-spacing:-0.053134pt;}
.ws100{word-spacing:-0.047821pt;}
.ws1ac{word-spacing:-0.045598pt;}
.ws3{word-spacing:-0.037194pt;}
.ws5d{word-spacing:-0.020216pt;}
.ws191{word-spacing:-0.011605pt;}
.ws19c{word-spacing:-0.010914pt;}
.ws147{word-spacing:-0.009677pt;}
.ws18f{word-spacing:-0.007757pt;}
.ws141{word-spacing:-0.007671pt;}
.ws178{word-spacing:-0.007612pt;}
.ws11e{word-spacing:-0.007347pt;}
.ws116{word-spacing:-0.006050pt;}
.ws137{word-spacing:-0.005623pt;}
.ws16b{word-spacing:-0.005530pt;}
.ws13d{word-spacing:-0.004813pt;}
.ws128{word-spacing:-0.004489pt;}
.ws126{word-spacing:-0.004445pt;}
.ws114{word-spacing:-0.004207pt;}
.ws1b6{word-spacing:-0.003755pt;}
.ws113{word-spacing:-0.003695pt;}
.ws1b1{word-spacing:-0.003575pt;}
.ws15e{word-spacing:-0.003456pt;}
.ws124{word-spacing:-0.003430pt;}
.ws134{word-spacing:-0.003311pt;}
.wsc{word-spacing:-0.003185pt;}
.ws162{word-spacing:-0.003081pt;}
.ws17b{word-spacing:-0.002765pt;}
.ws175{word-spacing:-0.002688pt;}
.ws19b{word-spacing:-0.002679pt;}
.ws189{word-spacing:-0.002389pt;}
.ws10a{word-spacing:-0.002330pt;}
.ws171{word-spacing:-0.002278pt;}
.ws10d{word-spacing:-0.000717pt;}
.ws1b7{word-spacing:-0.000179pt;}
.ws1{word-spacing:0.000000pt;}
.ws1b3{word-spacing:0.001126pt;}
.wse{word-spacing:0.001652pt;}
.ws117{word-spacing:0.002193pt;}
.ws10e{word-spacing:0.003004pt;}
.wsc1{word-spacing:0.003422pt;}
.wsab{word-spacing:0.042507pt;}
.ws1a{word-spacing:0.047821pt;}
.ws28{word-spacing:0.053134pt;}
.ws122{word-spacing:0.084617pt;}
.ws101{word-spacing:0.095642pt;}
.ws7a{word-spacing:0.104880pt;}
.ws33{word-spacing:0.106268pt;}
.ws67{word-spacing:0.114000pt;}
.ws110{word-spacing:0.117442pt;}
.wsa8{word-spacing:0.127522pt;}
.ws38{word-spacing:0.136111pt;}
.ws7b{word-spacing:0.136800pt;}
.ws37{word-spacing:0.139021pt;}
.ws58{word-spacing:0.143462pt;}
.ws15c{word-spacing:0.151820pt;}
.ws36{word-spacing:0.159402pt;}
.ws68{word-spacing:0.159600pt;}
.ws16{word-spacing:0.191283pt;}
.wsb7{word-spacing:0.194029pt;}
.wsb8{word-spacing:0.196063pt;}
.ws2a{word-spacing:0.212535pt;}
.ws5b{word-spacing:0.239104pt;}
.wsad{word-spacing:0.265669pt;}
.ws5c{word-spacing:0.286925pt;}
.ws4a{word-spacing:0.318803pt;}
.ws1a9{word-spacing:0.334746pt;}
.ws85{word-spacing:0.371937pt;}
.wsf9{word-spacing:0.382566pt;}
.ws6f{word-spacing:0.419520pt;}
.ws6c{word-spacing:0.424080pt;}
.ws49{word-spacing:0.425071pt;}
.wsfe{word-spacing:0.430387pt;}
.ws6b{word-spacing:0.433200pt;}
.ws70{word-spacing:0.437760pt;}
.ws26{word-spacing:0.478205pt;}
.ws13a{word-spacing:0.478208pt;}
.ws167{word-spacing:0.526029pt;}
.ws27{word-spacing:0.531339pt;}
.ws168{word-spacing:0.533157pt;}
.wsbf{word-spacing:0.584473pt;}
.wsfa{word-spacing:0.669491pt;}
.ws2f{word-spacing:0.690740pt;}
.ws6e{word-spacing:0.706800pt;}
.ws169{word-spacing:0.717312pt;}
.ws6d{word-spacing:0.761520pt;}
.wscb{word-spacing:0.797008pt;}
.ws133{word-spacing:0.812954pt;}
.wsfc{word-spacing:0.908595pt;}
.ws3d{word-spacing:0.956410pt;}
.ws1d{word-spacing:0.956416pt;}
.ws179{word-spacing:1.004237pt;}
.ws3e{word-spacing:1.009543pt;}
.ws75{word-spacing:1.039680pt;}
.ws76{word-spacing:1.048800pt;}
.wsdb{word-spacing:1.062677pt;}
.ws174{word-spacing:1.099878pt;}
.wse4{word-spacing:1.115811pt;}
.ws15{word-spacing:1.147699pt;}
.wsc0{word-spacing:1.168945pt;}
.ws16a{word-spacing:1.195520pt;}
.wsa{word-spacing:1.227389pt;}
.ws129{word-spacing:1.243341pt;}
.ws94{word-spacing:1.275213pt;}
.wsec{word-spacing:1.328347pt;}
.ws2e{word-spacing:1.381481pt;}
.ws55{word-spacing:1.386803pt;}
.ws3c{word-spacing:1.422123pt;}
.ws25{word-spacing:1.434614pt;}
.ws108{word-spacing:1.434624pt;}
.ws23{word-spacing:1.487748pt;}
.ws112{word-spacing:1.530266pt;}
.ws84{word-spacing:1.540882pt;}
.ws3b{word-spacing:1.594016pt;}
.ws3a{word-spacing:1.620429pt;}
.ws78{word-spacing:1.632480pt;}
.ws77{word-spacing:1.646160pt;}
.ws39{word-spacing:1.647150pt;}
.ws79{word-spacing:1.650720pt;}
.ws61{word-spacing:1.664400pt;}
.ws10c{word-spacing:1.673728pt;}
.ws63{word-spacing:1.678080pt;}
.ws62{word-spacing:1.687200pt;}
.wsb6{word-spacing:1.700284pt;}
.wsb5{word-spacing:1.702074pt;}
.ws183{word-spacing:1.721549pt;}
.wsb1{word-spacing:1.753418pt;}
.ws1b4{word-spacing:1.769370pt;}
.wsb2{word-spacing:1.802922pt;}
.ws99{word-spacing:1.806551pt;}
.ws12e{word-spacing:1.808560pt;}
.ws12d{word-spacing:1.817190pt;}
.wse8{word-spacing:1.859685pt;}
.ws56{word-spacing:1.865011pt;}
.ws64{word-spacing:1.874160pt;}
.ws35{word-spacing:1.912819pt;}
.ws1ab{word-spacing:1.912832pt;}
.ws59{word-spacing:1.960653pt;}
.ws53{word-spacing:2.008474pt;}
.ws97{word-spacing:2.019087pt;}
.ws44{word-spacing:2.072221pt;}
.ws120{word-spacing:2.104115pt;}
.ws8c{word-spacing:2.125355pt;}
.wscf{word-spacing:2.178489pt;}
.ws4{word-spacing:2.231616pt;}
.ws0{word-spacing:2.232481pt;}
.ws7e{word-spacing:2.234400pt;}
.ws157{word-spacing:2.247578pt;}
.ws43{word-spacing:2.284756pt;}
.ws16d{word-spacing:2.295398pt;}
.wse7{word-spacing:2.337890pt;}
.ws16e{word-spacing:2.343219pt;}
.wsc8{word-spacing:2.391024pt;}
.ws15a{word-spacing:2.391040pt;}
.ws2b{word-spacing:2.444158pt;}
.wsd0{word-spacing:2.497292pt;}
.wsb4{word-spacing:2.525724pt;}
.ws193{word-spacing:2.534502pt;}
.ws42{word-spacing:2.550426pt;}
.ws10{word-spacing:2.550432pt;}
.ws7f{word-spacing:2.576400pt;}
.ws155{word-spacing:2.582323pt;}
.ws8a{word-spacing:2.603559pt;}
.ws103{word-spacing:2.630144pt;}
.ws11{word-spacing:2.647848pt;}
.wsee{word-spacing:2.656693pt;}
.ws143{word-spacing:2.677965pt;}
.ws2d{word-spacing:2.709827pt;}
.ws146{word-spacing:2.725786pt;}
.wsa3{word-spacing:2.762961pt;}
.ws164{word-spacing:2.773606pt;}
.ws45{word-spacing:2.816095pt;}
.ws188{word-spacing:2.818221pt;}
.ws148{word-spacing:2.820570pt;}
.ws1af{word-spacing:2.858675pt;}
.ws154{word-spacing:2.859443pt;}
.ws1b5{word-spacing:2.859998pt;}
.ws17c{word-spacing:2.860365pt;}
.ws1b2{word-spacing:2.860578pt;}
.ws184{word-spacing:2.861542pt;}
.ws165{word-spacing:2.861551pt;}
.ws1a0{word-spacing:2.861602pt;}
.ws1e{word-spacing:2.861926pt;}
.ws136{word-spacing:2.862106pt;}
.ws163{word-spacing:2.862387pt;}
.ws1aa{word-spacing:2.862421pt;}
.ws196{word-spacing:2.862438pt;}
.ws1a1{word-spacing:2.862754pt;}
.ws18a{word-spacing:2.862822pt;}
.ws13f{word-spacing:2.862874pt;}
.ws15d{word-spacing:2.862916pt;}
.ws12f{word-spacing:2.863002pt;}
.ws13c{word-spacing:2.863121pt;}
.ws14e{word-spacing:2.863360pt;}
.ws18d{word-spacing:2.863633pt;}
.ws198{word-spacing:2.863795pt;}
.ws14f{word-spacing:2.864009pt;}
.ws135{word-spacing:2.864239pt;}
.ws1b0{word-spacing:2.864316pt;}
.ws18e{word-spacing:2.864486pt;}
.ws115{word-spacing:2.864725pt;}
.ws17d{word-spacing:2.864922pt;}
.ws1a4{word-spacing:2.864964pt;}
.ws17e{word-spacing:2.865126pt;}
.ws106{word-spacing:2.865246pt;}
.ws1a8{word-spacing:2.865306pt;}
.ws177{word-spacing:2.865348pt;}
.ws105{word-spacing:2.865417pt;}
.ws186{word-spacing:2.865451pt;}
.wsff{word-spacing:2.865476pt;}
.ws144{word-spacing:2.865493pt;}
.ws138{word-spacing:2.865527pt;}
.ws131{word-spacing:2.865553pt;}
.ws166{word-spacing:2.865698pt;}
.ws1ad{word-spacing:2.865749pt;}
.ws10f{word-spacing:2.865877pt;}
.ws19d{word-spacing:2.866074pt;}
.wsf8{word-spacing:2.866509pt;}
.ws172{word-spacing:2.866628pt;}
.ws127{word-spacing:2.866953pt;}
.ws180{word-spacing:2.867081pt;}
.ws161{word-spacing:2.867174pt;}
.ws107{word-spacing:2.868531pt;}
.ws125{word-spacing:2.868847pt;}
.ws151{word-spacing:2.868958pt;}
.ws11a{word-spacing:2.869137pt;}
.wsd7{word-spacing:2.869229pt;}
.wsfd{word-spacing:2.869248pt;}
.ws195{word-spacing:2.917069pt;}
.ws9d{word-spacing:2.922363pt;}
.ws187{word-spacing:2.957446pt;}
.ws123{word-spacing:2.964890pt;}
.wsd8{word-spacing:2.975497pt;}
.ws160{word-spacing:3.008991pt;}
.ws11f{word-spacing:3.012710pt;}
.wsea{word-spacing:3.028630pt;}
.ws111{word-spacing:3.060531pt;}
.wsae{word-spacing:3.081764pt;}
.ws139{word-spacing:3.093607pt;}
.ws14c{word-spacing:3.108352pt;}
.ws199{word-spacing:3.124991pt;}
.wsc5{word-spacing:3.134898pt;}
.ws16f{word-spacing:3.146376pt;}
.ws142{word-spacing:3.156173pt;}
.wsaf{word-spacing:3.178679pt;}
.ws1f{word-spacing:3.188032pt;}
.ws150{word-spacing:3.203994pt;}
.ws20{word-spacing:3.241166pt;}
.ws15b{word-spacing:3.251814pt;}
.ws92{word-spacing:3.294300pt;}
.ws8e{word-spacing:3.347434pt;}
.ws14d{word-spacing:3.347456pt;}
.wsc4{word-spacing:3.506835pt;}
.ws34{word-spacing:3.559969pt;}
.wsf1{word-spacing:3.613103pt;}
.ws121{word-spacing:3.634381pt;}
.wsbc{word-spacing:3.666237pt;}
.ws51{word-spacing:3.777843pt;}
.ws8f{word-spacing:3.825638pt;}
.ws52{word-spacing:3.825664pt;}
.ws19a{word-spacing:3.873485pt;}
.wsdf{word-spacing:3.878772pt;}
.ws11c{word-spacing:3.921306pt;}
.ws18c{word-spacing:3.969126pt;}
.ws16c{word-spacing:4.016947pt;}
.wsb0{word-spacing:4.038174pt;}
.ws6a{word-spacing:4.058400pt;}
.ws69{word-spacing:4.062960pt;}
.wsd4{word-spacing:4.091308pt;}
.ws14{word-spacing:4.112589pt;}
.wsf0{word-spacing:4.144442pt;}
.ws130{word-spacing:4.160410pt;}
.wsac{word-spacing:4.197575pt;}
.ws159{word-spacing:4.208230pt;}
.wse9{word-spacing:4.250709pt;}
.ws1c{word-spacing:4.256051pt;}
.ws81{word-spacing:4.279742pt;}
.wsd5{word-spacing:4.303843pt;}
.ws11b{word-spacing:4.303872pt;}
.ws17a{word-spacing:4.334428pt;}
.ws149{word-spacing:4.351693pt;}
.wsa0{word-spacing:4.356977pt;}
.ws57{word-spacing:4.399514pt;}
.ws46{word-spacing:4.463245pt;}
.ws17f{word-spacing:4.495155pt;}
.wse5{word-spacing:4.516379pt;}
.wsc2{word-spacing:4.622646pt;}
.ws13e{word-spacing:4.638618pt;}
.ws80{word-spacing:4.645272pt;}
.ws13b{word-spacing:4.686438pt;}
.ws140{word-spacing:4.734259pt;}
.wsde{word-spacing:4.782048pt;}
.ws19e{word-spacing:4.829901pt;}
.wsf6{word-spacing:4.835182pt;}
.ws8{word-spacing:4.872362pt;}
.ws11d{word-spacing:4.925542pt;}
.ws74{word-spacing:4.988640pt;}
.wsf5{word-spacing:4.994583pt;}
.ws73{word-spacing:5.011440pt;}
.ws197{word-spacing:5.021184pt;}
.wsbd{word-spacing:5.100851pt;}
.ws12c{word-spacing:5.116826pt;}
.ws18b{word-spacing:5.164646pt;}
.ws41{word-spacing:5.207119pt;}
.ws40{word-spacing:5.260253pt;}
.wsfb{word-spacing:5.308109pt;}
.ws54{word-spacing:5.355930pt;}
.wsa1{word-spacing:5.366521pt;}
.wse0{word-spacing:5.419654pt;}
.ws14b{word-spacing:5.499392pt;}
.wsb3{word-spacing:5.525922pt;}
.ws153{word-spacing:5.595034pt;}
.wsd9{word-spacing:5.632190pt;}
.ws9f{word-spacing:5.685324pt;}
.ws190{word-spacing:5.690675pt;}
.ws32{word-spacing:5.738458pt;}
.wsc3{word-spacing:5.844725pt;}
.ws30{word-spacing:6.004127pt;}
.wsda{word-spacing:6.110395pt;}
.wsdd{word-spacing:6.163529pt;}
.ws9e{word-spacing:6.216662pt;}
.ws185{word-spacing:6.360166pt;}
.ws9a{word-spacing:6.376064pt;}
.wsd3{word-spacing:6.429198pt;}
.wsd2{word-spacing:6.482332pt;}
.wsd1{word-spacing:6.535466pt;}
.wsa2{word-spacing:6.588599pt;}
.wsce{word-spacing:6.748001pt;}
.wsf4{word-spacing:6.801135pt;}
.wsef{word-spacing:6.907403pt;}
.wsb9{word-spacing:7.013670pt;}
.ws12a{word-spacing:7.077478pt;}
.ws7c{word-spacing:7.127280pt;}
.ws7d{word-spacing:7.140960pt;}
.ws145{word-spacing:7.412224pt;}
.wsbb{word-spacing:7.491875pt;}
.ws152{word-spacing:7.577488pt;}
.ws1a7{word-spacing:7.603507pt;}
.ws109{word-spacing:7.651328pt;}
.ws181{word-spacing:8.225178pt;}
.wse2{word-spacing:8.342017pt;}
.wsc6{word-spacing:8.501419pt;}
.ws6{word-spacing:8.740496pt;}
.ws60{word-spacing:9.812846pt;}
.ws65{word-spacing:9.895200pt;}
.ws182{word-spacing:9.898906pt;}
.ws66{word-spacing:9.913440pt;}
.ws158{word-spacing:10.042368pt;}
.ws7{word-spacing:10.525789pt;}
.ws156{word-spacing:11.046605pt;}
.wsa6{word-spacing:11.955200pt;}
.ws1a6{word-spacing:12.702461pt;}
.ws83{word-spacing:12.813843pt;}
.ws82{word-spacing:12.966147pt;}
.ws9{word-spacing:14.282342pt;}
.ws1a2{word-spacing:14.900090pt;}
.ws14a{word-spacing:16.354714pt;}
.wse6{word-spacing:17.268507pt;}
.ws5{word-spacing:19.857270pt;}
.ws9b{word-spacing:20.934743pt;}
.wsa5{word-spacing:344.309760pt;}
.wsa7{word-spacing:357.698088pt;}
.wsdc{word-spacing:561.655296pt;}
._2a{margin-left:-21.280256pt;}
._2d{margin-left:-18.343831pt;}
._2b{margin-left:-17.236427pt;}
._7{margin-left:-10.616218pt;}
._1c{margin-left:-7.518446pt;}
._8{margin-left:-5.896688pt;}
._0{margin-left:-4.797333pt;}
._1{margin-left:-3.421811pt;}
._f{margin-left:-2.470729pt;}
._6{margin-left:-1.301776pt;}
._1a{width:1.221046pt;}
._2c{width:2.725786pt;}
._26{width:3.985040pt;}
._29{width:5.355930pt;}
._3{width:9.298400pt;}
._10{width:10.626800pt;}
._2{width:11.526782pt;}
._11{width:13.174575pt;}
._c{width:14.169686pt;}
._9{width:15.159194pt;}
._e{width:16.258963pt;}
._d{width:17.151955pt;}
._b{width:18.543132pt;}
._17{width:19.872066pt;}
._15{width:21.094145pt;}
._1e{width:22.023984pt;}
._4{width:23.063232pt;}
._27{width:24.016508pt;}
._14{width:24.972917pt;}
._a{width:26.731827pt;}
._5{width:27.783619pt;}
._25{width:28.904823pt;}
._19{width:30.233170pt;}
._23{width:31.163009pt;}
._18{width:32.677328pt;}
._16{width:35.811055pt;}
._1d{width:37.220270pt;}
._28{width:54.993920pt;}
._1f{width:369.511322pt;}
._21{width:380.141890pt;}
._12{width:733.419229pt;}
._20{width:741.078938pt;}
._22{width:753.312598pt;}
._1b{width:1688.084518pt;}
._24{width:2092.609076pt;}
._13{width:2113.862410pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsb{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs8{font-size:40.432000pt;}
.fs7{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fsa{font-size:45.600000pt;}
.fs6{font-size:47.820800pt;}
.fs9{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.y7a{bottom:-326.897153pt;}
.y8c{bottom:-268.300530pt;}
.y8b{bottom:-252.113153pt;}
.y8a{bottom:-221.029913pt;}
.y89{bottom:-206.286293pt;}
.y88{bottom:-191.694293pt;}
.y87{bottom:-177.102293pt;}
.y86{bottom:-162.510293pt;}
.y85{bottom:-147.841913pt;}
.y84{bottom:-133.249913pt;}
.y83{bottom:-118.657913pt;}
.y82{bottom:-104.065913pt;}
.y81{bottom:-89.397533pt;}
.y80{bottom:-74.805533pt;}
.y7f{bottom:-60.213533pt;}
.y7e{bottom:-45.621533pt;}
.y7d{bottom:-30.953153pt;}
.y7c{bottom:-16.361153pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:2.563052pt;}
.y42{bottom:28.346667pt;}
.y41{bottom:92.108000pt;}
.y13{bottom:93.018667pt;}
.y1e2{bottom:100.769333pt;}
.y9d{bottom:101.960000pt;}
.y21c{bottom:103.518667pt;}
.ycd{bottom:105.112000pt;}
.y14d{bottom:105.510667pt;}
.y176{bottom:105.909333pt;}
.y13d{bottom:107.301333pt;}
.y40{bottom:108.844000pt;}
.y12{bottom:108.920000pt;}
.y1e1{bottom:116.110667pt;}
.y9c{bottom:118.697333pt;}
.y21b{bottom:118.861333pt;}
.ycc{bottom:121.849333pt;}
.y14c{bottom:122.248000pt;}
.y175{bottom:122.646667pt;}
.y13c{bottom:124.038667pt;}
.y11{bottom:124.820000pt;}
.y3f{bottom:125.581333pt;}
.y1e0{bottom:131.453333pt;}
.y21a{bottom:134.202667pt;}
.ycb{bottom:138.586667pt;}
.y14b{bottom:138.985333pt;}
.y174{bottom:139.384000pt;}
.y10{bottom:140.720000pt;}
.y13b{bottom:140.776000pt;}
.y3e{bottom:142.318667pt;}
.y1df{bottom:146.796000pt;}
.y9b{bottom:148.533333pt;}
.y219{bottom:149.545333pt;}
.yf3{bottom:153.057333pt;}
.y76{bottom:154.925333pt;}
.y14a{bottom:155.722667pt;}
.y173{bottom:156.121333pt;}
.yf{bottom:156.621333pt;}
.y13a{bottom:157.513333pt;}
.y3d{bottom:159.056000pt;}
.yca{bottom:159.309333pt;}
.y1de{bottom:162.138667pt;}
.y218{bottom:164.888000pt;}
.y9a{bottom:165.629333pt;}
.yf2{bottom:167.669333pt;}
.y75{bottom:171.662667pt;}
.y149{bottom:172.460000pt;}
.ye{bottom:172.521333pt;}
.y172{bottom:172.858667pt;}
.y139{bottom:174.250667pt;}
.yfd{bottom:174.976000pt;}
.y3c{bottom:175.793333pt;}
.y1dd{bottom:177.481333pt;}
.y217{bottom:180.230667pt;}
.yf1{bottom:182.281333pt;}
.y99{bottom:182.725333pt;}
.y74{bottom:188.400000pt;}
.yd{bottom:188.421333pt;}
.yc9{bottom:189.197333pt;}
.yfc{bottom:189.586667pt;}
.y171{bottom:189.596000pt;}
.y138{bottom:190.988000pt;}
.y3b{bottom:192.530667pt;}
.y1dc{bottom:192.824000pt;}
.y216{bottom:195.573333pt;}
.ye9{bottom:196.893333pt;}
.y98{bottom:199.821333pt;}
.yfb{bottom:204.198667pt;}
.yc{bottom:204.322667pt;}
.y73{bottom:205.137333pt;}
.yc8{bottom:205.934667pt;}
.y170{bottom:206.333333pt;}
.y137{bottom:207.725333pt;}
.y1db{bottom:208.166667pt;}
.y3a{bottom:209.268000pt;}
.y215{bottom:210.916000pt;}
.ye8{bottom:211.505333pt;}
.y97{bottom:216.916000pt;}
.yfa{bottom:218.810667pt;}
.y72{bottom:221.874667pt;}
.yc7{bottom:222.672000pt;}
.y16f{bottom:223.070667pt;}
.y1da{bottom:223.509333pt;}
.y136{bottom:224.462667pt;}
.y39{bottom:226.005333pt;}
.ye7{bottom:226.117333pt;}
.y214{bottom:226.258667pt;}
.ydf{bottom:229.965333pt;}
.yf9{bottom:233.422667pt;}
.y96{bottom:234.012000pt;}
.y71{bottom:238.612000pt;}
.y1d9{bottom:238.852000pt;}
.yc6{bottom:239.409333pt;}
.y16e{bottom:239.808000pt;}
.ye6{bottom:240.728000pt;}
.yf0{bottom:240.729333pt;}
.y135{bottom:241.200000pt;}
.y213{bottom:241.601333pt;}
.y38{bottom:242.742667pt;}
.yec{bottom:248.034667pt;}
.y95{bottom:251.108000pt;}
.y1d8{bottom:254.193333pt;}
.ye5{bottom:255.340000pt;}
.y70{bottom:255.349333pt;}
.yc5{bottom:256.146667pt;}
.y16d{bottom:256.545333pt;}
.y212{bottom:256.944000pt;}
.y134{bottom:257.937333pt;}
.y37{bottom:259.480000pt;}
.y148{bottom:260.132000pt;}
.yeb{bottom:262.646667pt;}
.yb{bottom:264.148000pt;}
.y94{bottom:268.204000pt;}
.y1d7{bottom:269.536000pt;}
.ye4{bottom:269.952000pt;}
.y6f{bottom:272.086667pt;}
.y211{bottom:272.285333pt;}
.yc4{bottom:272.884000pt;}
.y16c{bottom:273.282667pt;}
.y133{bottom:274.674667pt;}
.y36{bottom:276.217333pt;}
.yea{bottom:277.258667pt;}
.ya{bottom:280.048000pt;}
.ye3{bottom:284.564000pt;}
.y1d6{bottom:284.878667pt;}
.y93{bottom:285.300000pt;}
.y210{bottom:287.628000pt;}
.y6e{bottom:288.824000pt;}
.yc3{bottom:289.621333pt;}
.y147{bottom:290.020000pt;}
.y132{bottom:291.412000pt;}
.yf8{bottom:291.870667pt;}
.y35{bottom:292.954667pt;}
.y178{bottom:293.606667pt;}
.y9{bottom:295.949333pt;}
.ye2{bottom:299.176000pt;}
.y1d5{bottom:300.221333pt;}
.y92{bottom:302.396000pt;}
.y20e{bottom:302.970667pt;}
.y6d{bottom:305.561333pt;}
.yc2{bottom:306.358667pt;}
.yf7{bottom:306.482667pt;}
.y146{bottom:306.757333pt;}
.y20f{bottom:307.310667pt;}
.y131{bottom:308.148000pt;}
.y34{bottom:309.692000pt;}
.y16b{bottom:310.741333pt;}
.y8{bottom:311.849333pt;}
.ye1{bottom:313.788000pt;}
.y1d4{bottom:315.564000pt;}
.y20d{bottom:318.313333pt;}
.y91{bottom:319.492000pt;}
.yf6{bottom:321.094667pt;}
.y6c{bottom:322.298667pt;}
.yc1{bottom:323.096000pt;}
.y145{bottom:323.494667pt;}
.y130{bottom:324.885333pt;}
.y33{bottom:326.429333pt;}
.ye0{bottom:328.400000pt;}
.y1d3{bottom:330.906667pt;}
.y20b{bottom:333.656000pt;}
.yf5{bottom:335.705333pt;}
.y90{bottom:336.588000pt;}
.y7{bottom:337.048000pt;}
.y20c{bottom:337.996000pt;}
.y6b{bottom:339.036000pt;}
.yc0{bottom:339.833333pt;}
.y144{bottom:340.232000pt;}
.y16a{bottom:340.629333pt;}
.y12f{bottom:341.622667pt;}
.yef{bottom:343.012000pt;}
.y32{bottom:343.166667pt;}
.y1ae{bottom:343.817333pt;}
.y1d2{bottom:346.249333pt;}
.y20a{bottom:348.998667pt;}
.yf4{bottom:350.317333pt;}
.y8f{bottom:353.684000pt;}
.y6a{bottom:355.773333pt;}
.ybf{bottom:356.570667pt;}
.y143{bottom:356.968000pt;}
.y169{bottom:357.366667pt;}
.yee{bottom:357.624000pt;}
.y12e{bottom:358.360000pt;}
.y31{bottom:359.904000pt;}
.y6{bottom:360.918667pt;}
.y1d1{bottom:361.592000pt;}
.y209{bottom:364.341333pt;}
.y8e{bottom:370.780000pt;}
.yed{bottom:372.236000pt;}
.y69{bottom:372.510667pt;}
.ybe{bottom:373.308000pt;}
.y142{bottom:373.705333pt;}
.y168{bottom:374.104000pt;}
.y12d{bottom:375.097333pt;}
.y30{bottom:376.641333pt;}
.y5{bottom:376.818667pt;}
.y1d0{bottom:376.933333pt;}
.y207{bottom:379.684000pt;}
.y208{bottom:384.022667pt;}
.y8d{bottom:387.874667pt;}
.y68{bottom:389.248000pt;}
.y141{bottom:390.442667pt;}
.y167{bottom:390.841333pt;}
.y12c{bottom:391.834667pt;}
.y1cf{bottom:392.276000pt;}
.y4{bottom:392.720000pt;}
.yde{bottom:393.249333pt;}
.y1ac{bottom:393.378667pt;}
.ybd{bottom:394.029333pt;}
.y206{bottom:395.025333pt;}
.y2f{bottom:397.364000pt;}
.y67{bottom:405.985333pt;}
.y140{bottom:407.180000pt;}
.y166{bottom:407.578667pt;}
.y1ce{bottom:407.618667pt;}
.y77{bottom:407.812000pt;}
.y12b{bottom:408.572000pt;}
.y3{bottom:408.620000pt;}
.y1ab{bottom:410.116000pt;}
.y205{bottom:410.368000pt;}
.y66{bottom:422.722667pt;}
.y1cd{bottom:422.961333pt;}
.ybc{bottom:423.917333pt;}
.ydd{bottom:424.012000pt;}
.y165{bottom:424.316000pt;}
.y2{bottom:424.520000pt;}
.y12a{bottom:425.309333pt;}
.y204{bottom:425.710667pt;}
.y1aa{bottom:426.853333pt;}
.y1cc{bottom:438.304000pt;}
.y65{bottom:439.460000pt;}
.y1{bottom:440.421333pt;}
.ybb{bottom:440.654667pt;}
.y164{bottom:441.053333pt;}
.y129{bottom:442.046667pt;}
.y1a9{bottom:443.590667pt;}
.y1cb{bottom:453.646667pt;}
.y64{bottom:456.197333pt;}
.y203{bottom:456.396000pt;}
.ydc{bottom:456.993333pt;}
.yba{bottom:457.392000pt;}
.y163{bottom:457.790667pt;}
.y128{bottom:458.784000pt;}
.y1a8{bottom:460.328000pt;}
.y2e{bottom:464.164000pt;}
.y1ca{bottom:468.989333pt;}
.y202{bottom:471.738667pt;}
.y63{bottom:472.934667pt;}
.ydb{bottom:473.730667pt;}
.yb9{bottom:474.129333pt;}
.y162{bottom:474.528000pt;}
.y127{bottom:475.521333pt;}
.y1a7{bottom:477.065333pt;}
.y1af{bottom:478.114667pt;}
.y1c9{bottom:484.332000pt;}
.y201{bottom:487.081333pt;}
.y62{bottom:489.672000pt;}
.yda{bottom:490.468000pt;}
.yb8{bottom:490.866667pt;}
.y161{bottom:491.265333pt;}
.y126{bottom:492.258667pt;}
.y1a6{bottom:493.802667pt;}
.y2d{bottom:497.398667pt;}
.y1c8{bottom:499.674667pt;}
.y200{bottom:502.424000pt;}
.y61{bottom:506.409333pt;}
.yd9{bottom:507.205333pt;}
.yb7{bottom:507.604000pt;}
.y160{bottom:508.002667pt;}
.y125{bottom:508.996000pt;}
.y1a5{bottom:510.540000pt;}
.y2c{bottom:514.694667pt;}
.y1ff{bottom:517.766667pt;}
.y1c7{bottom:519.001333pt;}
.y60{bottom:523.145333pt;}
.yd8{bottom:523.942667pt;}
.yb6{bottom:524.341333pt;}
.y15f{bottom:524.740000pt;}
.y124{bottom:525.733333pt;}
.y1a4{bottom:527.277333pt;}
.y2b{bottom:531.989333pt;}
.y1fe{bottom:533.108000pt;}
.y5f{bottom:539.882667pt;}
.yd7{bottom:540.680000pt;}
.yb5{bottom:541.078667pt;}
.y15e{bottom:541.477333pt;}
.y123{bottom:542.470667pt;}
.y1a3{bottom:544.014667pt;}
.y1fd{bottom:548.450667pt;}
.y1c6{bottom:548.889333pt;}
.y2a{bottom:549.284000pt;}
.y5e{bottom:556.620000pt;}
.yd6{bottom:557.417333pt;}
.yb4{bottom:557.816000pt;}
.y15d{bottom:558.214667pt;}
.y122{bottom:559.208000pt;}
.y1a2{bottom:560.750667pt;}
.y1fc{bottom:563.793333pt;}
.y29{bottom:566.580000pt;}
.y1c5{bottom:572.481333pt;}
.y5c{bottom:573.357333pt;}
.yd5{bottom:574.154667pt;}
.yb3{bottom:574.553333pt;}
.y15c{bottom:574.952000pt;}
.y121{bottom:575.945333pt;}
.y5d{bottom:578.180000pt;}
.y1fb{bottom:579.136000pt;}
.y1a1{bottom:581.473333pt;}
.y28{bottom:583.874667pt;}
.y5b{bottom:590.094667pt;}
.yd4{bottom:590.892000pt;}
.yb2{bottom:591.290667pt;}
.y15b{bottom:591.689333pt;}
.y120{bottom:592.682667pt;}
.y1fa{bottom:594.478667pt;}
.y27{bottom:601.169333pt;}
.y1c4{bottom:604.042667pt;}
.y5a{bottom:606.832000pt;}
.yd3{bottom:607.629333pt;}
.yb1{bottom:608.028000pt;}
.y15a{bottom:608.426667pt;}
.y11f{bottom:609.420000pt;}
.y1f9{bottom:609.821333pt;}
.y1a0{bottom:613.361333pt;}
.y26{bottom:618.465333pt;}
.y1c3{bottom:620.780000pt;}
.y59{bottom:623.569333pt;}
.yd2{bottom:624.366667pt;}
.yb0{bottom:624.765333pt;}
.y159{bottom:625.164000pt;}
.y19f{bottom:625.980000pt;}
.y11e{bottom:626.157333pt;}
.y79{bottom:630.778961pt;}
.y25{bottom:635.760000pt;}
.y1c2{bottom:637.517333pt;}
.y19e{bottom:638.600000pt;}
.y78{bottom:638.910847pt;}
.y58{bottom:640.306667pt;}
.y1f8{bottom:640.506667pt;}
.yd1{bottom:641.104000pt;}
.yae{bottom:641.502667pt;}
.y158{bottom:641.901333pt;}
.y11d{bottom:642.894667pt;}
.yaf{bottom:646.324000pt;}
.y24{bottom:653.056000pt;}
.y1c1{bottom:654.254667pt;}
.y193{bottom:655.349333pt;}
.y1f7{bottom:655.848000pt;}
.y57{bottom:657.044000pt;}
.yad{bottom:658.240000pt;}
.y157{bottom:658.638667pt;}
.y11c{bottom:659.632000pt;}
.yd0{bottom:661.826667pt;}
.y177{bottom:662.225333pt;}
.y19c{bottom:662.656000pt;}
.y192{bottom:669.961333pt;}
.y23{bottom:670.350667pt;}
.y1c0{bottom:670.992000pt;}
.y1f6{bottom:671.190667pt;}
.y56{bottom:673.781333pt;}
.yab{bottom:674.977333pt;}
.y156{bottom:675.376000pt;}
.y11b{bottom:676.369333pt;}
.y19b{bottom:677.268000pt;}
.yac{bottom:679.798667pt;}
.y21f{bottom:682.482667pt;}
.y191{bottom:684.573333pt;}
.y1f5{bottom:686.533333pt;}
.y22{bottom:687.645333pt;}
.y1bf{bottom:687.729333pt;}
.y189{bottom:688.422667pt;}
.y55{bottom:690.518667pt;}
.yaa{bottom:691.714667pt;}
.y19a{bottom:691.880000pt;}
.y155{bottom:692.113333pt;}
.y11a{bottom:693.106667pt;}
.y21e{bottom:697.825333pt;}
.y190{bottom:699.185333pt;}
.y1f4{bottom:701.876000pt;}
.y1be{bottom:704.466667pt;}
.y21{bottom:704.941333pt;}
.y199{bottom:706.492000pt;}
.y54{bottom:707.256000pt;}
.ya8{bottom:708.452000pt;}
.y154{bottom:708.850667pt;}
.y119{bottom:709.844000pt;}
.y21d{bottom:713.166667pt;}
.ya9{bottom:713.273333pt;}
.y18f{bottom:713.797333pt;}
.y1f3{bottom:717.218667pt;}
.y198{bottom:721.102667pt;}
.y19d{bottom:721.104000pt;}
.y1bd{bottom:721.204000pt;}
.y20{bottom:722.236000pt;}
.y53{bottom:723.993333pt;}
.ya7{bottom:725.189333pt;}
.y153{bottom:725.588000pt;}
.y18e{bottom:728.409333pt;}
.y118{bottom:730.565333pt;}
.y1f2{bottom:732.561333pt;}
.y197{bottom:735.714667pt;}
.y1bc{bottom:737.941333pt;}
.y1f{bottom:739.530667pt;}
.y52{bottom:740.730667pt;}
.ya6{bottom:741.926667pt;}
.y152{bottom:742.324000pt;}
.y18d{bottom:743.021333pt;}
.y1f1{bottom:747.904000pt;}
.y196{bottom:750.326667pt;}
.y1bb{bottom:754.678667pt;}
.y51{bottom:757.468000pt;}
.y18c{bottom:757.633333pt;}
.ya5{bottom:758.664000pt;}
.y151{bottom:759.061333pt;}
.y1f0{bottom:763.246667pt;}
.y117{bottom:763.450667pt;}
.y195{bottom:764.938667pt;}
.y18b{bottom:772.245333pt;}
.y1e{bottom:772.332000pt;}
.y50{bottom:774.205333pt;}
.ya4{bottom:775.401333pt;}
.y150{bottom:775.798667pt;}
.y116{bottom:776.069333pt;}
.y1ef{bottom:778.589333pt;}
.y194{bottom:779.550667pt;}
.y1d{bottom:786.677333pt;}
.y18a{bottom:786.857333pt;}
.y115{bottom:788.689333pt;}
.ya3{bottom:792.138667pt;}
.y14f{bottom:792.536000pt;}
.y1ee{bottom:793.930667pt;}
.y4f{bottom:794.928000pt;}
.y13f{bottom:796.122667pt;}
.y1c{bottom:801.024000pt;}
.y114{bottom:801.308000pt;}
.y1b{bottom:804.881333pt;}
.y1ba{bottom:805.289333pt;}
.y182{bottom:807.870667pt;}
.ya2{bottom:808.874667pt;}
.y14e{bottom:809.273333pt;}
.y4e{bottom:812.860000pt;}
.y113{bottom:813.928000pt;}
.y188{bottom:815.177333pt;}
.y17b{bottom:819.025333pt;}
.y1a{bottom:819.228000pt;}
.y1b9{bottom:822.025333pt;}
.y181{bottom:822.482667pt;}
.y1ed{bottom:824.616000pt;}
.ya1{bottom:825.612000pt;}
.y13e{bottom:826.010667pt;}
.y112{bottom:826.546667pt;}
.y1ad{bottom:829.597333pt;}
.y19{bottom:829.717333pt;}
.y187{bottom:829.788000pt;}
.y180{bottom:837.094667pt;}
.y1b8{bottom:838.762667pt;}
.y1ec{bottom:839.958667pt;}
.ya0{bottom:842.349333pt;}
.y4d{bottom:842.748000pt;}
.y186{bottom:844.400000pt;}
.y109{bottom:845.356000pt;}
.y18{bottom:847.920000pt;}
.y111{bottom:851.665333pt;}
.y17f{bottom:851.706667pt;}
.y1eb{bottom:855.301333pt;}
.y1b7{bottom:855.500000pt;}
.y107{bottom:857.976000pt;}
.y185{bottom:859.012000pt;}
.ycf{bottom:859.086667pt;}
.y4c{bottom:859.485333pt;}
.y100{bottom:862.454667pt;}
.y9f{bottom:863.072000pt;}
.y110{bottom:864.285333pt;}
.y17e{bottom:866.318667pt;}
.y106{bottom:870.594667pt;}
.y1ea{bottom:870.644000pt;}
.y1b6{bottom:872.237333pt;}
.y184{bottom:873.624000pt;}
.y4b{bottom:876.222667pt;}
.y10f{bottom:876.904000pt;}
.yce{bottom:879.809333pt;}
.y17d{bottom:880.930667pt;}
.y105{bottom:883.214667pt;}
.y1e9{bottom:885.986667pt;}
.y17{bottom:886.134667pt;}
.y183{bottom:888.236000pt;}
.y1b5{bottom:888.974667pt;}
.y10e{bottom:889.524000pt;}
.y4a{bottom:892.960000pt;}
.y17c{bottom:895.541333pt;}
.y104{bottom:895.833333pt;}
.y1e8{bottom:901.329333pt;}
.y10d{bottom:902.142667pt;}
.y1b4{bottom:905.712000pt;}
.y103{bottom:908.453333pt;}
.y49{bottom:909.697333pt;}
.y10c{bottom:914.762667pt;}
.y17a{bottom:916.556000pt;}
.y1e7{bottom:916.670667pt;}
.y102{bottom:921.072000pt;}
.y16{bottom:921.618667pt;}
.y1b3{bottom:922.449333pt;}
.y48{bottom:926.434667pt;}
.y10b{bottom:927.381333pt;}
.y1e6{bottom:932.013333pt;}
.y101{bottom:933.692000pt;}
.y1b2{bottom:939.186667pt;}
.y10a{bottom:940.001333pt;}
.y47{bottom:943.172000pt;}
.y179{bottom:944.662667pt;}
.y108{bottom:946.310667pt;}
.y15{bottom:946.725333pt;}
.y1e5{bottom:947.356000pt;}
.y9e{bottom:947.993333pt;}
.y1b1{bottom:955.924000pt;}
.y46{bottom:959.909333pt;}
.y1e4{bottom:962.698667pt;}
.yff{bottom:965.332000pt;}
.y14{bottom:971.830667pt;}
.y1b0{bottom:972.661333pt;}
.y45{bottom:976.646667pt;}
.y1e3{bottom:978.041333pt;}
.y44{bottom:993.384000pt;}
.yfe{bottom:994.700000pt;}
.y43{bottom:1046.810667pt;}
.h17{height:21.664455pt;}
.hd{height:23.521527pt;}
.h7{height:27.672303pt;}
.h15{height:30.605184pt;}
.h2{height:32.284045pt;}
.h3{height:33.957757pt;}
.h13{height:34.430976pt;}
.h14{height:35.052646pt;}
.h8{height:36.896250pt;}
.h11{height:37.381906pt;}
.hf{height:37.391703pt;}
.hb{height:38.256384pt;}
.h9{height:38.809074pt;}
.h4{height:38.947124pt;}
.ha{height:41.508454pt;}
.h12{height:42.171094pt;}
.h16{height:43.660390pt;}
.hc{height:46.120196pt;}
.h10{height:46.950484pt;}
.h6{height:48.365611pt;}
.h5{height:68.861952pt;}
.he{height:598.858467pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:452.875133pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x35{left:-166.737667pt;}
.x37{left:-1.589667pt;}
.x0{left:0.000000pt;}
.x38{left:25.314333pt;}
.x1{left:47.621333pt;}
.x7e{left:70.152000pt;}
.x112{left:76.309333pt;}
.x84{left:98.968000pt;}
.x80{left:100.265333pt;}
.x83{left:101.957333pt;}
.x7f{left:103.254667pt;}
.x93{left:105.264000pt;}
.x95{left:106.416000pt;}
.x82{left:107.342667pt;}
.x94{left:110.577333pt;}
.x81{left:111.826667pt;}
.x96{left:112.882667pt;}
.x7d{left:130.972000pt;}
.x92{left:132.558667pt;}
.x86{left:218.241333pt;}
.x87{left:219.537333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x85{left:224.289333pt;}
.x48{left:228.586667pt;}
.x49{left:236.232000pt;}
.x3{left:239.924000pt;}
.xf8{left:242.393333pt;}
.x109{left:245.009333pt;}
.x5{left:250.204000pt;}
.xe0{left:251.521333pt;}
.x103{left:255.664000pt;}
.x5f{left:262.132000pt;}
.xf1{left:263.744000pt;}
.x105{left:264.928000pt;}
.x4a{left:266.718667pt;}
.x8{left:270.905333pt;}
.x32{left:272.536000pt;}
.x60{left:275.416000pt;}
.xb2{left:276.510667pt;}
.x9{left:277.548000pt;}
.x4b{left:279.604000pt;}
.xd1{left:280.849333pt;}
.xc3{left:283.244000pt;}
.x106{left:284.853333pt;}
.x33{left:285.818667pt;}
.x107{left:286.746667pt;}
.x54{left:288.341333pt;}
.xbd{left:291.713333pt;}
.x113{left:292.900000pt;}
.xb3{left:296.436000pt;}
.xee{left:298.354667pt;}
.xf2{left:300.328000pt;}
.x55{left:301.225333pt;}
.xf0{left:302.408000pt;}
.xdc{left:305.124000pt;}
.x2f{left:306.457333pt;}
.x111{left:307.610667pt;}
.xc2{left:308.644000pt;}
.x20{left:310.012000pt;}
.xa5{left:312.730667pt;}
.xd7{left:315.469333pt;}
.x21{left:317.012000pt;}
.xef{left:318.280000pt;}
.x30{left:319.740000pt;}
.xeb{left:322.329333pt;}
.x61{left:323.605333pt;}
.xc9{left:324.793333pt;}
.x31{left:326.342667pt;}
.x16{left:327.242667pt;}
.x34{left:329.836000pt;}
.xe9{left:331.026667pt;}
.x39{left:332.957333pt;}
.x17{left:333.885333pt;}
.xd8{left:335.394667pt;}
.x62{left:336.888000pt;}
.xc{left:339.133333pt;}
.x26{left:341.044000pt;}
.x88{left:344.393333pt;}
.xd{left:345.774667pt;}
.xd9{left:348.398667pt;}
.x3a{left:349.576000pt;}
.x2c{left:352.561333pt;}
.x27{left:354.326667pt;}
.x41{left:356.589333pt;}
.xe1{left:357.845333pt;}
.xa1{left:359.072000pt;}
.x28{left:361.101333pt;}
.x10b{left:362.133333pt;}
.x10{left:363.166667pt;}
.xaa{left:365.312000pt;}
.xda{left:368.324000pt;}
.x11{left:369.808000pt;}
.x12{left:373.086667pt;}
.x29{left:374.385333pt;}
.xe2{left:377.770667pt;}
.x13{left:379.728000pt;}
.x10a{left:380.773333pt;}
.xa2{left:382.284000pt;}
.x18{left:385.978667pt;}
.xff{left:387.032000pt;}
.x63{left:387.954667pt;}
.xf9{left:393.873333pt;}
.x6d{left:394.820000pt;}
.x4e{left:398.122667pt;}
.x19{left:399.262667pt;}
.xd4{left:400.189333pt;}
.x4f{left:401.634667pt;}
.xe6{left:404.838667pt;}
.xce{left:406.398667pt;}
.x6e{left:408.104000pt;}
.xa8{left:410.818667pt;}
.x75{left:412.632000pt;}
.xfa{left:413.798667pt;}
.x6f{left:414.878667pt;}
.x76{left:419.406667pt;}
.xa4{left:422.066667pt;}
.xa9{left:424.101333pt;}
.x10c{left:425.450667pt;}
.x70{left:428.162667pt;}
.xad{left:430.393333pt;}
.x22{left:432.824000pt;}
.xde{left:436.606667pt;}
.xc1{left:438.793333pt;}
.x4c{left:441.920000pt;}
.x23{left:446.106667pt;}
.xe3{left:447.810667pt;}
.xae{left:450.318667pt;}
.x36{left:451.368457pt;}
.x4d{left:454.804000pt;}
.xec{left:457.193333pt;}
.x2a{left:459.349333pt;}
.x9a{left:461.358667pt;}
.xab{left:462.504000pt;}
.x99{left:464.014667pt;}
.x8a{left:465.326667pt;}
.x8b{left:468.316000pt;}
.x2b{left:472.632000pt;}
.x8c{left:473.898667pt;}
.xac{left:475.786667pt;}
.x8d{left:476.886667pt;}
.x3b{left:478.389333pt;}
.x89{left:479.558667pt;}
.x98{left:480.933333pt;}
.xca{left:482.336000pt;}
.x97{left:483.589333pt;}
.x3c{left:485.854667pt;}
.x1c{left:487.402667pt;}
.xaf{left:491.466667pt;}
.x9f{left:492.912000pt;}
.xdb{left:495.249333pt;}
.xa7{left:496.688000pt;}
.xd0{left:499.104000pt;}
.x1d{left:500.685333pt;}
.xf5{left:503.837333pt;}
.xb0{left:504.750667pt;}
.xa0{left:506.194667pt;}
.xfb{left:508.024000pt;}
.x3d{left:509.284000pt;}
.x56{left:511.825333pt;}
.x64{left:514.285333pt;}
.x77{left:515.380000pt;}
.x3e{left:516.750667pt;}
.x50{left:521.862667pt;}
.xa6{left:523.138667pt;}
.x57{left:525.108000pt;}
.x58{left:528.445333pt;}
.xe4{left:530.744000pt;}
.x78{left:532.050667pt;}
.xd5{left:533.722667pt;}
.x51{left:534.746667pt;}
.x67{left:535.649333pt;}
.x52{left:537.930667pt;}
.x59{left:541.729333pt;}
.xcb{left:543.908000pt;}
.x79{left:545.334667pt;}
.xcf{left:548.570667pt;}
.x10d{left:549.486667pt;}
.x53{left:550.816000pt;}
.xb8{left:552.133333pt;}
.xbb{left:557.070667pt;}
.xf3{left:561.568000pt;}
.xcc{left:563.833333pt;}
.x1e{left:567.096000pt;}
.x10e{left:569.412000pt;}
.x3f{left:571.244000pt;}
.xc5{left:572.601333pt;}
.xfd{left:575.542667pt;}
.xe5{left:576.522667pt;}
.xbc{left:577.594667pt;}
.xa{left:578.930667pt;}
.x1f{left:580.378667pt;}
.xf4{left:581.493333pt;}
.x40{left:584.528000pt;}
.xb{left:585.572000pt;}
.x6a{left:587.676000pt;}
.xc7{left:589.033333pt;}
.x6{left:591.564000pt;}
.xc6{left:593.124000pt;}
.xfe{left:595.468000pt;}
.x7{left:598.206667pt;}
.x8f{left:599.788000pt;}
.x6b{left:600.960000pt;}
.xfc{left:602.185333pt;}
.x65{left:607.084000pt;}
.xc8{left:608.958667pt;}
.xe{left:615.860000pt;}
.x91{left:618.712000pt;}
.x66{left:620.366667pt;}
.x9d{left:621.529333pt;}
.xf{left:622.502667pt;}
.x9b{left:624.601333pt;}
.x8e{left:627.284000pt;}
.xed{left:628.213333pt;}
.x100{left:629.681333pt;}
.x90{left:631.905333pt;}
.x68{left:632.936000pt;}
.x9e{left:634.134667pt;}
.x9c{left:635.616000pt;}
.x104{left:636.645333pt;}
.x7c{left:639.504000pt;}
.xea{left:640.505333pt;}
.x42{left:641.862667pt;}
.x71{left:643.662667pt;}
.x2d{left:646.872000pt;}
.x101{left:649.606667pt;}
.x10f{left:651.021333pt;}
.xb9{left:652.000000pt;}
.x24{left:653.393333pt;}
.x43{left:654.748000pt;}
.xb6{left:655.710667pt;}
.x102{left:656.692000pt;}
.x44{left:657.816000pt;}
.x2e{left:660.156000pt;}
.x72{left:663.721333pt;}
.x25{left:666.677333pt;}
.xcd{left:668.342667pt;}
.x108{left:669.730667pt;}
.x45{left:670.701333pt;}
.xba{left:671.925333pt;}
.xbe{left:673.356000pt;}
.xdd{left:674.566667pt;}
.xb7{left:675.636000pt;}
.x73{left:677.004000pt;}
.xb1{left:677.896000pt;}
.x5a{left:679.214667pt;}
.xbf{left:680.265333pt;}
.xd6{left:683.017333pt;}
.xd2{left:687.185333pt;}
.xb4{left:688.330667pt;}
.xa3{left:690.518667pt;}
.x5b{left:692.498667pt;}
.xe7{left:693.704000pt;}
.xf7{left:695.098667pt;}
.x1a{left:696.441333pt;}
.x69{left:697.522667pt;}
.xc4{left:698.772000pt;}
.xc0{left:700.788000pt;}
.x74{left:702.422667pt;}
.x110{left:704.421333pt;}
.x7a{left:706.120000pt;}
.xd3{left:707.110667pt;}
.xb5{left:708.256000pt;}
.x1b{left:709.725333pt;}
.x46{left:711.594667pt;}
.x47{left:715.106667pt;}
.xf6{left:717.256000pt;}
.x7b{left:719.404000pt;}
.xe8{left:720.404000pt;}
.xdf{left:721.293333pt;}
.x5c{left:723.632000pt;}
.x5d{left:726.966667pt;}
.x6c{left:728.025333pt;}
.x14{left:734.546667pt;}
.x5e{left:740.250667pt;}
.x15{left:741.189333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  