
    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_71777998fca2c077cf1b817c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_5003385e03b19f561c4c0370.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_525253a16e3fa6c47ecd7caa.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_dfaaf7bcc5f63e4318598338.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_6f3f992d8fbc606d611165b4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.096680;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_dc31146caa6c89ad17a74b54.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_4f01ec4d3469c7bb6f2e2592.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_d8b52af52e6538bf19f71e76.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a03978ddaeb8a399b0cc1fa6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c312226def61bfd133deb975.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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:ffb;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_05c2c7ec099e2aea10fb54b6.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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:ffd;src:url('chunks/assets/font_1ecde444cf9a4ea77c3a1f9a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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:ffe;src:url('chunks/assets/font_7121a1f70a82d2e717df6e64.woff')format("woff");}.ffe{font-family:ffe;line-height:1.053223;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:fff;src:url('chunks/assets/font_c385416b49466da11520b524.woff')format("woff");}.fff{font-family:fff;line-height:1.053223;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;}
.ma{transform:matrix(0.000000,-0.250939,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250939,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250939,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.281370,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.281370,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.281370,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.269792,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.269792,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.269792,0.250000,0.000000,0,0);}
.m1c{transform:matrix(0.000000,-0.249793,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249793,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249793,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.250616,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250616,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250616,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.250558,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250558,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250558,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.250514,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250514,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250514,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.249725,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249725,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249725,0.250000,0.000000,0,0);}
.m1a{transform:matrix(0.000000,-0.249766,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249766,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249766,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.250653,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250653,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250653,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.250230,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250230,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250230,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.222127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222127,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.231660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231660,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249065,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249349,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249487,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249770,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);}
.m1b{transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v5{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.lsf{letter-spacing:-0.684000px;}
.ls8{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.038880px;}
.ls9{letter-spacing:-0.000720px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.022320px;}
.ls2{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.054720px;}
.ls0{letter-spacing:0.109200px;}
.ls17{letter-spacing:0.165277px;}
.ls22{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.190252px;}
.ls14{letter-spacing:0.195700px;}
.ls19{letter-spacing:0.207942px;}
.ls7{letter-spacing:0.245400px;}
.lsc{letter-spacing:0.245520px;}
.ls1c{letter-spacing:0.468000px;}
.lsd{letter-spacing:0.471600px;}
.ls10{letter-spacing:0.479400px;}
.ls1a{letter-spacing:0.493200px;}
.ls11{letter-spacing:0.590400px;}
.ls4{letter-spacing:0.637200px;}
.ls1d{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.702000px;}
.ls3{letter-spacing:0.734476px;}
.ls1f{letter-spacing:0.756000px;}
.lsa{letter-spacing:0.852000px;}
.ls16{letter-spacing:0.858000px;}
.ls1e{letter-spacing:3.636000px;}
.ls20{letter-spacing:33.156000px;}
.ls13{letter-spacing:40.986720px;}
.ls21{letter-spacing:49.716000px;}
.ls12{letter-spacing:63.306720px;}
.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;}
}
.ws7{word-spacing:-18.532800px;}
.ws6{word-spacing:-18.532080px;}
.wsa{word-spacing:-16.272000px;}
.ws17{word-spacing:-14.363760px;}
.ws22{word-spacing:-14.308887px;}
.ws24{word-spacing:-13.998960px;}
.wsd{word-spacing:-13.977360px;}
.ws1{word-spacing:-13.734480px;}
.ws0{word-spacing:-13.625280px;}
.wsb{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.466481px;}
.ws21{word-spacing:-13.229029px;}
.ws1c{word-spacing:-13.175078px;}
.ws8{word-spacing:-13.164000px;}
.ws16{word-spacing:-13.132421px;}
.ws15{word-spacing:-13.091589px;}
.ws1e{word-spacing:-12.911260px;}
.ws25{word-spacing:-12.906000px;}
.ws12{word-spacing:-12.526418px;}
.wse{word-spacing:-12.450198px;}
.ws18{word-spacing:-12.374011px;}
.ws9{word-spacing:-12.312000px;}
.ws3{word-spacing:-12.204000px;}
.ws1a{word-spacing:-12.133739px;}
.ws14{word-spacing:-12.103597px;}
.ws1b{word-spacing:-11.989321px;}
.ws5{word-spacing:-11.880000px;}
.ws23{word-spacing:-11.874132px;}
.ws1d{word-spacing:-11.749246px;}
.ws4{word-spacing:-11.592000px;}
.ws11{word-spacing:-11.399040px;}
.ws20{word-spacing:-11.373038px;}
.ws19{word-spacing:-11.041703px;}
.ws1f{word-spacing:-10.514742px;}
.ws2{word-spacing:-8.825760px;}
.wsc{word-spacing:0.000000px;}
.ws10{word-spacing:94.669531px;}
.ws13{word-spacing:98.940858px;}
._e{margin-left:-2.335680px;}
._5{margin-left:-1.126080px;}
._1{width:1.135440px;}
._2{width:2.564400px;}
._0{width:4.247520px;}
._12{width:5.299440px;}
._c{width:6.385920px;}
._b{width:7.482240px;}
._13{width:8.904240px;}
._1e{width:10.697040px;}
._11{width:11.941440px;}
._47{width:13.293360px;}
._10{width:14.822880px;}
._f{width:16.015680px;}
._2d{width:17.269920px;}
._1c{width:18.376560px;}
._20{width:20.079360px;}
._2b{width:21.603600px;}
._1d{width:22.633920px;}
._22{width:24.572160px;}
._d{width:25.992000px;}
._21{width:27.556560px;}
._26{width:29.521440px;}
._1b{width:30.716640px;}
._1a{width:31.732560px;}
._14{width:33.047280px;}
._25{width:34.421760px;}
._17{width:35.676720px;}
._16{width:36.812160px;}
._35{width:37.828080px;}
._28{width:38.963520px;}
._2a{width:40.875840px;}
._19{width:41.951520px;}
._18{width:43.385760px;}
._39{width:45.178560px;}
._49{width:46.658160px;}
._38{width:47.808000px;}
._15{width:49.062960px;}
._2c{width:50.377680px;}
._3c{width:51.692400px;}
._2f{width:52.708320px;}
._42{width:54.321840px;}
._3a{width:55.457280px;}
._48{width:58.476240px;}
._24{width:59.700240px;}
._23{width:60.835680px;}
._27{width:61.971120px;}
._34{width:64.182240px;}
._9{width:65.906640px;}
._a{width:67.305360px;}
._2e{width:69.844080px;}
._45{width:76.570560px;}
._29{width:84.620160px;}
._44{width:95.482080px;}
._8{width:97.364880px;}
._43{width:103.145760px;}
._1f{width:106.253280px;}
._30{width:107.926560px;}
._6{width:117.425682px;}
._4{width:119.574720px;}
._46{width:122.094000px;}
._31{width:127.229040px;}
._33{width:153.370624px;}
._3{width:156.441840px;}
._32{width:165.769474px;}
._3f{width:273.366920px;}
._41{width:285.411414px;}
._3b{width:291.651445px;}
._37{width:297.426721px;}
._3e{width:310.340238px;}
._36{width:315.656157px;}
._3d{width:316.681491px;}
._40{width:343.934166px;}
._7{width:1708.672800px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs22{font-size:37.228289px;}
.fs28{font-size:38.868561px;}
.fs2{font-size:38.880000px;}
.fs19{font-size:39.718355px;}
.fs16{font-size:40.504857px;}
.fs23{font-size:40.872528px;}
.fs24{font-size:40.910208px;}
.fsd{font-size:41.003743px;}
.fs17{font-size:41.245483px;}
.fs1f{font-size:42.263476px;}
.fs2a{font-size:42.712704px;}
.fs29{font-size:42.748025px;}
.fs10{font-size:42.853761px;}
.fs13{font-size:42.987421px;}
.fsb{font-size:43.039878px;}
.fs1c{font-size:43.127055px;}
.fs1a{font-size:43.549272px;}
.fs1b{font-size:43.646544px;}
.fsa{font-size:44.080927px;}
.fs18{font-size:44.510832px;}
.fse{font-size:44.890484px;}
.fsf{font-size:45.059058px;}
.fs21{font-size:46.443380px;}
.fs20{font-size:46.494507px;}
.fs25{font-size:46.838442px;}
.fs11{font-size:46.976388px;}
.fs12{font-size:47.092045px;}
.fs14{font-size:47.142000px;}
.fs15{font-size:47.238924px;}
.fs1d{font-size:47.268866px;}
.fs1e{font-size:47.392368px;}
.fs9{font-size:48.240000px;}
.fsc{font-size:48.440579px;}
.fs1{font-size:51.120000px;}
.fs27{font-size:51.470816px;}
.fs26{font-size:51.519075px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs6{font-size:144.000000px;}
.y3f{bottom:-7.920000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:1.440000px;}
.yd{bottom:2.700000px;}
.y77{bottom:10.620000px;}
.y3e{bottom:13.530000px;}
.y170{bottom:14.749014px;}
.y1a5{bottom:15.415727px;}
.yc7{bottom:15.555733px;}
.y123{bottom:15.735553px;}
.y10d{bottom:16.047099px;}
.yde{bottom:16.257548px;}
.y79{bottom:16.380000px;}
.y154{bottom:16.743872px;}
.yf2{bottom:17.032651px;}
.y141{bottom:17.085936px;}
.yb7{bottom:17.472921px;}
.y18c{bottom:18.546714px;}
.y171{bottom:26.698209px;}
.y1a6{bottom:27.891396px;}
.yc8{bottom:28.378795px;}
.y124{bottom:28.483989px;}
.y10e{bottom:29.047973px;}
.ydf{bottom:29.659159px;}
.y155{bottom:30.309218px;}
.yf3{bottom:30.830363px;}
.y142{bottom:30.928457px;}
.yb8{bottom:31.620597px;}
.y18d{bottom:33.580491px;}
.y3d{bottom:39.450000px;}
.y12a{bottom:52.726010px;}
.yb{bottom:56.520000px;}
.y17d{bottom:59.238848px;}
.y1b2{bottom:61.865792px;}
.y131{bottom:63.201136px;}
.y119{bottom:64.452620px;}
.yc{bottom:65.700000px;}
.y161{bottom:67.251011px;}
.yce{bottom:67.598951px;}
.yc9{bottom:68.368710px;}
.yff{bottom:68.404943px;}
.y3a{bottom:70.020000px;}
.yc3{bottom:70.151041px;}
.y17c{bottom:70.898257px;}
.ya{bottom:72.720000px;}
.y172{bottom:73.131296px;}
.y143{bottom:73.937031px;}
.y1b1{bottom:74.038913px;}
.y198{bottom:74.521191px;}
.y176{bottom:75.500680px;}
.y130{bottom:75.640402px;}
.y1a7{bottom:76.370315px;}
.y118{bottom:77.138207px;}
.y125{bottom:78.022818px;}
.y160{bottom:80.487375px;}
.yfe{bottom:81.868036px;}
.ye0{bottom:81.931329px;}
.y14e{bottom:82.131961px;}
.y156{bottom:83.022454px;}
.y148{bottom:83.553732px;}
.yc2{bottom:83.957615px;}
.yf4{bottom:84.446541px;}
.y112{bottom:84.482506px;}
.yf8{bottom:87.536755px;}
.y1ab{bottom:88.454451px;}
.y15a{bottom:88.498905px;}
.y197{bottom:89.190374px;}
.y129{bottom:89.716458px;}
.y9{bottom:91.080000px;}
.y10f{bottom:96.477247px;}
.y17b{bottom:96.667428px;}
.ybc{bottom:100.669615px;}
.y1b0{bottom:100.944357px;}
.yd3{bottom:101.054341px;}
.y12f{bottom:103.133179px;}
.yb9{bottom:105.005047px;}
.y191{bottom:105.017698px;}
.y117{bottom:105.175395px;}
.yca{bottom:108.357685px;}
.y15f{bottom:109.741867px;}
.y18e{bottom:111.563068px;}
.ye4{bottom:111.617958px;}
.yfd{bottom:111.631512px;}
.y14d{bottom:111.984217px;}
.yd2{bottom:113.896172px;}
.yc1{bottom:114.471143px;}
.y144{bottom:117.059149px;}
.y121{bottom:118.980000px;}
.ye8{bottom:119.034955px;}
.y173{bottom:119.662397px;}
.y196{bottom:121.621277px;}
.yc5{bottom:124.560000px;}
.y178{bottom:124.588643px;}
.y1a8{bottom:124.952456px;}
.y1bd{bottom:125.820000px;}
.y38{bottom:126.900000px;}
.y126{bottom:127.666215px;}
.yf0{bottom:128.160000px;}
.y75{bottom:129.060000px;}
.y1ad{bottom:130.095778px;}
.y12c{bottom:132.921941px;}
.ye1{bottom:134.202518px;}
.y114{bottom:135.554037px;}
.y157{bottom:135.846962px;}
.y120{bottom:137.160000px;}
.yf5{bottom:138.183769px;}
.yc4{bottom:138.960000px;}
.yb6{bottom:139.065000px;}
.y177{bottom:141.157277px;}
.y15c{bottom:141.439470px;}
.yfa{bottom:143.872073px;}
.y1bc{bottom:144.180000px;}
.y14a{bottom:144.329508px;}
.y37{bottom:145.260000px;}
.y152{bottom:146.160000px;}
.yef{bottom:146.520000px;}
.y1ac{bottom:147.394423px;}
.y74{bottom:147.420000px;}
.ybe{bottom:147.531839px;}
.ycb{bottom:148.347599px;}
.yd0{bottom:149.718120px;}
.y12b{bottom:150.598792px;}
.y18a{bottom:150.660000px;}
.y76{bottom:152.100000px;}
.y113{bottom:153.580924px;}
.y1f1{bottom:154.260000px;}
.y11f{bottom:155.520000px;}
.ye6{bottom:156.473131px;}
.y193{bottom:156.750105px;}
.y145{bottom:160.067724px;}
.y15b{bottom:160.249039px;}
.y1bb{bottom:162.360000px;}
.yf9{bottom:163.003837px;}
.y149{bottom:163.523417px;}
.y36{bottom:163.620000px;}
.y110{bottom:163.911158px;}
.y151{bottom:164.520000px;}
.yee{bottom:164.700000px;}
.y1be{bottom:165.600000px;}
.y174{bottom:166.095483px;}
.ybd{bottom:167.150273px;}
.y189{bottom:169.020000px;}
.y1f0{bottom:170.820000px;}
.y1a9{bottom:173.431375px;}
.y11e{bottom:173.880000px;}
.ycf{bottom:176.077669px;}
.y127{bottom:177.205043px;}
.y192{bottom:177.595786px;}
.yba{bottom:178.392524px;}
.y1ba{bottom:180.720000px;}
.y35{bottom:181.800000px;}
.y150{bottom:182.880000px;}
.yed{bottom:183.060000px;}
.y73{bottom:183.960000px;}
.ye5{bottom:184.021977px;}
.ye2{bottom:186.474688px;}
.y1ef{bottom:187.200000px;}
.y188{bottom:187.380000px;}
.ycc{bottom:188.337513px;}
.y158{bottom:188.560199px;}
.y18f{bottom:189.541355px;}
.yf6{bottom:191.799948px;}
.y11d{bottom:192.240000px;}
.y1ae{bottom:194.164834px;}
.y14f{bottom:197.100000px;}
.y140{bottom:197.190000px;}
.y1b9{bottom:199.080000px;}
.y34{bottom:200.160000px;}
.yec{bottom:201.420000px;}
.y72{bottom:202.320000px;}
.y146{bottom:203.194779px;}
.y1ee{bottom:203.760000px;}
.y187{bottom:205.740000px;}
.yd1{bottom:206.492550px;}
.y194{bottom:208.092274px;}
.y11c{bottom:210.450000px;}
.y175{bottom:212.630845px;}
.ye7{bottom:215.809108px;}
.y1b8{bottom:217.470000px;}
.y33{bottom:218.550000px;}
.yeb{bottom:219.810000px;}
.y1ed{bottom:220.170000px;}
.y179{bottom:220.318545px;}
.y71{bottom:220.530000px;}
.y1aa{bottom:222.017076px;}
.y186{bottom:223.950000px;}
.y128{bottom:226.852986px;}
.ycd{bottom:228.440074px;}
.y11b{bottom:228.810000px;}
.yfb{bottom:228.902171px;}
.y111{bottom:231.345068px;}
.ybf{bottom:234.724881px;}
.y12d{bottom:235.054882px;}
.y1b7{bottom:235.650000px;}
.y32{bottom:236.730000px;}
.y17a{bottom:237.807657px;}
.yea{bottom:237.990000px;}
.ye3{bottom:238.746858px;}
.y70{bottom:238.890000px;}
.y115{bottom:239.709391px;}
.y1af{bottom:240.614899px;}
.y159{bottom:241.389543px;}
.y185{bottom:242.310000px;}
.y11a{bottom:243.210000px;}
.y10c{bottom:243.239980px;}
.yf7{bottom:245.534223px;}
.y147{bottom:246.321834px;}
.y15d{bottom:250.117009px;}
.ybb{bottom:251.658900px;}
.ye9{bottom:252.390000px;}
.ydd{bottom:252.465000px;}
.y1ec{bottom:253.290000px;}
.y12e{bottom:253.713777px;}
.y1b6{bottom:254.010000px;}
.y31{bottom:255.090000px;}
.y14b{bottom:255.227650px;}
.y6f{bottom:257.250000px;}
.y116{bottom:258.737771px;}
.y184{bottom:260.670000px;}
.yfc{bottom:260.788437px;}
.y195{bottom:261.364566px;}
.y190{bottom:267.519640px;}
.yc0{bottom:268.875489px;}
.y1eb{bottom:269.670000px;}
.y15e{bottom:269.971551px;}
.y1b5{bottom:272.370000px;}
.y30{bottom:273.450000px;}
.y14c{bottom:275.487887px;}
.y6e{bottom:275.610000px;}
.y183{bottom:279.030000px;}
.y1ea{bottom:286.230000px;}
.y1b4{bottom:290.730000px;}
.y2f{bottom:291.090000px;}
.y6d{bottom:293.790000px;}
.y182{bottom:297.210000px;}
.y1e9{bottom:302.610000px;}
.y2e{bottom:308.910000px;}
.y6c{bottom:312.150000px;}
.y181{bottom:315.570000px;}
.y1e8{bottom:319.170000px;}
.y2d{bottom:327.270000px;}
.y6b{bottom:330.510000px;}
.y180{bottom:333.930000px;}
.y1e7{bottom:335.550000px;}
.y2c{bottom:345.630000px;}
.y6a{bottom:348.870000px;}
.y17f{bottom:352.110000px;}
.y2b{bottom:363.810000px;}
.y17e{bottom:366.690000px;}
.y16f{bottom:366.764959px;}
.y69{bottom:367.050000px;}
.y1e6{bottom:368.490000px;}
.y2a{bottom:382.170000px;}
.y1e5{bottom:385.050000px;}
.y68{bottom:385.410000px;}
.y1b3{bottom:396.570000px;}
.y1a4{bottom:396.615000px;}
.y29{bottom:400.530000px;}
.y1e4{bottom:401.610000px;}
.y67{bottom:403.770000px;}
.y1e3{bottom:417.990000px;}
.y28{bottom:418.890000px;}
.y66{bottom:421.950000px;}
.yb5{bottom:432.930000px;}
.y9b{bottom:433.830000px;}
.y1e2{bottom:434.550000px;}
.y27{bottom:437.070000px;}
.y65{bottom:440.310000px;}
.y1e1{bottom:450.975000px;}
.yb4{bottom:451.335000px;}
.y9a{bottom:452.055000px;}
.y26{bottom:455.475000px;}
.y64{bottom:458.715000px;}
.y1e0{bottom:467.535000px;}
.yb3{bottom:469.695000px;}
.y99{bottom:470.415000px;}
.y25{bottom:473.835000px;}
.y63{bottom:477.075000px;}
.y1df{bottom:483.915000px;}
.yb2{bottom:487.875000px;}
.y98{bottom:489.495000px;}
.y24{bottom:492.195000px;}
.y62{bottom:495.255000px;}
.y212{bottom:497.055000px;}
.y13f{bottom:497.235000px;}
.y1de{bottom:500.475000px;}
.yb1{bottom:506.235000px;}
.y97{bottom:507.855000px;}
.y23{bottom:510.375000px;}
.y61{bottom:513.615000px;}
.y211{bottom:515.415000px;}
.y13e{bottom:515.595000px;}
.y1dd{bottom:516.855000px;}
.ydc{bottom:518.835000px;}
.yb0{bottom:524.595000px;}
.y10b{bottom:525.315000px;}
.y96{bottom:526.215000px;}
.y22{bottom:528.735000px;}
.y60{bottom:531.975000px;}
.y1dc{bottom:533.415000px;}
.y13d{bottom:533.775000px;}
.ydb{bottom:537.015000px;}
.yaf{bottom:542.955000px;}
.y10a{bottom:543.675000px;}
.y95{bottom:544.575000px;}
.y21{bottom:547.095000px;}
.y1db{bottom:549.795000px;}
.y5f{bottom:550.155000px;}
.y13c{bottom:552.135000px;}
.yda{bottom:555.375000px;}
.yae{bottom:561.135000px;}
.y109{bottom:561.855000px;}
.y94{bottom:563.655000px;}
.y20{bottom:565.275000px;}
.y1da{bottom:566.355000px;}
.y5e{bottom:568.515000px;}
.y210{bottom:570.315000px;}
.y13b{bottom:570.495000px;}
.yd9{bottom:573.735000px;}
.yad{bottom:579.495000px;}
.y108{bottom:580.215000px;}
.y93{bottom:582.735000px;}
.y1d9{bottom:582.915000px;}
.y1f{bottom:583.635000px;}
.y5d{bottom:586.875000px;}
.y20f{bottom:588.675000px;}
.y13a{bottom:588.855000px;}
.yd8{bottom:592.095000px;}
.yac{bottom:598.575000px;}
.y1d8{bottom:599.295000px;}
.y92{bottom:600.915000px;}
.y1e{bottom:602.895000px;}
.y5c{bottom:605.235000px;}
.y139{bottom:607.035000px;}
.yd7{bottom:610.275000px;}
.y1d7{bottom:615.855000px;}
.yab{bottom:616.935000px;}
.y91{bottom:619.275000px;}
.y5b{bottom:623.415000px;}
.y20e{bottom:625.035000px;}
.y138{bottom:625.395000px;}
.y16e{bottom:626.295000px;}
.yd6{bottom:628.635000px;}
.y1d6{bottom:632.235000px;}
.y1d{bottom:634.575000px;}
.y107{bottom:635.115000px;}
.yaa{bottom:636.015000px;}
.y90{bottom:637.635000px;}
.y20d{bottom:641.415000px;}
.y5a{bottom:641.775000px;}
.y137{bottom:643.755000px;}
.y16d{bottom:644.475000px;}
.yd5{bottom:646.995000px;}
.y1d5{bottom:648.795000px;}
.y1c{bottom:650.055000px;}
.y106{bottom:653.475000px;}
.ya9{bottom:655.095000px;}
.y8f{bottom:655.995000px;}
.y20c{bottom:657.975000px;}
.y1a3{bottom:659.775000px;}
.y59{bottom:660.135000px;}
.yd4{bottom:661.395000px;}
.yc6{bottom:661.439959px;}
.y136{bottom:662.115000px;}
.y16c{bottom:662.835000px;}
.y1d4{bottom:665.175000px;}
.y105{bottom:671.835000px;}
.ya8{bottom:673.455000px;}
.y1b{bottom:674.355000px;}
.y8e{bottom:675.075000px;}
.y1a2{bottom:677.955000px;}
.y58{bottom:678.495000px;}
.y135{bottom:680.325000px;}
.y16b{bottom:681.225000px;}
.y1d3{bottom:681.765000px;}
.y104{bottom:690.045000px;}
.y20b{bottom:690.945000px;}
.ya7{bottom:691.845000px;}
.y8d{bottom:693.465000px;}
.y1a1{bottom:696.345000px;}
.y57{bottom:696.705000px;}
.y1d2{bottom:698.145000px;}
.y134{bottom:698.685000px;}
.y1a{bottom:699.045000px;}
.y16a{bottom:699.585000px;}
.y20a{bottom:707.325000px;}
.y103{bottom:708.405000px;}
.ya6{bottom:710.025000px;}
.y8c{bottom:711.645000px;}
.y1a0{bottom:714.705000px;}
.y56{bottom:715.065000px;}
.y133{bottom:717.045000px;}
.y169{bottom:717.765000px;}
.y209{bottom:723.885000px;}
.y19{bottom:724.245000px;}
.y102{bottom:726.765000px;}
.ya5{bottom:728.385000px;}
.y8b{bottom:730.005000px;}
.y1d1{bottom:731.265000px;}
.y122{bottom:731.414919px;}
.y132{bottom:731.445000px;}
.y19f{bottom:733.065000px;}
.y55{bottom:733.425000px;}
.y168{bottom:736.125000px;}
.y208{bottom:740.265000px;}
.y101{bottom:745.125000px;}
.ya4{bottom:746.745000px;}
.y1d0{bottom:747.645000px;}
.y8a{bottom:748.365000px;}
.y18{bottom:749.445000px;}
.y19e{bottom:751.245000px;}
.y54{bottom:751.605000px;}
.y167{bottom:754.485000px;}
.y207{bottom:756.825000px;}
.yf1{bottom:759.314919px;}
.y100{bottom:759.345000px;}
.y1cf{bottom:764.205000px;}
.ya3{bottom:765.825000px;}
.y89{bottom:766.725000px;}
.y19d{bottom:769.605000px;}
.y53{bottom:769.965000px;}
.y17{bottom:770.145000px;}
.y166{bottom:772.665000px;}
.y206{bottom:773.385000px;}
.y1ce{bottom:780.585000px;}
.ya2{bottom:784.905000px;}
.y88{bottom:785.805000px;}
.y19c{bottom:787.965000px;}
.y52{bottom:788.325000px;}
.y205{bottom:789.765000px;}
.y165{bottom:791.025000px;}
.y16{bottom:795.165000px;}
.y1cd{bottom:797.145000px;}
.ya1{bottom:803.265000px;}
.y87{bottom:803.985000px;}
.y19b{bottom:806.325000px;}
.y51{bottom:806.685000px;}
.y164{bottom:809.385000px;}
.y1cc{bottom:813.525000px;}
.y15{bottom:820.365000px;}
.ya0{bottom:821.625000px;}
.y86{bottom:822.345000px;}
.y204{bottom:822.705000px;}
.y19a{bottom:824.505000px;}
.y50{bottom:824.865000px;}
.y163{bottom:827.745000px;}
.y1cb{bottom:830.085000px;}
.y18b{bottom:838.889919px;}
.y199{bottom:838.905000px;}
.y203{bottom:839.265000px;}
.y9f{bottom:839.805000px;}
.y85{bottom:840.705000px;}
.y153{bottom:842.114919px;}
.y162{bottom:842.145000px;}
.y4f{bottom:843.225000px;}
.y14{bottom:845.565000px;}
.y1ca{bottom:846.465000px;}
.y202{bottom:855.645000px;}
.y9e{bottom:858.165000px;}
.y84{bottom:858.885000px;}
.y4e{bottom:861.585000px;}
.y1c9{bottom:863.025000px;}
.y13{bottom:871.485000px;}
.y201{bottom:872.205000px;}
.y9d{bottom:876.525000px;}
.y83{bottom:877.245000px;}
.y1c8{bottom:879.585000px;}
.y4d{bottom:879.945000px;}
.y200{bottom:888.585000px;}
.y9c{bottom:894.885000px;}
.y82{bottom:895.605000px;}
.y1c7{bottom:895.965000px;}
.y12{bottom:896.145000px;}
.y4c{bottom:898.125000px;}
.y1ff{bottom:905.145000px;}
.y1c6{bottom:912.525000px;}
.y81{bottom:913.965000px;}
.y4b{bottom:916.530000px;}
.y11{bottom:920.850000px;}
.y1fe{bottom:921.750000px;}
.y1c5{bottom:928.950000px;}
.y80{bottom:932.190000px;}
.y4a{bottom:934.890000px;}
.y1fd{bottom:938.130000px;}
.y1c4{bottom:945.510000px;}
.y10{bottom:946.050000px;}
.y7f{bottom:950.550000px;}
.y49{bottom:953.070000px;}
.y1fc{bottom:954.690000px;}
.y1c3{bottom:961.890000px;}
.y7e{bottom:968.910000px;}
.y1fb{bottom:971.070000px;}
.y48{bottom:971.430000px;}
.yf{bottom:976.650000px;}
.y1c2{bottom:978.450000px;}
.y7d{bottom:987.270000px;}
.y1fa{bottom:987.630000px;}
.y47{bottom:989.790000px;}
.y1c1{bottom:994.830000px;}
.y7c{bottom:1001.490000px;}
.y1f9{bottom:1004.010000px;}
.y46{bottom:1008.150000px;}
.y1c0{bottom:1011.390000px;}
.ye{bottom:1017.870000px;}
.y1f8{bottom:1020.570000px;}
.y45{bottom:1026.330000px;}
.y1bf{bottom:1027.950000px;}
.y1f7{bottom:1036.950000px;}
.y44{bottom:1044.690000px;}
.y7b{bottom:1050.450000px;}
.y1f6{bottom:1053.510000px;}
.y8{bottom:1056.030000px;}
.y43{bottom:1063.050000px;}
.y7a{bottom:1068.810000px;}
.y1f5{bottom:1069.890000px;}
.y7{bottom:1076.190000px;}
.y42{bottom:1081.410000px;}
.y78{bottom:1083.210000px;}
.y1f4{bottom:1086.450000px;}
.y6{bottom:1095.090000px;}
.y41{bottom:1099.590000px;}
.y1f3{bottom:1103.010000px;}
.y5{bottom:1114.890000px;}
.y40{bottom:1117.950000px;}
.y1f2{bottom:1119.390000px;}
.y4{bottom:1134.690000px;}
.y39{bottom:1144.050000px;}
.y3c{bottom:1150.890000px;}
.y3{bottom:1154.340000px;}
.y2{bottom:1175.220000px;}
.y1{bottom:1195.740000px;}
.h12{height:12.780000px;}
.h4{height:15.660000px;}
.h14{height:25.020000px;}
.h15{height:30.780000px;}
.h9{height:35.143594px;}
.hc{height:37.241719px;}
.h38{height:38.827943px;}
.hd{height:39.339844px;}
.h40{height:40.538694px;}
.h2c{height:41.425003px;}
.h28{height:42.245300px;}
.h39{height:42.628769px;}
.h3a{height:42.668069px;}
.h1c{height:42.765622px;}
.h29{height:43.017750px;}
.h2{height:43.536094px;}
.h34{height:44.079484px;}
.h42{height:44.548016px;}
.h41{height:44.584855px;}
.h20{height:44.695134px;}
.h24{height:44.834536px;}
.h19{height:44.889248px;}
.h30{height:44.980171px;}
.h2d{height:45.420530px;}
.h2e{height:45.521981px;}
.h18{height:45.975029px;}
.h2a{height:46.423407px;}
.h1d{height:46.819372px;}
.h1e{height:46.995189px;}
.h44{height:47.223633px;}
.h36{height:48.438994px;}
.h35{height:48.492318px;}
.h3c{height:48.851031px;}
.h21{height:48.994904px;}
.h22{height:49.115531px;}
.h25{height:49.167633px;}
.h26{height:49.268721px;}
.h31{height:49.299950px;}
.h32{height:49.428759px;}
.h1a{height:50.522010px;}
.hb{height:52.453125px;}
.ha{height:53.143594px;}
.h13{height:53.496000px;}
.h3e{height:53.682452px;}
.h43{height:53.709961px;}
.h3d{height:53.732785px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.h16{height:62.327813px;}
.h3{height:65.884219px;}
.h5{height:71.613281px;}
.hf{height:73.722656px;}
.h8{height:73.956797px;}
.he{height:74.004654px;}
.h7{height:84.070547px;}
.h6{height:104.906250px;}
.h1b{height:251.101029px;}
.h37{height:255.603612px;}
.h3f{height:259.194925px;}
.h1f{height:262.430233px;}
.h2b{height:272.700051px;}
.h27{height:278.099989px;}
.h23{height:281.337397px;}
.h17{height:289.947141px;}
.h33{height:290.174449px;}
.h3b{height:293.405176px;}
.h2f{height:296.103567px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:33.120000px;}
.w3{width:37.980000px;}
.w5{width:342.795000px;}
.w9{width:355.354964px;}
.w6{width:362.955000px;}
.w10{width:371.693065px;}
.w12{width:373.350587px;}
.wc{width:381.598072px;}
.wa{width:397.958531px;}
.w8{width:403.355409px;}
.wb{width:405.008728px;}
.wf{width:411.670132px;}
.wd{width:421.203135px;}
.we{width:435.897745px;}
.w11{width:468.512342px;}
.w7{width:699.765000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:8.100000px;}
.x19{left:10.830000px;}
.x15{left:13.500000px;}
.x9{left:15.480000px;}
.x27{left:19.367958px;}
.x37{left:21.139386px;}
.x5a{left:23.456573px;}
.x26{left:24.658276px;}
.x31{left:26.348859px;}
.x3c{left:27.624248px;}
.x59{left:28.627800px;}
.x30{left:32.028443px;}
.x52{left:33.370853px;}
.x25{left:35.550061px;}
.x36{left:39.153858px;}
.x6{left:44.099987px;}
.x5f{left:49.122383px;}
.x17{left:52.230000px;}
.x24{left:63.806638px;}
.x13{left:66.059987px;}
.x65{left:68.717470px;}
.x2f{left:74.854901px;}
.x51{left:81.302468px;}
.x35{left:83.970312px;}
.x48{left:87.969549px;}
.x1c{left:96.696000px;}
.x3e{left:101.473159px;}
.x28{left:102.972912px;}
.x42{left:105.175984px;}
.x5{left:108.035987px;}
.x67{left:111.572348px;}
.x1e{left:113.075987px;}
.x43{left:117.652741px;}
.x5b{left:119.245600px;}
.x57{left:124.489045px;}
.x54{left:126.207875px;}
.x4a{left:129.341341px;}
.x5c{left:131.609540px;}
.x3f{left:137.654641px;}
.x1f{left:140.075987px;}
.x4b{left:142.514994px;}
.x2d{left:144.575987px;}
.x61{left:146.571774px;}
.xb{left:150.509987px;}
.x62{left:155.330013px;}
.x29{left:160.108347px;}
.xa{left:171.929987px;}
.x7{left:182.549987px;}
.xf{left:192.989987px;}
.x5e{left:212.339980px;}
.x32{left:217.157728px;}
.x18{left:221.295000px;}
.x44{left:223.653644px;}
.x45{left:227.365739px;}
.x50{left:228.539980px;}
.x39{left:232.885453px;}
.x47{left:235.889980px;}
.x41{left:240.976743px;}
.x2a{left:243.713321px;}
.x23{left:244.889980px;}
.x2b{left:247.586912px;}
.x66{left:250.075957px;}
.x4c{left:254.436634px;}
.x40{left:255.627507px;}
.x4d{left:258.356071px;}
.x38{left:259.896871px;}
.x10{left:262.289987px;}
.x55{left:266.241902px;}
.x2e{left:268.814980px;}
.x49{left:272.727325px;}
.x3d{left:275.427144px;}
.x3{left:277.274987px;}
.x53{left:281.840622px;}
.x1d{left:299.234987px;}
.x63{left:302.932175px;}
.x60{left:319.933464px;}
.x3b{left:326.594987px;}
.xc{left:342.794987px;}
.x34{left:358.454987px;}
.x11{left:427.754987px;}
.x16{left:442.335000px;}
.x4f{left:446.504987px;}
.x12{left:457.124987px;}
.x1a{left:458.565000px;}
.x21{left:462.164987px;}
.x22{left:467.744987px;}
.x20{left:489.164987px;}
.x4{left:515.084987px;}
.xd{left:541.724987px;}
.xe{left:544.964987px;}
.x33{left:624.164987px;}
.x5d{left:632.489987px;}
.x46{left:637.349987px;}
.x3a{left:645.629987px;}
.x2c{left:648.329987px;}
.x58{left:652.469987px;}
.x4e{left:657.149987px;}
.x56{left:664.529987px;}
.x2{left:679.109987px;}
.x64{left:680.909987px;}
.x8{left:748.950000px;}
.x14{left:757.590000px;}
.x1{left:785.129987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v5{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.608000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.034560pt;}
.ls9{letter-spacing:-0.000640pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.019840pt;}
.ls2{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.048640pt;}
.ls0{letter-spacing:0.097067pt;}
.ls17{letter-spacing:0.146913pt;}
.ls22{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.169113pt;}
.ls14{letter-spacing:0.173956pt;}
.ls19{letter-spacing:0.184837pt;}
.ls7{letter-spacing:0.218133pt;}
.lsc{letter-spacing:0.218240pt;}
.ls1c{letter-spacing:0.416000pt;}
.lsd{letter-spacing:0.419200pt;}
.ls10{letter-spacing:0.426133pt;}
.ls1a{letter-spacing:0.438400pt;}
.ls11{letter-spacing:0.524800pt;}
.ls4{letter-spacing:0.566400pt;}
.ls1d{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.624000pt;}
.ls3{letter-spacing:0.652867pt;}
.ls1f{letter-spacing:0.672000pt;}
.lsa{letter-spacing:0.757333pt;}
.ls16{letter-spacing:0.762667pt;}
.ls1e{letter-spacing:3.232000pt;}
.ls20{letter-spacing:29.472000pt;}
.ls13{letter-spacing:36.432640pt;}
.ls21{letter-spacing:44.192000pt;}
.ls12{letter-spacing:56.272640pt;}
.ws7{word-spacing:-16.473600pt;}
.ws6{word-spacing:-16.472960pt;}
.wsa{word-spacing:-14.464000pt;}
.ws17{word-spacing:-12.767787pt;}
.ws22{word-spacing:-12.719010pt;}
.ws24{word-spacing:-12.443520pt;}
.wsd{word-spacing:-12.424320pt;}
.ws1{word-spacing:-12.208427pt;}
.ws0{word-spacing:-12.111360pt;}
.wsb{word-spacing:-12.005120pt;}
.wsf{word-spacing:-11.970205pt;}
.ws21{word-spacing:-11.759137pt;}
.ws1c{word-spacing:-11.711181pt;}
.ws8{word-spacing:-11.701333pt;}
.ws16{word-spacing:-11.673263pt;}
.ws15{word-spacing:-11.636968pt;}
.ws1e{word-spacing:-11.476675pt;}
.ws25{word-spacing:-11.472000pt;}
.ws12{word-spacing:-11.134594pt;}
.wse{word-spacing:-11.066842pt;}
.ws18{word-spacing:-10.999121pt;}
.ws9{word-spacing:-10.944000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws1a{word-spacing:-10.785546pt;}
.ws14{word-spacing:-10.758753pt;}
.ws1b{word-spacing:-10.657174pt;}
.ws5{word-spacing:-10.560000pt;}
.ws23{word-spacing:-10.554784pt;}
.ws1d{word-spacing:-10.443774pt;}
.ws4{word-spacing:-10.304000pt;}
.ws11{word-spacing:-10.132480pt;}
.ws20{word-spacing:-10.109367pt;}
.ws19{word-spacing:-9.814847pt;}
.ws1f{word-spacing:-9.346437pt;}
.ws2{word-spacing:-7.845120pt;}
.wsc{word-spacing:0.000000pt;}
.ws10{word-spacing:84.150695pt;}
.ws13{word-spacing:87.947429pt;}
._e{margin-left:-2.076160pt;}
._5{margin-left:-1.000960pt;}
._1{width:1.009280pt;}
._2{width:2.279467pt;}
._0{width:3.775573pt;}
._12{width:4.710613pt;}
._c{width:5.676373pt;}
._b{width:6.650880pt;}
._13{width:7.914880pt;}
._1e{width:9.508480pt;}
._11{width:10.614613pt;}
._47{width:11.816320pt;}
._10{width:13.175893pt;}
._f{width:14.236160pt;}
._2d{width:15.351040pt;}
._1c{width:16.334720pt;}
._20{width:17.848320pt;}
._2b{width:19.203200pt;}
._1d{width:20.119040pt;}
._22{width:21.841920pt;}
._d{width:23.104000pt;}
._21{width:24.494720pt;}
._26{width:26.241280pt;}
._1b{width:27.303680pt;}
._1a{width:28.206720pt;}
._14{width:29.375360pt;}
._25{width:30.597120pt;}
._17{width:31.712640pt;}
._16{width:32.721920pt;}
._35{width:33.624960pt;}
._28{width:34.634240pt;}
._2a{width:36.334080pt;}
._19{width:37.290240pt;}
._18{width:38.565120pt;}
._39{width:40.158720pt;}
._49{width:41.473920pt;}
._38{width:42.496000pt;}
._15{width:43.611520pt;}
._2c{width:44.780160pt;}
._3c{width:45.948800pt;}
._2f{width:46.851840pt;}
._42{width:48.286080pt;}
._3a{width:49.295360pt;}
._48{width:51.978880pt;}
._24{width:53.066880pt;}
._23{width:54.076160pt;}
._27{width:55.085440pt;}
._34{width:57.050880pt;}
._9{width:58.583680pt;}
._a{width:59.826987pt;}
._2e{width:62.083627pt;}
._45{width:68.062720pt;}
._29{width:75.217920pt;}
._44{width:84.872960pt;}
._8{width:86.546560pt;}
._43{width:91.685120pt;}
._1f{width:94.447360pt;}
._30{width:95.934720pt;}
._6{width:104.378384pt;}
._4{width:106.288640pt;}
._46{width:108.528000pt;}
._31{width:113.092480pt;}
._33{width:136.329443pt;}
._3{width:139.059413pt;}
._32{width:147.350644pt;}
._3f{width:242.992818pt;}
._41{width:253.699034pt;}
._3b{width:259.245729pt;}
._37{width:264.379307pt;}
._3e{width:275.857989pt;}
._36{width:280.583251pt;}
._3d{width:281.494659pt;}
._40{width:305.719259pt;}
._7{width:1518.820267pt;}
.fs22{font-size:33.091813pt;}
.fs28{font-size:34.549832pt;}
.fs2{font-size:34.560000pt;}
.fs19{font-size:35.305204pt;}
.fs16{font-size:36.004317pt;}
.fs23{font-size:36.331136pt;}
.fs24{font-size:36.364630pt;}
.fsd{font-size:36.447771pt;}
.fs17{font-size:36.662651pt;}
.fs1f{font-size:37.567534pt;}
.fs2a{font-size:37.966848pt;}
.fs29{font-size:37.998245pt;}
.fs10{font-size:38.092232pt;}
.fs13{font-size:38.211041pt;}
.fsb{font-size:38.257669pt;}
.fs1c{font-size:38.335160pt;}
.fs1a{font-size:38.710464pt;}
.fs1b{font-size:38.796928pt;}
.fsa{font-size:39.183046pt;}
.fs18{font-size:39.565184pt;}
.fse{font-size:39.902653pt;}
.fsf{font-size:40.052496pt;}
.fs21{font-size:41.283004pt;}
.fs20{font-size:41.328450pt;}
.fs25{font-size:41.634171pt;}
.fs11{font-size:41.756789pt;}
.fs12{font-size:41.859596pt;}
.fs14{font-size:41.904000pt;}
.fs15{font-size:41.990154pt;}
.fs1d{font-size:42.016770pt;}
.fs1e{font-size:42.126550pt;}
.fs9{font-size:42.880000pt;}
.fsc{font-size:43.058292pt;}
.fs1{font-size:45.440000pt;}
.fs27{font-size:45.751836pt;}
.fs26{font-size:45.794733pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs6{font-size:128.000000pt;}
.y3f{bottom:-7.040000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:1.280000pt;}
.yd{bottom:2.400000pt;}
.y77{bottom:9.440000pt;}
.y3e{bottom:12.026667pt;}
.y170{bottom:13.110235pt;}
.y1a5{bottom:13.702868pt;}
.yc7{bottom:13.827318pt;}
.y123{bottom:13.987158pt;}
.y10d{bottom:14.264088pt;}
.yde{bottom:14.451153pt;}
.y79{bottom:14.560000pt;}
.y154{bottom:14.883441pt;}
.yf2{bottom:15.140134pt;}
.y141{bottom:15.187499pt;}
.yb7{bottom:15.531485pt;}
.y18c{bottom:16.485968pt;}
.y171{bottom:23.731741pt;}
.y1a6{bottom:24.792352pt;}
.yc8{bottom:25.225596pt;}
.y124{bottom:25.319102pt;}
.y10e{bottom:25.820421pt;}
.ydf{bottom:26.363697pt;}
.y155{bottom:26.941527pt;}
.yf3{bottom:27.404767pt;}
.y142{bottom:27.491962pt;}
.yb8{bottom:28.107197pt;}
.y18d{bottom:29.849325pt;}
.y3d{bottom:35.066667pt;}
.y12a{bottom:46.867564pt;}
.yb{bottom:50.240000pt;}
.y17d{bottom:52.656754pt;}
.y1b2{bottom:54.991815pt;}
.y131{bottom:56.178788pt;}
.y119{bottom:57.291218pt;}
.yc{bottom:58.400000pt;}
.y161{bottom:59.778677pt;}
.yce{bottom:60.087957pt;}
.yc9{bottom:60.772186pt;}
.yff{bottom:60.804394pt;}
.y3a{bottom:62.240000pt;}
.yc3{bottom:62.356481pt;}
.y17c{bottom:63.020673pt;}
.ya{bottom:64.640000pt;}
.y172{bottom:65.005597pt;}
.y143{bottom:65.721805pt;}
.y1b1{bottom:65.812367pt;}
.y198{bottom:66.241059pt;}
.y176{bottom:67.111716pt;}
.y130{bottom:67.235912pt;}
.y1a7{bottom:67.884724pt;}
.y118{bottom:68.567295pt;}
.y125{bottom:69.353616pt;}
.y160{bottom:71.544333pt;}
.yfe{bottom:72.771588pt;}
.ye0{bottom:72.827848pt;}
.y14e{bottom:73.006188pt;}
.y156{bottom:73.797737pt;}
.y148{bottom:74.269984pt;}
.yc2{bottom:74.628991pt;}
.yf4{bottom:75.063592pt;}
.y112{bottom:75.095561pt;}
.yf8{bottom:77.810449pt;}
.y1ab{bottom:78.626178pt;}
.y15a{bottom:78.665694pt;}
.y197{bottom:79.280332pt;}
.y129{bottom:79.747963pt;}
.y9{bottom:80.960000pt;}
.y10f{bottom:85.757553pt;}
.y17b{bottom:85.926602pt;}
.ybc{bottom:89.484102pt;}
.y1b0{bottom:89.728317pt;}
.yd3{bottom:89.826081pt;}
.y12f{bottom:91.673936pt;}
.yb9{bottom:93.337819pt;}
.y191{bottom:93.349065pt;}
.y117{bottom:93.489240pt;}
.yca{bottom:96.317942pt;}
.y15f{bottom:97.548326pt;}
.y18e{bottom:99.167171pt;}
.ye4{bottom:99.215963pt;}
.yfd{bottom:99.228010pt;}
.y14d{bottom:99.541526pt;}
.yd2{bottom:101.241042pt;}
.yc1{bottom:101.752127pt;}
.y144{bottom:104.052577pt;}
.y121{bottom:105.760000pt;}
.ye8{bottom:105.808849pt;}
.y173{bottom:106.366575pt;}
.y196{bottom:108.107802pt;}
.yc5{bottom:110.720000pt;}
.y178{bottom:110.745460pt;}
.y1a8{bottom:111.068850pt;}
.y1bd{bottom:111.840000pt;}
.y38{bottom:112.800000pt;}
.y126{bottom:113.481080pt;}
.yf0{bottom:113.920000pt;}
.y75{bottom:114.720000pt;}
.y1ad{bottom:115.640691pt;}
.y12c{bottom:118.152837pt;}
.ye1{bottom:119.291127pt;}
.y114{bottom:120.492477pt;}
.y157{bottom:120.752856pt;}
.y120{bottom:121.920000pt;}
.yf5{bottom:122.830017pt;}
.yc4{bottom:123.520000pt;}
.yb6{bottom:123.613333pt;}
.y177{bottom:125.473135pt;}
.y15c{bottom:125.723973pt;}
.yfa{bottom:127.886287pt;}
.y1bc{bottom:128.160000pt;}
.y14a{bottom:128.292896pt;}
.y37{bottom:129.120000pt;}
.y152{bottom:129.920000pt;}
.yef{bottom:130.240000pt;}
.y1ac{bottom:131.017265pt;}
.y74{bottom:131.040000pt;}
.ybe{bottom:131.139412pt;}
.ycb{bottom:131.864532pt;}
.yd0{bottom:133.082774pt;}
.y12b{bottom:133.865593pt;}
.y18a{bottom:133.920000pt;}
.y76{bottom:135.200000pt;}
.y113{bottom:136.516377pt;}
.y1f1{bottom:137.120000pt;}
.y11f{bottom:138.240000pt;}
.ye6{bottom:139.087228pt;}
.y193{bottom:139.333427pt;}
.y145{bottom:142.282421pt;}
.y15b{bottom:142.443590pt;}
.y1bb{bottom:144.320000pt;}
.yf9{bottom:144.892300pt;}
.y149{bottom:145.354149pt;}
.y36{bottom:145.440000pt;}
.y110{bottom:145.698807pt;}
.y151{bottom:146.240000pt;}
.yee{bottom:146.400000pt;}
.y1be{bottom:147.200000pt;}
.y174{bottom:147.640430pt;}
.ybd{bottom:148.578020pt;}
.y189{bottom:150.240000pt;}
.y1f0{bottom:151.840000pt;}
.y1a9{bottom:154.161222pt;}
.y11e{bottom:154.560000pt;}
.ycf{bottom:156.513484pt;}
.y127{bottom:157.515593pt;}
.y192{bottom:157.862921pt;}
.yba{bottom:158.571133pt;}
.y1ba{bottom:160.640000pt;}
.y35{bottom:161.600000pt;}
.y150{bottom:162.560000pt;}
.yed{bottom:162.720000pt;}
.y73{bottom:163.520000pt;}
.ye5{bottom:163.575091pt;}
.ye2{bottom:165.755278pt;}
.y1ef{bottom:166.400000pt;}
.y188{bottom:166.560000pt;}
.ycc{bottom:167.411123pt;}
.y158{bottom:167.609066pt;}
.y18f{bottom:168.481204pt;}
.yf6{bottom:170.488842pt;}
.y11d{bottom:170.880000pt;}
.y1ae{bottom:172.590963pt;}
.y14f{bottom:175.200000pt;}
.y140{bottom:175.280000pt;}
.y1b9{bottom:176.960000pt;}
.y34{bottom:177.920000pt;}
.yec{bottom:179.040000pt;}
.y72{bottom:179.840000pt;}
.y146{bottom:180.617581pt;}
.y1ee{bottom:181.120000pt;}
.y187{bottom:182.880000pt;}
.yd1{bottom:183.548933pt;}
.y194{bottom:184.970910pt;}
.y11c{bottom:187.066667pt;}
.y175{bottom:189.005196pt;}
.ye7{bottom:191.830318pt;}
.y1b8{bottom:193.306667pt;}
.y33{bottom:194.266667pt;}
.yeb{bottom:195.386667pt;}
.y1ed{bottom:195.706667pt;}
.y179{bottom:195.838706pt;}
.y71{bottom:196.026667pt;}
.y1aa{bottom:197.348512pt;}
.y186{bottom:199.066667pt;}
.y128{bottom:201.647099pt;}
.ycd{bottom:203.057844pt;}
.y11b{bottom:203.386667pt;}
.yfb{bottom:203.468596pt;}
.y111{bottom:205.640061pt;}
.ybf{bottom:208.644338pt;}
.y12d{bottom:208.937673pt;}
.y1b7{bottom:209.466667pt;}
.y32{bottom:210.426667pt;}
.y17a{bottom:211.384584pt;}
.yea{bottom:211.546667pt;}
.ye3{bottom:212.219430pt;}
.y70{bottom:212.346667pt;}
.y115{bottom:213.075014pt;}
.y1af{bottom:213.879910pt;}
.y159{bottom:214.568483pt;}
.y185{bottom:215.386667pt;}
.y11a{bottom:216.186667pt;}
.y10c{bottom:216.213315pt;}
.yf7{bottom:218.252643pt;}
.y147{bottom:218.952741pt;}
.y15d{bottom:222.326231pt;}
.ybb{bottom:223.696800pt;}
.ye9{bottom:224.346667pt;}
.ydd{bottom:224.413333pt;}
.y1ec{bottom:225.146667pt;}
.y12e{bottom:225.523357pt;}
.y1b6{bottom:225.786667pt;}
.y31{bottom:226.746667pt;}
.y14b{bottom:226.869022pt;}
.y6f{bottom:228.666667pt;}
.y116{bottom:229.989130pt;}
.y184{bottom:231.706667pt;}
.yfc{bottom:231.811944pt;}
.y195{bottom:232.324059pt;}
.y190{bottom:237.795236pt;}
.yc0{bottom:239.000435pt;}
.y1eb{bottom:239.706667pt;}
.y15e{bottom:239.974712pt;}
.y1b5{bottom:242.106667pt;}
.y30{bottom:243.066667pt;}
.y14c{bottom:244.878122pt;}
.y6e{bottom:244.986667pt;}
.y183{bottom:248.026667pt;}
.y1ea{bottom:254.426667pt;}
.y1b4{bottom:258.426667pt;}
.y2f{bottom:258.746667pt;}
.y6d{bottom:261.146667pt;}
.y182{bottom:264.186667pt;}
.y1e9{bottom:268.986667pt;}
.y2e{bottom:274.586667pt;}
.y6c{bottom:277.466667pt;}
.y181{bottom:280.506667pt;}
.y1e8{bottom:283.706667pt;}
.y2d{bottom:290.906667pt;}
.y6b{bottom:293.786667pt;}
.y180{bottom:296.826667pt;}
.y1e7{bottom:298.266667pt;}
.y2c{bottom:307.226667pt;}
.y6a{bottom:310.106667pt;}
.y17f{bottom:312.986667pt;}
.y2b{bottom:323.386667pt;}
.y17e{bottom:325.946667pt;}
.y16f{bottom:326.013297pt;}
.y69{bottom:326.266667pt;}
.y1e6{bottom:327.546667pt;}
.y2a{bottom:339.706667pt;}
.y1e5{bottom:342.266667pt;}
.y68{bottom:342.586667pt;}
.y1b3{bottom:352.506667pt;}
.y1a4{bottom:352.546667pt;}
.y29{bottom:356.026667pt;}
.y1e4{bottom:356.986667pt;}
.y67{bottom:358.906667pt;}
.y1e3{bottom:371.546667pt;}
.y28{bottom:372.346667pt;}
.y66{bottom:375.066667pt;}
.yb5{bottom:384.826667pt;}
.y9b{bottom:385.626667pt;}
.y1e2{bottom:386.266667pt;}
.y27{bottom:388.506667pt;}
.y65{bottom:391.386667pt;}
.y1e1{bottom:400.866667pt;}
.yb4{bottom:401.186667pt;}
.y9a{bottom:401.826667pt;}
.y26{bottom:404.866667pt;}
.y64{bottom:407.746667pt;}
.y1e0{bottom:415.586667pt;}
.yb3{bottom:417.506667pt;}
.y99{bottom:418.146667pt;}
.y25{bottom:421.186667pt;}
.y63{bottom:424.066667pt;}
.y1df{bottom:430.146667pt;}
.yb2{bottom:433.666667pt;}
.y98{bottom:435.106667pt;}
.y24{bottom:437.506667pt;}
.y62{bottom:440.226667pt;}
.y212{bottom:441.826667pt;}
.y13f{bottom:441.986667pt;}
.y1de{bottom:444.866667pt;}
.yb1{bottom:449.986667pt;}
.y97{bottom:451.426667pt;}
.y23{bottom:453.666667pt;}
.y61{bottom:456.546667pt;}
.y211{bottom:458.146667pt;}
.y13e{bottom:458.306667pt;}
.y1dd{bottom:459.426667pt;}
.ydc{bottom:461.186667pt;}
.yb0{bottom:466.306667pt;}
.y10b{bottom:466.946667pt;}
.y96{bottom:467.746667pt;}
.y22{bottom:469.986667pt;}
.y60{bottom:472.866667pt;}
.y1dc{bottom:474.146667pt;}
.y13d{bottom:474.466667pt;}
.ydb{bottom:477.346667pt;}
.yaf{bottom:482.626667pt;}
.y10a{bottom:483.266667pt;}
.y95{bottom:484.066667pt;}
.y21{bottom:486.306667pt;}
.y1db{bottom:488.706667pt;}
.y5f{bottom:489.026667pt;}
.y13c{bottom:490.786667pt;}
.yda{bottom:493.666667pt;}
.yae{bottom:498.786667pt;}
.y109{bottom:499.426667pt;}
.y94{bottom:501.026667pt;}
.y20{bottom:502.466667pt;}
.y1da{bottom:503.426667pt;}
.y5e{bottom:505.346667pt;}
.y210{bottom:506.946667pt;}
.y13b{bottom:507.106667pt;}
.yd9{bottom:509.986667pt;}
.yad{bottom:515.106667pt;}
.y108{bottom:515.746667pt;}
.y93{bottom:517.986667pt;}
.y1d9{bottom:518.146667pt;}
.y1f{bottom:518.786667pt;}
.y5d{bottom:521.666667pt;}
.y20f{bottom:523.266667pt;}
.y13a{bottom:523.426667pt;}
.yd8{bottom:526.306667pt;}
.yac{bottom:532.066667pt;}
.y1d8{bottom:532.706667pt;}
.y92{bottom:534.146667pt;}
.y1e{bottom:535.906667pt;}
.y5c{bottom:537.986667pt;}
.y139{bottom:539.586667pt;}
.yd7{bottom:542.466667pt;}
.y1d7{bottom:547.426667pt;}
.yab{bottom:548.386667pt;}
.y91{bottom:550.466667pt;}
.y5b{bottom:554.146667pt;}
.y20e{bottom:555.586667pt;}
.y138{bottom:555.906667pt;}
.y16e{bottom:556.706667pt;}
.yd6{bottom:558.786667pt;}
.y1d6{bottom:561.986667pt;}
.y1d{bottom:564.066667pt;}
.y107{bottom:564.546667pt;}
.yaa{bottom:565.346667pt;}
.y90{bottom:566.786667pt;}
.y20d{bottom:570.146667pt;}
.y5a{bottom:570.466667pt;}
.y137{bottom:572.226667pt;}
.y16d{bottom:572.866667pt;}
.yd5{bottom:575.106667pt;}
.y1d5{bottom:576.706667pt;}
.y1c{bottom:577.826667pt;}
.y106{bottom:580.866667pt;}
.ya9{bottom:582.306667pt;}
.y8f{bottom:583.106667pt;}
.y20c{bottom:584.866667pt;}
.y1a3{bottom:586.466667pt;}
.y59{bottom:586.786667pt;}
.yd4{bottom:587.906667pt;}
.yc6{bottom:587.946630pt;}
.y136{bottom:588.546667pt;}
.y16c{bottom:589.186667pt;}
.y1d4{bottom:591.266667pt;}
.y105{bottom:597.186667pt;}
.ya8{bottom:598.626667pt;}
.y1b{bottom:599.426667pt;}
.y8e{bottom:600.066667pt;}
.y1a2{bottom:602.626667pt;}
.y58{bottom:603.106667pt;}
.y135{bottom:604.733333pt;}
.y16b{bottom:605.533333pt;}
.y1d3{bottom:606.013333pt;}
.y104{bottom:613.373333pt;}
.y20b{bottom:614.173333pt;}
.ya7{bottom:614.973333pt;}
.y8d{bottom:616.413333pt;}
.y1a1{bottom:618.973333pt;}
.y57{bottom:619.293333pt;}
.y1d2{bottom:620.573333pt;}
.y134{bottom:621.053333pt;}
.y1a{bottom:621.373333pt;}
.y16a{bottom:621.853333pt;}
.y20a{bottom:628.733333pt;}
.y103{bottom:629.693333pt;}
.ya6{bottom:631.133333pt;}
.y8c{bottom:632.573333pt;}
.y1a0{bottom:635.293333pt;}
.y56{bottom:635.613333pt;}
.y133{bottom:637.373333pt;}
.y169{bottom:638.013333pt;}
.y209{bottom:643.453333pt;}
.y19{bottom:643.773333pt;}
.y102{bottom:646.013333pt;}
.ya5{bottom:647.453333pt;}
.y8b{bottom:648.893333pt;}
.y1d1{bottom:650.013333pt;}
.y122{bottom:650.146594pt;}
.y132{bottom:650.173333pt;}
.y19f{bottom:651.613333pt;}
.y55{bottom:651.933333pt;}
.y168{bottom:654.333333pt;}
.y208{bottom:658.013333pt;}
.y101{bottom:662.333333pt;}
.ya4{bottom:663.773333pt;}
.y1d0{bottom:664.573333pt;}
.y8a{bottom:665.213333pt;}
.y18{bottom:666.173333pt;}
.y19e{bottom:667.773333pt;}
.y54{bottom:668.093333pt;}
.y167{bottom:670.653333pt;}
.y207{bottom:672.733333pt;}
.yf1{bottom:674.946594pt;}
.y100{bottom:674.973333pt;}
.y1cf{bottom:679.293333pt;}
.ya3{bottom:680.733333pt;}
.y89{bottom:681.533333pt;}
.y19d{bottom:684.093333pt;}
.y53{bottom:684.413333pt;}
.y17{bottom:684.573333pt;}
.y166{bottom:686.813333pt;}
.y206{bottom:687.453333pt;}
.y1ce{bottom:693.853333pt;}
.ya2{bottom:697.693333pt;}
.y88{bottom:698.493333pt;}
.y19c{bottom:700.413333pt;}
.y52{bottom:700.733333pt;}
.y205{bottom:702.013333pt;}
.y165{bottom:703.133333pt;}
.y16{bottom:706.813333pt;}
.y1cd{bottom:708.573333pt;}
.ya1{bottom:714.013333pt;}
.y87{bottom:714.653333pt;}
.y19b{bottom:716.733333pt;}
.y51{bottom:717.053333pt;}
.y164{bottom:719.453333pt;}
.y1cc{bottom:723.133333pt;}
.y15{bottom:729.213333pt;}
.ya0{bottom:730.333333pt;}
.y86{bottom:730.973333pt;}
.y204{bottom:731.293333pt;}
.y19a{bottom:732.893333pt;}
.y50{bottom:733.213333pt;}
.y163{bottom:735.773333pt;}
.y1cb{bottom:737.853333pt;}
.y18b{bottom:745.679928pt;}
.y199{bottom:745.693333pt;}
.y203{bottom:746.013333pt;}
.y9f{bottom:746.493333pt;}
.y85{bottom:747.293333pt;}
.y153{bottom:748.546594pt;}
.y162{bottom:748.573333pt;}
.y4f{bottom:749.533333pt;}
.y14{bottom:751.613333pt;}
.y1ca{bottom:752.413333pt;}
.y202{bottom:760.573333pt;}
.y9e{bottom:762.813333pt;}
.y84{bottom:763.453333pt;}
.y4e{bottom:765.853333pt;}
.y1c9{bottom:767.133333pt;}
.y13{bottom:774.653333pt;}
.y201{bottom:775.293333pt;}
.y9d{bottom:779.133333pt;}
.y83{bottom:779.773333pt;}
.y1c8{bottom:781.853333pt;}
.y4d{bottom:782.173333pt;}
.y200{bottom:789.853333pt;}
.y9c{bottom:795.453333pt;}
.y82{bottom:796.093333pt;}
.y1c7{bottom:796.413333pt;}
.y12{bottom:796.573333pt;}
.y4c{bottom:798.333333pt;}
.y1ff{bottom:804.573333pt;}
.y1c6{bottom:811.133333pt;}
.y81{bottom:812.413333pt;}
.y4b{bottom:814.693333pt;}
.y11{bottom:818.533333pt;}
.y1fe{bottom:819.333333pt;}
.y1c5{bottom:825.733333pt;}
.y80{bottom:828.613333pt;}
.y4a{bottom:831.013333pt;}
.y1fd{bottom:833.893333pt;}
.y1c4{bottom:840.453333pt;}
.y10{bottom:840.933333pt;}
.y7f{bottom:844.933333pt;}
.y49{bottom:847.173333pt;}
.y1fc{bottom:848.613333pt;}
.y1c3{bottom:855.013333pt;}
.y7e{bottom:861.253333pt;}
.y1fb{bottom:863.173333pt;}
.y48{bottom:863.493333pt;}
.yf{bottom:868.133333pt;}
.y1c2{bottom:869.733333pt;}
.y7d{bottom:877.573333pt;}
.y1fa{bottom:877.893333pt;}
.y47{bottom:879.813333pt;}
.y1c1{bottom:884.293333pt;}
.y7c{bottom:890.213333pt;}
.y1f9{bottom:892.453333pt;}
.y46{bottom:896.133333pt;}
.y1c0{bottom:899.013333pt;}
.ye{bottom:904.773333pt;}
.y1f8{bottom:907.173333pt;}
.y45{bottom:912.293333pt;}
.y1bf{bottom:913.733333pt;}
.y1f7{bottom:921.733333pt;}
.y44{bottom:928.613333pt;}
.y7b{bottom:933.733333pt;}
.y1f6{bottom:936.453333pt;}
.y8{bottom:938.693333pt;}
.y43{bottom:944.933333pt;}
.y7a{bottom:950.053333pt;}
.y1f5{bottom:951.013333pt;}
.y7{bottom:956.613333pt;}
.y42{bottom:961.253333pt;}
.y78{bottom:962.853333pt;}
.y1f4{bottom:965.733333pt;}
.y6{bottom:973.413333pt;}
.y41{bottom:977.413333pt;}
.y1f3{bottom:980.453333pt;}
.y5{bottom:991.013333pt;}
.y40{bottom:993.733333pt;}
.y1f2{bottom:995.013333pt;}
.y4{bottom:1008.613333pt;}
.y39{bottom:1016.933333pt;}
.y3c{bottom:1023.013333pt;}
.y3{bottom:1026.080000pt;}
.y2{bottom:1044.640000pt;}
.y1{bottom:1062.880000pt;}
.h12{height:11.360000pt;}
.h4{height:13.920000pt;}
.h14{height:22.240000pt;}
.h15{height:27.360000pt;}
.h9{height:31.238750pt;}
.hc{height:33.103750pt;}
.h38{height:34.513727pt;}
.hd{height:34.968750pt;}
.h40{height:36.034395pt;}
.h2c{height:36.822225pt;}
.h28{height:37.551378pt;}
.h39{height:37.892239pt;}
.h3a{height:37.927172pt;}
.h1c{height:38.013887pt;}
.h29{height:38.238000pt;}
.h2{height:38.698750pt;}
.h34{height:39.181764pt;}
.h42{height:39.598236pt;}
.h41{height:39.630982pt;}
.h20{height:39.729008pt;}
.h24{height:39.852921pt;}
.h19{height:39.901553pt;}
.h30{height:39.982374pt;}
.h2d{height:40.373804pt;}
.h2e{height:40.463984pt;}
.h18{height:40.866693pt;}
.h2a{height:41.265251pt;}
.h1d{height:41.617220pt;}
.h1e{height:41.773502pt;}
.h44{height:41.976562pt;}
.h36{height:43.056884pt;}
.h35{height:43.104282pt;}
.h3c{height:43.423139pt;}
.h21{height:43.551026pt;}
.h22{height:43.658250pt;}
.h25{height:43.704563pt;}
.h26{height:43.794419pt;}
.h31{height:43.822178pt;}
.h32{height:43.936675pt;}
.h1a{height:44.908453pt;}
.hb{height:46.625000pt;}
.ha{height:47.238750pt;}
.h13{height:47.552000pt;}
.h3e{height:47.717735pt;}
.h43{height:47.742188pt;}
.h3d{height:47.762476pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.h16{height:55.402500pt;}
.h3{height:58.563750pt;}
.h5{height:63.656250pt;}
.hf{height:65.531250pt;}
.h8{height:65.739375pt;}
.he{height:65.781915pt;}
.h7{height:74.729375pt;}
.h6{height:93.250000pt;}
.h1b{height:223.200914pt;}
.h37{height:227.203211pt;}
.h3f{height:230.395489pt;}
.h1f{height:233.271318pt;}
.h2b{height:242.400045pt;}
.h27{height:247.199991pt;}
.h23{height:250.077686pt;}
.h17{height:257.730792pt;}
.h33{height:257.932844pt;}
.h3b{height:260.804601pt;}
.h2f{height:263.203171pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:29.440000pt;}
.w3{width:33.760000pt;}
.w5{width:304.706667pt;}
.w9{width:315.871079pt;}
.w6{width:322.626667pt;}
.w10{width:330.393836pt;}
.w12{width:331.867189pt;}
.wc{width:339.198286pt;}
.wa{width:353.740917pt;}
.w8{width:358.538142pt;}
.wb{width:360.007758pt;}
.wf{width:365.929006pt;}
.wd{width:374.402787pt;}
.we{width:387.464662pt;}
.w11{width:416.455415pt;}
.w7{width:622.013333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:7.200000pt;}
.x19{left:9.626667pt;}
.x15{left:12.000000pt;}
.x9{left:13.760000pt;}
.x27{left:17.215963pt;}
.x37{left:18.790565pt;}
.x5a{left:20.850287pt;}
.x26{left:21.918468pt;}
.x31{left:23.421208pt;}
.x3c{left:24.554887pt;}
.x59{left:25.446933pt;}
.x30{left:28.469727pt;}
.x52{left:29.662980pt;}
.x25{left:31.600054pt;}
.x36{left:34.803430pt;}
.x6{left:39.199988pt;}
.x5f{left:43.664340pt;}
.x17{left:46.426667pt;}
.x24{left:56.717012pt;}
.x13{left:58.719988pt;}
.x65{left:61.082195pt;}
.x2f{left:66.537690pt;}
.x51{left:72.268861pt;}
.x35{left:74.640277pt;}
.x48{left:78.195154pt;}
.x1c{left:85.952000pt;}
.x3e{left:90.198363pt;}
.x28{left:91.531477pt;}
.x42{left:93.489764pt;}
.x5{left:96.031988pt;}
.x67{left:99.175420pt;}
.x1e{left:100.511988pt;}
.x43{left:104.580215pt;}
.x5b{left:105.996089pt;}
.x57{left:110.656929pt;}
.x54{left:112.184777pt;}
.x4a{left:114.970081pt;}
.x5c{left:116.986258pt;}
.x3f{left:122.359681pt;}
.x1f{left:124.511988pt;}
.x4b{left:126.679995pt;}
.x2d{left:128.511988pt;}
.x61{left:130.286022pt;}
.xb{left:133.786655pt;}
.x62{left:138.071123pt;}
.x29{left:142.318531pt;}
.xa{left:152.826655pt;}
.x7{left:162.266655pt;}
.xf{left:171.546655pt;}
.x5e{left:188.746649pt;}
.x32{left:193.029092pt;}
.x18{left:196.706667pt;}
.x44{left:198.803239pt;}
.x45{left:202.102879pt;}
.x50{left:203.146649pt;}
.x39{left:207.009292pt;}
.x47{left:209.679982pt;}
.x41{left:214.201549pt;}
.x2a{left:216.634063pt;}
.x23{left:217.679982pt;}
.x2b{left:220.077255pt;}
.x66{left:222.289740pt;}
.x4c{left:226.165897pt;}
.x40{left:227.224451pt;}
.x4d{left:229.649841pt;}
.x38{left:231.019441pt;}
.x10{left:233.146655pt;}
.x55{left:236.659468pt;}
.x2e{left:238.946649pt;}
.x49{left:242.424289pt;}
.x3d{left:244.824128pt;}
.x3{left:246.466655pt;}
.x53{left:250.524997pt;}
.x1d{left:265.986655pt;}
.x63{left:269.273044pt;}
.x60{left:284.385301pt;}
.x3b{left:290.306655pt;}
.xc{left:304.706655pt;}
.x34{left:318.626655pt;}
.x11{left:380.226655pt;}
.x16{left:393.186667pt;}
.x4f{left:396.893322pt;}
.x12{left:406.333322pt;}
.x1a{left:407.613333pt;}
.x21{left:410.813322pt;}
.x22{left:415.773322pt;}
.x20{left:434.813322pt;}
.x4{left:457.853322pt;}
.xd{left:481.533322pt;}
.xe{left:484.413322pt;}
.x33{left:554.813322pt;}
.x5d{left:562.213322pt;}
.x46{left:566.533322pt;}
.x3a{left:573.893322pt;}
.x2c{left:576.293322pt;}
.x58{left:579.973322pt;}
.x4e{left:584.133322pt;}
.x56{left:590.693322pt;}
.x2{left:603.653322pt;}
.x64{left:605.253322pt;}
.x8{left:665.733333pt;}
.x14{left:673.413333pt;}
.x1{left:697.893322pt;}
}




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