
    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_bb1782098de4c7da2e5d7b7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893000;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_0cf0a56181886d893f604b7b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_9177846f3325d4bb14bc3ae4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_7cd7769abab19619c87a11aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_2120d74f0af8afd49133803c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.845000;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_bb1782098de4c7da2e5d7b7a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893000;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);}
.me{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m18{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);}
.m1b{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);}
.m20{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);}
.m3{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);}
.m9{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);}
.m28{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);}
.ma{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m1{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);}
.mc{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);}
.m29{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);}
.m23{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);}
.m26{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);}
.m27{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);}
.m17{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);}
.m1c{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);}
.m11{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);}
.m1e{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);}
.m25{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);}
.m14{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);}
.m7{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);}
.mf{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);}
.md{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);}
.m22{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m19{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);}
.m13{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);}
.m12{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);}
.m15{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);}
.m5{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);}
.m16{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-37.903895px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.029301px;}
.v4{vertical-align:28.393420px;}
.v3{vertical-align:31.381569px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:5.978399px;}
.ls8{letter-spacing:16.102637px;}
.lsb{letter-spacing:16.168095px;}
.ls6{letter-spacing:16.233552px;}
.ls5{letter-spacing:16.299010px;}
.ls0{letter-spacing:16.364468px;}
.ls10{letter-spacing:16.495384px;}
.lsd{letter-spacing:16.626300px;}
.lse{letter-spacing:16.691758px;}
.ls2{letter-spacing:16.757215px;}
.ls4{letter-spacing:17.149963px;}
.ls19{letter-spacing:17.215421px;}
.ls12{letter-spacing:17.477252px;}
.ls9{letter-spacing:19.506446px;}
.ls16{letter-spacing:19.571904px;}
.ls1{letter-spacing:20.030109px;}
.ls7{letter-spacing:21.470182px;}
.ls17{letter-spacing:21.519602px;}
.ls18{letter-spacing:21.520068px;}
.ls13{letter-spacing:21.797472px;}
.lsf{letter-spacing:22.975713px;}
.ls15{letter-spacing:24.472868px;}
.ls11{letter-spacing:24.546702px;}
.lsc{letter-spacing:26.117691px;}
.ls1a{letter-spacing:30.503369px;}
.ls14{letter-spacing:43.136738px;}
.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;}
}
.ws5{word-spacing:-17.933697px;}
.ws54{word-spacing:-16.364468px;}
.ws5f{word-spacing:-13.450272px;}
.wsac{word-spacing:-3.534725px;}
.ws89{word-spacing:-3.469267px;}
.ws4d{word-spacing:-3.207436px;}
.ws2f{word-spacing:-3.141978px;}
.ws124{word-spacing:-3.011062px;}
.ws2e{word-spacing:-2.945604px;}
.wsd6{word-spacing:-2.929151px;}
.ws7c{word-spacing:-2.749231px;}
.ws48{word-spacing:-2.683773px;}
.ws36{word-spacing:-2.618315px;}
.ws42{word-spacing:-2.552857px;}
.ws6{word-spacing:-2.450922px;}
.ws7b{word-spacing:-2.356483px;}
.wsd4{word-spacing:-2.291026px;}
.ws8c{word-spacing:-2.094652px;}
.ws59{word-spacing:-2.029194px;}
.wse{word-spacing:-1.853136px;}
.ws7a{word-spacing:-1.832820px;}
.ws53{word-spacing:-1.701905px;}
.wsfb{word-spacing:-1.494465px;}
.ws33{word-spacing:-1.440073px;}
.wsf2{word-spacing:-1.315129px;}
.ws6d{word-spacing:-1.243700px;}
.ws69{word-spacing:-1.178242px;}
.ws114{word-spacing:-1.135793px;}
.ws8b{word-spacing:-1.112784px;}
.wsaf{word-spacing:-1.047326px;}
.ws1a{word-spacing:-0.981868px;}
.ws4f{word-spacing:-0.916410px;}
.ws6a{word-spacing:-0.720037px;}
.ws70{word-spacing:-0.654579px;}
.ws11a{word-spacing:-0.538007px;}
.wscc{word-spacing:-0.523663px;}
.ws16{word-spacing:-0.478229px;}
.ws52{word-spacing:-0.458205px;}
.ws79{word-spacing:-0.392747px;}
.ws104{word-spacing:-0.358672px;}
.ws30{word-spacing:-0.327289px;}
.wseb{word-spacing:-0.298893px;}
.ws129{word-spacing:-0.269005px;}
.ws19{word-spacing:-0.261831px;}
.wsa{word-spacing:-0.239114px;}
.ws95{word-spacing:-0.229884px;}
.ws12f{word-spacing:-0.215204px;}
.ws1c{word-spacing:-0.196374px;}
.wsdc{word-spacing:-0.179336px;}
.ws31{word-spacing:-0.130916px;}
.wsb{word-spacing:-0.119557px;}
.wsa2{word-spacing:-0.110719px;}
.ws12e{word-spacing:-0.107602px;}
.ws2{word-spacing:-0.086082px;}
.wscd{word-spacing:-0.071735px;}
.ws37{word-spacing:-0.065458px;}
.wsd8{word-spacing:-0.059779px;}
.ws4{word-spacing:0.000000px;}
.ws12a{word-spacing:0.053801px;}
.ws10d{word-spacing:0.059779px;}
.ws24{word-spacing:0.065458px;}
.wsfc{word-spacing:0.087030px;}
.ws12b{word-spacing:0.107602px;}
.ws7{word-spacing:0.119557px;}
.ws18{word-spacing:0.130916px;}
.wsb6{word-spacing:0.138023px;}
.wsb7{word-spacing:0.154762px;}
.ws8{word-spacing:0.179336px;}
.ws101{word-spacing:0.184862px;}
.ws47{word-spacing:0.196374px;}
.ws12d{word-spacing:0.215204px;}
.ws100{word-spacing:0.239114px;}
.wse0{word-spacing:0.252898px;}
.ws50{word-spacing:0.261831px;}
.ws132{word-spacing:0.269005px;}
.ws73{word-spacing:0.293416px;}
.wsde{word-spacing:0.298893px;}
.ws29{word-spacing:0.327289px;}
.wsd{word-spacing:0.358672px;}
.ws23{word-spacing:0.392747px;}
.ws27{word-spacing:0.523663px;}
.wsaa{word-spacing:0.589121px;}
.ws26{word-spacing:0.785494px;}
.ws2a{word-spacing:0.850952px;}
.wsae{word-spacing:0.916410px;}
.wsdf{word-spacing:0.956457px;}
.ws49{word-spacing:0.981868px;}
.wsff{word-spacing:1.016236px;}
.ws87{word-spacing:1.047326px;}
.ws12{word-spacing:1.076015px;}
.ws6e{word-spacing:1.112784px;}
.ws119{word-spacing:1.135793px;}
.ws126{word-spacing:1.237425px;}
.wsbe{word-spacing:1.309157px;}
.ws3e{word-spacing:1.374615px;}
.ws32{word-spacing:1.440073px;}
.ws12c{word-spacing:1.560232px;}
.ws25{word-spacing:1.767363px;}
.ws10e{word-spacing:1.793358px;}
.ws4c{word-spacing:1.832820px;}
.ws4b{word-spacing:1.963736px;}
.ws14{word-spacing:1.972693px;}
.wsf0{word-spacing:2.032472px;}
.wsec{word-spacing:2.092251px;}
.ws2d{word-spacing:2.225568px;}
.ws34{word-spacing:2.291026px;}
.ws123{word-spacing:2.356483px;}
.ws131{word-spacing:2.367248px;}
.wsc{word-spacing:2.450922px;}
.ws5a{word-spacing:2.552857px;}
.ws110{word-spacing:2.570479px;}
.ws2c{word-spacing:2.618315px;}
.wsf1{word-spacing:2.690036px;}
.ws127{word-spacing:2.690054px;}
.wsc9{word-spacing:2.880146px;}
.ws3f{word-spacing:2.945604px;}
.wse3{word-spacing:3.048708px;}
.ws3c{word-spacing:3.076520px;}
.ws3b{word-spacing:3.141978px;}
.wsb1{word-spacing:3.207436px;}
.wsfa{word-spacing:3.228044px;}
.ws11f{word-spacing:3.228065px;}
.ws99{word-spacing:3.272894px;}
.ws10c{word-spacing:3.407380px;}
.ws9f{word-spacing:3.534725px;}
.wsfe{word-spacing:3.586715px;}
.ws22{word-spacing:3.665641px;}
.ws46{word-spacing:3.731099px;}
.ws10b{word-spacing:3.766051px;}
.ws133{word-spacing:3.766076px;}
.ws38{word-spacing:3.927472px;}
.ws121{word-spacing:3.992930px;}
.ws113{word-spacing:4.064944px;}
.ws1e{word-spacing:4.123846px;}
.ws15{word-spacing:4.244280px;}
.ws51{word-spacing:4.254762px;}
.wsa4{word-spacing:4.320220px;}
.ws40{word-spacing:4.451135px;}
.ws8e{word-spacing:4.516593px;}
.ws57{word-spacing:4.582051px;}
.ws10{word-spacing:4.602951px;}
.wsad{word-spacing:4.647509px;}
.ws9{word-spacing:4.722509px;}
.ws134{word-spacing:4.842098px;}
.ws3d{word-spacing:4.843883px;}
.ws28{word-spacing:4.909340px;}
.ws88{word-spacing:4.974798px;}
.ws3a{word-spacing:5.105714px;}
.ws68{word-spacing:5.171172px;}
.ws71{word-spacing:5.236630px;}
.wscb{word-spacing:5.302088px;}
.ws45{word-spacing:5.367546px;}
.ws13{word-spacing:5.380073px;}
.ws8f{word-spacing:5.409923px;}
.ws6c{word-spacing:5.433003px;}
.ws111{word-spacing:5.559409px;}
.ws55{word-spacing:5.563919px;}
.ws2b{word-spacing:5.629377px;}
.wsf4{word-spacing:5.798523px;}
.wsc8{word-spacing:5.825751px;}
.wsce{word-spacing:5.891209px;}
.ws115{word-spacing:5.918080px;}
.wsc2{word-spacing:6.022124px;}
.ws78{word-spacing:6.087582px;}
.ws122{word-spacing:6.153040px;}
.ws106{word-spacing:6.248320px;}
.ws1f{word-spacing:6.414872px;}
.ws9e{word-spacing:6.420229px;}
.ws35{word-spacing:6.480329px;}
.ws66{word-spacing:6.611245px;}
.wsd5{word-spacing:6.635423px;}
.ws105{word-spacing:6.695202px;}
.wsa6{word-spacing:6.807619px;}
.wsc0{word-spacing:6.873077px;}
.ws9a{word-spacing:6.938535px;}
.ws77{word-spacing:7.003992px;}
.wsb2{word-spacing:7.069450px;}
.wsda{word-spacing:7.113652px;}
.wse5{word-spacing:7.161358px;}
.wsc7{word-spacing:7.342449px;}
.wsbb{word-spacing:7.396740px;}
.wse2{word-spacing:7.532102px;}
.wsf{word-spacing:7.711438px;}
.ws65{word-spacing:7.724029px;}
.wse9{word-spacing:7.771217px;}
.ws72{word-spacing:7.854945px;}
.wsab{word-spacing:7.920403px;}
.ws8a{word-spacing:7.985860px;}
.ws120{word-spacing:8.051318px;}
.wsea{word-spacing:8.070109px;}
.ws67{word-spacing:8.182234px;}
.ws109{word-spacing:8.189667px;}
.ws5b{word-spacing:8.509523px;}
.ws1b{word-spacing:8.640439px;}
.wse7{word-spacing:8.667895px;}
.ws5d{word-spacing:8.836813px;}
.ws116{word-spacing:8.847231px;}
.wsa5{word-spacing:9.076506px;}
.wsc5{word-spacing:9.164102px;}
.ws39{word-spacing:9.229560px;}
.ws58{word-spacing:9.360476px;}
.wsd3{word-spacing:9.491392px;}
.ws11{word-spacing:9.564574px;}
.ws41{word-spacing:9.687765px;}
.ws44{word-spacing:9.753223px;}
.ws97{word-spacing:10.015055px;}
.wsba{word-spacing:10.145970px;}
.ws6f{word-spacing:10.211428px;}
.ws1d{word-spacing:10.342344px;}
.wsbc{word-spacing:10.473260px;}
.wsc4{word-spacing:10.669633px;}
.ws118{word-spacing:11.059039px;}
.wsc3{word-spacing:11.193296px;}
.ws130{word-spacing:11.298229px;}
.ws112{word-spacing:11.357932px;}
.wsc1{word-spacing:11.389670px;}
.wsd1{word-spacing:11.913333px;}
.wsd7{word-spacing:12.135054px;}
.ws85{word-spacing:12.371538px;}
.wsdb{word-spacing:12.493725px;}
.wsb0{word-spacing:12.829743px;}
.wsed{word-spacing:13.151290px;}
.wsa7{word-spacing:13.157032px;}
.ws0{word-spacing:13.395802px;}
.ws125{word-spacing:13.396471px;}
.wsf7{word-spacing:13.450182px;}
.ws98{word-spacing:13.484322px;}
.wsc6{word-spacing:13.680695px;}
.ws75{word-spacing:14.138901px;}
.ws43{word-spacing:14.204358px;}
.wse6{word-spacing:14.346861px;}
.ws103{word-spacing:14.526197px;}
.ws107{word-spacing:14.585976px;}
.wsdd{word-spacing:14.884869px;}
.wsfd{word-spacing:14.944647px;}
.wsd9{word-spacing:15.004426px;}
.ws102{word-spacing:15.064204px;}
.wsf3{word-spacing:15.123983px;}
.wse1{word-spacing:15.183762px;}
.wsd2{word-spacing:15.317142px;}
.wsd0{word-spacing:15.448058px;}
.ws10a{word-spacing:15.542433px;}
.ws6b{word-spacing:15.554587px;}
.ws9b{word-spacing:15.644432px;}
.ws20{word-spacing:15.709889px;}
.ws21{word-spacing:15.775347px;}
.ws93{word-spacing:16.011351px;}
.ws96{word-spacing:16.086718px;}
.wsbf{word-spacing:16.129467px;}
.wsa3{word-spacing:16.176579px;}
.wsb3{word-spacing:16.179853px;}
.ws8d{word-spacing:16.184535px;}
.wsa1{word-spacing:16.194022px;}
.wsb4{word-spacing:16.233552px;}
.ws4e{word-spacing:16.299010px;}
.ws5c{word-spacing:16.429926px;}
.wsb8{word-spacing:16.440643px;}
.wsb5{word-spacing:16.441197px;}
.ws94{word-spacing:16.560842px;}
.ws74{word-spacing:16.606329px;}
.ws86{word-spacing:17.383929px;}
.wsbd{word-spacing:17.635671px;}
.ws3{word-spacing:17.861962px;}
.wse4{word-spacing:17.933577px;}
.ws9c{word-spacing:18.131831px;}
.wse8{word-spacing:18.352027px;}
.wsca{word-spacing:19.205121px;}
.wsa9{word-spacing:19.416896px;}
.wsa0{word-spacing:19.887508px;}
.ws4a{word-spacing:20.291941px;}
.ws108{word-spacing:20.504056px;}
.wsb9{word-spacing:20.771032px;}
.ws1{word-spacing:21.434294px;}
.ws90{word-spacing:21.666556px;}
.ws10f{word-spacing:22.177856px;}
.ws9d{word-spacing:22.695670px;}
.wsf5{word-spacing:24.150550px;}
.wsef{word-spacing:24.688557px;}
.wscf{word-spacing:24.743076px;}
.wsf6{word-spacing:24.987450px;}
.ws117{word-spacing:26.541693px;}
.ws92{word-spacing:26.772270px;}
.ws128{word-spacing:28.030368px;}
.wsf8{word-spacing:28.753501px;}
.wsa8{word-spacing:29.485080px;}
.ws76{word-spacing:30.462047px;}
.wsee{word-spacing:38.389831px;}
.wsf9{word-spacing:43.638370px;}
.ws63{word-spacing:58.266580px;}
.ws11e{word-spacing:58.276277px;}
.ws82{word-spacing:58.280914px;}
.ws83{word-spacing:58.289497px;}
.ws5e{word-spacing:58.300470px;}
.ws7e{word-spacing:64.668910px;}
.ws56{word-spacing:65.392415px;}
.ws17{word-spacing:71.663052px;}
.ws84{word-spacing:71.677385px;}
.ws60{word-spacing:75.445305px;}
.ws7d{word-spacing:94.151907px;}
.ws81{word-spacing:98.583931px;}
.ws62{word-spacing:120.245436px;}
.ws64{word-spacing:135.202139px;}
.ws61{word-spacing:147.145981px;}
.ws91{word-spacing:166.450055px;}
.ws11d{word-spacing:208.704124px;}
.ws7f{word-spacing:382.420730px;}
.ws80{word-spacing:385.756397px;}
.ws11b{word-spacing:394.846199px;}
.ws11c{word-spacing:556.141867px;}
._2{margin-left:-8.866395px;}
._38{margin-left:-7.431857px;}
._4{margin-left:-6.370031px;}
._1{margin-left:-4.949453px;}
._7{margin-left:-3.796045px;}
._0{margin-left:-2.420928px;}
._5{margin-left:-1.291223px;}
._3d{width:1.002506px;}
._39{width:3.265784px;}
._36{width:13.509961px;}
._f{width:14.714527px;}
._29{width:17.149963px;}
._6{width:18.381811px;}
._a{width:20.095567px;}
._26{width:21.142893px;}
._9{width:22.476749px;}
._b{width:24.481244px;}
._8{width:25.585026px;}
._3{width:26.771348px;}
._12{width:28.080414px;}
._2f{width:29.128753px;}
._d{width:30.765200px;}
._13{width:32.137278px;}
._27{width:34.103552px;}
._3f{width:35.197447px;}
._c{width:36.329119px;}
._3c{width:37.639283px;}
._33{width:39.060608px;}
._3e{width:40.679225px;}
._28{width:41.827581px;}
._37{width:44.323911px;}
._24{width:45.362306px;}
._3a{width:46.825921px;}
._35{width:48.242452px;}
._34{width:50.075273px;}
._25{width:51.383417px;}
._2d{width:57.930217px;}
._30{width:61.137653px;}
._e{width:63.494137px;}
._11{width:65.457873px;}
._32{width:67.879814px;}
._2e{width:70.545652px;}
._10{width:71.734787px;}
._14{width:94.151907px;}
._2c{width:98.671199px;}
._2b{width:103.728380px;}
._2a{width:110.615041px;}
._3b{width:114.833825px;}
._1f{width:148.652164px;}
._4a{width:165.908295px;}
._43{width:175.606636px;}
._1a{width:181.417275px;}
._1d{width:191.047670px;}
._40{width:201.983030px;}
._16{width:205.842970px;}
._17{width:208.317820px;}
._1c{width:212.245300px;}
._19{width:220.853474px;}
._18{width:239.145845px;}
._22{width:247.162207px;}
._21{width:258.083828px;}
._1b{width:271.802855px;}
._42{width:320.076422px;}
._23{width:396.406309px;}
._1e{width:399.472972px;}
._46{width:462.473921px;}
._41{width:466.522989px;}
._45{width:469.522112px;}
._20{width:477.646076px;}
._4b{width:494.749548px;}
._47{width:512.562984px;}
._44{width:535.213243px;}
._49{width:580.234948px;}
._48{width:712.093027px;}
._15{width:961.855886px;}
._31{width:1174.258359px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.889294px;}
.fs3{font-size:47.822991px;}
.fs0{font-size:53.798400px;}
.fs7{font-size:53.801090px;}
.fs4{font-size:59.778589px;}
.fs8{font-size:65.454600px;}
.fs5{font-size:65.457873px;}
.fs2{font-size:71.734787px;}
.fs1{font-size:86.081504px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.836500px;}
.y1{bottom:55.275000px;}
.y59{bottom:75.867000px;}
.y58{bottom:103.562179px;}
.y32{bottom:113.038153px;}
.y17b{bottom:120.001501px;}
.y57{bottom:123.886695px;}
.y31{bottom:134.735238px;}
.y17a{bottom:136.440823px;}
.y56{bottom:144.211212px;}
.y7c{bottom:150.102006px;}
.ybc{bottom:150.960049px;}
.y117{bottom:151.839093px;}
.y179{bottom:152.878645px;}
.y30{bottom:155.061254px;}
.y55{bottom:164.535728px;}
.y1af{bottom:166.119807px;}
.y178{bottom:169.317967px;}
.y2f{bottom:175.385770px;}
.ybb{bottom:176.669834px;}
.y1ae{bottom:182.559129px;}
.y7b{bottom:183.172660px;}
.y54{bottom:184.860244px;}
.y116{bottom:188.448423px;}
.y2e{bottom:195.710286px;}
.y177{bottom:197.174360px;}
.y1ad{bottom:198.998451px;}
.yba{bottom:202.379620px;}
.y7a{bottom:203.497176px;}
.y53{bottom:205.186260px;}
.y115{bottom:208.772939px;}
.y176{bottom:213.613682px;}
.y1ac{bottom:215.437773px;}
.y2d{bottom:216.034803px;}
.y79{bottom:223.823192px;}
.y52{bottom:225.510776px;}
.ydb{bottom:226.316317px;}
.y114{bottom:229.097456px;}
.yb9{bottom:229.452973px;}
.y175{bottom:230.053003px;}
.y2c{bottom:236.359319px;}
.y78{bottom:244.147708px;}
.y1ab{bottom:245.118257px;}
.y51{bottom:245.835293px;}
.yda{bottom:246.640833px;}
.y113{bottom:249.421972px;}
.yb8{bottom:249.777490px;}
.y2b{bottom:256.683835px;}
.y174{bottom:257.909396px;}
.y1aa{bottom:261.557579px;}
.y77{bottom:264.472224px;}
.y50{bottom:266.159809px;}
.yd9{bottom:266.965349px;}
.y138{bottom:267.386870px;}
.y112{bottom:269.747988px;}
.yb7{bottom:270.102006px;}
.y173{bottom:274.347218px;}
.y2a{bottom:277.009851px;}
.y1a9{bottom:277.996901px;}
.y76{bottom:284.796740px;}
.y4f{bottom:286.484325px;}
.yd8{bottom:287.289865px;}
.y137{bottom:287.711386px;}
.y111{bottom:290.072504px;}
.yb6{bottom:290.426522px;}
.y172{bottom:290.786540px;}
.y1a8{bottom:294.436222px;}
.y29{bottom:297.334367px;}
.y75{bottom:305.121257px;}
.y4e{bottom:306.810341px;}
.y171{bottom:307.225862px;}
.yd7{bottom:307.615881px;}
.y136{bottom:308.037402px;}
.y110{bottom:310.397020px;}
.y1a7{bottom:310.874044px;}
.y8b{bottom:312.873644px;}
.y1d5{bottom:313.007151px;}
.yb5{bottom:316.643333px;}
.y28{bottom:317.658884px;}
.y170{bottom:323.665184px;}
.y74{bottom:325.447273px;}
.y109{bottom:327.134857px;}
.y1a6{bottom:327.313366px;}
.yd6{bottom:327.940398px;}
.y135{bottom:328.361919px;}
.y4d{bottom:328.931947px;}
.y10f{bottom:330.721537px;}
.y8a{bottom:333.198160px;}
.y27{bottom:337.983400px;}
.y1a5{bottom:343.752688px;}
.y73{bottom:345.771789px;}
.yb4{bottom:346.692835px;}
.y108{bottom:347.459373px;}
.yd5{bottom:348.264914px;}
.y134{bottom:348.686435px;}
.y4c{bottom:349.256463px;}
.y10e{bottom:351.046053px;}
.y16f{bottom:351.521577px;}
.y89{bottom:353.522677px;}
.y26{bottom:358.307916px;}
.y72{bottom:366.096305px;}
.y1d4{bottom:367.045853px;}
.y107{bottom:367.783890px;}
.y16e{bottom:367.960898px;}
.yd4{bottom:368.589430px;}
.y133{bottom:369.010951px;}
.y4b{bottom:369.582480px;}
.y10d{bottom:371.372069px;}
.y1a4{bottom:373.433172px;}
.y88{bottom:373.847193px;}
.y25{bottom:378.633932px;}
.yb3{bottom:381.022052px;}
.y16d{bottom:384.400220px;}
.y71{bottom:386.420821px;}
.y106{bottom:388.108406px;}
.yd3{bottom:388.913946px;}
.y132{bottom:389.335467px;}
.y1a3{bottom:389.872494px;}
.y4a{bottom:389.906996px;}
.y10c{bottom:391.696585px;}
.y87{bottom:394.173209px;}
.y24{bottom:398.958448px;}
.y1d3{bottom:399.624482px;}
.yb2{bottom:401.346568px;}
.y1a2{bottom:406.311816px;}
.y70{bottom:406.745338px;}
.y105{bottom:408.434422px;}
.yd2{bottom:409.239962px;}
.y10b{bottom:412.021101px;}
.y16c{bottom:412.255113px;}
.y86{bottom:414.497725px;}
.y1d2{bottom:414.569729px;}
.y131{bottom:417.988400px;}
.y23{bottom:419.282964px;}
.yb1{bottom:421.672584px;}
.y1cf{bottom:422.041602px;}
.y1a1{bottom:422.751138px;}
.y49{bottom:425.733287px;}
.y16b{bottom:428.694435px;}
.y148{bottom:428.758938px;}
.y1d1{bottom:429.513476px;}
.yd1{bottom:429.564479px;}
.y10a{bottom:432.345618px;}
.y85{bottom:434.822241px;}
.y6f{bottom:437.607881px;}
.y22{bottom:439.607481px;}
.yb0{bottom:441.997100px;}
.y1d0{bottom:444.458723px;}
.y16a{bottom:445.133757px;}
.y147{bottom:449.083454px;}
.yd0{bottom:449.888995px;}
.y1a0{bottom:452.431622px;}
.y104{bottom:452.670134px;}
.y84{bottom:455.146758px;}
.y130{bottom:455.818791px;}
.y1ce{bottom:459.403970px;}
.y21{bottom:459.931997px;}
.y169{bottom:461.573079px;}
.yaf{bottom:462.321616px;}
.y48{bottom:467.610881px;}
.y19f{bottom:468.870944px;}
.y146{bottom:469.407971px;}
.ycf{bottom:470.213511px;}
.y6e{bottom:472.748638px;}
.y1cd{bottom:474.347718px;}
.y83{bottom:475.471274px;}
.y12f{bottom:476.143307px;}
.yae{bottom:482.646132px;}
.y19e{bottom:485.308766px;}
.y47{bottom:487.935397px;}
.y1f7{bottom:488.388420px;}
.y1cc{bottom:489.292965px;}
.y168{bottom:489.429472px;}
.y145{bottom:489.732487px;}
.yce{bottom:490.538027px;}
.y20{bottom:491.124556px;}
.y6d{bottom:493.073154px;}
.y1cb{bottom:496.391320px;}
.y12e{bottom:496.467824px;}
.y19d{bottom:501.748088px;}
.yad{bottom:502.970649px;}
.y103{bottom:504.379219px;}
.y167{bottom:505.868794px;}
.y1f6{bottom:506.321816px;}
.y46{bottom:508.259913px;}
.y144{bottom:510.058503px;}
.ycd{bottom:510.864043px;}
.y6c{bottom:513.397670px;}
.y82{bottom:513.726186px;}
.y12d{bottom:516.792340px;}
.y19c{bottom:518.187409px;}
.y1ca{bottom:519.181959px;}
.y166{bottom:522.308115px;}
.yac{bottom:523.296665px;}
.y1f{bottom:525.998300px;}
.y45{bottom:528.584429px;}
.y143{bottom:530.383019px;}
.ycc{bottom:531.188559px;}
.y6b{bottom:533.722186px;}
.y1c9{bottom:534.127206px;}
.y102{bottom:536.959348px;}
.y12c{bottom:537.116856px;}
.y165{bottom:538.747437px;}
.y1f5{bottom:538.901945px;}
.yab{bottom:543.621181px;}
.y1e{bottom:543.931697px;}
.y19b{bottom:547.867893px;}
.y44{bottom:548.910446px;}
.y1c8{bottom:549.072454px;}
.y1e5{bottom:549.168458px;}
.y142{bottom:550.806540px;}
.ycb{bottom:551.513076px;}
.y101{bottom:551.903095px;}
.y1f4{bottom:553.845692px;}
.y6a{bottom:554.048202px;}
.y164{bottom:555.185259px;}
.y12b{bottom:557.442872px;}
.y1d{bottom:561.865093px;}
.yaa{bottom:563.945697px;}
.y1c6{bottom:564.016201px;}
.y19a{bottom:564.307215px;}
.y100{bottom:566.848342px;}
.y81{bottom:568.309415px;}
.y1f3{bottom:568.790939px;}
.y43{bottom:569.234962px;}
.y1e4{bottom:569.492975px;}
.y141{bottom:571.131056px;}
.yca{bottom:571.837592px;}
.y69{bottom:574.372719px;}
.y12a{bottom:577.767388px;}
.y1c5{bottom:578.961448px;}
.y1c{bottom:579.798490px;}
.y199{bottom:580.746537px;}
.yfc{bottom:581.793590px;}
.y163{bottom:583.041652px;}
.y1f2{bottom:583.736187px;}
.ya9{bottom:584.270213px;}
.y80{bottom:588.633932px;}
.y42{bottom:589.559478px;}
.y1e3{bottom:589.817491px;}
.y140{bottom:591.455573px;}
.y1c7{bottom:593.906695px;}
.y68{bottom:594.697235px;}
.yff{bottom:596.737337px;}
.y198{bottom:597.185859px;}
.y1b{bottom:597.731886px;}
.y129{bottom:598.091904px;}
.y1f1{bottom:599.278464px;}
.y162{bottom:599.480974px;}
.yc9{bottom:599.653483px;}
.ya8{bottom:604.594730px;}
.y7f{bottom:608.958448px;}
.y1c4{bottom:609.448972px;}
.y41{bottom:609.883994px;}
.y1e2{bottom:610.142007px;}
.yfe{bottom:611.682584px;}
.y13f{bottom:611.781589px;}
.y197{bottom:613.625181px;}
.y1f0{bottom:614.222211px;}
.y67{bottom:615.021751px;}
.y1a{bottom:615.665283px;}
.y161{bottom:615.920296px;}
.y128{bottom:618.416421px;}
.ya7{bottom:624.920746px;}
.yfd{bottom:626.626331px;}
.y1ef{bottom:629.167458px;}
.y7e{bottom:629.282964px;}
.y40{bottom:630.208510px;}
.y1e1{bottom:630.468023px;}
.y13e{bottom:632.106105px;}
.yc8{bottom:633.019651px;}
.y19{bottom:633.600180px;}
.y66{bottom:635.346267px;}
.y127{bottom:638.740937px;}
.yfb{bottom:642.170108px;}
.y1c3{bottom:642.291614px;}
.y196{bottom:643.305665px;}
.y160{bottom:643.776689px;}
.y1ee{bottom:644.709735px;}
.ya6{bottom:645.245262px;}
.y7d{bottom:649.607480px;}
.y3f{bottom:650.534526px;}
.y18{bottom:651.533576px;}
.y13d{bottom:652.430621px;}
.y65{bottom:655.672283px;}
.yfa{bottom:657.113855px;}
.y126{bottom:659.066953px;}
.y1ed{bottom:659.654982px;}
.y195{bottom:659.743487px;}
.y15f{bottom:660.216011px;}
.y1c2{bottom:662.616131px;}
.ya5{bottom:665.569778px;}
.y17{bottom:669.466973px;}
.y1e0{bottom:670.563528px;}
.y3e{bottom:670.859043px;}
.yc7{bottom:671.460573px;}
.yf9{bottom:672.059103px;}
.y13c{bottom:672.755137px;}
.y1ec{bottom:674.598730px;}
.y64{bottom:675.996800px;}
.y194{bottom:676.182809px;}
.y15e{bottom:676.653832px;}
.y125{bottom:679.391469px;}
.yf4{bottom:679.530976px;}
.ya4{bottom:685.894294px;}
.yf8{bottom:687.004350px;}
.y16{bottom:687.400370px;}
.y1df{bottom:688.496924px;}
.y1c1{bottom:689.138957px;}
.y1eb{bottom:690.141007px;}
.y3d{bottom:691.183559px;}
.yc6{bottom:691.785089px;}
.y193{bottom:692.622131px;}
.y13b{bottom:693.079654px;}
.y15d{bottom:693.093154px;}
.yf3{bottom:694.476223px;}
.y63{bottom:696.321316px;}
.y124{bottom:699.715985px;}
.yf7{bottom:701.948097px;}
.y1ea{bottom:705.086254px;}
.y15{bottom:705.333766px;}
.ya3{bottom:706.218811px;}
.y192{bottom:709.061453px;}
.y15c{bottom:709.532476px;}
.y3c{bottom:711.508075px;}
.yc5{bottom:712.111105px;}
.y13a{bottom:713.405670px;}
.y62{bottom:716.645832px;}
.yf6{bottom:716.893344px;}
.y123{bottom:720.040502px;}
.y1e9{bottom:720.628531px;}
.y1c0{bottom:720.891044px;}
.y14{bottom:723.267163px;}
.ya2{bottom:726.544827px;}
.y3b{bottom:731.832591px;}
.yf5{bottom:731.837091px;}
.yc4{bottom:732.435621px;}
.y1e8{bottom:735.573778px;}
.y61{bottom:736.970348px;}
.y15b{bottom:737.388869px;}
.y191{bottom:738.741937px;}
.y122{bottom:740.365018px;}
.y13{bottom:741.202060px;}
.y139{bottom:745.021251px;}
.ya1{bottom:746.869343px;}
.yf2{bottom:747.380869px;}
.y1e7{bottom:751.116055px;}
.y3a{bottom:752.158607px;}
.yc3{bottom:752.760137px;}
.y15a{bottom:753.828191px;}
.y190{bottom:755.181259px;}
.y60{bottom:757.296364px;}
.y1bf{bottom:757.450872px;}
.y12{bottom:759.135456px;}
.y121{bottom:760.689534px;}
.yf1{bottom:762.923146px;}
.y1e6{bottom:766.061303px;}
.ya0{bottom:767.193859px;}
.y159{bottom:770.267513px;}
.y18f{bottom:771.620580px;}
.y39{bottom:772.483124px;}
.yc2{bottom:773.084654px;}
.y1be{bottom:773.890194px;}
.y11{bottom:777.068853px;}
.y5f{bottom:777.620880px;}
.y120{bottom:781.015550px;}
.y158{bottom:786.706835px;}
.y9f{bottom:787.518375px;}
.y18e{bottom:788.059902px;}
.y1bd{bottom:790.329516px;}
.yc1{bottom:793.409170px;}
.y38{bottom:794.604730px;}
.y10{bottom:795.002249px;}
.yf0{bottom:797.295864px;}
.y5e{bottom:797.945397px;}
.y11f{bottom:801.340066px;}
.y18d{bottom:804.499224px;}
.y1bc{bottom:806.768838px;}
.y9e{bottom:807.842891px;}
.yf{bottom:812.935646px;}
.yc0{bottom:813.735186px;}
.y157{bottom:814.561727px;}
.y37{bottom:814.930746px;}
.y5d{bottom:818.269913px;}
.y18c{bottom:820.938546px;}
.y11e{bottom:821.664583px;}
.y1bb{bottom:823.208160px;}
.y9d{bottom:828.168908px;}
.yef{bottom:829.874493px;}
.ye{bottom:830.869043px;}
.y156{bottom:831.001049px;}
.ybf{bottom:834.059702px;}
.y36{bottom:835.255262px;}
.y5c{bottom:838.594429px;}
.y11d{bottom:841.989099px;}
.yee{bottom:844.819740px;}
.y155{bottom:847.440371px;}
.y9c{bottom:848.493424px;}
.yd{bottom:848.803939px;}
.y18b{bottom:850.617530px;}
.y1ba{bottom:853.713685px;}
.ybe{bottom:854.384218px;}
.y35{bottom:855.579778px;}
.y5b{bottom:858.920445px;}
.yed{bottom:859.764987px;}
.y11c{bottom:862.313615px;}
.yc{bottom:866.737336px;}
.y18a{bottom:867.056852px;}
.y9b{bottom:868.817940px;}
.y1b9{bottom:870.153007px;}
.y154{bottom:873.052652px;}
.ybd{bottom:874.708735px;}
.y34{bottom:875.904294px;}
.y11b{bottom:882.639631px;}
.y189{bottom:883.496174px;}
.yb{bottom:884.670733px;}
.y1b8{bottom:886.592329px;}
.yec{bottom:889.653982px;}
.y9a{bottom:895.033251px;}
.y33{bottom:896.228811px;}
.ye6{bottom:897.125855px;}
.y188{bottom:899.935496px;}
.y11a{bottom:902.964147px;}
.yeb{bottom:904.599229px;}
.y5a{bottom:910.628030px;}
.y187{bottom:916.374818px;}
.ya{bottom:916.554827px;}
.y1b7{bottom:917.097854px;}
.yea{bottom:919.542976px;}
.y153{bottom:926.834841px;}
.y186{bottom:932.814140px;}
.ye9{bottom:934.488223px;}
.y1de{bottom:936.879343px;}
.y99{bottom:946.742336px;}
.y152{bottom:947.159357px;}
.y1b6{bottom:947.603379px;}
.y185{bottom:949.253462px;}
.ye8{bottom:949.431971px;}
.y119{bottom:954.673233px;}
.y1dd{bottom:957.203859px;}
.y1b5{bottom:964.041201px;}
.ye7{bottom:964.377218px;}
.y151{bottom:967.483873px;}
.y9{bottom:976.364317px;}
.y1dc{bottom:977.528375px;}
.y184{bottom:978.933946px;}
.y98{bottom:979.322465px;}
.ye5{bottom:979.919495px;}
.y1b4{bottom:980.480523px;}
.y118{bottom:986.654832px;}
.y150{bottom:987.809889px;}
.y96{bottom:994.266212px;}
.ye4{bottom:994.864742px;}
.y183{bottom:995.373268px;}
.y8{bottom:997.287363px;}
.y1db{bottom:997.852892px;}
.y14f{bottom:1008.134406px;}
.y97{bottom:1009.211459px;}
.ye3{bottom:1009.809989px;}
.y1b3{bottom:1010.986048px;}
.y182{bottom:1011.811089px;}
.y1da{bottom:1018.178908px;}
.y7{bottom:1018.210409px;}
.y95{bottom:1024.753736px;}
.y1b2{bottom:1027.425370px;}
.y181{bottom:1028.250411px;}
.y14e{bottom:1028.458922px;}
.y1d9{bottom:1038.503424px;}
.y6{bottom:1039.131955px;}
.y93{bottom:1039.698984px;}
.y1b1{bottom:1043.864692px;}
.y180{bottom:1044.689733px;}
.yde{bottom:1047.170857px;}
.y14d{bottom:1048.783438px;}
.y94{bottom:1054.642731px;}
.y1d8{bottom:1058.827940px;}
.y5{bottom:1060.055001px;}
.y1b0{bottom:1060.304014px;}
.ydd{bottom:1062.116105px;}
.y14c{bottom:1069.107954px;}
.ye2{bottom:1069.587978px;}
.y92{bottom:1070.186508px;}
.y17f{bottom:1074.370217px;}
.y1d7{bottom:1079.152456px;}
.ye1{bottom:1084.533225px;}
.y91{bottom:1085.130255px;}
.y14b{bottom:1089.433970px;}
.y17e{bottom:1090.809539px;}
.ye0{bottom:1099.476972px;}
.y8f{bottom:1100.075502px;}
.y4{bottom:1104.326715px;}
.y17d{bottom:1107.248861px;}
.y14a{bottom:1109.758487px;}
.ydf{bottom:1114.422220px;}
.y90{bottom:1115.020750px;}
.y1d6{bottom:1119.802989px;}
.y17c{bottom:1123.688183px;}
.y3{bottom:1128.237910px;}
.ydc{bottom:1129.964497px;}
.y8d{bottom:1130.563027px;}
.y8c{bottom:1137.661382px;}
.y149{bottom:1140.127505px;}
.y8e{bottom:1145.506774px;}
.ha{height:20.563835px;}
.h2{height:37.013299px;}
.he{height:37.015150px;}
.h10{height:37.230354px;}
.h11{height:41.008112px;}
.h8{height:41.127669px;}
.h12{height:41.727699px;}
.hb{height:45.032765px;}
.h9{height:45.035016px;}
.hc{height:45.296848px;}
.h6{height:48.134042px;}
.h5{height:49.353533px;}
.h7{height:49.640472px;}
.h4{height:59.122811px;}
.h3{height:59.568401px;}
.hf{height:65.408569px;}
.h13{height:65.414570px;}
.hd{height:68.396719px;}
.h14{height:68.402719px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:105.057754px;}
.x3{left:106.284815px;}
.x2e{left:115.252263px;}
.x5{left:120.211511px;}
.x2c{left:121.648583px;}
.x15{left:122.649133px;}
.x16{left:125.265264px;}
.x36{left:126.508826px;}
.x34{left:129.871994px;}
.x14{left:131.798091px;}
.x20{left:134.391720px;}
.x6{left:137.561379px;}
.x1b{left:140.000501px;}
.x1e{left:141.487075px;}
.x8{left:146.152308px;}
.x1{left:150.211500px;}
.x25{left:155.443773px;}
.x9{left:173.051653px;}
.x30{left:175.876294px;}
.x23{left:180.895545px;}
.x7{left:184.762739px;}
.x1f{left:197.907896px;}
.x2d{left:205.169759px;}
.x27{left:226.812841px;}
.x13{left:236.629332px;}
.x2{left:243.525000px;}
.x24{left:261.587580px;}
.x28{left:287.882394px;}
.x21{left:312.377119px;}
.xe{left:334.374219px;}
.xa{left:359.921996px;}
.x1a{left:363.913696px;}
.xb{left:365.623781px;}
.xc{left:392.910146px;}
.x4{left:404.301715px;}
.xd{left:417.802390px;}
.x31{left:429.963498px;}
.x19{left:435.885000px;}
.x26{left:457.989399px;}
.x17{left:459.216461px;}
.x18{left:475.580779px;}
.x32{left:505.066253px;}
.x22{left:537.170858px;}
.x1c{left:550.982049px;}
.x2a{left:556.275813px;}
.x12{left:580.881544px;}
.x10{left:585.741787px;}
.xf{left:607.029351px;}
.x1d{left:630.934546px;}
.x11{left:632.943147px;}
.x2b{left:663.268663px;}
.x2f{left:735.609780px;}
.x33{left:748.493924px;}
.x35{left:751.857092px;}
@media print{
.v2{vertical-align:-33.692351pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.137157pt;}
.v4{vertical-align:25.238595pt;}
.v3{vertical-align:27.894728pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:5.314132pt;}
.ls8{letter-spacing:14.313455pt;}
.lsb{letter-spacing:14.371640pt;}
.ls6{letter-spacing:14.429824pt;}
.ls5{letter-spacing:14.488009pt;}
.ls0{letter-spacing:14.546194pt;}
.ls10{letter-spacing:14.662563pt;}
.lsd{letter-spacing:14.778933pt;}
.lse{letter-spacing:14.837118pt;}
.ls2{letter-spacing:14.895303pt;}
.ls4{letter-spacing:15.244411pt;}
.ls19{letter-spacing:15.302596pt;}
.ls12{letter-spacing:15.535335pt;}
.ls9{letter-spacing:17.339063pt;}
.ls16{letter-spacing:17.397248pt;}
.ls1{letter-spacing:17.804541pt;}
.ls7{letter-spacing:19.084606pt;}
.ls17{letter-spacing:19.128535pt;}
.ls18{letter-spacing:19.128949pt;}
.ls13{letter-spacing:19.375530pt;}
.lsf{letter-spacing:20.422856pt;}
.ls15{letter-spacing:21.753660pt;}
.ls11{letter-spacing:21.819291pt;}
.lsc{letter-spacing:23.215726pt;}
.ls1a{letter-spacing:27.114106pt;}
.ls14{letter-spacing:38.343767pt;}
.ws5{word-spacing:-15.941064pt;}
.ws54{word-spacing:-14.546194pt;}
.ws5f{word-spacing:-11.955798pt;}
.wsac{word-spacing:-3.141978pt;}
.ws89{word-spacing:-3.083793pt;}
.ws4d{word-spacing:-2.851054pt;}
.ws2f{word-spacing:-2.792869pt;}
.ws124{word-spacing:-2.676500pt;}
.ws2e{word-spacing:-2.618315pt;}
.wsd6{word-spacing:-2.603690pt;}
.ws7c{word-spacing:-2.443761pt;}
.ws48{word-spacing:-2.385576pt;}
.ws36{word-spacing:-2.327391pt;}
.ws42{word-spacing:-2.269206pt;}
.ws6{word-spacing:-2.178597pt;}
.ws7b{word-spacing:-2.094652pt;}
.wsd4{word-spacing:-2.036467pt;}
.ws8c{word-spacing:-1.861913pt;}
.ws59{word-spacing:-1.803728pt;}
.wse{word-spacing:-1.647232pt;}
.ws7a{word-spacing:-1.629174pt;}
.ws53{word-spacing:-1.512804pt;}
.wsfb{word-spacing:-1.328413pt;}
.ws33{word-spacing:-1.280065pt;}
.wsf2{word-spacing:-1.169004pt;}
.ws6d{word-spacing:-1.105511pt;}
.ws69{word-spacing:-1.047326pt;}
.ws114{word-spacing:-1.009594pt;}
.ws8b{word-spacing:-0.989141pt;}
.wsaf{word-spacing:-0.930956pt;}
.ws1a{word-spacing:-0.872772pt;}
.ws4f{word-spacing:-0.814587pt;}
.ws6a{word-spacing:-0.640033pt;}
.ws70{word-spacing:-0.581848pt;}
.ws11a{word-spacing:-0.478229pt;}
.wscc{word-spacing:-0.465478pt;}
.ws16{word-spacing:-0.425092pt;}
.ws52{word-spacing:-0.407293pt;}
.ws79{word-spacing:-0.349109pt;}
.ws104{word-spacing:-0.318819pt;}
.ws30{word-spacing:-0.290924pt;}
.wseb{word-spacing:-0.265683pt;}
.ws129{word-spacing:-0.239116pt;}
.ws19{word-spacing:-0.232739pt;}
.wsa{word-spacing:-0.212546pt;}
.ws95{word-spacing:-0.204342pt;}
.ws12f{word-spacing:-0.191293pt;}
.ws1c{word-spacing:-0.174554pt;}
.wsdc{word-spacing:-0.159410pt;}
.ws31{word-spacing:-0.116370pt;}
.wsb{word-spacing:-0.106273pt;}
.wsa2{word-spacing:-0.098417pt;}
.ws12e{word-spacing:-0.095646pt;}
.ws2{word-spacing:-0.076517pt;}
.wscd{word-spacing:-0.063764pt;}
.ws37{word-spacing:-0.058185pt;}
.wsd8{word-spacing:-0.053137pt;}
.ws4{word-spacing:0.000000pt;}
.ws12a{word-spacing:0.047823pt;}
.ws10d{word-spacing:0.053137pt;}
.ws24{word-spacing:0.058185pt;}
.wsfc{word-spacing:0.077360pt;}
.ws12b{word-spacing:0.095646pt;}
.ws7{word-spacing:0.106273pt;}
.ws18{word-spacing:0.116370pt;}
.wsb6{word-spacing:0.122687pt;}
.wsb7{word-spacing:0.137566pt;}
.ws8{word-spacing:0.159410pt;}
.ws101{word-spacing:0.164322pt;}
.ws47{word-spacing:0.174554pt;}
.ws12d{word-spacing:0.191293pt;}
.ws100{word-spacing:0.212546pt;}
.wse0{word-spacing:0.224798pt;}
.ws50{word-spacing:0.232739pt;}
.ws132{word-spacing:0.239116pt;}
.ws73{word-spacing:0.260815pt;}
.wsde{word-spacing:0.265683pt;}
.ws29{word-spacing:0.290924pt;}
.wsd{word-spacing:0.318819pt;}
.ws23{word-spacing:0.349109pt;}
.ws27{word-spacing:0.465478pt;}
.wsaa{word-spacing:0.523663pt;}
.ws26{word-spacing:0.698217pt;}
.ws2a{word-spacing:0.756402pt;}
.wsae{word-spacing:0.814587pt;}
.wsdf{word-spacing:0.850184pt;}
.ws49{word-spacing:0.872772pt;}
.wsff{word-spacing:0.903321pt;}
.ws87{word-spacing:0.930956pt;}
.ws12{word-spacing:0.956457pt;}
.ws6e{word-spacing:0.989141pt;}
.ws119{word-spacing:1.009594pt;}
.ws126{word-spacing:1.099933pt;}
.wsbe{word-spacing:1.163696pt;}
.ws3e{word-spacing:1.221880pt;}
.ws32{word-spacing:1.280065pt;}
.ws12c{word-spacing:1.386873pt;}
.ws25{word-spacing:1.570989pt;}
.ws10e{word-spacing:1.594096pt;}
.ws4c{word-spacing:1.629174pt;}
.ws4b{word-spacing:1.745543pt;}
.ws14{word-spacing:1.753505pt;}
.wsf0{word-spacing:1.806642pt;}
.wsec{word-spacing:1.859778pt;}
.ws2d{word-spacing:1.978282pt;}
.ws34{word-spacing:2.036467pt;}
.ws123{word-spacing:2.094652pt;}
.ws131{word-spacing:2.104220pt;}
.wsc{word-spacing:2.178597pt;}
.ws5a{word-spacing:2.269206pt;}
.ws110{word-spacing:2.284871pt;}
.ws2c{word-spacing:2.327391pt;}
.wsf1{word-spacing:2.391144pt;}
.ws127{word-spacing:2.391160pt;}
.wsc9{word-spacing:2.560130pt;}
.ws3f{word-spacing:2.618315pt;}
.wse3{word-spacing:2.709963pt;}
.ws3c{word-spacing:2.734684pt;}
.ws3b{word-spacing:2.792869pt;}
.wsb1{word-spacing:2.851054pt;}
.wsfa{word-spacing:2.869372pt;}
.ws11f{word-spacing:2.869391pt;}
.ws99{word-spacing:2.909239pt;}
.ws10c{word-spacing:3.028782pt;}
.ws9f{word-spacing:3.141978pt;}
.wsfe{word-spacing:3.188191pt;}
.ws22{word-spacing:3.258347pt;}
.ws46{word-spacing:3.316532pt;}
.ws10b{word-spacing:3.347601pt;}
.ws133{word-spacing:3.347623pt;}
.ws38{word-spacing:3.491087pt;}
.ws121{word-spacing:3.549271pt;}
.ws113{word-spacing:3.613284pt;}
.ws1e{word-spacing:3.665641pt;}
.ws15{word-spacing:3.772693pt;}
.ws51{word-spacing:3.782010pt;}
.wsa4{word-spacing:3.840195pt;}
.ws40{word-spacing:3.956565pt;}
.ws8e{word-spacing:4.014750pt;}
.ws57{word-spacing:4.072934pt;}
.ws10{word-spacing:4.091512pt;}
.wsad{word-spacing:4.131119pt;}
.ws9{word-spacing:4.197785pt;}
.ws134{word-spacing:4.304087pt;}
.ws3d{word-spacing:4.305673pt;}
.ws28{word-spacing:4.363858pt;}
.ws88{word-spacing:4.422043pt;}
.ws3a{word-spacing:4.538413pt;}
.ws68{word-spacing:4.596597pt;}
.ws71{word-spacing:4.654782pt;}
.wscb{word-spacing:4.712967pt;}
.ws45{word-spacing:4.771152pt;}
.ws13{word-spacing:4.782287pt;}
.ws8f{word-spacing:4.808820pt;}
.ws6c{word-spacing:4.829336pt;}
.ws111{word-spacing:4.941697pt;}
.ws55{word-spacing:4.945706pt;}
.ws2b{word-spacing:5.003891pt;}
.wsf4{word-spacing:5.154243pt;}
.wsc8{word-spacing:5.178445pt;}
.wsce{word-spacing:5.236630pt;}
.ws115{word-spacing:5.260516pt;}
.wsc2{word-spacing:5.352999pt;}
.ws78{word-spacing:5.411184pt;}
.ws122{word-spacing:5.469369pt;}
.ws106{word-spacing:5.554062pt;}
.ws1f{word-spacing:5.702108pt;}
.ws9e{word-spacing:5.706870pt;}
.ws35{word-spacing:5.760293pt;}
.ws66{word-spacing:5.876662pt;}
.wsd5{word-spacing:5.898154pt;}
.ws105{word-spacing:5.951291pt;}
.wsa6{word-spacing:6.051217pt;}
.wsc0{word-spacing:6.109401pt;}
.ws9a{word-spacing:6.167586pt;}
.ws77{word-spacing:6.225771pt;}
.wsb2{word-spacing:6.283956pt;}
.wsda{word-spacing:6.323246pt;}
.wse5{word-spacing:6.365652pt;}
.wsc7{word-spacing:6.526622pt;}
.wsbb{word-spacing:6.574880pt;}
.wse2{word-spacing:6.695202pt;}
.wsf{word-spacing:6.854612pt;}
.ws65{word-spacing:6.865804pt;}
.wse9{word-spacing:6.907748pt;}
.ws72{word-spacing:6.982173pt;}
.wsab{word-spacing:7.040358pt;}
.ws8a{word-spacing:7.098543pt;}
.ws120{word-spacing:7.156727pt;}
.wsea{word-spacing:7.173431pt;}
.ws67{word-spacing:7.273097pt;}
.ws109{word-spacing:7.279704pt;}
.ws5b{word-spacing:7.564021pt;}
.ws1b{word-spacing:7.680390pt;}
.wse7{word-spacing:7.704796pt;}
.ws5d{word-spacing:7.854945pt;}
.ws116{word-spacing:7.864205pt;}
.wsa5{word-spacing:8.068005pt;}
.wsc5{word-spacing:8.145869pt;}
.ws39{word-spacing:8.204053pt;}
.ws58{word-spacing:8.320423pt;}
.wsd3{word-spacing:8.436792pt;}
.ws11{word-spacing:8.501844pt;}
.ws41{word-spacing:8.611347pt;}
.ws44{word-spacing:8.669532pt;}
.ws97{word-spacing:8.902271pt;}
.wsba{word-spacing:9.018640pt;}
.ws6f{word-spacing:9.076825pt;}
.ws1d{word-spacing:9.193195pt;}
.wsbc{word-spacing:9.309564pt;}
.wsc4{word-spacing:9.484118pt;}
.ws118{word-spacing:9.830257pt;}
.wsc3{word-spacing:9.949597pt;}
.ws130{word-spacing:10.042870pt;}
.ws112{word-spacing:10.095939pt;}
.wsc1{word-spacing:10.124151pt;}
.wsd1{word-spacing:10.589629pt;}
.wsd7{word-spacing:10.786714pt;}
.ws85{word-spacing:10.996923pt;}
.wsdb{word-spacing:11.105533pt;}
.wsb0{word-spacing:11.404216pt;}
.wsed{word-spacing:11.690035pt;}
.wsa7{word-spacing:11.695140pt;}
.ws0{word-spacing:11.907379pt;}
.ws125{word-spacing:11.907975pt;}
.wsf7{word-spacing:11.955718pt;}
.ws98{word-spacing:11.986064pt;}
.wsc6{word-spacing:12.160618pt;}
.ws75{word-spacing:12.567912pt;}
.ws43{word-spacing:12.626096pt;}
.wse6{word-spacing:12.752766pt;}
.ws103{word-spacing:12.912175pt;}
.ws107{word-spacing:12.965312pt;}
.wsdd{word-spacing:13.230994pt;}
.wsfd{word-spacing:13.284131pt;}
.wsd9{word-spacing:13.337267pt;}
.ws102{word-spacing:13.390404pt;}
.wsf3{word-spacing:13.443540pt;}
.wse1{word-spacing:13.496677pt;}
.wsd2{word-spacing:13.615238pt;}
.wsd0{word-spacing:13.731607pt;}
.ws10a{word-spacing:13.815496pt;}
.ws6b{word-spacing:13.826299pt;}
.ws9b{word-spacing:13.906161pt;}
.ws20{word-spacing:13.964346pt;}
.ws21{word-spacing:14.022531pt;}
.ws93{word-spacing:14.232312pt;}
.ws96{word-spacing:14.299305pt;}
.wsbf{word-spacing:14.337304pt;}
.wsa3{word-spacing:14.379181pt;}
.wsb3{word-spacing:14.382092pt;}
.ws8d{word-spacing:14.386254pt;}
.wsa1{word-spacing:14.394686pt;}
.wsb4{word-spacing:14.429824pt;}
.ws4e{word-spacing:14.488009pt;}
.ws5c{word-spacing:14.604379pt;}
.wsb8{word-spacing:14.613905pt;}
.wsb5{word-spacing:14.614398pt;}
.ws94{word-spacing:14.720748pt;}
.ws74{word-spacing:14.761182pt;}
.ws86{word-spacing:15.452382pt;}
.wsbd{word-spacing:15.676152pt;}
.ws3{word-spacing:15.877299pt;}
.wse4{word-spacing:15.940957pt;}
.ws9c{word-spacing:16.117183pt;}
.wse8{word-spacing:16.312913pt;}
.wsca{word-spacing:17.071218pt;}
.wsa9{word-spacing:17.259463pt;}
.wsa0{word-spacing:17.677785pt;}
.ws4a{word-spacing:18.037280pt;}
.ws108{word-spacing:18.225828pt;}
.wsb9{word-spacing:18.463140pt;}
.ws1{word-spacing:19.052706pt;}
.ws90{word-spacing:19.259161pt;}
.ws10f{word-spacing:19.713650pt;}
.ws9d{word-spacing:20.173929pt;}
.wsf5{word-spacing:21.467155pt;}
.wsef{word-spacing:21.945384pt;}
.wscf{word-spacing:21.993845pt;}
.wsf6{word-spacing:22.211067pt;}
.ws117{word-spacing:23.592616pt;}
.ws92{word-spacing:23.797573pt;}
.ws128{word-spacing:24.915883pt;}
.wsf8{word-spacing:25.558668pt;}
.wsa8{word-spacing:26.208960pt;}
.ws76{word-spacing:27.077375pt;}
.wsee{word-spacing:34.124294pt;}
.wsf9{word-spacing:38.789662pt;}
.ws63{word-spacing:51.792516pt;}
.ws11e{word-spacing:51.801135pt;}
.ws82{word-spacing:51.805257pt;}
.ws83{word-spacing:51.812886pt;}
.ws5e{word-spacing:51.822640pt;}
.ws7e{word-spacing:57.483476pt;}
.ws56{word-spacing:58.126591pt;}
.ws17{word-spacing:63.700490pt;}
.ws84{word-spacing:63.713231pt;}
.ws60{word-spacing:67.062493pt;}
.ws7d{word-spacing:83.690584pt;}
.ws81{word-spacing:87.630160pt;}
.ws62{word-spacing:106.884832pt;}
.ws64{word-spacing:120.179679pt;}
.ws61{word-spacing:130.796427pt;}
.ws91{word-spacing:147.955604pt;}
.ws11d{word-spacing:185.514777pt;}
.ws7f{word-spacing:339.929537pt;}
.ws80{word-spacing:342.894575pt;}
.ws11b{word-spacing:350.974399pt;}
.ws11c{word-spacing:494.348326pt;}
._2{margin-left:-7.881240pt;}
._38{margin-left:-6.606095pt;}
._4{margin-left:-5.662250pt;}
._1{margin-left:-4.399514pt;}
._7{margin-left:-3.374262pt;}
._0{margin-left:-2.151936pt;}
._5{margin-left:-1.147753pt;}
._3d{width:0.891116pt;}
._39{width:2.902919pt;}
._36{width:12.008854pt;}
._f{width:13.079579pt;}
._29{width:15.244411pt;}
._6{width:16.339388pt;}
._a{width:17.862726pt;}
._26{width:18.793683pt;}
._9{width:19.979333pt;}
._b{width:21.761106pt;}
._8{width:22.742246pt;}
._3{width:23.796754pt;}
._12{width:24.960368pt;}
._2f{width:25.892225pt;}
._d{width:27.346845pt;}
._13{width:28.566469pt;}
._27{width:30.314268pt;}
._3f{width:31.286620pt;}
._c{width:32.292551pt;}
._3c{width:33.457141pt;}
._33{width:34.720541pt;}
._3e{width:36.159311pt;}
._28{width:37.180072pt;}
._37{width:39.399032pt;}
._24{width:40.322050pt;}
._3a{width:41.623041pt;}
._35{width:42.882180pt;}
._34{width:44.511353pt;}
._25{width:45.674148pt;}
._2d{width:51.493527pt;}
._30{width:54.344581pt;}
._e{width:56.439232pt;}
._11{width:58.184776pt;}
._32{width:60.337612pt;}
._2e{width:62.707246pt;}
._10{width:63.764255pt;}
._14{width:83.690584pt;}
._2c{width:87.707732pt;}
._2b{width:92.203005pt;}
._2a{width:98.324481pt;}
._3b{width:102.074511pt;}
._1f{width:132.135257pt;}
._4a{width:147.474040pt;}
._43{width:156.094788pt;}
._1a{width:161.259800pt;}
._1d{width:169.820151pt;}
._40{width:179.540471pt;}
._16{width:182.971529pt;}
._17{width:185.171396pt;}
._1c{width:188.662489pt;}
._19{width:196.314199pt;}
._18{width:212.574084pt;}
._22{width:219.699740pt;}
._21{width:229.407847pt;}
._1b{width:241.602538pt;}
._42{width:284.512375pt;}
._23{width:352.361164pt;}
._1e{width:355.087086pt;}
._46{width:411.087930pt;}
._41{width:414.687101pt;}
._45{width:417.352988pt;}
._20{width:424.574290pt;}
._4b{width:439.777376pt;}
._47{width:455.611541pt;}
._44{width:475.745104pt;}
._49{width:515.764398pt;}
._48{width:632.971580pt;}
._15{width:854.983009pt;}
._31{width:1043.785208pt;}
.fs6{font-size:26.568262pt;}
.fs3{font-size:42.509325pt;}
.fs0{font-size:47.820800pt;}
.fs7{font-size:47.823191pt;}
.fs4{font-size:53.136523pt;}
.fs8{font-size:58.181867pt;}
.fs5{font-size:58.184776pt;}
.fs2{font-size:63.764255pt;}
.fs1{font-size:76.516892pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:34.521333pt;}
.y1{bottom:49.133333pt;}
.y59{bottom:67.437333pt;}
.y58{bottom:92.055270pt;}
.y32{bottom:100.478358pt;}
.y17b{bottom:106.668001pt;}
.y57{bottom:110.121507pt;}
.y31{bottom:119.764656pt;}
.y17a{bottom:121.280732pt;}
.y56{bottom:128.187744pt;}
.y7c{bottom:133.424005pt;}
.ybc{bottom:134.186710pt;}
.y117{bottom:134.968083pt;}
.y179{bottom:135.892129pt;}
.y30{bottom:137.832226pt;}
.y55{bottom:146.253980pt;}
.y1af{bottom:147.662051pt;}
.y178{bottom:150.504859pt;}
.y2f{bottom:155.898462pt;}
.ybb{bottom:157.039853pt;}
.y1ae{bottom:162.274781pt;}
.y7b{bottom:162.820142pt;}
.y54{bottom:164.320217pt;}
.y116{bottom:167.509710pt;}
.y2e{bottom:173.964699pt;}
.y177{bottom:175.266097pt;}
.y1ad{bottom:176.887512pt;}
.yba{bottom:179.892995pt;}
.y7a{bottom:180.886378pt;}
.y53{bottom:182.387787pt;}
.y115{bottom:185.575946pt;}
.y176{bottom:189.878828pt;}
.y1ac{bottom:191.500242pt;}
.y2d{bottom:192.030936pt;}
.y79{bottom:198.953948pt;}
.y52{bottom:200.454023pt;}
.ydb{bottom:201.170059pt;}
.y114{bottom:203.642183pt;}
.yb9{bottom:203.958199pt;}
.y175{bottom:204.491559pt;}
.y2c{bottom:210.097172pt;}
.y78{bottom:217.020185pt;}
.y1ab{bottom:217.882895pt;}
.y51{bottom:218.520260pt;}
.yda{bottom:219.236296pt;}
.y113{bottom:221.708419pt;}
.yb8{bottom:222.024435pt;}
.y2b{bottom:228.163409pt;}
.y174{bottom:229.252797pt;}
.y1aa{bottom:232.495625pt;}
.y77{bottom:235.086422pt;}
.y50{bottom:236.586497pt;}
.yd9{bottom:237.302532pt;}
.y138{bottom:237.677218pt;}
.y112{bottom:239.775989pt;}
.yb7{bottom:240.090672pt;}
.y173{bottom:243.864194pt;}
.y2a{bottom:246.230979pt;}
.y1a9{bottom:247.108356pt;}
.y76{bottom:253.152658pt;}
.y4f{bottom:254.652733pt;}
.yd8{bottom:255.368769pt;}
.y137{bottom:255.743454pt;}
.y111{bottom:257.842226pt;}
.yb6{bottom:258.156908pt;}
.y172{bottom:258.476924pt;}
.y1a8{bottom:261.721087pt;}
.y29{bottom:264.297215pt;}
.y75{bottom:271.218895pt;}
.y4e{bottom:272.720303pt;}
.y171{bottom:273.089655pt;}
.yd7{bottom:273.436339pt;}
.y136{bottom:273.811024pt;}
.y110{bottom:275.908463pt;}
.y1a7{bottom:276.332484pt;}
.y8b{bottom:278.109906pt;}
.y1d5{bottom:278.228579pt;}
.yb5{bottom:281.460740pt;}
.y28{bottom:282.363452pt;}
.y170{bottom:287.702386pt;}
.y74{bottom:289.286465pt;}
.y109{bottom:290.786540pt;}
.y1a6{bottom:290.945214pt;}
.yd6{bottom:291.502576pt;}
.y135{bottom:291.877261pt;}
.y4d{bottom:292.383953pt;}
.y10f{bottom:293.974699pt;}
.y8a{bottom:296.176143pt;}
.y27{bottom:300.429689pt;}
.y1a5{bottom:305.557945pt;}
.y73{bottom:307.352701pt;}
.yb4{bottom:308.171409pt;}
.y108{bottom:308.852776pt;}
.yd5{bottom:309.568812pt;}
.y134{bottom:309.943498pt;}
.y4c{bottom:310.450190pt;}
.y10e{bottom:312.040936pt;}
.y16f{bottom:312.463624pt;}
.y89{bottom:314.242379pt;}
.y26{bottom:318.495925pt;}
.y72{bottom:325.418938pt;}
.y1d4{bottom:326.262980pt;}
.y107{bottom:326.919013pt;}
.y16e{bottom:327.076354pt;}
.yd4{bottom:327.635049pt;}
.y133{bottom:328.009734pt;}
.y4b{bottom:328.517760pt;}
.y10d{bottom:330.108506pt;}
.y1a4{bottom:331.940597pt;}
.y88{bottom:332.308616pt;}
.y25{bottom:336.563495pt;}
.yb3{bottom:338.686268pt;}
.y16d{bottom:341.689085pt;}
.y71{bottom:343.485175pt;}
.y106{bottom:344.985250pt;}
.yd3{bottom:345.701285pt;}
.y132{bottom:346.075971pt;}
.y1a3{bottom:346.553328pt;}
.y4a{bottom:346.583996pt;}
.y10c{bottom:348.174742pt;}
.y87{bottom:350.376186pt;}
.y24{bottom:354.629732pt;}
.y1d3{bottom:355.221761pt;}
.yb2{bottom:356.752505pt;}
.y1a2{bottom:361.166059pt;}
.y70{bottom:361.551411pt;}
.y105{bottom:363.052820pt;}
.yd2{bottom:363.768855pt;}
.y10b{bottom:366.240979pt;}
.y16c{bottom:366.448989pt;}
.y86{bottom:368.442422pt;}
.y1d2{bottom:368.506426pt;}
.y131{bottom:371.545244pt;}
.y23{bottom:372.695968pt;}
.yb1{bottom:374.820075pt;}
.y1cf{bottom:375.148091pt;}
.y1a1{bottom:375.778789pt;}
.y49{bottom:378.429588pt;}
.y16b{bottom:381.061720pt;}
.y148{bottom:381.119056pt;}
.y1d1{bottom:381.789756pt;}
.yd1{bottom:381.835092pt;}
.y10a{bottom:384.307216pt;}
.y85{bottom:386.508659pt;}
.y6f{bottom:388.984783pt;}
.y22{bottom:390.762205pt;}
.yb0{bottom:392.886311pt;}
.y1d0{bottom:395.074421pt;}
.y16a{bottom:395.674451pt;}
.y147{bottom:399.185293pt;}
.yd0{bottom:399.901329pt;}
.y1a0{bottom:402.161442pt;}
.y104{bottom:402.373452pt;}
.y84{bottom:404.574896pt;}
.y130{bottom:405.172259pt;}
.y1ce{bottom:408.359085pt;}
.y21{bottom:408.828442pt;}
.y169{bottom:410.287181pt;}
.yaf{bottom:410.952548pt;}
.y48{bottom:415.654116pt;}
.y19f{bottom:416.774172pt;}
.y146{bottom:417.251529pt;}
.ycf{bottom:417.967565pt;}
.y6e{bottom:420.221011pt;}
.y1cd{bottom:421.642416pt;}
.y83{bottom:422.641132pt;}
.y12f{bottom:423.238495pt;}
.yae{bottom:429.018784pt;}
.y19e{bottom:431.385569pt;}
.y47{bottom:433.720353pt;}
.y1f7{bottom:434.123040pt;}
.y1cc{bottom:434.927080pt;}
.y168{bottom:435.048419pt;}
.y145{bottom:435.317766pt;}
.yce{bottom:436.033802pt;}
.y20{bottom:436.555161pt;}
.y6d{bottom:438.287248pt;}
.y1cb{bottom:441.236729pt;}
.y12e{bottom:441.304732pt;}
.y19d{bottom:445.998300pt;}
.yad{bottom:447.085021pt;}
.y103{bottom:448.337084pt;}
.y167{bottom:449.661150pt;}
.y1f6{bottom:450.063837pt;}
.y46{bottom:451.786589pt;}
.y144{bottom:453.385336pt;}
.ycd{bottom:454.101372pt;}
.y6c{bottom:456.353484pt;}
.y82{bottom:456.645499pt;}
.y12d{bottom:459.370969pt;}
.y19c{bottom:460.611031pt;}
.y1ca{bottom:461.495075pt;}
.y166{bottom:464.273880pt;}
.yac{bottom:465.152591pt;}
.y1f{bottom:467.554044pt;}
.y45{bottom:469.852826pt;}
.y143{bottom:471.451573pt;}
.ycc{bottom:472.167608pt;}
.y6b{bottom:474.419721pt;}
.y1c9{bottom:474.779739pt;}
.y102{bottom:477.297198pt;}
.y12c{bottom:477.437205pt;}
.y165{bottom:478.886611pt;}
.y1f5{bottom:479.023951pt;}
.yab{bottom:483.218828pt;}
.y1e{bottom:483.494841pt;}
.y19b{bottom:486.993683pt;}
.y44{bottom:487.920396pt;}
.y1c8{bottom:488.064403pt;}
.y1e5{bottom:488.149741pt;}
.y142{bottom:489.605814pt;}
.ycb{bottom:490.233845pt;}
.y101{bottom:490.580529pt;}
.y1f4{bottom:492.307282pt;}
.y6a{bottom:492.487291pt;}
.y164{bottom:493.498008pt;}
.y12b{bottom:495.504775pt;}
.y1d{bottom:499.435638pt;}
.yaa{bottom:501.285064pt;}
.y1c6{bottom:501.347734pt;}
.y19a{bottom:501.606414pt;}
.y100{bottom:503.865193pt;}
.y81{bottom:505.163925pt;}
.y1f3{bottom:505.591946pt;}
.y43{bottom:505.986633pt;}
.y1e4{bottom:506.215977pt;}
.y141{bottom:507.672050pt;}
.yca{bottom:508.300082pt;}
.y69{bottom:510.553528pt;}
.y12a{bottom:513.571012pt;}
.y1c5{bottom:514.632398pt;}
.y1c{bottom:515.376435pt;}
.y199{bottom:516.219144pt;}
.yfc{bottom:517.149857pt;}
.y163{bottom:518.259246pt;}
.y1f2{bottom:518.876610pt;}
.ya9{bottom:519.351301pt;}
.y80{bottom:523.230161pt;}
.y42{bottom:524.052869pt;}
.y1e3{bottom:524.282214pt;}
.y140{bottom:525.738287pt;}
.y1c7{bottom:527.917062pt;}
.y68{bottom:528.619764pt;}
.yff{bottom:530.433188pt;}
.y198{bottom:530.831875pt;}
.y1b{bottom:531.317232pt;}
.y129{bottom:531.637248pt;}
.y1f1{bottom:532.691968pt;}
.y162{bottom:532.871977pt;}
.yc9{bottom:533.025318pt;}
.ya8{bottom:537.417537pt;}
.y7f{bottom:541.296398pt;}
.y1c4{bottom:541.732420pt;}
.y41{bottom:542.119106pt;}
.y1e2{bottom:542.348451pt;}
.yfe{bottom:543.717852pt;}
.y13f{bottom:543.805857pt;}
.y197{bottom:545.444605pt;}
.y1f0{bottom:545.975299pt;}
.y67{bottom:546.686001pt;}
.y1a{bottom:547.258029pt;}
.y161{bottom:547.484707pt;}
.y128{bottom:549.703485pt;}
.ya7{bottom:555.485107pt;}
.yfd{bottom:557.001183pt;}
.y1ef{bottom:559.259963pt;}
.y7e{bottom:559.362635pt;}
.y40{bottom:560.185342pt;}
.y1e1{bottom:560.416021pt;}
.y13e{bottom:561.872093pt;}
.yc8{bottom:562.684134pt;}
.y19{bottom:563.200160pt;}
.y66{bottom:564.752237pt;}
.y127{bottom:567.769722pt;}
.yfb{bottom:570.817874pt;}
.y1c3{bottom:570.925879pt;}
.y196{bottom:571.827258pt;}
.y160{bottom:572.245945pt;}
.y1ee{bottom:573.075320pt;}
.ya6{bottom:573.551344pt;}
.y7d{bottom:577.428871pt;}
.y3f{bottom:578.252912pt;}
.y18{bottom:579.140957pt;}
.y13d{bottom:579.938330pt;}
.y65{bottom:582.819807pt;}
.yfa{bottom:584.101205pt;}
.y126{bottom:585.837292pt;}
.y1ed{bottom:586.359984pt;}
.y195{bottom:586.438655pt;}
.y15f{bottom:586.858676pt;}
.y1c2{bottom:588.992116pt;}
.ya5{bottom:591.617581pt;}
.y17{bottom:595.081754pt;}
.y1e0{bottom:596.056469pt;}
.y3e{bottom:596.319149pt;}
.yc7{bottom:596.853842pt;}
.yf9{bottom:597.385869pt;}
.y13c{bottom:598.004567pt;}
.y1ec{bottom:599.643315pt;}
.y64{bottom:600.886044pt;}
.y194{bottom:601.051386pt;}
.y15e{bottom:601.470073pt;}
.y125{bottom:603.903528pt;}
.yf4{bottom:604.027534pt;}
.ya4{bottom:609.683817pt;}
.yf8{bottom:610.670533pt;}
.y16{bottom:611.022551pt;}
.y1df{bottom:611.997266pt;}
.y1c1{bottom:612.567961pt;}
.y1eb{bottom:613.458673pt;}
.y3d{bottom:614.385386pt;}
.yc6{bottom:614.920079pt;}
.y193{bottom:615.664116pt;}
.y13b{bottom:616.070803pt;}
.y15d{bottom:616.082804pt;}
.yf3{bottom:617.312199pt;}
.y63{bottom:618.952281pt;}
.y124{bottom:621.969765pt;}
.yf7{bottom:623.953864pt;}
.y1ea{bottom:626.743337pt;}
.y15{bottom:626.963348pt;}
.ya3{bottom:627.750054pt;}
.y192{bottom:630.276847pt;}
.y15c{bottom:630.695534pt;}
.y3c{bottom:632.451622pt;}
.yc5{bottom:632.987649pt;}
.y13a{bottom:634.138373pt;}
.y62{bottom:637.018517pt;}
.yf6{bottom:637.238528pt;}
.y123{bottom:640.036001pt;}
.y1e9{bottom:640.558694pt;}
.y1c0{bottom:640.792039pt;}
.y14{bottom:642.904145pt;}
.ya2{bottom:645.817624pt;}
.y3b{bottom:650.517859pt;}
.yf5{bottom:650.521859pt;}
.yc4{bottom:651.053886pt;}
.y1e8{bottom:653.843358pt;}
.y61{bottom:655.084754pt;}
.y15b{bottom:655.456772pt;}
.y191{bottom:656.659499pt;}
.y122{bottom:658.102238pt;}
.y13{bottom:658.846275pt;}
.y139{bottom:662.241112pt;}
.ya1{bottom:663.883860pt;}
.yf2{bottom:664.338550pt;}
.y1e7{bottom:667.658716pt;}
.y3a{bottom:668.585429pt;}
.yc3{bottom:669.120122pt;}
.y15a{bottom:670.069503pt;}
.y190{bottom:671.272230pt;}
.y60{bottom:673.152324pt;}
.y1bf{bottom:673.289664pt;}
.y12{bottom:674.787072pt;}
.y121{bottom:676.168475pt;}
.yf1{bottom:678.153907pt;}
.y1e6{bottom:680.943380pt;}
.ya0{bottom:681.950097pt;}
.y159{bottom:684.682234pt;}
.y18f{bottom:685.884960pt;}
.y39{bottom:686.651665pt;}
.yc2{bottom:687.186359pt;}
.y1be{bottom:687.902395pt;}
.y11{bottom:690.727869pt;}
.y5f{bottom:691.218560pt;}
.y120{bottom:694.236045pt;}
.y158{bottom:699.294964pt;}
.y9f{bottom:700.016334pt;}
.y18e{bottom:700.497691pt;}
.y1bd{bottom:702.515125pt;}
.yc1{bottom:705.252595pt;}
.y38{bottom:706.315315pt;}
.y10{bottom:706.668666pt;}
.yf0{bottom:708.707435pt;}
.y5e{bottom:709.284797pt;}
.y11f{bottom:712.302281pt;}
.y18d{bottom:715.110422pt;}
.y1bc{bottom:717.127856pt;}
.y9e{bottom:718.082570pt;}
.yf{bottom:722.609463pt;}
.yc0{bottom:723.320165pt;}
.y157{bottom:724.054869pt;}
.y37{bottom:724.382885pt;}
.y5d{bottom:727.351034pt;}
.y18c{bottom:729.723152pt;}
.y11e{bottom:730.368518pt;}
.y1bb{bottom:731.740586pt;}
.y9d{bottom:736.150140pt;}
.yef{bottom:737.666216pt;}
.ye{bottom:738.550260pt;}
.y156{bottom:738.667599pt;}
.ybf{bottom:741.386402pt;}
.y36{bottom:742.449122pt;}
.y5c{bottom:745.417270pt;}
.y11d{bottom:748.434754pt;}
.yee{bottom:750.950880pt;}
.y155{bottom:753.280330pt;}
.y9c{bottom:754.216377pt;}
.yd{bottom:754.492391pt;}
.y18b{bottom:756.104471pt;}
.y1ba{bottom:758.856609pt;}
.ybe{bottom:759.452639pt;}
.y35{bottom:760.515358pt;}
.y5b{bottom:763.484840pt;}
.yed{bottom:764.235544pt;}
.y11c{bottom:766.500991pt;}
.yc{bottom:770.433188pt;}
.y18a{bottom:770.717202pt;}
.y9b{bottom:772.282613pt;}
.y1b9{bottom:773.469339pt;}
.y154{bottom:776.046802pt;}
.ybd{bottom:777.518875pt;}
.y34{bottom:778.581595pt;}
.y11b{bottom:784.568561pt;}
.y189{bottom:785.329932pt;}
.yb{bottom:786.373985pt;}
.y1b8{bottom:788.082070pt;}
.yec{bottom:790.803539pt;}
.y9a{bottom:795.585112pt;}
.y33{bottom:796.647832pt;}
.ye6{bottom:797.445205pt;}
.y188{bottom:799.942663pt;}
.y11a{bottom:802.634798pt;}
.yeb{bottom:804.088204pt;}
.y5a{bottom:809.447138pt;}
.y187{bottom:814.555394pt;}
.ya{bottom:814.715402pt;}
.y1b7{bottom:815.198092pt;}
.yea{bottom:817.371534pt;}
.y153{bottom:823.853192pt;}
.y186{bottom:829.168124pt;}
.ye9{bottom:830.656199pt;}
.y1de{bottom:832.781638pt;}
.y99{bottom:841.548743pt;}
.y152{bottom:841.919428pt;}
.y1b6{bottom:842.314115pt;}
.y185{bottom:843.780855pt;}
.ye8{bottom:843.939529pt;}
.y119{bottom:848.598429pt;}
.y1dd{bottom:850.847875pt;}
.y1b5{bottom:856.925512pt;}
.ye7{bottom:857.224194pt;}
.y151{bottom:859.985665pt;}
.y9{bottom:867.879393pt;}
.y1dc{bottom:868.914111pt;}
.y184{bottom:870.163507pt;}
.y98{bottom:870.508858pt;}
.ye5{bottom:871.039551pt;}
.y1b4{bottom:871.538243pt;}
.y118{bottom:877.026517pt;}
.y150{bottom:878.053235pt;}
.y96{bottom:883.792189pt;}
.ye4{bottom:884.324215pt;}
.y183{bottom:884.776238pt;}
.y8{bottom:886.477656pt;}
.y1db{bottom:886.980348pt;}
.y14f{bottom:896.119472pt;}
.y97{bottom:897.076853pt;}
.ye3{bottom:897.608879pt;}
.y1b3{bottom:898.654265pt;}
.y182{bottom:899.387635pt;}
.y1da{bottom:905.047918pt;}
.y7{bottom:905.075919pt;}
.y95{bottom:910.892210pt;}
.y1b2{bottom:913.266996pt;}
.y181{bottom:914.000366pt;}
.y14e{bottom:914.185708pt;}
.y1d9{bottom:923.114155pt;}
.y6{bottom:923.672849pt;}
.y93{bottom:924.176874pt;}
.y1b1{bottom:927.879726pt;}
.y180{bottom:928.613096pt;}
.yde{bottom:930.818540pt;}
.y14d{bottom:932.251945pt;}
.y94{bottom:937.460205pt;}
.y1d8{bottom:941.180391pt;}
.y5{bottom:942.271112pt;}
.y1b0{bottom:942.492457pt;}
.ydd{bottom:944.103204pt;}
.y14c{bottom:950.318181pt;}
.ye2{bottom:950.744869pt;}
.y92{bottom:951.276896pt;}
.y17f{bottom:954.995749pt;}
.y1d7{bottom:959.246628pt;}
.ye1{bottom:964.029534pt;}
.y91{bottom:964.560227pt;}
.y14b{bottom:968.385751pt;}
.y17e{bottom:969.608479pt;}
.ye0{bottom:977.312864pt;}
.y8f{bottom:977.844891pt;}
.y4{bottom:981.623747pt;}
.y17d{bottom:984.221210pt;}
.y14a{bottom:986.451988pt;}
.ydf{bottom:990.597529pt;}
.y90{bottom:991.129555pt;}
.y1d6{bottom:995.380434pt;}
.y17c{bottom:998.833940pt;}
.y3{bottom:1002.878143pt;}
.ydc{bottom:1004.412886pt;}
.y8d{bottom:1004.944913pt;}
.y8c{bottom:1011.254561pt;}
.y149{bottom:1013.446671pt;}
.y8e{bottom:1018.228243pt;}
.ha{height:18.278964pt;}
.h2{height:32.900710pt;}
.he{height:32.902355pt;}
.h10{height:33.093648pt;}
.h11{height:36.451655pt;}
.h8{height:36.557928pt;}
.h12{height:37.091288pt;}
.hb{height:40.029124pt;}
.h9{height:40.031126pt;}
.hc{height:40.263865pt;}
.h6{height:42.785815pt;}
.h5{height:43.869807pt;}
.h7{height:44.124864pt;}
.h4{height:52.553610pt;}
.h3{height:52.949689pt;}
.hf{height:58.140951pt;}
.h13{height:58.146284pt;}
.hd{height:60.797083pt;}
.h14{height:60.802417pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:93.384670pt;}
.x3{left:94.475391pt;}
.x2e{left:102.446456pt;}
.x5{left:106.854677pt;}
.x2c{left:108.132074pt;}
.x15{left:109.021452pt;}
.x16{left:111.346901pt;}
.x36{left:112.452290pt;}
.x34{left:115.441773pt;}
.x14{left:117.153858pt;}
.x20{left:119.459307pt;}
.x6{left:122.276781pt;}
.x1b{left:124.444889pt;}
.x1e{left:125.766289pt;}
.x8{left:129.913163pt;}
.x1{left:133.521333pt;}
.x25{left:138.172242pt;}
.x9{left:153.823692pt;}
.x30{left:156.334484pt;}
.x23{left:160.796040pt;}
.x7{left:164.233545pt;}
.x1f{left:175.918130pt;}
.x2d{left:182.373119pt;}
.x27{left:201.611414pt;}
.x13{left:210.337184pt;}
.x2{left:216.466667pt;}
.x24{left:232.522293pt;}
.x28{left:255.895462pt;}
.x21{left:277.668550pt;}
.xe{left:297.221528pt;}
.xa{left:319.930663pt;}
.x1a{left:323.478841pt;}
.xb{left:324.998917pt;}
.xc{left:349.253463pt;}
.x4{left:359.379302pt;}
.xd{left:371.379902pt;}
.x31{left:382.189776pt;}
.x19{left:387.453333pt;}
.x26{left:407.101688pt;}
.x17{left:408.192409pt;}
.x18{left:422.738470pt;}
.x32{left:448.947780pt;}
.x22{left:477.485207pt;}
.x1c{left:489.761821pt;}
.x2a{left:494.467390pt;}
.x12{left:516.339150pt;}
.x10{left:520.659366pt;}
.xf{left:539.581645pt;}
.x1d{left:560.830708pt;}
.x11{left:562.616130pt;}
.x2b{left:589.572145pt;}
.x2f{left:653.875360pt;}
.x33{left:665.327932pt;}
.x35{left:668.317415pt;}
}




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