
    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_1deb3fd504d6265917656ac1.woff2')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_838f0da85973677966da503c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2bc0cd3c54e68dc1d8f91f8a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;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_f8027b5a910efc4549d09f66.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.156000;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_e2abe6f088125c9047c33958.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.152000;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;}
.m5{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);}
.m25{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);}
.m1f{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);}
.m12{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m19{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);}
.m18{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.ma{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);}
.m21{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);}
.m28{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);}
.m29{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);}
.m22{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);}
.m16{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);}
.m8{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);}
.me{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);}
.mb{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);}
.m14{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);}
.mc{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);}
.m10{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);}
.m13{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);}
.m1c{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);}
.m1a{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);}
.mf{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);}
.m9{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);}
.m1d{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);}
.m27{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);}
.m26{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);}
.m15{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);}
.m17{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);}
.m2{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);}
.m23{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);}
.m20{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);}
.m4{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);}
.m11{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);}
.md{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6{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;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.001425px;}
.ls10{letter-spacing:0.002490px;}
.ls3{letter-spacing:2.367124px;}
.lsa{letter-spacing:3.227896px;}
.ls14{letter-spacing:4.597905px;}
.ls9{letter-spacing:5.134490px;}
.ls6{letter-spacing:5.240490px;}
.lsb{letter-spacing:23.027938px;}
.ls16{letter-spacing:23.180999px;}
.lse{letter-spacing:23.354834px;}
.ls1{letter-spacing:23.383163px;}
.lsd{letter-spacing:23.389163px;}
.ls19{letter-spacing:23.438759px;}
.ls15{letter-spacing:23.536304px;}
.lsc{letter-spacing:23.670888px;}
.ls13{letter-spacing:23.836724px;}
.lsf{letter-spacing:23.963169px;}
.ls17{letter-spacing:25.700927px;}
.ls4{letter-spacing:30.412692px;}
.ls12{letter-spacing:31.177163px;}
.ls18{letter-spacing:31.183163px;}
.ls7{letter-spacing:31.389665px;}
.ls11{letter-spacing:31.558930px;}
.ls2{letter-spacing:31.642104px;}
.ls5{letter-spacing:31.836221px;}
.ls8{letter-spacing:34.847986px;}
.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;}
}
.ws1b{word-spacing:-71.731020px;}
.wsb3{word-spacing:-54.013458px;}
.ws3{word-spacing:-53.798250px;}
.wscb{word-spacing:-51.574603px;}
.wsc8{word-spacing:-51.072486px;}
.wsd9{word-spacing:-49.781328px;}
.wsd8{word-spacing:-49.637866px;}
.wsd2{word-spacing:-49.422673px;}
.wsa6{word-spacing:-49.135749px;}
.ws8e{word-spacing:-48.346707px;}
.wsdc{word-spacing:-48.131514px;}
.wsc9{word-spacing:-47.988052px;}
.ws25{word-spacing:-47.820660px;}
.ws9c{word-spacing:-47.270742px;}
.wsa4{word-spacing:-47.055549px;}
.wsa7{word-spacing:-46.983818px;}
.wscc{word-spacing:-46.840356px;}
.ws27{word-spacing:-46.768625px;}
.wsc1{word-spacing:-46.696894px;}
.ws29{word-spacing:-46.625163px;}
.wsb6{word-spacing:-46.553432px;}
.wsa8{word-spacing:-46.481701px;}
.wsb5{word-spacing:-46.409970px;}
.wsa9{word-spacing:-46.338239px;}
.ws99{word-spacing:-46.266508px;}
.ws8d{word-spacing:-46.194777px;}
.wsce{word-spacing:-46.123046px;}
.ws49{word-spacing:-46.051315px;}
.wsd3{word-spacing:-45.979584px;}
.ws1a{word-spacing:-45.334005px;}
.wsbc{word-spacing:-45.190543px;}
.ws46{word-spacing:-44.831888px;}
.wsd4{word-spacing:-44.760156px;}
.wsd6{word-spacing:-44.329770px;}
.wsc2{word-spacing:-44.258039px;}
.ws95{word-spacing:-43.612460px;}
.wsc7{word-spacing:-42.679957px;}
.wscf{word-spacing:-42.102643px;}
.ws28{word-spacing:-41.890916px;}
.ws9f{word-spacing:-41.388799px;}
.ws39{word-spacing:-41.317068px;}
.wsc5{word-spacing:-40.671488px;}
.ws90{word-spacing:-39.667254px;}
.wsc0{word-spacing:-39.595523px;}
.wsa2{word-spacing:-39.452061px;}
.ws9b{word-spacing:-39.093406px;}
.wsbb{word-spacing:-38.806482px;}
.wsad{word-spacing:-38.376096px;}
.ws92{word-spacing:-37.515323px;}
.wsc4{word-spacing:-37.371861px;}
.wsab{word-spacing:-36.941475px;}
.wsba{word-spacing:-36.654551px;}
.ws94{word-spacing:-35.650317px;}
.ws98{word-spacing:-35.148200px;}
.ws96{word-spacing:-35.076469px;}
.wsf{word-spacing:-32.527284px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.ws24{word-spacing:-23.336045px;}
.wse{word-spacing:-19.152182px;}
.wsb2{word-spacing:-18.650065px;}
.wsbe{word-spacing:-18.147948px;}
.ws33{word-spacing:-18.004486px;}
.ws42{word-spacing:-17.861024px;}
.ws5d{word-spacing:-17.717562px;}
.wsbf{word-spacing:-17.287176px;}
.ws34{word-spacing:-16.713328px;}
.ws40{word-spacing:-16.641597px;}
.ws8c{word-spacing:-16.569866px;}
.wsca{word-spacing:-16.426404px;}
.ws6b{word-spacing:-16.354673px;}
.ws4c{word-spacing:-16.211211px;}
.ws1c{word-spacing:-16.139479px;}
.ws86{word-spacing:-16.067748px;}
.ws8a{word-spacing:-15.996017px;}
.wsb4{word-spacing:-15.924286px;}
.ws58{word-spacing:-15.852555px;}
.ws68{word-spacing:-15.780824px;}
.ws64{word-spacing:-15.709093px;}
.wsb1{word-spacing:-15.565631px;}
.ws77{word-spacing:-15.206976px;}
.ws17{word-spacing:-14.991783px;}
.ws76{word-spacing:-14.920052px;}
.wsda{word-spacing:-14.776590px;}
.ws48{word-spacing:-14.704859px;}
.wsd7{word-spacing:-14.561397px;}
.ws57{word-spacing:-14.489666px;}
.ws4b{word-spacing:-14.346204px;}
.ws5a{word-spacing:-14.274473px;}
.ws55{word-spacing:-14.202742px;}
.wsa5{word-spacing:-14.131011px;}
.ws3f{word-spacing:-14.059280px;}
.wsaf{word-spacing:-13.987549px;}
.ws81{word-spacing:-13.844087px;}
.wsd1{word-spacing:-13.700625px;}
.ws2e{word-spacing:-13.628894px;}
.ws73{word-spacing:-13.485432px;}
.ws69{word-spacing:-13.413701px;}
.wsd{word-spacing:-13.341970px;}
.wsd0{word-spacing:-13.270239px;}
.ws54{word-spacing:-13.198508px;}
.wsdb{word-spacing:-13.126777px;}
.ws1f{word-spacing:-13.055046px;}
.ws82{word-spacing:-12.983315px;}
.ws5f{word-spacing:-12.911584px;}
.ws7b{word-spacing:-12.768122px;}
.ws2f{word-spacing:-12.696391px;}
.ws3b{word-spacing:-12.624660px;}
.ws70{word-spacing:-12.552928px;}
.ws84{word-spacing:-12.481197px;}
.ws30{word-spacing:-12.337735px;}
.ws3e{word-spacing:-12.266004px;}
.wsc{word-spacing:-12.194273px;}
.ws20{word-spacing:-12.122542px;}
.ws6{word-spacing:-12.050811px;}
.ws43{word-spacing:-11.979080px;}
.ws26{word-spacing:-11.907349px;}
.ws16{word-spacing:-11.835618px;}
.ws4{word-spacing:-11.763887px;}
.ws14{word-spacing:-11.692156px;}
.ws19{word-spacing:-11.620425px;}
.ws9{word-spacing:-11.548694px;}
.ws13{word-spacing:-11.476963px;}
.ws37{word-spacing:-11.405232px;}
.ws4a{word-spacing:-11.333501px;}
.ws47{word-spacing:-11.261770px;}
.ws2d{word-spacing:-11.190039px;}
.ws79{word-spacing:-11.118308px;}
.ws38{word-spacing:-11.046577px;}
.ws12{word-spacing:-10.974846px;}
.ws7{word-spacing:-10.903115px;}
.ws3d{word-spacing:-10.759653px;}
.ws88{word-spacing:-10.687922px;}
.ws6f{word-spacing:-10.616191px;}
.wsa{word-spacing:-10.544460px;}
.ws5c{word-spacing:-10.472729px;}
.ws59{word-spacing:-10.329267px;}
.ws74{word-spacing:-10.257536px;}
.ws80{word-spacing:-10.185805px;}
.ws44{word-spacing:-10.114074px;}
.ws5{word-spacing:-10.042343px;}
.ws35{word-spacing:-9.970612px;}
.ws7e{word-spacing:-9.898881px;}
.ws56{word-spacing:-9.827150px;}
.ws6d{word-spacing:-9.755419px;}
.ws4f{word-spacing:-9.683688px;}
.ws31{word-spacing:-9.611957px;}
.ws6a{word-spacing:-9.540226px;}
.wsc3{word-spacing:-9.468495px;}
.ws8f{word-spacing:-9.325033px;}
.ws50{word-spacing:-9.109840px;}
.ws89{word-spacing:-9.038109px;}
.ws7c{word-spacing:-8.966378px;}
.ws62{word-spacing:-8.894646px;}
.ws85{word-spacing:-8.822915px;}
.ws66{word-spacing:-8.679453px;}
.ws45{word-spacing:-8.607722px;}
.ws1d{word-spacing:-8.535991px;}
.ws87{word-spacing:-8.464260px;}
.ws32{word-spacing:-8.320798px;}
.ws2b{word-spacing:-8.177336px;}
.ws41{word-spacing:-8.105605px;}
.ws51{word-spacing:-8.033874px;}
.ws10{word-spacing:-7.890412px;}
.ws4e{word-spacing:-7.746950px;}
.ws83{word-spacing:-7.675219px;}
.ws75{word-spacing:-7.603488px;}
.ws67{word-spacing:-7.531757px;}
.ws8b{word-spacing:-7.460026px;}
.ws5b{word-spacing:-7.388295px;}
.ws7a{word-spacing:-7.316564px;}
.ws22{word-spacing:-7.173102px;}
.ws4d{word-spacing:-7.101371px;}
.ws2c{word-spacing:-6.957909px;}
.ws9e{word-spacing:-6.886178px;}
.ws2a{word-spacing:-6.814447px;}
.ws7f{word-spacing:-6.742716px;}
.ws72{word-spacing:-6.670985px;}
.ws65{word-spacing:-6.599254px;}
.ws7d{word-spacing:-6.384061px;}
.ws8{word-spacing:-6.312330px;}
.ws60{word-spacing:-6.168868px;}
.ws36{word-spacing:-6.097137px;}
.ws21{word-spacing:-5.953675px;}
.ws1e{word-spacing:-5.738482px;}
.ws3a{word-spacing:-5.451558px;}
.ws18{word-spacing:-5.308095px;}
.ws6e{word-spacing:-5.236364px;}
.wsa1{word-spacing:-5.164633px;}
.ws23{word-spacing:-5.021171px;}
.ws63{word-spacing:-4.877709px;}
.ws71{word-spacing:-4.805978px;}
.ws9a{word-spacing:-4.734247px;}
.ws53{word-spacing:-4.662516px;}
.ws52{word-spacing:-4.447323px;}
.ws5e{word-spacing:-4.375592px;}
.ws3c{word-spacing:-4.160399px;}
.wsb8{word-spacing:-3.968822px;}
.wsae{word-spacing:-3.968111px;}
.wsb0{word-spacing:-3.966671px;}
.ws78{word-spacing:-3.945206px;}
.ws9d{word-spacing:-3.730013px;}
.wsb7{word-spacing:-3.586551px;}
.wsb{word-spacing:-3.443089px;}
.wsa3{word-spacing:-3.371358px;}
.ws61{word-spacing:-3.299627px;}
.ws15{word-spacing:-3.227896px;}
.wsd5{word-spacing:-2.869241px;}
.wsaa{word-spacing:-2.725779px;}
.ws6c{word-spacing:-2.510586px;}
.wsb9{word-spacing:-2.438855px;}
.wscd{word-spacing:-2.367124px;}
.wsa0{word-spacing:-2.223662px;}
.ws93{word-spacing:-1.506351px;}
.wsac{word-spacing:-0.358655px;}
.ws11{word-spacing:0.000000px;}
.wsbd{word-spacing:0.717310px;}
.ws97{word-spacing:1.793275px;}
.wsc6{word-spacing:13.413701px;}
.ws91{word-spacing:16.333726px;}
._1e{margin-left:-9.731510px;}
._4{margin-left:-8.091257px;}
._7{margin-left:-5.881944px;}
._1{margin-left:-4.208218px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.338978px;}
._8{width:1.291158px;}
._5{width:2.630136px;}
._13{width:4.447321px;}
._12{width:6.407968px;}
._29{width:9.204452px;}
._28{width:10.326385px;}
._27{width:17.574100px;}
._16{width:19.439106px;}
._21{width:20.443338px;}
._1a{width:21.447576px;}
._2{width:22.523531px;}
._d{width:24.484178px;}
._19{width:25.799276px;}
._10{width:27.616443px;}
._c{width:28.668497px;}
._14{width:29.696644px;}
._a{width:30.796516px;}
._f{width:32.350691px;}
._18{width:33.585542px;}
._e{width:34.669995px;}
._1d{width:35.793779px;}
._17{width:37.706607px;}
._15{width:39.165137px;}
._1f{width:41.030143px;}
._6{width:43.000343px;}
._1c{width:44.568877px;}
._2a{width:45.939636px;}
._20{width:46.959907px;}
._9{width:48.490170px;}
._25{width:51.000756px;}
._11{width:52.076721px;}
._1b{width:53.869996px;}
._23{width:55.256792px;}
._b{width:56.954430px;}
._26{width:59.871490px;}
._22{width:61.986175px;}
._24{width:64.868120px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:47.820660px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y3c{bottom:43.525500px;}
.y20{bottom:57.723000px;}
.y1f{bottom:71.919000px;}
.ya6{bottom:107.647500px;}
.y6f{bottom:115.119000px;}
.yec{bottom:115.866000px;}
.ycd{bottom:116.613000px;}
.yd4{bottom:122.217000px;}
.y4d{bottom:122.592000px;}
.yf0{bottom:124.833000px;}
.yb2{bottom:125.580000px;}
.yc4{bottom:127.074000px;}
.y9d{bottom:130.063500px;}
.y3b{bottom:131.184000px;}
.y80{bottom:131.557500px;}
.y1e{bottom:133.600500px;}
.y102{bottom:133.798500px;}
.ya5{bottom:140.151000px;}
.y113{bottom:142.765500px;}
.y6e{bottom:147.622500px;}
.yfa{bottom:148.369500px;}
.yad{bottom:149.116500px;}
.yd3{bottom:154.720500px;}
.y4c{bottom:155.094000px;}
.yeb{bottom:157.336500px;}
.yb1{bottom:158.083500px;}
.yc3{bottom:159.577500px;}
.y9c{bottom:162.567000px;}
.y3a{bottom:163.687500px;}
.y7f{bottom:164.061000px;}
.y1d{bottom:166.102500px;}
.y101{bottom:166.302000px;}
.y112{bottom:175.269000px;}
.ya4{bottom:175.642500px;}
.y6d{bottom:180.126000px;}
.yac{bottom:181.620000px;}
.y4b{bottom:187.597500px;}
.yea{bottom:189.838500px;}
.yb0{bottom:192.081000px;}
.y9b{bottom:195.069000px;}
.y39{bottom:196.191000px;}
.y72{bottom:196.564500px;}
.y100{bottom:198.805500px;}
.y1c{bottom:207.573000px;}
.y111{bottom:207.772500px;}
.y6c{bottom:212.628000px;}
.yab{bottom:214.123500px;}
.y4a{bottom:220.101000px;}
.yf9{bottom:222.342000px;}
.yc2{bottom:224.584500px;}
.y9a{bottom:227.572500px;}
.yd2{bottom:228.693000px;}
.y71{bottom:229.066500px;}
.ye9{bottom:231.309000px;}
.yaf{bottom:236.539500px;}
.y38{bottom:237.660000px;}
.y1b{bottom:240.075000px;}
.y110{bottom:240.274500px;}
.y6b{bottom:245.131500px;}
.yaa{bottom:246.625500px;}
.y49{bottom:252.603000px;}
.yf8{bottom:254.845500px;}
.yc1{bottom:257.086500px;}
.yd1{bottom:261.196500px;}
.y70{bottom:261.570000px;}
.ye8{bottom:263.811000px;}
.y99{bottom:269.041500px;}
.y37{bottom:270.163500px;}
.y7e{bottom:270.537000px;}
.y1a{bottom:272.578500px;}
.yef{bottom:272.778000px;}
.y6a{bottom:277.635000px;}
.ya9{bottom:279.129000px;}
.y10f{bottom:281.745000px;}
.y48{bottom:285.106500px;}
.yc0{bottom:289.590000px;}
.y53{bottom:294.073500px;}
.yf7{bottom:296.314500px;}
.y98{bottom:301.545000px;}
.y36{bottom:302.665500px;}
.y7d{bottom:303.039000px;}
.y19{bottom:305.082000px;}
.ye7{bottom:305.281500px;}
.y69{bottom:310.138500px;}
.ya8{bottom:311.632500px;}
.y10e{bottom:314.247000px;}
.y47{bottom:317.610000px;}
.ycc{bottom:320.598000px;}
.ybf{bottom:322.093500px;}
.y52{bottom:326.577000px;}
.yf6{bottom:328.818000px;}
.y97{bottom:334.048500px;}
.y35{bottom:335.169000px;}
.y7c{bottom:335.542500px;}
.y18{bottom:337.585500px;}
.ye6{bottom:337.785000px;}
.y68{bottom:342.640500px;}
.ya7{bottom:347.124000px;}
.ya3{bottom:350.113500px;}
.ycb{bottom:353.101500px;}
.ybe{bottom:354.595500px;}
.y10d{bottom:355.717500px;}
.y46{bottom:359.079000px;}
.yf5{bottom:361.321500px;}
.y96{bottom:366.552000px;}
.y34{bottom:367.672500px;}
.y7b{bottom:368.046000px;}
.y17{bottom:370.087500px;}
.y67{bottom:375.144000px;}
.ye5{bottom:379.254000px;}
.yca{bottom:385.605000px;}
.ybd{bottom:387.099000px;}
.y45{bottom:391.582500px;}
.y10c{bottom:397.186500px;}
.y95{bottom:399.054000px;}
.y33{bottom:400.176000px;}
.y7a{bottom:400.549500px;}
.y16{bottom:402.591000px;}
.yf4{bottom:402.790500px;}
.y66{bottom:407.647500px;}
.yd0{bottom:409.141500px;}
.ye4{bottom:411.757500px;}
.yc9{bottom:418.108500px;}
.ybc{bottom:419.602500px;}
.y44{bottom:424.086000px;}
.y10b{bottom:429.690000px;}
.y94{bottom:431.557500px;}
.y79{bottom:433.051500px;}
.y15{bottom:435.094500px;}
.yf3{bottom:435.294000px;}
.y65{bottom:440.151000px;}
.y32{bottom:441.645000px;}
.ye3{bottom:444.259500px;}
.yc8{bottom:450.610500px;}
.yff{bottom:453.226500px;}
.y43{bottom:456.589500px;}
.ybb{bottom:461.071500px;}
.y10a{bottom:462.192000px;}
.y93{bottom:464.061000px;}
.y78{bottom:465.555000px;}
.y14{bottom:467.598000px;}
.y64{bottom:472.653000px;}
.y31{bottom:474.148500px;}
.yf2{bottom:476.763000px;}
.yc7{bottom:483.114000px;}
.ye2{bottom:485.730000px;}
.y42{bottom:489.091500px;}
.yba{bottom:493.575000px;}
.y92{bottom:496.564500px;}
.y77{bottom:498.058500px;}
.y13{bottom:500.100000px;}
.y109{bottom:503.662500px;}
.y63{bottom:505.156500px;}
.y30{bottom:506.650500px;}
.yc6{bottom:515.617500px;}
.ye1{bottom:518.232000px;}
.y41{bottom:521.595000px;}
.yb9{bottom:526.078500px;}
.yfe{bottom:527.199000px;}
.y91{bottom:529.066500px;}
.y76{bottom:530.562000px;}
.y12{bottom:532.603500px;}
.y108{bottom:536.166000px;}
.y62{bottom:537.660000px;}
.y2f{bottom:542.143500px;}
.ycf{bottom:548.121000px;}
.ye0{bottom:550.735500px;}
.yc5{bottom:551.109000px;}
.y40{bottom:554.098500px;}
.yb8{bottom:558.582000px;}
.yfd{bottom:559.702500px;}
.y90{bottom:561.570000px;}
.y75{bottom:563.064000px;}
.y107{bottom:568.668000px;}
.y11{bottom:574.072500px;}
.y61{bottom:579.129000px;}
.yce{bottom:583.612500px;}
.y2e{bottom:586.600500px;}
.yb7{bottom:591.084000px;}
.ydf{bottom:592.204500px;}
.y8f{bottom:594.073500px;}
.y74{bottom:595.567500px;}
.yfc{bottom:601.171500px;}
.y106{bottom:610.138500px;}
.y60{bottom:611.632500px;}
.y10{bottom:615.543000px;}
.y2d{bottom:619.104000px;}
.yb6{bottom:623.587500px;}
.yde{bottom:624.708000px;}
.y8e{bottom:626.577000px;}
.y73{bottom:628.071000px;}
.yfb{bottom:633.675000px;}
.y105{bottom:642.640500px;}
.y5f{bottom:644.136000px;}
.yf{bottom:645.891000px;}
.y51{bottom:651.607500px;}
.yb5{bottom:656.091000px;}
.ydd{bottom:657.211500px;}
.yae{bottom:659.079000px;}
.y2c{bottom:660.574500px;}
.yee{bottom:666.178500px;}
.y8d{bottom:668.046000px;}
.ye{bottom:674.284500px;}
.y104{bottom:675.144000px;}
.y5e{bottom:676.638000px;}
.y50{bottom:684.111000px;}
.yb4{bottom:688.593000px;}
.ydc{bottom:689.715000px;}
.y2b{bottom:693.076500px;}
.yed{bottom:698.680500px;}
.y8c{bottom:700.549500px;}
.y5d{bottom:709.141500px;}
.yd{bottom:710.170500px;}
.y4f{bottom:716.613000px;}
.yb3{bottom:722.592000px;}
.y2a{bottom:725.580000px;}
.ydb{bottom:731.184000px;}
.y8b{bottom:733.051500px;}
.ya2{bottom:734.547000px;}
.y116{bottom:740.151000px;}
.y5c{bottom:741.645000px;}
.yc{bottom:746.056500px;}
.y4e{bottom:749.116500px;}
.y29{bottom:758.083500px;}
.yda{bottom:763.687500px;}
.y8a{bottom:765.555000px;}
.ya1{bottom:767.049000px;}
.y115{bottom:772.653000px;}
.y5b{bottom:774.148500px;}
.yb{bottom:774.450000px;}
.y103{bottom:781.620000px;}
.y28{bottom:790.587000px;}
.y89{bottom:798.058500px;}
.ya0{bottom:799.552500px;}
.yd9{bottom:805.156500px;}
.ya{bottom:810.319500px;}
.y114{bottom:814.123500px;}
.y5a{bottom:815.617500px;}
.y27{bottom:823.089000px;}
.y88{bottom:830.562000px;}
.y9f{bottom:832.056000px;}
.yd8{bottom:837.660000px;}
.y9{bottom:846.187500px;}
.yf1{bottom:846.625500px;}
.y59{bottom:848.121000px;}
.y26{bottom:855.592500px;}
.y87{bottom:863.064000px;}
.y9e{bottom:864.559500px;}
.yd7{bottom:879.129000px;}
.y58{bottom:880.623000px;}
.y25{bottom:888.096000px;}
.y8{bottom:889.216500px;}
.y86{bottom:895.567500px;}
.y81{bottom:897.061500px;}
.yd6{bottom:911.632500px;}
.y57{bottom:913.126500px;}
.y24{bottom:920.598000px;}
.y85{bottom:928.071000px;}
.y7{bottom:929.565000px;}
.yd5{bottom:944.136000px;}
.y56{bottom:945.630000px;}
.y23{bottom:953.101500px;}
.y84{bottom:960.574500px;}
.y3f{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y55{bottom:979.627500px;}
.y22{bottom:985.605000px;}
.y83{bottom:993.076500px;}
.y3e{bottom:994.572000px;}
.y54{bottom:1015.119000px;}
.y21{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y82{bottom:1025.580000px;}
.y3d{bottom:1027.074000px;}
.y4{bottom:1059.577500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h1{height:35.865495px;}
.h4{height:50.498638px;}
.h2{height:60.598349px;}
.h5{height:64.629649px;}
.h3{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:104.254500px;}
.x10{left:106.299000px;}
.x6{left:116.305500px;}
.x5{left:132.456000px;}
.x4{left:137.007000px;}
.x14{left:149.086500px;}
.x13{left:151.131000px;}
.x17{left:156.910500px;}
.x16{left:158.542500px;}
.x15{left:160.299000px;}
.x7{left:176.871000px;}
.x8{left:286.071000px;}
.xf{left:355.689000px;}
.xe{left:465.526500px;}
.xb{left:515.344500px;}
.xa{left:593.530500px;}
.x9{left:597.405000px;}
.xd{left:601.887000px;}
.x3{left:616.269000px;}
.xc{left:617.991000px;}
.x2{left:648.775500px;}
.x1{left:692.794500px;}
.x11{left:785.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.001267pt;}
.ls10{letter-spacing:0.002213pt;}
.ls3{letter-spacing:2.104110pt;}
.lsa{letter-spacing:2.869241pt;}
.ls14{letter-spacing:4.087026pt;}
.ls9{letter-spacing:4.563991pt;}
.ls6{letter-spacing:4.658213pt;}
.lsb{letter-spacing:20.469278pt;}
.ls16{letter-spacing:20.605333pt;}
.lse{letter-spacing:20.759853pt;}
.ls1{letter-spacing:20.785033pt;}
.lsd{letter-spacing:20.790367pt;}
.ls19{letter-spacing:20.834453pt;}
.ls15{letter-spacing:20.921159pt;}
.lsc{letter-spacing:21.040790pt;}
.ls13{letter-spacing:21.188199pt;}
.lsf{letter-spacing:21.300594pt;}
.ls17{letter-spacing:22.845269pt;}
.ls4{letter-spacing:27.033504pt;}
.ls12{letter-spacing:27.713033pt;}
.ls18{letter-spacing:27.718367pt;}
.ls7{letter-spacing:27.901925pt;}
.ls11{letter-spacing:28.052382pt;}
.ls2{letter-spacing:28.126314pt;}
.ls5{letter-spacing:28.298863pt;}
.ls8{letter-spacing:30.975988pt;}
.ws1b{word-spacing:-63.760907pt;}
.wsb3{word-spacing:-48.011963pt;}
.ws3{word-spacing:-47.820667pt;}
.wscb{word-spacing:-45.844092pt;}
.wsc8{word-spacing:-45.397766pt;}
.wsd9{word-spacing:-44.250069pt;}
.wsd8{word-spacing:-44.122547pt;}
.wsd2{word-spacing:-43.931265pt;}
.wsa6{word-spacing:-43.676221pt;}
.ws8e{word-spacing:-42.974851pt;}
.wsdc{word-spacing:-42.783568pt;}
.wsc9{word-spacing:-42.656047pt;}
.ws25{word-spacing:-42.507253pt;}
.ws9c{word-spacing:-42.018437pt;}
.wsa4{word-spacing:-41.827155pt;}
.wsa7{word-spacing:-41.763394pt;}
.wscc{word-spacing:-41.635872pt;}
.ws27{word-spacing:-41.572111pt;}
.wsc1{word-spacing:-41.508350pt;}
.ws29{word-spacing:-41.444589pt;}
.wsb6{word-spacing:-41.380828pt;}
.wsa8{word-spacing:-41.317068pt;}
.wsb5{word-spacing:-41.253307pt;}
.wsa9{word-spacing:-41.189546pt;}
.ws99{word-spacing:-41.125785pt;}
.ws8d{word-spacing:-41.062024pt;}
.wsce{word-spacing:-40.998263pt;}
.ws49{word-spacing:-40.934502pt;}
.wsd3{word-spacing:-40.870741pt;}
.ws1a{word-spacing:-40.296893pt;}
.wsbc{word-spacing:-40.169371pt;}
.ws46{word-spacing:-39.850567pt;}
.wsd4{word-spacing:-39.786806pt;}
.wsd6{word-spacing:-39.404240pt;}
.wsc2{word-spacing:-39.340479pt;}
.ws95{word-spacing:-38.766631pt;}
.wsc7{word-spacing:-37.937739pt;}
.wscf{word-spacing:-37.424572pt;}
.ws28{word-spacing:-37.236369pt;}
.ws9f{word-spacing:-36.790043pt;}
.ws39{word-spacing:-36.726282pt;}
.wsc5{word-spacing:-36.152434pt;}
.ws90{word-spacing:-35.259781pt;}
.wsc0{word-spacing:-35.196020pt;}
.wsa2{word-spacing:-35.068499pt;}
.ws9b{word-spacing:-34.749694pt;}
.wsbb{word-spacing:-34.494651pt;}
.wsad{word-spacing:-34.112085pt;}
.ws92{word-spacing:-33.346954pt;}
.wsc4{word-spacing:-33.219432pt;}
.wsab{word-spacing:-32.836867pt;}
.wsba{word-spacing:-32.581823pt;}
.ws94{word-spacing:-31.689171pt;}
.ws98{word-spacing:-31.242844pt;}
.ws96{word-spacing:-31.179083pt;}
.wsf{word-spacing:-28.913141pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.ws24{word-spacing:-20.743151pt;}
.wse{word-spacing:-17.024162pt;}
.wsb2{word-spacing:-16.577836pt;}
.wsbe{word-spacing:-16.131509pt;}
.ws33{word-spacing:-16.003988pt;}
.ws42{word-spacing:-15.876466pt;}
.ws5d{word-spacing:-15.748944pt;}
.wsbf{word-spacing:-15.366379pt;}
.ws34{word-spacing:-14.856291pt;}
.ws40{word-spacing:-14.792530pt;}
.ws8c{word-spacing:-14.728769pt;}
.wsca{word-spacing:-14.601248pt;}
.ws6b{word-spacing:-14.537487pt;}
.ws4c{word-spacing:-14.409965pt;}
.ws1c{word-spacing:-14.346204pt;}
.ws86{word-spacing:-14.282443pt;}
.ws8a{word-spacing:-14.218682pt;}
.wsb4{word-spacing:-14.154921pt;}
.ws58{word-spacing:-14.091160pt;}
.ws68{word-spacing:-14.027399pt;}
.ws64{word-spacing:-13.963639pt;}
.wsb1{word-spacing:-13.836117pt;}
.ws77{word-spacing:-13.517312pt;}
.ws17{word-spacing:-13.326029pt;}
.ws76{word-spacing:-13.262269pt;}
.wsda{word-spacing:-13.134747pt;}
.ws48{word-spacing:-13.070986pt;}
.wsd7{word-spacing:-12.943464pt;}
.ws57{word-spacing:-12.879703pt;}
.ws4b{word-spacing:-12.752181pt;}
.ws5a{word-spacing:-12.688420pt;}
.ws55{word-spacing:-12.624660pt;}
.wsa5{word-spacing:-12.560899pt;}
.ws3f{word-spacing:-12.497138pt;}
.wsaf{word-spacing:-12.433377pt;}
.ws81{word-spacing:-12.305855pt;}
.wsd1{word-spacing:-12.178333pt;}
.ws2e{word-spacing:-12.114572pt;}
.ws73{word-spacing:-11.987050pt;}
.ws69{word-spacing:-11.923290pt;}
.wsd{word-spacing:-11.859529pt;}
.wsd0{word-spacing:-11.795768pt;}
.ws54{word-spacing:-11.732007pt;}
.wsdb{word-spacing:-11.668246pt;}
.ws1f{word-spacing:-11.604485pt;}
.ws82{word-spacing:-11.540724pt;}
.ws5f{word-spacing:-11.476963pt;}
.ws7b{word-spacing:-11.349441pt;}
.ws2f{word-spacing:-11.285680pt;}
.ws3b{word-spacing:-11.221920pt;}
.ws70{word-spacing:-11.158159pt;}
.ws84{word-spacing:-11.094398pt;}
.ws30{word-spacing:-10.966876pt;}
.ws3e{word-spacing:-10.903115pt;}
.wsc{word-spacing:-10.839354pt;}
.ws20{word-spacing:-10.775593pt;}
.ws6{word-spacing:-10.711832pt;}
.ws43{word-spacing:-10.648071pt;}
.ws26{word-spacing:-10.584311pt;}
.ws16{word-spacing:-10.520550pt;}
.ws4{word-spacing:-10.456789pt;}
.ws14{word-spacing:-10.393028pt;}
.ws19{word-spacing:-10.329267pt;}
.ws9{word-spacing:-10.265506pt;}
.ws13{word-spacing:-10.201745pt;}
.ws37{word-spacing:-10.137984pt;}
.ws4a{word-spacing:-10.074223pt;}
.ws47{word-spacing:-10.010462pt;}
.ws2d{word-spacing:-9.946701pt;}
.ws79{word-spacing:-9.882941pt;}
.ws38{word-spacing:-9.819180pt;}
.ws12{word-spacing:-9.755419pt;}
.ws7{word-spacing:-9.691658pt;}
.ws3d{word-spacing:-9.564136pt;}
.ws88{word-spacing:-9.500375pt;}
.ws6f{word-spacing:-9.436614pt;}
.wsa{word-spacing:-9.372853pt;}
.ws5c{word-spacing:-9.309092pt;}
.ws59{word-spacing:-9.181571pt;}
.ws74{word-spacing:-9.117810pt;}
.ws80{word-spacing:-9.054049pt;}
.ws44{word-spacing:-8.990288pt;}
.ws5{word-spacing:-8.926527pt;}
.ws35{word-spacing:-8.862766pt;}
.ws7e{word-spacing:-8.799005pt;}
.ws56{word-spacing:-8.735244pt;}
.ws6d{word-spacing:-8.671483pt;}
.ws4f{word-spacing:-8.607722pt;}
.ws31{word-spacing:-8.543961pt;}
.ws6a{word-spacing:-8.480201pt;}
.wsc3{word-spacing:-8.416440pt;}
.ws8f{word-spacing:-8.288918pt;}
.ws50{word-spacing:-8.097635pt;}
.ws89{word-spacing:-8.033874pt;}
.ws7c{word-spacing:-7.970113pt;}
.ws62{word-spacing:-7.906352pt;}
.ws85{word-spacing:-7.842592pt;}
.ws66{word-spacing:-7.715070pt;}
.ws45{word-spacing:-7.651309pt;}
.ws1d{word-spacing:-7.587548pt;}
.ws87{word-spacing:-7.523787pt;}
.ws32{word-spacing:-7.396265pt;}
.ws2b{word-spacing:-7.268743pt;}
.ws41{word-spacing:-7.204982pt;}
.ws51{word-spacing:-7.141222pt;}
.ws10{word-spacing:-7.013700pt;}
.ws4e{word-spacing:-6.886178pt;}
.ws83{word-spacing:-6.822417pt;}
.ws75{word-spacing:-6.758656pt;}
.ws67{word-spacing:-6.694895pt;}
.ws8b{word-spacing:-6.631134pt;}
.ws5b{word-spacing:-6.567373pt;}
.ws7a{word-spacing:-6.503612pt;}
.ws22{word-spacing:-6.376091pt;}
.ws4d{word-spacing:-6.312330pt;}
.ws2c{word-spacing:-6.184808pt;}
.ws9e{word-spacing:-6.121047pt;}
.ws2a{word-spacing:-6.057286pt;}
.ws7f{word-spacing:-5.993525pt;}
.ws72{word-spacing:-5.929764pt;}
.ws65{word-spacing:-5.866003pt;}
.ws7d{word-spacing:-5.674721pt;}
.ws8{word-spacing:-5.610960pt;}
.ws60{word-spacing:-5.483438pt;}
.ws36{word-spacing:-5.419677pt;}
.ws21{word-spacing:-5.292155pt;}
.ws1e{word-spacing:-5.100873pt;}
.ws3a{word-spacing:-4.845829pt;}
.ws18{word-spacing:-4.718307pt;}
.ws6e{word-spacing:-4.654546pt;}
.wsa1{word-spacing:-4.590785pt;}
.ws23{word-spacing:-4.463263pt;}
.ws63{word-spacing:-4.335742pt;}
.ws71{word-spacing:-4.271981pt;}
.ws9a{word-spacing:-4.208220pt;}
.ws53{word-spacing:-4.144459pt;}
.ws52{word-spacing:-3.953176pt;}
.ws5e{word-spacing:-3.889415pt;}
.ws3c{word-spacing:-3.698133pt;}
.wsb8{word-spacing:-3.527842pt;}
.wsae{word-spacing:-3.527210pt;}
.wsb0{word-spacing:-3.525929pt;}
.ws78{word-spacing:-3.506850pt;}
.ws9d{word-spacing:-3.315567pt;}
.wsb7{word-spacing:-3.188045pt;}
.wsb{word-spacing:-3.060524pt;}
.wsa3{word-spacing:-2.996763pt;}
.ws61{word-spacing:-2.933002pt;}
.ws15{word-spacing:-2.869241pt;}
.wsd5{word-spacing:-2.550436pt;}
.wsaa{word-spacing:-2.422914pt;}
.ws6c{word-spacing:-2.231632pt;}
.wsb9{word-spacing:-2.167871pt;}
.wscd{word-spacing:-2.104110pt;}
.wsa0{word-spacing:-1.976588pt;}
.ws93{word-spacing:-1.338979pt;}
.wsac{word-spacing:-0.318805pt;}
.ws11{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.637609pt;}
.ws97{word-spacing:1.594023pt;}
.wsc6{word-spacing:11.923290pt;}
.ws91{word-spacing:14.518867pt;}
._1e{margin-left:-8.650231pt;}
._4{margin-left:-7.192228pt;}
._7{margin-left:-5.228394pt;}
._1{margin-left:-3.740638pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.190203pt;}
._8{width:1.147696pt;}
._5{width:2.337899pt;}
._13{width:3.953175pt;}
._12{width:5.695972pt;}
._29{width:8.181735pt;}
._28{width:9.179009pt;}
._27{width:15.621422pt;}
._16{width:17.279206pt;}
._21{width:18.171856pt;}
._1a{width:19.064512pt;}
._2{width:20.020916pt;}
._d{width:21.763714pt;}
._19{width:22.932690pt;}
._10{width:24.547949pt;}
._c{width:25.483108pt;}
._14{width:26.397017pt;}
._a{width:27.374681pt;}
._f{width:28.756169pt;}
._18{width:29.853815pt;}
._e{width:30.817773pt;}
._1d{width:31.816692pt;}
._17{width:33.516984pt;}
._15{width:34.813455pt;}
._1f{width:36.471239pt;}
._6{width:38.222527pt;}
._1c{width:39.616779pt;}
._2a{width:40.835232pt;}
._20{width:41.742139pt;}
._9{width:43.102373pt;}
._25{width:45.334005pt;}
._11{width:46.290418pt;}
._1b{width:47.884441pt;}
._23{width:49.117149pt;}
._b{width:50.626160pt;}
._26{width:53.219102pt;}
._22{width:55.098822pt;}
._24{width:57.660551pt;}
.fs0{font-size:42.507253pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:38.689333pt;}
.y20{bottom:51.309333pt;}
.y1f{bottom:63.928000pt;}
.ya6{bottom:95.686667pt;}
.y6f{bottom:102.328000pt;}
.yec{bottom:102.992000pt;}
.ycd{bottom:103.656000pt;}
.yd4{bottom:108.637333pt;}
.y4d{bottom:108.970667pt;}
.yf0{bottom:110.962667pt;}
.yb2{bottom:111.626667pt;}
.yc4{bottom:112.954667pt;}
.y9d{bottom:115.612000pt;}
.y3b{bottom:116.608000pt;}
.y80{bottom:116.940000pt;}
.y1e{bottom:118.756000pt;}
.y102{bottom:118.932000pt;}
.ya5{bottom:124.578667pt;}
.y113{bottom:126.902667pt;}
.y6e{bottom:131.220000pt;}
.yfa{bottom:131.884000pt;}
.yad{bottom:132.548000pt;}
.yd3{bottom:137.529333pt;}
.y4c{bottom:137.861333pt;}
.yeb{bottom:139.854667pt;}
.yb1{bottom:140.518667pt;}
.yc3{bottom:141.846667pt;}
.y9c{bottom:144.504000pt;}
.y3a{bottom:145.500000pt;}
.y7f{bottom:145.832000pt;}
.y1d{bottom:147.646667pt;}
.y101{bottom:147.824000pt;}
.y112{bottom:155.794667pt;}
.ya4{bottom:156.126667pt;}
.y6d{bottom:160.112000pt;}
.yac{bottom:161.440000pt;}
.y4b{bottom:166.753333pt;}
.yea{bottom:168.745333pt;}
.yb0{bottom:170.738667pt;}
.y9b{bottom:173.394667pt;}
.y39{bottom:174.392000pt;}
.y72{bottom:174.724000pt;}
.y100{bottom:176.716000pt;}
.y1c{bottom:184.509333pt;}
.y111{bottom:184.686667pt;}
.y6c{bottom:189.002667pt;}
.yab{bottom:190.332000pt;}
.y4a{bottom:195.645333pt;}
.yf9{bottom:197.637333pt;}
.yc2{bottom:199.630667pt;}
.y9a{bottom:202.286667pt;}
.yd2{bottom:203.282667pt;}
.y71{bottom:203.614667pt;}
.ye9{bottom:205.608000pt;}
.yaf{bottom:210.257333pt;}
.y38{bottom:211.253333pt;}
.y1b{bottom:213.400000pt;}
.y110{bottom:213.577333pt;}
.y6b{bottom:217.894667pt;}
.yaa{bottom:219.222667pt;}
.y49{bottom:224.536000pt;}
.yf8{bottom:226.529333pt;}
.yc1{bottom:228.521333pt;}
.yd1{bottom:232.174667pt;}
.y70{bottom:232.506667pt;}
.ye8{bottom:234.498667pt;}
.y99{bottom:239.148000pt;}
.y37{bottom:240.145333pt;}
.y7e{bottom:240.477333pt;}
.y1a{bottom:242.292000pt;}
.yef{bottom:242.469333pt;}
.y6a{bottom:246.786667pt;}
.ya9{bottom:248.114667pt;}
.y10f{bottom:250.440000pt;}
.y48{bottom:253.428000pt;}
.yc0{bottom:257.413333pt;}
.y53{bottom:261.398667pt;}
.yf7{bottom:263.390667pt;}
.y98{bottom:268.040000pt;}
.y36{bottom:269.036000pt;}
.y7d{bottom:269.368000pt;}
.y19{bottom:271.184000pt;}
.ye7{bottom:271.361333pt;}
.y69{bottom:275.678667pt;}
.ya8{bottom:277.006667pt;}
.y10e{bottom:279.330667pt;}
.y47{bottom:282.320000pt;}
.ycc{bottom:284.976000pt;}
.ybf{bottom:286.305333pt;}
.y52{bottom:290.290667pt;}
.yf6{bottom:292.282667pt;}
.y97{bottom:296.932000pt;}
.y35{bottom:297.928000pt;}
.y7c{bottom:298.260000pt;}
.y18{bottom:300.076000pt;}
.ye6{bottom:300.253333pt;}
.y68{bottom:304.569333pt;}
.ya7{bottom:308.554667pt;}
.ya3{bottom:311.212000pt;}
.ycb{bottom:313.868000pt;}
.ybe{bottom:315.196000pt;}
.y10d{bottom:316.193333pt;}
.y46{bottom:319.181333pt;}
.yf5{bottom:321.174667pt;}
.y96{bottom:325.824000pt;}
.y34{bottom:326.820000pt;}
.y7b{bottom:327.152000pt;}
.y17{bottom:328.966667pt;}
.y67{bottom:333.461333pt;}
.ye5{bottom:337.114667pt;}
.yca{bottom:342.760000pt;}
.ybd{bottom:344.088000pt;}
.y45{bottom:348.073333pt;}
.y10c{bottom:353.054667pt;}
.y95{bottom:354.714667pt;}
.y33{bottom:355.712000pt;}
.y7a{bottom:356.044000pt;}
.y16{bottom:357.858667pt;}
.yf4{bottom:358.036000pt;}
.y66{bottom:362.353333pt;}
.yd0{bottom:363.681333pt;}
.ye4{bottom:366.006667pt;}
.yc9{bottom:371.652000pt;}
.ybc{bottom:372.980000pt;}
.y44{bottom:376.965333pt;}
.y10b{bottom:381.946667pt;}
.y94{bottom:383.606667pt;}
.y79{bottom:384.934667pt;}
.y15{bottom:386.750667pt;}
.yf3{bottom:386.928000pt;}
.y65{bottom:391.245333pt;}
.y32{bottom:392.573333pt;}
.ye3{bottom:394.897333pt;}
.yc8{bottom:400.542667pt;}
.yff{bottom:402.868000pt;}
.y43{bottom:405.857333pt;}
.ybb{bottom:409.841333pt;}
.y10a{bottom:410.837333pt;}
.y93{bottom:412.498667pt;}
.y78{bottom:413.826667pt;}
.y14{bottom:415.642667pt;}
.y64{bottom:420.136000pt;}
.y31{bottom:421.465333pt;}
.yf2{bottom:423.789333pt;}
.yc7{bottom:429.434667pt;}
.ye2{bottom:431.760000pt;}
.y42{bottom:434.748000pt;}
.yba{bottom:438.733333pt;}
.y92{bottom:441.390667pt;}
.y77{bottom:442.718667pt;}
.y13{bottom:444.533333pt;}
.y109{bottom:447.700000pt;}
.y63{bottom:449.028000pt;}
.y30{bottom:450.356000pt;}
.yc6{bottom:458.326667pt;}
.ye1{bottom:460.650667pt;}
.y41{bottom:463.640000pt;}
.yb9{bottom:467.625333pt;}
.yfe{bottom:468.621333pt;}
.y91{bottom:470.281333pt;}
.y76{bottom:471.610667pt;}
.y12{bottom:473.425333pt;}
.y108{bottom:476.592000pt;}
.y62{bottom:477.920000pt;}
.y2f{bottom:481.905333pt;}
.ycf{bottom:487.218667pt;}
.ye0{bottom:489.542667pt;}
.yc5{bottom:489.874667pt;}
.y40{bottom:492.532000pt;}
.yb8{bottom:496.517333pt;}
.yfd{bottom:497.513333pt;}
.y90{bottom:499.173333pt;}
.y75{bottom:500.501333pt;}
.y107{bottom:505.482667pt;}
.y11{bottom:510.286667pt;}
.y61{bottom:514.781333pt;}
.yce{bottom:518.766667pt;}
.y2e{bottom:521.422667pt;}
.yb7{bottom:525.408000pt;}
.ydf{bottom:526.404000pt;}
.y8f{bottom:528.065333pt;}
.y74{bottom:529.393333pt;}
.yfc{bottom:534.374667pt;}
.y106{bottom:542.345333pt;}
.y60{bottom:543.673333pt;}
.y10{bottom:547.149333pt;}
.y2d{bottom:550.314667pt;}
.yb6{bottom:554.300000pt;}
.yde{bottom:555.296000pt;}
.y8e{bottom:556.957333pt;}
.y73{bottom:558.285333pt;}
.yfb{bottom:563.266667pt;}
.y105{bottom:571.236000pt;}
.y5f{bottom:572.565333pt;}
.yf{bottom:574.125333pt;}
.y51{bottom:579.206667pt;}
.yb5{bottom:583.192000pt;}
.ydd{bottom:584.188000pt;}
.yae{bottom:585.848000pt;}
.y2c{bottom:587.177333pt;}
.yee{bottom:592.158667pt;}
.y8d{bottom:593.818667pt;}
.ye{bottom:599.364000pt;}
.y104{bottom:600.128000pt;}
.y5e{bottom:601.456000pt;}
.y50{bottom:608.098667pt;}
.yb4{bottom:612.082667pt;}
.ydc{bottom:613.080000pt;}
.y2b{bottom:616.068000pt;}
.yed{bottom:621.049333pt;}
.y8c{bottom:622.710667pt;}
.y5d{bottom:630.348000pt;}
.yd{bottom:631.262667pt;}
.y4f{bottom:636.989333pt;}
.yb3{bottom:642.304000pt;}
.y2a{bottom:644.960000pt;}
.ydb{bottom:649.941333pt;}
.y8b{bottom:651.601333pt;}
.ya2{bottom:652.930667pt;}
.y116{bottom:657.912000pt;}
.y5c{bottom:659.240000pt;}
.yc{bottom:663.161333pt;}
.y4e{bottom:665.881333pt;}
.y29{bottom:673.852000pt;}
.yda{bottom:678.833333pt;}
.y8a{bottom:680.493333pt;}
.ya1{bottom:681.821333pt;}
.y115{bottom:686.802667pt;}
.y5b{bottom:688.132000pt;}
.yb{bottom:688.400000pt;}
.y103{bottom:694.773333pt;}
.y28{bottom:702.744000pt;}
.y89{bottom:709.385333pt;}
.ya0{bottom:710.713333pt;}
.yd9{bottom:715.694667pt;}
.ya{bottom:720.284000pt;}
.y114{bottom:723.665333pt;}
.y5a{bottom:724.993333pt;}
.y27{bottom:731.634667pt;}
.y88{bottom:738.277333pt;}
.y9f{bottom:739.605333pt;}
.yd8{bottom:744.586667pt;}
.y9{bottom:752.166667pt;}
.yf1{bottom:752.556000pt;}
.y59{bottom:753.885333pt;}
.y26{bottom:760.526667pt;}
.y87{bottom:767.168000pt;}
.y9e{bottom:768.497333pt;}
.yd7{bottom:781.448000pt;}
.y58{bottom:782.776000pt;}
.y25{bottom:789.418667pt;}
.y8{bottom:790.414667pt;}
.y86{bottom:796.060000pt;}
.y81{bottom:797.388000pt;}
.yd6{bottom:810.340000pt;}
.y57{bottom:811.668000pt;}
.y24{bottom:818.309333pt;}
.y85{bottom:824.952000pt;}
.y7{bottom:826.280000pt;}
.yd5{bottom:839.232000pt;}
.y56{bottom:840.560000pt;}
.y23{bottom:847.201333pt;}
.y84{bottom:853.844000pt;}
.y3f{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y55{bottom:870.780000pt;}
.y22{bottom:876.093333pt;}
.y83{bottom:882.734667pt;}
.y3e{bottom:884.064000pt;}
.y54{bottom:902.328000pt;}
.y21{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y82{bottom:911.626667pt;}
.y3d{bottom:912.954667pt;}
.y4{bottom:941.846667pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h1{height:31.880440pt;}
.h4{height:44.887678pt;}
.h2{height:53.865199pt;}
.h5{height:57.448577pt;}
.h3{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:92.670667pt;}
.x10{left:94.488000pt;}
.x6{left:103.382667pt;}
.x5{left:117.738667pt;}
.x4{left:121.784000pt;}
.x14{left:132.521333pt;}
.x13{left:134.338667pt;}
.x17{left:139.476000pt;}
.x16{left:140.926667pt;}
.x15{left:142.488000pt;}
.x7{left:157.218667pt;}
.x8{left:254.285333pt;}
.xf{left:316.168000pt;}
.xe{left:413.801333pt;}
.xb{left:458.084000pt;}
.xa{left:527.582667pt;}
.x9{left:531.026667pt;}
.xd{left:535.010667pt;}
.x3{left:547.794667pt;}
.xc{left:549.325333pt;}
.x2{left:576.689333pt;}
.x1{left:615.817333pt;}
.x11{left:698.080000pt;}
}




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