
    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_94b811e12b3a26bad70568a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_47234bd0203d2abdeea844b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_8b76dda6241d97539815c3c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cd383bd3b0d88bbd879f48d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.700000;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_8a785386350e8e0eef9a0d63.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.729000;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_ed357dc24759405c583117b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774069;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;}
.m9{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);}
.m13{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);}
.m3{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);}
.m10{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);}
.m29{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);}
.m1c{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);}
.m14{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);}
.m23{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);}
.m1{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);}
.m2{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);}
.m28{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);}
.ma{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);}
.mc{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);}
.m18{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);}
.m25{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);}
.m1d{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);}
.md{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);}
.m24{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);}
.m11{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);}
.m22{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);}
.m1f{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);}
.m8{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);}
.m27{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);}
.m1a{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);}
.m1b{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m21{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);}
.m4{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);}
.m20{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);}
.m16{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);}
.me{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);}
.m19{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m12{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);}
.m26{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);}
.m17{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:35.868000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls1c{letter-spacing:0.002488px;}
.ls15{letter-spacing:0.004200px;}
.ls2{letter-spacing:2.983200px;}
.ls4{letter-spacing:2.989200px;}
.ls0{letter-spacing:7.173300px;}
.ls11{letter-spacing:11.895344px;}
.ls1b{letter-spacing:13.350797px;}
.ls19{letter-spacing:13.448400px;}
.ls1a{letter-spacing:13.454400px;}
.lse{letter-spacing:14.764573px;}
.lsb{letter-spacing:14.884124px;}
.lsc{letter-spacing:14.943900px;}
.ls9{letter-spacing:15.003676px;}
.ls14{letter-spacing:15.063451px;}
.ls12{letter-spacing:15.123227px;}
.ls8{letter-spacing:15.183002px;}
.lsa{letter-spacing:16.378514px;}
.lsf{letter-spacing:17.514251px;}
.ls1e{letter-spacing:17.579812px;}
.ls13{letter-spacing:22.654952px;}
.ls3{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls10{letter-spacing:93.537986px;}
.ls18{letter-spacing:169.568208px;}
.ls17{letter-spacing:179.467114px;}
.ls20{letter-spacing:665.411818px;}
.ls1f{letter-spacing:1377.164650px;}
.ls1d{letter-spacing:1801.530509px;}
.lsd{letter-spacing:1891.000498px;}
.ls16{letter-spacing:2262.267706px;}
.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;}
}
.wsb{word-spacing:-14.943900px;}
.ws77{word-spacing:-13.449600px;}
.ws25{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.ws2{word-spacing:-3.305581px;}
.wsba{word-spacing:-3.287658px;}
.ws1{word-spacing:-3.263738px;}
.ws7{word-spacing:-3.221896px;}
.wsb6{word-spacing:-2.988780px;}
.wsb5{word-spacing:-2.689902px;}
.wsd7{word-spacing:-2.570351px;}
.ws6d{word-spacing:-2.510575px;}
.ws68{word-spacing:-2.450800px;}
.ws7b{word-spacing:-2.331248px;}
.wsa2{word-spacing:-2.151922px;}
.wsd8{word-spacing:-2.092146px;}
.ws28{word-spacing:-1.972595px;}
.ws54{word-spacing:-1.912819px;}
.ws2a{word-spacing:-1.853044px;}
.ws4b{word-spacing:-1.733492px;}
.ws35{word-spacing:-1.613941px;}
.ws3c{word-spacing:-1.554166px;}
.ws45{word-spacing:-1.494390px;}
.wsc4{word-spacing:-1.434614px;}
.ws60{word-spacing:-1.374839px;}
.wsd0{word-spacing:-1.344960px;}
.ws73{word-spacing:-1.315063px;}
.wsa3{word-spacing:-1.255288px;}
.ws36{word-spacing:-1.195512px;}
.ws2b{word-spacing:-1.135736px;}
.wsda{word-spacing:-0.968371px;}
.ws84{word-spacing:-0.956410px;}
.ws61{word-spacing:-0.896634px;}
.ws7e{word-spacing:-0.836858px;}
.ws3{word-spacing:-0.778602px;}
.wsc1{word-spacing:-0.777083px;}
.ws38{word-spacing:-0.717307px;}
.wsc5{word-spacing:-0.657532px;}
.wsde{word-spacing:-0.645581px;}
.ws15{word-spacing:-0.597756px;}
.ws30{word-spacing:-0.537980px;}
.ws59{word-spacing:-0.478205px;}
.wsb4{word-spacing:-0.418429px;}
.wsfd{word-spacing:-0.376589px;}
.ws39{word-spacing:-0.358654px;}
.ws1f{word-spacing:-0.298878px;}
.wse4{word-spacing:-0.268992px;}
.ws2e{word-spacing:-0.239102px;}
.wsdb{word-spacing:-0.215194px;}
.ws10{word-spacing:-0.179327px;}
.wscf{word-spacing:-0.161395px;}
.ws11{word-spacing:-0.119551px;}
.wsc6{word-spacing:-0.107597px;}
.wsf{word-spacing:-0.059776px;}
.ws7a{word-spacing:-0.053798px;}
.wsbe{word-spacing:-0.003514px;}
.wsfa{word-spacing:-0.001891px;}
.wsf0{word-spacing:-0.001526px;}
.ws4{word-spacing:0.000000px;}
.ws79{word-spacing:0.053798px;}
.ws16{word-spacing:0.059776px;}
.wse9{word-spacing:0.107597px;}
.ws1a{word-spacing:0.119551px;}
.ws78{word-spacing:0.161395px;}
.ws19{word-spacing:0.179327px;}
.wsc{word-spacing:0.191282px;}
.wse6{word-spacing:0.215194px;}
.ws23{word-spacing:0.239102px;}
.wsf1{word-spacing:0.268992px;}
.ws26{word-spacing:0.298878px;}
.wse3{word-spacing:0.322790px;}
.ws37{word-spacing:0.358654px;}
.wsdd{word-spacing:0.376589px;}
.ws40{word-spacing:0.418429px;}
.ws81{word-spacing:0.478205px;}
.ws7d{word-spacing:0.537980px;}
.wsd9{word-spacing:0.537984px;}
.ws82{word-spacing:0.597756px;}
.ws57{word-spacing:0.717307px;}
.ws2c{word-spacing:0.777083px;}
.ws4c{word-spacing:0.836858px;}
.ws17{word-spacing:0.896634px;}
.ws85{word-spacing:1.016185px;}
.ws58{word-spacing:1.075961px;}
.ws13{word-spacing:1.135736px;}
.ws14{word-spacing:1.195512px;}
.wsed{word-spacing:1.237363px;}
.ws7c{word-spacing:1.255288px;}
.ws4d{word-spacing:1.315063px;}
.ws46{word-spacing:1.374839px;}
.ws18{word-spacing:1.434614px;}
.ws53{word-spacing:1.494390px;}
.wsb1{word-spacing:1.554166px;}
.wsf8{word-spacing:1.560154px;}
.ws6f{word-spacing:1.613941px;}
.ws21{word-spacing:1.673717px;}
.ws22{word-spacing:1.733492px;}
.ws65{word-spacing:1.793268px;}
.wsee{word-spacing:1.829146px;}
.ws44{word-spacing:1.853044px;}
.ws70{word-spacing:1.972595px;}
.wsf5{word-spacing:1.990541px;}
.ws5e{word-spacing:2.032370px;}
.ws3a{word-spacing:2.092146px;}
.ws3b{word-spacing:2.151922px;}
.wse1{word-spacing:2.151936px;}
.ws66{word-spacing:2.211697px;}
.wsb3{word-spacing:2.391024px;}
.wsfe{word-spacing:2.474726px;}
.ws6{word-spacing:2.510252px;}
.ws43{word-spacing:2.510575px;}
.ws3f{word-spacing:2.570351px;}
.ws1e{word-spacing:2.630126px;}
.ws5d{word-spacing:2.689902px;}
.wsf3{word-spacing:2.743718px;}
.ws7f{word-spacing:2.869229px;}
.wsd{word-spacing:2.869236px;}
.wsdc{word-spacing:2.905114px;}
.wsd4{word-spacing:2.929004px;}
.ws50{word-spacing:2.988780px;}
.ws4a{word-spacing:3.048556px;}
.ws86{word-spacing:3.108331px;}
.wseb{word-spacing:3.120307px;}
.ws3d{word-spacing:3.168107px;}
.ws29{word-spacing:3.227882px;}
.wsf4{word-spacing:3.227904px;}
.wse7{word-spacing:3.345061px;}
.ws42{word-spacing:3.347434px;}
.ws20{word-spacing:3.407209px;}
.wsc0{word-spacing:3.466985px;}
.wsf2{word-spacing:3.496896px;}
.wsaf{word-spacing:3.526760px;}
.wsd3{word-spacing:3.586536px;}
.ws93{word-spacing:3.706087px;}
.ws1b{word-spacing:3.753933px;}
.ws3e{word-spacing:3.765863px;}
.ws62{word-spacing:3.825638px;}
.wsf6{word-spacing:3.873485px;}
.ws55{word-spacing:4.004965px;}
.wse5{word-spacing:4.034880px;}
.wsac{word-spacing:4.064741px;}
.wsfb{word-spacing:4.088678px;}
.wsb0{word-spacing:4.124516px;}
.ws12{word-spacing:4.184292px;}
.ws4f{word-spacing:4.244068px;}
.ws1d{word-spacing:4.303872px;}
.wsbd{word-spacing:4.363619px;}
.ws6a{word-spacing:4.483170px;}
.wsab{word-spacing:4.542946px;}
.ws5f{word-spacing:4.602721px;}
.wsc2{word-spacing:4.662497px;}
.ws47{word-spacing:4.782048px;}
.ws87{word-spacing:4.841824px;}
.wsec{word-spacing:4.841856px;}
.wsdf{word-spacing:4.895654px;}
.ws24{word-spacing:4.901599px;}
.ws74{word-spacing:4.961375px;}
.wsc3{word-spacing:5.021150px;}
.wsd5{word-spacing:5.080926px;}
.wsfc{word-spacing:5.164646px;}
.ws63{word-spacing:5.200477px;}
.ws41{word-spacing:5.260253px;}
.wsd2{word-spacing:5.326042px;}
.ws56{word-spacing:5.439580px;}
.ws33{word-spacing:5.499355px;}
.ws69{word-spacing:5.559131px;}
.ws48{word-spacing:5.618906px;}
.ws83{word-spacing:5.678682px;}
.ws52{word-spacing:5.738458px;}
.ws51{word-spacing:5.798233px;}
.wsad{word-spacing:5.858009px;}
.wse2{word-spacing:5.864026px;}
.wsd6{word-spacing:6.156887px;}
.wsb2{word-spacing:6.216662px;}
.ws5a{word-spacing:6.276438px;}
.wsf7{word-spacing:6.294413px;}
.ws2d{word-spacing:6.395989px;}
.ws71{word-spacing:6.515540px;}
.ws9{word-spacing:6.578400px;}
.ws32{word-spacing:6.754643px;}
.ws6c{word-spacing:6.874194px;}
.ws5c{word-spacing:6.933970px;}
.ws5b{word-spacing:6.993745px;}
.wse0{word-spacing:7.155187px;}
.ws34{word-spacing:7.173072px;}
.ws31{word-spacing:7.471950px;}
.wsb9{word-spacing:7.711052px;}
.wsa9{word-spacing:7.770828px;}
.wsae{word-spacing:7.830604px;}
.ws8e{word-spacing:7.890379px;}
.ws67{word-spacing:7.950155px;}
.ws95{word-spacing:9.026116px;}
.ws9f{word-spacing:9.145667px;}
.ws90{word-spacing:9.384769px;}
.ws9c{word-spacing:9.564096px;}
.wsd1{word-spacing:12.266035px;}
.ws9a{word-spacing:12.971305px;}
.wsce{word-spacing:13.234406px;}
.ws9e{word-spacing:13.449510px;}
.wsb8{word-spacing:13.628837px;}
.ws88{word-spacing:13.867939px;}
.ws92{word-spacing:16.199188px;}
.wsa5{word-spacing:16.617617px;}
.ws9b{word-spacing:17.753353px;}
.wsa4{word-spacing:18.112007px;}
.ws0{word-spacing:18.591541px;}
.wsa7{word-spacing:20.443255px;}
.wsa1{word-spacing:20.801909px;}
.wsa0{word-spacing:20.861684px;}
.wsa8{word-spacing:21.638767px;}
.ws94{word-spacing:22.057196px;}
.wsbf{word-spacing:22.296299px;}
.ws80{word-spacing:22.654952px;}
.wsc8{word-spacing:22.756723px;}
.ws96{word-spacing:23.192933px;}
.ws98{word-spacing:24.268894px;}
.ws91{word-spacing:24.866650px;}
.ws97{word-spacing:27.616327px;}
.ws8f{word-spacing:31.382190px;}
.ws99{word-spacing:31.860395px;}
.wsaa{word-spacing:32.039722px;}
.wsbc{word-spacing:33.832990px;}
.ws8d{word-spacing:34.669848px;}
.wscc{word-spacing:37.228493px;}
.ws8b{word-spacing:38.495486px;}
.wsc7{word-spacing:43.684301px;}
.wsa6{word-spacing:43.875290px;}
.ws8a{word-spacing:45.011027px;}
.ws8{word-spacing:46.058400px;}
.ws9d{word-spacing:51.885221px;}
.wsca{word-spacing:53.798400px;}
.wsa{word-spacing:60.998400px;}
.ws4e{word-spacing:83.207027px;}
.wsb7{word-spacing:85.180230px;}
.wscd{word-spacing:115.397568px;}
.wsc9{word-spacing:169.514410px;}
.ws8c{word-spacing:173.169913px;}
.ws6e{word-spacing:173.587734px;}
.wscb{word-spacing:179.413315px;}
.ws49{word-spacing:361.522220px;}
.ws76{word-spacing:372.295978px;}
.ws89{word-spacing:498.264193px;}
.ws6b{word-spacing:527.698388px;}
.ws64{word-spacing:555.374491px;}
.ws27{word-spacing:1150.410280px;}
.ws2f{word-spacing:1359.568529px;}
.ws72{word-spacing:1577.477476px;}
.wsf9{word-spacing:2022.207466px;}
.wsbb{word-spacing:2033.744630px;}
.wse8{word-spacing:2052.702931px;}
.ws75{word-spacing:2085.451256px;}
.ws1c{word-spacing:2088.767648px;}
.wsef{word-spacing:2138.734800px;}
.wse{word-spacing:2219.296001px;}
.wsea{word-spacing:2222.126400px;}
._5{margin-left:-6.640315px;}
._17{margin-left:-5.439580px;}
._3{margin-left:-4.423394px;}
._4{margin-left:-3.297185px;}
._77{margin-left:-2.092146px;}
._6{margin-left:-1.075961px;}
._8c{width:2.958912px;}
._23{width:4.542946px;}
._1{width:7.172234px;}
._0{width:9.665687px;}
._88{width:11.459059px;}
._2a{width:12.612652px;}
._15{width:13.688612px;}
._59{width:15.760091px;}
._2f{width:17.340293px;}
._7{width:18.410885px;}
._18{width:19.785724px;}
._19{width:21.703766px;}
._10{width:22.714728px;}
._c{width:24.149342px;}
._13{width:25.404630px;}
._b{width:26.485814px;}
._16{width:28.453186px;}
._21{width:30.126902px;}
._8{width:31.561517px;}
._44{width:33.493794px;}
._11{width:35.626258px;}
._28{width:38.555262px;}
._24{width:39.989876px;}
._f{width:41.544042px;}
._73{width:42.859105px;}
._9d{width:44.652672px;}
._3e{width:46.086988px;}
._95{width:48.656866px;}
._2{width:54.433951px;}
._97{width:56.494463px;}
._62{width:64.442712px;}
._1f{width:70.415048px;}
._20{width:71.610560px;}
._84{width:79.979144px;}
._1c{width:86.942580px;}
._1b{width:89.333604px;}
._3a{width:108.459542px;}
._68{width:114.708768px;}
._32{width:124.285354px;}
._6c{width:129.354398px;}
._7b{width:136.146259px;}
._7f{width:147.725644px;}
._63{width:152.539687px;}
._33{width:155.225375px;}
._74{width:156.920126px;}
._31{width:163.827178px;}
._83{width:165.577804px;}
._7c{width:169.821304px;}
._3d{width:183.271381px;}
._7e{width:187.577530px;}
._38{width:191.759516px;}
._81{width:193.813114px;}
._34{width:197.599999px;}
._65{width:202.519733px;}
._2b{width:215.319355px;}
._55{width:221.359266px;}
._6d{width:234.021474px;}
._6a{width:237.600366px;}
._6f{width:239.700156px;}
._4d{width:244.671750px;}
._80{width:263.714191px;}
._7d{width:274.946131px;}
._9b{width:285.694109px;}
._6e{width:287.580412px;}
._2d{width:300.198014px;}
._4e{width:307.197028px;}
._85{width:332.052850px;}
._72{width:368.465975px;}
._1d{width:371.653763px;}
._64{width:381.786757px;}
._8d{width:392.807079px;}
._7a{width:396.422918px;}
._37{width:409.043822px;}
._6b{width:551.848339px;}
._3c{width:613.481598px;}
._5b{width:668.529702px;}
._92{width:686.678432px;}
._4a{width:703.628807px;}
._56{width:734.342638px;}
._9f{width:757.476535px;}
._69{width:797.943876px;}
._78{width:808.703484px;}
._8a{width:829.043223px;}
._9a{width:832.594234px;}
._53{width:839.438970px;}
._96{width:860.475384px;}
._30{width:889.824019px;}
._9c{width:900.883390px;}
._45{width:948.230562px;}
._47{width:950.502035px;}
._8f{width:952.512067px;}
._4b{width:959.468375px;}
._39{width:995.083805px;}
._67{width:1020.906864px;}
._22{width:1033.220638px;}
._35{width:1068.010037px;}
._41{width:1074.525577px;}
._75{width:1090.674864px;}
._98{width:1106.500517px;}
._52{width:1124.150153px;}
._93{width:1188.747449px;}
._d{width:1208.473822px;}
._87{width:1215.776052px;}
._3b{width:1219.062978px;}
._12{width:1220.228912px;}
._99{width:1245.521165px;}
._25{width:1308.666886px;}
._49{width:1314.296336px;}
._9e{width:1324.939982px;}
._9{width:1329.976182px;}
._42{width:1349.194459px;}
._91{width:1374.188668px;}
._51{width:1394.863018px;}
._48{width:1439.874044px;}
._2e{width:1453.981086px;}
._2c{width:1464.273317px;}
._4f{width:1496.369566px;}
._5a{width:1511.914470px;}
._27{width:1532.406673px;}
._71{width:1539.699296px;}
._4c{width:1574.021318px;}
._36{width:1614.359021px;}
._57{width:1621.542920px;}
._5c{width:1624.221995px;}
._46{width:1634.095796px;}
._54{width:1650.001330px;}
._60{width:1667.803631px;}
._61{width:1668.874368px;}
._58{width:1678.389516px;}
._26{width:1702.326806px;}
._5e{width:1726.617598px;}
._29{width:1739.469352px;}
._50{width:1758.520007px;}
._e{width:1781.413822px;}
._1a{width:1782.430007px;}
._89{width:1787.840177px;}
._79{width:1800.799117px;}
._5d{width:1841.745403px;}
._66{width:1848.260944px;}
._43{width:1873.676401px;}
._76{width:1876.056598px;}
._3f{width:1888.908352px;}
._14{width:1904.719308px;}
._94{width:1910.086800px;}
._1e{width:1922.762197px;}
._8b{width:1929.246670px;}
._86{width:1946.827680px;}
._a{width:1954.663786px;}
._8e{width:1983.580214px;}
._40{width:1993.336325px;}
._90{width:1997.530006px;}
._70{width:2011.687434px;}
._5f{width:2043.786931px;}
._82{width:2054.187886px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,255,0);}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3c{bottom:45.921000px;}
.ydd{bottom:99.720000px;}
.y10c{bottom:101.431500px;}
.y3b{bottom:103.864500px;}
.y17e{bottom:111.897000px;}
.y215{bottom:113.013000px;}
.y1e7{bottom:113.793000px;}
.y144{bottom:114.402000px;}
.y90{bottom:114.882000px;}
.y10{bottom:115.590000px;}
.y6f{bottom:116.407500px;}
.yb0{bottom:116.839500px;}
.y1f7{bottom:120.322500px;}
.ydc{bottom:120.610500px;}
.y10b{bottom:122.323500px;}
.y197{bottom:122.785500px;}
.y3a{bottom:124.756500px;}
.y247{bottom:132.466500px;}
.y17d{bottom:132.789000px;}
.yf{bottom:133.477500px;}
.y214{bottom:133.903500px;}
.y1e6{bottom:134.685000px;}
.y143{bottom:135.292500px;}
.y8f{bottom:135.774000px;}
.y6e{bottom:137.298000px;}
.yaf{bottom:137.731500px;}
.y161{bottom:141.213000px;}
.ydb{bottom:141.502500px;}
.y10a{bottom:143.215500px;}
.y196{bottom:143.676000px;}
.y39{bottom:145.648500px;}
.ye{bottom:151.365000px;}
.y246{bottom:151.617000px;}
.y213{bottom:154.795500px;}
.y1e5{bottom:155.575500px;}
.y142{bottom:156.184500px;}
.y8e{bottom:156.666000px;}
.y17c{bottom:158.163000px;}
.y6d{bottom:158.190000px;}
.yae{bottom:158.623500px;}
.y160{bottom:162.105000px;}
.yda{bottom:162.394500px;}
.y109{bottom:164.106000px;}
.y195{bottom:164.568000px;}
.y38{bottom:166.539000px;}
.yd{bottom:169.254000px;}
.y245{bottom:170.767500px;}
.y212{bottom:175.687500px;}
.y1e4{bottom:176.467500px;}
.y141{bottom:177.076500px;}
.y8d{bottom:177.556500px;}
.y6c{bottom:179.082000px;}
.yad{bottom:179.514000px;}
.y15f{bottom:182.997000px;}
.yd9{bottom:183.285000px;}
.y108{bottom:184.998000px;}
.y194{bottom:185.460000px;}
.yc{bottom:187.141500px;}
.y37{bottom:187.431000px;}
.y244{bottom:189.918000px;}
.y17b{bottom:190.309500px;}
.y211{bottom:196.578000px;}
.y1e3{bottom:197.359500px;}
.y140{bottom:197.967000px;}
.y8c{bottom:198.448500px;}
.y6b{bottom:199.972500px;}
.yac{bottom:200.406000px;}
.y15e{bottom:203.887500px;}
.yd8{bottom:204.177000px;}
.yb{bottom:205.029000px;}
.y107{bottom:205.890000px;}
.y193{bottom:206.352000px;}
.y36{bottom:208.323000px;}
.y243{bottom:209.068500px;}
.y1e2{bottom:218.250000px;}
.y273{bottom:219.123000px;}
.y8b{bottom:219.340500px;}
.y6a{bottom:220.864500px;}
.yab{bottom:221.298000px;}
.y210{bottom:221.953500px;}
.ya{bottom:222.918000px;}
.y13f{bottom:223.342500px;}
.y15d{bottom:224.779500px;}
.yd7{bottom:225.069000px;}
.y106{bottom:226.782000px;}
.y192{bottom:227.242500px;}
.y242{bottom:228.219000px;}
.y35{bottom:229.213500px;}
.y272{bottom:238.275000px;}
.y1e1{bottom:239.142000px;}
.y8a{bottom:240.232500px;}
.y69{bottom:241.756500px;}
.yaa{bottom:242.190000px;}
.y15c{bottom:245.671500px;}
.yd6{bottom:245.961000px;}
.y241{bottom:247.369500px;}
.y105{bottom:247.672500px;}
.y191{bottom:248.134500px;}
.y9{bottom:249.772500px;}
.y34{bottom:250.105500px;}
.y271{bottom:257.425500px;}
.y1e0{bottom:260.034000px;}
.y89{bottom:261.123000px;}
.y68{bottom:262.647000px;}
.y20f{bottom:262.825500px;}
.ya9{bottom:263.080500px;}
.y240{bottom:266.520000px;}
.y15b{bottom:266.563500px;}
.yd5{bottom:266.851500px;}
.y8{bottom:267.660000px;}
.y104{bottom:268.564500px;}
.y190{bottom:269.026500px;}
.y13e{bottom:269.446500px;}
.y33{bottom:270.997500px;}
.y20e{bottom:279.262500px;}
.y1df{bottom:280.924500px;}
.y88{bottom:282.015000px;}
.y67{bottom:283.539000px;}
.ya8{bottom:283.972500px;}
.y7{bottom:285.547500px;}
.y23f{bottom:285.670500px;}
.y13b{bottom:287.379000px;}
.y15a{bottom:287.454000px;}
.yd4{bottom:287.743500px;}
.y18f{bottom:289.917000px;}
.y1be{bottom:292.984500px;}
.y103{bottom:293.938500px;}
.y20d{bottom:296.299500px;}
.y32{bottom:296.371500px;}
.y270{bottom:297.466500px;}
.y1de{bottom:301.816500px;}
.y87{bottom:302.907000px;}
.y6{bottom:303.436500px;}
.y66{bottom:304.431000px;}
.y23e{bottom:304.821000px;}
.ya7{bottom:304.864500px;}
.y13a{bottom:305.313000px;}
.y159{bottom:308.346000px;}
.yd3{bottom:308.635500px;}
.y18e{bottom:310.809000px;}
.y1bd{bottom:310.918500px;}
.y20c{bottom:313.335000px;}
.y26f{bottom:316.617000px;}
.y5{bottom:321.324000px;}
.y1dd{bottom:322.708500px;}
.y13d{bottom:323.245500px;}
.y86{bottom:323.797500px;}
.y23d{bottom:323.971500px;}
.y65{bottom:325.323000px;}
.ya6{bottom:325.755000px;}
.y1bc{bottom:328.851000px;}
.y158{bottom:329.238000px;}
.y102{bottom:329.281500px;}
.y20b{bottom:330.372000px;}
.yd2{bottom:334.009500px;}
.y26e{bottom:335.767500px;}
.y18d{bottom:336.183000px;}
.y13c{bottom:341.178000px;}
.y23c{bottom:343.122000px;}
.y1dc{bottom:343.600500px;}
.y85{bottom:344.689500px;}
.y4{bottom:345.189000px;}
.y64{bottom:346.213500px;}
.ya5{bottom:346.647000px;}
.y1ba{bottom:346.783500px;}
.y20a{bottom:346.810500px;}
.y157{bottom:350.128500px;}
.y101{bottom:350.173500px;}
.y26d{bottom:354.918000px;}
.y23b{bottom:362.272500px;}
.y3{bottom:363.078000px;}
.y139{bottom:364.491000px;}
.y1bb{bottom:364.716000px;}
.y84{bottom:365.581500px;}
.y63{bottom:367.105500px;}
.y209{bottom:367.432500px;}
.ya4{bottom:367.539000px;}
.y1db{bottom:368.974500px;}
.yd1{bottom:369.352500px;}
.y156{bottom:371.020500px;}
.y100{bottom:371.064000px;}
.y18c{bottom:371.526000px;}
.y31{bottom:371.691000px;}
.y26c{bottom:374.070000px;}
.y1f6{bottom:375.504000px;}
.y2{bottom:380.965500px;}
.y23a{bottom:381.423000px;}
.y138{bottom:382.423500px;}
.y208{bottom:383.871000px;}
.y83{bottom:386.472000px;}
.y62{bottom:387.997500px;}
.ya3{bottom:388.429500px;}
.y1b9{bottom:390.150000px;}
.yd0{bottom:390.243000px;}
.y155{bottom:391.912500px;}
.yff{bottom:391.956000px;}
.y18b{bottom:392.418000px;}
.y30{bottom:392.583000px;}
.y26b{bottom:393.220500px;}
.y1{bottom:398.853000px;}
.y135{bottom:400.356000px;}
.y239{bottom:400.573500px;}
.y207{bottom:400.906500px;}
.y82{bottom:407.364000px;}
.y1b8{bottom:408.082500px;}
.y61{bottom:408.888000px;}
.ya2{bottom:409.321500px;}
.y1f5{bottom:410.845500px;}
.ycf{bottom:411.135000px;}
.y26a{bottom:412.371000px;}
.y154{bottom:412.803000px;}
.yfe{bottom:412.848000px;}
.y18a{bottom:413.308500px;}
.y206{bottom:417.345000px;}
.y1da{bottom:418.023000px;}
.y137{bottom:418.288500px;}
.y238{bottom:419.724000px;}
.y1b7{bottom:426.015000px;}
.y81{bottom:428.256000px;}
.y60{bottom:429.780000px;}
.ya1{bottom:430.213500px;}
.y2f{bottom:431.406000px;}
.y269{bottom:431.521500px;}
.y1f4{bottom:431.737500px;}
.yce{bottom:432.027000px;}
.yfd{bottom:433.738500px;}
.y189{bottom:434.200500px;}
.y205{bottom:434.382000px;}
.y136{bottom:436.221000px;}
.y153{bottom:438.178500px;}
.y237{bottom:438.874500px;}
.y1d9{bottom:439.542000px;}
.y1b5{bottom:443.949000px;}
.y1d7{bottom:448.509000px;}
.y80{bottom:449.146500px;}
.y5f{bottom:450.672000px;}
.y204{bottom:450.820500px;}
.y2e{bottom:452.298000px;}
.y1f3{bottom:452.629500px;}
.yfc{bottom:454.630500px;}
.y188{bottom:455.092500px;}
.ya0{bottom:455.587500px;}
.y1d8{bottom:457.474500px;}
.y236{bottom:458.025000px;}
.y134{bottom:459.534000px;}
.y1b6{bottom:461.881500px;}
.y203{bottom:467.856000px;}
.y130{bottom:468.501000px;}
.y268{bottom:469.822500px;}
.y7f{bottom:470.038500px;}
.y5e{bottom:471.562500px;}
.y2d{bottom:473.190000px;}
.y152{bottom:473.520000px;}
.ycd{bottom:474.492000px;}
.yfb{bottom:475.522500px;}
.y187{bottom:475.984500px;}
.y235{bottom:477.175500px;}
.y133{bottom:477.466500px;}
.y1d6{bottom:478.993500px;}
.y202{bottom:484.294500px;}
.y12e{bottom:486.433500px;}
.y1b4{bottom:487.315500px;}
.y267{bottom:488.973000px;}
.y7e{bottom:490.930500px;}
.ycc{bottom:491.529000px;}
.y5d{bottom:492.454500px;}
.y2c{bottom:494.080500px;}
.y151{bottom:494.412000px;}
.y132{bottom:495.399000px;}
.y234{bottom:496.327500px;}
.yfa{bottom:496.413000px;}
.y186{bottom:496.875000px;}
.y1d4{bottom:496.927500px;}
.y201{bottom:501.330000px;}
.y12f{bottom:504.366000px;}
.ycb{bottom:507.967500px;}
.y266{bottom:508.123500px;}
.y7d{bottom:511.822500px;}
.y131{bottom:513.333000px;}
.y5c{bottom:513.346500px;}
.y1d5{bottom:514.860000px;}
.y2b{bottom:514.972500px;}
.y150{bottom:515.304000px;}
.y233{bottom:515.478000px;}
.yf9{bottom:517.305000px;}
.y185{bottom:517.767000px;}
.y200{bottom:517.768500px;}
.y1b3{bottom:519.981000px;}
.yca{bottom:524.406000px;}
.y265{bottom:527.274000px;}
.y7c{bottom:532.713000px;}
.y5b{bottom:534.237000px;}
.y232{bottom:534.628500px;}
.y1ff{bottom:534.805500px;}
.y2a{bottom:535.864500px;}
.y14f{bottom:536.194500px;}
.y129{bottom:536.644500px;}
.yf8{bottom:538.197000px;}
.y184{bottom:538.659000px;}
.yc9{bottom:541.441500px;}
.y1d3{bottom:543.880500px;}
.y12d{bottom:545.611500px;}
.y264{bottom:546.424500px;}
.y1fe{bottom:551.242500px;}
.y7b{bottom:553.605000px;}
.y231{bottom:553.779000px;}
.y126{bottom:554.577000px;}
.y5a{bottom:555.129000px;}
.y1b2{bottom:556.137000px;}
.y29{bottom:556.756500px;}
.y14e{bottom:557.086500px;}
.yc8{bottom:557.880000px;}
.yf7{bottom:559.089000px;}
.y183{bottom:559.549500px;}
.y12c{bottom:563.544000px;}
.y263{bottom:565.575000px;}
.y1fd{bottom:568.279500px;}
.y125{bottom:572.511000px;}
.y1d0{bottom:572.901000px;}
.y230{bottom:572.929500px;}
.yc7{bottom:574.318500px;}
.y7a{bottom:574.497000px;}
.y59{bottom:576.021000px;}
.y1b1{bottom:577.029000px;}
.y28{bottom:577.647000px;}
.y14d{bottom:577.978500px;}
.yf6{bottom:579.979500px;}
.y182{bottom:580.441500px;}
.y12b{bottom:581.476500px;}
.y1d2{bottom:581.866500px;}
.y1fc{bottom:584.718000px;}
.y262{bottom:584.725500px;}
.y17a{bottom:586.914000px;}
.y128{bottom:590.443500px;}
.yc6{bottom:590.757000px;}
.y1cf{bottom:590.833500px;}
.y22f{bottom:592.080000px;}
.y79{bottom:595.387500px;}
.y58{bottom:596.913000px;}
.y1b0{bottom:597.921000px;}
.y27{bottom:598.539000px;}
.y14c{bottom:598.870500px;}
.y12a{bottom:599.409000px;}
.y1d1{bottom:599.799000px;}
.yf5{bottom:600.871500px;}
.y181{bottom:601.333500px;}
.y1fb{bottom:601.753500px;}
.y261{bottom:603.876000px;}
.yc5{bottom:607.792500px;}
.y179{bottom:607.806000px;}
.y127{bottom:608.376000px;}
.y22e{bottom:611.230500px;}
.y78{bottom:616.279500px;}
.y57{bottom:617.803500px;}
.y1fa{bottom:618.192000px;}
.y1af{bottom:618.811500px;}
.y26{bottom:619.431000px;}
.y14b{bottom:619.761000px;}
.y1ce{bottom:621.319500px;}
.y180{bottom:622.224000px;}
.y260{bottom:623.026500px;}
.yc4{bottom:624.231000px;}
.yf4{bottom:626.245500px;}
.y178{bottom:628.698000px;}
.y1cc{bottom:630.285000px;}
.y124{bottom:631.689000px;}
.y22d{bottom:634.864500px;}
.y77{bottom:637.171500px;}
.y56{bottom:638.695500px;}
.y1cd{bottom:639.252000px;}
.y1ae{bottom:639.703500px;}
.y25{bottom:640.321500px;}
.y14a{bottom:640.653000px;}
.y11e{bottom:640.654500px;}
.yc3{bottom:641.266500px;}
.y216{bottom:641.653500px;}
.y25f{bottom:642.177000px;}
.y1f9{bottom:645.033000px;}
.y177{bottom:649.590000px;}
.y123{bottom:649.621500px;}
.yc2{bottom:657.705000px;}
.y76{bottom:658.062000px;}
.y11b{bottom:658.587000px;}
.y55{bottom:659.587500px;}
.y1ad{bottom:660.595500px;}
.y1cb{bottom:660.771000px;}
.y24{bottom:661.213500px;}
.y25e{bottom:661.327500px;}
.y149{bottom:661.545000px;}
.y1f8{bottom:664.266000px;}
.yf3{bottom:665.070000px;}
.y17f{bottom:665.325000px;}
.y122{bottom:667.554000px;}
.y1c9{bottom:669.736500px;}
.y22c{bottom:673.689000px;}
.yc1{bottom:674.742000px;}
.y11a{bottom:676.521000px;}
.y176{bottom:677.953500px;}
.y1ca{bottom:678.703500px;}
.y75{bottom:678.954000px;}
.y54{bottom:680.478000px;}
.y1ac{bottom:681.486000px;}
.y23{bottom:682.105500px;}
.y148{bottom:682.435500px;}
.y121{bottom:685.486500px;}
.yf2{bottom:685.962000px;}
.y11d{bottom:694.453500px;}
.y175{bottom:698.844000px;}
.y25d{bottom:699.628500px;}
.y74{bottom:699.846000px;}
.y1c8{bottom:700.222500px;}
.y53{bottom:701.370000px;}
.yc0{bottom:701.583000px;}
.y22b{bottom:702.153000px;}
.y1ab{bottom:702.378000px;}
.y22{bottom:702.996000px;}
.y147{bottom:703.327500px;}
.y120{bottom:703.419000px;}
.yf1{bottom:706.854000px;}
.y1c6{bottom:709.189500px;}
.y11c{bottom:712.386000px;}
.y1c7{bottom:718.155000px;}
.y25c{bottom:718.779000px;}
.y174{bottom:719.736000px;}
.y73{bottom:720.736500px;}
.y11f{bottom:721.353000px;}
.y22a{bottom:721.651500px;}
.y52{bottom:722.262000px;}
.y1aa{bottom:723.270000px;}
.y21{bottom:723.888000px;}
.y146{bottom:724.219500px;}
.yf0{bottom:727.744500px;}
.ybf{bottom:731.733000px;}
.y25b{bottom:737.929500px;}
.y1c3{bottom:739.674000px;}
.y173{bottom:740.628000px;}
.y72{bottom:741.628500px;}
.y51{bottom:743.152500px;}
.y1a9{bottom:744.160500px;}
.y115{bottom:744.664500px;}
.y20{bottom:744.780000px;}
.y1f2{bottom:745.110000px;}
.yef{bottom:748.636500px;}
.y1c5{bottom:748.641000px;}
.y145{bottom:749.593500px;}
.y229{bottom:750.117000px;}
.ybe{bottom:752.625000px;}
.y119{bottom:753.631500px;}
.y25a{bottom:757.081500px;}
.y1c2{bottom:757.608000px;}
.y172{bottom:761.518500px;}
.y71{bottom:762.520500px;}
.y112{bottom:762.597000px;}
.y50{bottom:764.044500px;}
.y1a8{bottom:765.052500px;}
.y1f1{bottom:766.002000px;}
.y1c4{bottom:766.573500px;}
.yee{bottom:769.528500px;}
.y228{bottom:769.615500px;}
.y118{bottom:771.564000px;}
.ybd{bottom:773.515500px;}
.y1f{bottom:774.637500px;}
.y259{bottom:776.232000px;}
.y111{bottom:780.531000px;}
.y171{bottom:782.410500px;}
.y9f{bottom:783.411000px;}
.y4f{bottom:784.936500px;}
.y1a7{bottom:785.944500px;}
.y1f0{bottom:786.894000px;}
.y70{bottom:787.894500px;}
.y227{bottom:789.115500px;}
.y117{bottom:789.496500px;}
.yed{bottom:790.419000px;}
.ybc{bottom:794.407500px;}
.y258{bottom:795.382500px;}
.y1c1{bottom:795.594000px;}
.y114{bottom:798.463500px;}
.y170{bottom:803.302500px;}
.y9e{bottom:804.303000px;}
.y4e{bottom:805.827000px;}
.y1a6{bottom:806.836500px;}
.y116{bottom:807.429000px;}
.y1ef{bottom:807.784500px;}
.y226{bottom:808.614000px;}
.y257{bottom:814.533000px;}
.y1e{bottom:814.657500px;}
.ybb{bottom:815.299500px;}
.y113{bottom:816.396000px;}
.y1c0{bottom:822.490500px;}
.y16f{bottom:824.193000px;}
.y9d{bottom:825.195000px;}
.y4d{bottom:826.719000px;}
.y1a5{bottom:827.727000px;}
.y225{bottom:828.112500px;}
.y1ee{bottom:828.676500px;}
.y256{bottom:833.683500px;}
.y1d{bottom:835.137000px;}
.yba{bottom:840.673500px;}
.y110{bottom:845.085000px;}
.yec{bottom:845.745000px;}
.y9c{bottom:846.087000px;}
.y4c{bottom:847.611000px;}
.y16e{bottom:849.568500px;}
.y1c{bottom:851.275500px;}
.y1bf{bottom:852.289500px;}
.y255{bottom:852.834000px;}
.y1a4{bottom:853.102500px;}
.y10e{bottom:854.052000px;}
.y10f{bottom:863.017500px;}
.yeb{bottom:863.677500px;}
.y9b{bottom:866.977500px;}
.y224{bottom:867.109500px;}
.y1b{bottom:867.415500px;}
.y4b{bottom:868.503000px;}
.y1ed{bottom:870.460500px;}
.y254{bottom:871.984500px;}
.yb9{bottom:876.016500px;}
.y1a{bottom:883.555500px;}
.y16d{bottom:884.910000px;}
.yea{bottom:886.093500px;}
.y223{bottom:886.608000px;}
.y9a{bottom:887.869500px;}
.y4a{bottom:889.393500px;}
.y253{bottom:891.135000px;}
.y1ec{bottom:891.351000px;}
.y10d{bottom:894.072000px;}
.y19{bottom:895.354500px;}
.y1a3{bottom:896.644500px;}
.yb8{bottom:896.908500px;}
.ye9{bottom:904.026000px;}
.y16c{bottom:905.802000px;}
.y222{bottom:906.108000px;}
.y99{bottom:908.761500px;}
.y49{bottom:910.285500px;}
.y18{bottom:911.494500px;}
.y1eb{bottom:912.243000px;}
.y1a2{bottom:914.578500px;}
.y17{bottom:915.834000px;}
.yb7{bottom:917.799000px;}
.ye8{bottom:921.958500px;}
.y221{bottom:925.606500px;}
.y16b{bottom:926.694000px;}
.y252{bottom:929.436000px;}
.y98{bottom:929.652000px;}
.y48{bottom:931.177500px;}
.y1a1{bottom:932.511000px;}
.y1ea{bottom:933.135000px;}
.ye7{bottom:944.374500px;}
.y220{bottom:945.105000px;}
.yb6{bottom:945.379500px;}
.y16a{bottom:947.584500px;}
.y251{bottom:948.586500px;}
.y19f{bottom:950.443500px;}
.y97{bottom:950.544000px;}
.y47{bottom:952.068000px;}
.y1e9{bottom:954.025500px;}
.y16{bottom:960.511500px;}
.ye6{bottom:962.307000px;}
.y21f{bottom:964.603500px;}
.yb5{bottom:966.271500px;}
.y250{bottom:967.737000px;}
.y1a0{bottom:968.376000px;}
.y169{bottom:968.476500px;}
.y96{bottom:971.436000px;}
.y46{bottom:972.960000px;}
.y1e8{bottom:979.401000px;}
.y15{bottom:981.402000px;}
.y21e{bottom:984.102000px;}
.ye5{bottom:984.723000px;}
.y24f{bottom:986.887500px;}
.yb4{bottom:987.162000px;}
.y168{bottom:989.368500px;}
.y95{bottom:992.326500px;}
.y19e{bottom:993.810000px;}
.y45{bottom:993.852000px;}
.y14{bottom:1002.294000px;}
.ye4{bottom:1002.655500px;}
.y21d{bottom:1003.600500px;}
.y24e{bottom:1006.038000px;}
.yb3{bottom:1008.054000px;}
.y167{bottom:1010.260500px;}
.y19d{bottom:1011.742500px;}
.y94{bottom:1013.218500px;}
.y44{bottom:1014.742500px;}
.y21c{bottom:1023.100500px;}
.ye3{bottom:1025.071500px;}
.y24d{bottom:1025.188500px;}
.yb2{bottom:1028.946000px;}
.y19c{bottom:1029.675000px;}
.y166{bottom:1031.151000px;}
.y93{bottom:1034.110500px;}
.y43{bottom:1035.634500px;}
.y13{bottom:1041.118500px;}
.y21b{bottom:1042.599000px;}
.ye2{bottom:1043.005500px;}
.y24c{bottom:1044.339000px;}
.y19b{bottom:1047.609000px;}
.yb1{bottom:1049.838000px;}
.y165{bottom:1052.043000px;}
.y92{bottom:1055.001000px;}
.y42{bottom:1056.526500px;}
.y21a{bottom:1062.097500px;}
.y24b{bottom:1063.489500px;}
.ye1{bottom:1065.421500px;}
.y199{bottom:1065.541500px;}
.y12{bottom:1072.455000px;}
.y164{bottom:1072.935000px;}
.y41{bottom:1077.417000px;}
.y91{bottom:1080.376500px;}
.y219{bottom:1081.596000px;}
.y24a{bottom:1082.640000px;}
.ye0{bottom:1083.354000px;}
.y19a{bottom:1083.474000px;}
.y163{bottom:1093.825500px;}
.y40{bottom:1098.309000px;}
.y218{bottom:1101.094500px;}
.y249{bottom:1101.790500px;}
.y11{bottom:1103.793000px;}
.y198{bottom:1108.908000px;}
.ydf{bottom:1111.146000px;}
.y162{bottom:1114.717500px;}
.y3f{bottom:1119.201000px;}
.y217{bottom:1120.593000px;}
.y248{bottom:1120.941000px;}
.y3e{bottom:1140.091500px;}
.yde{bottom:1141.573500px;}
.y3d{bottom:1200.184500px;}
.hc{height:20.293816px;}
.h8{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h9{height:34.813397px;}
.he{height:35.052500px;}
.h12{height:37.931582px;}
.h10{height:38.896243px;}
.hf{height:39.165235px;}
.h13{height:39.434227px;}
.ha{height:43.217759px;}
.hb{height:43.516637px;}
.h4{height:43.815515px;}
.hd{height:51.861658px;}
.h6{height:54.541601px;}
.h7{height:54.547601px;}
.h5{height:77.792486px;}
.h11{height:79.085759px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x2b{left:254.472000px;}
.x39{left:258.556500px;}
.x33{left:259.974000px;}
.x37{left:264.198000px;}
.x3{left:269.764500px;}
.x3c{left:272.865000px;}
.x48{left:277.600500px;}
.x7{left:281.479500px;}
.x1b{left:286.777500px;}
.x19{left:291.709500px;}
.x1c{left:301.722000px;}
.x1a{left:306.654000px;}
.x4b{left:324.336000px;}
.x27{left:325.971000px;}
.x4c{left:328.813500px;}
.x28{left:340.915500px;}
.x10{left:363.981000px;}
.x11{left:371.452500px;}
.x44{left:374.356500px;}
.x34{left:384.399000px;}
.x45{left:389.301000px;}
.x40{left:395.544000px;}
.x3d{left:409.852500px;}
.x3a{left:425.308500px;}
.x32{left:436.399500px;}
.x12{left:443.730000px;}
.x49{left:444.949500px;}
.x42{left:446.568000px;}
.x13{left:451.203000px;}
.x38{left:458.929500px;}
.x29{left:465.385500px;}
.xa{left:468.204000px;}
.xb{left:475.675500px;}
.x2a{left:480.330000px;}
.x21{left:509.700000px;}
.x36{left:514.507500px;}
.x8{left:521.647500px;}
.x22{left:524.643000px;}
.x30{left:526.699500px;}
.x9{left:529.119000px;}
.x3e{left:534.084000px;}
.x31{left:541.642500px;}
.x16{left:543.723000px;}
.x17{left:551.196000px;}
.x4a{left:553.629000px;}
.x4d{left:559.629000px;}
.x14{left:564.853500px;}
.x46{left:567.283500px;}
.x15{left:572.326500px;}
.x47{left:582.228000px;}
.x25{left:620.311500px;}
.x26{left:635.256000px;}
.x3b{left:636.594000px;}
.x1f{left:658.392000px;}
.x20{left:665.865000px;}
.x43{left:677.317500px;}
.x23{left:678.502500px;}
.x35{left:679.711500px;}
.x2c{left:692.167500px;}
.x24{left:693.447000px;}
.x2d{left:707.110500px;}
.x2e{left:710.824500px;}
.xe{left:720.334500px;}
.x3f{left:722.095500px;}
.x2f{left:725.769000px;}
.xf{left:727.806000px;}
.xc{left:745.479000px;}
.xd{left:752.950500px;}
.x41{left:771.567000px;}
.x1d{left:817.710000px;}
.x1e{left:832.654500px;}
.x18{left:856.896000px;}
.x6{left:860.863500px;}
.x5{left:864.832500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:31.882667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls1c{letter-spacing:0.002212pt;}
.ls15{letter-spacing:0.003733pt;}
.ls2{letter-spacing:2.651733pt;}
.ls4{letter-spacing:2.657067pt;}
.ls0{letter-spacing:6.376267pt;}
.ls11{letter-spacing:10.573639pt;}
.ls1b{letter-spacing:11.867375pt;}
.ls19{letter-spacing:11.954133pt;}
.ls1a{letter-spacing:11.959467pt;}
.lse{letter-spacing:13.124065pt;}
.lsb{letter-spacing:13.230333pt;}
.lsc{letter-spacing:13.283467pt;}
.ls9{letter-spacing:13.336601pt;}
.ls14{letter-spacing:13.389734pt;}
.ls12{letter-spacing:13.442868pt;}
.ls8{letter-spacing:13.496002pt;}
.lsa{letter-spacing:14.558679pt;}
.lsf{letter-spacing:15.568223pt;}
.ls1e{letter-spacing:15.626499pt;}
.ls13{letter-spacing:20.137735pt;}
.ls3{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls10{letter-spacing:83.144877pt;}
.ls18{letter-spacing:150.727296pt;}
.ls17{letter-spacing:159.526323pt;}
.ls20{letter-spacing:591.477171pt;}
.ls1f{letter-spacing:1224.146355pt;}
.ls1d{letter-spacing:1601.360452pt;}
.lsd{letter-spacing:1680.889331pt;}
.ls16{letter-spacing:2010.904627pt;}
.wsb{word-spacing:-13.283467pt;}
.ws77{word-spacing:-11.955200pt;}
.ws25{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.ws2{word-spacing:-2.938294pt;}
.wsba{word-spacing:-2.922363pt;}
.ws1{word-spacing:-2.901101pt;}
.ws7{word-spacing:-2.863907pt;}
.wsb6{word-spacing:-2.656693pt;}
.wsb5{word-spacing:-2.391024pt;}
.wsd7{word-spacing:-2.284756pt;}
.ws6d{word-spacing:-2.231622pt;}
.ws68{word-spacing:-2.178489pt;}
.ws7b{word-spacing:-2.072221pt;}
.wsa2{word-spacing:-1.912819pt;}
.wsd8{word-spacing:-1.859685pt;}
.ws28{word-spacing:-1.753418pt;}
.ws54{word-spacing:-1.700284pt;}
.ws2a{word-spacing:-1.647150pt;}
.ws4b{word-spacing:-1.540882pt;}
.ws35{word-spacing:-1.434614pt;}
.ws3c{word-spacing:-1.381481pt;}
.ws45{word-spacing:-1.328347pt;}
.wsc4{word-spacing:-1.275213pt;}
.ws60{word-spacing:-1.222079pt;}
.wsd0{word-spacing:-1.195520pt;}
.ws73{word-spacing:-1.168945pt;}
.wsa3{word-spacing:-1.115811pt;}
.ws36{word-spacing:-1.062677pt;}
.ws2b{word-spacing:-1.009543pt;}
.wsda{word-spacing:-0.860774pt;}
.ws84{word-spacing:-0.850142pt;}
.ws61{word-spacing:-0.797008pt;}
.ws7e{word-spacing:-0.743874pt;}
.ws3{word-spacing:-0.692091pt;}
.wsc1{word-spacing:-0.690740pt;}
.ws38{word-spacing:-0.637606pt;}
.wsc5{word-spacing:-0.584473pt;}
.wsde{word-spacing:-0.573850pt;}
.ws15{word-spacing:-0.531339pt;}
.ws30{word-spacing:-0.478205pt;}
.ws59{word-spacing:-0.425071pt;}
.wsb4{word-spacing:-0.371937pt;}
.wsfd{word-spacing:-0.334746pt;}
.ws39{word-spacing:-0.318803pt;}
.ws1f{word-spacing:-0.265669pt;}
.wse4{word-spacing:-0.239104pt;}
.ws2e{word-spacing:-0.212535pt;}
.wsdb{word-spacing:-0.191283pt;}
.ws10{word-spacing:-0.159402pt;}
.wscf{word-spacing:-0.143462pt;}
.ws11{word-spacing:-0.106268pt;}
.wsc6{word-spacing:-0.095642pt;}
.wsf{word-spacing:-0.053134pt;}
.ws7a{word-spacing:-0.047821pt;}
.wsbe{word-spacing:-0.003123pt;}
.wsfa{word-spacing:-0.001681pt;}
.wsf0{word-spacing:-0.001357pt;}
.ws4{word-spacing:0.000000pt;}
.ws79{word-spacing:0.047821pt;}
.ws16{word-spacing:0.053134pt;}
.wse9{word-spacing:0.095642pt;}
.ws1a{word-spacing:0.106268pt;}
.ws78{word-spacing:0.143462pt;}
.ws19{word-spacing:0.159402pt;}
.wsc{word-spacing:0.170029pt;}
.wse6{word-spacing:0.191283pt;}
.ws23{word-spacing:0.212535pt;}
.wsf1{word-spacing:0.239104pt;}
.ws26{word-spacing:0.265669pt;}
.wse3{word-spacing:0.286925pt;}
.ws37{word-spacing:0.318803pt;}
.wsdd{word-spacing:0.334746pt;}
.ws40{word-spacing:0.371937pt;}
.ws81{word-spacing:0.425071pt;}
.ws7d{word-spacing:0.478205pt;}
.wsd9{word-spacing:0.478208pt;}
.ws82{word-spacing:0.531339pt;}
.ws57{word-spacing:0.637606pt;}
.ws2c{word-spacing:0.690740pt;}
.ws4c{word-spacing:0.743874pt;}
.ws17{word-spacing:0.797008pt;}
.ws85{word-spacing:0.903276pt;}
.ws58{word-spacing:0.956410pt;}
.ws13{word-spacing:1.009543pt;}
.ws14{word-spacing:1.062677pt;}
.wsed{word-spacing:1.099878pt;}
.ws7c{word-spacing:1.115811pt;}
.ws4d{word-spacing:1.168945pt;}
.ws46{word-spacing:1.222079pt;}
.ws18{word-spacing:1.275213pt;}
.ws53{word-spacing:1.328347pt;}
.wsb1{word-spacing:1.381481pt;}
.wsf8{word-spacing:1.386803pt;}
.ws6f{word-spacing:1.434614pt;}
.ws21{word-spacing:1.487748pt;}
.ws22{word-spacing:1.540882pt;}
.ws65{word-spacing:1.594016pt;}
.wsee{word-spacing:1.625907pt;}
.ws44{word-spacing:1.647150pt;}
.ws70{word-spacing:1.753418pt;}
.wsf5{word-spacing:1.769370pt;}
.ws5e{word-spacing:1.806551pt;}
.ws3a{word-spacing:1.859685pt;}
.ws3b{word-spacing:1.912819pt;}
.wse1{word-spacing:1.912832pt;}
.ws66{word-spacing:1.965953pt;}
.wsb3{word-spacing:2.125355pt;}
.wsfe{word-spacing:2.199757pt;}
.ws6{word-spacing:2.231335pt;}
.ws43{word-spacing:2.231622pt;}
.ws3f{word-spacing:2.284756pt;}
.ws1e{word-spacing:2.337890pt;}
.ws5d{word-spacing:2.391024pt;}
.wsf3{word-spacing:2.438861pt;}
.ws7f{word-spacing:2.550426pt;}
.wsd{word-spacing:2.550432pt;}
.wsdc{word-spacing:2.582323pt;}
.wsd4{word-spacing:2.603559pt;}
.ws50{word-spacing:2.656693pt;}
.ws4a{word-spacing:2.709827pt;}
.ws86{word-spacing:2.762961pt;}
.wseb{word-spacing:2.773606pt;}
.ws3d{word-spacing:2.816095pt;}
.ws29{word-spacing:2.869229pt;}
.wsf4{word-spacing:2.869248pt;}
.wse7{word-spacing:2.973387pt;}
.ws42{word-spacing:2.975497pt;}
.ws20{word-spacing:3.028630pt;}
.wsc0{word-spacing:3.081764pt;}
.wsf2{word-spacing:3.108352pt;}
.wsaf{word-spacing:3.134898pt;}
.wsd3{word-spacing:3.188032pt;}
.ws93{word-spacing:3.294300pt;}
.ws1b{word-spacing:3.336829pt;}
.ws3e{word-spacing:3.347434pt;}
.ws62{word-spacing:3.400567pt;}
.wsf6{word-spacing:3.443098pt;}
.ws55{word-spacing:3.559969pt;}
.wse5{word-spacing:3.586560pt;}
.wsac{word-spacing:3.613103pt;}
.wsfb{word-spacing:3.634381pt;}
.wsb0{word-spacing:3.666237pt;}
.ws12{word-spacing:3.719371pt;}
.ws4f{word-spacing:3.772505pt;}
.ws1d{word-spacing:3.825664pt;}
.wsbd{word-spacing:3.878772pt;}
.ws6a{word-spacing:3.985040pt;}
.wsab{word-spacing:4.038174pt;}
.ws5f{word-spacing:4.091308pt;}
.wsc2{word-spacing:4.144442pt;}
.ws47{word-spacing:4.250709pt;}
.ws87{word-spacing:4.303843pt;}
.wsec{word-spacing:4.303872pt;}
.wsdf{word-spacing:4.351693pt;}
.ws24{word-spacing:4.356977pt;}
.ws74{word-spacing:4.410111pt;}
.wsc3{word-spacing:4.463245pt;}
.wsd5{word-spacing:4.516379pt;}
.wsfc{word-spacing:4.590797pt;}
.ws63{word-spacing:4.622646pt;}
.ws41{word-spacing:4.675780pt;}
.wsd2{word-spacing:4.734259pt;}
.ws56{word-spacing:4.835182pt;}
.ws33{word-spacing:4.888316pt;}
.ws69{word-spacing:4.941450pt;}
.ws48{word-spacing:4.994583pt;}
.ws83{word-spacing:5.047717pt;}
.ws52{word-spacing:5.100851pt;}
.ws51{word-spacing:5.153985pt;}
.wsad{word-spacing:5.207119pt;}
.wse2{word-spacing:5.212467pt;}
.wsd6{word-spacing:5.472788pt;}
.wsb2{word-spacing:5.525922pt;}
.ws5a{word-spacing:5.579056pt;}
.wsf7{word-spacing:5.595034pt;}
.ws2d{word-spacing:5.685324pt;}
.ws71{word-spacing:5.791591pt;}
.ws9{word-spacing:5.847467pt;}
.ws32{word-spacing:6.004127pt;}
.ws6c{word-spacing:6.110395pt;}
.ws5c{word-spacing:6.163529pt;}
.ws5b{word-spacing:6.216662pt;}
.wse0{word-spacing:6.360166pt;}
.ws34{word-spacing:6.376064pt;}
.ws31{word-spacing:6.641733pt;}
.wsb9{word-spacing:6.854269pt;}
.wsa9{word-spacing:6.907403pt;}
.wsae{word-spacing:6.960537pt;}
.ws8e{word-spacing:7.013670pt;}
.ws67{word-spacing:7.066804pt;}
.ws95{word-spacing:8.023214pt;}
.ws9f{word-spacing:8.129482pt;}
.ws90{word-spacing:8.342017pt;}
.ws9c{word-spacing:8.501419pt;}
.wsd1{word-spacing:10.903142pt;}
.ws9a{word-spacing:11.530049pt;}
.wsce{word-spacing:11.763917pt;}
.ws9e{word-spacing:11.955120pt;}
.wsb8{word-spacing:12.114522pt;}
.ws88{word-spacing:12.327057pt;}
.ws92{word-spacing:14.399278pt;}
.wsa5{word-spacing:14.771215pt;}
.ws9b{word-spacing:15.780758pt;}
.wsa4{word-spacing:16.099562pt;}
.ws0{word-spacing:16.525814pt;}
.wsa7{word-spacing:18.171782pt;}
.wsa1{word-spacing:18.490586pt;}
.wsa0{word-spacing:18.543719pt;}
.wsa8{word-spacing:19.234460pt;}
.ws94{word-spacing:19.606397pt;}
.wsbf{word-spacing:19.818932pt;}
.ws80{word-spacing:20.137735pt;}
.wsc8{word-spacing:20.228198pt;}
.ws96{word-spacing:20.615940pt;}
.ws98{word-spacing:21.572350pt;}
.ws91{word-spacing:22.103689pt;}
.ws97{word-spacing:24.547846pt;}
.ws8f{word-spacing:27.895280pt;}
.ws99{word-spacing:28.320351pt;}
.wsaa{word-spacing:28.479753pt;}
.wsbc{word-spacing:30.073769pt;}
.ws8d{word-spacing:30.817643pt;}
.wscc{word-spacing:33.091994pt;}
.ws8b{word-spacing:34.218210pt;}
.wsc7{word-spacing:38.830490pt;}
.wsa6{word-spacing:39.000258pt;}
.ws8a{word-spacing:40.009802pt;}
.ws8{word-spacing:40.940800pt;}
.ws9d{word-spacing:46.120196pt;}
.wsca{word-spacing:47.820800pt;}
.wsa{word-spacing:54.220800pt;}
.ws4e{word-spacing:73.961802pt;}
.wsb7{word-spacing:75.715760pt;}
.wscd{word-spacing:102.575616pt;}
.wsc9{word-spacing:150.679475pt;}
.ws8c{word-spacing:153.928812pt;}
.ws6e{word-spacing:154.300208pt;}
.wscb{word-spacing:159.478502pt;}
.ws49{word-spacing:321.353085pt;}
.ws76{word-spacing:330.929758pt;}
.ws89{word-spacing:442.901505pt;}
.ws6b{word-spacing:469.065234pt;}
.ws64{word-spacing:493.666214pt;}
.ws27{word-spacing:1022.586915pt;}
.ws2f{word-spacing:1208.505359pt;}
.ws72{word-spacing:1402.202201pt;}
.wsf9{word-spacing:1797.517747pt;}
.wsbb{word-spacing:1807.773005pt;}
.wse8{word-spacing:1824.624828pt;}
.ws75{word-spacing:1853.734450pt;}
.ws1c{word-spacing:1856.682354pt;}
.wsef{word-spacing:1901.097600pt;}
.wse{word-spacing:1972.707556pt;}
.wsea{word-spacing:1975.223467pt;}
._5{margin-left:-5.902502pt;}
._17{margin-left:-4.835182pt;}
._3{margin-left:-3.931906pt;}
._4{margin-left:-2.930831pt;}
._77{margin-left:-1.859685pt;}
._6{margin-left:-0.956410pt;}
._8c{width:2.630144pt;}
._23{width:4.038174pt;}
._1{width:6.375319pt;}
._0{width:8.591722pt;}
._88{width:10.185830pt;}
._2a{width:11.211246pt;}
._15{width:12.167655pt;}
._59{width:14.008970pt;}
._2f{width:15.413594pt;}
._7{width:16.365231pt;}
._18{width:17.587310pt;}
._19{width:19.292237pt;}
._10{width:20.190869pt;}
._c{width:21.466082pt;}
._13{width:22.581893pt;}
._b{width:23.542946pt;}
._16{width:25.291721pt;}
._21{width:26.779469pt;}
._8{width:28.054682pt;}
._44{width:29.772261pt;}
._11{width:31.667785pt;}
._28{width:34.271344pt;}
._24{width:35.546557pt;}
._f{width:36.928037pt;}
._73{width:38.096982pt;}
._9d{width:39.691264pt;}
._3e{width:40.966211pt;}
._95{width:43.250547pt;}
._2{width:48.385734pt;}
._97{width:50.217300pt;}
._62{width:57.282411pt;}
._1f{width:62.591154pt;}
._20{width:63.653831pt;}
._84{width:71.092573pt;}
._1c{width:77.282293pt;}
._1b{width:79.407648pt;}
._3a{width:96.408482pt;}
._68{width:101.963349pt;}
._32{width:110.475870pt;}
._6c{width:114.981687pt;}
._7b{width:121.018897pt;}
._7f{width:131.311683pt;}
._63{width:135.590833pt;}
._33{width:137.978111pt;}
._74{width:139.484557pt;}
._31{width:145.624158pt;}
._83{width:147.180270pt;}
._7c{width:150.952270pt;}
._3d{width:162.907894pt;}
._7e{width:166.735582pt;}
._38{width:170.452903pt;}
._81{width:172.278323pt;}
._34{width:175.644444pt;}
._65{width:180.017540pt;}
._2b{width:191.394982pt;}
._55{width:196.763792pt;}
._6d{width:208.019088pt;}
._6a{width:211.200325pt;}
._6f{width:213.066805pt;}
._4d{width:217.486000pt;}
._80{width:234.412614pt;}
._7d{width:244.396561pt;}
._9b{width:253.950320pt;}
._6e{width:255.627033pt;}
._2d{width:266.842679pt;}
._4e{width:273.064025pt;}
._85{width:295.158089pt;}
._72{width:327.525311pt;}
._1d{width:330.358900pt;}
._64{width:339.366006pt;}
._8d{width:349.161848pt;}
._7a{width:352.375927pt;}
._37{width:363.594509pt;}
._6b{width:490.531857pt;}
._3c{width:545.316976pt;}
._5b{width:594.248624pt;}
._92{width:610.380829pt;}
._4a{width:625.447828pt;}
._56{width:652.749011pt;}
._9f{width:673.312476pt;}
._69{width:709.283445pt;}
._78{width:718.847541pt;}
._8a{width:736.927309pt;}
._9a{width:740.083763pt;}
._53{width:746.167973pt;}
._96{width:764.867008pt;}
._30{width:790.954684pt;}
._9c{width:800.785235pt;}
._45{width:842.871611pt;}
._47{width:844.890698pt;}
._8f{width:846.677393pt;}
._4b{width:852.860778pt;}
._39{width:884.518938pt;}
._67{width:907.472768pt;}
._22{width:918.418345pt;}
._35{width:949.342255pt;}
._41{width:955.133846pt;}
._75{width:969.488768pt;}
._98{width:983.556015pt;}
._52{width:999.244580pt;}
._93{width:1056.664399pt;}
._d{width:1074.198953pt;}
._87{width:1080.689824pt;}
._3b{width:1083.611536pt;}
._12{width:1084.647922pt;}
._99{width:1107.129924pt;}
._25{width:1163.259454pt;}
._49{width:1168.263410pt;}
._9e{width:1177.724429pt;}
._9{width:1182.201051pt;}
._42{width:1199.283964pt;}
._91{width:1221.501038pt;}
._51{width:1239.878238pt;}
._48{width:1279.888039pt;}
._2e{width:1292.427632pt;}
._2c{width:1301.576282pt;}
._4f{width:1330.106281pt;}
._5a{width:1343.923973pt;}
._27{width:1362.139265pt;}
._71{width:1368.621597pt;}
._4c{width:1399.130061pt;}
._36{width:1434.985796pt;}
._57{width:1441.371485pt;}
._5c{width:1443.752884pt;}
._46{width:1452.529597pt;}
._54{width:1466.667849pt;}
._60{width:1482.492116pt;}
._61{width:1483.443883pt;}
._58{width:1491.901792pt;}
._26{width:1513.179383pt;}
._5e{width:1534.771198pt;}
._29{width:1546.194979pt;}
._50{width:1563.128895pt;}
._e{width:1583.478953pt;}
._1a{width:1584.382228pt;}
._89{width:1589.191269pt;}
._79{width:1600.710326pt;}
._5d{width:1637.107025pt;}
._66{width:1642.898617pt;}
._43{width:1665.490134pt;}
._76{width:1667.605865pt;}
._3f{width:1679.029646pt;}
._14{width:1693.083829pt;}
._94{width:1697.854933pt;}
._1e{width:1709.121953pt;}
._8b{width:1714.885929pt;}
._86{width:1730.513493pt;}
._a{width:1737.478921pt;}
._8e{width:1763.182413pt;}
._40{width:1771.854511pt;}
._90{width:1775.582227pt;}
._70{width:1788.166608pt;}
._5f{width:1816.699494pt;}
._82{width:1825.944787pt;}
.fs6{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:40.818667pt;}
.ydd{bottom:88.640000pt;}
.y10c{bottom:90.161333pt;}
.y3b{bottom:92.324000pt;}
.y17e{bottom:99.464000pt;}
.y215{bottom:100.456000pt;}
.y1e7{bottom:101.149333pt;}
.y144{bottom:101.690667pt;}
.y90{bottom:102.117333pt;}
.y10{bottom:102.746667pt;}
.y6f{bottom:103.473333pt;}
.yb0{bottom:103.857333pt;}
.y1f7{bottom:106.953333pt;}
.ydc{bottom:107.209333pt;}
.y10b{bottom:108.732000pt;}
.y197{bottom:109.142667pt;}
.y3a{bottom:110.894667pt;}
.y247{bottom:117.748000pt;}
.y17d{bottom:118.034667pt;}
.yf{bottom:118.646667pt;}
.y214{bottom:119.025333pt;}
.y1e6{bottom:119.720000pt;}
.y143{bottom:120.260000pt;}
.y8f{bottom:120.688000pt;}
.y6e{bottom:122.042667pt;}
.yaf{bottom:122.428000pt;}
.y161{bottom:125.522667pt;}
.ydb{bottom:125.780000pt;}
.y10a{bottom:127.302667pt;}
.y196{bottom:127.712000pt;}
.y39{bottom:129.465333pt;}
.ye{bottom:134.546667pt;}
.y246{bottom:134.770667pt;}
.y213{bottom:137.596000pt;}
.y1e5{bottom:138.289333pt;}
.y142{bottom:138.830667pt;}
.y8e{bottom:139.258667pt;}
.y17c{bottom:140.589333pt;}
.y6d{bottom:140.613333pt;}
.yae{bottom:140.998667pt;}
.y160{bottom:144.093333pt;}
.yda{bottom:144.350667pt;}
.y109{bottom:145.872000pt;}
.y195{bottom:146.282667pt;}
.y38{bottom:148.034667pt;}
.yd{bottom:150.448000pt;}
.y245{bottom:151.793333pt;}
.y212{bottom:156.166667pt;}
.y1e4{bottom:156.860000pt;}
.y141{bottom:157.401333pt;}
.y8d{bottom:157.828000pt;}
.y6c{bottom:159.184000pt;}
.yad{bottom:159.568000pt;}
.y15f{bottom:162.664000pt;}
.yd9{bottom:162.920000pt;}
.y108{bottom:164.442667pt;}
.y194{bottom:164.853333pt;}
.yc{bottom:166.348000pt;}
.y37{bottom:166.605333pt;}
.y244{bottom:168.816000pt;}
.y17b{bottom:169.164000pt;}
.y211{bottom:174.736000pt;}
.y1e3{bottom:175.430667pt;}
.y140{bottom:175.970667pt;}
.y8c{bottom:176.398667pt;}
.y6b{bottom:177.753333pt;}
.yac{bottom:178.138667pt;}
.y15e{bottom:181.233333pt;}
.yd8{bottom:181.490667pt;}
.yb{bottom:182.248000pt;}
.y107{bottom:183.013333pt;}
.y193{bottom:183.424000pt;}
.y36{bottom:185.176000pt;}
.y243{bottom:185.838667pt;}
.y1e2{bottom:194.000000pt;}
.y273{bottom:194.776000pt;}
.y8b{bottom:194.969333pt;}
.y6a{bottom:196.324000pt;}
.yab{bottom:196.709333pt;}
.y210{bottom:197.292000pt;}
.ya{bottom:198.149333pt;}
.y13f{bottom:198.526667pt;}
.y15d{bottom:199.804000pt;}
.yd7{bottom:200.061333pt;}
.y106{bottom:201.584000pt;}
.y192{bottom:201.993333pt;}
.y242{bottom:202.861333pt;}
.y35{bottom:203.745333pt;}
.y272{bottom:211.800000pt;}
.y1e1{bottom:212.570667pt;}
.y8a{bottom:213.540000pt;}
.y69{bottom:214.894667pt;}
.yaa{bottom:215.280000pt;}
.y15c{bottom:218.374667pt;}
.yd6{bottom:218.632000pt;}
.y241{bottom:219.884000pt;}
.y105{bottom:220.153333pt;}
.y191{bottom:220.564000pt;}
.y9{bottom:222.020000pt;}
.y34{bottom:222.316000pt;}
.y271{bottom:228.822667pt;}
.y1e0{bottom:231.141333pt;}
.y89{bottom:232.109333pt;}
.y68{bottom:233.464000pt;}
.y20f{bottom:233.622667pt;}
.ya9{bottom:233.849333pt;}
.y240{bottom:236.906667pt;}
.y15b{bottom:236.945333pt;}
.yd5{bottom:237.201333pt;}
.y8{bottom:237.920000pt;}
.y104{bottom:238.724000pt;}
.y190{bottom:239.134667pt;}
.y13e{bottom:239.508000pt;}
.y33{bottom:240.886667pt;}
.y20e{bottom:248.233333pt;}
.y1df{bottom:249.710667pt;}
.y88{bottom:250.680000pt;}
.y67{bottom:252.034667pt;}
.ya8{bottom:252.420000pt;}
.y7{bottom:253.820000pt;}
.y23f{bottom:253.929333pt;}
.y13b{bottom:255.448000pt;}
.y15a{bottom:255.514667pt;}
.yd4{bottom:255.772000pt;}
.y18f{bottom:257.704000pt;}
.y1be{bottom:260.430667pt;}
.y103{bottom:261.278667pt;}
.y20d{bottom:263.377333pt;}
.y32{bottom:263.441333pt;}
.y270{bottom:264.414667pt;}
.y1de{bottom:268.281333pt;}
.y87{bottom:269.250667pt;}
.y6{bottom:269.721333pt;}
.y66{bottom:270.605333pt;}
.y23e{bottom:270.952000pt;}
.ya7{bottom:270.990667pt;}
.y13a{bottom:271.389333pt;}
.y159{bottom:274.085333pt;}
.yd3{bottom:274.342667pt;}
.y18e{bottom:276.274667pt;}
.y1bd{bottom:276.372000pt;}
.y20c{bottom:278.520000pt;}
.y26f{bottom:281.437333pt;}
.y5{bottom:285.621333pt;}
.y1dd{bottom:286.852000pt;}
.y13d{bottom:287.329333pt;}
.y86{bottom:287.820000pt;}
.y23d{bottom:287.974667pt;}
.y65{bottom:289.176000pt;}
.ya6{bottom:289.560000pt;}
.y1bc{bottom:292.312000pt;}
.y158{bottom:292.656000pt;}
.y102{bottom:292.694667pt;}
.y20b{bottom:293.664000pt;}
.yd2{bottom:296.897333pt;}
.y26e{bottom:298.460000pt;}
.y18d{bottom:298.829333pt;}
.y13c{bottom:303.269333pt;}
.y23c{bottom:304.997333pt;}
.y1dc{bottom:305.422667pt;}
.y85{bottom:306.390667pt;}
.y4{bottom:306.834667pt;}
.y64{bottom:307.745333pt;}
.ya5{bottom:308.130667pt;}
.y1ba{bottom:308.252000pt;}
.y20a{bottom:308.276000pt;}
.y157{bottom:311.225333pt;}
.y101{bottom:311.265333pt;}
.y26d{bottom:315.482667pt;}
.y23b{bottom:322.020000pt;}
.y3{bottom:322.736000pt;}
.y139{bottom:323.992000pt;}
.y1bb{bottom:324.192000pt;}
.y84{bottom:324.961333pt;}
.y63{bottom:326.316000pt;}
.y209{bottom:326.606667pt;}
.ya4{bottom:326.701333pt;}
.y1db{bottom:327.977333pt;}
.yd1{bottom:328.313333pt;}
.y156{bottom:329.796000pt;}
.y100{bottom:329.834667pt;}
.y18c{bottom:330.245333pt;}
.y31{bottom:330.392000pt;}
.y26c{bottom:332.506667pt;}
.y1f6{bottom:333.781333pt;}
.y2{bottom:338.636000pt;}
.y23a{bottom:339.042667pt;}
.y138{bottom:339.932000pt;}
.y208{bottom:341.218667pt;}
.y83{bottom:343.530667pt;}
.y62{bottom:344.886667pt;}
.ya3{bottom:345.270667pt;}
.y1b9{bottom:346.800000pt;}
.yd0{bottom:346.882667pt;}
.y155{bottom:348.366667pt;}
.yff{bottom:348.405333pt;}
.y18b{bottom:348.816000pt;}
.y30{bottom:348.962667pt;}
.y26b{bottom:349.529333pt;}
.y1{bottom:354.536000pt;}
.y135{bottom:355.872000pt;}
.y239{bottom:356.065333pt;}
.y207{bottom:356.361333pt;}
.y82{bottom:362.101333pt;}
.y1b8{bottom:362.740000pt;}
.y61{bottom:363.456000pt;}
.ya2{bottom:363.841333pt;}
.y1f5{bottom:365.196000pt;}
.ycf{bottom:365.453333pt;}
.y26a{bottom:366.552000pt;}
.y154{bottom:366.936000pt;}
.yfe{bottom:366.976000pt;}
.y18a{bottom:367.385333pt;}
.y206{bottom:370.973333pt;}
.y1da{bottom:371.576000pt;}
.y137{bottom:371.812000pt;}
.y238{bottom:373.088000pt;}
.y1b7{bottom:378.680000pt;}
.y81{bottom:380.672000pt;}
.y60{bottom:382.026667pt;}
.ya1{bottom:382.412000pt;}
.y2f{bottom:383.472000pt;}
.y269{bottom:383.574667pt;}
.y1f4{bottom:383.766667pt;}
.yce{bottom:384.024000pt;}
.yfd{bottom:385.545333pt;}
.y189{bottom:385.956000pt;}
.y205{bottom:386.117333pt;}
.y136{bottom:387.752000pt;}
.y153{bottom:389.492000pt;}
.y237{bottom:390.110667pt;}
.y1d9{bottom:390.704000pt;}
.y1b5{bottom:394.621333pt;}
.y1d7{bottom:398.674667pt;}
.y80{bottom:399.241333pt;}
.y5f{bottom:400.597333pt;}
.y204{bottom:400.729333pt;}
.y2e{bottom:402.042667pt;}
.y1f3{bottom:402.337333pt;}
.yfc{bottom:404.116000pt;}
.y188{bottom:404.526667pt;}
.ya0{bottom:404.966667pt;}
.y1d8{bottom:406.644000pt;}
.y236{bottom:407.133333pt;}
.y134{bottom:408.474667pt;}
.y1b6{bottom:410.561333pt;}
.y203{bottom:415.872000pt;}
.y130{bottom:416.445333pt;}
.y268{bottom:417.620000pt;}
.y7f{bottom:417.812000pt;}
.y5e{bottom:419.166667pt;}
.y2d{bottom:420.613333pt;}
.y152{bottom:420.906667pt;}
.ycd{bottom:421.770667pt;}
.yfb{bottom:422.686667pt;}
.y187{bottom:423.097333pt;}
.y235{bottom:424.156000pt;}
.y133{bottom:424.414667pt;}
.y1d6{bottom:425.772000pt;}
.y202{bottom:430.484000pt;}
.y12e{bottom:432.385333pt;}
.y1b4{bottom:433.169333pt;}
.y267{bottom:434.642667pt;}
.y7e{bottom:436.382667pt;}
.ycc{bottom:436.914667pt;}
.y5d{bottom:437.737333pt;}
.y2c{bottom:439.182667pt;}
.y151{bottom:439.477333pt;}
.y132{bottom:440.354667pt;}
.y234{bottom:441.180000pt;}
.yfa{bottom:441.256000pt;}
.y186{bottom:441.666667pt;}
.y1d4{bottom:441.713333pt;}
.y201{bottom:445.626667pt;}
.y12f{bottom:448.325333pt;}
.ycb{bottom:451.526667pt;}
.y266{bottom:451.665333pt;}
.y7d{bottom:454.953333pt;}
.y131{bottom:456.296000pt;}
.y5c{bottom:456.308000pt;}
.y1d5{bottom:457.653333pt;}
.y2b{bottom:457.753333pt;}
.y150{bottom:458.048000pt;}
.y233{bottom:458.202667pt;}
.yf9{bottom:459.826667pt;}
.y185{bottom:460.237333pt;}
.y200{bottom:460.238667pt;}
.y1b3{bottom:462.205333pt;}
.yca{bottom:466.138667pt;}
.y265{bottom:468.688000pt;}
.y7c{bottom:473.522667pt;}
.y5b{bottom:474.877333pt;}
.y232{bottom:475.225333pt;}
.y1ff{bottom:475.382667pt;}
.y2a{bottom:476.324000pt;}
.y14f{bottom:476.617333pt;}
.y129{bottom:477.017333pt;}
.yf8{bottom:478.397333pt;}
.y184{bottom:478.808000pt;}
.yc9{bottom:481.281333pt;}
.y1d3{bottom:483.449333pt;}
.y12d{bottom:484.988000pt;}
.y264{bottom:485.710667pt;}
.y1fe{bottom:489.993333pt;}
.y7b{bottom:492.093333pt;}
.y231{bottom:492.248000pt;}
.y126{bottom:492.957333pt;}
.y5a{bottom:493.448000pt;}
.y1b2{bottom:494.344000pt;}
.y29{bottom:494.894667pt;}
.y14e{bottom:495.188000pt;}
.yc8{bottom:495.893333pt;}
.yf7{bottom:496.968000pt;}
.y183{bottom:497.377333pt;}
.y12c{bottom:500.928000pt;}
.y263{bottom:502.733333pt;}
.y1fd{bottom:505.137333pt;}
.y125{bottom:508.898667pt;}
.y1d0{bottom:509.245333pt;}
.y230{bottom:509.270667pt;}
.yc7{bottom:510.505333pt;}
.y7a{bottom:510.664000pt;}
.y59{bottom:512.018667pt;}
.y1b1{bottom:512.914667pt;}
.y28{bottom:513.464000pt;}
.y14d{bottom:513.758667pt;}
.yf6{bottom:515.537333pt;}
.y182{bottom:515.948000pt;}
.y12b{bottom:516.868000pt;}
.y1d2{bottom:517.214667pt;}
.y1fc{bottom:519.749333pt;}
.y262{bottom:519.756000pt;}
.y17a{bottom:521.701333pt;}
.y128{bottom:524.838667pt;}
.yc6{bottom:525.117333pt;}
.y1cf{bottom:525.185333pt;}
.y22f{bottom:526.293333pt;}
.y79{bottom:529.233333pt;}
.y58{bottom:530.589333pt;}
.y1b0{bottom:531.485333pt;}
.y27{bottom:532.034667pt;}
.y14c{bottom:532.329333pt;}
.y12a{bottom:532.808000pt;}
.y1d1{bottom:533.154667pt;}
.yf5{bottom:534.108000pt;}
.y181{bottom:534.518667pt;}
.y1fb{bottom:534.892000pt;}
.y261{bottom:536.778667pt;}
.yc5{bottom:540.260000pt;}
.y179{bottom:540.272000pt;}
.y127{bottom:540.778667pt;}
.y22e{bottom:543.316000pt;}
.y78{bottom:547.804000pt;}
.y57{bottom:549.158667pt;}
.y1fa{bottom:549.504000pt;}
.y1af{bottom:550.054667pt;}
.y26{bottom:550.605333pt;}
.y14b{bottom:550.898667pt;}
.y1ce{bottom:552.284000pt;}
.y180{bottom:553.088000pt;}
.y260{bottom:553.801333pt;}
.yc4{bottom:554.872000pt;}
.yf4{bottom:556.662667pt;}
.y178{bottom:558.842667pt;}
.y1cc{bottom:560.253333pt;}
.y124{bottom:561.501333pt;}
.y22d{bottom:564.324000pt;}
.y77{bottom:566.374667pt;}
.y56{bottom:567.729333pt;}
.y1cd{bottom:568.224000pt;}
.y1ae{bottom:568.625333pt;}
.y25{bottom:569.174667pt;}
.y14a{bottom:569.469333pt;}
.y11e{bottom:569.470667pt;}
.yc3{bottom:570.014667pt;}
.y216{bottom:570.358667pt;}
.y25f{bottom:570.824000pt;}
.y1f9{bottom:573.362667pt;}
.y177{bottom:577.413333pt;}
.y123{bottom:577.441333pt;}
.yc2{bottom:584.626667pt;}
.y76{bottom:584.944000pt;}
.y11b{bottom:585.410667pt;}
.y55{bottom:586.300000pt;}
.y1ad{bottom:587.196000pt;}
.y1cb{bottom:587.352000pt;}
.y24{bottom:587.745333pt;}
.y25e{bottom:587.846667pt;}
.y149{bottom:588.040000pt;}
.y1f8{bottom:590.458667pt;}
.yf3{bottom:591.173333pt;}
.y17f{bottom:591.400000pt;}
.y122{bottom:593.381333pt;}
.y1c9{bottom:595.321333pt;}
.y22c{bottom:598.834667pt;}
.yc1{bottom:599.770667pt;}
.y11a{bottom:601.352000pt;}
.y176{bottom:602.625333pt;}
.y1ca{bottom:603.292000pt;}
.y75{bottom:603.514667pt;}
.y54{bottom:604.869333pt;}
.y1ac{bottom:605.765333pt;}
.y23{bottom:606.316000pt;}
.y148{bottom:606.609333pt;}
.y121{bottom:609.321333pt;}
.yf2{bottom:609.744000pt;}
.y11d{bottom:617.292000pt;}
.y175{bottom:621.194667pt;}
.y25d{bottom:621.892000pt;}
.y74{bottom:622.085333pt;}
.y1c8{bottom:622.420000pt;}
.y53{bottom:623.440000pt;}
.yc0{bottom:623.629333pt;}
.y22b{bottom:624.136000pt;}
.y1ab{bottom:624.336000pt;}
.y22{bottom:624.885333pt;}
.y147{bottom:625.180000pt;}
.y120{bottom:625.261333pt;}
.yf1{bottom:628.314667pt;}
.y1c6{bottom:630.390667pt;}
.y11c{bottom:633.232000pt;}
.y1c7{bottom:638.360000pt;}
.y25c{bottom:638.914667pt;}
.y174{bottom:639.765333pt;}
.y73{bottom:640.654667pt;}
.y11f{bottom:641.202667pt;}
.y22a{bottom:641.468000pt;}
.y52{bottom:642.010667pt;}
.y1aa{bottom:642.906667pt;}
.y21{bottom:643.456000pt;}
.y146{bottom:643.750667pt;}
.yf0{bottom:646.884000pt;}
.ybf{bottom:650.429333pt;}
.y25b{bottom:655.937333pt;}
.y1c3{bottom:657.488000pt;}
.y173{bottom:658.336000pt;}
.y72{bottom:659.225333pt;}
.y51{bottom:660.580000pt;}
.y1a9{bottom:661.476000pt;}
.y115{bottom:661.924000pt;}
.y20{bottom:662.026667pt;}
.y1f2{bottom:662.320000pt;}
.yef{bottom:665.454667pt;}
.y1c5{bottom:665.458667pt;}
.y145{bottom:666.305333pt;}
.y229{bottom:666.770667pt;}
.ybe{bottom:669.000000pt;}
.y119{bottom:669.894667pt;}
.y25a{bottom:672.961333pt;}
.y1c2{bottom:673.429333pt;}
.y172{bottom:676.905333pt;}
.y71{bottom:677.796000pt;}
.y112{bottom:677.864000pt;}
.y50{bottom:679.150667pt;}
.y1a8{bottom:680.046667pt;}
.y1f1{bottom:680.890667pt;}
.y1c4{bottom:681.398667pt;}
.yee{bottom:684.025333pt;}
.y228{bottom:684.102667pt;}
.y118{bottom:685.834667pt;}
.ybd{bottom:687.569333pt;}
.y1f{bottom:688.566667pt;}
.y259{bottom:689.984000pt;}
.y111{bottom:693.805333pt;}
.y171{bottom:695.476000pt;}
.y9f{bottom:696.365333pt;}
.y4f{bottom:697.721333pt;}
.y1a7{bottom:698.617333pt;}
.y1f0{bottom:699.461333pt;}
.y70{bottom:700.350667pt;}
.y227{bottom:701.436000pt;}
.y117{bottom:701.774667pt;}
.yed{bottom:702.594667pt;}
.ybc{bottom:706.140000pt;}
.y258{bottom:707.006667pt;}
.y1c1{bottom:707.194667pt;}
.y114{bottom:709.745333pt;}
.y170{bottom:714.046667pt;}
.y9e{bottom:714.936000pt;}
.y4e{bottom:716.290667pt;}
.y1a6{bottom:717.188000pt;}
.y116{bottom:717.714667pt;}
.y1ef{bottom:718.030667pt;}
.y226{bottom:718.768000pt;}
.y257{bottom:724.029333pt;}
.y1e{bottom:724.140000pt;}
.ybb{bottom:724.710667pt;}
.y113{bottom:725.685333pt;}
.y1c0{bottom:731.102667pt;}
.y16f{bottom:732.616000pt;}
.y9d{bottom:733.506667pt;}
.y4d{bottom:734.861333pt;}
.y1a5{bottom:735.757333pt;}
.y225{bottom:736.100000pt;}
.y1ee{bottom:736.601333pt;}
.y256{bottom:741.052000pt;}
.y1d{bottom:742.344000pt;}
.yba{bottom:747.265333pt;}
.y110{bottom:751.186667pt;}
.yec{bottom:751.773333pt;}
.y9c{bottom:752.077333pt;}
.y4c{bottom:753.432000pt;}
.y16e{bottom:755.172000pt;}
.y1c{bottom:756.689333pt;}
.y1bf{bottom:757.590667pt;}
.y255{bottom:758.074667pt;}
.y1a4{bottom:758.313333pt;}
.y10e{bottom:759.157333pt;}
.y10f{bottom:767.126667pt;}
.yeb{bottom:767.713333pt;}
.y9b{bottom:770.646667pt;}
.y224{bottom:770.764000pt;}
.y1b{bottom:771.036000pt;}
.y4b{bottom:772.002667pt;}
.y1ed{bottom:773.742667pt;}
.y254{bottom:775.097333pt;}
.yb9{bottom:778.681333pt;}
.y1a{bottom:785.382667pt;}
.y16d{bottom:786.586667pt;}
.yea{bottom:787.638667pt;}
.y223{bottom:788.096000pt;}
.y9a{bottom:789.217333pt;}
.y4a{bottom:790.572000pt;}
.y253{bottom:792.120000pt;}
.y1ec{bottom:792.312000pt;}
.y10d{bottom:794.730667pt;}
.y19{bottom:795.870667pt;}
.y1a3{bottom:797.017333pt;}
.yb8{bottom:797.252000pt;}
.ye9{bottom:803.578667pt;}
.y16c{bottom:805.157333pt;}
.y222{bottom:805.429333pt;}
.y99{bottom:807.788000pt;}
.y49{bottom:809.142667pt;}
.y18{bottom:810.217333pt;}
.y1eb{bottom:810.882667pt;}
.y1a2{bottom:812.958667pt;}
.y17{bottom:814.074667pt;}
.yb7{bottom:815.821333pt;}
.ye8{bottom:819.518667pt;}
.y221{bottom:822.761333pt;}
.y16b{bottom:823.728000pt;}
.y252{bottom:826.165333pt;}
.y98{bottom:826.357333pt;}
.y48{bottom:827.713333pt;}
.y1a1{bottom:828.898667pt;}
.y1ea{bottom:829.453333pt;}
.ye7{bottom:839.444000pt;}
.y220{bottom:840.093333pt;}
.yb6{bottom:840.337333pt;}
.y16a{bottom:842.297333pt;}
.y251{bottom:843.188000pt;}
.y19f{bottom:844.838667pt;}
.y97{bottom:844.928000pt;}
.y47{bottom:846.282667pt;}
.y1e9{bottom:848.022667pt;}
.y16{bottom:853.788000pt;}
.ye6{bottom:855.384000pt;}
.y21f{bottom:857.425333pt;}
.yb5{bottom:858.908000pt;}
.y250{bottom:860.210667pt;}
.y1a0{bottom:860.778667pt;}
.y169{bottom:860.868000pt;}
.y96{bottom:863.498667pt;}
.y46{bottom:864.853333pt;}
.y1e8{bottom:870.578667pt;}
.y15{bottom:872.357333pt;}
.y21e{bottom:874.757333pt;}
.ye5{bottom:875.309333pt;}
.y24f{bottom:877.233333pt;}
.yb4{bottom:877.477333pt;}
.y168{bottom:879.438667pt;}
.y95{bottom:882.068000pt;}
.y19e{bottom:883.386667pt;}
.y45{bottom:883.424000pt;}
.y14{bottom:890.928000pt;}
.ye4{bottom:891.249333pt;}
.y21d{bottom:892.089333pt;}
.y24e{bottom:894.256000pt;}
.yb3{bottom:896.048000pt;}
.y167{bottom:898.009333pt;}
.y19d{bottom:899.326667pt;}
.y94{bottom:900.638667pt;}
.y44{bottom:901.993333pt;}
.y21c{bottom:909.422667pt;}
.ye3{bottom:911.174667pt;}
.y24d{bottom:911.278667pt;}
.yb2{bottom:914.618667pt;}
.y19c{bottom:915.266667pt;}
.y166{bottom:916.578667pt;}
.y93{bottom:919.209333pt;}
.y43{bottom:920.564000pt;}
.y13{bottom:925.438667pt;}
.y21b{bottom:926.754667pt;}
.ye2{bottom:927.116000pt;}
.y24c{bottom:928.301333pt;}
.y19b{bottom:931.208000pt;}
.yb1{bottom:933.189333pt;}
.y165{bottom:935.149333pt;}
.y92{bottom:937.778667pt;}
.y42{bottom:939.134667pt;}
.y21a{bottom:944.086667pt;}
.y24b{bottom:945.324000pt;}
.ye1{bottom:947.041333pt;}
.y199{bottom:947.148000pt;}
.y12{bottom:953.293333pt;}
.y164{bottom:953.720000pt;}
.y41{bottom:957.704000pt;}
.y91{bottom:960.334667pt;}
.y219{bottom:961.418667pt;}
.y24a{bottom:962.346667pt;}
.ye0{bottom:962.981333pt;}
.y19a{bottom:963.088000pt;}
.y163{bottom:972.289333pt;}
.y40{bottom:976.274667pt;}
.y218{bottom:978.750667pt;}
.y249{bottom:979.369333pt;}
.y11{bottom:981.149333pt;}
.y198{bottom:985.696000pt;}
.ydf{bottom:987.685333pt;}
.y162{bottom:990.860000pt;}
.y3f{bottom:994.845333pt;}
.y217{bottom:996.082667pt;}
.y248{bottom:996.392000pt;}
.y3e{bottom:1013.414667pt;}
.yde{bottom:1014.732000pt;}
.y3d{bottom:1066.830667pt;}
.hc{height:18.038948pt;}
.h8{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h9{height:30.945242pt;}
.he{height:31.157778pt;}
.h12{height:33.716962pt;}
.h10{height:34.574438pt;}
.hf{height:34.813542pt;}
.h13{height:35.052646pt;}
.ha{height:38.415786pt;}
.hb{height:38.681455pt;}
.h4{height:38.947124pt;}
.hd{height:46.099251pt;}
.h6{height:48.481423pt;}
.h7{height:48.486756pt;}
.h5{height:69.148877pt;}
.h11{height:70.298452pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x2b{left:226.197333pt;}
.x39{left:229.828000pt;}
.x33{left:231.088000pt;}
.x37{left:234.842667pt;}
.x3{left:239.790667pt;}
.x3c{left:242.546667pt;}
.x48{left:246.756000pt;}
.x7{left:250.204000pt;}
.x1b{left:254.913333pt;}
.x19{left:259.297333pt;}
.x1c{left:268.197333pt;}
.x1a{left:272.581333pt;}
.x4b{left:288.298667pt;}
.x27{left:289.752000pt;}
.x4c{left:292.278667pt;}
.x28{left:303.036000pt;}
.x10{left:323.538667pt;}
.x11{left:330.180000pt;}
.x44{left:332.761333pt;}
.x34{left:341.688000pt;}
.x45{left:346.045333pt;}
.x40{left:351.594667pt;}
.x3d{left:364.313333pt;}
.x3a{left:378.052000pt;}
.x32{left:387.910667pt;}
.x12{left:394.426667pt;}
.x49{left:395.510667pt;}
.x42{left:396.949333pt;}
.x13{left:401.069333pt;}
.x38{left:407.937333pt;}
.x29{left:413.676000pt;}
.xa{left:416.181333pt;}
.xb{left:422.822667pt;}
.x2a{left:426.960000pt;}
.x21{left:453.066667pt;}
.x36{left:457.340000pt;}
.x8{left:463.686667pt;}
.x22{left:466.349333pt;}
.x30{left:468.177333pt;}
.x9{left:470.328000pt;}
.x3e{left:474.741333pt;}
.x31{left:481.460000pt;}
.x16{left:483.309333pt;}
.x17{left:489.952000pt;}
.x4a{left:492.114667pt;}
.x4d{left:497.448000pt;}
.x14{left:502.092000pt;}
.x46{left:504.252000pt;}
.x15{left:508.734667pt;}
.x47{left:517.536000pt;}
.x25{left:551.388000pt;}
.x26{left:564.672000pt;}
.x3b{left:565.861333pt;}
.x1f{left:585.237333pt;}
.x20{left:591.880000pt;}
.x43{left:602.060000pt;}
.x23{left:603.113333pt;}
.x35{left:604.188000pt;}
.x2c{left:615.260000pt;}
.x24{left:616.397333pt;}
.x2d{left:628.542667pt;}
.x2e{left:631.844000pt;}
.xe{left:640.297333pt;}
.x3f{left:641.862667pt;}
.x2f{left:645.128000pt;}
.xf{left:646.938667pt;}
.xc{left:662.648000pt;}
.xd{left:669.289333pt;}
.x41{left:685.837333pt;}
.x1d{left:726.853333pt;}
.x1e{left:740.137333pt;}
.x18{left:761.685333pt;}
.x6{left:765.212000pt;}
.x5{left:768.740000pt;}
}




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