
    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_678543dad2eb638b2b3829ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.264000;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_0b357e4444229a98beda1d18.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.255000;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_a17d0ef61802563e191895cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.255000;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_fa162f132136a31412f2ecd4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.184000;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_6c5357f900c1cf25c60a7cf6.woff2')format("woff");}.ff5{font-family:ff5;line-height:2.640000;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_f49d3aacc2edfbc9ff565e0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.148000;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_b5704dd3927a463a733d5aa2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.255000;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_eb1682d7877688c292b87a53.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.255000;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_a392d6e21720acca2fc4884a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.255000;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:ffa;src:url('chunks/assets/font_2e9133908e43575a12974aa8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.010000;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;}
.m6{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);}
.m8{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);}
.m1e{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);}
.m1d{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);}
.m25{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);}
.m22{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);}
.m26{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m1c{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);}
.m27{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);}
.m5{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);}
.m28{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.mb{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);}
.mc{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);}
.m1b{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);}
.m10{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);}
.m14{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);}
.m17{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);}
.m18{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);}
.m1a{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);}
.m20{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);}
.me{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);}
.md{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m15{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);}
.m23{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);}
.m4{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);}
.m1f{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);}
.m19{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m9{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);}
.m3{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);}
.mf{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;}
.v2{vertical-align:16.174080px;}
.v1{vertical-align:27.336000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000405px;}
.ls2{letter-spacing:0.000875px;}
.lsc{letter-spacing:0.003070px;}
.ls4{letter-spacing:0.003370px;}
.lsf{letter-spacing:0.134979px;}
.lse{letter-spacing:0.179971px;}
.ls17{letter-spacing:12.790176px;}
.ls13{letter-spacing:12.825118px;}
.lsd{letter-spacing:12.981357px;}
.ls11{letter-spacing:13.058649px;}
.ls12{letter-spacing:13.464531px;}
.ls7{letter-spacing:15.837973px;}
.ls0{letter-spacing:16.136712px;}
.ls3{letter-spacing:16.265965px;}
.ls6{letter-spacing:16.286682px;}
.ls15{letter-spacing:19.164531px;}
.ls16{letter-spacing:19.170414px;}
.ls8{letter-spacing:20.028537px;}
.ls18{letter-spacing:20.864531px;}
.ls14{letter-spacing:23.982178px;}
.lsa{letter-spacing:27.246537px;}
.ls5{letter-spacing:27.790230px;}
.ls10{letter-spacing:29.364531px;}
.lsb{letter-spacing:29.766537px;}
.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;}
}
.ws2{word-spacing:-89.386062px;}
.ws3{word-spacing:-89.014136px;}
.ws8e{word-spacing:-68.333220px;}
.ws7{word-spacing:-59.775840px;}
.ws77{word-spacing:-53.798280px;}
.ws1{word-spacing:-51.502872px;}
.ws5a{word-spacing:-47.880448px;}
.ws48{word-spacing:-47.820672px;}
.ws64{word-spacing:-47.641344px;}
.wsb2{word-spacing:-47.581569px;}
.ws67{word-spacing:-47.521793px;}
.wsc6{word-spacing:-47.462017px;}
.ws27{word-spacing:-47.342465px;}
.ws39{word-spacing:-47.222914px;}
.wsc2{word-spacing:-47.043586px;}
.ws79{word-spacing:-46.804483px;}
.ws50{word-spacing:-46.684931px;}
.wsa5{word-spacing:-46.625155px;}
.ws10{word-spacing:-46.505604px;}
.ws26{word-spacing:-46.445828px;}
.ws4d{word-spacing:-46.326276px;}
.wsbc{word-spacing:-45.907845px;}
.ws81{word-spacing:-45.848069px;}
.ws69{word-spacing:-45.788293px;}
.ws2b{word-spacing:-45.728518px;}
.ws3a{word-spacing:-45.668742px;}
.ws15{word-spacing:-45.608966px;}
.wsc{word-spacing:-45.549190px;}
.ws88{word-spacing:-45.489414px;}
.ws28{word-spacing:-45.487828px;}
.ws8a{word-spacing:-45.429638px;}
.ws97{word-spacing:-45.369863px;}
.ws47{word-spacing:-45.310087px;}
.wsc3{word-spacing:-45.250311px;}
.wsc0{word-spacing:-45.190535px;}
.ws41{word-spacing:-44.831880px;}
.wsb3{word-spacing:-44.712328px;}
.ws9c{word-spacing:-44.473225px;}
.wsa8{word-spacing:-44.413449px;}
.ws83{word-spacing:-44.353673px;}
.ws2f{word-spacing:-44.293897px;}
.ws6a{word-spacing:-44.234122px;}
.ws62{word-spacing:-44.174346px;}
.ws21{word-spacing:-44.114570px;}
.ws3d{word-spacing:-44.054794px;}
.wsf{word-spacing:-43.995018px;}
.ws17{word-spacing:-43.935242px;}
.ws12{word-spacing:-43.875467px;}
.ws9{word-spacing:-43.815691px;}
.wsb{word-spacing:-43.755915px;}
.ws3f{word-spacing:-43.734518px;}
.ws13{word-spacing:-43.696139px;}
.ws25{word-spacing:-43.689975px;}
.ws33{word-spacing:-43.673479px;}
.ws5e{word-spacing:-43.639732px;}
.ws35{word-spacing:-43.639355px;}
.ws63{word-spacing:-43.637967px;}
.ws36{word-spacing:-43.637334px;}
.ws6{word-spacing:-43.636363px;}
.ws61{word-spacing:-43.636014px;}
.ws4{word-spacing:-43.633985px;}
.ws20{word-spacing:-43.576587px;}
.wse{word-spacing:-43.516812px;}
.wsd{word-spacing:-43.457036px;}
.ws8{word-spacing:-43.397260px;}
.ws2a{word-spacing:-43.337484px;}
.ws6b{word-spacing:-43.277708px;}
.ws11{word-spacing:-43.217932px;}
.ws9f{word-spacing:-43.158156px;}
.wsb4{word-spacing:-42.978829px;}
.ws5{word-spacing:-42.919053px;}
.ws9b{word-spacing:-42.679950px;}
.wse8{word-spacing:-42.554439px;}
.ws1d{word-spacing:-42.261519px;}
.ws96{word-spacing:-42.022416px;}
.ws7b{word-spacing:-41.902864px;}
.ws38{word-spacing:-41.843088px;}
.ws16{word-spacing:-41.723536px;}
.ws34{word-spacing:-41.663760px;}
.ws51{word-spacing:-41.603985px;}
.ws4e{word-spacing:-41.544209px;}
.ws4f{word-spacing:-41.424657px;}
.wsca{word-spacing:-41.370877px;}
.ws54{word-spacing:-41.364881px;}
.ws60{word-spacing:-41.305105px;}
.ws101{word-spacing:-41.263281px;}
.ws93{word-spacing:-41.245330px;}
.ws98{word-spacing:-41.185554px;}
.wsb6{word-spacing:-41.066002px;}
.wsab{word-spacing:-40.890235px;}
.wsaf{word-spacing:-40.889780px;}
.wscb{word-spacing:-40.886693px;}
.ws94{word-spacing:-40.767123px;}
.ws74{word-spacing:-40.760744px;}
.ws6d{word-spacing:-40.680589px;}
.wsdf{word-spacing:-40.671500px;}
.ws91{word-spacing:-40.587795px;}
.ws6f{word-spacing:-40.563903px;}
.ws82{word-spacing:-40.528020px;}
.wsc1{word-spacing:-40.408468px;}
.wse9{word-spacing:-40.294912px;}
.ws49{word-spacing:-40.229140px;}
.wsbb{word-spacing:-40.109589px;}
.wsc5{word-spacing:-40.049813px;}
.wsc8{word-spacing:-39.990037px;}
.wsf3{word-spacing:-39.972122px;}
.wse2{word-spacing:-39.918324px;}
.wse3{word-spacing:-39.810727px;}
.ws32{word-spacing:-39.810709px;}
.wsd3{word-spacing:-39.756929px;}
.wsd4{word-spacing:-39.703131px;}
.ws14{word-spacing:-39.691158px;}
.wse6{word-spacing:-39.649332px;}
.ws70{word-spacing:-39.541736px;}
.ws58{word-spacing:-39.511830px;}
.wsda{word-spacing:-39.487938px;}
.wsd6{word-spacing:-39.434139px;}
.ws2d{word-spacing:-39.392279px;}
.wsdb{word-spacing:-39.380341px;}
.ws85{word-spacing:-39.332503px;}
.ws71{word-spacing:-39.326543px;}
.ws75{word-spacing:-39.273631px;}
.ws0{word-spacing:-39.272744px;}
.ws8d{word-spacing:-39.272727px;}
.ws72{word-spacing:-39.267631px;}
.ws102{word-spacing:-39.221025px;}
.wsd5{word-spacing:-39.218946px;}
.ws3b{word-spacing:-39.212951px;}
.ws78{word-spacing:-39.165148px;}
.ws95{word-spacing:-39.153175px;}
.ws6e{word-spacing:-39.111350px;}
.ws42{word-spacing:-39.093399px;}
.wsd9{word-spacing:-39.057551px;}
.wsbd{word-spacing:-39.033624px;}
.wsdd{word-spacing:-39.003753px;}
.ws99{word-spacing:-38.973848px;}
.wsde{word-spacing:-38.949955px;}
.ws56{word-spacing:-38.854296px;}
.ws57{word-spacing:-38.794520px;}
.ws5f{word-spacing:-38.734744px;}
.wsec{word-spacing:-38.680963px;}
.ws46{word-spacing:-38.615193px;}
.ws59{word-spacing:-38.555417px;}
.wsa7{word-spacing:-38.316313px;}
.wsb8{word-spacing:-38.256538px;}
.ws29{word-spacing:-38.196762px;}
.wsf5{word-spacing:-38.035384px;}
.wsd7{word-spacing:-37.927787px;}
.ws68{word-spacing:-37.897883px;}
.wsa{word-spacing:-37.838107px;}
.wse7{word-spacing:-37.820191px;}
.wscc{word-spacing:-37.658796px;}
.ws5c{word-spacing:-37.599003px;}
.ws18{word-spacing:-37.539228px;}
.ws2e{word-spacing:-37.419676px;}
.wsa0{word-spacing:-37.300124px;}
.wsba{word-spacing:-37.120797px;}
.ws92{word-spacing:-37.061021px;}
.ws24{word-spacing:-37.001245px;}
.ws7c{word-spacing:-36.941469px;}
.ws5d{word-spacing:-36.642590px;}
.ws2c{word-spacing:-36.582814px;}
.ws4c{word-spacing:-36.343711px;}
.ws53{word-spacing:-36.224159px;}
.ws45{word-spacing:-36.164383px;}
.wsc4{word-spacing:-36.104607px;}
.wse5{word-spacing:-36.044848px;}
.wsc9{word-spacing:-35.865504px;}
.wsa4{word-spacing:-35.805728px;}
.wsb7{word-spacing:-35.566625px;}
.wsf4{word-spacing:-35.453067px;}
.ws30{word-spacing:-35.447073px;}
.ws65{word-spacing:-35.327521px;}
.wsf6{word-spacing:-35.130277px;}
.ws7e{word-spacing:-35.028642px;}
.ws7a{word-spacing:-34.909091px;}
.ws103{word-spacing:-34.807487px;}
.ws19{word-spacing:-34.669987px;}
.wsc7{word-spacing:-34.610211px;}
.ws1a{word-spacing:-34.564595px;}
.ws9e{word-spacing:-34.550436px;}
.ws7d{word-spacing:-34.311332px;}
.ws9a{word-spacing:-34.132005px;}
.ws8b{word-spacing:-34.072229px;}
.ws44{word-spacing:-34.012453px;}
.wsd0{word-spacing:-34.000513px;}
.ws22{word-spacing:-33.952677px;}
.wsef{word-spacing:-33.892916px;}
.ws23{word-spacing:-33.892901px;}
.wsee{word-spacing:-33.839118px;}
.ws8f{word-spacing:-33.773350px;}
.ws37{word-spacing:-33.653798px;}
.wsb9{word-spacing:-33.474470px;}
.ws40{word-spacing:-33.414695px;}
.ws87{word-spacing:-33.354919px;}
.wsb1{word-spacing:-33.235367px;}
.wsd1{word-spacing:-32.870749px;}
.wsff{word-spacing:-32.816951px;}
.ws52{word-spacing:-32.637609px;}
.wsa1{word-spacing:-32.518057px;}
.wse1{word-spacing:-32.278968px;}
.wsfe{word-spacing:-32.225170px;}
.wsfd{word-spacing:-32.171371px;}
.wscd{word-spacing:-32.063775px;}
.ws55{word-spacing:-32.039850px;}
.ws104{word-spacing:-32.009977px;}
.ws1b{word-spacing:-31.980074px;}
.wsf1{word-spacing:-31.740985px;}
.ws105{word-spacing:-31.736664px;}
.ws4a{word-spacing:-31.621419px;}
.wsa2{word-spacing:-31.501868px;}
.wsac{word-spacing:-31.450007px;}
.ws3e{word-spacing:-31.442092px;}
.wsf0{word-spacing:-31.203002px;}
.ws100{word-spacing:-31.095406px;}
.ws3c{word-spacing:-30.963885px;}
.ws7f{word-spacing:-30.904109px;}
.ws66{word-spacing:-30.844333px;}
.wsbf{word-spacing:-30.485678px;}
.ws90{word-spacing:-30.425903px;}
.wsa3{word-spacing:-30.306351px;}
.ws4b{word-spacing:-30.127023px;}
.ws8c{word-spacing:-30.067248px;}
.ws9d{word-spacing:-29.887920px;}
.ws5b{word-spacing:-29.589041px;}
.wse4{word-spacing:-29.373861px;}
.ws89{word-spacing:-29.290162px;}
.wseb{word-spacing:-29.266264px;}
.wsea{word-spacing:-29.212466px;}
.ws1c{word-spacing:-29.170610px;}
.wsed{word-spacing:-28.997273px;}
.wsb0{word-spacing:-28.991282px;}
.ws43{word-spacing:-28.931507px;}
.wsf2{word-spacing:-28.351694px;}
.wsf8{word-spacing:-27.921307px;}
.ws31{word-spacing:-27.795766px;}
.wsa6{word-spacing:-27.556662px;}
.wsd8{word-spacing:-26.199762px;}
.ws86{word-spacing:-25.046077px;}
.wsf7{word-spacing:-24.854805px;}
.wsce{word-spacing:-24.101629px;}
.wscf{word-spacing:-24.047831px;}
.wsfb{word-spacing:-23.617445px;}
.wse0{word-spacing:-21.788303px;}
.wsbe{word-spacing:-20.622665px;}
.ws80{word-spacing:-19.845579px;}
.wsdc{word-spacing:-19.098389px;}
.wsae{word-spacing:-18.954712px;}
.wsfc{word-spacing:-17.755872px;}
.wsd2{word-spacing:-17.484441px;}
.ws107{word-spacing:-17.216640px;}
.wsf9{word-spacing:-15.547703px;}
.wsa9{word-spacing:-14.556671px;}
.ws106{word-spacing:-12.906243px;}
.wsad{word-spacing:-12.148072px;}
.wsfa{word-spacing:-1.452554px;}
.ws1e{word-spacing:0.000000px;}
.ws76{word-spacing:173.714646px;}
.ws73{word-spacing:200.310380px;}
.wsaa{word-spacing:355.254588px;}
.wsb5{word-spacing:759.611535px;}
.ws1f{word-spacing:761.709668px;}
.ws6c{word-spacing:762.247651px;}
.ws84{word-spacing:762.301449px;}
._44{margin-left:-11.297639px;}
._b{margin-left:-6.066441px;}
._42{margin-left:-3.879688px;}
._2{margin-left:-2.869241px;}
._0{margin-left:-1.344957px;}
._5{width:1.075965px;}
._6{width:2.564384px;}
._46{width:7.177828px;}
._3c{width:8.637609px;}
._13{width:10.102117px;}
._8{width:11.267746px;}
._34{width:12.702384px;}
._7{width:14.495642px;}
._c{width:16.408467px;}
._3{width:17.412705px;}
._f{width:18.769614px;}
._9{width:19.785803px;}
._11{width:21.190536px;}
._a{width:23.551681px;}
._43{width:24.627646px;}
._12{width:26.002490px;}
._e{width:27.018680px;}
._10{width:28.034869px;}
._3d{width:31.232877px;}
._d{width:33.713574px;}
._3b{width:37.599003px;}
._4{width:146.331281px;}
._1e{width:223.639450px;}
._20{width:225.289263px;}
._22{width:227.835716px;}
._2e{width:228.965480px;}
._1c{width:230.131109px;}
._16{width:231.529864px;}
._17{width:232.838956px;}
._28{width:234.452904px;}
._36{width:235.905458px;}
._1f{width:237.591138px;}
._27{width:238.846430px;}
._19{width:240.872833px;}
._1a{width:242.217790px;}
._15{width:243.652410px;}
._2a{width:246.503719px;}
._37{width:248.189399px;}
._25{width:249.713684px;}
._2d{width:251.166236px;}
._31{width:257.930683px;}
._30{width:259.382833px;}
._32{width:290.424868px;}
._1b{width:311.653436px;}
._14{width:328.761289px;}
._1d{width:348.074872px;}
._24{width:350.764786px;}
._39{width:354.207876px;}
._2b{width:370.831544px;}
._41{width:375.211704px;}
._21{width:376.318969px;}
._2c{width:383.492072px;}
._40{width:385.069148px;}
._3f{width:394.782339px;}
._29{width:406.607400px;}
._23{width:421.079138px;}
._18{width:445.395960px;}
._35{width:467.309792px;}
._38{width:471.326731px;}
._26{width:496.289133px;}
._3a{width:669.429930px;}
._2f{width:711.773258px;}
._3e{width:830.307160px;}
._1{width:831.435160px;}
._33{width:836.493160px;}
._45{width:843.759160px;}
.fc6{color:rgb(202,69,122);}
.fc4{color:rgb(163,128,138);}
.fc8{color:transparent;}
.fc2{color:rgb(166,0,50);}
.fc7{color:rgb(122,122,122);}
.fc5{color:rgb(177,177,177);}
.fc3{color:rgb(48,48,48);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(77,77,77);}
.fs7{font-size:36.122112px;}
.fs8{font-size:44.992858px;}
.fs5{font-size:47.833260px;}
.fs9{font-size:52.894440px;}
.fs0{font-size:53.798280px;}
.fs6{font-size:53.913596px;}
.fs3{font-size:59.775840px;}
.fs4{font-size:68.333220px;}
.fs1{font-size:71.731020px;}
.fs2{font-size:123.975120px;}
.y0{bottom:0.000000px;}
.y115{bottom:3.423387px;}
.y12f{bottom:3.423395px;}
.y110{bottom:3.424405px;}
.y11f{bottom:3.424407px;}
.y118{bottom:10.514653px;}
.y11c{bottom:10.515672px;}
.y12c{bottom:10.638961px;}
.y109{bottom:11.264591px;}
.y113{bottom:17.605918px;}
.y10d{bottom:17.726142px;}
.y12e{bottom:17.728189px;}
.y10f{bottom:17.729199px;}
.y11e{bottom:17.729201px;}
.y126{bottom:17.730226px;}
.y117{bottom:24.819447px;}
.y11b{bottom:24.820467px;}
.y12b{bottom:24.943755px;}
.y103{bottom:29.494148px;}
.y112{bottom:31.910712px;}
.y11d{bottom:31.911732px;}
.y125{bottom:32.055393px;}
.y116{bottom:39.124240px;}
.y12a{bottom:39.268921px;}
.y114{bottom:46.215506px;}
.y124{bottom:46.360187px;}
.y129{bottom:53.451453px;}
.y104{bottom:59.865472px;}
.y123{bottom:60.664981px;}
.y128{bottom:67.756246px;}
.y122{bottom:74.969775px;}
.y127{bottom:82.061040px;}
.y121{bottom:89.274569px;}
.y105{bottom:90.248036px;}
.y57{bottom:106.039500px;}
.y106{bottom:120.630599px;}
.y56{bottom:127.558500px;}
.y178{bottom:141.928500px;}
.yce{bottom:143.157000px;}
.y15e{bottom:143.997000px;}
.y22{bottom:144.699000px;}
.y2a{bottom:144.817500px;}
.y55{bottom:149.079000px;}
.y107{bottom:150.979446px;}
.y102{bottom:158.123008px;}
.y177{bottom:158.367000px;}
.y15d{bottom:160.435500px;}
.y21{bottom:166.218000px;}
.y29{bottom:166.336500px;}
.y54{bottom:170.598000px;}
.ycc{bottom:170.961000px;}
.y176{bottom:174.805500px;}
.y101{bottom:175.375371px;}
.y15c{bottom:176.874000px;}
.y108{bottom:181.362009px;}
.ye8{bottom:183.226500px;}
.y20{bottom:187.737000px;}
.y28{bottom:187.857000px;}
.y175{bottom:191.244000px;}
.yef{bottom:192.117000px;}
.y15b{bottom:193.312500px;}
.ycb{bottom:195.469500px;}
.y53{bottom:202.534500px;}
.ye7{bottom:204.745500px;}
.y174{bottom:207.682500px;}
.y1f{bottom:209.256000px;}
.y27{bottom:209.376000px;}
.y15a{bottom:209.751000px;}
.yee{bottom:213.636000px;}
.y7d{bottom:217.543500px;}
.yca{bottom:219.978000px;}
.y52{bottom:224.055000px;}
.y173{bottom:224.121000px;}
.y159{bottom:226.189500px;}
.ye6{bottom:226.264500px;}
.y1e{bottom:230.775000px;}
.y26{bottom:230.895000px;}
.yed{bottom:235.155000px;}
.y7c{bottom:239.062500px;}
.y172{bottom:240.559500px;}
.y158{bottom:242.628000px;}
.yc9{bottom:244.486500px;}
.y51{bottom:245.574000px;}
.ye5{bottom:247.785000px;}
.y1d{bottom:252.295500px;}
.y25{bottom:252.414000px;}
.yec{bottom:256.674000px;}
.y171{bottom:256.998000px;}
.y157{bottom:259.066500px;}
.y7b{bottom:260.583000px;}
.y50{bottom:267.093000px;}
.yc8{bottom:268.993500px;}
.ye4{bottom:269.304000px;}
.ya0{bottom:272.047500px;}
.y170{bottom:273.436500px;}
.y1c{bottom:273.814500px;}
.y24{bottom:273.933000px;}
.y156{bottom:275.505000px;}
.yeb{bottom:278.194500px;}
.y7a{bottom:282.102000px;}
.y4f{bottom:288.612000px;}
.y16f{bottom:289.873500px;}
.ye3{bottom:290.823000px;}
.y155{bottom:291.942000px;}
.yc7{bottom:293.502000px;}
.y9f{bottom:293.566500px;}
.y1b{bottom:295.333500px;}
.y23{bottom:295.452000px;}
.yea{bottom:299.713500px;}
.y79{bottom:303.621000px;}
.y136{bottom:304.336500px;}
.y16e{bottom:306.312000px;}
.y154{bottom:308.380500px;}
.y4e{bottom:310.131000px;}
.ye2{bottom:312.342000px;}
.y9e{bottom:315.085500px;}
.yc6{bottom:318.010500px;}
.ye9{bottom:321.232500px;}
.y16d{bottom:322.750500px;}
.y153{bottom:324.819000px;}
.y78{bottom:325.140000px;}
.y135{bottom:325.855500px;}
.yfb{bottom:331.650000px;}
.ye1{bottom:333.861000px;}
.y9d{bottom:336.604500px;}
.y16c{bottom:339.189000px;}
.y152{bottom:341.257500px;}
.y4d{bottom:342.069000px;}
.yc5{bottom:342.517500px;}
.y77{bottom:346.659000px;}
.y134{bottom:347.374500px;}
.yfa{bottom:353.170500px;}
.ye0{bottom:355.380000px;}
.y16b{bottom:355.627500px;}
.y151{bottom:357.696000px;}
.y9c{bottom:358.123500px;}
.y4c{bottom:363.588000px;}
.yc4{bottom:367.026000px;}
.y1a{bottom:367.482000px;}
.y133{bottom:368.893500px;}
.y16a{bottom:372.066000px;}
.y150{bottom:374.134500px;}
.yf9{bottom:374.689500px;}
.ydf{bottom:376.900500px;}
.y9b{bottom:379.642500px;}
.y76{bottom:383.154000px;}
.y4b{bottom:385.107000px;}
.y169{bottom:388.504500px;}
.y19{bottom:389.001000px;}
.y132{bottom:390.412500px;}
.y14f{bottom:390.573000px;}
.yc3{bottom:391.534500px;}
.yf8{bottom:396.208500px;}
.yde{bottom:398.419500px;}
.y9a{bottom:401.163000px;}
.y75{bottom:404.673000px;}
.y168{bottom:404.943000px;}
.y4a{bottom:406.627500px;}
.y14e{bottom:407.011500px;}
.y18{bottom:410.521500px;}
.y131{bottom:411.933000px;}
.yc2{bottom:416.043000px;}
.yf7{bottom:417.727500px;}
.ydd{bottom:419.938500px;}
.y167{bottom:421.381500px;}
.y99{bottom:422.682000px;}
.y14d{bottom:423.450000px;}
.y74{bottom:426.192000px;}
.y49{bottom:428.146500px;}
.y17{bottom:432.040500px;}
.y166{bottom:437.820000px;}
.yf6{bottom:439.246500px;}
.y14c{bottom:439.888500px;}
.yc1{bottom:440.550000px;}
.ydc{bottom:441.457500px;}
.y98{bottom:444.201000px;}
.y73{bottom:447.711000px;}
.y48{bottom:449.665500px;}
.y16{bottom:453.559500px;}
.y165{bottom:454.258500px;}
.y14b{bottom:456.325500px;}
.yf5{bottom:460.765500px;}
.y130{bottom:461.695500px;}
.ydb{bottom:462.976500px;}
.yc0{bottom:465.058500px;}
.yba{bottom:465.720000px;}
.y72{bottom:469.230000px;}
.y164{bottom:470.695500px;}
.y47{bottom:471.184500px;}
.y14a{bottom:472.764000px;}
.y97{bottom:474.487500px;}
.y15{bottom:475.078500px;}
.yf4{bottom:482.286000px;}
.y163{bottom:487.134000px;}
.yb9{bottom:487.239000px;}
.y12d{bottom:488.635518px;}
.y149{bottom:489.202500px;}
.ybf{bottom:489.567000px;}
.y71{bottom:490.750500px;}
.y46{bottom:492.703500px;}
.y96{bottom:496.006500px;}
.y14{bottom:496.597500px;}
.y162{bottom:503.572500px;}
.yf3{bottom:503.805000px;}
.y148{bottom:505.641000px;}
.yda{bottom:506.998500px;}
.yb8{bottom:508.758000px;}
.y70{bottom:512.269500px;}
.ycd{bottom:514.075500px;}
.y45{bottom:514.222500px;}
.y95{bottom:517.525500px;}
.y13{bottom:518.116500px;}
.y161{bottom:520.011000px;}
.y147{bottom:522.079500px;}
.yd9{bottom:524.931000px;}
.yf2{bottom:525.324000px;}
.yb7{bottom:530.278500px;}
.y120{bottom:532.525969px;}
.y6f{bottom:533.788500px;}
.y44{bottom:535.743000px;}
.y160{bottom:536.449500px;}
.y94{bottom:539.044500px;}
.y12{bottom:539.637000px;}
.ybe{bottom:541.681500px;}
.yd8{bottom:542.863500px;}
.y15f{bottom:552.888000px;}
.y6e{bottom:555.307500px;}
.y43{bottom:557.262000px;}
.ybd{bottom:559.615500px;}
.y93{bottom:560.563500px;}
.y11{bottom:561.156000px;}
.yb6{bottom:563.752500px;}
.y146{bottom:569.326500px;}
.yd6{bottom:570.669000px;}
.y6d{bottom:576.826500px;}
.y42{bottom:578.781000px;}
.y92{bottom:582.084000px;}
.y10{bottom:582.675000px;}
.yb5{bottom:585.271500px;}
.yd5{bottom:595.177500px;}
.y6c{bottom:598.345500px;}
.y41{bottom:600.300000px;}
.y91{bottom:603.603000px;}
.yf{bottom:604.194000px;}
.ybc{bottom:605.962500px;}
.yb4{bottom:606.790500px;}
.y144{bottom:608.778000px;}
.yd4{bottom:619.684500px;}
.y6b{bottom:619.866000px;}
.y40{bottom:621.819000px;}
.ybb{bottom:622.401000px;}
.y90{bottom:625.122000px;}
.yb3{bottom:628.309500px;}
.y143{bottom:630.297000px;}
.y11a{bottom:633.169979px;}
.ye{bottom:637.668000px;}
.y6a{bottom:641.385000px;}
.y3f{bottom:643.338000px;}
.yd3{bottom:644.193000px;}
.y8f{bottom:646.641000px;}
.yb2{bottom:649.828500px;}
.y142{bottom:651.817500px;}
.yd{bottom:655.602000px;}
.y69{bottom:662.904000px;}
.y3e{bottom:664.858500px;}
.y8e{bottom:668.160000px;}
.yd7{bottom:668.701500px;}
.y141{bottom:673.336500px;}
.yc{bottom:673.534500px;}
.yf1{bottom:675.276000px;}
.yb1{bottom:683.304000px;}
.yff{bottom:686.377500px;}
.y8d{bottom:689.679000px;}
.y119{bottom:691.368281px;}
.y140{bottom:694.855500px;}
.yd2{bottom:696.658500px;}
.y3d{bottom:696.795000px;}
.yb0{bottom:704.823000px;}
.yfe{bottom:707.896500px;}
.y68{bottom:709.851000px;}
.y8c{bottom:711.199500px;}
.yd1{bottom:714.591000px;}
.y145{bottom:716.374500px;}
.y3c{bottom:718.315500px;}
.yaf{bottom:726.342000px;}
.y13f{bottom:728.733000px;}
.y67{bottom:731.370000px;}
.y8b{bottom:732.718500px;}
.y111{bottom:735.291336px;}
.y3b{bottom:739.834500px;}
.yb{bottom:740.782500px;}
.yae{bottom:747.861000px;}
.y13e{bottom:750.252000px;}
.y66{bottom:752.889000px;}
.y8a{bottom:754.237500px;}
.yd0{bottom:760.938000px;}
.y3a{bottom:761.353500px;}
.ya{bottom:762.301500px;}
.yad{bottom:769.380000px;}
.y13d{bottom:771.771000px;}
.y65{bottom:774.408000px;}
.y89{bottom:775.756500px;}
.ycf{bottom:777.376500px;}
.y39{bottom:782.872500px;}
.y9{bottom:783.820500px;}
.y10e{bottom:792.876284px;}
.y13c{bottom:793.291500px;}
.y64{bottom:795.927000px;}
.y88{bottom:797.275500px;}
.yac{bottom:802.855500px;}
.y38{bottom:804.391500px;}
.y8{bottom:805.339500px;}
.y13b{bottom:814.810500px;}
.y63{bottom:817.446000px;}
.y87{bottom:818.794500px;}
.y18a{bottom:820.189500px;}
.yab{bottom:824.374500px;}
.y37{bottom:825.910500px;}
.y13a{bottom:836.329500px;}
.y189{bottom:836.628000px;}
.y10c{bottom:836.771829px;}
.y62{bottom:838.966500px;}
.y86{bottom:840.315000px;}
.yaa{bottom:845.893500px;}
.y36{bottom:847.431000px;}
.y188{bottom:853.066500px;}
.y139{bottom:857.848500px;}
.y61{bottom:860.485500px;}
.y85{bottom:861.834000px;}
.ya9{bottom:867.412500px;}
.y35{bottom:868.950000px;}
.y187{bottom:869.505000px;}
.y138{bottom:879.367500px;}
.y84{bottom:883.353000px;}
.y186{bottom:885.942000px;}
.y10b{bottom:888.735000px;}
.ya8{bottom:888.931500px;}
.y34{bottom:890.469000px;}
.y7{bottom:897.843000px;}
.y137{bottom:900.886500px;}
.y185{bottom:902.380500px;}
.y10a{bottom:905.173500px;}
.y60{bottom:907.431000px;}
.ya7{bottom:910.452000px;}
.y33{bottom:911.988000px;}
.y83{bottom:913.639500px;}
.y184{bottom:918.819000px;}
.yfd{bottom:922.407000px;}
.y5f{bottom:928.950000px;}
.y100{bottom:931.816556px;}
.ya6{bottom:931.971000px;}
.y32{bottom:933.507000px;}
.y82{bottom:935.158500px;}
.y183{bottom:935.257500px;}
.y6{bottom:938.940000px;}
.yfc{bottom:943.926000px;}
.y5e{bottom:950.470500px;}
.y182{bottom:951.696000px;}
.ya5{bottom:953.490000px;}
.y31{bottom:955.026000px;}
.y81{bottom:956.677500px;}
.yf0{bottom:965.445000px;}
.y181{bottom:968.134500px;}
.y5d{bottom:971.989500px;}
.ya4{bottom:975.009000px;}
.y30{bottom:976.545000px;}
.y5{bottom:980.035500px;}
.y180{bottom:984.573000px;}
.y80{bottom:986.964000px;}
.y5c{bottom:993.508500px;}
.ya3{bottom:996.528000px;}
.y2f{bottom:998.065500px;}
.y17f{bottom:1001.011500px;}
.y7f{bottom:1008.483000px;}
.y5b{bottom:1015.027500px;}
.y17e{bottom:1017.450000px;}
.ya2{bottom:1018.047000px;}
.y2e{bottom:1019.584500px;}
.y4{bottom:1021.131000px;}
.y7e{bottom:1030.002000px;}
.y17d{bottom:1033.888500px;}
.y5a{bottom:1036.546500px;}
.ya1{bottom:1039.567500px;}
.y17c{bottom:1050.325500px;}
.y2d{bottom:1051.522500px;}
.y59{bottom:1058.065500px;}
.y3{bottom:1062.228000px;}
.y17b{bottom:1066.764000px;}
.y2c{bottom:1073.041500px;}
.y58{bottom:1079.586000px;}
.y17a{bottom:1083.202500px;}
.y2b{bottom:1094.560500px;}
.y179{bottom:1099.641000px;}
.y2{bottom:1116.079500px;}
.y1{bottom:1168.383000px;}
.hd{height:28.488344px;}
.h9{height:28.607551px;}
.hb{height:28.611627px;}
.h11{height:40.464247px;}
.h10{height:41.155684px;}
.he{height:42.792120px;}
.ha{height:43.193143px;}
.h2{height:51.646349px;}
.h8{height:51.757052px;}
.hc{height:57.095896px;}
.h5{height:57.384806px;}
.h3{height:68.861779px;}
.hf{height:100.159032px;}
.h6{height:108.308154px;}
.h4{height:119.016115px;}
.h7{height:199.209629px;}
.h1{height:1233.000000px;}
.h0{height:1233.070500px;}
.w8{width:101.869698px;}
.w6{width:110.912081px;}
.w9{width:117.396106px;}
.w7{width:118.741001px;}
.w5{width:219.755876px;}
.w4{width:230.270511px;}
.w3{width:260.593822px;}
.w2{width:490.882205px;}
.w1{width:871.500000px;}
.w0{width:871.653000px;}
.x0{left:0.000000px;}
.x2e{left:6.009208px;}
.x14{left:7.386165px;}
.x18{left:8.707046px;}
.x26{left:9.782044px;}
.x16{left:11.456640px;}
.x2a{left:13.104577px;}
.x28{left:14.200841px;}
.x2c{left:16.038894px;}
.x27{left:17.261526px;}
.x13{left:19.193244px;}
.x17{left:20.541083px;}
.x24{left:21.781160px;}
.x15{left:23.263718px;}
.x1b{left:24.453682px;}
.x2d{left:25.571319px;}
.x22{left:26.776683px;}
.x21{left:29.976899px;}
.x20{left:33.396164px;}
.x19{left:36.638756px;}
.x23{left:37.933200px;}
.x30{left:46.600643px;}
.x2f{left:48.679118px;}
.x1d{left:50.024013px;}
.x2b{left:74.232072px;}
.x1f{left:83.157286px;}
.x2{left:85.039500px;}
.x29{left:88.047868px;}
.x1c{left:89.392763px;}
.x47{left:92.113500px;}
.x7{left:94.006500px;}
.x9{left:95.500500px;}
.x32{left:96.996000px;}
.x4{left:101.149500px;}
.x33{left:120.238500px;}
.x31{left:152.448000px;}
.x6{left:159.193500px;}
.x4b{left:160.465500px;}
.x4c{left:174.132000px;}
.x10{left:190.298964px;}
.x11{left:213.520345px;}
.x48{left:283.104000px;}
.x12{left:284.281942px;}
.xb{left:287.106000px;}
.x49{left:296.146500px;}
.x1a{left:302.411213px;}
.xc{left:307.866000px;}
.x1{left:309.373500px;}
.x4a{left:357.340500px;}
.x36{left:361.332000px;}
.x4d{left:362.919000px;}
.x38{left:371.757000px;}
.x37{left:374.983500px;}
.x4e{left:376.953000px;}
.x35{left:383.083500px;}
.x39{left:385.411500px;}
.xd{left:400.209000px;}
.xa{left:403.929000px;}
.x34{left:419.626500px;}
.x3{left:443.299500px;}
.x44{left:446.580000px;}
.x52{left:449.674500px;}
.x3a{left:451.758000px;}
.x3e{left:454.555500px;}
.x5{left:459.408000px;}
.x1e{left:461.142469px;}
.x3b{left:478.498500px;}
.x45{left:508.257000px;}
.x53{left:516.478500px;}
.x46{left:524.989500px;}
.x8{left:534.838500px;}
.x25{left:563.494088px;}
.x3c{left:587.349000px;}
.x3d{left:600.984000px;}
.x50{left:603.433500px;}
.x4f{left:617.755500px;}
.x51{left:619.231500px;}
.x43{left:630.868500px;}
.x41{left:646.971000px;}
.xe{left:693.721500px;}
.x3f{left:712.090500px;}
.x40{left:728.338500px;}
.x42{left:777.885000px;}
.xf{left:782.845500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.376960pt;}
.v1{vertical-align:24.298667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000360pt;}
.ls2{letter-spacing:0.000777pt;}
.lsc{letter-spacing:0.002729pt;}
.ls4{letter-spacing:0.002996pt;}
.lsf{letter-spacing:0.119981pt;}
.lse{letter-spacing:0.159975pt;}
.ls17{letter-spacing:11.369045pt;}
.ls13{letter-spacing:11.400105pt;}
.lsd{letter-spacing:11.538984pt;}
.ls11{letter-spacing:11.607688pt;}
.ls12{letter-spacing:11.968472pt;}
.ls7{letter-spacing:14.078198pt;}
.ls0{letter-spacing:14.343744pt;}
.ls3{letter-spacing:14.458635pt;}
.ls6{letter-spacing:14.477051pt;}
.ls15{letter-spacing:17.035139pt;}
.ls16{letter-spacing:17.040368pt;}
.ls8{letter-spacing:17.803144pt;}
.ls18{letter-spacing:18.546250pt;}
.ls14{letter-spacing:21.317492pt;}
.lsa{letter-spacing:24.219144pt;}
.ls5{letter-spacing:24.702427pt;}
.ls10{letter-spacing:26.101806pt;}
.lsb{letter-spacing:26.459144pt;}
.ws2{word-spacing:-79.454277pt;}
.ws3{word-spacing:-79.123677pt;}
.ws8e{word-spacing:-60.740640pt;}
.ws7{word-spacing:-53.134080pt;}
.ws77{word-spacing:-47.820693pt;}
.ws1{word-spacing:-45.780331pt;}
.ws5a{word-spacing:-42.560398pt;}
.ws48{word-spacing:-42.507264pt;}
.ws64{word-spacing:-42.347862pt;}
.wsb2{word-spacing:-42.294728pt;}
.ws67{word-spacing:-42.241594pt;}
.wsc6{word-spacing:-42.188460pt;}
.ws27{word-spacing:-42.082191pt;}
.ws39{word-spacing:-41.975923pt;}
.wsc2{word-spacing:-41.816521pt;}
.ws79{word-spacing:-41.603985pt;}
.ws50{word-spacing:-41.497716pt;}
.wsa5{word-spacing:-41.444582pt;}
.ws10{word-spacing:-41.338314pt;}
.ws26{word-spacing:-41.285180pt;}
.ws4d{word-spacing:-41.178912pt;}
.wsbc{word-spacing:-40.806973pt;}
.ws81{word-spacing:-40.753839pt;}
.ws69{word-spacing:-40.700705pt;}
.ws2b{word-spacing:-40.647571pt;}
.ws3a{word-spacing:-40.594437pt;}
.ws15{word-spacing:-40.541303pt;}
.wsc{word-spacing:-40.488169pt;}
.ws88{word-spacing:-40.435035pt;}
.ws28{word-spacing:-40.433625pt;}
.ws8a{word-spacing:-40.381901pt;}
.ws97{word-spacing:-40.328767pt;}
.ws47{word-spacing:-40.275633pt;}
.wsc3{word-spacing:-40.222499pt;}
.wsc0{word-spacing:-40.169364pt;}
.ws41{word-spacing:-39.850560pt;}
.wsb3{word-spacing:-39.744292pt;}
.ws9c{word-spacing:-39.531756pt;}
.wsa8{word-spacing:-39.478621pt;}
.ws83{word-spacing:-39.425487pt;}
.ws2f{word-spacing:-39.372353pt;}
.ws6a{word-spacing:-39.319219pt;}
.ws62{word-spacing:-39.266085pt;}
.ws21{word-spacing:-39.212951pt;}
.ws3d{word-spacing:-39.159817pt;}
.wsf{word-spacing:-39.106683pt;}
.ws17{word-spacing:-39.053549pt;}
.ws12{word-spacing:-39.000415pt;}
.ws9{word-spacing:-38.947281pt;}
.wsb{word-spacing:-38.894147pt;}
.ws3f{word-spacing:-38.875127pt;}
.ws13{word-spacing:-38.841012pt;}
.ws25{word-spacing:-38.835533pt;}
.ws33{word-spacing:-38.820870pt;}
.ws5e{word-spacing:-38.790873pt;}
.ws35{word-spacing:-38.790538pt;}
.ws63{word-spacing:-38.789304pt;}
.ws36{word-spacing:-38.788742pt;}
.ws6{word-spacing:-38.787878pt;}
.ws61{word-spacing:-38.787568pt;}
.ws4{word-spacing:-38.785764pt;}
.ws20{word-spacing:-38.734744pt;}
.wse{word-spacing:-38.681610pt;}
.wsd{word-spacing:-38.628476pt;}
.ws8{word-spacing:-38.575342pt;}
.ws2a{word-spacing:-38.522208pt;}
.ws6b{word-spacing:-38.469074pt;}
.ws11{word-spacing:-38.415940pt;}
.ws9f{word-spacing:-38.362806pt;}
.wsb4{word-spacing:-38.203404pt;}
.ws5{word-spacing:-38.150269pt;}
.ws9b{word-spacing:-37.937733pt;}
.wse8{word-spacing:-37.826168pt;}
.ws1d{word-spacing:-37.565795pt;}
.ws96{word-spacing:-37.353258pt;}
.ws7b{word-spacing:-37.246990pt;}
.ws38{word-spacing:-37.193856pt;}
.ws16{word-spacing:-37.087588pt;}
.ws34{word-spacing:-37.034454pt;}
.ws51{word-spacing:-36.981320pt;}
.ws4e{word-spacing:-36.928186pt;}
.ws4f{word-spacing:-36.821917pt;}
.wsca{word-spacing:-36.774113pt;}
.ws54{word-spacing:-36.768783pt;}
.ws60{word-spacing:-36.715649pt;}
.ws101{word-spacing:-36.678472pt;}
.ws93{word-spacing:-36.662515pt;}
.ws98{word-spacing:-36.609381pt;}
.wsb6{word-spacing:-36.503113pt;}
.wsab{word-spacing:-36.346876pt;}
.wsaf{word-spacing:-36.346471pt;}
.wscb{word-spacing:-36.343727pt;}
.ws94{word-spacing:-36.237443pt;}
.ws74{word-spacing:-36.231772pt;}
.ws6d{word-spacing:-36.160524pt;}
.wsdf{word-spacing:-36.152444pt;}
.ws91{word-spacing:-36.078040pt;}
.ws6f{word-spacing:-36.056803pt;}
.ws82{word-spacing:-36.024906pt;}
.wsc1{word-spacing:-35.918638pt;}
.wse9{word-spacing:-35.817699pt;}
.ws49{word-spacing:-35.759236pt;}
.wsbb{word-spacing:-35.652968pt;}
.wsc5{word-spacing:-35.599834pt;}
.wsc8{word-spacing:-35.546700pt;}
.wsf3{word-spacing:-35.530775pt;}
.wse2{word-spacing:-35.482954pt;}
.wse3{word-spacing:-35.387313pt;}
.ws32{word-spacing:-35.387297pt;}
.wsd3{word-spacing:-35.339492pt;}
.wsd4{word-spacing:-35.291672pt;}
.ws14{word-spacing:-35.281029pt;}
.wse6{word-spacing:-35.243851pt;}
.ws70{word-spacing:-35.148210pt;}
.ws58{word-spacing:-35.121627pt;}
.wsda{word-spacing:-35.100389pt;}
.wsd6{word-spacing:-35.052568pt;}
.ws2d{word-spacing:-35.015359pt;}
.wsdb{word-spacing:-35.004748pt;}
.ws85{word-spacing:-34.962225pt;}
.ws71{word-spacing:-34.956927pt;}
.ws75{word-spacing:-34.909894pt;}
.ws0{word-spacing:-34.909106pt;}
.ws8d{word-spacing:-34.909091pt;}
.ws72{word-spacing:-34.904561pt;}
.ws102{word-spacing:-34.863133pt;}
.wsd5{word-spacing:-34.861285pt;}
.ws3b{word-spacing:-34.855956pt;}
.ws78{word-spacing:-34.813465pt;}
.ws95{word-spacing:-34.802822pt;}
.ws6e{word-spacing:-34.765644pt;}
.ws42{word-spacing:-34.749688pt;}
.wsd9{word-spacing:-34.717823pt;}
.wsbd{word-spacing:-34.696554pt;}
.wsdd{word-spacing:-34.670003pt;}
.ws99{word-spacing:-34.643420pt;}
.wsde{word-spacing:-34.622182pt;}
.ws56{word-spacing:-34.537152pt;}
.ws57{word-spacing:-34.484018pt;}
.ws5f{word-spacing:-34.430884pt;}
.wsec{word-spacing:-34.383079pt;}
.ws46{word-spacing:-34.324616pt;}
.ws59{word-spacing:-34.271482pt;}
.wsa7{word-spacing:-34.058945pt;}
.wsb8{word-spacing:-34.005811pt;}
.ws29{word-spacing:-33.952677pt;}
.wsf5{word-spacing:-33.809230pt;}
.wsd7{word-spacing:-33.713589pt;}
.ws68{word-spacing:-33.687007pt;}
.wsa{word-spacing:-33.633873pt;}
.wse7{word-spacing:-33.617947pt;}
.wscc{word-spacing:-33.474485pt;}
.ws5c{word-spacing:-33.421336pt;}
.ws18{word-spacing:-33.368202pt;}
.ws2e{word-spacing:-33.261934pt;}
.wsa0{word-spacing:-33.155666pt;}
.wsba{word-spacing:-32.996264pt;}
.ws92{word-spacing:-32.943130pt;}
.ws24{word-spacing:-32.889996pt;}
.ws7c{word-spacing:-32.836861pt;}
.ws5d{word-spacing:-32.571191pt;}
.ws2c{word-spacing:-32.518057pt;}
.ws4c{word-spacing:-32.305521pt;}
.ws53{word-spacing:-32.199252pt;}
.ws45{word-spacing:-32.146118pt;}
.wsc4{word-spacing:-32.092984pt;}
.wse5{word-spacing:-32.039865pt;}
.wsc9{word-spacing:-31.880448pt;}
.wsa4{word-spacing:-31.827314pt;}
.wsb7{word-spacing:-31.614778pt;}
.wsf4{word-spacing:-31.513837pt;}
.ws30{word-spacing:-31.508509pt;}
.ws65{word-spacing:-31.402241pt;}
.wsf6{word-spacing:-31.226913pt;}
.ws7e{word-spacing:-31.136571pt;}
.ws7a{word-spacing:-31.030303pt;}
.ws103{word-spacing:-30.939989pt;}
.ws19{word-spacing:-30.817766pt;}
.wsc7{word-spacing:-30.764632pt;}
.ws1a{word-spacing:-30.724084pt;}
.ws9e{word-spacing:-30.711498pt;}
.ws7d{word-spacing:-30.498962pt;}
.ws9a{word-spacing:-30.339560pt;}
.ws8b{word-spacing:-30.286426pt;}
.ws44{word-spacing:-30.233292pt;}
.wsd0{word-spacing:-30.222678pt;}
.ws22{word-spacing:-30.180157pt;}
.wsef{word-spacing:-30.127037pt;}
.ws23{word-spacing:-30.127023pt;}
.wsee{word-spacing:-30.079216pt;}
.ws8f{word-spacing:-30.020755pt;}
.ws37{word-spacing:-29.914487pt;}
.wsb9{word-spacing:-29.755085pt;}
.ws40{word-spacing:-29.701951pt;}
.ws87{word-spacing:-29.648817pt;}
.wsb1{word-spacing:-29.542548pt;}
.wsd1{word-spacing:-29.218444pt;}
.wsff{word-spacing:-29.170623pt;}
.ws52{word-spacing:-29.011208pt;}
.wsa1{word-spacing:-28.904940pt;}
.wse1{word-spacing:-28.692416pt;}
.wsfe{word-spacing:-28.644595pt;}
.wsfd{word-spacing:-28.596775pt;}
.wscd{word-spacing:-28.501133pt;}
.ws55{word-spacing:-28.479867pt;}
.ws104{word-spacing:-28.453313pt;}
.ws1b{word-spacing:-28.426733pt;}
.wsf1{word-spacing:-28.214209pt;}
.ws105{word-spacing:-28.210368pt;}
.ws4a{word-spacing:-28.107928pt;}
.wsa2{word-spacing:-28.001660pt;}
.wsac{word-spacing:-27.955562pt;}
.ws3e{word-spacing:-27.948526pt;}
.wsf0{word-spacing:-27.736002pt;}
.ws100{word-spacing:-27.640361pt;}
.ws3c{word-spacing:-27.523453pt;}
.ws7f{word-spacing:-27.470319pt;}
.ws66{word-spacing:-27.417185pt;}
.wsbf{word-spacing:-27.098381pt;}
.ws90{word-spacing:-27.045247pt;}
.wsa3{word-spacing:-26.938979pt;}
.ws4b{word-spacing:-26.779576pt;}
.ws8c{word-spacing:-26.726442pt;}
.ws9d{word-spacing:-26.567040pt;}
.ws5b{word-spacing:-26.301370pt;}
.wse4{word-spacing:-26.110099pt;}
.ws89{word-spacing:-26.035699pt;}
.wseb{word-spacing:-26.014457pt;}
.wsea{word-spacing:-25.966636pt;}
.ws1c{word-spacing:-25.929431pt;}
.wsed{word-spacing:-25.775354pt;}
.wsb0{word-spacing:-25.770029pt;}
.ws43{word-spacing:-25.716895pt;}
.wsf2{word-spacing:-25.201505pt;}
.wsf8{word-spacing:-24.818940pt;}
.ws31{word-spacing:-24.707347pt;}
.wsa6{word-spacing:-24.494811pt;}
.wsd8{word-spacing:-23.288678pt;}
.ws86{word-spacing:-22.263180pt;}
.wsf7{word-spacing:-22.093160pt;}
.wsce{word-spacing:-21.423671pt;}
.wscf{word-spacing:-21.375850pt;}
.wsfb{word-spacing:-20.993284pt;}
.wse0{word-spacing:-19.367381pt;}
.wsbe{word-spacing:-18.331258pt;}
.ws80{word-spacing:-17.640515pt;}
.wsdc{word-spacing:-16.976346pt;}
.wsae{word-spacing:-16.848633pt;}
.wsfc{word-spacing:-15.782997pt;}
.wsd2{word-spacing:-15.541725pt;}
.ws107{word-spacing:-15.303680pt;}
.wsf9{word-spacing:-13.820180pt;}
.wsa9{word-spacing:-12.939263pt;}
.ws106{word-spacing:-11.472216pt;}
.wsad{word-spacing:-10.798286pt;}
.wsfa{word-spacing:-1.291159pt;}
.ws1e{word-spacing:0.000000pt;}
.ws76{word-spacing:154.413019pt;}
.ws73{word-spacing:178.053671pt;}
.wsaa{word-spacing:315.781856pt;}
.wsb5{word-spacing:675.210254pt;}
.ws1f{word-spacing:677.075261pt;}
.ws6c{word-spacing:677.553468pt;}
.ws84{word-spacing:677.601288pt;}
._44{margin-left:-10.042346pt;}
._b{margin-left:-5.392392pt;}
._42{margin-left:-3.448611pt;}
._2{margin-left:-2.550436pt;}
._0{margin-left:-1.195517pt;}
._5{width:0.956414pt;}
._6{width:2.279453pt;}
._46{width:6.380292pt;}
._3c{width:7.677875pt;}
._13{width:8.979660pt;}
._8{width:10.015775pt;}
._34{width:11.291008pt;}
._7{width:12.885015pt;}
._c{width:14.585304pt;}
._3{width:15.477960pt;}
._f{width:16.684101pt;}
._9{width:17.587380pt;}
._11{width:18.836032pt;}
._a{width:20.934828pt;}
._43{width:21.891241pt;}
._12{width:23.113325pt;}
._e{width:24.016604pt;}
._10{width:24.919884pt;}
._3d{width:27.762557pt;}
._d{width:29.967621pt;}
._3b{width:33.421336pt;}
._4{width:130.072250pt;}
._1e{width:198.790622pt;}
._20{width:200.257123pt;}
._22{width:202.520636pt;}
._2e{width:203.524871pt;}
._1c{width:204.560986pt;}
._16{width:205.804323pt;}
._17{width:206.967961pt;}
._28{width:208.402582pt;}
._36{width:209.693740pt;}
._1f{width:211.192123pt;}
._27{width:212.307938pt;}
._19{width:214.109185pt;}
._1a{width:215.304703pt;}
._15{width:216.579920pt;}
._2a{width:219.114417pt;}
._37{width:220.612799pt;}
._25{width:221.967719pt;}
._2d{width:223.258876pt;}
._31{width:229.271718pt;}
._30{width:230.562518pt;}
._32{width:258.155438pt;}
._1b{width:277.025276pt;}
._14{width:292.232257pt;}
._1d{width:309.399886pt;}
._24{width:311.790921pt;}
._39{width:314.851445pt;}
._2b{width:329.628039pt;}
._41{width:333.521515pt;}
._21{width:334.505750pt;}
._2c{width:340.881842pt;}
._40{width:342.283687pt;}
._3f{width:350.917635pt;}
._29{width:361.428800pt;}
._23{width:374.292567pt;}
._18{width:395.907520pt;}
._35{width:415.386482pt;}
._38{width:418.957094pt;}
._26{width:441.145896pt;}
._3a{width:595.048827pt;}
._2f{width:632.687341pt;}
._3e{width:738.050809pt;}
._1{width:739.053476pt;}
._33{width:743.549476pt;}
._45{width:750.008142pt;}
.fs7{font-size:32.108544pt;}
.fs8{font-size:39.993651pt;}
.fs5{font-size:42.518453pt;}
.fs9{font-size:47.017280pt;}
.fs0{font-size:47.820693pt;}
.fs6{font-size:47.923196pt;}
.fs3{font-size:53.134080pt;}
.fs4{font-size:60.740640pt;}
.fs1{font-size:63.760907pt;}
.fs2{font-size:110.200107pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:3.043011pt;}
.y12f{bottom:3.043018pt;}
.y110{bottom:3.043915pt;}
.y11f{bottom:3.043917pt;}
.y118{bottom:9.346358pt;}
.y11c{bottom:9.347264pt;}
.y12c{bottom:9.456854pt;}
.y109{bottom:10.012970pt;}
.y113{bottom:15.649705pt;}
.y10d{bottom:15.756570pt;}
.y12e{bottom:15.758391pt;}
.y10f{bottom:15.759288pt;}
.y11e{bottom:15.759290pt;}
.y126{bottom:15.760201pt;}
.y117{bottom:22.061731pt;}
.y11b{bottom:22.062637pt;}
.y12b{bottom:22.172227pt;}
.y103{bottom:26.217021pt;}
.y112{bottom:28.365077pt;}
.y11d{bottom:28.365984pt;}
.y125{bottom:28.493682pt;}
.y116{bottom:34.777102pt;}
.y12a{bottom:34.905708pt;}
.y114{bottom:41.080450pt;}
.y124{bottom:41.209055pt;}
.y129{bottom:47.512402pt;}
.y104{bottom:53.213753pt;}
.y123{bottom:53.924428pt;}
.y128{bottom:60.227774pt;}
.y122{bottom:66.639800pt;}
.y127{bottom:72.943147pt;}
.y121{bottom:79.355173pt;}
.y105{bottom:80.220477pt;}
.y57{bottom:94.257333pt;}
.y106{bottom:107.227200pt;}
.y56{bottom:113.385333pt;}
.y178{bottom:126.158667pt;}
.yce{bottom:127.250667pt;}
.y15e{bottom:127.997333pt;}
.y22{bottom:128.621333pt;}
.y2a{bottom:128.726667pt;}
.y55{bottom:132.514667pt;}
.y107{bottom:134.203952pt;}
.y102{bottom:140.553785pt;}
.y177{bottom:140.770667pt;}
.y15d{bottom:142.609333pt;}
.y21{bottom:147.749333pt;}
.y29{bottom:147.854667pt;}
.y54{bottom:151.642667pt;}
.ycc{bottom:151.965333pt;}
.y176{bottom:155.382667pt;}
.y101{bottom:155.889219pt;}
.y15c{bottom:157.221333pt;}
.y108{bottom:161.210675pt;}
.ye8{bottom:162.868000pt;}
.y20{bottom:166.877333pt;}
.y28{bottom:166.984000pt;}
.y175{bottom:169.994667pt;}
.yef{bottom:170.770667pt;}
.y15b{bottom:171.833333pt;}
.ycb{bottom:173.750667pt;}
.y53{bottom:180.030667pt;}
.ye7{bottom:181.996000pt;}
.y174{bottom:184.606667pt;}
.y1f{bottom:186.005333pt;}
.y27{bottom:186.112000pt;}
.y15a{bottom:186.445333pt;}
.yee{bottom:189.898667pt;}
.y7d{bottom:193.372000pt;}
.yca{bottom:195.536000pt;}
.y52{bottom:199.160000pt;}
.y173{bottom:199.218667pt;}
.y159{bottom:201.057333pt;}
.ye6{bottom:201.124000pt;}
.y1e{bottom:205.133333pt;}
.y26{bottom:205.240000pt;}
.yed{bottom:209.026667pt;}
.y7c{bottom:212.500000pt;}
.y172{bottom:213.830667pt;}
.y158{bottom:215.669333pt;}
.yc9{bottom:217.321333pt;}
.y51{bottom:218.288000pt;}
.ye5{bottom:220.253333pt;}
.y1d{bottom:224.262667pt;}
.y25{bottom:224.368000pt;}
.yec{bottom:228.154667pt;}
.y171{bottom:228.442667pt;}
.y157{bottom:230.281333pt;}
.y7b{bottom:231.629333pt;}
.y50{bottom:237.416000pt;}
.yc8{bottom:239.105333pt;}
.ye4{bottom:239.381333pt;}
.ya0{bottom:241.820000pt;}
.y170{bottom:243.054667pt;}
.y1c{bottom:243.390667pt;}
.y24{bottom:243.496000pt;}
.y156{bottom:244.893333pt;}
.yeb{bottom:247.284000pt;}
.y7a{bottom:250.757333pt;}
.y4f{bottom:256.544000pt;}
.y16f{bottom:257.665333pt;}
.ye3{bottom:258.509333pt;}
.y155{bottom:259.504000pt;}
.yc7{bottom:260.890667pt;}
.y9f{bottom:260.948000pt;}
.y1b{bottom:262.518667pt;}
.y23{bottom:262.624000pt;}
.yea{bottom:266.412000pt;}
.y79{bottom:269.885333pt;}
.y136{bottom:270.521333pt;}
.y16e{bottom:272.277333pt;}
.y154{bottom:274.116000pt;}
.y4e{bottom:275.672000pt;}
.ye2{bottom:277.637333pt;}
.y9e{bottom:280.076000pt;}
.yc6{bottom:282.676000pt;}
.ye9{bottom:285.540000pt;}
.y16d{bottom:286.889333pt;}
.y153{bottom:288.728000pt;}
.y78{bottom:289.013333pt;}
.y135{bottom:289.649333pt;}
.yfb{bottom:294.800000pt;}
.ye1{bottom:296.765333pt;}
.y9d{bottom:299.204000pt;}
.y16c{bottom:301.501333pt;}
.y152{bottom:303.340000pt;}
.y4d{bottom:304.061333pt;}
.yc5{bottom:304.460000pt;}
.y77{bottom:308.141333pt;}
.y134{bottom:308.777333pt;}
.yfa{bottom:313.929333pt;}
.ye0{bottom:315.893333pt;}
.y16b{bottom:316.113333pt;}
.y151{bottom:317.952000pt;}
.y9c{bottom:318.332000pt;}
.y4c{bottom:323.189333pt;}
.yc4{bottom:326.245333pt;}
.y1a{bottom:326.650667pt;}
.y133{bottom:327.905333pt;}
.y16a{bottom:330.725333pt;}
.y150{bottom:332.564000pt;}
.yf9{bottom:333.057333pt;}
.ydf{bottom:335.022667pt;}
.y9b{bottom:337.460000pt;}
.y76{bottom:340.581333pt;}
.y4b{bottom:342.317333pt;}
.y169{bottom:345.337333pt;}
.y19{bottom:345.778667pt;}
.y132{bottom:347.033333pt;}
.y14f{bottom:347.176000pt;}
.yc3{bottom:348.030667pt;}
.yf8{bottom:352.185333pt;}
.yde{bottom:354.150667pt;}
.y9a{bottom:356.589333pt;}
.y75{bottom:359.709333pt;}
.y168{bottom:359.949333pt;}
.y4a{bottom:361.446667pt;}
.y14e{bottom:361.788000pt;}
.y18{bottom:364.908000pt;}
.y131{bottom:366.162667pt;}
.yc2{bottom:369.816000pt;}
.yf7{bottom:371.313333pt;}
.ydd{bottom:373.278667pt;}
.y167{bottom:374.561333pt;}
.y99{bottom:375.717333pt;}
.y14d{bottom:376.400000pt;}
.y74{bottom:378.837333pt;}
.y49{bottom:380.574667pt;}
.y17{bottom:384.036000pt;}
.y166{bottom:389.173333pt;}
.yf6{bottom:390.441333pt;}
.y14c{bottom:391.012000pt;}
.yc1{bottom:391.600000pt;}
.ydc{bottom:392.406667pt;}
.y98{bottom:394.845333pt;}
.y73{bottom:397.965333pt;}
.y48{bottom:399.702667pt;}
.y16{bottom:403.164000pt;}
.y165{bottom:403.785333pt;}
.y14b{bottom:405.622667pt;}
.yf5{bottom:409.569333pt;}
.y130{bottom:410.396000pt;}
.ydb{bottom:411.534667pt;}
.yc0{bottom:413.385333pt;}
.yba{bottom:413.973333pt;}
.y72{bottom:417.093333pt;}
.y164{bottom:418.396000pt;}
.y47{bottom:418.830667pt;}
.y14a{bottom:420.234667pt;}
.y97{bottom:421.766667pt;}
.y15{bottom:422.292000pt;}
.yf4{bottom:428.698667pt;}
.y163{bottom:433.008000pt;}
.yb9{bottom:433.101333pt;}
.y12d{bottom:434.342683pt;}
.y149{bottom:434.846667pt;}
.ybf{bottom:435.170667pt;}
.y71{bottom:436.222667pt;}
.y46{bottom:437.958667pt;}
.y96{bottom:440.894667pt;}
.y14{bottom:441.420000pt;}
.y162{bottom:447.620000pt;}
.yf3{bottom:447.826667pt;}
.y148{bottom:449.458667pt;}
.yda{bottom:450.665333pt;}
.yb8{bottom:452.229333pt;}
.y70{bottom:455.350667pt;}
.ycd{bottom:456.956000pt;}
.y45{bottom:457.086667pt;}
.y95{bottom:460.022667pt;}
.y13{bottom:460.548000pt;}
.y161{bottom:462.232000pt;}
.y147{bottom:464.070667pt;}
.yd9{bottom:466.605333pt;}
.yf2{bottom:466.954667pt;}
.yb7{bottom:471.358667pt;}
.y120{bottom:473.356417pt;}
.y6f{bottom:474.478667pt;}
.y44{bottom:476.216000pt;}
.y160{bottom:476.844000pt;}
.y94{bottom:479.150667pt;}
.y12{bottom:479.677333pt;}
.ybe{bottom:481.494667pt;}
.yd8{bottom:482.545333pt;}
.y15f{bottom:491.456000pt;}
.y6e{bottom:493.606667pt;}
.y43{bottom:495.344000pt;}
.ybd{bottom:497.436000pt;}
.y93{bottom:498.278667pt;}
.y11{bottom:498.805333pt;}
.yb6{bottom:501.113333pt;}
.y146{bottom:506.068000pt;}
.yd6{bottom:507.261333pt;}
.y6d{bottom:512.734667pt;}
.y42{bottom:514.472000pt;}
.y92{bottom:517.408000pt;}
.y10{bottom:517.933333pt;}
.yb5{bottom:520.241333pt;}
.yd5{bottom:529.046667pt;}
.y6c{bottom:531.862667pt;}
.y41{bottom:533.600000pt;}
.y91{bottom:536.536000pt;}
.yf{bottom:537.061333pt;}
.ybc{bottom:538.633333pt;}
.yb4{bottom:539.369333pt;}
.y144{bottom:541.136000pt;}
.yd4{bottom:550.830667pt;}
.y6b{bottom:550.992000pt;}
.y40{bottom:552.728000pt;}
.ybb{bottom:553.245333pt;}
.y90{bottom:555.664000pt;}
.yb3{bottom:558.497333pt;}
.y143{bottom:560.264000pt;}
.y11a{bottom:562.817759pt;}
.ye{bottom:566.816000pt;}
.y6a{bottom:570.120000pt;}
.y3f{bottom:571.856000pt;}
.yd3{bottom:572.616000pt;}
.y8f{bottom:574.792000pt;}
.yb2{bottom:577.625333pt;}
.y142{bottom:579.393333pt;}
.yd{bottom:582.757333pt;}
.y69{bottom:589.248000pt;}
.y3e{bottom:590.985333pt;}
.y8e{bottom:593.920000pt;}
.yd7{bottom:594.401333pt;}
.y141{bottom:598.521333pt;}
.yc{bottom:598.697333pt;}
.yf1{bottom:600.245333pt;}
.yb1{bottom:607.381333pt;}
.yff{bottom:610.113333pt;}
.y8d{bottom:613.048000pt;}
.y119{bottom:614.549583pt;}
.y140{bottom:617.649333pt;}
.yd2{bottom:619.252000pt;}
.y3d{bottom:619.373333pt;}
.yb0{bottom:626.509333pt;}
.yfe{bottom:629.241333pt;}
.y68{bottom:630.978667pt;}
.y8c{bottom:632.177333pt;}
.yd1{bottom:635.192000pt;}
.y145{bottom:636.777333pt;}
.y3c{bottom:638.502667pt;}
.yaf{bottom:645.637333pt;}
.y13f{bottom:647.762667pt;}
.y67{bottom:650.106667pt;}
.y8b{bottom:651.305333pt;}
.y111{bottom:653.592298pt;}
.y3b{bottom:657.630667pt;}
.yb{bottom:658.473333pt;}
.yae{bottom:664.765333pt;}
.y13e{bottom:666.890667pt;}
.y66{bottom:669.234667pt;}
.y8a{bottom:670.433333pt;}
.yd0{bottom:676.389333pt;}
.y3a{bottom:676.758667pt;}
.ya{bottom:677.601333pt;}
.yad{bottom:683.893333pt;}
.y13d{bottom:686.018667pt;}
.y65{bottom:688.362667pt;}
.y89{bottom:689.561333pt;}
.ycf{bottom:691.001333pt;}
.y39{bottom:695.886667pt;}
.y9{bottom:696.729333pt;}
.y10e{bottom:704.778919pt;}
.y13c{bottom:705.148000pt;}
.y64{bottom:707.490667pt;}
.y88{bottom:708.689333pt;}
.yac{bottom:713.649333pt;}
.y38{bottom:715.014667pt;}
.y8{bottom:715.857333pt;}
.y13b{bottom:724.276000pt;}
.y63{bottom:726.618667pt;}
.y87{bottom:727.817333pt;}
.y18a{bottom:729.057333pt;}
.yab{bottom:732.777333pt;}
.y37{bottom:734.142667pt;}
.y13a{bottom:743.404000pt;}
.y189{bottom:743.669333pt;}
.y10c{bottom:743.797182pt;}
.y62{bottom:745.748000pt;}
.y86{bottom:746.946667pt;}
.yaa{bottom:751.905333pt;}
.y36{bottom:753.272000pt;}
.y188{bottom:758.281333pt;}
.y139{bottom:762.532000pt;}
.y61{bottom:764.876000pt;}
.y85{bottom:766.074667pt;}
.ya9{bottom:771.033333pt;}
.y35{bottom:772.400000pt;}
.y187{bottom:772.893333pt;}
.y138{bottom:781.660000pt;}
.y84{bottom:785.202667pt;}
.y186{bottom:787.504000pt;}
.y10b{bottom:789.986667pt;}
.ya8{bottom:790.161333pt;}
.y34{bottom:791.528000pt;}
.y7{bottom:798.082667pt;}
.y137{bottom:800.788000pt;}
.y185{bottom:802.116000pt;}
.y10a{bottom:804.598667pt;}
.y60{bottom:806.605333pt;}
.ya7{bottom:809.290667pt;}
.y33{bottom:810.656000pt;}
.y83{bottom:812.124000pt;}
.y184{bottom:816.728000pt;}
.yfd{bottom:819.917333pt;}
.y5f{bottom:825.733333pt;}
.y100{bottom:828.281383pt;}
.ya6{bottom:828.418667pt;}
.y32{bottom:829.784000pt;}
.y82{bottom:831.252000pt;}
.y183{bottom:831.340000pt;}
.y6{bottom:834.613333pt;}
.yfc{bottom:839.045333pt;}
.y5e{bottom:844.862667pt;}
.y182{bottom:845.952000pt;}
.ya5{bottom:847.546667pt;}
.y31{bottom:848.912000pt;}
.y81{bottom:850.380000pt;}
.yf0{bottom:858.173333pt;}
.y181{bottom:860.564000pt;}
.y5d{bottom:863.990667pt;}
.ya4{bottom:866.674667pt;}
.y30{bottom:868.040000pt;}
.y5{bottom:871.142667pt;}
.y180{bottom:875.176000pt;}
.y80{bottom:877.301333pt;}
.y5c{bottom:883.118667pt;}
.ya3{bottom:885.802667pt;}
.y2f{bottom:887.169333pt;}
.y17f{bottom:889.788000pt;}
.y7f{bottom:896.429333pt;}
.y5b{bottom:902.246667pt;}
.y17e{bottom:904.400000pt;}
.ya2{bottom:904.930667pt;}
.y2e{bottom:906.297333pt;}
.y4{bottom:907.672000pt;}
.y7e{bottom:915.557333pt;}
.y17d{bottom:919.012000pt;}
.y5a{bottom:921.374667pt;}
.ya1{bottom:924.060000pt;}
.y17c{bottom:933.622667pt;}
.y2d{bottom:934.686667pt;}
.y59{bottom:940.502667pt;}
.y3{bottom:944.202667pt;}
.y17b{bottom:948.234667pt;}
.y2c{bottom:953.814667pt;}
.y58{bottom:959.632000pt;}
.y17a{bottom:962.846667pt;}
.y2b{bottom:972.942667pt;}
.y179{bottom:977.458667pt;}
.y2{bottom:992.070667pt;}
.y1{bottom:1038.562667pt;}
.hd{height:25.322973pt;}
.h9{height:25.428934pt;}
.hb{height:25.432557pt;}
.h11{height:35.968219pt;}
.h10{height:36.582830pt;}
.he{height:38.037440pt;}
.ha{height:38.393905pt;}
.h2{height:45.907866pt;}
.h8{height:46.006268pt;}
.hc{height:50.751907pt;}
.h5{height:51.008717pt;}
.h3{height:61.210470pt;}
.hf{height:89.030251pt;}
.h6{height:96.273914pt;}
.h4{height:105.792102pt;}
.h7{height:177.075226pt;}
.h1{height:1096.000000pt;}
.h0{height:1096.062667pt;}
.w8{width:90.550843pt;}
.w6{width:98.588516pt;}
.w9{width:104.352094pt;}
.w7{width:105.547556pt;}
.w5{width:195.338556pt;}
.w4{width:204.684899pt;}
.w3{width:231.638953pt;}
.w2{width:436.339738pt;}
.w1{width:774.666667pt;}
.w0{width:774.802667pt;}
.x0{left:0.000000pt;}
.x2e{left:5.341518pt;}
.x14{left:6.565480pt;}
.x18{left:7.739597pt;}
.x26{left:8.695150pt;}
.x16{left:10.183680pt;}
.x2a{left:11.648513pt;}
.x28{left:12.622970pt;}
.x2c{left:14.256795pt;}
.x27{left:15.343579pt;}
.x13{left:17.060661pt;}
.x17{left:18.258740pt;}
.x24{left:19.361031pt;}
.x15{left:20.678861pt;}
.x1b{left:21.736606pt;}
.x2d{left:22.730061pt;}
.x22{left:23.801496pt;}
.x21{left:26.646132pt;}
.x20{left:29.685479pt;}
.x19{left:32.567783pt;}
.x23{left:33.718400pt;}
.x30{left:41.422794pt;}
.x2f{left:43.270327pt;}
.x1d{left:44.465789pt;}
.x2b{left:65.984064pt;}
.x1f{left:73.917587pt;}
.x2{left:75.590667pt;}
.x29{left:78.264771pt;}
.x1c{left:79.460234pt;}
.x47{left:81.878667pt;}
.x7{left:83.561333pt;}
.x9{left:84.889333pt;}
.x32{left:86.218667pt;}
.x4{left:89.910667pt;}
.x33{left:106.878667pt;}
.x31{left:135.509333pt;}
.x6{left:141.505333pt;}
.x4b{left:142.636000pt;}
.x4c{left:154.784000pt;}
.x10{left:169.154635pt;}
.x11{left:189.795862pt;}
.x48{left:251.648000pt;}
.x12{left:252.695060pt;}
.xb{left:255.205333pt;}
.x49{left:263.241333pt;}
.x1a{left:268.809967pt;}
.xc{left:273.658667pt;}
.x1{left:274.998667pt;}
.x4a{left:317.636000pt;}
.x36{left:321.184000pt;}
.x4d{left:322.594667pt;}
.x38{left:330.450667pt;}
.x37{left:333.318667pt;}
.x4e{left:335.069333pt;}
.x35{left:340.518667pt;}
.x39{left:342.588000pt;}
.xd{left:355.741333pt;}
.xa{left:359.048000pt;}
.x34{left:373.001333pt;}
.x3{left:394.044000pt;}
.x44{left:396.960000pt;}
.x52{left:399.710667pt;}
.x3a{left:401.562667pt;}
.x3e{left:404.049333pt;}
.x5{left:408.362667pt;}
.x1e{left:409.904417pt;}
.x3b{left:425.332000pt;}
.x45{left:451.784000pt;}
.x53{left:459.092000pt;}
.x46{left:466.657333pt;}
.x8{left:475.412000pt;}
.x25{left:500.883634pt;}
.x3c{left:522.088000pt;}
.x3d{left:534.208000pt;}
.x50{left:536.385333pt;}
.x4f{left:549.116000pt;}
.x51{left:550.428000pt;}
.x43{left:560.772000pt;}
.x41{left:575.085333pt;}
.xe{left:616.641333pt;}
.x3f{left:632.969333pt;}
.x40{left:647.412000pt;}
.x42{left:691.453333pt;}
.xf{left:695.862667pt;}
}




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