
    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_8a18e09843b5e91d691f2ecf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_646272a3c5ae9553540abaf7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d3fb6ae4f8f378be4c3dbf03.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_4bb17089b9aa0b556cb2732c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.029000;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_47805f04100ea4110874c977.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063000;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_6213775e0cd6c830caf8f6b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.029000;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_d5a5ee95dec7c36d1e3afdd7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.998000;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_bf0a98f031926edf32fd25d4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.089000;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_fdea3df85a3aaa0324ec7a15.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.951000;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_e5199a19a8149fe4bd02ce28.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.681000;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_f5e8597fbd4c5e39fc52027c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.063000;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_669352201dcd33d41689b4cd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.951000;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_bc2c4771ddfc2d2c3f88f61b.woff2')format("woff");}.fff{font-family:fff;line-height:1.063000;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_54a30dcbc5ea62ad9e6660f1.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.063000;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_bc2c4771ddfc2d2c3f88f61b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.063000;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:ff12;src:url('chunks/assets/font_da4fb0087fa8b1912a2c9ddc.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.063000;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:ff13;src:url('chunks/assets/font_5d2f2ea6546d0866d40afc17.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.951000;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:ff14;src:url('chunks/assets/font_c1a3e21e72434e6a854fd94e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.063000;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:ff15;src:url('chunks/assets/font_28a141238e62a9d3cce4975e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.678000;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:ff16;src:url('chunks/assets/font_239cd0aad81b4c6caa2bffab.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.063000;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:ff17;src:url('chunks/assets/font_5d2f2ea6546d0866d40afc17.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.951000;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:ff18;src:url('chunks/assets/font_f8362a2f122e04cd7201ff37.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.850000;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;}
.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);}
.m1{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);}
.v8{vertical-align:-47.154601px;}
.v15{vertical-align:-44.534398px;}
.v7{vertical-align:-31.436398px;}
.va{vertical-align:-26.197193px;}
.v9{vertical-align:-18.338402px;}
.v16{vertical-align:-16.875000px;}
.v14{vertical-align:-15.718200px;}
.v5{vertical-align:-10.478401px;}
.v12{vertical-align:-7.859399px;}
.v11{vertical-align:-5.239800px;}
.v3{vertical-align:-3.909571px;}
.v13{vertical-align:-2.619600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.ve{vertical-align:7.858800px;}
.v4{vertical-align:10.478399px;}
.v2{vertical-align:12.000000px;}
.vf{vertical-align:13.097999px;}
.v6{vertical-align:20.957399px;}
.vb{vertical-align:28.816800px;}
.vd{vertical-align:31.436400px;}
.v10{vertical-align:41.914800px;}
.vc{vertical-align:47.155199px;}
.ls27{letter-spacing:-6.750000px;}
.ls45{letter-spacing:-3.600000px;}
.ls44{letter-spacing:-3.150000px;}
.ls42{letter-spacing:-2.700000px;}
.ls26{letter-spacing:-2.244000px;}
.ls43{letter-spacing:-2.025000px;}
.ls25{letter-spacing:-1.938000px;}
.ls46{letter-spacing:-1.800000px;}
.ls2b{letter-spacing:-0.840000px;}
.ls31{letter-spacing:-0.607200px;}
.ls2e{letter-spacing:-0.540000px;}
.ls54{letter-spacing:-0.450000px;}
.ls49{letter-spacing:-0.441600px;}
.ls32{letter-spacing:-0.331200px;}
.ls2a{letter-spacing:-0.330000px;}
.ls23{letter-spacing:-0.276000px;}
.ls57{letter-spacing:-0.240000px;}
.ls55{letter-spacing:-0.225000px;}
.ls29{letter-spacing:-0.220800px;}
.ls47{letter-spacing:-0.210000px;}
.ls58{letter-spacing:-0.192000px;}
.ls39{letter-spacing:-0.165600px;}
.ls53{letter-spacing:-0.135000px;}
.ls24{letter-spacing:-0.110400px;}
.ls56{letter-spacing:-0.096000px;}
.ls2d{letter-spacing:-0.055200px;}
.ls3a{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.048000px;}
.ls2c{letter-spacing:0.055200px;}
.ls4b{letter-spacing:0.090000px;}
.ls37{letter-spacing:0.096000px;}
.ls8{letter-spacing:0.110400px;}
.ls51{letter-spacing:0.144000px;}
.lse{letter-spacing:0.165600px;}
.ls34{letter-spacing:0.193200px;}
.lsd{letter-spacing:0.220800px;}
.ls13{letter-spacing:0.276000px;}
.ls36{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.303600px;}
.ls4{letter-spacing:0.331200px;}
.ls35{letter-spacing:0.336000px;}
.ls4c{letter-spacing:0.358800px;}
.ls4f{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.386400px;}
.ls14{letter-spacing:0.441600px;}
.ls20{letter-spacing:0.469200px;}
.ls16{letter-spacing:0.496800px;}
.ls3b{letter-spacing:0.524400px;}
.ls12{letter-spacing:0.552000px;}
.ls21{letter-spacing:0.579600px;}
.ls4a{letter-spacing:0.585000px;}
.ls15{letter-spacing:0.600000px;}
.ls1b{letter-spacing:0.607200px;}
.ls4d{letter-spacing:0.634800px;}
.ls1c{letter-spacing:0.662400px;}
.ls3{letter-spacing:0.717600px;}
.ls11{letter-spacing:0.772800px;}
.ls2{letter-spacing:0.828000px;}
.ls33{letter-spacing:0.855600px;}
.ls1e{letter-spacing:0.883200px;}
.ls52{letter-spacing:0.912000px;}
.ls10{letter-spacing:0.938400px;}
.ls1f{letter-spacing:0.993600px;}
.ls4e{letter-spacing:1.008000px;}
.ls22{letter-spacing:1.048800px;}
.ls3c{letter-spacing:1.076400px;}
.ls1a{letter-spacing:1.104000px;}
.ls5{letter-spacing:1.159200px;}
.ls28{letter-spacing:1.200000px;}
.ls17{letter-spacing:1.214400px;}
.ls19{letter-spacing:1.269600px;}
.lsf{letter-spacing:1.324800px;}
.ls2f{letter-spacing:1.435200px;}
.lsa{letter-spacing:1.490400px;}
.ls48{letter-spacing:1.545600px;}
.lsb{letter-spacing:1.600800px;}
.ls1d{letter-spacing:1.683600px;}
.ls18{letter-spacing:1.876800px;}
.lsc{letter-spacing:18.309000px;}
.ls6{letter-spacing:19.432200px;}
.ls9{letter-spacing:20.065800px;}
.ls1{letter-spacing:20.116200px;}
.ls38{letter-spacing:99.082800px;}
.ls3d{letter-spacing:101.009400px;}
.ls3f{letter-spacing:108.752413px;}
.ls40{letter-spacing:110.391587px;}
.ls41{letter-spacing:110.391596px;}
.ls3e{letter-spacing:110.392206px;}
.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;}
}
.ws5{word-spacing:-47.250000px;}
.ws3{word-spacing:-20.400000px;}
.ws2{word-spacing:-18.462000px;}
.ws4{word-spacing:-18.156000px;}
.ws42{word-spacing:-14.400000px;}
.ws43{word-spacing:-13.358400px;}
.ws69{word-spacing:-12.600000px;}
.ws1{word-spacing:-11.040000px;}
.ws85{word-spacing:-10.800000px;}
.ws44{word-spacing:-9.000000px;}
.wsf0{word-spacing:-8.775000px;}
.wsdd{word-spacing:-3.588000px;}
.ws7f{word-spacing:-3.201600px;}
.ws6c{word-spacing:-3.146400px;}
.ws7d{word-spacing:-2.980800px;}
.wsea{word-spacing:-2.925600px;}
.ws80{word-spacing:-2.815200px;}
.ws47{word-spacing:-2.704800px;}
.ws6e{word-spacing:-2.649600px;}
.wsa7{word-spacing:-2.373600px;}
.wsdc{word-spacing:-2.263200px;}
.ws13{word-spacing:-2.208000px;}
.ws8e{word-spacing:-2.152800px;}
.wsff{word-spacing:-2.112000px;}
.ws76{word-spacing:-2.097600px;}
.ws46{word-spacing:-1.987200px;}
.ws9d{word-spacing:-1.920000px;}
.wsf7{word-spacing:-1.821600px;}
.ws9b{word-spacing:-1.776000px;}
.wsdb{word-spacing:-1.766400px;}
.wsd2{word-spacing:-1.711200px;}
.ws4f{word-spacing:-1.656000px;}
.ws89{word-spacing:-1.600800px;}
.ws99{word-spacing:-1.584000px;}
.wsdf{word-spacing:-1.545600px;}
.ws50{word-spacing:-1.490400px;}
.wsb9{word-spacing:-1.435200px;}
.ws2a{word-spacing:-1.324800px;}
.wsd1{word-spacing:-1.269600px;}
.ws9f{word-spacing:-1.200000px;}
.ws2e{word-spacing:-1.104000px;}
.ws3a{word-spacing:-1.048800px;}
.ws8c{word-spacing:-0.993600px;}
.ws6a{word-spacing:-0.938400px;}
.wsf6{word-spacing:-0.900000px;}
.wsb6{word-spacing:-0.883200px;}
.ws37{word-spacing:-0.828000px;}
.wse9{word-spacing:-0.772800px;}
.ws66{word-spacing:-0.717600px;}
.wsf{word-spacing:-0.607200px;}
.ws78{word-spacing:-0.552000px;}
.wsf5{word-spacing:-0.450000px;}
.wsde{word-spacing:-0.441600px;}
.ws96{word-spacing:-0.432000px;}
.ws71{word-spacing:-0.386400px;}
.ws77{word-spacing:-0.331200px;}
.wsb7{word-spacing:-0.220800px;}
.ws9c{word-spacing:-0.192000px;}
.ws36{word-spacing:-0.165600px;}
.ws101{word-spacing:-0.048000px;}
.ws45{word-spacing:-0.045000px;}
.ws0{word-spacing:0.000000px;}
.ws64{word-spacing:0.055200px;}
.wsef{word-spacing:0.090000px;}
.ws9a{word-spacing:0.096000px;}
.ws38{word-spacing:0.110400px;}
.wsb{word-spacing:0.220800px;}
.wsfe{word-spacing:0.240000px;}
.wsa2{word-spacing:0.276000px;}
.ws33{word-spacing:0.331200px;}
.ws70{word-spacing:0.496800px;}
.ws4e{word-spacing:0.607200px;}
.wsad{word-spacing:0.717600px;}
.ws51{word-spacing:0.772800px;}
.ws5b{word-spacing:0.828000px;}
.wsfd{word-spacing:0.864000px;}
.ws18{word-spacing:0.883200px;}
.ws98{word-spacing:0.960000px;}
.ws6f{word-spacing:0.993600px;}
.ws8d{word-spacing:1.048800px;}
.ws6b{word-spacing:1.104000px;}
.wse3{word-spacing:1.214400px;}
.ws32{word-spacing:1.324800px;}
.ws97{word-spacing:1.344000px;}
.wscf{word-spacing:1.380000px;}
.ws95{word-spacing:1.392000px;}
.wsd9{word-spacing:1.435200px;}
.ws86{word-spacing:1.490400px;}
.wsa4{word-spacing:1.545600px;}
.ws94{word-spacing:1.584000px;}
.ws8a{word-spacing:1.600800px;}
.ws9e{word-spacing:1.632000px;}
.wsce{word-spacing:1.656000px;}
.wsf1{word-spacing:1.665000px;}
.ws52{word-spacing:1.711200px;}
.wse7{word-spacing:1.800000px;}
.wse0{word-spacing:1.876800px;}
.ws90{word-spacing:1.932000px;}
.ws4d{word-spacing:1.987200px;}
.wse5{word-spacing:2.025000px;}
.ws5e{word-spacing:2.042400px;}
.ws75{word-spacing:2.097600px;}
.wsf3{word-spacing:2.115000px;}
.ws87{word-spacing:2.152800px;}
.wsa{word-spacing:2.208000px;}
.wsa1{word-spacing:2.263200px;}
.wsfb{word-spacing:2.304000px;}
.ws73{word-spacing:2.428800px;}
.ws14{word-spacing:2.484000px;}
.ws1d{word-spacing:2.594400px;}
.wsf4{word-spacing:2.610000px;}
.ws27{word-spacing:2.649600px;}
.ws100{word-spacing:2.688000px;}
.wse4{word-spacing:2.700000px;}
.ws4b{word-spacing:2.704800px;}
.ws79{word-spacing:2.760000px;}
.ws59{word-spacing:2.815200px;}
.ws58{word-spacing:2.870400px;}
.wsf2{word-spacing:2.925000px;}
.ws41{word-spacing:2.925600px;}
.ws84{word-spacing:2.980800px;}
.ws7e{word-spacing:3.036000px;}
.ws8{word-spacing:3.091200px;}
.ws72{word-spacing:3.146400px;}
.wse6{word-spacing:3.150000px;}
.ws25{word-spacing:3.201600px;}
.ws4c{word-spacing:3.256800px;}
.ws60{word-spacing:3.312000px;}
.wsd7{word-spacing:3.367200px;}
.ws63{word-spacing:3.422400px;}
.ws93{word-spacing:3.477600px;}
.ws55{word-spacing:3.532800px;}
.wsaa{word-spacing:3.643200px;}
.ws29{word-spacing:3.698400px;}
.ws65{word-spacing:3.753600px;}
.ws12{word-spacing:3.808800px;}
.ws102{word-spacing:3.840000px;}
.wse{word-spacing:3.864000px;}
.ws91{word-spacing:3.974400px;}
.ws62{word-spacing:4.029600px;}
.ws2b{word-spacing:4.084800px;}
.ws5f{word-spacing:4.140000px;}
.ws57{word-spacing:4.195200px;}
.ws1c{word-spacing:4.250400px;}
.ws82{word-spacing:4.360800px;}
.ws23{word-spacing:4.416000px;}
.ws28{word-spacing:4.471200px;}
.ws6d{word-spacing:4.526400px;}
.ws31{word-spacing:4.581600px;}
.ws81{word-spacing:4.636800px;}
.ws39{word-spacing:4.692000px;}
.ws8f{word-spacing:4.747200px;}
.wsab{word-spacing:4.802400px;}
.ws3d{word-spacing:4.857600px;}
.wsed{word-spacing:4.912800px;}
.wsb2{word-spacing:4.968000px;}
.ws40{word-spacing:5.078400px;}
.wsaf{word-spacing:5.188800px;}
.wsb0{word-spacing:5.244000px;}
.ws5c{word-spacing:5.299200px;}
.ws3e{word-spacing:5.354400px;}
.ws53{word-spacing:5.409600px;}
.ws54{word-spacing:5.464800px;}
.ws21{word-spacing:5.520000px;}
.ws3c{word-spacing:5.575200px;}
.ws92{word-spacing:5.630400px;}
.ws4a{word-spacing:5.685600px;}
.ws1a{word-spacing:5.796000px;}
.ws5d{word-spacing:5.851200px;}
.wsfc{word-spacing:5.952000px;}
.ws1e{word-spacing:6.016800px;}
.wsa3{word-spacing:6.072000px;}
.wsb8{word-spacing:6.182400px;}
.wsd{word-spacing:6.237600px;}
.wsb5{word-spacing:6.348000px;}
.ws20{word-spacing:6.403200px;}
.ws2d{word-spacing:6.568800px;}
.ws88{word-spacing:6.624000px;}
.wsc{word-spacing:6.679200px;}
.wsae{word-spacing:6.789600px;}
.wsb1{word-spacing:6.955200px;}
.ws7{word-spacing:7.010400px;}
.wsf8{word-spacing:7.120800px;}
.ws74{word-spacing:7.176000px;}
.wsa8{word-spacing:7.286400px;}
.ws19{word-spacing:7.341600px;}
.ws1b{word-spacing:7.396800px;}
.ws56{word-spacing:7.562400px;}
.wsa0{word-spacing:7.617600px;}
.ws5a{word-spacing:7.672800px;}
.ws22{word-spacing:7.728000px;}
.ws17{word-spacing:7.893600px;}
.wsd8{word-spacing:7.948800px;}
.ws24{word-spacing:8.059200px;}
.wsd5{word-spacing:8.114400px;}
.ws6{word-spacing:8.169600px;}
.wse8{word-spacing:8.224800px;}
.wsd6{word-spacing:8.335200px;}
.ws26{word-spacing:8.390400px;}
.wscd{word-spacing:8.500800px;}
.ws8b{word-spacing:8.556000px;}
.ws3b{word-spacing:8.611200px;}
.ws83{word-spacing:8.721600px;}
.wsa6{word-spacing:8.832000px;}
.ws7c{word-spacing:8.942400px;}
.ws61{word-spacing:8.997600px;}
.wsf9{word-spacing:9.163200px;}
.ws7b{word-spacing:9.328800px;}
.ws2f{word-spacing:9.384000px;}
.ws1f{word-spacing:9.494400px;}
.ws16{word-spacing:9.549600px;}
.ws34{word-spacing:9.604800px;}
.wsee{word-spacing:9.660000px;}
.ws30{word-spacing:9.880800px;}
.wsd0{word-spacing:9.936000px;}
.wsb4{word-spacing:10.046400px;}
.wsd3{word-spacing:10.212000px;}
.ws3f{word-spacing:10.322400px;}
.wsda{word-spacing:10.598400px;}
.ws67{word-spacing:10.764000px;}
.ws35{word-spacing:10.874400px;}
.ws48{word-spacing:10.929600px;}
.wsd4{word-spacing:10.984800px;}
.wse1{word-spacing:11.040000px;}
.ws9{word-spacing:11.371200px;}
.wsa9{word-spacing:11.426400px;}
.ws49{word-spacing:11.592000px;}
.ws103{word-spacing:11.616000px;}
.wsac{word-spacing:11.812800px;}
.wsb3{word-spacing:11.978400px;}
.wse2{word-spacing:12.088800px;}
.wseb{word-spacing:12.309600px;}
.wsfa{word-spacing:12.432000px;}
.wsa5{word-spacing:13.027200px;}
.ws15{word-spacing:13.413600px;}
.ws7a{word-spacing:14.517600px;}
.ws10{word-spacing:14.904000px;}
.ws2c{word-spacing:16.173600px;}
.ws11{word-spacing:16.228800px;}
.wsec{word-spacing:16.670400px;}
.wsc9{word-spacing:42.504000px;}
.wsc7{word-spacing:84.426592px;}
.wsc2{word-spacing:85.101589px;}
.wsc0{word-spacing:85.101596px;}
.wsc1{word-spacing:85.101615px;}
.wsc3{word-spacing:85.101641px;}
.wsbd{word-spacing:85.487386px;}
.wsc8{word-spacing:86.962145px;}
.wsbf{word-spacing:87.126546px;}
.wsbc{word-spacing:87.126592px;}
.wsba{word-spacing:87.126600px;}
.wsbb{word-spacing:87.126606px;}
.wsbe{word-spacing:87.126638px;}
.wscc{word-spacing:91.125000px;}
.wsc6{word-spacing:99.208794px;}
.wscb{word-spacing:100.440000px;}
.wsc4{word-spacing:216.219573px;}
.wsca{word-spacing:364.005000px;}
.ws68{word-spacing:708.702144px;}
.wsc5{word-spacing:750.620441px;}
._13{margin-left:-1090.896000px;}
._17{margin-left:-659.317440px;}
._11{margin-left:-603.478025px;}
._16{margin-left:-411.750000px;}
._0{margin-left:-53.064000px;}
._c{margin-left:-23.294400px;}
._2{margin-left:-16.537920px;}
._14{margin-left:-11.757600px;}
._d{margin-left:-10.233984px;}
._e{margin-left:-8.434440px;}
._3{margin-left:-6.182400px;}
._18{margin-left:-5.144640px;}
._b{margin-left:-4.123440px;}
._4{margin-left:-2.362560px;}
._1{margin-left:-1.280640px;}
._5{width:1.335840px;}
._a{width:2.794560px;}
._6{width:4.104000px;}
._8{width:5.832000px;}
._9{width:7.641000px;}
._f{width:10.764024px;}
._7{width:26.163000px;}
._15{width:322.830000px;}
._10{width:408.167412px;}
._12{width:1066.464000px;}
.fc6{color:rgb(200,211,0);}
.fc5{color:rgb(0,172,176);}
.fc3{color:transparent;}
.fc7{color:rgb(39,91,155);}
.fc2{color:rgb(60,60,59);}
.fc1{color:rgb(0,61,124);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:12.000000px;}
.fsa{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fsc{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fse{font-size:55.199999px;}
.fs6{font-size:55.200000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:168.000000px;}
.fs8{font-size:270.000000px;}
.y0{bottom:0.000000px;}
.y1b7{bottom:0.000007px;}
.y1d7{bottom:0.000027px;}
.y24a{bottom:0.000029px;}
.yd6{bottom:0.000033px;}
.y21d{bottom:34.015772px;}
.yd7{bottom:34.015800px;}
.y1d6{bottom:34.015804px;}
.y1b6{bottom:34.015807px;}
.yd5{bottom:34.015833px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y24{bottom:73.795200px;}
.y223{bottom:75.007350px;}
.y5b{bottom:75.347401px;}
.y6f{bottom:75.367201px;}
.y222{bottom:88.507350px;}
.y4{bottom:97.125005px;}
.y8b{bottom:97.795200px;}
.y1b5{bottom:97.795207px;}
.y21c{bottom:97.795320px;}
.y16a{bottom:97.807200px;}
.y5a{bottom:97.841401px;}
.y6e{bottom:97.861201px;}
.y221{bottom:102.007350px;}
.y151{bottom:114.803100px;}
.y220{bottom:115.507350px;}
.y8a{bottom:120.295200px;}
.y1b4{bottom:120.295207px;}
.y21b{bottom:120.295320px;}
.y169{bottom:120.301200px;}
.y59{bottom:120.335401px;}
.y6d{bottom:120.355201px;}
.y21f{bottom:129.007350px;}
.y150{bottom:131.306100px;}
.yed{bottom:135.077990px;}
.y23{bottom:139.264499px;}
.y21e{bottom:142.507350px;}
.y89{bottom:142.795200px;}
.y1b3{bottom:142.795207px;}
.y21a{bottom:142.795320px;}
.y58{bottom:142.829401px;}
.y6c{bottom:142.849201px;}
.y14f{bottom:151.178100px;}
.yec{bottom:160.997990px;}
.y88{bottom:165.295200px;}
.y1b2{bottom:165.295207px;}
.y219{bottom:165.295320px;}
.y57{bottom:165.323401px;}
.y6b{bottom:165.343201px;}
.yee{bottom:166.911598px;}
.y14e{bottom:167.678100px;}
.yeb{bottom:174.497990px;}
.y14d{bottom:187.556100px;}
.y87{bottom:187.795200px;}
.y1b1{bottom:187.795207px;}
.y218{bottom:187.795320px;}
.y120{bottom:187.795349px;}
.y168{bottom:187.801200px;}
.y56{bottom:187.817401px;}
.y6a{bottom:187.837201px;}
.y42{bottom:188.141700px;}
.y1a{bottom:196.933500px;}
.yef{bottom:199.722610px;}
.yea{bottom:200.417990px;}
.y14c{bottom:204.056100px;}
.y41{bottom:206.136900px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y86{bottom:210.295189px;}
.y1b0{bottom:210.295195px;}
.y167{bottom:210.295200px;}
.y217{bottom:210.295320px;}
.y11f{bottom:210.295349px;}
.y55{bottom:210.311401px;}
.y69{bottom:210.331201px;}
.y14b{bottom:220.556100px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y40{bottom:224.132100px;}
.ye9{bottom:226.337990px;}
.yf0{bottom:232.533760px;}
.y85{bottom:232.795189px;}
.y1af{bottom:232.795195px;}
.y216{bottom:232.795320px;}
.y11e{bottom:232.795349px;}
.y166{bottom:232.801200px;}
.y68{bottom:232.825201px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y14a{bottom:237.056100px;}
.ye8{bottom:239.837990px;}
.y3f{bottom:242.127300px;}
.y149{bottom:253.556100px;}
.y84{bottom:255.295189px;}
.y1ae{bottom:255.295195px;}
.y165{bottom:255.295200px;}
.y215{bottom:255.295320px;}
.y11d{bottom:255.295349px;}
.y54{bottom:255.313201px;}
.y67{bottom:255.319201px;}
.y3e{bottom:258.622500px;}
.ye7{bottom:259.007990px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.yf1{bottom:265.344749px;}
.y16d{bottom:266.545189px;}
.ye6{bottom:272.507990px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y148{bottom:273.428100px;}
.y83{bottom:277.795189px;}
.y1ad{bottom:277.795195px;}
.y164{bottom:277.795200px;}
.y214{bottom:277.795320px;}
.y11c{bottom:277.795349px;}
.y53{bottom:277.807201px;}
.y66{bottom:277.813201px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y3d{bottom:285.809700px;}
.y16c{bottom:289.045189px;}
.y147{bottom:289.928100px;}
.yf2{bottom:298.155739px;}
.ye5{bottom:298.427990px;}
.y82{bottom:300.295189px;}
.y1ac{bottom:300.295195px;}
.y213{bottom:300.295320px;}
.y11b{bottom:300.295349px;}
.y52{bottom:300.301201px;}
.y65{bottom:300.307201px;}
.y163{bottom:300.355200px;}
.y3c{bottom:303.804900px;}
.y146{bottom:306.428100px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y16b{bottom:311.545189px;}
.y3b{bottom:321.800100px;}
.y81{bottom:322.795189px;}
.y1ab{bottom:322.795195px;}
.y51{bottom:322.795201px;}
.y212{bottom:322.795320px;}
.y11a{bottom:322.795349px;}
.y64{bottom:322.801201px;}
.y162{bottom:322.849200px;}
.y1b{bottom:322.918500px;}
.y145{bottom:322.928100px;}
.y12{bottom:322.933500px;}
.yf3{bottom:330.966750px;}
.ye4{bottom:331.097990px;}
.y144{bottom:339.428100px;}
.y3a{bottom:339.795300px;}
.y80{bottom:345.295189px;}
.y1aa{bottom:345.295195px;}
.y50{bottom:345.295201px;}
.y211{bottom:345.295320px;}
.y119{bottom:345.295349px;}
.y161{bottom:345.343200px;}
.y11{bottom:348.133500px;}
.y143{bottom:355.928100px;}
.y39{bottom:357.790500px;}
.ye3{bottom:363.767990px;}
.yf4{bottom:363.777740px;}
.y7f{bottom:367.795189px;}
.y1a9{bottom:367.795195px;}
.y4f{bottom:367.795201px;}
.y210{bottom:367.795320px;}
.y118{bottom:367.795349px;}
.y160{bottom:367.837200px;}
.y238{bottom:371.671500px;}
.y38{bottom:375.785700px;}
.y142{bottom:375.803100px;}
.y10{bottom:386.785499px;}
.y4e{bottom:390.295201px;}
.y7e{bottom:390.295212px;}
.y1a8{bottom:390.295218px;}
.y117{bottom:390.295349px;}
.y63{bottom:390.301201px;}
.y15f{bottom:390.331200px;}
.y237{bottom:390.920250px;}
.y141{bottom:392.303100px;}
.y37{bottom:393.780900px;}
.y236{bottom:405.916500px;}
.yf{bottom:408.044999px;}
.y140{bottom:408.803100px;}
.ye1{bottom:409.536753px;}
.y36{bottom:410.276100px;}
.y62{bottom:412.795201px;}
.y7d{bottom:412.795212px;}
.y1a7{bottom:412.795218px;}
.y116{bottom:412.795349px;}
.y15e{bottom:412.825200px;}
.y4d{bottom:412.831201px;}
.y229{bottom:414.584550px;}
.y22f{bottom:416.001900px;}
.y20f{bottom:417.366137px;}
.y235{bottom:420.912750px;}
.ye0{bottom:423.936756px;}
.y13f{bottom:425.303100px;}
.y228{bottom:433.833300px;}
.y22e{bottom:435.250650px;}
.y61{bottom:435.295201px;}
.y7c{bottom:435.295212px;}
.y1a6{bottom:435.295218px;}
.y115{bottom:435.295349px;}
.y15d{bottom:435.319200px;}
.y4c{bottom:435.325201px;}
.y234{bottom:435.909000px;}
.y35{bottom:437.448750px;}
.ydf{bottom:444.714755px;}
.y227{bottom:448.829550px;}
.y22d{bottom:450.246900px;}
.y13e{bottom:450.307050px;}
.y233{bottom:450.905250px;}
.y34{bottom:455.443950px;}
.y60{bottom:457.795201px;}
.y7b{bottom:457.795212px;}
.y114{bottom:457.795349px;}
.y15c{bottom:457.813200px;}
.y4b{bottom:457.819201px;}
.y226{bottom:463.825800px;}
.y22c{bottom:465.243150px;}
.y232{bottom:465.901500px;}
.ye2{bottom:469.590604px;}
.y33{bottom:473.439150px;}
.y152{bottom:474.012450px;}
.y225{bottom:478.822050px;}
.y22b{bottom:480.239400px;}
.y5f{bottom:480.295201px;}
.y7a{bottom:480.295212px;}
.y113{bottom:480.295349px;}
.y15b{bottom:480.307200px;}
.y4a{bottom:480.313201px;}
.y231{bottom:480.897750px;}
.ye{bottom:484.864502px;}
.y1d8{bottom:486.281250px;}
.y32{bottom:491.434350px;}
.y16e{bottom:496.210648px;}
.y224{bottom:498.070800px;}
.y22a{bottom:499.488150px;}
.y230{bottom:500.146500px;}
.y79{bottom:502.795212px;}
.y112{bottom:502.795349px;}
.y15a{bottom:502.801200px;}
.y49{bottom:502.807201px;}
.y5e{bottom:502.857601px;}
.yd{bottom:502.864502px;}
.y31{bottom:507.929550px;}
.y20c{bottom:519.247164px;}
.y1f5{bottom:519.485667px;}
.yc{bottom:520.864502px;}
.y159{bottom:525.295200px;}
.y78{bottom:525.295212px;}
.y111{bottom:525.295349px;}
.y48{bottom:525.301201px;}
.y5d{bottom:525.351601px;}
.y13d{bottom:525.463200px;}
.y30{bottom:535.083150px;}
.yb{bottom:538.864499px;}
.y18e{bottom:542.315690px;}
.y1a5{bottom:542.913627px;}
.y1f4{bottom:543.628167px;}
.y47{bottom:547.795201px;}
.y77{bottom:547.795212px;}
.y110{bottom:547.795349px;}
.y5c{bottom:547.845601px;}
.y13c{bottom:547.957200px;}
.y2f{bottom:553.083150px;}
.y20b{bottom:554.089160px;}
.y1f3{bottom:555.631917px;}
.ya{bottom:556.864499px;}
.y158{bottom:559.045200px;}
.y18d{bottom:566.458190px;}
.y1f2{bottom:567.635667px;}
.y76{bottom:570.295212px;}
.y10f{bottom:570.295349px;}
.y13b{bottom:570.451200px;}
.y2e{bottom:571.083150px;}
.y18c{bottom:578.461940px;}
.y1a4{bottom:579.217078px;}
.y157{bottom:581.545200px;}
.ya4{bottom:581.545212px;}
.y1f1{bottom:586.884417px;}
.y2d{bottom:589.083150px;}
.y18b{bottom:590.465690px;}
.y75{bottom:592.795212px;}
.y10e{bottom:592.795349px;}
.y13a{bottom:592.945200px;}
.y156{bottom:604.045200px;}
.ya3{bottom:604.045212px;}
.y1f0{bottom:605.008167px;}
.y2c{bottom:607.087950px;}
.y18a{bottom:609.286940px;}
.y20a{bottom:611.017016px;}
.yde{bottom:615.295212px;}
.y10d{bottom:615.295349px;}
.y139{bottom:615.439200px;}
.y1ef{bottom:618.508167px;}
.y2b{bottom:623.583150px;}
.ya2{bottom:626.545212px;}
.y189{bottom:626.983190px;}
.y1a3{bottom:634.396827px;}
.y209{bottom:636.505617px;}
.y1ee{bottom:636.631917px;}
.ydd{bottom:637.795212px;}
.y10c{bottom:637.795349px;}
.y138{bottom:637.933200px;}
.y188{bottom:640.483190px;}
.ya5{bottom:641.478150px;}
.y9{bottom:645.510000px;}
.ya1{bottom:649.045212px;}
.y2a{bottom:650.741550px;}
.y208{bottom:656.502108px;}
.y1ed{bottom:656.611917px;}
.y187{bottom:658.393190px;}
.y1a2{bottom:659.173194px;}
.y155{bottom:660.295200px;}
.ydc{bottom:660.295212px;}
.y10b{bottom:660.295349px;}
.y137{bottom:660.427200px;}
.y74{bottom:664.356301px;}
.y8{bottom:666.771000px;}
.y29{bottom:668.736750px;}
.yc0{bottom:675.270774px;}
.y207{bottom:676.498644px;}
.y1ec{bottom:676.591917px;}
.y186{bottom:677.956940px;}
.y1a1{bottom:678.634513px;}
.y154{bottom:682.795200px;}
.ydb{bottom:682.795212px;}
.y10a{bottom:682.795349px;}
.y136{bottom:682.921200px;}
.y28{bottom:686.736750px;}
.ybf{bottom:692.123274px;}
.y206{bottom:696.495135px;}
.y1eb{bottom:696.571917px;}
.y185{bottom:697.520690px;}
.y1a0{bottom:698.095786px;}
.yc1{bottom:699.840350px;}
.y27{bottom:704.746200px;}
.y153{bottom:705.295200px;}
.ya0{bottom:705.295212px;}
.y109{bottom:705.295349px;}
.y135{bottom:705.415200px;}
.y73{bottom:705.428251px;}
.ybe{bottom:705.623274px;}
.y205{bottom:716.491625px;}
.y1ea{bottom:716.551917px;}
.y184{bottom:717.084440px;}
.y19f{bottom:717.557242px;}
.yc2{bottom:721.637133px;}
.ybd{bottom:722.475774px;}
.y26{bottom:722.741400px;}
.y7{bottom:726.298500px;}
.y9f{bottom:727.795212px;}
.y108{bottom:727.795349px;}
.y134{bottom:727.909200px;}
.y204{bottom:736.488116px;}
.y1e9{bottom:736.531917px;}
.y183{bottom:736.648190px;}
.y19e{bottom:737.018561px;}
.yc3{bottom:739.181750px;}
.y25{bottom:739.236600px;}
.ybc{bottom:739.913274px;}
.y9e{bottom:750.295212px;}
.y107{bottom:750.295349px;}
.y133{bottom:750.403200px;}
.y72{bottom:751.922251px;}
.y3{bottom:752.599495px;}
.y182{bottom:756.211940px;}
.yc4{bottom:756.318317px;}
.y19d{bottom:756.480018px;}
.y203{bottom:756.484607px;}
.y1e8{bottom:756.511917px;}
.ybb{bottom:757.350774px;}
.y9d{bottom:772.795166px;}
.y106{bottom:772.795349px;}
.y132{bottom:772.897200px;}
.yc5{bottom:773.862978px;}
.yba{bottom:774.585774px;}
.y181{bottom:775.775690px;}
.y19c{bottom:775.941474px;}
.y202{bottom:776.481234px;}
.y1e7{bottom:776.491917px;}
.y1ba{bottom:781.312683px;}
.yc6{bottom:791.407503px;}
.yb9{bottom:791.820774px;}
.y9c{bottom:795.295166px;}
.y105{bottom:795.295349px;}
.y180{bottom:795.339440px;}
.y131{bottom:795.391200px;}
.y19b{bottom:795.402747px;}
.y1e6{bottom:796.471917px;}
.y201{bottom:796.477632px;}
.y71{bottom:798.416251px;}
.yc7{bottom:808.544162px;}
.yb8{bottom:809.258274px;}
.y1d0{bottom:811.960938px;}
.y19a{bottom:814.864203px;}
.y17f{bottom:814.903190px;}
.y1e5{bottom:816.451917px;}
.y200{bottom:816.474306px;}
.y9b{bottom:817.795166px;}
.y104{bottom:817.795349px;}
.y130{bottom:817.885200px;}
.yc8{bottom:826.088412px;}
.yb7{bottom:826.695774px;}
.y199{bottom:834.325477px;}
.y17e{bottom:834.466940px;}
.y1e4{bottom:836.431917px;}
.y1ff{bottom:836.470797px;}
.y9a{bottom:840.295166px;}
.y103{bottom:840.295349px;}
.y12f{bottom:840.379200px;}
.yc9{bottom:843.633303px;}
.yb6{bottom:844.133274px;}
.y46{bottom:853.414651px;}
.y70{bottom:853.420051px;}
.y198{bottom:853.786933px;}
.y17d{bottom:854.030690px;}
.y1e3{bottom:856.411917px;}
.y1fe{bottom:856.467104px;}
.y1ca{bottom:857.323935px;}
.yca{bottom:860.769962px;}
.yb5{bottom:861.570774px;}
.y99{bottom:862.795166px;}
.y102{bottom:862.795349px;}
.y12e{bottom:862.873200px;}
.y1cd{bottom:863.215488px;}
.y197{bottom:873.248298px;}
.y1c6{bottom:873.264134px;}
.y17c{bottom:873.594440px;}
.y1cb{bottom:874.574084px;}
.y1d1{bottom:876.001635px;}
.y1e2{bottom:876.391917px;}
.y1fd{bottom:876.463595px;}
.ycb{bottom:878.314670px;}
.yb4{bottom:879.008274px;}
.y2{bottom:879.369000px;}
.y1d3{bottom:881.604135px;}
.y249{bottom:884.034000px;}
.y98{bottom:885.295166px;}
.y101{bottom:885.295349px;}
.y12d{bottom:885.367200px;}
.y1d2{bottom:889.434135px;}
.y196{bottom:892.709662px;}
.y17b{bottom:893.158190px;}
.y1c8{bottom:895.531484px;}
.ycc{bottom:895.859469px;}
.y1e1{bottom:896.371917px;}
.yb3{bottom:896.445774px;}
.y1d4{bottom:897.016635px;}
.y248{bottom:899.778000px;}
.y1c2{bottom:906.010184px;}
.y1cf{bottom:907.416738px;}
.y97{bottom:907.795166px;}
.y100{bottom:907.795349px;}
.y12c{bottom:907.861200px;}
.y1c5{bottom:909.148484px;}
.y1c9{bottom:911.904584px;}
.y17a{bottom:912.721940px;}
.ycd{bottom:912.995852px;}
.yb2{bottom:913.883274px;}
.y247{bottom:915.534000px;}
.y1e0{bottom:916.351917px;}
.y1fc{bottom:917.446628px;}
.y1c4{bottom:923.038334px;}
.y1ce{bottom:923.132988px;}
.y1c3{bottom:926.967884px;}
.y96{bottom:930.295166px;}
.yff{bottom:930.295349px;}
.y12b{bottom:930.355200px;}
.yb1{bottom:931.320774px;}
.y179{bottom:932.285690px;}
.y195{bottom:932.363990px;}
.y1d5{bottom:933.579135px;}
.y246{bottom:935.538000px;}
.y1df{bottom:936.331917px;}
.y1fb{bottom:936.343661px;}
.y1c0{bottom:948.580178px;}
.yb0{bottom:948.758274px;}
.yce{bottom:949.148105px;}
.y245{bottom:951.288000px;}
.y178{bottom:951.849440px;}
.y194{bottom:951.874061px;}
.y95{bottom:952.795166px;}
.yfe{bottom:952.795349px;}
.y12a{bottom:952.849200px;}
.y1fa{bottom:955.240602px;}
.y1de{bottom:956.311917px;}
.y45{bottom:962.899651px;}
.y1b9{bottom:964.045166px;}
.y43{bottom:964.384800px;}
.yaf{bottom:966.195774px;}
.ycf{bottom:966.284762px;}
.y1{bottom:966.726000px;}
.y244{bottom:967.081950px;}
.y193{bottom:971.384223px;}
.y177{bottom:971.413190px;}
.y94{bottom:975.295166px;}
.yfd{bottom:975.295349px;}
.y129{bottom:975.343200px;}
.y1dd{bottom:976.291917px;}
.y1f9{bottom:976.915805px;}
.y1c7{bottom:981.326239px;}
.y243{bottom:982.825950px;}
.yae{bottom:983.633274px;}
.yd0{bottom:984.237521px;}
.y1b8{bottom:986.545166px;}
.y192{bottom:990.894294px;}
.y176{bottom:990.976940px;}
.y1cc{bottom:993.299235px;}
.y44{bottom:994.606351px;}
.y1dc{bottom:996.271917px;}
.y93{bottom:997.795166px;}
.yfc{bottom:997.795349px;}
.y128{bottom:997.837200px;}
.y242{bottom:998.569950px;}
.y1c1{bottom:999.009278px;}
.yad{bottom:1001.070774px;}
.yd1{bottom:1001.373813px;}
.y175{bottom:1010.540690px;}
.y1f7{bottom:1015.535678px;}
.y1db{bottom:1016.251917px;}
.yac{bottom:1018.508274px;}
.y241{bottom:1018.573950px;}
.y92{bottom:1020.295166px;}
.yfb{bottom:1020.295349px;}
.y127{bottom:1020.331200px;}
.y174{bottom:1030.104440px;}
.y190{bottom:1030.290900px;}
.y240{bottom:1034.317950px;}
.yd3{bottom:1035.529208px;}
.yab{bottom:1035.945774px;}
.y1da{bottom:1036.231917px;}
.y20d{bottom:1036.558749px;}
.y1f6{bottom:1038.460665px;}
.y91{bottom:1042.795166px;}
.yfa{bottom:1042.795349px;}
.y126{bottom:1042.825200px;}
.y173{bottom:1049.668190px;}
.y23f{bottom:1050.061950px;}
.y1bf{bottom:1050.093130px;}
.y18f{bottom:1050.649482px;}
.yaa{bottom:1053.383274px;}
.yd4{bottom:1053.728610px;}
.y1f8{bottom:1056.166140px;}
.y1d9{bottom:1056.211917px;}
.y90{bottom:1065.295166px;}
.yf9{bottom:1065.295349px;}
.y125{bottom:1065.319200px;}
.y172{bottom:1069.231940px;}
.y191{bottom:1069.459998px;}
.y23e{bottom:1070.065950px;}
.ya9{bottom:1070.820774px;}
.yd2{bottom:1071.542025px;}
.y20e{bottom:1080.522738px;}
.y23d{bottom:1085.809950px;}
.y1bd{bottom:1087.328098px;}
.y8f{bottom:1087.795166px;}
.yf8{bottom:1087.795349px;}
.y124{bottom:1087.813200px;}
.y23c{bottom:1101.553950px;}
.y170{bottom:1105.808567px;}
.ya7{bottom:1107.333470px;}
.y1bc{bottom:1108.106097px;}
.yda{bottom:1109.145721px;}
.y8e{bottom:1110.295166px;}
.yf7{bottom:1110.295349px;}
.y123{bottom:1110.307200px;}
.y23b{bottom:1117.297950px;}
.y1bb{bottom:1126.106097px;}
.y16f{bottom:1126.586566px;}
.ya6{bottom:1128.111468px;}
.yd9{bottom:1131.645721px;}
.y8d{bottom:1132.795166px;}
.yf6{bottom:1132.795349px;}
.y122{bottom:1132.801200px;}
.y23a{bottom:1133.041950px;}
.y1be{bottom:1150.982096px;}
.y171{bottom:1151.462265px;}
.ya8{bottom:1152.525468px;}
.yd8{bottom:1154.145721px;}
.y8c{bottom:1155.295166px;}
.y121{bottom:1155.295200px;}
.yf5{bottom:1155.295349px;}
.y239{bottom:1157.295900px;}
.h15{height:31.707000px;}
.h7{height:32.130000px;}
.h1a{height:33.030000px;}
.h24{height:34.146000px;}
.h18{height:36.018000px;}
.h19{height:36.585000px;}
.h1d{height:38.304000px;}
.h17{height:39.024000px;}
.h16{height:39.636000px;}
.h28{height:40.128000px;}
.h27{height:40.516800px;}
.hf{height:41.344800px;}
.h23{height:41.824200px;}
.hb{height:44.049600px;}
.h6{height:45.900000px;}
.h10{height:46.147200px;}
.h3{height:48.195000px;}
.h11{height:48.444000px;}
.he{height:48.780000px;}
.ha{height:50.049600px;}
.h1b{height:50.274000px;}
.h13{height:53.658000px;}
.h2{height:55.080000px;}
.h22{height:55.944000px;}
.h1f{height:57.542399px;}
.h14{height:58.536000px;}
.h5{height:78.030000px;}
.h21{height:78.499800px;}
.h20{height:83.740199px;}
.hc{height:94.926000px;}
.h4{height:119.055004px;}
.h12{height:134.064000px;}
.hd{height:215.460000px;}
.h9{height:812.610300px;}
.h0{height:1262.833500px;}
.h1c{height:1262.834967px;}
.h26{height:1262.834972px;}
.h25{height:1262.834973px;}
.h1e{height:1262.834993px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:257.253600px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w6{width:892.913991px;}
.w5{width:892.913998px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:30.955950px;}
.x6{left:38.691900px;}
.x16{left:42.519599px;}
.x18{left:46.721557px;}
.x4f{left:49.832400px;}
.x46{left:55.575150px;}
.x4d{left:58.036800px;}
.x35{left:60.189900px;}
.x5{left:63.035400px;}
.x9{left:70.795353px;}
.x28{left:74.834550px;}
.xa{left:76.535403px;}
.x53{left:81.358657px;}
.x33{left:89.023647px;}
.xb{left:93.545403px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x51{left:122.976900px;}
.x11{left:183.057747px;}
.x86{left:184.202550px;}
.x49{left:187.753203px;}
.x88{left:191.753250px;}
.x12{left:195.498756px;}
.x4{left:203.484001px;}
.x8c{left:212.284500px;}
.x8a{left:218.415750px;}
.x89{left:221.678250px;}
.x87{left:223.230750px;}
.x8b{left:236.393250px;}
.x4b{left:278.911654px;}
.x47{left:287.079760px;}
.x5d{left:306.372597px;}
.x5e{left:307.455459px;}
.x5c{left:316.648041px;}
.x48{left:320.268908px;}
.xd{left:322.423053px;}
.xc{left:323.518653px;}
.x50{left:326.489400px;}
.x55{left:328.208107px;}
.x57{left:330.348907px;}
.x56{left:333.346047px;}
.x54{left:334.630509px;}
.x5b{left:339.768311px;}
.x5a{left:341.052750px;}
.x5f{left:344.477852px;}
.x59{left:345.762291px;}
.x58{left:350.043892px;}
.x4a{left:353.289300px;}
.x19{left:358.988846px;}
.x1a{left:364.430397px;}
.x1b{left:367.453355px;}
.x4c{left:386.759699px;}
.x1c{left:389.219421px;}
.x1d{left:392.847153px;}
.x26{left:397.684205px;}
.x27{left:399.498000px;}
.x1e{left:401.916457px;}
.x1f{left:403.730255px;}
.x25{left:406.148712px;}
.x2b{left:408.138885px;}
.x4e{left:410.249690px;}
.x20{left:415.822494px;}
.x29{left:416.881943px;}
.x21{left:418.845612px;}
.x94{left:419.874900px;}
.x91{left:422.946150px;}
.x92{left:429.763650px;}
.x22{left:430.937850px;}
.x6c{left:438.670944px;}
.x6d{left:439.955383px;}
.x93{left:442.026150px;}
.x6e{left:443.808471px;}
.x23{left:444.843888px;}
.x6b{left:447.661972px;}
.x6a{left:449.374648px;}
.x17{left:450.431081px;}
.x24{left:452.703735px;}
.x3{left:454.959000px;}
.x63{left:460.506593px;}
.x61{left:463.503434px;}
.x69{left:465.216018px;}
.x60{left:469.497619px;}
.x62{left:472.922836px;}
.x67{left:479.345078px;}
.x65{left:481.914000px;}
.x68{left:484.910980px;}
.x66{left:490.477203px;}
.x15{left:509.789841px;}
.x13{left:510.817657px;}
.x64{left:512.312531px;}
.x14{left:522.268479px;}
.x36{left:523.494450px;}
.x77{left:582.529221px;}
.x10{left:590.287953px;}
.xe{left:591.302253px;}
.x7b{left:592.376679px;}
.x73{left:594.517501px;}
.x7c{left:598.799103px;}
.x72{left:600.939742px;}
.x70{left:602.652282px;}
.xf{left:603.825753px;}
.x78{left:606.933883px;}
.x6f{left:608.218368px;}
.x76{left:609.930771px;}
.x71{left:611.215347px;}
.x75{left:613.356171px;}
.x7a{left:616.353150px;}
.x74{left:622.775391px;}
.x79{left:628.769532px;}
.x2c{left:637.444336px;}
.x2d{left:644.558258px;}
.x90{left:655.667700px;}
.x8e{left:659.470200px;}
.x2e{left:663.312881px;}
.x82{left:669.015472px;}
.x83{left:670.300186px;}
.x52{left:671.533521px;}
.x8d{left:673.566450px;}
.x7e{left:675.437988px;}
.x81{left:676.722428px;}
.x80{left:678.863250px;}
.x7f{left:680.147553px;}
.x7d{left:681.432129px;}
.x84{left:686.368332px;}
.x85{left:689.793594px;}
.x45{left:699.524414px;}
.x2f{left:702.762772px;}
.x8f{left:704.110200px;}
.x30{left:728.631134px;}
.x44{left:747.288757px;}
.x8{left:755.838450px;}
.x31{left:773.901306px;}
.x43{left:776.917328px;}
.x42{left:777.921753px;}
.x41{left:779.930420px;}
.x40{left:781.437012px;}
.x3f{left:786.961029px;}
.x38{left:787.965454px;}
.x3e{left:789.974213px;}
.x3b{left:799.013580px;}
.x39{left:801.022156px;}
.x3a{left:803.533173px;}
.x37{left:804.537415px;}
.x3d{left:808.052673px;}
.x2a{left:811.848267px;}
.x3c{left:813.074524px;}
.x32{left:820.464935px;}
.x34{left:842.849670px;}
@media print{
.v8{vertical-align:-41.915201pt;}
.v15{vertical-align:-39.586131pt;}
.v7{vertical-align:-27.943465pt;}
.va{vertical-align:-23.286394pt;}
.v9{vertical-align:-16.300802pt;}
.v16{vertical-align:-15.000000pt;}
.v14{vertical-align:-13.971733pt;}
.v5{vertical-align:-9.314134pt;}
.v12{vertical-align:-6.986132pt;}
.v11{vertical-align:-4.657600pt;}
.v3{vertical-align:-3.475174pt;}
.v13{vertical-align:-2.328533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.ve{vertical-align:6.985600pt;}
.v4{vertical-align:9.314133pt;}
.v2{vertical-align:10.666667pt;}
.vf{vertical-align:11.642665pt;}
.v6{vertical-align:18.628799pt;}
.vb{vertical-align:25.614933pt;}
.vd{vertical-align:27.943467pt;}
.v10{vertical-align:37.257600pt;}
.vc{vertical-align:41.915733pt;}
.ls27{letter-spacing:-6.000000pt;}
.ls45{letter-spacing:-3.200000pt;}
.ls44{letter-spacing:-2.800000pt;}
.ls42{letter-spacing:-2.400000pt;}
.ls26{letter-spacing:-1.994667pt;}
.ls43{letter-spacing:-1.800000pt;}
.ls25{letter-spacing:-1.722667pt;}
.ls46{letter-spacing:-1.600000pt;}
.ls2b{letter-spacing:-0.746667pt;}
.ls31{letter-spacing:-0.539733pt;}
.ls2e{letter-spacing:-0.480000pt;}
.ls54{letter-spacing:-0.400000pt;}
.ls49{letter-spacing:-0.392533pt;}
.ls32{letter-spacing:-0.294400pt;}
.ls2a{letter-spacing:-0.293333pt;}
.ls23{letter-spacing:-0.245333pt;}
.ls57{letter-spacing:-0.213333pt;}
.ls55{letter-spacing:-0.200000pt;}
.ls29{letter-spacing:-0.196267pt;}
.ls47{letter-spacing:-0.186667pt;}
.ls58{letter-spacing:-0.170667pt;}
.ls39{letter-spacing:-0.147200pt;}
.ls53{letter-spacing:-0.120000pt;}
.ls24{letter-spacing:-0.098133pt;}
.ls56{letter-spacing:-0.085333pt;}
.ls2d{letter-spacing:-0.049067pt;}
.ls3a{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.042667pt;}
.ls2c{letter-spacing:0.049067pt;}
.ls4b{letter-spacing:0.080000pt;}
.ls37{letter-spacing:0.085333pt;}
.ls8{letter-spacing:0.098133pt;}
.ls51{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.147200pt;}
.ls34{letter-spacing:0.171733pt;}
.lsd{letter-spacing:0.196267pt;}
.ls13{letter-spacing:0.245333pt;}
.ls36{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.269867pt;}
.ls4{letter-spacing:0.294400pt;}
.ls35{letter-spacing:0.298667pt;}
.ls4c{letter-spacing:0.318933pt;}
.ls4f{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.343467pt;}
.ls14{letter-spacing:0.392533pt;}
.ls20{letter-spacing:0.417067pt;}
.ls16{letter-spacing:0.441600pt;}
.ls3b{letter-spacing:0.466133pt;}
.ls12{letter-spacing:0.490667pt;}
.ls21{letter-spacing:0.515200pt;}
.ls4a{letter-spacing:0.520000pt;}
.ls15{letter-spacing:0.533333pt;}
.ls1b{letter-spacing:0.539733pt;}
.ls4d{letter-spacing:0.564267pt;}
.ls1c{letter-spacing:0.588800pt;}
.ls3{letter-spacing:0.637867pt;}
.ls11{letter-spacing:0.686933pt;}
.ls2{letter-spacing:0.736000pt;}
.ls33{letter-spacing:0.760533pt;}
.ls1e{letter-spacing:0.785067pt;}
.ls52{letter-spacing:0.810667pt;}
.ls10{letter-spacing:0.834133pt;}
.ls1f{letter-spacing:0.883200pt;}
.ls4e{letter-spacing:0.896000pt;}
.ls22{letter-spacing:0.932267pt;}
.ls3c{letter-spacing:0.956800pt;}
.ls1a{letter-spacing:0.981333pt;}
.ls5{letter-spacing:1.030400pt;}
.ls28{letter-spacing:1.066667pt;}
.ls17{letter-spacing:1.079467pt;}
.ls19{letter-spacing:1.128533pt;}
.lsf{letter-spacing:1.177600pt;}
.ls2f{letter-spacing:1.275733pt;}
.lsa{letter-spacing:1.324800pt;}
.ls48{letter-spacing:1.373867pt;}
.lsb{letter-spacing:1.422933pt;}
.ls1d{letter-spacing:1.496533pt;}
.ls18{letter-spacing:1.668267pt;}
.lsc{letter-spacing:16.274667pt;}
.ls6{letter-spacing:17.273067pt;}
.ls9{letter-spacing:17.836267pt;}
.ls1{letter-spacing:17.881067pt;}
.ls38{letter-spacing:88.073600pt;}
.ls3d{letter-spacing:89.786133pt;}
.ls3f{letter-spacing:96.668811pt;}
.ls40{letter-spacing:98.125855pt;}
.ls41{letter-spacing:98.125864pt;}
.ls3e{letter-spacing:98.126405pt;}
.ws5{word-spacing:-42.000000pt;}
.ws3{word-spacing:-18.133333pt;}
.ws2{word-spacing:-16.410667pt;}
.ws4{word-spacing:-16.138667pt;}
.ws42{word-spacing:-12.800000pt;}
.ws43{word-spacing:-11.874133pt;}
.ws69{word-spacing:-11.200000pt;}
.ws1{word-spacing:-9.813333pt;}
.ws85{word-spacing:-9.600000pt;}
.ws44{word-spacing:-8.000000pt;}
.wsf0{word-spacing:-7.800000pt;}
.wsdd{word-spacing:-3.189333pt;}
.ws7f{word-spacing:-2.845867pt;}
.ws6c{word-spacing:-2.796800pt;}
.ws7d{word-spacing:-2.649600pt;}
.wsea{word-spacing:-2.600533pt;}
.ws80{word-spacing:-2.502400pt;}
.ws47{word-spacing:-2.404267pt;}
.ws6e{word-spacing:-2.355200pt;}
.wsa7{word-spacing:-2.109867pt;}
.wsdc{word-spacing:-2.011733pt;}
.ws13{word-spacing:-1.962667pt;}
.ws8e{word-spacing:-1.913600pt;}
.wsff{word-spacing:-1.877333pt;}
.ws76{word-spacing:-1.864533pt;}
.ws46{word-spacing:-1.766400pt;}
.ws9d{word-spacing:-1.706667pt;}
.wsf7{word-spacing:-1.619200pt;}
.ws9b{word-spacing:-1.578667pt;}
.wsdb{word-spacing:-1.570133pt;}
.wsd2{word-spacing:-1.521067pt;}
.ws4f{word-spacing:-1.472000pt;}
.ws89{word-spacing:-1.422933pt;}
.ws99{word-spacing:-1.408000pt;}
.wsdf{word-spacing:-1.373867pt;}
.ws50{word-spacing:-1.324800pt;}
.wsb9{word-spacing:-1.275733pt;}
.ws2a{word-spacing:-1.177600pt;}
.wsd1{word-spacing:-1.128533pt;}
.ws9f{word-spacing:-1.066667pt;}
.ws2e{word-spacing:-0.981333pt;}
.ws3a{word-spacing:-0.932267pt;}
.ws8c{word-spacing:-0.883200pt;}
.ws6a{word-spacing:-0.834133pt;}
.wsf6{word-spacing:-0.800000pt;}
.wsb6{word-spacing:-0.785067pt;}
.ws37{word-spacing:-0.736000pt;}
.wse9{word-spacing:-0.686933pt;}
.ws66{word-spacing:-0.637867pt;}
.wsf{word-spacing:-0.539733pt;}
.ws78{word-spacing:-0.490667pt;}
.wsf5{word-spacing:-0.400000pt;}
.wsde{word-spacing:-0.392533pt;}
.ws96{word-spacing:-0.384000pt;}
.ws71{word-spacing:-0.343467pt;}
.ws77{word-spacing:-0.294400pt;}
.wsb7{word-spacing:-0.196267pt;}
.ws9c{word-spacing:-0.170667pt;}
.ws36{word-spacing:-0.147200pt;}
.ws101{word-spacing:-0.042667pt;}
.ws45{word-spacing:-0.040000pt;}
.ws0{word-spacing:0.000000pt;}
.ws64{word-spacing:0.049067pt;}
.wsef{word-spacing:0.080000pt;}
.ws9a{word-spacing:0.085333pt;}
.ws38{word-spacing:0.098133pt;}
.wsb{word-spacing:0.196267pt;}
.wsfe{word-spacing:0.213333pt;}
.wsa2{word-spacing:0.245333pt;}
.ws33{word-spacing:0.294400pt;}
.ws70{word-spacing:0.441600pt;}
.ws4e{word-spacing:0.539733pt;}
.wsad{word-spacing:0.637867pt;}
.ws51{word-spacing:0.686933pt;}
.ws5b{word-spacing:0.736000pt;}
.wsfd{word-spacing:0.768000pt;}
.ws18{word-spacing:0.785067pt;}
.ws98{word-spacing:0.853333pt;}
.ws6f{word-spacing:0.883200pt;}
.ws8d{word-spacing:0.932267pt;}
.ws6b{word-spacing:0.981333pt;}
.wse3{word-spacing:1.079467pt;}
.ws32{word-spacing:1.177600pt;}
.ws97{word-spacing:1.194667pt;}
.wscf{word-spacing:1.226667pt;}
.ws95{word-spacing:1.237333pt;}
.wsd9{word-spacing:1.275733pt;}
.ws86{word-spacing:1.324800pt;}
.wsa4{word-spacing:1.373867pt;}
.ws94{word-spacing:1.408000pt;}
.ws8a{word-spacing:1.422933pt;}
.ws9e{word-spacing:1.450667pt;}
.wsce{word-spacing:1.472000pt;}
.wsf1{word-spacing:1.480000pt;}
.ws52{word-spacing:1.521067pt;}
.wse7{word-spacing:1.600000pt;}
.wse0{word-spacing:1.668267pt;}
.ws90{word-spacing:1.717333pt;}
.ws4d{word-spacing:1.766400pt;}
.wse5{word-spacing:1.800000pt;}
.ws5e{word-spacing:1.815467pt;}
.ws75{word-spacing:1.864533pt;}
.wsf3{word-spacing:1.880000pt;}
.ws87{word-spacing:1.913600pt;}
.wsa{word-spacing:1.962667pt;}
.wsa1{word-spacing:2.011733pt;}
.wsfb{word-spacing:2.048000pt;}
.ws73{word-spacing:2.158933pt;}
.ws14{word-spacing:2.208000pt;}
.ws1d{word-spacing:2.306133pt;}
.wsf4{word-spacing:2.320000pt;}
.ws27{word-spacing:2.355200pt;}
.ws100{word-spacing:2.389333pt;}
.wse4{word-spacing:2.400000pt;}
.ws4b{word-spacing:2.404267pt;}
.ws79{word-spacing:2.453333pt;}
.ws59{word-spacing:2.502400pt;}
.ws58{word-spacing:2.551467pt;}
.wsf2{word-spacing:2.600000pt;}
.ws41{word-spacing:2.600533pt;}
.ws84{word-spacing:2.649600pt;}
.ws7e{word-spacing:2.698667pt;}
.ws8{word-spacing:2.747733pt;}
.ws72{word-spacing:2.796800pt;}
.wse6{word-spacing:2.800000pt;}
.ws25{word-spacing:2.845867pt;}
.ws4c{word-spacing:2.894933pt;}
.ws60{word-spacing:2.944000pt;}
.wsd7{word-spacing:2.993067pt;}
.ws63{word-spacing:3.042133pt;}
.ws93{word-spacing:3.091200pt;}
.ws55{word-spacing:3.140267pt;}
.wsaa{word-spacing:3.238400pt;}
.ws29{word-spacing:3.287467pt;}
.ws65{word-spacing:3.336533pt;}
.ws12{word-spacing:3.385600pt;}
.ws102{word-spacing:3.413333pt;}
.wse{word-spacing:3.434667pt;}
.ws91{word-spacing:3.532800pt;}
.ws62{word-spacing:3.581867pt;}
.ws2b{word-spacing:3.630933pt;}
.ws5f{word-spacing:3.680000pt;}
.ws57{word-spacing:3.729067pt;}
.ws1c{word-spacing:3.778133pt;}
.ws82{word-spacing:3.876267pt;}
.ws23{word-spacing:3.925333pt;}
.ws28{word-spacing:3.974400pt;}
.ws6d{word-spacing:4.023467pt;}
.ws31{word-spacing:4.072533pt;}
.ws81{word-spacing:4.121600pt;}
.ws39{word-spacing:4.170667pt;}
.ws8f{word-spacing:4.219733pt;}
.wsab{word-spacing:4.268800pt;}
.ws3d{word-spacing:4.317867pt;}
.wsed{word-spacing:4.366933pt;}
.wsb2{word-spacing:4.416000pt;}
.ws40{word-spacing:4.514133pt;}
.wsaf{word-spacing:4.612267pt;}
.wsb0{word-spacing:4.661333pt;}
.ws5c{word-spacing:4.710400pt;}
.ws3e{word-spacing:4.759467pt;}
.ws53{word-spacing:4.808533pt;}
.ws54{word-spacing:4.857600pt;}
.ws21{word-spacing:4.906667pt;}
.ws3c{word-spacing:4.955733pt;}
.ws92{word-spacing:5.004800pt;}
.ws4a{word-spacing:5.053867pt;}
.ws1a{word-spacing:5.152000pt;}
.ws5d{word-spacing:5.201067pt;}
.wsfc{word-spacing:5.290667pt;}
.ws1e{word-spacing:5.348267pt;}
.wsa3{word-spacing:5.397333pt;}
.wsb8{word-spacing:5.495467pt;}
.wsd{word-spacing:5.544533pt;}
.wsb5{word-spacing:5.642667pt;}
.ws20{word-spacing:5.691733pt;}
.ws2d{word-spacing:5.838933pt;}
.ws88{word-spacing:5.888000pt;}
.wsc{word-spacing:5.937067pt;}
.wsae{word-spacing:6.035200pt;}
.wsb1{word-spacing:6.182400pt;}
.ws7{word-spacing:6.231467pt;}
.wsf8{word-spacing:6.329600pt;}
.ws74{word-spacing:6.378667pt;}
.wsa8{word-spacing:6.476800pt;}
.ws19{word-spacing:6.525867pt;}
.ws1b{word-spacing:6.574933pt;}
.ws56{word-spacing:6.722133pt;}
.wsa0{word-spacing:6.771200pt;}
.ws5a{word-spacing:6.820267pt;}
.ws22{word-spacing:6.869333pt;}
.ws17{word-spacing:7.016533pt;}
.wsd8{word-spacing:7.065600pt;}
.ws24{word-spacing:7.163733pt;}
.wsd5{word-spacing:7.212800pt;}
.ws6{word-spacing:7.261867pt;}
.wse8{word-spacing:7.310933pt;}
.wsd6{word-spacing:7.409067pt;}
.ws26{word-spacing:7.458133pt;}
.wscd{word-spacing:7.556267pt;}
.ws8b{word-spacing:7.605333pt;}
.ws3b{word-spacing:7.654400pt;}
.ws83{word-spacing:7.752533pt;}
.wsa6{word-spacing:7.850667pt;}
.ws7c{word-spacing:7.948800pt;}
.ws61{word-spacing:7.997867pt;}
.wsf9{word-spacing:8.145067pt;}
.ws7b{word-spacing:8.292266pt;}
.ws2f{word-spacing:8.341333pt;}
.ws1f{word-spacing:8.439467pt;}
.ws16{word-spacing:8.488533pt;}
.ws34{word-spacing:8.537600pt;}
.wsee{word-spacing:8.586667pt;}
.ws30{word-spacing:8.782933pt;}
.wsd0{word-spacing:8.832000pt;}
.wsb4{word-spacing:8.930133pt;}
.wsd3{word-spacing:9.077333pt;}
.ws3f{word-spacing:9.175467pt;}
.wsda{word-spacing:9.420800pt;}
.ws67{word-spacing:9.568000pt;}
.ws35{word-spacing:9.666133pt;}
.ws48{word-spacing:9.715200pt;}
.wsd4{word-spacing:9.764266pt;}
.wse1{word-spacing:9.813333pt;}
.ws9{word-spacing:10.107733pt;}
.wsa9{word-spacing:10.156800pt;}
.ws49{word-spacing:10.304000pt;}
.ws103{word-spacing:10.325333pt;}
.wsac{word-spacing:10.500267pt;}
.wsb3{word-spacing:10.647466pt;}
.wse2{word-spacing:10.745600pt;}
.wseb{word-spacing:10.941867pt;}
.wsfa{word-spacing:11.050667pt;}
.wsa5{word-spacing:11.579733pt;}
.ws15{word-spacing:11.923200pt;}
.ws7a{word-spacing:12.904533pt;}
.ws10{word-spacing:13.248000pt;}
.ws2c{word-spacing:14.376533pt;}
.ws11{word-spacing:14.425600pt;}
.wsec{word-spacing:14.818133pt;}
.wsc9{word-spacing:37.781333pt;}
.wsc7{word-spacing:75.045859pt;}
.wsc2{word-spacing:75.645857pt;}
.wsc0{word-spacing:75.645863pt;}
.wsc1{word-spacing:75.645880pt;}
.wsc3{word-spacing:75.645903pt;}
.wsbd{word-spacing:75.988787pt;}
.wsc8{word-spacing:77.299684pt;}
.wsbf{word-spacing:77.445819pt;}
.wsbc{word-spacing:77.445859pt;}
.wsba{word-spacing:77.445867pt;}
.wsbb{word-spacing:77.445872pt;}
.wsbe{word-spacing:77.445900pt;}
.wscc{word-spacing:81.000000pt;}
.wsc6{word-spacing:88.185595pt;}
.wscb{word-spacing:89.280000pt;}
.wsc4{word-spacing:192.195176pt;}
.wsca{word-spacing:323.560000pt;}
.ws68{word-spacing:629.957461pt;}
.wsc5{word-spacing:667.218170pt;}
._13{margin-left:-969.685333pt;}
._17{margin-left:-586.059947pt;}
._11{margin-left:-536.424911pt;}
._16{margin-left:-366.000000pt;}
._0{margin-left:-47.168000pt;}
._c{margin-left:-20.706133pt;}
._2{margin-left:-14.700373pt;}
._14{margin-left:-10.451200pt;}
._d{margin-left:-9.096875pt;}
._e{margin-left:-7.497280pt;}
._3{margin-left:-5.495467pt;}
._18{margin-left:-4.573013pt;}
._b{margin-left:-3.665280pt;}
._4{margin-left:-2.100053pt;}
._1{margin-left:-1.138347pt;}
._5{width:1.187413pt;}
._a{width:2.484053pt;}
._6{width:3.648000pt;}
._8{width:5.184000pt;}
._9{width:6.792000pt;}
._f{width:9.568021pt;}
._7{width:23.256000pt;}
._15{width:286.960000pt;}
._10{width:362.815477pt;}
._12{width:947.968000pt;}
.fs7{font-size:10.666667pt;}
.fsa{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fsc{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fse{font-size:49.066666pt;}
.fs6{font-size:49.066667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:149.333333pt;}
.fs8{font-size:240.000000pt;}
.y0{bottom:0.000000pt;}
.y1b7{bottom:0.000006pt;}
.y1d7{bottom:0.000024pt;}
.y24a{bottom:0.000025pt;}
.yd6{bottom:0.000029pt;}
.y21d{bottom:30.236241pt;}
.yd7{bottom:30.236267pt;}
.y1d6{bottom:30.236271pt;}
.y1b6{bottom:30.236273pt;}
.yd5{bottom:30.236296pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y24{bottom:65.595733pt;}
.y223{bottom:66.673200pt;}
.y5b{bottom:66.975468pt;}
.y6f{bottom:66.993068pt;}
.y222{bottom:78.673200pt;}
.y4{bottom:86.333337pt;}
.y8b{bottom:86.929067pt;}
.y1b5{bottom:86.929073pt;}
.y21c{bottom:86.929173pt;}
.y16a{bottom:86.939733pt;}
.y5a{bottom:86.970135pt;}
.y6e{bottom:86.987735pt;}
.y221{bottom:90.673200pt;}
.y151{bottom:102.047200pt;}
.y220{bottom:102.673200pt;}
.y8a{bottom:106.929067pt;}
.y1b4{bottom:106.929073pt;}
.y21b{bottom:106.929173pt;}
.y169{bottom:106.934400pt;}
.y59{bottom:106.964801pt;}
.y6d{bottom:106.982401pt;}
.y21f{bottom:114.673200pt;}
.y150{bottom:116.716533pt;}
.yed{bottom:120.069325pt;}
.y23{bottom:123.790666pt;}
.y21e{bottom:126.673200pt;}
.y89{bottom:126.929067pt;}
.y1b3{bottom:126.929073pt;}
.y21a{bottom:126.929173pt;}
.y58{bottom:126.959468pt;}
.y6c{bottom:126.977068pt;}
.y14f{bottom:134.380533pt;}
.yec{bottom:143.109325pt;}
.y88{bottom:146.929067pt;}
.y1b2{bottom:146.929073pt;}
.y219{bottom:146.929173pt;}
.y57{bottom:146.954135pt;}
.y6b{bottom:146.971735pt;}
.yee{bottom:148.365865pt;}
.y14e{bottom:149.047200pt;}
.yeb{bottom:155.109325pt;}
.y14d{bottom:166.716533pt;}
.y87{bottom:166.929067pt;}
.y1b1{bottom:166.929073pt;}
.y218{bottom:166.929173pt;}
.y120{bottom:166.929199pt;}
.y168{bottom:166.934400pt;}
.y56{bottom:166.948801pt;}
.y6a{bottom:166.966401pt;}
.y42{bottom:167.237067pt;}
.y1a{bottom:175.052000pt;}
.yef{bottom:177.531209pt;}
.yea{bottom:178.149325pt;}
.y14c{bottom:181.383200pt;}
.y41{bottom:183.232800pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y86{bottom:186.929057pt;}
.y1b0{bottom:186.929063pt;}
.y167{bottom:186.929067pt;}
.y217{bottom:186.929173pt;}
.y11f{bottom:186.929199pt;}
.y55{bottom:186.943468pt;}
.y69{bottom:186.961068pt;}
.y14b{bottom:196.049867pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y40{bottom:199.228533pt;}
.ye9{bottom:201.189325pt;}
.yf0{bottom:206.696676pt;}
.y85{bottom:206.929057pt;}
.y1af{bottom:206.929063pt;}
.y216{bottom:206.929173pt;}
.y11e{bottom:206.929199pt;}
.y166{bottom:206.934400pt;}
.y68{bottom:206.955735pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y14a{bottom:210.716533pt;}
.ye8{bottom:213.189325pt;}
.y3f{bottom:215.224267pt;}
.y149{bottom:225.383200pt;}
.y84{bottom:226.929057pt;}
.y1ae{bottom:226.929063pt;}
.y165{bottom:226.929067pt;}
.y215{bottom:226.929173pt;}
.y11d{bottom:226.929199pt;}
.y54{bottom:226.945068pt;}
.y67{bottom:226.950401pt;}
.y3e{bottom:229.886667pt;}
.ye7{bottom:230.229325pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.yf1{bottom:235.862000pt;}
.y16d{bottom:236.929057pt;}
.ye6{bottom:242.229325pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y148{bottom:243.047200pt;}
.y83{bottom:246.929057pt;}
.y1ad{bottom:246.929063pt;}
.y164{bottom:246.929067pt;}
.y214{bottom:246.929173pt;}
.y11c{bottom:246.929199pt;}
.y53{bottom:246.939735pt;}
.y66{bottom:246.945068pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y3d{bottom:254.053067pt;}
.y16c{bottom:256.929057pt;}
.y147{bottom:257.713867pt;}
.yf2{bottom:265.027323pt;}
.ye5{bottom:265.269325pt;}
.y82{bottom:266.929057pt;}
.y1ac{bottom:266.929063pt;}
.y213{bottom:266.929173pt;}
.y11b{bottom:266.929199pt;}
.y52{bottom:266.934401pt;}
.y65{bottom:266.939735pt;}
.y163{bottom:266.982400pt;}
.y3c{bottom:270.048800pt;}
.y146{bottom:272.380533pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y16b{bottom:276.929057pt;}
.y3b{bottom:286.044533pt;}
.y81{bottom:286.929057pt;}
.y1ab{bottom:286.929063pt;}
.y51{bottom:286.929068pt;}
.y212{bottom:286.929173pt;}
.y11a{bottom:286.929199pt;}
.y64{bottom:286.934401pt;}
.y162{bottom:286.977067pt;}
.y1b{bottom:287.038667pt;}
.y145{bottom:287.047200pt;}
.y12{bottom:287.052000pt;}
.yf3{bottom:294.192667pt;}
.ye4{bottom:294.309325pt;}
.y144{bottom:301.713867pt;}
.y3a{bottom:302.040267pt;}
.y80{bottom:306.929057pt;}
.y1aa{bottom:306.929063pt;}
.y50{bottom:306.929068pt;}
.y211{bottom:306.929173pt;}
.y119{bottom:306.929199pt;}
.y161{bottom:306.971733pt;}
.y11{bottom:309.452000pt;}
.y143{bottom:316.380533pt;}
.y39{bottom:318.036000pt;}
.ye3{bottom:323.349325pt;}
.yf4{bottom:323.357992pt;}
.y7f{bottom:326.929057pt;}
.y1a9{bottom:326.929063pt;}
.y4f{bottom:326.929068pt;}
.y210{bottom:326.929173pt;}
.y118{bottom:326.929199pt;}
.y160{bottom:326.966400pt;}
.y238{bottom:330.374667pt;}
.y38{bottom:334.031733pt;}
.y142{bottom:334.047200pt;}
.y10{bottom:343.809333pt;}
.y4e{bottom:346.929068pt;}
.y7e{bottom:346.929077pt;}
.y1a8{bottom:346.929083pt;}
.y117{bottom:346.929199pt;}
.y63{bottom:346.934401pt;}
.y15f{bottom:346.961067pt;}
.y237{bottom:347.484667pt;}
.y141{bottom:348.713867pt;}
.y37{bottom:350.027467pt;}
.y236{bottom:360.814667pt;}
.yf{bottom:362.706666pt;}
.y140{bottom:363.380533pt;}
.ye1{bottom:364.032669pt;}
.y36{bottom:364.689867pt;}
.y62{bottom:366.929068pt;}
.y7d{bottom:366.929077pt;}
.y1a7{bottom:366.929083pt;}
.y116{bottom:366.929199pt;}
.y15e{bottom:366.955733pt;}
.y4d{bottom:366.961068pt;}
.y229{bottom:368.519600pt;}
.y22f{bottom:369.779467pt;}
.y20f{bottom:370.992121pt;}
.y235{bottom:374.144667pt;}
.ye0{bottom:376.832672pt;}
.y13f{bottom:378.047200pt;}
.y228{bottom:385.629600pt;}
.y22e{bottom:386.889467pt;}
.y61{bottom:386.929068pt;}
.y7c{bottom:386.929077pt;}
.y1a6{bottom:386.929083pt;}
.y115{bottom:386.929199pt;}
.y15d{bottom:386.950400pt;}
.y4c{bottom:386.955735pt;}
.y234{bottom:387.474667pt;}
.y35{bottom:388.843333pt;}
.ydf{bottom:395.302004pt;}
.y227{bottom:398.959600pt;}
.y22d{bottom:400.219467pt;}
.y13e{bottom:400.272933pt;}
.y233{bottom:400.804667pt;}
.y34{bottom:404.839067pt;}
.y60{bottom:406.929068pt;}
.y7b{bottom:406.929077pt;}
.y114{bottom:406.929199pt;}
.y15c{bottom:406.945067pt;}
.y4b{bottom:406.950401pt;}
.y226{bottom:412.289600pt;}
.y22c{bottom:413.549467pt;}
.y232{bottom:414.134667pt;}
.ye2{bottom:417.413871pt;}
.y33{bottom:420.834800pt;}
.y152{bottom:421.344400pt;}
.y225{bottom:425.619600pt;}
.y22b{bottom:426.879467pt;}
.y5f{bottom:426.929068pt;}
.y7a{bottom:426.929077pt;}
.y113{bottom:426.929199pt;}
.y15b{bottom:426.939733pt;}
.y4a{bottom:426.945068pt;}
.y231{bottom:427.464667pt;}
.ye{bottom:430.990669pt;}
.y1d8{bottom:432.250000pt;}
.y32{bottom:436.830533pt;}
.y16e{bottom:441.076131pt;}
.y224{bottom:442.729600pt;}
.y22a{bottom:443.989467pt;}
.y230{bottom:444.574667pt;}
.y79{bottom:446.929077pt;}
.y112{bottom:446.929199pt;}
.y15a{bottom:446.934400pt;}
.y49{bottom:446.939735pt;}
.y5e{bottom:446.984535pt;}
.yd{bottom:446.990669pt;}
.y31{bottom:451.492933pt;}
.y20c{bottom:461.553035pt;}
.y1f5{bottom:461.765037pt;}
.yc{bottom:462.990669pt;}
.y159{bottom:466.929067pt;}
.y78{bottom:466.929077pt;}
.y111{bottom:466.929199pt;}
.y48{bottom:466.934401pt;}
.y5d{bottom:466.979201pt;}
.y13d{bottom:467.078400pt;}
.y30{bottom:475.629467pt;}
.yb{bottom:478.990666pt;}
.y18e{bottom:482.058391pt;}
.y1a5{bottom:482.589890pt;}
.y1f4{bottom:483.225037pt;}
.y47{bottom:486.929068pt;}
.y77{bottom:486.929077pt;}
.y110{bottom:486.929199pt;}
.y5c{bottom:486.973868pt;}
.y13c{bottom:487.073067pt;}
.y2f{bottom:491.629467pt;}
.y20b{bottom:492.523697pt;}
.y1f3{bottom:493.895037pt;}
.ya{bottom:494.990666pt;}
.y158{bottom:496.929067pt;}
.y18d{bottom:503.518391pt;}
.y1f2{bottom:504.565037pt;}
.y76{bottom:506.929077pt;}
.y10f{bottom:506.929199pt;}
.y13b{bottom:507.067733pt;}
.y2e{bottom:507.629467pt;}
.y18c{bottom:514.188391pt;}
.y1a4{bottom:514.859625pt;}
.y157{bottom:516.929067pt;}
.ya4{bottom:516.929077pt;}
.y1f1{bottom:521.675037pt;}
.y2d{bottom:523.629467pt;}
.y18b{bottom:524.858391pt;}
.y75{bottom:526.929077pt;}
.y10e{bottom:526.929199pt;}
.y13a{bottom:527.062400pt;}
.y156{bottom:536.929067pt;}
.ya3{bottom:536.929077pt;}
.y1f0{bottom:537.785037pt;}
.y2c{bottom:539.633733pt;}
.y18a{bottom:541.588391pt;}
.y20a{bottom:543.126236pt;}
.yde{bottom:546.929077pt;}
.y10d{bottom:546.929199pt;}
.y139{bottom:547.057067pt;}
.y1ef{bottom:549.785037pt;}
.y2b{bottom:554.296133pt;}
.ya2{bottom:556.929077pt;}
.y189{bottom:557.318391pt;}
.y1a3{bottom:563.908290pt;}
.y209{bottom:565.782771pt;}
.y1ee{bottom:565.895037pt;}
.ydd{bottom:566.929077pt;}
.y10c{bottom:566.929199pt;}
.y138{bottom:567.051733pt;}
.y188{bottom:569.318391pt;}
.ya5{bottom:570.202800pt;}
.y9{bottom:573.786667pt;}
.ya1{bottom:576.929077pt;}
.y2a{bottom:578.436933pt;}
.y208{bottom:583.557429pt;}
.y1ed{bottom:583.655037pt;}
.y187{bottom:585.238391pt;}
.y1a2{bottom:585.931728pt;}
.y155{bottom:586.929067pt;}
.ydc{bottom:586.929077pt;}
.y10b{bottom:586.929199pt;}
.y137{bottom:587.046400pt;}
.y74{bottom:590.538935pt;}
.y8{bottom:592.685334pt;}
.y29{bottom:594.432667pt;}
.yc0{bottom:600.240688pt;}
.y207{bottom:601.332128pt;}
.y1ec{bottom:601.415037pt;}
.y186{bottom:602.628391pt;}
.y1a1{bottom:603.230678pt;}
.y154{bottom:606.929067pt;}
.ydb{bottom:606.929077pt;}
.y10a{bottom:606.929199pt;}
.y136{bottom:607.041067pt;}
.y28{bottom:610.432667pt;}
.ybf{bottom:615.220688pt;}
.y206{bottom:619.106787pt;}
.y1eb{bottom:619.175037pt;}
.y185{bottom:620.018391pt;}
.y1a0{bottom:620.529588pt;}
.yc1{bottom:622.080311pt;}
.y27{bottom:626.441067pt;}
.y153{bottom:626.929067pt;}
.ya0{bottom:626.929077pt;}
.y109{bottom:626.929199pt;}
.y135{bottom:627.035733pt;}
.y73{bottom:627.047335pt;}
.ybe{bottom:627.220688pt;}
.y205{bottom:636.881444pt;}
.y1ea{bottom:636.935037pt;}
.y184{bottom:637.408391pt;}
.y19f{bottom:637.828660pt;}
.yc2{bottom:641.455229pt;}
.ybd{bottom:642.200688pt;}
.y26{bottom:642.436800pt;}
.y7{bottom:645.598667pt;}
.y9f{bottom:646.929077pt;}
.y108{bottom:646.929199pt;}
.y134{bottom:647.030400pt;}
.y204{bottom:654.656103pt;}
.y1e9{bottom:654.695037pt;}
.y183{bottom:654.798391pt;}
.y19e{bottom:655.127610pt;}
.yc3{bottom:657.050444pt;}
.y25{bottom:657.099200pt;}
.ybc{bottom:657.700688pt;}
.y9e{bottom:666.929077pt;}
.y107{bottom:666.929199pt;}
.y133{bottom:667.025067pt;}
.y72{bottom:668.375335pt;}
.y3{bottom:668.977329pt;}
.y182{bottom:672.188391pt;}
.yc4{bottom:672.282948pt;}
.y19d{bottom:672.426682pt;}
.y203{bottom:672.430761pt;}
.y1e8{bottom:672.455037pt;}
.ybb{bottom:673.200688pt;}
.y9d{bottom:686.929036pt;}
.y106{bottom:686.929199pt;}
.y132{bottom:687.019733pt;}
.yc5{bottom:687.878203pt;}
.yba{bottom:688.520688pt;}
.y181{bottom:689.578391pt;}
.y19c{bottom:689.725755pt;}
.y202{bottom:690.205541pt;}
.y1e7{bottom:690.215037pt;}
.y1ba{bottom:694.500163pt;}
.yc6{bottom:703.473336pt;}
.yb9{bottom:703.840688pt;}
.y9c{bottom:706.929036pt;}
.y105{bottom:706.929199pt;}
.y180{bottom:706.968391pt;}
.y131{bottom:707.014400pt;}
.y19b{bottom:707.024664pt;}
.y1e6{bottom:707.975037pt;}
.y201{bottom:707.980117pt;}
.y71{bottom:709.703335pt;}
.yc7{bottom:718.705921pt;}
.yb8{bottom:719.340688pt;}
.y1d0{bottom:721.743056pt;}
.y19a{bottom:724.323736pt;}
.y17f{bottom:724.358391pt;}
.y1e5{bottom:725.735037pt;}
.y200{bottom:725.754939pt;}
.y9b{bottom:726.929036pt;}
.y104{bottom:726.929199pt;}
.y130{bottom:727.009067pt;}
.yc8{bottom:734.300811pt;}
.yb7{bottom:734.840688pt;}
.y199{bottom:741.622646pt;}
.y17e{bottom:741.748391pt;}
.y1e4{bottom:743.495037pt;}
.y1ff{bottom:743.529597pt;}
.y9a{bottom:746.929036pt;}
.y103{bottom:746.929199pt;}
.y12f{bottom:747.003733pt;}
.yc9{bottom:749.896269pt;}
.yb6{bottom:750.340688pt;}
.y46{bottom:758.590801pt;}
.y70{bottom:758.595601pt;}
.y198{bottom:758.921718pt;}
.y17d{bottom:759.138391pt;}
.y1e3{bottom:761.255037pt;}
.y1fe{bottom:761.304092pt;}
.y1ca{bottom:762.065720pt;}
.yca{bottom:765.128855pt;}
.yb5{bottom:765.840688pt;}
.y99{bottom:766.929036pt;}
.y102{bottom:766.929199pt;}
.y12e{bottom:766.998400pt;}
.y1cd{bottom:767.302656pt;}
.y197{bottom:776.220709pt;}
.y1c6{bottom:776.234786pt;}
.y17c{bottom:776.528391pt;}
.y1cb{bottom:777.399186pt;}
.y1d1{bottom:778.668120pt;}
.y1e2{bottom:779.015037pt;}
.y1fd{bottom:779.078751pt;}
.ycb{bottom:780.724151pt;}
.yb4{bottom:781.340688pt;}
.y2{bottom:781.661334pt;}
.y1d3{bottom:783.648120pt;}
.y249{bottom:785.808000pt;}
.y98{bottom:786.929036pt;}
.y101{bottom:786.929199pt;}
.y12d{bottom:786.993067pt;}
.y1d2{bottom:790.608120pt;}
.y196{bottom:793.519700pt;}
.y17b{bottom:793.918391pt;}
.y1c8{bottom:796.027986pt;}
.ycc{bottom:796.319528pt;}
.y1e1{bottom:796.775037pt;}
.yb3{bottom:796.840688pt;}
.y1d4{bottom:797.348120pt;}
.y248{bottom:799.802667pt;}
.y1c2{bottom:805.342386pt;}
.y1cf{bottom:806.592656pt;}
.y97{bottom:806.929036pt;}
.y100{bottom:806.929199pt;}
.y12c{bottom:806.987733pt;}
.y1c5{bottom:808.131986pt;}
.y1c9{bottom:810.581853pt;}
.y17a{bottom:811.308391pt;}
.ycd{bottom:811.551868pt;}
.yb2{bottom:812.340688pt;}
.y247{bottom:813.808000pt;}
.y1e0{bottom:814.535037pt;}
.y1fc{bottom:815.508113pt;}
.y1c4{bottom:820.478519pt;}
.y1ce{bottom:820.562656pt;}
.y1c3{bottom:823.971453pt;}
.y96{bottom:826.929036pt;}
.yff{bottom:826.929199pt;}
.y12b{bottom:826.982400pt;}
.yb1{bottom:827.840688pt;}
.y179{bottom:828.698391pt;}
.y195{bottom:828.767991pt;}
.y1d5{bottom:829.848120pt;}
.y246{bottom:831.589333pt;}
.y1df{bottom:832.295037pt;}
.y1fb{bottom:832.305476pt;}
.y1c0{bottom:843.182380pt;}
.yb0{bottom:843.340688pt;}
.yce{bottom:843.687204pt;}
.y245{bottom:845.589333pt;}
.y178{bottom:846.088391pt;}
.y194{bottom:846.110276pt;}
.y95{bottom:846.929036pt;}
.yfe{bottom:846.929199pt;}
.y12a{bottom:846.977067pt;}
.y1fa{bottom:849.102757pt;}
.y1de{bottom:850.055037pt;}
.y45{bottom:855.910801pt;}
.y1b9{bottom:856.929036pt;}
.y43{bottom:857.230933pt;}
.yaf{bottom:858.840688pt;}
.ycf{bottom:858.919788pt;}
.y1{bottom:859.312000pt;}
.y244{bottom:859.628400pt;}
.y193{bottom:863.452643pt;}
.y177{bottom:863.478391pt;}
.y94{bottom:866.929036pt;}
.yfd{bottom:866.929199pt;}
.y129{bottom:866.971733pt;}
.y1dd{bottom:867.815037pt;}
.y1f9{bottom:868.369604pt;}
.y1c7{bottom:872.289990pt;}
.y243{bottom:873.623067pt;}
.yae{bottom:874.340688pt;}
.yd0{bottom:874.877796pt;}
.y1b8{bottom:876.929036pt;}
.y192{bottom:880.794928pt;}
.y176{bottom:880.868391pt;}
.y1cc{bottom:882.932653pt;}
.y44{bottom:884.094535pt;}
.y1dc{bottom:885.575037pt;}
.y93{bottom:886.929036pt;}
.yfc{bottom:886.929199pt;}
.y128{bottom:886.966400pt;}
.y242{bottom:887.617733pt;}
.y1c1{bottom:888.008247pt;}
.yad{bottom:889.840688pt;}
.yd1{bottom:890.110056pt;}
.y175{bottom:898.258391pt;}
.y1f7{bottom:902.698380pt;}
.y1db{bottom:903.335037pt;}
.yac{bottom:905.340688pt;}
.y241{bottom:905.399067pt;}
.y92{bottom:906.929036pt;}
.yfb{bottom:906.929199pt;}
.y127{bottom:906.961067pt;}
.y174{bottom:915.648391pt;}
.y190{bottom:915.814133pt;}
.y240{bottom:919.393733pt;}
.yd3{bottom:920.470407pt;}
.yab{bottom:920.840688pt;}
.y1da{bottom:921.095037pt;}
.y20d{bottom:921.385555pt;}
.y1f6{bottom:923.076147pt;}
.y91{bottom:926.929036pt;}
.yfa{bottom:926.929199pt;}
.y126{bottom:926.955733pt;}
.y173{bottom:933.038391pt;}
.y23f{bottom:933.388400pt;}
.y1bf{bottom:933.416115pt;}
.y18f{bottom:933.910650pt;}
.yaa{bottom:936.340688pt;}
.yd4{bottom:936.647653pt;}
.y1f8{bottom:938.814347pt;}
.y1d9{bottom:938.855037pt;}
.y90{bottom:946.929036pt;}
.yf9{bottom:946.929199pt;}
.y125{bottom:946.950400pt;}
.y172{bottom:950.428391pt;}
.y191{bottom:950.631109pt;}
.y23e{bottom:951.169733pt;}
.ya9{bottom:951.840688pt;}
.yd2{bottom:952.481800pt;}
.y20e{bottom:960.464656pt;}
.y23d{bottom:965.164400pt;}
.y1bd{bottom:966.513865pt;}
.y8f{bottom:966.929036pt;}
.yf8{bottom:966.929199pt;}
.y124{bottom:966.945067pt;}
.y23c{bottom:979.159067pt;}
.y170{bottom:982.940948pt;}
.ya7{bottom:984.296417pt;}
.y1bc{bottom:984.983198pt;}
.yda{bottom:985.907308pt;}
.y8e{bottom:986.929036pt;}
.yf7{bottom:986.929199pt;}
.y123{bottom:986.939733pt;}
.y23b{bottom:993.153733pt;}
.y1bb{bottom:1000.983198pt;}
.y16f{bottom:1001.410281pt;}
.ya6{bottom:1002.765749pt;}
.yd9{bottom:1005.907308pt;}
.y8d{bottom:1006.929036pt;}
.yf6{bottom:1006.929199pt;}
.y122{bottom:1006.934400pt;}
.y23a{bottom:1007.148400pt;}
.y1be{bottom:1023.095197pt;}
.y171{bottom:1023.522014pt;}
.ya8{bottom:1024.467083pt;}
.yd8{bottom:1025.907308pt;}
.y8c{bottom:1026.929036pt;}
.y121{bottom:1026.929067pt;}
.yf5{bottom:1026.929199pt;}
.y239{bottom:1028.707467pt;}
.h15{height:28.184000pt;}
.h7{height:28.560000pt;}
.h1a{height:29.360000pt;}
.h24{height:30.352000pt;}
.h18{height:32.016000pt;}
.h19{height:32.520000pt;}
.h1d{height:34.048000pt;}
.h17{height:34.688000pt;}
.h16{height:35.232000pt;}
.h28{height:35.669333pt;}
.h27{height:36.014933pt;}
.hf{height:36.750933pt;}
.h23{height:37.177067pt;}
.hb{height:39.155200pt;}
.h6{height:40.800000pt;}
.h10{height:41.019733pt;}
.h3{height:42.840000pt;}
.h11{height:43.061333pt;}
.he{height:43.360000pt;}
.ha{height:44.488533pt;}
.h1b{height:44.688000pt;}
.h13{height:47.696000pt;}
.h2{height:48.960000pt;}
.h22{height:49.728000pt;}
.h1f{height:51.148799pt;}
.h14{height:52.032000pt;}
.h5{height:69.360000pt;}
.h21{height:69.777600pt;}
.h20{height:74.435733pt;}
.hc{height:84.378667pt;}
.h4{height:105.826671pt;}
.h12{height:119.168000pt;}
.hd{height:191.520000pt;}
.h9{height:722.320267pt;}
.h0{height:1122.518667pt;}
.h1c{height:1122.519971pt;}
.h26{height:1122.519975pt;}
.h25{height:1122.519976pt;}
.h1e{height:1122.519994pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:228.669867pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w6{width:793.701325pt;}
.w5{width:793.701331pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:27.516400pt;}
.x6{left:34.392800pt;}
.x16{left:37.795199pt;}
.x18{left:41.530273pt;}
.x4f{left:44.295467pt;}
.x46{left:49.400133pt;}
.x4d{left:51.588267pt;}
.x35{left:53.502133pt;}
.x5{left:56.031467pt;}
.x9{left:62.929203pt;}
.x28{left:66.519600pt;}
.xa{left:68.031469pt;}
.x53{left:72.318807pt;}
.x33{left:79.132131pt;}
.xb{left:83.151469pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x51{left:109.312800pt;}
.x11{left:162.717997pt;}
.x86{left:163.735600pt;}
.x49{left:166.891736pt;}
.x88{left:170.447333pt;}
.x12{left:173.776672pt;}
.x4{left:180.874667pt;}
.x8c{left:188.697333pt;}
.x8a{left:194.147333pt;}
.x89{left:197.047333pt;}
.x87{left:198.427333pt;}
.x8b{left:210.127333pt;}
.x4b{left:247.921470pt;}
.x47{left:255.182009pt;}
.x5d{left:272.331197pt;}
.x5e{left:273.293741pt;}
.x5c{left:281.464925pt;}
.x48{left:284.683474pt;}
.xd{left:286.598269pt;}
.xc{left:287.572136pt;}
.x50{left:290.212800pt;}
.x55{left:291.740540pt;}
.x57{left:293.643473pt;}
.x56{left:296.307597pt;}
.x54{left:297.449341pt;}
.x5b{left:302.016276pt;}
.x5a{left:303.158000pt;}
.x5f{left:306.202535pt;}
.x59{left:307.344259pt;}
.x58{left:311.150127pt;}
.x4a{left:314.034933pt;}
.x19{left:319.101196pt;}
.x1a{left:323.938131pt;}
.x1b{left:326.625204pt;}
.x4c{left:343.786399pt;}
.x1c{left:345.972819pt;}
.x1d{left:349.197469pt;}
.x26{left:353.497071pt;}
.x27{left:355.109333pt;}
.x1e{left:357.259073pt;}
.x1f{left:358.871337pt;}
.x25{left:361.021077pt;}
.x2b{left:362.790120pt;}
.x4e{left:364.666391pt;}
.x20{left:369.619995pt;}
.x29{left:370.561727pt;}
.x21{left:372.307211pt;}
.x94{left:373.222133pt;}
.x91{left:375.952133pt;}
.x92{left:382.012133pt;}
.x22{left:383.055867pt;}
.x6c{left:389.929728pt;}
.x6d{left:391.071452pt;}
.x93{left:392.912133pt;}
.x6e{left:394.496419pt;}
.x23{left:395.416789pt;}
.x6b{left:397.921753pt;}
.x6a{left:399.444132pt;}
.x17{left:400.383183pt;}
.x24{left:402.403320pt;}
.x3{left:404.408000pt;}
.x63{left:409.339193pt;}
.x61{left:412.003052pt;}
.x69{left:413.525349pt;}
.x60{left:417.331217pt;}
.x62{left:420.375855pt;}
.x67{left:426.084513pt;}
.x65{left:428.368000pt;}
.x68{left:431.031983pt;}
.x66{left:435.979736pt;}
.x15{left:453.146525pt;}
.x13{left:454.060140pt;}
.x64{left:455.388916pt;}
.x14{left:464.238648pt;}
.x36{left:465.328400pt;}
.x77{left:517.803752pt;}
.x10{left:524.700403pt;}
.xe{left:525.602003pt;}
.x7b{left:526.557048pt;}
.x73{left:528.460001pt;}
.x7c{left:532.265869pt;}
.x72{left:534.168660pt;}
.x70{left:535.690917pt;}
.xf{left:536.734003pt;}
.x78{left:539.496785pt;}
.x6f{left:540.638549pt;}
.x76{left:542.160685pt;}
.x71{left:543.302531pt;}
.x75{left:545.205485pt;}
.x7a{left:547.869467pt;}
.x74{left:553.578125pt;}
.x79{left:558.906251pt;}
.x2c{left:566.617188pt;}
.x2d{left:572.940674pt;}
.x90{left:582.815733pt;}
.x8e{left:586.195733pt;}
.x2e{left:589.611450pt;}
.x82{left:594.680420pt;}
.x83{left:595.822388pt;}
.x52{left:596.918685pt;}
.x8d{left:598.725733pt;}
.x7e{left:600.389323pt;}
.x81{left:601.531047pt;}
.x80{left:603.434000pt;}
.x7f{left:604.575603pt;}
.x7d{left:605.717448pt;}
.x84{left:610.105184pt;}
.x85{left:613.149861pt;}
.x45{left:621.799479pt;}
.x2f{left:624.678019pt;}
.x8f{left:625.875733pt;}
.x30{left:647.672119pt;}
.x44{left:664.256673pt;}
.x8{left:671.856400pt;}
.x31{left:687.912272pt;}
.x43{left:690.593180pt;}
.x42{left:691.486003pt;}
.x41{left:693.271484pt;}
.x40{left:694.610677pt;}
.x3f{left:699.520915pt;}
.x38{left:700.413737pt;}
.x3e{left:702.199300pt;}
.x3b{left:710.234294pt;}
.x39{left:712.019694pt;}
.x3a{left:714.251709pt;}
.x37{left:715.144368pt;}
.x3d{left:718.269043pt;}
.x2a{left:721.642904pt;}
.x3c{left:722.732910pt;}
.x32{left:729.302165pt;}
.x34{left:749.199707pt;}
}




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