
    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_31ac0576523ce412c5c494bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_faa80b4b8f4a1742dabe5920.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_0393f0e1bb18fb8075c115c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.469000;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_ea709e3269eaed357c889c9c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_f5b3c655e6fa7d393e125845.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_e5654d1598a67ca6042d7542.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854000;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_7b7e61471cae33b4e6c78cc8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_36d31ac2e2bee9c4d9e7ca92.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.427000;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;}
.m1a{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.ma{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);}
.m10{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);}
.m13{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);}
.m9{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);}
.m8{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);}
.m29{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);}
.m1{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);}
.m15{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);}
.m12{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);}
.m3{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);}
.mf{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);}
.m26{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);}
.m2a{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);}
.m1f{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);}
.m28{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);}
.m2{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);}
.m14{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);}
.me{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);}
.m24{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);}
.mc{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);}
.m22{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);}
.m1d{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);}
.m27{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);}
.m1e{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);}
.mb{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);}
.m20{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);}
.m7{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);}
.m25{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);}
.m18{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);}
.m11{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);}
.md{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);}
.m6{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);}
.m1c{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);}
.m17{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);}
.m19{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m1b{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.358000px;}
.v3{vertical-align:21.696000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.984726px;}
.ls3{letter-spacing:2.988007px;}
.ls2{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.990726px;}
.ls6{letter-spacing:15.720983px;}
.lsa{letter-spacing:16.438290px;}
.ls4{letter-spacing:16.617617px;}
.ls8{letter-spacing:18.829314px;}
.ls7{letter-spacing:18.948865px;}
.lsb{letter-spacing:20.383480px;}
.ls9{letter-spacing:22.894055px;}
.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;}
}
.ws84{word-spacing:-19.941274px;}
.ws3b{word-spacing:-16.617617px;}
.wsc5{word-spacing:-13.294127px;}
.ws10{word-spacing:-3.706087px;}
.ws5d{word-spacing:-3.526760px;}
.wsb2{word-spacing:-3.466985px;}
.ws88{word-spacing:-3.287658px;}
.ws51{word-spacing:-3.227882px;}
.wscb{word-spacing:-3.168107px;}
.wsc2{word-spacing:-3.108331px;}
.wsc4{word-spacing:-2.988780px;}
.wsa0{word-spacing:-2.929004px;}
.ws2a{word-spacing:-2.869229px;}
.ws82{word-spacing:-2.809453px;}
.ws1d{word-spacing:-2.749678px;}
.ws25{word-spacing:-2.630126px;}
.ws60{word-spacing:-2.570351px;}
.wsc0{word-spacing:-2.510575px;}
.wsad{word-spacing:-2.450800px;}
.ws50{word-spacing:-2.271473px;}
.wsa6{word-spacing:-2.211697px;}
.ws3f{word-spacing:-2.151922px;}
.ws8b{word-spacing:-2.092146px;}
.ws19{word-spacing:-2.032370px;}
.wscf{word-spacing:-1.972595px;}
.wsce{word-spacing:-1.912819px;}
.ws55{word-spacing:-1.853044px;}
.ws96{word-spacing:-1.793268px;}
.wsa4{word-spacing:-1.733492px;}
.wsa7{word-spacing:-1.673717px;}
.ws11{word-spacing:-1.613941px;}
.ws3e{word-spacing:-1.554166px;}
.ws14{word-spacing:-1.494390px;}
.ws83{word-spacing:-1.434614px;}
.ws99{word-spacing:-1.374839px;}
.ws8d{word-spacing:-1.315063px;}
.ws54{word-spacing:-1.255288px;}
.ws4a{word-spacing:-1.195512px;}
.ws4b{word-spacing:-1.016185px;}
.wsa8{word-spacing:-0.956410px;}
.ws69{word-spacing:-0.896634px;}
.ws9f{word-spacing:-0.836858px;}
.ws40{word-spacing:-0.777083px;}
.wsca{word-spacing:-0.717307px;}
.ws53{word-spacing:-0.657532px;}
.wsb4{word-spacing:-0.597756px;}
.ws42{word-spacing:-0.573847px;}
.ws37{word-spacing:-0.478205px;}
.ws1f{word-spacing:-0.418429px;}
.ws20{word-spacing:-0.358654px;}
.ws15{word-spacing:-0.298878px;}
.ws22{word-spacing:-0.239102px;}
.ws9{word-spacing:-0.179327px;}
.wsa{word-spacing:-0.119551px;}
.wsf{word-spacing:-0.059776px;}
.ws1a{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.014374px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:0.059776px;}
.ws2{word-spacing:0.071731px;}
.ws31{word-spacing:0.119551px;}
.ws1c{word-spacing:0.179327px;}
.ws36{word-spacing:0.215194px;}
.ws5{word-spacing:0.239102px;}
.wsd3{word-spacing:0.268992px;}
.wsb{word-spacing:0.298878px;}
.wsc{word-spacing:0.358654px;}
.ws6d{word-spacing:0.418429px;}
.ws7c{word-spacing:0.478205px;}
.ws1{word-spacing:0.478207px;}
.ws28{word-spacing:0.537980px;}
.ws18{word-spacing:0.597756px;}
.ws4e{word-spacing:0.657532px;}
.ws63{word-spacing:0.717307px;}
.ws45{word-spacing:0.777083px;}
.ws80{word-spacing:0.836858px;}
.ws62{word-spacing:0.896634px;}
.ws43{word-spacing:0.956410px;}
.ws12{word-spacing:1.016185px;}
.ws79{word-spacing:1.135736px;}
.ws17{word-spacing:1.195512px;}
.wse{word-spacing:1.255288px;}
.ws78{word-spacing:1.315063px;}
.wsd{word-spacing:1.374839px;}
.ws6f{word-spacing:1.434614px;}
.ws95{word-spacing:1.494390px;}
.ws38{word-spacing:1.554166px;}
.ws16{word-spacing:1.613941px;}
.ws6e{word-spacing:1.673717px;}
.ws87{word-spacing:1.733492px;}
.ws7{word-spacing:1.793268px;}
.ws89{word-spacing:1.912819px;}
.ws32{word-spacing:1.972595px;}
.ws64{word-spacing:2.032370px;}
.ws21{word-spacing:2.151922px;}
.ws2c{word-spacing:2.211697px;}
.ws6c{word-spacing:2.271473px;}
.wsc6{word-spacing:2.331248px;}
.ws5c{word-spacing:2.391024px;}
.ws58{word-spacing:2.450800px;}
.ws4f{word-spacing:2.510575px;}
.ws27{word-spacing:2.570351px;}
.ws26{word-spacing:2.630126px;}
.ws23{word-spacing:2.689902px;}
.wsa5{word-spacing:2.749678px;}
.ws5b{word-spacing:2.809453px;}
.ws9e{word-spacing:2.869229px;}
.ws33{word-spacing:2.929004px;}
.ws65{word-spacing:2.988780px;}
.wsb0{word-spacing:3.048556px;}
.ws74{word-spacing:3.108331px;}
.ws4{word-spacing:3.156160px;}
.ws3d{word-spacing:3.168107px;}
.ws3c{word-spacing:3.227882px;}
.ws1e{word-spacing:3.347434px;}
.wsa9{word-spacing:3.407209px;}
.ws41{word-spacing:3.466985px;}
.wsbb{word-spacing:3.526760px;}
.ws73{word-spacing:3.586536px;}
.ws68{word-spacing:3.646312px;}
.wsd2{word-spacing:3.706087px;}
.ws91{word-spacing:3.765863px;}
.ws7a{word-spacing:3.825638px;}
.ws7e{word-spacing:3.885414px;}
.ws57{word-spacing:3.945190px;}
.ws7f{word-spacing:4.004965px;}
.ws48{word-spacing:4.064741px;}
.ws39{word-spacing:4.124516px;}
.ws77{word-spacing:4.184292px;}
.ws8f{word-spacing:4.244068px;}
.wsaa{word-spacing:4.303843px;}
.ws6b{word-spacing:4.363619px;}
.ws7b{word-spacing:4.423394px;}
.ws2d{word-spacing:4.483170px;}
.wsc1{word-spacing:4.542946px;}
.ws2e{word-spacing:4.602721px;}
.ws59{word-spacing:4.662497px;}
.ws46{word-spacing:4.722272px;}
.ws7d{word-spacing:4.782048px;}
.ws34{word-spacing:4.841824px;}
.ws4c{word-spacing:4.901599px;}
.ws24{word-spacing:4.961375px;}
.ws2b{word-spacing:5.021150px;}
.ws5e{word-spacing:5.080926px;}
.ws61{word-spacing:5.140702px;}
.ws49{word-spacing:5.200477px;}
.wsaf{word-spacing:5.260253px;}
.wsbd{word-spacing:5.320028px;}
.ws97{word-spacing:5.379804px;}
.ws66{word-spacing:5.439580px;}
.ws5a{word-spacing:5.499355px;}
.ws70{word-spacing:5.559131px;}
.wsb3{word-spacing:5.618906px;}
.ws6{word-spacing:5.678682px;}
.ws90{word-spacing:5.798233px;}
.ws75{word-spacing:5.858009px;}
.ws9a{word-spacing:5.917784px;}
.ws81{word-spacing:5.977560px;}
.ws94{word-spacing:6.037336px;}
.wsc8{word-spacing:6.097111px;}
.ws76{word-spacing:6.156887px;}
.ws47{word-spacing:6.216662px;}
.ws6a{word-spacing:6.276438px;}
.ws8e{word-spacing:6.336214px;}
.wsac{word-spacing:6.395989px;}
.wsd0{word-spacing:6.455765px;}
.ws1b{word-spacing:6.575316px;}
.ws30{word-spacing:6.635092px;}
.ws4d{word-spacing:6.694867px;}
.ws98{word-spacing:6.754643px;}
.wsb6{word-spacing:6.814418px;}
.ws8c{word-spacing:6.874194px;}
.ws93{word-spacing:6.993745px;}
.ws86{word-spacing:7.053521px;}
.wsc7{word-spacing:7.113296px;}
.ws8{word-spacing:7.173072px;}
.wsa3{word-spacing:7.232848px;}
.wscd{word-spacing:7.292623px;}
.wsbc{word-spacing:7.352399px;}
.ws67{word-spacing:7.471950px;}
.ws5f{word-spacing:7.531726px;}
.ws56{word-spacing:7.591501px;}
.wsb9{word-spacing:7.651277px;}
.wsb8{word-spacing:7.711052px;}
.wsae{word-spacing:7.770828px;}
.ws44{word-spacing:7.830604px;}
.ws35{word-spacing:7.950155px;}
.ws13{word-spacing:8.009930px;}
.wsa1{word-spacing:8.189257px;}
.ws9d{word-spacing:8.249033px;}
.ws92{word-spacing:8.308808px;}
.wsb7{word-spacing:8.368584px;}
.wsc9{word-spacing:8.488135px;}
.ws72{word-spacing:8.547911px;}
.wsc3{word-spacing:8.667462px;}
.ws8a{word-spacing:8.787013px;}
.wsa2{word-spacing:8.846789px;}
.ws85{word-spacing:8.906564px;}
.wsb5{word-spacing:8.966340px;}
.ws2f{word-spacing:9.026116px;}
.wsb1{word-spacing:9.145667px;}
.wsba{word-spacing:9.265218px;}
.ws52{word-spacing:9.324994px;}
.wsbe{word-spacing:9.862974px;}
.wsbf{word-spacing:9.922750px;}
.wsab{word-spacing:9.982525px;}
.ws71{word-spacing:10.520506px;}
.wscc{word-spacing:11.058486px;}
.wsd1{word-spacing:11.596466px;}
.ws9c{word-spacing:11.835569px;}
.ws3a{word-spacing:16.796944px;}
.ws9b{word-spacing:27.735878px;}
._1a{margin-left:-7.830575px;}
._5{margin-left:-6.694884px;}
._4{margin-left:-5.021151px;}
._3{margin-left:-3.825658px;}
._1{margin-left:-2.391036px;}
._2{margin-left:-1.195518px;}
._0{width:1.195518px;}
._7{width:2.988792px;}
._21{width:5.379804px;}
._20{width:6.814436px;}
._1e{width:10.102094px;}
._1c{width:14.166829px;}
._e{width:15.242790px;}
._6{width:16.450286px;}
._d{width:17.992444px;}
._a{width:19.905293px;}
._b{width:21.399677px;}
._14{width:22.714740px;}
._9{width:23.790689px;}
._c{width:25.823071px;}
._12{width:27.317472px;}
._f{width:29.230268px;}
._16{width:31.382178px;}
._18{width:32.398381px;}
._11{width:33.414548px;}
._23{width:34.849192px;}
._15{width:35.865372px;}
._8{width:37.240199px;}
._1b{width:39.153018px;}
._17{width:40.647420px;}
._19{width:42.679778px;}
._13{width:43.695964px;}
._24{width:45.011033px;}
._1d{width:46.206557px;}
._10{width:48.119382px;}
._22{width:51.765664px;}
._1f{width:76.453010px;}
._26{width:99.239997px;}
._32{width:135.280800px;}
._28{width:147.990520px;}
._2f{width:155.625496px;}
._2a{width:160.745959px;}
._2d{width:222.838410px;}
._33{width:225.855826px;}
._30{width:279.332697px;}
._25{width:283.826780px;}
._27{width:289.665059px;}
._2e{width:338.924313px;}
._31{width:355.558978px;}
._2b{width:388.736872px;}
._34{width:492.622796px;}
._29{width:520.817382px;}
._2c{width:661.819823px;}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(50,13,77);}
.fs3{font-size:35.865600px;}
.fs6{font-size:44.233800px;}
.fs8{font-size:45.718418px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:119.551800px;}
.fs7{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y313{bottom:48.540000px;}
.y312{bottom:66.474000px;}
.y311{bottom:84.406500px;}
.y37{bottom:95.668500px;}
.y55{bottom:95.670000px;}
.y284{bottom:100.009500px;}
.y310{bottom:102.339000px;}
.y8b{bottom:109.866000px;}
.y283{bottom:110.656500px;}
.y54{bottom:113.602500px;}
.y36{bottom:114.205500px;}
.y309{bottom:115.200000px;}
.y30f{bottom:120.271500px;}
.y282{bottom:124.852500px;}
.y35{bottom:129.192000px;}
.y53{bottom:131.535000px;}
.y308{bottom:133.132500px;}
.y8a{bottom:138.334500px;}
.y234{bottom:139.318500px;}
.y34{bottom:144.180000px;}
.y52{bottom:149.467500px;}
.y1a3{bottom:150.772500px;}
.y307{bottom:151.065000px;}
.yda{bottom:151.615500px;}
.y122{bottom:151.732500px;}
.y155{bottom:152.137500px;}
.y89{bottom:156.267000px;}
.y281{bottom:156.664500px;}
.y233{bottom:157.251000px;}
.y33{bottom:159.166500px;}
.y2e7{bottom:161.206500px;}
.y51{bottom:167.400000px;}
.y1a2{bottom:168.705000px;}
.yb7{bottom:168.846000px;}
.y306{bottom:168.999000px;}
.yd9{bottom:169.548000px;}
.y121{bottom:169.665000px;}
.y154{bottom:170.070000px;}
.y1db{bottom:173.820000px;}
.y88{bottom:174.199500px;}
.y305{bottom:174.423000px;}
.y280{bottom:174.597000px;}
.y232{bottom:175.183500px;}
.y50{bottom:185.332500px;}
.y1a1{bottom:186.637500px;}
.yd8{bottom:187.482000px;}
.y120{bottom:187.597500px;}
.y153{bottom:188.002500px;}
.y32{bottom:189.091500px;}
.y1da{bottom:191.752500px;}
.y87{bottom:192.132000px;}
.y27f{bottom:192.529500px;}
.y230{bottom:193.116000px;}
.y231{bottom:198.541500px;}
.y1c8{bottom:203.265000px;}
.yf1{bottom:203.266500px;}
.y1a0{bottom:204.570000px;}
.y1ed{bottom:204.712500px;}
.y304{bottom:205.002000px;}
.yd7{bottom:205.414500px;}
.y11f{bottom:205.531500px;}
.y4f{bottom:205.546500px;}
.y24f{bottom:205.875000px;}
.y152{bottom:205.935000px;}
.y31{bottom:208.716000px;}
.y1d9{bottom:209.685000px;}
.y86{bottom:210.066000px;}
.y27e{bottom:210.462000px;}
.y22f{bottom:211.050000px;}
.y2e6{bottom:211.650000px;}
.y216{bottom:221.094000px;}
.yf0{bottom:221.199000px;}
.y19f{bottom:222.504000px;}
.y303{bottom:222.934500px;}
.yd6{bottom:223.347000px;}
.y11e{bottom:223.464000px;}
.y24e{bottom:223.807500px;}
.y151{bottom:223.869000px;}
.yb6{bottom:224.751000px;}
.y30{bottom:226.648500px;}
.y1d8{bottom:227.619000px;}
.y85{bottom:227.998500px;}
.y27d{bottom:228.396000px;}
.y22e{bottom:228.982500px;}
.y2e5{bottom:229.582500px;}
.y215{bottom:239.026500px;}
.yef{bottom:239.131500px;}
.y19e{bottom:240.436500px;}
.y302{bottom:240.867000px;}
.yd5{bottom:241.279500px;}
.y11d{bottom:241.396500px;}
.y24d{bottom:241.740000px;}
.y150{bottom:241.801500px;}
.yb5{bottom:242.685000px;}
.y2f{bottom:244.581000px;}
.y1d7{bottom:245.551500px;}
.y84{bottom:245.931000px;}
.y27c{bottom:246.328500px;}
.y2e4{bottom:247.516500px;}
.y4e{bottom:252.138000px;}
.y214{bottom:256.959000px;}
.yee{bottom:257.064000px;}
.y19d{bottom:258.369000px;}
.y301{bottom:258.799500px;}
.yd4{bottom:259.212000px;}
.y11c{bottom:259.329000px;}
.y24c{bottom:259.674000px;}
.y14f{bottom:259.734000px;}
.yb4{bottom:260.617500px;}
.y2e{bottom:262.513500px;}
.y1d6{bottom:263.484000px;}
.y83{bottom:263.863500px;}
.y300{bottom:264.225000px;}
.y2e3{bottom:265.449000px;}
.y27b{bottom:265.459500px;}
.y22d{bottom:265.845000px;}
.y4d{bottom:270.072000px;}
.yed{bottom:274.996500px;}
.y19c{bottom:276.301500px;}
.yd3{bottom:277.144500px;}
.y24b{bottom:277.606500px;}
.y14e{bottom:277.666500px;}
.yb3{bottom:278.550000px;}
.y2d{bottom:280.446000px;}
.y1d5{bottom:281.416500px;}
.y82{bottom:281.796000px;}
.y2e2{bottom:283.381500px;}
.y27a{bottom:283.392000px;}
.y22c{bottom:283.777500px;}
.y4c{bottom:288.004500px;}
.yec{bottom:292.929000px;}
.y19b{bottom:294.234000px;}
.y2ff{bottom:294.804000px;}
.y24a{bottom:295.539000px;}
.y14d{bottom:295.599000px;}
.y213{bottom:295.708500px;}
.yb2{bottom:296.482500px;}
.y56{bottom:296.550000px;}
.yd2{bottom:297.226500px;}
.y2c{bottom:298.378500px;}
.y1d4{bottom:299.349000px;}
.y81{bottom:299.728500px;}
.y178{bottom:300.805500px;}
.y2e1{bottom:301.314000px;}
.y279{bottom:301.324500px;}
.y22b{bottom:301.710000px;}
.y4b{bottom:305.937000px;}
.yeb{bottom:310.863000px;}
.y11b{bottom:311.880000px;}
.y19a{bottom:312.166500px;}
.y2fe{bottom:312.736500px;}
.y249{bottom:313.471500px;}
.y14c{bottom:313.531500px;}
.y212{bottom:313.641000px;}
.y1ec{bottom:314.415000px;}
.yd1{bottom:315.159000px;}
.y2b{bottom:316.312500px;}
.y1d3{bottom:317.283000px;}
.y80{bottom:317.662500px;}
.y2e0{bottom:319.246500px;}
.y278{bottom:319.257000px;}
.y22a{bottom:319.642500px;}
.y177{bottom:321.727500px;}
.y1dd{bottom:323.701500px;}
.y4a{bottom:323.869500px;}
.yea{bottom:328.795500px;}
.y11a{bottom:329.812500px;}
.y199{bottom:330.100500px;}
.y2fd{bottom:330.669000px;}
.y248{bottom:331.404000px;}
.y14b{bottom:331.465500px;}
.y211{bottom:331.573500px;}
.y1eb{bottom:332.347500px;}
.yd0{bottom:333.091500px;}
.y2a{bottom:334.245000px;}
.y1d2{bottom:335.215500px;}
.y7f{bottom:335.595000px;}
.y2fc{bottom:336.094500px;}
.y2df{bottom:337.179000px;}
.y277{bottom:337.189500px;}
.y229{bottom:337.576500px;}
.yb1{bottom:339.250500px;}
.y1dc{bottom:341.635500px;}
.y49{bottom:341.802000px;}
.ye9{bottom:346.728000px;}
.y119{bottom:347.745000px;}
.y198{bottom:348.033000px;}
.y247{bottom:349.338000px;}
.y210{bottom:349.506000px;}
.y1ea{bottom:350.281500px;}
.ycf{bottom:351.024000px;}
.y14a{bottom:352.068000px;}
.y28{bottom:352.177500px;}
.y7e{bottom:353.527500px;}
.y2de{bottom:355.113000px;}
.y276{bottom:355.123500px;}
.yb0{bottom:357.184500px;}
.y29{bottom:357.601500px;}
.y1d1{bottom:359.568000px;}
.y48{bottom:359.734500px;}
.y314{bottom:364.309500px;}
.ye8{bottom:364.660500px;}
.y118{bottom:365.677500px;}
.y197{bottom:365.965500px;}
.y2fb{bottom:366.673500px;}
.y246{bottom:367.270500px;}
.y20f{bottom:367.438500px;}
.y1e9{bottom:368.214000px;}
.yce{bottom:368.956500px;}
.y149{bottom:370.000500px;}
.y27{bottom:370.110000px;}
.y7d{bottom:371.460000px;}
.y2dd{bottom:373.045500px;}
.y275{bottom:373.056000px;}
.yaf{bottom:375.117000px;}
.y1d0{bottom:377.500500px;}
.y47{bottom:377.668500px;}
.ye7{bottom:382.593000px;}
.y117{bottom:383.611500px;}
.y196{bottom:383.898000px;}
.y2fa{bottom:384.606000px;}
.y245{bottom:385.203000px;}
.y29e{bottom:385.263000px;}
.y1e8{bottom:386.146500px;}
.y20e{bottom:386.839500px;}
.ycd{bottom:386.889000px;}
.y148{bottom:387.933000px;}
.y26{bottom:388.042500px;}
.y176{bottom:388.158000px;}
.y7c{bottom:389.392500px;}
.y2f9{bottom:390.030000px;}
.y2dc{bottom:390.978000px;}
.y274{bottom:392.187000px;}
.yae{bottom:393.049500px;}
.y1cf{bottom:395.433000px;}
.y46{bottom:395.601000px;}
.ye6{bottom:400.525500px;}
.y116{bottom:401.544000px;}
.y195{bottom:401.830500px;}
.y244{bottom:403.135500px;}
.y29d{bottom:403.195500px;}
.y20d{bottom:404.772000px;}
.ycc{bottom:404.823000px;}
.y147{bottom:405.865500px;}
.y25{bottom:405.975000px;}
.y175{bottom:406.090500px;}
.y7b{bottom:407.643000px;}
.y2db{bottom:408.910500px;}
.y273{bottom:410.119500px;}
.yad{bottom:410.982000px;}
.y45{bottom:413.533500px;}
.ye5{bottom:418.459500px;}
.y115{bottom:419.476500px;}
.y2f8{bottom:420.609000px;}
.y194{bottom:421.068000px;}
.y29c{bottom:421.128000px;}
.y20c{bottom:422.706000px;}
.ycb{bottom:422.755500px;}
.y146{bottom:423.798000px;}
.y24{bottom:423.909000px;}
.y174{bottom:424.023000px;}
.y2da{bottom:426.843000px;}
.y272{bottom:428.052000px;}
.yac{bottom:428.914500px;}
.y44{bottom:431.466000px;}
.y1c7{bottom:431.892000px;}
.ye4{bottom:436.392000px;}
.y114{bottom:437.409000px;}
.y2f7{bottom:438.541500px;}
.y193{bottom:439.000500px;}
.y29b{bottom:439.062000px;}
.y20b{bottom:440.638500px;}
.yca{bottom:440.688000px;}
.y145{bottom:441.730500px;}
.y22{bottom:441.841500px;}
.y173{bottom:441.955500px;}
.y2f6{bottom:443.967000px;}
.y2d9{bottom:444.775500px;}
.y1ce{bottom:445.645500px;}
.y271{bottom:445.984500px;}
.y7a{bottom:446.386500px;}
.yab{bottom:446.847000px;}
.y23{bottom:447.265500px;}
.y43{bottom:449.398500px;}
.y1c6{bottom:449.824500px;}
.ye3{bottom:454.324500px;}
.y113{bottom:455.341500px;}
.y192{bottom:456.934500px;}
.y29a{bottom:456.994500px;}
.y20a{bottom:458.571000px;}
.yc9{bottom:458.620500px;}
.y144{bottom:459.664500px;}
.y21{bottom:459.774000px;}
.y172{bottom:459.888000px;}
.y1cd{bottom:463.578000px;}
.y270{bottom:463.917000px;}
.y2d8{bottom:463.950000px;}
.y79{bottom:464.319000px;}
.yaa{bottom:464.781000px;}
.y42{bottom:467.331000px;}
.y1c5{bottom:467.757000px;}
.ye2{bottom:472.257000px;}
.y112{bottom:473.274000px;}
.y2f5{bottom:474.546000px;}
.y191{bottom:474.867000px;}
.y299{bottom:474.927000px;}
.y209{bottom:476.503500px;}
.y143{bottom:477.597000px;}
.y20{bottom:477.706500px;}
.y171{bottom:477.822000px;}
.yc8{bottom:478.701000px;}
.y1cc{bottom:481.510500px;}
.y26f{bottom:481.849500px;}
.y2d7{bottom:481.882500px;}
.y78{bottom:482.251500px;}
.ya9{bottom:482.713500px;}
.y41{bottom:485.265000px;}
.y1c4{bottom:485.689500px;}
.y1b3{bottom:490.189500px;}
.y111{bottom:491.208000px;}
.y2f4{bottom:492.478500px;}
.y190{bottom:492.799500px;}
.y298{bottom:492.859500px;}
.y208{bottom:494.436000px;}
.y142{bottom:495.529500px;}
.y1f{bottom:495.639000px;}
.y170{bottom:495.754500px;}
.yc7{bottom:496.635000px;}
.y1cb{bottom:499.443000px;}
.y26e{bottom:499.783500px;}
.y2d6{bottom:499.815000px;}
.y77{bottom:500.184000px;}
.ya8{bottom:500.646000px;}
.ye1{bottom:501.024000px;}
.y1c3{bottom:503.623500px;}
.y40{bottom:505.477500px;}
.y1b2{bottom:508.864500px;}
.y110{bottom:509.140500px;}
.y2f3{bottom:510.411000px;}
.y18f{bottom:510.732000px;}
.y297{bottom:510.792000px;}
.y207{bottom:512.370000px;}
.y141{bottom:513.462000px;}
.y1e{bottom:513.571500px;}
.y16f{bottom:513.687000px;}
.yc6{bottom:514.567500px;}
.y1ca{bottom:517.375500px;}
.y26d{bottom:517.716000px;}
.y2d5{bottom:517.747500px;}
.y76{bottom:518.116500px;}
.ya7{bottom:518.578500px;}
.y2b9{bottom:519.373500px;}
.y1c2{bottom:521.556000px;}
.y3f{bottom:523.410000px;}
.y1b1{bottom:526.797000px;}
.y10f{bottom:527.073000px;}
.y2f2{bottom:528.343500px;}
.y18e{bottom:528.664500px;}
.y296{bottom:528.724500px;}
.y206{bottom:530.302500px;}
.ye0{bottom:530.352000px;}
.y140{bottom:531.394500px;}
.y1d{bottom:531.505500px;}
.y16e{bottom:531.619500px;}
.yc5{bottom:532.500000px;}
.y1c9{bottom:535.309500px;}
.y26c{bottom:535.648500px;}
.y2d4{bottom:535.681500px;}
.y75{bottom:536.049000px;}
.ya6{bottom:536.511000px;}
.y1c1{bottom:539.488500px;}
.y3e{bottom:541.342500px;}
.y1b0{bottom:544.731000px;}
.y10e{bottom:545.005500px;}
.y2f1{bottom:546.276000px;}
.y18d{bottom:546.597000px;}
.y295{bottom:546.658500px;}
.y205{bottom:548.235000px;}
.ydf{bottom:548.284500px;}
.y13f{bottom:549.327000px;}
.y1c{bottom:549.438000px;}
.y16d{bottom:549.552000px;}
.yc4{bottom:550.432500px;}
.y26b{bottom:553.581000px;}
.y2d3{bottom:553.614000px;}
.y74{bottom:553.983000px;}
.ya5{bottom:554.443500px;}
.y1c0{bottom:557.421000px;}
.y3d{bottom:559.275000px;}
.y1af{bottom:562.663500px;}
.y10d{bottom:562.938000px;}
.y2f0{bottom:564.210000px;}
.y18c{bottom:564.531000px;}
.y294{bottom:564.591000px;}
.y204{bottom:566.167500px;}
.y13e{bottom:567.261000px;}
.y1b{bottom:567.370500px;}
.y16c{bottom:567.484500px;}
.yc3{bottom:568.365000px;}
.y2ef{bottom:569.634000px;}
.y26a{bottom:571.513500px;}
.y2d2{bottom:571.546500px;}
.y73{bottom:571.915500px;}
.ya4{bottom:572.377500px;}
.y1bf{bottom:575.353500px;}
.y3c{bottom:577.209000px;}
.yde{bottom:577.612500px;}
.y1ae{bottom:580.596000px;}
.y10c{bottom:580.870500px;}
.y18b{bottom:582.463500px;}
.y293{bottom:582.523500px;}
.y203{bottom:584.100000px;}
.y2b8{bottom:585.066000px;}
.y13d{bottom:585.193500px;}
.y19{bottom:585.303000px;}
.y16b{bottom:585.418500px;}
.yc2{bottom:586.299000px;}
.y269{bottom:589.447500px;}
.y2d1{bottom:589.479000px;}
.y72{bottom:589.848000px;}
.ya3{bottom:590.310000px;}
.y1a{bottom:590.727000px;}
.y1be{bottom:593.286000px;}
.y3b{bottom:595.141500px;}
.ydd{bottom:595.545000px;}
.y1ad{bottom:598.528500px;}
.y2ee{bottom:600.213000px;}
.y18a{bottom:600.396000px;}
.y202{bottom:602.032500px;}
.y2b7{bottom:602.998500px;}
.y292{bottom:603.126000px;}
.y18{bottom:603.235500px;}
.y16a{bottom:603.351000px;}
.yc1{bottom:604.231500px;}
.y10b{bottom:604.969500px;}
.y13c{bottom:605.796000px;}
.y268{bottom:607.380000px;}
.y2d0{bottom:607.411500px;}
.y71{bottom:607.780500px;}
.ya2{bottom:608.242500px;}
.y3a{bottom:613.074000px;}
.y1ac{bottom:616.461000px;}
.y2ed{bottom:618.145500px;}
.y189{bottom:618.328500px;}
.y243{bottom:619.633500px;}
.y2b6{bottom:620.931000px;}
.y291{bottom:621.058500px;}
.y17{bottom:621.168000px;}
.y201{bottom:621.433500px;}
.yc0{bottom:622.164000px;}
.y10a{bottom:622.902000px;}
.y13b{bottom:623.728500px;}
.ydc{bottom:624.312000px;}
.y267{bottom:625.312500px;}
.y2cf{bottom:625.344000px;}
.y1e7{bottom:626.175000px;}
.ya1{bottom:627.621000px;}
.y39{bottom:631.006500px;}
.y1ab{bottom:634.393500px;}
.y2ec{bottom:636.078000px;}
.y188{bottom:636.261000px;}
.y70{bottom:636.529500px;}
.y242{bottom:637.566000px;}
.y2b5{bottom:638.865000px;}
.y290{bottom:638.991000px;}
.ybf{bottom:640.096500px;}
.y109{bottom:640.834500px;}
.y13a{bottom:641.661000px;}
.ydb{bottom:642.244500px;}
.y1bd{bottom:642.646500px;}
.y1e6{bottom:644.107500px;}
.y266{bottom:644.443500px;}
.y2ce{bottom:644.518500px;}
.ya0{bottom:645.555000px;}
.y169{bottom:645.856500px;}
.y16{bottom:646.318500px;}
.y228{bottom:648.372000px;}
.y38{bottom:648.939000px;}
.y1aa{bottom:653.070000px;}
.y2eb{bottom:654.012000px;}
.y187{bottom:654.193500px;}
.y241{bottom:655.498500px;}
.y2b4{bottom:656.797500px;}
.y28f{bottom:656.923500px;}
.y108{bottom:658.768500px;}
.y2ea{bottom:659.436000px;}
.y139{bottom:659.593500px;}
.ybe{bottom:660.177000px;}
.y1bc{bottom:660.579000px;}
.y1e5{bottom:662.040000px;}
.y2cd{bottom:662.451000px;}
.y9f{bottom:663.487500px;}
.y168{bottom:663.790500px;}
.y186{bottom:672.127500px;}
.y240{bottom:673.431000px;}
.y200{bottom:674.452500px;}
.y2b3{bottom:674.730000px;}
.y28e{bottom:674.857500px;}
.y107{bottom:676.701000px;}
.y138{bottom:677.526000px;}
.ybd{bottom:678.109500px;}
.y1bb{bottom:678.513000px;}
.y1e4{bottom:679.974000px;}
.y2cc{bottom:680.383500px;}
.y9e{bottom:681.420000px;}
.y167{bottom:681.723000px;}
.y6f{bottom:682.548000px;}
.y2e9{bottom:682.705500px;}
.y185{bottom:690.060000px;}
.y23f{bottom:691.365000px;}
.y1ff{bottom:692.385000px;}
.y28d{bottom:692.790000px;}
.y106{bottom:694.633500px;}
.y227{bottom:695.271000px;}
.y137{bottom:695.460000px;}
.ybc{bottom:696.043500px;}
.y1ba{bottom:696.445500px;}
.y1e3{bottom:697.906500px;}
.y2cb{bottom:698.317500px;}
.y9d{bottom:699.352500px;}
.y166{bottom:699.655500px;}
.y6e{bottom:700.482000px;}
.y184{bottom:707.992500px;}
.y23e{bottom:709.297500px;}
.y1fe{bottom:710.317500px;}
.y265{bottom:710.365346px;}
.y28c{bottom:710.722500px;}
.y105{bottom:712.566000px;}
.y1a9{bottom:712.893000px;}
.y226{bottom:713.203500px;}
.y136{bottom:713.392500px;}
.ybb{bottom:713.976000px;}
.y1b9{bottom:714.378000px;}
.y1e2{bottom:715.839000px;}
.y2ca{bottom:716.250000px;}
.y2b2{bottom:716.668500px;}
.y9c{bottom:717.285000px;}
.y165{bottom:717.588000px;}
.y6d{bottom:718.414500px;}
.y15{bottom:720.297000px;}
.y264{bottom:724.334948px;}
.y183{bottom:725.925000px;}
.y23d{bottom:727.230000px;}
.y1fd{bottom:728.250000px;}
.y28b{bottom:728.655000px;}
.y104{bottom:730.498500px;}
.y1a8{bottom:730.825500px;}
.y225{bottom:731.137500px;}
.y135{bottom:731.325000px;}
.yba{bottom:731.908500px;}
.y1e1{bottom:733.771500px;}
.y2c9{bottom:734.182500px;}
.y2b1{bottom:734.601000px;}
.y9b{bottom:735.217500px;}
.y164{bottom:735.520500px;}
.y6c{bottom:736.347000px;}
.y2e8{bottom:736.665000px;}
.y14{bottom:738.229500px;}
.y263{bottom:738.304549px;}
.y182{bottom:745.162500px;}
.y1fc{bottom:746.182500px;}
.y103{bottom:748.431000px;}
.y1a7{bottom:748.758000px;}
.y224{bottom:749.070000px;}
.y134{bottom:749.257500px;}
.yb9{bottom:749.841000px;}
.y2c8{bottom:752.115000px;}
.y262{bottom:752.274151px;}
.y2b0{bottom:752.533500px;}
.y9a{bottom:753.151500px;}
.y163{bottom:753.453000px;}
.y6b{bottom:754.279500px;}
.y1b8{bottom:754.597500px;}
.y13{bottom:756.162000px;}
.y181{bottom:763.095000px;}
.y1fb{bottom:764.115000px;}
.y261{bottom:766.243753px;}
.y102{bottom:766.365000px;}
.y1a6{bottom:766.692000px;}
.y223{bottom:767.002500px;}
.y133{bottom:767.190000px;}
.y2af{bottom:770.467500px;}
.y99{bottom:771.084000px;}
.y2c7{bottom:771.289500px;}
.y162{bottom:771.387000px;}
.y69{bottom:772.212000px;}
.y1b7{bottom:772.530000px;}
.y12{bottom:774.094500px;}
.y6a{bottom:777.637500px;}
.y260{bottom:780.213354px;}
.y180{bottom:781.027500px;}
.y1fa{bottom:782.049000px;}
.y101{bottom:784.297500px;}
.y1a5{bottom:784.624500px;}
.y222{bottom:784.935000px;}
.y132{bottom:785.122500px;}
.y2ae{bottom:788.400000px;}
.y98{bottom:789.016500px;}
.y2c6{bottom:789.222000px;}
.y161{bottom:789.319500px;}
.y68{bottom:790.144500px;}
.y1b6{bottom:790.462500px;}
.y11{bottom:792.028500px;}
.y25f{bottom:794.690293px;}
.y17f{bottom:798.961500px;}
.yb8{bottom:800.053500px;}
.y100{bottom:802.230000px;}
.y1a4{bottom:802.557000px;}
.y221{bottom:802.867500px;}
.y131{bottom:803.056500px;}
.y2ad{bottom:806.332500px;}
.y97{bottom:806.949000px;}
.y2c5{bottom:807.154500px;}
.y160{bottom:807.252000px;}
.y67{bottom:808.078500px;}
.y1b5{bottom:808.395000px;}
.y10{bottom:809.961000px;}
.y17e{bottom:816.894000px;}
.yff{bottom:820.162500px;}
.y220{bottom:820.800000px;}
.y130{bottom:820.989000px;}
.y25e{bottom:823.138107px;}
.y2ac{bottom:824.265000px;}
.y1f9{bottom:824.860500px;}
.y96{bottom:824.881500px;}
.y2c4{bottom:825.087000px;}
.y15f{bottom:825.184500px;}
.y66{bottom:826.011000px;}
.y1b4{bottom:826.327500px;}
.yf{bottom:827.893500px;}
.y17d{bottom:836.131500px;}
.y25d{bottom:837.106434px;}
.yfe{bottom:838.095000px;}
.y12f{bottom:838.921500px;}
.y2ab{bottom:842.197500px;}
.y1f8{bottom:842.793000px;}
.y95{bottom:842.814000px;}
.y2c3{bottom:843.019500px;}
.y65{bottom:843.943500px;}
.y15e{bottom:844.261500px;}
.ye{bottom:845.826000px;}
.y25c{bottom:851.076036px;}
.y21f{bottom:855.807000px;}
.yfd{bottom:856.027500px;}
.y12e{bottom:856.854000px;}
.y2aa{bottom:860.130000px;}
.y1f7{bottom:860.725500px;}
.y94{bottom:860.748000px;}
.y2c2{bottom:860.952000px;}
.y64{bottom:861.876000px;}
.y15d{bottom:862.194000px;}
.yd{bottom:863.758500px;}
.y25b{bottom:865.045638px;}
.y21e{bottom:873.739500px;}
.yfc{bottom:873.961500px;}
.y28a{bottom:874.786500px;}
.y12d{bottom:877.456500px;}
.y2a9{bottom:878.064000px;}
.y1f6{bottom:878.658000px;}
.y93{bottom:878.680500px;}
.y17c{bottom:878.821500px;}
.y2c1{bottom:878.886000px;}
.y25a{bottom:879.523851px;}
.y63{bottom:879.808500px;}
.y15c{bottom:880.126500px;}
.yc{bottom:881.691000px;}
.y21d{bottom:891.672000px;}
.yfb{bottom:891.894000px;}
.y289{bottom:892.719000px;}
.y12c{bottom:895.389000px;}
.y2a8{bottom:895.996500px;}
.y1f5{bottom:896.590500px;}
.y92{bottom:896.613000px;}
.y17b{bottom:896.754000px;}
.y2c0{bottom:896.818500px;}
.y62{bottom:897.741000px;}
.y15b{bottom:898.059000px;}
.yb{bottom:899.625000px;}
.y259{bottom:899.673000px;}
.y21c{bottom:909.604500px;}
.yfa{bottom:909.826500px;}
.y288{bottom:910.653000px;}
.y12b{bottom:913.321500px;}
.y2a7{bottom:913.929000px;}
.y1f4{bottom:914.524500px;}
.y91{bottom:914.545500px;}
.y23c{bottom:914.686500px;}
.y17a{bottom:914.688000px;}
.y2bf{bottom:914.751000px;}
.y61{bottom:915.675000px;}
.y15a{bottom:915.991500px;}
.ya{bottom:917.557500px;}
.yf9{bottom:927.759000px;}
.y287{bottom:928.585500px;}
.y12a{bottom:931.255500px;}
.y2a6{bottom:931.861500px;}
.y1f3{bottom:932.457000px;}
.y90{bottom:932.478000px;}
.y23b{bottom:932.620500px;}
.y2be{bottom:932.683500px;}
.y258{bottom:932.727000px;}
.y60{bottom:933.607500px;}
.y159{bottom:933.924000px;}
.y9{bottom:935.490000px;}
.y21b{bottom:941.622000px;}
.yf8{bottom:945.691500px;}
.y286{bottom:946.518000px;}
.y129{bottom:949.188000px;}
.y1f2{bottom:950.389500px;}
.y8f{bottom:950.410500px;}
.y23a{bottom:950.553000px;}
.y2bd{bottom:950.616000px;}
.y257{bottom:950.659500px;}
.y2a5{bottom:950.826000px;}
.y5f{bottom:951.540000px;}
.y158{bottom:951.858000px;}
.y8{bottom:953.422500px;}
.y21a{bottom:959.554500px;}
.yf7{bottom:963.624000px;}
.y285{bottom:964.450500px;}
.y128{bottom:967.120500px;}
.y1f1{bottom:968.322000px;}
.y8e{bottom:968.344500px;}
.y239{bottom:968.485500px;}
.y2bc{bottom:968.548500px;}
.y256{bottom:968.592000px;}
.y2a4{bottom:968.758500px;}
.y5e{bottom:969.472500px;}
.y157{bottom:969.790500px;}
.y219{bottom:977.487000px;}
.yf6{bottom:981.558000px;}
.y127{bottom:985.053000px;}
.y1f0{bottom:986.254500px;}
.y8d{bottom:986.277000px;}
.y238{bottom:986.418000px;}
.y2bb{bottom:986.482500px;}
.y254{bottom:986.524500px;}
.y2a3{bottom:986.691000px;}
.y5d{bottom:987.405000px;}
.y156{bottom:987.723000px;}
.y255{bottom:991.950000px;}
.y30e{bottom:992.922000px;}
.y7{bottom:998.878500px;}
.yf5{bottom:999.490500px;}
.y126{bottom:1002.985500px;}
.y1ef{bottom:1004.187000px;}
.y8c{bottom:1004.209500px;}
.y237{bottom:1004.350500px;}
.y2ba{bottom:1004.415000px;}
.y253{bottom:1004.457000px;}
.y2a2{bottom:1004.623500px;}
.y5c{bottom:1005.655500px;}
.y218{bottom:1009.504500px;}
.y30d{bottom:1010.854500px;}
.y6{bottom:1014.570000px;}
.yf4{bottom:1017.423000px;}
.y125{bottom:1020.918000px;}
.y1ee{bottom:1022.121000px;}
.y1e0{bottom:1022.142000px;}
.y236{bottom:1022.284500px;}
.y252{bottom:1022.391000px;}
.y2a1{bottom:1022.557500px;}
.y5b{bottom:1023.588000px;}
.y217{bottom:1027.437000px;}
.y30c{bottom:1028.788500px;}
.y5{bottom:1030.261500px;}
.yf3{bottom:1035.355500px;}
.y124{bottom:1038.852000px;}
.y1df{bottom:1040.074500px;}
.y235{bottom:1040.217000px;}
.y251{bottom:1040.323500px;}
.y2a0{bottom:1040.490000px;}
.y5a{bottom:1041.520500px;}
.y179{bottom:1041.522000px;}
.y30b{bottom:1046.721000px;}
.y3{bottom:1048.111500px;}
.yf2{bottom:1053.288000px;}
.y4{bottom:1054.621500px;}
.y123{bottom:1056.784500px;}
.y1de{bottom:1058.007000px;}
.y250{bottom:1058.256000px;}
.y29f{bottom:1058.422500px;}
.y59{bottom:1059.454500px;}
.y30a{bottom:1075.150500px;}
.y58{bottom:1077.387000px;}
.y2{bottom:1086.966000px;}
.y1{bottom:1124.326500px;}
.y57{bottom:1134.622500px;}
.h5{height:24.245146px;}
.h4{height:26.576410px;}
.hb{height:28.871615px;}
.h9{height:31.944161px;}
.h7{height:32.777246px;}
.hd{height:33.877348px;}
.hc{height:35.435065px;}
.h3{height:39.864614px;}
.h6{height:44.293720px;}
.he{height:45.187720px;}
.h2{height:53.152819px;}
.h8{height:54.473246px;}
.h1{height:88.587884px;}
.ha{height:117.773438px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1a{left:48.000000px;}
.x1{left:85.039500px;}
.x1f{left:89.569500px;}
.x8{left:94.588500px;}
.x42{left:95.836336px;}
.x2f{left:99.921000px;}
.x13{left:101.119500px;}
.x22{left:105.997500px;}
.x17{left:107.455500px;}
.x14{left:109.428000px;}
.x3c{left:120.904500px;}
.x3d{left:122.400000px;}
.x2d{left:126.544500px;}
.x26{left:128.214000px;}
.x30{left:132.495000px;}
.x9{left:134.467500px;}
.x2e{left:138.156000px;}
.x1b{left:139.765500px;}
.x45{left:156.411000px;}
.x2b{left:172.950000px;}
.x2c{left:184.561500px;}
.x40{left:210.517500px;}
.x41{left:217.413000px;}
.x31{left:221.010000px;}
.x2{left:224.667000px;}
.xb{left:230.382000px;}
.x44{left:232.489500px;}
.x32{left:233.586000px;}
.xc{left:238.690500px;}
.x3{left:243.355500px;}
.x33{left:245.197500px;}
.xd{left:246.439500px;}
.x1c{left:251.851500px;}
.xe{left:254.748000px;}
.x36{left:258.439500px;}
.x37{left:270.051000px;}
.x38{left:297.870000px;}
.x15{left:308.466000px;}
.x39{left:309.481500px;}
.xf{left:314.205000px;}
.x16{left:316.776000px;}
.x10{left:321.100500px;}
.x11{left:331.624500px;}
.x20{left:339.513000px;}
.x12{left:342.679500px;}
.x28{left:346.614000px;}
.x21{left:351.124500px;}
.x29{left:358.224000px;}
.x4{left:367.425000px;}
.x3e{left:375.186000px;}
.x5{left:391.098000px;}
.x27{left:403.366500px;}
.x1d{left:408.001500px;}
.x1e{left:420.037500px;}
.xa{left:440.721000px;}
.x3f{left:469.198500px;}
.x18{left:470.692500px;}
.x23{left:485.575500px;}
.x2a{left:488.118000px;}
.x19{left:493.108500px;}
.x3a{left:495.351000px;}
.x6{left:499.705500px;}
.x34{left:501.736500px;}
.x3b{left:506.559000px;}
.x7{left:507.930000px;}
.x35{left:513.348000px;}
.x43{left:572.601000px;}
.x24{left:583.843500px;}
.x25{left:595.455000px;}
.x46{left:672.111000px;}
.x47{left:763.788000px;}
@media print{
.v1{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.429333pt;}
.v3{vertical-align:19.285333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.653090pt;}
.ls3{letter-spacing:2.656006pt;}
.ls2{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.658423pt;}
.ls6{letter-spacing:13.974207pt;}
.lsa{letter-spacing:14.611813pt;}
.ls4{letter-spacing:14.771215pt;}
.ls8{letter-spacing:16.737168pt;}
.ls7{letter-spacing:16.843436pt;}
.lsb{letter-spacing:18.118649pt;}
.ls9{letter-spacing:20.350271pt;}
.ws84{word-spacing:-17.725577pt;}
.ws3b{word-spacing:-14.771215pt;}
.wsc5{word-spacing:-11.817002pt;}
.ws10{word-spacing:-3.294300pt;}
.ws5d{word-spacing:-3.134898pt;}
.wsb2{word-spacing:-3.081764pt;}
.ws88{word-spacing:-2.922363pt;}
.ws51{word-spacing:-2.869229pt;}
.wscb{word-spacing:-2.816095pt;}
.wsc2{word-spacing:-2.762961pt;}
.wsc4{word-spacing:-2.656693pt;}
.wsa0{word-spacing:-2.603559pt;}
.ws2a{word-spacing:-2.550426pt;}
.ws82{word-spacing:-2.497292pt;}
.ws1d{word-spacing:-2.444158pt;}
.ws25{word-spacing:-2.337890pt;}
.ws60{word-spacing:-2.284756pt;}
.wsc0{word-spacing:-2.231622pt;}
.wsad{word-spacing:-2.178489pt;}
.ws50{word-spacing:-2.019087pt;}
.wsa6{word-spacing:-1.965953pt;}
.ws3f{word-spacing:-1.912819pt;}
.ws8b{word-spacing:-1.859685pt;}
.ws19{word-spacing:-1.806551pt;}
.wscf{word-spacing:-1.753418pt;}
.wsce{word-spacing:-1.700284pt;}
.ws55{word-spacing:-1.647150pt;}
.ws96{word-spacing:-1.594016pt;}
.wsa4{word-spacing:-1.540882pt;}
.wsa7{word-spacing:-1.487748pt;}
.ws11{word-spacing:-1.434614pt;}
.ws3e{word-spacing:-1.381481pt;}
.ws14{word-spacing:-1.328347pt;}
.ws83{word-spacing:-1.275213pt;}
.ws99{word-spacing:-1.222079pt;}
.ws8d{word-spacing:-1.168945pt;}
.ws54{word-spacing:-1.115811pt;}
.ws4a{word-spacing:-1.062677pt;}
.ws4b{word-spacing:-0.903276pt;}
.wsa8{word-spacing:-0.850142pt;}
.ws69{word-spacing:-0.797008pt;}
.ws9f{word-spacing:-0.743874pt;}
.ws40{word-spacing:-0.690740pt;}
.wsca{word-spacing:-0.637606pt;}
.ws53{word-spacing:-0.584473pt;}
.wsb4{word-spacing:-0.531339pt;}
.ws42{word-spacing:-0.510086pt;}
.ws37{word-spacing:-0.425071pt;}
.ws1f{word-spacing:-0.371937pt;}
.ws20{word-spacing:-0.318803pt;}
.ws15{word-spacing:-0.265669pt;}
.ws22{word-spacing:-0.212535pt;}
.ws9{word-spacing:-0.159402pt;}
.wsa{word-spacing:-0.106268pt;}
.wsf{word-spacing:-0.053134pt;}
.ws1a{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.012777pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:0.053134pt;}
.ws2{word-spacing:0.063761pt;}
.ws31{word-spacing:0.106268pt;}
.ws1c{word-spacing:0.159402pt;}
.ws36{word-spacing:0.191283pt;}
.ws5{word-spacing:0.212535pt;}
.wsd3{word-spacing:0.239104pt;}
.wsb{word-spacing:0.265669pt;}
.wsc{word-spacing:0.318803pt;}
.ws6d{word-spacing:0.371937pt;}
.ws7c{word-spacing:0.425071pt;}
.ws1{word-spacing:0.425073pt;}
.ws28{word-spacing:0.478205pt;}
.ws18{word-spacing:0.531339pt;}
.ws4e{word-spacing:0.584473pt;}
.ws63{word-spacing:0.637606pt;}
.ws45{word-spacing:0.690740pt;}
.ws80{word-spacing:0.743874pt;}
.ws62{word-spacing:0.797008pt;}
.ws43{word-spacing:0.850142pt;}
.ws12{word-spacing:0.903276pt;}
.ws79{word-spacing:1.009543pt;}
.ws17{word-spacing:1.062677pt;}
.wse{word-spacing:1.115811pt;}
.ws78{word-spacing:1.168945pt;}
.wsd{word-spacing:1.222079pt;}
.ws6f{word-spacing:1.275213pt;}
.ws95{word-spacing:1.328347pt;}
.ws38{word-spacing:1.381481pt;}
.ws16{word-spacing:1.434614pt;}
.ws6e{word-spacing:1.487748pt;}
.ws87{word-spacing:1.540882pt;}
.ws7{word-spacing:1.594016pt;}
.ws89{word-spacing:1.700284pt;}
.ws32{word-spacing:1.753418pt;}
.ws64{word-spacing:1.806551pt;}
.ws21{word-spacing:1.912819pt;}
.ws2c{word-spacing:1.965953pt;}
.ws6c{word-spacing:2.019087pt;}
.wsc6{word-spacing:2.072221pt;}
.ws5c{word-spacing:2.125355pt;}
.ws58{word-spacing:2.178489pt;}
.ws4f{word-spacing:2.231622pt;}
.ws27{word-spacing:2.284756pt;}
.ws26{word-spacing:2.337890pt;}
.ws23{word-spacing:2.391024pt;}
.wsa5{word-spacing:2.444158pt;}
.ws5b{word-spacing:2.497292pt;}
.ws9e{word-spacing:2.550426pt;}
.ws33{word-spacing:2.603559pt;}
.ws65{word-spacing:2.656693pt;}
.wsb0{word-spacing:2.709827pt;}
.ws74{word-spacing:2.762961pt;}
.ws4{word-spacing:2.805475pt;}
.ws3d{word-spacing:2.816095pt;}
.ws3c{word-spacing:2.869229pt;}
.ws1e{word-spacing:2.975497pt;}
.wsa9{word-spacing:3.028630pt;}
.ws41{word-spacing:3.081764pt;}
.wsbb{word-spacing:3.134898pt;}
.ws73{word-spacing:3.188032pt;}
.ws68{word-spacing:3.241166pt;}
.wsd2{word-spacing:3.294300pt;}
.ws91{word-spacing:3.347434pt;}
.ws7a{word-spacing:3.400567pt;}
.ws7e{word-spacing:3.453701pt;}
.ws57{word-spacing:3.506835pt;}
.ws7f{word-spacing:3.559969pt;}
.ws48{word-spacing:3.613103pt;}
.ws39{word-spacing:3.666237pt;}
.ws77{word-spacing:3.719371pt;}
.ws8f{word-spacing:3.772505pt;}
.wsaa{word-spacing:3.825638pt;}
.ws6b{word-spacing:3.878772pt;}
.ws7b{word-spacing:3.931906pt;}
.ws2d{word-spacing:3.985040pt;}
.wsc1{word-spacing:4.038174pt;}
.ws2e{word-spacing:4.091308pt;}
.ws59{word-spacing:4.144442pt;}
.ws46{word-spacing:4.197575pt;}
.ws7d{word-spacing:4.250709pt;}
.ws34{word-spacing:4.303843pt;}
.ws4c{word-spacing:4.356977pt;}
.ws24{word-spacing:4.410111pt;}
.ws2b{word-spacing:4.463245pt;}
.ws5e{word-spacing:4.516379pt;}
.ws61{word-spacing:4.569513pt;}
.ws49{word-spacing:4.622646pt;}
.wsaf{word-spacing:4.675780pt;}
.wsbd{word-spacing:4.728914pt;}
.ws97{word-spacing:4.782048pt;}
.ws66{word-spacing:4.835182pt;}
.ws5a{word-spacing:4.888316pt;}
.ws70{word-spacing:4.941450pt;}
.wsb3{word-spacing:4.994583pt;}
.ws6{word-spacing:5.047717pt;}
.ws90{word-spacing:5.153985pt;}
.ws75{word-spacing:5.207119pt;}
.ws9a{word-spacing:5.260253pt;}
.ws81{word-spacing:5.313387pt;}
.ws94{word-spacing:5.366521pt;}
.wsc8{word-spacing:5.419654pt;}
.ws76{word-spacing:5.472788pt;}
.ws47{word-spacing:5.525922pt;}
.ws6a{word-spacing:5.579056pt;}
.ws8e{word-spacing:5.632190pt;}
.wsac{word-spacing:5.685324pt;}
.wsd0{word-spacing:5.738458pt;}
.ws1b{word-spacing:5.844725pt;}
.ws30{word-spacing:5.897859pt;}
.ws4d{word-spacing:5.950993pt;}
.ws98{word-spacing:6.004127pt;}
.wsb6{word-spacing:6.057261pt;}
.ws8c{word-spacing:6.110395pt;}
.ws93{word-spacing:6.216662pt;}
.ws86{word-spacing:6.269796pt;}
.wsc7{word-spacing:6.322930pt;}
.ws8{word-spacing:6.376064pt;}
.wsa3{word-spacing:6.429198pt;}
.wscd{word-spacing:6.482332pt;}
.wsbc{word-spacing:6.535466pt;}
.ws67{word-spacing:6.641733pt;}
.ws5f{word-spacing:6.694867pt;}
.ws56{word-spacing:6.748001pt;}
.wsb9{word-spacing:6.801135pt;}
.wsb8{word-spacing:6.854269pt;}
.wsae{word-spacing:6.907403pt;}
.ws44{word-spacing:6.960537pt;}
.ws35{word-spacing:7.066804pt;}
.ws13{word-spacing:7.119938pt;}
.wsa1{word-spacing:7.279340pt;}
.ws9d{word-spacing:7.332474pt;}
.ws92{word-spacing:7.385607pt;}
.wsb7{word-spacing:7.438741pt;}
.wsc9{word-spacing:7.545009pt;}
.ws72{word-spacing:7.598143pt;}
.wsc3{word-spacing:7.704411pt;}
.ws8a{word-spacing:7.810678pt;}
.wsa2{word-spacing:7.863812pt;}
.ws85{word-spacing:7.916946pt;}
.wsb5{word-spacing:7.970080pt;}
.ws2f{word-spacing:8.023214pt;}
.wsb1{word-spacing:8.129482pt;}
.wsba{word-spacing:8.235749pt;}
.ws52{word-spacing:8.288883pt;}
.wsbe{word-spacing:8.767088pt;}
.wsbf{word-spacing:8.820222pt;}
.wsab{word-spacing:8.873356pt;}
.ws71{word-spacing:9.351561pt;}
.wscc{word-spacing:9.829765pt;}
.wsd1{word-spacing:10.307970pt;}
.ws9c{word-spacing:10.520506pt;}
.ws3a{word-spacing:14.930617pt;}
.ws9b{word-spacing:24.654114pt;}
._1a{margin-left:-6.960511pt;}
._5{margin-left:-5.951008pt;}
._4{margin-left:-4.463245pt;}
._3{margin-left:-3.400585pt;}
._1{margin-left:-2.125365pt;}
._2{margin-left:-1.062683pt;}
._0{width:1.062683pt;}
._7{width:2.656704pt;}
._21{width:4.782048pt;}
._20{width:6.057277pt;}
._1e{width:8.979639pt;}
._1c{width:12.592737pt;}
._e{width:13.549147pt;}
._6{width:14.622477pt;}
._d{width:15.993283pt;}
._a{width:17.693594pt;}
._b{width:19.021935pt;}
._14{width:20.190880pt;}
._9{width:21.147279pt;}
._c{width:22.953841pt;}
._12{width:24.282197pt;}
._f{width:25.982461pt;}
._16{width:27.895269pt;}
._18{width:28.798561pt;}
._11{width:29.701821pt;}
._23{width:30.977059pt;}
._15{width:31.880331pt;}
._8{width:33.102399pt;}
._1b{width:34.802683pt;}
._17{width:36.131040pt;}
._19{width:37.937581pt;}
._13{width:38.840857pt;}
._24{width:40.009807pt;}
._1d{width:41.072495pt;}
._10{width:42.772784pt;}
._22{width:46.013923pt;}
._1f{width:67.958231pt;}
._26{width:88.213330pt;}
._32{width:120.249600pt;}
._28{width:131.547129pt;}
._2f{width:138.333774pt;}
._2a{width:142.885297pt;}
._2d{width:198.078587pt;}
._33{width:200.760734pt;}
._30{width:248.295730pt;}
._25{width:252.290471pt;}
._27{width:257.480053pt;}
._2e{width:301.266056pt;}
._31{width:316.052425pt;}
._2b{width:345.543886pt;}
._34{width:437.886930pt;}
._29{width:462.948784pt;}
._2c{width:588.284287pt;}
.fs3{font-size:31.880533pt;}
.fs6{font-size:39.318933pt;}
.fs8{font-size:40.638594pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:106.268267pt;}
.fs7{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y313{bottom:43.146667pt;}
.y312{bottom:59.088000pt;}
.y311{bottom:75.028000pt;}
.y37{bottom:85.038667pt;}
.y55{bottom:85.040000pt;}
.y284{bottom:88.897333pt;}
.y310{bottom:90.968000pt;}
.y8b{bottom:97.658667pt;}
.y283{bottom:98.361333pt;}
.y54{bottom:100.980000pt;}
.y36{bottom:101.516000pt;}
.y309{bottom:102.400000pt;}
.y30f{bottom:106.908000pt;}
.y282{bottom:110.980000pt;}
.y35{bottom:114.837333pt;}
.y53{bottom:116.920000pt;}
.y308{bottom:118.340000pt;}
.y8a{bottom:122.964000pt;}
.y234{bottom:123.838667pt;}
.y34{bottom:128.160000pt;}
.y52{bottom:132.860000pt;}
.y1a3{bottom:134.020000pt;}
.y307{bottom:134.280000pt;}
.yda{bottom:134.769333pt;}
.y122{bottom:134.873333pt;}
.y155{bottom:135.233333pt;}
.y89{bottom:138.904000pt;}
.y281{bottom:139.257333pt;}
.y233{bottom:139.778667pt;}
.y33{bottom:141.481333pt;}
.y2e7{bottom:143.294667pt;}
.y51{bottom:148.800000pt;}
.y1a2{bottom:149.960000pt;}
.yb7{bottom:150.085333pt;}
.y306{bottom:150.221333pt;}
.yd9{bottom:150.709333pt;}
.y121{bottom:150.813333pt;}
.y154{bottom:151.173333pt;}
.y1db{bottom:154.506667pt;}
.y88{bottom:154.844000pt;}
.y305{bottom:155.042667pt;}
.y280{bottom:155.197333pt;}
.y232{bottom:155.718667pt;}
.y50{bottom:164.740000pt;}
.y1a1{bottom:165.900000pt;}
.yd8{bottom:166.650667pt;}
.y120{bottom:166.753333pt;}
.y153{bottom:167.113333pt;}
.y32{bottom:168.081333pt;}
.y1da{bottom:170.446667pt;}
.y87{bottom:170.784000pt;}
.y27f{bottom:171.137333pt;}
.y230{bottom:171.658667pt;}
.y231{bottom:176.481333pt;}
.y1c8{bottom:180.680000pt;}
.yf1{bottom:180.681333pt;}
.y1a0{bottom:181.840000pt;}
.y1ed{bottom:181.966667pt;}
.y304{bottom:182.224000pt;}
.yd7{bottom:182.590667pt;}
.y11f{bottom:182.694667pt;}
.y4f{bottom:182.708000pt;}
.y24f{bottom:183.000000pt;}
.y152{bottom:183.053333pt;}
.y31{bottom:185.525333pt;}
.y1d9{bottom:186.386667pt;}
.y86{bottom:186.725333pt;}
.y27e{bottom:187.077333pt;}
.y22f{bottom:187.600000pt;}
.y2e6{bottom:188.133333pt;}
.y216{bottom:196.528000pt;}
.yf0{bottom:196.621333pt;}
.y19f{bottom:197.781333pt;}
.y303{bottom:198.164000pt;}
.yd6{bottom:198.530667pt;}
.y11e{bottom:198.634667pt;}
.y24e{bottom:198.940000pt;}
.y151{bottom:198.994667pt;}
.yb6{bottom:199.778667pt;}
.y30{bottom:201.465333pt;}
.y1d8{bottom:202.328000pt;}
.y85{bottom:202.665333pt;}
.y27d{bottom:203.018667pt;}
.y22e{bottom:203.540000pt;}
.y2e5{bottom:204.073333pt;}
.y215{bottom:212.468000pt;}
.yef{bottom:212.561333pt;}
.y19e{bottom:213.721333pt;}
.y302{bottom:214.104000pt;}
.yd5{bottom:214.470667pt;}
.y11d{bottom:214.574667pt;}
.y24d{bottom:214.880000pt;}
.y150{bottom:214.934667pt;}
.yb5{bottom:215.720000pt;}
.y2f{bottom:217.405333pt;}
.y1d7{bottom:218.268000pt;}
.y84{bottom:218.605333pt;}
.y27c{bottom:218.958667pt;}
.y2e4{bottom:220.014667pt;}
.y4e{bottom:224.122667pt;}
.y214{bottom:228.408000pt;}
.yee{bottom:228.501333pt;}
.y19d{bottom:229.661333pt;}
.y301{bottom:230.044000pt;}
.yd4{bottom:230.410667pt;}
.y11c{bottom:230.514667pt;}
.y24c{bottom:230.821333pt;}
.y14f{bottom:230.874667pt;}
.yb4{bottom:231.660000pt;}
.y2e{bottom:233.345333pt;}
.y1d6{bottom:234.208000pt;}
.y83{bottom:234.545333pt;}
.y300{bottom:234.866667pt;}
.y2e3{bottom:235.954667pt;}
.y27b{bottom:235.964000pt;}
.y22d{bottom:236.306667pt;}
.y4d{bottom:240.064000pt;}
.yed{bottom:244.441333pt;}
.y19c{bottom:245.601333pt;}
.yd3{bottom:246.350667pt;}
.y24b{bottom:246.761333pt;}
.y14e{bottom:246.814667pt;}
.yb3{bottom:247.600000pt;}
.y2d{bottom:249.285333pt;}
.y1d5{bottom:250.148000pt;}
.y82{bottom:250.485333pt;}
.y2e2{bottom:251.894667pt;}
.y27a{bottom:251.904000pt;}
.y22c{bottom:252.246667pt;}
.y4c{bottom:256.004000pt;}
.yec{bottom:260.381333pt;}
.y19b{bottom:261.541333pt;}
.y2ff{bottom:262.048000pt;}
.y24a{bottom:262.701333pt;}
.y14d{bottom:262.754667pt;}
.y213{bottom:262.852000pt;}
.yb2{bottom:263.540000pt;}
.y56{bottom:263.600000pt;}
.yd2{bottom:264.201333pt;}
.y2c{bottom:265.225333pt;}
.y1d4{bottom:266.088000pt;}
.y81{bottom:266.425333pt;}
.y178{bottom:267.382667pt;}
.y2e1{bottom:267.834667pt;}
.y279{bottom:267.844000pt;}
.y22b{bottom:268.186667pt;}
.y4b{bottom:271.944000pt;}
.yeb{bottom:276.322667pt;}
.y11b{bottom:277.226667pt;}
.y19a{bottom:277.481333pt;}
.y2fe{bottom:277.988000pt;}
.y249{bottom:278.641333pt;}
.y14c{bottom:278.694667pt;}
.y212{bottom:278.792000pt;}
.y1ec{bottom:279.480000pt;}
.yd1{bottom:280.141333pt;}
.y2b{bottom:281.166667pt;}
.y1d3{bottom:282.029333pt;}
.y80{bottom:282.366667pt;}
.y2e0{bottom:283.774667pt;}
.y278{bottom:283.784000pt;}
.y22a{bottom:284.126667pt;}
.y177{bottom:285.980000pt;}
.y1dd{bottom:287.734667pt;}
.y4a{bottom:287.884000pt;}
.yea{bottom:292.262667pt;}
.y11a{bottom:293.166667pt;}
.y199{bottom:293.422667pt;}
.y2fd{bottom:293.928000pt;}
.y248{bottom:294.581333pt;}
.y14b{bottom:294.636000pt;}
.y211{bottom:294.732000pt;}
.y1eb{bottom:295.420000pt;}
.yd0{bottom:296.081333pt;}
.y2a{bottom:297.106667pt;}
.y1d2{bottom:297.969333pt;}
.y7f{bottom:298.306667pt;}
.y2fc{bottom:298.750667pt;}
.y2df{bottom:299.714667pt;}
.y277{bottom:299.724000pt;}
.y229{bottom:300.068000pt;}
.yb1{bottom:301.556000pt;}
.y1dc{bottom:303.676000pt;}
.y49{bottom:303.824000pt;}
.ye9{bottom:308.202667pt;}
.y119{bottom:309.106667pt;}
.y198{bottom:309.362667pt;}
.y247{bottom:310.522667pt;}
.y210{bottom:310.672000pt;}
.y1ea{bottom:311.361333pt;}
.ycf{bottom:312.021333pt;}
.y14a{bottom:312.949333pt;}
.y28{bottom:313.046667pt;}
.y7e{bottom:314.246667pt;}
.y2de{bottom:315.656000pt;}
.y276{bottom:315.665333pt;}
.yb0{bottom:317.497333pt;}
.y29{bottom:317.868000pt;}
.y1d1{bottom:319.616000pt;}
.y48{bottom:319.764000pt;}
.y314{bottom:323.830667pt;}
.ye8{bottom:324.142667pt;}
.y118{bottom:325.046667pt;}
.y197{bottom:325.302667pt;}
.y2fb{bottom:325.932000pt;}
.y246{bottom:326.462667pt;}
.y20f{bottom:326.612000pt;}
.y1e9{bottom:327.301333pt;}
.yce{bottom:327.961333pt;}
.y149{bottom:328.889333pt;}
.y27{bottom:328.986667pt;}
.y7d{bottom:330.186667pt;}
.y2dd{bottom:331.596000pt;}
.y275{bottom:331.605333pt;}
.yaf{bottom:333.437333pt;}
.y1d0{bottom:335.556000pt;}
.y47{bottom:335.705333pt;}
.ye7{bottom:340.082667pt;}
.y117{bottom:340.988000pt;}
.y196{bottom:341.242667pt;}
.y2fa{bottom:341.872000pt;}
.y245{bottom:342.402667pt;}
.y29e{bottom:342.456000pt;}
.y1e8{bottom:343.241333pt;}
.y20e{bottom:343.857333pt;}
.ycd{bottom:343.901333pt;}
.y148{bottom:344.829333pt;}
.y26{bottom:344.926667pt;}
.y176{bottom:345.029333pt;}
.y7c{bottom:346.126667pt;}
.y2f9{bottom:346.693333pt;}
.y2dc{bottom:347.536000pt;}
.y274{bottom:348.610667pt;}
.yae{bottom:349.377333pt;}
.y1cf{bottom:351.496000pt;}
.y46{bottom:351.645333pt;}
.ye6{bottom:356.022667pt;}
.y116{bottom:356.928000pt;}
.y195{bottom:357.182667pt;}
.y244{bottom:358.342667pt;}
.y29d{bottom:358.396000pt;}
.y20d{bottom:359.797333pt;}
.ycc{bottom:359.842667pt;}
.y147{bottom:360.769333pt;}
.y25{bottom:360.866667pt;}
.y175{bottom:360.969333pt;}
.y7b{bottom:362.349333pt;}
.y2db{bottom:363.476000pt;}
.y273{bottom:364.550667pt;}
.yad{bottom:365.317333pt;}
.y45{bottom:367.585333pt;}
.ye5{bottom:371.964000pt;}
.y115{bottom:372.868000pt;}
.y2f8{bottom:373.874667pt;}
.y194{bottom:374.282667pt;}
.y29c{bottom:374.336000pt;}
.y20c{bottom:375.738667pt;}
.ycb{bottom:375.782667pt;}
.y146{bottom:376.709333pt;}
.y24{bottom:376.808000pt;}
.y174{bottom:376.909333pt;}
.y2da{bottom:379.416000pt;}
.y272{bottom:380.490667pt;}
.yac{bottom:381.257333pt;}
.y44{bottom:383.525333pt;}
.y1c7{bottom:383.904000pt;}
.ye4{bottom:387.904000pt;}
.y114{bottom:388.808000pt;}
.y2f7{bottom:389.814667pt;}
.y193{bottom:390.222667pt;}
.y29b{bottom:390.277333pt;}
.y20b{bottom:391.678667pt;}
.yca{bottom:391.722667pt;}
.y145{bottom:392.649333pt;}
.y22{bottom:392.748000pt;}
.y173{bottom:392.849333pt;}
.y2f6{bottom:394.637333pt;}
.y2d9{bottom:395.356000pt;}
.y1ce{bottom:396.129333pt;}
.y271{bottom:396.430667pt;}
.y7a{bottom:396.788000pt;}
.yab{bottom:397.197333pt;}
.y23{bottom:397.569333pt;}
.y43{bottom:399.465333pt;}
.y1c6{bottom:399.844000pt;}
.ye3{bottom:403.844000pt;}
.y113{bottom:404.748000pt;}
.y192{bottom:406.164000pt;}
.y29a{bottom:406.217333pt;}
.y20a{bottom:407.618667pt;}
.yc9{bottom:407.662667pt;}
.y144{bottom:408.590667pt;}
.y21{bottom:408.688000pt;}
.y172{bottom:408.789333pt;}
.y1cd{bottom:412.069333pt;}
.y270{bottom:412.370667pt;}
.y2d8{bottom:412.400000pt;}
.y79{bottom:412.728000pt;}
.yaa{bottom:413.138667pt;}
.y42{bottom:415.405333pt;}
.y1c5{bottom:415.784000pt;}
.ye2{bottom:419.784000pt;}
.y112{bottom:420.688000pt;}
.y2f5{bottom:421.818667pt;}
.y191{bottom:422.104000pt;}
.y299{bottom:422.157333pt;}
.y209{bottom:423.558667pt;}
.y143{bottom:424.530667pt;}
.y20{bottom:424.628000pt;}
.y171{bottom:424.730667pt;}
.yc8{bottom:425.512000pt;}
.y1cc{bottom:428.009333pt;}
.y26f{bottom:428.310667pt;}
.y2d7{bottom:428.340000pt;}
.y78{bottom:428.668000pt;}
.ya9{bottom:429.078667pt;}
.y41{bottom:431.346667pt;}
.y1c4{bottom:431.724000pt;}
.y1b3{bottom:435.724000pt;}
.y111{bottom:436.629333pt;}
.y2f4{bottom:437.758667pt;}
.y190{bottom:438.044000pt;}
.y298{bottom:438.097333pt;}
.y208{bottom:439.498667pt;}
.y142{bottom:440.470667pt;}
.y1f{bottom:440.568000pt;}
.y170{bottom:440.670667pt;}
.yc7{bottom:441.453333pt;}
.y1cb{bottom:443.949333pt;}
.y26e{bottom:444.252000pt;}
.y2d6{bottom:444.280000pt;}
.y77{bottom:444.608000pt;}
.ya8{bottom:445.018667pt;}
.ye1{bottom:445.354667pt;}
.y1c3{bottom:447.665333pt;}
.y40{bottom:449.313333pt;}
.y1b2{bottom:452.324000pt;}
.y110{bottom:452.569333pt;}
.y2f3{bottom:453.698667pt;}
.y18f{bottom:453.984000pt;}
.y297{bottom:454.037333pt;}
.y207{bottom:455.440000pt;}
.y141{bottom:456.410667pt;}
.y1e{bottom:456.508000pt;}
.y16f{bottom:456.610667pt;}
.yc6{bottom:457.393333pt;}
.y1ca{bottom:459.889333pt;}
.y26d{bottom:460.192000pt;}
.y2d5{bottom:460.220000pt;}
.y76{bottom:460.548000pt;}
.ya7{bottom:460.958667pt;}
.y2b9{bottom:461.665333pt;}
.y1c2{bottom:463.605333pt;}
.y3f{bottom:465.253333pt;}
.y1b1{bottom:468.264000pt;}
.y10f{bottom:468.509333pt;}
.y2f2{bottom:469.638667pt;}
.y18e{bottom:469.924000pt;}
.y296{bottom:469.977333pt;}
.y206{bottom:471.380000pt;}
.ye0{bottom:471.424000pt;}
.y140{bottom:472.350667pt;}
.y1d{bottom:472.449333pt;}
.y16e{bottom:472.550667pt;}
.yc5{bottom:473.333333pt;}
.y1c9{bottom:475.830667pt;}
.y26c{bottom:476.132000pt;}
.y2d4{bottom:476.161333pt;}
.y75{bottom:476.488000pt;}
.ya6{bottom:476.898667pt;}
.y1c1{bottom:479.545333pt;}
.y3e{bottom:481.193333pt;}
.y1b0{bottom:484.205333pt;}
.y10e{bottom:484.449333pt;}
.y2f1{bottom:485.578667pt;}
.y18d{bottom:485.864000pt;}
.y295{bottom:485.918667pt;}
.y205{bottom:487.320000pt;}
.ydf{bottom:487.364000pt;}
.y13f{bottom:488.290667pt;}
.y1c{bottom:488.389333pt;}
.y16d{bottom:488.490667pt;}
.yc4{bottom:489.273333pt;}
.y26b{bottom:492.072000pt;}
.y2d3{bottom:492.101333pt;}
.y74{bottom:492.429333pt;}
.ya5{bottom:492.838667pt;}
.y1c0{bottom:495.485333pt;}
.y3d{bottom:497.133333pt;}
.y1af{bottom:500.145333pt;}
.y10d{bottom:500.389333pt;}
.y2f0{bottom:501.520000pt;}
.y18c{bottom:501.805333pt;}
.y294{bottom:501.858667pt;}
.y204{bottom:503.260000pt;}
.y13e{bottom:504.232000pt;}
.y1b{bottom:504.329333pt;}
.y16c{bottom:504.430667pt;}
.yc3{bottom:505.213333pt;}
.y2ef{bottom:506.341333pt;}
.y26a{bottom:508.012000pt;}
.y2d2{bottom:508.041333pt;}
.y73{bottom:508.369333pt;}
.ya4{bottom:508.780000pt;}
.y1bf{bottom:511.425333pt;}
.y3c{bottom:513.074667pt;}
.yde{bottom:513.433333pt;}
.y1ae{bottom:516.085333pt;}
.y10c{bottom:516.329333pt;}
.y18b{bottom:517.745333pt;}
.y293{bottom:517.798667pt;}
.y203{bottom:519.200000pt;}
.y2b8{bottom:520.058667pt;}
.y13d{bottom:520.172000pt;}
.y19{bottom:520.269333pt;}
.y16b{bottom:520.372000pt;}
.yc2{bottom:521.154667pt;}
.y269{bottom:523.953333pt;}
.y2d1{bottom:523.981333pt;}
.y72{bottom:524.309333pt;}
.ya3{bottom:524.720000pt;}
.y1a{bottom:525.090667pt;}
.y1be{bottom:527.365333pt;}
.y3b{bottom:529.014667pt;}
.ydd{bottom:529.373333pt;}
.y1ad{bottom:532.025333pt;}
.y2ee{bottom:533.522667pt;}
.y18a{bottom:533.685333pt;}
.y202{bottom:535.140000pt;}
.y2b7{bottom:535.998667pt;}
.y292{bottom:536.112000pt;}
.y18{bottom:536.209333pt;}
.y16a{bottom:536.312000pt;}
.yc1{bottom:537.094667pt;}
.y10b{bottom:537.750667pt;}
.y13c{bottom:538.485333pt;}
.y268{bottom:539.893333pt;}
.y2d0{bottom:539.921333pt;}
.y71{bottom:540.249333pt;}
.ya2{bottom:540.660000pt;}
.y3a{bottom:544.954667pt;}
.y1ac{bottom:547.965333pt;}
.y2ed{bottom:549.462667pt;}
.y189{bottom:549.625333pt;}
.y243{bottom:550.785333pt;}
.y2b6{bottom:551.938667pt;}
.y291{bottom:552.052000pt;}
.y17{bottom:552.149333pt;}
.y201{bottom:552.385333pt;}
.yc0{bottom:553.034667pt;}
.y10a{bottom:553.690667pt;}
.y13b{bottom:554.425333pt;}
.ydc{bottom:554.944000pt;}
.y267{bottom:555.833333pt;}
.y2cf{bottom:555.861333pt;}
.y1e7{bottom:556.600000pt;}
.ya1{bottom:557.885333pt;}
.y39{bottom:560.894667pt;}
.y1ab{bottom:563.905333pt;}
.y2ec{bottom:565.402667pt;}
.y188{bottom:565.565333pt;}
.y70{bottom:565.804000pt;}
.y242{bottom:566.725333pt;}
.y2b5{bottom:567.880000pt;}
.y290{bottom:567.992000pt;}
.ybf{bottom:568.974667pt;}
.y109{bottom:569.630667pt;}
.y13a{bottom:570.365333pt;}
.ydb{bottom:570.884000pt;}
.y1bd{bottom:571.241333pt;}
.y1e6{bottom:572.540000pt;}
.y266{bottom:572.838667pt;}
.y2ce{bottom:572.905333pt;}
.ya0{bottom:573.826667pt;}
.y169{bottom:574.094667pt;}
.y16{bottom:574.505333pt;}
.y228{bottom:576.330667pt;}
.y38{bottom:576.834667pt;}
.y1aa{bottom:580.506667pt;}
.y2eb{bottom:581.344000pt;}
.y187{bottom:581.505333pt;}
.y241{bottom:582.665333pt;}
.y2b4{bottom:583.820000pt;}
.y28f{bottom:583.932000pt;}
.y108{bottom:585.572000pt;}
.y2ea{bottom:586.165333pt;}
.y139{bottom:586.305333pt;}
.ybe{bottom:586.824000pt;}
.y1bc{bottom:587.181333pt;}
.y1e5{bottom:588.480000pt;}
.y2cd{bottom:588.845333pt;}
.y9f{bottom:589.766667pt;}
.y168{bottom:590.036000pt;}
.y186{bottom:597.446667pt;}
.y240{bottom:598.605333pt;}
.y200{bottom:599.513333pt;}
.y2b3{bottom:599.760000pt;}
.y28e{bottom:599.873333pt;}
.y107{bottom:601.512000pt;}
.y138{bottom:602.245333pt;}
.ybd{bottom:602.764000pt;}
.y1bb{bottom:603.122667pt;}
.y1e4{bottom:604.421333pt;}
.y2cc{bottom:604.785333pt;}
.y9e{bottom:605.706667pt;}
.y167{bottom:605.976000pt;}
.y6f{bottom:606.709333pt;}
.y2e9{bottom:606.849333pt;}
.y185{bottom:613.386667pt;}
.y23f{bottom:614.546667pt;}
.y1ff{bottom:615.453333pt;}
.y28d{bottom:615.813333pt;}
.y106{bottom:617.452000pt;}
.y227{bottom:618.018667pt;}
.y137{bottom:618.186667pt;}
.ybc{bottom:618.705333pt;}
.y1ba{bottom:619.062667pt;}
.y1e3{bottom:620.361333pt;}
.y2cb{bottom:620.726667pt;}
.y9d{bottom:621.646667pt;}
.y166{bottom:621.916000pt;}
.y6e{bottom:622.650667pt;}
.y184{bottom:629.326667pt;}
.y23e{bottom:630.486667pt;}
.y1fe{bottom:631.393333pt;}
.y265{bottom:631.435863pt;}
.y28c{bottom:631.753333pt;}
.y105{bottom:633.392000pt;}
.y1a9{bottom:633.682667pt;}
.y226{bottom:633.958667pt;}
.y136{bottom:634.126667pt;}
.ybb{bottom:634.645333pt;}
.y1b9{bottom:635.002667pt;}
.y1e2{bottom:636.301333pt;}
.y2ca{bottom:636.666667pt;}
.y2b2{bottom:637.038667pt;}
.y9c{bottom:637.586667pt;}
.y165{bottom:637.856000pt;}
.y6d{bottom:638.590667pt;}
.y15{bottom:640.264000pt;}
.y264{bottom:643.853287pt;}
.y183{bottom:645.266667pt;}
.y23d{bottom:646.426667pt;}
.y1fd{bottom:647.333333pt;}
.y28b{bottom:647.693333pt;}
.y104{bottom:649.332000pt;}
.y1a8{bottom:649.622667pt;}
.y225{bottom:649.900000pt;}
.y135{bottom:650.066667pt;}
.yba{bottom:650.585333pt;}
.y1e1{bottom:652.241333pt;}
.y2c9{bottom:652.606667pt;}
.y2b1{bottom:652.978667pt;}
.y9b{bottom:653.526667pt;}
.y164{bottom:653.796000pt;}
.y6c{bottom:654.530667pt;}
.y2e8{bottom:654.813333pt;}
.y14{bottom:656.204000pt;}
.y263{bottom:656.270711pt;}
.y182{bottom:662.366667pt;}
.y1fc{bottom:663.273333pt;}
.y103{bottom:665.272000pt;}
.y1a7{bottom:665.562667pt;}
.y224{bottom:665.840000pt;}
.y134{bottom:666.006667pt;}
.yb9{bottom:666.525333pt;}
.y2c8{bottom:668.546667pt;}
.y262{bottom:668.688134pt;}
.y2b0{bottom:668.918667pt;}
.y9a{bottom:669.468000pt;}
.y163{bottom:669.736000pt;}
.y6b{bottom:670.470667pt;}
.y1b8{bottom:670.753333pt;}
.y13{bottom:672.144000pt;}
.y181{bottom:678.306667pt;}
.y1fb{bottom:679.213333pt;}
.y261{bottom:681.105558pt;}
.y102{bottom:681.213333pt;}
.y1a6{bottom:681.504000pt;}
.y223{bottom:681.780000pt;}
.y133{bottom:681.946667pt;}
.y2af{bottom:684.860000pt;}
.y99{bottom:685.408000pt;}
.y2c7{bottom:685.590667pt;}
.y162{bottom:685.677333pt;}
.y69{bottom:686.410667pt;}
.y1b7{bottom:686.693333pt;}
.y12{bottom:688.084000pt;}
.y6a{bottom:691.233333pt;}
.y260{bottom:693.522982pt;}
.y180{bottom:694.246667pt;}
.y1fa{bottom:695.154667pt;}
.y101{bottom:697.153333pt;}
.y1a5{bottom:697.444000pt;}
.y222{bottom:697.720000pt;}
.y132{bottom:697.886667pt;}
.y2ae{bottom:700.800000pt;}
.y98{bottom:701.348000pt;}
.y2c6{bottom:701.530667pt;}
.y161{bottom:701.617333pt;}
.y68{bottom:702.350667pt;}
.y1b6{bottom:702.633333pt;}
.y11{bottom:704.025333pt;}
.y25f{bottom:706.391371pt;}
.y17f{bottom:710.188000pt;}
.yb8{bottom:711.158667pt;}
.y100{bottom:713.093333pt;}
.y1a4{bottom:713.384000pt;}
.y221{bottom:713.660000pt;}
.y131{bottom:713.828000pt;}
.y2ad{bottom:716.740000pt;}
.y97{bottom:717.288000pt;}
.y2c5{bottom:717.470667pt;}
.y160{bottom:717.557333pt;}
.y67{bottom:718.292000pt;}
.y1b5{bottom:718.573333pt;}
.y10{bottom:719.965333pt;}
.y17e{bottom:726.128000pt;}
.yff{bottom:729.033333pt;}
.y220{bottom:729.600000pt;}
.y130{bottom:729.768000pt;}
.y25e{bottom:731.678318pt;}
.y2ac{bottom:732.680000pt;}
.y1f9{bottom:733.209333pt;}
.y96{bottom:733.228000pt;}
.y2c4{bottom:733.410667pt;}
.y15f{bottom:733.497333pt;}
.y66{bottom:734.232000pt;}
.y1b4{bottom:734.513333pt;}
.yf{bottom:735.905333pt;}
.y17d{bottom:743.228000pt;}
.y25d{bottom:744.094608pt;}
.yfe{bottom:744.973333pt;}
.y12f{bottom:745.708000pt;}
.y2ab{bottom:748.620000pt;}
.y1f8{bottom:749.149333pt;}
.y95{bottom:749.168000pt;}
.y2c3{bottom:749.350667pt;}
.y65{bottom:750.172000pt;}
.y15e{bottom:750.454667pt;}
.ye{bottom:751.845333pt;}
.y25c{bottom:756.512032pt;}
.y21f{bottom:760.717333pt;}
.yfd{bottom:760.913333pt;}
.y12e{bottom:761.648000pt;}
.y2aa{bottom:764.560000pt;}
.y1f7{bottom:765.089333pt;}
.y94{bottom:765.109333pt;}
.y2c2{bottom:765.290667pt;}
.y64{bottom:766.112000pt;}
.y15d{bottom:766.394667pt;}
.yd{bottom:767.785333pt;}
.y25b{bottom:768.929456pt;}
.y21e{bottom:776.657333pt;}
.yfc{bottom:776.854667pt;}
.y28a{bottom:777.588000pt;}
.y12d{bottom:779.961333pt;}
.y2a9{bottom:780.501333pt;}
.y1f6{bottom:781.029333pt;}
.y93{bottom:781.049333pt;}
.y17c{bottom:781.174667pt;}
.y2c1{bottom:781.232000pt;}
.y25a{bottom:781.798978pt;}
.y63{bottom:782.052000pt;}
.y15c{bottom:782.334667pt;}
.yc{bottom:783.725333pt;}
.y21d{bottom:792.597333pt;}
.yfb{bottom:792.794667pt;}
.y289{bottom:793.528000pt;}
.y12c{bottom:795.901333pt;}
.y2a8{bottom:796.441333pt;}
.y1f5{bottom:796.969333pt;}
.y92{bottom:796.989333pt;}
.y17b{bottom:797.114667pt;}
.y2c0{bottom:797.172000pt;}
.y62{bottom:797.992000pt;}
.y15b{bottom:798.274667pt;}
.yb{bottom:799.666667pt;}
.y259{bottom:799.709333pt;}
.y21c{bottom:808.537333pt;}
.yfa{bottom:808.734667pt;}
.y288{bottom:809.469333pt;}
.y12b{bottom:811.841333pt;}
.y2a7{bottom:812.381333pt;}
.y1f4{bottom:812.910667pt;}
.y91{bottom:812.929333pt;}
.y23c{bottom:813.054667pt;}
.y17a{bottom:813.056000pt;}
.y2bf{bottom:813.112000pt;}
.y61{bottom:813.933333pt;}
.y15a{bottom:814.214667pt;}
.ya{bottom:815.606667pt;}
.yf9{bottom:824.674667pt;}
.y287{bottom:825.409333pt;}
.y12a{bottom:827.782667pt;}
.y2a6{bottom:828.321333pt;}
.y1f3{bottom:828.850667pt;}
.y90{bottom:828.869333pt;}
.y23b{bottom:828.996000pt;}
.y2be{bottom:829.052000pt;}
.y258{bottom:829.090667pt;}
.y60{bottom:829.873333pt;}
.y159{bottom:830.154667pt;}
.y9{bottom:831.546667pt;}
.y21b{bottom:836.997333pt;}
.yf8{bottom:840.614667pt;}
.y286{bottom:841.349333pt;}
.y129{bottom:843.722667pt;}
.y1f2{bottom:844.790667pt;}
.y8f{bottom:844.809333pt;}
.y23a{bottom:844.936000pt;}
.y2bd{bottom:844.992000pt;}
.y257{bottom:845.030667pt;}
.y2a5{bottom:845.178667pt;}
.y5f{bottom:845.813333pt;}
.y158{bottom:846.096000pt;}
.y8{bottom:847.486667pt;}
.y21a{bottom:852.937333pt;}
.yf7{bottom:856.554667pt;}
.y285{bottom:857.289333pt;}
.y128{bottom:859.662667pt;}
.y1f1{bottom:860.730667pt;}
.y8e{bottom:860.750667pt;}
.y239{bottom:860.876000pt;}
.y2bc{bottom:860.932000pt;}
.y256{bottom:860.970667pt;}
.y2a4{bottom:861.118667pt;}
.y5e{bottom:861.753333pt;}
.y157{bottom:862.036000pt;}
.y219{bottom:868.877333pt;}
.yf6{bottom:872.496000pt;}
.y127{bottom:875.602667pt;}
.y1f0{bottom:876.670667pt;}
.y8d{bottom:876.690667pt;}
.y238{bottom:876.816000pt;}
.y2bb{bottom:876.873333pt;}
.y254{bottom:876.910667pt;}
.y2a3{bottom:877.058667pt;}
.y5d{bottom:877.693333pt;}
.y156{bottom:877.976000pt;}
.y255{bottom:881.733333pt;}
.y30e{bottom:882.597333pt;}
.y7{bottom:887.892000pt;}
.yf5{bottom:888.436000pt;}
.y126{bottom:891.542667pt;}
.y1ef{bottom:892.610667pt;}
.y8c{bottom:892.630667pt;}
.y237{bottom:892.756000pt;}
.y2ba{bottom:892.813333pt;}
.y253{bottom:892.850667pt;}
.y2a2{bottom:892.998667pt;}
.y5c{bottom:893.916000pt;}
.y218{bottom:897.337333pt;}
.y30d{bottom:898.537333pt;}
.y6{bottom:901.840000pt;}
.yf4{bottom:904.376000pt;}
.y125{bottom:907.482667pt;}
.y1ee{bottom:908.552000pt;}
.y1e0{bottom:908.570667pt;}
.y236{bottom:908.697333pt;}
.y252{bottom:908.792000pt;}
.y2a1{bottom:908.940000pt;}
.y5b{bottom:909.856000pt;}
.y217{bottom:913.277333pt;}
.y30c{bottom:914.478667pt;}
.y5{bottom:915.788000pt;}
.yf3{bottom:920.316000pt;}
.y124{bottom:923.424000pt;}
.y1df{bottom:924.510667pt;}
.y235{bottom:924.637333pt;}
.y251{bottom:924.732000pt;}
.y2a0{bottom:924.880000pt;}
.y5a{bottom:925.796000pt;}
.y179{bottom:925.797333pt;}
.y30b{bottom:930.418667pt;}
.y3{bottom:931.654667pt;}
.yf2{bottom:936.256000pt;}
.y4{bottom:937.441333pt;}
.y123{bottom:939.364000pt;}
.y1de{bottom:940.450667pt;}
.y250{bottom:940.672000pt;}
.y29f{bottom:940.820000pt;}
.y59{bottom:941.737333pt;}
.y30a{bottom:955.689333pt;}
.y58{bottom:957.677333pt;}
.y2{bottom:966.192000pt;}
.y1{bottom:999.401333pt;}
.y57{bottom:1008.553333pt;}
.h5{height:21.551241pt;}
.h4{height:23.623475pt;}
.hb{height:25.663658pt;}
.h9{height:28.394810pt;}
.h7{height:29.135330pt;}
.hd{height:30.113198pt;}
.hc{height:31.497835pt;}
.h3{height:35.435213pt;}
.h6{height:39.372195pt;}
.he{height:40.166862pt;}
.h2{height:47.246950pt;}
.h8{height:48.420663pt;}
.h1{height:78.744786pt;}
.ha{height:104.687500pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:42.666667pt;}
.x1{left:75.590667pt;}
.x1f{left:79.617333pt;}
.x8{left:84.078667pt;}
.x42{left:85.187854pt;}
.x2f{left:88.818667pt;}
.x13{left:89.884000pt;}
.x22{left:94.220000pt;}
.x17{left:95.516000pt;}
.x14{left:97.269333pt;}
.x3c{left:107.470667pt;}
.x3d{left:108.800000pt;}
.x2d{left:112.484000pt;}
.x26{left:113.968000pt;}
.x30{left:117.773333pt;}
.x9{left:119.526667pt;}
.x2e{left:122.805333pt;}
.x1b{left:124.236000pt;}
.x45{left:139.032000pt;}
.x2b{left:153.733333pt;}
.x2c{left:164.054667pt;}
.x40{left:187.126667pt;}
.x41{left:193.256000pt;}
.x31{left:196.453333pt;}
.x2{left:199.704000pt;}
.xb{left:204.784000pt;}
.x44{left:206.657333pt;}
.x32{left:207.632000pt;}
.xc{left:212.169333pt;}
.x3{left:216.316000pt;}
.x33{left:217.953333pt;}
.xd{left:219.057333pt;}
.x1c{left:223.868000pt;}
.xe{left:226.442667pt;}
.x36{left:229.724000pt;}
.x37{left:240.045333pt;}
.x38{left:264.773333pt;}
.x15{left:274.192000pt;}
.x39{left:275.094667pt;}
.xf{left:279.293333pt;}
.x16{left:281.578667pt;}
.x10{left:285.422667pt;}
.x11{left:294.777333pt;}
.x20{left:301.789333pt;}
.x12{left:304.604000pt;}
.x28{left:308.101333pt;}
.x21{left:312.110667pt;}
.x29{left:318.421333pt;}
.x4{left:326.600000pt;}
.x3e{left:333.498667pt;}
.x5{left:347.642667pt;}
.x27{left:358.548000pt;}
.x1d{left:362.668000pt;}
.x1e{left:373.366667pt;}
.xa{left:391.752000pt;}
.x3f{left:417.065333pt;}
.x18{left:418.393333pt;}
.x23{left:431.622667pt;}
.x2a{left:433.882667pt;}
.x19{left:438.318667pt;}
.x3a{left:440.312000pt;}
.x6{left:444.182667pt;}
.x34{left:445.988000pt;}
.x3b{left:450.274667pt;}
.x7{left:451.493333pt;}
.x35{left:456.309333pt;}
.x43{left:508.978667pt;}
.x24{left:518.972000pt;}
.x25{left:529.293333pt;}
.x46{left:597.432000pt;}
.x47{left:678.922667pt;}
}




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