
    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_e851ed8c9286abf3fa8c61a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_14c34e5b0d2ef6691f541e98.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4a68ca237079f1d3ffe096df.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_29278107e859dad5788e7cce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_44861b970bf0922bd55ce0a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.743000;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_9f43925d123c902159d958a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a539bd9e983874442dfbfdc5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.803000;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_24fe3dca75ccc4ec9af8f618.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.889000;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_73535e1d3b710aed05a43b7d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m1c{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);}
.m11{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);}
.m21{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);}
.m1e{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);}
.m17{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);}
.m1f{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);}
.m28{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);}
.m1a{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m22{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);}
.m10{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);}
.m1b{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);}
.m8{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);}
.m3{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);}
.m23{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);}
.md{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);}
.mf{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m19{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);}
.m15{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);}
.ma{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);}
.m4{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);}
.m7{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);}
.m20{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);}
.m18{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);}
.m26{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);}
.m14{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);}
.m12{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);}
.mc{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);}
.m27{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);}
.m6{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);}
.m29{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);}
.m5{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);}
.m24{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);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{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.364000px;}
.v4{vertical-align:-10.488000px;}
.v6{vertical-align:-8.406000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:10.920000px;}
.v5{vertical-align:17.358000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v7{vertical-align:28.392000px;}
.v9{vertical-align:40.470000px;}
.va{vertical-align:41.634000px;}
.ls6{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.000017px;}
.ls19{letter-spacing:0.000701px;}
.ls34{letter-spacing:0.000800px;}
.ls13{letter-spacing:0.001139px;}
.ls30{letter-spacing:0.001953px;}
.ls1b{letter-spacing:0.002378px;}
.ls18{letter-spacing:0.002458px;}
.ls38{letter-spacing:0.002544px;}
.ls12{letter-spacing:0.002667px;}
.lsf{letter-spacing:0.002725px;}
.ls7{letter-spacing:0.003699px;}
.ls27{letter-spacing:0.004200px;}
.ls1d{letter-spacing:0.676741px;}
.ls1e{letter-spacing:0.746496px;}
.ls22{letter-spacing:1.492200px;}
.ls23{letter-spacing:2.734741px;}
.ls21{letter-spacing:2.740741px;}
.ls17{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.lsc{letter-spacing:3.436200px;}
.lsd{letter-spacing:3.442200px;}
.lsa{letter-spacing:3.507900px;}
.ls9{letter-spacing:3.553200px;}
.ls2f{letter-spacing:3.559200px;}
.ls0{letter-spacing:10.461300px;}
.ls5{letter-spacing:11.954850px;}
.ls14{letter-spacing:12.313774px;}
.ls25{letter-spacing:12.339483px;}
.ls15{letter-spacing:12.552600px;}
.ls29{letter-spacing:13.116017px;}
.ls3a{letter-spacing:13.243313px;}
.ls31{letter-spacing:13.448400px;}
.ls35{letter-spacing:13.454400px;}
.ls37{letter-spacing:13.457307px;}
.ls32{letter-spacing:13.464686px;}
.ls39{letter-spacing:13.690930px;}
.ls36{letter-spacing:14.185694px;}
.ls2a{letter-spacing:14.283483px;}
.ls33{letter-spacing:14.673929px;}
.ls8{letter-spacing:14.704798px;}
.ls3b{letter-spacing:14.791576px;}
.ls11{letter-spacing:14.884124px;}
.ls10{letter-spacing:14.941580px;}
.ls2d{letter-spacing:14.945108px;}
.ls2c{letter-spacing:14.946017px;}
.ls2e{letter-spacing:15.508200px;}
.lsb{letter-spacing:16.434600px;}
.lse{letter-spacing:17.036046px;}
.ls1c{letter-spacing:17.929200px;}
.ls1a{letter-spacing:17.935200px;}
.ls1f{letter-spacing:18.022741px;}
.ls16{letter-spacing:19.207027px;}
.ls24{letter-spacing:20.218741px;}
.ls28{letter-spacing:28.233483px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2b{letter-spacing:76.476017px;}
.ls20{letter-spacing:82.149483px;}
.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;}
}
.ws10{word-spacing:-26.899200px;}
.ws78{word-spacing:-14.943900px;}
.ws14{word-spacing:-14.355754px;}
.ws56{word-spacing:-13.449600px;}
.ws2c{word-spacing:-11.955150px;}
.ws15{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.wsa7{word-spacing:-5.080926px;}
.ws65{word-spacing:-3.168107px;}
.ws92{word-spacing:-2.988780px;}
.ws76{word-spacing:-2.689902px;}
.ws3b{word-spacing:-2.570351px;}
.ws70{word-spacing:-2.391024px;}
.ws18{word-spacing:-2.367130px;}
.wsb7{word-spacing:-2.271473px;}
.ws79{word-spacing:-2.032370px;}
.ws67{word-spacing:-1.972595px;}
.ws8b{word-spacing:-1.912819px;}
.wsb6{word-spacing:-1.793268px;}
.ws2d{word-spacing:-1.733492px;}
.wscf{word-spacing:-1.613952px;}
.ws44{word-spacing:-1.613941px;}
.wsaa{word-spacing:-1.554166px;}
.ws9e{word-spacing:-1.452557px;}
.ws3c{word-spacing:-1.434614px;}
.ws5b{word-spacing:-1.374839px;}
.ws9f{word-spacing:-1.237363px;}
.wsd0{word-spacing:-1.183565px;}
.ws6{word-spacing:-1.171598px;}
.ws87{word-spacing:-1.075961px;}
.ws8{word-spacing:-1.046070px;}
.ws99{word-spacing:-0.896634px;}
.wsd1{word-spacing:-0.860774px;}
.ws97{word-spacing:-0.657532px;}
.wsaf{word-spacing:-0.418429px;}
.ws3a{word-spacing:-0.358654px;}
.ws1d{word-spacing:-0.322790px;}
.ws28{word-spacing:-0.298878px;}
.ws17{word-spacing:-0.268992px;}
.ws32{word-spacing:-0.239102px;}
.ws93{word-spacing:-0.218518px;}
.wsbd{word-spacing:-0.215194px;}
.ws36{word-spacing:-0.179327px;}
.ws1a{word-spacing:-0.161395px;}
.ws24{word-spacing:-0.119551px;}
.ws8e{word-spacing:-0.107597px;}
.wsa1{word-spacing:-0.082108px;}
.ws31{word-spacing:-0.059776px;}
.ws21{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.047821px;}
.wsda{word-spacing:-0.016109px;}
.wscd{word-spacing:-0.006048px;}
.wsd7{word-spacing:-0.005222px;}
.wse4{word-spacing:-0.004282px;}
.ws6d{word-spacing:-0.004118px;}
.wsd9{word-spacing:-0.003206px;}
.ws62{word-spacing:-0.002776px;}
.wsa9{word-spacing:-0.002476px;}
.wsd8{word-spacing:-0.000806px;}
.ws12{word-spacing:-0.000516px;}
.wse1{word-spacing:-0.000509px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.000694px;}
.ws6b{word-spacing:0.000720px;}
.wsb2{word-spacing:0.001525px;}
.ws2b{word-spacing:0.001726px;}
.ws4{word-spacing:0.001733px;}
.ws22{word-spacing:0.053798px;}
.ws4e{word-spacing:0.059776px;}
.wscc{word-spacing:0.107597px;}
.ws46{word-spacing:0.119551px;}
.ws19{word-spacing:0.161395px;}
.ws3d{word-spacing:0.179327px;}
.wsb8{word-spacing:0.215194px;}
.ws51{word-spacing:0.239102px;}
.wsdb{word-spacing:0.268992px;}
.ws42{word-spacing:0.298878px;}
.wsdf{word-spacing:0.322790px;}
.ws47{word-spacing:0.358654px;}
.ws73{word-spacing:0.418429px;}
.ws5e{word-spacing:0.453852px;}
.ws5d{word-spacing:0.456702px;}
.ws5f{word-spacing:0.459852px;}
.wsbc{word-spacing:0.484186px;}
.wsca{word-spacing:0.537984px;}
.wsb5{word-spacing:0.565500px;}
.ws52{word-spacing:0.572700px;}
.ws7e{word-spacing:0.592582px;}
.ws7d{word-spacing:0.595432px;}
.ws7c{word-spacing:0.598582px;}
.ws33{word-spacing:0.657532px;}
.ws77{word-spacing:0.717307px;}
.ws85{word-spacing:0.777083px;}
.ws58{word-spacing:0.836858px;}
.ws72{word-spacing:0.896634px;}
.wsb9{word-spacing:0.914573px;}
.ws50{word-spacing:0.956410px;}
.wsc6{word-spacing:0.968371px;}
.ws7{word-spacing:1.004227px;}
.ws4a{word-spacing:1.016185px;}
.wsdc{word-spacing:1.022170px;}
.wsa5{word-spacing:1.075961px;}
.ws8d{word-spacing:1.129766px;}
.wsc1{word-spacing:1.130933px;}
.ws34{word-spacing:1.135736px;}
.wsc3{word-spacing:1.183565px;}
.ws45{word-spacing:1.195512px;}
.wsc7{word-spacing:1.237363px;}
.ws64{word-spacing:1.315063px;}
.wse3{word-spacing:1.344960px;}
.ws4f{word-spacing:1.374839px;}
.wsd2{word-spacing:1.398758px;}
.ws8c{word-spacing:1.452557px;}
.ws9c{word-spacing:1.490380px;}
.ws9d{word-spacing:1.494390px;}
.ws53{word-spacing:1.554166px;}
.ws66{word-spacing:1.673717px;}
.wsb4{word-spacing:1.733492px;}
.ws26{word-spacing:1.912819px;}
.wse2{word-spacing:1.990541px;}
.ws69{word-spacing:2.032370px;}
.ws68{word-spacing:2.092146px;}
.ws4c{word-spacing:2.151922px;}
.wsd3{word-spacing:2.151936px;}
.wsc5{word-spacing:2.205734px;}
.ws7a{word-spacing:2.211697px;}
.wsc9{word-spacing:2.259533px;}
.ws75{word-spacing:2.271473px;}
.ws91{word-spacing:2.331248px;}
.ws90{word-spacing:2.391024px;}
.wsab{word-spacing:2.450800px;}
.ws3{word-spacing:2.510297px;}
.ws0{word-spacing:2.511541px;}
.ws3f{word-spacing:2.570351px;}
.ws37{word-spacing:2.630126px;}
.ws1c{word-spacing:2.636122px;}
.ws25{word-spacing:2.689902px;}
.wsad{word-spacing:2.809453px;}
.ws20{word-spacing:2.905114px;}
.ws54{word-spacing:2.929004px;}
.ws96{word-spacing:2.988780px;}
.ws86{word-spacing:3.108331px;}
.ws5a{word-spacing:3.168107px;}
.wsc4{word-spacing:3.216835px;}
.wsde{word-spacing:3.219542px;}
.wse0{word-spacing:3.220454px;}
.wsc8{word-spacing:3.224170px;}
.wsd5{word-spacing:3.225082px;}
.ws41{word-spacing:3.227882px;}
.wsbe{word-spacing:3.227904px;}
.ws29{word-spacing:3.287658px;}
.wsd4{word-spacing:3.335501px;}
.ws48{word-spacing:3.347434px;}
.ws94{word-spacing:3.466985px;}
.ws2e{word-spacing:3.526760px;}
.wscb{word-spacing:3.550694px;}
.ws23{word-spacing:3.586536px;}
.ws2f{word-spacing:3.646312px;}
.ws39{word-spacing:3.825638px;}
.ws1b{word-spacing:3.873485px;}
.wsb3{word-spacing:4.004965px;}
.wsba{word-spacing:4.034880px;}
.ws74{word-spacing:4.064741px;}
.ws27{word-spacing:4.124516px;}
.wsc0{word-spacing:4.142477px;}
.ws2a{word-spacing:4.184292px;}
.ws35{word-spacing:4.363619px;}
.ws89{word-spacing:4.423394px;}
.wsce{word-spacing:4.465267px;}
.ws59{word-spacing:4.483170px;}
.ws1f{word-spacing:4.680461px;}
.ws82{word-spacing:4.722272px;}
.wse{word-spacing:4.770079px;}
.wsac{word-spacing:4.782048px;}
.ws1e{word-spacing:4.788058px;}
.ws55{word-spacing:4.841824px;}
.wsf{word-spacing:4.853765px;}
.ws49{word-spacing:4.901599px;}
.ws38{word-spacing:5.140702px;}
.ws57{word-spacing:5.260253px;}
.wsa2{word-spacing:5.320028px;}
.ws88{word-spacing:5.379804px;}
.wsae{word-spacing:5.439580px;}
.wsa0{word-spacing:5.499355px;}
.wsd6{word-spacing:5.595034px;}
.wsbb{word-spacing:5.702630px;}
.ws9b{word-spacing:5.798233px;}
.ws95{word-spacing:5.858009px;}
.ws6f{word-spacing:5.917784px;}
.wsa6{word-spacing:5.977560px;}
.ws63{word-spacing:5.982000px;}
.wsa3{word-spacing:6.156887px;}
.ws30{word-spacing:6.276438px;}
.ws84{word-spacing:6.336214px;}
.ws83{word-spacing:6.515540px;}
.ws4b{word-spacing:6.694867px;}
.wsdd{word-spacing:6.724800px;}
.ws43{word-spacing:6.754643px;}
.ws71{word-spacing:7.053521px;}
.wsb0{word-spacing:7.352399px;}
.ws3e{word-spacing:7.531726px;}
.wsc{word-spacing:7.782761px;}
.wsbf{word-spacing:7.854566px;}
.ws40{word-spacing:8.308808px;}
.ws98{word-spacing:8.368584px;}
.ws8a{word-spacing:8.846789px;}
.wsb1{word-spacing:9.145667px;}
.ws4d{word-spacing:10.640057px;}
.ws9a{word-spacing:11.178037px;}
.wsa{word-spacing:12.176255px;}
.wsc2{word-spacing:15.493939px;}
.wsb{word-spacing:16.109478px;}
.wsa4{word-spacing:22.654952px;}
.wsd{word-spacing:26.109907px;}
.ws11{word-spacing:26.784586px;}
.ws9{word-spacing:26.840252px;}
.ws8f{word-spacing:34.646170px;}
.ws13{word-spacing:40.042186px;}
.ws6c{word-spacing:234.238234px;}
.ws6e{word-spacing:234.292032px;}
.ws61{word-spacing:265.499971px;}
.ws6a{word-spacing:271.628122px;}
.ws60{word-spacing:289.410271px;}
.ws5c{word-spacing:322.597768px;}
.ws81{word-spacing:392.793550px;}
.ws7f{word-spacing:408.696296px;}
.wsa8{word-spacing:427.754194px;}
.ws80{word-spacing:461.035542px;}
.ws7b{word-spacing:528.321989px;}
._47{margin-left:-24.478272px;}
._a{margin-left:-18.225614px;}
._5{margin-left:-7.962163px;}
._6{margin-left:-6.634458px;}
._8{margin-left:-5.260266px;}
._0{margin-left:-3.849538px;}
._3{margin-left:-2.301354px;}
._9{margin-left:-1.243336px;}
._3f{width:1.213454px;}
._2{width:2.301354px;}
._7{width:3.698995px;}
._40{width:4.835716px;}
._46{width:7.424179px;}
._21{width:11.955150px;}
._1{width:12.971268px;}
._44{width:13.999499px;}
._b{width:15.003022px;}
._c{width:16.073744px;}
._e{width:17.107891px;}
._d{width:18.345254px;}
._15{width:20.012874px;}
._18{width:21.148610px;}
._14{width:22.224571px;}
._45{width:23.600002px;}
._f{width:24.806874px;}
._43{width:26.194668px;}
._17{width:27.197898px;}
._13{width:29.529146px;}
._4{width:30.587087px;}
._10{width:31.681068px;}
._3e{width:33.235234px;}
._19{width:34.789399px;}
._3d{width:37.837955px;}
._38{width:39.141066px;}
._16{width:41.980400px;}
._48{width:61.868160px;}
._1d{width:149.248093px;}
._1c{width:161.649639px;}
._22{width:189.226114px;}
._25{width:229.634521px;}
._30{width:234.238234px;}
._31{width:247.741632px;}
._23{width:249.001080px;}
._24{width:253.544821px;}
._2a{width:261.137434px;}
._27{width:265.499971px;}
._2d{width:267.862234px;}
._1f{width:272.840413px;}
._32{width:274.378572px;}
._20{width:277.455121px;}
._36{width:279.159898px;}
._33{width:280.350194px;}
._2f{width:286.483212px;}
._2e{width:288.036634px;}
._2b{width:292.609498px;}
._1b{width:294.144511px;}
._3a{width:299.309135px;}
._34{width:305.850636px;}
._35{width:310.524365px;}
._37{width:312.575436px;}
._26{width:323.741114px;}
._39{width:337.948180px;}
._41{width:349.664392px;}
._3b{width:374.266487px;}
._3c{width:385.625318px;}
._2c{width:443.618335px;}
._29{width:460.122466px;}
._1a{width:465.581362px;}
._28{width:486.498931px;}
._1e{width:524.974547px;}
._11{width:732.526798px;}
._42{width:2486.072700px;}
._12{width:2509.982700px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(56,126,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fsb{font-size:37.371600px;}
.fs0{font-size:41.842800px;}
.fs8{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsc{font-size:49.829400px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y1b{bottom:15.335228px;}
.y4a{bottom:31.890000px;}
.ydc{bottom:91.665000px;}
.y1c4{bottom:93.564000px;}
.yae{bottom:95.478000px;}
.y159{bottom:97.704000px;}
.y19b{bottom:101.701500px;}
.y49{bottom:103.788000px;}
.y19{bottom:104.646000px;}
.y1fc{bottom:108.897000px;}
.ydb{bottom:110.494500px;}
.yad{bottom:114.307500px;}
.y158{bottom:116.533500px;}
.y1c3{bottom:120.105000px;}
.y19a{bottom:120.531000px;}
.y18{bottom:122.535000px;}
.y48{bottom:122.617500px;}
.y1fb{bottom:126.157500px;}
.yda{bottom:129.324000px;}
.yab{bottom:133.137000px;}
.y157{bottom:135.363000px;}
.y129{bottom:135.843000px;}
.yac{bottom:138.561000px;}
.y198{bottom:139.360500px;}
.y17{bottom:140.422500px;}
.y47{bottom:141.447000px;}
.y1fa{bottom:143.416500px;}
.y199{bottom:144.784500px;}
.y81{bottom:145.300500px;}
.y1c2{bottom:146.646000px;}
.yd9{bottom:148.153500px;}
.yaa{bottom:151.966500px;}
.y177{bottom:152.637000px;}
.y155{bottom:154.191000px;}
.y128{bottom:154.672500px;}
.y197{bottom:158.190000px;}
.y16{bottom:158.310000px;}
.y156{bottom:159.616500px;}
.y46{bottom:160.276500px;}
.y1f9{bottom:160.677000px;}
.y80{bottom:164.130000px;}
.yd8{bottom:166.983000px;}
.y153{bottom:170.292000px;}
.ya8{bottom:170.796000px;}
.y152{bottom:173.020500px;}
.y1c1{bottom:173.185500px;}
.y127{bottom:173.502000px;}
.y15{bottom:176.199000px;}
.ya9{bottom:176.220000px;}
.y196{bottom:177.019500px;}
.y1f8{bottom:177.937500px;}
.y154{bottom:178.446000px;}
.y45{bottom:179.106000px;}
.y7f{bottom:182.959500px;}
.yd7{bottom:185.812500px;}
.y176{bottom:186.261000px;}
.ya7{bottom:189.625500px;}
.y1c0{bottom:190.759500px;}
.y151{bottom:191.850000px;}
.y126{bottom:192.331500px;}
.y14{bottom:194.086500px;}
.y1f7{bottom:195.198000px;}
.y44{bottom:197.935500px;}
.y195{bottom:200.332500px;}
.y7e{bottom:201.789000px;}
.yd6{bottom:204.642000px;}
.y175{bottom:205.090500px;}
.y1bf{bottom:208.333500px;}
.ya6{bottom:208.455000px;}
.y150{bottom:210.679500px;}
.y125{bottom:211.161000px;}
.y13{bottom:211.974000px;}
.y1f6{bottom:212.458500px;}
.y43{bottom:216.765000px;}
.y7d{bottom:220.618500px;}
.yd5{bottom:223.471500px;}
.y173{bottom:223.920000px;}
.y1be{bottom:225.909000px;}
.y12f{bottom:228.619500px;}
.y174{bottom:229.344000px;}
.y14f{bottom:229.509000px;}
.y1f5{bottom:229.719000px;}
.y12{bottom:229.863000px;}
.y124{bottom:229.990500px;}
.ya5{bottom:231.768000px;}
.y194{bottom:233.956500px;}
.y42{bottom:235.594500px;}
.y7c{bottom:239.446500px;}
.yd4{bottom:242.301000px;}
.y172{bottom:242.749500px;}
.y1bd{bottom:243.483000px;}
.y12e{bottom:245.230500px;}
.y1f4{bottom:246.979500px;}
.y12d{bottom:247.852500px;}
.y123{bottom:248.820000px;}
.y193{bottom:252.786000px;}
.y14e{bottom:252.822000px;}
.y41{bottom:254.424000px;}
.y7b{bottom:258.276000px;}
.y1bc{bottom:261.057000px;}
.yd3{bottom:261.130500px;}
.y171{bottom:261.579000px;}
.y1f3{bottom:264.240000px;}
.y12c{bottom:264.463500px;}
.ya4{bottom:265.392000px;}
.yfb{bottom:265.614000px;}
.y12b{bottom:267.085500px;}
.y122{bottom:267.649500px;}
.y192{bottom:271.614000px;}
.y40{bottom:273.253500px;}
.y7a{bottom:277.105500px;}
.y1bb{bottom:278.631000px;}
.yd2{bottom:279.960000px;}
.y170{bottom:280.408500px;}
.y1f2{bottom:281.500500px;}
.ya3{bottom:284.221500px;}
.y12a{bottom:286.318500px;}
.y14d{bottom:286.446000px;}
.y121{bottom:286.479000px;}
.y191{bottom:290.443500px;}
.y3f{bottom:292.083000px;}
.y79{bottom:295.935000px;}
.y1ba{bottom:296.205000px;}
.y1f1{bottom:298.759500px;}
.yd1{bottom:298.789500px;}
.yfa{bottom:299.238000px;}
.y11{bottom:300.154500px;}
.ya2{bottom:303.049500px;}
.y14c{bottom:305.275500px;}
.y120{bottom:305.308500px;}
.y190{bottom:309.273000px;}
.y1b9{bottom:313.779000px;}
.y78{bottom:314.764500px;}
.y3e{bottom:315.394500px;}
.y1f0{bottom:316.020000px;}
.yd0{bottom:317.619000px;}
.y10{bottom:318.043500px;}
.yf9{bottom:318.067500px;}
.ya1{bottom:321.879000px;}
.y14b{bottom:324.105000px;}
.y11f{bottom:324.138000px;}
.y18f{bottom:328.102500px;}
.y1ef{bottom:333.280500px;}
.y77{bottom:333.594000px;}
.yf{bottom:335.931000px;}
.ycf{bottom:336.448500px;}
.yf8{bottom:336.897000px;}
.y1b8{bottom:340.320000px;}
.ya0{bottom:340.708500px;}
.y14a{bottom:342.934500px;}
.y11e{bottom:342.967500px;}
.y18e{bottom:346.932000px;}
.y1ee{bottom:350.541000px;}
.y75{bottom:352.423500px;}
.ye{bottom:353.818500px;}
.yce{bottom:355.278000px;}
.yf7{bottom:355.726500px;}
.y76{bottom:357.849000px;}
.y1b7{bottom:357.894000px;}
.y9f{bottom:359.538000px;}
.y149{bottom:361.764000px;}
.y11d{bottom:361.797000px;}
.y18d{bottom:365.761500px;}
.y1ed{bottom:367.801500px;}
.y74{bottom:371.253000px;}
.ycd{bottom:374.107500px;}
.yf6{bottom:374.556000px;}
.y1b6{bottom:375.468000px;}
.y9d{bottom:378.367500px;}
.y16f{bottom:379.980000px;}
.y148{bottom:380.593500px;}
.y11c{bottom:380.626500px;}
.yd{bottom:380.673000px;}
.y9e{bottom:383.793000px;}
.y18c{bottom:384.591000px;}
.y1ec{bottom:385.062000px;}
.y73{bottom:390.082500px;}
.y3d{bottom:390.544500px;}
.ycc{bottom:392.937000px;}
.y1b5{bottom:393.042000px;}
.yf5{bottom:393.385500px;}
.y11b{bottom:396.726000px;}
.y9c{bottom:397.197000px;}
.y16e{bottom:397.867500px;}
.yc{bottom:398.562000px;}
.y11a{bottom:399.456000px;}
.y1eb{bottom:402.322500px;}
.y18b{bottom:403.420500px;}
.y147{bottom:403.905000px;}
.y71{bottom:408.912000px;}
.yf4{bottom:409.485000px;}
.y3c{bottom:410.002500px;}
.y1b4{bottom:410.616000px;}
.ycb{bottom:411.766500px;}
.yf3{bottom:412.215000px;}
.y72{bottom:414.337500px;}
.y119{bottom:415.555500px;}
.y9a{bottom:416.026500px;}
.yb{bottom:416.449500px;}
.y118{bottom:418.285500px;}
.y1ea{bottom:419.583000px;}
.y9b{bottom:421.452000px;}
.y18a{bottom:422.250000px;}
.y146{bottom:424.080000px;}
.y70{bottom:427.741500px;}
.y16d{bottom:428.032500px;}
.yca{bottom:430.596000px;}
.yf2{bottom:431.044500px;}
.y117{bottom:434.385000px;}
.y1e9{bottom:436.842000px;}
.y116{bottom:437.113500px;}
.y189{bottom:441.079500px;}
.ya{bottom:444.798000px;}
.y1b3{bottom:446.122500px;}
.y6f{bottom:446.571000px;}
.y3b{bottom:447.391500px;}
.yc9{bottom:449.425500px;}
.y99{bottom:449.592000px;}
.yf1{bottom:449.874000px;}
.y115{bottom:453.214500px;}
.y1e8{bottom:454.102500px;}
.y114{bottom:455.943000px;}
.y145{bottom:457.704000px;}
.y188{bottom:459.909000px;}
.y1b2{bottom:464.952000px;}
.y6e{bottom:465.400500px;}
.y3a{bottom:466.849500px;}
.yc8{bottom:468.255000px;}
.yf0{bottom:468.702000px;}
.y1e7{bottom:471.363000px;}
.y9{bottom:471.652500px;}
.y113{bottom:474.772500px;}
.y144{bottom:476.533500px;}
.y187{bottom:478.738500px;}
.y1b1{bottom:483.781500px;}
.y6d{bottom:484.230000px;}
.y39{bottom:486.306000px;}
.yc7{bottom:487.084500px;}
.yef{bottom:487.531500px;}
.y1e6{bottom:488.623500px;}
.y8{bottom:489.540000px;}
.y112{bottom:493.602000px;}
.y143{bottom:495.363000px;}
.y186{bottom:497.568000px;}
.y1b0{bottom:502.611000px;}
.y6c{bottom:503.059500px;}
.y38{bottom:505.762500px;}
.y1e5{bottom:505.884000px;}
.yc5{bottom:505.914000px;}
.yee{bottom:506.361000px;}
.y7{bottom:507.429000px;}
.yc6{bottom:511.338000px;}
.y111{bottom:512.431500px;}
.y142{bottom:514.192500px;}
.y185{bottom:516.397500px;}
.y1af{bottom:521.440500px;}
.y6b{bottom:521.889000px;}
.y1e4{bottom:523.144500px;}
.yc4{bottom:524.743500px;}
.yed{bottom:525.190500px;}
.y37{bottom:525.220500px;}
.y6{bottom:525.316500px;}
.y110{bottom:531.261000px;}
.y141{bottom:533.022000px;}
.y184{bottom:535.227000px;}
.y1ae{bottom:540.270000px;}
.y1e3{bottom:540.405000px;}
.y6a{bottom:540.718500px;}
.y5{bottom:543.204000px;}
.yc2{bottom:543.573000px;}
.y36{bottom:544.677000px;}
.yc3{bottom:548.997000px;}
.y10f{bottom:550.090500px;}
.y140{bottom:551.851500px;}
.y183{bottom:554.056500px;}
.y1e2{bottom:557.665500px;}
.y1ad{bottom:559.099500px;}
.y69{bottom:559.548000px;}
.y4{bottom:561.093000px;}
.yc1{bottom:562.401000px;}
.y35{bottom:564.135000px;}
.yec{bottom:564.589500px;}
.y13f{bottom:567.951000px;}
.y10e{bottom:568.920000px;}
.y13e{bottom:570.681000px;}
.y182{bottom:572.886000px;}
.y1e1{bottom:574.926000px;}
.y1ac{bottom:577.929000px;}
.y68{bottom:578.377500px;}
.y3{bottom:578.980500px;}
.yc0{bottom:581.230500px;}
.yeb{bottom:583.432500px;}
.y34{bottom:583.591500px;}
.y13d{bottom:586.780500px;}
.y10d{bottom:587.749500px;}
.y13c{bottom:589.510500px;}
.y181{bottom:591.715500px;}
.y1e0{bottom:592.185000px;}
.y1ab{bottom:596.758500px;}
.y2{bottom:596.868000px;}
.y67{bottom:597.207000px;}
.yea{bottom:599.871000px;}
.ybf{bottom:600.060000px;}
.y33{bottom:603.048000px;}
.y10c{bottom:606.579000px;}
.y13b{bottom:608.340000px;}
.y1df{bottom:609.445500px;}
.y180{bottom:610.545000px;}
.y1{bottom:614.757000px;}
.y1aa{bottom:615.588000px;}
.y66{bottom:616.036500px;}
.ye9{bottom:616.309500px;}
.ybe{bottom:618.889500px;}
.y31{bottom:622.506000px;}
.y1de{bottom:626.706000px;}
.y13a{bottom:627.169500px;}
.y32{bottom:627.387000px;}
.y17f{bottom:629.374500px;}
.y10b{bottom:629.892000px;}
.ye8{bottom:632.748000px;}
.y1a9{bottom:634.417500px;}
.y65{bottom:634.866000px;}
.ybd{bottom:637.719000px;}
.y30{bottom:641.962500px;}
.y1dd{bottom:643.966500px;}
.y139{bottom:645.999000px;}
.y17e{bottom:648.204000px;}
.ye7{bottom:649.186500px;}
.y1a8{bottom:653.247000px;}
.y64{bottom:653.695500px;}
.ybc{bottom:656.548500px;}
.y1dc{bottom:661.227000px;}
.y2f{bottom:661.419000px;}
.y138{bottom:662.098500px;}
.y137{bottom:664.828500px;}
.ye6{bottom:665.625000px;}
.y17d{bottom:667.033500px;}
.y1a7{bottom:672.076500px;}
.y63{bottom:672.525000px;}
.y109{bottom:674.532000px;}
.ybb{bottom:675.378000px;}
.y1db{bottom:678.487500px;}
.y2e{bottom:680.877000px;}
.y136{bottom:680.928000px;}
.y108{bottom:681.630000px;}
.ye5{bottom:682.062000px;}
.y135{bottom:683.658000px;}
.y17c{bottom:685.863000px;}
.y10a{bottom:688.728000px;}
.y1a5{bottom:690.906000px;}
.y62{bottom:691.354500px;}
.yba{bottom:694.207500px;}
.y1da{bottom:695.748000px;}
.y1a6{bottom:696.330000px;}
.ye4{bottom:698.500500px;}
.y2d{bottom:700.333500px;}
.y134{bottom:702.487500px;}
.y106{bottom:702.925500px;}
.y17b{bottom:709.174500px;}
.y1a3{bottom:709.735500px;}
.y105{bottom:710.023500px;}
.y61{bottom:710.184000px;}
.y1d9{bottom:713.008500px;}
.yb9{bottom:713.037000px;}
.ye3{bottom:714.939000px;}
.y1a4{bottom:715.159500px;}
.y107{bottom:717.121500px;}
.y2c{bottom:719.791500px;}
.y133{bottom:721.317000px;}
.y211{bottom:725.874000px;}
.y1a2{bottom:728.565000px;}
.y60{bottom:729.013500px;}
.y1d8{bottom:730.267500px;}
.y103{bottom:731.319000px;}
.ye2{bottom:731.377500px;}
.yb8{bottom:731.866500px;}
.y102{bottom:738.417000px;}
.y132{bottom:740.146500px;}
.y17a{bottom:742.798500px;}
.y210{bottom:743.134500px;}
.y104{bottom:745.515000px;}
.y1a1{bottom:747.394500px;}
.y1d7{bottom:747.528000px;}
.ye1{bottom:747.816000px;}
.y5f{bottom:747.843000px;}
.y2b{bottom:758.376000px;}
.y131{bottom:758.976000px;}
.y100{bottom:759.712500px;}
.y20f{bottom:760.395000px;}
.ye0{bottom:764.254500px;}
.y1d6{bottom:764.788500px;}
.y1a0{bottom:766.224000px;}
.y5e{bottom:766.671000px;}
.yff{bottom:766.810500px;}
.y16c{bottom:769.414500px;}
.y179{bottom:770.863500px;}
.y101{bottom:773.908500px;}
.y2a{bottom:774.516000px;}
.yb7{bottom:776.628000px;}
.y20e{bottom:777.655500px;}
.y16b{bottom:779.665500px;}
.y178{bottom:781.116000px;}
.y1d5{bottom:782.049000px;}
.y19f{bottom:785.053500px;}
.y5d{bottom:785.500500px;}
.ydf{bottom:787.894500px;}
.yfe{bottom:788.106000px;}
.yb6{bottom:790.824000px;}
.y130{bottom:792.541500px;}
.y20d{bottom:794.916000px;}
.y29{bottom:794.995500px;}
.y98{bottom:798.502500px;}
.y1d4{bottom:799.309500px;}
.y19d{bottom:803.883000px;}
.y5c{bottom:804.330000px;}
.yb5{bottom:805.021500px;}
.y28{bottom:806.794500px;}
.y19e{bottom:809.307000px;}
.yfd{bottom:809.505000px;}
.y20c{bottom:812.176500px;}
.y1d3{bottom:816.570000px;}
.y97{bottom:817.332000px;}
.yb4{bottom:819.217500px;}
.yde{bottom:819.514500px;}
.y16a{bottom:822.712500px;}
.y5b{bottom:823.159500px;}
.y27{bottom:827.274000px;}
.y20b{bottom:829.437000px;}
.yb3{bottom:833.415000px;}
.y1d2{bottom:833.830500px;}
.y95{bottom:836.161500px;}
.y26{bottom:839.074500px;}
.y169{bottom:841.540500px;}
.y96{bottom:841.585500px;}
.y5a{bottom:841.989000px;}
.yfc{bottom:842.544000px;}
.y20a{bottom:846.697500px;}
.yb2{bottom:847.611000px;}
.ydd{bottom:847.737000px;}
.y1d1{bottom:851.091000px;}
.y93{bottom:854.991000px;}
.y25{bottom:859.552500px;}
.y168{bottom:860.370000px;}
.y94{bottom:860.415000px;}
.y59{bottom:860.818500px;}
.y209{bottom:863.956500px;}
.y1d0{bottom:868.351500px;}
.yb1{bottom:869.010000px;}
.y92{bottom:873.820500px;}
.y24{bottom:875.692500px;}
.y167{bottom:879.199500px;}
.y58{bottom:879.648000px;}
.y208{bottom:881.217000px;}
.y1cf{bottom:885.610500px;}
.y23{bottom:887.493000px;}
.y91{bottom:892.650000px;}
.y165{bottom:898.029000px;}
.y57{bottom:898.477500px;}
.yb0{bottom:899.061000px;}
.y19c{bottom:902.512500px;}
.y1ce{bottom:902.871000px;}
.y166{bottom:903.454500px;}
.y22{bottom:907.972500px;}
.y90{bottom:911.479500px;}
.y207{bottom:915.738000px;}
.y164{bottom:916.858500px;}
.y56{bottom:917.307000px;}
.y1cd{bottom:920.131500px;}
.y8e{bottom:930.309000px;}
.y206{bottom:932.998500px;}
.y163{bottom:935.688000px;}
.y8f{bottom:935.733000px;}
.y55{bottom:936.136500px;}
.y1cc{bottom:937.392000px;}
.y8c{bottom:949.138500px;}
.y205{bottom:950.259000px;}
.y21{bottom:952.648500px;}
.y161{bottom:954.517500px;}
.y8d{bottom:954.562500px;}
.y1cb{bottom:954.652500px;}
.y54{bottom:954.966000px;}
.y162{bottom:959.943000px;}
.y204{bottom:967.519500px;}
.y8a{bottom:967.968000px;}
.y160{bottom:970.617000px;}
.y20{bottom:971.478000px;}
.y1ca{bottom:971.913000px;}
.y15f{bottom:973.347000px;}
.y8b{bottom:973.392000px;}
.y53{bottom:973.795500px;}
.y203{bottom:984.780000px;}
.y89{bottom:986.797500px;}
.y1c9{bottom:989.173500px;}
.y15e{bottom:992.176500px;}
.y52{bottom:992.625000px;}
.y202{bottom:1002.040500px;}
.y88{bottom:1005.627000px;}
.y1c8{bottom:1006.434000px;}
.y1f{bottom:1008.240000px;}
.y15d{bottom:1011.006000px;}
.y51{bottom:1011.454500px;}
.yaf{bottom:1016.878500px;}
.y201{bottom:1019.299500px;}
.y1c7{bottom:1023.693000px;}
.y87{bottom:1024.456500px;}
.y15c{bottom:1029.835500px;}
.y50{bottom:1030.284000px;}
.y1e{bottom:1036.485000px;}
.y200{bottom:1036.560000px;}
.y86{bottom:1040.556000px;}
.y85{bottom:1043.284500px;}
.y1c6{bottom:1045.437000px;}
.y4f{bottom:1049.113500px;}
.y15b{bottom:1053.148500px;}
.y1ff{bottom:1053.820500px;}
.y83{bottom:1062.114000px;}
.y1d{bottom:1064.728500px;}
.y84{bottom:1067.539500px;}
.y4e{bottom:1067.943000px;}
.y1fe{bottom:1071.081000px;}
.y1c5{bottom:1079.061000px;}
.y82{bottom:1085.427000px;}
.y4d{bottom:1086.772500px;}
.y1fd{bottom:1088.341500px;}
.y1c{bottom:1092.972000px;}
.y4c{bottom:1105.602000px;}
.y15a{bottom:1111.026000px;}
.y1a{bottom:1136.460000px;}
.y4b{bottom:1168.366500px;}
.ha{height:26.110157px;}
.he{height:29.037733px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h12{height:31.526842px;}
.h13{height:33.072749px;}
.h17{height:34.574294px;}
.hb{height:34.813397px;}
.h11{height:35.052500px;}
.h1a{height:37.120896px;}
.hc{height:38.896243px;}
.hd{height:39.165235px;}
.h22{height:39.434227px;}
.h1b{height:41.245164px;}
.h16{height:41.482876px;}
.h18{height:42.247486px;}
.hf{height:43.217759px;}
.h10{height:43.516637px;}
.h6{height:43.815515px;}
.h15{height:48.567733px;}
.h4{height:50.930649px;}
.h14{height:53.222842px;}
.h19{height:53.228842px;}
.h1d{height:54.436637px;}
.h9{height:54.541601px;}
.h1c{height:63.205397px;}
.h7{height:77.792486px;}
.h8{height:78.115277px;}
.h20{height:84.279515px;}
.h1f{height:84.520637px;}
.h21{height:84.526637px;}
.h1e{height:86.554950px;}
.h5{height:102.503837px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:213.066811px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:52.230000px;}
.x1{left:53.574000px;}
.x2{left:57.710756px;}
.x7c{left:70.533000px;}
.x7d{left:83.187000px;}
.xfd{left:85.848000px;}
.x7e{left:125.754000px;}
.xfe{left:215.917500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x7f{left:251.910000px;}
.x93{left:254.559000px;}
.xc4{left:260.397000px;}
.x37{left:261.835500px;}
.xc5{left:266.823000px;}
.x5{left:269.914500px;}
.x38{left:272.001000px;}
.x89{left:275.824500px;}
.xa6{left:277.603500px;}
.xc6{left:279.505500px;}
.x11{left:281.479500px;}
.x62{left:283.041000px;}
.xeb{left:284.356500px;}
.xc7{left:285.931500px;}
.x78{left:287.058000px;}
.x77{left:288.537000px;}
.x75{left:290.070000px;}
.x76{left:291.550500px;}
.x63{left:295.848000px;}
.xc8{left:297.912000px;}
.x61{left:301.482000px;}
.xd7{left:303.591000px;}
.x3f{left:305.359500px;}
.x74{left:306.817500px;}
.x7{left:308.134500px;}
.xfc{left:309.361500px;}
.x40{left:312.165000px;}
.xd8{left:313.881000px;}
.x1d{left:315.615000px;}
.xa7{left:317.733000px;}
.x10{left:319.878000px;}
.xba{left:322.104000px;}
.x50{left:324.277500px;}
.x16{left:326.152500px;}
.x22{left:329.200500px;}
.x12{left:330.808500px;}
.x17{left:333.625500px;}
.x14{left:334.977000px;}
.x54{left:336.081000px;}
.x13{left:338.281500px;}
.x8a{left:339.696000px;}
.xbb{left:340.714500px;}
.x15{left:342.448500px;}
.x23{left:344.145000px;}
.xe3{left:349.998000px;}
.xbc{left:352.225500px;}
.xec{left:354.342000px;}
.xf5{left:359.029500px;}
.xbd{left:361.578000px;}
.xa8{left:364.494000px;}
.xf6{left:368.259000px;}
.xa9{left:370.471500px;}
.xf8{left:375.115500px;}
.xf1{left:378.619500px;}
.x64{left:380.616000px;}
.xaa{left:381.885000px;}
.x69{left:384.576000px;}
.x65{left:387.423000px;}
.x80{left:391.833000px;}
.x6a{left:399.520500px;}
.x84{left:400.524000px;}
.xc9{left:402.181500px;}
.x6b{left:403.330500px;}
.xab{left:404.623500px;}
.xd9{left:407.749500px;}
.x85{left:408.892500px;}
.xf9{left:410.254500px;}
.xca{left:414.285000px;}
.xe4{left:416.089500px;}
.x6c{left:418.275000px;}
.x5b{left:420.849000px;}
.x6d{left:422.085000px;}
.xcb{left:426.967500px;}
.xda{left:433.284000px;}
.x5c{left:435.793500px;}
.x6e{left:437.029500px;}
.xcc{left:439.072500px;}
.xcf{left:441.357000px;}
.x6f{left:444.651000px;}
.x41{left:446.089500px;}
.xbe{left:450.322500px;}
.xac{left:451.741500px;}
.x2a{left:453.483000px;}
.x55{left:455.593500px;}
.x8{left:456.820500px;}
.x70{left:459.595500px;}
.x42{left:461.032500px;}
.x9{left:463.147500px;}
.xe1{left:464.664000px;}
.x20{left:465.993000px;}
.xe5{left:467.052000px;}
.x2b{left:468.426000px;}
.x45{left:470.587500px;}
.xd0{left:472.180500px;}
.x21{left:473.464500px;}
.x2c{left:475.824000px;}
.x46{left:477.394500px;}
.x66{left:480.436500px;}
.xd1{left:482.353500px;}
.x43{left:483.598500px;}
.x8b{left:486.141000px;}
.x7b{left:488.271000px;}
.x2d{left:490.767000px;}
.x9a{left:491.938500px;}
.xbf{left:496.221000px;}
.x52{left:497.563500px;}
.x8c{left:498.823500px;}
.xe8{left:501.465000px;}
.x9b{left:503.184000px;}
.x67{left:505.119000px;}
.x24{left:507.334500px;}
.xdf{left:508.450500px;}
.xed{left:510.454500px;}
.x53{left:512.508000px;}
.x9c{left:514.392000px;}
.xe0{left:515.923500px;}
.x8d{left:517.230000px;}
.x68{left:520.063500px;}
.x25{left:522.277500px;}
.x8e{left:523.656000px;}
.x9d{left:525.016500px;}
.xe6{left:526.447500px;}
.x5d{left:527.619000px;}
.x94{left:529.104000px;}
.x9e{left:530.994000px;}
.xe7{left:533.254500px;}
.x5e{left:534.426000px;}
.x81{left:537.010500px;}
.xad{left:540.226500px;}
.x95{left:541.786500px;}
.x30{left:544.984500px;}
.xae{left:546.204000px;}
.x47{left:548.311500px;}
.xdb{left:549.423000px;}
.x31{left:551.791500px;}
.x1a{left:555.859500px;}
.x86{left:557.506500px;}
.x5f{left:558.583500px;}
.x96{left:560.193000px;}
.xdc{left:561.528000px;}
.x1b{left:563.331000px;}
.xa{left:566.697000px;}
.x9f{left:568.305000px;}
.x97{left:570.673500px;}
.xb{left:573.025500px;}
.x48{left:574.767000px;}
.x60{left:577.189500px;}
.xaf{left:580.356000px;}
.x56{left:581.913000px;}
.x4f{left:585.672000px;}
.xcd{left:587.601000px;}
.x49{left:589.711500px;}
.x2e{left:591.786000px;}
.xd2{left:593.998500px;}
.x4a{left:597.333000px;}
.xce{left:600.283500px;}
.xa0{left:602.130000px;}
.x79{left:604.372500px;}
.x87{left:605.626500px;}
.x2f{left:606.729000px;}
.xa1{left:608.107500px;}
.xc0{left:610.002000px;}
.x4b{left:612.276000px;}
.xf7{left:613.458000px;}
.xf4{left:617.880000px;}
.x88{left:618.975000px;}
.xc1{left:621.513000px;}
.xb0{left:622.699500px;}
.x51{left:629.665500px;}
.xc2{left:630.865500px;}
.x39{left:633.063000px;}
.xfb{left:636.751500px;}
.xb1{left:640.092000px;}
.x34{left:642.669000px;}
.x4c{left:644.530500px;}
.xb2{left:646.069500px;}
.x3a{left:648.007500px;}
.xa2{left:649.921500px;}
.x4d{left:651.337500px;}
.x35{left:657.613500px;}
.xa3{left:661.167000px;}
.xb3{left:662.829000px;}
.x1e{left:665.710500px;}
.x98{left:667.551000px;}
.x1f{left:673.183500px;}
.xc{left:676.575000px;}
.x99{left:678.015000px;}
.xd{left:682.903500px;}
.x44{left:684.279000px;}
.x3d{left:689.170500px;}
.xa4{left:690.481500px;}
.xf3{left:692.920500px;}
.x3e{left:695.977500px;}
.x26{left:698.428500px;}
.x7a{left:702.805500px;}
.xfa{left:704.032500px;}
.x102{left:707.365500px;}
.xb4{left:709.590000px;}
.x32{left:712.044000px;}
.x27{left:713.373000px;}
.x82{left:714.489000px;}
.xb5{left:715.567500px;}
.x33{left:718.849500px;}
.xd3{left:721.551000px;}
.x83{left:722.857500px;}
.x57{left:724.404000px;}
.x8f{left:725.812500px;}
.xb6{left:726.982500px;}
.x58{left:731.211000px;}
.xb7{left:732.960000px;}
.xd4{left:734.095500px;}
.x90{left:738.469500px;}
.xd5{left:740.521500px;}
.xb8{left:743.742000px;}
.x91{left:744.895500px;}
.xf2{left:747.508500px;}
.x100{left:748.579500px;}
.xb9{left:749.719500px;}
.xdd{left:751.326000px;}
.xd6{left:752.373000px;}
.xc3{left:756.156000px;}
.x71{left:757.686000px;}
.x59{left:759.022500px;}
.xde{left:761.617500px;}
.x92{left:763.278000px;}
.x5a{left:765.828000px;}
.x18{left:769.153500px;}
.x3b{left:770.709000px;}
.x101{left:775.479000px;}
.x19{left:776.626500px;}
.xff{left:778.653000px;}
.xee{left:780.246000px;}
.xe9{left:781.446000px;}
.x4e{left:782.884500px;}
.x36{left:784.219500px;}
.xef{left:787.051500px;}
.xea{left:788.251500px;}
.xe2{left:790.159500px;}
.xf0{left:794.929500px;}
.x73{left:801.463500px;}
.x3c{left:814.405500px;}
.xe{left:817.215000px;}
.x28{left:818.893500px;}
.xf{left:823.542000px;}
.x1c{left:831.990000px;}
.x29{left:833.838000px;}
.x72{left:835.332000px;}
.xa5{left:837.214500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v4{vertical-align:-9.322667pt;}
.v6{vertical-align:-7.472000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.706667pt;}
.v5{vertical-align:15.429333pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v7{vertical-align:25.237333pt;}
.v9{vertical-align:35.973333pt;}
.va{vertical-align:37.008000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.000015pt;}
.ls19{letter-spacing:0.000623pt;}
.ls34{letter-spacing:0.000711pt;}
.ls13{letter-spacing:0.001012pt;}
.ls30{letter-spacing:0.001736pt;}
.ls1b{letter-spacing:0.002114pt;}
.ls18{letter-spacing:0.002185pt;}
.ls38{letter-spacing:0.002262pt;}
.ls12{letter-spacing:0.002370pt;}
.lsf{letter-spacing:0.002422pt;}
.ls7{letter-spacing:0.003288pt;}
.ls27{letter-spacing:0.003733pt;}
.ls1d{letter-spacing:0.601548pt;}
.ls1e{letter-spacing:0.663552pt;}
.ls22{letter-spacing:1.326400pt;}
.ls23{letter-spacing:2.430881pt;}
.ls21{letter-spacing:2.436214pt;}
.ls17{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.lsc{letter-spacing:3.054400pt;}
.lsd{letter-spacing:3.059733pt;}
.lsa{letter-spacing:3.118133pt;}
.ls9{letter-spacing:3.158400pt;}
.ls2f{letter-spacing:3.163733pt;}
.ls0{letter-spacing:9.298933pt;}
.ls5{letter-spacing:10.626533pt;}
.ls14{letter-spacing:10.945577pt;}
.ls25{letter-spacing:10.968429pt;}
.ls15{letter-spacing:11.157867pt;}
.ls29{letter-spacing:11.658682pt;}
.ls3a{letter-spacing:11.771834pt;}
.ls31{letter-spacing:11.954133pt;}
.ls35{letter-spacing:11.959467pt;}
.ls37{letter-spacing:11.962051pt;}
.ls32{letter-spacing:11.968610pt;}
.ls39{letter-spacing:12.169715pt;}
.ls36{letter-spacing:12.609506pt;}
.ls2a{letter-spacing:12.696429pt;}
.ls33{letter-spacing:13.043493pt;}
.ls8{letter-spacing:13.070931pt;}
.ls3b{letter-spacing:13.148068pt;}
.ls11{letter-spacing:13.230333pt;}
.ls10{letter-spacing:13.281404pt;}
.ls2d{letter-spacing:13.284541pt;}
.ls2c{letter-spacing:13.285348pt;}
.ls2e{letter-spacing:13.785067pt;}
.lsb{letter-spacing:14.608533pt;}
.lse{letter-spacing:15.143152pt;}
.ls1c{letter-spacing:15.937067pt;}
.ls1a{letter-spacing:15.942400pt;}
.ls1f{letter-spacing:16.020214pt;}
.ls16{letter-spacing:17.072913pt;}
.ls24{letter-spacing:17.972214pt;}
.ls28{letter-spacing:25.096429pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2b{letter-spacing:67.978682pt;}
.ls20{letter-spacing:73.021762pt;}
.ws10{word-spacing:-23.910400pt;}
.ws78{word-spacing:-13.283467pt;}
.ws14{word-spacing:-12.760670pt;}
.ws56{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws15{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.wsa7{word-spacing:-4.516379pt;}
.ws65{word-spacing:-2.816095pt;}
.ws92{word-spacing:-2.656693pt;}
.ws76{word-spacing:-2.391024pt;}
.ws3b{word-spacing:-2.284756pt;}
.ws70{word-spacing:-2.125355pt;}
.ws18{word-spacing:-2.104115pt;}
.wsb7{word-spacing:-2.019087pt;}
.ws79{word-spacing:-1.806551pt;}
.ws67{word-spacing:-1.753418pt;}
.ws8b{word-spacing:-1.700284pt;}
.wsb6{word-spacing:-1.594016pt;}
.ws2d{word-spacing:-1.540882pt;}
.wscf{word-spacing:-1.434624pt;}
.ws44{word-spacing:-1.434614pt;}
.wsaa{word-spacing:-1.381481pt;}
.ws9e{word-spacing:-1.291162pt;}
.ws3c{word-spacing:-1.275213pt;}
.ws5b{word-spacing:-1.222079pt;}
.ws9f{word-spacing:-1.099878pt;}
.wsd0{word-spacing:-1.052058pt;}
.ws6{word-spacing:-1.041421pt;}
.ws87{word-spacing:-0.956410pt;}
.ws8{word-spacing:-0.929840pt;}
.ws99{word-spacing:-0.797008pt;}
.wsd1{word-spacing:-0.765133pt;}
.ws97{word-spacing:-0.584473pt;}
.wsaf{word-spacing:-0.371937pt;}
.ws3a{word-spacing:-0.318803pt;}
.ws1d{word-spacing:-0.286925pt;}
.ws28{word-spacing:-0.265669pt;}
.ws17{word-spacing:-0.239104pt;}
.ws32{word-spacing:-0.212535pt;}
.ws93{word-spacing:-0.194239pt;}
.wsbd{word-spacing:-0.191283pt;}
.ws36{word-spacing:-0.159402pt;}
.ws1a{word-spacing:-0.143462pt;}
.ws24{word-spacing:-0.106268pt;}
.ws8e{word-spacing:-0.095642pt;}
.wsa1{word-spacing:-0.072985pt;}
.ws31{word-spacing:-0.053134pt;}
.ws21{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.042507pt;}
.wsda{word-spacing:-0.014319pt;}
.wscd{word-spacing:-0.005376pt;}
.wsd7{word-spacing:-0.004642pt;}
.wse4{word-spacing:-0.003806pt;}
.ws6d{word-spacing:-0.003661pt;}
.wsd9{word-spacing:-0.002850pt;}
.ws62{word-spacing:-0.002467pt;}
.wsa9{word-spacing:-0.002201pt;}
.wsd8{word-spacing:-0.000717pt;}
.ws12{word-spacing:-0.000459pt;}
.wse1{word-spacing:-0.000452pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.000617pt;}
.ws6b{word-spacing:0.000640pt;}
.wsb2{word-spacing:0.001356pt;}
.ws2b{word-spacing:0.001534pt;}
.ws4{word-spacing:0.001540pt;}
.ws22{word-spacing:0.047821pt;}
.ws4e{word-spacing:0.053134pt;}
.wscc{word-spacing:0.095642pt;}
.ws46{word-spacing:0.106268pt;}
.ws19{word-spacing:0.143462pt;}
.ws3d{word-spacing:0.159402pt;}
.wsb8{word-spacing:0.191283pt;}
.ws51{word-spacing:0.212535pt;}
.wsdb{word-spacing:0.239104pt;}
.ws42{word-spacing:0.265669pt;}
.wsdf{word-spacing:0.286925pt;}
.ws47{word-spacing:0.318803pt;}
.ws73{word-spacing:0.371937pt;}
.ws5e{word-spacing:0.403424pt;}
.ws5d{word-spacing:0.405957pt;}
.ws5f{word-spacing:0.408757pt;}
.wsbc{word-spacing:0.430387pt;}
.wsca{word-spacing:0.478208pt;}
.wsb5{word-spacing:0.502667pt;}
.ws52{word-spacing:0.509067pt;}
.ws7e{word-spacing:0.526739pt;}
.ws7d{word-spacing:0.529273pt;}
.ws7c{word-spacing:0.532073pt;}
.ws33{word-spacing:0.584473pt;}
.ws77{word-spacing:0.637606pt;}
.ws85{word-spacing:0.690740pt;}
.ws58{word-spacing:0.743874pt;}
.ws72{word-spacing:0.797008pt;}
.wsb9{word-spacing:0.812954pt;}
.ws50{word-spacing:0.850142pt;}
.wsc6{word-spacing:0.860774pt;}
.ws7{word-spacing:0.892646pt;}
.ws4a{word-spacing:0.903276pt;}
.wsdc{word-spacing:0.908595pt;}
.wsa5{word-spacing:0.956410pt;}
.ws8d{word-spacing:1.004237pt;}
.wsc1{word-spacing:1.005274pt;}
.ws34{word-spacing:1.009543pt;}
.wsc3{word-spacing:1.052058pt;}
.ws45{word-spacing:1.062677pt;}
.wsc7{word-spacing:1.099878pt;}
.ws64{word-spacing:1.168945pt;}
.wse3{word-spacing:1.195520pt;}
.ws4f{word-spacing:1.222079pt;}
.wsd2{word-spacing:1.243341pt;}
.ws8c{word-spacing:1.291162pt;}
.ws9c{word-spacing:1.324782pt;}
.ws9d{word-spacing:1.328347pt;}
.ws53{word-spacing:1.381481pt;}
.ws66{word-spacing:1.487748pt;}
.wsb4{word-spacing:1.540882pt;}
.ws26{word-spacing:1.700284pt;}
.wse2{word-spacing:1.769370pt;}
.ws69{word-spacing:1.806551pt;}
.ws68{word-spacing:1.859685pt;}
.ws4c{word-spacing:1.912819pt;}
.wsd3{word-spacing:1.912832pt;}
.wsc5{word-spacing:1.960653pt;}
.ws7a{word-spacing:1.965953pt;}
.wsc9{word-spacing:2.008474pt;}
.ws75{word-spacing:2.019087pt;}
.ws91{word-spacing:2.072221pt;}
.ws90{word-spacing:2.125355pt;}
.wsab{word-spacing:2.178489pt;}
.ws3{word-spacing:2.231375pt;}
.ws0{word-spacing:2.232481pt;}
.ws3f{word-spacing:2.284756pt;}
.ws37{word-spacing:2.337890pt;}
.ws1c{word-spacing:2.343219pt;}
.ws25{word-spacing:2.391024pt;}
.wsad{word-spacing:2.497292pt;}
.ws20{word-spacing:2.582323pt;}
.ws54{word-spacing:2.603559pt;}
.ws96{word-spacing:2.656693pt;}
.ws86{word-spacing:2.762961pt;}
.ws5a{word-spacing:2.816095pt;}
.wsc4{word-spacing:2.859409pt;}
.wsde{word-spacing:2.861815pt;}
.wse0{word-spacing:2.862626pt;}
.wsc8{word-spacing:2.865929pt;}
.wsd5{word-spacing:2.866739pt;}
.ws41{word-spacing:2.869229pt;}
.wsbe{word-spacing:2.869248pt;}
.ws29{word-spacing:2.922363pt;}
.wsd4{word-spacing:2.964890pt;}
.ws48{word-spacing:2.975497pt;}
.ws94{word-spacing:3.081764pt;}
.ws2e{word-spacing:3.134898pt;}
.wscb{word-spacing:3.156173pt;}
.ws23{word-spacing:3.188032pt;}
.ws2f{word-spacing:3.241166pt;}
.ws39{word-spacing:3.400567pt;}
.ws1b{word-spacing:3.443098pt;}
.wsb3{word-spacing:3.559969pt;}
.wsba{word-spacing:3.586560pt;}
.ws74{word-spacing:3.613103pt;}
.ws27{word-spacing:3.666237pt;}
.wsc0{word-spacing:3.682202pt;}
.ws2a{word-spacing:3.719371pt;}
.ws35{word-spacing:3.878772pt;}
.ws89{word-spacing:3.931906pt;}
.wsce{word-spacing:3.969126pt;}
.ws59{word-spacing:3.985040pt;}
.ws1f{word-spacing:4.160410pt;}
.ws82{word-spacing:4.197575pt;}
.wse{word-spacing:4.240070pt;}
.wsac{word-spacing:4.250709pt;}
.ws1e{word-spacing:4.256051pt;}
.ws55{word-spacing:4.303843pt;}
.wsf{word-spacing:4.314458pt;}
.ws49{word-spacing:4.356977pt;}
.ws38{word-spacing:4.569513pt;}
.ws57{word-spacing:4.675780pt;}
.wsa2{word-spacing:4.728914pt;}
.ws88{word-spacing:4.782048pt;}
.wsae{word-spacing:4.835182pt;}
.wsa0{word-spacing:4.888316pt;}
.wsd6{word-spacing:4.973363pt;}
.wsbb{word-spacing:5.069005pt;}
.ws9b{word-spacing:5.153985pt;}
.ws95{word-spacing:5.207119pt;}
.ws6f{word-spacing:5.260253pt;}
.wsa6{word-spacing:5.313387pt;}
.ws63{word-spacing:5.317333pt;}
.wsa3{word-spacing:5.472788pt;}
.ws30{word-spacing:5.579056pt;}
.ws84{word-spacing:5.632190pt;}
.ws83{word-spacing:5.791591pt;}
.ws4b{word-spacing:5.950993pt;}
.wsdd{word-spacing:5.977600pt;}
.ws43{word-spacing:6.004127pt;}
.ws71{word-spacing:6.269796pt;}
.wsb0{word-spacing:6.535466pt;}
.ws3e{word-spacing:6.694867pt;}
.wsc{word-spacing:6.918010pt;}
.wsbf{word-spacing:6.981837pt;}
.ws40{word-spacing:7.385607pt;}
.ws98{word-spacing:7.438741pt;}
.ws8a{word-spacing:7.863812pt;}
.wsb1{word-spacing:8.129482pt;}
.ws4d{word-spacing:9.457828pt;}
.ws9a{word-spacing:9.936033pt;}
.wsa{word-spacing:10.823338pt;}
.wsc2{word-spacing:13.772390pt;}
.wsb{word-spacing:14.319536pt;}
.wsa4{word-spacing:20.137735pt;}
.wsd{word-spacing:23.208806pt;}
.ws11{word-spacing:23.808521pt;}
.ws9{word-spacing:23.858002pt;}
.ws8f{word-spacing:30.796595pt;}
.ws13{word-spacing:35.593054pt;}
.ws6c{word-spacing:208.211763pt;}
.ws6e{word-spacing:208.259584pt;}
.ws61{word-spacing:235.999974pt;}
.ws6a{word-spacing:241.447219pt;}
.ws60{word-spacing:257.253574pt;}
.ws5c{word-spacing:286.753571pt;}
.ws81{word-spacing:349.149822pt;}
.ws7f{word-spacing:363.285597pt;}
.wsa8{word-spacing:380.225950pt;}
.ws80{word-spacing:409.809371pt;}
.ws7b{word-spacing:469.619546pt;}
._47{margin-left:-21.758464pt;}
._a{margin-left:-16.200546pt;}
._5{margin-left:-7.077478pt;}
._6{margin-left:-5.897296pt;}
._8{margin-left:-4.675792pt;}
._0{margin-left:-3.421811pt;}
._3{margin-left:-2.045648pt;}
._9{margin-left:-1.105187pt;}
._3f{width:1.078626pt;}
._2{width:2.045648pt;}
._7{width:3.287996pt;}
._40{width:4.298414pt;}
._46{width:6.599270pt;}
._21{width:10.626800pt;}
._1{width:11.530016pt;}
._44{width:12.443999pt;}
._b{width:13.336019pt;}
._c{width:14.287773pt;}
._e{width:15.207014pt;}
._d{width:16.306893pt;}
._15{width:17.789221pt;}
._18{width:18.798765pt;}
._14{width:19.755174pt;}
._45{width:20.977779pt;}
._f{width:22.050555pt;}
._43{width:23.284149pt;}
._17{width:24.175909pt;}
._13{width:26.248130pt;}
._4{width:27.188522pt;}
._10{width:28.160949pt;}
._3e{width:29.542430pt;}
._19{width:30.923910pt;}
._3d{width:33.633738pt;}
._38{width:34.792059pt;}
._16{width:37.315911pt;}
._48{width:54.993920pt;}
._1d{width:132.664971pt;}
._1c{width:143.688568pt;}
._22{width:168.200990pt;}
._25{width:204.119574pt;}
._30{width:208.211763pt;}
._31{width:220.214784pt;}
._23{width:221.334293pt;}
._24{width:225.373174pt;}
._2a{width:232.122163pt;}
._27{width:235.999974pt;}
._2d{width:238.099763pt;}
._1f{width:242.524811pt;}
._32{width:243.892064pt;}
._20{width:246.626774pt;}
._36{width:248.142131pt;}
._33{width:249.200173pt;}
._2f{width:254.651744pt;}
._2e{width:256.032563pt;}
._2b{width:260.097331pt;}
._1b{width:261.461787pt;}
._3a{width:266.052565pt;}
._34{width:271.867232pt;}
._35{width:276.021658pt;}
._37{width:277.844832pt;}
._26{width:287.769879pt;}
._39{width:300.398382pt;}
._41{width:310.812793pt;}
._3b{width:332.681322pt;}
._3c{width:342.778061pt;}
._2c{width:394.327409pt;}
._29{width:408.997748pt;}
._1a{width:413.850099pt;}
._28{width:432.443494pt;}
._1e{width:466.644042pt;}
._11{width:651.134931pt;}
._42{width:2209.842400pt;}
._12{width:2231.095733pt;}
.fs5{font-size:31.880533pt;}
.fsb{font-size:33.219200pt;}
.fs0{font-size:37.193600pt;}
.fs8{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsc{font-size:44.292800pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:13.631314pt;}
.y4a{bottom:28.346667pt;}
.ydc{bottom:81.480000pt;}
.y1c4{bottom:83.168000pt;}
.yae{bottom:84.869333pt;}
.y159{bottom:86.848000pt;}
.y19b{bottom:90.401333pt;}
.y49{bottom:92.256000pt;}
.y19{bottom:93.018667pt;}
.y1fc{bottom:96.797333pt;}
.ydb{bottom:98.217333pt;}
.yad{bottom:101.606667pt;}
.y158{bottom:103.585333pt;}
.y1c3{bottom:106.760000pt;}
.y19a{bottom:107.138667pt;}
.y18{bottom:108.920000pt;}
.y48{bottom:108.993333pt;}
.y1fb{bottom:112.140000pt;}
.yda{bottom:114.954667pt;}
.yab{bottom:118.344000pt;}
.y157{bottom:120.322667pt;}
.y129{bottom:120.749333pt;}
.yac{bottom:123.165333pt;}
.y198{bottom:123.876000pt;}
.y17{bottom:124.820000pt;}
.y47{bottom:125.730667pt;}
.y1fa{bottom:127.481333pt;}
.y199{bottom:128.697333pt;}
.y81{bottom:129.156000pt;}
.y1c2{bottom:130.352000pt;}
.yd9{bottom:131.692000pt;}
.yaa{bottom:135.081333pt;}
.y177{bottom:135.677333pt;}
.y155{bottom:137.058667pt;}
.y128{bottom:137.486667pt;}
.y197{bottom:140.613333pt;}
.y16{bottom:140.720000pt;}
.y156{bottom:141.881333pt;}
.y46{bottom:142.468000pt;}
.y1f9{bottom:142.824000pt;}
.y80{bottom:145.893333pt;}
.yd8{bottom:148.429333pt;}
.y153{bottom:151.370667pt;}
.ya8{bottom:151.818667pt;}
.y152{bottom:153.796000pt;}
.y1c1{bottom:153.942667pt;}
.y127{bottom:154.224000pt;}
.y15{bottom:156.621333pt;}
.ya9{bottom:156.640000pt;}
.y196{bottom:157.350667pt;}
.y1f8{bottom:158.166667pt;}
.y154{bottom:158.618667pt;}
.y45{bottom:159.205333pt;}
.y7f{bottom:162.630667pt;}
.yd7{bottom:165.166667pt;}
.y176{bottom:165.565333pt;}
.ya7{bottom:168.556000pt;}
.y1c0{bottom:169.564000pt;}
.y151{bottom:170.533333pt;}
.y126{bottom:170.961333pt;}
.y14{bottom:172.521333pt;}
.y1f7{bottom:173.509333pt;}
.y44{bottom:175.942667pt;}
.y195{bottom:178.073333pt;}
.y7e{bottom:179.368000pt;}
.yd6{bottom:181.904000pt;}
.y175{bottom:182.302667pt;}
.y1bf{bottom:185.185333pt;}
.ya6{bottom:185.293333pt;}
.y150{bottom:187.270667pt;}
.y125{bottom:187.698667pt;}
.y13{bottom:188.421333pt;}
.y1f6{bottom:188.852000pt;}
.y43{bottom:192.680000pt;}
.y7d{bottom:196.105333pt;}
.yd5{bottom:198.641333pt;}
.y173{bottom:199.040000pt;}
.y1be{bottom:200.808000pt;}
.y12f{bottom:203.217333pt;}
.y174{bottom:203.861333pt;}
.y14f{bottom:204.008000pt;}
.y1f5{bottom:204.194667pt;}
.y12{bottom:204.322667pt;}
.y124{bottom:204.436000pt;}
.ya5{bottom:206.016000pt;}
.y194{bottom:207.961333pt;}
.y42{bottom:209.417333pt;}
.y7c{bottom:212.841333pt;}
.yd4{bottom:215.378667pt;}
.y172{bottom:215.777333pt;}
.y1bd{bottom:216.429333pt;}
.y12e{bottom:217.982667pt;}
.y1f4{bottom:219.537333pt;}
.y12d{bottom:220.313333pt;}
.y123{bottom:221.173333pt;}
.y193{bottom:224.698667pt;}
.y14e{bottom:224.730667pt;}
.y41{bottom:226.154667pt;}
.y7b{bottom:229.578667pt;}
.y1bc{bottom:232.050667pt;}
.yd3{bottom:232.116000pt;}
.y171{bottom:232.514667pt;}
.y1f3{bottom:234.880000pt;}
.y12c{bottom:235.078667pt;}
.ya4{bottom:235.904000pt;}
.yfb{bottom:236.101333pt;}
.y12b{bottom:237.409333pt;}
.y122{bottom:237.910667pt;}
.y192{bottom:241.434667pt;}
.y40{bottom:242.892000pt;}
.y7a{bottom:246.316000pt;}
.y1bb{bottom:247.672000pt;}
.yd2{bottom:248.853333pt;}
.y170{bottom:249.252000pt;}
.y1f2{bottom:250.222667pt;}
.ya3{bottom:252.641333pt;}
.y12a{bottom:254.505333pt;}
.y14d{bottom:254.618667pt;}
.y121{bottom:254.648000pt;}
.y191{bottom:258.172000pt;}
.y3f{bottom:259.629333pt;}
.y79{bottom:263.053333pt;}
.y1ba{bottom:263.293333pt;}
.y1f1{bottom:265.564000pt;}
.yd1{bottom:265.590667pt;}
.yfa{bottom:265.989333pt;}
.y11{bottom:266.804000pt;}
.ya2{bottom:269.377333pt;}
.y14c{bottom:271.356000pt;}
.y120{bottom:271.385333pt;}
.y190{bottom:274.909333pt;}
.y1b9{bottom:278.914667pt;}
.y78{bottom:279.790667pt;}
.y3e{bottom:280.350667pt;}
.y1f0{bottom:280.906667pt;}
.yd0{bottom:282.328000pt;}
.y10{bottom:282.705333pt;}
.yf9{bottom:282.726667pt;}
.ya1{bottom:286.114667pt;}
.y14b{bottom:288.093333pt;}
.y11f{bottom:288.122667pt;}
.y18f{bottom:291.646667pt;}
.y1ef{bottom:296.249333pt;}
.y77{bottom:296.528000pt;}
.yf{bottom:298.605333pt;}
.ycf{bottom:299.065333pt;}
.yf8{bottom:299.464000pt;}
.y1b8{bottom:302.506667pt;}
.ya0{bottom:302.852000pt;}
.y14a{bottom:304.830667pt;}
.y11e{bottom:304.860000pt;}
.y18e{bottom:308.384000pt;}
.y1ee{bottom:311.592000pt;}
.y75{bottom:313.265333pt;}
.ye{bottom:314.505333pt;}
.yce{bottom:315.802667pt;}
.yf7{bottom:316.201333pt;}
.y76{bottom:318.088000pt;}
.y1b7{bottom:318.128000pt;}
.y9f{bottom:319.589333pt;}
.y149{bottom:321.568000pt;}
.y11d{bottom:321.597333pt;}
.y18d{bottom:325.121333pt;}
.y1ed{bottom:326.934667pt;}
.y74{bottom:330.002667pt;}
.ycd{bottom:332.540000pt;}
.yf6{bottom:332.938667pt;}
.y1b6{bottom:333.749333pt;}
.y9d{bottom:336.326667pt;}
.y16f{bottom:337.760000pt;}
.y148{bottom:338.305333pt;}
.y11c{bottom:338.334667pt;}
.yd{bottom:338.376000pt;}
.y9e{bottom:341.149333pt;}
.y18c{bottom:341.858667pt;}
.y1ec{bottom:342.277333pt;}
.y73{bottom:346.740000pt;}
.y3d{bottom:347.150667pt;}
.ycc{bottom:349.277333pt;}
.y1b5{bottom:349.370667pt;}
.yf5{bottom:349.676000pt;}
.y11b{bottom:352.645333pt;}
.y9c{bottom:353.064000pt;}
.y16e{bottom:353.660000pt;}
.yc{bottom:354.277333pt;}
.y11a{bottom:355.072000pt;}
.y1eb{bottom:357.620000pt;}
.y18b{bottom:358.596000pt;}
.y147{bottom:359.026667pt;}
.y71{bottom:363.477333pt;}
.yf4{bottom:363.986667pt;}
.y3c{bottom:364.446667pt;}
.y1b4{bottom:364.992000pt;}
.ycb{bottom:366.014667pt;}
.yf3{bottom:366.413333pt;}
.y72{bottom:368.300000pt;}
.y119{bottom:369.382667pt;}
.y9a{bottom:369.801333pt;}
.yb{bottom:370.177333pt;}
.y118{bottom:371.809333pt;}
.y1ea{bottom:372.962667pt;}
.y9b{bottom:374.624000pt;}
.y18a{bottom:375.333333pt;}
.y146{bottom:376.960000pt;}
.y70{bottom:380.214667pt;}
.y16d{bottom:380.473333pt;}
.yca{bottom:382.752000pt;}
.yf2{bottom:383.150667pt;}
.y117{bottom:386.120000pt;}
.y1e9{bottom:388.304000pt;}
.y116{bottom:388.545333pt;}
.y189{bottom:392.070667pt;}
.ya{bottom:395.376000pt;}
.y1b3{bottom:396.553333pt;}
.y6f{bottom:396.952000pt;}
.y3b{bottom:397.681333pt;}
.yc9{bottom:399.489333pt;}
.y99{bottom:399.637333pt;}
.yf1{bottom:399.888000pt;}
.y115{bottom:402.857333pt;}
.y1e8{bottom:403.646667pt;}
.y114{bottom:405.282667pt;}
.y145{bottom:406.848000pt;}
.y188{bottom:408.808000pt;}
.y1b2{bottom:413.290667pt;}
.y6e{bottom:413.689333pt;}
.y3a{bottom:414.977333pt;}
.yc8{bottom:416.226667pt;}
.yf0{bottom:416.624000pt;}
.y1e7{bottom:418.989333pt;}
.y9{bottom:419.246667pt;}
.y113{bottom:422.020000pt;}
.y144{bottom:423.585333pt;}
.y187{bottom:425.545333pt;}
.y1b1{bottom:430.028000pt;}
.y6d{bottom:430.426667pt;}
.y39{bottom:432.272000pt;}
.yc7{bottom:432.964000pt;}
.yef{bottom:433.361333pt;}
.y1e6{bottom:434.332000pt;}
.y8{bottom:435.146667pt;}
.y112{bottom:438.757333pt;}
.y143{bottom:440.322667pt;}
.y186{bottom:442.282667pt;}
.y1b0{bottom:446.765333pt;}
.y6c{bottom:447.164000pt;}
.y38{bottom:449.566667pt;}
.y1e5{bottom:449.674667pt;}
.yc5{bottom:449.701333pt;}
.yee{bottom:450.098667pt;}
.y7{bottom:451.048000pt;}
.yc6{bottom:454.522667pt;}
.y111{bottom:455.494667pt;}
.y142{bottom:457.060000pt;}
.y185{bottom:459.020000pt;}
.y1af{bottom:463.502667pt;}
.y6b{bottom:463.901333pt;}
.y1e4{bottom:465.017333pt;}
.yc4{bottom:466.438667pt;}
.yed{bottom:466.836000pt;}
.y37{bottom:466.862667pt;}
.y6{bottom:466.948000pt;}
.y110{bottom:472.232000pt;}
.y141{bottom:473.797333pt;}
.y184{bottom:475.757333pt;}
.y1ae{bottom:480.240000pt;}
.y1e3{bottom:480.360000pt;}
.y6a{bottom:480.638667pt;}
.y5{bottom:482.848000pt;}
.yc2{bottom:483.176000pt;}
.y36{bottom:484.157333pt;}
.yc3{bottom:487.997333pt;}
.y10f{bottom:488.969333pt;}
.y140{bottom:490.534667pt;}
.y183{bottom:492.494667pt;}
.y1e2{bottom:495.702667pt;}
.y1ad{bottom:496.977333pt;}
.y69{bottom:497.376000pt;}
.y4{bottom:498.749333pt;}
.yc1{bottom:499.912000pt;}
.y35{bottom:501.453333pt;}
.yec{bottom:501.857333pt;}
.y13f{bottom:504.845333pt;}
.y10e{bottom:505.706667pt;}
.y13e{bottom:507.272000pt;}
.y182{bottom:509.232000pt;}
.y1e1{bottom:511.045333pt;}
.y1ac{bottom:513.714667pt;}
.y68{bottom:514.113333pt;}
.y3{bottom:514.649333pt;}
.yc0{bottom:516.649333pt;}
.yeb{bottom:518.606667pt;}
.y34{bottom:518.748000pt;}
.y13d{bottom:521.582667pt;}
.y10d{bottom:522.444000pt;}
.y13c{bottom:524.009333pt;}
.y181{bottom:525.969333pt;}
.y1e0{bottom:526.386667pt;}
.y1ab{bottom:530.452000pt;}
.y2{bottom:530.549333pt;}
.y67{bottom:530.850667pt;}
.yea{bottom:533.218667pt;}
.ybf{bottom:533.386667pt;}
.y33{bottom:536.042667pt;}
.y10c{bottom:539.181333pt;}
.y13b{bottom:540.746667pt;}
.y1df{bottom:541.729333pt;}
.y180{bottom:542.706667pt;}
.y1{bottom:546.450667pt;}
.y1aa{bottom:547.189333pt;}
.y66{bottom:547.588000pt;}
.ye9{bottom:547.830667pt;}
.ybe{bottom:550.124000pt;}
.y31{bottom:553.338667pt;}
.y1de{bottom:557.072000pt;}
.y13a{bottom:557.484000pt;}
.y32{bottom:557.677333pt;}
.y17f{bottom:559.444000pt;}
.y10b{bottom:559.904000pt;}
.ye8{bottom:562.442667pt;}
.y1a9{bottom:563.926667pt;}
.y65{bottom:564.325333pt;}
.ybd{bottom:566.861333pt;}
.y30{bottom:570.633333pt;}
.y1dd{bottom:572.414667pt;}
.y139{bottom:574.221333pt;}
.y17e{bottom:576.181333pt;}
.ye7{bottom:577.054667pt;}
.y1a8{bottom:580.664000pt;}
.y64{bottom:581.062667pt;}
.ybc{bottom:583.598667pt;}
.y1dc{bottom:587.757333pt;}
.y2f{bottom:587.928000pt;}
.y138{bottom:588.532000pt;}
.y137{bottom:590.958667pt;}
.ye6{bottom:591.666667pt;}
.y17d{bottom:592.918667pt;}
.y1a7{bottom:597.401333pt;}
.y63{bottom:597.800000pt;}
.y109{bottom:599.584000pt;}
.ybb{bottom:600.336000pt;}
.y1db{bottom:603.100000pt;}
.y2e{bottom:605.224000pt;}
.y136{bottom:605.269333pt;}
.y108{bottom:605.893333pt;}
.ye5{bottom:606.277333pt;}
.y135{bottom:607.696000pt;}
.y17c{bottom:609.656000pt;}
.y10a{bottom:612.202667pt;}
.y1a5{bottom:614.138667pt;}
.y62{bottom:614.537333pt;}
.yba{bottom:617.073333pt;}
.y1da{bottom:618.442667pt;}
.y1a6{bottom:618.960000pt;}
.ye4{bottom:620.889333pt;}
.y2d{bottom:622.518667pt;}
.y134{bottom:624.433333pt;}
.y106{bottom:624.822667pt;}
.y17b{bottom:630.377333pt;}
.y1a3{bottom:630.876000pt;}
.y105{bottom:631.132000pt;}
.y61{bottom:631.274667pt;}
.y1d9{bottom:633.785333pt;}
.yb9{bottom:633.810667pt;}
.ye3{bottom:635.501333pt;}
.y1a4{bottom:635.697333pt;}
.y107{bottom:637.441333pt;}
.y2c{bottom:639.814667pt;}
.y133{bottom:641.170667pt;}
.y211{bottom:645.221333pt;}
.y1a2{bottom:647.613333pt;}
.y60{bottom:648.012000pt;}
.y1d8{bottom:649.126667pt;}
.y103{bottom:650.061333pt;}
.ye2{bottom:650.113333pt;}
.yb8{bottom:650.548000pt;}
.y102{bottom:656.370667pt;}
.y132{bottom:657.908000pt;}
.y17a{bottom:660.265333pt;}
.y210{bottom:660.564000pt;}
.y104{bottom:662.680000pt;}
.y1a1{bottom:664.350667pt;}
.y1d7{bottom:664.469333pt;}
.ye1{bottom:664.725333pt;}
.y5f{bottom:664.749333pt;}
.y2b{bottom:674.112000pt;}
.y131{bottom:674.645333pt;}
.y100{bottom:675.300000pt;}
.y20f{bottom:675.906667pt;}
.ye0{bottom:679.337333pt;}
.y1d6{bottom:679.812000pt;}
.y1a0{bottom:681.088000pt;}
.y5e{bottom:681.485333pt;}
.yff{bottom:681.609333pt;}
.y16c{bottom:683.924000pt;}
.y179{bottom:685.212000pt;}
.y101{bottom:687.918667pt;}
.y2a{bottom:688.458667pt;}
.yb7{bottom:690.336000pt;}
.y20e{bottom:691.249333pt;}
.y16b{bottom:693.036000pt;}
.y178{bottom:694.325333pt;}
.y1d5{bottom:695.154667pt;}
.y19f{bottom:697.825333pt;}
.y5d{bottom:698.222667pt;}
.ydf{bottom:700.350667pt;}
.yfe{bottom:700.538667pt;}
.yb6{bottom:702.954667pt;}
.y130{bottom:704.481333pt;}
.y20d{bottom:706.592000pt;}
.y29{bottom:706.662667pt;}
.y98{bottom:709.780000pt;}
.y1d4{bottom:710.497333pt;}
.y19d{bottom:714.562667pt;}
.y5c{bottom:714.960000pt;}
.yb5{bottom:715.574667pt;}
.y28{bottom:717.150667pt;}
.y19e{bottom:719.384000pt;}
.yfd{bottom:719.560000pt;}
.y20c{bottom:721.934667pt;}
.y1d3{bottom:725.840000pt;}
.y97{bottom:726.517333pt;}
.yb4{bottom:728.193333pt;}
.yde{bottom:728.457333pt;}
.y16a{bottom:731.300000pt;}
.y5b{bottom:731.697333pt;}
.y27{bottom:735.354667pt;}
.y20b{bottom:737.277333pt;}
.yb3{bottom:740.813333pt;}
.y1d2{bottom:741.182667pt;}
.y95{bottom:743.254667pt;}
.y26{bottom:745.844000pt;}
.y169{bottom:748.036000pt;}
.y96{bottom:748.076000pt;}
.y5a{bottom:748.434667pt;}
.yfc{bottom:748.928000pt;}
.y20a{bottom:752.620000pt;}
.yb2{bottom:753.432000pt;}
.ydd{bottom:753.544000pt;}
.y1d1{bottom:756.525333pt;}
.y93{bottom:759.992000pt;}
.y25{bottom:764.046667pt;}
.y168{bottom:764.773333pt;}
.y94{bottom:764.813333pt;}
.y59{bottom:765.172000pt;}
.y209{bottom:767.961333pt;}
.y1d0{bottom:771.868000pt;}
.yb1{bottom:772.453333pt;}
.y92{bottom:776.729333pt;}
.y24{bottom:778.393333pt;}
.y167{bottom:781.510667pt;}
.y58{bottom:781.909333pt;}
.y208{bottom:783.304000pt;}
.y1cf{bottom:787.209333pt;}
.y23{bottom:788.882667pt;}
.y91{bottom:793.466667pt;}
.y165{bottom:798.248000pt;}
.y57{bottom:798.646667pt;}
.yb0{bottom:799.165333pt;}
.y19c{bottom:802.233333pt;}
.y1ce{bottom:802.552000pt;}
.y166{bottom:803.070667pt;}
.y22{bottom:807.086667pt;}
.y90{bottom:810.204000pt;}
.y207{bottom:813.989333pt;}
.y164{bottom:814.985333pt;}
.y56{bottom:815.384000pt;}
.y1cd{bottom:817.894667pt;}
.y8e{bottom:826.941333pt;}
.y206{bottom:829.332000pt;}
.y163{bottom:831.722667pt;}
.y8f{bottom:831.762667pt;}
.y55{bottom:832.121333pt;}
.y1cc{bottom:833.237333pt;}
.y8c{bottom:843.678667pt;}
.y205{bottom:844.674667pt;}
.y21{bottom:846.798667pt;}
.y161{bottom:848.460000pt;}
.y8d{bottom:848.500000pt;}
.y1cb{bottom:848.580000pt;}
.y54{bottom:848.858667pt;}
.y162{bottom:853.282667pt;}
.y204{bottom:860.017333pt;}
.y8a{bottom:860.416000pt;}
.y160{bottom:862.770667pt;}
.y20{bottom:863.536000pt;}
.y1ca{bottom:863.922667pt;}
.y15f{bottom:865.197333pt;}
.y8b{bottom:865.237333pt;}
.y53{bottom:865.596000pt;}
.y203{bottom:875.360000pt;}
.y89{bottom:877.153333pt;}
.y1c9{bottom:879.265333pt;}
.y15e{bottom:881.934667pt;}
.y52{bottom:882.333333pt;}
.y202{bottom:890.702667pt;}
.y88{bottom:893.890667pt;}
.y1c8{bottom:894.608000pt;}
.y1f{bottom:896.213333pt;}
.y15d{bottom:898.672000pt;}
.y51{bottom:899.070667pt;}
.yaf{bottom:903.892000pt;}
.y201{bottom:906.044000pt;}
.y1c7{bottom:909.949333pt;}
.y87{bottom:910.628000pt;}
.y15c{bottom:915.409333pt;}
.y50{bottom:915.808000pt;}
.y1e{bottom:921.320000pt;}
.y200{bottom:921.386667pt;}
.y86{bottom:924.938667pt;}
.y85{bottom:927.364000pt;}
.y1c6{bottom:929.277333pt;}
.y4f{bottom:932.545333pt;}
.y15b{bottom:936.132000pt;}
.y1ff{bottom:936.729333pt;}
.y83{bottom:944.101333pt;}
.y1d{bottom:946.425333pt;}
.y84{bottom:948.924000pt;}
.y4e{bottom:949.282667pt;}
.y1fe{bottom:952.072000pt;}
.y1c5{bottom:959.165333pt;}
.y82{bottom:964.824000pt;}
.y4d{bottom:966.020000pt;}
.y1fd{bottom:967.414667pt;}
.y1c{bottom:971.530667pt;}
.y4c{bottom:982.757333pt;}
.y15a{bottom:987.578667pt;}
.y1a{bottom:1010.186667pt;}
.y4b{bottom:1038.548000pt;}
.ha{height:23.209028pt;}
.he{height:25.811318pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h12{height:28.023859pt;}
.h13{height:29.397999pt;}
.h17{height:30.732706pt;}
.hb{height:30.945242pt;}
.h11{height:31.157778pt;}
.h1a{height:32.996352pt;}
.hc{height:34.574438pt;}
.hd{height:34.813542pt;}
.h22{height:35.052646pt;}
.h1b{height:36.662368pt;}
.h16{height:36.873667pt;}
.h18{height:37.553321pt;}
.hf{height:38.415786pt;}
.h10{height:38.681455pt;}
.h6{height:38.947124pt;}
.h15{height:43.171318pt;}
.h4{height:45.271688pt;}
.h14{height:47.309193pt;}
.h19{height:47.314526pt;}
.h1d{height:48.388122pt;}
.h9{height:48.481423pt;}
.h1c{height:56.182575pt;}
.h7{height:69.148877pt;}
.h8{height:69.435802pt;}
.h20{height:74.915124pt;}
.h1f{height:75.129455pt;}
.h21{height:75.134788pt;}
.h1e{height:76.937733pt;}
.h5{height:91.114522pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:189.392721pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:46.426667pt;}
.x1{left:47.621333pt;}
.x2{left:51.298450pt;}
.x7c{left:62.696000pt;}
.x7d{left:73.944000pt;}
.xfd{left:76.309333pt;}
.x7e{left:111.781333pt;}
.xfe{left:191.926667pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x7f{left:223.920000pt;}
.x93{left:226.274667pt;}
.xc4{left:231.464000pt;}
.x37{left:232.742667pt;}
.xc5{left:237.176000pt;}
.x5{left:239.924000pt;}
.x38{left:241.778667pt;}
.x89{left:245.177333pt;}
.xa6{left:246.758667pt;}
.xc6{left:248.449333pt;}
.x11{left:250.204000pt;}
.x62{left:251.592000pt;}
.xeb{left:252.761333pt;}
.xc7{left:254.161333pt;}
.x78{left:255.162667pt;}
.x77{left:256.477333pt;}
.x75{left:257.840000pt;}
.x76{left:259.156000pt;}
.x63{left:262.976000pt;}
.xc8{left:264.810667pt;}
.x61{left:267.984000pt;}
.xd7{left:269.858667pt;}
.x3f{left:271.430667pt;}
.x74{left:272.726667pt;}
.x7{left:273.897333pt;}
.xfc{left:274.988000pt;}
.x40{left:277.480000pt;}
.xd8{left:279.005333pt;}
.x1d{left:280.546667pt;}
.xa7{left:282.429333pt;}
.x10{left:284.336000pt;}
.xba{left:286.314667pt;}
.x50{left:288.246667pt;}
.x16{left:289.913333pt;}
.x22{left:292.622667pt;}
.x12{left:294.052000pt;}
.x17{left:296.556000pt;}
.x14{left:297.757333pt;}
.x54{left:298.738667pt;}
.x13{left:300.694667pt;}
.x8a{left:301.952000pt;}
.xbb{left:302.857333pt;}
.x15{left:304.398667pt;}
.x23{left:305.906667pt;}
.xe3{left:311.109333pt;}
.xbc{left:313.089333pt;}
.xec{left:314.970667pt;}
.xf5{left:319.137333pt;}
.xbd{left:321.402667pt;}
.xa8{left:323.994667pt;}
.xf6{left:327.341333pt;}
.xa9{left:329.308000pt;}
.xf8{left:333.436000pt;}
.xf1{left:336.550667pt;}
.x64{left:338.325333pt;}
.xaa{left:339.453333pt;}
.x69{left:341.845333pt;}
.x65{left:344.376000pt;}
.x80{left:348.296000pt;}
.x6a{left:355.129333pt;}
.x84{left:356.021333pt;}
.xc9{left:357.494667pt;}
.x6b{left:358.516000pt;}
.xab{left:359.665333pt;}
.xd9{left:362.444000pt;}
.x85{left:363.460000pt;}
.xf9{left:364.670667pt;}
.xca{left:368.253333pt;}
.xe4{left:369.857333pt;}
.x6c{left:371.800000pt;}
.x5b{left:374.088000pt;}
.x6d{left:375.186667pt;}
.xcb{left:379.526667pt;}
.xda{left:385.141333pt;}
.x5c{left:387.372000pt;}
.x6e{left:388.470667pt;}
.xcc{left:390.286667pt;}
.xcf{left:392.317333pt;}
.x6f{left:395.245333pt;}
.x41{left:396.524000pt;}
.xbe{left:400.286667pt;}
.xac{left:401.548000pt;}
.x2a{left:403.096000pt;}
.x55{left:404.972000pt;}
.x8{left:406.062667pt;}
.x70{left:408.529333pt;}
.x42{left:409.806667pt;}
.x9{left:411.686667pt;}
.xe1{left:413.034667pt;}
.x20{left:414.216000pt;}
.xe5{left:415.157333pt;}
.x2b{left:416.378667pt;}
.x45{left:418.300000pt;}
.xd0{left:419.716000pt;}
.x21{left:420.857333pt;}
.x2c{left:422.954667pt;}
.x46{left:424.350667pt;}
.x66{left:427.054667pt;}
.xd1{left:428.758667pt;}
.x43{left:429.865333pt;}
.x8b{left:432.125333pt;}
.x7b{left:434.018667pt;}
.x2d{left:436.237333pt;}
.x9a{left:437.278667pt;}
.xbf{left:441.085333pt;}
.x52{left:442.278667pt;}
.x8c{left:443.398667pt;}
.xe8{left:445.746667pt;}
.x9b{left:447.274667pt;}
.x67{left:448.994667pt;}
.x24{left:450.964000pt;}
.xdf{left:451.956000pt;}
.xed{left:453.737333pt;}
.x53{left:455.562667pt;}
.x9c{left:457.237333pt;}
.xe0{left:458.598667pt;}
.x8d{left:459.760000pt;}
.x68{left:462.278667pt;}
.x25{left:464.246667pt;}
.x8e{left:465.472000pt;}
.x9d{left:466.681333pt;}
.xe6{left:467.953333pt;}
.x5d{left:468.994667pt;}
.x94{left:470.314667pt;}
.x9e{left:471.994667pt;}
.xe7{left:474.004000pt;}
.x5e{left:475.045333pt;}
.x81{left:477.342667pt;}
.xad{left:480.201333pt;}
.x95{left:481.588000pt;}
.x30{left:484.430667pt;}
.xae{left:485.514667pt;}
.x47{left:487.388000pt;}
.xdb{left:488.376000pt;}
.x31{left:490.481333pt;}
.x1a{left:494.097333pt;}
.x86{left:495.561333pt;}
.x5f{left:496.518667pt;}
.x96{left:497.949333pt;}
.xdc{left:499.136000pt;}
.x1b{left:500.738667pt;}
.xa{left:503.730667pt;}
.x9f{left:505.160000pt;}
.x97{left:507.265333pt;}
.xb{left:509.356000pt;}
.x48{left:510.904000pt;}
.x60{left:513.057333pt;}
.xaf{left:515.872000pt;}
.x56{left:517.256000pt;}
.x4f{left:520.597333pt;}
.xcd{left:522.312000pt;}
.x49{left:524.188000pt;}
.x2e{left:526.032000pt;}
.xd2{left:527.998667pt;}
.x4a{left:530.962667pt;}
.xce{left:533.585333pt;}
.xa0{left:535.226667pt;}
.x79{left:537.220000pt;}
.x87{left:538.334667pt;}
.x2f{left:539.314667pt;}
.xa1{left:540.540000pt;}
.xc0{left:542.224000pt;}
.x4b{left:544.245333pt;}
.xf7{left:545.296000pt;}
.xf4{left:549.226667pt;}
.x88{left:550.200000pt;}
.xc1{left:552.456000pt;}
.xb0{left:553.510667pt;}
.x51{left:559.702667pt;}
.xc2{left:560.769333pt;}
.x39{left:562.722667pt;}
.xfb{left:566.001333pt;}
.xb1{left:568.970667pt;}
.x34{left:571.261333pt;}
.x4c{left:572.916000pt;}
.xb2{left:574.284000pt;}
.x3a{left:576.006667pt;}
.xa2{left:577.708000pt;}
.x4d{left:578.966667pt;}
.x35{left:584.545333pt;}
.xa3{left:587.704000pt;}
.xb3{left:589.181333pt;}
.x1e{left:591.742667pt;}
.x98{left:593.378667pt;}
.x1f{left:598.385333pt;}
.xc{left:601.400000pt;}
.x99{left:602.680000pt;}
.xd{left:607.025333pt;}
.x44{left:608.248000pt;}
.x3d{left:612.596000pt;}
.xa4{left:613.761333pt;}
.xf3{left:615.929333pt;}
.x3e{left:618.646667pt;}
.x26{left:620.825333pt;}
.x7a{left:624.716000pt;}
.xfa{left:625.806667pt;}
.x102{left:628.769333pt;}
.xb4{left:630.746667pt;}
.x32{left:632.928000pt;}
.x27{left:634.109333pt;}
.x82{left:635.101333pt;}
.xb5{left:636.060000pt;}
.x33{left:638.977333pt;}
.xd3{left:641.378667pt;}
.x83{left:642.540000pt;}
.x57{left:643.914667pt;}
.x8f{left:645.166667pt;}
.xb6{left:646.206667pt;}
.x58{left:649.965333pt;}
.xb7{left:651.520000pt;}
.xd4{left:652.529333pt;}
.x90{left:656.417333pt;}
.xd5{left:658.241333pt;}
.xb8{left:661.104000pt;}
.x91{left:662.129333pt;}
.xf2{left:664.452000pt;}
.x100{left:665.404000pt;}
.xb9{left:666.417333pt;}
.xdd{left:667.845333pt;}
.xd6{left:668.776000pt;}
.xc3{left:672.138667pt;}
.x71{left:673.498667pt;}
.x59{left:674.686667pt;}
.xde{left:676.993333pt;}
.x92{left:678.469333pt;}
.x5a{left:680.736000pt;}
.x18{left:683.692000pt;}
.x3b{left:685.074667pt;}
.x101{left:689.314667pt;}
.x19{left:690.334667pt;}
.xff{left:692.136000pt;}
.xee{left:693.552000pt;}
.xe9{left:694.618667pt;}
.x4e{left:695.897333pt;}
.x36{left:697.084000pt;}
.xef{left:699.601333pt;}
.xea{left:700.668000pt;}
.xe2{left:702.364000pt;}
.xf0{left:706.604000pt;}
.x73{left:712.412000pt;}
.x3c{left:723.916000pt;}
.xe{left:726.413333pt;}
.x28{left:727.905333pt;}
.xf{left:732.037333pt;}
.x1c{left:739.546667pt;}
.x29{left:741.189333pt;}
.x72{left:742.517333pt;}
.xa5{left:744.190667pt;}
}




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