
    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_3d39175f7f27434b7fc50197.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_9cdb7776eea487e0039e9750.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0890323a8c0a9d7ba5f32ad8.woff2')format("woff");}.ff3{font-family:ff3;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: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_d71685b4c6481ec93f9a4df4.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_df7bf25ff540cfc63e1dbff6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b309e6831553dd832bbd104b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.234000;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;}
.ma{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);}
.m1{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);}
.m25{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);}
.m27{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);}
.m1b{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);}
.m22{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m6{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);}
.m10{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);}
.md{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);}
.m12{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);}
.m26{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);}
.m1c{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);}
.m24{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);}
.m19{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m1d{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);}
.mc{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);}
.m14{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m21{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);}
.mb{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);}
.m5{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);}
.m11{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);}
.m16{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);}
.m9{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);}
.m8{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);}
.m1f{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);}
.mf{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);}
.m28{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);}
.m15{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);}
.m1e{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);}
.m20{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);}
.m1a{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);}
.m3{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.v4{vertical-align:-2.616000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.488000px;}
.v6{vertical-align:2.856000px;}
.v5{vertical-align:26.166000px;}
.v1{vertical-align:32.874000px;}
.v2{vertical-align:41.004000px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000422px;}
.ls11{letter-spacing:0.001133px;}
.ls12{letter-spacing:0.003178px;}
.ls18{letter-spacing:0.004800px;}
.ls5{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls1{letter-spacing:10.461300px;}
.ls3{letter-spacing:11.954850px;}
.ls16{letter-spacing:12.148359px;}
.ls17{letter-spacing:12.240196px;}
.lsa{letter-spacing:12.339483px;}
.ls9{letter-spacing:12.345483px;}
.ls15{letter-spacing:13.448400px;}
.ls14{letter-spacing:13.454400px;}
.ls7{letter-spacing:14.094088px;}
.ls8{letter-spacing:14.100088px;}
.ls6{letter-spacing:15.242778px;}
.lsb{letter-spacing:16.019861px;}
.lsd{letter-spacing:18.111483px;}
.lse{letter-spacing:18.136200px;}
.lsc{letter-spacing:18.729292px;}
.ls10{letter-spacing:33.772200px;}
.lsf{letter-spacing:34.371292px;}
.ls2{letter-spacing:37.063654px;}
.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;}
}
.ws0{word-spacing:-28.532313px;}
.ws74{word-spacing:-14.943900px;}
.ws76{word-spacing:-13.449600px;}
.ws2a{word-spacing:-11.955150px;}
.ws6{word-spacing:-10.460700px;}
.ws8a{word-spacing:-3.347434px;}
.ws61{word-spacing:-3.168107px;}
.ws5b{word-spacing:-3.108331px;}
.ws89{word-spacing:-2.869229px;}
.ws58{word-spacing:-2.809453px;}
.ws80{word-spacing:-2.689902px;}
.ws88{word-spacing:-2.510575px;}
.ws3b{word-spacing:-2.391024px;}
.ws7f{word-spacing:-2.271473px;}
.ws98{word-spacing:-2.044339px;}
.ws3{word-spacing:-1.908367px;}
.wsbd{word-spacing:-1.882944px;}
.ws21{word-spacing:-1.853044px;}
.ws3c{word-spacing:-1.793268px;}
.ws99{word-spacing:-1.775347px;}
.wsa0{word-spacing:-1.721549px;}
.ws44{word-spacing:-1.673717px;}
.ws91{word-spacing:-1.613941px;}
.wsa3{word-spacing:-1.560154px;}
.ws8f{word-spacing:-1.494390px;}
.ws81{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.ws9e{word-spacing:-1.291162px;}
.wsa1{word-spacing:-1.237363px;}
.wsae{word-spacing:-1.183565px;}
.ws82{word-spacing:-1.135736px;}
.wsb4{word-spacing:-1.129766px;}
.wsb3{word-spacing:-1.075968px;}
.ws59{word-spacing:-0.956410px;}
.ws5d{word-spacing:-0.777083px;}
.ws3a{word-spacing:-0.717307px;}
.ws3d{word-spacing:-0.657532px;}
.wsaa{word-spacing:-0.537984px;}
.ws68{word-spacing:-0.537980px;}
.ws79{word-spacing:-0.418429px;}
.ws25{word-spacing:-0.358654px;}
.ws94{word-spacing:-0.322790px;}
.ws2c{word-spacing:-0.298878px;}
.wsac{word-spacing:-0.268992px;}
.ws31{word-spacing:-0.239102px;}
.ws15{word-spacing:-0.215194px;}
.ws26{word-spacing:-0.179327px;}
.ws18{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.ws1b{word-spacing:-0.107597px;}
.ws20{word-spacing:-0.059776px;}
.ws16{word-spacing:-0.053798px;}
.ws2b{word-spacing:-0.047821px;}
.ws7{word-spacing:-0.041843px;}
.wsbb{word-spacing:-0.006154px;}
.ws1{word-spacing:0.000000px;}
.ws77{word-spacing:0.053798px;}
.ws2d{word-spacing:0.059776px;}
.ws19{word-spacing:0.107597px;}
.ws23{word-spacing:0.119551px;}
.ws12{word-spacing:0.143462px;}
.ws78{word-spacing:0.161395px;}
.ws24{word-spacing:0.179327px;}
.ws8{word-spacing:0.209214px;}
.ws1c{word-spacing:0.215194px;}
.ws3e{word-spacing:0.239102px;}
.ws1a{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws4d{word-spacing:0.298878px;}
.ws6b{word-spacing:0.358654px;}
.wsc4{word-spacing:0.376589px;}
.ws4e{word-spacing:0.418429px;}
.ws8c{word-spacing:0.478205px;}
.ws7e{word-spacing:0.484186px;}
.ws95{word-spacing:0.537984px;}
.ws67{word-spacing:0.597756px;}
.ws43{word-spacing:0.657532px;}
.ws50{word-spacing:0.672778px;}
.ws53{word-spacing:0.673200px;}
.ws52{word-spacing:0.680208px;}
.ws51{word-spacing:0.682608px;}
.wsa5{word-spacing:0.699379px;}
.ws73{word-spacing:0.717307px;}
.ws7d{word-spacing:0.753178px;}
.ws4f{word-spacing:0.777083px;}
.ws8e{word-spacing:0.836858px;}
.wsbe{word-spacing:0.860774px;}
.ws45{word-spacing:0.956410px;}
.ws49{word-spacing:1.016185px;}
.ws6e{word-spacing:1.075961px;}
.ws5a{word-spacing:1.135736px;}
.ws42{word-spacing:1.255288px;}
.ws97{word-spacing:1.291162px;}
.ws41{word-spacing:1.315063px;}
.ws47{word-spacing:1.374839px;}
.wsc0{word-spacing:1.398758px;}
.ws87{word-spacing:1.494390px;}
.ws66{word-spacing:1.554166px;}
.ws96{word-spacing:1.560154px;}
.ws3f{word-spacing:1.613941px;}
.ws2f{word-spacing:1.673717px;}
.ws55{word-spacing:1.733492px;}
.ws2e{word-spacing:1.793268px;}
.wsa8{word-spacing:1.829146px;}
.ws90{word-spacing:1.853044px;}
.wsad{word-spacing:1.882944px;}
.ws70{word-spacing:1.912819px;}
.ws32{word-spacing:1.972595px;}
.ws9{word-spacing:2.008454px;}
.ws5f{word-spacing:2.092146px;}
.ws13{word-spacing:2.098138px;}
.ws1f{word-spacing:2.271473px;}
.ws7c{word-spacing:2.331248px;}
.ws6c{word-spacing:2.405137px;}
.ws69{word-spacing:2.409508px;}
.ws37{word-spacing:2.450800px;}
.ws8d{word-spacing:2.510575px;}
.ws4a{word-spacing:2.630126px;}
.ws46{word-spacing:2.689902px;}
.wsb2{word-spacing:2.743718px;}
.ws27{word-spacing:2.869229px;}
.ws4b{word-spacing:2.929004px;}
.wsc2{word-spacing:2.958912px;}
.ws17{word-spacing:3.012710px;}
.ws7b{word-spacing:3.048556px;}
.ws84{word-spacing:3.108331px;}
.ws1d{word-spacing:3.219667px;}
.ws5e{word-spacing:3.227882px;}
.wsb5{word-spacing:3.227904px;}
.ws40{word-spacing:3.347434px;}
.ws93{word-spacing:3.407209px;}
.ws64{word-spacing:3.526760px;}
.ws1e{word-spacing:3.586536px;}
.ws75{word-spacing:3.646312px;}
.ws92{word-spacing:3.765863px;}
.ws38{word-spacing:3.825638px;}
.ws6f{word-spacing:3.885414px;}
.wsb8{word-spacing:3.927283px;}
.ws4c{word-spacing:4.004965px;}
.ws5c{word-spacing:4.124516px;}
.ws48{word-spacing:4.303843px;}
.wsbc{word-spacing:4.303872px;}
.ws35{word-spacing:4.602721px;}
.ws85{word-spacing:4.662497px;}
.ws28{word-spacing:4.841824px;}
.ws65{word-spacing:4.901599px;}
.ws8b{word-spacing:4.961375px;}
.ws7a{word-spacing:5.021150px;}
.ws71{word-spacing:5.080926px;}
.ws86{word-spacing:5.379804px;}
.ws54{word-spacing:5.559131px;}
.ws30{word-spacing:5.618906px;}
.ws9b{word-spacing:5.648832px;}
.ws39{word-spacing:5.858009px;}
.ws14{word-spacing:5.864026px;}
.ws10{word-spacing:6.067206px;}
.wsa6{word-spacing:6.133018px;}
.ws11{word-spacing:6.150892px;}
.ws36{word-spacing:6.156887px;}
.ws63{word-spacing:6.216662px;}
.wsaf{word-spacing:6.939994px;}
.ws34{word-spacing:7.053521px;}
.ws33{word-spacing:7.113296px;}
.wsb6{word-spacing:7.693171px;}
.ws62{word-spacing:8.009930px;}
.wsba{word-spacing:8.392550px;}
.ws72{word-spacing:8.428360px;}
.wse{word-spacing:8.661460px;}
.ws9c{word-spacing:9.141005px;}
.wsb7{word-spacing:9.143366px;}
.wsa9{word-spacing:9.145776px;}
.ws56{word-spacing:9.205442px;}
.ws83{word-spacing:9.743423px;}
.wsb0{word-spacing:10.705882px;}
.ws9f{word-spacing:11.674253px;}
.ws29{word-spacing:11.904929px;}
.wsc6{word-spacing:12.857818px;}
.ws5{word-spacing:12.929425px;}
.wsb1{word-spacing:13.386749px;}
.wsc3{word-spacing:13.389542px;}
.wsa4{word-spacing:13.395802px;}
.ws9a{word-spacing:13.449600px;}
.wsab{word-spacing:13.664794px;}
.wsc5{word-spacing:13.772390px;}
.wsbf{word-spacing:14.256576px;}
.ws57{word-spacing:14.884124px;}
.ws4{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.wsa2{word-spacing:16.300915px;}
.wsa7{word-spacing:16.620883px;}
.ws9d{word-spacing:16.623706px;}
.wsc1{word-spacing:16.731302px;}
.wsb9{word-spacing:16.785101px;}
.wsd{word-spacing:17.699504px;}
.ws60{word-spacing:18.470660px;}
.wsf{word-spacing:27.448877px;}
.ws6d{word-spacing:300.432166px;}
.ws6a{word-spacing:301.448351px;}
._43{margin-left:-21.184592px;}
._1{margin-left:-11.943245px;}
._22{margin-left:-7.456816px;}
._a{margin-left:-5.971622px;}
._5{margin-left:-4.644551px;}
._13{margin-left:-3.347434px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._7{width:2.301354px;}
._2e{width:3.544841px;}
._28{width:4.550513px;}
._42{width:11.137912px;}
._4{width:12.971268px;}
._d{width:14.824386px;}
._b{width:16.623706px;}
._8{width:18.291456px;}
._25{width:19.292384px;}
._12{width:20.742133px;}
._10{width:22.057196px;}
._15{width:23.439602px;}
._23{width:24.687323px;}
._6{width:25.946136px;}
._c{width:27.616327px;}
._14{width:29.469371px;}
._26{width:31.569084px;}
._0{width:33.355008px;}
._9{width:34.538573px;}
._24{width:35.745809px;}
._41{width:38.424689px;}
._11{width:40.348530px;}
._45{width:41.626924px;}
._46{width:53.152819px;}
._44{width:61.868160px;}
._39{width:71.713267px;}
._38{width:88.229376px;}
._21{width:94.147200px;}
._1d{width:107.166413px;}
._1a{width:120.293222px;}
._16{width:133.904218px;}
._37{width:144.717696px;}
._40{width:163.009152px;}
._3b{width:176.028365px;}
._35{width:179.740454px;}
._20{width:187.810214px;}
._36{width:191.522304px;}
._3a{width:194.158426px;}
._3c{width:195.395789px;}
._3f{width:198.139507px;}
._3e{width:199.968653px;}
._19{width:203.465549px;}
._3d{width:215.354995px;}
._33{width:216.538560px;}
._1e{width:242.200397px;}
._34{width:245.589696px;}
._30{width:249.570778px;}
._2f{width:252.045504px;}
._32{width:256.833562px;}
._31{width:266.086886px;}
._1b{width:269.422387px;}
._17{width:301.002048px;}
._18{width:341.686867px;}
._1f{width:444.770822px;}
._1c{width:458.224022px;}
._29{width:633.622502px;}
._2b{width:644.108880px;}
._2a{width:652.932835px;}
._2c{width:691.131878px;}
._27{width:892.864180px;}
._e{width:913.138557px;}
._2d{width:2487.194700px;}
._f{width:2511.104700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs3{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs8{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.739201px;}
.ya{bottom:3.425340px;}
.y9{bottom:14.151273px;}
.y2{bottom:30.271042px;}
.y4a{bottom:31.890000px;}
.y12f{bottom:88.993500px;}
.y1b4{bottom:89.674500px;}
.y10e{bottom:99.202500px;}
.ycc{bottom:100.419000px;}
.y21{bottom:102.823500px;}
.y1b3{bottom:106.935000px;}
.y12e{bottom:107.823000px;}
.y17c{bottom:112.614000px;}
.y49{bottom:117.051000px;}
.y10d{bottom:118.032000px;}
.ycb{bottom:119.248500px;}
.y20{bottom:120.711000px;}
.y16e{bottom:121.041000px;}
.y1b2{bottom:124.195500px;}
.y12d{bottom:126.652500px;}
.y17b{bottom:130.188000px;}
.y141{bottom:132.376500px;}
.y48{bottom:135.880500px;}
.y10c{bottom:136.861500px;}
.yca{bottom:138.078000px;}
.y1f{bottom:138.600000px;}
.y16d{bottom:139.870500px;}
.y1b1{bottom:141.456000px;}
.y12c{bottom:145.482000px;}
.y9c{bottom:146.448000px;}
.y7f{bottom:147.025500px;}
.y17a{bottom:147.762000px;}
.y47{bottom:154.710000px;}
.y1ea{bottom:155.338500px;}
.y10b{bottom:155.691000px;}
.y1e{bottom:156.487500px;}
.yc9{bottom:156.907500px;}
.y16c{bottom:158.700000px;}
.y1b0{bottom:158.716500px;}
.y12b{bottom:164.311500px;}
.y140{bottom:164.365500px;}
.y7e{bottom:165.855000px;}
.y1e9{bottom:172.599000px;}
.y46{bottom:173.539500px;}
.y179{bottom:174.301500px;}
.y1d{bottom:174.375000px;}
.yc8{bottom:175.737000px;}
.y1af{bottom:175.977000px;}
.y16b{bottom:177.529500px;}
.y12a{bottom:183.141000px;}
.y7d{bottom:184.684500px;}
.y10a{bottom:189.256500px;}
.y1e8{bottom:189.858000px;}
.y178{bottom:191.877000px;}
.y1c{bottom:192.264000px;}
.y45{bottom:192.369000px;}
.y1ae{bottom:193.237500px;}
.yc7{bottom:194.566500px;}
.y16a{bottom:196.359000px;}
.y129{bottom:201.970500px;}
.y7c{bottom:203.514000px;}
.y1e7{bottom:207.118500px;}
.y109{bottom:208.489500px;}
.y1b{bottom:210.151500px;}
.y1ad{bottom:210.498000px;}
.y44{bottom:211.198500px;}
.yc6{bottom:213.396000px;}
.y169{bottom:215.188500px;}
.y177{bottom:218.416500px;}
.y128{bottom:220.800000px;}
.y7b{bottom:222.343500px;}
.yfc{bottom:223.366500px;}
.y1e6{bottom:224.379000px;}
.y1ac{bottom:227.757000px;}
.y1a{bottom:228.039000px;}
.y43{bottom:230.028000px;}
.yc5{bottom:232.225500px;}
.y168{bottom:234.018000px;}
.y176{bottom:235.990500px;}
.y127{bottom:239.629500px;}
.y7a{bottom:241.173000px;}
.y1e5{bottom:241.639500px;}
.yfb{bottom:242.599500px;}
.y1ab{bottom:245.017500px;}
.y42{bottom:248.857500px;}
.yc4{bottom:251.055000px;}
.y167{bottom:252.847500px;}
.y175{bottom:253.564500px;}
.y126{bottom:258.459000px;}
.y1e4{bottom:258.900000px;}
.y79{bottom:260.002500px;}
.y1aa{bottom:262.278000px;}
.y41{bottom:267.687000px;}
.yc3{bottom:269.884500px;}
.yfa{bottom:270.829500px;}
.y166{bottom:271.677000px;}
.y1e3{bottom:276.160500px;}
.y125{bottom:277.288500px;}
.y78{bottom:278.832000px;}
.y1a9{bottom:279.538500px;}
.y174{bottom:280.105500px;}
.y40{bottom:286.516500px;}
.yc2{bottom:288.714000px;}
.y165{bottom:290.506500px;}
.y1e2{bottom:293.421000px;}
.y124{bottom:296.118000px;}
.y1a8{bottom:296.799000px;}
.y77{bottom:297.661500px;}
.y173{bottom:297.679500px;}
.y3f{bottom:305.346000px;}
.y19{bottom:307.299000px;}
.y164{bottom:309.336000px;}
.y1e1{bottom:310.681500px;}
.yc1{bottom:312.025500px;}
.y1a7{bottom:314.059500px;}
.y123{bottom:314.947500px;}
.y172{bottom:315.253500px;}
.y76{bottom:316.491000px;}
.y3e{bottom:324.174000px;}
.y18{bottom:325.186500px;}
.yf3{bottom:325.380000px;}
.y1e0{bottom:327.940500px;}
.y163{bottom:328.165500px;}
.y1a6{bottom:331.320000px;}
.y171{bottom:332.827500px;}
.y122{bottom:333.777000px;}
.y75{bottom:335.320500px;}
.y3d{bottom:343.003500px;}
.y17{bottom:343.074000px;}
.yf2{bottom:344.209500px;}
.y1df{bottom:345.201000px;}
.yc0{bottom:345.649500px;}
.y162{bottom:346.995000px;}
.y1a5{bottom:348.580500px;}
.y170{bottom:350.401500px;}
.y121{bottom:352.606500px;}
.y74{bottom:354.150000px;}
.y13f{bottom:356.787000px;}
.y16{bottom:360.963000px;}
.y3c{bottom:361.833000px;}
.y1de{bottom:362.461500px;}
.yf1{bottom:363.039000px;}
.ybf{bottom:364.479000px;}
.y161{bottom:365.824500px;}
.y1a4{bottom:365.839500px;}
.y16f{bottom:367.977000px;}
.y120{bottom:371.436000px;}
.y73{bottom:372.979500px;}
.y1dd{bottom:379.722000px;}
.y3b{bottom:380.662500px;}
.yf0{bottom:381.867000px;}
.y1a3{bottom:383.100000px;}
.ybe{bottom:383.308500px;}
.y160{bottom:384.654000px;}
.y11f{bottom:390.265500px;}
.y72{bottom:391.809000px;}
.y1dc{bottom:396.982500px;}
.y15{bottom:399.024000px;}
.y3a{bottom:399.492000px;}
.y1a2{bottom:400.360500px;}
.yef{bottom:400.696500px;}
.y15f{bottom:403.483500px;}
.ybd{bottom:406.621500px;}
.y11e{bottom:409.095000px;}
.y71{bottom:410.638500px;}
.y1db{bottom:414.243000px;}
.y14{bottom:416.913000px;}
.y1a1{bottom:417.621000px;}
.y39{bottom:418.321500px;}
.yee{bottom:419.526000px;}
.y15e{bottom:422.313000px;}
.y11d{bottom:427.923000px;}
.y70{bottom:429.468000px;}
.y1da{bottom:431.503500px;}
.y13{bottom:434.800500px;}
.y1a0{bottom:434.881500px;}
.y38{bottom:437.151000px;}
.yed{bottom:438.355500px;}
.ybc{bottom:440.245500px;}
.y15d{bottom:441.142500px;}
.y11c{bottom:446.752500px;}
.y6f{bottom:448.297500px;}
.y1d9{bottom:448.764000px;}
.y19f{bottom:452.142000px;}
.y37{bottom:455.980500px;}
.yec{bottom:457.185000px;}
.ybb{bottom:459.075000px;}
.y15c{bottom:459.972000px;}
.y11b{bottom:465.582000px;}
.y1d8{bottom:466.024500px;}
.y6e{bottom:467.127000px;}
.y19e{bottom:469.402500px;}
.y12{bottom:470.622000px;}
.y36{bottom:474.810000px;}
.yeb{bottom:476.014500px;}
.yba{bottom:477.904500px;}
.y15b{bottom:478.801500px;}
.y1d7{bottom:483.283500px;}
.y11a{bottom:484.411500px;}
.y6d{bottom:485.956500px;}
.y19d{bottom:486.663000px;}
.yea{bottom:494.844000px;}
.yb9{bottom:496.734000px;}
.y15a{bottom:497.631000px;}
.y35{bottom:498.123000px;}
.y1d6{bottom:500.544000px;}
.y119{bottom:503.241000px;}
.y19c{bottom:503.923500px;}
.y6c{bottom:504.786000px;}
.y11{bottom:506.442000px;}
.ye9{bottom:513.673500px;}
.yb8{bottom:515.563500px;}
.y159{bottom:516.460500px;}
.y1d5{bottom:517.804500px;}
.y19b{bottom:521.182500px;}
.y118{bottom:522.070500px;}
.y6b{bottom:523.615500px;}
.y10{bottom:524.329500px;}
.yf9{bottom:529.974000px;}
.ye8{bottom:532.503000px;}
.yb7{bottom:534.393000px;}
.y1d4{bottom:535.065000px;}
.y158{bottom:535.290000px;}
.y19a{bottom:538.443000px;}
.y9b{bottom:538.534500px;}
.y117{bottom:540.900000px;}
.yf{bottom:542.218500px;}
.y6a{bottom:542.445000px;}
.yf8{bottom:549.207000px;}
.ye7{bottom:551.332500px;}
.y1d3{bottom:552.325500px;}
.yb6{bottom:553.222500px;}
.y157{bottom:554.118000px;}
.y199{bottom:555.703500px;}
.y9a{bottom:557.364000px;}
.y13e{bottom:558.601500px;}
.y116{bottom:559.729500px;}
.ye{bottom:560.106000px;}
.y69{bottom:561.274500px;}
.y1d2{bottom:569.586000px;}
.ye6{bottom:570.162000px;}
.yb5{bottom:572.052000px;}
.y156{bottom:572.947500px;}
.y198{bottom:572.964000px;}
.y34{bottom:573.273000px;}
.y99{bottom:576.193500px;}
.yf7{bottom:577.405500px;}
.y13d{bottom:577.431000px;}
.yd{bottom:577.993500px;}
.y108{bottom:578.415000px;}
.y115{bottom:578.559000px;}
.y68{bottom:580.104000px;}
.y1d1{bottom:586.846500px;}
.ye5{bottom:588.991500px;}
.y197{bottom:590.224500px;}
.yb4{bottom:590.881500px;}
.y155{bottom:591.777000px;}
.yc{bottom:595.882500px;}
.y13c{bottom:596.260500px;}
.y107{bottom:597.244500px;}
.y114{bottom:597.388500px;}
.y67{bottom:598.932000px;}
.y98{bottom:599.506500px;}
.y1d0{bottom:604.107000px;}
.y196{bottom:607.485000px;}
.ye4{bottom:607.821000px;}
.yb3{bottom:609.711000px;}
.y154{bottom:610.606500px;}
.y33{bottom:610.663500px;}
.yb{bottom:613.770000px;}
.y13b{bottom:615.090000px;}
.y106{bottom:616.074000px;}
.y113{bottom:616.218000px;}
.y66{bottom:617.761500px;}
.y1cf{bottom:621.366000px;}
.y195{bottom:624.745500px;}
.ye3{bottom:626.650500px;}
.yb2{bottom:628.540500px;}
.y153{bottom:629.436000px;}
.y32{bottom:630.120000px;}
.y13a{bottom:633.919500px;}
.y105{bottom:634.903500px;}
.y8{bottom:636.141055px;}
.y65{bottom:636.591000px;}
.y1ce{bottom:638.626500px;}
.y112{bottom:639.531000px;}
.ye2{bottom:645.480000px;}
.y97{bottom:646.312500px;}
.y194{bottom:646.488000px;}
.yb1{bottom:647.370000px;}
.y152{bottom:648.265500px;}
.y31{bottom:649.576500px;}
.y139{bottom:652.749000px;}
.y104{bottom:653.733000px;}
.y64{bottom:655.420500px;}
.y1cd{bottom:655.887000px;}
.y96{bottom:662.751000px;}
.ye1{bottom:664.309500px;}
.yb0{bottom:666.199500px;}
.y151{bottom:667.095000px;}
.y111{bottom:667.524000px;}
.y30{bottom:669.034500px;}
.y138{bottom:671.578500px;}
.y103{bottom:672.562500px;}
.y1cc{bottom:673.147500px;}
.y63{bottom:674.250000px;}
.y95{bottom:679.189500px;}
.y193{bottom:682.171500px;}
.yaf{bottom:685.029000px;}
.y150{bottom:685.924500px;}
.y110{bottom:686.757000px;}
.y2f{bottom:688.491000px;}
.y137{bottom:690.408000px;}
.y102{bottom:691.392000px;}
.ye0{bottom:692.628000px;}
.y62{bottom:693.079500px;}
.y94{bottom:695.628000px;}
.y192{bottom:699.745500px;}
.yde{bottom:702.879000px;}
.yae{bottom:703.858500px;}
.y14f{bottom:704.754000px;}
.y10f{bottom:705.990000px;}
.y1cb{bottom:707.668500px;}
.y2e{bottom:707.947500px;}
.y136{bottom:709.237500px;}
.y101{bottom:710.221500px;}
.y61{bottom:711.909000px;}
.ydf{bottom:712.996500px;}
.y191{bottom:717.319500px;}
.y92{bottom:719.269500px;}
.yad{bottom:722.686500px;}
.y14e{bottom:723.583500px;}
.y1ca{bottom:724.929000px;}
.y2d{bottom:727.405500px;}
.y91{bottom:727.488000px;}
.y135{bottom:728.067000px;}
.y100{bottom:729.051000px;}
.y60{bottom:730.738500px;}
.y190{bottom:734.895000px;}
.y93{bottom:735.706500px;}
.yac{bottom:741.516000px;}
.y1c9{bottom:742.189500px;}
.y14d{bottom:742.413000px;}
.ydd{bottom:745.207500px;}
.y2c{bottom:746.862000px;}
.y134{bottom:746.896500px;}
.y5f{bottom:749.568000px;}
.yff{bottom:752.362500px;}
.y18f{bottom:752.469000px;}
.y1c8{bottom:759.450000px;}
.y14c{bottom:761.242500px;}
.ydc{bottom:764.037000px;}
.yab{bottom:764.829000px;}
.y133{bottom:765.726000px;}
.y2b{bottom:766.320000px;}
.y90{bottom:767.326500px;}
.y5e{bottom:768.397500px;}
.y18e{bottom:770.043000px;}
.y1c7{bottom:776.709000px;}
.y14b{bottom:780.072000px;}
.yfe{bottom:782.790000px;}
.y132{bottom:784.555500px;}
.y2a{bottom:785.776500px;}
.y5d{bottom:787.227000px;}
.y18d{bottom:787.617000px;}
.ydb{bottom:792.357000px;}
.y1c6{bottom:793.969500px;}
.yaa{bottom:798.453000px;}
.y14a{bottom:798.901500px;}
.yfd{bottom:802.023000px;}
.yd9{bottom:802.608000px;}
.y8f{bottom:802.936500px;}
.y131{bottom:803.385000px;}
.y18c{bottom:805.191000px;}
.y29{bottom:805.233000px;}
.y5c{bottom:806.056500px;}
.y1c5{bottom:811.230000px;}
.yda{bottom:812.725500px;}
.ya9{bottom:817.282500px;}
.y149{bottom:817.731000px;}
.y8e{bottom:821.766000px;}
.y130{bottom:822.214500px;}
.y18b{bottom:822.765000px;}
.y28{bottom:824.691000px;}
.y5b{bottom:824.886000px;}
.y1c4{bottom:828.490500px;}
.ya8{bottom:836.112000px;}
.y148{bottom:836.560500px;}
.y18a{bottom:840.339000px;}
.y8d{bottom:840.595500px;}
.yd8{bottom:841.044000px;}
.yf6{bottom:843.033000px;}
.y5a{bottom:843.715500px;}
.y27{bottom:844.147500px;}
.y1c3{bottom:845.751000px;}
.ya7{bottom:854.941500px;}
.y147{bottom:855.390000px;}
.y189{bottom:857.913000px;}
.y8c{bottom:859.425000px;}
.yd7{bottom:859.873500px;}
.yf5{bottom:862.266000px;}
.y59{bottom:862.545000px;}
.y1c2{bottom:863.011500px;}
.y26{bottom:863.604000px;}
.ya6{bottom:873.771000px;}
.y146{bottom:874.219500px;}
.y188{bottom:875.487000px;}
.y8b{bottom:878.254500px;}
.yd6{bottom:878.703000px;}
.y1c1{bottom:880.272000px;}
.y58{bottom:881.374500px;}
.y25{bottom:883.062000px;}
.yf4{bottom:890.464500px;}
.ya5{bottom:892.600500px;}
.y145{bottom:893.049000px;}
.y187{bottom:893.061000px;}
.y8a{bottom:897.084000px;}
.yd5{bottom:897.532500px;}
.y57{bottom:900.204000px;}
.y186{bottom:910.635000px;}
.ya4{bottom:911.430000px;}
.y144{bottom:911.878500px;}
.y1bf{bottom:914.791500px;}
.y1c0{bottom:914.793000px;}
.y89{bottom:915.913500px;}
.yd4{bottom:916.362000px;}
.y56{bottom:919.033500px;}
.y24{bottom:921.646500px;}
.y185{bottom:928.209000px;}
.y143{bottom:930.708000px;}
.y1be{bottom:932.052000px;}
.y88{bottom:934.743000px;}
.yd3{bottom:935.191500px;}
.y23{bottom:937.786500px;}
.y55{bottom:937.863000px;}
.y184{bottom:945.783000px;}
.y1bd{bottom:949.312500px;}
.y142{bottom:949.537500px;}
.y87{bottom:953.572500px;}
.y22{bottom:953.926500px;}
.yd2{bottom:954.021000px;}
.y54{bottom:956.692500px;}
.y183{bottom:963.357000px;}
.y1bc{bottom:966.573000px;}
.ya3{bottom:968.367000px;}
.y86{bottom:972.402000px;}
.yd1{bottom:972.849000px;}
.y53{bottom:975.522000px;}
.y182{bottom:980.931000px;}
.y1bb{bottom:983.833500px;}
.ya2{bottom:987.196500px;}
.y85{bottom:991.231500px;}
.yd0{bottom:991.678500px;}
.y52{bottom:994.351500px;}
.y7{bottom:998.460000px;}
.y181{bottom:998.506500px;}
.y1ba{bottom:1001.094000px;}
.ya1{bottom:1006.026000px;}
.y84{bottom:1010.061000px;}
.ycf{bottom:1010.508000px;}
.y51{bottom:1013.181000px;}
.y180{bottom:1016.080500px;}
.y1b9{bottom:1018.354500px;}
.ya0{bottom:1024.855500px;}
.yce{bottom:1029.337500px;}
.y50{bottom:1032.010500px;}
.y83{bottom:1033.372500px;}
.y17f{bottom:1033.654500px;}
.y1b8{bottom:1035.615000px;}
.y6{bottom:1041.199500px;}
.y9f{bottom:1043.685000px;}
.ycd{bottom:1048.167000px;}
.y4f{bottom:1050.840000px;}
.y17e{bottom:1051.228500px;}
.y1b7{bottom:1052.875500px;}
.y9e{bottom:1062.513000px;}
.y82{bottom:1066.996500px;}
.y5{bottom:1069.443000px;}
.y4e{bottom:1069.669500px;}
.y1b6{bottom:1070.134500px;}
.y9d{bottom:1081.342500px;}
.y17d{bottom:1082.598000px;}
.y81{bottom:1085.826000px;}
.y1b5{bottom:1087.395000px;}
.y4d{bottom:1088.499000px;}
.y4{bottom:1097.688000px;}
.y80{bottom:1104.655500px;}
.y4c{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4b{bottom:1173.397500px;}
.h7{height:25.508090px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.ha{height:37.993262px;}
.hc{height:38.896243px;}
.h10{height:41.482876px;}
.h6{height:43.217759px;}
.hb{height:43.421105px;}
.h4{height:43.815515px;}
.hd{height:48.848947px;}
.h13{height:50.228947px;}
.h12{height:50.336947px;}
.h2{height:50.931027px;}
.he{height:54.276245px;}
.hf{height:71.770243px;}
.h3{height:77.379634px;}
.h5{height:77.792486px;}
.h14{height:77.870947px;}
.h11{height:95.280245px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:58.054042px;}
.x49{left:65.295000px;}
.x82{left:85.708500px;}
.x4d{left:86.760000px;}
.x4e{left:89.383500px;}
.x78{left:130.195500px;}
.x77{left:132.810000px;}
.x74{left:143.149500px;}
.x79{left:153.105000px;}
.x73{left:197.368500px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.x7{left:282.786000px;}
.x6b{left:285.702000px;}
.x12{left:289.545000px;}
.x13{left:297.018000px;}
.x2e{left:305.644500px;}
.x62{left:307.746000px;}
.x75{left:308.869500px;}
.x6{left:310.636500px;}
.x10{left:315.264000px;}
.x1e{left:316.771500px;}
.x2f{left:320.587500px;}
.x11{left:322.735500px;}
.x30{left:324.399000px;}
.x61{left:326.191500px;}
.x6c{left:327.309000px;}
.x84{left:328.873500px;}
.x1f{left:331.716000px;}
.x36{left:337.996500px;}
.x31{left:339.343500px;}
.x63{left:341.437500px;}
.x65{left:347.419500px;}
.x48{left:351.349500px;}
.x37{left:352.941000px;}
.x85{left:355.773000px;}
.x4f{left:358.224000px;}
.x6d{left:363.585000px;}
.x3d{left:371.026500px;}
.x7d{left:378.192000px;}
.x24{left:381.207000px;}
.x40{left:392.218500px;}
.x22{left:393.912000px;}
.x25{left:396.150000px;}
.x66{left:404.050500px;}
.x41{left:407.163000px;}
.x23{left:408.856500px;}
.x67{left:411.567000px;}
.x5d{left:418.524000px;}
.xc{left:420.741000px;}
.x59{left:423.684000px;}
.x26{left:426.709500px;}
.xd{left:428.212500px;}
.x7c{left:430.884000px;}
.xe{left:431.971500px;}
.x5e{left:433.467000px;}
.x1c{left:436.798500px;}
.xf{left:439.443000px;}
.x5a{left:440.455500px;}
.x27{left:441.654000px;}
.x6e{left:447.736500px;}
.x28{left:449.238000px;}
.x1d{left:451.743000px;}
.x6f{left:462.681000px;}
.x29{left:464.182500px;}
.x70{left:466.491000px;}
.x46{left:472.297500px;}
.x71{left:481.435500px;}
.x47{left:487.242000px;}
.xa{left:492.609000px;}
.x4a{left:493.878000px;}
.x38{left:498.811500px;}
.xb{left:500.080500px;}
.x14{left:509.544000px;}
.x39{left:513.756000px;}
.x15{left:517.017000px;}
.x16{left:520.714500px;}
.x17{left:528.187500px;}
.x3a{left:532.392000px;}
.x42{left:563.110500px;}
.x68{left:566.833500px;}
.x34{left:578.691000px;}
.x2a{left:580.290000px;}
.x43{left:591.825000px;}
.x35{left:593.635500px;}
.x2b{left:595.234500px;}
.x2c{left:602.856000px;}
.x18{left:605.641500px;}
.x44{left:606.769500px;}
.x2d{left:617.799000px;}
.x19{left:620.586000px;}
.x1a{left:624.397500px;}
.x5b{left:630.648000px;}
.x1b{left:639.340500px;}
.x5c{left:646.674000px;}
.x69{left:647.809500px;}
.x4b{left:658.537500px;}
.x57{left:666.661500px;}
.x20{left:668.436000px;}
.x52{left:670.014000px;}
.x4c{left:672.154500px;}
.x6a{left:676.267500px;}
.x58{left:681.606000px;}
.x21{left:683.380500px;}
.x53{left:684.957000px;}
.x50{left:718.357500px;}
.x8{left:722.580000px;}
.x9{left:730.051500px;}
.x51{left:733.300500px;}
.x83{left:736.845000px;}
.x7e{left:739.263000px;}
.x45{left:745.924500px;}
.x64{left:748.777500px;}
.x55{left:759.268500px;}
.x3b{left:760.923000px;}
.x54{left:764.074500px;}
.x7f{left:766.162500px;}
.x56{left:774.213000px;}
.x3c{left:775.867500px;}
.x7a{left:777.661500px;}
.x72{left:784.936500px;}
.x5f{left:787.228500px;}
.x7b{left:792.606000px;}
.x60{left:802.173000px;}
.x80{left:810.397500px;}
.x32{left:816.951000px;}
.x3e{left:818.893500px;}
.x33{left:831.894000px;}
.x3f{left:833.838000px;}
.x76{left:836.173500px;}
.x81{left:837.295500px;}
@media print{
.v4{vertical-align:-2.325333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.322667pt;}
.v6{vertical-align:2.538667pt;}
.v5{vertical-align:23.258667pt;}
.v1{vertical-align:29.221333pt;}
.v2{vertical-align:36.448000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000375pt;}
.ls11{letter-spacing:0.001007pt;}
.ls12{letter-spacing:0.002825pt;}
.ls18{letter-spacing:0.004267pt;}
.ls5{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1{letter-spacing:9.298933pt;}
.ls3{letter-spacing:10.626533pt;}
.ls16{letter-spacing:10.798541pt;}
.ls17{letter-spacing:10.880174pt;}
.lsa{letter-spacing:10.968429pt;}
.ls9{letter-spacing:10.973762pt;}
.ls15{letter-spacing:11.954133pt;}
.ls14{letter-spacing:11.959467pt;}
.ls7{letter-spacing:12.528078pt;}
.ls8{letter-spacing:12.533411pt;}
.ls6{letter-spacing:13.549136pt;}
.lsb{letter-spacing:14.239876pt;}
.lsd{letter-spacing:16.099096pt;}
.lse{letter-spacing:16.121067pt;}
.lsc{letter-spacing:16.648259pt;}
.ls10{letter-spacing:30.019733pt;}
.lsf{letter-spacing:30.552259pt;}
.ls2{letter-spacing:32.945470pt;}
.ws0{word-spacing:-25.362056pt;}
.ws74{word-spacing:-13.283467pt;}
.ws76{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-10.626800pt;}
.ws6{word-spacing:-9.298400pt;}
.ws8a{word-spacing:-2.975497pt;}
.ws61{word-spacing:-2.816095pt;}
.ws5b{word-spacing:-2.762961pt;}
.ws89{word-spacing:-2.550426pt;}
.ws58{word-spacing:-2.497292pt;}
.ws80{word-spacing:-2.391024pt;}
.ws88{word-spacing:-2.231622pt;}
.ws3b{word-spacing:-2.125355pt;}
.ws7f{word-spacing:-2.019087pt;}
.ws98{word-spacing:-1.817190pt;}
.ws3{word-spacing:-1.696326pt;}
.wsbd{word-spacing:-1.673728pt;}
.ws21{word-spacing:-1.647150pt;}
.ws3c{word-spacing:-1.594016pt;}
.ws99{word-spacing:-1.578086pt;}
.wsa0{word-spacing:-1.530266pt;}
.ws44{word-spacing:-1.487748pt;}
.ws91{word-spacing:-1.434614pt;}
.wsa3{word-spacing:-1.386803pt;}
.ws8f{word-spacing:-1.328347pt;}
.ws81{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.ws9e{word-spacing:-1.147699pt;}
.wsa1{word-spacing:-1.099878pt;}
.wsae{word-spacing:-1.052058pt;}
.ws82{word-spacing:-1.009543pt;}
.wsb4{word-spacing:-1.004237pt;}
.wsb3{word-spacing:-0.956416pt;}
.ws59{word-spacing:-0.850142pt;}
.ws5d{word-spacing:-0.690740pt;}
.ws3a{word-spacing:-0.637606pt;}
.ws3d{word-spacing:-0.584473pt;}
.wsaa{word-spacing:-0.478208pt;}
.ws68{word-spacing:-0.478205pt;}
.ws79{word-spacing:-0.371937pt;}
.ws25{word-spacing:-0.318803pt;}
.ws94{word-spacing:-0.286925pt;}
.ws2c{word-spacing:-0.265669pt;}
.wsac{word-spacing:-0.239104pt;}
.ws31{word-spacing:-0.212535pt;}
.ws15{word-spacing:-0.191283pt;}
.ws26{word-spacing:-0.159402pt;}
.ws18{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.ws1b{word-spacing:-0.095642pt;}
.ws20{word-spacing:-0.053134pt;}
.ws16{word-spacing:-0.047821pt;}
.ws2b{word-spacing:-0.042507pt;}
.ws7{word-spacing:-0.037194pt;}
.wsbb{word-spacing:-0.005470pt;}
.ws1{word-spacing:0.000000pt;}
.ws77{word-spacing:0.047821pt;}
.ws2d{word-spacing:0.053134pt;}
.ws19{word-spacing:0.095642pt;}
.ws23{word-spacing:0.106268pt;}
.ws12{word-spacing:0.127522pt;}
.ws78{word-spacing:0.143462pt;}
.ws24{word-spacing:0.159402pt;}
.ws8{word-spacing:0.185968pt;}
.ws1c{word-spacing:0.191283pt;}
.ws3e{word-spacing:0.212535pt;}
.ws1a{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws4d{word-spacing:0.265669pt;}
.ws6b{word-spacing:0.318803pt;}
.wsc4{word-spacing:0.334746pt;}
.ws4e{word-spacing:0.371937pt;}
.ws8c{word-spacing:0.425071pt;}
.ws7e{word-spacing:0.430387pt;}
.ws95{word-spacing:0.478208pt;}
.ws67{word-spacing:0.531339pt;}
.ws43{word-spacing:0.584473pt;}
.ws50{word-spacing:0.598025pt;}
.ws53{word-spacing:0.598400pt;}
.ws52{word-spacing:0.604629pt;}
.ws51{word-spacing:0.606763pt;}
.wsa5{word-spacing:0.621670pt;}
.ws73{word-spacing:0.637606pt;}
.ws7d{word-spacing:0.669491pt;}
.ws4f{word-spacing:0.690740pt;}
.ws8e{word-spacing:0.743874pt;}
.wsbe{word-spacing:0.765133pt;}
.ws45{word-spacing:0.850142pt;}
.ws49{word-spacing:0.903276pt;}
.ws6e{word-spacing:0.956410pt;}
.ws5a{word-spacing:1.009543pt;}
.ws42{word-spacing:1.115811pt;}
.ws97{word-spacing:1.147699pt;}
.ws41{word-spacing:1.168945pt;}
.ws47{word-spacing:1.222079pt;}
.wsc0{word-spacing:1.243341pt;}
.ws87{word-spacing:1.328347pt;}
.ws66{word-spacing:1.381481pt;}
.ws96{word-spacing:1.386803pt;}
.ws3f{word-spacing:1.434614pt;}
.ws2f{word-spacing:1.487748pt;}
.ws55{word-spacing:1.540882pt;}
.ws2e{word-spacing:1.594016pt;}
.wsa8{word-spacing:1.625907pt;}
.ws90{word-spacing:1.647150pt;}
.wsad{word-spacing:1.673728pt;}
.ws70{word-spacing:1.700284pt;}
.ws32{word-spacing:1.753418pt;}
.ws9{word-spacing:1.785293pt;}
.ws5f{word-spacing:1.859685pt;}
.ws13{word-spacing:1.865011pt;}
.ws1f{word-spacing:2.019087pt;}
.ws7c{word-spacing:2.072221pt;}
.ws6c{word-spacing:2.137900pt;}
.ws69{word-spacing:2.141785pt;}
.ws37{word-spacing:2.178489pt;}
.ws8d{word-spacing:2.231622pt;}
.ws4a{word-spacing:2.337890pt;}
.ws46{word-spacing:2.391024pt;}
.wsb2{word-spacing:2.438861pt;}
.ws27{word-spacing:2.550426pt;}
.ws4b{word-spacing:2.603559pt;}
.wsc2{word-spacing:2.630144pt;}
.ws17{word-spacing:2.677965pt;}
.ws7b{word-spacing:2.709827pt;}
.ws84{word-spacing:2.762961pt;}
.ws1d{word-spacing:2.861926pt;}
.ws5e{word-spacing:2.869229pt;}
.wsb5{word-spacing:2.869248pt;}
.ws40{word-spacing:2.975497pt;}
.ws93{word-spacing:3.028630pt;}
.ws64{word-spacing:3.134898pt;}
.ws1e{word-spacing:3.188032pt;}
.ws75{word-spacing:3.241166pt;}
.ws92{word-spacing:3.347434pt;}
.ws38{word-spacing:3.400567pt;}
.ws6f{word-spacing:3.453701pt;}
.wsb8{word-spacing:3.490918pt;}
.ws4c{word-spacing:3.559969pt;}
.ws5c{word-spacing:3.666237pt;}
.ws48{word-spacing:3.825638pt;}
.wsbc{word-spacing:3.825664pt;}
.ws35{word-spacing:4.091308pt;}
.ws85{word-spacing:4.144442pt;}
.ws28{word-spacing:4.303843pt;}
.ws65{word-spacing:4.356977pt;}
.ws8b{word-spacing:4.410111pt;}
.ws7a{word-spacing:4.463245pt;}
.ws71{word-spacing:4.516379pt;}
.ws86{word-spacing:4.782048pt;}
.ws54{word-spacing:4.941450pt;}
.ws30{word-spacing:4.994583pt;}
.ws9b{word-spacing:5.021184pt;}
.ws39{word-spacing:5.207119pt;}
.ws14{word-spacing:5.212467pt;}
.ws10{word-spacing:5.393072pt;}
.wsa6{word-spacing:5.451571pt;}
.ws11{word-spacing:5.467459pt;}
.ws36{word-spacing:5.472788pt;}
.ws63{word-spacing:5.525922pt;}
.wsaf{word-spacing:6.168883pt;}
.ws34{word-spacing:6.269796pt;}
.ws33{word-spacing:6.322930pt;}
.wsb6{word-spacing:6.838374pt;}
.ws62{word-spacing:7.119938pt;}
.wsba{word-spacing:7.460045pt;}
.ws72{word-spacing:7.491875pt;}
.wse{word-spacing:7.699075pt;}
.ws9c{word-spacing:8.125338pt;}
.wsb7{word-spacing:8.127437pt;}
.wsa9{word-spacing:8.129579pt;}
.ws56{word-spacing:8.182615pt;}
.ws83{word-spacing:8.660820pt;}
.wsb0{word-spacing:9.516339pt;}
.ws9f{word-spacing:10.377114pt;}
.ws29{word-spacing:10.582159pt;}
.wsc6{word-spacing:11.429171pt;}
.ws5{word-spacing:11.492822pt;}
.wsb1{word-spacing:11.899332pt;}
.wsc3{word-spacing:11.901815pt;}
.wsa4{word-spacing:11.907379pt;}
.ws9a{word-spacing:11.955200pt;}
.wsab{word-spacing:12.146483pt;}
.wsc5{word-spacing:12.242125pt;}
.wsbf{word-spacing:12.672512pt;}
.ws57{word-spacing:13.230333pt;}
.ws4{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.wsa2{word-spacing:14.489702pt;}
.wsa7{word-spacing:14.774118pt;}
.ws9d{word-spacing:14.776627pt;}
.wsc1{word-spacing:14.872269pt;}
.wsb9{word-spacing:14.920090pt;}
.wsd{word-spacing:15.732893pt;}
.ws60{word-spacing:16.418365pt;}
.wsf{word-spacing:24.399002pt;}
.ws6d{word-spacing:267.050814pt;}
.ws6a{word-spacing:267.954090pt;}
._43{margin-left:-18.830749pt;}
._1{margin-left:-10.616218pt;}
._22{margin-left:-6.628281pt;}
._a{margin-left:-5.308109pt;}
._5{margin-left:-4.128490pt;}
._13{margin-left:-2.975497pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._7{width:2.045648pt;}
._2e{width:3.150970pt;}
._28{width:4.044900pt;}
._42{width:9.900366pt;}
._4{width:11.530016pt;}
._d{width:13.177232pt;}
._b{width:14.776627pt;}
._8{width:16.259072pt;}
._25{width:17.148786pt;}
._12{width:18.437452pt;}
._10{width:19.606397pt;}
._15{width:20.835202pt;}
._23{width:21.944287pt;}
._6{width:23.063232pt;}
._c{width:24.547846pt;}
._14{width:26.194996pt;}
._26{width:28.061408pt;}
._0{width:29.648896pt;}
._9{width:30.700954pt;}
._24{width:31.774052pt;}
._41{width:34.155279pt;}
._11{width:35.865360pt;}
._45{width:37.001710pt;}
._46{width:47.246950pt;}
._44{width:54.993920pt;}
._39{width:63.745126pt;}
._38{width:78.426112pt;}
._21{width:83.686400pt;}
._1d{width:95.259034pt;}
._1a{width:106.927309pt;}
._16{width:119.025971pt;}
._37{width:128.637952pt;}
._40{width:144.897024pt;}
._3b{width:156.469658pt;}
._35{width:159.769293pt;}
._20{width:166.942413pt;}
._36{width:170.242048pt;}
._3a{width:172.585267pt;}
._3c{width:173.685146pt;}
._3f{width:176.124006pt;}
._3e{width:177.749914pt;}
._19{width:180.858266pt;}
._3d{width:191.426662pt;}
._33{width:192.478720pt;}
._1e{width:215.289242pt;}
._34{width:218.301952pt;}
._30{width:221.840691pt;}
._2f{width:224.040448pt;}
._32{width:228.296499pt;}
._31{width:236.521677pt;}
._1b{width:239.486566pt;}
._17{width:267.557376pt;}
._18{width:303.721660pt;}
._1f{width:395.351842pt;}
._1c{width:407.310242pt;}
._29{width:563.220002pt;}
._2b{width:572.541227pt;}
._2a{width:580.384742pt;}
._2c{width:614.339447pt;}
._27{width:793.657049pt;}
._e{width:811.678717pt;}
._2d{width:2210.839733pt;}
._f{width:2232.093067pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs3{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs8{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.545957pt;}
.ya{bottom:3.044747pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:26.907593pt;}
.y4a{bottom:28.346667pt;}
.y12f{bottom:79.105333pt;}
.y1b4{bottom:79.710667pt;}
.y10e{bottom:88.180000pt;}
.ycc{bottom:89.261333pt;}
.y21{bottom:91.398667pt;}
.y1b3{bottom:95.053333pt;}
.y12e{bottom:95.842667pt;}
.y17c{bottom:100.101333pt;}
.y49{bottom:104.045333pt;}
.y10d{bottom:104.917333pt;}
.ycb{bottom:105.998667pt;}
.y20{bottom:107.298667pt;}
.y16e{bottom:107.592000pt;}
.y1b2{bottom:110.396000pt;}
.y12d{bottom:112.580000pt;}
.y17b{bottom:115.722667pt;}
.y141{bottom:117.668000pt;}
.y48{bottom:120.782667pt;}
.y10c{bottom:121.654667pt;}
.yca{bottom:122.736000pt;}
.y1f{bottom:123.200000pt;}
.y16d{bottom:124.329333pt;}
.y1b1{bottom:125.738667pt;}
.y12c{bottom:129.317333pt;}
.y9c{bottom:130.176000pt;}
.y7f{bottom:130.689333pt;}
.y17a{bottom:131.344000pt;}
.y47{bottom:137.520000pt;}
.y1ea{bottom:138.078667pt;}
.y10b{bottom:138.392000pt;}
.y1e{bottom:139.100000pt;}
.yc9{bottom:139.473333pt;}
.y16c{bottom:141.066667pt;}
.y1b0{bottom:141.081333pt;}
.y12b{bottom:146.054667pt;}
.y140{bottom:146.102667pt;}
.y7e{bottom:147.426667pt;}
.y1e9{bottom:153.421333pt;}
.y46{bottom:154.257333pt;}
.y179{bottom:154.934667pt;}
.y1d{bottom:155.000000pt;}
.yc8{bottom:156.210667pt;}
.y1af{bottom:156.424000pt;}
.y16b{bottom:157.804000pt;}
.y12a{bottom:162.792000pt;}
.y7d{bottom:164.164000pt;}
.y10a{bottom:168.228000pt;}
.y1e8{bottom:168.762667pt;}
.y178{bottom:170.557333pt;}
.y1c{bottom:170.901333pt;}
.y45{bottom:170.994667pt;}
.y1ae{bottom:171.766667pt;}
.yc7{bottom:172.948000pt;}
.y16a{bottom:174.541333pt;}
.y129{bottom:179.529333pt;}
.y7c{bottom:180.901333pt;}
.y1e7{bottom:184.105333pt;}
.y109{bottom:185.324000pt;}
.y1b{bottom:186.801333pt;}
.y1ad{bottom:187.109333pt;}
.y44{bottom:187.732000pt;}
.yc6{bottom:189.685333pt;}
.y169{bottom:191.278667pt;}
.y177{bottom:194.148000pt;}
.y128{bottom:196.266667pt;}
.y7b{bottom:197.638667pt;}
.yfc{bottom:198.548000pt;}
.y1e6{bottom:199.448000pt;}
.y1ac{bottom:202.450667pt;}
.y1a{bottom:202.701333pt;}
.y43{bottom:204.469333pt;}
.yc5{bottom:206.422667pt;}
.y168{bottom:208.016000pt;}
.y176{bottom:209.769333pt;}
.y127{bottom:213.004000pt;}
.y7a{bottom:214.376000pt;}
.y1e5{bottom:214.790667pt;}
.yfb{bottom:215.644000pt;}
.y1ab{bottom:217.793333pt;}
.y42{bottom:221.206667pt;}
.yc4{bottom:223.160000pt;}
.y167{bottom:224.753333pt;}
.y175{bottom:225.390667pt;}
.y126{bottom:229.741333pt;}
.y1e4{bottom:230.133333pt;}
.y79{bottom:231.113333pt;}
.y1aa{bottom:233.136000pt;}
.y41{bottom:237.944000pt;}
.yc3{bottom:239.897333pt;}
.yfa{bottom:240.737333pt;}
.y166{bottom:241.490667pt;}
.y1e3{bottom:245.476000pt;}
.y125{bottom:246.478667pt;}
.y78{bottom:247.850667pt;}
.y1a9{bottom:248.478667pt;}
.y174{bottom:248.982667pt;}
.y40{bottom:254.681333pt;}
.yc2{bottom:256.634667pt;}
.y165{bottom:258.228000pt;}
.y1e2{bottom:260.818667pt;}
.y124{bottom:263.216000pt;}
.y1a8{bottom:263.821333pt;}
.y77{bottom:264.588000pt;}
.y173{bottom:264.604000pt;}
.y3f{bottom:271.418667pt;}
.y19{bottom:273.154667pt;}
.y164{bottom:274.965333pt;}
.y1e1{bottom:276.161333pt;}
.yc1{bottom:277.356000pt;}
.y1a7{bottom:279.164000pt;}
.y123{bottom:279.953333pt;}
.y172{bottom:280.225333pt;}
.y76{bottom:281.325333pt;}
.y3e{bottom:288.154667pt;}
.y18{bottom:289.054667pt;}
.yf3{bottom:289.226667pt;}
.y1e0{bottom:291.502667pt;}
.y163{bottom:291.702667pt;}
.y1a6{bottom:294.506667pt;}
.y171{bottom:295.846667pt;}
.y122{bottom:296.690667pt;}
.y75{bottom:298.062667pt;}
.y3d{bottom:304.892000pt;}
.y17{bottom:304.954667pt;}
.yf2{bottom:305.964000pt;}
.y1df{bottom:306.845333pt;}
.yc0{bottom:307.244000pt;}
.y162{bottom:308.440000pt;}
.y1a5{bottom:309.849333pt;}
.y170{bottom:311.468000pt;}
.y121{bottom:313.428000pt;}
.y74{bottom:314.800000pt;}
.y13f{bottom:317.144000pt;}
.y16{bottom:320.856000pt;}
.y3c{bottom:321.629333pt;}
.y1de{bottom:322.188000pt;}
.yf1{bottom:322.701333pt;}
.ybf{bottom:323.981333pt;}
.y161{bottom:325.177333pt;}
.y1a4{bottom:325.190667pt;}
.y16f{bottom:327.090667pt;}
.y120{bottom:330.165333pt;}
.y73{bottom:331.537333pt;}
.y1dd{bottom:337.530667pt;}
.y3b{bottom:338.366667pt;}
.yf0{bottom:339.437333pt;}
.y1a3{bottom:340.533333pt;}
.ybe{bottom:340.718667pt;}
.y160{bottom:341.914667pt;}
.y11f{bottom:346.902667pt;}
.y72{bottom:348.274667pt;}
.y1dc{bottom:352.873333pt;}
.y15{bottom:354.688000pt;}
.y3a{bottom:355.104000pt;}
.y1a2{bottom:355.876000pt;}
.yef{bottom:356.174667pt;}
.y15f{bottom:358.652000pt;}
.ybd{bottom:361.441333pt;}
.y11e{bottom:363.640000pt;}
.y71{bottom:365.012000pt;}
.y1db{bottom:368.216000pt;}
.y14{bottom:370.589333pt;}
.y1a1{bottom:371.218667pt;}
.y39{bottom:371.841333pt;}
.yee{bottom:372.912000pt;}
.y15e{bottom:375.389333pt;}
.y11d{bottom:380.376000pt;}
.y70{bottom:381.749333pt;}
.y1da{bottom:383.558667pt;}
.y13{bottom:386.489333pt;}
.y1a0{bottom:386.561333pt;}
.y38{bottom:388.578667pt;}
.yed{bottom:389.649333pt;}
.ybc{bottom:391.329333pt;}
.y15d{bottom:392.126667pt;}
.y11c{bottom:397.113333pt;}
.y6f{bottom:398.486667pt;}
.y1d9{bottom:398.901333pt;}
.y19f{bottom:401.904000pt;}
.y37{bottom:405.316000pt;}
.yec{bottom:406.386667pt;}
.ybb{bottom:408.066667pt;}
.y15c{bottom:408.864000pt;}
.y11b{bottom:413.850667pt;}
.y1d8{bottom:414.244000pt;}
.y6e{bottom:415.224000pt;}
.y19e{bottom:417.246667pt;}
.y12{bottom:418.330667pt;}
.y36{bottom:422.053333pt;}
.yeb{bottom:423.124000pt;}
.yba{bottom:424.804000pt;}
.y15b{bottom:425.601333pt;}
.y1d7{bottom:429.585333pt;}
.y11a{bottom:430.588000pt;}
.y6d{bottom:431.961333pt;}
.y19d{bottom:432.589333pt;}
.yea{bottom:439.861333pt;}
.yb9{bottom:441.541333pt;}
.y15a{bottom:442.338667pt;}
.y35{bottom:442.776000pt;}
.y1d6{bottom:444.928000pt;}
.y119{bottom:447.325333pt;}
.y19c{bottom:447.932000pt;}
.y6c{bottom:448.698667pt;}
.y11{bottom:450.170667pt;}
.ye9{bottom:456.598667pt;}
.yb8{bottom:458.278667pt;}
.y159{bottom:459.076000pt;}
.y1d5{bottom:460.270667pt;}
.y19b{bottom:463.273333pt;}
.y118{bottom:464.062667pt;}
.y6b{bottom:465.436000pt;}
.y10{bottom:466.070667pt;}
.yf9{bottom:471.088000pt;}
.ye8{bottom:473.336000pt;}
.yb7{bottom:475.016000pt;}
.y1d4{bottom:475.613333pt;}
.y158{bottom:475.813333pt;}
.y19a{bottom:478.616000pt;}
.y9b{bottom:478.697333pt;}
.y117{bottom:480.800000pt;}
.yf{bottom:481.972000pt;}
.y6a{bottom:482.173333pt;}
.yf8{bottom:488.184000pt;}
.ye7{bottom:490.073333pt;}
.y1d3{bottom:490.956000pt;}
.yb6{bottom:491.753333pt;}
.y157{bottom:492.549333pt;}
.y199{bottom:493.958667pt;}
.y9a{bottom:495.434667pt;}
.y13e{bottom:496.534667pt;}
.y116{bottom:497.537333pt;}
.ye{bottom:497.872000pt;}
.y69{bottom:498.910667pt;}
.y1d2{bottom:506.298667pt;}
.ye6{bottom:506.810667pt;}
.yb5{bottom:508.490667pt;}
.y156{bottom:509.286667pt;}
.y198{bottom:509.301333pt;}
.y34{bottom:509.576000pt;}
.y99{bottom:512.172000pt;}
.yf7{bottom:513.249333pt;}
.y13d{bottom:513.272000pt;}
.yd{bottom:513.772000pt;}
.y108{bottom:514.146667pt;}
.y115{bottom:514.274667pt;}
.y68{bottom:515.648000pt;}
.y1d1{bottom:521.641333pt;}
.ye5{bottom:523.548000pt;}
.y197{bottom:524.644000pt;}
.yb4{bottom:525.228000pt;}
.y155{bottom:526.024000pt;}
.yc{bottom:529.673333pt;}
.y13c{bottom:530.009333pt;}
.y107{bottom:530.884000pt;}
.y114{bottom:531.012000pt;}
.y67{bottom:532.384000pt;}
.y98{bottom:532.894667pt;}
.y1d0{bottom:536.984000pt;}
.y196{bottom:539.986667pt;}
.ye4{bottom:540.285333pt;}
.yb3{bottom:541.965333pt;}
.y154{bottom:542.761333pt;}
.y33{bottom:542.812000pt;}
.yb{bottom:545.573333pt;}
.y13b{bottom:546.746667pt;}
.y106{bottom:547.621333pt;}
.y113{bottom:547.749333pt;}
.y66{bottom:549.121333pt;}
.y1cf{bottom:552.325333pt;}
.y195{bottom:555.329333pt;}
.ye3{bottom:557.022667pt;}
.yb2{bottom:558.702667pt;}
.y153{bottom:559.498667pt;}
.y32{bottom:560.106667pt;}
.y13a{bottom:563.484000pt;}
.y105{bottom:564.358667pt;}
.y8{bottom:565.458715pt;}
.y65{bottom:565.858667pt;}
.y1ce{bottom:567.668000pt;}
.y112{bottom:568.472000pt;}
.ye2{bottom:573.760000pt;}
.y97{bottom:574.500000pt;}
.y194{bottom:574.656000pt;}
.yb1{bottom:575.440000pt;}
.y152{bottom:576.236000pt;}
.y31{bottom:577.401333pt;}
.y139{bottom:580.221333pt;}
.y104{bottom:581.096000pt;}
.y64{bottom:582.596000pt;}
.y1cd{bottom:583.010667pt;}
.y96{bottom:589.112000pt;}
.ye1{bottom:590.497333pt;}
.yb0{bottom:592.177333pt;}
.y151{bottom:592.973333pt;}
.y111{bottom:593.354667pt;}
.y30{bottom:594.697333pt;}
.y138{bottom:596.958667pt;}
.y103{bottom:597.833333pt;}
.y1cc{bottom:598.353333pt;}
.y63{bottom:599.333333pt;}
.y95{bottom:603.724000pt;}
.y193{bottom:606.374667pt;}
.yaf{bottom:608.914667pt;}
.y150{bottom:609.710667pt;}
.y110{bottom:610.450667pt;}
.y2f{bottom:611.992000pt;}
.y137{bottom:613.696000pt;}
.y102{bottom:614.570667pt;}
.ye0{bottom:615.669333pt;}
.y62{bottom:616.070667pt;}
.y94{bottom:618.336000pt;}
.y192{bottom:621.996000pt;}
.yde{bottom:624.781333pt;}
.yae{bottom:625.652000pt;}
.y14f{bottom:626.448000pt;}
.y10f{bottom:627.546667pt;}
.y1cb{bottom:629.038667pt;}
.y2e{bottom:629.286667pt;}
.y136{bottom:630.433333pt;}
.y101{bottom:631.308000pt;}
.y61{bottom:632.808000pt;}
.ydf{bottom:633.774667pt;}
.y191{bottom:637.617333pt;}
.y92{bottom:639.350667pt;}
.yad{bottom:642.388000pt;}
.y14e{bottom:643.185333pt;}
.y1ca{bottom:644.381333pt;}
.y2d{bottom:646.582667pt;}
.y91{bottom:646.656000pt;}
.y135{bottom:647.170667pt;}
.y100{bottom:648.045333pt;}
.y60{bottom:649.545333pt;}
.y190{bottom:653.240000pt;}
.y93{bottom:653.961333pt;}
.yac{bottom:659.125333pt;}
.y1c9{bottom:659.724000pt;}
.y14d{bottom:659.922667pt;}
.ydd{bottom:662.406667pt;}
.y2c{bottom:663.877333pt;}
.y134{bottom:663.908000pt;}
.y5f{bottom:666.282667pt;}
.yff{bottom:668.766667pt;}
.y18f{bottom:668.861333pt;}
.y1c8{bottom:675.066667pt;}
.y14c{bottom:676.660000pt;}
.ydc{bottom:679.144000pt;}
.yab{bottom:679.848000pt;}
.y133{bottom:680.645333pt;}
.y2b{bottom:681.173333pt;}
.y90{bottom:682.068000pt;}
.y5e{bottom:683.020000pt;}
.y18e{bottom:684.482667pt;}
.y1c7{bottom:690.408000pt;}
.y14b{bottom:693.397333pt;}
.yfe{bottom:695.813333pt;}
.y132{bottom:697.382667pt;}
.y2a{bottom:698.468000pt;}
.y5d{bottom:699.757333pt;}
.y18d{bottom:700.104000pt;}
.ydb{bottom:704.317333pt;}
.y1c6{bottom:705.750667pt;}
.yaa{bottom:709.736000pt;}
.y14a{bottom:710.134667pt;}
.yfd{bottom:712.909333pt;}
.yd9{bottom:713.429333pt;}
.y8f{bottom:713.721333pt;}
.y131{bottom:714.120000pt;}
.y18c{bottom:715.725333pt;}
.y29{bottom:715.762667pt;}
.y5c{bottom:716.494667pt;}
.y1c5{bottom:721.093333pt;}
.yda{bottom:722.422667pt;}
.ya9{bottom:726.473333pt;}
.y149{bottom:726.872000pt;}
.y8e{bottom:730.458667pt;}
.y130{bottom:730.857333pt;}
.y18b{bottom:731.346667pt;}
.y28{bottom:733.058667pt;}
.y5b{bottom:733.232000pt;}
.y1c4{bottom:736.436000pt;}
.ya8{bottom:743.210667pt;}
.y148{bottom:743.609333pt;}
.y18a{bottom:746.968000pt;}
.y8d{bottom:747.196000pt;}
.yd8{bottom:747.594667pt;}
.yf6{bottom:749.362667pt;}
.y5a{bottom:749.969333pt;}
.y27{bottom:750.353333pt;}
.y1c3{bottom:751.778667pt;}
.ya7{bottom:759.948000pt;}
.y147{bottom:760.346667pt;}
.y189{bottom:762.589333pt;}
.y8c{bottom:763.933333pt;}
.yd7{bottom:764.332000pt;}
.yf5{bottom:766.458667pt;}
.y59{bottom:766.706667pt;}
.y1c2{bottom:767.121333pt;}
.y26{bottom:767.648000pt;}
.ya6{bottom:776.685333pt;}
.y146{bottom:777.084000pt;}
.y188{bottom:778.210667pt;}
.y8b{bottom:780.670667pt;}
.yd6{bottom:781.069333pt;}
.y1c1{bottom:782.464000pt;}
.y58{bottom:783.444000pt;}
.y25{bottom:784.944000pt;}
.yf4{bottom:791.524000pt;}
.ya5{bottom:793.422667pt;}
.y145{bottom:793.821333pt;}
.y187{bottom:793.832000pt;}
.y8a{bottom:797.408000pt;}
.yd5{bottom:797.806667pt;}
.y57{bottom:800.181333pt;}
.y186{bottom:809.453333pt;}
.ya4{bottom:810.160000pt;}
.y144{bottom:810.558667pt;}
.y1bf{bottom:813.148000pt;}
.y1c0{bottom:813.149333pt;}
.y89{bottom:814.145333pt;}
.yd4{bottom:814.544000pt;}
.y56{bottom:816.918667pt;}
.y24{bottom:819.241333pt;}
.y185{bottom:825.074667pt;}
.y143{bottom:827.296000pt;}
.y1be{bottom:828.490667pt;}
.y88{bottom:830.882667pt;}
.yd3{bottom:831.281333pt;}
.y23{bottom:833.588000pt;}
.y55{bottom:833.656000pt;}
.y184{bottom:840.696000pt;}
.y1bd{bottom:843.833333pt;}
.y142{bottom:844.033333pt;}
.y87{bottom:847.620000pt;}
.y22{bottom:847.934667pt;}
.yd2{bottom:848.018667pt;}
.y54{bottom:850.393333pt;}
.y183{bottom:856.317333pt;}
.y1bc{bottom:859.176000pt;}
.ya3{bottom:860.770667pt;}
.y86{bottom:864.357333pt;}
.yd1{bottom:864.754667pt;}
.y53{bottom:867.130667pt;}
.y182{bottom:871.938667pt;}
.y1bb{bottom:874.518667pt;}
.ya2{bottom:877.508000pt;}
.y85{bottom:881.094667pt;}
.yd0{bottom:881.492000pt;}
.y52{bottom:883.868000pt;}
.y7{bottom:887.520000pt;}
.y181{bottom:887.561333pt;}
.y1ba{bottom:889.861333pt;}
.ya1{bottom:894.245333pt;}
.y84{bottom:897.832000pt;}
.ycf{bottom:898.229333pt;}
.y51{bottom:900.605333pt;}
.y180{bottom:903.182667pt;}
.y1b9{bottom:905.204000pt;}
.ya0{bottom:910.982667pt;}
.yce{bottom:914.966667pt;}
.y50{bottom:917.342667pt;}
.y83{bottom:918.553333pt;}
.y17f{bottom:918.804000pt;}
.y1b8{bottom:920.546667pt;}
.y6{bottom:925.510667pt;}
.y9f{bottom:927.720000pt;}
.ycd{bottom:931.704000pt;}
.y4f{bottom:934.080000pt;}
.y17e{bottom:934.425333pt;}
.y1b7{bottom:935.889333pt;}
.y9e{bottom:944.456000pt;}
.y82{bottom:948.441333pt;}
.y5{bottom:950.616000pt;}
.y4e{bottom:950.817333pt;}
.y1b6{bottom:951.230667pt;}
.y9d{bottom:961.193333pt;}
.y17d{bottom:962.309333pt;}
.y81{bottom:965.178667pt;}
.y1b5{bottom:966.573333pt;}
.y4d{bottom:967.554667pt;}
.y4{bottom:975.722667pt;}
.y80{bottom:981.916000pt;}
.y4c{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4b{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.ha{height:33.771789pt;}
.hc{height:34.574438pt;}
.h10{height:36.873667pt;}
.h6{height:38.415786pt;}
.hb{height:38.596538pt;}
.h4{height:38.947124pt;}
.hd{height:43.421286pt;}
.h13{height:44.647953pt;}
.h12{height:44.743953pt;}
.h2{height:45.272024pt;}
.he{height:48.245551pt;}
.hf{height:63.795772pt;}
.h3{height:68.781897pt;}
.h5{height:69.148877pt;}
.h14{height:69.218620pt;}
.h11{height:84.693551pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:51.603593pt;}
.x49{left:58.040000pt;}
.x82{left:76.185333pt;}
.x4d{left:77.120000pt;}
.x4e{left:79.452000pt;}
.x78{left:115.729333pt;}
.x77{left:118.053333pt;}
.x74{left:127.244000pt;}
.x79{left:136.093333pt;}
.x73{left:175.438667pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.x7{left:251.365333pt;}
.x6b{left:253.957333pt;}
.x12{left:257.373333pt;}
.x13{left:264.016000pt;}
.x2e{left:271.684000pt;}
.x62{left:273.552000pt;}
.x75{left:274.550667pt;}
.x6{left:276.121333pt;}
.x10{left:280.234667pt;}
.x1e{left:281.574667pt;}
.x2f{left:284.966667pt;}
.x11{left:286.876000pt;}
.x30{left:288.354667pt;}
.x61{left:289.948000pt;}
.x6c{left:290.941333pt;}
.x84{left:292.332000pt;}
.x1f{left:294.858667pt;}
.x36{left:300.441333pt;}
.x31{left:301.638667pt;}
.x63{left:303.500000pt;}
.x65{left:308.817333pt;}
.x48{left:312.310667pt;}
.x37{left:313.725333pt;}
.x85{left:316.242667pt;}
.x4f{left:318.421333pt;}
.x6d{left:323.186667pt;}
.x3d{left:329.801333pt;}
.x7d{left:336.170667pt;}
.x24{left:338.850667pt;}
.x40{left:348.638667pt;}
.x22{left:350.144000pt;}
.x25{left:352.133333pt;}
.x66{left:359.156000pt;}
.x41{left:361.922667pt;}
.x23{left:363.428000pt;}
.x67{left:365.837333pt;}
.x5d{left:372.021333pt;}
.xc{left:373.992000pt;}
.x59{left:376.608000pt;}
.x26{left:379.297333pt;}
.xd{left:380.633333pt;}
.x7c{left:383.008000pt;}
.xe{left:383.974667pt;}
.x5e{left:385.304000pt;}
.x1c{left:388.265333pt;}
.xf{left:390.616000pt;}
.x5a{left:391.516000pt;}
.x27{left:392.581333pt;}
.x6e{left:397.988000pt;}
.x28{left:399.322667pt;}
.x1d{left:401.549333pt;}
.x6f{left:411.272000pt;}
.x29{left:412.606667pt;}
.x70{left:414.658667pt;}
.x46{left:419.820000pt;}
.x71{left:427.942667pt;}
.x47{left:433.104000pt;}
.xa{left:437.874667pt;}
.x4a{left:439.002667pt;}
.x38{left:443.388000pt;}
.xb{left:444.516000pt;}
.x14{left:452.928000pt;}
.x39{left:456.672000pt;}
.x15{left:459.570667pt;}
.x16{left:462.857333pt;}
.x17{left:469.500000pt;}
.x3a{left:473.237333pt;}
.x42{left:500.542667pt;}
.x68{left:503.852000pt;}
.x34{left:514.392000pt;}
.x2a{left:515.813333pt;}
.x43{left:526.066667pt;}
.x35{left:527.676000pt;}
.x2b{left:529.097333pt;}
.x2c{left:535.872000pt;}
.x18{left:538.348000pt;}
.x44{left:539.350667pt;}
.x2d{left:549.154667pt;}
.x19{left:551.632000pt;}
.x1a{left:555.020000pt;}
.x5b{left:560.576000pt;}
.x1b{left:568.302667pt;}
.x5c{left:574.821333pt;}
.x69{left:575.830667pt;}
.x4b{left:585.366667pt;}
.x57{left:592.588000pt;}
.x20{left:594.165333pt;}
.x52{left:595.568000pt;}
.x4c{left:597.470667pt;}
.x6a{left:601.126667pt;}
.x58{left:605.872000pt;}
.x21{left:607.449333pt;}
.x53{left:608.850667pt;}
.x50{left:638.540000pt;}
.x8{left:642.293333pt;}
.x9{left:648.934667pt;}
.x51{left:651.822667pt;}
.x83{left:654.973333pt;}
.x7e{left:657.122667pt;}
.x45{left:663.044000pt;}
.x64{left:665.580000pt;}
.x55{left:674.905333pt;}
.x3b{left:676.376000pt;}
.x54{left:679.177333pt;}
.x7f{left:681.033333pt;}
.x56{left:688.189333pt;}
.x3c{left:689.660000pt;}
.x7a{left:691.254667pt;}
.x72{left:697.721333pt;}
.x5f{left:699.758667pt;}
.x7b{left:704.538667pt;}
.x60{left:713.042667pt;}
.x80{left:720.353333pt;}
.x32{left:726.178667pt;}
.x3e{left:727.905333pt;}
.x33{left:739.461333pt;}
.x3f{left:741.189333pt;}
.x76{left:743.265333pt;}
.x81{left:744.262667pt;}
}




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