
    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_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_d07e75ed3ee9c3925cad7ffd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d9651fd25b874711a2b90133.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6ab5573cefbab62fee06ede8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eade3521b39fc76b83677e66.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;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_f1871c4dabfde4577a42c1a1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000488;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_0ba999e062f27239e07b0cf0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000977;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_88db7aad0fe5d5f3b37012f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011230;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c82dad9cfa2638fa51ec3b42.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740000;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_f57af2ba03c0ff872f3cc37f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.357000;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_b54e8720ba8faeaa3f38fa11.woff2')format("woff");}.fff{font-family:fff;line-height:0.059000;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:ff10;src:url('chunks/assets/font_c3cd4447a589c34e98017c63.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.734000;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:ff11;src:url('chunks/assets/font_32675cd996e8e7529f0b4564.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.869000;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;}
.m5{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);}
.m7{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);}
.m26{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);}
.me{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);}
.m28{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);}
.mb{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);}
.m10{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);}
.m2{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);}
.m12{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);}
.m23{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);}
.m1a{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);}
.m6{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);}
.m15{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);}
.m11{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);}
.m19{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);}
.m14{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);}
.m20{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);}
.m9{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);}
.m1c{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);}
.m13{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);}
.m16{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);}
.m1e{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);}
.m3{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);}
.m4{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);}
.m25{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);}
.m1b{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);}
.m1d{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);}
.mf{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);}
.m18{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);}
.m22{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);}
.mc{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);}
.m8{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);}
.m27{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m24{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);}
.m21{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);}
.m17{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);}
.m1{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);}
.ma{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:-19.530000px;}
.v5{vertical-align:-9.072000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.539000px;}
.v3{vertical-align:18.553500px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:32.880000px;}
.ls36{letter-spacing:-0.702000px;}
.ls29{letter-spacing:-0.675360px;}
.ls2d{letter-spacing:-0.537840px;}
.ls31{letter-spacing:-0.478080px;}
.ls2a{letter-spacing:-0.434160px;}
.ls2b{letter-spacing:-0.358560px;}
.ls26{letter-spacing:-0.337680px;}
.ls30{letter-spacing:-0.239040px;}
.ls2e{letter-spacing:-0.119520px;}
.ls2f{letter-spacing:-0.059760px;}
.ls25{letter-spacing:-0.048240px;}
.lsf{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000091px;}
.ls4b{letter-spacing:0.000500px;}
.ls4a{letter-spacing:0.000649px;}
.ls11{letter-spacing:0.001518px;}
.ls6e{letter-spacing:0.001957px;}
.ls58{letter-spacing:0.002727px;}
.ls12{letter-spacing:0.002958px;}
.ls60{letter-spacing:0.003008px;}
.ls66{letter-spacing:0.003070px;}
.ls64{letter-spacing:0.003355px;}
.lse{letter-spacing:0.003488px;}
.ls63{letter-spacing:0.003494px;}
.ls62{letter-spacing:0.003573px;}
.ls51{letter-spacing:0.003885px;}
.ls6f{letter-spacing:0.004168px;}
.ls6b{letter-spacing:0.004800px;}
.ls61{letter-spacing:0.005415px;}
.ls32{letter-spacing:0.119520px;}
.ls24{letter-spacing:0.162000px;}
.ls1d{letter-spacing:0.179280px;}
.ls27{letter-spacing:0.192960px;}
.ls20{letter-spacing:0.221112px;}
.ls19{letter-spacing:0.239040px;}
.ls35{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.358560px;}
.ls34{letter-spacing:0.378000px;}
.ls28{letter-spacing:0.385920px;}
.ls33{letter-spacing:0.478080px;}
.ls65{letter-spacing:0.528270px;}
.ls67{letter-spacing:0.534193px;}
.ls2c{letter-spacing:0.597600px;}
.ls1c{letter-spacing:0.717120px;}
.ls10{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls1e{letter-spacing:2.330640px;}
.ls5e{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls23{letter-spacing:3.047760px;}
.ls1a{letter-spacing:3.764880px;}
.ls22{letter-spacing:3.824640px;}
.ls1f{letter-spacing:4.482000px;}
.ls21{letter-spacing:8.127360px;}
.lsd{letter-spacing:11.954850px;}
.ls6d{letter-spacing:12.283053px;}
.ls50{letter-spacing:12.773071px;}
.ls4e{letter-spacing:12.777585px;}
.ls4f{letter-spacing:12.778771px;}
.ls71{letter-spacing:13.152170px;}
.ls68{letter-spacing:13.448400px;}
.ls5c{letter-spacing:13.450090px;}
.ls5d{letter-spacing:13.451338px;}
.ls69{letter-spacing:13.454400px;}
.ls6c{letter-spacing:13.547367px;}
.ls70{letter-spacing:13.690644px;}
.ls17{letter-spacing:14.065226px;}
.ls16{letter-spacing:14.066807px;}
.ls6a{letter-spacing:14.344518px;}
.ls49{letter-spacing:14.611302px;}
.ls48{letter-spacing:14.617112px;}
.ls40{letter-spacing:14.684015px;}
.ls3f{letter-spacing:14.689540px;}
.ls3d{letter-spacing:14.834034px;}
.ls3e{letter-spacing:14.841629px;}
.ls6{letter-spacing:14.845944px;}
.ls5{letter-spacing:14.846528px;}
.ls4d{letter-spacing:14.989715px;}
.ls4c{letter-spacing:14.989751px;}
.ls3a{letter-spacing:15.002108px;}
.ls39{letter-spacing:15.003601px;}
.ls41{letter-spacing:15.036974px;}
.ls43{letter-spacing:15.039211px;}
.ls42{letter-spacing:15.045229px;}
.ls14{letter-spacing:15.054389px;}
.ls15{letter-spacing:15.054505px;}
.ls13{letter-spacing:15.060541px;}
.lsa{letter-spacing:15.123027px;}
.ls9{letter-spacing:15.124297px;}
.ls38{letter-spacing:16.231318px;}
.ls47{letter-spacing:16.686594px;}
.ls46{letter-spacing:16.694553px;}
.ls18{letter-spacing:16.732800px;}
.ls3c{letter-spacing:17.233653px;}
.ls3b{letter-spacing:17.235729px;}
.ls8{letter-spacing:17.374829px;}
.ls7{letter-spacing:17.376906px;}
.lsb{letter-spacing:18.482788px;}
.lsc{letter-spacing:18.486594px;}
.ls44{letter-spacing:20.141612px;}
.ls45{letter-spacing:20.145418px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.359510px;}
.ls5f{letter-spacing:129.121133px;}
.ls59{letter-spacing:240.665970px;}
.ls57{letter-spacing:278.719170px;}
.ls52{letter-spacing:370.432170px;}
.ls53{letter-spacing:375.567870px;}
.ls56{letter-spacing:431.655870px;}
.ls5a{letter-spacing:457.875870px;}
.ls55{letter-spacing:486.341670px;}
.ls5b{letter-spacing:487.339170px;}
.ls54{letter-spacing:1058.735670px;}
.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;}
}
.ws14{word-spacing:-17.394700px;}
.ws5{word-spacing:-15.655334px;}
.ws33{word-spacing:-15.298560px;}
.ws32{word-spacing:-15.179040px;}
.ws2b{word-spacing:-14.943900px;}
.ws35{word-spacing:-14.940000px;}
.ws34{word-spacing:-14.880240px;}
.ws36{word-spacing:-14.700960px;}
.ws30{word-spacing:-14.581440px;}
.ws31{word-spacing:-14.461920px;}
.ws1{word-spacing:-14.355754px;}
.wsa6{word-spacing:-13.449600px;}
.ws8a{word-spacing:-12.777120px;}
.ws2e{word-spacing:-12.445920px;}
.ws1c{word-spacing:-11.955150px;}
.ws2d{word-spacing:-11.722320px;}
.ws2f{word-spacing:-11.384640px;}
.ws2{word-spacing:-11.357400px;}
.wsa8{word-spacing:-4.303843px;}
.ws5a{word-spacing:-4.302720px;}
.wsab{word-spacing:-4.064741px;}
.ws104{word-spacing:-3.658291px;}
.ws59{word-spacing:-3.346560px;}
.ws100{word-spacing:-3.120307px;}
.ws77{word-spacing:-3.108331px;}
.wse{word-spacing:-2.929004px;}
.ws6b{word-spacing:-2.749678px;}
.ws74{word-spacing:-2.689902px;}
.wsed{word-spacing:-2.636122px;}
.ws3e{word-spacing:-2.569680px;}
.wsdb{word-spacing:-2.367130px;}
.wsb1{word-spacing:-2.092146px;}
.ws73{word-spacing:-2.032370px;}
.wsa1{word-spacing:-2.008465px;}
.ws3f{word-spacing:-1.912320px;}
.ws7{word-spacing:-1.908367px;}
.ws3d{word-spacing:-1.852560px;}
.wscb{word-spacing:-1.721549px;}
.ws10c{word-spacing:-1.613952px;}
.wsad{word-spacing:-1.613941px;}
.wsf3{word-spacing:-1.560154px;}
.wsf1{word-spacing:-1.506355px;}
.ws99{word-spacing:-1.338977px;}
.ws6{word-spacing:-1.322630px;}
.ws24{word-spacing:-1.195512px;}
.wsf2{word-spacing:-1.183565px;}
.ws7e{word-spacing:-1.135736px;}
.ws44{word-spacing:-1.135440px;}
.wsbc{word-spacing:-1.016185px;}
.ws5f{word-spacing:-1.015920px;}
.ws9a{word-spacing:-1.004233px;}
.ws6f{word-spacing:-0.956410px;}
.ws63{word-spacing:-0.918000px;}
.ws2c{word-spacing:-0.896634px;}
.wsb2{word-spacing:-0.836858px;}
.wsbd{word-spacing:-0.777083px;}
.ws92{word-spacing:-0.717309px;}
.ws25{word-spacing:-0.717307px;}
.ws4c{word-spacing:-0.717120px;}
.ws97{word-spacing:-0.715519px;}
.wsef{word-spacing:-0.699379px;}
.wse0{word-spacing:-0.484186px;}
.wsb8{word-spacing:-0.478205px;}
.ws45{word-spacing:-0.478080px;}
.wscd{word-spacing:-0.430387px;}
.wsbe{word-spacing:-0.418429px;}
.ws47{word-spacing:-0.418320px;}
.ws69{word-spacing:-0.358654px;}
.wsc9{word-spacing:-0.322790px;}
.ws1f{word-spacing:-0.298878px;}
.ws4b{word-spacing:-0.298800px;}
.ws64{word-spacing:-0.270000px;}
.ws7c{word-spacing:-0.269799px;}
.wsd3{word-spacing:-0.268992px;}
.ws15{word-spacing:-0.239102px;}
.ws86{word-spacing:-0.215194px;}
.ws38{word-spacing:-0.192960px;}
.ws7d{word-spacing:-0.179327px;}
.ws5b{word-spacing:-0.179280px;}
.wscf{word-spacing:-0.161395px;}
.wsd{word-spacing:-0.119551px;}
.wsd6{word-spacing:-0.107597px;}
.wsc{word-spacing:-0.059776px;}
.ws5c{word-spacing:-0.059760px;}
.ws9b{word-spacing:-0.053798px;}
.ws1d{word-spacing:-0.047821px;}
.ws88{word-spacing:-0.025500px;}
.ws4{word-spacing:-0.011251px;}
.ws98{word-spacing:-0.009594px;}
.ws8c{word-spacing:-0.007260px;}
.ws8e{word-spacing:-0.005855px;}
.ws96{word-spacing:-0.004441px;}
.wsa4{word-spacing:-0.003341px;}
.wsa5{word-spacing:-0.003178px;}
.ws87{word-spacing:-0.003174px;}
.ws9e{word-spacing:-0.002909px;}
.wsf4{word-spacing:-0.001651px;}
.wsa0{word-spacing:-0.000292px;}
.ws0{word-spacing:0.000000px;}
.ws90{word-spacing:0.001806px;}
.ws93{word-spacing:0.047821px;}
.ws37{word-spacing:0.048240px;}
.ws85{word-spacing:0.053798px;}
.ws79{word-spacing:0.055187px;}
.ws70{word-spacing:0.059776px;}
.ws80{word-spacing:0.085194px;}
.wsa7{word-spacing:0.095641px;}
.wsc5{word-spacing:0.107597px;}
.ws2a{word-spacing:0.119551px;}
.wsc2{word-spacing:0.161395px;}
.ws12{word-spacing:0.179327px;}
.ws9c{word-spacing:0.215194px;}
.ws41{word-spacing:0.239040px;}
.wsa{word-spacing:0.239102px;}
.wsf0{word-spacing:0.268992px;}
.ws67{word-spacing:0.298878px;}
.wsd9{word-spacing:0.322790px;}
.ws6c{word-spacing:0.358654px;}
.ws46{word-spacing:0.418320px;}
.wsfa{word-spacing:0.430387px;}
.ws39{word-spacing:0.434160px;}
.wsaf{word-spacing:0.478205px;}
.ws3c{word-spacing:0.537840px;}
.wsf5{word-spacing:0.537984px;}
.ws3{word-spacing:0.582708px;}
.wsca{word-spacing:0.645581px;}
.ws48{word-spacing:0.717120px;}
.wsb{word-spacing:0.717307px;}
.ws65{word-spacing:0.864000px;}
.ws66{word-spacing:0.896634px;}
.wsd0{word-spacing:0.914573px;}
.ws76{word-spacing:0.956410px;}
.ws22{word-spacing:1.016185px;}
.ws71{word-spacing:1.075961px;}
.ws95{word-spacing:1.291162px;}
.ws21{word-spacing:1.315063px;}
.ws55{word-spacing:1.434240px;}
.ws10b{word-spacing:1.452557px;}
.wsaa{word-spacing:1.494390px;}
.wsb3{word-spacing:1.554166px;}
.ws94{word-spacing:1.560154px;}
.ws68{word-spacing:1.673717px;}
.ws83{word-spacing:1.733492px;}
.wsb7{word-spacing:1.793268px;}
.wsc6{word-spacing:1.882944px;}
.ws9{word-spacing:1.912819px;}
.ws54{word-spacing:1.972080px;}
.wsbf{word-spacing:2.032370px;}
.wsdf{word-spacing:2.044339px;}
.ws49{word-spacing:2.151360px;}
.wsc1{word-spacing:2.151922px;}
.ws7b{word-spacing:2.271473px;}
.wsa3{word-spacing:2.313331px;}
.ws4a{word-spacing:2.390400px;}
.wsf{word-spacing:2.391024px;}
.ws42{word-spacing:2.450160px;}
.ws10{word-spacing:2.450800px;}
.ws81{word-spacing:2.510575px;}
.ws84{word-spacing:2.570351px;}
.wsba{word-spacing:2.630126px;}
.wsa2{word-spacing:2.636122px;}
.ws8{word-spacing:2.689902px;}
.wse3{word-spacing:2.689920px;}
.wsc8{word-spacing:2.743718px;}
.ws6e{word-spacing:2.749678px;}
.ws72{word-spacing:2.869229px;}
.ws102{word-spacing:2.905114px;}
.ws7f{word-spacing:2.929004px;}
.wsf9{word-spacing:2.958912px;}
.ws29{word-spacing:3.108331px;}
.wsee{word-spacing:3.120307px;}
.ws40{word-spacing:3.167280px;}
.ws62{word-spacing:3.286800px;}
.ws5e{word-spacing:3.406320px;}
.ws13{word-spacing:3.526760px;}
.ws43{word-spacing:3.585600px;}
.ws28{word-spacing:3.646312px;}
.ws26{word-spacing:3.706087px;}
.ws11{word-spacing:3.765863px;}
.ws20{word-spacing:3.885414px;}
.wse2{word-spacing:4.034880px;}
.ws75{word-spacing:4.124516px;}
.ws7a{word-spacing:4.184292px;}
.ws4e{word-spacing:4.302720px;}
.wsfe{word-spacing:4.303872px;}
.ws4f{word-spacing:4.362480px;}
.ws6a{word-spacing:4.423394px;}
.wsb9{word-spacing:4.602721px;}
.ws50{word-spacing:4.721040px;}
.ws101{word-spacing:4.895654px;}
.ws53{word-spacing:5.019840px;}
.wsbb{word-spacing:5.080926px;}
.wsa9{word-spacing:5.140702px;}
.ws82{word-spacing:5.200477px;}
.ws18{word-spacing:5.260253px;}
.ws52{word-spacing:5.318640px;}
.wsd8{word-spacing:5.377046px;}
.wsdc{word-spacing:5.377958px;}
.wse4{word-spacing:5.379533px;}
.wsd1{word-spacing:5.379734px;}
.ws1a{word-spacing:5.379804px;}
.wse7{word-spacing:5.379840px;}
.wsec{word-spacing:5.380051px;}
.ws6d{word-spacing:5.559131px;}
.wsb5{word-spacing:5.618906px;}
.ws5d{word-spacing:5.736960px;}
.wsae{word-spacing:5.798233px;}
.ws23{word-spacing:5.858009px;}
.ws10a{word-spacing:5.917824px;}
.ws16{word-spacing:5.971475px;}
.ws17{word-spacing:5.977560px;}
.ws61{word-spacing:6.035760px;}
.wsc3{word-spacing:6.079219px;}
.wsd5{word-spacing:6.240614px;}
.wsac{word-spacing:6.455765px;}
.ws108{word-spacing:6.455808px;}
.wseb{word-spacing:6.886195px;}
.wsb6{word-spacing:6.933970px;}
.wsc7{word-spacing:7.047590px;}
.wsc4{word-spacing:7.155187px;}
.wsd7{word-spacing:7.370381px;}
.ws58{word-spacing:7.529760px;}
.ws10d{word-spacing:7.800768px;}
.wsda{word-spacing:7.908365px;}
.ws57{word-spacing:7.948080px;}
.wsb0{word-spacing:8.069706px;}
.wse8{word-spacing:8.177357px;}
.ws56{word-spacing:8.246880px;}
.ws78{word-spacing:8.249033px;}
.wse9{word-spacing:8.392550px;}
.wsc0{word-spacing:9.026116px;}
.wsff{word-spacing:9.468518px;}
.ws105{word-spacing:9.737510px;}
.ws19{word-spacing:9.862974px;}
.wsb4{word-spacing:11.058486px;}
.ws106{word-spacing:11.405261px;}
.ws4d{word-spacing:11.533680px;}
.ws1b{word-spacing:11.907959px;}
.ws103{word-spacing:13.388803px;}
.wsce{word-spacing:13.392230px;}
.wse5{word-spacing:13.392336px;}
.wsf7{word-spacing:13.395178px;}
.wsd2{word-spacing:13.395802px;}
.wsdd{word-spacing:13.398979px;}
.wse6{word-spacing:13.503398px;}
.wse1{word-spacing:13.557197px;}
.ws107{word-spacing:13.610995px;}
.ws51{word-spacing:13.685040px;}
.wsfb{word-spacing:13.772390px;}
.wsf6{word-spacing:13.933786px;}
.wsde{word-spacing:14.041382px;}
.ws27{word-spacing:14.884124px;}
.ws3b{word-spacing:16.135200px;}
.ws3a{word-spacing:16.553520px;}
.ws109{word-spacing:18.452851px;}
.wsfc{word-spacing:18.560448px;}
.wsf8{word-spacing:18.668045px;}
.wsfd{word-spacing:18.767942px;}
.wsd4{word-spacing:18.775642px;}
.wscc{word-spacing:18.937037px;}
.ws60{word-spacing:18.943920px;}
.wsea{word-spacing:44.383680px;}
.ws9d{word-spacing:106.685021px;}
.ws89{word-spacing:106.690721px;}
.ws8b{word-spacing:267.552893px;}
.ws8f{word-spacing:361.030303px;}
.ws8d{word-spacing:361.081411px;}
.ws91{word-spacing:373.858531px;}
.ws9f{word-spacing:386.584543px;}
.ws1e{word-spacing:916.242696px;}
._1b{margin-left:-7.053521px;}
._3{margin-left:-5.971622px;}
._2{margin-left:-4.949453px;}
._1{margin-left:-3.088795px;}
._7{margin-left:-2.047382px;}
._4{margin-left:-1.022170px;}
._8{width:1.091170px;}
._0{width:2.968010px;}
._14{width:4.125900px;}
._13{width:9.889200px;}
._15{width:11.668742px;}
._52{width:12.750221px;}
._4d{width:13.882951px;}
._b{width:15.855546px;}
._5{width:17.861069px;}
._6{width:19.797811px;}
._c{width:20.921460px;}
._a{width:22.714728px;}
._16{width:24.050787px;}
._50{width:25.204956px;}
._9{width:26.241488px;}
._1a{width:27.643174px;}
._d{width:28.752064px;}
._19{width:30.440792px;}
._e{width:32.473162px;}
._17{width:34.750620px;}
._10{width:37.479301px;}
._4e{width:43.271550px;}
._51{width:45.005386px;}
._18{width:46.086988px;}
._4f{width:48.478012px;}
._f{width:50.988587px;}
._1c{width:111.540990px;}
._3e{width:219.497472px;}
._47{width:226.082396px;}
._4b{width:227.136845px;}
._2a{width:234.437640px;}
._3d{width:242.361792px;}
._41{width:246.396672px;}
._49{width:254.843021px;}
._2e{width:255.951268px;}
._30{width:276.006567px;}
._20{width:280.278904px;}
._28{width:285.543078px;}
._40{width:296.160192px;}
._29{width:321.475382px;}
._2c{width:342.630110px;}
._2d{width:351.881885px;}
._1e{width:373.858531px;}
._22{width:383.058058px;}
._2f{width:386.635651px;}
._43{width:403.219008px;}
._37{width:406.312416px;}
._4a{width:415.485043px;}
._1f{width:420.520573px;}
._42{width:422.048448px;}
._33{width:425.478096px;}
._32{width:427.880195px;}
._24{width:454.098845px;}
._45{width:456.102835px;}
._27{width:469.738040px;}
._1d{width:473.775610px;}
._3c{width:476.492429px;}
._46{width:483.217229px;}
._25{width:488.392635px;}
._44{width:493.492723px;}
._48{width:504.897984px;}
._23{width:508.887135px;}
._39{width:516.144540px;}
._4c{width:533.411136px;}
._3b{width:535.872413px;}
._3f{width:543.655118px;}
._36{width:554.578116px;}
._35{width:562.806582px;}
._26{width:1018.898657px;}
._21{width:1026.002736px;}
._38{width:1050.026764px;}
._31{width:1061.880889px;}
._3a{width:1079.819965px;}
._34{width:1127.248635px;}
._2b{width:1129.088540px;}
._12{width:1621.618664px;}
._53{width:2001.434700px;}
._11{width:2025.344700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fse{font-size:35.865600px;}
.fsd{font-size:39.750660px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:48.240000px;}
.fsc{font-size:51.108480px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y4e{bottom:-54.575250px;}
.y6c{bottom:-28.295250px;}
.y6b{bottom:-3.653610px;}
.y0{bottom:0.000000px;}
.y17{bottom:3.425340px;}
.y16{bottom:14.151273px;}
.y2{bottom:14.814771px;}
.y2f{bottom:63.780000px;}
.y6d{bottom:106.425000px;}
.y132{bottom:114.340500px;}
.yfc{bottom:117.214725px;}
.y17f{bottom:120.852000px;}
.y2e{bottom:122.509500px;}
.y153{bottom:123.121500px;}
.y4c{bottom:128.853750px;}
.y9c{bottom:131.161500px;}
.yfb{bottom:133.170450px;}
.yc8{bottom:133.612500px;}
.y131{bottom:134.605500px;}
.y17e{bottom:140.220000px;}
.y2d{bottom:142.773000px;}
.y152{bottom:143.386500px;}
.y1b1{bottom:147.691500px;}
.yfa{bottom:149.127600px;}
.y9b{bottom:151.426500px;}
.yc7{bottom:153.877500px;}
.y130{bottom:154.869000px;}
.y17d{bottom:159.586500px;}
.y2c{bottom:163.038000px;}
.y151{bottom:163.650000px;}
.y1b0{bottom:167.059500px;}
.y9a{bottom:171.690000px;}
.yf9{bottom:171.924750px;}
.yc6{bottom:174.141000px;}
.y12f{bottom:175.134000px;}
.y17c{bottom:178.954500px;}
.y2b{bottom:183.301500px;}
.y150{bottom:183.913500px;}
.y1af{bottom:186.427500px;}
.yf8{bottom:187.541325px;}
.y99{bottom:191.953500px;}
.yc5{bottom:194.404500px;}
.y12e{bottom:195.397500px;}
.y17b{bottom:198.321000px;}
.y2a{bottom:203.566500px;}
.y14f{bottom:204.178500px;}
.y1ae{bottom:205.794000px;}
.yf7{bottom:211.106550px;}
.y98{bottom:212.218500px;}
.yc4{bottom:214.669500px;}
.y12d{bottom:215.661000px;}
.y17a{bottom:217.689000px;}
.y14e{bottom:224.442000px;}
.y1ad{bottom:225.162000px;}
.y97{bottom:232.482000px;}
.y29{bottom:232.797000px;}
.yf6{bottom:233.905125px;}
.yc3{bottom:234.933000px;}
.y12c{bottom:235.926000px;}
.y179{bottom:237.057000px;}
.y1ac{bottom:244.528500px;}
.y14d{bottom:244.707000px;}
.y96{bottom:252.747000px;}
.yc2{bottom:255.198000px;}
.y12b{bottom:256.189500px;}
.y178{bottom:256.423500px;}
.y1ab{bottom:263.896500px;}
.yf5{bottom:264.679500px;}
.y14c{bottom:264.970500px;}
.y95{bottom:273.010500px;}
.yc1{bottom:275.461500px;}
.y177{bottom:275.791500px;}
.y12a{bottom:276.454500px;}
.y1aa{bottom:283.264500px;}
.yf4{bottom:283.912500px;}
.y14b{bottom:285.234000px;}
.y1b4{bottom:289.143000px;}
.y94{bottom:293.274000px;}
.y176{bottom:295.158000px;}
.yc0{bottom:295.725000px;}
.y129{bottom:296.718000px;}
.y1a9{bottom:302.631000px;}
.y14a{bottom:305.499000px;}
.y1b3{bottom:308.509500px;}
.y28{bottom:309.211500px;}
.y93{bottom:313.539000px;}
.y175{bottom:314.526000px;}
.ybf{bottom:315.990000px;}
.y128{bottom:316.981500px;}
.yf3{bottom:320.671500px;}
.y1a8{bottom:321.999000px;}
.y149{bottom:325.762500px;}
.y1b2{bottom:327.877500px;}
.y92{bottom:333.802500px;}
.y174{bottom:333.894000px;}
.yf2{bottom:334.867500px;}
.ybe{bottom:336.253500px;}
.y127{bottom:337.246500px;}
.y1a7{bottom:341.367000px;}
.y148{bottom:346.027500px;}
.y27{bottom:347.409000px;}
.yf1{bottom:349.065000px;}
.y173{bottom:353.260500px;}
.yf0{bottom:353.404500px;}
.y91{bottom:354.067500px;}
.ybd{bottom:356.518500px;}
.y1a6{bottom:360.733500px;}
.y147{bottom:366.291000px;}
.y126{bottom:366.477000px;}
.y26{bottom:367.672500px;}
.yef{bottom:370.669875px;}
.y172{bottom:372.628500px;}
.y90{bottom:374.331000px;}
.ybc{bottom:376.782000px;}
.y1a5{bottom:380.101500px;}
.y146{bottom:386.554500px;}
.yee{bottom:386.625600px;}
.y25{bottom:387.937500px;}
.y171{bottom:391.995000px;}
.y8f{bottom:394.594500px;}
.ybb{bottom:397.045500px;}
.y1a4{bottom:399.468000px;}
.yed{bottom:402.581325px;}
.y125{bottom:406.227000px;}
.y145{bottom:406.819500px;}
.y24{bottom:408.201000px;}
.y170{bottom:411.363000px;}
.y8e{bottom:414.859500px;}
.yba{bottom:417.310500px;}
.y124{bottom:418.272000px;}
.yec{bottom:418.537050px;}
.y1a3{bottom:418.836000px;}
.y122{bottom:420.424500px;}
.y6a{bottom:424.018830px;}
.y123{bottom:424.764000px;}
.y144{bottom:427.083000px;}
.y23{bottom:428.466000px;}
.y16f{bottom:430.731000px;}
.y8d{bottom:435.123000px;}
.yb9{bottom:437.574000px;}
.y1a2{bottom:438.204000px;}
.yeb{bottom:440.995050px;}
.y121{bottom:442.482000px;}
.y69{bottom:444.172890px;}
.y143{bottom:447.348000px;}
.y22{bottom:448.729500px;}
.y16e{bottom:450.097500px;}
.y8c{bottom:455.388000px;}
.y1a1{bottom:457.570500px;}
.yea{bottom:457.718850px;}
.yb8{bottom:457.839000px;}
.y120{bottom:459.277500px;}
.y68{bottom:464.326950px;}
.y142{bottom:467.611500px;}
.y21{bottom:468.993000px;}
.y16d{bottom:469.465500px;}
.ye9{bottom:473.674575px;}
.y8b{bottom:475.651500px;}
.y11f{bottom:476.074500px;}
.y1a0{bottom:476.938500px;}
.yb7{bottom:478.102500px;}
.y67{bottom:484.660290px;}
.y141{bottom:487.875000px;}
.y16c{bottom:488.832000px;}
.y20{bottom:489.258000px;}
.ye8{bottom:489.630300px;}
.y11e{bottom:492.870000px;}
.y8a{bottom:495.915000px;}
.y19f{bottom:496.305000px;}
.yb6{bottom:498.366000px;}
.y66{bottom:504.814350px;}
.ye7{bottom:505.586025px;}
.y140{bottom:508.140000px;}
.y16b{bottom:508.200000px;}
.y1f{bottom:509.521500px;}
.y11d{bottom:509.665500px;}
.y19e{bottom:515.673000px;}
.y89{bottom:516.180000px;}
.yb5{bottom:518.631000px;}
.ye6{bottom:521.202600px;}
.y65{bottom:525.147690px;}
.y11c{bottom:526.461000px;}
.y16a{bottom:527.568000px;}
.y13f{bottom:528.403500px;}
.y1e{bottom:529.786500px;}
.y19d{bottom:535.041000px;}
.y88{bottom:536.443500px;}
.yb4{bottom:538.894500px;}
.y11b{bottom:542.899500px;}
.ye5{bottom:544.767825px;}
.y64{bottom:545.301750px;}
.y169{bottom:546.934500px;}
.y13e{bottom:548.667000px;}
.y1d{bottom:550.050000px;}
.y4b{bottom:551.119500px;}
.y19c{bottom:554.407500px;}
.y87{bottom:556.708500px;}
.yb3{bottom:559.159500px;}
.y11a{bottom:560.502000px;}
.y63{bottom:565.635090px;}
.y168{bottom:566.302500px;}
.ye4{bottom:567.564975px;}
.y13d{bottom:568.932000px;}
.y1c{bottom:570.313500px;}
.y4a{bottom:571.383000px;}
.y19b{bottom:573.775500px;}
.y86{bottom:576.972000px;}
.y119{bottom:577.297500px;}
.yb2{bottom:579.423000px;}
.y167{bottom:585.669000px;}
.y13c{bottom:589.195500px;}
.y1b{bottom:590.578500px;}
.y49{bottom:591.646500px;}
.y19a{bottom:593.142000px;}
.y118{bottom:594.093000px;}
.y62{bottom:594.797970px;}
.y85{bottom:597.235500px;}
.ye3{bottom:598.341000px;}
.yb1{bottom:599.686500px;}
.y166{bottom:605.037000px;}
.y13b{bottom:609.460500px;}
.y1a{bottom:610.842000px;}
.y117{bottom:610.888500px;}
.y48{bottom:611.911500px;}
.y199{bottom:612.510000px;}
.y84{bottom:617.500500px;}
.ye2{bottom:617.574000px;}
.yb0{bottom:619.951500px;}
.y116{bottom:627.684000px;}
.y13a{bottom:629.724000px;}
.y19{bottom:631.107000px;}
.y198{bottom:631.878000px;}
.y47{bottom:632.175000px;}
.y61{bottom:632.954730px;}
.y165{bottom:633.370500px;}
.y83{bottom:637.764000px;}
.yaf{bottom:640.215000px;}
.y115{bottom:644.479500px;}
.y139{bottom:649.987500px;}
.y197{bottom:651.244500px;}
.y18{bottom:651.370500px;}
.y46{bottom:652.438500px;}
.ye1{bottom:654.331500px;}
.y82{bottom:658.029000px;}
.yae{bottom:660.480000px;}
.y114{bottom:661.275000px;}
.ye0{bottom:668.529000px;}
.y138{bottom:670.252500px;}
.y196{bottom:670.612500px;}
.y60{bottom:671.290770px;}
.y45{bottom:672.703500px;}
.y164{bottom:672.823500px;}
.y113{bottom:677.713500px;}
.y81{bottom:678.292500px;}
.yad{bottom:680.743500px;}
.yde{bottom:682.725000px;}
.y15{bottom:686.803464px;}
.ydf{bottom:687.064500px;}
.y14{bottom:687.570000px;}
.y195{bottom:689.979000px;}
.y137{bottom:690.516000px;}
.y5f{bottom:691.444830px;}
.y44{bottom:692.967000px;}
.ydd{bottom:696.922500px;}
.y163{bottom:696.987000px;}
.y80{bottom:698.556000px;}
.yac{bottom:701.007000px;}
.ydc{bottom:701.262000px;}
.y112{bottom:702.162000px;}
.y194{bottom:709.347000px;}
.y136{bottom:710.781000px;}
.y5e{bottom:711.778170px;}
.y162{bottom:712.185000px;}
.ydb{bottom:718.527000px;}
.y111{bottom:718.600500px;}
.yab{bottom:721.272000px;}
.y43{bottom:722.197500px;}
.y13{bottom:726.574500px;}
.y161{bottom:727.383000px;}
.y7f{bottom:727.786500px;}
.y193{bottom:728.715000px;}
.y135{bottom:731.044500px;}
.y5d{bottom:731.932230px;}
.yda{bottom:734.482725px;}
.yaa{bottom:741.535500px;}
.y110{bottom:742.599000px;}
.y192{bottom:748.081500px;}
.y12{bottom:749.614500px;}
.yd9{bottom:750.438450px;}
.y134{bottom:751.308000px;}
.y160{bottom:751.548000px;}
.y5c{bottom:752.265570px;}
.y42{bottom:757.017000px;}
.y7e{bottom:762.606000px;}
.yd8{bottom:766.394175px;}
.y15f{bottom:766.746000px;}
.y191{bottom:767.449500px;}
.y11{bottom:767.770500px;}
.ya9{bottom:770.766000px;}
.y133{bottom:771.573000px;}
.y5b{bottom:772.419630px;}
.y10f{bottom:774.217500px;}
.y15e{bottom:781.944000px;}
.y7d{bottom:782.871000px;}
.y10{bottom:785.928000px;}
.y190{bottom:786.816000px;}
.yd7{bottom:789.192750px;}
.y41{bottom:791.836500px;}
.y5a{bottom:792.573690px;}
.y10e{bottom:793.450500px;}
.y15d{bottom:797.142000px;}
.y7c{bottom:803.134500px;}
.yf{bottom:804.085500px;}
.yd6{bottom:805.148475px;}
.ya8{bottom:805.585500px;}
.y18f{bottom:806.184000px;}
.y40{bottom:812.101500px;}
.y15c{bottom:812.340000px;}
.y59{bottom:812.907030px;}
.ye{bottom:817.360500px;}
.yd5{bottom:821.104200px;}
.y7b{bottom:823.398000px;}
.y18e{bottom:825.552000px;}
.ya7{bottom:825.849000px;}
.y15b{bottom:827.538000px;}
.y10d{bottom:831.273000px;}
.y3f{bottom:832.365000px;}
.y58{bottom:833.061090px;}
.yd4{bottom:836.720775px;}
.yd{bottom:840.399000px;}
.y15a{bottom:842.736000px;}
.y7a{bottom:843.663000px;}
.y18d{bottom:844.918500px;}
.y10c{bottom:845.469000px;}
.ya6{bottom:846.114000px;}
.y10b{bottom:849.808500px;}
.y3e{bottom:852.628500px;}
.yd3{bottom:853.104000px;}
.y57{bottom:853.394430px;}
.yc{bottom:853.674000px;}
.y79{bottom:863.926500px;}
.y18c{bottom:864.286500px;}
.ya5{bottom:866.377500px;}
.y159{bottom:866.901000px;}
.y10a{bottom:867.073875px;}
.y3d{bottom:872.893500px;}
.y56{bottom:873.548490px;}
.yd2{bottom:876.669225px;}
.yb{bottom:876.712500px;}
.y158{bottom:882.099000px;}
.y109{bottom:882.690450px;}
.y18b{bottom:883.653000px;}
.y78{bottom:884.191500px;}
.ya4{bottom:886.642500px;}
.yd1{bottom:892.285800px;}
.y3c{bottom:893.157000px;}
.y55{bottom:893.702550px;}
.ya{bottom:894.870000px;}
.y157{bottom:897.297000px;}
.y108{bottom:899.414250px;}
.y18a{bottom:903.021000px;}
.y77{bottom:904.455000px;}
.ya3{bottom:906.906000px;}
.yd0{bottom:908.669025px;}
.y3b{bottom:913.422000px;}
.y54{bottom:914.035890px;}
.y107{bottom:915.369975px;}
.y9{bottom:917.112000px;}
.y189{bottom:922.389000px;}
.y76{bottom:924.718500px;}
.ycf{bottom:925.392825px;}
.y156{bottom:930.427500px;}
.y3a{bottom:933.685500px;}
.y53{bottom:934.189950px;}
.ya2{bottom:936.136500px;}
.y8{bottom:937.375500px;}
.y106{bottom:937.827975px;}
.y188{bottom:941.755500px;}
.y75{bottom:944.983500px;}
.yce{bottom:948.189975px;}
.y155{bottom:950.692500px;}
.y39{bottom:953.949000px;}
.y52{bottom:954.523290px;}
.y105{bottom:954.551775px;}
.y187{bottom:961.123500px;}
.ycd{bottom:964.147125px;}
.y74{bottom:965.247000px;}
.y104{bottom:970.507500px;}
.ya1{bottom:970.956000px;}
.y38{bottom:974.214000px;}
.y51{bottom:974.677350px;}
.y7{bottom:980.055000px;}
.y186{bottom:980.490000px;}
.y73{bottom:985.512000px;}
.ycc{bottom:986.944275px;}
.ya0{bottom:991.219500px;}
.y103{bottom:993.304650px;}
.y37{bottom:994.477500px;}
.y50{bottom:995.010690px;}
.y185{bottom:999.858000px;}
.y72{bottom:1005.775500px;}
.y102{bottom:1009.260375px;}
.ycb{bottom:1009.742850px;}
.y6{bottom:1010.451000px;}
.y9f{bottom:1011.484500px;}
.y36{bottom:1014.742500px;}
.y4f{bottom:1015.164750px;}
.y184{bottom:1019.226000px;}
.y101{bottom:1025.216100px;}
.y71{bottom:1026.039000px;}
.y9e{bottom:1031.748000px;}
.y35{bottom:1035.006000px;}
.y183{bottom:1038.592500px;}
.yca{bottom:1040.517000px;}
.y154{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.y100{bottom:1041.173250px;}
.y70{bottom:1046.304000px;}
.y4d{bottom:1052.424750px;}
.y34{bottom:1055.269500px;}
.y182{bottom:1057.960500px;}
.yc9{bottom:1059.750000px;}
.y9d{bottom:1060.978500px;}
.yff{bottom:1063.970400px;}
.y6f{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y33{bottom:1075.534500px;}
.y181{bottom:1077.327000px;}
.yfe{bottom:1086.768975px;}
.y6e{bottom:1086.832500px;}
.y32{bottom:1095.798000px;}
.y180{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y31{bottom:1116.063000px;}
.yfd{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y30{bottom:1168.366500px;}
.h9{height:25.508090px;}
.h1b{height:26.110157px;}
.h7{height:30.461558px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h1c{height:34.813397px;}
.he{height:35.052500px;}
.h10{height:35.237812px;}
.h17{height:36.951431px;}
.h18{height:37.206973px;}
.h22{height:37.927872px;}
.h21{height:38.412058px;}
.h16{height:38.896243px;}
.h8{height:39.165235px;}
.h1d{height:39.434227px;}
.h15{height:39.445312px;}
.h14{height:43.010859px;}
.hc{height:43.217759px;}
.hd{height:43.516637px;}
.h12{height:43.623633px;}
.h13{height:43.652813px;}
.h4{height:43.815515px;}
.h1a{height:47.486280px;}
.h19{height:47.491980px;}
.h20{height:49.985558px;}
.h1f{height:49.991558px;}
.h2{height:50.931027px;}
.h11{height:52.998047px;}
.h6{height:54.541601px;}
.h1e{height:71.776243px;}
.h5{height:77.792486px;}
.h3{height:102.503837px;}
.hf{height:398.616750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:198.814733px;}
.w4{width:365.235000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1a{left:-175.777500px;}
.x1b{left:-143.955300px;}
.x1d{left:-22.777500px;}
.x0{left:0.000000px;}
.x8{left:29.274117px;}
.x2{left:58.056593px;}
.x3{left:113.673000px;}
.x1{left:114.802500px;}
.x6{left:122.109000px;}
.x4{left:123.306000px;}
.x5{left:146.170500px;}
.x35{left:154.675500px;}
.x4d{left:161.569500px;}
.x89{left:169.503000px;}
.x79{left:172.633500px;}
.x87{left:175.168500px;}
.x7e{left:176.916000px;}
.x7a{left:180.105000px;}
.x7b{left:183.916500px;}
.x7f{left:188.199000px;}
.x9{left:190.480500px;}
.x61{left:194.046000px;}
.x80{left:195.670500px;}
.x26{left:198.058500px;}
.x3b{left:199.608000px;}
.x4a{left:200.685000px;}
.x23{left:206.341500px;}
.x24{left:207.357000px;}
.xc{left:208.648500px;}
.x45{left:210.213225px;}
.xd{left:216.120000px;}
.xe{left:219.930000px;}
.x25{left:222.301500px;}
.x50{left:224.502000px;}
.xf{left:227.403000px;}
.x2b{left:229.244100px;}
.x3e{left:230.576475px;}
.x3c{left:232.994700px;}
.x4f{left:234.825000px;}
.x2f{left:236.485950px;}
.x47{left:238.935525px;}
.x3d{left:241.932300px;}
.x3f{left:247.266075px;}
.x40{left:249.815400px;}
.x4e{left:251.475000px;}
.x2c{left:253.504725px;}
.x2d{left:254.788650px;}
.x2e{left:257.595900px;}
.x7c{left:261.471000px;}
.x19{left:263.839500px;}
.x2a{left:266.961000px;}
.x1e{left:268.036500px;}
.x63{left:269.085000px;}
.x32{left:275.139075px;}
.x7d{left:276.414000px;}
.x34{left:279.049275px;}
.x29{left:280.051050px;}
.x30{left:282.482100px;}
.x33{left:283.942725px;}
.x48{left:286.919550px;}
.x31{left:288.829050px;}
.x73{left:290.661000px;}
.x51{left:294.322500px;}
.x49{left:296.172000px;}
.x52{left:302.547000px;}
.x74{left:309.415500px;}
.x5b{left:310.425000px;}
.x64{left:317.868000px;}
.x5c{left:325.369500px;}
.x8a{left:329.853000px;}
.x14{left:331.392000px;}
.x65{left:332.811000px;}
.x66{left:336.567000px;}
.x12{left:339.828000px;}
.x15{left:342.673500px;}
.xa{left:347.980500px;}
.x67{left:351.510000px;}
.xb{left:355.452000px;}
.x16{left:357.618000px;}
.x13{left:362.392500px;}
.x81{left:370.650000px;}
.x21{left:384.415500px;}
.x8b{left:395.464500px;}
.x92{left:398.257500px;}
.x22{left:399.360000px;}
.x8c{left:402.189000px;}
.x46{left:405.214500px;}
.x28{left:410.206275px;}
.x1c{left:417.743880px;}
.x44{left:425.596275px;}
.x76{left:427.237500px;}
.x27{left:432.454800px;}
.x10{left:435.238500px;}
.x11{left:442.710000px;}
.x77{left:445.966500px;}
.x43{left:447.844800px;}
.x62{left:451.588500px;}
.x78{left:460.911000px;}
.x38{left:466.852500px;}
.x39{left:475.065000px;}
.x41{left:485.269500px;}
.x42{left:493.101000px;}
.x75{left:501.666000px;}
.x53{left:508.891500px;}
.x54{left:517.116000px;}
.x5d{left:522.862500px;}
.x5e{left:526.527000px;}
.x90{left:529.519500px;}
.x5f{left:541.471500px;}
.x4c{left:543.559500px;}
.x60{left:545.136000px;}
.x17{left:552.514500px;}
.x91{left:556.417500px;}
.x4b{left:559.497000px;}
.x18{left:567.457500px;}
.x57{left:580.932000px;}
.x36{left:585.175500px;}
.x8d{left:589.269000px;}
.x37{left:593.158500px;}
.x58{left:595.876500px;}
.x59{left:603.318000px;}
.x8e{left:616.168500px;}
.x5a{left:618.262500px;}
.x82{left:623.121000px;}
.x83{left:638.064000px;}
.x84{left:641.725500px;}
.x1f{left:646.825500px;}
.x85{left:656.670000px;}
.x68{left:659.778000px;}
.x20{left:661.770000px;}
.x69{left:674.722500px;}
.x93{left:677.352000px;}
.x6a{left:678.477000px;}
.x86{left:682.597500px;}
.x95{left:688.287000px;}
.x3a{left:693.286500px;}
.x6b{left:697.176000px;}
.x7{left:701.339982px;}
.x94{left:704.250000px;}
.x6c{left:712.119000px;}
.x6d{left:715.873500px;}
.x8f{left:729.589500px;}
.x6e{left:730.818000px;}
.x6f{left:734.572500px;}
.x55{left:739.510500px;}
.x56{left:744.741000px;}
.x70{left:749.517000px;}
.x71{left:757.026000px;}
.x72{left:771.970500px;}
.x88{left:776.446500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v5{vertical-align:-8.064000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.368000pt;}
.v3{vertical-align:16.492000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:29.226667pt;}
.ls36{letter-spacing:-0.624000pt;}
.ls29{letter-spacing:-0.600320pt;}
.ls2d{letter-spacing:-0.478080pt;}
.ls31{letter-spacing:-0.424960pt;}
.ls2a{letter-spacing:-0.385920pt;}
.ls2b{letter-spacing:-0.318720pt;}
.ls26{letter-spacing:-0.300160pt;}
.ls30{letter-spacing:-0.212480pt;}
.ls2e{letter-spacing:-0.106240pt;}
.ls2f{letter-spacing:-0.053120pt;}
.ls25{letter-spacing:-0.042880pt;}
.lsf{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000081pt;}
.ls4b{letter-spacing:0.000444pt;}
.ls4a{letter-spacing:0.000577pt;}
.ls11{letter-spacing:0.001349pt;}
.ls6e{letter-spacing:0.001739pt;}
.ls58{letter-spacing:0.002424pt;}
.ls12{letter-spacing:0.002630pt;}
.ls60{letter-spacing:0.002674pt;}
.ls66{letter-spacing:0.002729pt;}
.ls64{letter-spacing:0.002982pt;}
.lse{letter-spacing:0.003100pt;}
.ls63{letter-spacing:0.003106pt;}
.ls62{letter-spacing:0.003176pt;}
.ls51{letter-spacing:0.003453pt;}
.ls6f{letter-spacing:0.003705pt;}
.ls6b{letter-spacing:0.004267pt;}
.ls61{letter-spacing:0.004813pt;}
.ls32{letter-spacing:0.106240pt;}
.ls24{letter-spacing:0.144000pt;}
.ls1d{letter-spacing:0.159360pt;}
.ls27{letter-spacing:0.171520pt;}
.ls20{letter-spacing:0.196544pt;}
.ls19{letter-spacing:0.212480pt;}
.ls35{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.318720pt;}
.ls34{letter-spacing:0.336000pt;}
.ls28{letter-spacing:0.343040pt;}
.ls33{letter-spacing:0.424960pt;}
.ls65{letter-spacing:0.469573pt;}
.ls67{letter-spacing:0.474838pt;}
.ls2c{letter-spacing:0.531200pt;}
.ls1c{letter-spacing:0.637440pt;}
.ls10{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls1e{letter-spacing:2.071680pt;}
.ls5e{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls23{letter-spacing:2.709120pt;}
.ls1a{letter-spacing:3.346560pt;}
.ls22{letter-spacing:3.399680pt;}
.ls1f{letter-spacing:3.984000pt;}
.ls21{letter-spacing:7.224320pt;}
.lsd{letter-spacing:10.626533pt;}
.ls6d{letter-spacing:10.918269pt;}
.ls50{letter-spacing:11.353841pt;}
.ls4e{letter-spacing:11.357853pt;}
.ls4f{letter-spacing:11.358907pt;}
.ls71{letter-spacing:11.690818pt;}
.ls68{letter-spacing:11.954133pt;}
.ls5c{letter-spacing:11.955635pt;}
.ls5d{letter-spacing:11.956745pt;}
.ls69{letter-spacing:11.959467pt;}
.ls6c{letter-spacing:12.042104pt;}
.ls70{letter-spacing:12.169461pt;}
.ls17{letter-spacing:12.502423pt;}
.ls16{letter-spacing:12.503829pt;}
.ls6a{letter-spacing:12.750682pt;}
.ls49{letter-spacing:12.987824pt;}
.ls48{letter-spacing:12.992988pt;}
.ls40{letter-spacing:13.052458pt;}
.ls3f{letter-spacing:13.057369pt;}
.ls3d{letter-spacing:13.185808pt;}
.ls3e{letter-spacing:13.192559pt;}
.ls6{letter-spacing:13.196395pt;}
.ls5{letter-spacing:13.196914pt;}
.ls4d{letter-spacing:13.324191pt;}
.ls4c{letter-spacing:13.324223pt;}
.ls3a{letter-spacing:13.335207pt;}
.ls39{letter-spacing:13.336534pt;}
.ls41{letter-spacing:13.366199pt;}
.ls43{letter-spacing:13.368187pt;}
.ls42{letter-spacing:13.373537pt;}
.ls14{letter-spacing:13.381679pt;}
.ls15{letter-spacing:13.381782pt;}
.ls13{letter-spacing:13.387148pt;}
.lsa{letter-spacing:13.442691pt;}
.ls9{letter-spacing:13.443819pt;}
.ls38{letter-spacing:14.427838pt;}
.ls47{letter-spacing:14.832528pt;}
.ls46{letter-spacing:14.839603pt;}
.ls18{letter-spacing:14.873600pt;}
.ls3c{letter-spacing:15.318803pt;}
.ls3b{letter-spacing:15.320648pt;}
.ls8{letter-spacing:15.444293pt;}
.ls7{letter-spacing:15.446139pt;}
.lsb{letter-spacing:16.429145pt;}
.lsc{letter-spacing:16.432528pt;}
.ls44{letter-spacing:17.903655pt;}
.ls45{letter-spacing:17.907038pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.319565pt;}
.ls5f{letter-spacing:114.774340pt;}
.ls59{letter-spacing:213.925307pt;}
.ls57{letter-spacing:247.750373pt;}
.ls52{letter-spacing:329.273040pt;}
.ls53{letter-spacing:333.838107pt;}
.ls56{letter-spacing:383.694107pt;}
.ls5a{letter-spacing:407.000773pt;}
.ls55{letter-spacing:432.303707pt;}
.ls5b{letter-spacing:433.190373pt;}
.ls54{letter-spacing:941.098373pt;}
.ws14{word-spacing:-15.461955pt;}
.ws5{word-spacing:-13.915853pt;}
.ws33{word-spacing:-13.598720pt;}
.ws32{word-spacing:-13.492480pt;}
.ws2b{word-spacing:-13.283467pt;}
.ws35{word-spacing:-13.280000pt;}
.ws34{word-spacing:-13.226880pt;}
.ws36{word-spacing:-13.067520pt;}
.ws30{word-spacing:-12.961280pt;}
.ws31{word-spacing:-12.855040pt;}
.ws1{word-spacing:-12.760670pt;}
.wsa6{word-spacing:-11.955200pt;}
.ws8a{word-spacing:-11.357440pt;}
.ws2e{word-spacing:-11.063040pt;}
.ws1c{word-spacing:-10.626800pt;}
.ws2d{word-spacing:-10.419840pt;}
.ws2f{word-spacing:-10.119680pt;}
.ws2{word-spacing:-10.095467pt;}
.wsa8{word-spacing:-3.825638pt;}
.ws5a{word-spacing:-3.824640pt;}
.wsab{word-spacing:-3.613103pt;}
.ws104{word-spacing:-3.251814pt;}
.ws59{word-spacing:-2.974720pt;}
.ws100{word-spacing:-2.773606pt;}
.ws77{word-spacing:-2.762961pt;}
.wse{word-spacing:-2.603559pt;}
.ws6b{word-spacing:-2.444158pt;}
.ws74{word-spacing:-2.391024pt;}
.wsed{word-spacing:-2.343219pt;}
.ws3e{word-spacing:-2.284160pt;}
.wsdb{word-spacing:-2.104115pt;}
.wsb1{word-spacing:-1.859685pt;}
.ws73{word-spacing:-1.806551pt;}
.wsa1{word-spacing:-1.785302pt;}
.ws3f{word-spacing:-1.699840pt;}
.ws7{word-spacing:-1.696326pt;}
.ws3d{word-spacing:-1.646720pt;}
.wscb{word-spacing:-1.530266pt;}
.ws10c{word-spacing:-1.434624pt;}
.wsad{word-spacing:-1.434614pt;}
.wsf3{word-spacing:-1.386803pt;}
.wsf1{word-spacing:-1.338982pt;}
.ws99{word-spacing:-1.190202pt;}
.ws6{word-spacing:-1.175671pt;}
.ws24{word-spacing:-1.062677pt;}
.wsf2{word-spacing:-1.052058pt;}
.ws7e{word-spacing:-1.009543pt;}
.ws44{word-spacing:-1.009280pt;}
.wsbc{word-spacing:-0.903276pt;}
.ws5f{word-spacing:-0.903040pt;}
.ws9a{word-spacing:-0.892651pt;}
.ws6f{word-spacing:-0.850142pt;}
.ws63{word-spacing:-0.816000pt;}
.ws2c{word-spacing:-0.797008pt;}
.wsb2{word-spacing:-0.743874pt;}
.wsbd{word-spacing:-0.690740pt;}
.ws92{word-spacing:-0.637608pt;}
.ws25{word-spacing:-0.637606pt;}
.ws4c{word-spacing:-0.637440pt;}
.ws97{word-spacing:-0.636017pt;}
.wsef{word-spacing:-0.621670pt;}
.wse0{word-spacing:-0.430387pt;}
.wsb8{word-spacing:-0.425071pt;}
.ws45{word-spacing:-0.424960pt;}
.wscd{word-spacing:-0.382566pt;}
.wsbe{word-spacing:-0.371937pt;}
.ws47{word-spacing:-0.371840pt;}
.ws69{word-spacing:-0.318803pt;}
.wsc9{word-spacing:-0.286925pt;}
.ws1f{word-spacing:-0.265669pt;}
.ws4b{word-spacing:-0.265600pt;}
.ws64{word-spacing:-0.240000pt;}
.ws7c{word-spacing:-0.239822pt;}
.wsd3{word-spacing:-0.239104pt;}
.ws15{word-spacing:-0.212535pt;}
.ws86{word-spacing:-0.191283pt;}
.ws38{word-spacing:-0.171520pt;}
.ws7d{word-spacing:-0.159402pt;}
.ws5b{word-spacing:-0.159360pt;}
.wscf{word-spacing:-0.143462pt;}
.wsd{word-spacing:-0.106268pt;}
.wsd6{word-spacing:-0.095642pt;}
.wsc{word-spacing:-0.053134pt;}
.ws5c{word-spacing:-0.053120pt;}
.ws9b{word-spacing:-0.047821pt;}
.ws1d{word-spacing:-0.042507pt;}
.ws88{word-spacing:-0.022666pt;}
.ws4{word-spacing:-0.010001pt;}
.ws98{word-spacing:-0.008528pt;}
.ws8c{word-spacing:-0.006453pt;}
.ws8e{word-spacing:-0.005204pt;}
.ws96{word-spacing:-0.003948pt;}
.wsa4{word-spacing:-0.002970pt;}
.wsa5{word-spacing:-0.002825pt;}
.ws87{word-spacing:-0.002821pt;}
.ws9e{word-spacing:-0.002586pt;}
.wsf4{word-spacing:-0.001468pt;}
.wsa0{word-spacing:-0.000259pt;}
.ws0{word-spacing:0.000000pt;}
.ws90{word-spacing:0.001605pt;}
.ws93{word-spacing:0.042507pt;}
.ws37{word-spacing:0.042880pt;}
.ws85{word-spacing:0.047821pt;}
.ws79{word-spacing:0.049055pt;}
.ws70{word-spacing:0.053134pt;}
.ws80{word-spacing:0.075728pt;}
.wsa7{word-spacing:0.085014pt;}
.wsc5{word-spacing:0.095642pt;}
.ws2a{word-spacing:0.106268pt;}
.wsc2{word-spacing:0.143462pt;}
.ws12{word-spacing:0.159402pt;}
.ws9c{word-spacing:0.191283pt;}
.ws41{word-spacing:0.212480pt;}
.wsa{word-spacing:0.212535pt;}
.wsf0{word-spacing:0.239104pt;}
.ws67{word-spacing:0.265669pt;}
.wsd9{word-spacing:0.286925pt;}
.ws6c{word-spacing:0.318803pt;}
.ws46{word-spacing:0.371840pt;}
.wsfa{word-spacing:0.382566pt;}
.ws39{word-spacing:0.385920pt;}
.wsaf{word-spacing:0.425071pt;}
.ws3c{word-spacing:0.478080pt;}
.wsf5{word-spacing:0.478208pt;}
.ws3{word-spacing:0.517963pt;}
.wsca{word-spacing:0.573850pt;}
.ws48{word-spacing:0.637440pt;}
.wsb{word-spacing:0.637606pt;}
.ws65{word-spacing:0.768000pt;}
.ws66{word-spacing:0.797008pt;}
.wsd0{word-spacing:0.812954pt;}
.ws76{word-spacing:0.850142pt;}
.ws22{word-spacing:0.903276pt;}
.ws71{word-spacing:0.956410pt;}
.ws95{word-spacing:1.147699pt;}
.ws21{word-spacing:1.168945pt;}
.ws55{word-spacing:1.274880pt;}
.ws10b{word-spacing:1.291162pt;}
.wsaa{word-spacing:1.328347pt;}
.wsb3{word-spacing:1.381481pt;}
.ws94{word-spacing:1.386803pt;}
.ws68{word-spacing:1.487748pt;}
.ws83{word-spacing:1.540882pt;}
.wsb7{word-spacing:1.594016pt;}
.wsc6{word-spacing:1.673728pt;}
.ws9{word-spacing:1.700284pt;}
.ws54{word-spacing:1.752960pt;}
.wsbf{word-spacing:1.806551pt;}
.wsdf{word-spacing:1.817190pt;}
.ws49{word-spacing:1.912320pt;}
.wsc1{word-spacing:1.912819pt;}
.ws7b{word-spacing:2.019087pt;}
.wsa3{word-spacing:2.056294pt;}
.ws4a{word-spacing:2.124800pt;}
.wsf{word-spacing:2.125355pt;}
.ws42{word-spacing:2.177920pt;}
.ws10{word-spacing:2.178489pt;}
.ws81{word-spacing:2.231622pt;}
.ws84{word-spacing:2.284756pt;}
.wsba{word-spacing:2.337890pt;}
.wsa2{word-spacing:2.343219pt;}
.ws8{word-spacing:2.391024pt;}
.wse3{word-spacing:2.391040pt;}
.wsc8{word-spacing:2.438861pt;}
.ws6e{word-spacing:2.444158pt;}
.ws72{word-spacing:2.550426pt;}
.ws102{word-spacing:2.582323pt;}
.ws7f{word-spacing:2.603559pt;}
.wsf9{word-spacing:2.630144pt;}
.ws29{word-spacing:2.762961pt;}
.wsee{word-spacing:2.773606pt;}
.ws40{word-spacing:2.815360pt;}
.ws62{word-spacing:2.921600pt;}
.ws5e{word-spacing:3.027840pt;}
.ws13{word-spacing:3.134898pt;}
.ws43{word-spacing:3.187200pt;}
.ws28{word-spacing:3.241166pt;}
.ws26{word-spacing:3.294300pt;}
.ws11{word-spacing:3.347434pt;}
.ws20{word-spacing:3.453701pt;}
.wse2{word-spacing:3.586560pt;}
.ws75{word-spacing:3.666237pt;}
.ws7a{word-spacing:3.719371pt;}
.ws4e{word-spacing:3.824640pt;}
.wsfe{word-spacing:3.825664pt;}
.ws4f{word-spacing:3.877760pt;}
.ws6a{word-spacing:3.931906pt;}
.wsb9{word-spacing:4.091308pt;}
.ws50{word-spacing:4.196480pt;}
.ws101{word-spacing:4.351693pt;}
.ws53{word-spacing:4.462080pt;}
.wsbb{word-spacing:4.516379pt;}
.wsa9{word-spacing:4.569513pt;}
.ws82{word-spacing:4.622646pt;}
.ws18{word-spacing:4.675780pt;}
.ws52{word-spacing:4.727680pt;}
.wsd8{word-spacing:4.779597pt;}
.wsdc{word-spacing:4.780407pt;}
.wse4{word-spacing:4.781807pt;}
.wsd1{word-spacing:4.781986pt;}
.ws1a{word-spacing:4.782048pt;}
.wse7{word-spacing:4.782080pt;}
.wsec{word-spacing:4.782268pt;}
.ws6d{word-spacing:4.941450pt;}
.wsb5{word-spacing:4.994583pt;}
.ws5d{word-spacing:5.099520pt;}
.wsae{word-spacing:5.153985pt;}
.ws23{word-spacing:5.207119pt;}
.ws10a{word-spacing:5.260288pt;}
.ws16{word-spacing:5.307978pt;}
.ws17{word-spacing:5.313387pt;}
.ws61{word-spacing:5.365120pt;}
.wsc3{word-spacing:5.403750pt;}
.wsd5{word-spacing:5.547213pt;}
.wsac{word-spacing:5.738458pt;}
.ws108{word-spacing:5.738496pt;}
.wseb{word-spacing:6.121062pt;}
.wsb6{word-spacing:6.163529pt;}
.wsc7{word-spacing:6.264525pt;}
.wsc4{word-spacing:6.360166pt;}
.wsd7{word-spacing:6.551450pt;}
.ws58{word-spacing:6.693120pt;}
.ws10d{word-spacing:6.934016pt;}
.wsda{word-spacing:7.029658pt;}
.ws57{word-spacing:7.064960pt;}
.wsb0{word-spacing:7.173072pt;}
.wse8{word-spacing:7.268762pt;}
.ws56{word-spacing:7.330560pt;}
.ws78{word-spacing:7.332474pt;}
.wse9{word-spacing:7.460045pt;}
.wsc0{word-spacing:8.023214pt;}
.wsff{word-spacing:8.416461pt;}
.ws105{word-spacing:8.655565pt;}
.ws19{word-spacing:8.767088pt;}
.wsb4{word-spacing:9.829765pt;}
.ws106{word-spacing:10.138010pt;}
.ws4d{word-spacing:10.252160pt;}
.ws1b{word-spacing:10.584852pt;}
.ws103{word-spacing:11.901158pt;}
.wsce{word-spacing:11.904205pt;}
.wse5{word-spacing:11.904299pt;}
.wsf7{word-spacing:11.906825pt;}
.wsd2{word-spacing:11.907379pt;}
.wsdd{word-spacing:11.910204pt;}
.wse6{word-spacing:12.003021pt;}
.wse1{word-spacing:12.050842pt;}
.ws107{word-spacing:12.098662pt;}
.ws51{word-spacing:12.164480pt;}
.wsfb{word-spacing:12.242125pt;}
.wsf6{word-spacing:12.385587pt;}
.wsde{word-spacing:12.481229pt;}
.ws27{word-spacing:13.230333pt;}
.ws3b{word-spacing:14.342400pt;}
.ws3a{word-spacing:14.714240pt;}
.ws109{word-spacing:16.402534pt;}
.wsfc{word-spacing:16.498176pt;}
.wsf8{word-spacing:16.593818pt;}
.wsfd{word-spacing:16.682615pt;}
.wsd4{word-spacing:16.689459pt;}
.wscc{word-spacing:16.832922pt;}
.ws60{word-spacing:16.839040pt;}
.wsea{word-spacing:39.452160pt;}
.ws9d{word-spacing:94.831130pt;}
.ws89{word-spacing:94.836197pt;}
.ws8b{word-spacing:237.824794pt;}
.ws8f{word-spacing:320.915825pt;}
.ws8d{word-spacing:320.961254pt;}
.ws91{word-spacing:332.318694pt;}
.ws9f{word-spacing:343.630705pt;}
.ws1e{word-spacing:814.437952pt;}
._1b{margin-left:-6.269796pt;}
._3{margin-left:-5.308109pt;}
._2{margin-left:-4.399514pt;}
._1{margin-left:-2.745596pt;}
._7{margin-left:-1.819895pt;}
._4{margin-left:-0.908595pt;}
._8{width:0.969929pt;}
._0{width:2.638231pt;}
._14{width:3.667466pt;}
._13{width:8.790400pt;}
._15{width:10.372215pt;}
._52{width:11.333530pt;}
._4d{width:12.340401pt;}
._b{width:14.093818pt;}
._5{width:15.876506pt;}
._6{width:17.598054pt;}
._c{width:18.596853pt;}
._a{width:20.190869pt;}
._16{width:21.378477pt;}
._50{width:22.404405pt;}
._9{width:23.325767pt;}
._1a{width:24.571711pt;}
._d{width:25.557390pt;}
._19{width:27.058482pt;}
._e{width:28.865033pt;}
._17{width:30.889440pt;}
._10{width:33.314934pt;}
._4e{width:38.463600pt;}
._51{width:40.004787pt;}
._18{width:40.966211pt;}
._4f{width:43.091566pt;}
._f{width:45.323188pt;}
._1c{width:99.147546pt;}
._3e{width:195.108864pt;}
._47{width:200.962130pt;}
._4b{width:201.899418pt;}
._2a{width:208.389014pt;}
._3d{width:215.432704pt;}
._41{width:219.019264pt;}
._49{width:226.527130pt;}
._2e{width:227.512238pt;}
._30{width:245.339171pt;}
._20{width:249.136804pt;}
._28{width:253.816069pt;}
._40{width:263.253504pt;}
._29{width:285.755895pt;}
._2c{width:304.560098pt;}
._2d{width:312.783898pt;}
._1e{width:332.318694pt;}
._22{width:340.496051pt;}
._2f{width:343.676134pt;}
._43{width:358.416896pt;}
._37{width:361.166592pt;}
._4a{width:369.320038pt;}
._1f{width:373.796065pt;}
._42{width:375.154176pt;}
._33{width:378.202752pt;}
._32{width:380.337951pt;}
._24{width:403.643418pt;}
._45{width:405.424742pt;}
._27{width:417.544924pt;}
._1d{width:421.133875pt;}
._3c{width:423.548826pt;}
._46{width:429.526426pt;}
._25{width:434.126787pt;}
._44{width:438.660198pt;}
._48{width:448.798208pt;}
._23{width:452.344120pt;}
._39{width:458.795146pt;}
._4c{width:474.143232pt;}
._3b{width:476.331034pt;}
._3f{width:483.248994pt;}
._36{width:492.958326pt;}
._35{width:500.272517pt;}
._26{width:905.687695pt;}
._21{width:912.002432pt;}
._38{width:933.357124pt;}
._31{width:943.894124pt;}
._3a{width:959.839969pt;}
._34{width:1001.998787pt;}
._2b{width:1003.634258pt;}
._12{width:1441.438812pt;}
._53{width:1779.053067pt;}
._11{width:1800.306400pt;}
.fse{font-size:31.880533pt;}
.fsd{font-size:35.333920pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.880000pt;}
.fsc{font-size:45.429760pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y4e{bottom:-48.511333pt;}
.y6c{bottom:-25.151333pt;}
.y6b{bottom:-3.247653pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:3.044747pt;}
.y16{bottom:12.578910pt;}
.y2{bottom:13.168686pt;}
.y2f{bottom:56.693333pt;}
.y6d{bottom:94.600000pt;}
.y132{bottom:101.636000pt;}
.yfc{bottom:104.190867pt;}
.y17f{bottom:107.424000pt;}
.y2e{bottom:108.897333pt;}
.y153{bottom:109.441333pt;}
.y4c{bottom:114.536667pt;}
.y9c{bottom:116.588000pt;}
.yfb{bottom:118.373733pt;}
.yc8{bottom:118.766667pt;}
.y131{bottom:119.649333pt;}
.y17e{bottom:124.640000pt;}
.y2d{bottom:126.909333pt;}
.y152{bottom:127.454667pt;}
.y1b1{bottom:131.281333pt;}
.yfa{bottom:132.557867pt;}
.y9b{bottom:134.601333pt;}
.yc7{bottom:136.780000pt;}
.y130{bottom:137.661333pt;}
.y17d{bottom:141.854667pt;}
.y2c{bottom:144.922667pt;}
.y151{bottom:145.466667pt;}
.y1b0{bottom:148.497333pt;}
.y9a{bottom:152.613333pt;}
.yf9{bottom:152.822000pt;}
.yc6{bottom:154.792000pt;}
.y12f{bottom:155.674667pt;}
.y17c{bottom:159.070667pt;}
.y2b{bottom:162.934667pt;}
.y150{bottom:163.478667pt;}
.y1af{bottom:165.713333pt;}
.yf8{bottom:166.703400pt;}
.y99{bottom:170.625333pt;}
.yc5{bottom:172.804000pt;}
.y12e{bottom:173.686667pt;}
.y17b{bottom:176.285333pt;}
.y2a{bottom:180.948000pt;}
.y14f{bottom:181.492000pt;}
.y1ae{bottom:182.928000pt;}
.yf7{bottom:187.650267pt;}
.y98{bottom:188.638667pt;}
.yc4{bottom:190.817333pt;}
.y12d{bottom:191.698667pt;}
.y17a{bottom:193.501333pt;}
.y14e{bottom:199.504000pt;}
.y1ad{bottom:200.144000pt;}
.y97{bottom:206.650667pt;}
.y29{bottom:206.930667pt;}
.yf6{bottom:207.915667pt;}
.yc3{bottom:208.829333pt;}
.y12c{bottom:209.712000pt;}
.y179{bottom:210.717333pt;}
.y1ac{bottom:217.358667pt;}
.y14d{bottom:217.517333pt;}
.y96{bottom:224.664000pt;}
.yc2{bottom:226.842667pt;}
.y12b{bottom:227.724000pt;}
.y178{bottom:227.932000pt;}
.y1ab{bottom:234.574667pt;}
.yf5{bottom:235.270667pt;}
.y14c{bottom:235.529333pt;}
.y95{bottom:242.676000pt;}
.yc1{bottom:244.854667pt;}
.y177{bottom:245.148000pt;}
.y12a{bottom:245.737333pt;}
.y1aa{bottom:251.790667pt;}
.yf4{bottom:252.366667pt;}
.y14b{bottom:253.541333pt;}
.y1b4{bottom:257.016000pt;}
.y94{bottom:260.688000pt;}
.y176{bottom:262.362667pt;}
.yc0{bottom:262.866667pt;}
.y129{bottom:263.749333pt;}
.y1a9{bottom:269.005333pt;}
.y14a{bottom:271.554667pt;}
.y1b3{bottom:274.230667pt;}
.y28{bottom:274.854667pt;}
.y93{bottom:278.701333pt;}
.y175{bottom:279.578667pt;}
.ybf{bottom:280.880000pt;}
.y128{bottom:281.761333pt;}
.yf3{bottom:285.041333pt;}
.y1a8{bottom:286.221333pt;}
.y149{bottom:289.566667pt;}
.y1b2{bottom:291.446667pt;}
.y92{bottom:296.713333pt;}
.y174{bottom:296.794667pt;}
.yf2{bottom:297.660000pt;}
.ybe{bottom:298.892000pt;}
.y127{bottom:299.774667pt;}
.y1a7{bottom:303.437333pt;}
.y148{bottom:307.580000pt;}
.y27{bottom:308.808000pt;}
.yf1{bottom:310.280000pt;}
.y173{bottom:314.009333pt;}
.yf0{bottom:314.137333pt;}
.y91{bottom:314.726667pt;}
.ybd{bottom:316.905333pt;}
.y1a6{bottom:320.652000pt;}
.y147{bottom:325.592000pt;}
.y126{bottom:325.757333pt;}
.y26{bottom:326.820000pt;}
.yef{bottom:329.484333pt;}
.y172{bottom:331.225333pt;}
.y90{bottom:332.738667pt;}
.ybc{bottom:334.917333pt;}
.y1a5{bottom:337.868000pt;}
.y146{bottom:343.604000pt;}
.yee{bottom:343.667200pt;}
.y25{bottom:344.833333pt;}
.y171{bottom:348.440000pt;}
.y8f{bottom:350.750667pt;}
.ybb{bottom:352.929333pt;}
.y1a4{bottom:355.082667pt;}
.yed{bottom:357.850067pt;}
.y125{bottom:361.090667pt;}
.y145{bottom:361.617333pt;}
.y24{bottom:362.845333pt;}
.y170{bottom:365.656000pt;}
.y8e{bottom:368.764000pt;}
.yba{bottom:370.942667pt;}
.y124{bottom:371.797333pt;}
.yec{bottom:372.032933pt;}
.y1a3{bottom:372.298667pt;}
.y122{bottom:373.710667pt;}
.y6a{bottom:376.905627pt;}
.y123{bottom:377.568000pt;}
.y144{bottom:379.629333pt;}
.y23{bottom:380.858667pt;}
.y16f{bottom:382.872000pt;}
.y8d{bottom:386.776000pt;}
.yb9{bottom:388.954667pt;}
.y1a2{bottom:389.514667pt;}
.yeb{bottom:391.995600pt;}
.y121{bottom:393.317333pt;}
.y69{bottom:394.820347pt;}
.y143{bottom:397.642667pt;}
.y22{bottom:398.870667pt;}
.y16e{bottom:400.086667pt;}
.y8c{bottom:404.789333pt;}
.y1a1{bottom:406.729333pt;}
.yea{bottom:406.861200pt;}
.yb8{bottom:406.968000pt;}
.y120{bottom:408.246667pt;}
.y68{bottom:412.735067pt;}
.y142{bottom:415.654667pt;}
.y21{bottom:416.882667pt;}
.y16d{bottom:417.302667pt;}
.ye9{bottom:421.044067pt;}
.y8b{bottom:422.801333pt;}
.y11f{bottom:423.177333pt;}
.y1a0{bottom:423.945333pt;}
.yb7{bottom:424.980000pt;}
.y67{bottom:430.809147pt;}
.y141{bottom:433.666667pt;}
.y16c{bottom:434.517333pt;}
.y20{bottom:434.896000pt;}
.ye8{bottom:435.226933pt;}
.y11e{bottom:438.106667pt;}
.y8a{bottom:440.813333pt;}
.y19f{bottom:441.160000pt;}
.yb6{bottom:442.992000pt;}
.y66{bottom:448.723867pt;}
.ye7{bottom:449.409800pt;}
.y140{bottom:451.680000pt;}
.y16b{bottom:451.733333pt;}
.y1f{bottom:452.908000pt;}
.y11d{bottom:453.036000pt;}
.y19e{bottom:458.376000pt;}
.y89{bottom:458.826667pt;}
.yb5{bottom:461.005333pt;}
.ye6{bottom:463.291200pt;}
.y65{bottom:466.797947pt;}
.y11c{bottom:467.965333pt;}
.y16a{bottom:468.949333pt;}
.y13f{bottom:469.692000pt;}
.y1e{bottom:470.921333pt;}
.y19d{bottom:475.592000pt;}
.y88{bottom:476.838667pt;}
.yb4{bottom:479.017333pt;}
.y11b{bottom:482.577333pt;}
.ye5{bottom:484.238067pt;}
.y64{bottom:484.712667pt;}
.y169{bottom:486.164000pt;}
.y13e{bottom:487.704000pt;}
.y1d{bottom:488.933333pt;}
.y4b{bottom:489.884000pt;}
.y19c{bottom:492.806667pt;}
.y87{bottom:494.852000pt;}
.yb3{bottom:497.030667pt;}
.y11a{bottom:498.224000pt;}
.y63{bottom:502.786747pt;}
.y168{bottom:503.380000pt;}
.ye4{bottom:504.502200pt;}
.y13d{bottom:505.717333pt;}
.y1c{bottom:506.945333pt;}
.y4a{bottom:507.896000pt;}
.y19b{bottom:510.022667pt;}
.y86{bottom:512.864000pt;}
.y119{bottom:513.153333pt;}
.yb2{bottom:515.042667pt;}
.y167{bottom:520.594667pt;}
.y13c{bottom:523.729333pt;}
.y1b{bottom:524.958667pt;}
.y49{bottom:525.908000pt;}
.y19a{bottom:527.237333pt;}
.y118{bottom:528.082667pt;}
.y62{bottom:528.709307pt;}
.y85{bottom:530.876000pt;}
.ye3{bottom:531.858667pt;}
.yb1{bottom:533.054667pt;}
.y166{bottom:537.810667pt;}
.y13b{bottom:541.742667pt;}
.y1a{bottom:542.970667pt;}
.y117{bottom:543.012000pt;}
.y48{bottom:543.921333pt;}
.y199{bottom:544.453333pt;}
.y84{bottom:548.889333pt;}
.ye2{bottom:548.954667pt;}
.yb0{bottom:551.068000pt;}
.y116{bottom:557.941333pt;}
.y13a{bottom:559.754667pt;}
.y19{bottom:560.984000pt;}
.y198{bottom:561.669333pt;}
.y47{bottom:561.933333pt;}
.y61{bottom:562.626427pt;}
.y165{bottom:562.996000pt;}
.y83{bottom:566.901333pt;}
.yaf{bottom:569.080000pt;}
.y115{bottom:572.870667pt;}
.y139{bottom:577.766667pt;}
.y197{bottom:578.884000pt;}
.y18{bottom:578.996000pt;}
.y46{bottom:579.945333pt;}
.ye1{bottom:581.628000pt;}
.y82{bottom:584.914667pt;}
.yae{bottom:587.093333pt;}
.y114{bottom:587.800000pt;}
.ye0{bottom:594.248000pt;}
.y138{bottom:595.780000pt;}
.y196{bottom:596.100000pt;}
.y60{bottom:596.702907pt;}
.y45{bottom:597.958667pt;}
.y164{bottom:598.065333pt;}
.y113{bottom:602.412000pt;}
.y81{bottom:602.926667pt;}
.yad{bottom:605.105333pt;}
.yde{bottom:606.866667pt;}
.y15{bottom:610.491968pt;}
.ydf{bottom:610.724000pt;}
.y14{bottom:611.173333pt;}
.y195{bottom:613.314667pt;}
.y137{bottom:613.792000pt;}
.y5f{bottom:614.617627pt;}
.y44{bottom:615.970667pt;}
.ydd{bottom:619.486667pt;}
.y163{bottom:619.544000pt;}
.y80{bottom:620.938667pt;}
.yac{bottom:623.117333pt;}
.ydc{bottom:623.344000pt;}
.y112{bottom:624.144000pt;}
.y194{bottom:630.530667pt;}
.y136{bottom:631.805333pt;}
.y5e{bottom:632.691707pt;}
.y162{bottom:633.053333pt;}
.ydb{bottom:638.690667pt;}
.y111{bottom:638.756000pt;}
.yab{bottom:641.130667pt;}
.y43{bottom:641.953333pt;}
.y13{bottom:645.844000pt;}
.y161{bottom:646.562667pt;}
.y7f{bottom:646.921333pt;}
.y193{bottom:647.746667pt;}
.y135{bottom:649.817333pt;}
.y5d{bottom:650.606427pt;}
.yda{bottom:652.873533pt;}
.yaa{bottom:659.142667pt;}
.y110{bottom:660.088000pt;}
.y192{bottom:664.961333pt;}
.y12{bottom:666.324000pt;}
.yd9{bottom:667.056400pt;}
.y134{bottom:667.829333pt;}
.y160{bottom:668.042667pt;}
.y5c{bottom:668.680507pt;}
.y42{bottom:672.904000pt;}
.y7e{bottom:677.872000pt;}
.yd8{bottom:681.239267pt;}
.y15f{bottom:681.552000pt;}
.y191{bottom:682.177333pt;}
.y11{bottom:682.462667pt;}
.ya9{bottom:685.125333pt;}
.y133{bottom:685.842667pt;}
.y5b{bottom:686.595227pt;}
.y10f{bottom:688.193333pt;}
.y15e{bottom:695.061333pt;}
.y7d{bottom:695.885333pt;}
.y10{bottom:698.602667pt;}
.y190{bottom:699.392000pt;}
.yd7{bottom:701.504667pt;}
.y41{bottom:703.854667pt;}
.y5a{bottom:704.509947pt;}
.y10e{bottom:705.289333pt;}
.y15d{bottom:708.570667pt;}
.y7c{bottom:713.897333pt;}
.yf{bottom:714.742667pt;}
.yd6{bottom:715.687533pt;}
.ya8{bottom:716.076000pt;}
.y18f{bottom:716.608000pt;}
.y40{bottom:721.868000pt;}
.y15c{bottom:722.080000pt;}
.y59{bottom:722.584027pt;}
.ye{bottom:726.542667pt;}
.yd5{bottom:729.870400pt;}
.y7b{bottom:731.909333pt;}
.y18e{bottom:733.824000pt;}
.ya7{bottom:734.088000pt;}
.y15b{bottom:735.589333pt;}
.y10d{bottom:738.909333pt;}
.y3f{bottom:739.880000pt;}
.y58{bottom:740.498747pt;}
.yd4{bottom:743.751800pt;}
.yd{bottom:747.021333pt;}
.y15a{bottom:749.098667pt;}
.y7a{bottom:749.922667pt;}
.y18d{bottom:751.038667pt;}
.y10c{bottom:751.528000pt;}
.ya6{bottom:752.101333pt;}
.y10b{bottom:755.385333pt;}
.y3e{bottom:757.892000pt;}
.yd3{bottom:758.314667pt;}
.y57{bottom:758.572827pt;}
.yc{bottom:758.821333pt;}
.y79{bottom:767.934667pt;}
.y18c{bottom:768.254667pt;}
.ya5{bottom:770.113333pt;}
.y159{bottom:770.578667pt;}
.y10a{bottom:770.732333pt;}
.y3d{bottom:775.905333pt;}
.y56{bottom:776.487547pt;}
.yd2{bottom:779.261533pt;}
.yb{bottom:779.300000pt;}
.y158{bottom:784.088000pt;}
.y109{bottom:784.613733pt;}
.y18b{bottom:785.469333pt;}
.y78{bottom:785.948000pt;}
.ya4{bottom:788.126667pt;}
.yd1{bottom:793.142933pt;}
.y3c{bottom:793.917333pt;}
.y55{bottom:794.402267pt;}
.ya{bottom:795.440000pt;}
.y157{bottom:797.597333pt;}
.y108{bottom:799.479333pt;}
.y18a{bottom:802.685333pt;}
.y77{bottom:803.960000pt;}
.ya3{bottom:806.138667pt;}
.yd0{bottom:807.705800pt;}
.y3b{bottom:811.930667pt;}
.y54{bottom:812.476347pt;}
.y107{bottom:813.662200pt;}
.y9{bottom:815.210667pt;}
.y189{bottom:819.901333pt;}
.y76{bottom:821.972000pt;}
.ycf{bottom:822.571400pt;}
.y156{bottom:827.046667pt;}
.y3a{bottom:829.942667pt;}
.y53{bottom:830.391067pt;}
.ya2{bottom:832.121333pt;}
.y8{bottom:833.222667pt;}
.y106{bottom:833.624867pt;}
.y188{bottom:837.116000pt;}
.y75{bottom:839.985333pt;}
.yce{bottom:842.835533pt;}
.y155{bottom:845.060000pt;}
.y39{bottom:847.954667pt;}
.y52{bottom:848.465147pt;}
.y105{bottom:848.490467pt;}
.y187{bottom:854.332000pt;}
.ycd{bottom:857.019667pt;}
.y74{bottom:857.997333pt;}
.y104{bottom:862.673333pt;}
.ya1{bottom:863.072000pt;}
.y38{bottom:865.968000pt;}
.y51{bottom:866.379867pt;}
.y7{bottom:871.160000pt;}
.y186{bottom:871.546667pt;}
.y73{bottom:876.010667pt;}
.ycc{bottom:877.283800pt;}
.ya0{bottom:881.084000pt;}
.y103{bottom:882.937467pt;}
.y37{bottom:883.980000pt;}
.y50{bottom:884.453947pt;}
.y185{bottom:888.762667pt;}
.y72{bottom:894.022667pt;}
.y102{bottom:897.120333pt;}
.ycb{bottom:897.549200pt;}
.y6{bottom:898.178667pt;}
.y9f{bottom:899.097333pt;}
.y36{bottom:901.993333pt;}
.y4f{bottom:902.368667pt;}
.y184{bottom:905.978667pt;}
.y101{bottom:911.303200pt;}
.y71{bottom:912.034667pt;}
.y9e{bottom:917.109333pt;}
.y35{bottom:920.005333pt;}
.y183{bottom:923.193333pt;}
.yca{bottom:924.904000pt;}
.y154{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.y100{bottom:925.487333pt;}
.y70{bottom:930.048000pt;}
.y4d{bottom:935.488667pt;}
.y34{bottom:938.017333pt;}
.y182{bottom:940.409333pt;}
.yc9{bottom:942.000000pt;}
.y9d{bottom:943.092000pt;}
.yff{bottom:945.751467pt;}
.y6f{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y33{bottom:956.030667pt;}
.y181{bottom:957.624000pt;}
.yfe{bottom:966.016867pt;}
.y6e{bottom:966.073333pt;}
.y32{bottom:974.042667pt;}
.y180{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y31{bottom:992.056000pt;}
.yfd{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y30{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.h1b{height:23.209028pt;}
.h7{height:27.076941pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h1c{height:30.945242pt;}
.he{height:31.157778pt;}
.h10{height:31.322500pt;}
.h17{height:32.845716pt;}
.h18{height:33.072865pt;}
.h22{height:33.713664pt;}
.h21{height:34.144051pt;}
.h16{height:34.574438pt;}
.h8{height:34.813542pt;}
.h1d{height:35.052646pt;}
.h15{height:35.062500pt;}
.h14{height:38.231875pt;}
.hc{height:38.415786pt;}
.hd{height:38.681455pt;}
.h12{height:38.776563pt;}
.h13{height:38.802500pt;}
.h4{height:38.947124pt;}
.h1a{height:42.210027pt;}
.h19{height:42.215094pt;}
.h20{height:44.431607pt;}
.h1f{height:44.436941pt;}
.h2{height:45.272024pt;}
.h11{height:47.109375pt;}
.h6{height:48.481423pt;}
.h1e{height:63.801105pt;}
.h5{height:69.148877pt;}
.h3{height:91.114522pt;}
.hf{height:354.326000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:176.724208pt;}
.w4{width:324.653333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1a{left:-156.246667pt;}
.x1b{left:-127.960267pt;}
.x1d{left:-20.246667pt;}
.x0{left:0.000000pt;}
.x8{left:26.021437pt;}
.x2{left:51.605861pt;}
.x3{left:101.042667pt;}
.x1{left:102.046667pt;}
.x6{left:108.541333pt;}
.x4{left:109.605333pt;}
.x5{left:129.929333pt;}
.x35{left:137.489333pt;}
.x4d{left:143.617333pt;}
.x89{left:150.669333pt;}
.x79{left:153.452000pt;}
.x87{left:155.705333pt;}
.x7e{left:157.258667pt;}
.x7a{left:160.093333pt;}
.x7b{left:163.481333pt;}
.x7f{left:167.288000pt;}
.x9{left:169.316000pt;}
.x61{left:172.485333pt;}
.x80{left:173.929333pt;}
.x26{left:176.052000pt;}
.x3b{left:177.429333pt;}
.x4a{left:178.386667pt;}
.x23{left:183.414667pt;}
.x24{left:184.317333pt;}
.xc{left:185.465333pt;}
.x45{left:186.856200pt;}
.xd{left:192.106667pt;}
.xe{left:195.493333pt;}
.x25{left:197.601333pt;}
.x50{left:199.557333pt;}
.xf{left:202.136000pt;}
.x2b{left:203.772533pt;}
.x3e{left:204.956867pt;}
.x3c{left:207.106400pt;}
.x4f{left:208.733333pt;}
.x2f{left:210.209733pt;}
.x47{left:212.387133pt;}
.x3d{left:215.050933pt;}
.x3f{left:219.792067pt;}
.x40{left:222.058133pt;}
.x4e{left:223.533333pt;}
.x2c{left:225.337533pt;}
.x2d{left:226.478800pt;}
.x2e{left:228.974133pt;}
.x7c{left:232.418667pt;}
.x19{left:234.524000pt;}
.x2a{left:237.298667pt;}
.x1e{left:238.254667pt;}
.x63{left:239.186667pt;}
.x32{left:244.568067pt;}
.x7d{left:245.701333pt;}
.x34{left:248.043800pt;}
.x29{left:248.934267pt;}
.x30{left:251.095200pt;}
.x33{left:252.393533pt;}
.x48{left:255.039600pt;}
.x31{left:256.736933pt;}
.x73{left:258.365333pt;}
.x51{left:261.620000pt;}
.x49{left:263.264000pt;}
.x52{left:268.930667pt;}
.x74{left:275.036000pt;}
.x5b{left:275.933333pt;}
.x64{left:282.549333pt;}
.x5c{left:289.217333pt;}
.x8a{left:293.202667pt;}
.x14{left:294.570667pt;}
.x65{left:295.832000pt;}
.x66{left:299.170667pt;}
.x12{left:302.069333pt;}
.x15{left:304.598667pt;}
.xa{left:309.316000pt;}
.x67{left:312.453333pt;}
.xb{left:315.957333pt;}
.x16{left:317.882667pt;}
.x13{left:322.126667pt;}
.x81{left:329.466667pt;}
.x21{left:341.702667pt;}
.x8b{left:351.524000pt;}
.x92{left:354.006667pt;}
.x22{left:354.986667pt;}
.x8c{left:357.501333pt;}
.x46{left:360.190667pt;}
.x28{left:364.627800pt;}
.x1c{left:371.327893pt;}
.x44{left:378.307800pt;}
.x76{left:379.766667pt;}
.x27{left:384.404267pt;}
.x10{left:386.878667pt;}
.x11{left:393.520000pt;}
.x77{left:396.414667pt;}
.x43{left:398.084267pt;}
.x62{left:401.412000pt;}
.x78{left:409.698667pt;}
.x38{left:414.980000pt;}
.x39{left:422.280000pt;}
.x41{left:431.350667pt;}
.x42{left:438.312000pt;}
.x75{left:445.925333pt;}
.x53{left:452.348000pt;}
.x54{left:459.658667pt;}
.x5d{left:464.766667pt;}
.x5e{left:468.024000pt;}
.x90{left:470.684000pt;}
.x5f{left:481.308000pt;}
.x4c{left:483.164000pt;}
.x60{left:484.565333pt;}
.x17{left:491.124000pt;}
.x91{left:494.593333pt;}
.x4b{left:497.330667pt;}
.x18{left:504.406667pt;}
.x57{left:516.384000pt;}
.x36{left:520.156000pt;}
.x8d{left:523.794667pt;}
.x37{left:527.252000pt;}
.x58{left:529.668000pt;}
.x59{left:536.282667pt;}
.x8e{left:547.705333pt;}
.x5a{left:549.566667pt;}
.x82{left:553.885333pt;}
.x83{left:567.168000pt;}
.x84{left:570.422667pt;}
.x1f{left:574.956000pt;}
.x85{left:583.706667pt;}
.x68{left:586.469333pt;}
.x20{left:588.240000pt;}
.x69{left:599.753333pt;}
.x93{left:602.090667pt;}
.x6a{left:603.090667pt;}
.x86{left:606.753333pt;}
.x95{left:611.810667pt;}
.x3a{left:616.254667pt;}
.x6b{left:619.712000pt;}
.x7{left:623.413317pt;}
.x94{left:626.000000pt;}
.x6c{left:632.994667pt;}
.x6d{left:636.332000pt;}
.x8f{left:648.524000pt;}
.x6e{left:649.616000pt;}
.x6f{left:652.953333pt;}
.x55{left:657.342667pt;}
.x56{left:661.992000pt;}
.x70{left:666.237333pt;}
.x71{left:672.912000pt;}
.x72{left:686.196000pt;}
.x88{left:690.174667pt;}
}




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