
    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_bef6e095060496c2f03a19f0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9eda862a4f5ba8a822c77cbf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d97f1aea854aba26a4738184.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_3a18e8860f424c21af8557cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_065a29336f3bfedae836eae9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_6bb485f959ca2eeff730f3b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_c819fa1da880e1b13e8020be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.803000;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_67d579b8d0aad7b6bfda6794.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.726000;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;}
.mf{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);}
.m12{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);}
.m1b{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);}
.m1e{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);}
.m1d{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);}
.m13{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);}
.mb{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);}
.m6{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m1{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);}
.m17{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);}
.m1f{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);}
.m21{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);}
.me{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);}
.m9{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);}
.m22{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);}
.m1a{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);}
.m15{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);}
.m26{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);}
.m16{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);}
.m7{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);}
.m8{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);}
.m28{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);}
.m19{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);}
.m25{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);}
.m24{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);}
.m14{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);}
.ma{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);}
.m3{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);}
.m2{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);}
.m20{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);}
.mc{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);}
.m29{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);}
.m11{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;}
.v8{vertical-align:-10.488000px;}
.v4{vertical-align:-8.400000px;}
.v7{vertical-align:-6.318000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.192000px;}
.v3{vertical-align:16.530000px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:23.910000px;}
.lsb{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000088px;}
.ls49{letter-spacing:0.000179px;}
.ls32{letter-spacing:0.000435px;}
.ls48{letter-spacing:0.000453px;}
.ls14{letter-spacing:0.000716px;}
.ls3c{letter-spacing:0.000800px;}
.ls44{letter-spacing:0.001036px;}
.ls3d{letter-spacing:0.001155px;}
.ls34{letter-spacing:0.001283px;}
.ls2d{letter-spacing:0.001291px;}
.ls3e{letter-spacing:0.001357px;}
.ls36{letter-spacing:0.001367px;}
.ls1d{letter-spacing:0.001465px;}
.ls1b{letter-spacing:0.001735px;}
.ls45{letter-spacing:0.001746px;}
.ls7{letter-spacing:0.001933px;}
.ls8{letter-spacing:0.001952px;}
.ls43{letter-spacing:0.002045px;}
.ls40{letter-spacing:0.002074px;}
.ls31{letter-spacing:0.002181px;}
.ls1c{letter-spacing:0.002475px;}
.ls42{letter-spacing:0.002544px;}
.ls5{letter-spacing:0.002725px;}
.ls30{letter-spacing:0.002782px;}
.ls4b{letter-spacing:0.003490px;}
.lsd{letter-spacing:0.004200px;}
.ls19{letter-spacing:0.004390px;}
.ls41{letter-spacing:0.004800px;}
.ls10{letter-spacing:0.004852px;}
.ls2f{letter-spacing:0.005023px;}
.ls4{letter-spacing:0.005108px;}
.ls1f{letter-spacing:0.503764px;}
.ls51{letter-spacing:2.988600px;}
.ls2c{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls0{letter-spacing:10.461300px;}
.ls1a{letter-spacing:10.785618px;}
.ls21{letter-spacing:10.961764px;}
.ls20{letter-spacing:10.986600px;}
.ls2e{letter-spacing:11.724278px;}
.ls24{letter-spacing:11.910666px;}
.ls25{letter-spacing:11.916642px;}
.ls2a{letter-spacing:11.951700px;}
.lsa{letter-spacing:11.954850px;}
.ls15{letter-spacing:11.957700px;}
.ls39{letter-spacing:12.227951px;}
.ls4f{letter-spacing:12.301420px;}
.ls23{letter-spacing:12.329227px;}
.ls46{letter-spacing:13.344839px;}
.ls50{letter-spacing:13.386872px;}
.ls47{letter-spacing:13.446318px;}
.lse{letter-spacing:13.446566px;}
.ls22{letter-spacing:13.448100px;}
.ls38{letter-spacing:13.448400px;}
.lsf{letter-spacing:13.452566px;}
.ls3a{letter-spacing:13.454400px;}
.ls4d{letter-spacing:13.611129px;}
.ls3f{letter-spacing:13.702530px;}
.lsc{letter-spacing:14.677692px;}
.ls35{letter-spacing:14.732753px;}
.ls26{letter-spacing:14.764573px;}
.ls13{letter-spacing:14.941200px;}
.ls1e{letter-spacing:14.943900px;}
.ls3{letter-spacing:14.944200px;}
.ls17{letter-spacing:14.947200px;}
.ls4a{letter-spacing:15.162165px;}
.ls37{letter-spacing:15.170068px;}
.ls11{letter-spacing:15.242778px;}
.ls12{letter-spacing:15.388200px;}
.ls29{letter-spacing:15.394200px;}
.ls27{letter-spacing:15.859259px;}
.ls3b{letter-spacing:16.356282px;}
.ls52{letter-spacing:16.676400px;}
.ls4e{letter-spacing:17.609224px;}
.ls33{letter-spacing:22.765141px;}
.ls1{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.ls16{letter-spacing:206.855700px;}
.ls2b{letter-spacing:509.647200px;}
.ls28{letter-spacing:540.733200px;}
.ls18{letter-spacing:855.247200px;}
.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;}
}
.ws51{word-spacing:-14.943900px;}
.wse8{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws14{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.wsb7{word-spacing:-4.602721px;}
.wsdc{word-spacing:-3.287658px;}
.wse0{word-spacing:-2.988780px;}
.ws76{word-spacing:-2.809453px;}
.wsc0{word-spacing:-2.630126px;}
.wscd{word-spacing:-2.510575px;}
.wsd1{word-spacing:-2.450800px;}
.ws3a{word-spacing:-2.391024px;}
.wsc5{word-spacing:-2.331248px;}
.wsb6{word-spacing:-2.271473px;}
.ws143{word-spacing:-2.259533px;}
.ws123{word-spacing:-2.205734px;}
.wsd2{word-spacing:-2.151922px;}
.wsd6{word-spacing:-2.092146px;}
.ws11c{word-spacing:-2.044339px;}
.wsd5{word-spacing:-1.972595px;}
.ws100{word-spacing:-1.882944px;}
.wsf2{word-spacing:-1.667750px;}
.wsf7{word-spacing:-1.613952px;}
.ws13c{word-spacing:-1.506355px;}
.wsf3{word-spacing:-1.452557px;}
.wsd0{word-spacing:-1.434614px;}
.ws7d{word-spacing:-1.386797px;}
.ws2d{word-spacing:-1.315063px;}
.wse1{word-spacing:-1.255288px;}
.wsf8{word-spacing:-1.237363px;}
.ws82{word-spacing:-1.195515px;}
.ws37{word-spacing:-1.195512px;}
.ws5{word-spacing:-1.171598px;}
.ws81{word-spacing:-1.171585px;}
.wsb8{word-spacing:-1.135736px;}
.ws13e{word-spacing:-1.129766px;}
.ws7{word-spacing:-1.046070px;}
.wsbd{word-spacing:-1.016185px;}
.wsd8{word-spacing:-0.956410px;}
.wse2{word-spacing:-0.896634px;}
.wse3{word-spacing:-0.777083px;}
.wsc6{word-spacing:-0.717307px;}
.wsbb{word-spacing:-0.657532px;}
.ws124{word-spacing:-0.591782px;}
.wsd3{word-spacing:-0.478205px;}
.ws53{word-spacing:-0.418429px;}
.ws38{word-spacing:-0.358654px;}
.wsfc{word-spacing:-0.322790px;}
.ws24{word-spacing:-0.298878px;}
.ws18{word-spacing:-0.268992px;}
.ws22{word-spacing:-0.239102px;}
.ws19{word-spacing:-0.215194px;}
.wsad{word-spacing:-0.191282px;}
.ws34{word-spacing:-0.179327px;}
.ws1f{word-spacing:-0.161395px;}
.wsa8{word-spacing:-0.143462px;}
.ws2a{word-spacing:-0.119551px;}
.ws1e{word-spacing:-0.107597px;}
.ws9d{word-spacing:-0.101623px;}
.ws9f{word-spacing:-0.095641px;}
.ws92{word-spacing:-0.083686px;}
.wsa0{word-spacing:-0.082904px;}
.ws9e{word-spacing:-0.076962px;}
.ws11{word-spacing:-0.059776px;}
.ws20{word-spacing:-0.053798px;}
.ws15{word-spacing:-0.047821px;}
.ws11b{word-spacing:-0.028224px;}
.ws10d{word-spacing:-0.027235px;}
.ws117{word-spacing:-0.026227px;}
.ws129{word-spacing:-0.024874px;}
.ws63{word-spacing:-0.024413px;}
.ws65{word-spacing:-0.023357px;}
.ws67{word-spacing:-0.022829px;}
.ws10e{word-spacing:-0.022742px;}
.ws12c{word-spacing:-0.010301px;}
.ws66{word-spacing:-0.009178px;}
.ws133{word-spacing:-0.005741px;}
.ws7e{word-spacing:-0.005177px;}
.ws12{word-spacing:-0.005117px;}
.ws13{word-spacing:-0.005092px;}
.wsf6{word-spacing:-0.005011px;}
.ws10b{word-spacing:-0.003994px;}
.ws62{word-spacing:-0.003437px;}
.ws7f{word-spacing:-0.003354px;}
.ws68{word-spacing:-0.003178px;}
.wsa9{word-spacing:-0.002671px;}
.ws6a{word-spacing:-0.002150px;}
.ws3{word-spacing:-0.001952px;}
.ws7c{word-spacing:-0.001083px;}
.ws6b{word-spacing:-0.001037px;}
.wsf{word-spacing:-0.000774px;}
.ws1{word-spacing:0.000000px;}
.ws64{word-spacing:0.000288px;}
.ws69{word-spacing:0.000931px;}
.ws30{word-spacing:0.001390px;}
.ws96{word-spacing:0.047821px;}
.ws10c{word-spacing:0.053798px;}
.ws35{word-spacing:0.059776px;}
.ws6c{word-spacing:0.095641px;}
.wsa2{word-spacing:0.096008px;}
.wsa1{word-spacing:0.096207px;}
.wsa3{word-spacing:0.099161px;}
.ws1b{word-spacing:0.107597px;}
.ws25{word-spacing:0.119551px;}
.ws87{word-spacing:0.143462px;}
.ws17{word-spacing:0.161395px;}
.ws9c{word-spacing:0.169383px;}
.ws32{word-spacing:0.179327px;}
.ws86{word-spacing:0.191282px;}
.ws1d{word-spacing:0.215194px;}
.ws23{word-spacing:0.239102px;}
.ws109{word-spacing:0.268992px;}
.ws2c{word-spacing:0.298878px;}
.wsf5{word-spacing:0.322790px;}
.ws2e{word-spacing:0.358654px;}
.ws13b{word-spacing:0.376589px;}
.ws97{word-spacing:0.382565px;}
.ws4b{word-spacing:0.418429px;}
.ws55{word-spacing:0.478205px;}
.ws93{word-spacing:0.524554px;}
.ws8b{word-spacing:0.537980px;}
.wsb1{word-spacing:0.621668px;}
.ws46{word-spacing:0.657532px;}
.ws98{word-spacing:0.669488px;}
.ws10f{word-spacing:0.699379px;}
.ws26{word-spacing:0.717307px;}
.ws103{word-spacing:0.753178px;}
.wsc3{word-spacing:0.777083px;}
.ws115{word-spacing:0.806976px;}
.wsdf{word-spacing:0.836858px;}
.wsfd{word-spacing:0.860774px;}
.wsa7{word-spacing:0.896634px;}
.ws110{word-spacing:0.914573px;}
.wsc8{word-spacing:0.956410px;}
.ws1c{word-spacing:0.968371px;}
.ws6{word-spacing:1.004227px;}
.ws99{word-spacing:1.004233px;}
.ws8e{word-spacing:1.016185px;}
.wseb{word-spacing:1.022170px;}
.ws3c{word-spacing:1.075961px;}
.ws1a{word-spacing:1.075968px;}
.ws8d{word-spacing:1.135736px;}
.ws106{word-spacing:1.183565px;}
.ws107{word-spacing:1.237363px;}
.ws72{word-spacing:1.255288px;}
.wsea{word-spacing:1.291162px;}
.ws42{word-spacing:1.315063px;}
.ws114{word-spacing:1.344960px;}
.ws45{word-spacing:1.374839px;}
.ws28{word-spacing:1.434614px;}
.wsf9{word-spacing:1.506355px;}
.ws50{word-spacing:1.554166px;}
.ws105{word-spacing:1.560154px;}
.ws79{word-spacing:1.613941px;}
.ws108{word-spacing:1.613952px;}
.ws3e{word-spacing:1.673717px;}
.ws9a{word-spacing:1.673721px;}
.ws9b{word-spacing:1.688418px;}
.ws135{word-spacing:1.721549px;}
.wscc{word-spacing:1.733492px;}
.ws4e{word-spacing:1.793268px;}
.ws7a{word-spacing:1.853044px;}
.ws126{word-spacing:1.882944px;}
.wsdd{word-spacing:1.912819px;}
.wsb2{word-spacing:1.912824px;}
.wsfa{word-spacing:1.936742px;}
.wsda{word-spacing:1.972595px;}
.ws95{word-spacing:2.008465px;}
.ws3d{word-spacing:2.032370px;}
.wsdb{word-spacing:2.151922px;}
.wsf1{word-spacing:2.205734px;}
.ws101{word-spacing:2.259533px;}
.ws33{word-spacing:2.271473px;}
.ws12d{word-spacing:2.313331px;}
.ws73{word-spacing:2.331248px;}
.wsf4{word-spacing:2.367130px;}
.wsd7{word-spacing:2.391024px;}
.ws125{word-spacing:2.420928px;}
.ws6d{word-spacing:2.450800px;}
.ws138{word-spacing:2.474726px;}
.ws2{word-spacing:2.510341px;}
.ws91{word-spacing:2.510568px;}
.ws0{word-spacing:2.511541px;}
.ws132{word-spacing:2.528525px;}
.ws29{word-spacing:2.570351px;}
.wsb0{word-spacing:2.630133px;}
.ws57{word-spacing:2.689902px;}
.wsff{word-spacing:2.743718px;}
.wscb{word-spacing:2.749678px;}
.ws8a{word-spacing:2.809453px;}
.ws85{word-spacing:2.821415px;}
.wsec{word-spacing:2.851315px;}
.ws78{word-spacing:2.869229px;}
.ws16{word-spacing:2.869236px;}
.ws102{word-spacing:2.905114px;}
.ws71{word-spacing:2.929004px;}
.ws13d{word-spacing:2.958912px;}
.ws5a{word-spacing:2.988780px;}
.wsa5{word-spacing:3.048556px;}
.ws120{word-spacing:3.066509px;}
.ws41{word-spacing:3.108331px;}
.ws11f{word-spacing:3.114807px;}
.ws4d{word-spacing:3.168107px;}
.wsa4{word-spacing:3.205010px;}
.ws137{word-spacing:3.219696px;}
.ws104{word-spacing:3.220301px;}
.ws142{word-spacing:3.220646px;}
.ws136{word-spacing:3.221184px;}
.ws144{word-spacing:3.222758px;}
.ws12a{word-spacing:3.223334px;}
.ws11d{word-spacing:3.224592px;}
.ws10a{word-spacing:3.226886px;}
.ws116{word-spacing:3.227030px;}
.ws48{word-spacing:3.227882px;}
.wsfb{word-spacing:3.227904px;}
.ws140{word-spacing:3.228912px;}
.ws139{word-spacing:3.281702px;}
.wsc4{word-spacing:3.287658px;}
.wse4{word-spacing:3.335501px;}
.ws56{word-spacing:3.347434px;}
.ws75{word-spacing:3.407209px;}
.ws13f{word-spacing:3.443098px;}
.ws43{word-spacing:3.466985px;}
.wsef{word-spacing:3.496896px;}
.ws2b{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.ws7b{word-spacing:3.646312px;}
.ws89{word-spacing:3.706087px;}
.wsc7{word-spacing:3.765863px;}
.wse5{word-spacing:3.819686px;}
.ws121{word-spacing:3.927283px;}
.wsb4{word-spacing:3.945190px;}
.ws83{word-spacing:3.969110px;}
.ws112{word-spacing:3.981082px;}
.ws27{word-spacing:4.004965px;}
.ws84{word-spacing:4.016930px;}
.wsbc{word-spacing:4.064741px;}
.wsaf{word-spacing:4.112572px;}
.ws4a{word-spacing:4.124516px;}
.ws13a{word-spacing:4.142477px;}
.wsc2{word-spacing:4.184292px;}
.ws36{word-spacing:4.244068px;}
.ws12b{word-spacing:4.357670px;}
.wsee{word-spacing:4.465267px;}
.wsce{word-spacing:4.483170px;}
.ws44{word-spacing:4.542946px;}
.wsba{word-spacing:4.602721px;}
.ws58{word-spacing:4.662497px;}
.wsd{word-spacing:4.770079px;}
.wsca{word-spacing:4.782048px;}
.wsa6{word-spacing:4.841824px;}
.wsed{word-spacing:4.841856px;}
.wse{word-spacing:4.853765px;}
.ws94{word-spacing:4.925522px;}
.wse9{word-spacing:4.949453px;}
.wsbe{word-spacing:4.961375px;}
.ws3b{word-spacing:5.021150px;}
.ws49{word-spacing:5.080926px;}
.wsd4{word-spacing:5.140702px;}
.wsbf{word-spacing:5.320028px;}
.ws130{word-spacing:5.326042px;}
.wscf{word-spacing:5.379804px;}
.ws141{word-spacing:5.433638px;}
.ws12f{word-spacing:5.541235px;}
.ws5b{word-spacing:5.618906px;}
.ws8c{word-spacing:5.678682px;}
.ws39{word-spacing:5.738458px;}
.ws8f{word-spacing:5.858009px;}
.ws59{word-spacing:5.917784px;}
.wsf0{word-spacing:5.971622px;}
.ws40{word-spacing:5.977560px;}
.wsb5{word-spacing:6.097111px;}
.ws80{word-spacing:6.121037px;}
.ws6e{word-spacing:6.156887px;}
.ws4f{word-spacing:6.276438px;}
.ws77{word-spacing:6.336214px;}
.ws70{word-spacing:6.455765px;}
.ws3f{word-spacing:6.575316px;}
.ws5d{word-spacing:6.617203px;}
.wsfe{word-spacing:6.671002px;}
.wsc1{word-spacing:6.754643px;}
.wse6{word-spacing:6.778598px;}
.wsae{word-spacing:6.838346px;}
.ws6f{word-spacing:6.874194px;}
.ws11e{word-spacing:6.939994px;}
.ws52{word-spacing:6.993745px;}
.ws5c{word-spacing:6.993792px;}
.ws4c{word-spacing:7.113296px;}
.ws127{word-spacing:7.155187px;}
.ws54{word-spacing:7.173072px;}
.wse7{word-spacing:7.370381px;}
.wsd9{word-spacing:7.591501px;}
.ws134{word-spacing:7.639373px;}
.wsb{word-spacing:7.782761px;}
.wsde{word-spacing:7.830604px;}
.ws74{word-spacing:8.009930px;}
.ws2f{word-spacing:8.069706px;}
.wsb3{word-spacing:8.129482px;}
.wsb9{word-spacing:8.249033px;}
.ws88{word-spacing:8.308808px;}
.ws12e{word-spacing:8.446349px;}
.ws131{word-spacing:9.898906px;}
.ws122{word-spacing:10.544486px;}
.wsc9{word-spacing:10.699832px;}
.ws9{word-spacing:12.176255px;}
.ws113{word-spacing:13.126810px;}
.ws119{word-spacing:14.525568px;}
.ws11a{word-spacing:14.561767px;}
.ws128{word-spacing:15.386342px;}
.wsa{word-spacing:16.109478px;}
.ws47{word-spacing:17.753353px;}
.ws118{word-spacing:18.237658px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
.ws10{word-spacing:40.042186px;}
.ws111{word-spacing:48.398400px;}
.ws61{word-spacing:85.998000px;}
.ws60{word-spacing:86.023642px;}
.ws5e{word-spacing:99.473242px;}
.wsac{word-spacing:133.132550px;}
.wsaa{word-spacing:181.383536px;}
.wsab{word-spacing:417.234735px;}
.ws90{word-spacing:597.807690px;}
.ws5f{word-spacing:1053.372672px;}
._7{margin-left:-11.943245px;}
._72{margin-left:-9.241277px;}
._15{margin-left:-7.161121px;}
._3{margin-left:-6.150892px;}
._0{margin-left:-4.602708px;}
._9{margin-left:-2.630133px;}
._1{margin-left:-1.506341px;}
._66{width:1.005593px;}
._4{width:2.301354px;}
._8{width:3.684271px;}
._73{width:10.161852px;}
._5{width:11.582422px;}
._2{width:12.971268px;}
._f{width:14.822586px;}
._14{width:15.900316px;}
._a{width:16.910572px;}
._d{width:18.231558px;}
._c{width:19.259694px;}
._b{width:21.029186px;}
._12{width:22.176748px;}
._19{width:23.539636px;}
._e{width:25.165528px;}
._1b{width:27.138122px;}
._17{width:28.931390px;}
._6{width:30.587087px;}
._41{width:31.633243px;}
._18{width:32.637478px;}
._75{width:34.012316px;}
._13{width:36.104462px;}
._67{width:37.120648px;}
._16{width:38.734589px;}
._1a{width:40.474037px;}
._42{width:43.157983px;}
._7a{width:45.943834px;}
._78{width:47.880576px;}
._77{width:61.868160px;}
._79{width:64.227530px;}
._61{width:82.137416px;}
._76{width:88.767360px;}
._60{width:97.786624px;}
._26{width:99.473242px;}
._6a{width:110.465586px;}
._1d{width:112.922842px;}
._4d{width:142.118798px;}
._43{width:151.065275px;}
._5e{width:159.421068px;}
._62{width:162.391907px;}
._4c{width:163.542328px;}
._4a{width:184.344029px;}
._52{width:195.825357px;}
._70{width:208.736919px;}
._6d{width:223.656946px;}
._5f{width:258.462976px;}
._6b{width:264.830483px;}
._6e{width:276.495832px;}
._68{width:280.659101px;}
._71{width:288.143017px;}
._65{width:294.489626px;}
._58{width:297.854317px;}
._4b{width:306.721328px;}
._64{width:315.076284px;}
._6c{width:323.602000px;}
._63{width:341.939362px;}
._59{width:345.924594px;}
._56{width:358.941424px;}
._45{width:360.354752px;}
._5b{width:366.497078px;}
._47{width:390.407378px;}
._54{width:399.636754px;}
._5a{width:402.840734px;}
._34{width:423.124416px;}
._5c{width:427.329758px;}
._53{width:443.858840px;}
._55{width:446.253832px;}
._51{width:467.824696px;}
._49{width:472.180604px;}
._50{width:474.093428px;}
._1c{width:507.665558px;}
._35{width:555.629875px;}
._57{width:557.779478px;}
._6f{width:570.643220px;}
._3e{width:619.058174px;}
._4f{width:622.089229px;}
._4e{width:644.239123px;}
._46{width:649.774325px;}
._5d{width:677.393089px;}
._22{width:700.670347px;}
._48{width:716.209126px;}
._28{width:729.319488px;}
._2d{width:750.164875px;}
._3b{width:786.831444px;}
._30{width:815.452519px;}
._31{width:829.087142px;}
._40{width:871.887914px;}
._2f{width:938.190298px;}
._37{width:946.206259px;}
._38{width:995.646989px;}
._10{width:1005.428115px;}
._23{width:1012.593485px;}
._20{width:1029.916570px;}
._2e{width:1062.088013px;}
._29{width:1064.053133px;}
._32{width:1081.347840px;}
._39{width:1082.907994px;}
._2c{width:1086.673867px;}
._3a{width:1101.307046px;}
._36{width:1118.952922px;}
._3f{width:1139.556643px;}
._69{width:1142.625416px;}
._1e{width:1166.994893px;}
._2b{width:1173.103942px;}
._1f{width:1186.930145px;}
._33{width:1193.302310px;}
._24{width:1197.201773px;}
._21{width:1210.840589px;}
._25{width:1224.344710px;}
._3c{width:1231.929562px;}
._27{width:1246.752912px;}
._2a{width:1287.072922px;}
._3d{width:1375.033306px;}
._44{width:1488.224893px;}
._74{width:2571.860700px;}
._11{width:2595.770700px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(83,133,55);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs8{font-size:37.371600px;}
.fs0{font-size:41.842800px;}
.fsd{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fsb{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:49.829400px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y1d{bottom:15.759303px;}
.y4b{bottom:31.890000px;}
.yd4{bottom:94.317000px;}
.y251{bottom:94.864500px;}
.y1f2{bottom:101.949000px;}
.y4a{bottom:103.621500px;}
.y286{bottom:104.503500px;}
.y1b{bottom:104.646000px;}
.y9d{bottom:105.399000px;}
.y1fb{bottom:107.193000px;}
.y82{bottom:107.641500px;}
.y136{bottom:109.938000px;}
.y250{bottom:112.125000px;}
.yd3{bottom:113.146500px;}
.y1f1{bottom:120.778500px;}
.y285{bottom:121.762500px;}
.y49{bottom:122.449500px;}
.y1a{bottom:122.535000px;}
.y9c{bottom:124.228500px;}
.y210{bottom:124.677000px;}
.y1b5{bottom:124.938000px;}
.y1fa{bottom:126.022500px;}
.y81{bottom:126.471000px;}
.y134{bottom:128.767500px;}
.y24f{bottom:129.385500px;}
.yd2{bottom:131.976000px;}
.y135{bottom:134.193000px;}
.y284{bottom:139.023000px;}
.y1f0{bottom:139.608000px;}
.y16d{bottom:139.918500px;}
.y19{bottom:140.422500px;}
.y48{bottom:141.279000px;}
.y9b{bottom:143.058000px;}
.y20f{bottom:143.506500px;}
.y1b4{bottom:143.767500px;}
.y1f9{bottom:144.852000px;}
.y80{bottom:145.300500px;}
.y24e{bottom:146.646000px;}
.y133{bottom:147.597000px;}
.yd1{bottom:150.805500px;}
.y16c{bottom:151.873500px;}
.y283{bottom:156.283500px;}
.y18{bottom:158.310000px;}
.y1ef{bottom:158.437500px;}
.y47{bottom:160.108500px;}
.y9a{bottom:161.887500px;}
.y20e{bottom:162.336000px;}
.y1b3{bottom:162.597000px;}
.y1f8{bottom:163.681500px;}
.y16b{bottom:163.828500px;}
.y24d{bottom:163.905000px;}
.y7f{bottom:164.130000px;}
.y132{bottom:166.426500px;}
.y21c{bottom:166.909500px;}
.yd0{bottom:169.635000px;}
.y282{bottom:173.544000px;}
.y16a{bottom:175.783500px;}
.y17{bottom:176.199000px;}
.y1ee{bottom:177.267000px;}
.y46{bottom:178.938000px;}
.y20d{bottom:181.165500px;}
.y1b2{bottom:181.426500px;}
.y1f7{bottom:182.511000px;}
.y7e{bottom:182.959500px;}
.y21b{bottom:184.483500px;}
.y99{bottom:185.200500px;}
.y131{bottom:185.256000px;}
.y169{bottom:187.738500px;}
.ycf{bottom:188.464500px;}
.y281{bottom:190.804500px;}
.y16{bottom:194.086500px;}
.y1ed{bottom:196.096500px;}
.y45{bottom:197.767500px;}
.y24c{bottom:198.426000px;}
.y168{bottom:199.693500px;}
.y20c{bottom:199.995000px;}
.y1b1{bottom:200.256000px;}
.yef{bottom:201.340500px;}
.y7d{bottom:201.789000px;}
.y21a{bottom:202.057500px;}
.y130{bottom:204.085500px;}
.yce{bottom:207.294000px;}
.y280{bottom:208.065000px;}
.y167{bottom:211.648500px;}
.y15{bottom:211.974000px;}
.y1ec{bottom:214.926000px;}
.y24b{bottom:215.686500px;}
.y44{bottom:216.597000px;}
.y98{bottom:218.824500px;}
.y1b0{bottom:219.085500px;}
.yee{bottom:220.170000px;}
.y7c{bottom:220.618500px;}
.y12f{bottom:222.915000px;}
.y166{bottom:223.603500px;}
.y27f{bottom:225.325500px;}
.ycd{bottom:226.123500px;}
.y219{bottom:228.598500px;}
.y14{bottom:229.863000px;}
.y24a{bottom:232.947000px;}
.y1eb{bottom:233.755500px;}
.y43{bottom:235.426500px;}
.y165{bottom:235.558500px;}
.y97{bottom:237.654000px;}
.y1af{bottom:237.915000px;}
.yed{bottom:238.999500px;}
.y7b{bottom:239.446500px;}
.y12e{bottom:241.744500px;}
.y27e{bottom:242.586000px;}
.ycc{bottom:244.953000px;}
.y218{bottom:246.172500px;}
.y164{bottom:247.515000px;}
.y249{bottom:250.207500px;}
.y1ea{bottom:252.585000px;}
.y42{bottom:254.256000px;}
.y96{bottom:256.483500px;}
.y1ae{bottom:256.744500px;}
.yec{bottom:257.829000px;}
.y7a{bottom:258.276000px;}
.y163{bottom:259.470000px;}
.y27d{bottom:259.846500px;}
.y217{bottom:263.746500px;}
.ycb{bottom:263.781000px;}
.y248{bottom:267.468000px;}
.y1e9{bottom:271.414500px;}
.y162{bottom:271.425000px;}
.y41{bottom:273.085500px;}
.y95{bottom:275.313000px;}
.y1ad{bottom:275.574000px;}
.yeb{bottom:276.658500px;}
.y79{bottom:277.105500px;}
.y216{bottom:281.320500px;}
.y12d{bottom:281.878500px;}
.yca{bottom:282.610500px;}
.y161{bottom:283.380000px;}
.y247{bottom:284.728500px;}
.y1e8{bottom:290.244000px;}
.y40{bottom:291.915000px;}
.y94{bottom:294.142500px;}
.y27c{bottom:294.366000px;}
.y1ac{bottom:294.403500px;}
.y160{bottom:295.335000px;}
.yea{bottom:295.488000px;}
.y78{bottom:295.935000px;}
.y12b{bottom:296.074500px;}
.y215{bottom:298.894500px;}
.y13{bottom:300.154500px;}
.y12c{bottom:300.414000px;}
.yc9{bottom:301.440000px;}
.y246{bottom:301.989000px;}
.y15f{bottom:307.290000px;}
.y1e7{bottom:309.073500px;}
.y129{bottom:310.272000px;}
.y3f{bottom:310.744500px;}
.y27b{bottom:311.626500px;}
.y93{bottom:312.972000px;}
.y1ab{bottom:313.233000px;}
.ye9{bottom:314.317500px;}
.y12a{bottom:314.611500px;}
.y77{bottom:314.764500px;}
.y214{bottom:316.468500px;}
.y12{bottom:318.043500px;}
.y15e{bottom:319.245000px;}
.y245{bottom:319.248000px;}
.yc8{bottom:320.269500px;}
.y127{bottom:324.468000px;}
.y1e6{bottom:327.903000px;}
.y128{bottom:328.807500px;}
.y27a{bottom:328.887000px;}
.y3e{bottom:329.574000px;}
.y15d{bottom:331.200000px;}
.y92{bottom:331.801500px;}
.ye8{bottom:333.145500px;}
.y76{bottom:333.594000px;}
.y11{bottom:335.931000px;}
.y244{bottom:336.508500px;}
.y1aa{bottom:336.546000px;}
.y126{bottom:338.665500px;}
.y279{bottom:346.147500px;}
.y1e5{bottom:346.732500px;}
.y3d{bottom:348.403500px;}
.y15c{bottom:350.358000px;}
.y91{bottom:350.631000px;}
.ye7{bottom:351.975000px;}
.y75{bottom:352.423500px;}
.y125{bottom:352.861500px;}
.y243{bottom:353.769000px;}
.y10{bottom:353.818500px;}
.y15b{bottom:356.335500px;}
.yc7{bottom:360.403500px;}
.y278{bottom:363.408000px;}
.y1e4{bottom:365.562000px;}
.y124{bottom:367.059000px;}
.y3c{bottom:367.233000px;}
.y90{bottom:369.460500px;}
.ye6{bottom:370.804500px;}
.y242{bottom:371.029500px;}
.y74{bottom:371.253000px;}
.y1a9{bottom:373.540500px;}
.yc6{bottom:374.601000px;}
.y277{bottom:380.668500px;}
.yf{bottom:380.673000px;}
.y123{bottom:381.255000px;}
.y1e3{bottom:384.391500px;}
.y3b{bottom:386.062500px;}
.y1a8{bottom:387.738000px;}
.y8f{bottom:388.290000px;}
.ye5{bottom:389.634000px;}
.y73{bottom:390.082500px;}
.yc5{bottom:393.444000px;}
.y15a{bottom:393.783000px;}
.y122{bottom:395.452500px;}
.y276{bottom:397.929000px;}
.ye{bottom:398.562000px;}
.y1a7{bottom:401.934000px;}
.y1e2{bottom:403.221000px;}
.y3a{bottom:404.892000px;}
.y241{bottom:405.550500px;}
.y8e{bottom:407.119500px;}
.ye4{bottom:408.463500px;}
.y72{bottom:408.912000px;}
.y121{bottom:409.648500px;}
.yc4{bottom:409.882500px;}
.y211{bottom:412.947000px;}
.y120{bottom:413.988000px;}
.y275{bottom:415.188000px;}
.y1a6{bottom:416.131500px;}
.yd{bottom:416.449500px;}
.y159{bottom:421.017000px;}
.y1e1{bottom:422.050500px;}
.y240{bottom:422.811000px;}
.y39{bottom:423.721500px;}
.y8d{bottom:425.949000px;}
.yc3{bottom:426.321000px;}
.ye3{bottom:427.293000px;}
.y71{bottom:427.741500px;}
.y1a5{bottom:430.327500px;}
.y274{bottom:432.448500px;}
.y11f{bottom:432.712500px;}
.y158{bottom:439.846500px;}
.y23f{bottom:440.071500px;}
.y1e0{bottom:440.880000px;}
.yc2{bottom:442.759500px;}
.y1a4{bottom:444.525000px;}
.y8c{bottom:444.778500px;}
.yc{bottom:444.798000px;}
.ye2{bottom:446.122500px;}
.y70{bottom:446.571000px;}
.y11e{bottom:446.910000px;}
.y38{bottom:447.034500px;}
.y273{bottom:449.709000px;}
.y23e{bottom:457.330500px;}
.y157{bottom:458.676000px;}
.y1a3{bottom:458.721000px;}
.yc1{bottom:459.198000px;}
.y1df{bottom:459.709500px;}
.yb{bottom:462.685500px;}
.y8b{bottom:463.608000px;}
.ye1{bottom:464.952000px;}
.y6f{bottom:465.400500px;}
.y272{bottom:466.969500px;}
.y11d{bottom:468.924000px;}
.y1a2{bottom:472.918500px;}
.y23d{bottom:474.591000px;}
.yc0{bottom:475.636500px;}
.y156{bottom:477.505500px;}
.y1de{bottom:478.539000px;}
.y8a{bottom:482.437500px;}
.y11c{bottom:483.121500px;}
.ye0{bottom:483.781500px;}
.y6e{bottom:484.230000px;}
.y1a1{bottom:487.114500px;}
.ya{bottom:489.540000px;}
.y23c{bottom:491.851500px;}
.ybf{bottom:492.073500px;}
.y155{bottom:496.335000px;}
.y1dd{bottom:497.368500px;}
.y89{bottom:501.267000px;}
.y1a0{bottom:501.312000px;}
.y271{bottom:501.490500px;}
.ydf{bottom:502.611000px;}
.y6d{bottom:503.059500px;}
.y11b{bottom:505.135500px;}
.y9{bottom:507.429000px;}
.ybe{bottom:508.512000px;}
.y23b{bottom:509.112000px;}
.y154{bottom:515.164500px;}
.y19f{bottom:515.508000px;}
.y1dc{bottom:516.198000px;}
.y270{bottom:518.751000px;}
.y11a{bottom:519.333000px;}
.y88{bottom:520.095000px;}
.yde{bottom:521.440500px;}
.y6c{bottom:521.889000px;}
.y37{bottom:522.184500px;}
.ybd{bottom:524.950500px;}
.y8{bottom:525.316500px;}
.y23a{bottom:526.372500px;}
.y19e{bottom:529.705500px;}
.y153{bottom:531.264000px;}
.y152{bottom:533.994000px;}
.y1db{bottom:535.027500px;}
.y26f{bottom:536.011500px;}
.y87{bottom:538.924500px;}
.ydd{bottom:540.270000px;}
.y6b{bottom:540.718500px;}
.y119{bottom:540.732000px;}
.ybc{bottom:541.389000px;}
.y36{bottom:541.641000px;}
.y7{bottom:543.204000px;}
.y239{bottom:543.633000px;}
.y19d{bottom:543.901500px;}
.y19c{bottom:548.241000px;}
.y151{bottom:552.823500px;}
.y26e{bottom:553.272000px;}
.y1da{bottom:553.855500px;}
.y118{bottom:554.928000px;}
.y86{bottom:557.754000px;}
.ybb{bottom:557.827500px;}
.ydc{bottom:559.099500px;}
.y6a{bottom:559.548000px;}
.y238{bottom:560.893500px;}
.y6{bottom:561.093000px;}
.y19b{bottom:566.293500px;}
.y117{bottom:569.125500px;}
.y26d{bottom:570.531000px;}
.y150{bottom:571.653000px;}
.y1d9{bottom:572.685000px;}
.yba{bottom:574.266000px;}
.y85{bottom:576.583500px;}
.ydb{bottom:577.929000px;}
.y237{bottom:578.154000px;}
.y19a{bottom:578.248500px;}
.y69{bottom:578.377500px;}
.y5{bottom:578.980500px;}
.y35{bottom:579.031500px;}
.y116{bottom:583.321500px;}
.y26c{bottom:587.791500px;}
.y199{bottom:590.203500px;}
.y14f{bottom:590.482500px;}
.yb9{bottom:590.704500px;}
.y20b{bottom:595.413000px;}
.y236{bottom:595.414500px;}
.y1d8{bottom:595.998000px;}
.yda{bottom:596.758500px;}
.y4{bottom:596.868000px;}
.y68{bottom:597.207000px;}
.y115{bottom:597.519000px;}
.y34{bottom:598.488000px;}
.y84{bottom:599.896500px;}
.y198{bottom:602.158500px;}
.y26b{bottom:605.052000px;}
.yb8{bottom:607.143000px;}
.y14e{bottom:609.312000px;}
.y10f{bottom:610.690500px;}
.y114{bottom:611.715000px;}
.y235{bottom:612.673500px;}
.y197{bottom:614.113500px;}
.y20a{bottom:614.242500px;}
.y3{bottom:614.757000px;}
.yd9{bottom:615.588000px;}
.y67{bottom:616.036500px;}
.y1d7{bottom:616.173000px;}
.y33{bottom:617.944500px;}
.y83{bottom:620.071500px;}
.y26a{bottom:622.312500px;}
.yb7{bottom:623.581500px;}
.y113{bottom:625.912500px;}
.y196{bottom:626.068500px;}
.y234{bottom:629.934000px;}
.y14d{bottom:632.623500px;}
.y2{bottom:632.644500px;}
.y209{bottom:633.072000px;}
.yd8{bottom:634.417500px;}
.y66{bottom:634.866000px;}
.y32{bottom:637.402500px;}
.y195{bottom:638.025000px;}
.y269{bottom:639.573000px;}
.yb6{bottom:640.020000px;}
.y112{bottom:640.108500px;}
.y233{bottom:647.194500px;}
.y194{bottom:649.980000px;}
.y1{bottom:650.532000px;}
.y208{bottom:651.901500px;}
.y1d6{bottom:653.167500px;}
.yd7{bottom:653.247000px;}
.y65{bottom:653.695500px;}
.y111{bottom:654.306000px;}
.yb5{bottom:656.457000px;}
.y268{bottom:656.833500px;}
.y31{bottom:656.859000px;}
.y193{bottom:661.935000px;}
.y232{bottom:664.455000px;}
.y14c{bottom:666.247500px;}
.y1d5{bottom:667.365000px;}
.y110{bottom:668.502000px;}
.y207{bottom:670.731000px;}
.yd6{bottom:672.076500px;}
.y64{bottom:672.525000px;}
.yb4{bottom:672.895500px;}
.y192{bottom:673.890000px;}
.y267{bottom:674.094000px;}
.y30{bottom:676.315500px;}
.y1d3{bottom:681.561000px;}
.y231{bottom:681.715500px;}
.y14b{bottom:685.077000px;}
.y191{bottom:685.845000px;}
.y1d4{bottom:685.900500px;}
.yb3{bottom:689.334000px;}
.y206{bottom:689.560500px;}
.y10e{bottom:689.901000px;}
.y1f6{bottom:690.906000px;}
.y63{bottom:691.354500px;}
.yd5{bottom:695.389500px;}
.y1d2{bottom:695.758500px;}
.y2f{bottom:695.773500px;}
.y190{bottom:697.800000px;}
.y230{bottom:698.976000px;}
.y10b{bottom:702.891000px;}
.y14a{bottom:703.906500px;}
.y10d{bottom:704.098500px;}
.yb2{bottom:705.772500px;}
.y205{bottom:708.390000px;}
.y266{bottom:708.613500px;}
.y1f5{bottom:709.735500px;}
.y18f{bottom:709.755000px;}
.y1d0{bottom:709.954500px;}
.y62{bottom:710.184000px;}
.y1d1{bottom:714.294000px;}
.y2e{bottom:715.230000px;}
.y22f{bottom:716.236500px;}
.y10c{bottom:718.294500px;}
.y18e{bottom:721.710000px;}
.yb1{bottom:722.211000px;}
.y149{bottom:722.736000px;}
.y1cf{bottom:724.152000px;}
.y265{bottom:725.874000px;}
.y204{bottom:727.219500px;}
.y1f4{bottom:728.565000px;}
.y61{bottom:729.013500px;}
.y22e{bottom:733.497000px;}
.y18d{bottom:733.665000px;}
.y2d{bottom:734.688000px;}
.y1ce{bottom:738.348000px;}
.yb0{bottom:738.649500px;}
.y10a{bottom:739.693500px;}
.y148{bottom:741.565500px;}
.y264{bottom:743.134500px;}
.y18c{bottom:745.621500px;}
.y203{bottom:746.049000px;}
.y60{bottom:747.843000px;}
.y22d{bottom:750.756000px;}
.y1f3{bottom:751.876500px;}
.y1cd{bottom:752.545500px;}
.y109{bottom:753.891000px;}
.y2c{bottom:754.144500px;}
.yaf{bottom:755.088000px;}
.y18b{bottom:757.576500px;}
.y147{bottom:760.395000px;}
.y202{bottom:764.878500px;}
.y5f{bottom:766.671000px;}
.y1cc{bottom:766.741500px;}
.y108{bottom:768.087000px;}
.y105{bottom:768.619500px;}
.y18a{bottom:769.531500px;}
.yae{bottom:771.526500px;}
.y22c{bottom:772.500000px;}
.y2b{bottom:773.601000px;}
.y263{bottom:777.655500px;}
.y146{bottom:779.224500px;}
.y1cb{bottom:780.939000px;}
.y189{bottom:781.486500px;}
.y107{bottom:782.284500px;}
.y201{bottom:783.708000px;}
.y1ca{bottom:785.278500px;}
.y5e{bottom:785.500500px;}
.yad{bottom:787.965000px;}
.y188{bottom:793.441500px;}
.y262{bottom:794.916000px;}
.y1c9{bottom:795.135000px;}
.y106{bottom:796.480500px;}
.y145{bottom:798.054000px;}
.y200{bottom:802.537500px;}
.y5d{bottom:804.330000px;}
.yac{bottom:804.403500px;}
.y187{bottom:805.396500px;}
.y22b{bottom:806.124000px;}
.y2a{bottom:808.300500px;}
.y1c8{bottom:809.332500px;}
.y261{bottom:812.176500px;}
.y1c7{bottom:813.672000px;}
.y144{bottom:816.883500px;}
.y186{bottom:817.351500px;}
.y104{bottom:817.879500px;}
.yab{bottom:820.842000px;}
.y1ff{bottom:821.367000px;}
.y5c{bottom:823.159500px;}
.y22a{bottom:823.698000px;}
.y29{bottom:824.440500px;}
.y185{bottom:829.306500px;}
.y260{bottom:829.437000px;}
.y103{bottom:832.077000px;}
.y1c6{bottom:832.396500px;}
.y143{bottom:835.713000px;}
.yaa{bottom:837.279000px;}
.y1fe{bottom:840.196500px;}
.y28{bottom:840.580500px;}
.y184{bottom:841.261500px;}
.y229{bottom:841.272000px;}
.y5b{bottom:841.989000px;}
.y102{bottom:846.273000px;}
.y1c5{bottom:846.592500px;}
.y25f{bottom:846.697500px;}
.y183{bottom:853.218000px;}
.ya9{bottom:853.717500px;}
.y142{bottom:854.542500px;}
.y101{bottom:860.470500px;}
.y5a{bottom:860.818500px;}
.y27{bottom:861.060000px;}
.y1c4{bottom:861.405000px;}
.y1fd{bottom:863.509500px;}
.y25e{bottom:863.956500px;}
.y182{bottom:865.173000px;}
.y228{bottom:867.813000px;}
.ya8{bottom:870.156000px;}
.y26{bottom:872.859000px;}
.y141{bottom:873.372000px;}
.y100{bottom:874.666500px;}
.y1c3{bottom:876.217500px;}
.y213{bottom:876.918000px;}
.y181{bottom:877.128000px;}
.y59{bottom:879.648000px;}
.y25d{bottom:881.217000px;}
.y1fc{bottom:883.683000px;}
.yfa{bottom:884.289000px;}
.y227{bottom:885.387000px;}
.ya7{bottom:886.594500px;}
.yff{bottom:888.864000px;}
.y180{bottom:889.083000px;}
.y1c2{bottom:890.415000px;}
.y140{bottom:892.201500px;}
.y25{bottom:893.338500px;}
.y58{bottom:898.477500px;}
.y17f{bottom:901.038000px;}
.y226{bottom:902.961000px;}
.ya6{bottom:903.033000px;}
.yfe{bottom:903.060000px;}
.y1c1{bottom:904.611000px;}
.y24{bottom:909.478500px;}
.y13f{bottom:911.031000px;}
.y17e{bottom:912.993000px;}
.y25c{bottom:915.738000px;}
.yfd{bottom:917.257500px;}
.y57{bottom:917.307000px;}
.y1c0{bottom:918.808500px;}
.ya5{bottom:919.471500px;}
.y225{bottom:920.535000px;}
.y17d{bottom:924.948000px;}
.yfc{bottom:931.453500px;}
.y25b{bottom:932.998500px;}
.y1bf{bottom:933.004500px;}
.y13e{bottom:934.344000px;}
.ya4{bottom:935.910000px;}
.y56{bottom:936.136500px;}
.y17c{bottom:936.903000px;}
.y224{bottom:938.109000px;}
.yfb{bottom:945.651000px;}
.y1be{bottom:947.202000px;}
.y17b{bottom:948.858000px;}
.y25a{bottom:950.259000px;}
.y23{bottom:950.268000px;}
.y212{bottom:952.236000px;}
.ya3{bottom:952.348500px;}
.y13d{bottom:954.517500px;}
.y55{bottom:954.966000px;}
.y17a{bottom:960.814500px;}
.y1bd{bottom:961.398000px;}
.y223{bottom:964.650000px;}
.yf9{bottom:967.050000px;}
.y259{bottom:967.519500px;}
.y176{bottom:968.286000px;}
.ya2{bottom:968.787000px;}
.y22{bottom:969.097500px;}
.y179{bottom:972.769500px;}
.y54{bottom:973.795500px;}
.y1bc{bottom:975.595500px;}
.y175{bottom:980.241000px;}
.yf8{bottom:981.247500px;}
.y222{bottom:982.224000px;}
.y178{bottom:984.724500px;}
.y258{bottom:984.780000px;}
.ya1{bottom:985.225500px;}
.y13c{bottom:988.141500px;}
.y1bb{bottom:989.791500px;}
.y174{bottom:992.196000px;}
.y53{bottom:992.625000px;}
.yf7{bottom:995.443500px;}
.y177{bottom:996.679500px;}
.y287{bottom:1002.039000px;}
.y257{bottom:1002.040500px;}
.y1ba{bottom:1003.989000px;}
.y13b{bottom:1006.971000px;}
.y173{bottom:1008.634500px;}
.y221{bottom:1008.765000px;}
.ya0{bottom:1008.865500px;}
.y21{bottom:1009.017000px;}
.yf6{bottom:1009.641000px;}
.yf2{bottom:1009.990500px;}
.y52{bottom:1011.454500px;}
.y1b9{bottom:1018.185000px;}
.y256{bottom:1019.299500px;}
.y172{bottom:1020.589500px;}
.yf5{bottom:1023.837000px;}
.y13a{bottom:1025.800500px;}
.y220{bottom:1026.339000px;}
.y51{bottom:1030.284000px;}
.y171{bottom:1032.544500px;}
.y255{bottom:1036.560000px;}
.y20{bottom:1037.262000px;}
.yf4{bottom:1038.034500px;}
.y1b8{bottom:1040.200500px;}
.y9f{bottom:1040.485500px;}
.y170{bottom:1044.499500px;}
.y139{bottom:1044.630000px;}
.y50{bottom:1049.113500px;}
.yf3{bottom:1052.230500px;}
.y21f{bottom:1052.880000px;}
.y254{bottom:1053.820500px;}
.y1b7{bottom:1054.396500px;}
.y9e{bottom:1059.718500px;}
.y138{bottom:1063.459500px;}
.y16f{bottom:1063.657500px;}
.y1f{bottom:1065.505500px;}
.y4f{bottom:1067.943000px;}
.y16e{bottom:1069.635000px;}
.y21e{bottom:1070.454000px;}
.y253{bottom:1071.081000px;}
.yf1{bottom:1073.836500px;}
.y137{bottom:1082.289000px;}
.y4e{bottom:1086.772500px;}
.y1b6{bottom:1087.849500px;}
.y21d{bottom:1088.028000px;}
.y252{bottom:1088.341500px;}
.y1e{bottom:1093.750500px;}
.y4d{bottom:1105.602000px;}
.yf0{bottom:1107.082500px;}
.y1c{bottom:1137.237000px;}
.y4c{bottom:1168.366500px;}
.h1a{height:24.889486px;}
.ha{height:26.110157px;}
.hc{height:26.296208px;}
.h9{height:26.302208px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h1c{height:31.526842px;}
.h1d{height:33.072749px;}
.h19{height:33.186380px;}
.h21{height:34.574294px;}
.hb{height:34.813397px;}
.h12{height:35.052500px;}
.h20{height:36.794879px;}
.h1f{height:36.800879px;}
.he{height:38.896243px;}
.hf{height:39.165235px;}
.h15{height:39.434227px;}
.h1b{height:41.482876px;}
.h17{height:42.247486px;}
.h16{height:42.460829px;}
.h10{height:43.217759px;}
.h22{height:43.288829px;}
.h18{height:43.468157px;}
.h11{height:43.516637px;}
.hd{height:43.660208px;}
.h6{height:43.815515px;}
.h14{height:49.117939px;}
.h4{height:50.930649px;}
.h1e{height:54.162344px;}
.h8{height:54.547601px;}
.h13{height:54.575123px;}
.h7{height:77.792486px;}
.h5{height:102.503837px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:145.826070px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x2{left:61.836233px;}
.xd0{left:85.848000px;}
.x65{left:89.794500px;}
.xd4{left:126.156000px;}
.x54{left:150.769500px;}
.x6b{left:182.775000px;}
.x67{left:183.778500px;}
.xd5{left:189.811500px;}
.xd6{left:225.142500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x62{left:254.122500px;}
.x6c{left:257.254500px;}
.x56{left:258.978000px;}
.x49{left:265.486500px;}
.x5{left:269.316000px;}
.x9{left:281.479500px;}
.xb9{left:286.306500px;}
.xca{left:289.212000px;}
.xa{left:291.780000px;}
.x1d{left:295.071000px;}
.xb{left:299.251500px;}
.x69{left:300.364500px;}
.x63{left:304.275000px;}
.x7{left:308.152500px;}
.x1e{left:310.015500px;}
.xce{left:312.094500px;}
.x10{left:315.184500px;}
.x8{left:319.881000px;}
.x11{left:322.657500px;}
.x44{left:323.812500px;}
.xba{left:327.627000px;}
.x18{left:329.605500px;}
.xa1{left:330.706500px;}
.x40{left:334.032000px;}
.xc{left:335.122500px;}
.x19{left:337.077000px;}
.x94{left:338.505000px;}
.xd{left:342.594000px;}
.xe{left:346.405500px;}
.xa2{left:349.356000px;}
.x9b{left:351.142500px;}
.x41{left:352.786500px;}
.xf{left:353.877000px;}
.x84{left:356.271000px;}
.x95{left:357.736500px;}
.xbe{left:360.354000px;}
.x90{left:361.992000px;}
.xa3{left:364.300500px;}
.x3e{left:365.463000px;}
.x91{left:369.441000px;}
.x85{left:371.214000px;}
.x86{left:374.998500px;}
.xa7{left:377.268000px;}
.x99{left:379.084500px;}
.x3f{left:380.407500px;}
.x82{left:381.594000px;}
.x92{left:384.385500px;}
.x23{left:385.956000px;}
.xa8{left:387.124500px;}
.x9c{left:388.651500px;}
.x87{left:389.943000px;}
.x96{left:394.090500px;}
.x73{left:395.208000px;}
.x83{left:396.537000px;}
.x9d{left:399.082500px;}
.x24{left:400.899000px;}
.xa9{left:402.067500px;}
.x74{left:403.975500px;}
.x25{left:408.520500px;}
.x97{left:412.845000px;}
.x4a{left:414.055500px;}
.x64{left:416.389500px;}
.xa0{left:418.215000px;}
.xc8{left:422.116500px;}
.x26{left:423.465000px;}
.x98{left:427.789500px;}
.x4b{left:428.998500px;}
.x4c{left:432.723000px;}
.xc9{left:436.611000px;}
.x78{left:438.553500px;}
.xcf{left:439.785000px;}
.x36{left:441.352500px;}
.xc3{left:444.606000px;}
.x4d{left:447.667500px;}
.x57{left:450.349500px;}
.x79{left:453.496500px;}
.x4e{left:455.116500px;}
.x2c{left:456.781500px;}
.x37{left:460.101000px;}
.x58{left:463.167000px;}
.x5e{left:467.989500px;}
.x4f{left:470.061000px;}
.x2d{left:471.726000px;}
.x5f{left:473.520000px;}
.x2e{left:475.537500px;}
.xb5{left:482.554500px;}
.x42{left:486.985500px;}
.xaa{left:488.349000px;}
.x2f{left:490.480500px;}
.xbc{left:491.568000px;}
.xc1{left:494.785500px;}
.xb6{left:497.499000px;}
.x68{left:499.416000px;}
.x43{left:501.928500px;}
.xb2{left:504.291000px;}
.xbd{left:506.511000px;}
.xc2{left:509.728500px;}
.xc6{left:514.914000px;}
.xbb{left:517.276500px;}
.xb3{left:519.235500px;}
.xc4{left:527.584500px;}
.x6a{left:530.596500px;}
.x60{left:532.015500px;}
.x9e{left:541.636500px;}
.x3c{left:545.719500px;}
.xaf{left:547.671000px;}
.x3a{left:548.803500px;}
.x21{left:552.037500px;}
.x9f{left:556.579500px;}
.x61{left:559.278000px;}
.x3d{left:560.664000px;}
.x7f{left:562.452000px;}
.x3b{left:563.746500px;}
.x22{left:566.980500px;}
.x76{left:570.835500px;}
.x59{left:574.885500px;}
.x80{left:576.499500px;}
.xab{left:577.663500px;}
.x55{left:584.596500px;}
.x77{left:585.780000px;}
.xac{left:592.608000px;}
.x14{left:593.964000px;}
.xcb{left:597.858000px;}
.x9a{left:600.274500px;}
.x15{left:601.435500px;}
.xcc{left:604.588500px;}
.x5a{left:612.022500px;}
.x5b{left:621.325500px;}
.x16{left:623.803500px;}
.x66{left:626.488500px;}
.x17{left:631.276500px;}
.x12{left:633.064500px;}
.xb4{left:638.181000px;}
.x1c{left:639.189000px;}
.x13{left:640.537500px;}
.xcd{left:644.479500px;}
.x38{left:645.901500px;}
.x8a{left:647.973000px;}
.x30{left:653.169000px;}
.x88{left:656.382000px;}
.xe0{left:658.617000px;}
.x6d{left:665.932500px;}
.x31{left:668.112000px;}
.xde{left:669.876000px;}
.x89{left:671.325000px;}
.x1f{left:675.430500px;}
.x6e{left:679.863000px;}
.x50{left:683.676000px;}
.x8d{left:686.089500px;}
.x51{left:687.487500px;}
.x45{left:689.178000px;}
.x20{left:690.373500px;}
.x75{left:692.046000px;}
.xa4{left:693.214500px;}
.xdf{left:696.775500px;}
.xd1{left:698.740500px;}
.x28{left:701.895000px;}
.x46{left:704.122500px;}
.x7a{left:705.718500px;}
.x47{left:707.799000px;}
.x52{left:710.052000px;}
.xa5{left:711.819000px;}
.x8e{left:713.008500px;}
.xb0{left:714.462000px;}
.x29{left:716.839500px;}
.x7b{left:720.661500px;}
.x48{left:722.742000px;}
.x53{left:724.996500px;}
.xa6{left:726.763500px;}
.x8f{left:727.953000px;}
.xb1{left:729.406500px;}
.xad{left:731.190000px;}
.xd7{left:734.004000px;}
.xdb{left:736.546500px;}
.xd9{left:737.989500px;}
.x7c{left:739.270500px;}
.x7d{left:742.936500px;}
.xae{left:746.133000px;}
.xdc{left:748.332000px;}
.xb7{left:749.847000px;}
.x2a{left:756.355500px;}
.x7e{left:757.879500px;}
.xd8{left:760.903500px;}
.xc7{left:763.428000px;}
.x32{left:765.463500px;}
.xb8{left:768.601500px;}
.x2b{left:771.300000px;}
.xd2{left:773.551500px;}
.xdd{left:775.230000px;}
.x33{left:780.408000px;}
.xbf{left:781.600500px;}
.x5c{left:783.010500px;}
.x34{left:784.218000px;}
.x6f{left:787.627500px;}
.x8b{left:789.001500px;}
.x5d{left:791.244000px;}
.xc0{left:796.545000px;}
.x35{left:799.162500px;}
.x70{left:800.446500px;}
.x8c{left:803.944500px;}
.xc5{left:805.381500px;}
.x71{left:806.511000px;}
.xda{left:810.352500px;}
.x93{left:813.637500px;}
.x72{left:815.251500px;}
.x39{left:817.698000px;}
.x27{left:818.893500px;}
.x1a{left:825.448500px;}
.x1b{left:832.920000px;}
.x81{left:834.036000px;}
.xd3{left:837.208500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v8{vertical-align:-9.322667pt;}
.v4{vertical-align:-7.466667pt;}
.v7{vertical-align:-5.616000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.504000pt;}
.v3{vertical-align:14.693333pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:21.253333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000078pt;}
.ls49{letter-spacing:0.000159pt;}
.ls32{letter-spacing:0.000387pt;}
.ls48{letter-spacing:0.000403pt;}
.ls14{letter-spacing:0.000637pt;}
.ls3c{letter-spacing:0.000711pt;}
.ls44{letter-spacing:0.000921pt;}
.ls3d{letter-spacing:0.001026pt;}
.ls34{letter-spacing:0.001140pt;}
.ls2d{letter-spacing:0.001148pt;}
.ls3e{letter-spacing:0.001207pt;}
.ls36{letter-spacing:0.001215pt;}
.ls1d{letter-spacing:0.001302pt;}
.ls1b{letter-spacing:0.001543pt;}
.ls45{letter-spacing:0.001552pt;}
.ls7{letter-spacing:0.001718pt;}
.ls8{letter-spacing:0.001735pt;}
.ls43{letter-spacing:0.001818pt;}
.ls40{letter-spacing:0.001843pt;}
.ls31{letter-spacing:0.001939pt;}
.ls1c{letter-spacing:0.002200pt;}
.ls42{letter-spacing:0.002262pt;}
.ls5{letter-spacing:0.002422pt;}
.ls30{letter-spacing:0.002473pt;}
.ls4b{letter-spacing:0.003102pt;}
.lsd{letter-spacing:0.003733pt;}
.ls19{letter-spacing:0.003902pt;}
.ls41{letter-spacing:0.004267pt;}
.ls10{letter-spacing:0.004312pt;}
.ls2f{letter-spacing:0.004465pt;}
.ls4{letter-spacing:0.004541pt;}
.ls1f{letter-spacing:0.447791pt;}
.ls51{letter-spacing:2.656533pt;}
.ls2c{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls0{letter-spacing:9.298933pt;}
.ls1a{letter-spacing:9.587216pt;}
.ls21{letter-spacing:9.743791pt;}
.ls20{letter-spacing:9.765867pt;}
.ls2e{letter-spacing:10.421580pt;}
.ls24{letter-spacing:10.587258pt;}
.ls25{letter-spacing:10.592570pt;}
.ls2a{letter-spacing:10.623733pt;}
.lsa{letter-spacing:10.626533pt;}
.ls15{letter-spacing:10.629067pt;}
.ls39{letter-spacing:10.869290pt;}
.ls4f{letter-spacing:10.934596pt;}
.ls23{letter-spacing:10.959313pt;}
.ls46{letter-spacing:11.862079pt;}
.ls50{letter-spacing:11.899442pt;}
.ls47{letter-spacing:11.952283pt;}
.lse{letter-spacing:11.952503pt;}
.ls22{letter-spacing:11.953867pt;}
.ls38{letter-spacing:11.954133pt;}
.lsf{letter-spacing:11.957837pt;}
.ls3a{letter-spacing:11.959467pt;}
.ls4d{letter-spacing:12.098781pt;}
.ls3f{letter-spacing:12.180027pt;}
.lsc{letter-spacing:13.046837pt;}
.ls35{letter-spacing:13.095781pt;}
.ls26{letter-spacing:13.124065pt;}
.ls13{letter-spacing:13.281067pt;}
.ls1e{letter-spacing:13.283467pt;}
.ls3{letter-spacing:13.283733pt;}
.ls17{letter-spacing:13.286400pt;}
.ls4a{letter-spacing:13.477480pt;}
.ls37{letter-spacing:13.484505pt;}
.ls11{letter-spacing:13.549136pt;}
.ls12{letter-spacing:13.678400pt;}
.ls29{letter-spacing:13.683733pt;}
.ls27{letter-spacing:14.097119pt;}
.ls3b{letter-spacing:14.538918pt;}
.ls52{letter-spacing:14.823467pt;}
.ls4e{letter-spacing:15.652643pt;}
.ls33{letter-spacing:20.235681pt;}
.ls1{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.ls16{letter-spacing:183.871733pt;}
.ls2b{letter-spacing:453.019733pt;}
.ls28{letter-spacing:480.651733pt;}
.ls18{letter-spacing:760.219733pt;}
.ws51{word-spacing:-13.283467pt;}
.wse8{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws14{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.wsb7{word-spacing:-4.091308pt;}
.wsdc{word-spacing:-2.922363pt;}
.wse0{word-spacing:-2.656693pt;}
.ws76{word-spacing:-2.497292pt;}
.wsc0{word-spacing:-2.337890pt;}
.wscd{word-spacing:-2.231622pt;}
.wsd1{word-spacing:-2.178489pt;}
.ws3a{word-spacing:-2.125355pt;}
.wsc5{word-spacing:-2.072221pt;}
.wsb6{word-spacing:-2.019087pt;}
.ws143{word-spacing:-2.008474pt;}
.ws123{word-spacing:-1.960653pt;}
.wsd2{word-spacing:-1.912819pt;}
.wsd6{word-spacing:-1.859685pt;}
.ws11c{word-spacing:-1.817190pt;}
.wsd5{word-spacing:-1.753418pt;}
.ws100{word-spacing:-1.673728pt;}
.wsf2{word-spacing:-1.482445pt;}
.wsf7{word-spacing:-1.434624pt;}
.ws13c{word-spacing:-1.338982pt;}
.wsf3{word-spacing:-1.291162pt;}
.wsd0{word-spacing:-1.275213pt;}
.ws7d{word-spacing:-1.232709pt;}
.ws2d{word-spacing:-1.168945pt;}
.wse1{word-spacing:-1.115811pt;}
.wsf8{word-spacing:-1.099878pt;}
.ws82{word-spacing:-1.062680pt;}
.ws37{word-spacing:-1.062677pt;}
.ws5{word-spacing:-1.041421pt;}
.ws81{word-spacing:-1.041409pt;}
.wsb8{word-spacing:-1.009543pt;}
.ws13e{word-spacing:-1.004237pt;}
.ws7{word-spacing:-0.929840pt;}
.wsbd{word-spacing:-0.903276pt;}
.wsd8{word-spacing:-0.850142pt;}
.wse2{word-spacing:-0.797008pt;}
.wse3{word-spacing:-0.690740pt;}
.wsc6{word-spacing:-0.637606pt;}
.wsbb{word-spacing:-0.584473pt;}
.ws124{word-spacing:-0.526029pt;}
.wsd3{word-spacing:-0.425071pt;}
.ws53{word-spacing:-0.371937pt;}
.ws38{word-spacing:-0.318803pt;}
.wsfc{word-spacing:-0.286925pt;}
.ws24{word-spacing:-0.265669pt;}
.ws18{word-spacing:-0.239104pt;}
.ws22{word-spacing:-0.212535pt;}
.ws19{word-spacing:-0.191283pt;}
.wsad{word-spacing:-0.170029pt;}
.ws34{word-spacing:-0.159402pt;}
.ws1f{word-spacing:-0.143462pt;}
.wsa8{word-spacing:-0.127522pt;}
.ws2a{word-spacing:-0.106268pt;}
.ws1e{word-spacing:-0.095642pt;}
.ws9d{word-spacing:-0.090331pt;}
.ws9f{word-spacing:-0.085014pt;}
.ws92{word-spacing:-0.074387pt;}
.wsa0{word-spacing:-0.073692pt;}
.ws9e{word-spacing:-0.068411pt;}
.ws11{word-spacing:-0.053134pt;}
.ws20{word-spacing:-0.047821pt;}
.ws15{word-spacing:-0.042507pt;}
.ws11b{word-spacing:-0.025088pt;}
.ws10d{word-spacing:-0.024209pt;}
.ws117{word-spacing:-0.023313pt;}
.ws129{word-spacing:-0.022110pt;}
.ws63{word-spacing:-0.021700pt;}
.ws65{word-spacing:-0.020762pt;}
.ws67{word-spacing:-0.020292pt;}
.ws10e{word-spacing:-0.020215pt;}
.ws12c{word-spacing:-0.009156pt;}
.ws66{word-spacing:-0.008158pt;}
.ws133{word-spacing:-0.005103pt;}
.ws7e{word-spacing:-0.004602pt;}
.ws12{word-spacing:-0.004548pt;}
.ws13{word-spacing:-0.004526pt;}
.wsf6{word-spacing:-0.004454pt;}
.ws10b{word-spacing:-0.003550pt;}
.ws62{word-spacing:-0.003055pt;}
.ws7f{word-spacing:-0.002981pt;}
.ws68{word-spacing:-0.002825pt;}
.wsa9{word-spacing:-0.002374pt;}
.ws6a{word-spacing:-0.001911pt;}
.ws3{word-spacing:-0.001735pt;}
.ws7c{word-spacing:-0.000963pt;}
.ws6b{word-spacing:-0.000922pt;}
.wsf{word-spacing:-0.000688pt;}
.ws1{word-spacing:0.000000pt;}
.ws64{word-spacing:0.000256pt;}
.ws69{word-spacing:0.000828pt;}
.ws30{word-spacing:0.001236pt;}
.ws96{word-spacing:0.042507pt;}
.ws10c{word-spacing:0.047821pt;}
.ws35{word-spacing:0.053134pt;}
.ws6c{word-spacing:0.085014pt;}
.wsa2{word-spacing:0.085341pt;}
.wsa1{word-spacing:0.085517pt;}
.wsa3{word-spacing:0.088143pt;}
.ws1b{word-spacing:0.095642pt;}
.ws25{word-spacing:0.106268pt;}
.ws87{word-spacing:0.127522pt;}
.ws17{word-spacing:0.143462pt;}
.ws9c{word-spacing:0.150563pt;}
.ws32{word-spacing:0.159402pt;}
.ws86{word-spacing:0.170029pt;}
.ws1d{word-spacing:0.191283pt;}
.ws23{word-spacing:0.212535pt;}
.ws109{word-spacing:0.239104pt;}
.ws2c{word-spacing:0.265669pt;}
.wsf5{word-spacing:0.286925pt;}
.ws2e{word-spacing:0.318803pt;}
.ws13b{word-spacing:0.334746pt;}
.ws97{word-spacing:0.340058pt;}
.ws4b{word-spacing:0.371937pt;}
.ws55{word-spacing:0.425071pt;}
.ws93{word-spacing:0.466270pt;}
.ws8b{word-spacing:0.478205pt;}
.wsb1{word-spacing:0.552594pt;}
.ws46{word-spacing:0.584473pt;}
.ws98{word-spacing:0.595101pt;}
.ws10f{word-spacing:0.621670pt;}
.ws26{word-spacing:0.637606pt;}
.ws103{word-spacing:0.669491pt;}
.wsc3{word-spacing:0.690740pt;}
.ws115{word-spacing:0.717312pt;}
.wsdf{word-spacing:0.743874pt;}
.wsfd{word-spacing:0.765133pt;}
.wsa7{word-spacing:0.797008pt;}
.ws110{word-spacing:0.812954pt;}
.wsc8{word-spacing:0.850142pt;}
.ws1c{word-spacing:0.860774pt;}
.ws6{word-spacing:0.892646pt;}
.ws99{word-spacing:0.892651pt;}
.ws8e{word-spacing:0.903276pt;}
.wseb{word-spacing:0.908595pt;}
.ws3c{word-spacing:0.956410pt;}
.ws1a{word-spacing:0.956416pt;}
.ws8d{word-spacing:1.009543pt;}
.ws106{word-spacing:1.052058pt;}
.ws107{word-spacing:1.099878pt;}
.ws72{word-spacing:1.115811pt;}
.wsea{word-spacing:1.147699pt;}
.ws42{word-spacing:1.168945pt;}
.ws114{word-spacing:1.195520pt;}
.ws45{word-spacing:1.222079pt;}
.ws28{word-spacing:1.275213pt;}
.wsf9{word-spacing:1.338982pt;}
.ws50{word-spacing:1.381481pt;}
.ws105{word-spacing:1.386803pt;}
.ws79{word-spacing:1.434614pt;}
.ws108{word-spacing:1.434624pt;}
.ws3e{word-spacing:1.487748pt;}
.ws9a{word-spacing:1.487752pt;}
.ws9b{word-spacing:1.500816pt;}
.ws135{word-spacing:1.530266pt;}
.wscc{word-spacing:1.540882pt;}
.ws4e{word-spacing:1.594016pt;}
.ws7a{word-spacing:1.647150pt;}
.ws126{word-spacing:1.673728pt;}
.wsdd{word-spacing:1.700284pt;}
.wsb2{word-spacing:1.700288pt;}
.wsfa{word-spacing:1.721549pt;}
.wsda{word-spacing:1.753418pt;}
.ws95{word-spacing:1.785302pt;}
.ws3d{word-spacing:1.806551pt;}
.wsdb{word-spacing:1.912819pt;}
.wsf1{word-spacing:1.960653pt;}
.ws101{word-spacing:2.008474pt;}
.ws33{word-spacing:2.019087pt;}
.ws12d{word-spacing:2.056294pt;}
.ws73{word-spacing:2.072221pt;}
.wsf4{word-spacing:2.104115pt;}
.wsd7{word-spacing:2.125355pt;}
.ws125{word-spacing:2.151936pt;}
.ws6d{word-spacing:2.178489pt;}
.ws138{word-spacing:2.199757pt;}
.ws2{word-spacing:2.231414pt;}
.ws91{word-spacing:2.231616pt;}
.ws0{word-spacing:2.232481pt;}
.ws132{word-spacing:2.247578pt;}
.ws29{word-spacing:2.284756pt;}
.wsb0{word-spacing:2.337896pt;}
.ws57{word-spacing:2.391024pt;}
.wsff{word-spacing:2.438861pt;}
.wscb{word-spacing:2.444158pt;}
.ws8a{word-spacing:2.497292pt;}
.ws85{word-spacing:2.507925pt;}
.wsec{word-spacing:2.534502pt;}
.ws78{word-spacing:2.550426pt;}
.ws16{word-spacing:2.550432pt;}
.ws102{word-spacing:2.582323pt;}
.ws71{word-spacing:2.603559pt;}
.ws13d{word-spacing:2.630144pt;}
.ws5a{word-spacing:2.656693pt;}
.wsa5{word-spacing:2.709827pt;}
.ws120{word-spacing:2.725786pt;}
.ws41{word-spacing:2.762961pt;}
.ws11f{word-spacing:2.768717pt;}
.ws4d{word-spacing:2.816095pt;}
.wsa4{word-spacing:2.848898pt;}
.ws137{word-spacing:2.861952pt;}
.ws104{word-spacing:2.862490pt;}
.ws142{word-spacing:2.862797pt;}
.ws136{word-spacing:2.863275pt;}
.ws144{word-spacing:2.864674pt;}
.ws12a{word-spacing:2.865186pt;}
.ws11d{word-spacing:2.866304pt;}
.ws10a{word-spacing:2.868343pt;}
.ws116{word-spacing:2.868471pt;}
.ws48{word-spacing:2.869229pt;}
.wsfb{word-spacing:2.869248pt;}
.ws140{word-spacing:2.870144pt;}
.ws139{word-spacing:2.917069pt;}
.wsc4{word-spacing:2.922363pt;}
.wse4{word-spacing:2.964890pt;}
.ws56{word-spacing:2.975497pt;}
.ws75{word-spacing:3.028630pt;}
.ws13f{word-spacing:3.060531pt;}
.ws43{word-spacing:3.081764pt;}
.wsef{word-spacing:3.108352pt;}
.ws2b{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.ws7b{word-spacing:3.241166pt;}
.ws89{word-spacing:3.294300pt;}
.wsc7{word-spacing:3.347434pt;}
.wse5{word-spacing:3.395277pt;}
.ws121{word-spacing:3.490918pt;}
.wsb4{word-spacing:3.506835pt;}
.ws83{word-spacing:3.528098pt;}
.ws112{word-spacing:3.538739pt;}
.ws27{word-spacing:3.559969pt;}
.ws84{word-spacing:3.570605pt;}
.wsbc{word-spacing:3.613103pt;}
.wsaf{word-spacing:3.655619pt;}
.ws4a{word-spacing:3.666237pt;}
.ws13a{word-spacing:3.682202pt;}
.wsc2{word-spacing:3.719371pt;}
.ws36{word-spacing:3.772505pt;}
.ws12b{word-spacing:3.873485pt;}
.wsee{word-spacing:3.969126pt;}
.wsce{word-spacing:3.985040pt;}
.ws44{word-spacing:4.038174pt;}
.wsba{word-spacing:4.091308pt;}
.ws58{word-spacing:4.144442pt;}
.wsd{word-spacing:4.240070pt;}
.wsca{word-spacing:4.250709pt;}
.wsa6{word-spacing:4.303843pt;}
.wsed{word-spacing:4.303872pt;}
.wse{word-spacing:4.314458pt;}
.ws94{word-spacing:4.378242pt;}
.wse9{word-spacing:4.399514pt;}
.wsbe{word-spacing:4.410111pt;}
.ws3b{word-spacing:4.463245pt;}
.ws49{word-spacing:4.516379pt;}
.wsd4{word-spacing:4.569513pt;}
.wsbf{word-spacing:4.728914pt;}
.ws130{word-spacing:4.734259pt;}
.wscf{word-spacing:4.782048pt;}
.ws141{word-spacing:4.829901pt;}
.ws12f{word-spacing:4.925542pt;}
.ws5b{word-spacing:4.994583pt;}
.ws8c{word-spacing:5.047717pt;}
.ws39{word-spacing:5.100851pt;}
.ws8f{word-spacing:5.207119pt;}
.ws59{word-spacing:5.260253pt;}
.wsf0{word-spacing:5.308109pt;}
.ws40{word-spacing:5.313387pt;}
.wsb5{word-spacing:5.419654pt;}
.ws80{word-spacing:5.440922pt;}
.ws6e{word-spacing:5.472788pt;}
.ws4f{word-spacing:5.579056pt;}
.ws77{word-spacing:5.632190pt;}
.ws70{word-spacing:5.738458pt;}
.ws3f{word-spacing:5.844725pt;}
.ws5d{word-spacing:5.881958pt;}
.wsfe{word-spacing:5.929779pt;}
.wsc1{word-spacing:6.004127pt;}
.wse6{word-spacing:6.025421pt;}
.wsae{word-spacing:6.078530pt;}
.ws6f{word-spacing:6.110395pt;}
.ws11e{word-spacing:6.168883pt;}
.ws52{word-spacing:6.216662pt;}
.ws5c{word-spacing:6.216704pt;}
.ws4c{word-spacing:6.322930pt;}
.ws127{word-spacing:6.360166pt;}
.ws54{word-spacing:6.376064pt;}
.wse7{word-spacing:6.551450pt;}
.wsd9{word-spacing:6.748001pt;}
.ws134{word-spacing:6.790554pt;}
.wsb{word-spacing:6.918010pt;}
.wsde{word-spacing:6.960537pt;}
.ws74{word-spacing:7.119938pt;}
.ws2f{word-spacing:7.173072pt;}
.wsb3{word-spacing:7.226206pt;}
.wsb9{word-spacing:7.332474pt;}
.ws88{word-spacing:7.385607pt;}
.ws12e{word-spacing:7.507866pt;}
.ws131{word-spacing:8.799027pt;}
.ws122{word-spacing:9.372877pt;}
.wsc9{word-spacing:9.510962pt;}
.ws9{word-spacing:10.823338pt;}
.ws113{word-spacing:11.668275pt;}
.ws119{word-spacing:12.911616pt;}
.ws11a{word-spacing:12.943793pt;}
.ws128{word-spacing:13.676749pt;}
.wsa{word-spacing:14.319536pt;}
.ws47{word-spacing:15.780758pt;}
.ws118{word-spacing:16.211251pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
.ws10{word-spacing:35.593054pt;}
.ws111{word-spacing:43.020800pt;}
.ws61{word-spacing:76.442667pt;}
.ws60{word-spacing:76.465459pt;}
.ws5e{word-spacing:88.420659pt;}
.wsac{word-spacing:118.340045pt;}
.wsaa{word-spacing:161.229810pt;}
.wsab{word-spacing:370.875320pt;}
.ws90{word-spacing:531.384613pt;}
.ws5f{word-spacing:936.331264pt;}
._7{margin-left:-10.616218pt;}
._72{margin-left:-8.214468pt;}
._15{margin-left:-6.365441pt;}
._3{margin-left:-5.467459pt;}
._0{margin-left:-4.091296pt;}
._9{margin-left:-2.337896pt;}
._1{margin-left:-1.338970pt;}
._66{width:0.893860pt;}
._4{width:2.045648pt;}
._8{width:3.274908pt;}
._73{width:9.032757pt;}
._5{width:10.295486pt;}
._2{width:11.530016pt;}
._f{width:13.175632pt;}
._14{width:14.133614pt;}
._a{width:15.031619pt;}
._d{width:16.205829pt;}
._c{width:17.119728pt;}
._b{width:18.692610pt;}
._12{width:19.712665pt;}
._19{width:20.924121pt;}
._e{width:22.369358pt;}
._1b{width:24.122775pt;}
._17{width:25.716791pt;}
._6{width:27.188522pt;}
._41{width:28.118438pt;}
._18{width:29.011091pt;}
._75{width:30.233170pt;}
._13{width:32.092855pt;}
._67{width:32.996131pt;}
._16{width:34.430746pt;}
._1a{width:35.976922pt;}
._42{width:38.362652pt;}
._7a{width:40.838963pt;}
._78{width:42.560512pt;}
._77{width:54.993920pt;}
._79{width:57.091138pt;}
._61{width:73.011037pt;}
._76{width:78.904320pt;}
._60{width:86.921443pt;}
._26{width:88.420659pt;}
._6a{width:98.191632pt;}
._1d{width:100.375859pt;}
._4d{width:126.327820pt;}
._43{width:134.280245pt;}
._5e{width:141.707616pt;}
._62{width:144.348362pt;}
._4c{width:145.370958pt;}
._4a{width:163.861359pt;}
._52{width:174.066984pt;}
._70{width:185.543928pt;}
._6d{width:198.806174pt;}
._5f{width:229.744867pt;}
._6b{width:235.404874pt;}
._6e{width:245.774073pt;}
._68{width:249.474757pt;}
._71{width:256.127126pt;}
._65{width:261.768557pt;}
._58{width:264.759393pt;}
._4b{width:272.641181pt;}
._64{width:280.067808pt;}
._6c{width:287.646222pt;}
._63{width:303.946099pt;}
._59{width:307.488528pt;}
._56{width:319.059043pt;}
._45{width:320.315335pt;}
._5b{width:325.775181pt;}
._47{width:347.028781pt;}
._54{width:355.232670pt;}
._5a{width:358.080653pt;}
._34{width:376.110592pt;}
._5c{width:379.848674pt;}
._53{width:394.541191pt;}
._55{width:396.670073pt;}
._51{width:415.844174pt;}
._49{width:419.716093pt;}
._50{width:421.416381pt;}
._1c{width:451.258274pt;}
._35{width:493.893222pt;}
._57{width:495.803981pt;}
._6f{width:507.238418pt;}
._3e{width:550.273933pt;}
._4f{width:552.968204pt;}
._4e{width:572.656998pt;}
._46{width:577.577178pt;}
._5d{width:602.127190pt;}
._22{width:622.818086pt;}
._48{width:636.630334pt;}
._28{width:648.283989pt;}
._2d{width:666.813222pt;}
._3b{width:699.405728pt;}
._30{width:724.846684pt;}
._31{width:736.966349pt;}
._40{width:775.011479pt;}
._2f{width:833.946931pt;}
._37{width:841.072230pt;}
._38{width:885.019546pt;}
._10{width:893.713880pt;}
._23{width:900.083098pt;}
._20{width:915.481395pt;}
._2e{width:944.078234pt;}
._29{width:945.825007pt;}
._32{width:961.198080pt;}
._39{width:962.584883pt;}
._2c{width:965.932326pt;}
._3a{width:978.939597pt;}
._36{width:994.624819pt;}
._3f{width:1012.939238pt;}
._69{width:1015.667037pt;}
._1e{width:1037.328794pt;}
._2b{width:1042.759059pt;}
._1f{width:1055.049018pt;}
._33{width:1060.713165pt;}
._24{width:1064.179354pt;}
._21{width:1076.302746pt;}
._25{width:1088.306409pt;}
._3c{width:1095.048499pt;}
._27{width:1108.224811pt;}
._2a{width:1144.064819pt;}
._3d{width:1222.251827pt;}
._44{width:1322.866571pt;}
._74{width:2286.098400pt;}
._11{width:2307.351733pt;}
.fsc{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs8{font-size:33.219200pt;}
.fs0{font-size:37.193600pt;}
.fsd{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fsb{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:44.292800pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:14.008270pt;}
.y4b{bottom:28.346667pt;}
.yd4{bottom:83.837333pt;}
.y251{bottom:84.324000pt;}
.y1f2{bottom:90.621333pt;}
.y4a{bottom:92.108000pt;}
.y286{bottom:92.892000pt;}
.y1b{bottom:93.018667pt;}
.y9d{bottom:93.688000pt;}
.y1fb{bottom:95.282667pt;}
.y82{bottom:95.681333pt;}
.y136{bottom:97.722667pt;}
.y250{bottom:99.666667pt;}
.yd3{bottom:100.574667pt;}
.y1f1{bottom:107.358667pt;}
.y285{bottom:108.233333pt;}
.y49{bottom:108.844000pt;}
.y1a{bottom:108.920000pt;}
.y9c{bottom:110.425333pt;}
.y210{bottom:110.824000pt;}
.y1b5{bottom:111.056000pt;}
.y1fa{bottom:112.020000pt;}
.y81{bottom:112.418667pt;}
.y134{bottom:114.460000pt;}
.y24f{bottom:115.009333pt;}
.yd2{bottom:117.312000pt;}
.y135{bottom:119.282667pt;}
.y284{bottom:123.576000pt;}
.y1f0{bottom:124.096000pt;}
.y16d{bottom:124.372000pt;}
.y19{bottom:124.820000pt;}
.y48{bottom:125.581333pt;}
.y9b{bottom:127.162667pt;}
.y20f{bottom:127.561333pt;}
.y1b4{bottom:127.793333pt;}
.y1f9{bottom:128.757333pt;}
.y80{bottom:129.156000pt;}
.y24e{bottom:130.352000pt;}
.y133{bottom:131.197333pt;}
.yd1{bottom:134.049333pt;}
.y16c{bottom:134.998667pt;}
.y283{bottom:138.918667pt;}
.y18{bottom:140.720000pt;}
.y1ef{bottom:140.833333pt;}
.y47{bottom:142.318667pt;}
.y9a{bottom:143.900000pt;}
.y20e{bottom:144.298667pt;}
.y1b3{bottom:144.530667pt;}
.y1f8{bottom:145.494667pt;}
.y16b{bottom:145.625333pt;}
.y24d{bottom:145.693333pt;}
.y7f{bottom:145.893333pt;}
.y132{bottom:147.934667pt;}
.y21c{bottom:148.364000pt;}
.yd0{bottom:150.786667pt;}
.y282{bottom:154.261333pt;}
.y16a{bottom:156.252000pt;}
.y17{bottom:156.621333pt;}
.y1ee{bottom:157.570667pt;}
.y46{bottom:159.056000pt;}
.y20d{bottom:161.036000pt;}
.y1b2{bottom:161.268000pt;}
.y1f7{bottom:162.232000pt;}
.y7e{bottom:162.630667pt;}
.y21b{bottom:163.985333pt;}
.y99{bottom:164.622667pt;}
.y131{bottom:164.672000pt;}
.y169{bottom:166.878667pt;}
.ycf{bottom:167.524000pt;}
.y281{bottom:169.604000pt;}
.y16{bottom:172.521333pt;}
.y1ed{bottom:174.308000pt;}
.y45{bottom:175.793333pt;}
.y24c{bottom:176.378667pt;}
.y168{bottom:177.505333pt;}
.y20c{bottom:177.773333pt;}
.y1b1{bottom:178.005333pt;}
.yef{bottom:178.969333pt;}
.y7d{bottom:179.368000pt;}
.y21a{bottom:179.606667pt;}
.y130{bottom:181.409333pt;}
.yce{bottom:184.261333pt;}
.y280{bottom:184.946667pt;}
.y167{bottom:188.132000pt;}
.y15{bottom:188.421333pt;}
.y1ec{bottom:191.045333pt;}
.y24b{bottom:191.721333pt;}
.y44{bottom:192.530667pt;}
.y98{bottom:194.510667pt;}
.y1b0{bottom:194.742667pt;}
.yee{bottom:195.706667pt;}
.y7c{bottom:196.105333pt;}
.y12f{bottom:198.146667pt;}
.y166{bottom:198.758667pt;}
.y27f{bottom:200.289333pt;}
.ycd{bottom:200.998667pt;}
.y219{bottom:203.198667pt;}
.y14{bottom:204.322667pt;}
.y24a{bottom:207.064000pt;}
.y1eb{bottom:207.782667pt;}
.y43{bottom:209.268000pt;}
.y165{bottom:209.385333pt;}
.y97{bottom:211.248000pt;}
.y1af{bottom:211.480000pt;}
.yed{bottom:212.444000pt;}
.y7b{bottom:212.841333pt;}
.y12e{bottom:214.884000pt;}
.y27e{bottom:215.632000pt;}
.ycc{bottom:217.736000pt;}
.y218{bottom:218.820000pt;}
.y164{bottom:220.013333pt;}
.y249{bottom:222.406667pt;}
.y1ea{bottom:224.520000pt;}
.y42{bottom:226.005333pt;}
.y96{bottom:227.985333pt;}
.y1ae{bottom:228.217333pt;}
.yec{bottom:229.181333pt;}
.y7a{bottom:229.578667pt;}
.y163{bottom:230.640000pt;}
.y27d{bottom:230.974667pt;}
.y217{bottom:234.441333pt;}
.ycb{bottom:234.472000pt;}
.y248{bottom:237.749333pt;}
.y1e9{bottom:241.257333pt;}
.y162{bottom:241.266667pt;}
.y41{bottom:242.742667pt;}
.y95{bottom:244.722667pt;}
.y1ad{bottom:244.954667pt;}
.yeb{bottom:245.918667pt;}
.y79{bottom:246.316000pt;}
.y216{bottom:250.062667pt;}
.y12d{bottom:250.558667pt;}
.yca{bottom:251.209333pt;}
.y161{bottom:251.893333pt;}
.y247{bottom:253.092000pt;}
.y1e8{bottom:257.994667pt;}
.y40{bottom:259.480000pt;}
.y94{bottom:261.460000pt;}
.y27c{bottom:261.658667pt;}
.y1ac{bottom:261.692000pt;}
.y160{bottom:262.520000pt;}
.yea{bottom:262.656000pt;}
.y78{bottom:263.053333pt;}
.y12b{bottom:263.177333pt;}
.y215{bottom:265.684000pt;}
.y13{bottom:266.804000pt;}
.y12c{bottom:267.034667pt;}
.yc9{bottom:267.946667pt;}
.y246{bottom:268.434667pt;}
.y15f{bottom:273.146667pt;}
.y1e7{bottom:274.732000pt;}
.y129{bottom:275.797333pt;}
.y3f{bottom:276.217333pt;}
.y27b{bottom:277.001333pt;}
.y93{bottom:278.197333pt;}
.y1ab{bottom:278.429333pt;}
.ye9{bottom:279.393333pt;}
.y12a{bottom:279.654667pt;}
.y77{bottom:279.790667pt;}
.y214{bottom:281.305333pt;}
.y12{bottom:282.705333pt;}
.y15e{bottom:283.773333pt;}
.y245{bottom:283.776000pt;}
.yc8{bottom:284.684000pt;}
.y127{bottom:288.416000pt;}
.y1e6{bottom:291.469333pt;}
.y128{bottom:292.273333pt;}
.y27a{bottom:292.344000pt;}
.y3e{bottom:292.954667pt;}
.y15d{bottom:294.400000pt;}
.y92{bottom:294.934667pt;}
.ye8{bottom:296.129333pt;}
.y76{bottom:296.528000pt;}
.y11{bottom:298.605333pt;}
.y244{bottom:299.118667pt;}
.y1aa{bottom:299.152000pt;}
.y126{bottom:301.036000pt;}
.y279{bottom:307.686667pt;}
.y1e5{bottom:308.206667pt;}
.y3d{bottom:309.692000pt;}
.y15c{bottom:311.429333pt;}
.y91{bottom:311.672000pt;}
.ye7{bottom:312.866667pt;}
.y75{bottom:313.265333pt;}
.y125{bottom:313.654667pt;}
.y243{bottom:314.461333pt;}
.y10{bottom:314.505333pt;}
.y15b{bottom:316.742667pt;}
.yc7{bottom:320.358667pt;}
.y278{bottom:323.029333pt;}
.y1e4{bottom:324.944000pt;}
.y124{bottom:326.274667pt;}
.y3c{bottom:326.429333pt;}
.y90{bottom:328.409333pt;}
.ye6{bottom:329.604000pt;}
.y242{bottom:329.804000pt;}
.y74{bottom:330.002667pt;}
.y1a9{bottom:332.036000pt;}
.yc6{bottom:332.978667pt;}
.y277{bottom:338.372000pt;}
.yf{bottom:338.376000pt;}
.y123{bottom:338.893333pt;}
.y1e3{bottom:341.681333pt;}
.y3b{bottom:343.166667pt;}
.y1a8{bottom:344.656000pt;}
.y8f{bottom:345.146667pt;}
.ye5{bottom:346.341333pt;}
.y73{bottom:346.740000pt;}
.yc5{bottom:349.728000pt;}
.y15a{bottom:350.029333pt;}
.y122{bottom:351.513333pt;}
.y276{bottom:353.714667pt;}
.ye{bottom:354.277333pt;}
.y1a7{bottom:357.274667pt;}
.y1e2{bottom:358.418667pt;}
.y3a{bottom:359.904000pt;}
.y241{bottom:360.489333pt;}
.y8e{bottom:361.884000pt;}
.ye4{bottom:363.078667pt;}
.y72{bottom:363.477333pt;}
.y121{bottom:364.132000pt;}
.yc4{bottom:364.340000pt;}
.y211{bottom:367.064000pt;}
.y120{bottom:367.989333pt;}
.y275{bottom:369.056000pt;}
.y1a6{bottom:369.894667pt;}
.yd{bottom:370.177333pt;}
.y159{bottom:374.237333pt;}
.y1e1{bottom:375.156000pt;}
.y240{bottom:375.832000pt;}
.y39{bottom:376.641333pt;}
.y8d{bottom:378.621333pt;}
.yc3{bottom:378.952000pt;}
.ye3{bottom:379.816000pt;}
.y71{bottom:380.214667pt;}
.y1a5{bottom:382.513333pt;}
.y274{bottom:384.398667pt;}
.y11f{bottom:384.633333pt;}
.y158{bottom:390.974667pt;}
.y23f{bottom:391.174667pt;}
.y1e0{bottom:391.893333pt;}
.yc2{bottom:393.564000pt;}
.y1a4{bottom:395.133333pt;}
.y8c{bottom:395.358667pt;}
.yc{bottom:395.376000pt;}
.ye2{bottom:396.553333pt;}
.y70{bottom:396.952000pt;}
.y11e{bottom:397.253333pt;}
.y38{bottom:397.364000pt;}
.y273{bottom:399.741333pt;}
.y23e{bottom:406.516000pt;}
.y157{bottom:407.712000pt;}
.y1a3{bottom:407.752000pt;}
.yc1{bottom:408.176000pt;}
.y1df{bottom:408.630667pt;}
.yb{bottom:411.276000pt;}
.y8b{bottom:412.096000pt;}
.ye1{bottom:413.290667pt;}
.y6f{bottom:413.689333pt;}
.y272{bottom:415.084000pt;}
.y11d{bottom:416.821333pt;}
.y1a2{bottom:420.372000pt;}
.y23d{bottom:421.858667pt;}
.yc0{bottom:422.788000pt;}
.y156{bottom:424.449333pt;}
.y1de{bottom:425.368000pt;}
.y8a{bottom:428.833333pt;}
.y11c{bottom:429.441333pt;}
.ye0{bottom:430.028000pt;}
.y6e{bottom:430.426667pt;}
.y1a1{bottom:432.990667pt;}
.ya{bottom:435.146667pt;}
.y23c{bottom:437.201333pt;}
.ybf{bottom:437.398667pt;}
.y155{bottom:441.186667pt;}
.y1dd{bottom:442.105333pt;}
.y89{bottom:445.570667pt;}
.y1a0{bottom:445.610667pt;}
.y271{bottom:445.769333pt;}
.ydf{bottom:446.765333pt;}
.y6d{bottom:447.164000pt;}
.y11b{bottom:449.009333pt;}
.y9{bottom:451.048000pt;}
.ybe{bottom:452.010667pt;}
.y23b{bottom:452.544000pt;}
.y154{bottom:457.924000pt;}
.y19f{bottom:458.229333pt;}
.y1dc{bottom:458.842667pt;}
.y270{bottom:461.112000pt;}
.y11a{bottom:461.629333pt;}
.y88{bottom:462.306667pt;}
.yde{bottom:463.502667pt;}
.y6c{bottom:463.901333pt;}
.y37{bottom:464.164000pt;}
.ybd{bottom:466.622667pt;}
.y8{bottom:466.948000pt;}
.y23a{bottom:467.886667pt;}
.y19e{bottom:470.849333pt;}
.y153{bottom:472.234667pt;}
.y152{bottom:474.661333pt;}
.y1db{bottom:475.580000pt;}
.y26f{bottom:476.454667pt;}
.y87{bottom:479.044000pt;}
.ydd{bottom:480.240000pt;}
.y6b{bottom:480.638667pt;}
.y119{bottom:480.650667pt;}
.ybc{bottom:481.234667pt;}
.y36{bottom:481.458667pt;}
.y7{bottom:482.848000pt;}
.y239{bottom:483.229333pt;}
.y19d{bottom:483.468000pt;}
.y19c{bottom:487.325333pt;}
.y151{bottom:491.398667pt;}
.y26e{bottom:491.797333pt;}
.y1da{bottom:492.316000pt;}
.y118{bottom:493.269333pt;}
.y86{bottom:495.781333pt;}
.ybb{bottom:495.846667pt;}
.ydc{bottom:496.977333pt;}
.y6a{bottom:497.376000pt;}
.y238{bottom:498.572000pt;}
.y6{bottom:498.749333pt;}
.y19b{bottom:503.372000pt;}
.y117{bottom:505.889333pt;}
.y26d{bottom:507.138667pt;}
.y150{bottom:508.136000pt;}
.y1d9{bottom:509.053333pt;}
.yba{bottom:510.458667pt;}
.y85{bottom:512.518667pt;}
.ydb{bottom:513.714667pt;}
.y237{bottom:513.914667pt;}
.y19a{bottom:513.998667pt;}
.y69{bottom:514.113333pt;}
.y5{bottom:514.649333pt;}
.y35{bottom:514.694667pt;}
.y116{bottom:518.508000pt;}
.y26c{bottom:522.481333pt;}
.y199{bottom:524.625333pt;}
.y14f{bottom:524.873333pt;}
.yb9{bottom:525.070667pt;}
.y20b{bottom:529.256000pt;}
.y236{bottom:529.257333pt;}
.y1d8{bottom:529.776000pt;}
.yda{bottom:530.452000pt;}
.y4{bottom:530.549333pt;}
.y68{bottom:530.850667pt;}
.y115{bottom:531.128000pt;}
.y34{bottom:531.989333pt;}
.y84{bottom:533.241333pt;}
.y198{bottom:535.252000pt;}
.y26b{bottom:537.824000pt;}
.yb8{bottom:539.682667pt;}
.y14e{bottom:541.610667pt;}
.y10f{bottom:542.836000pt;}
.y114{bottom:543.746667pt;}
.y235{bottom:544.598667pt;}
.y197{bottom:545.878667pt;}
.y20a{bottom:545.993333pt;}
.y3{bottom:546.450667pt;}
.yd9{bottom:547.189333pt;}
.y67{bottom:547.588000pt;}
.y1d7{bottom:547.709333pt;}
.y33{bottom:549.284000pt;}
.y83{bottom:551.174667pt;}
.y26a{bottom:553.166667pt;}
.yb7{bottom:554.294667pt;}
.y113{bottom:556.366667pt;}
.y196{bottom:556.505333pt;}
.y234{bottom:559.941333pt;}
.y14d{bottom:562.332000pt;}
.y2{bottom:562.350667pt;}
.y209{bottom:562.730667pt;}
.yd8{bottom:563.926667pt;}
.y66{bottom:564.325333pt;}
.y32{bottom:566.580000pt;}
.y195{bottom:567.133333pt;}
.y269{bottom:568.509333pt;}
.yb6{bottom:568.906667pt;}
.y112{bottom:568.985333pt;}
.y233{bottom:575.284000pt;}
.y194{bottom:577.760000pt;}
.y1{bottom:578.250667pt;}
.y208{bottom:579.468000pt;}
.y1d6{bottom:580.593333pt;}
.yd7{bottom:580.664000pt;}
.y65{bottom:581.062667pt;}
.y111{bottom:581.605333pt;}
.yb5{bottom:583.517333pt;}
.y268{bottom:583.852000pt;}
.y31{bottom:583.874667pt;}
.y193{bottom:588.386667pt;}
.y232{bottom:590.626667pt;}
.y14c{bottom:592.220000pt;}
.y1d5{bottom:593.213333pt;}
.y110{bottom:594.224000pt;}
.y207{bottom:596.205333pt;}
.yd6{bottom:597.401333pt;}
.y64{bottom:597.800000pt;}
.yb4{bottom:598.129333pt;}
.y192{bottom:599.013333pt;}
.y267{bottom:599.194667pt;}
.y30{bottom:601.169333pt;}
.y1d3{bottom:605.832000pt;}
.y231{bottom:605.969333pt;}
.y14b{bottom:608.957333pt;}
.y191{bottom:609.640000pt;}
.y1d4{bottom:609.689333pt;}
.yb3{bottom:612.741333pt;}
.y206{bottom:612.942667pt;}
.y10e{bottom:613.245333pt;}
.y1f6{bottom:614.138667pt;}
.y63{bottom:614.537333pt;}
.yd5{bottom:618.124000pt;}
.y1d2{bottom:618.452000pt;}
.y2f{bottom:618.465333pt;}
.y190{bottom:620.266667pt;}
.y230{bottom:621.312000pt;}
.y10b{bottom:624.792000pt;}
.y14a{bottom:625.694667pt;}
.y10d{bottom:625.865333pt;}
.yb2{bottom:627.353333pt;}
.y205{bottom:629.680000pt;}
.y266{bottom:629.878667pt;}
.y1f5{bottom:630.876000pt;}
.y18f{bottom:630.893333pt;}
.y1d0{bottom:631.070667pt;}
.y62{bottom:631.274667pt;}
.y1d1{bottom:634.928000pt;}
.y2e{bottom:635.760000pt;}
.y22f{bottom:636.654667pt;}
.y10c{bottom:638.484000pt;}
.y18e{bottom:641.520000pt;}
.yb1{bottom:641.965333pt;}
.y149{bottom:642.432000pt;}
.y1cf{bottom:643.690667pt;}
.y265{bottom:645.221333pt;}
.y204{bottom:646.417333pt;}
.y1f4{bottom:647.613333pt;}
.y61{bottom:648.012000pt;}
.y22e{bottom:651.997333pt;}
.y18d{bottom:652.146667pt;}
.y2d{bottom:653.056000pt;}
.y1ce{bottom:656.309333pt;}
.yb0{bottom:656.577333pt;}
.y10a{bottom:657.505333pt;}
.y148{bottom:659.169333pt;}
.y264{bottom:660.564000pt;}
.y18c{bottom:662.774667pt;}
.y203{bottom:663.154667pt;}
.y60{bottom:664.749333pt;}
.y22d{bottom:667.338667pt;}
.y1f3{bottom:668.334667pt;}
.y1cd{bottom:668.929333pt;}
.y109{bottom:670.125333pt;}
.y2c{bottom:670.350667pt;}
.yaf{bottom:671.189333pt;}
.y18b{bottom:673.401333pt;}
.y147{bottom:675.906667pt;}
.y202{bottom:679.892000pt;}
.y5f{bottom:681.485333pt;}
.y1cc{bottom:681.548000pt;}
.y108{bottom:682.744000pt;}
.y105{bottom:683.217333pt;}
.y18a{bottom:684.028000pt;}
.yae{bottom:685.801333pt;}
.y22c{bottom:686.666667pt;}
.y2b{bottom:687.645333pt;}
.y263{bottom:691.249333pt;}
.y146{bottom:692.644000pt;}
.y1cb{bottom:694.168000pt;}
.y189{bottom:694.654667pt;}
.y107{bottom:695.364000pt;}
.y201{bottom:696.629333pt;}
.y1ca{bottom:698.025333pt;}
.y5e{bottom:698.222667pt;}
.yad{bottom:700.413333pt;}
.y188{bottom:705.281333pt;}
.y262{bottom:706.592000pt;}
.y1c9{bottom:706.786667pt;}
.y106{bottom:707.982667pt;}
.y145{bottom:709.381333pt;}
.y200{bottom:713.366667pt;}
.y5d{bottom:714.960000pt;}
.yac{bottom:715.025333pt;}
.y187{bottom:715.908000pt;}
.y22b{bottom:716.554667pt;}
.y2a{bottom:718.489333pt;}
.y1c8{bottom:719.406667pt;}
.y261{bottom:721.934667pt;}
.y1c7{bottom:723.264000pt;}
.y144{bottom:726.118667pt;}
.y186{bottom:726.534667pt;}
.y104{bottom:727.004000pt;}
.yab{bottom:729.637333pt;}
.y1ff{bottom:730.104000pt;}
.y5c{bottom:731.697333pt;}
.y22a{bottom:732.176000pt;}
.y29{bottom:732.836000pt;}
.y185{bottom:737.161333pt;}
.y260{bottom:737.277333pt;}
.y103{bottom:739.624000pt;}
.y1c6{bottom:739.908000pt;}
.y143{bottom:742.856000pt;}
.yaa{bottom:744.248000pt;}
.y1fe{bottom:746.841333pt;}
.y28{bottom:747.182667pt;}
.y184{bottom:747.788000pt;}
.y229{bottom:747.797333pt;}
.y5b{bottom:748.434667pt;}
.y102{bottom:752.242667pt;}
.y1c5{bottom:752.526667pt;}
.y25f{bottom:752.620000pt;}
.y183{bottom:758.416000pt;}
.ya9{bottom:758.860000pt;}
.y142{bottom:759.593333pt;}
.y101{bottom:764.862667pt;}
.y5a{bottom:765.172000pt;}
.y27{bottom:765.386667pt;}
.y1c4{bottom:765.693333pt;}
.y1fd{bottom:767.564000pt;}
.y25e{bottom:767.961333pt;}
.y182{bottom:769.042667pt;}
.y228{bottom:771.389333pt;}
.ya8{bottom:773.472000pt;}
.y26{bottom:775.874667pt;}
.y141{bottom:776.330667pt;}
.y100{bottom:777.481333pt;}
.y1c3{bottom:778.860000pt;}
.y213{bottom:779.482667pt;}
.y181{bottom:779.669333pt;}
.y59{bottom:781.909333pt;}
.y25d{bottom:783.304000pt;}
.y1fc{bottom:785.496000pt;}
.yfa{bottom:786.034667pt;}
.y227{bottom:787.010667pt;}
.ya7{bottom:788.084000pt;}
.yff{bottom:790.101333pt;}
.y180{bottom:790.296000pt;}
.y1c2{bottom:791.480000pt;}
.y140{bottom:793.068000pt;}
.y25{bottom:794.078667pt;}
.y58{bottom:798.646667pt;}
.y17f{bottom:800.922667pt;}
.y226{bottom:802.632000pt;}
.ya6{bottom:802.696000pt;}
.yfe{bottom:802.720000pt;}
.y1c1{bottom:804.098667pt;}
.y24{bottom:808.425333pt;}
.y13f{bottom:809.805333pt;}
.y17e{bottom:811.549333pt;}
.y25c{bottom:813.989333pt;}
.yfd{bottom:815.340000pt;}
.y57{bottom:815.384000pt;}
.y1c0{bottom:816.718667pt;}
.ya5{bottom:817.308000pt;}
.y225{bottom:818.253333pt;}
.y17d{bottom:822.176000pt;}
.yfc{bottom:827.958667pt;}
.y25b{bottom:829.332000pt;}
.y1bf{bottom:829.337333pt;}
.y13e{bottom:830.528000pt;}
.ya4{bottom:831.920000pt;}
.y56{bottom:832.121333pt;}
.y17c{bottom:832.802667pt;}
.y224{bottom:833.874667pt;}
.yfb{bottom:840.578667pt;}
.y1be{bottom:841.957333pt;}
.y17b{bottom:843.429333pt;}
.y25a{bottom:844.674667pt;}
.y23{bottom:844.682667pt;}
.y212{bottom:846.432000pt;}
.ya3{bottom:846.532000pt;}
.y13d{bottom:848.460000pt;}
.y55{bottom:848.858667pt;}
.y17a{bottom:854.057333pt;}
.y1bd{bottom:854.576000pt;}
.y223{bottom:857.466667pt;}
.yf9{bottom:859.600000pt;}
.y259{bottom:860.017333pt;}
.y176{bottom:860.698667pt;}
.ya2{bottom:861.144000pt;}
.y22{bottom:861.420000pt;}
.y179{bottom:864.684000pt;}
.y54{bottom:865.596000pt;}
.y1bc{bottom:867.196000pt;}
.y175{bottom:871.325333pt;}
.yf8{bottom:872.220000pt;}
.y222{bottom:873.088000pt;}
.y178{bottom:875.310667pt;}
.y258{bottom:875.360000pt;}
.ya1{bottom:875.756000pt;}
.y13c{bottom:878.348000pt;}
.y1bb{bottom:879.814667pt;}
.y174{bottom:881.952000pt;}
.y53{bottom:882.333333pt;}
.yf7{bottom:884.838667pt;}
.y177{bottom:885.937333pt;}
.y287{bottom:890.701333pt;}
.y257{bottom:890.702667pt;}
.y1ba{bottom:892.434667pt;}
.y13b{bottom:895.085333pt;}
.y173{bottom:896.564000pt;}
.y221{bottom:896.680000pt;}
.ya0{bottom:896.769333pt;}
.y21{bottom:896.904000pt;}
.yf6{bottom:897.458667pt;}
.yf2{bottom:897.769333pt;}
.y52{bottom:899.070667pt;}
.y1b9{bottom:905.053333pt;}
.y256{bottom:906.044000pt;}
.y172{bottom:907.190667pt;}
.yf5{bottom:910.077333pt;}
.y13a{bottom:911.822667pt;}
.y220{bottom:912.301333pt;}
.y51{bottom:915.808000pt;}
.y171{bottom:917.817333pt;}
.y255{bottom:921.386667pt;}
.y20{bottom:922.010667pt;}
.yf4{bottom:922.697333pt;}
.y1b8{bottom:924.622667pt;}
.y9f{bottom:924.876000pt;}
.y170{bottom:928.444000pt;}
.y139{bottom:928.560000pt;}
.y50{bottom:932.545333pt;}
.yf3{bottom:935.316000pt;}
.y21f{bottom:935.893333pt;}
.y254{bottom:936.729333pt;}
.y1b7{bottom:937.241333pt;}
.y9e{bottom:941.972000pt;}
.y138{bottom:945.297333pt;}
.y16f{bottom:945.473333pt;}
.y1f{bottom:947.116000pt;}
.y4f{bottom:949.282667pt;}
.y16e{bottom:950.786667pt;}
.y21e{bottom:951.514667pt;}
.y253{bottom:952.072000pt;}
.yf1{bottom:954.521333pt;}
.y137{bottom:962.034667pt;}
.y4e{bottom:966.020000pt;}
.y1b6{bottom:966.977333pt;}
.y21d{bottom:967.136000pt;}
.y252{bottom:967.414667pt;}
.y1e{bottom:972.222667pt;}
.y4d{bottom:982.757333pt;}
.yf0{bottom:984.073333pt;}
.y1c{bottom:1010.877333pt;}
.y4c{bottom:1038.548000pt;}
.h1a{height:22.123987pt;}
.ha{height:23.209028pt;}
.hc{height:23.374407pt;}
.h9{height:23.379740pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h1c{height:28.023859pt;}
.h1d{height:29.397999pt;}
.h19{height:29.499005pt;}
.h21{height:30.732706pt;}
.hb{height:30.945242pt;}
.h12{height:31.157778pt;}
.h20{height:32.706559pt;}
.h1f{height:32.711893pt;}
.he{height:34.574438pt;}
.hf{height:34.813542pt;}
.h15{height:35.052646pt;}
.h1b{height:36.873667pt;}
.h17{height:37.553321pt;}
.h16{height:37.742959pt;}
.h10{height:38.415786pt;}
.h22{height:38.478959pt;}
.h18{height:38.638362pt;}
.h11{height:38.681455pt;}
.hd{height:38.809074pt;}
.h6{height:38.947124pt;}
.h14{height:43.660390pt;}
.h4{height:45.271688pt;}
.h1e{height:48.144306pt;}
.h8{height:48.486756pt;}
.h13{height:48.511220pt;}
.h7{height:69.148877pt;}
.h5{height:91.114522pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:129.623174pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x2{left:54.965541pt;}
.xd0{left:76.309333pt;}
.x65{left:79.817333pt;}
.xd4{left:112.138667pt;}
.x54{left:134.017333pt;}
.x6b{left:162.466667pt;}
.x67{left:163.358667pt;}
.xd5{left:168.721333pt;}
.xd6{left:200.126667pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x62{left:225.886667pt;}
.x6c{left:228.670667pt;}
.x56{left:230.202667pt;}
.x49{left:235.988000pt;}
.x5{left:239.392000pt;}
.x9{left:250.204000pt;}
.xb9{left:254.494667pt;}
.xca{left:257.077333pt;}
.xa{left:259.360000pt;}
.x1d{left:262.285333pt;}
.xb{left:266.001333pt;}
.x69{left:266.990667pt;}
.x63{left:270.466667pt;}
.x7{left:273.913333pt;}
.x1e{left:275.569333pt;}
.xce{left:277.417333pt;}
.x10{left:280.164000pt;}
.x8{left:284.338667pt;}
.x11{left:286.806667pt;}
.x44{left:287.833333pt;}
.xba{left:291.224000pt;}
.x18{left:292.982667pt;}
.xa1{left:293.961333pt;}
.x40{left:296.917333pt;}
.xc{left:297.886667pt;}
.x19{left:299.624000pt;}
.x94{left:300.893333pt;}
.xd{left:304.528000pt;}
.xe{left:307.916000pt;}
.xa2{left:310.538667pt;}
.x9b{left:312.126667pt;}
.x41{left:313.588000pt;}
.xf{left:314.557333pt;}
.x84{left:316.685333pt;}
.x95{left:317.988000pt;}
.xbe{left:320.314667pt;}
.x90{left:321.770667pt;}
.xa3{left:323.822667pt;}
.x3e{left:324.856000pt;}
.x91{left:328.392000pt;}
.x85{left:329.968000pt;}
.x86{left:333.332000pt;}
.xa7{left:335.349333pt;}
.x99{left:336.964000pt;}
.x3f{left:338.140000pt;}
.x82{left:339.194667pt;}
.x92{left:341.676000pt;}
.x23{left:343.072000pt;}
.xa8{left:344.110667pt;}
.x9c{left:345.468000pt;}
.x87{left:346.616000pt;}
.x96{left:350.302667pt;}
.x73{left:351.296000pt;}
.x83{left:352.477333pt;}
.x9d{left:354.740000pt;}
.x24{left:356.354667pt;}
.xa9{left:357.393333pt;}
.x74{left:359.089333pt;}
.x25{left:363.129333pt;}
.x97{left:366.973333pt;}
.x4a{left:368.049333pt;}
.x64{left:370.124000pt;}
.xa0{left:371.746667pt;}
.xc8{left:375.214667pt;}
.x26{left:376.413333pt;}
.x98{left:380.257333pt;}
.x4b{left:381.332000pt;}
.x4c{left:384.642667pt;}
.xc9{left:388.098667pt;}
.x78{left:389.825333pt;}
.xcf{left:390.920000pt;}
.x36{left:392.313333pt;}
.xc3{left:395.205333pt;}
.x4d{left:397.926667pt;}
.x57{left:400.310667pt;}
.x79{left:403.108000pt;}
.x4e{left:404.548000pt;}
.x2c{left:406.028000pt;}
.x37{left:408.978667pt;}
.x58{left:411.704000pt;}
.x5e{left:415.990667pt;}
.x4f{left:417.832000pt;}
.x2d{left:419.312000pt;}
.x5f{left:420.906667pt;}
.x2e{left:422.700000pt;}
.xb5{left:428.937333pt;}
.x42{left:432.876000pt;}
.xaa{left:434.088000pt;}
.x2f{left:435.982667pt;}
.xbc{left:436.949333pt;}
.xc1{left:439.809333pt;}
.xb6{left:442.221333pt;}
.x68{left:443.925333pt;}
.x43{left:446.158667pt;}
.xb2{left:448.258667pt;}
.xbd{left:450.232000pt;}
.xc2{left:453.092000pt;}
.xc6{left:457.701333pt;}
.xbb{left:459.801333pt;}
.xb3{left:461.542667pt;}
.xc4{left:468.964000pt;}
.x6a{left:471.641333pt;}
.x60{left:472.902667pt;}
.x9e{left:481.454667pt;}
.x3c{left:485.084000pt;}
.xaf{left:486.818667pt;}
.x3a{left:487.825333pt;}
.x21{left:490.700000pt;}
.x9f{left:494.737333pt;}
.x61{left:497.136000pt;}
.x3d{left:498.368000pt;}
.x7f{left:499.957333pt;}
.x3b{left:501.108000pt;}
.x22{left:503.982667pt;}
.x76{left:507.409333pt;}
.x59{left:511.009333pt;}
.x80{left:512.444000pt;}
.xab{left:513.478667pt;}
.x55{left:519.641333pt;}
.x77{left:520.693333pt;}
.xac{left:526.762667pt;}
.x14{left:527.968000pt;}
.xcb{left:531.429333pt;}
.x9a{left:533.577333pt;}
.x15{left:534.609333pt;}
.xcc{left:537.412000pt;}
.x5a{left:544.020000pt;}
.x5b{left:552.289333pt;}
.x16{left:554.492000pt;}
.x66{left:556.878667pt;}
.x17{left:561.134667pt;}
.x12{left:562.724000pt;}
.xb4{left:567.272000pt;}
.x1c{left:568.168000pt;}
.x13{left:569.366667pt;}
.xcd{left:572.870667pt;}
.x38{left:574.134667pt;}
.x8a{left:575.976000pt;}
.x30{left:580.594667pt;}
.x88{left:583.450667pt;}
.xe0{left:585.437333pt;}
.x6d{left:591.940000pt;}
.x31{left:593.877333pt;}
.xde{left:595.445333pt;}
.x89{left:596.733333pt;}
.x1f{left:600.382667pt;}
.x6e{left:604.322667pt;}
.x50{left:607.712000pt;}
.x8d{left:609.857333pt;}
.x51{left:611.100000pt;}
.x45{left:612.602667pt;}
.x20{left:613.665333pt;}
.x75{left:615.152000pt;}
.xa4{left:616.190667pt;}
.xdf{left:619.356000pt;}
.xd1{left:621.102667pt;}
.x28{left:623.906667pt;}
.x46{left:625.886667pt;}
.x7a{left:627.305333pt;}
.x47{left:629.154667pt;}
.x52{left:631.157333pt;}
.xa5{left:632.728000pt;}
.x8e{left:633.785333pt;}
.xb0{left:635.077333pt;}
.x29{left:637.190667pt;}
.x7b{left:640.588000pt;}
.x48{left:642.437333pt;}
.x53{left:644.441333pt;}
.xa6{left:646.012000pt;}
.x8f{left:647.069333pt;}
.xb1{left:648.361333pt;}
.xad{left:649.946667pt;}
.xd7{left:652.448000pt;}
.xdb{left:654.708000pt;}
.xd9{left:655.990667pt;}
.x7c{left:657.129333pt;}
.x7d{left:660.388000pt;}
.xae{left:663.229333pt;}
.xdc{left:665.184000pt;}
.xb7{left:666.530667pt;}
.x2a{left:672.316000pt;}
.x7e{left:673.670667pt;}
.xd8{left:676.358667pt;}
.xc7{left:678.602667pt;}
.x32{left:680.412000pt;}
.xb8{left:683.201333pt;}
.x2b{left:685.600000pt;}
.xd2{left:687.601333pt;}
.xdd{left:689.093333pt;}
.x33{left:693.696000pt;}
.xbf{left:694.756000pt;}
.x5c{left:696.009333pt;}
.x34{left:697.082667pt;}
.x6f{left:700.113333pt;}
.x8b{left:701.334667pt;}
.x5d{left:703.328000pt;}
.xc0{left:708.040000pt;}
.x35{left:710.366667pt;}
.x70{left:711.508000pt;}
.x8c{left:714.617333pt;}
.xc5{left:715.894667pt;}
.x71{left:716.898667pt;}
.xda{left:720.313333pt;}
.x93{left:723.233333pt;}
.x72{left:724.668000pt;}
.x39{left:726.842667pt;}
.x27{left:727.905333pt;}
.x1a{left:733.732000pt;}
.x1b{left:740.373333pt;}
.x81{left:741.365333pt;}
.xd3{left:744.185333pt;}
}




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