
    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_2a91966478e6f63f00d815fe.woff')format("woff");}.ff1{font-family:ff1;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_073dbea1dc1e75fae7e5f9e8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8012e628f668201406a5a914.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_080a172116e0cf931d757e90.woff')format("woff");}.ff4{font-family:ff4;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0d7c98611aa3f016ff4ca51c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.677000;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_9bd5996fd47399e16b8580e6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_d6ada3df8affe9982c22619a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b2173532af4bd25d9ade7be0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_669010cc2e9b63a08698d59e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{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);}
.m11{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);}
.m4{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);}
.m1{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);}
.m23{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);}
.m27{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);}
.m1a{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);}
.m9{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);}
.m7{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);}
.m16{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);}
.m12{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);}
.m29{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);}
.m2{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);}
.m1f{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m1c{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);}
.m17{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);}
.m10{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);}
.m24{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);}
.md{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);}
.m1d{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);}
.m15{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);}
.m22{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);}
.m19{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);}
.ma{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);}
.m26{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m25{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);}
.m1e{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);}
.m28{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);}
.m14{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);}
.m8{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);}
.me{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);}
.m6{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);}
.v1{vertical-align:-11.952000px;}
.v5{vertical-align:-10.464000px;}
.vd{vertical-align:-9.462000px;}
.vc{vertical-align:-7.596000px;}
.ve{vertical-align:-1.236000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:10.920000px;}
.v4{vertical-align:12.306000px;}
.vf{vertical-align:17.364000px;}
.v10{vertical-align:19.524000px;}
.v3{vertical-align:21.702000px;}
.v7{vertical-align:29.628000px;}
.v6{vertical-align:39.036000px;}
.vb{vertical-align:43.050000px;}
.v8{vertical-align:45.504000px;}
.va{vertical-align:75.132000px;}
.v9{vertical-align:84.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000699px;}
.lsa{letter-spacing:0.000868px;}
.lsc{letter-spacing:0.002936px;}
.lsb{letter-spacing:0.003040px;}
.ls9{letter-spacing:0.003531px;}
.ls3a{letter-spacing:0.003746px;}
.ls3d{letter-spacing:0.428370px;}
.ls3b{letter-spacing:0.434370px;}
.ls2a{letter-spacing:0.508407px;}
.ls29{letter-spacing:0.514407px;}
.ls2{letter-spacing:0.542815px;}
.ls3{letter-spacing:0.548815px;}
.ls26{letter-spacing:0.563146px;}
.ls1a{letter-spacing:0.569146px;}
.ls33{letter-spacing:0.717483px;}
.ls1d{letter-spacing:0.720783px;}
.lse{letter-spacing:0.896634px;}
.ls28{letter-spacing:1.249258px;}
.ls22{letter-spacing:1.464783px;}
.ls23{letter-spacing:1.467483px;}
.ls35{letter-spacing:1.490725px;}
.lsd{letter-spacing:1.494390px;}
.ls31{letter-spacing:1.496725px;}
.ls34{letter-spacing:1.641634px;}
.ls30{letter-spacing:1.647634px;}
.ls1b{letter-spacing:2.989200px;}
.ls6{letter-spacing:3.733200px;}
.ls21{letter-spacing:3.739200px;}
.ls2d{letter-spacing:7.896783px;}
.ls32{letter-spacing:8.590741px;}
.ls12{letter-spacing:10.371788px;}
.ls0{letter-spacing:10.461300px;}
.ls17{letter-spacing:10.879159px;}
.ls4{letter-spacing:11.954850px;}
.ls1e{letter-spacing:12.339483px;}
.ls2c{letter-spacing:12.345483px;}
.ls3f{letter-spacing:12.530693px;}
.ls46{letter-spacing:12.638155px;}
.ls2e{letter-spacing:13.042741px;}
.ls37{letter-spacing:13.083483px;}
.ls2f{letter-spacing:13.089483px;}
.ls42{letter-spacing:13.090856px;}
.ls7{letter-spacing:13.210408px;}
.ls43{letter-spacing:13.448400px;}
.ls44{letter-spacing:13.454400px;}
.ls16{letter-spacing:14.047266px;}
.ls14{letter-spacing:14.465695px;}
.ls27{letter-spacing:14.704798px;}
.ls11{letter-spacing:14.944766px;}
.ls24{letter-spacing:15.063451px;}
.lsf{letter-spacing:15.242778px;}
.ls2b{letter-spacing:15.355200px;}
.ls36{letter-spacing:15.361200px;}
.ls18{letter-spacing:15.663483px;}
.ls20{letter-spacing:17.319483px;}
.ls25{letter-spacing:17.514251px;}
.ls45{letter-spacing:17.791576px;}
.ls19{letter-spacing:17.935200px;}
.ls1f{letter-spacing:18.072783px;}
.ls15{letter-spacing:18.231558px;}
.ls1c{letter-spacing:20.281200px;}
.ls38{letter-spacing:21.100787px;}
.ls1{letter-spacing:28.453654px;}
.ls13{letter-spacing:92.438700px;}
.ls10{letter-spacing:94.292700px;}
.ls40{letter-spacing:228.235200px;}
.ls41{letter-spacing:309.493200px;}
.ls39{letter-spacing:323.041200px;}
.ls3e{letter-spacing:326.437200px;}
.ls3c{letter-spacing:340.681200px;}
.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;}
}
.ws9e{word-spacing:-62.286600px;}
.ws19{word-spacing:-14.943900px;}
.ws44{word-spacing:-13.449600px;}
.ws1f{word-spacing:-11.955150px;}
.ws9f{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws18{word-spacing:-5.260253px;}
.ws17{word-spacing:-4.501342px;}
.ws47{word-spacing:-4.363619px;}
.ws8b{word-spacing:-4.235999px;}
.ws83{word-spacing:-4.064741px;}
.ws65{word-spacing:-3.712090px;}
.ws25{word-spacing:-3.526760px;}
.ws36{word-spacing:-3.347434px;}
.ws14{word-spacing:-3.048556px;}
.ws93{word-spacing:-2.988780px;}
.ws53{word-spacing:-2.929004px;}
.wsae{word-spacing:-2.689920px;}
.ws3d{word-spacing:-2.630126px;}
.ws6c{word-spacing:-2.570351px;}
.ws86{word-spacing:-2.391024px;}
.ws2e{word-spacing:-2.271473px;}
.ws2d{word-spacing:-2.211697px;}
.ws35{word-spacing:-2.151922px;}
.ws3c{word-spacing:-2.092146px;}
.ws23{word-spacing:-2.032370px;}
.ws27{word-spacing:-1.972595px;}
.ws2f{word-spacing:-1.912819px;}
.ws1a{word-spacing:-1.853044px;}
.ws2{word-spacing:-1.841083px;}
.ws26{word-spacing:-1.793268px;}
.ws28{word-spacing:-1.733492px;}
.wsda{word-spacing:-1.721549px;}
.ws12{word-spacing:-1.673717px;}
.ws3{word-spacing:-1.673712px;}
.wsa{word-spacing:-1.613941px;}
.wsba{word-spacing:-1.506355px;}
.ws4a{word-spacing:-1.434614px;}
.ws51{word-spacing:-1.374839px;}
.ws4c{word-spacing:-1.315063px;}
.ws1c{word-spacing:-1.255288px;}
.ws46{word-spacing:-1.195512px;}
.ws49{word-spacing:-1.135736px;}
.ws63{word-spacing:-1.075968px;}
.ws29{word-spacing:-1.075961px;}
.ws48{word-spacing:-1.016185px;}
.ws4e{word-spacing:-0.956410px;}
.ws32{word-spacing:-0.896634px;}
.ws55{word-spacing:-0.836858px;}
.wsd6{word-spacing:-0.806976px;}
.ws52{word-spacing:-0.777083px;}
.ws21{word-spacing:-0.717307px;}
.ws54{word-spacing:-0.657532px;}
.wsb6{word-spacing:-0.645581px;}
.ws56{word-spacing:-0.537980px;}
.ws59{word-spacing:-0.478205px;}
.ws7f{word-spacing:-0.418429px;}
.ws15{word-spacing:-0.358654px;}
.wsc5{word-spacing:-0.322790px;}
.wsf{word-spacing:-0.298878px;}
.ws84{word-spacing:-0.268992px;}
.ws3f{word-spacing:-0.239102px;}
.ws38{word-spacing:-0.179327px;}
.ws75{word-spacing:-0.161395px;}
.ws10{word-spacing:-0.119551px;}
.wsa8{word-spacing:-0.107597px;}
.wsa6{word-spacing:-0.062287px;}
.wsc{word-spacing:-0.059776px;}
.ws62{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.047821px;}
.wsa2{word-spacing:-0.045430px;}
.ws5{word-spacing:-0.041843px;}
.ws71{word-spacing:-0.005627px;}
.ws0{word-spacing:0.000000px;}
.wsb3{word-spacing:0.053798px;}
.ws9{word-spacing:0.059776px;}
.ws42{word-spacing:0.107597px;}
.ws40{word-spacing:0.119551px;}
.ws95{word-spacing:0.161395px;}
.wsd{word-spacing:0.179327px;}
.ws9b{word-spacing:0.215194px;}
.wse{word-spacing:0.239102px;}
.ws43{word-spacing:0.268992px;}
.wsb{word-spacing:0.298878px;}
.wsc9{word-spacing:0.322790px;}
.ws57{word-spacing:0.358654px;}
.ws91{word-spacing:0.418429px;}
.ws37{word-spacing:0.597756px;}
.wsab{word-spacing:0.598800px;}
.ws67{word-spacing:0.657532px;}
.ws39{word-spacing:0.717307px;}
.ws34{word-spacing:0.777083px;}
.wsd3{word-spacing:0.806976px;}
.ws5a{word-spacing:0.896634px;}
.ws5f{word-spacing:0.956410px;}
.ws41{word-spacing:1.195512px;}
.ws5c{word-spacing:1.255288px;}
.ws31{word-spacing:1.315063px;}
.ws64{word-spacing:1.344960px;}
.ws77{word-spacing:1.374839px;}
.ws2a{word-spacing:1.434614px;}
.ws8d{word-spacing:1.494390px;}
.ws50{word-spacing:1.554166px;}
.ws11{word-spacing:1.613941px;}
.ws1d{word-spacing:1.733492px;}
.ws81{word-spacing:1.775347px;}
.ws69{word-spacing:1.793268px;}
.ws5b{word-spacing:1.853044px;}
.ws5e{word-spacing:1.912819px;}
.wsd2{word-spacing:1.936742px;}
.ws7e{word-spacing:1.972595px;}
.ws9a{word-spacing:2.092146px;}
.wsc2{word-spacing:2.098138px;}
.wsb8{word-spacing:2.151936px;}
.ws61{word-spacing:2.331248px;}
.ws4f{word-spacing:2.391024px;}
.ws6b{word-spacing:2.450800px;}
.ws6{word-spacing:2.510252px;}
.ws6d{word-spacing:2.510575px;}
.ws8f{word-spacing:2.570351px;}
.ws7d{word-spacing:2.582323px;}
.ws66{word-spacing:2.689902px;}
.wsc8{word-spacing:2.743718px;}
.wsbe{word-spacing:2.797517px;}
.wsb0{word-spacing:2.809453px;}
.ws7{word-spacing:2.869236px;}
.ws30{word-spacing:2.929004px;}
.ws8e{word-spacing:3.012710px;}
.ws2b{word-spacing:3.048556px;}
.ws22{word-spacing:3.108331px;}
.ws82{word-spacing:3.120307px;}
.wsd7{word-spacing:3.174106px;}
.wsd4{word-spacing:3.217603px;}
.wscc{word-spacing:3.218707px;}
.wscd{word-spacing:3.225005px;}
.ws60{word-spacing:3.227882px;}
.wsb4{word-spacing:3.227904px;}
.ws4b{word-spacing:3.287658px;}
.ws96{word-spacing:3.347434px;}
.wscf{word-spacing:3.443098px;}
.wsdc{word-spacing:3.496896px;}
.wsb7{word-spacing:3.524444px;}
.ws58{word-spacing:3.586536px;}
.wsa0{word-spacing:3.588938px;}
.wsb9{word-spacing:3.614342px;}
.ws8{word-spacing:3.697262px;}
.ws6a{word-spacing:3.765863px;}
.ws87{word-spacing:3.825638px;}
.ws78{word-spacing:3.885414px;}
.ws8a{word-spacing:4.000236px;}
.ws6f{word-spacing:4.004965px;}
.wsb1{word-spacing:4.088678px;}
.ws80{word-spacing:4.124516px;}
.wsb2{word-spacing:4.142477px;}
.ws16{word-spacing:4.303843px;}
.ws1b{word-spacing:4.303872px;}
.wsd1{word-spacing:4.357670px;}
.ws3b{word-spacing:4.363619px;}
.ws3a{word-spacing:4.423394px;}
.ws68{word-spacing:4.542946px;}
.wsb5{word-spacing:4.572864px;}
.ws13{word-spacing:4.662497px;}
.ws5d{word-spacing:4.841824px;}
.ws90{word-spacing:5.080926px;}
.ws33{word-spacing:5.200477px;}
.wsad{word-spacing:5.433638px;}
.ws76{word-spacing:5.439580px;}
.ws99{word-spacing:5.499355px;}
.ws24{word-spacing:5.678682px;}
.ws92{word-spacing:5.917784px;}
.wsa7{word-spacing:6.097111px;}
.ws2c{word-spacing:6.216662px;}
.wsaf{word-spacing:6.395989px;}
.ws4d{word-spacing:6.515540px;}
.wsc7{word-spacing:6.671002px;}
.ws6e{word-spacing:6.874194px;}
.wsa4{word-spacing:6.993745px;}
.wsac{word-spacing:7.101389px;}
.ws85{word-spacing:7.232848px;}
.ws88{word-spacing:7.258236px;}
.ws98{word-spacing:7.292623px;}
.ws97{word-spacing:7.352399px;}
.ws94{word-spacing:7.412174px;}
.ws7a{word-spacing:7.651277px;}
.ws7c{word-spacing:8.015962px;}
.ws9c{word-spacing:8.129482px;}
.wsa5{word-spacing:8.982914px;}
.ws89{word-spacing:9.394236px;}
.ws72{word-spacing:10.305375px;}
.ws70{word-spacing:10.306312px;}
.ws73{word-spacing:10.309162px;}
.wsdb{word-spacing:11.674253px;}
.ws1e{word-spacing:11.904886px;}
.wsc6{word-spacing:13.073011px;}
.wsc3{word-spacing:13.385520px;}
.wsc1{word-spacing:13.387459px;}
.wsbd{word-spacing:13.387958px;}
.wsbf{word-spacing:13.389581px;}
.wsce{word-spacing:13.389715px;}
.wsbc{word-spacing:13.393958px;}
.wsc4{word-spacing:13.395581px;}
.wsc0{word-spacing:13.395802px;}
.ws45{word-spacing:14.884124px;}
.wsca{word-spacing:15.709133px;}
.wsd5{word-spacing:16.500543px;}
.wsd8{word-spacing:16.569907px;}
.wsd9{word-spacing:16.619875px;}
.wsbb{word-spacing:16.623706px;}
.wsd0{word-spacing:16.807803px;}
.ws79{word-spacing:17.992456px;}
.ws3e{word-spacing:18.470660px;}
.ws7b{word-spacing:27.138122px;}
.ws1{word-spacing:28.455541px;}
.ws74{word-spacing:31.322414px;}
.wscb{word-spacing:32.386637px;}
.ws9d{word-spacing:115.515940px;}
.wsa1{word-spacing:140.500757px;}
.wsaa{word-spacing:288.567505px;}
.wsa9{word-spacing:313.430592px;}
.ws8c{word-spacing:503.665315px;}
.wsa3{word-spacing:644.739622px;}
._20{margin-left:-9.965856px;}
._12{margin-left:-8.159306px;}
._6{margin-left:-6.515540px;}
._3{margin-left:-5.308087px;}
._c{margin-left:-4.016915px;}
._b{margin-left:-2.689919px;}
._1{margin-left:-1.464498px;}
._18{width:1.494390px;}
._24{width:3.004055px;}
._1b{width:4.423394px;}
._1a{width:8.727077px;}
._4{width:11.094379px;}
._0{width:12.971268px;}
._10{width:14.196692px;}
._19{width:15.750883px;}
._f{width:16.826827px;}
._5{width:18.231558px;}
._7{width:19.486846px;}
._9{width:20.891568px;}
._14{width:22.266407px;}
._13{width:24.268910px;}
._2{width:25.946136px;}
._a{width:27.496776px;}
._1d{width:28.871615px;}
._17{width:30.216562px;}
._8{width:32.308708px;}
._11{width:33.474353px;}
._15{width:35.955019px;}
._1c{width:38.256510px;}
._22{width:39.900209px;}
._1e{width:41.255233px;}
._16{width:43.038415px;}
._27{width:48.830992px;}
._28{width:55.358554px;}
._25{width:61.868160px;}
._26{width:63.374515px;}
._23{width:88.767360px;}
._21{width:387.777245px;}
._d{width:1562.918870px;}
._1f{width:2432.709000px;}
._e{width:2456.619000px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fsa{font-size:37.371600px;}
.fs0{font-size:41.842800px;}
.fs5{font-size:45.429600px;}
.fs4{font-size:47.337600px;}
.fs3{font-size:47.820600px;}
.fsb{font-size:49.829400px;}
.fs8{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:62.286600px;}
.fs7{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y41{bottom:45.921000px;}
.y158{bottom:96.523500px;}
.y111{bottom:98.136000px;}
.y140{bottom:99.720000px;}
.y13{bottom:100.260000px;}
.y130{bottom:100.695000px;}
.yf7{bottom:100.741500px;}
.y88{bottom:101.001000px;}
.y162{bottom:106.368000px;}
.y40{bottom:111.553500px;}
.y157{bottom:115.756500px;}
.y1a6{bottom:115.792500px;}
.y74{bottom:116.407500px;}
.y17c{bottom:116.899500px;}
.y110{bottom:117.369000px;}
.y12{bottom:118.147500px;}
.y12f{bottom:119.928000px;}
.y1d9{bottom:119.931000px;}
.y87{bottom:120.234000px;}
.y13f{bottom:120.610500px;}
.yf6{bottom:121.633500px;}
.y161{bottom:127.260000px;}
.y3f{bottom:132.445500px;}
.y123{bottom:133.086000px;}
.y11{bottom:136.035000px;}
.y73{bottom:137.298000px;}
.y17b{bottom:137.791500px;}
.y1d8{bottom:139.081500px;}
.y12e{bottom:139.161000px;}
.y86{bottom:139.467000px;}
.y13d{bottom:141.502500px;}
.yf5{bottom:142.524000px;}
.y1a5{bottom:144.258000px;}
.y13e{bottom:146.928000px;}
.y160{bottom:148.150500px;}
.y3e{bottom:153.336000px;}
.y10{bottom:153.924000px;}
.y122{bottom:153.978000px;}
.yd7{bottom:155.664000px;}
.yb5{bottom:157.621500px;}
.y72{bottom:158.190000px;}
.y1d7{bottom:158.232000px;}
.y17a{bottom:158.682000px;}
.y85{bottom:158.700000px;}
.y13c{bottom:162.394500px;}
.yf4{bottom:163.416000px;}
.y15f{bottom:169.042500px;}
.yf{bottom:171.811500px;}
.y1a4{bottom:172.723500px;}
.y3d{bottom:174.228000px;}
.y121{bottom:174.870000px;}
.yd6{bottom:176.556000px;}
.y1d6{bottom:177.382500px;}
.yb4{bottom:178.513500px;}
.y71{bottom:179.082000px;}
.y179{bottom:179.574000px;}
.yf3{bottom:184.308000px;}
.ye{bottom:189.699000px;}
.y15e{bottom:189.934500px;}
.y1a3{bottom:192.222000px;}
.y3c{bottom:195.120000px;}
.y120{bottom:195.760500px;}
.y1d5{bottom:196.533000px;}
.yd5{bottom:197.448000px;}
.y13b{bottom:197.889000px;}
.yb3{bottom:199.405500px;}
.y70{bottom:199.972500px;}
.y178{bottom:200.466000px;}
.yf2{bottom:205.198500px;}
.yd{bottom:207.586500px;}
.y1a2{bottom:211.720500px;}
.y1d4{bottom:215.683500px;}
.y3b{bottom:216.012000px;}
.y11f{bottom:216.652500px;}
.y13a{bottom:217.122000px;}
.yd4{bottom:218.338500px;}
.yb2{bottom:220.296000px;}
.y6f{bottom:220.864500px;}
.y177{bottom:221.356500px;}
.yc{bottom:225.475500px;}
.y15d{bottom:225.562500px;}
.yf1{bottom:226.090500px;}
.y1a1{bottom:231.219000px;}
.y1d3{bottom:234.834000px;}
.yd3{bottom:239.230500px;}
.yb1{bottom:241.188000px;}
.y3a{bottom:241.386000px;}
.y6e{bottom:241.756500px;}
.y176{bottom:242.248500px;}
.y15c{bottom:244.795500px;}
.yf0{bottom:246.982500px;}
.y11e{bottom:252.280500px;}
.yb{bottom:252.330000px;}
.y1d2{bottom:253.984500px;}
.y1a0{bottom:259.684500px;}
.yd2{bottom:260.122500px;}
.yb0{bottom:262.080000px;}
.y6d{bottom:262.647000px;}
.y15b{bottom:264.027000px;}
.yef{bottom:267.873000px;}
.ya{bottom:270.217500px;}
.y11d{bottom:271.513500px;}
.y1d1{bottom:273.135000px;}
.y19f{bottom:279.183000px;}
.yd1{bottom:281.013000px;}
.yaf{bottom:282.970500px;}
.y6c{bottom:283.539000px;}
.y9{bottom:288.105000px;}
.yee{bottom:288.765000px;}
.y175{bottom:289.408500px;}
.y11c{bottom:290.746500px;}
.y1d0{bottom:292.285500px;}
.y19e{bottom:298.681500px;}
.yd0{bottom:301.905000px;}
.yae{bottom:303.862500px;}
.y6b{bottom:304.431000px;}
.y8{bottom:305.994000px;}
.yed{bottom:309.657000px;}
.y174{bottom:311.115000px;}
.y1cf{bottom:311.436000px;}
.y19d{bottom:318.180000px;}
.y39{bottom:318.834000px;}
.ycf{bottom:322.797000px;}
.y7{bottom:323.881500px;}
.yad{bottom:324.754500px;}
.y6a{bottom:325.323000px;}
.yec{bottom:330.547500px;}
.y1ce{bottom:330.586500px;}
.y38{bottom:339.726000px;}
.y173{bottom:341.164500px;}
.y6{bottom:341.769000px;}
.yce{bottom:343.687500px;}
.yac{bottom:345.645000px;}
.y69{bottom:346.213500px;}
.y19c{bottom:346.645500px;}
.y1cd{bottom:349.737000px;}
.yeb{bottom:351.439500px;}
.y5{bottom:359.658000px;}
.y172{bottom:360.397500px;}
.ycd{bottom:364.579500px;}
.yab{bottom:366.537000px;}
.y19b{bottom:366.667500px;}
.y68{bottom:367.105500px;}
.y1cc{bottom:368.887500px;}
.yea{bottom:372.331500px;}
.y37{bottom:378.550500px;}
.y4{bottom:383.523000px;}
.ycc{bottom:385.471500px;}
.y19a{bottom:386.688000px;}
.yaa{bottom:387.429000px;}
.y67{bottom:387.997500px;}
.y1cb{bottom:388.038000px;}
.ye9{bottom:393.223500px;}
.y171{bottom:397.503000px;}
.y36{bottom:399.441000px;}
.y3{bottom:401.410500px;}
.ycb{bottom:406.363500px;}
.y199{bottom:406.708500px;}
.y1ca{bottom:407.188500px;}
.ya9{bottom:408.321000px;}
.y66{bottom:408.888000px;}
.ye8{bottom:414.114000px;}
.y170{bottom:418.393500px;}
.y2{bottom:419.299500px;}
.y35{bottom:420.333000px;}
.y1c9{bottom:426.340500px;}
.y198{bottom:426.730500px;}
.yca{bottom:427.254000px;}
.ya8{bottom:429.211500px;}
.y65{bottom:429.780000px;}
.ye7{bottom:435.006000px;}
.y1{bottom:437.187000px;}
.y34{bottom:441.225000px;}
.y16f{bottom:441.997500px;}
.y1c8{bottom:445.491000px;}
.y197{bottom:446.751000px;}
.yc9{bottom:448.146000px;}
.y64{bottom:450.672000px;}
.y16d{bottom:452.250000px;}
.ya7{bottom:454.587000px;}
.ye6{bottom:455.898000px;}
.y33{bottom:462.115500px;}
.y16e{bottom:462.210000px;}
.y1c7{bottom:464.641500px;}
.y196{bottom:466.771500px;}
.yc8{bottom:469.038000px;}
.y63{bottom:471.562500px;}
.y156{bottom:475.477500px;}
.ye5{bottom:476.788500px;}
.y32{bottom:483.007500px;}
.y1c6{bottom:483.792000px;}
.y195{bottom:486.793500px;}
.y16c{bottom:488.205000px;}
.y10f{bottom:488.898000px;}
.ya6{bottom:489.928500px;}
.y62{bottom:492.454500px;}
.y155{bottom:496.369500px;}
.ye4{bottom:497.680500px;}
.y1c5{bottom:502.942500px;}
.y31{bottom:503.899500px;}
.y194{bottom:506.814000px;}
.y16b{bottom:509.095500px;}
.y10e{bottom:509.788500px;}
.ya5{bottom:510.820500px;}
.y61{bottom:513.346500px;}
.y154{bottom:517.261500px;}
.ye3{bottom:518.572500px;}
.y12d{bottom:520.030500px;}
.y1c4{bottom:522.093000px;}
.y2f{bottom:524.791500px;}
.y193{bottom:526.834500px;}
.y30{bottom:530.215500px;}
.ya4{bottom:531.712500px;}
.y60{bottom:534.237000px;}
.y169{bottom:534.543000px;}
.y16a{bottom:535.156500px;}
.y10d{bottom:535.164000px;}
.yc7{bottom:536.194500px;}
.y153{bottom:538.152000px;}
.y139{bottom:538.243500px;}
.ye2{bottom:539.463000px;}
.y12c{bottom:540.922500px;}
.y1c3{bottom:541.243500px;}
.y2e{bottom:545.682000px;}
.y168{bottom:545.919000px;}
.y192{bottom:546.856500px;}
.ya3{bottom:552.603000px;}
.y5f{bottom:555.129000px;}
.y152{bottom:559.044000px;}
.y138{bottom:559.134000px;}
.ye1{bottom:560.355000px;}
.y1c2{bottom:560.394000px;}
.y12b{bottom:561.813000px;}
.y2d{bottom:566.574000px;}
.y10c{bottom:570.507000px;}
.yc6{bottom:571.537500px;}
.ya2{bottom:573.495000px;}
.y5e{bottom:576.021000px;}
.y1c1{bottom:579.544500px;}
.y167{bottom:579.591000px;}
.y151{bottom:579.936000px;}
.y137{bottom:580.026000px;}
.ye0{bottom:581.247000px;}
.y12a{bottom:582.705000px;}
.y191{bottom:584.809500px;}
.y2c{bottom:587.466000px;}
.y10b{bottom:591.397500px;}
.yc5{bottom:592.429500px;}
.ya1{bottom:594.387000px;}
.y5d{bottom:596.913000px;}
.y1c0{bottom:598.695000px;}
.y1f2{bottom:599.146500px;}
.y166{bottom:600.483000px;}
.y150{bottom:600.828000px;}
.ydf{bottom:602.137500px;}
.y129{bottom:603.597000px;}
.y190{bottom:605.701500px;}
.y2a{bottom:608.356500px;}
.y136{bottom:609.360000px;}
.y10a{bottom:612.289500px;}
.y84{bottom:612.739500px;}
.yc4{bottom:613.320000px;}
.y2b{bottom:613.782000px;}
.ya0{bottom:615.277500px;}
.y5c{bottom:617.803500px;}
.y1bf{bottom:617.845500px;}
.y1f1{bottom:618.297000px;}
.y165{bottom:621.375000px;}
.yde{bottom:623.029500px;}
.y128{bottom:624.487500px;}
.y14f{bottom:626.202000px;}
.y18f{bottom:626.593500px;}
.y29{bottom:629.248500px;}
.y109{bottom:633.181500px;}
.y83{bottom:633.631500px;}
.yc3{bottom:634.212000px;}
.y9f{bottom:636.169500px;}
.y1be{bottom:636.996000px;}
.y1f0{bottom:637.447500px;}
.y5b{bottom:638.695500px;}
.ydd{bottom:643.921500px;}
.y127{bottom:645.379500px;}
.y18e{bottom:647.484000px;}
.y28{bottom:650.140500px;}
.y108{bottom:654.072000px;}
.y82{bottom:654.522000px;}
.yc2{bottom:655.104000px;}
.y1bd{bottom:656.146500px;}
.y134{bottom:656.511000px;}
.y135{bottom:656.857500px;}
.y164{bottom:657.003000px;}
.y9e{bottom:657.061500px;}
.y5a{bottom:659.587500px;}
.y14e{bottom:661.545000px;}
.ydc{bottom:664.812000px;}
.y18d{bottom:668.376000px;}
.y27{bottom:671.031000px;}
.y107{bottom:674.964000px;}
.y1bc{bottom:675.297000px;}
.y81{bottom:675.414000px;}
.yc1{bottom:675.996000px;}
.y163{bottom:676.236000px;}
.y133{bottom:677.401500px;}
.y9d{bottom:677.953500px;}
.y59{bottom:680.478000px;}
.y126{bottom:681.007500px;}
.y14d{bottom:682.435500px;}
.y18c{bottom:689.268000px;}
.ydb{bottom:690.187500px;}
.y25{bottom:691.923000px;}
.y1bb{bottom:694.447500px;}
.y106{bottom:695.856000px;}
.y80{bottom:696.306000px;}
.yc0{bottom:696.886500px;}
.y26{bottom:697.348500px;}
.y9c{bottom:698.844000px;}
.y1ef{bottom:699.628500px;}
.y125{bottom:700.240500px;}
.y58{bottom:701.370000px;}
.y11b{bottom:701.803500px;}
.y14c{bottom:703.327500px;}
.y18b{bottom:710.160000px;}
.y23{bottom:712.815000px;}
.y1ba{bottom:713.598000px;}
.y105{bottom:716.746500px;}
.y7f{bottom:717.196500px;}
.ybf{bottom:717.778500px;}
.y24{bottom:718.239000px;}
.y1ee{bottom:718.779000px;}
.y124{bottom:719.473500px;}
.y9b{bottom:719.736000px;}
.y57{bottom:722.262000px;}
.yda{bottom:722.334000px;}
.y11a{bottom:722.694000px;}
.y14b{bottom:724.219500px;}
.y18a{bottom:731.050500px;}
.y1b9{bottom:732.748500px;}
.y22{bottom:733.705500px;}
.y104{bottom:737.638500px;}
.y1ed{bottom:737.929500px;}
.y7e{bottom:738.088500px;}
.ybe{bottom:738.670500px;}
.y132{bottom:740.077500px;}
.y9a{bottom:740.628000px;}
.yd9{bottom:741.565500px;}
.y56{bottom:743.152500px;}
.y119{bottom:743.586000px;}
.y149{bottom:745.110000px;}
.y14a{bottom:750.535500px;}
.y1b8{bottom:751.899000px;}
.y189{bottom:751.942500px;}
.y21{bottom:754.597500px;}
.y1ec{bottom:757.081500px;}
.y103{bottom:758.530500px;}
.y7c{bottom:758.980500px;}
.ybd{bottom:759.561000px;}
.yd8{bottom:760.798500px;}
.y131{bottom:761.314500px;}
.y99{bottom:761.518500px;}
.y55{bottom:764.044500px;}
.y7d{bottom:764.404500px;}
.y118{bottom:764.478000px;}
.y148{bottom:766.002000px;}
.y1b7{bottom:771.049500px;}
.y188{bottom:772.834500px;}
.y20{bottom:775.489500px;}
.y1eb{bottom:776.232000px;}
.y102{bottom:779.421000px;}
.y7b{bottom:779.871000px;}
.ybc{bottom:780.453000px;}
.y98{bottom:782.410500px;}
.y54{bottom:784.936500px;}
.y117{bottom:785.368500px;}
.y147{bottom:786.894000px;}
.y1b6{bottom:790.200000px;}
.y187{bottom:793.725000px;}
.y1ea{bottom:795.382500px;}
.y1f{bottom:796.381500px;}
.y101{bottom:800.313000px;}
.y7a{bottom:800.763000px;}
.ybb{bottom:801.345000px;}
.y97{bottom:803.302500px;}
.y53{bottom:805.827000px;}
.y116{bottom:806.260500px;}
.y146{bottom:807.784500px;}
.y1b5{bottom:809.352000px;}
.y15a{bottom:813.210000px;}
.y1e9{bottom:814.533000px;}
.y185{bottom:814.617000px;}
.y1e{bottom:817.272000px;}
.y79{bottom:818.925000px;}
.y186{bottom:820.041000px;}
.y100{bottom:821.205000px;}
.y78{bottom:821.655000px;}
.yba{bottom:822.235500px;}
.y96{bottom:824.193000px;}
.y52{bottom:826.719000px;}
.y1b4{bottom:828.502500px;}
.y145{bottom:828.676500px;}
.y115{bottom:831.636000px;}
.y1e8{bottom:833.683500px;}
.y184{bottom:835.509000px;}
.y1d{bottom:838.164000px;}
.yff{bottom:842.097000px;}
.y77{bottom:842.545500px;}
.yb9{bottom:843.127500px;}
.y95{bottom:845.085000px;}
.y51{bottom:847.611000px;}
.y1b3{bottom:847.653000px;}
.y144{bottom:849.568500px;}
.y1e7{bottom:852.834000px;}
.y183{bottom:856.399500px;}
.y1c{bottom:859.056000px;}
.yfe{bottom:862.987500px;}
.yb8{bottom:864.019500px;}
.y94{bottom:865.977000px;}
.y1b2{bottom:866.803500px;}
.y114{bottom:866.977500px;}
.y76{bottom:867.921000px;}
.y50{bottom:868.503000px;}
.y143{bottom:870.460500px;}
.y1e6{bottom:871.984500px;}
.y181{bottom:877.291500px;}
.y1b{bottom:879.946500px;}
.y182{bottom:882.715500px;}
.yfd{bottom:883.879500px;}
.yb7{bottom:884.910000px;}
.y1b1{bottom:885.954000px;}
.y113{bottom:887.869500px;}
.y4f{bottom:889.393500px;}
.y1e5{bottom:891.135000px;}
.y93{bottom:891.351000px;}
.y75{bottom:892.353000px;}
.y180{bottom:898.183500px;}
.y1b0{bottom:905.104500px;}
.yb6{bottom:905.802000px;}
.y4e{bottom:910.285500px;}
.yfc{bottom:912.243000px;}
.y112{bottom:913.243500px;}
.y1a{bottom:919.966500px;}
.y17f{bottom:923.557500px;}
.y1af{bottom:924.255000px;}
.y92{bottom:926.694000px;}
.y1e4{bottom:929.436000px;}
.y4d{bottom:931.177500px;}
.yfb{bottom:933.135000px;}
.y19{bottom:936.106500px;}
.y1ae{bottom:943.405500px;}
.y91{bottom:947.584500px;}
.y1e3{bottom:948.586500px;}
.y4c{bottom:952.068000px;}
.y18{bottom:952.246500px;}
.yfa{bottom:954.025500px;}
.y142{bottom:958.509000px;}
.y17e{bottom:959.185500px;}
.y1ad{bottom:962.556000px;}
.y1e2{bottom:967.737000px;}
.y90{bottom:968.476500px;}
.y4b{bottom:972.960000px;}
.yf9{bottom:974.917500px;}
.y17d{bottom:978.418500px;}
.y159{bottom:979.401000px;}
.y1ac{bottom:981.706500px;}
.y1e1{bottom:986.887500px;}
.y8f{bottom:989.368500px;}
.y4a{bottom:993.852000px;}
.yf8{bottom:1000.291500px;}
.y17{bottom:1001.262000px;}
.y1ab{bottom:1005.340500px;}
.y1e0{bottom:1006.038000px;}
.y8e{bottom:1010.260500px;}
.y49{bottom:1014.742500px;}
.y141{bottom:1020.168000px;}
.y1df{bottom:1025.188500px;}
.y8d{bottom:1031.151000px;}
.y48{bottom:1035.634500px;}
.y16{bottom:1040.086500px;}
.y1aa{bottom:1044.165000px;}
.y1de{bottom:1044.339000px;}
.y8c{bottom:1052.043000px;}
.y47{bottom:1056.526500px;}
.y1dd{bottom:1063.489500px;}
.y15{bottom:1071.424500px;}
.y1a9{bottom:1072.629000px;}
.y8b{bottom:1072.935000px;}
.y46{bottom:1077.417000px;}
.y1dc{bottom:1082.640000px;}
.y1a8{bottom:1092.129000px;}
.y8a{bottom:1093.825500px;}
.y45{bottom:1098.309000px;}
.y1db{bottom:1101.790500px;}
.y14{bottom:1102.761000px;}
.y1a7{bottom:1111.627500px;}
.y89{bottom:1114.717500px;}
.y44{bottom:1119.201000px;}
.y1da{bottom:1120.941000px;}
.y43{bottom:1140.091500px;}
.y42{bottom:1200.196500px;}
.h9{height:27.855430px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.hf{height:31.526842px;}
.ha{height:33.072749px;}
.h7{height:34.813397px;}
.hd{height:35.052500px;}
.h19{height:38.843232px;}
.h10{height:39.165235px;}
.h1b{height:39.434227px;}
.hb{height:41.482876px;}
.h11{height:41.544042px;}
.h1a{height:42.238157px;}
.h6{height:43.038432px;}
.h8{height:43.516637px;}
.h4{height:43.815515px;}
.h14{height:46.714950px;}
.h18{height:47.338950px;}
.h1c{height:49.985558px;}
.hc{height:51.646464px;}
.he{height:52.402876px;}
.h13{height:53.788876px;}
.h12{height:54.774749px;}
.h15{height:72.335897px;}
.h5{height:77.469696px;}
.h17{height:86.566637px;}
.h16{height:117.299897px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x88{left:85.678500px;}
.x54{left:247.506000px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.x7{left:281.661000px;}
.x85{left:291.961500px;}
.x86{left:299.556000px;}
.x8{left:301.158000px;}
.x9{left:307.686000px;}
.x30{left:323.941500px;}
.xa{left:327.183000px;}
.x5c{left:332.367000px;}
.x31{left:338.137500px;}
.x32{left:341.568000px;}
.x6b{left:345.951000px;}
.x5d{left:347.311500px;}
.x5e{left:351.096000px;}
.x36{left:352.794000px;}
.x33{left:355.764000px;}
.x6c{left:362.025000px;}
.x5f{left:366.039000px;}
.x83{left:368.632500px;}
.x53{left:371.439000px;}
.x6d{left:377.410500px;}
.x87{left:382.107000px;}
.x60{left:383.434500px;}
.x68{left:391.266000px;}
.x46{left:397.938000px;}
.x20{left:400.087500px;}
.x34{left:403.861500px;}
.x21{left:407.185500px;}
.x61{left:410.610000px;}
.x22{left:414.141000px;}
.x35{left:418.059000px;}
.x6e{left:419.334000px;}
.x23{left:421.240500px;}
.x37{left:424.807500px;}
.x57{left:427.851000px;}
.x7e{left:430.441500px;}
.x77{left:432.127500px;}
.x47{left:436.213500px;}
.x38{left:439.003500px;}
.x42{left:442.680000px;}
.x78{left:447.072000px;}
.x43{left:456.876000px;}
.x80{left:457.890000px;}
.x44{left:460.306500px;}
.x11{left:461.698500px;}
.x48{left:463.536000px;}
.x49{left:469.962000px;}
.x45{left:474.502500px;}
.x12{left:476.905500px;}
.x7f{left:478.983000px;}
.x13{left:491.692500px;}
.x3b{left:507.105000px;}
.x14{left:510.376500px;}
.x4{left:516.231000px;}
.x2f{left:522.183000px;}
.x5{left:525.462000px;}
.x24{left:533.539500px;}
.x15{left:535.413000px;}
.x2d{left:537.148500px;}
.x25{left:540.567000px;}
.x26{left:547.665000px;}
.x2e{left:551.226000px;}
.x82{left:553.518000px;}
.x4c{left:556.024500px;}
.x4d{left:567.253500px;}
.x4e{left:574.060500px;}
.x64{left:577.798500px;}
.x81{left:580.659000px;}
.x16{left:584.533500px;}
.x6f{left:586.141500px;}
.x70{left:592.543500px;}
.x17{left:599.740500px;}
.x71{left:608.310000px;}
.x84{left:611.860500px;}
.x18{left:614.527500px;}
.x65{left:616.171500px;}
.x4a{left:625.917000px;}
.x19{left:633.211500px;}
.x1a{left:639.562500px;}
.x72{left:646.012500px;}
.x66{left:650.635500px;}
.x41{left:651.853500px;}
.x1b{left:655.330500px;}
.x67{left:657.061500px;}
.x1e{left:659.715000px;}
.x73{left:660.955500px;}
.xb{left:665.452500px;}
.x1f{left:667.186500px;}
.x4b{left:675.613500px;}
.x3c{left:679.890000px;}
.xc{left:681.486000px;}
.x7b{left:690.132000px;}
.x3d{left:694.086000px;}
.xd{left:696.691500px;}
.x7c{left:705.076500px;}
.x4f{left:708.175500px;}
.x3e{left:711.712500px;}
.xe{left:716.200500px;}
.x27{left:719.460000px;}
.xf{left:722.728500px;}
.x50{left:723.853500px;}
.x28{left:726.558000px;}
.x75{left:729.795000px;}
.x10{left:738.496500px;}
.x62{left:740.523000px;}
.x1c{left:742.699500px;}
.x76{left:744.739500px;}
.x55{left:751.579500px;}
.x74{left:756.324000px;}
.x7d{left:760.546500px;}
.x29{left:763.839000px;}
.x56{left:766.522500px;}
.x2a{left:770.937000px;}
.x51{left:772.198500px;}
.x63{left:775.899000px;}
.x58{left:778.717500px;}
.x59{left:782.299500px;}
.x52{left:787.878000px;}
.x2b{left:789.223500px;}
.x5b{left:793.783500px;}
.x79{left:795.081000px;}
.x5a{left:796.795500px;}
.x3f{left:802.014000px;}
.x2c{left:803.421000px;}
.x7a{left:814.599000px;}
.x40{left:816.211500px;}
.x39{left:818.826000px;}
.x69{left:821.203500px;}
.x6{left:823.714500px;}
.x3a{left:833.023500px;}
.x6a{left:836.970000px;}
.x1d{left:838.983000px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v5{vertical-align:-9.301333pt;}
.vd{vertical-align:-8.410667pt;}
.vc{vertical-align:-6.752000pt;}
.ve{vertical-align:-1.098667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:9.706667pt;}
.v4{vertical-align:10.938667pt;}
.vf{vertical-align:15.434667pt;}
.v10{vertical-align:17.354667pt;}
.v3{vertical-align:19.290667pt;}
.v7{vertical-align:26.336000pt;}
.v6{vertical-align:34.698667pt;}
.vb{vertical-align:38.266667pt;}
.v8{vertical-align:40.448000pt;}
.va{vertical-align:66.784000pt;}
.v9{vertical-align:74.666667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000621pt;}
.lsa{letter-spacing:0.000772pt;}
.lsc{letter-spacing:0.002610pt;}
.lsb{letter-spacing:0.002703pt;}
.ls9{letter-spacing:0.003138pt;}
.ls3a{letter-spacing:0.003330pt;}
.ls3d{letter-spacing:0.380773pt;}
.ls3b{letter-spacing:0.386106pt;}
.ls2a{letter-spacing:0.451918pt;}
.ls29{letter-spacing:0.457251pt;}
.ls2{letter-spacing:0.482502pt;}
.ls3{letter-spacing:0.487835pt;}
.ls26{letter-spacing:0.500574pt;}
.ls1a{letter-spacing:0.505907pt;}
.ls33{letter-spacing:0.637762pt;}
.ls1d{letter-spacing:0.640696pt;}
.lse{letter-spacing:0.797008pt;}
.ls28{letter-spacing:1.110451pt;}
.ls22{letter-spacing:1.302029pt;}
.ls23{letter-spacing:1.304429pt;}
.ls35{letter-spacing:1.325089pt;}
.lsd{letter-spacing:1.328347pt;}
.ls31{letter-spacing:1.330422pt;}
.ls34{letter-spacing:1.459230pt;}
.ls30{letter-spacing:1.464563pt;}
.ls1b{letter-spacing:2.657067pt;}
.ls6{letter-spacing:3.318400pt;}
.ls21{letter-spacing:3.323733pt;}
.ls2d{letter-spacing:7.019362pt;}
.ls32{letter-spacing:7.636214pt;}
.ls12{letter-spacing:9.219367pt;}
.ls0{letter-spacing:9.298933pt;}
.ls17{letter-spacing:9.670364pt;}
.ls4{letter-spacing:10.626533pt;}
.ls1e{letter-spacing:10.968429pt;}
.ls2c{letter-spacing:10.973762pt;}
.ls3f{letter-spacing:11.138393pt;}
.ls46{letter-spacing:11.233916pt;}
.ls2e{letter-spacing:11.593548pt;}
.ls37{letter-spacing:11.629762pt;}
.ls2f{letter-spacing:11.635096pt;}
.ls42{letter-spacing:11.636317pt;}
.ls7{letter-spacing:11.742585pt;}
.ls43{letter-spacing:11.954133pt;}
.ls44{letter-spacing:11.959467pt;}
.ls16{letter-spacing:12.486459pt;}
.ls14{letter-spacing:12.858396pt;}
.ls27{letter-spacing:13.070931pt;}
.ls11{letter-spacing:13.284237pt;}
.ls24{letter-spacing:13.389734pt;}
.lsf{letter-spacing:13.549136pt;}
.ls2b{letter-spacing:13.649067pt;}
.ls36{letter-spacing:13.654400pt;}
.ls18{letter-spacing:13.923096pt;}
.ls20{letter-spacing:15.395096pt;}
.ls25{letter-spacing:15.568223pt;}
.ls45{letter-spacing:15.814735pt;}
.ls19{letter-spacing:15.942400pt;}
.ls1f{letter-spacing:16.064696pt;}
.ls15{letter-spacing:16.205829pt;}
.ls1c{letter-spacing:18.027733pt;}
.ls38{letter-spacing:18.756255pt;}
.ls1{letter-spacing:25.292137pt;}
.ls13{letter-spacing:82.167733pt;}
.ls10{letter-spacing:83.815733pt;}
.ls40{letter-spacing:202.875733pt;}
.ls41{letter-spacing:275.105067pt;}
.ls39{letter-spacing:287.147733pt;}
.ls3e{letter-spacing:290.166400pt;}
.ls3c{letter-spacing:302.827733pt;}
.ws9e{word-spacing:-55.365867pt;}
.ws19{word-spacing:-13.283467pt;}
.ws44{word-spacing:-11.955200pt;}
.ws1f{word-spacing:-10.626800pt;}
.ws9f{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws18{word-spacing:-4.675780pt;}
.ws17{word-spacing:-4.001192pt;}
.ws47{word-spacing:-3.878772pt;}
.ws8b{word-spacing:-3.765332pt;}
.ws83{word-spacing:-3.613103pt;}
.ws65{word-spacing:-3.299635pt;}
.ws25{word-spacing:-3.134898pt;}
.ws36{word-spacing:-2.975497pt;}
.ws14{word-spacing:-2.709827pt;}
.ws93{word-spacing:-2.656693pt;}
.ws53{word-spacing:-2.603559pt;}
.wsae{word-spacing:-2.391040pt;}
.ws3d{word-spacing:-2.337890pt;}
.ws6c{word-spacing:-2.284756pt;}
.ws86{word-spacing:-2.125355pt;}
.ws2e{word-spacing:-2.019087pt;}
.ws2d{word-spacing:-1.965953pt;}
.ws35{word-spacing:-1.912819pt;}
.ws3c{word-spacing:-1.859685pt;}
.ws23{word-spacing:-1.806551pt;}
.ws27{word-spacing:-1.753418pt;}
.ws2f{word-spacing:-1.700284pt;}
.ws1a{word-spacing:-1.647150pt;}
.ws2{word-spacing:-1.636518pt;}
.ws26{word-spacing:-1.594016pt;}
.ws28{word-spacing:-1.540882pt;}
.wsda{word-spacing:-1.530266pt;}
.ws12{word-spacing:-1.487748pt;}
.ws3{word-spacing:-1.487744pt;}
.wsa{word-spacing:-1.434614pt;}
.wsba{word-spacing:-1.338982pt;}
.ws4a{word-spacing:-1.275213pt;}
.ws51{word-spacing:-1.222079pt;}
.ws4c{word-spacing:-1.168945pt;}
.ws1c{word-spacing:-1.115811pt;}
.ws46{word-spacing:-1.062677pt;}
.ws49{word-spacing:-1.009543pt;}
.ws63{word-spacing:-0.956416pt;}
.ws29{word-spacing:-0.956410pt;}
.ws48{word-spacing:-0.903276pt;}
.ws4e{word-spacing:-0.850142pt;}
.ws32{word-spacing:-0.797008pt;}
.ws55{word-spacing:-0.743874pt;}
.wsd6{word-spacing:-0.717312pt;}
.ws52{word-spacing:-0.690740pt;}
.ws21{word-spacing:-0.637606pt;}
.ws54{word-spacing:-0.584473pt;}
.wsb6{word-spacing:-0.573850pt;}
.ws56{word-spacing:-0.478205pt;}
.ws59{word-spacing:-0.425071pt;}
.ws7f{word-spacing:-0.371937pt;}
.ws15{word-spacing:-0.318803pt;}
.wsc5{word-spacing:-0.286925pt;}
.wsf{word-spacing:-0.265669pt;}
.ws84{word-spacing:-0.239104pt;}
.ws3f{word-spacing:-0.212535pt;}
.ws38{word-spacing:-0.159402pt;}
.ws75{word-spacing:-0.143462pt;}
.ws10{word-spacing:-0.106268pt;}
.wsa8{word-spacing:-0.095642pt;}
.wsa6{word-spacing:-0.055366pt;}
.wsc{word-spacing:-0.053134pt;}
.ws62{word-spacing:-0.047821pt;}
.ws20{word-spacing:-0.042507pt;}
.wsa2{word-spacing:-0.040382pt;}
.ws5{word-spacing:-0.037194pt;}
.ws71{word-spacing:-0.005002pt;}
.ws0{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.047821pt;}
.ws9{word-spacing:0.053134pt;}
.ws42{word-spacing:0.095642pt;}
.ws40{word-spacing:0.106268pt;}
.ws95{word-spacing:0.143462pt;}
.wsd{word-spacing:0.159402pt;}
.ws9b{word-spacing:0.191283pt;}
.wse{word-spacing:0.212535pt;}
.ws43{word-spacing:0.239104pt;}
.wsb{word-spacing:0.265669pt;}
.wsc9{word-spacing:0.286925pt;}
.ws57{word-spacing:0.318803pt;}
.ws91{word-spacing:0.371937pt;}
.ws37{word-spacing:0.531339pt;}
.wsab{word-spacing:0.532267pt;}
.ws67{word-spacing:0.584473pt;}
.ws39{word-spacing:0.637606pt;}
.ws34{word-spacing:0.690740pt;}
.wsd3{word-spacing:0.717312pt;}
.ws5a{word-spacing:0.797008pt;}
.ws5f{word-spacing:0.850142pt;}
.ws41{word-spacing:1.062677pt;}
.ws5c{word-spacing:1.115811pt;}
.ws31{word-spacing:1.168945pt;}
.ws64{word-spacing:1.195520pt;}
.ws77{word-spacing:1.222079pt;}
.ws2a{word-spacing:1.275213pt;}
.ws8d{word-spacing:1.328347pt;}
.ws50{word-spacing:1.381481pt;}
.ws11{word-spacing:1.434614pt;}
.ws1d{word-spacing:1.540882pt;}
.ws81{word-spacing:1.578086pt;}
.ws69{word-spacing:1.594016pt;}
.ws5b{word-spacing:1.647150pt;}
.ws5e{word-spacing:1.700284pt;}
.wsd2{word-spacing:1.721549pt;}
.ws7e{word-spacing:1.753418pt;}
.ws9a{word-spacing:1.859685pt;}
.wsc2{word-spacing:1.865011pt;}
.wsb8{word-spacing:1.912832pt;}
.ws61{word-spacing:2.072221pt;}
.ws4f{word-spacing:2.125355pt;}
.ws6b{word-spacing:2.178489pt;}
.ws6{word-spacing:2.231335pt;}
.ws6d{word-spacing:2.231622pt;}
.ws8f{word-spacing:2.284756pt;}
.ws7d{word-spacing:2.295398pt;}
.ws66{word-spacing:2.391024pt;}
.wsc8{word-spacing:2.438861pt;}
.wsbe{word-spacing:2.486682pt;}
.wsb0{word-spacing:2.497292pt;}
.ws7{word-spacing:2.550432pt;}
.ws30{word-spacing:2.603559pt;}
.ws8e{word-spacing:2.677965pt;}
.ws2b{word-spacing:2.709827pt;}
.ws22{word-spacing:2.762961pt;}
.ws82{word-spacing:2.773606pt;}
.wsd7{word-spacing:2.821427pt;}
.wsd4{word-spacing:2.860092pt;}
.wscc{word-spacing:2.861073pt;}
.wscd{word-spacing:2.866671pt;}
.ws60{word-spacing:2.869229pt;}
.wsb4{word-spacing:2.869248pt;}
.ws4b{word-spacing:2.922363pt;}
.ws96{word-spacing:2.975497pt;}
.wscf{word-spacing:3.060531pt;}
.wsdc{word-spacing:3.108352pt;}
.wsb7{word-spacing:3.132839pt;}
.ws58{word-spacing:3.188032pt;}
.wsa0{word-spacing:3.190167pt;}
.wsb9{word-spacing:3.212749pt;}
.ws8{word-spacing:3.286455pt;}
.ws6a{word-spacing:3.347434pt;}
.ws87{word-spacing:3.400567pt;}
.ws78{word-spacing:3.453701pt;}
.ws8a{word-spacing:3.555765pt;}
.ws6f{word-spacing:3.559969pt;}
.wsb1{word-spacing:3.634381pt;}
.ws80{word-spacing:3.666237pt;}
.wsb2{word-spacing:3.682202pt;}
.ws16{word-spacing:3.825638pt;}
.ws1b{word-spacing:3.825664pt;}
.wsd1{word-spacing:3.873485pt;}
.ws3b{word-spacing:3.878772pt;}
.ws3a{word-spacing:3.931906pt;}
.ws68{word-spacing:4.038174pt;}
.wsb5{word-spacing:4.064768pt;}
.ws13{word-spacing:4.144442pt;}
.ws5d{word-spacing:4.303843pt;}
.ws90{word-spacing:4.516379pt;}
.ws33{word-spacing:4.622646pt;}
.wsad{word-spacing:4.829901pt;}
.ws76{word-spacing:4.835182pt;}
.ws99{word-spacing:4.888316pt;}
.ws24{word-spacing:5.047717pt;}
.ws92{word-spacing:5.260253pt;}
.wsa7{word-spacing:5.419654pt;}
.ws2c{word-spacing:5.525922pt;}
.wsaf{word-spacing:5.685324pt;}
.ws4d{word-spacing:5.791591pt;}
.wsc7{word-spacing:5.929779pt;}
.ws6e{word-spacing:6.110395pt;}
.wsa4{word-spacing:6.216662pt;}
.wsac{word-spacing:6.312346pt;}
.ws85{word-spacing:6.429198pt;}
.ws88{word-spacing:6.451765pt;}
.ws98{word-spacing:6.482332pt;}
.ws97{word-spacing:6.535466pt;}
.ws94{word-spacing:6.588599pt;}
.ws7a{word-spacing:6.801135pt;}
.ws7c{word-spacing:7.125299pt;}
.ws9c{word-spacing:7.226206pt;}
.wsa5{word-spacing:7.984813pt;}
.ws89{word-spacing:8.350432pt;}
.ws72{word-spacing:9.160333pt;}
.ws70{word-spacing:9.161167pt;}
.ws73{word-spacing:9.163700pt;}
.wsdb{word-spacing:10.377114pt;}
.ws1e{word-spacing:10.582121pt;}
.wsc6{word-spacing:11.620454pt;}
.wsc3{word-spacing:11.898240pt;}
.wsc1{word-spacing:11.899964pt;}
.wsbd{word-spacing:11.900407pt;}
.wsbf{word-spacing:11.901850pt;}
.wsce{word-spacing:11.901969pt;}
.wsbc{word-spacing:11.905741pt;}
.wsc4{word-spacing:11.907183pt;}
.wsc0{word-spacing:11.907379pt;}
.ws45{word-spacing:13.230333pt;}
.wsca{word-spacing:13.963674pt;}
.wsd5{word-spacing:14.667149pt;}
.wsd8{word-spacing:14.728806pt;}
.wsd9{word-spacing:14.773222pt;}
.wsbb{word-spacing:14.776627pt;}
.wsd0{word-spacing:14.940269pt;}
.ws79{word-spacing:15.993294pt;}
.ws3e{word-spacing:16.418365pt;}
.ws7b{word-spacing:24.122775pt;}
.ws1{word-spacing:25.293814pt;}
.ws74{word-spacing:27.842146pt;}
.wscb{word-spacing:28.788122pt;}
.ws9d{word-spacing:102.680835pt;}
.wsa1{word-spacing:124.889562pt;}
.wsaa{word-spacing:256.504449pt;}
.wsa9{word-spacing:278.604971pt;}
.ws8c{word-spacing:447.702502pt;}
.wsa3{word-spacing:573.101886pt;}
._20{margin-left:-8.858539pt;}
._12{margin-left:-7.252717pt;}
._6{margin-left:-5.791591pt;}
._3{margin-left:-4.718299pt;}
._c{margin-left:-3.570591pt;}
._b{margin-left:-2.391039pt;}
._1{margin-left:-1.301776pt;}
._18{width:1.328347pt;}
._24{width:2.670271pt;}
._1b{width:3.931906pt;}
._1a{width:7.757402pt;}
._4{width:9.861670pt;}
._0{width:11.530016pt;}
._10{width:12.619282pt;}
._19{width:14.000785pt;}
._f{width:14.957180pt;}
._5{width:16.205829pt;}
._7{width:17.321641pt;}
._9{width:18.570283pt;}
._14{width:19.792362pt;}
._13{width:21.572365pt;}
._2{width:23.063232pt;}
._a{width:24.441579pt;}
._1d{width:25.663658pt;}
._17{width:26.859166pt;}
._8{width:28.718851pt;}
._11{width:29.754980pt;}
._15{width:31.960017pt;}
._1c{width:34.005787pt;}
._22{width:35.466852pt;}
._1e{width:36.671318pt;}
._16{width:38.256369pt;}
._27{width:43.405326pt;}
._28{width:49.207603pt;}
._25{width:54.993920pt;}
._26{width:56.332902pt;}
._23{width:78.904320pt;}
._21{width:344.690885pt;}
._d{width:1389.261218pt;}
._1f{width:2162.408000pt;}
._e{width:2183.661333pt;}
.fs9{font-size:31.880533pt;}
.fsa{font-size:33.219200pt;}
.fs0{font-size:37.193600pt;}
.fs5{font-size:40.381867pt;}
.fs4{font-size:42.077867pt;}
.fs3{font-size:42.507200pt;}
.fsb{font-size:44.292800pt;}
.fs8{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:55.365867pt;}
.fs7{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:40.818667pt;}
.y158{bottom:85.798667pt;}
.y111{bottom:87.232000pt;}
.y140{bottom:88.640000pt;}
.y13{bottom:89.120000pt;}
.y130{bottom:89.506667pt;}
.yf7{bottom:89.548000pt;}
.y88{bottom:89.778667pt;}
.y162{bottom:94.549333pt;}
.y40{bottom:99.158667pt;}
.y157{bottom:102.894667pt;}
.y1a6{bottom:102.926667pt;}
.y74{bottom:103.473333pt;}
.y17c{bottom:103.910667pt;}
.y110{bottom:104.328000pt;}
.y12{bottom:105.020000pt;}
.y12f{bottom:106.602667pt;}
.y1d9{bottom:106.605333pt;}
.y87{bottom:106.874667pt;}
.y13f{bottom:107.209333pt;}
.yf6{bottom:108.118667pt;}
.y161{bottom:113.120000pt;}
.y3f{bottom:117.729333pt;}
.y123{bottom:118.298667pt;}
.y11{bottom:120.920000pt;}
.y73{bottom:122.042667pt;}
.y17b{bottom:122.481333pt;}
.y1d8{bottom:123.628000pt;}
.y12e{bottom:123.698667pt;}
.y86{bottom:123.970667pt;}
.y13d{bottom:125.780000pt;}
.yf5{bottom:126.688000pt;}
.y1a5{bottom:128.229333pt;}
.y13e{bottom:130.602667pt;}
.y160{bottom:131.689333pt;}
.y3e{bottom:136.298667pt;}
.y10{bottom:136.821333pt;}
.y122{bottom:136.869333pt;}
.yd7{bottom:138.368000pt;}
.yb5{bottom:140.108000pt;}
.y72{bottom:140.613333pt;}
.y1d7{bottom:140.650667pt;}
.y17a{bottom:141.050667pt;}
.y85{bottom:141.066667pt;}
.y13c{bottom:144.350667pt;}
.yf4{bottom:145.258667pt;}
.y15f{bottom:150.260000pt;}
.yf{bottom:152.721333pt;}
.y1a4{bottom:153.532000pt;}
.y3d{bottom:154.869333pt;}
.y121{bottom:155.440000pt;}
.yd6{bottom:156.938667pt;}
.y1d6{bottom:157.673333pt;}
.yb4{bottom:158.678667pt;}
.y71{bottom:159.184000pt;}
.y179{bottom:159.621333pt;}
.yf3{bottom:163.829333pt;}
.ye{bottom:168.621333pt;}
.y15e{bottom:168.830667pt;}
.y1a3{bottom:170.864000pt;}
.y3c{bottom:173.440000pt;}
.y120{bottom:174.009333pt;}
.y1d5{bottom:174.696000pt;}
.yd5{bottom:175.509333pt;}
.y13b{bottom:175.901333pt;}
.yb3{bottom:177.249333pt;}
.y70{bottom:177.753333pt;}
.y178{bottom:178.192000pt;}
.yf2{bottom:182.398667pt;}
.yd{bottom:184.521333pt;}
.y1a2{bottom:188.196000pt;}
.y1d4{bottom:191.718667pt;}
.y3b{bottom:192.010667pt;}
.y11f{bottom:192.580000pt;}
.y13a{bottom:192.997333pt;}
.yd4{bottom:194.078667pt;}
.yb2{bottom:195.818667pt;}
.y6f{bottom:196.324000pt;}
.y177{bottom:196.761333pt;}
.yc{bottom:200.422667pt;}
.y15d{bottom:200.500000pt;}
.yf1{bottom:200.969333pt;}
.y1a1{bottom:205.528000pt;}
.y1d3{bottom:208.741333pt;}
.yd3{bottom:212.649333pt;}
.yb1{bottom:214.389333pt;}
.y3a{bottom:214.565333pt;}
.y6e{bottom:214.894667pt;}
.y176{bottom:215.332000pt;}
.y15c{bottom:217.596000pt;}
.yf0{bottom:219.540000pt;}
.y11e{bottom:224.249333pt;}
.yb{bottom:224.293333pt;}
.y1d2{bottom:225.764000pt;}
.y1a0{bottom:230.830667pt;}
.yd2{bottom:231.220000pt;}
.yb0{bottom:232.960000pt;}
.y6d{bottom:233.464000pt;}
.y15b{bottom:234.690667pt;}
.yef{bottom:238.109333pt;}
.ya{bottom:240.193333pt;}
.y11d{bottom:241.345333pt;}
.y1d1{bottom:242.786667pt;}
.y19f{bottom:248.162667pt;}
.yd1{bottom:249.789333pt;}
.yaf{bottom:251.529333pt;}
.y6c{bottom:252.034667pt;}
.y9{bottom:256.093333pt;}
.yee{bottom:256.680000pt;}
.y175{bottom:257.252000pt;}
.y11c{bottom:258.441333pt;}
.y1d0{bottom:259.809333pt;}
.y19e{bottom:265.494667pt;}
.yd0{bottom:268.360000pt;}
.yae{bottom:270.100000pt;}
.y6b{bottom:270.605333pt;}
.y8{bottom:271.994667pt;}
.yed{bottom:275.250667pt;}
.y174{bottom:276.546667pt;}
.y1cf{bottom:276.832000pt;}
.y19d{bottom:282.826667pt;}
.y39{bottom:283.408000pt;}
.ycf{bottom:286.930667pt;}
.y7{bottom:287.894667pt;}
.yad{bottom:288.670667pt;}
.y6a{bottom:289.176000pt;}
.yec{bottom:293.820000pt;}
.y1ce{bottom:293.854667pt;}
.y38{bottom:301.978667pt;}
.y173{bottom:303.257333pt;}
.y6{bottom:303.794667pt;}
.yce{bottom:305.500000pt;}
.yac{bottom:307.240000pt;}
.y69{bottom:307.745333pt;}
.y19c{bottom:308.129333pt;}
.y1cd{bottom:310.877333pt;}
.yeb{bottom:312.390667pt;}
.y5{bottom:319.696000pt;}
.y172{bottom:320.353333pt;}
.ycd{bottom:324.070667pt;}
.yab{bottom:325.810667pt;}
.y19b{bottom:325.926667pt;}
.y68{bottom:326.316000pt;}
.y1cc{bottom:327.900000pt;}
.yea{bottom:330.961333pt;}
.y37{bottom:336.489333pt;}
.y4{bottom:340.909333pt;}
.ycc{bottom:342.641333pt;}
.y19a{bottom:343.722667pt;}
.yaa{bottom:344.381333pt;}
.y67{bottom:344.886667pt;}
.y1cb{bottom:344.922667pt;}
.ye9{bottom:349.532000pt;}
.y171{bottom:353.336000pt;}
.y36{bottom:355.058667pt;}
.y3{bottom:356.809333pt;}
.ycb{bottom:361.212000pt;}
.y199{bottom:361.518667pt;}
.y1ca{bottom:361.945333pt;}
.ya9{bottom:362.952000pt;}
.y66{bottom:363.456000pt;}
.ye8{bottom:368.101333pt;}
.y170{bottom:371.905333pt;}
.y2{bottom:372.710667pt;}
.y35{bottom:373.629333pt;}
.y1c9{bottom:378.969333pt;}
.y198{bottom:379.316000pt;}
.yca{bottom:379.781333pt;}
.ya8{bottom:381.521333pt;}
.y65{bottom:382.026667pt;}
.ye7{bottom:386.672000pt;}
.y1{bottom:388.610667pt;}
.y34{bottom:392.200000pt;}
.y16f{bottom:392.886667pt;}
.y1c8{bottom:395.992000pt;}
.y197{bottom:397.112000pt;}
.yc9{bottom:398.352000pt;}
.y64{bottom:400.597333pt;}
.y16d{bottom:402.000000pt;}
.ya7{bottom:404.077333pt;}
.ye6{bottom:405.242667pt;}
.y33{bottom:410.769333pt;}
.y16e{bottom:410.853333pt;}
.y1c7{bottom:413.014667pt;}
.y196{bottom:414.908000pt;}
.yc8{bottom:416.922667pt;}
.y63{bottom:419.166667pt;}
.y156{bottom:422.646667pt;}
.ye5{bottom:423.812000pt;}
.y32{bottom:429.340000pt;}
.y1c6{bottom:430.037333pt;}
.y195{bottom:432.705333pt;}
.y16c{bottom:433.960000pt;}
.y10f{bottom:434.576000pt;}
.ya6{bottom:435.492000pt;}
.y62{bottom:437.737333pt;}
.y155{bottom:441.217333pt;}
.ye4{bottom:442.382667pt;}
.y1c5{bottom:447.060000pt;}
.y31{bottom:447.910667pt;}
.y194{bottom:450.501333pt;}
.y16b{bottom:452.529333pt;}
.y10e{bottom:453.145333pt;}
.ya5{bottom:454.062667pt;}
.y61{bottom:456.308000pt;}
.y154{bottom:459.788000pt;}
.ye3{bottom:460.953333pt;}
.y12d{bottom:462.249333pt;}
.y1c4{bottom:464.082667pt;}
.y2f{bottom:466.481333pt;}
.y193{bottom:468.297333pt;}
.y30{bottom:471.302667pt;}
.ya4{bottom:472.633333pt;}
.y60{bottom:474.877333pt;}
.y169{bottom:475.149333pt;}
.y16a{bottom:475.694667pt;}
.y10d{bottom:475.701333pt;}
.yc7{bottom:476.617333pt;}
.y153{bottom:478.357333pt;}
.y139{bottom:478.438667pt;}
.ye2{bottom:479.522667pt;}
.y12c{bottom:480.820000pt;}
.y1c3{bottom:481.105333pt;}
.y2e{bottom:485.050667pt;}
.y168{bottom:485.261333pt;}
.y192{bottom:486.094667pt;}
.ya3{bottom:491.202667pt;}
.y5f{bottom:493.448000pt;}
.y152{bottom:496.928000pt;}
.y138{bottom:497.008000pt;}
.ye1{bottom:498.093333pt;}
.y1c2{bottom:498.128000pt;}
.y12b{bottom:499.389333pt;}
.y2d{bottom:503.621333pt;}
.y10c{bottom:507.117333pt;}
.yc6{bottom:508.033333pt;}
.ya2{bottom:509.773333pt;}
.y5e{bottom:512.018667pt;}
.y1c1{bottom:515.150667pt;}
.y167{bottom:515.192000pt;}
.y151{bottom:515.498667pt;}
.y137{bottom:515.578667pt;}
.ye0{bottom:516.664000pt;}
.y12a{bottom:517.960000pt;}
.y191{bottom:519.830667pt;}
.y2c{bottom:522.192000pt;}
.y10b{bottom:525.686667pt;}
.yc5{bottom:526.604000pt;}
.ya1{bottom:528.344000pt;}
.y5d{bottom:530.589333pt;}
.y1c0{bottom:532.173333pt;}
.y1f2{bottom:532.574667pt;}
.y166{bottom:533.762667pt;}
.y150{bottom:534.069333pt;}
.ydf{bottom:535.233333pt;}
.y129{bottom:536.530667pt;}
.y190{bottom:538.401333pt;}
.y2a{bottom:540.761333pt;}
.y136{bottom:541.653333pt;}
.y10a{bottom:544.257333pt;}
.y84{bottom:544.657333pt;}
.yc4{bottom:545.173333pt;}
.y2b{bottom:545.584000pt;}
.ya0{bottom:546.913333pt;}
.y5c{bottom:549.158667pt;}
.y1bf{bottom:549.196000pt;}
.y1f1{bottom:549.597333pt;}
.y165{bottom:552.333333pt;}
.yde{bottom:553.804000pt;}
.y128{bottom:555.100000pt;}
.y14f{bottom:556.624000pt;}
.y18f{bottom:556.972000pt;}
.y29{bottom:559.332000pt;}
.y109{bottom:562.828000pt;}
.y83{bottom:563.228000pt;}
.yc3{bottom:563.744000pt;}
.y9f{bottom:565.484000pt;}
.y1be{bottom:566.218667pt;}
.y1f0{bottom:566.620000pt;}
.y5b{bottom:567.729333pt;}
.ydd{bottom:572.374667pt;}
.y127{bottom:573.670667pt;}
.y18e{bottom:575.541333pt;}
.y28{bottom:577.902667pt;}
.y108{bottom:581.397333pt;}
.y82{bottom:581.797333pt;}
.yc2{bottom:582.314667pt;}
.y1bd{bottom:583.241333pt;}
.y134{bottom:583.565333pt;}
.y135{bottom:583.873333pt;}
.y164{bottom:584.002667pt;}
.y9e{bottom:584.054667pt;}
.y5a{bottom:586.300000pt;}
.y14e{bottom:588.040000pt;}
.ydc{bottom:590.944000pt;}
.y18d{bottom:594.112000pt;}
.y27{bottom:596.472000pt;}
.y107{bottom:599.968000pt;}
.y1bc{bottom:600.264000pt;}
.y81{bottom:600.368000pt;}
.yc1{bottom:600.885333pt;}
.y163{bottom:601.098667pt;}
.y133{bottom:602.134667pt;}
.y9d{bottom:602.625333pt;}
.y59{bottom:604.869333pt;}
.y126{bottom:605.340000pt;}
.y14d{bottom:606.609333pt;}
.y18c{bottom:612.682667pt;}
.ydb{bottom:613.500000pt;}
.y25{bottom:615.042667pt;}
.y1bb{bottom:617.286667pt;}
.y106{bottom:618.538667pt;}
.y80{bottom:618.938667pt;}
.yc0{bottom:619.454667pt;}
.y26{bottom:619.865333pt;}
.y9c{bottom:621.194667pt;}
.y1ef{bottom:621.892000pt;}
.y125{bottom:622.436000pt;}
.y58{bottom:623.440000pt;}
.y11b{bottom:623.825333pt;}
.y14c{bottom:625.180000pt;}
.y18b{bottom:631.253333pt;}
.y23{bottom:633.613333pt;}
.y1ba{bottom:634.309333pt;}
.y105{bottom:637.108000pt;}
.y7f{bottom:637.508000pt;}
.ybf{bottom:638.025333pt;}
.y24{bottom:638.434667pt;}
.y1ee{bottom:638.914667pt;}
.y124{bottom:639.532000pt;}
.y9b{bottom:639.765333pt;}
.y57{bottom:642.010667pt;}
.yda{bottom:642.074667pt;}
.y11a{bottom:642.394667pt;}
.y14b{bottom:643.750667pt;}
.y18a{bottom:649.822667pt;}
.y1b9{bottom:651.332000pt;}
.y22{bottom:652.182667pt;}
.y104{bottom:655.678667pt;}
.y1ed{bottom:655.937333pt;}
.y7e{bottom:656.078667pt;}
.ybe{bottom:656.596000pt;}
.y132{bottom:657.846667pt;}
.y9a{bottom:658.336000pt;}
.yd9{bottom:659.169333pt;}
.y56{bottom:660.580000pt;}
.y119{bottom:660.965333pt;}
.y149{bottom:662.320000pt;}
.y14a{bottom:667.142667pt;}
.y1b8{bottom:668.354667pt;}
.y189{bottom:668.393333pt;}
.y21{bottom:670.753333pt;}
.y1ec{bottom:672.961333pt;}
.y103{bottom:674.249333pt;}
.y7c{bottom:674.649333pt;}
.ybd{bottom:675.165333pt;}
.yd8{bottom:676.265333pt;}
.y131{bottom:676.724000pt;}
.y99{bottom:676.905333pt;}
.y55{bottom:679.150667pt;}
.y7d{bottom:679.470667pt;}
.y118{bottom:679.536000pt;}
.y148{bottom:680.890667pt;}
.y1b7{bottom:685.377333pt;}
.y188{bottom:686.964000pt;}
.y20{bottom:689.324000pt;}
.y1eb{bottom:689.984000pt;}
.y102{bottom:692.818667pt;}
.y7b{bottom:693.218667pt;}
.ybc{bottom:693.736000pt;}
.y98{bottom:695.476000pt;}
.y54{bottom:697.721333pt;}
.y117{bottom:698.105333pt;}
.y147{bottom:699.461333pt;}
.y1b6{bottom:702.400000pt;}
.y187{bottom:705.533333pt;}
.y1ea{bottom:707.006667pt;}
.y1f{bottom:707.894667pt;}
.y101{bottom:711.389333pt;}
.y7a{bottom:711.789333pt;}
.ybb{bottom:712.306667pt;}
.y97{bottom:714.046667pt;}
.y53{bottom:716.290667pt;}
.y116{bottom:716.676000pt;}
.y146{bottom:718.030667pt;}
.y1b5{bottom:719.424000pt;}
.y15a{bottom:722.853333pt;}
.y1e9{bottom:724.029333pt;}
.y185{bottom:724.104000pt;}
.y1e{bottom:726.464000pt;}
.y79{bottom:727.933333pt;}
.y186{bottom:728.925333pt;}
.y100{bottom:729.960000pt;}
.y78{bottom:730.360000pt;}
.yba{bottom:730.876000pt;}
.y96{bottom:732.616000pt;}
.y52{bottom:734.861333pt;}
.y1b4{bottom:736.446667pt;}
.y145{bottom:736.601333pt;}
.y115{bottom:739.232000pt;}
.y1e8{bottom:741.052000pt;}
.y184{bottom:742.674667pt;}
.y1d{bottom:745.034667pt;}
.yff{bottom:748.530667pt;}
.y77{bottom:748.929333pt;}
.yb9{bottom:749.446667pt;}
.y95{bottom:751.186667pt;}
.y51{bottom:753.432000pt;}
.y1b3{bottom:753.469333pt;}
.y144{bottom:755.172000pt;}
.y1e7{bottom:758.074667pt;}
.y183{bottom:761.244000pt;}
.y1c{bottom:763.605333pt;}
.yfe{bottom:767.100000pt;}
.yb8{bottom:768.017333pt;}
.y94{bottom:769.757333pt;}
.y1b2{bottom:770.492000pt;}
.y114{bottom:770.646667pt;}
.y76{bottom:771.485333pt;}
.y50{bottom:772.002667pt;}
.y143{bottom:773.742667pt;}
.y1e6{bottom:775.097333pt;}
.y181{bottom:779.814667pt;}
.y1b{bottom:782.174667pt;}
.y182{bottom:784.636000pt;}
.yfd{bottom:785.670667pt;}
.yb7{bottom:786.586667pt;}
.y1b1{bottom:787.514667pt;}
.y113{bottom:789.217333pt;}
.y4f{bottom:790.572000pt;}
.y1e5{bottom:792.120000pt;}
.y93{bottom:792.312000pt;}
.y75{bottom:793.202667pt;}
.y180{bottom:798.385333pt;}
.y1b0{bottom:804.537333pt;}
.yb6{bottom:805.157333pt;}
.y4e{bottom:809.142667pt;}
.yfc{bottom:810.882667pt;}
.y112{bottom:811.772000pt;}
.y1a{bottom:817.748000pt;}
.y17f{bottom:820.940000pt;}
.y1af{bottom:821.560000pt;}
.y92{bottom:823.728000pt;}
.y1e4{bottom:826.165333pt;}
.y4d{bottom:827.713333pt;}
.yfb{bottom:829.453333pt;}
.y19{bottom:832.094667pt;}
.y1ae{bottom:838.582667pt;}
.y91{bottom:842.297333pt;}
.y1e3{bottom:843.188000pt;}
.y4c{bottom:846.282667pt;}
.y18{bottom:846.441333pt;}
.yfa{bottom:848.022667pt;}
.y142{bottom:852.008000pt;}
.y17e{bottom:852.609333pt;}
.y1ad{bottom:855.605333pt;}
.y1e2{bottom:860.210667pt;}
.y90{bottom:860.868000pt;}
.y4b{bottom:864.853333pt;}
.yf9{bottom:866.593333pt;}
.y17d{bottom:869.705333pt;}
.y159{bottom:870.578667pt;}
.y1ac{bottom:872.628000pt;}
.y1e1{bottom:877.233333pt;}
.y8f{bottom:879.438667pt;}
.y4a{bottom:883.424000pt;}
.yf8{bottom:889.148000pt;}
.y17{bottom:890.010667pt;}
.y1ab{bottom:893.636000pt;}
.y1e0{bottom:894.256000pt;}
.y8e{bottom:898.009333pt;}
.y49{bottom:901.993333pt;}
.y141{bottom:906.816000pt;}
.y1df{bottom:911.278667pt;}
.y8d{bottom:916.578667pt;}
.y48{bottom:920.564000pt;}
.y16{bottom:924.521333pt;}
.y1aa{bottom:928.146667pt;}
.y1de{bottom:928.301333pt;}
.y8c{bottom:935.149333pt;}
.y47{bottom:939.134667pt;}
.y1dd{bottom:945.324000pt;}
.y15{bottom:952.377333pt;}
.y1a9{bottom:953.448000pt;}
.y8b{bottom:953.720000pt;}
.y46{bottom:957.704000pt;}
.y1dc{bottom:962.346667pt;}
.y1a8{bottom:970.781333pt;}
.y8a{bottom:972.289333pt;}
.y45{bottom:976.274667pt;}
.y1db{bottom:979.369333pt;}
.y14{bottom:980.232000pt;}
.y1a7{bottom:988.113333pt;}
.y89{bottom:990.860000pt;}
.y44{bottom:994.845333pt;}
.y1da{bottom:996.392000pt;}
.y43{bottom:1013.414667pt;}
.y42{bottom:1066.841333pt;}
.h9{height:24.760382pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.hf{height:28.023859pt;}
.ha{height:29.397999pt;}
.h7{height:30.945242pt;}
.hd{height:31.157778pt;}
.h19{height:34.527317pt;}
.h10{height:34.813542pt;}
.h1b{height:35.052646pt;}
.hb{height:36.873667pt;}
.h11{height:36.928037pt;}
.h1a{height:37.545028pt;}
.h6{height:38.256384pt;}
.h8{height:38.681455pt;}
.h4{height:38.947124pt;}
.h14{height:41.524400pt;}
.h18{height:42.079067pt;}
.h1c{height:44.431607pt;}
.hc{height:45.907968pt;}
.he{height:46.580334pt;}
.h13{height:47.812334pt;}
.h12{height:48.688666pt;}
.h15{height:64.298575pt;}
.h5{height:68.861952pt;}
.h17{height:76.948122pt;}
.h16{height:104.266575pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x88{left:76.158667pt;}
.x54{left:220.005333pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.x7{left:250.365333pt;}
.x85{left:259.521333pt;}
.x86{left:266.272000pt;}
.x8{left:267.696000pt;}
.x9{left:273.498667pt;}
.x30{left:287.948000pt;}
.xa{left:290.829333pt;}
.x5c{left:295.437333pt;}
.x31{left:300.566667pt;}
.x32{left:303.616000pt;}
.x6b{left:307.512000pt;}
.x5d{left:308.721333pt;}
.x5e{left:312.085333pt;}
.x36{left:313.594667pt;}
.x33{left:316.234667pt;}
.x6c{left:321.800000pt;}
.x5f{left:325.368000pt;}
.x83{left:327.673333pt;}
.x53{left:330.168000pt;}
.x6d{left:335.476000pt;}
.x87{left:339.650667pt;}
.x60{left:340.830667pt;}
.x68{left:347.792000pt;}
.x46{left:353.722667pt;}
.x20{left:355.633333pt;}
.x34{left:358.988000pt;}
.x21{left:361.942667pt;}
.x61{left:364.986667pt;}
.x22{left:368.125333pt;}
.x35{left:371.608000pt;}
.x6e{left:372.741333pt;}
.x23{left:374.436000pt;}
.x37{left:377.606667pt;}
.x57{left:380.312000pt;}
.x7e{left:382.614667pt;}
.x77{left:384.113333pt;}
.x47{left:387.745333pt;}
.x38{left:390.225333pt;}
.x42{left:393.493333pt;}
.x78{left:397.397333pt;}
.x43{left:406.112000pt;}
.x80{left:407.013333pt;}
.x44{left:409.161333pt;}
.x11{left:410.398667pt;}
.x48{left:412.032000pt;}
.x49{left:417.744000pt;}
.x45{left:421.780000pt;}
.x12{left:423.916000pt;}
.x7f{left:425.762667pt;}
.x13{left:437.060000pt;}
.x3b{left:450.760000pt;}
.x14{left:453.668000pt;}
.x4{left:458.872000pt;}
.x2f{left:464.162667pt;}
.x5{left:467.077333pt;}
.x24{left:474.257333pt;}
.x15{left:475.922667pt;}
.x2d{left:477.465333pt;}
.x25{left:480.504000pt;}
.x26{left:486.813333pt;}
.x2e{left:489.978667pt;}
.x82{left:492.016000pt;}
.x4c{left:494.244000pt;}
.x4d{left:504.225333pt;}
.x4e{left:510.276000pt;}
.x64{left:513.598667pt;}
.x81{left:516.141333pt;}
.x16{left:519.585333pt;}
.x6f{left:521.014667pt;}
.x70{left:526.705333pt;}
.x17{left:533.102667pt;}
.x71{left:540.720000pt;}
.x84{left:543.876000pt;}
.x18{left:546.246667pt;}
.x65{left:547.708000pt;}
.x4a{left:556.370667pt;}
.x19{left:562.854667pt;}
.x1a{left:568.500000pt;}
.x72{left:574.233333pt;}
.x66{left:578.342667pt;}
.x41{left:579.425333pt;}
.x1b{left:582.516000pt;}
.x67{left:584.054667pt;}
.x1e{left:586.413333pt;}
.x73{left:587.516000pt;}
.xb{left:591.513333pt;}
.x1f{left:593.054667pt;}
.x4b{left:600.545333pt;}
.x3c{left:604.346667pt;}
.xc{left:605.765333pt;}
.x7b{left:613.450667pt;}
.x3d{left:616.965333pt;}
.xd{left:619.281333pt;}
.x7c{left:626.734667pt;}
.x4f{left:629.489333pt;}
.x3e{left:632.633333pt;}
.xe{left:636.622667pt;}
.x27{left:639.520000pt;}
.xf{left:642.425333pt;}
.x50{left:643.425333pt;}
.x28{left:645.829333pt;}
.x75{left:648.706667pt;}
.x10{left:656.441333pt;}
.x62{left:658.242667pt;}
.x1c{left:660.177333pt;}
.x76{left:661.990667pt;}
.x55{left:668.070667pt;}
.x74{left:672.288000pt;}
.x7d{left:676.041333pt;}
.x29{left:678.968000pt;}
.x56{left:681.353333pt;}
.x2a{left:685.277333pt;}
.x51{left:686.398667pt;}
.x63{left:689.688000pt;}
.x58{left:692.193333pt;}
.x59{left:695.377333pt;}
.x52{left:700.336000pt;}
.x2b{left:701.532000pt;}
.x5b{left:705.585333pt;}
.x79{left:706.738667pt;}
.x5a{left:708.262667pt;}
.x3f{left:712.901333pt;}
.x2c{left:714.152000pt;}
.x7a{left:724.088000pt;}
.x40{left:725.521333pt;}
.x39{left:727.845333pt;}
.x69{left:729.958667pt;}
.x6{left:732.190667pt;}
.x3a{left:740.465333pt;}
.x6a{left:743.973333pt;}
.x1d{left:745.762667pt;}
}




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