
    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_a1d620c635fb4fc2273fd2a9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f96553f14bf202f6fa334f4a.woff')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_5664a24f39dd6a43ee2d92f6.woff')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_4bbdb315e530f68cab7a7013.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_bbd50f09f45cfbb9a5a2aad2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.580000;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_f7e697baddc90814efc4e6bb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.234000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_28fa80cf375deb01cb969350.woff')format("woff");}.ff7{font-family:ff7;line-height:0.773000;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_bfccc23b08c0151700aa1e06.woff')format("woff");}.ff8{font-family:ff8;line-height:0.688000;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_c5d5ddf77d59518bf2e97938.woff')format("woff");}.ff9{font-family:ff9;line-height:0.723000;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;}
.m4{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);}
.m10{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m13{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m21{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);}
.m9{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);}
.m25{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);}
.md{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);}
.me{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);}
.mb{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);}
.m6{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m19{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);}
.m5{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m20{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);}
.m1b{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);}
.m24{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);}
.mf{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);}
.m7{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);}
.m26{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);}
.m3{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);}
.m18{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);}
.m27{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.ma{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);}
.m1{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);}
.m1d{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);}
.m1e{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);}
.m1c{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);}
.m16{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.696000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.ls21{letter-spacing:1.443582px;}
.ls10{letter-spacing:1.494390px;}
.ls24{letter-spacing:2.543454px;}
.ls0{letter-spacing:2.988780px;}
.ls11{letter-spacing:4.958138px;}
.lsf{letter-spacing:14.943900px;}
.ls6{letter-spacing:15.191982px;}
.ls5{letter-spacing:15.260724px;}
.ls23{letter-spacing:16.016886px;}
.ls18{letter-spacing:16.360596px;}
.ls1b{letter-spacing:16.773048px;}
.lse{letter-spacing:16.841790px;}
.ls1e{letter-spacing:16.910532px;}
.ls13{letter-spacing:16.979274px;}
.ls22{letter-spacing:17.048016px;}
.ls14{letter-spacing:17.185500px;}
.ls16{letter-spacing:17.322984px;}
.ls15{letter-spacing:17.391726px;}
.ls17{letter-spacing:17.529210px;}
.ls1c{letter-spacing:17.597952px;}
.ls19{letter-spacing:19.522728px;}
.lsb{letter-spacing:19.660212px;}
.lsa{letter-spacing:19.728954px;}
.ls1f{letter-spacing:20.072664px;}
.ls8{letter-spacing:20.760084px;}
.ls9{letter-spacing:20.828826px;}
.lsd{letter-spacing:21.310020px;}
.lsc{letter-spacing:21.378762px;}
.ls1d{letter-spacing:21.791214px;}
.ls7{letter-spacing:22.409892px;}
.ls20{letter-spacing:24.265926px;}
.ls1a{letter-spacing:26.465670px;}
.ls2{letter-spacing:957.795000px;}
.ls4{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.ls12{letter-spacing:961.811100px;}
.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;}
}
.ws115{word-spacing:-17.185500px;}
.wsb5{word-spacing:-14.943900px;}
.ws117{word-spacing:-6.461748px;}
.ws11a{word-spacing:-4.262004px;}
.wsdf{word-spacing:-3.643326px;}
.ws43{word-spacing:-3.574584px;}
.ws114{word-spacing:-3.505842px;}
.ws27{word-spacing:-3.437100px;}
.ws11e{word-spacing:-3.368358px;}
.ws82{word-spacing:-3.299616px;}
.ws46{word-spacing:-3.230874px;}
.wsb4{word-spacing:-3.168107px;}
.ws89{word-spacing:-3.162132px;}
.ws48{word-spacing:-3.093390px;}
.wsb9{word-spacing:-3.048556px;}
.ws76{word-spacing:-3.024648px;}
.ws12{word-spacing:-2.988780px;}
.ws11c{word-spacing:-2.955906px;}
.ws3e{word-spacing:-2.887164px;}
.wsa6{word-spacing:-2.818422px;}
.ws10b{word-spacing:-2.749680px;}
.wsfe{word-spacing:-2.680938px;}
.ws2b{word-spacing:-2.612196px;}
.ws54{word-spacing:-2.543454px;}
.ws98{word-spacing:-2.474712px;}
.ws9c{word-spacing:-2.405970px;}
.wsa2{word-spacing:-2.337228px;}
.wsb{word-spacing:-2.331248px;}
.wsa1{word-spacing:-2.268486px;}
.wsce{word-spacing:-2.199744px;}
.wsc1{word-spacing:-2.062260px;}
.ws109{word-spacing:-1.993518px;}
.ws66{word-spacing:-1.924776px;}
.ws2d{word-spacing:-1.856034px;}
.wsbe{word-spacing:-1.787292px;}
.wse{word-spacing:-1.733492px;}
.ws8c{word-spacing:-1.718550px;}
.ws106{word-spacing:-1.613941px;}
.ws59{word-spacing:-1.581066px;}
.ws3a{word-spacing:-1.512324px;}
.ws47{word-spacing:-1.443582px;}
.ws11b{word-spacing:-1.374840px;}
.wsc0{word-spacing:-1.306098px;}
.ws63{word-spacing:-1.237356px;}
.ws9b{word-spacing:-1.168614px;}
.wsc2{word-spacing:-1.099872px;}
.ws5a{word-spacing:-1.031130px;}
.ws6e{word-spacing:-0.962388px;}
.ws116{word-spacing:-0.893646px;}
.wsff{word-spacing:-0.824904px;}
.ws2e{word-spacing:-0.756162px;}
.wsc6{word-spacing:-0.687420px;}
.ws53{word-spacing:-0.618678px;}
.ws75{word-spacing:-0.549936px;}
.ws6a{word-spacing:-0.481194px;}
.ws1d{word-spacing:-0.412452px;}
.ws42{word-spacing:-0.343710px;}
.ws17{word-spacing:-0.274968px;}
.wsf{word-spacing:-0.239102px;}
.ws26{word-spacing:-0.206226px;}
.ws4{word-spacing:-0.179327px;}
.ws21{word-spacing:-0.137484px;}
.wsa{word-spacing:-0.119551px;}
.wseb{word-spacing:-0.107597px;}
.ws44{word-spacing:-0.068742px;}
.ws1{word-spacing:-0.047821px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:0.059776px;}
.ws1c{word-spacing:0.068742px;}
.ws13{word-spacing:0.107597px;}
.wsc{word-spacing:0.119551px;}
.ws32{word-spacing:0.137484px;}
.ws16{word-spacing:0.206226px;}
.wsb6{word-spacing:0.239102px;}
.ws1f{word-spacing:0.274968px;}
.ws2a{word-spacing:0.343710px;}
.ws24{word-spacing:0.412452px;}
.ws56{word-spacing:0.481194px;}
.ws36{word-spacing:0.549936px;}
.ws79{word-spacing:0.618678px;}
.ws58{word-spacing:0.687420px;}
.ws39{word-spacing:0.756162px;}
.wsb0{word-spacing:0.824904px;}
.ws3f{word-spacing:0.893646px;}
.wsa5{word-spacing:0.962388px;}
.ws2f{word-spacing:1.031130px;}
.ws8{word-spacing:1.075961px;}
.ws22{word-spacing:1.099872px;}
.ws8f{word-spacing:1.168614px;}
.ws71{word-spacing:1.237356px;}
.wsd0{word-spacing:1.306098px;}
.ws1b{word-spacing:1.374840px;}
.ws6f{word-spacing:1.443582px;}
.ws7c{word-spacing:1.512324px;}
.ws15{word-spacing:1.581066px;}
.ws57{word-spacing:1.649808px;}
.wsa8{word-spacing:1.718550px;}
.ws45{word-spacing:1.787292px;}
.ws9{word-spacing:1.793268px;}
.ws69{word-spacing:1.856034px;}
.wsfb{word-spacing:1.924776px;}
.ws62{word-spacing:1.993518px;}
.ws5e{word-spacing:2.062260px;}
.wsba{word-spacing:2.092146px;}
.wsa0{word-spacing:2.131002px;}
.wsa4{word-spacing:2.199744px;}
.ws68{word-spacing:2.268486px;}
.wsa7{word-spacing:2.337228px;}
.ws10{word-spacing:2.391024px;}
.ws61{word-spacing:2.405970px;}
.wsbb{word-spacing:2.474712px;}
.wsc5{word-spacing:2.543454px;}
.ws5{word-spacing:2.570351px;}
.ws4c{word-spacing:2.612196px;}
.wsa3{word-spacing:2.680938px;}
.ws9d{word-spacing:2.749680px;}
.ws2c{word-spacing:2.818422px;}
.ws6c{word-spacing:2.887164px;}
.ws91{word-spacing:2.955906px;}
.ws23{word-spacing:3.024648px;}
.ws37{word-spacing:3.093390px;}
.ws96{word-spacing:3.162132px;}
.wse7{word-spacing:3.227882px;}
.ws6d{word-spacing:3.230874px;}
.ws34{word-spacing:3.299616px;}
.ws85{word-spacing:3.368358px;}
.ws7e{word-spacing:3.437100px;}
.wsf5{word-spacing:3.443098px;}
.ws70{word-spacing:3.505842px;}
.wsf9{word-spacing:3.574584px;}
.ws5f{word-spacing:3.643326px;}
.ws81{word-spacing:3.712068px;}
.wsee{word-spacing:3.780810px;}
.ws7f{word-spacing:3.849552px;}
.wscc{word-spacing:3.918294px;}
.ws35{word-spacing:4.055778px;}
.ws8b{word-spacing:4.124520px;}
.ws51{word-spacing:4.193262px;}
.ws100{word-spacing:4.262004px;}
.ws1a{word-spacing:4.330746px;}
.ws4e{word-spacing:4.399488px;}
.ws7b{word-spacing:4.468230px;}
.ws8e{word-spacing:4.536972px;}
.wscb{word-spacing:4.605714px;}
.ws20{word-spacing:4.674456px;}
.ws31{word-spacing:4.743198px;}
.ws11{word-spacing:4.782048px;}
.ws65{word-spacing:4.811940px;}
.ws3b{word-spacing:4.880682px;}
.ws4d{word-spacing:4.949424px;}
.ws50{word-spacing:5.018166px;}
.wsc8{word-spacing:5.086908px;}
.ws6{word-spacing:5.140702px;}
.ws80{word-spacing:5.155650px;}
.ws6b{word-spacing:5.224392px;}
.ws7d{word-spacing:5.293134px;}
.wsbf{word-spacing:5.361876px;}
.ws107{word-spacing:5.430618px;}
.wsb3{word-spacing:5.499355px;}
.ws8d{word-spacing:5.499360px;}
.ws1e{word-spacing:5.568102px;}
.ws10a{word-spacing:5.636844px;}
.ws4b{word-spacing:5.705586px;}
.ws99{word-spacing:5.774328px;}
.ws60{word-spacing:5.843070px;}
.ws4f{word-spacing:5.911812px;}
.ws19{word-spacing:5.980554px;}
.wsfa{word-spacing:6.049296px;}
.ws29{word-spacing:6.118038px;}
.wsb8{word-spacing:6.186780px;}
.wsd5{word-spacing:6.255522px;}
.ws72{word-spacing:6.393006px;}
.wsf0{word-spacing:6.461748px;}
.wsef{word-spacing:6.530490px;}
.ws84{word-spacing:6.599232px;}
.ws5b{word-spacing:6.667974px;}
.ws95{word-spacing:6.736716px;}
.wsc9{word-spacing:6.805458px;}
.ws4a{word-spacing:6.874200px;}
.wse0{word-spacing:6.939994px;}
.ws64{word-spacing:6.942942px;}
.ws7{word-spacing:6.993745px;}
.ws3c{word-spacing:7.011684px;}
.wsb2{word-spacing:7.080426px;}
.ws5c{word-spacing:7.149168px;}
.wsd1{word-spacing:7.217910px;}
.ws40{word-spacing:7.286652px;}
.wse6{word-spacing:7.355394px;}
.ws73{word-spacing:7.492878px;}
.ws118{word-spacing:7.558500px;}
.ws55{word-spacing:7.561620px;}
.ws7a{word-spacing:7.630362px;}
.ws30{word-spacing:7.699104px;}
.wsc7{word-spacing:7.836588px;}
.ws49{word-spacing:7.905330px;}
.ws8a{word-spacing:7.974072px;}
.wscd{word-spacing:8.042814px;}
.ws78{word-spacing:8.111556px;}
.wsfc{word-spacing:8.180298px;}
.ws9a{word-spacing:8.249040px;}
.ws88{word-spacing:8.317782px;}
.ws3d{word-spacing:8.386524px;}
.ws10e{word-spacing:8.455266px;}
.ws11d{word-spacing:8.524008px;}
.ws112{word-spacing:8.592750px;}
.ws83{word-spacing:8.661492px;}
.wscf{word-spacing:8.730234px;}
.ws33{word-spacing:8.798976px;}
.wsd8{word-spacing:8.867718px;}
.wsae{word-spacing:8.906564px;}
.wsca{word-spacing:8.936460px;}
.ws5d{word-spacing:9.005202px;}
.ws38{word-spacing:9.073944px;}
.wsde{word-spacing:9.142686px;}
.ws25{word-spacing:9.211428px;}
.wsfd{word-spacing:9.280170px;}
.ws52{word-spacing:9.348912px;}
.ws28{word-spacing:9.417654px;}
.wsd3{word-spacing:9.486396px;}
.wse2{word-spacing:9.555138px;}
.ws87{word-spacing:9.623880px;}
.ws74{word-spacing:9.692622px;}
.wsd9{word-spacing:9.761364px;}
.ws94{word-spacing:9.830106px;}
.wse5{word-spacing:9.898848px;}
.ws10f{word-spacing:9.967590px;}
.ws108{word-spacing:10.036332px;}
.ws111{word-spacing:10.173816px;}
.ws113{word-spacing:10.242558px;}
.ws101{word-spacing:10.380042px;}
.wsf1{word-spacing:10.436890px;}
.wsc4{word-spacing:10.448784px;}
.wse4{word-spacing:10.517526px;}
.wsd7{word-spacing:10.586268px;}
.wsd4{word-spacing:10.655010px;}
.ws18{word-spacing:10.723752px;}
.ws41{word-spacing:10.929978px;}
.ws90{word-spacing:10.998720px;}
.ws9e{word-spacing:11.136204px;}
.ws77{word-spacing:11.479914px;}
.wsc3{word-spacing:11.617398px;}
.wsdb{word-spacing:11.823624px;}
.ws67{word-spacing:12.236076px;}
.wsac{word-spacing:12.717270px;}
.ws97{word-spacing:12.786012px;}
.ws10c{word-spacing:13.198464px;}
.wsb1{word-spacing:13.404690px;}
.ws86{word-spacing:13.473432px;}
.ws9f{word-spacing:13.679658px;}
.wse3{word-spacing:13.954626px;}
.wsab{word-spacing:14.160852px;}
.wse9{word-spacing:14.779530px;}
.wsad{word-spacing:14.884124px;}
.wsbc{word-spacing:15.054498px;}
.wsea{word-spacing:16.704306px;}
.ws110{word-spacing:16.773048px;}
.ws0{word-spacing:16.880672px;}
.wsf7{word-spacing:17.185500px;}
.wsaf{word-spacing:17.454475px;}
.ws3{word-spacing:18.291334px;}
.wsbd{word-spacing:18.560340px;}
.wsb7{word-spacing:19.247760px;}
.wsd6{word-spacing:19.349392px;}
.wsdd{word-spacing:21.584988px;}
.wsf8{word-spacing:28.734156px;}
.wse1{word-spacing:33.683580px;}
.wsda{word-spacing:35.952066px;}
.wsed{word-spacing:40.420296px;}
.wsaa{word-spacing:46.194624px;}
.wsa9{word-spacing:46.263366px;}
.ws92{word-spacing:50.181660px;}
.ws10d{word-spacing:50.319144px;}
.ws93{word-spacing:66.542256px;}
.wsf2{word-spacing:71.670944px;}
.wsf3{word-spacing:76.931197px;}
.ws14{word-spacing:77.630692px;}
.wsf4{word-spacing:81.952348px;}
.wsf6{word-spacing:91.875097px;}
.wsec{word-spacing:498.767606px;}
.ws102{word-spacing:719.638448px;}
.ws103{word-spacing:772.539854px;}
.ws104{word-spacing:917.017480px;}
.ws105{word-spacing:935.249038px;}
.ws119{word-spacing:940.539258px;}
.wsd2{word-spacing:943.119258px;}
.wsdc{word-spacing:1593.258842px;}
.wse8{word-spacing:1892.734598px;}
._60{margin-left:-9.692622px;}
._20{margin-left:-7.767846px;}
._25{margin-left:-6.635092px;}
._3{margin-left:-5.627284px;}
._5{margin-left:-4.389917px;}
._2a{margin-left:-3.162132px;}
._1{margin-left:-2.065848px;}
._10{margin-left:-1.031130px;}
._0{width:1.386797px;}
._5c{width:2.615784px;}
._5d{width:3.975079px;}
._5e{width:5.862212px;}
._61{width:8.936460px;}
._5f{width:12.684406px;}
._c{width:13.987490px;}
._9{width:16.027040px;}
._a{width:17.375581px;}
._8{width:18.418064px;}
._e{width:19.716606px;}
._4{width:21.519216px;}
._12{width:23.097312px;}
._7{width:24.276073px;}
._b{width:25.411810px;}
._16{width:27.143519px;}
._1b{width:28.875228px;}
._18{width:29.902770px;}
._2{width:31.710767px;}
._f{width:32.851112px;}
._6{width:34.550297px;}
._14{width:36.708228px;}
._2b{width:38.017914px;}
._11{width:39.870360px;}
._1c{width:40.970232px;}
._17{width:42.551298px;}
._1a{width:43.582428px;}
._1e{width:44.823372px;}
._5a{width:45.854502px;}
._1d{width:46.882044px;}
._2f{width:47.916762px;}
._13{width:49.566570px;}
._21{width:50.597700px;}
._5b{width:51.693984px;}
._56{width:52.931340px;}
._15{width:54.031212px;}
._d{width:59.775600px;}
._59{width:61.592832px;}
._2d{width:64.479996px;}
._19{width:67.367160px;}
._2c{width:68.398290px;}
._29{width:70.116840px;}
._22{width:71.730720px;}
._2e{width:77.708400px;}
._1f{width:83.727756px;}
._3a{width:100.781662px;}
._3d{width:119.067020px;}
._32{width:120.746712px;}
._3c{width:129.832603px;}
._24{width:131.506320px;}
._41{width:141.283220px;}
._4a{width:147.406630px;}
._51{width:150.583114px;}
._4d{width:152.368004px;}
._55{width:162.350530px;}
._4c{width:174.186098px;}
._49{width:184.168624px;}
._50{width:256.769680px;}
._53{width:258.947899px;}
._35{width:266.001420px;}
._57{width:374.859967px;}
._31{width:424.986595px;}
._58{width:433.015651px;}
._44{width:453.935906px;}
._3e{width:494.583314px;}
._46{width:536.127356px;}
._4f{width:583.914359px;}
._3f{width:604.211765px;}
._40{width:636.245512px;}
._52{width:708.972094px;}
._39{width:712.704479px;}
._26{width:725.649486px;}
._27{width:728.937144px;}
._54{width:735.726462px;}
._28{width:748.842419px;}
._37{width:758.321639px;}
._38{width:769.103365px;}
._23{width:791.608271px;}
._33{width:830.516212px;}
._36{width:938.928827px;}
._34{width:940.329964px;}
._4b{width:1036.158628px;}
._4e{width:1042.733944px;}
._43{width:1061.674432px;}
._48{width:1070.341894px;}
._45{width:1074.101782px;}
._42{width:1098.026374px;}
._47{width:1346.804044px;}
._30{width:1502.220604px;}
._3b{width:1586.444424px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs6{font-size:44.233800px;}
.fs0{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y53{bottom:41.308500px;}
.y7d{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.y1ca{bottom:89.719500px;}
.y69{bottom:90.213000px;}
.y52{bottom:90.733500px;}
.y7b{bottom:91.227000px;}
.y1a5{bottom:91.524000px;}
.y111{bottom:95.458500px;}
.y25{bottom:96.391500px;}
.y135{bottom:97.471500px;}
.yec{bottom:99.448500px;}
.yf5{bottom:100.462500px;}
.y152{bottom:100.819500px;}
.yc7{bottom:103.831500px;}
.y1dd{bottom:104.295000px;}
.ye3{bottom:104.845500px;}
.y197{bottom:106.941000px;}
.y1c9{bottom:112.516500px;}
.y68{bottom:113.010000px;}
.y51{bottom:113.530500px;}
.y7a{bottom:114.024000px;}
.y1a4{bottom:114.321000px;}
.y110{bottom:118.255500px;}
.y24{bottom:119.188500px;}
.y134{bottom:120.268500px;}
.yeb{bottom:122.245500px;}
.yf4{bottom:123.259500px;}
.y151{bottom:123.616500px;}
.yc6{bottom:126.630000px;}
.y1dc{bottom:127.092000px;}
.ye2{bottom:127.642500px;}
.y196{bottom:129.739500px;}
.y1c8{bottom:135.313500px;}
.y67{bottom:135.807000px;}
.y50{bottom:136.327500px;}
.y79{bottom:136.821000px;}
.y1a3{bottom:137.118000px;}
.y10f{bottom:141.052500px;}
.y23{bottom:141.987000px;}
.ya3{bottom:142.603500px;}
.y133{bottom:143.065500px;}
.yea{bottom:145.042500px;}
.yf3{bottom:146.056500px;}
.y150{bottom:146.413500px;}
.yc5{bottom:149.427000px;}
.y1db{bottom:149.889000px;}
.ye1{bottom:150.441000px;}
.y195{bottom:152.536500px;}
.y176{bottom:152.695500px;}
.y1c7{bottom:158.110500px;}
.y66{bottom:158.604000px;}
.y4f{bottom:159.124500px;}
.y78{bottom:159.618000px;}
.ya2{bottom:162.024000px;}
.y10e{bottom:163.849500px;}
.y22{bottom:164.784000px;}
.y132{bottom:165.864000px;}
.ye9{bottom:167.839500px;}
.yf2{bottom:168.853500px;}
.y14f{bottom:169.210500px;}
.y1a2{bottom:170.376000px;}
.yc4{bottom:172.224000px;}
.y1da{bottom:172.686000px;}
.ye0{bottom:173.238000px;}
.y194{bottom:175.333500px;}
.y175{bottom:175.492500px;}
.y1c6{bottom:180.907500px;}
.y65{bottom:181.401000px;}
.y4e{bottom:181.921500px;}
.y77{bottom:182.415000px;}
.ya1{bottom:184.432500px;}
.y10d{bottom:186.646500px;}
.y21{bottom:187.581000px;}
.y131{bottom:188.661000px;}
.ye8{bottom:190.636500px;}
.yf1{bottom:191.650500px;}
.yc3{bottom:195.021000px;}
.y1d9{bottom:195.483000px;}
.ydf{bottom:196.035000px;}
.y193{bottom:198.130500px;}
.y174{bottom:198.289500px;}
.y1c5{bottom:203.704500px;}
.ya0{bottom:203.851500px;}
.y64{bottom:204.198000px;}
.y4d{bottom:204.718500px;}
.y76{bottom:205.212000px;}
.y10c{bottom:209.443500px;}
.y20{bottom:210.378000px;}
.y130{bottom:211.458000px;}
.ye7{bottom:213.433500px;}
.yf0{bottom:214.447500px;}
.y1a1{bottom:216.867000px;}
.yc2{bottom:217.818000px;}
.y1d8{bottom:218.280000px;}
.yde{bottom:218.832000px;}
.y192{bottom:220.927500px;}
.y173{bottom:221.086500px;}
.y9f{bottom:226.260000px;}
.y1c4{bottom:226.501500px;}
.y63{bottom:226.995000px;}
.y4c{bottom:227.515500px;}
.y1e3{bottom:227.602500px;}
.y75{bottom:228.009000px;}
.y14e{bottom:228.505500px;}
.y10b{bottom:232.240500px;}
.y1f{bottom:233.175000px;}
.y12f{bottom:234.255000px;}
.ye6{bottom:236.230500px;}
.yef{bottom:237.244500px;}
.y1a0{bottom:239.275500px;}
.yc1{bottom:240.615000px;}
.y1d7{bottom:241.078500px;}
.ydd{bottom:241.629000px;}
.y191{bottom:243.724500px;}
.y172{bottom:243.883500px;}
.y9e{bottom:245.680500px;}
.y1c3{bottom:249.298500px;}
.y62{bottom:249.792000px;}
.y148{bottom:250.288500px;}
.y4b{bottom:250.312500px;}
.y74{bottom:250.806000px;}
.y14d{bottom:251.302500px;}
.y10a{bottom:255.037500px;}
.y1e{bottom:255.972000px;}
.y12e{bottom:257.052000px;}
.y7c{bottom:258.579000px;}
.ye5{bottom:259.027500px;}
.yee{bottom:260.041500px;}
.y19f{bottom:261.684000px;}
.yc0{bottom:263.412000px;}
.y1d6{bottom:263.875500px;}
.ydc{bottom:264.426000px;}
.y190{bottom:266.521500px;}
.y171{bottom:266.680500px;}
.y9d{bottom:268.089000px;}
.y1c2{bottom:272.097000px;}
.y61{bottom:272.589000px;}
.y147{bottom:273.085500px;}
.y4a{bottom:273.109500px;}
.y73{bottom:273.603000px;}
.y14c{bottom:274.099500px;}
.y109{bottom:277.834500px;}
.y12d{bottom:279.849000px;}
.y19e{bottom:281.104500px;}
.ye4{bottom:281.824500px;}
.yed{bottom:282.838500px;}
.ybf{bottom:286.209000px;}
.y1d5{bottom:286.672500px;}
.ydb{bottom:287.223000px;}
.y9c{bottom:287.508000px;}
.y18f{bottom:289.318500px;}
.y170{bottom:289.477500px;}
.y1c1{bottom:294.894000px;}
.y60{bottom:295.387500px;}
.y146{bottom:295.882500px;}
.y49{bottom:295.908000px;}
.y72{bottom:296.401500px;}
.y14b{bottom:296.896500px;}
.y108{bottom:300.633000px;}
.y12c{bottom:302.646000px;}
.y19d{bottom:303.513000px;}
.y1d{bottom:307.162500px;}
.ybe{bottom:309.006000px;}
.y1d4{bottom:309.469500px;}
.y9b{bottom:309.916500px;}
.yda{bottom:310.020000px;}
.y18e{bottom:312.115500px;}
.y16f{bottom:312.274500px;}
.y1c0{bottom:317.691000px;}
.y5f{bottom:318.184500px;}
.y145{bottom:318.679500px;}
.y48{bottom:318.705000px;}
.y71{bottom:319.198500px;}
.y14a{bottom:319.693500px;}
.y19c{bottom:325.921500px;}
.y9a{bottom:329.337000px;}
.ybd{bottom:331.803000px;}
.y1d3{bottom:332.266500px;}
.yd9{bottom:332.817000px;}
.y18d{bottom:334.912500px;}
.y16e{bottom:335.071500px;}
.y1bf{bottom:340.488000px;}
.y5e{bottom:340.981500px;}
.y144{bottom:341.476500px;}
.y47{bottom:341.502000px;}
.y70{bottom:341.995500px;}
.y149{bottom:342.490500px;}
.y19b{bottom:348.330000px;}
.y1c{bottom:348.336000px;}
.ybc{bottom:354.600000px;}
.y1d2{bottom:355.063500px;}
.yd8{bottom:355.614000px;}
.y18c{bottom:357.709500px;}
.y16d{bottom:357.868500px;}
.y99{bottom:359.248500px;}
.y107{bottom:359.928000px;}
.y1be{bottom:363.285000px;}
.y5d{bottom:363.778500px;}
.y46{bottom:364.299000px;}
.y6f{bottom:364.792500px;}
.y12b{bottom:365.158500px;}
.y1b{bottom:366.912000px;}
.y19a{bottom:370.738500px;}
.ybb{bottom:377.397000px;}
.y1d1{bottom:377.860500px;}
.yd7{bottom:378.411000px;}
.y18b{bottom:380.506500px;}
.y16c{bottom:380.665500px;}
.y101{bottom:381.711000px;}
.y106{bottom:382.725000px;}
.y1a{bottom:383.802000px;}
.y1bd{bottom:386.082000px;}
.y5c{bottom:386.575500px;}
.y45{bottom:387.096000px;}
.y6e{bottom:387.589500px;}
.y12a{bottom:387.955500px;}
.yba{bottom:400.194000px;}
.y199{bottom:400.650000px;}
.y1d0{bottom:400.657500px;}
.yd6{bottom:401.208000px;}
.y98{bottom:402.991500px;}
.y18a{bottom:403.303500px;}
.y16b{bottom:403.462500px;}
.y100{bottom:404.508000px;}
.y143{bottom:405.004500px;}
.y105{bottom:405.522000px;}
.y19{bottom:405.754500px;}
.y1bc{bottom:408.879000px;}
.y5b{bottom:409.372500px;}
.y44{bottom:409.893000px;}
.y6d{bottom:410.386500px;}
.y129{bottom:410.752500px;}
.yb9{bottom:422.991000px;}
.y1cf{bottom:423.454500px;}
.yd5{bottom:424.005000px;}
.y189{bottom:426.100500px;}
.y16a{bottom:426.259500px;}
.yff{bottom:427.305000px;}
.y142{bottom:427.801500px;}
.y104{bottom:428.319000px;}
.y18{bottom:428.428500px;}
.y1bb{bottom:431.676000px;}
.y5a{bottom:432.169500px;}
.y43{bottom:432.690000px;}
.y6c{bottom:433.183500px;}
.y97{bottom:436.882500px;}
.y128{bottom:443.085000px;}
.y198{bottom:444.393000px;}
.yb8{bottom:445.789500px;}
.y1ce{bottom:446.251500px;}
.yd4{bottom:446.802000px;}
.y188{bottom:448.899000px;}
.y169{bottom:449.058000px;}
.yfe{bottom:450.102000px;}
.y141{bottom:450.598500px;}
.y103{bottom:451.116000px;}
.y1ba{bottom:454.473000px;}
.y59{bottom:454.966500px;}
.y42{bottom:455.487000px;}
.y6b{bottom:455.980500px;}
.y96{bottom:459.679500px;}
.y17{bottom:463.831500px;}
.yb7{bottom:468.586500px;}
.y1cd{bottom:469.048500px;}
.yd3{bottom:469.600500px;}
.y187{bottom:471.696000px;}
.y168{bottom:471.855000px;}
.yfd{bottom:472.899000px;}
.y127{bottom:472.996500px;}
.y102{bottom:473.913000px;}
.y1b9{bottom:477.270000px;}
.y58{bottom:477.763500px;}
.y41{bottom:478.284000px;}
.y6a{bottom:478.777500px;}
.y95{bottom:482.476500px;}
.y140{bottom:482.929500px;}
.y16{bottom:485.784000px;}
.yb6{bottom:491.383500px;}
.y1cc{bottom:491.845500px;}
.yd2{bottom:492.397500px;}
.y186{bottom:494.493000px;}
.y167{bottom:494.652000px;}
.y126{bottom:495.405000px;}
.y1b8{bottom:500.067000px;}
.y40{bottom:501.081000px;}
.y94{bottom:505.273500px;}
.y15{bottom:507.736500px;}
.y13f{bottom:512.841000px;}
.yb5{bottom:514.180500px;}
.yfc{bottom:514.642500px;}
.yd1{bottom:515.194500px;}
.y185{bottom:517.290000px;}
.y166{bottom:517.449000px;}
.y125{bottom:517.813500px;}
.y57{bottom:519.507000px;}
.y1b7{bottom:522.864000px;}
.y3f{bottom:523.878000px;}
.y93{bottom:528.070500px;}
.y14{bottom:529.689000px;}
.y13e{bottom:535.249500px;}
.yb4{bottom:536.977500px;}
.yfb{bottom:537.439500px;}
.yd0{bottom:537.991500px;}
.y184{bottom:540.087000px;}
.y124{bottom:540.222000px;}
.y165{bottom:540.246000px;}
.y56{bottom:542.304000px;}
.y1b6{bottom:545.661000px;}
.y3e{bottom:546.675000px;}
.y1e1{bottom:546.762000px;}
.y92{bottom:550.867500px;}
.y13{bottom:551.641500px;}
.y13d{bottom:557.658000px;}
.yb3{bottom:559.774500px;}
.yfa{bottom:560.238000px;}
.ycf{bottom:560.788500px;}
.y183{bottom:562.884000px;}
.y164{bottom:563.043000px;}
.y1b5{bottom:568.458000px;}
.y3d{bottom:569.472000px;}
.y123{bottom:570.133500px;}
.y1cb{bottom:570.697500px;}
.y12{bottom:573.595500px;}
.y55{bottom:575.562000px;}
.y13c{bottom:577.078500px;}
.yb2{bottom:582.571500px;}
.yf9{bottom:583.035000px;}
.yce{bottom:583.585500px;}
.y182{bottom:585.681000px;}
.y163{bottom:585.840000px;}
.y1b4{bottom:591.256500px;}
.y3c{bottom:592.269000px;}
.y91{bottom:593.721000px;}
.y11{bottom:595.548000px;}
.y13b{bottom:599.487000px;}
.yb1{bottom:605.368500px;}
.yf8{bottom:605.832000px;}
.ycd{bottom:606.382500px;}
.y181{bottom:608.478000px;}
.y162{bottom:608.637000px;}
.y90{bottom:613.140000px;}
.y122{bottom:613.876500px;}
.y1b3{bottom:614.053500px;}
.y3b{bottom:615.067500px;}
.y10{bottom:617.500500px;}
.y13a{bottom:621.895500px;}
.yb0{bottom:628.165500px;}
.yf7{bottom:628.629000px;}
.ycc{bottom:629.179500px;}
.y180{bottom:631.275000px;}
.y161{bottom:631.434000px;}
.y8f{bottom:635.548500px;}
.y121{bottom:636.673500px;}
.y1b2{bottom:636.850500px;}
.y3a{bottom:637.864500px;}
.yf{bottom:639.453000px;}
.y139{bottom:644.304000px;}
.yaf{bottom:650.962500px;}
.ycb{bottom:651.976500px;}
.y160{bottom:654.231000px;}
.y8e{bottom:654.969000px;}
.y1b1{bottom:659.647500px;}
.y39{bottom:660.661500px;}
.ye{bottom:661.405500px;}
.yf6{bottom:661.887000px;}
.y17f{bottom:668.002500px;}
.y120{bottom:670.564500px;}
.yae{bottom:673.759500px;}
.y138{bottom:674.215500px;}
.yca{bottom:674.773500px;}
.y15f{bottom:677.028000px;}
.y8d{bottom:677.377500px;}
.y1b0{bottom:682.444500px;}
.yd{bottom:683.359500px;}
.y38{bottom:683.458500px;}
.y1e0{bottom:683.544000px;}
.y1df{bottom:687.445500px;}
.y17e{bottom:690.799500px;}
.y11f{bottom:693.361500px;}
.yad{bottom:696.556500px;}
.y8c{bottom:696.796500px;}
.yc9{bottom:697.570500px;}
.y15e{bottom:699.825000px;}
.y1af{bottom:705.241500px;}
.yc{bottom:705.312000px;}
.y37{bottom:706.255500px;}
.y11e{bottom:716.158500px;}
.y137{bottom:717.958500px;}
.y8b{bottom:719.205000px;}
.yac{bottom:719.353500px;}
.yc8{bottom:720.367500px;}
.y15d{bottom:722.622000px;}
.yb{bottom:727.264500px;}
.y1ae{bottom:728.038500px;}
.y36{bottom:729.052500px;}
.y1de{bottom:729.138000px;}
.y17d{bottom:737.044500px;}
.y8a{bottom:738.625500px;}
.y11d{bottom:738.955500px;}
.y15c{bottom:745.420500px;}
.ya{bottom:749.217000px;}
.y1ad{bottom:750.835500px;}
.y35{bottom:751.849500px;}
.y89{bottom:761.034000px;}
.y11c{bottom:761.752500px;}
.yab{bottom:763.221000px;}
.y17c{bottom:769.375500px;}
.y9{bottom:771.169500px;}
.y1ac{bottom:773.632500px;}
.y34{bottom:774.646500px;}
.y88{bottom:780.453000px;}
.y15b{bottom:782.146500px;}
.y11b{bottom:784.549500px;}
.yaa{bottom:785.629500px;}
.y17b{bottom:791.784000px;}
.y8{bottom:793.122000px;}
.y1ab{bottom:796.429500px;}
.y33{bottom:797.443500px;}
.y15a{bottom:804.943500px;}
.ya9{bottom:808.038000px;}
.y87{bottom:810.366000px;}
.y17a{bottom:814.192500px;}
.y7{bottom:815.076000px;}
.y1aa{bottom:819.226500px;}
.y32{bottom:820.240500px;}
.y1e4{bottom:820.327500px;}
.y11a{bottom:821.277000px;}
.ya8{bottom:827.458500px;}
.y159{bottom:827.740500px;}
.y1a9{bottom:842.023500px;}
.y31{bottom:843.037500px;}
.y119{bottom:844.074000px;}
.y179{bottom:844.104000px;}
.ya7{bottom:849.867000px;}
.y86{bottom:854.109000px;}
.y1a8{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.y118{bottom:866.871000px;}
.ya6{bottom:872.275500px;}
.y158{bottom:873.985500px;}
.y85{bottom:876.906000px;}
.y6{bottom:880.816500px;}
.y1a7{bottom:887.617500px;}
.y178{bottom:887.848500px;}
.y2f{bottom:888.631500px;}
.y136{bottom:888.718500px;}
.y117{bottom:899.203500px;}
.ya5{bottom:902.187000px;}
.y157{bottom:906.318000px;}
.y1a6{bottom:910.416000px;}
.y177{bottom:910.645500px;}
.y2e{bottom:911.430000px;}
.y5{bottom:922.197000px;}
.y156{bottom:928.726500px;}
.y116{bottom:929.115000px;}
.y84{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.ya4{bottom:945.930000px;}
.y155{bottom:951.135000px;}
.y115{bottom:951.523500px;}
.y83{bottom:956.010000px;}
.y2c{bottom:957.024000px;}
.y1e2{bottom:957.109500px;}
.y4{bottom:959.347500px;}
.y154{bottom:973.543500px;}
.y114{bottom:973.932000px;}
.y82{bottom:978.807000px;}
.y2b{bottom:979.821000px;}
.y113{bottom:996.340500px;}
.y3{bottom:996.498000px;}
.y81{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.y153{bottom:1003.455000px;}
.y80{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.y112{bottom:1026.252000px;}
.y7f{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.y7e{bottom:1069.995000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.h1{height:35.865450px;}
.h6{height:37.013299px;}
.h5{height:41.125613px;}
.h4{height:41.364715px;}
.ha{height:47.157012px;}
.h8{height:47.294496px;}
.hc{height:47.569464px;}
.hd{height:52.128854px;}
.h3{height:53.463379px;}
.h7{height:53.774213px;}
.h2{height:71.065171px;}
.hb{height:91.407450px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2b{left:124.705500px;}
.x14{left:126.270000px;}
.xc{left:127.558500px;}
.x31{left:130.902000px;}
.x15{left:136.525500px;}
.x37{left:138.259500px;}
.x1c{left:143.788500px;}
.x3d{left:145.087500px;}
.x3c{left:146.523000px;}
.x4{left:148.948500px;}
.x3{left:150.111000px;}
.x16{left:151.461000px;}
.xd{left:153.070500px;}
.x33{left:155.617500px;}
.x32{left:157.053000px;}
.x7{left:178.044000px;}
.x2f{left:181.129500px;}
.xa{left:182.308500px;}
.x1d{left:190.981500px;}
.x1b{left:200.941500px;}
.x38{left:202.264500px;}
.x18{left:211.492500px;}
.x1a{left:215.076000px;}
.x30{left:231.015000px;}
.x2d{left:235.321500px;}
.x9{left:237.259500px;}
.x34{left:249.985500px;}
.x21{left:279.375000px;}
.x39{left:313.504500px;}
.x12{left:315.294000px;}
.x26{left:346.113000px;}
.x2c{left:371.979000px;}
.x6{left:388.501500px;}
.x22{left:401.734500px;}
.xf{left:404.373000px;}
.x5{left:405.499500px;}
.x8{left:410.130000px;}
.xb{left:432.832500px;}
.x27{left:443.523000px;}
.x19{left:447.636000px;}
.x10{left:452.577000px;}
.x23{left:463.120500px;}
.xe{left:464.346000px;}
.x13{left:489.858000px;}
.x2e{left:500.266500px;}
.x17{left:523.366500px;}
.x1f{left:524.395500px;}
.x3a{left:553.732500px;}
.x2{left:573.774000px;}
.x11{left:578.070000px;}
.x35{left:593.613000px;}
.x28{left:595.563000px;}
.x3b{left:597.055500px;}
.x36{left:602.205000px;}
.x24{left:624.621000px;}
.x1e{left:646.255500px;}
.x2a{left:666.357000px;}
.x20{left:686.446500px;}
.x1{left:696.322500px;}
.x29{left:701.566500px;}
.x25{left:731.718000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.285333pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls21{letter-spacing:1.283184pt;}
.ls10{letter-spacing:1.328347pt;}
.ls24{letter-spacing:2.260848pt;}
.ls0{letter-spacing:2.656693pt;}
.ls11{letter-spacing:4.407234pt;}
.lsf{letter-spacing:13.283467pt;}
.ls6{letter-spacing:13.503984pt;}
.ls5{letter-spacing:13.565088pt;}
.ls23{letter-spacing:14.237232pt;}
.ls18{letter-spacing:14.542752pt;}
.ls1b{letter-spacing:14.909376pt;}
.lse{letter-spacing:14.970480pt;}
.ls1e{letter-spacing:15.031584pt;}
.ls13{letter-spacing:15.092688pt;}
.ls22{letter-spacing:15.153792pt;}
.ls14{letter-spacing:15.276000pt;}
.ls16{letter-spacing:15.398208pt;}
.ls15{letter-spacing:15.459312pt;}
.ls17{letter-spacing:15.581520pt;}
.ls1c{letter-spacing:15.642624pt;}
.ls19{letter-spacing:17.353536pt;}
.lsb{letter-spacing:17.475744pt;}
.lsa{letter-spacing:17.536848pt;}
.ls1f{letter-spacing:17.842368pt;}
.ls8{letter-spacing:18.453408pt;}
.ls9{letter-spacing:18.514512pt;}
.lsd{letter-spacing:18.942240pt;}
.lsc{letter-spacing:19.003344pt;}
.ls1d{letter-spacing:19.369968pt;}
.ls7{letter-spacing:19.919904pt;}
.ls20{letter-spacing:21.569712pt;}
.ls1a{letter-spacing:23.525040pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ls12{letter-spacing:854.943200pt;}
.ws115{word-spacing:-15.276000pt;}
.wsb5{word-spacing:-13.283467pt;}
.ws117{word-spacing:-5.743776pt;}
.ws11a{word-spacing:-3.788448pt;}
.wsdf{word-spacing:-3.238512pt;}
.ws43{word-spacing:-3.177408pt;}
.ws114{word-spacing:-3.116304pt;}
.ws27{word-spacing:-3.055200pt;}
.ws11e{word-spacing:-2.994096pt;}
.ws82{word-spacing:-2.932992pt;}
.ws46{word-spacing:-2.871888pt;}
.wsb4{word-spacing:-2.816095pt;}
.ws89{word-spacing:-2.810784pt;}
.ws48{word-spacing:-2.749680pt;}
.wsb9{word-spacing:-2.709827pt;}
.ws76{word-spacing:-2.688576pt;}
.ws12{word-spacing:-2.656693pt;}
.ws11c{word-spacing:-2.627472pt;}
.ws3e{word-spacing:-2.566368pt;}
.wsa6{word-spacing:-2.505264pt;}
.ws10b{word-spacing:-2.444160pt;}
.wsfe{word-spacing:-2.383056pt;}
.ws2b{word-spacing:-2.321952pt;}
.ws54{word-spacing:-2.260848pt;}
.ws98{word-spacing:-2.199744pt;}
.ws9c{word-spacing:-2.138640pt;}
.wsa2{word-spacing:-2.077536pt;}
.wsb{word-spacing:-2.072221pt;}
.wsa1{word-spacing:-2.016432pt;}
.wsce{word-spacing:-1.955328pt;}
.wsc1{word-spacing:-1.833120pt;}
.ws109{word-spacing:-1.772016pt;}
.ws66{word-spacing:-1.710912pt;}
.ws2d{word-spacing:-1.649808pt;}
.wsbe{word-spacing:-1.588704pt;}
.wse{word-spacing:-1.540882pt;}
.ws8c{word-spacing:-1.527600pt;}
.ws106{word-spacing:-1.434614pt;}
.ws59{word-spacing:-1.405392pt;}
.ws3a{word-spacing:-1.344288pt;}
.ws47{word-spacing:-1.283184pt;}
.ws11b{word-spacing:-1.222080pt;}
.wsc0{word-spacing:-1.160976pt;}
.ws63{word-spacing:-1.099872pt;}
.ws9b{word-spacing:-1.038768pt;}
.wsc2{word-spacing:-0.977664pt;}
.ws5a{word-spacing:-0.916560pt;}
.ws6e{word-spacing:-0.855456pt;}
.ws116{word-spacing:-0.794352pt;}
.wsff{word-spacing:-0.733248pt;}
.ws2e{word-spacing:-0.672144pt;}
.wsc6{word-spacing:-0.611040pt;}
.ws53{word-spacing:-0.549936pt;}
.ws75{word-spacing:-0.488832pt;}
.ws6a{word-spacing:-0.427728pt;}
.ws1d{word-spacing:-0.366624pt;}
.ws42{word-spacing:-0.305520pt;}
.ws17{word-spacing:-0.244416pt;}
.wsf{word-spacing:-0.212535pt;}
.ws26{word-spacing:-0.183312pt;}
.ws4{word-spacing:-0.159402pt;}
.ws21{word-spacing:-0.122208pt;}
.wsa{word-spacing:-0.106268pt;}
.wseb{word-spacing:-0.095642pt;}
.ws44{word-spacing:-0.061104pt;}
.ws1{word-spacing:-0.042507pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:0.053134pt;}
.ws1c{word-spacing:0.061104pt;}
.ws13{word-spacing:0.095642pt;}
.wsc{word-spacing:0.106268pt;}
.ws32{word-spacing:0.122208pt;}
.ws16{word-spacing:0.183312pt;}
.wsb6{word-spacing:0.212535pt;}
.ws1f{word-spacing:0.244416pt;}
.ws2a{word-spacing:0.305520pt;}
.ws24{word-spacing:0.366624pt;}
.ws56{word-spacing:0.427728pt;}
.ws36{word-spacing:0.488832pt;}
.ws79{word-spacing:0.549936pt;}
.ws58{word-spacing:0.611040pt;}
.ws39{word-spacing:0.672144pt;}
.wsb0{word-spacing:0.733248pt;}
.ws3f{word-spacing:0.794352pt;}
.wsa5{word-spacing:0.855456pt;}
.ws2f{word-spacing:0.916560pt;}
.ws8{word-spacing:0.956410pt;}
.ws22{word-spacing:0.977664pt;}
.ws8f{word-spacing:1.038768pt;}
.ws71{word-spacing:1.099872pt;}
.wsd0{word-spacing:1.160976pt;}
.ws1b{word-spacing:1.222080pt;}
.ws6f{word-spacing:1.283184pt;}
.ws7c{word-spacing:1.344288pt;}
.ws15{word-spacing:1.405392pt;}
.ws57{word-spacing:1.466496pt;}
.wsa8{word-spacing:1.527600pt;}
.ws45{word-spacing:1.588704pt;}
.ws9{word-spacing:1.594016pt;}
.ws69{word-spacing:1.649808pt;}
.wsfb{word-spacing:1.710912pt;}
.ws62{word-spacing:1.772016pt;}
.ws5e{word-spacing:1.833120pt;}
.wsba{word-spacing:1.859685pt;}
.wsa0{word-spacing:1.894224pt;}
.wsa4{word-spacing:1.955328pt;}
.ws68{word-spacing:2.016432pt;}
.wsa7{word-spacing:2.077536pt;}
.ws10{word-spacing:2.125355pt;}
.ws61{word-spacing:2.138640pt;}
.wsbb{word-spacing:2.199744pt;}
.wsc5{word-spacing:2.260848pt;}
.ws5{word-spacing:2.284756pt;}
.ws4c{word-spacing:2.321952pt;}
.wsa3{word-spacing:2.383056pt;}
.ws9d{word-spacing:2.444160pt;}
.ws2c{word-spacing:2.505264pt;}
.ws6c{word-spacing:2.566368pt;}
.ws91{word-spacing:2.627472pt;}
.ws23{word-spacing:2.688576pt;}
.ws37{word-spacing:2.749680pt;}
.ws96{word-spacing:2.810784pt;}
.wse7{word-spacing:2.869229pt;}
.ws6d{word-spacing:2.871888pt;}
.ws34{word-spacing:2.932992pt;}
.ws85{word-spacing:2.994096pt;}
.ws7e{word-spacing:3.055200pt;}
.wsf5{word-spacing:3.060531pt;}
.ws70{word-spacing:3.116304pt;}
.wsf9{word-spacing:3.177408pt;}
.ws5f{word-spacing:3.238512pt;}
.ws81{word-spacing:3.299616pt;}
.wsee{word-spacing:3.360720pt;}
.ws7f{word-spacing:3.421824pt;}
.wscc{word-spacing:3.482928pt;}
.ws35{word-spacing:3.605136pt;}
.ws8b{word-spacing:3.666240pt;}
.ws51{word-spacing:3.727344pt;}
.ws100{word-spacing:3.788448pt;}
.ws1a{word-spacing:3.849552pt;}
.ws4e{word-spacing:3.910656pt;}
.ws7b{word-spacing:3.971760pt;}
.ws8e{word-spacing:4.032864pt;}
.wscb{word-spacing:4.093968pt;}
.ws20{word-spacing:4.155072pt;}
.ws31{word-spacing:4.216176pt;}
.ws11{word-spacing:4.250709pt;}
.ws65{word-spacing:4.277280pt;}
.ws3b{word-spacing:4.338384pt;}
.ws4d{word-spacing:4.399488pt;}
.ws50{word-spacing:4.460592pt;}
.wsc8{word-spacing:4.521696pt;}
.ws6{word-spacing:4.569513pt;}
.ws80{word-spacing:4.582800pt;}
.ws6b{word-spacing:4.643904pt;}
.ws7d{word-spacing:4.705008pt;}
.wsbf{word-spacing:4.766112pt;}
.ws107{word-spacing:4.827216pt;}
.wsb3{word-spacing:4.888316pt;}
.ws8d{word-spacing:4.888320pt;}
.ws1e{word-spacing:4.949424pt;}
.ws10a{word-spacing:5.010528pt;}
.ws4b{word-spacing:5.071632pt;}
.ws99{word-spacing:5.132736pt;}
.ws60{word-spacing:5.193840pt;}
.ws4f{word-spacing:5.254944pt;}
.ws19{word-spacing:5.316048pt;}
.wsfa{word-spacing:5.377152pt;}
.ws29{word-spacing:5.438256pt;}
.wsb8{word-spacing:5.499360pt;}
.wsd5{word-spacing:5.560464pt;}
.ws72{word-spacing:5.682672pt;}
.wsf0{word-spacing:5.743776pt;}
.wsef{word-spacing:5.804880pt;}
.ws84{word-spacing:5.865984pt;}
.ws5b{word-spacing:5.927088pt;}
.ws95{word-spacing:5.988192pt;}
.wsc9{word-spacing:6.049296pt;}
.ws4a{word-spacing:6.110400pt;}
.wse0{word-spacing:6.168883pt;}
.ws64{word-spacing:6.171504pt;}
.ws7{word-spacing:6.216662pt;}
.ws3c{word-spacing:6.232608pt;}
.wsb2{word-spacing:6.293712pt;}
.ws5c{word-spacing:6.354816pt;}
.wsd1{word-spacing:6.415920pt;}
.ws40{word-spacing:6.477024pt;}
.wse6{word-spacing:6.538128pt;}
.ws73{word-spacing:6.660336pt;}
.ws118{word-spacing:6.718667pt;}
.ws55{word-spacing:6.721440pt;}
.ws7a{word-spacing:6.782544pt;}
.ws30{word-spacing:6.843648pt;}
.wsc7{word-spacing:6.965856pt;}
.ws49{word-spacing:7.026960pt;}
.ws8a{word-spacing:7.088064pt;}
.wscd{word-spacing:7.149168pt;}
.ws78{word-spacing:7.210272pt;}
.wsfc{word-spacing:7.271376pt;}
.ws9a{word-spacing:7.332480pt;}
.ws88{word-spacing:7.393584pt;}
.ws3d{word-spacing:7.454688pt;}
.ws10e{word-spacing:7.515792pt;}
.ws11d{word-spacing:7.576896pt;}
.ws112{word-spacing:7.638000pt;}
.ws83{word-spacing:7.699104pt;}
.wscf{word-spacing:7.760208pt;}
.ws33{word-spacing:7.821312pt;}
.wsd8{word-spacing:7.882416pt;}
.wsae{word-spacing:7.916946pt;}
.wsca{word-spacing:7.943520pt;}
.ws5d{word-spacing:8.004624pt;}
.ws38{word-spacing:8.065728pt;}
.wsde{word-spacing:8.126832pt;}
.ws25{word-spacing:8.187936pt;}
.wsfd{word-spacing:8.249040pt;}
.ws52{word-spacing:8.310144pt;}
.ws28{word-spacing:8.371248pt;}
.wsd3{word-spacing:8.432352pt;}
.wse2{word-spacing:8.493456pt;}
.ws87{word-spacing:8.554560pt;}
.ws74{word-spacing:8.615664pt;}
.wsd9{word-spacing:8.676768pt;}
.ws94{word-spacing:8.737872pt;}
.wse5{word-spacing:8.798976pt;}
.ws10f{word-spacing:8.860080pt;}
.ws108{word-spacing:8.921184pt;}
.ws111{word-spacing:9.043392pt;}
.ws113{word-spacing:9.104496pt;}
.ws101{word-spacing:9.226704pt;}
.wsf1{word-spacing:9.277235pt;}
.wsc4{word-spacing:9.287808pt;}
.wse4{word-spacing:9.348912pt;}
.wsd7{word-spacing:9.410016pt;}
.wsd4{word-spacing:9.471120pt;}
.ws18{word-spacing:9.532224pt;}
.ws41{word-spacing:9.715536pt;}
.ws90{word-spacing:9.776640pt;}
.ws9e{word-spacing:9.898848pt;}
.ws77{word-spacing:10.204368pt;}
.wsc3{word-spacing:10.326576pt;}
.wsdb{word-spacing:10.509888pt;}
.ws67{word-spacing:10.876512pt;}
.wsac{word-spacing:11.304240pt;}
.ws97{word-spacing:11.365344pt;}
.ws10c{word-spacing:11.731968pt;}
.wsb1{word-spacing:11.915280pt;}
.ws86{word-spacing:11.976384pt;}
.ws9f{word-spacing:12.159696pt;}
.wse3{word-spacing:12.404112pt;}
.wsab{word-spacing:12.587424pt;}
.wse9{word-spacing:13.137360pt;}
.wsad{word-spacing:13.230333pt;}
.wsbc{word-spacing:13.381776pt;}
.wsea{word-spacing:14.848272pt;}
.ws110{word-spacing:14.909376pt;}
.ws0{word-spacing:15.005042pt;}
.wsf7{word-spacing:15.276000pt;}
.wsaf{word-spacing:15.515089pt;}
.ws3{word-spacing:16.258963pt;}
.wsbd{word-spacing:16.498080pt;}
.wsb7{word-spacing:17.109120pt;}
.wsd6{word-spacing:17.199459pt;}
.wsdd{word-spacing:19.186656pt;}
.wsf8{word-spacing:25.541472pt;}
.wse1{word-spacing:29.940960pt;}
.wsda{word-spacing:31.957392pt;}
.wsed{word-spacing:35.929152pt;}
.wsaa{word-spacing:41.061888pt;}
.wsa9{word-spacing:41.122992pt;}
.ws92{word-spacing:44.605920pt;}
.ws10d{word-spacing:44.728128pt;}
.ws93{word-spacing:59.148672pt;}
.wsf2{word-spacing:63.707506pt;}
.wsf3{word-spacing:68.383286pt;}
.ws14{word-spacing:69.005059pt;}
.wsf4{word-spacing:72.846531pt;}
.wsf6{word-spacing:81.666753pt;}
.wsec{word-spacing:443.348983pt;}
.ws102{word-spacing:639.678621pt;}
.ws103{word-spacing:686.702093pt;}
.ws104{word-spacing:815.126649pt;}
.ws105{word-spacing:831.332478pt;}
.ws119{word-spacing:836.034896pt;}
.wsd2{word-spacing:838.328229pt;}
.wsdc{word-spacing:1416.230082pt;}
.wse8{word-spacing:1682.430754pt;}
._60{margin-left:-8.615664pt;}
._20{margin-left:-6.904752pt;}
._25{margin-left:-5.897859pt;}
._3{margin-left:-5.002030pt;}
._5{margin-left:-3.902148pt;}
._2a{margin-left:-2.810784pt;}
._1{margin-left:-1.836309pt;}
._10{margin-left:-0.916560pt;}
._0{width:1.232709pt;}
._5c{width:2.325141pt;}
._5d{width:3.533403pt;}
._5e{width:5.210855pt;}
._61{width:7.943520pt;}
._5f{width:11.275027pt;}
._c{width:12.433325pt;}
._9{width:14.246258pt;}
._a{width:15.444961pt;}
._8{width:16.371613pt;}
._e{width:17.525872pt;}
._4{width:19.128192pt;}
._12{width:20.530944pt;}
._7{width:21.578732pt;}
._b{width:22.588275pt;}
._16{width:24.127572pt;}
._1b{width:25.666869pt;}
._18{width:26.580240pt;}
._2{width:28.187348pt;}
._f{width:29.200989pt;}
._6{width:30.711375pt;}
._14{width:32.629536pt;}
._2b{width:33.793701pt;}
._11{width:35.440320pt;}
._1c{width:36.417984pt;}
._17{width:37.823376pt;}
._1a{width:38.739936pt;}
._1e{width:39.842997pt;}
._5a{width:40.759557pt;}
._1d{width:41.672928pt;}
._2f{width:42.592677pt;}
._13{width:44.059173pt;}
._21{width:44.975733pt;}
._5b{width:45.950208pt;}
._56{width:47.050080pt;}
._15{width:48.027744pt;}
._d{width:53.133867pt;}
._59{width:54.749184pt;}
._2d{width:57.315552pt;}
._19{width:59.881920pt;}
._2c{width:60.798480pt;}
._29{width:62.326080pt;}
._22{width:63.760640pt;}
._2e{width:69.074133pt;}
._1f{width:74.424672pt;}
._3a{width:89.583699pt;}
._3d{width:105.837351pt;}
._32{width:107.330411pt;}
._3c{width:115.406758pt;}
._24{width:116.894507pt;}
._41{width:125.585085pt;}
._4a{width:131.028115pt;}
._51{width:133.851657pt;}
._4d{width:135.438226pt;}
._55{width:144.311582pt;}
._4c{width:154.832087pt;}
._49{width:163.705443pt;}
._50{width:228.239715pt;}
._53{width:230.175910pt;}
._35{width:236.445707pt;}
._57{width:333.208860pt;}
._31{width:377.765862pt;}
._58{width:384.902801pt;}
._44{width:403.498583pt;}
._3e{width:439.629613pt;}
._46{width:476.557650pt;}
._4f{width:519.034986pt;}
._3f{width:537.077124pt;}
._40{width:565.551566pt;}
._52{width:630.197417pt;}
._39{width:633.515092pt;}
._26{width:645.021765pt;}
._27{width:647.944128pt;}
._54{width:653.979077pt;}
._28{width:665.637706pt;}
._37{width:674.063679pt;}
._38{width:683.647436pt;}
._23{width:703.651796pt;}
._33{width:738.236633pt;}
._36{width:834.603402pt;}
._34{width:835.848857pt;}
._4b{width:921.029891pt;}
._4e{width:926.874617pt;}
._43{width:943.710606pt;}
._48{width:951.415017pt;}
._45{width:954.757139pt;}
._42{width:976.023443pt;}
._47{width:1197.159150pt;}
._30{width:1335.307203pt;}
._3b{width:1410.172821pt;}
.fs6{font-size:39.318933pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:36.718667pt;}
.y7d{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.y1ca{bottom:79.750667pt;}
.y69{bottom:80.189333pt;}
.y52{bottom:80.652000pt;}
.y7b{bottom:81.090667pt;}
.y1a5{bottom:81.354667pt;}
.y111{bottom:84.852000pt;}
.y25{bottom:85.681333pt;}
.y135{bottom:86.641333pt;}
.yec{bottom:88.398667pt;}
.yf5{bottom:89.300000pt;}
.y152{bottom:89.617333pt;}
.yc7{bottom:92.294667pt;}
.y1dd{bottom:92.706667pt;}
.ye3{bottom:93.196000pt;}
.y197{bottom:95.058667pt;}
.y1c9{bottom:100.014667pt;}
.y68{bottom:100.453333pt;}
.y51{bottom:100.916000pt;}
.y7a{bottom:101.354667pt;}
.y1a4{bottom:101.618667pt;}
.y110{bottom:105.116000pt;}
.y24{bottom:105.945333pt;}
.y134{bottom:106.905333pt;}
.yeb{bottom:108.662667pt;}
.yf4{bottom:109.564000pt;}
.y151{bottom:109.881333pt;}
.yc6{bottom:112.560000pt;}
.y1dc{bottom:112.970667pt;}
.ye2{bottom:113.460000pt;}
.y196{bottom:115.324000pt;}
.y1c8{bottom:120.278667pt;}
.y67{bottom:120.717333pt;}
.y50{bottom:121.180000pt;}
.y79{bottom:121.618667pt;}
.y1a3{bottom:121.882667pt;}
.y10f{bottom:125.380000pt;}
.y23{bottom:126.210667pt;}
.ya3{bottom:126.758667pt;}
.y133{bottom:127.169333pt;}
.yea{bottom:128.926667pt;}
.yf3{bottom:129.828000pt;}
.y150{bottom:130.145333pt;}
.yc5{bottom:132.824000pt;}
.y1db{bottom:133.234667pt;}
.ye1{bottom:133.725333pt;}
.y195{bottom:135.588000pt;}
.y176{bottom:135.729333pt;}
.y1c7{bottom:140.542667pt;}
.y66{bottom:140.981333pt;}
.y4f{bottom:141.444000pt;}
.y78{bottom:141.882667pt;}
.ya2{bottom:144.021333pt;}
.y10e{bottom:145.644000pt;}
.y22{bottom:146.474667pt;}
.y132{bottom:147.434667pt;}
.ye9{bottom:149.190667pt;}
.yf2{bottom:150.092000pt;}
.y14f{bottom:150.409333pt;}
.y1a2{bottom:151.445333pt;}
.yc4{bottom:153.088000pt;}
.y1da{bottom:153.498667pt;}
.ye0{bottom:153.989333pt;}
.y194{bottom:155.852000pt;}
.y175{bottom:155.993333pt;}
.y1c6{bottom:160.806667pt;}
.y65{bottom:161.245333pt;}
.y4e{bottom:161.708000pt;}
.y77{bottom:162.146667pt;}
.ya1{bottom:163.940000pt;}
.y10d{bottom:165.908000pt;}
.y21{bottom:166.738667pt;}
.y131{bottom:167.698667pt;}
.ye8{bottom:169.454667pt;}
.yf1{bottom:170.356000pt;}
.yc3{bottom:173.352000pt;}
.y1d9{bottom:173.762667pt;}
.ydf{bottom:174.253333pt;}
.y193{bottom:176.116000pt;}
.y174{bottom:176.257333pt;}
.y1c5{bottom:181.070667pt;}
.ya0{bottom:181.201333pt;}
.y64{bottom:181.509333pt;}
.y4d{bottom:181.972000pt;}
.y76{bottom:182.410667pt;}
.y10c{bottom:186.172000pt;}
.y20{bottom:187.002667pt;}
.y130{bottom:187.962667pt;}
.ye7{bottom:189.718667pt;}
.yf0{bottom:190.620000pt;}
.y1a1{bottom:192.770667pt;}
.yc2{bottom:193.616000pt;}
.y1d8{bottom:194.026667pt;}
.yde{bottom:194.517333pt;}
.y192{bottom:196.380000pt;}
.y173{bottom:196.521333pt;}
.y9f{bottom:201.120000pt;}
.y1c4{bottom:201.334667pt;}
.y63{bottom:201.773333pt;}
.y4c{bottom:202.236000pt;}
.y1e3{bottom:202.313333pt;}
.y75{bottom:202.674667pt;}
.y14e{bottom:203.116000pt;}
.y10b{bottom:206.436000pt;}
.y1f{bottom:207.266667pt;}
.y12f{bottom:208.226667pt;}
.ye6{bottom:209.982667pt;}
.yef{bottom:210.884000pt;}
.y1a0{bottom:212.689333pt;}
.yc1{bottom:213.880000pt;}
.y1d7{bottom:214.292000pt;}
.ydd{bottom:214.781333pt;}
.y191{bottom:216.644000pt;}
.y172{bottom:216.785333pt;}
.y9e{bottom:218.382667pt;}
.y1c3{bottom:221.598667pt;}
.y62{bottom:222.037333pt;}
.y148{bottom:222.478667pt;}
.y4b{bottom:222.500000pt;}
.y74{bottom:222.938667pt;}
.y14d{bottom:223.380000pt;}
.y10a{bottom:226.700000pt;}
.y1e{bottom:227.530667pt;}
.y12e{bottom:228.490667pt;}
.y7c{bottom:229.848000pt;}
.ye5{bottom:230.246667pt;}
.yee{bottom:231.148000pt;}
.y19f{bottom:232.608000pt;}
.yc0{bottom:234.144000pt;}
.y1d6{bottom:234.556000pt;}
.ydc{bottom:235.045333pt;}
.y190{bottom:236.908000pt;}
.y171{bottom:237.049333pt;}
.y9d{bottom:238.301333pt;}
.y1c2{bottom:241.864000pt;}
.y61{bottom:242.301333pt;}
.y147{bottom:242.742667pt;}
.y4a{bottom:242.764000pt;}
.y73{bottom:243.202667pt;}
.y14c{bottom:243.644000pt;}
.y109{bottom:246.964000pt;}
.y12d{bottom:248.754667pt;}
.y19e{bottom:249.870667pt;}
.ye4{bottom:250.510667pt;}
.yed{bottom:251.412000pt;}
.ybf{bottom:254.408000pt;}
.y1d5{bottom:254.820000pt;}
.ydb{bottom:255.309333pt;}
.y9c{bottom:255.562667pt;}
.y18f{bottom:257.172000pt;}
.y170{bottom:257.313333pt;}
.y1c1{bottom:262.128000pt;}
.y60{bottom:262.566667pt;}
.y146{bottom:263.006667pt;}
.y49{bottom:263.029333pt;}
.y72{bottom:263.468000pt;}
.y14b{bottom:263.908000pt;}
.y108{bottom:267.229333pt;}
.y12c{bottom:269.018667pt;}
.y19d{bottom:269.789333pt;}
.y1d{bottom:273.033333pt;}
.ybe{bottom:274.672000pt;}
.y1d4{bottom:275.084000pt;}
.y9b{bottom:275.481333pt;}
.yda{bottom:275.573333pt;}
.y18e{bottom:277.436000pt;}
.y16f{bottom:277.577333pt;}
.y1c0{bottom:282.392000pt;}
.y5f{bottom:282.830667pt;}
.y145{bottom:283.270667pt;}
.y48{bottom:283.293333pt;}
.y71{bottom:283.732000pt;}
.y14a{bottom:284.172000pt;}
.y19c{bottom:289.708000pt;}
.y9a{bottom:292.744000pt;}
.ybd{bottom:294.936000pt;}
.y1d3{bottom:295.348000pt;}
.yd9{bottom:295.837333pt;}
.y18d{bottom:297.700000pt;}
.y16e{bottom:297.841333pt;}
.y1bf{bottom:302.656000pt;}
.y5e{bottom:303.094667pt;}
.y144{bottom:303.534667pt;}
.y47{bottom:303.557333pt;}
.y70{bottom:303.996000pt;}
.y149{bottom:304.436000pt;}
.y19b{bottom:309.626667pt;}
.y1c{bottom:309.632000pt;}
.ybc{bottom:315.200000pt;}
.y1d2{bottom:315.612000pt;}
.yd8{bottom:316.101333pt;}
.y18c{bottom:317.964000pt;}
.y16d{bottom:318.105333pt;}
.y99{bottom:319.332000pt;}
.y107{bottom:319.936000pt;}
.y1be{bottom:322.920000pt;}
.y5d{bottom:323.358667pt;}
.y46{bottom:323.821333pt;}
.y6f{bottom:324.260000pt;}
.y12b{bottom:324.585333pt;}
.y1b{bottom:326.144000pt;}
.y19a{bottom:329.545333pt;}
.ybb{bottom:335.464000pt;}
.y1d1{bottom:335.876000pt;}
.yd7{bottom:336.365333pt;}
.y18b{bottom:338.228000pt;}
.y16c{bottom:338.369333pt;}
.y101{bottom:339.298667pt;}
.y106{bottom:340.200000pt;}
.y1a{bottom:341.157333pt;}
.y1bd{bottom:343.184000pt;}
.y5c{bottom:343.622667pt;}
.y45{bottom:344.085333pt;}
.y6e{bottom:344.524000pt;}
.y12a{bottom:344.849333pt;}
.yba{bottom:355.728000pt;}
.y199{bottom:356.133333pt;}
.y1d0{bottom:356.140000pt;}
.yd6{bottom:356.629333pt;}
.y98{bottom:358.214667pt;}
.y18a{bottom:358.492000pt;}
.y16b{bottom:358.633333pt;}
.y100{bottom:359.562667pt;}
.y143{bottom:360.004000pt;}
.y105{bottom:360.464000pt;}
.y19{bottom:360.670667pt;}
.y1bc{bottom:363.448000pt;}
.y5b{bottom:363.886667pt;}
.y44{bottom:364.349333pt;}
.y6d{bottom:364.788000pt;}
.y129{bottom:365.113333pt;}
.yb9{bottom:375.992000pt;}
.y1cf{bottom:376.404000pt;}
.yd5{bottom:376.893333pt;}
.y189{bottom:378.756000pt;}
.y16a{bottom:378.897333pt;}
.yff{bottom:379.826667pt;}
.y142{bottom:380.268000pt;}
.y104{bottom:380.728000pt;}
.y18{bottom:380.825333pt;}
.y1bb{bottom:383.712000pt;}
.y5a{bottom:384.150667pt;}
.y43{bottom:384.613333pt;}
.y6c{bottom:385.052000pt;}
.y97{bottom:388.340000pt;}
.y128{bottom:393.853333pt;}
.y198{bottom:395.016000pt;}
.yb8{bottom:396.257333pt;}
.y1ce{bottom:396.668000pt;}
.yd4{bottom:397.157333pt;}
.y188{bottom:399.021333pt;}
.y169{bottom:399.162667pt;}
.yfe{bottom:400.090667pt;}
.y141{bottom:400.532000pt;}
.y103{bottom:400.992000pt;}
.y1ba{bottom:403.976000pt;}
.y59{bottom:404.414667pt;}
.y42{bottom:404.877333pt;}
.y6b{bottom:405.316000pt;}
.y96{bottom:408.604000pt;}
.y17{bottom:412.294667pt;}
.yb7{bottom:416.521333pt;}
.y1cd{bottom:416.932000pt;}
.yd3{bottom:417.422667pt;}
.y187{bottom:419.285333pt;}
.y168{bottom:419.426667pt;}
.yfd{bottom:420.354667pt;}
.y127{bottom:420.441333pt;}
.y102{bottom:421.256000pt;}
.y1b9{bottom:424.240000pt;}
.y58{bottom:424.678667pt;}
.y41{bottom:425.141333pt;}
.y6a{bottom:425.580000pt;}
.y95{bottom:428.868000pt;}
.y140{bottom:429.270667pt;}
.y16{bottom:431.808000pt;}
.yb6{bottom:436.785333pt;}
.y1cc{bottom:437.196000pt;}
.yd2{bottom:437.686667pt;}
.y186{bottom:439.549333pt;}
.y167{bottom:439.690667pt;}
.y126{bottom:440.360000pt;}
.y1b8{bottom:444.504000pt;}
.y40{bottom:445.405333pt;}
.y94{bottom:449.132000pt;}
.y15{bottom:451.321333pt;}
.y13f{bottom:455.858667pt;}
.yb5{bottom:457.049333pt;}
.yfc{bottom:457.460000pt;}
.yd1{bottom:457.950667pt;}
.y185{bottom:459.813333pt;}
.y166{bottom:459.954667pt;}
.y125{bottom:460.278667pt;}
.y57{bottom:461.784000pt;}
.y1b7{bottom:464.768000pt;}
.y3f{bottom:465.669333pt;}
.y93{bottom:469.396000pt;}
.y14{bottom:470.834667pt;}
.y13e{bottom:475.777333pt;}
.yb4{bottom:477.313333pt;}
.yfb{bottom:477.724000pt;}
.yd0{bottom:478.214667pt;}
.y184{bottom:480.077333pt;}
.y124{bottom:480.197333pt;}
.y165{bottom:480.218667pt;}
.y56{bottom:482.048000pt;}
.y1b6{bottom:485.032000pt;}
.y3e{bottom:485.933333pt;}
.y1e1{bottom:486.010667pt;}
.y92{bottom:489.660000pt;}
.y13{bottom:490.348000pt;}
.y13d{bottom:495.696000pt;}
.yb3{bottom:497.577333pt;}
.yfa{bottom:497.989333pt;}
.ycf{bottom:498.478667pt;}
.y183{bottom:500.341333pt;}
.y164{bottom:500.482667pt;}
.y1b5{bottom:505.296000pt;}
.y3d{bottom:506.197333pt;}
.y123{bottom:506.785333pt;}
.y1cb{bottom:507.286667pt;}
.y12{bottom:509.862667pt;}
.y55{bottom:511.610667pt;}
.y13c{bottom:512.958667pt;}
.yb2{bottom:517.841333pt;}
.yf9{bottom:518.253333pt;}
.yce{bottom:518.742667pt;}
.y182{bottom:520.605333pt;}
.y163{bottom:520.746667pt;}
.y1b4{bottom:525.561333pt;}
.y3c{bottom:526.461333pt;}
.y91{bottom:527.752000pt;}
.y11{bottom:529.376000pt;}
.y13b{bottom:532.877333pt;}
.yb1{bottom:538.105333pt;}
.yf8{bottom:538.517333pt;}
.ycd{bottom:539.006667pt;}
.y181{bottom:540.869333pt;}
.y162{bottom:541.010667pt;}
.y90{bottom:545.013333pt;}
.y122{bottom:545.668000pt;}
.y1b3{bottom:545.825333pt;}
.y3b{bottom:546.726667pt;}
.y10{bottom:548.889333pt;}
.y13a{bottom:552.796000pt;}
.yb0{bottom:558.369333pt;}
.yf7{bottom:558.781333pt;}
.ycc{bottom:559.270667pt;}
.y180{bottom:561.133333pt;}
.y161{bottom:561.274667pt;}
.y8f{bottom:564.932000pt;}
.y121{bottom:565.932000pt;}
.y1b2{bottom:566.089333pt;}
.y3a{bottom:566.990667pt;}
.yf{bottom:568.402667pt;}
.y139{bottom:572.714667pt;}
.yaf{bottom:578.633333pt;}
.ycb{bottom:579.534667pt;}
.y160{bottom:581.538667pt;}
.y8e{bottom:582.194667pt;}
.y1b1{bottom:586.353333pt;}
.y39{bottom:587.254667pt;}
.ye{bottom:587.916000pt;}
.yf6{bottom:588.344000pt;}
.y17f{bottom:593.780000pt;}
.y120{bottom:596.057333pt;}
.yae{bottom:598.897333pt;}
.y138{bottom:599.302667pt;}
.yca{bottom:599.798667pt;}
.y15f{bottom:601.802667pt;}
.y8d{bottom:602.113333pt;}
.y1b0{bottom:606.617333pt;}
.yd{bottom:607.430667pt;}
.y38{bottom:607.518667pt;}
.y1e0{bottom:607.594667pt;}
.y1df{bottom:611.062667pt;}
.y17e{bottom:614.044000pt;}
.y11f{bottom:616.321333pt;}
.yad{bottom:619.161333pt;}
.y8c{bottom:619.374667pt;}
.yc9{bottom:620.062667pt;}
.y15e{bottom:622.066667pt;}
.y1af{bottom:626.881333pt;}
.yc{bottom:626.944000pt;}
.y37{bottom:627.782667pt;}
.y11e{bottom:636.585333pt;}
.y137{bottom:638.185333pt;}
.y8b{bottom:639.293333pt;}
.yac{bottom:639.425333pt;}
.yc8{bottom:640.326667pt;}
.y15d{bottom:642.330667pt;}
.yb{bottom:646.457333pt;}
.y1ae{bottom:647.145333pt;}
.y36{bottom:648.046667pt;}
.y1de{bottom:648.122667pt;}
.y17d{bottom:655.150667pt;}
.y8a{bottom:656.556000pt;}
.y11d{bottom:656.849333pt;}
.y15c{bottom:662.596000pt;}
.ya{bottom:665.970667pt;}
.y1ad{bottom:667.409333pt;}
.y35{bottom:668.310667pt;}
.y89{bottom:676.474667pt;}
.y11c{bottom:677.113333pt;}
.yab{bottom:678.418667pt;}
.y17c{bottom:683.889333pt;}
.y9{bottom:685.484000pt;}
.y1ac{bottom:687.673333pt;}
.y34{bottom:688.574667pt;}
.y88{bottom:693.736000pt;}
.y15b{bottom:695.241333pt;}
.y11b{bottom:697.377333pt;}
.yaa{bottom:698.337333pt;}
.y17b{bottom:703.808000pt;}
.y8{bottom:704.997333pt;}
.y1ab{bottom:707.937333pt;}
.y33{bottom:708.838667pt;}
.y15a{bottom:715.505333pt;}
.ya9{bottom:718.256000pt;}
.y87{bottom:720.325333pt;}
.y17a{bottom:723.726667pt;}
.y7{bottom:724.512000pt;}
.y1aa{bottom:728.201333pt;}
.y32{bottom:729.102667pt;}
.y1e4{bottom:729.180000pt;}
.y11a{bottom:730.024000pt;}
.ya8{bottom:735.518667pt;}
.y159{bottom:735.769333pt;}
.y1a9{bottom:748.465333pt;}
.y31{bottom:749.366667pt;}
.y119{bottom:750.288000pt;}
.y179{bottom:750.314667pt;}
.ya7{bottom:755.437333pt;}
.y86{bottom:759.208000pt;}
.y1a8{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.y118{bottom:770.552000pt;}
.ya6{bottom:775.356000pt;}
.y158{bottom:776.876000pt;}
.y85{bottom:779.472000pt;}
.y6{bottom:782.948000pt;}
.y1a7{bottom:788.993333pt;}
.y178{bottom:789.198667pt;}
.y2f{bottom:789.894667pt;}
.y136{bottom:789.972000pt;}
.y117{bottom:799.292000pt;}
.ya5{bottom:801.944000pt;}
.y157{bottom:805.616000pt;}
.y1a6{bottom:809.258667pt;}
.y177{bottom:809.462667pt;}
.y2e{bottom:810.160000pt;}
.y5{bottom:819.730667pt;}
.y156{bottom:825.534667pt;}
.y116{bottom:825.880000pt;}
.y84{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.ya4{bottom:840.826667pt;}
.y155{bottom:845.453333pt;}
.y115{bottom:845.798667pt;}
.y83{bottom:849.786667pt;}
.y2c{bottom:850.688000pt;}
.y1e2{bottom:850.764000pt;}
.y4{bottom:852.753333pt;}
.y154{bottom:865.372000pt;}
.y114{bottom:865.717333pt;}
.y82{bottom:870.050667pt;}
.y2b{bottom:870.952000pt;}
.y113{bottom:885.636000pt;}
.y3{bottom:885.776000pt;}
.y81{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.y153{bottom:891.960000pt;}
.y80{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.y112{bottom:912.224000pt;}
.y7f{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.y7e{bottom:951.106667pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.h1{height:31.880400pt;}
.h6{height:32.900710pt;}
.h5{height:36.556100pt;}
.h4{height:36.768636pt;}
.ha{height:41.917344pt;}
.h8{height:42.039552pt;}
.hc{height:42.283968pt;}
.hd{height:46.336759pt;}
.h3{height:47.523004pt;}
.h7{height:47.799300pt;}
.h2{height:63.169041pt;}
.hb{height:81.251067pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:110.849333pt;}
.x14{left:112.240000pt;}
.xc{left:113.385333pt;}
.x31{left:116.357333pt;}
.x15{left:121.356000pt;}
.x37{left:122.897333pt;}
.x1c{left:127.812000pt;}
.x3d{left:128.966667pt;}
.x3c{left:130.242667pt;}
.x4{left:132.398667pt;}
.x3{left:133.432000pt;}
.x16{left:134.632000pt;}
.xd{left:136.062667pt;}
.x33{left:138.326667pt;}
.x32{left:139.602667pt;}
.x7{left:158.261333pt;}
.x2f{left:161.004000pt;}
.xa{left:162.052000pt;}
.x1d{left:169.761333pt;}
.x1b{left:178.614667pt;}
.x38{left:179.790667pt;}
.x18{left:187.993333pt;}
.x1a{left:191.178667pt;}
.x30{left:205.346667pt;}
.x2d{left:209.174667pt;}
.x9{left:210.897333pt;}
.x34{left:222.209333pt;}
.x21{left:248.333333pt;}
.x39{left:278.670667pt;}
.x12{left:280.261333pt;}
.x26{left:307.656000pt;}
.x2c{left:330.648000pt;}
.x6{left:345.334667pt;}
.x22{left:357.097333pt;}
.xf{left:359.442667pt;}
.x5{left:360.444000pt;}
.x8{left:364.560000pt;}
.xb{left:384.740000pt;}
.x27{left:394.242667pt;}
.x19{left:397.898667pt;}
.x10{left:402.290667pt;}
.x23{left:411.662667pt;}
.xe{left:412.752000pt;}
.x13{left:435.429333pt;}
.x2e{left:444.681333pt;}
.x17{left:465.214667pt;}
.x1f{left:466.129333pt;}
.x3a{left:492.206667pt;}
.x2{left:510.021333pt;}
.x11{left:513.840000pt;}
.x35{left:527.656000pt;}
.x28{left:529.389333pt;}
.x3b{left:530.716000pt;}
.x36{left:535.293333pt;}
.x24{left:555.218667pt;}
.x1e{left:574.449333pt;}
.x2a{left:592.317333pt;}
.x20{left:610.174667pt;}
.x1{left:618.953333pt;}
.x29{left:623.614667pt;}
.x25{left:650.416000pt;}
}




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