
    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_e991294894889c69cde43864.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_25374f9c2c562302ddf938cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_27247eb008a1c98022dbc5a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.181000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_7e3440f8fe8e7bc20b8054cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.191000;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_ba3241b85117bcc67b832f34.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.550000;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_7cde70c926b485b148378cc0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5a3312bb447b531b4acd19c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.665000;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);}
.m1d{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);}
.m10{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);}
.mf{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);}
.m24{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);}
.m26{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);}
.m4{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);}
.m25{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);}
.m18{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m8{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);}
.mc{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);}
.m14{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);}
.m27{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);}
.m6{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);}
.m22{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);}
.m15{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);}
.m1e{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);}
.m1a{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);}
.m7{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);}
.md{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);}
.m3{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);}
.m5{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);}
.m1f{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);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m11{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);}
.m21{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);}
.m9{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);}
.m1c{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);}
.m12{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);}
.ma{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);}
.v8{vertical-align:-21.702000px;}
.v2{vertical-align:-17.358000px;}
.v6{vertical-align:-1.860000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.320000px;}
.v7{vertical-align:15.504000px;}
.v3{vertical-align:17.358000px;}
.v5{vertical-align:18.684000px;}
.v1{vertical-align:21.702000px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000612px;}
.ls1d{letter-spacing:0.001133px;}
.ls27{letter-spacing:0.002683px;}
.ls1e{letter-spacing:0.003178px;}
.ls23{letter-spacing:0.004800px;}
.ls10{letter-spacing:0.428370px;}
.lsa{letter-spacing:0.503764px;}
.ls9{letter-spacing:0.542815px;}
.lsb{letter-spacing:0.548815px;}
.ls8{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls11{letter-spacing:2.989200px;}
.lse{letter-spacing:3.553200px;}
.ls3{letter-spacing:10.317300px;}
.ls6{letter-spacing:11.954850px;}
.ls25{letter-spacing:13.249811px;}
.ls26{letter-spacing:13.315514px;}
.ls22{letter-spacing:13.448400px;}
.ls2b{letter-spacing:13.454400px;}
.ls2a{letter-spacing:13.541300px;}
.ls24{letter-spacing:13.544376px;}
.ls2d{letter-spacing:13.586911px;}
.ls2e{letter-spacing:13.626388px;}
.ls20{letter-spacing:13.825488px;}
.lsd{letter-spacing:15.657483px;}
.lsf{letter-spacing:15.688200px;}
.ls16{letter-spacing:15.694200px;}
.ls1f{letter-spacing:17.585512px;}
.ls1{letter-spacing:17.935200px;}
.ls28{letter-spacing:19.291576px;}
.ls21{letter-spacing:19.767486px;}
.ls2c{letter-spacing:19.844518px;}
.ls29{letter-spacing:22.592400px;}
.ls0{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls12{letter-spacing:109.787740px;}
.ls15{letter-spacing:210.684701px;}
.ls14{letter-spacing:222.146227px;}
.ls13{letter-spacing:232.013674px;}
.ls17{letter-spacing:371.129740px;}
.ls19{letter-spacing:372.473674px;}
.ls18{letter-spacing:384.431674px;}
.ls1c{letter-spacing:393.107674px;}
.ls1b{letter-spacing:393.179674px;}
.ls1a{letter-spacing:467.783674px;}
.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;}
}
.ws83{word-spacing:-14.943900px;}
.ws9d{word-spacing:-13.449600px;}
.ws19{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.wsd{word-spacing:-10.460700px;}
.ws76{word-spacing:-8.966400px;}
.ws5d{word-spacing:-3.347434px;}
.ws89{word-spacing:-2.869229px;}
.ws8a{word-spacing:-2.809453px;}
.ws4b{word-spacing:-2.689920px;}
.ws71{word-spacing:-2.689902px;}
.ws1c{word-spacing:-2.528525px;}
.ws5f{word-spacing:-2.391024px;}
.ws3e{word-spacing:-2.032370px;}
.ws57{word-spacing:-1.972595px;}
.ws8{word-spacing:-1.908367px;}
.ws1b{word-spacing:-1.882944px;}
.ws93{word-spacing:-1.793268px;}
.ws72{word-spacing:-1.733492px;}
.ws20{word-spacing:-1.613952px;}
.ws30{word-spacing:-1.554166px;}
.ws9a{word-spacing:-1.494390px;}
.wsb9{word-spacing:-1.483690px;}
.wsb8{word-spacing:-1.475395px;}
.wsba{word-spacing:-1.458277px;}
.wsb6{word-spacing:-1.458187px;}
.wsa8{word-spacing:-1.434614px;}
.ws8e{word-spacing:-1.344960px;}
.ws7{word-spacing:-1.322630px;}
.wsb7{word-spacing:-1.101238px;}
.wsc1{word-spacing:-1.022170px;}
.ws32{word-spacing:-1.016185px;}
.ws43{word-spacing:-0.836858px;}
.wsa9{word-spacing:-0.777083px;}
.ws2c{word-spacing:-0.717307px;}
.wsab{word-spacing:-0.657532px;}
.wse3{word-spacing:-0.484186px;}
.ws55{word-spacing:-0.478205px;}
.ws51{word-spacing:-0.418429px;}
.wsbb{word-spacing:-0.376589px;}
.ws3a{word-spacing:-0.358654px;}
.ws8f{word-spacing:-0.322790px;}
.ws44{word-spacing:-0.298878px;}
.wsa{word-spacing:-0.292900px;}
.ws77{word-spacing:-0.286924px;}
.ws91{word-spacing:-0.270757px;}
.ws1d{word-spacing:-0.268992px;}
.ws92{word-spacing:-0.256493px;}
.ws36{word-spacing:-0.239102px;}
.ws4a{word-spacing:-0.215194px;}
.wsc{word-spacing:-0.182861px;}
.ws26{word-spacing:-0.179327px;}
.ws6c{word-spacing:-0.164456px;}
.ws7c{word-spacing:-0.161395px;}
.ws6b{word-spacing:-0.143824px;}
.ws2f{word-spacing:-0.119551px;}
.ws21{word-spacing:-0.107597px;}
.ws38{word-spacing:-0.059776px;}
.ws23{word-spacing:-0.053798px;}
.wscc{word-spacing:-0.009302px;}
.wsdb{word-spacing:-0.008045px;}
.wsca{word-spacing:-0.007834px;}
.ws1{word-spacing:-0.004256px;}
.ws29{word-spacing:-0.003082px;}
.wsc8{word-spacing:-0.002045px;}
.ws6{word-spacing:-0.002008px;}
.wsd1{word-spacing:-0.001910px;}
.wscb{word-spacing:-0.001834px;}
.ws0{word-spacing:0.000000px;}
.wse5{word-spacing:0.000106px;}
.wsdc{word-spacing:0.000288px;}
.ws5b{word-spacing:0.000900px;}
.wsd2{word-spacing:0.001709px;}
.wsd6{word-spacing:0.002294px;}
.ws6d{word-spacing:0.019448px;}
.ws67{word-spacing:0.040145px;}
.ws73{word-spacing:0.053798px;}
.ws39{word-spacing:0.059776px;}
.wsd4{word-spacing:0.071768px;}
.ws68{word-spacing:0.104058px;}
.ws24{word-spacing:0.107597px;}
.ws3d{word-spacing:0.119551px;}
.ws5e{word-spacing:0.131966px;}
.ws75{word-spacing:0.143462px;}
.wsbd{word-spacing:0.161395px;}
.ws2d{word-spacing:0.179327px;}
.wsf{word-spacing:0.209214px;}
.ws1f{word-spacing:0.215194px;}
.ws31{word-spacing:0.239102px;}
.ws1a{word-spacing:0.268992px;}
.ws11{word-spacing:0.292900px;}
.ws33{word-spacing:0.298878px;}
.ws52{word-spacing:0.358654px;}
.ws58{word-spacing:0.418429px;}
.ws62{word-spacing:0.478205px;}
.ws2a{word-spacing:0.537980px;}
.ws65{word-spacing:0.568500px;}
.wsc9{word-spacing:0.591782px;}
.ws7b{word-spacing:0.597756px;}
.ws3f{word-spacing:0.657532px;}
.ws3c{word-spacing:0.717307px;}
.ws54{word-spacing:0.777083px;}
.ws47{word-spacing:0.806976px;}
.ws7a{word-spacing:0.836858px;}
.wsb0{word-spacing:0.896634px;}
.wsbf{word-spacing:0.968371px;}
.wsae{word-spacing:1.016185px;}
.ws97{word-spacing:1.075961px;}
.wsd0{word-spacing:1.075968px;}
.ws46{word-spacing:1.129766px;}
.wsc5{word-spacing:1.237363px;}
.ws59{word-spacing:1.374839px;}
.ws2e{word-spacing:1.434614px;}
.ws94{word-spacing:1.494390px;}
.wsbe{word-spacing:1.560154px;}
.wsce{word-spacing:1.613952px;}
.ws95{word-spacing:1.673717px;}
.ws96{word-spacing:1.708562px;}
.ws34{word-spacing:1.733492px;}
.ws35{word-spacing:1.793268px;}
.ws22{word-spacing:1.829146px;}
.ws50{word-spacing:1.853044px;}
.ws61{word-spacing:1.912819px;}
.wsb2{word-spacing:1.972595px;}
.wsda{word-spacing:1.990541px;}
.ws10{word-spacing:2.008454px;}
.ws27{word-spacing:2.032370px;}
.ws99{word-spacing:2.048155px;}
.ws98{word-spacing:2.056009px;}
.wsa7{word-spacing:2.092146px;}
.wsaa{word-spacing:2.151922px;}
.wsad{word-spacing:2.211697px;}
.ws37{word-spacing:2.271473px;}
.wsa4{word-spacing:2.331248px;}
.ws90{word-spacing:2.391024px;}
.ws42{word-spacing:2.450800px;}
.wsb{word-spacing:2.452540px;}
.ws86{word-spacing:2.510575px;}
.ws49{word-spacing:2.528525px;}
.ws53{word-spacing:2.630126px;}
.ws6a{word-spacing:2.749678px;}
.ws48{word-spacing:2.851315px;}
.wsa3{word-spacing:2.869229px;}
.ws74{word-spacing:2.869236px;}
.wse4{word-spacing:2.905114px;}
.ws5a{word-spacing:2.929004px;}
.wsd7{word-spacing:2.930961px;}
.wsd8{word-spacing:2.958912px;}
.wsc3{word-spacing:3.012710px;}
.ws56{word-spacing:3.048556px;}
.wse2{word-spacing:3.066509px;}
.wscf{word-spacing:3.120307px;}
.wsc7{word-spacing:3.220387px;}
.wsd3{word-spacing:3.222384px;}
.wse1{word-spacing:3.223258px;}
.wsdf{word-spacing:3.223469px;}
.wsdd{word-spacing:3.227904px;}
.wsc2{word-spacing:3.229882px;}
.wsc4{word-spacing:3.281702px;}
.ws63{word-spacing:3.287658px;}
.ws40{word-spacing:3.347434px;}
.ws78{word-spacing:3.407209px;}
.ws3b{word-spacing:3.466985px;}
.ws8c{word-spacing:3.526760px;}
.ws1e{word-spacing:3.550694px;}
.ws25{word-spacing:3.586536px;}
.wsb4{word-spacing:3.646312px;}
.ws85{word-spacing:3.706087px;}
.ws2b{word-spacing:3.765863px;}
.ws45{word-spacing:3.825638px;}
.ws28{word-spacing:3.885414px;}
.wsac{word-spacing:3.927283px;}
.ws8b{word-spacing:3.945190px;}
.ws70{word-spacing:4.244068px;}
.wsc0{word-spacing:4.357670px;}
.wsb1{word-spacing:4.423394px;}
.wsb3{word-spacing:4.483170px;}
.wscd{word-spacing:4.626662px;}
.ws64{word-spacing:4.662497px;}
.wsa1{word-spacing:4.841856px;}
.ws69{word-spacing:4.961375px;}
.wsd9{word-spacing:5.057050px;}
.ws60{word-spacing:5.260253px;}
.ws6f{word-spacing:5.355569px;}
.ws6e{word-spacing:5.379804px;}
.ws66{word-spacing:5.678682px;}
.ws79{word-spacing:5.738458px;}
.wsaf{word-spacing:5.977560px;}
.ws84{word-spacing:6.037336px;}
.ws17{word-spacing:6.067206px;}
.ws18{word-spacing:6.150892px;}
.ws9e{word-spacing:6.294413px;}
.wsa0{word-spacing:6.296641px;}
.wsb5{word-spacing:6.455765px;}
.ws8d{word-spacing:6.694867px;}
.ws41{word-spacing:7.352399px;}
.ws88{word-spacing:7.471950px;}
.ws87{word-spacing:7.531726px;}
.wsbc{word-spacing:7.585574px;}
.wsa6{word-spacing:7.591501px;}
.wsa5{word-spacing:7.651277px;}
.ws5c{word-spacing:7.770828px;}
.ws9c{word-spacing:8.553946px;}
.ws15{word-spacing:8.661460px;}
.ws9b{word-spacing:8.984333px;}
.wsd5{word-spacing:9.139171px;}
.wse6{word-spacing:9.142397px;}
.wsc6{word-spacing:9.143770px;}
.wsde{word-spacing:9.145478px;}
.wse{word-spacing:10.167800px;}
.wse0{word-spacing:10.167898px;}
.ws9{word-spacing:15.483541px;}
.ws12{word-spacing:16.142252px;}
.ws13{word-spacing:16.151321px;}
.ws14{word-spacing:17.699504px;}
.wsa2{word-spacing:18.237658px;}
.ws9f{word-spacing:22.649126px;}
.ws16{word-spacing:27.448877px;}
.ws3{word-spacing:46.053600px;}
.ws5{word-spacing:46.059600px;}
.ws4{word-spacing:46.061400px;}
.ws4d{word-spacing:56.273126px;}
.ws4e{word-spacing:103.561920px;}
.ws4f{word-spacing:123.790118px;}
.ws7e{word-spacing:366.710861px;}
.ws81{word-spacing:375.392861px;}
.ws80{word-spacing:375.458861px;}
.ws82{word-spacing:479.090401px;}
.ws4c{word-spacing:508.502477px;}
.ws7d{word-spacing:523.969667px;}
.ws7f{word-spacing:528.966172px;}
._40{margin-left:-24.693466px;}
._2{margin-left:-11.943245px;}
._0{margin-left:-7.962163px;}
._14{margin-left:-6.575316px;}
._a{margin-left:-5.308087px;}
._7{margin-left:-4.033248px;}
._9{margin-left:-2.994056px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._3{width:2.994056px;}
._3f{width:6.832397px;}
._3c{width:12.130270px;}
._8{width:13.154978px;}
._11{width:14.822586px;}
._c{width:16.041062px;}
._b{width:17.662689px;}
._15{width:18.829314px;}
._10{width:19.905275px;}
._25{width:21.280114px;}
._e{width:22.582138px;}
._3d{width:23.675671px;}
._f{width:25.225303px;}
._34{width:26.420815px;}
._d{width:27.759974px;}
._33{width:29.170493px;}
._26{width:31.031104px;}
._1{width:33.355008px;}
._35{width:34.908950px;}
._37{width:37.060872px;}
._38{width:38.217215px;}
._16{width:41.125613px;}
._3b{width:48.416850px;}
._3e{width:50.207603px;}
._4{width:54.423634px;}
._3a{width:61.868160px;}
._19{width:84.732480px;}
._39{width:88.767360px;}
._1a{width:98.558669px;}
._1d{width:103.615718px;}
._22{width:123.736320px;}
._1b{width:125.268305px;}
._1e{width:127.609805px;}
._21{width:130.461120px;}
._1f{width:132.935846px;}
._1c{width:141.059405px;}
._23{width:167.958605px;}
._18{width:173.015654px;}
._20{width:174.683405px;}
._24{width:181.354406px;}
._27{width:215.575265px;}
._31{width:276.644063px;}
._2d{width:285.376994px;}
._2a{width:306.864790px;}
._29{width:317.672246px;}
._2b{width:320.684944px;}
._28{width:328.479701px;}
._2e{width:445.687992px;}
._2f{width:487.817941px;}
._30{width:513.880168px;}
._32{width:544.676634px;}
._17{width:565.313587px;}
._2c{width:588.542170px;}
._12{width:732.659413px;}
._36{width:2408.624700px;}
._13{width:2432.534700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fs7{font-size:35.865600px;}
.fsd{font-size:37.371600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsb{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:62.286600px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.425340px;}
.yb{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y50{bottom:31.890000px;}
.y120{bottom:89.715000px;}
.y15a{bottom:94.242000px;}
.y11e{bottom:94.722000px;}
.y1ab{bottom:96.313500px;}
.ya0{bottom:98.946000px;}
.y11f{bottom:100.839000px;}
.ye1{bottom:101.764500px;}
.y28{bottom:102.823500px;}
.y4f{bottom:103.621500px;}
.y11c{bottom:108.373500px;}
.y11d{bottom:108.544500px;}
.y159{bottom:113.071500px;}
.y11a{bottom:113.551500px;}
.y1aa{bottom:115.143000px;}
.y203{bottom:116.334000px;}
.y9f{bottom:117.775500px;}
.y1ce{bottom:118.800000px;}
.y11b{bottom:119.668500px;}
.ye0{bottom:120.594000px;}
.y27{bottom:120.711000px;}
.y4e{bottom:122.449500px;}
.y161{bottom:122.911500px;}
.y119{bottom:127.374000px;}
.y158{bottom:131.901000px;}
.y117{bottom:132.381000px;}
.y202{bottom:133.594500px;}
.y1a9{bottom:133.971000px;}
.y9e{bottom:136.605000px;}
.y118{bottom:138.498000px;}
.y26{bottom:138.600000px;}
.ydf{bottom:139.422000px;}
.y4d{bottom:141.279000px;}
.y160{bottom:142.144500px;}
.y1cd{bottom:145.341000px;}
.y157{bottom:150.730500px;}
.y201{bottom:150.855000px;}
.y116{bottom:151.210500px;}
.y1a8{bottom:152.800500px;}
.y9c{bottom:155.434500px;}
.y25{bottom:156.487500px;}
.yde{bottom:158.251500px;}
.y189{bottom:158.700000px;}
.y9d{bottom:160.858500px;}
.y15e{bottom:161.377500px;}
.y4c{bottom:164.592000px;}
.y15f{bottom:166.260000px;}
.y200{bottom:168.115500px;}
.y156{bottom:169.560000px;}
.y115{bottom:170.040000px;}
.y1a7{bottom:171.630000px;}
.y1cc{bottom:171.882000px;}
.y9a{bottom:174.264000px;}
.y24{bottom:174.375000px;}
.ydd{bottom:177.081000px;}
.y188{bottom:177.529500px;}
.y9b{bottom:179.688000px;}
.y15c{bottom:180.610500px;}
.y1ff{bottom:185.376000px;}
.y15d{bottom:185.493000px;}
.y155{bottom:188.389500px;}
.y114{bottom:188.869500px;}
.y1a6{bottom:190.459500px;}
.y23{bottom:192.264000px;}
.y99{bottom:193.093500px;}
.ydc{bottom:195.910500px;}
.y187{bottom:196.359000px;}
.y1cb{bottom:198.421500px;}
.y15b{bottom:199.843500px;}
.y83{bottom:201.721500px;}
.y1fe{bottom:202.636500px;}
.y154{bottom:207.219000px;}
.y113{bottom:207.699000px;}
.y1a5{bottom:209.289000px;}
.y22{bottom:210.151500px;}
.y98{bottom:211.923000px;}
.yda{bottom:214.740000px;}
.y186{bottom:215.188500px;}
.y1fd{bottom:219.895500px;}
.ydb{bottom:220.165500px;}
.y82{bottom:220.551000px;}
.y235{bottom:224.379000px;}
.y1ca{bottom:224.962500px;}
.y112{bottom:226.527000px;}
.y21{bottom:228.039000px;}
.y1a4{bottom:228.118500px;}
.y14d{bottom:229.882500px;}
.y97{bottom:230.751000px;}
.yd8{bottom:233.569500px;}
.y185{bottom:234.018000px;}
.y1fc{bottom:237.156000px;}
.yd9{bottom:238.995000px;}
.y81{bottom:239.380500px;}
.y4b{bottom:239.742000px;}
.y153{bottom:240.784500px;}
.y234{bottom:241.639500px;}
.y1c9{bottom:242.536500px;}
.y111{bottom:245.356500px;}
.y1a3{bottom:246.948000px;}
.y14c{bottom:248.712000px;}
.y96{bottom:249.580500px;}
.yd7{bottom:252.399000px;}
.y184{bottom:252.847500px;}
.y1fb{bottom:254.416500px;}
.y80{bottom:258.210000px;}
.y233{bottom:258.900000px;}
.y4a{bottom:259.200000px;}
.y152{bottom:260.017500px;}
.y1c8{bottom:260.110500px;}
.y110{bottom:264.186000px;}
.y1a2{bottom:265.777500px;}
.y14b{bottom:267.541500px;}
.y95{bottom:268.410000px;}
.yd6{bottom:268.612500px;}
.yd5{bottom:271.228500px;}
.y183{bottom:271.677000px;}
.y232{bottom:276.160500px;}
.y7f{bottom:277.039500px;}
.y1c7{bottom:277.684500px;}
.y151{bottom:279.250500px;}
.y10f{bottom:283.015500px;}
.y1a1{bottom:284.607000px;}
.y14a{bottom:286.371000px;}
.y94{bottom:287.239500px;}
.y1fa{bottom:288.937500px;}
.yd3{bottom:290.058000px;}
.y182{bottom:290.506500px;}
.y231{bottom:293.421000px;}
.yd4{bottom:295.483500px;}
.y7e{bottom:295.869000px;}
.y49{bottom:296.589000px;}
.y150{bottom:298.483500px;}
.y1a0{bottom:303.436500px;}
.y1c6{bottom:304.225500px;}
.y149{bottom:305.200500px;}
.y93{bottom:306.069000px;}
.y1f9{bottom:306.198000px;}
.y20{bottom:307.299000px;}
.yd1{bottom:308.887500px;}
.y181{bottom:309.336000px;}
.y230{bottom:310.681500px;}
.yd2{bottom:314.313000px;}
.y7d{bottom:314.698500px;}
.y48{bottom:316.047000px;}
.y14f{bottom:317.716500px;}
.y10e{bottom:319.303500px;}
.y1c5{bottom:321.799500px;}
.y19e{bottom:322.266000px;}
.y1f8{bottom:323.458500px;}
.y148{bottom:324.030000px;}
.y92{bottom:324.898500px;}
.y1f{bottom:325.186500px;}
.y19f{bottom:327.691500px;}
.ycf{bottom:327.717000px;}
.y22f{bottom:327.940500px;}
.y180{bottom:328.165500px;}
.yd0{bottom:333.142500px;}
.y7c{bottom:333.528000px;}
.y10a{bottom:333.966000px;}
.y109{bottom:334.099500px;}
.y10c{bottom:334.431000px;}
.y47{bottom:335.503500px;}
.y14e{bottom:336.949500px;}
.y10b{bottom:338.305500px;}
.y10d{bottom:338.770500px;}
.y1c4{bottom:339.373500px;}
.y1f7{bottom:340.719000px;}
.y19c{bottom:341.095500px;}
.y147{bottom:342.859500px;}
.y1e{bottom:343.074000px;}
.y91{bottom:343.728000px;}
.y22e{bottom:345.201000px;}
.y19d{bottom:346.519500px;}
.yce{bottom:346.546500px;}
.y17f{bottom:346.995000px;}
.y7b{bottom:352.356000px;}
.y46{bottom:354.960000px;}
.y108{bottom:356.593500px;}
.y1c3{bottom:356.947500px;}
.y1f6{bottom:357.978000px;}
.y19b{bottom:359.925000px;}
.y1d{bottom:360.963000px;}
.y146{bottom:361.689000px;}
.y22d{bottom:362.461500px;}
.ycd{bottom:365.376000px;}
.y17e{bottom:365.824500px;}
.y7a{bottom:371.185500px;}
.y45{bottom:374.418000px;}
.y1c2{bottom:374.521500px;}
.y1f5{bottom:375.238500px;}
.y199{bottom:378.754500px;}
.y22c{bottom:379.722000px;}
.y90{bottom:380.224500px;}
.y145{bottom:380.518500px;}
.y19a{bottom:384.178500px;}
.ycc{bottom:384.205500px;}
.y17d{bottom:384.654000px;}
.y107{bottom:386.643000px;}
.y1c1{bottom:392.095500px;}
.y1f4{bottom:392.499000px;}
.y44{bottom:393.874500px;}
.y79{bottom:394.498500px;}
.y8f{bottom:396.663000px;}
.y22b{bottom:396.982500px;}
.y198{bottom:397.584000px;}
.y1c{bottom:399.024000px;}
.y144{bottom:399.348000px;}
.ycb{bottom:403.035000px;}
.y17c{bottom:403.483500px;}
.y106{bottom:405.876000px;}
.y1c0{bottom:409.669500px;}
.y1f3{bottom:409.759500px;}
.y43{bottom:413.331000px;}
.y22a{bottom:414.243000px;}
.y78{bottom:414.673500px;}
.y197{bottom:416.413500px;}
.y1b{bottom:416.913000px;}
.y143{bottom:418.177500px;}
.y8e{bottom:420.601500px;}
.yca{bottom:421.864500px;}
.y17b{bottom:422.313000px;}
.y105{bottom:425.109000px;}
.y1f2{bottom:427.020000px;}
.y229{bottom:431.503500px;}
.y42{bottom:432.789000px;}
.y1a{bottom:434.800500px;}
.y196{bottom:435.243000px;}
.y142{bottom:437.007000px;}
.yc9{bottom:440.694000px;}
.y17a{bottom:441.142500px;}
.y8d{bottom:444.243000px;}
.y1f1{bottom:444.280500px;}
.y1bf{bottom:445.177500px;}
.y77{bottom:448.297500px;}
.y228{bottom:448.764000px;}
.y41{bottom:452.245500px;}
.y195{bottom:454.072500px;}
.y141{bottom:455.836500px;}
.yc8{bottom:459.523500px;}
.y179{bottom:459.972000px;}
.y1f0{bottom:461.541000px;}
.y104{bottom:462.213000px;}
.y1be{bottom:464.007000px;}
.y227{bottom:466.024500px;}
.y76{bottom:467.127000px;}
.y19{bottom:470.622000px;}
.y40{bottom:471.703500px;}
.y194{bottom:472.902000px;}
.y140{bottom:474.666000px;}
.y8c{bottom:475.861500px;}
.yc7{bottom:478.353000px;}
.y178{bottom:478.801500px;}
.y103{bottom:481.042500px;}
.y1bd{bottom:482.836500px;}
.y226{bottom:483.283500px;}
.y75{bottom:485.956500px;}
.y18{bottom:488.509500px;}
.y3f{bottom:491.160000px;}
.y193{bottom:491.731500px;}
.y13f{bottom:493.495500px;}
.y8b{bottom:495.094500px;}
.y1ef{bottom:496.062000px;}
.yc6{bottom:497.182500px;}
.y177{bottom:497.631000px;}
.y102{bottom:499.872000px;}
.y225{bottom:500.544000px;}
.y1bc{bottom:501.666000px;}
.y74{bottom:504.786000px;}
.y192{bottom:510.561000px;}
.y3e{bottom:510.616500px;}
.y13e{bottom:512.325000px;}
.y1ee{bottom:513.321000px;}
.y89{bottom:514.327500px;}
.yc5{bottom:516.012000px;}
.y176{bottom:516.460500px;}
.y224{bottom:517.804500px;}
.y101{bottom:518.701500px;}
.y8a{bottom:519.210000px;}
.y1bb{bottom:520.495500px;}
.y73{bottom:523.615500px;}
.y17{bottom:524.329500px;}
.y191{bottom:529.390500px;}
.y3d{bottom:530.074500px;}
.y1ed{bottom:530.581500px;}
.y13d{bottom:531.154500px;}
.y88{bottom:533.560500px;}
.yc4{bottom:534.841500px;}
.y223{bottom:535.065000px;}
.y175{bottom:535.290000px;}
.y100{bottom:537.531000px;}
.y1ba{bottom:539.323500px;}
.y16{bottom:542.218500px;}
.y72{bottom:542.445000px;}
.y1ec{bottom:547.842000px;}
.y190{bottom:548.220000px;}
.y3c{bottom:549.531000px;}
.y13c{bottom:549.984000px;}
.y222{bottom:552.325500px;}
.y87{bottom:552.793500px;}
.yc3{bottom:553.671000px;}
.y174{bottom:554.118000px;}
.yff{bottom:556.360500px;}
.y1b9{bottom:558.153000px;}
.y15{bottom:560.106000px;}
.y71{bottom:561.274500px;}
.y1eb{bottom:565.102500px;}
.y18f{bottom:567.049500px;}
.y13b{bottom:568.812000px;}
.y3b{bottom:568.987500px;}
.y221{bottom:569.586000px;}
.yc2{bottom:572.500500px;}
.y173{bottom:572.947500px;}
.y1b8{bottom:576.982500px;}
.y14{bottom:577.993500px;}
.yfe{bottom:579.673500px;}
.y70{bottom:580.104000px;}
.y1ea{bottom:582.363000px;}
.y86{bottom:582.487500px;}
.y18e{bottom:585.879000px;}
.y220{bottom:586.846500px;}
.y13a{bottom:587.641500px;}
.y3a{bottom:588.445500px;}
.yc1{bottom:591.330000px;}
.y172{bottom:591.777000px;}
.y1b7{bottom:595.812000px;}
.y13{bottom:595.882500px;}
.y6f{bottom:598.932000px;}
.y1e9{bottom:599.623500px;}
.yfd{bottom:599.847000px;}
.y85{bottom:601.720500px;}
.y21f{bottom:604.107000px;}
.y18d{bottom:604.708500px;}
.y139{bottom:606.471000px;}
.yc0{bottom:610.159500px;}
.y171{bottom:610.606500px;}
.y12{bottom:613.770000px;}
.y1b6{bottom:614.641500px;}
.y1e8{bottom:616.884000px;}
.y6e{bottom:617.761500px;}
.y84{bottom:620.953500px;}
.y21e{bottom:621.366000px;}
.y18c{bottom:623.538000px;}
.y138{bottom:625.300500px;}
.y39{bottom:626.832000px;}
.ybf{bottom:628.989000px;}
.y170{bottom:629.436000px;}
.y11{bottom:631.657500px;}
.yfc{bottom:633.471000px;}
.y1e7{bottom:634.144500px;}
.y6d{bottom:636.591000px;}
.y21d{bottom:638.626500px;}
.y38{bottom:642.972000px;}
.y137{bottom:644.130000px;}
.ybe{bottom:647.817000px;}
.y16f{bottom:648.265500px;}
.y10{bottom:649.546500px;}
.y1e6{bottom:651.403500px;}
.yfb{bottom:652.300500px;}
.y6c{bottom:655.420500px;}
.y21c{bottom:655.887000px;}
.y1b5{bottom:656.784000px;}
.y18b{bottom:657.103500px;}
.y136{bottom:662.959500px;}
.y37{bottom:663.451500px;}
.ybd{bottom:666.646500px;}
.y16e{bottom:667.095000px;}
.yf{bottom:667.434000px;}
.y1e5{bottom:668.664000px;}
.yfa{bottom:671.130000px;}
.y21b{bottom:673.147500px;}
.y6b{bottom:674.250000px;}
.y36{bottom:675.250500px;}
.y18a{bottom:676.336500px;}
.y135{bottom:681.789000px;}
.ye{bottom:685.321500px;}
.ybc{bottom:685.476000px;}
.y16d{bottom:685.924500px;}
.yf9{bottom:689.959500px;}
.y1b4{bottom:690.408000px;}
.y6a{bottom:693.079500px;}
.y35{bottom:695.730000px;}
.y1e4{bottom:703.185000px;}
.yd{bottom:703.210500px;}
.ybb{bottom:704.305500px;}
.y16c{bottom:704.754000px;}
.y134{bottom:705.102000px;}
.y34{bottom:707.530500px;}
.y21a{bottom:707.668500px;}
.yf8{bottom:708.789000px;}
.y1b3{bottom:709.237500px;}
.y69{bottom:711.909000px;}
.y1e3{bottom:720.445500px;}
.yba{bottom:723.135000px;}
.y16b{bottom:723.583500px;}
.y219{bottom:724.929000px;}
.ya{bottom:725.581464px;}
.yf7{bottom:727.618500px;}
.y33{bottom:728.008500px;}
.y1b2{bottom:728.067000px;}
.y68{bottom:730.738500px;}
.y1e2{bottom:737.706000px;}
.y32{bottom:739.809000px;}
.yb9{bottom:741.964500px;}
.y218{bottom:742.189500px;}
.y16a{bottom:742.413000px;}
.yf6{bottom:746.448000px;}
.y133{bottom:746.754000px;}
.y1b1{bottom:746.896500px;}
.y67{bottom:749.568000px;}
.y1e1{bottom:754.966500px;}
.y217{bottom:759.450000px;}
.y31{bottom:760.288500px;}
.yb8{bottom:760.794000px;}
.y169{bottom:761.242500px;}
.y132{bottom:761.415000px;}
.yf5{bottom:765.277500px;}
.y1af{bottom:765.726000px;}
.y66{bottom:768.397500px;}
.y1b0{bottom:771.150000px;}
.y30{bottom:772.087500px;}
.y1e0{bottom:772.227000px;}
.y131{bottom:776.541000px;}
.y216{bottom:776.709000px;}
.yb7{bottom:779.623500px;}
.y168{bottom:780.072000px;}
.yf4{bottom:784.107000px;}
.y1ae{bottom:784.555500px;}
.y65{bottom:787.227000px;}
.y1df{bottom:789.487500px;}
.y130{bottom:791.667000px;}
.y2f{bottom:792.567000px;}
.y215{bottom:793.969500px;}
.yb6{bottom:798.453000px;}
.y167{bottom:798.901500px;}
.y1ad{bottom:803.385000px;}
.y2e{bottom:804.367500px;}
.y63{bottom:806.056500px;}
.y12f{bottom:806.329500px;}
.y1de{bottom:806.746500px;}
.yf3{bottom:807.420000px;}
.y214{bottom:811.230000px;}
.y64{bottom:811.480500px;}
.yb5{bottom:817.282500px;}
.y166{bottom:817.731000px;}
.y12e{bottom:820.990500px;}
.y1ac{bottom:822.214500px;}
.y1dd{bottom:824.007000px;}
.y2d{bottom:824.847000px;}
.y61{bottom:824.886000px;}
.y213{bottom:828.490500px;}
.y62{bottom:830.310000px;}
.yb4{bottom:836.112000px;}
.y165{bottom:836.560500px;}
.y2c{bottom:836.646000px;}
.yf2{bottom:841.044000px;}
.y1dc{bottom:841.267500px;}
.y12d{bottom:843.153000px;}
.y60{bottom:843.715500px;}
.y212{bottom:845.751000px;}
.yb3{bottom:854.941500px;}
.y164{bottom:855.390000px;}
.y2b{bottom:857.125500px;}
.y1db{bottom:858.528000px;}
.yf1{bottom:859.873500px;}
.y5f{bottom:862.545000px;}
.y211{bottom:863.011500px;}
.y12c{bottom:863.386500px;}
.y2a{bottom:868.926000px;}
.y163{bottom:874.219500px;}
.y1da{bottom:875.788500px;}
.y12b{bottom:878.049000px;}
.yb2{bottom:878.254500px;}
.yf0{bottom:878.703000px;}
.y210{bottom:880.272000px;}
.y5e{bottom:881.374500px;}
.y29{bottom:889.404000px;}
.y162{bottom:893.049000px;}
.y12a{bottom:893.175000px;}
.yef{bottom:897.532500px;}
.y5d{bottom:900.204000px;}
.y129{bottom:908.301000px;}
.y1d9{bottom:910.309500px;}
.yb1{bottom:911.878500px;}
.y20e{bottom:914.791500px;}
.y20f{bottom:914.793000px;}
.yee{bottom:916.362000px;}
.y5c{bottom:919.033500px;}
.y128{bottom:923.427000px;}
.yb0{bottom:925.701000px;}
.y1d8{bottom:927.570000px;}
.y9{bottom:929.400000px;}
.yae{bottom:930.708000px;}
.y20d{bottom:932.052000px;}
.yed{bottom:935.191500px;}
.yaf{bottom:936.825000px;}
.y5b{bottom:937.863000px;}
.y127{bottom:938.553000px;}
.y1d7{bottom:944.829000px;}
.y8{bottom:948.228000px;}
.y20c{bottom:949.312500px;}
.yad{bottom:949.537500px;}
.yeb{bottom:954.021000px;}
.y5a{bottom:956.692500px;}
.yec{bottom:959.445000px;}
.y126{bottom:960.715500px;}
.y1d6{bottom:962.089500px;}
.yab{bottom:963.189000px;}
.yac{bottom:963.360000px;}
.y20b{bottom:966.573000px;}
.y7{bottom:967.057500px;}
.ya9{bottom:968.367000px;}
.yea{bottom:972.849000px;}
.yaa{bottom:974.484000px;}
.y59{bottom:975.522000px;}
.y1d5{bottom:979.350000px;}
.y20a{bottom:983.833500px;}
.ya8{bottom:987.196500px;}
.y125{bottom:991.426500px;}
.ye8{bottom:991.678500px;}
.y58{bottom:994.351500px;}
.y1d4{bottom:996.610500px;}
.ye9{bottom:997.104000px;}
.y209{bottom:1001.094000px;}
.ya7{bottom:1006.026000px;}
.ye7{bottom:1010.508000px;}
.y124{bottom:1010.659500px;}
.y6{bottom:1012.954500px;}
.y57{bottom:1013.181000px;}
.y1d3{bottom:1013.871000px;}
.y208{bottom:1018.354500px;}
.ya6{bottom:1024.855500px;}
.ye6{bottom:1029.337500px;}
.y123{bottom:1029.892500px;}
.y1d2{bottom:1031.131500px;}
.y56{bottom:1032.010500px;}
.y207{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.ya5{bottom:1043.685000px;}
.ye5{bottom:1048.167000px;}
.y1d1{bottom:1048.392000px;}
.y55{bottom:1050.840000px;}
.y206{bottom:1052.875500px;}
.ya4{bottom:1062.513000px;}
.y1d0{bottom:1065.652500px;}
.ye4{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y54{bottom:1069.669500px;}
.y205{bottom:1070.134500px;}
.y122{bottom:1080.648000px;}
.ya2{bottom:1081.342500px;}
.y1cf{bottom:1082.913000px;}
.ye3{bottom:1085.826000px;}
.ya3{bottom:1086.768000px;}
.y204{bottom:1087.395000px;}
.y53{bottom:1088.499000px;}
.y121{bottom:1091.944500px;}
.y3{bottom:1097.688000px;}
.ya1{bottom:1104.655500px;}
.y52{bottom:1107.327000px;}
.ye2{bottom:1110.081000px;}
.y1{bottom:1141.174500px;}
.y51{bottom:1173.397500px;}
.h1d{height:25.070054px;}
.h8{height:25.508090px;}
.h1a{height:26.325350px;}
.h17{height:26.461718px;}
.h16{height:27.597821px;}
.h18{height:27.855430px;}
.hd{height:32.565965px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.h15{height:34.818209px;}
.hc{height:37.993262px;}
.hb{height:38.286162px;}
.h14{height:41.250077px;}
.he{height:43.421105px;}
.h1b{height:43.683350px;}
.hf{height:43.755849px;}
.h4{height:43.875290px;}
.h11{height:48.848947px;}
.h10{height:49.225536px;}
.h19{height:49.923965px;}
.h1c{height:49.929965px;}
.h2{height:50.931027px;}
.h13{height:54.276245px;}
.h12{height:54.694674px;}
.h7{height:63.264084px;}
.h6{height:63.270084px;}
.h3{height:69.505289px;}
.h5{height:98.451072px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:29.274117px;}
.x3{left:52.654500px;}
.x1{left:54.000000px;}
.x2{left:57.111683px;}
.xe2{left:86.272500px;}
.xea{left:187.821000px;}
.xe8{left:220.557000px;}
.xe9{left:233.973000px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.xc7{left:251.905500px;}
.xdc{left:255.480000px;}
.xc0{left:256.488000px;}
.x46{left:261.448500px;}
.x45{left:264.508500px;}
.xc1{left:268.585500px;}
.xaa{left:270.169500px;}
.x6{left:271.221000px;}
.xab{left:273.510000px;}
.x78{left:275.980500px;}
.x5f{left:279.744000px;}
.xa{left:282.786000px;}
.xd0{left:286.389000px;}
.x10{left:290.557500px;}
.x90{left:294.361500px;}
.x11{left:298.029000px;}
.x99{left:301.690500px;}
.x39{left:304.536000px;}
.xba{left:307.596000px;}
.x8{left:309.709500px;}
.x33{left:311.139000px;}
.xac{left:313.476000px;}
.xb0{left:314.980500px;}
.xc8{left:317.091000px;}
.xd{left:319.683000px;}
.x9{left:321.144000px;}
.xc3{left:324.408000px;}
.x34{left:326.083500px;}
.xae{left:327.127500px;}
.x35{left:329.893500px;}
.xe{left:332.269500px;}
.xc4{left:335.667000px;}
.xad{left:338.347500px;}
.xf{left:339.741000px;}
.x57{left:341.643000px;}
.x65{left:343.630500px;}
.x36{left:344.838000px;}
.x1c{left:347.325000px;}
.x66{left:352.641000px;}
.x1d{left:354.796500px;}
.xaf{left:356.550000px;}
.x1e{left:358.608000px;}
.x72{left:364.384500px;}
.x1f{left:366.079500px;}
.xbb{left:369.469500px;}
.x52{left:373.581000px;}
.xce{left:375.106500px;}
.xbc{left:377.578500px;}
.x3a{left:384.061500px;}
.x53{left:385.873500px;}
.x3b{left:387.424500px;}
.xcf{left:390.051000px;}
.xb1{left:391.816500px;}
.xcb{left:393.966000px;}
.x3c{left:395.608500px;}
.xb9{left:397.510500px;}
.x88{left:401.511000px;}
.xb2{left:403.216500px;}
.x54{left:404.824500px;}
.x44{left:405.850500px;}
.x89{left:407.488500px;}
.xcc{left:408.910500px;}
.x3d{left:410.190000px;}
.x80{left:411.264000px;}
.x18{left:413.076000px;}
.xc9{left:416.175000px;}
.xb7{left:420.340500px;}
.x75{left:426.919500px;}
.x19{left:428.019000px;}
.x76{left:431.068500px;}
.x92{left:436.669500px;}
.xa6{left:440.850000px;}
.xca{left:442.789500px;}
.x2b{left:445.489500px;}
.x93{left:447.882000px;}
.xa7{left:452.227500px;}
.x7c{left:453.676500px;}
.xb8{left:455.872500px;}
.xde{left:458.293500px;}
.x2c{left:460.434000px;}
.x7d{left:462.906000px;}
.x58{left:467.607000px;}
.xa5{left:472.486500px;}
.x27{left:475.573500px;}
.x59{left:477.696000px;}
.x28{left:479.308500px;}
.xd2{left:482.061000px;}
.xb3{left:484.165500px;}
.x64{left:486.652500px;}
.x29{left:488.764500px;}
.xdd{left:491.157000px;}
.xc5{left:494.679000px;}
.x9e{left:496.519500px;}
.x81{left:500.584500px;}
.x82{left:507.390000px;}
.x2a{left:508.921500px;}
.xa3{left:513.358500px;}
.xe0{left:514.455000px;}
.xdf{left:516.834000px;}
.xb4{left:520.693500px;}
.xa1{left:525.948000px;}
.xa4{left:527.475000px;}
.xb5{left:529.705500px;}
.x4c{left:531.189000px;}
.x4a{left:535.482000px;}
.xa2{left:537.343500px;}
.x2d{left:538.638000px;}
.x4d{left:540.201000px;}
.x4e{left:547.888500px;}
.x4f{left:551.625000px;}
.x2e{left:553.582500px;}
.x69{left:555.678000px;}
.x2f{left:560.712000px;}
.xd7{left:563.239500px;}
.x4b{left:568.587000px;}
.x50{left:571.201500px;}
.x30{left:575.656500px;}
.xa8{left:577.695000px;}
.x70{left:579.894000px;}
.xd9{left:581.305500px;}
.x97{left:584.776500px;}
.x51{left:586.968000px;}
.x71{left:589.125000px;}
.x9b{left:590.925000px;}
.xd8{left:592.150500px;}
.x73{left:594.190500px;}
.x98{left:596.160000px;}
.x47{left:599.371500px;}
.x48{left:603.108000px;}
.xbf{left:605.151000px;}
.x55{left:607.504500px;}
.xb6{left:610.470000px;}
.x22{left:612.795000px;}
.x49{left:616.708500px;}
.x9c{left:618.082500px;}
.x56{left:622.449000px;}
.x77{left:624.148500px;}
.x23{left:627.739500px;}
.x60{left:628.951500px;}
.x3e{left:630.403500px;}
.x37{left:631.624500px;}
.x3f{left:633.766500px;}
.x40{left:641.950500px;}
.x61{left:643.894500px;}
.x91{left:644.986500px;}
.x38{left:646.567500px;}
.x83{left:647.823000px;}
.xa9{left:650.281500px;}
.x87{left:651.679500px;}
.xb{left:652.729500px;}
.x84{left:654.628500px;}
.x41{left:656.532000px;}
.xc{left:660.201000px;}
.x6e{left:661.407000px;}
.x12{left:663.306000px;}
.x6f{left:667.384500px;}
.x13{left:670.777500px;}
.xcd{left:672.999000px;}
.x79{left:674.052000px;}
.x8e{left:679.621500px;}
.xd5{left:681.811500px;}
.x7a{left:683.281500px;}
.x86{left:686.344500px;}
.x8f{left:688.633500px;}
.x67{left:691.272000px;}
.x9f{left:693.384000px;}
.xd1{left:694.758000px;}
.xd6{left:696.754500px;}
.x62{left:698.307000px;}
.x68{left:700.282500px;}
.x8c{left:702.126000px;}
.xa0{left:704.775000px;}
.x94{left:707.167500px;}
.x8d{left:708.933000px;}
.x9a{left:710.497500px;}
.xc6{left:712.992000px;}
.x5a{left:717.280500px;}
.x95{left:718.557000px;}
.xe7{left:721.839000px;}
.x6c{left:722.913000px;}
.x5b{left:732.225000px;}
.x9d{left:735.676500px;}
.xe3{left:737.295000px;}
.xbd{left:738.394500px;}
.xc2{left:743.380500px;}
.x5d{left:745.330500px;}
.xda{left:747.244500px;}
.x31{left:750.072000px;}
.xdb{left:753.670500px;}
.x1a{left:756.159000px;}
.x6a{left:757.195500px;}
.x5e{left:760.275000px;}
.xe4{left:762.645000px;}
.x32{left:765.016500px;}
.xe1{left:767.452500px;}
.x74{left:768.936000px;}
.x1b{left:771.103500px;}
.xd3{left:772.216500px;}
.xe5{left:777.118500px;}
.x6d{left:782.709000px;}
.xd4{left:787.161000px;}
.x96{left:789.265500px;}
.x7e{left:790.840500px;}
.x24{left:792.676500px;}
.x25{left:796.413000px;}
.x7f{left:797.647500px;}
.x20{left:798.943500px;}
.x6b{left:801.948000px;}
.xe6{left:804.016500px;}
.x26{left:805.869000px;}
.x42{left:807.454500px;}
.x14{left:810.336000px;}
.x21{left:813.886500px;}
.x15{left:817.807500px;}
.x43{left:819.001500px;}
.x8a{left:821.490000px;}
.x16{left:825.309000px;}
.xbe{left:827.055000px;}
.x8b{left:828.297000px;}
.x7b{left:830.593500px;}
.x17{left:832.782000px;}
.x85{left:833.838000px;}
.x5c{left:835.531500px;}
.x63{left:837.807000px;}
@media print{
.v8{vertical-align:-19.290667pt;}
.v2{vertical-align:-15.429333pt;}
.v6{vertical-align:-1.653333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.173333pt;}
.v7{vertical-align:13.781333pt;}
.v3{vertical-align:15.429333pt;}
.v5{vertical-align:16.608000pt;}
.v1{vertical-align:19.290667pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000544pt;}
.ls1d{letter-spacing:0.001007pt;}
.ls27{letter-spacing:0.002385pt;}
.ls1e{letter-spacing:0.002825pt;}
.ls23{letter-spacing:0.004267pt;}
.ls10{letter-spacing:0.380773pt;}
.lsa{letter-spacing:0.447791pt;}
.ls9{letter-spacing:0.482502pt;}
.lsb{letter-spacing:0.487835pt;}
.ls8{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls11{letter-spacing:2.657067pt;}
.lse{letter-spacing:3.158400pt;}
.ls3{letter-spacing:9.170933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls25{letter-spacing:11.777609pt;}
.ls26{letter-spacing:11.836012pt;}
.ls22{letter-spacing:11.954133pt;}
.ls2b{letter-spacing:11.959467pt;}
.ls2a{letter-spacing:12.036711pt;}
.ls24{letter-spacing:12.039445pt;}
.ls2d{letter-spacing:12.077254pt;}
.ls2e{letter-spacing:12.112345pt;}
.ls20{letter-spacing:12.289322pt;}
.lsd{letter-spacing:13.917762pt;}
.lsf{letter-spacing:13.945067pt;}
.ls16{letter-spacing:13.950400pt;}
.ls1f{letter-spacing:15.631566pt;}
.ls1{letter-spacing:15.942400pt;}
.ls28{letter-spacing:17.148068pt;}
.ls21{letter-spacing:17.571098pt;}
.ls2c{letter-spacing:17.639571pt;}
.ls29{letter-spacing:20.082133pt;}
.ls0{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls12{letter-spacing:97.589102pt;}
.ls15{letter-spacing:187.275290pt;}
.ls14{letter-spacing:197.463313pt;}
.ls13{letter-spacing:206.234377pt;}
.ls17{letter-spacing:329.893102pt;}
.ls19{letter-spacing:331.087710pt;}
.ls18{letter-spacing:341.717043pt;}
.ls1c{letter-spacing:349.429043pt;}
.ls1b{letter-spacing:349.493043pt;}
.ls1a{letter-spacing:415.807710pt;}
.ws83{word-spacing:-13.283467pt;}
.ws9d{word-spacing:-11.955200pt;}
.ws19{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.wsd{word-spacing:-9.298400pt;}
.ws76{word-spacing:-7.970133pt;}
.ws5d{word-spacing:-2.975497pt;}
.ws89{word-spacing:-2.550426pt;}
.ws8a{word-spacing:-2.497292pt;}
.ws4b{word-spacing:-2.391040pt;}
.ws71{word-spacing:-2.391024pt;}
.ws1c{word-spacing:-2.247578pt;}
.ws5f{word-spacing:-2.125355pt;}
.ws3e{word-spacing:-1.806551pt;}
.ws57{word-spacing:-1.753418pt;}
.ws8{word-spacing:-1.696326pt;}
.ws1b{word-spacing:-1.673728pt;}
.ws93{word-spacing:-1.594016pt;}
.ws72{word-spacing:-1.540882pt;}
.ws20{word-spacing:-1.434624pt;}
.ws30{word-spacing:-1.381481pt;}
.ws9a{word-spacing:-1.328347pt;}
.wsb9{word-spacing:-1.318836pt;}
.wsb8{word-spacing:-1.311462pt;}
.wsba{word-spacing:-1.296246pt;}
.wsb6{word-spacing:-1.296166pt;}
.wsa8{word-spacing:-1.275213pt;}
.ws8e{word-spacing:-1.195520pt;}
.ws7{word-spacing:-1.175671pt;}
.wsb7{word-spacing:-0.978878pt;}
.wsc1{word-spacing:-0.908595pt;}
.ws32{word-spacing:-0.903276pt;}
.ws43{word-spacing:-0.743874pt;}
.wsa9{word-spacing:-0.690740pt;}
.ws2c{word-spacing:-0.637606pt;}
.wsab{word-spacing:-0.584473pt;}
.wse3{word-spacing:-0.430387pt;}
.ws55{word-spacing:-0.425071pt;}
.ws51{word-spacing:-0.371937pt;}
.wsbb{word-spacing:-0.334746pt;}
.ws3a{word-spacing:-0.318803pt;}
.ws8f{word-spacing:-0.286925pt;}
.ws44{word-spacing:-0.265669pt;}
.wsa{word-spacing:-0.260355pt;}
.ws77{word-spacing:-0.255043pt;}
.ws91{word-spacing:-0.240673pt;}
.ws1d{word-spacing:-0.239104pt;}
.ws92{word-spacing:-0.227994pt;}
.ws36{word-spacing:-0.212535pt;}
.ws4a{word-spacing:-0.191283pt;}
.wsc{word-spacing:-0.162543pt;}
.ws26{word-spacing:-0.159402pt;}
.ws6c{word-spacing:-0.146183pt;}
.ws7c{word-spacing:-0.143462pt;}
.ws6b{word-spacing:-0.127844pt;}
.ws2f{word-spacing:-0.106268pt;}
.ws21{word-spacing:-0.095642pt;}
.ws38{word-spacing:-0.053134pt;}
.ws23{word-spacing:-0.047821pt;}
.wscc{word-spacing:-0.008269pt;}
.wsdb{word-spacing:-0.007151pt;}
.wsca{word-spacing:-0.006963pt;}
.ws1{word-spacing:-0.003783pt;}
.ws29{word-spacing:-0.002739pt;}
.wsc8{word-spacing:-0.001818pt;}
.ws6{word-spacing:-0.001785pt;}
.wsd1{word-spacing:-0.001698pt;}
.wscb{word-spacing:-0.001630pt;}
.ws0{word-spacing:0.000000pt;}
.wse5{word-spacing:0.000094pt;}
.wsdc{word-spacing:0.000256pt;}
.ws5b{word-spacing:0.000800pt;}
.wsd2{word-spacing:0.001519pt;}
.wsd6{word-spacing:0.002039pt;}
.ws6d{word-spacing:0.017287pt;}
.ws67{word-spacing:0.035685pt;}
.ws73{word-spacing:0.047821pt;}
.ws39{word-spacing:0.053134pt;}
.wsd4{word-spacing:0.063793pt;}
.ws68{word-spacing:0.092496pt;}
.ws24{word-spacing:0.095642pt;}
.ws3d{word-spacing:0.106268pt;}
.ws5e{word-spacing:0.117303pt;}
.ws75{word-spacing:0.127522pt;}
.wsbd{word-spacing:0.143462pt;}
.ws2d{word-spacing:0.159402pt;}
.wsf{word-spacing:0.185968pt;}
.ws1f{word-spacing:0.191283pt;}
.ws31{word-spacing:0.212535pt;}
.ws1a{word-spacing:0.239104pt;}
.ws11{word-spacing:0.260355pt;}
.ws33{word-spacing:0.265669pt;}
.ws52{word-spacing:0.318803pt;}
.ws58{word-spacing:0.371937pt;}
.ws62{word-spacing:0.425071pt;}
.ws2a{word-spacing:0.478205pt;}
.ws65{word-spacing:0.505333pt;}
.wsc9{word-spacing:0.526029pt;}
.ws7b{word-spacing:0.531339pt;}
.ws3f{word-spacing:0.584473pt;}
.ws3c{word-spacing:0.637606pt;}
.ws54{word-spacing:0.690740pt;}
.ws47{word-spacing:0.717312pt;}
.ws7a{word-spacing:0.743874pt;}
.wsb0{word-spacing:0.797008pt;}
.wsbf{word-spacing:0.860774pt;}
.wsae{word-spacing:0.903276pt;}
.ws97{word-spacing:0.956410pt;}
.wsd0{word-spacing:0.956416pt;}
.ws46{word-spacing:1.004237pt;}
.wsc5{word-spacing:1.099878pt;}
.ws59{word-spacing:1.222079pt;}
.ws2e{word-spacing:1.275213pt;}
.ws94{word-spacing:1.328347pt;}
.wsbe{word-spacing:1.386803pt;}
.wsce{word-spacing:1.434624pt;}
.ws95{word-spacing:1.487748pt;}
.ws96{word-spacing:1.518721pt;}
.ws34{word-spacing:1.540882pt;}
.ws35{word-spacing:1.594016pt;}
.ws22{word-spacing:1.625907pt;}
.ws50{word-spacing:1.647150pt;}
.ws61{word-spacing:1.700284pt;}
.wsb2{word-spacing:1.753418pt;}
.wsda{word-spacing:1.769370pt;}
.ws10{word-spacing:1.785293pt;}
.ws27{word-spacing:1.806551pt;}
.ws99{word-spacing:1.820582pt;}
.ws98{word-spacing:1.827564pt;}
.wsa7{word-spacing:1.859685pt;}
.wsaa{word-spacing:1.912819pt;}
.wsad{word-spacing:1.965953pt;}
.ws37{word-spacing:2.019087pt;}
.wsa4{word-spacing:2.072221pt;}
.ws90{word-spacing:2.125355pt;}
.ws42{word-spacing:2.178489pt;}
.wsb{word-spacing:2.180035pt;}
.ws86{word-spacing:2.231622pt;}
.ws49{word-spacing:2.247578pt;}
.ws53{word-spacing:2.337890pt;}
.ws6a{word-spacing:2.444158pt;}
.ws48{word-spacing:2.534502pt;}
.wsa3{word-spacing:2.550426pt;}
.ws74{word-spacing:2.550432pt;}
.wse4{word-spacing:2.582323pt;}
.ws5a{word-spacing:2.603559pt;}
.wsd7{word-spacing:2.605299pt;}
.wsd8{word-spacing:2.630144pt;}
.wsc3{word-spacing:2.677965pt;}
.ws56{word-spacing:2.709827pt;}
.wse2{word-spacing:2.725786pt;}
.wscf{word-spacing:2.773606pt;}
.wsc7{word-spacing:2.862566pt;}
.wsd3{word-spacing:2.864341pt;}
.wse1{word-spacing:2.865118pt;}
.wsdf{word-spacing:2.865306pt;}
.wsdd{word-spacing:2.869248pt;}
.wsc2{word-spacing:2.871006pt;}
.wsc4{word-spacing:2.917069pt;}
.ws63{word-spacing:2.922363pt;}
.ws40{word-spacing:2.975497pt;}
.ws78{word-spacing:3.028630pt;}
.ws3b{word-spacing:3.081764pt;}
.ws8c{word-spacing:3.134898pt;}
.ws1e{word-spacing:3.156173pt;}
.ws25{word-spacing:3.188032pt;}
.wsb4{word-spacing:3.241166pt;}
.ws85{word-spacing:3.294300pt;}
.ws2b{word-spacing:3.347434pt;}
.ws45{word-spacing:3.400567pt;}
.ws28{word-spacing:3.453701pt;}
.wsac{word-spacing:3.490918pt;}
.ws8b{word-spacing:3.506835pt;}
.ws70{word-spacing:3.772505pt;}
.wsc0{word-spacing:3.873485pt;}
.wsb1{word-spacing:3.931906pt;}
.wsb3{word-spacing:3.985040pt;}
.wscd{word-spacing:4.112589pt;}
.ws64{word-spacing:4.144442pt;}
.wsa1{word-spacing:4.303872pt;}
.ws69{word-spacing:4.410111pt;}
.wsd9{word-spacing:4.495155pt;}
.ws60{word-spacing:4.675780pt;}
.ws6f{word-spacing:4.760506pt;}
.ws6e{word-spacing:4.782048pt;}
.ws66{word-spacing:5.047717pt;}
.ws79{word-spacing:5.100851pt;}
.wsaf{word-spacing:5.313387pt;}
.ws84{word-spacing:5.366521pt;}
.ws17{word-spacing:5.393072pt;}
.ws18{word-spacing:5.467459pt;}
.ws9e{word-spacing:5.595034pt;}
.wsa0{word-spacing:5.597014pt;}
.wsb5{word-spacing:5.738458pt;}
.ws8d{word-spacing:5.950993pt;}
.ws41{word-spacing:6.535466pt;}
.ws88{word-spacing:6.641733pt;}
.ws87{word-spacing:6.694867pt;}
.wsbc{word-spacing:6.742733pt;}
.wsa6{word-spacing:6.748001pt;}
.wsa5{word-spacing:6.801135pt;}
.ws5c{word-spacing:6.907403pt;}
.ws9c{word-spacing:7.603507pt;}
.ws15{word-spacing:7.699075pt;}
.ws9b{word-spacing:7.986074pt;}
.wsd5{word-spacing:8.123708pt;}
.wse6{word-spacing:8.126575pt;}
.wsc6{word-spacing:8.127795pt;}
.wsde{word-spacing:8.129314pt;}
.wse{word-spacing:9.038045pt;}
.wse0{word-spacing:9.038131pt;}
.ws9{word-spacing:13.763148pt;}
.ws12{word-spacing:14.348669pt;}
.ws13{word-spacing:14.356730pt;}
.ws14{word-spacing:15.732893pt;}
.wsa2{word-spacing:16.211251pt;}
.ws9f{word-spacing:20.132557pt;}
.ws16{word-spacing:24.399002pt;}
.ws3{word-spacing:40.936533pt;}
.ws5{word-spacing:40.941867pt;}
.ws4{word-spacing:40.943467pt;}
.ws4d{word-spacing:50.020557pt;}
.ws4e{word-spacing:92.055040pt;}
.ws4f{word-spacing:110.035661pt;}
.ws7e{word-spacing:325.965210pt;}
.ws81{word-spacing:333.682543pt;}
.ws80{word-spacing:333.741210pt;}
.ws82{word-spacing:425.858134pt;}
.ws4c{word-spacing:452.002202pt;}
.ws7d{word-spacing:465.750815pt;}
.ws7f{word-spacing:470.192153pt;}
._40{margin-left:-21.949747pt;}
._2{margin-left:-10.616218pt;}
._0{margin-left:-7.077478pt;}
._14{margin-left:-5.844725pt;}
._a{margin-left:-4.718299pt;}
._7{margin-left:-3.585109pt;}
._9{margin-left:-2.661383pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._3{width:2.661383pt;}
._3f{width:6.073242pt;}
._3c{width:10.782462pt;}
._8{width:11.693314pt;}
._11{width:13.175632pt;}
._c{width:14.258722pt;}
._b{width:15.700168pt;}
._15{width:16.737168pt;}
._10{width:17.693578pt;}
._25{width:18.915657pt;}
._e{width:20.073011pt;}
._3d{width:21.045041pt;}
._f{width:22.422492pt;}
._34{width:23.485169pt;}
._d{width:24.675533pt;}
._33{width:25.929327pt;}
._26{width:27.583203pt;}
._1{width:29.648896pt;}
._35{width:31.030178pt;}
._37{width:32.942997pt;}
._38{width:33.970858pt;}
._16{width:36.556100pt;}
._3b{width:43.037200pt;}
._3e{width:44.628981pt;}
._4{width:48.376563pt;}
._3a{width:54.993920pt;}
._19{width:75.317760pt;}
._39{width:78.904320pt;}
._1a{width:87.607706pt;}
._1d{width:92.102861pt;}
._22{width:109.987840pt;}
._1b{width:111.349604pt;}
._1e{width:113.430938pt;}
._21{width:115.965440pt;}
._1f{width:118.165197pt;}
._1c{width:125.386138pt;}
._23{width:149.296538pt;}
._18{width:153.791693pt;}
._20{width:155.274138pt;}
._24{width:161.203917pt;}
._27{width:191.622458pt;}
._31{width:245.905834pt;}
._2d{width:253.668439pt;}
._2a{width:272.768702pt;}
._29{width:282.375330pt;}
._2b{width:285.053283pt;}
._28{width:291.981957pt;}
._2e{width:396.167104pt;}
._2f{width:433.615947pt;}
._30{width:456.782371pt;}
._32{width:484.157008pt;}
._17{width:502.500966pt;}
._2c{width:523.148596pt;}
._12{width:651.252811pt;}
._36{width:2140.999733pt;}
._13{width:2162.253067pt;}
.fs7{font-size:31.880533pt;}
.fsd{font-size:33.219200pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsb{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:55.365867pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.044747pt;}
.yb{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y50{bottom:28.346667pt;}
.y120{bottom:79.746667pt;}
.y15a{bottom:83.770667pt;}
.y11e{bottom:84.197333pt;}
.y1ab{bottom:85.612000pt;}
.ya0{bottom:87.952000pt;}
.y11f{bottom:89.634667pt;}
.ye1{bottom:90.457333pt;}
.y28{bottom:91.398667pt;}
.y4f{bottom:92.108000pt;}
.y11c{bottom:96.332000pt;}
.y11d{bottom:96.484000pt;}
.y159{bottom:100.508000pt;}
.y11a{bottom:100.934667pt;}
.y1aa{bottom:102.349333pt;}
.y203{bottom:103.408000pt;}
.y9f{bottom:104.689333pt;}
.y1ce{bottom:105.600000pt;}
.y11b{bottom:106.372000pt;}
.ye0{bottom:107.194667pt;}
.y27{bottom:107.298667pt;}
.y4e{bottom:108.844000pt;}
.y161{bottom:109.254667pt;}
.y119{bottom:113.221333pt;}
.y158{bottom:117.245333pt;}
.y117{bottom:117.672000pt;}
.y202{bottom:118.750667pt;}
.y1a9{bottom:119.085333pt;}
.y9e{bottom:121.426667pt;}
.y118{bottom:123.109333pt;}
.y26{bottom:123.200000pt;}
.ydf{bottom:123.930667pt;}
.y4d{bottom:125.581333pt;}
.y160{bottom:126.350667pt;}
.y1cd{bottom:129.192000pt;}
.y157{bottom:133.982667pt;}
.y201{bottom:134.093333pt;}
.y116{bottom:134.409333pt;}
.y1a8{bottom:135.822667pt;}
.y9c{bottom:138.164000pt;}
.y25{bottom:139.100000pt;}
.yde{bottom:140.668000pt;}
.y189{bottom:141.066667pt;}
.y9d{bottom:142.985333pt;}
.y15e{bottom:143.446667pt;}
.y4c{bottom:146.304000pt;}
.y15f{bottom:147.786667pt;}
.y200{bottom:149.436000pt;}
.y156{bottom:150.720000pt;}
.y115{bottom:151.146667pt;}
.y1a7{bottom:152.560000pt;}
.y1cc{bottom:152.784000pt;}
.y9a{bottom:154.901333pt;}
.y24{bottom:155.000000pt;}
.ydd{bottom:157.405333pt;}
.y188{bottom:157.804000pt;}
.y9b{bottom:159.722667pt;}
.y15c{bottom:160.542667pt;}
.y1ff{bottom:164.778667pt;}
.y15d{bottom:164.882667pt;}
.y155{bottom:167.457333pt;}
.y114{bottom:167.884000pt;}
.y1a6{bottom:169.297333pt;}
.y23{bottom:170.901333pt;}
.y99{bottom:171.638667pt;}
.ydc{bottom:174.142667pt;}
.y187{bottom:174.541333pt;}
.y1cb{bottom:176.374667pt;}
.y15b{bottom:177.638667pt;}
.y83{bottom:179.308000pt;}
.y1fe{bottom:180.121333pt;}
.y154{bottom:184.194667pt;}
.y113{bottom:184.621333pt;}
.y1a5{bottom:186.034667pt;}
.y22{bottom:186.801333pt;}
.y98{bottom:188.376000pt;}
.yda{bottom:190.880000pt;}
.y186{bottom:191.278667pt;}
.y1fd{bottom:195.462667pt;}
.ydb{bottom:195.702667pt;}
.y82{bottom:196.045333pt;}
.y235{bottom:199.448000pt;}
.y1ca{bottom:199.966667pt;}
.y112{bottom:201.357333pt;}
.y21{bottom:202.701333pt;}
.y1a4{bottom:202.772000pt;}
.y14d{bottom:204.340000pt;}
.y97{bottom:205.112000pt;}
.yd8{bottom:207.617333pt;}
.y185{bottom:208.016000pt;}
.y1fc{bottom:210.805333pt;}
.yd9{bottom:212.440000pt;}
.y81{bottom:212.782667pt;}
.y4b{bottom:213.104000pt;}
.y153{bottom:214.030667pt;}
.y234{bottom:214.790667pt;}
.y1c9{bottom:215.588000pt;}
.y111{bottom:218.094667pt;}
.y1a3{bottom:219.509333pt;}
.y14c{bottom:221.077333pt;}
.y96{bottom:221.849333pt;}
.yd7{bottom:224.354667pt;}
.y184{bottom:224.753333pt;}
.y1fb{bottom:226.148000pt;}
.y80{bottom:229.520000pt;}
.y233{bottom:230.133333pt;}
.y4a{bottom:230.400000pt;}
.y152{bottom:231.126667pt;}
.y1c8{bottom:231.209333pt;}
.y110{bottom:234.832000pt;}
.y1a2{bottom:236.246667pt;}
.y14b{bottom:237.814667pt;}
.y95{bottom:238.586667pt;}
.yd6{bottom:238.766667pt;}
.yd5{bottom:241.092000pt;}
.y183{bottom:241.490667pt;}
.y232{bottom:245.476000pt;}
.y7f{bottom:246.257333pt;}
.y1c7{bottom:246.830667pt;}
.y151{bottom:248.222667pt;}
.y10f{bottom:251.569333pt;}
.y1a1{bottom:252.984000pt;}
.y14a{bottom:254.552000pt;}
.y94{bottom:255.324000pt;}
.y1fa{bottom:256.833333pt;}
.yd3{bottom:257.829333pt;}
.y182{bottom:258.228000pt;}
.y231{bottom:260.818667pt;}
.yd4{bottom:262.652000pt;}
.y7e{bottom:262.994667pt;}
.y49{bottom:263.634667pt;}
.y150{bottom:265.318667pt;}
.y1a0{bottom:269.721333pt;}
.y1c6{bottom:270.422667pt;}
.y149{bottom:271.289333pt;}
.y93{bottom:272.061333pt;}
.y1f9{bottom:272.176000pt;}
.y20{bottom:273.154667pt;}
.yd1{bottom:274.566667pt;}
.y181{bottom:274.965333pt;}
.y230{bottom:276.161333pt;}
.yd2{bottom:279.389333pt;}
.y7d{bottom:279.732000pt;}
.y48{bottom:280.930667pt;}
.y14f{bottom:282.414667pt;}
.y10e{bottom:283.825333pt;}
.y1c5{bottom:286.044000pt;}
.y19e{bottom:286.458667pt;}
.y1f8{bottom:287.518667pt;}
.y148{bottom:288.026667pt;}
.y92{bottom:288.798667pt;}
.y1f{bottom:289.054667pt;}
.y19f{bottom:291.281333pt;}
.ycf{bottom:291.304000pt;}
.y22f{bottom:291.502667pt;}
.y180{bottom:291.702667pt;}
.yd0{bottom:296.126667pt;}
.y7c{bottom:296.469333pt;}
.y10a{bottom:296.858667pt;}
.y109{bottom:296.977333pt;}
.y10c{bottom:297.272000pt;}
.y47{bottom:298.225333pt;}
.y14e{bottom:299.510667pt;}
.y10b{bottom:300.716000pt;}
.y10d{bottom:301.129333pt;}
.y1c4{bottom:301.665333pt;}
.y1f7{bottom:302.861333pt;}
.y19c{bottom:303.196000pt;}
.y147{bottom:304.764000pt;}
.y1e{bottom:304.954667pt;}
.y91{bottom:305.536000pt;}
.y22e{bottom:306.845333pt;}
.y19d{bottom:308.017333pt;}
.yce{bottom:308.041333pt;}
.y17f{bottom:308.440000pt;}
.y7b{bottom:313.205333pt;}
.y46{bottom:315.520000pt;}
.y108{bottom:316.972000pt;}
.y1c3{bottom:317.286667pt;}
.y1f6{bottom:318.202667pt;}
.y19b{bottom:319.933333pt;}
.y1d{bottom:320.856000pt;}
.y146{bottom:321.501333pt;}
.y22d{bottom:322.188000pt;}
.ycd{bottom:324.778667pt;}
.y17e{bottom:325.177333pt;}
.y7a{bottom:329.942667pt;}
.y45{bottom:332.816000pt;}
.y1c2{bottom:332.908000pt;}
.y1f5{bottom:333.545333pt;}
.y199{bottom:336.670667pt;}
.y22c{bottom:337.530667pt;}
.y90{bottom:337.977333pt;}
.y145{bottom:338.238667pt;}
.y19a{bottom:341.492000pt;}
.ycc{bottom:341.516000pt;}
.y17d{bottom:341.914667pt;}
.y107{bottom:343.682667pt;}
.y1c1{bottom:348.529333pt;}
.y1f4{bottom:348.888000pt;}
.y44{bottom:350.110667pt;}
.y79{bottom:350.665333pt;}
.y8f{bottom:352.589333pt;}
.y22b{bottom:352.873333pt;}
.y198{bottom:353.408000pt;}
.y1c{bottom:354.688000pt;}
.y144{bottom:354.976000pt;}
.ycb{bottom:358.253333pt;}
.y17c{bottom:358.652000pt;}
.y106{bottom:360.778667pt;}
.y1c0{bottom:364.150667pt;}
.y1f3{bottom:364.230667pt;}
.y43{bottom:367.405333pt;}
.y22a{bottom:368.216000pt;}
.y78{bottom:368.598667pt;}
.y197{bottom:370.145333pt;}
.y1b{bottom:370.589333pt;}
.y143{bottom:371.713333pt;}
.y8e{bottom:373.868000pt;}
.yca{bottom:374.990667pt;}
.y17b{bottom:375.389333pt;}
.y105{bottom:377.874667pt;}
.y1f2{bottom:379.573333pt;}
.y229{bottom:383.558667pt;}
.y42{bottom:384.701333pt;}
.y1a{bottom:386.489333pt;}
.y196{bottom:386.882667pt;}
.y142{bottom:388.450667pt;}
.yc9{bottom:391.728000pt;}
.y17a{bottom:392.126667pt;}
.y8d{bottom:394.882667pt;}
.y1f1{bottom:394.916000pt;}
.y1bf{bottom:395.713333pt;}
.y77{bottom:398.486667pt;}
.y228{bottom:398.901333pt;}
.y41{bottom:401.996000pt;}
.y195{bottom:403.620000pt;}
.y141{bottom:405.188000pt;}
.yc8{bottom:408.465333pt;}
.y179{bottom:408.864000pt;}
.y1f0{bottom:410.258667pt;}
.y104{bottom:410.856000pt;}
.y1be{bottom:412.450667pt;}
.y227{bottom:414.244000pt;}
.y76{bottom:415.224000pt;}
.y19{bottom:418.330667pt;}
.y40{bottom:419.292000pt;}
.y194{bottom:420.357333pt;}
.y140{bottom:421.925333pt;}
.y8c{bottom:422.988000pt;}
.yc7{bottom:425.202667pt;}
.y178{bottom:425.601333pt;}
.y103{bottom:427.593333pt;}
.y1bd{bottom:429.188000pt;}
.y226{bottom:429.585333pt;}
.y75{bottom:431.961333pt;}
.y18{bottom:434.230667pt;}
.y3f{bottom:436.586667pt;}
.y193{bottom:437.094667pt;}
.y13f{bottom:438.662667pt;}
.y8b{bottom:440.084000pt;}
.y1ef{bottom:440.944000pt;}
.yc6{bottom:441.940000pt;}
.y177{bottom:442.338667pt;}
.y102{bottom:444.330667pt;}
.y225{bottom:444.928000pt;}
.y1bc{bottom:445.925333pt;}
.y74{bottom:448.698667pt;}
.y192{bottom:453.832000pt;}
.y3e{bottom:453.881333pt;}
.y13e{bottom:455.400000pt;}
.y1ee{bottom:456.285333pt;}
.y89{bottom:457.180000pt;}
.yc5{bottom:458.677333pt;}
.y176{bottom:459.076000pt;}
.y224{bottom:460.270667pt;}
.y101{bottom:461.068000pt;}
.y8a{bottom:461.520000pt;}
.y1bb{bottom:462.662667pt;}
.y73{bottom:465.436000pt;}
.y17{bottom:466.070667pt;}
.y191{bottom:470.569333pt;}
.y3d{bottom:471.177333pt;}
.y1ed{bottom:471.628000pt;}
.y13d{bottom:472.137333pt;}
.y88{bottom:474.276000pt;}
.yc4{bottom:475.414667pt;}
.y223{bottom:475.613333pt;}
.y175{bottom:475.813333pt;}
.y100{bottom:477.805333pt;}
.y1ba{bottom:479.398667pt;}
.y16{bottom:481.972000pt;}
.y72{bottom:482.173333pt;}
.y1ec{bottom:486.970667pt;}
.y190{bottom:487.306667pt;}
.y3c{bottom:488.472000pt;}
.y13c{bottom:488.874667pt;}
.y222{bottom:490.956000pt;}
.y87{bottom:491.372000pt;}
.yc3{bottom:492.152000pt;}
.y174{bottom:492.549333pt;}
.yff{bottom:494.542667pt;}
.y1b9{bottom:496.136000pt;}
.y15{bottom:497.872000pt;}
.y71{bottom:498.910667pt;}
.y1eb{bottom:502.313333pt;}
.y18f{bottom:504.044000pt;}
.y13b{bottom:505.610667pt;}
.y3b{bottom:505.766667pt;}
.y221{bottom:506.298667pt;}
.yc2{bottom:508.889333pt;}
.y173{bottom:509.286667pt;}
.y1b8{bottom:512.873333pt;}
.y14{bottom:513.772000pt;}
.yfe{bottom:515.265333pt;}
.y70{bottom:515.648000pt;}
.y1ea{bottom:517.656000pt;}
.y86{bottom:517.766667pt;}
.y18e{bottom:520.781333pt;}
.y220{bottom:521.641333pt;}
.y13a{bottom:522.348000pt;}
.y3a{bottom:523.062667pt;}
.yc1{bottom:525.626667pt;}
.y172{bottom:526.024000pt;}
.y1b7{bottom:529.610667pt;}
.y13{bottom:529.673333pt;}
.y6f{bottom:532.384000pt;}
.y1e9{bottom:532.998667pt;}
.yfd{bottom:533.197333pt;}
.y85{bottom:534.862667pt;}
.y21f{bottom:536.984000pt;}
.y18d{bottom:537.518667pt;}
.y139{bottom:539.085333pt;}
.yc0{bottom:542.364000pt;}
.y171{bottom:542.761333pt;}
.y12{bottom:545.573333pt;}
.y1b6{bottom:546.348000pt;}
.y1e8{bottom:548.341333pt;}
.y6e{bottom:549.121333pt;}
.y84{bottom:551.958667pt;}
.y21e{bottom:552.325333pt;}
.y18c{bottom:554.256000pt;}
.y138{bottom:555.822667pt;}
.y39{bottom:557.184000pt;}
.ybf{bottom:559.101333pt;}
.y170{bottom:559.498667pt;}
.y11{bottom:561.473333pt;}
.yfc{bottom:563.085333pt;}
.y1e7{bottom:563.684000pt;}
.y6d{bottom:565.858667pt;}
.y21d{bottom:567.668000pt;}
.y38{bottom:571.530667pt;}
.y137{bottom:572.560000pt;}
.ybe{bottom:575.837333pt;}
.y16f{bottom:576.236000pt;}
.y10{bottom:577.374667pt;}
.y1e6{bottom:579.025333pt;}
.yfb{bottom:579.822667pt;}
.y6c{bottom:582.596000pt;}
.y21c{bottom:583.010667pt;}
.y1b5{bottom:583.808000pt;}
.y18b{bottom:584.092000pt;}
.y136{bottom:589.297333pt;}
.y37{bottom:589.734667pt;}
.ybd{bottom:592.574667pt;}
.y16e{bottom:592.973333pt;}
.yf{bottom:593.274667pt;}
.y1e5{bottom:594.368000pt;}
.yfa{bottom:596.560000pt;}
.y21b{bottom:598.353333pt;}
.y6b{bottom:599.333333pt;}
.y36{bottom:600.222667pt;}
.y18a{bottom:601.188000pt;}
.y135{bottom:606.034667pt;}
.ye{bottom:609.174667pt;}
.ybc{bottom:609.312000pt;}
.y16d{bottom:609.710667pt;}
.yf9{bottom:613.297333pt;}
.y1b4{bottom:613.696000pt;}
.y6a{bottom:616.070667pt;}
.y35{bottom:618.426667pt;}
.y1e4{bottom:625.053333pt;}
.yd{bottom:625.076000pt;}
.ybb{bottom:626.049333pt;}
.y16c{bottom:626.448000pt;}
.y134{bottom:626.757333pt;}
.y34{bottom:628.916000pt;}
.y21a{bottom:629.038667pt;}
.yf8{bottom:630.034667pt;}
.y1b3{bottom:630.433333pt;}
.y69{bottom:632.808000pt;}
.y1e3{bottom:640.396000pt;}
.yba{bottom:642.786667pt;}
.y16b{bottom:643.185333pt;}
.y219{bottom:644.381333pt;}
.ya{bottom:644.961301pt;}
.yf7{bottom:646.772000pt;}
.y33{bottom:647.118667pt;}
.y1b2{bottom:647.170667pt;}
.y68{bottom:649.545333pt;}
.y1e2{bottom:655.738667pt;}
.y32{bottom:657.608000pt;}
.yb9{bottom:659.524000pt;}
.y218{bottom:659.724000pt;}
.y16a{bottom:659.922667pt;}
.yf6{bottom:663.509333pt;}
.y133{bottom:663.781333pt;}
.y1b1{bottom:663.908000pt;}
.y67{bottom:666.282667pt;}
.y1e1{bottom:671.081333pt;}
.y217{bottom:675.066667pt;}
.y31{bottom:675.812000pt;}
.yb8{bottom:676.261333pt;}
.y169{bottom:676.660000pt;}
.y132{bottom:676.813333pt;}
.yf5{bottom:680.246667pt;}
.y1af{bottom:680.645333pt;}
.y66{bottom:683.020000pt;}
.y1b0{bottom:685.466667pt;}
.y30{bottom:686.300000pt;}
.y1e0{bottom:686.424000pt;}
.y131{bottom:690.258667pt;}
.y216{bottom:690.408000pt;}
.yb7{bottom:692.998667pt;}
.y168{bottom:693.397333pt;}
.yf4{bottom:696.984000pt;}
.y1ae{bottom:697.382667pt;}
.y65{bottom:699.757333pt;}
.y1df{bottom:701.766667pt;}
.y130{bottom:703.704000pt;}
.y2f{bottom:704.504000pt;}
.y215{bottom:705.750667pt;}
.yb6{bottom:709.736000pt;}
.y167{bottom:710.134667pt;}
.y1ad{bottom:714.120000pt;}
.y2e{bottom:714.993333pt;}
.y63{bottom:716.494667pt;}
.y12f{bottom:716.737333pt;}
.y1de{bottom:717.108000pt;}
.yf3{bottom:717.706667pt;}
.y214{bottom:721.093333pt;}
.y64{bottom:721.316000pt;}
.yb5{bottom:726.473333pt;}
.y166{bottom:726.872000pt;}
.y12e{bottom:729.769333pt;}
.y1ac{bottom:730.857333pt;}
.y1dd{bottom:732.450667pt;}
.y2d{bottom:733.197333pt;}
.y61{bottom:733.232000pt;}
.y213{bottom:736.436000pt;}
.y62{bottom:738.053333pt;}
.yb4{bottom:743.210667pt;}
.y165{bottom:743.609333pt;}
.y2c{bottom:743.685333pt;}
.yf2{bottom:747.594667pt;}
.y1dc{bottom:747.793333pt;}
.y12d{bottom:749.469333pt;}
.y60{bottom:749.969333pt;}
.y212{bottom:751.778667pt;}
.yb3{bottom:759.948000pt;}
.y164{bottom:760.346667pt;}
.y2b{bottom:761.889333pt;}
.y1db{bottom:763.136000pt;}
.yf1{bottom:764.332000pt;}
.y5f{bottom:766.706667pt;}
.y211{bottom:767.121333pt;}
.y12c{bottom:767.454667pt;}
.y2a{bottom:772.378667pt;}
.y163{bottom:777.084000pt;}
.y1da{bottom:778.478667pt;}
.y12b{bottom:780.488000pt;}
.yb2{bottom:780.670667pt;}
.yf0{bottom:781.069333pt;}
.y210{bottom:782.464000pt;}
.y5e{bottom:783.444000pt;}
.y29{bottom:790.581333pt;}
.y162{bottom:793.821333pt;}
.y12a{bottom:793.933333pt;}
.yef{bottom:797.806667pt;}
.y5d{bottom:800.181333pt;}
.y129{bottom:807.378667pt;}
.y1d9{bottom:809.164000pt;}
.yb1{bottom:810.558667pt;}
.y20e{bottom:813.148000pt;}
.y20f{bottom:813.149333pt;}
.yee{bottom:814.544000pt;}
.y5c{bottom:816.918667pt;}
.y128{bottom:820.824000pt;}
.yb0{bottom:822.845333pt;}
.y1d8{bottom:824.506667pt;}
.y9{bottom:826.133333pt;}
.yae{bottom:827.296000pt;}
.y20d{bottom:828.490667pt;}
.yed{bottom:831.281333pt;}
.yaf{bottom:832.733333pt;}
.y5b{bottom:833.656000pt;}
.y127{bottom:834.269333pt;}
.y1d7{bottom:839.848000pt;}
.y8{bottom:842.869333pt;}
.y20c{bottom:843.833333pt;}
.yad{bottom:844.033333pt;}
.yeb{bottom:848.018667pt;}
.y5a{bottom:850.393333pt;}
.yec{bottom:852.840000pt;}
.y126{bottom:853.969333pt;}
.y1d6{bottom:855.190667pt;}
.yab{bottom:856.168000pt;}
.yac{bottom:856.320000pt;}
.y20b{bottom:859.176000pt;}
.y7{bottom:859.606667pt;}
.ya9{bottom:860.770667pt;}
.yea{bottom:864.754667pt;}
.yaa{bottom:866.208000pt;}
.y59{bottom:867.130667pt;}
.y1d5{bottom:870.533333pt;}
.y20a{bottom:874.518667pt;}
.ya8{bottom:877.508000pt;}
.y125{bottom:881.268000pt;}
.ye8{bottom:881.492000pt;}
.y58{bottom:883.868000pt;}
.y1d4{bottom:885.876000pt;}
.ye9{bottom:886.314667pt;}
.y209{bottom:889.861333pt;}
.ya7{bottom:894.245333pt;}
.ye7{bottom:898.229333pt;}
.y124{bottom:898.364000pt;}
.y6{bottom:900.404000pt;}
.y57{bottom:900.605333pt;}
.y1d3{bottom:901.218667pt;}
.y208{bottom:905.204000pt;}
.ya6{bottom:910.982667pt;}
.ye6{bottom:914.966667pt;}
.y123{bottom:915.460000pt;}
.y1d2{bottom:916.561333pt;}
.y56{bottom:917.342667pt;}
.y207{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.ya5{bottom:927.720000pt;}
.ye5{bottom:931.704000pt;}
.y1d1{bottom:931.904000pt;}
.y55{bottom:934.080000pt;}
.y206{bottom:935.889333pt;}
.ya4{bottom:944.456000pt;}
.y1d0{bottom:947.246667pt;}
.ye4{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y54{bottom:950.817333pt;}
.y205{bottom:951.230667pt;}
.y122{bottom:960.576000pt;}
.ya2{bottom:961.193333pt;}
.y1cf{bottom:962.589333pt;}
.ye3{bottom:965.178667pt;}
.ya3{bottom:966.016000pt;}
.y204{bottom:966.573333pt;}
.y53{bottom:967.554667pt;}
.y121{bottom:970.617333pt;}
.y3{bottom:975.722667pt;}
.ya1{bottom:981.916000pt;}
.y52{bottom:984.290667pt;}
.ye2{bottom:986.738667pt;}
.y1{bottom:1014.377333pt;}
.y51{bottom:1043.020000pt;}
.h1d{height:22.284493pt;}
.h8{height:22.673858pt;}
.h1a{height:23.400311pt;}
.h17{height:23.521527pt;}
.h16{height:24.531396pt;}
.h18{height:24.760382pt;}
.hd{height:28.947524pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.h15{height:30.949519pt;}
.hc{height:33.771789pt;}
.hb{height:34.032144pt;}
.h14{height:36.666735pt;}
.he{height:38.596538pt;}
.h1b{height:38.829645pt;}
.hf{height:38.894088pt;}
.h4{height:39.000258pt;}
.h11{height:43.421286pt;}
.h10{height:43.756032pt;}
.h19{height:44.376858pt;}
.h1c{height:44.382191pt;}
.h2{height:45.272024pt;}
.h13{height:48.245551pt;}
.h12{height:48.617488pt;}
.h7{height:56.234741pt;}
.h6{height:56.240075pt;}
.h3{height:61.782479pt;}
.h5{height:87.512064pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:26.021437pt;}
.x3{left:46.804000pt;}
.x1{left:48.000000pt;}
.x2{left:50.765941pt;}
.xe2{left:76.686667pt;}
.xea{left:166.952000pt;}
.xe8{left:196.050667pt;}
.xe9{left:207.976000pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.xc7{left:223.916000pt;}
.xdc{left:227.093333pt;}
.xc0{left:227.989333pt;}
.x46{left:232.398667pt;}
.x45{left:235.118667pt;}
.xc1{left:238.742667pt;}
.xaa{left:240.150667pt;}
.x6{left:241.085333pt;}
.xab{left:243.120000pt;}
.x78{left:245.316000pt;}
.x5f{left:248.661333pt;}
.xa{left:251.365333pt;}
.xd0{left:254.568000pt;}
.x10{left:258.273333pt;}
.x90{left:261.654667pt;}
.x11{left:264.914667pt;}
.x99{left:268.169333pt;}
.x39{left:270.698667pt;}
.xba{left:273.418667pt;}
.x8{left:275.297333pt;}
.x33{left:276.568000pt;}
.xac{left:278.645333pt;}
.xb0{left:279.982667pt;}
.xc8{left:281.858667pt;}
.xd{left:284.162667pt;}
.x9{left:285.461333pt;}
.xc3{left:288.362667pt;}
.x34{left:289.852000pt;}
.xae{left:290.780000pt;}
.x35{left:293.238667pt;}
.xe{left:295.350667pt;}
.xc4{left:298.370667pt;}
.xad{left:300.753333pt;}
.xf{left:301.992000pt;}
.x57{left:303.682667pt;}
.x65{left:305.449333pt;}
.x36{left:306.522667pt;}
.x1c{left:308.733333pt;}
.x66{left:313.458667pt;}
.x1d{left:315.374667pt;}
.xaf{left:316.933333pt;}
.x1e{left:318.762667pt;}
.x72{left:323.897333pt;}
.x1f{left:325.404000pt;}
.xbb{left:328.417333pt;}
.x52{left:332.072000pt;}
.xce{left:333.428000pt;}
.xbc{left:335.625333pt;}
.x3a{left:341.388000pt;}
.x53{left:342.998667pt;}
.x3b{left:344.377333pt;}
.xcf{left:346.712000pt;}
.xb1{left:348.281333pt;}
.xcb{left:350.192000pt;}
.x3c{left:351.652000pt;}
.xb9{left:353.342667pt;}
.x88{left:356.898667pt;}
.xb2{left:358.414667pt;}
.x54{left:359.844000pt;}
.x44{left:360.756000pt;}
.x89{left:362.212000pt;}
.xcc{left:363.476000pt;}
.x3d{left:364.613333pt;}
.x80{left:365.568000pt;}
.x18{left:367.178667pt;}
.xc9{left:369.933333pt;}
.xb7{left:373.636000pt;}
.x75{left:379.484000pt;}
.x19{left:380.461333pt;}
.x76{left:383.172000pt;}
.x92{left:388.150667pt;}
.xa6{left:391.866667pt;}
.xca{left:393.590667pt;}
.x2b{left:395.990667pt;}
.x93{left:398.117333pt;}
.xa7{left:401.980000pt;}
.x7c{left:403.268000pt;}
.xb8{left:405.220000pt;}
.xde{left:407.372000pt;}
.x2c{left:409.274667pt;}
.x7d{left:411.472000pt;}
.x58{left:415.650667pt;}
.xa5{left:419.988000pt;}
.x27{left:422.732000pt;}
.x59{left:424.618667pt;}
.x28{left:426.052000pt;}
.xd2{left:428.498667pt;}
.xb3{left:430.369333pt;}
.x64{left:432.580000pt;}
.x29{left:434.457333pt;}
.xdd{left:436.584000pt;}
.xc5{left:439.714667pt;}
.x9e{left:441.350667pt;}
.x81{left:444.964000pt;}
.x82{left:451.013333pt;}
.x2a{left:452.374667pt;}
.xa3{left:456.318667pt;}
.xe0{left:457.293333pt;}
.xdf{left:459.408000pt;}
.xb4{left:462.838667pt;}
.xa1{left:467.509333pt;}
.xa4{left:468.866667pt;}
.xb5{left:470.849333pt;}
.x4c{left:472.168000pt;}
.x4a{left:475.984000pt;}
.xa2{left:477.638667pt;}
.x2d{left:478.789333pt;}
.x4d{left:480.178667pt;}
.x4e{left:487.012000pt;}
.x4f{left:490.333333pt;}
.x2e{left:492.073333pt;}
.x69{left:493.936000pt;}
.x2f{left:498.410667pt;}
.xd7{left:500.657333pt;}
.x4b{left:505.410667pt;}
.x50{left:507.734667pt;}
.x30{left:511.694667pt;}
.xa8{left:513.506667pt;}
.x70{left:515.461333pt;}
.xd9{left:516.716000pt;}
.x97{left:519.801333pt;}
.x51{left:521.749333pt;}
.x71{left:523.666667pt;}
.x9b{left:525.266667pt;}
.xd8{left:526.356000pt;}
.x73{left:528.169333pt;}
.x98{left:529.920000pt;}
.x47{left:532.774667pt;}
.x48{left:536.096000pt;}
.xbf{left:537.912000pt;}
.x55{left:540.004000pt;}
.xb6{left:542.640000pt;}
.x22{left:544.706667pt;}
.x49{left:548.185333pt;}
.x9c{left:549.406667pt;}
.x56{left:553.288000pt;}
.x77{left:554.798667pt;}
.x23{left:557.990667pt;}
.x60{left:559.068000pt;}
.x3e{left:560.358667pt;}
.x37{left:561.444000pt;}
.x3f{left:563.348000pt;}
.x40{left:570.622667pt;}
.x61{left:572.350667pt;}
.x91{left:573.321333pt;}
.x38{left:574.726667pt;}
.x83{left:575.842667pt;}
.xa9{left:578.028000pt;}
.x87{left:579.270667pt;}
.xb{left:580.204000pt;}
.x84{left:581.892000pt;}
.x41{left:583.584000pt;}
.xc{left:586.845333pt;}
.x6e{left:587.917333pt;}
.x12{left:589.605333pt;}
.x6f{left:593.230667pt;}
.x13{left:596.246667pt;}
.xcd{left:598.221333pt;}
.x79{left:599.157333pt;}
.x8e{left:604.108000pt;}
.xd5{left:606.054667pt;}
.x7a{left:607.361333pt;}
.x86{left:610.084000pt;}
.x8f{left:612.118667pt;}
.x67{left:614.464000pt;}
.x9f{left:616.341333pt;}
.xd1{left:617.562667pt;}
.xd6{left:619.337333pt;}
.x62{left:620.717333pt;}
.x68{left:622.473333pt;}
.x8c{left:624.112000pt;}
.xa0{left:626.466667pt;}
.x94{left:628.593333pt;}
.x8d{left:630.162667pt;}
.x9a{left:631.553333pt;}
.xc6{left:633.770667pt;}
.x5a{left:637.582667pt;}
.x95{left:638.717333pt;}
.xe7{left:641.634667pt;}
.x6c{left:642.589333pt;}
.x5b{left:650.866667pt;}
.x9d{left:653.934667pt;}
.xe3{left:655.373333pt;}
.xbd{left:656.350667pt;}
.xc2{left:660.782667pt;}
.x5d{left:662.516000pt;}
.xda{left:664.217333pt;}
.x31{left:666.730667pt;}
.xdb{left:669.929333pt;}
.x1a{left:672.141333pt;}
.x6a{left:673.062667pt;}
.x5e{left:675.800000pt;}
.xe4{left:677.906667pt;}
.x32{left:680.014667pt;}
.xe1{left:682.180000pt;}
.x74{left:683.498667pt;}
.x1b{left:685.425333pt;}
.xd3{left:686.414667pt;}
.xe5{left:690.772000pt;}
.x6d{left:695.741333pt;}
.xd4{left:699.698667pt;}
.x96{left:701.569333pt;}
.x7e{left:702.969333pt;}
.x24{left:704.601333pt;}
.x25{left:707.922667pt;}
.x7f{left:709.020000pt;}
.x20{left:710.172000pt;}
.x6b{left:712.842667pt;}
.xe6{left:714.681333pt;}
.x26{left:716.328000pt;}
.x42{left:717.737333pt;}
.x14{left:720.298667pt;}
.x21{left:723.454667pt;}
.x15{left:726.940000pt;}
.x43{left:728.001333pt;}
.x8a{left:730.213333pt;}
.x16{left:733.608000pt;}
.xbe{left:735.160000pt;}
.x8b{left:736.264000pt;}
.x7b{left:738.305333pt;}
.x17{left:740.250667pt;}
.x85{left:741.189333pt;}
.x5c{left:742.694667pt;}
.x63{left:744.717333pt;}
}




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