
    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_fd294e9e8570e79cec7f2646.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.997070;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_bf2f32bb751e22bb25d31ce5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930176;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_c88445f8a8f2fbd6e23e1b81.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.715000;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_76462a48ed2d3d5a8b920aae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.661133;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_e54dc7ee590a6abef6928ac9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930176;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_60f2cca4dadd8fb91823f7b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.872070;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_866686097777beed7ea7f3fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895020;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_6b521a27890145d307e5dbbf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.615234;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_a0e7b0310e0db56eab8aae01.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930176;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_62ef767877a3284ad72b1309.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.930176;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_76436322477855023ebfbc3d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.872070;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_cd499ada47cadeff59f6937d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895020;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_6855e39f6770d550c732e60c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.661133;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_6023201c778cfd0b88754e4d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.691406;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_cd499ada47cadeff59f6937d.woff2')format("woff");}.fff{font-family:fff;line-height:0.895020;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_c319d3e4cb0eae7b00f702c1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.828125;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_e3fc19a3205a97a0d4bc64ff.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.007000;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_a575cbfdfd5d9b797d74b4b4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.924805;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_fed5bb1bee5fe1b8104ed640.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.930176;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_0e6caf8243d75620cf655229.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.700000;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_d53493912eb8ce93cccb24e5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.997070;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_ed6c10a4c07c948683ba8036.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.969000;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_b97b80c2346c5be712530663.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.924805;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_aa9512b433be85ea23752680.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.930176;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:ff19;src:url('chunks/assets/font_b97b80c2346c5be712530663.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.924805;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:ff1a;src:url('chunks/assets/font_d2187c796dd67fd674d27616.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.930176;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:ff1b;src:url('chunks/assets/font_74ced215b91143e401a8056b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.828125;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:ff1c;src:url('chunks/assets/font_6b092d3708b2c68710b4efc8.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;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:ff1d;src:url('chunks/assets/font_6b5bf3d4a0fd42ac97730711.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.872070;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:ff1e;src:url('chunks/assets/font_41101e08737700d8ef25e064.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.930176;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:ff1f;src:url('chunks/assets/font_b97b80c2346c5be712530663.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.924805;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:ff20;src:url('chunks/assets/font_d2148d860fd3a348c76bf144.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.930176;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:ff21;src:url('chunks/assets/font_b97b80c2346c5be712530663.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.924805;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:ff22;src:url('chunks/assets/font_355288270cfc7f12fd4bc9cf.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.930176;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:ff23;src:url('chunks/assets/font_b97b80c2346c5be712530663.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.924805;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:ff24;src:url('chunks/assets/font_49c9583a6f53e8327b60cd02.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.930176;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:ff25;src:url('chunks/assets/font_3ea463c8a3e2f63e93d1788a.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.813477;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:ff26;src:url('chunks/assets/font_db426add1d3890ba7d590feb.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.007000;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:ff27;src:url('chunks/assets/font_b97b80c2346c5be712530663.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.924805;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:ff28;src:url('chunks/assets/font_fc700b6cb4deaa2350f96cd8.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.969000;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:ff29;src:url('chunks/assets/font_b97b80c2346c5be712530663.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.924805;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:ff2a;src:url('chunks/assets/font_9af3d9b7417068e96b90d0bc.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.930176;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:ff2b;src:url('chunks/assets/font_ded409be8ef90ab6d571b538.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.857422;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:ff2c;src:url('chunks/assets/font_3f63ca6a0eab26af8d9e689a.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.930176;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:ff2d;src:url('chunks/assets/font_e459eabdd68d9a16890b36b3.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.924805;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:ff2e;src:url('chunks/assets/font_dded66dcfae938ca25239897.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.930176;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:ff2f;src:url('chunks/assets/font_e459eabdd68d9a16890b36b3.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.924805;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:ff30;src:url('chunks/assets/font_423e752de9ce275cb42334a9.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.930176;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:ff31;src:url('chunks/assets/font_b97b80c2346c5be712530663.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.924805;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:ff32;src:url('chunks/assets/font_51d351a0a9453c11dbae696a.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.930176;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:ff33;src:url('chunks/assets/font_d53493912eb8ce93cccb24e5.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.997070;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:ff34;src:url('chunks/assets/font_6da2bded51e7b5dcd26a0172.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.930176;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:ff35;src:url('chunks/assets/font_d52d58b20004ae9a7c52a46f.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.661133;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:ff36;src:url('chunks/assets/font_cd499ada47cadeff59f6937d.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.895020;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:ff37;src:url('chunks/assets/font_4a305306563490b5aa38250f.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.930176;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:ff38;src:url('chunks/assets/font_fccc48e8063f4d37bc8b070b.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.624023;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:ff39;src:url('chunks/assets/font_e3fc19a3205a97a0d4bc64ff.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.007000;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:ff3a;src:url('chunks/assets/font_ec5d842931cbc82a76b00f84.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.642741;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:ff3b;src:url('chunks/assets/font_cd499ada47cadeff59f6937d.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.895020;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:ff3c;src:url('chunks/assets/font_470373d26d975931c6de256b.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.997070;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:ff3d;src:url('chunks/assets/font_d6f87599da790d6d2c366f7b.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.872070;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:ff3e;src:url('chunks/assets/font_cd499ada47cadeff59f6937d.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.895020;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:ff3f;src:url('chunks/assets/font_470373d26d975931c6de256b.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.997070;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:ff40;src:url('chunks/assets/font_a471e8d4f970e09f54469243.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.872070;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:ff41;src:url('chunks/assets/font_cd499ada47cadeff59f6937d.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.895020;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:ff42;src:url('chunks/assets/font_470373d26d975931c6de256b.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.997070;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:ff43;src:url('chunks/assets/font_d41c9cf67768f938e781ea5b.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.872070;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:ff44;src:url('chunks/assets/font_cd499ada47cadeff59f6937d.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.895020;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:ff45;src:url('chunks/assets/font_470373d26d975931c6de256b.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.997070;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:ff46;src:url('chunks/assets/font_4ec27aa16799a06b62b9798d.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.930176;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:ff47;src:url('chunks/assets/font_8b9a4647eacd722835cee45e.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.724121;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-64.296000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-31.320000px;}
.ls3{letter-spacing:-9.396000px;}
.lsa{letter-spacing:-6.840000px;}
.lsd{letter-spacing:-4.752000px;}
.ls6{letter-spacing:-4.320000px;}
.ls9{letter-spacing:-3.888000px;}
.lsb{letter-spacing:-3.600000px;}
.ls2{letter-spacing:-1.008000px;}
.ls1{letter-spacing:-0.972000px;}
.ls7{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.504000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:8.128800px;}
.ls4{letter-spacing:14.558400px;}
.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;}
}
.ws141{word-spacing:-87.696000px;}
.ws0{word-spacing:-73.080000px;}
.ws120{word-spacing:-69.480000px;}
.ws11d{word-spacing:-66.240000px;}
.ws12d{word-spacing:-41.760000px;}
.ws1{word-spacing:-21.924000px;}
.ws3{word-spacing:-20.952000px;}
.ws4{word-spacing:-16.044000px;}
.ws7{word-spacing:-14.616000px;}
.ws6d{word-spacing:-13.968000px;}
.ws1b{word-spacing:-13.896000px;}
.ws6c{word-spacing:-13.680000px;}
.ws5{word-spacing:-12.528000px;}
.ws116{word-spacing:-7.776000px;}
.wsae{word-spacing:-7.728000px;}
.wse3{word-spacing:-7.200000px;}
.wsa6{word-spacing:-6.384000px;}
.wsdd{word-spacing:-5.976000px;}
.ws138{word-spacing:-5.688000px;}
.ws10a{word-spacing:-5.616000px;}
.ws135{word-spacing:-5.544000px;}
.ws115{word-spacing:-5.472000px;}
.ws5f{word-spacing:-5.400000px;}
.ws106{word-spacing:-5.112000px;}
.ws85{word-spacing:-5.040000px;}
.wse7{word-spacing:-4.968000px;}
.ws72{word-spacing:-4.392000px;}
.wsa9{word-spacing:-4.284000px;}
.ws70{word-spacing:-3.960000px;}
.ws5e{word-spacing:-3.888000px;}
.wsfa{word-spacing:-3.816000px;}
.wsef{word-spacing:-3.600000px;}
.ws12e{word-spacing:-3.528000px;}
.wsd4{word-spacing:-3.456000px;}
.wsd3{word-spacing:-3.384000px;}
.wsac{word-spacing:-3.360000px;}
.ws24{word-spacing:-3.312000px;}
.ws100{word-spacing:-3.240000px;}
.ws132{word-spacing:-3.168000px;}
.wscb{word-spacing:-3.096000px;}
.ws56{word-spacing:-3.024000px;}
.wsdc{word-spacing:-2.952000px;}
.ws130{word-spacing:-2.880000px;}
.ws84{word-spacing:-2.808000px;}
.ws37{word-spacing:-2.736000px;}
.wsb7{word-spacing:-2.664000px;}
.ws131{word-spacing:-2.592000px;}
.ws13e{word-spacing:-2.520000px;}
.ws126{word-spacing:-2.448000px;}
.ws87{word-spacing:-2.376000px;}
.ws69{word-spacing:-2.304000px;}
.ws62{word-spacing:-2.232000px;}
.ws127{word-spacing:-2.160000px;}
.ws9a{word-spacing:-2.088000px;}
.wsb5{word-spacing:-2.016000px;}
.ws3c{word-spacing:-1.944000px;}
.ws5c{word-spacing:-1.800000px;}
.ws1e{word-spacing:-1.728000px;}
.ws32{word-spacing:-1.656000px;}
.ws12f{word-spacing:-1.512000px;}
.ws21{word-spacing:-1.440000px;}
.ws6a{word-spacing:-1.368000px;}
.wsf{word-spacing:-1.296000px;}
.ws92{word-spacing:-1.224000px;}
.wsaa{word-spacing:-1.176000px;}
.ws129{word-spacing:-1.152000px;}
.ws108{word-spacing:-1.080000px;}
.wsb1{word-spacing:-0.936000px;}
.wsa8{word-spacing:-0.756000px;}
.ws81{word-spacing:-0.720000px;}
.wsec{word-spacing:-0.648000px;}
.ws17{word-spacing:-0.576000px;}
.ws134{word-spacing:-0.504000px;}
.ws10{word-spacing:-0.432000px;}
.ws29{word-spacing:-0.390000px;}
.ws2d{word-spacing:-0.360000px;}
.ws3f{word-spacing:-0.288000px;}
.ws15{word-spacing:-0.216000px;}
.ws4a{word-spacing:-0.144000px;}
.ws6{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws2f{word-spacing:0.072000px;}
.ws4f{word-spacing:0.288000px;}
.ws45{word-spacing:0.360000px;}
.ws19{word-spacing:0.504000px;}
.ws2e{word-spacing:0.576000px;}
.wsd2{word-spacing:0.648000px;}
.ws4d{word-spacing:0.792000px;}
.ws34{word-spacing:0.864000px;}
.wsfc{word-spacing:0.936000px;}
.ws1d{word-spacing:1.080000px;}
.ws42{word-spacing:1.224000px;}
.ws133{word-spacing:1.296000px;}
.ws44{word-spacing:1.368000px;}
.ws43{word-spacing:1.440000px;}
.ws137{word-spacing:1.512000px;}
.ws7d{word-spacing:1.584000px;}
.ws13{word-spacing:1.728000px;}
.ws39{word-spacing:1.800000px;}
.ws4e{word-spacing:1.872000px;}
.wsb8{word-spacing:1.944000px;}
.wse{word-spacing:2.016000px;}
.wscc{word-spacing:2.088000px;}
.wsb0{word-spacing:2.160000px;}
.ws47{word-spacing:2.232000px;}
.wsa5{word-spacing:2.268000px;}
.ws23{word-spacing:2.304000px;}
.ws28{word-spacing:2.376000px;}
.ws35{word-spacing:2.448000px;}
.ws1f{word-spacing:2.664000px;}
.ws82{word-spacing:2.808000px;}
.ws49{word-spacing:2.880000px;}
.ws31{word-spacing:2.952000px;}
.ws125{word-spacing:3.024000px;}
.ws94{word-spacing:3.096000px;}
.ws114{word-spacing:3.240000px;}
.ws40{word-spacing:3.312000px;}
.ws118{word-spacing:3.384000px;}
.wsa7{word-spacing:3.444000px;}
.ws6b{word-spacing:3.456000px;}
.ws5a{word-spacing:3.528000px;}
.wse2{word-spacing:3.600000px;}
.ws50{word-spacing:3.672000px;}
.ws7a{word-spacing:3.816000px;}
.ws107{word-spacing:3.960000px;}
.ws97{word-spacing:4.032000px;}
.ws60{word-spacing:4.104000px;}
.ws4c{word-spacing:4.176000px;}
.ws5b{word-spacing:4.248000px;}
.ws1a{word-spacing:4.320000px;}
.ws22{word-spacing:4.392000px;}
.ws4b{word-spacing:4.464000px;}
.ws79{word-spacing:4.536000px;}
.ws9e{word-spacing:4.608000px;}
.ws83{word-spacing:4.680000px;}
.ws16{word-spacing:4.824000px;}
.ws86{word-spacing:4.896000px;}
.wsbb{word-spacing:4.968000px;}
.ws52{word-spacing:5.112000px;}
.ws73{word-spacing:5.184000px;}
.wsa0{word-spacing:5.208000px;}
.wsea{word-spacing:5.256000px;}
.ws2c{word-spacing:5.328000px;}
.ws41{word-spacing:5.400000px;}
.ws36{word-spacing:5.472000px;}
.wsc4{word-spacing:5.544000px;}
.ws8b{word-spacing:5.616000px;}
.ws61{word-spacing:5.688000px;}
.ws136{word-spacing:5.760000px;}
.ws12{word-spacing:5.832000px;}
.ws95{word-spacing:5.904000px;}
.ws38{word-spacing:5.976000px;}
.ws102{word-spacing:6.048000px;}
.wsd9{word-spacing:6.120000px;}
.wsce{word-spacing:6.192000px;}
.ws119{word-spacing:6.264000px;}
.wsf4{word-spacing:6.336000px;}
.ws27{word-spacing:6.408000px;}
.ws67{word-spacing:6.480000px;}
.ws48{word-spacing:6.552000px;}
.ws33{word-spacing:6.624000px;}
.ws10c{word-spacing:6.696000px;}
.ws10f{word-spacing:6.768000px;}
.ws9d{word-spacing:6.840000px;}
.ws9f{word-spacing:6.888000px;}
.ws53{word-spacing:6.912000px;}
.wsd0{word-spacing:6.984000px;}
.ws13c{word-spacing:7.056000px;}
.wsb6{word-spacing:7.128000px;}
.wsf2{word-spacing:7.200000px;}
.ws58{word-spacing:7.272000px;}
.ws9{word-spacing:7.344000px;}
.wsc0{word-spacing:7.416000px;}
.ws30{word-spacing:7.488000px;}
.wsad{word-spacing:7.560000px;}
.wsbe{word-spacing:7.632000px;}
.ws99{word-spacing:7.704000px;}
.wse4{word-spacing:7.776000px;}
.wsd{word-spacing:7.848000px;}
.wsa4{word-spacing:7.896000px;}
.ws128{word-spacing:7.992000px;}
.ws54{word-spacing:8.064000px;}
.ws142{word-spacing:8.208000px;}
.ws25{word-spacing:8.280000px;}
.ws46{word-spacing:8.352000px;}
.ws68{word-spacing:8.424000px;}
.ws13a{word-spacing:8.496000px;}
.ws90{word-spacing:8.568000px;}
.wsc5{word-spacing:8.640000px;}
.wse1{word-spacing:8.712000px;}
.ws14{word-spacing:8.856000px;}
.ws93{word-spacing:9.000000px;}
.wsc9{word-spacing:9.072000px;}
.ws122{word-spacing:9.144000px;}
.ws26{word-spacing:9.288000px;}
.wsb{word-spacing:9.360000px;}
.wsa1{word-spacing:9.408000px;}
.wsd6{word-spacing:9.432000px;}
.wsc8{word-spacing:9.504000px;}
.ws9b{word-spacing:9.648000px;}
.wsb4{word-spacing:9.720000px;}
.ws12c{word-spacing:9.792000px;}
.ws101{word-spacing:9.864000px;}
.ws11{word-spacing:9.936000px;}
.ws105{word-spacing:10.008000px;}
.ws71{word-spacing:10.080000px;}
.wsc3{word-spacing:10.224000px;}
.ws64{word-spacing:10.296000px;}
.ws63{word-spacing:10.368000px;}
.ws2a{word-spacing:10.512000px;}
.wsaf{word-spacing:10.584000px;}
.ws139{word-spacing:10.800000px;}
.ws76{word-spacing:10.944000px;}
.wsf3{word-spacing:11.088000px;}
.ws13b{word-spacing:11.232000px;}
.ws123{word-spacing:11.304000px;}
.ws66{word-spacing:11.376000px;}
.ws11e{word-spacing:11.448000px;}
.ws11a{word-spacing:11.520000px;}
.wsc{word-spacing:11.664000px;}
.ws8{word-spacing:11.736000px;}
.ws51{word-spacing:11.808000px;}
.ws91{word-spacing:11.880000px;}
.wsb9{word-spacing:11.952000px;}
.ws77{word-spacing:12.096000px;}
.ws88{word-spacing:12.168000px;}
.wse9{word-spacing:12.312000px;}
.wsb3{word-spacing:12.384000px;}
.wsd1{word-spacing:12.456000px;}
.wsf1{word-spacing:12.600000px;}
.ws59{word-spacing:12.672000px;}
.ws7e{word-spacing:12.744000px;}
.ws96{word-spacing:12.888000px;}
.ws13d{word-spacing:12.960000px;}
.wse6{word-spacing:13.032000px;}
.ws3b{word-spacing:13.104000px;}
.ws55{word-spacing:13.176000px;}
.ws13f{word-spacing:13.248000px;}
.wsca{word-spacing:13.320000px;}
.ws78{word-spacing:13.392000px;}
.ws104{word-spacing:13.536000px;}
.ws75{word-spacing:13.608000px;}
.ws7f{word-spacing:13.680000px;}
.ws109{word-spacing:13.752000px;}
.ws80{word-spacing:13.824000px;}
.ws5d{word-spacing:13.896000px;}
.ws117{word-spacing:13.968000px;}
.wsf5{word-spacing:14.040000px;}
.ws1c{word-spacing:14.112000px;}
.ws11c{word-spacing:14.256000px;}
.ws57{word-spacing:14.328000px;}
.wsa3{word-spacing:14.364000px;}
.wsdf{word-spacing:14.400000px;}
.ws18{word-spacing:14.544000px;}
.ws8a{word-spacing:14.904000px;}
.ws74{word-spacing:15.048000px;}
.wsfd{word-spacing:15.192000px;}
.wsf6{word-spacing:15.264000px;}
.wsee{word-spacing:15.480000px;}
.ws103{word-spacing:15.696000px;}
.ws12a{word-spacing:15.768000px;}
.ws8e{word-spacing:15.840000px;}
.wscd{word-spacing:15.912000px;}
.ws7c{word-spacing:15.984000px;}
.ws98{word-spacing:16.056000px;}
.wsc1{word-spacing:16.344000px;}
.wsab{word-spacing:16.380000px;}
.wsa{word-spacing:16.416000px;}
.wsc2{word-spacing:16.560000px;}
.ws3a{word-spacing:16.992000px;}
.ws10e{word-spacing:17.208000px;}
.wsbc{word-spacing:17.280000px;}
.wsda{word-spacing:17.424000px;}
.wsb2{word-spacing:17.568000px;}
.ws10d{word-spacing:17.640000px;}
.ws89{word-spacing:17.784000px;}
.wsbf{word-spacing:18.576000px;}
.ws3d{word-spacing:18.792000px;}
.ws3e{word-spacing:19.152000px;}
.wsed{word-spacing:19.224000px;}
.wsde{word-spacing:19.584000px;}
.ws6f{word-spacing:19.656000px;}
.ws7b{word-spacing:19.728000px;}
.ws113{word-spacing:20.016000px;}
.ws8f{word-spacing:20.088000px;}
.wsba{word-spacing:20.232000px;}
.wse8{word-spacing:20.376000px;}
.wscf{word-spacing:20.736000px;}
.ws9c{word-spacing:20.952000px;}
.ws20{word-spacing:21.168000px;}
.ws8d{word-spacing:21.240000px;}
.wseb{word-spacing:21.312000px;}
.wsf7{word-spacing:21.456000px;}
.wse0{word-spacing:21.672000px;}
.ws65{word-spacing:22.248000px;}
.ws2b{word-spacing:22.320000px;}
.ws6e{word-spacing:22.824000px;}
.ws11b{word-spacing:22.896000px;}
.ws12b{word-spacing:22.968000px;}
.ws140{word-spacing:23.400000px;}
.wsdb{word-spacing:23.616000px;}
.wsf9{word-spacing:24.048000px;}
.ws112{word-spacing:24.192000px;}
.wsff{word-spacing:24.408000px;}
.wsd8{word-spacing:24.840000px;}
.wsa2{word-spacing:25.452000px;}
.ws124{word-spacing:25.920000px;}
.ws110{word-spacing:26.064000px;}
.wsd5{word-spacing:26.136000px;}
.wsf0{word-spacing:26.280000px;}
.wsf8{word-spacing:26.640000px;}
.wsd7{word-spacing:27.216000px;}
.wsbd{word-spacing:27.576000px;}
.wse5{word-spacing:28.440000px;}
.ws121{word-spacing:28.512000px;}
.ws8c{word-spacing:28.656000px;}
.ws10b{word-spacing:30.024000px;}
.wsfe{word-spacing:31.104000px;}
.wsc6{word-spacing:31.464000px;}
.ws111{word-spacing:33.912000px;}
.ws11f{word-spacing:35.928000px;}
.wsc7{word-spacing:37.512000px;}
.wsfb{word-spacing:56.088000px;}
._11{margin-left:-32.004000px;}
._f{margin-left:-18.324000px;}
._d{margin-left:-13.305600px;}
._10{margin-left:-11.966400px;}
._c{margin-left:-10.411200px;}
._5{margin-left:-7.728000px;}
._a{margin-left:-6.429600px;}
._0{margin-left:-5.076000px;}
._4{margin-left:-3.326400px;}
._2{margin-left:-1.900800px;}
._1{width:1.224000px;}
._6{width:2.646000px;}
._9{width:4.090800px;}
._13{width:5.112000px;}
._b{width:6.242400px;}
._8{width:8.650800px;}
._7{width:9.914400px;}
._17{width:17.308800px;}
._e{width:23.688000px;}
._15{width:30.204000px;}
._16{width:31.680000px;}
._14{width:33.048000px;}
._3{width:47.964000px;}
._12{width:1417.521600px;}
.fc4{color:rgb(38,91,155);}
.fc3{color:transparent;}
.fc2{color:rgb(1,1,2);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:360.000000px;}
.fs7{font-size:390.000000px;}
.fs6{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y90{bottom:38.077500px;}
.y69{bottom:38.080500px;}
.y6c{bottom:38.083500px;}
.y50{bottom:38.086050px;}
.y5d{bottom:38.086200px;}
.y56{bottom:38.086500px;}
.y1dc{bottom:38.088000px;}
.y195{bottom:38.094000px;}
.y1e3{bottom:44.797050px;}
.y16f{bottom:54.151500px;}
.y1e2{bottom:66.397050px;}
.y16e{bottom:75.751500px;}
.y54{bottom:92.328900px;}
.y112{bottom:95.515500px;}
.y16d{bottom:97.351500px;}
.y123{bottom:99.925500px;}
.yc0{bottom:108.922500px;}
.y181{bottom:110.937000px;}
.y1d3{bottom:111.049500px;}
.y8c{bottom:115.302000px;}
.yf5{bottom:116.719500px;}
.y111{bottom:117.115500px;}
.y16c{bottom:118.951500px;}
.y122{bottom:121.525500px;}
.y156{bottom:123.438000px;}
.y1db{bottom:125.676000px;}
.ybf{bottom:131.422500px;}
.y180{bottom:132.537000px;}
.y1d2{bottom:132.649500px;}
.y8b{bottom:136.902000px;}
.yf4{bottom:138.319500px;}
.y110{bottom:138.715500px;}
.y121{bottom:143.125500px;}
.y155{bottom:145.038000px;}
.y6e{bottom:147.276000px;}
.y13b{bottom:148.204500px;}
.y17f{bottom:154.137000px;}
.y1d1{bottom:154.249500px;}
.yd5{bottom:154.893000px;}
.y8a{bottom:158.502000px;}
.y1bc{bottom:158.842500px;}
.yf3{bottom:159.919500px;}
.y115{bottom:160.315500px;}
.y16b{bottom:162.151500px;}
.y154{bottom:166.638000px;}
.y63{bottom:168.876000px;}
.y13a{bottom:169.804500px;}
.y1d0{bottom:175.849500px;}
.ybe{bottom:176.422500px;}
.y70{bottom:176.917500px;}
.yd4{bottom:180.093000px;}
.y89{bottom:180.102000px;}
.y1bb{bottom:180.442500px;}
.yf2{bottom:181.519500px;}
.y10f{bottom:181.915500px;}
.y16a{bottom:183.751500px;}
.y120{bottom:186.325500px;}
.y153{bottom:188.238000px;}
.y62{bottom:190.476000px;}
.y12{bottom:191.083500px;}
.y139{bottom:191.404500px;}
.y1f{bottom:191.847000px;}
.y17e{bottom:197.337000px;}
.ybd{bottom:198.922500px;}
.y55{bottom:200.086500px;}
.y8e{bottom:201.702000px;}
.y1ba{bottom:202.042500px;}
.yf1{bottom:203.119500px;}
.y10e{bottom:203.515500px;}
.yd3{bottom:205.293000px;}
.y169{bottom:205.351500px;}
.y11f{bottom:207.925500px;}
.y152{bottom:209.838000px;}
.y61{bottom:212.076000px;}
.y138{bottom:213.004500px;}
.y37{bottom:217.830000px;}
.y1da{bottom:218.050500px;}
.y2a{bottom:218.083500px;}
.y11{bottom:218.089500px;}
.y1e{bottom:218.847000px;}
.y17d{bottom:218.937000px;}
.y1cf{bottom:219.049500px;}
.ybc{bottom:221.422500px;}
.y88{bottom:223.302000px;}
.y1b9{bottom:223.642500px;}
.yf0{bottom:224.719500px;}
.y10d{bottom:225.115500px;}
.y168{bottom:226.951500px;}
.y11e{bottom:229.525500px;}
.yd2{bottom:230.493000px;}
.y151{bottom:231.438000px;}
.y60{bottom:233.676000px;}
.y137{bottom:234.604500px;}
.y64{bottom:237.046500px;}
.y17c{bottom:240.537000px;}
.y1ce{bottom:240.649500px;}
.ybb{bottom:243.922500px;}
.y36{bottom:244.830000px;}
.y87{bottom:244.902000px;}
.y29{bottom:245.089500px;}
.y10{bottom:245.095500px;}
.y1b8{bottom:245.242500px;}
.y1d{bottom:245.847000px;}
.yef{bottom:246.319500px;}
.y10c{bottom:246.715500px;}
.y167{bottom:248.551500px;}
.y11d{bottom:251.125500px;}
.y158{bottom:253.038000px;}
.y4e{bottom:253.426500px;}
.y4d{bottom:255.276000px;}
.yd1{bottom:255.693000px;}
.y136{bottom:256.204500px;}
.y17b{bottom:262.137000px;}
.y1cd{bottom:262.249500px;}
.yba{bottom:266.422500px;}
.y86{bottom:266.502000px;}
.y1b7{bottom:266.842500px;}
.yee{bottom:267.919500px;}
.y10b{bottom:268.315500px;}
.y166{bottom:270.151500px;}
.y35{bottom:271.830000px;}
.y28{bottom:272.095500px;}
.yf{bottom:272.101500px;}
.y11c{bottom:272.725500px;}
.y1c{bottom:272.847000px;}
.y150{bottom:274.638000px;}
.y4c{bottom:276.876000px;}
.y135{bottom:277.804500px;}
.yd0{bottom:280.893000px;}
.y17a{bottom:283.737000px;}
.y1cc{bottom:283.849500px;}
.y85{bottom:288.102000px;}
.y1b6{bottom:288.442500px;}
.yb9{bottom:288.922500px;}
.yed{bottom:289.519500px;}
.y10a{bottom:289.915500px;}
.y165{bottom:291.751500px;}
.y6b{bottom:294.043500px;}
.ya6{bottom:295.777500px;}
.y14f{bottom:296.238000px;}
.y4b{bottom:298.476000px;}
.y34{bottom:298.830000px;}
.ye{bottom:299.101500px;}
.y13d{bottom:299.404500px;}
.y65{bottom:301.120500px;}
.y1cb{bottom:305.449500px;}
.y84{bottom:309.702000px;}
.yec{bottom:311.119500px;}
.yb8{bottom:311.422500px;}
.y109{bottom:311.515500px;}
.y164{bottom:313.351500px;}
.y11b{bottom:315.925500px;}
.ya5{bottom:317.377500px;}
.y14e{bottom:317.838000px;}
.y5f{bottom:320.076000px;}
.y134{bottom:321.004500px;}
.y27{bottom:326.101500px;}
.y179{bottom:326.937000px;}
.y1ca{bottom:327.049500px;}
.ycf{bottom:331.293000px;}
.y83{bottom:331.302000px;}
.y1b5{bottom:331.642500px;}
.yeb{bottom:332.719500px;}
.y114{bottom:333.115500px;}
.y11a{bottom:337.525500px;}
.ya4{bottom:338.977500px;}
.y14d{bottom:339.438000px;}
.y4a{bottom:341.676000px;}
.y133{bottom:342.604500px;}
.y178{bottom:348.537000px;}
.y1c9{bottom:348.649500px;}
.y1e1{bottom:349.783500px;}
.y1b{bottom:350.854500px;}
.y33{bottom:352.830000px;}
.y82{bottom:352.902000px;}
.yd{bottom:353.083500px;}
.y1b4{bottom:353.242500px;}
.yf6{bottom:354.319500px;}
.y108{bottom:354.715500px;}
.yb7{bottom:356.422500px;}
.yce{bottom:356.493000px;}
.y163{bottom:356.551500px;}
.y119{bottom:359.125500px;}
.y68{bottom:359.686500px;}
.y194{bottom:359.988000px;}
.ya3{bottom:360.577500px;}
.y14c{bottom:361.038000px;}
.y49{bottom:363.276000px;}
.y132{bottom:364.204500px;}
.y177{bottom:370.137000px;}
.y1b3{bottom:374.842500px;}
.yea{bottom:375.919500px;}
.y107{bottom:376.315500px;}
.y1a{bottom:377.854500px;}
.y162{bottom:378.151500px;}
.yb6{bottom:378.922500px;}
.yc{bottom:380.089500px;}
.y26{bottom:380.101500px;}
.y118{bottom:380.725500px;}
.y193{bottom:381.588000px;}
.ycd{bottom:381.693000px;}
.y14b{bottom:382.638000px;}
.y48{bottom:384.876000px;}
.y131{bottom:385.804500px;}
.y176{bottom:391.737000px;}
.y1c8{bottom:391.849500px;}
.y81{bottom:396.102000px;}
.y1b2{bottom:396.442500px;}
.ye9{bottom:397.519500px;}
.y106{bottom:397.915500px;}
.y161{bottom:399.751500px;}
.y94{bottom:400.212000px;}
.yb5{bottom:401.422500px;}
.ydc{bottom:401.998500px;}
.y117{bottom:402.325500px;}
.y187{bottom:402.651000px;}
.y192{bottom:403.188000px;}
.ya2{bottom:403.777500px;}
.y140{bottom:403.968000px;}
.y14a{bottom:404.238000px;}
.y197{bottom:404.673000px;}
.y171{bottom:404.818500px;}
.y19{bottom:404.854500px;}
.y47{bottom:406.476000px;}
.ycc{bottom:406.893000px;}
.yb{bottom:407.095500px;}
.y130{bottom:407.404500px;}
.y15b{bottom:410.658000px;}
.y175{bottom:413.337000px;}
.y1c7{bottom:413.449500px;}
.yc3{bottom:414.385500px;}
.yda{bottom:414.910500px;}
.y1a9{bottom:415.320000px;}
.y80{bottom:417.702000px;}
.y1b1{bottom:418.042500px;}
.ye8{bottom:419.119500px;}
.y105{bottom:419.515500px;}
.y1dd{bottom:420.579000px;}
.y125{bottom:420.763500px;}
.y1de{bottom:420.891000px;}
.y160{bottom:421.351500px;}
.y73{bottom:423.414000px;}
.yb4{bottom:423.922500px;}
.y5b{bottom:424.335000px;}
.y191{bottom:424.788000px;}
.y58{bottom:425.014500px;}
.ya1{bottom:425.377500px;}
.y149{bottom:425.838000px;}
.y183{bottom:426.220500px;}
.y46{bottom:428.076000px;}
.y12f{bottom:429.004500px;}
.y18{bottom:431.854500px;}
.yd7{bottom:432.093000px;}
.y75{bottom:432.769500px;}
.ydb{bottom:433.486500px;}
.y32{bottom:433.830000px;}
.y25{bottom:434.095500px;}
.ya{bottom:434.101500px;}
.y174{bottom:434.937000px;}
.y1c6{bottom:435.049500px;}
.y13f{bottom:435.456000px;}
.y196{bottom:436.161000px;}
.y93{bottom:436.212000px;}
.y170{bottom:436.306500px;}
.y1a8{bottom:436.920000px;}
.y186{bottom:438.651000px;}
.y7f{bottom:439.302000px;}
.y1b0{bottom:439.642500px;}
.ye7{bottom:440.719500px;}
.y104{bottom:441.115500px;}
.y15f{bottom:442.951500px;}
.y116{bottom:445.525500px;}
.y5a{bottom:445.935000px;}
.yb3{bottom:446.422500px;}
.ya0{bottom:446.977500px;}
.y148{bottom:447.438000px;}
.y45{bottom:449.676000px;}
.y13c{bottom:450.604500px;}
.y1bd{bottom:453.067500px;}
.y124{bottom:453.451500px;}
.yc2{bottom:454.053000px;}
.y1c5{bottom:456.649500px;}
.ycb{bottom:457.293000px;}
.y72{bottom:457.977000px;}
.y15a{bottom:458.050500px;}
.y182{bottom:458.304000px;}
.y1a7{bottom:458.520000px;}
.y31{bottom:460.830000px;}
.y57{bottom:460.854000px;}
.y7e{bottom:460.902000px;}
.y9{bottom:461.101500px;}
.ye6{bottom:462.319500px;}
.y103{bottom:462.715500px;}
.y74{bottom:464.257500px;}
.y15e{bottom:464.551500px;}
.y59{bottom:467.535000px;}
.y190{bottom:467.988000px;}
.y9f{bottom:468.577500px;}
.yb2{bottom:468.922500px;}
.y147{bottom:469.038000px;}
.y44{bottom:471.276000px;}
.y12e{bottom:472.204500px;}
.y1c4{bottom:478.249500px;}
.y1e0{bottom:479.383500px;}
.y1a6{bottom:480.120000px;}
.yca{bottom:482.493000px;}
.y7d{bottom:482.502000px;}
.y1af{bottom:482.842500px;}
.ye5{bottom:483.919500px;}
.y102{bottom:484.315500px;}
.y24{bottom:488.101500px;}
.y18f{bottom:489.588000px;}
.y9e{bottom:490.177500px;}
.y157{bottom:490.638000px;}
.yb1{bottom:491.422500px;}
.y43{bottom:492.876000px;}
.y12d{bottom:493.804500px;}
.y1a5{bottom:501.720000px;}
.y7c{bottom:504.102000px;}
.y1ae{bottom:504.442500px;}
.ye4{bottom:505.519500px;}
.y101{bottom:505.915500px;}
.y1d9{bottom:507.645000px;}
.yc9{bottom:507.693000px;}
.y18e{bottom:511.188000px;}
.y9d{bottom:511.777500px;}
.y146{bottom:512.238000px;}
.yb0{bottom:513.922500px;}
.y17{bottom:514.246500px;}
.y52{bottom:514.476000px;}
.y8{bottom:515.089500px;}
.y12c{bottom:515.404500px;}
.y1c3{bottom:521.449500px;}
.y1a4{bottom:523.320000px;}
.y8d{bottom:525.702000px;}
.y1ad{bottom:526.042500px;}
.ye3{bottom:527.119500px;}
.y100{bottom:527.515500px;}
.y1d8{bottom:529.245000px;}
.yd6{bottom:532.893000px;}
.y9c{bottom:533.377500px;}
.y145{bottom:533.838000px;}
.y5c{bottom:535.827000px;}
.y42{bottom:536.076000px;}
.yaf{bottom:536.422500px;}
.y12b{bottom:537.004500px;}
.y16{bottom:541.246500px;}
.y23{bottom:542.071500px;}
.y7{bottom:542.095500px;}
.y1c2{bottom:543.049500px;}
.y30{bottom:543.990000px;}
.y1a3{bottom:544.920000px;}
.y7b{bottom:547.302000px;}
.y1ac{bottom:547.642500px;}
.ye2{bottom:548.719500px;}
.yff{bottom:549.115500px;}
.y1d7{bottom:550.845000px;}
.y18d{bottom:554.388000px;}
.y9b{bottom:554.977500px;}
.y144{bottom:555.438000px;}
.y41{bottom:557.676000px;}
.yc8{bottom:558.093000px;}
.y12a{bottom:558.604500px;}
.yc1{bottom:558.922500px;}
.y1c1{bottom:564.649500px;}
.y1a2{bottom:566.520000px;}
.y15{bottom:568.246500px;}
.y7a{bottom:568.902000px;}
.y22{bottom:569.077500px;}
.y6{bottom:569.101500px;}
.y1ab{bottom:569.242500px;}
.ye1{bottom:570.319500px;}
.yfe{bottom:570.715500px;}
.y2f{bottom:570.990000px;}
.y1d6{bottom:572.445000px;}
.y18c{bottom:575.988000px;}
.y143{bottom:577.038000px;}
.y40{bottom:579.276000px;}
.y129{bottom:580.204500px;}
.yae{bottom:581.422500px;}
.yc7{bottom:583.293000px;}
.y1c0{bottom:586.249500px;}
.y1a1{bottom:588.120000px;}
.y79{bottom:590.502000px;}
.y1aa{bottom:590.842500px;}
.ye0{bottom:591.919500px;}
.y113{bottom:592.315500px;}
.y1d5{bottom:594.045000px;}
.y21{bottom:596.083500px;}
.y5{bottom:596.101500px;}
.y18b{bottom:597.588000px;}
.y2e{bottom:597.990000px;}
.y9a{bottom:598.177500px;}
.y142{bottom:598.638000px;}
.y3f{bottom:600.876000px;}
.y128{bottom:601.804500px;}
.yad{bottom:603.922500px;}
.y1bf{bottom:607.849500px;}
.yc6{bottom:608.493000px;}
.y1a0{bottom:609.720000px;}
.y78{bottom:612.102000px;}
.ydf{bottom:613.519500px;}
.yfd{bottom:613.915500px;}
.y1d4{bottom:615.645000px;}
.y18a{bottom:619.188000px;}
.y99{bottom:619.777500px;}
.y3e{bottom:622.476000px;}
.y20{bottom:623.089500px;}
.y127{bottom:623.404500px;}
.y2d{bottom:624.990000px;}
.yac{bottom:626.422500px;}
.yfc{bottom:635.515500px;}
.y98{bottom:641.377500px;}
.y3d{bottom:644.076000px;}
.y14{bottom:645.646500px;}
.yab{bottom:648.922500px;}
.y4{bottom:650.095500px;}
.y2c{bottom:651.990000px;}
.y19f{bottom:652.920000px;}
.y67{bottom:655.866000px;}
.yfb{bottom:657.115500px;}
.y8f{bottom:657.349500px;}
.y97{bottom:662.977500px;}
.y5e{bottom:665.676000px;}
.y13{bottom:672.646500px;}
.y19e{bottom:674.520000px;}
.y3{bottom:677.101500px;}
.yfa{bottom:678.715500px;}
.y2b{bottom:678.990000px;}
.y3c{bottom:687.276000px;}
.y51{bottom:692.280000px;}
.y19d{bottom:696.120000px;}
.y2{bottom:704.101500px;}
.y3b{bottom:708.876000px;}
.y19c{bottom:717.720000px;}
.y3a{bottom:730.476000px;}
.y19b{bottom:739.320000px;}
.y198{bottom:739.998000px;}
.y199{bottom:741.769500px;}
.y39{bottom:752.076000px;}
.y1be{bottom:753.010500px;}
.y173{bottom:756.255000px;}
.y172{bottom:757.005000px;}
.y185{bottom:758.742000px;}
.yc5{bottom:759.132000px;}
.y184{bottom:760.194000px;}
.y19a{bottom:760.920000px;}
.y77{bottom:762.399000px;}
.yde{bottom:763.149000px;}
.y126{bottom:767.245500px;}
.y13e{bottom:767.989500px;}
.yd9{bottom:771.498000px;}
.yd8{bottom:772.206000px;}
.yc4{bottom:773.623500px;}
.y38{bottom:773.676000px;}
.y1{bottom:782.127000px;}
.y76{bottom:784.642500px;}
.yf8{bottom:785.214000px;}
.yf7{bottom:785.784000px;}
.ydd{bottom:786.696000px;}
.y159{bottom:786.847500px;}
.y141{bottom:787.759500px;}
.y91{bottom:787.831500px;}
.yaa{bottom:788.526000px;}
.y96{bottom:789.745500px;}
.y92{bottom:793.225500px;}
.yf9{bottom:794.209500px;}
.ya9{bottom:794.919000px;}
.y15d{bottom:795.627000px;}
.ya7{bottom:796.336500px;}
.y15c{bottom:797.044500px;}
.y188{bottom:797.754000px;}
.y95{bottom:798.337500px;}
.ya8{bottom:798.462000px;}
.y189{bottom:800.587500px;}
.y53{bottom:835.704000px;}
.y4f{bottom:835.713000px;}
.y6a{bottom:835.714500px;}
.y6d{bottom:835.717500px;}
.y6f{bottom:835.720050px;}
.y66{bottom:835.720500px;}
.y71{bottom:837.448050px;}
.y1df{bottom:978.976500px;}
.hb{height:39.492188px;}
.he{height:43.277344px;}
.ha{height:46.652344px;}
.h9{height:47.390625px;}
.h7{height:49.921875px;}
.h11{height:49.957031px;}
.h12{height:50.400000px;}
.h14{height:51.264000px;}
.hf{height:54.000000px;}
.h13{height:55.160156px;}
.h4{height:58.242188px;}
.h6{height:63.000000px;}
.h5{height:68.950195px;}
.h3{height:82.740234px;}
.h8{height:233.261719px;}
.h10{height:249.785156px;}
.hd{height:252.700195px;}
.hc{height:260.929688px;}
.h15{height:264.726562px;}
.h16{height:271.968750px;}
.h2{height:275.800781px;}
.h17{height:279.914062px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x60{left:-70.157550px;}
.x0{left:0.000000px;}
.x3e{left:66.614100px;}
.x16{left:85.039350px;}
.x2{left:106.299150px;}
.x17{left:187.086000px;}
.x4a{left:273.103500px;}
.x30{left:290.728500px;}
.x4c{left:293.931000px;}
.x49{left:324.213000px;}
.x1a{left:332.512500px;}
.x27{left:337.116000px;}
.x5c{left:341.220000px;}
.x62{left:346.396500px;}
.x58{left:348.727500px;}
.x32{left:351.037500px;}
.x31{left:378.247500px;}
.x36{left:380.227500px;}
.x63{left:386.929500px;}
.x61{left:389.920500px;}
.x26{left:394.902000px;}
.x50{left:397.558500px;}
.x5d{left:399.153000px;}
.x57{left:406.044000px;}
.x37{left:410.314500px;}
.x39{left:412.707000px;}
.x38{left:414.124500px;}
.x46{left:418.758000px;}
.x2a{left:424.918500px;}
.x41{left:428.385000px;}
.xc{left:429.912000px;}
.x3c{left:433.701000px;}
.x29{left:435.025500px;}
.x47{left:436.858500px;}
.x25{left:442.735500px;}
.x2f{left:444.417000px;}
.x4f{left:446.943000px;}
.x35{left:448.759500px;}
.x2d{left:450.363000px;}
.x3f{left:455.666100px;}
.x28{left:459.301500px;}
.x59{left:460.627350px;}
.x43{left:462.375150px;}
.x18{left:463.564500px;}
.x45{left:465.613500px;}
.x1b{left:467.592000px;}
.x3d{left:469.311000px;}
.x2b{left:474.091350px;}
.x5b{left:476.752500px;}
.x33{left:479.481000px;}
.x2e{left:482.547000px;}
.x48{left:485.994000px;}
.x4d{left:492.165000px;}
.x42{left:495.354000px;}
.x19{left:503.448000px;}
.x4b{left:505.948500px;}
.x51{left:508.120500px;}
.x3a{left:511.693500px;}
.x1{left:520.866000px;}
.x55{left:521.905500px;}
.x34{left:522.997350px;}
.x56{left:525.763500px;}
.x1f{left:526.999500px;}
.x4e{left:528.250500px;}
.x1e{left:555.790500px;}
.x12{left:563.688000px;}
.x5{left:577.041000px;}
.x3b{left:583.069500px;}
.x4{left:585.090000px;}
.x3{left:589.453500px;}
.xd{left:593.505000px;}
.xb{left:598.563000px;}
.xa{left:601.813500px;}
.x23{left:652.999500px;}
.x11{left:680.314500px;}
.x1d{left:684.567000px;}
.x22{left:687.199500px;}
.x15{left:703.398000px;}
.x21{left:706.513500px;}
.x20{left:802.993500px;}
.x44{left:818.451150px;}
.x13{left:826.848000px;}
.x5a{left:836.215350px;}
.x40{left:839.048100px;}
.x8{left:1112.823000px;}
.x10{left:1124.149500px;}
.xf{left:1126.084500px;}
.xe{left:1136.232000px;}
.x9{left:1142.610000px;}
.x7{left:1146.588000px;}
.x6{left:1149.130500px;}
.x5f{left:1186.299000px;}
.x5e{left:1191.969000px;}
.x52{left:1195.653000px;}
.x53{left:1197.991500px;}
.x54{left:1199.055000px;}
.x2c{left:1202.439000px;}
.x24{left:1204.158000px;}
.x1c{left:1207.558500px;}
.x14{left:1212.214500px;}
@media print{
.v1{vertical-align:-57.152000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-27.840000pt;}
.ls3{letter-spacing:-8.352000pt;}
.lsa{letter-spacing:-6.080000pt;}
.lsd{letter-spacing:-4.224000pt;}
.ls6{letter-spacing:-3.840000pt;}
.ls9{letter-spacing:-3.456000pt;}
.lsb{letter-spacing:-3.200000pt;}
.ls2{letter-spacing:-0.896000pt;}
.ls1{letter-spacing:-0.864000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:7.225600pt;}
.ls4{letter-spacing:12.940800pt;}
.ws141{word-spacing:-77.952000pt;}
.ws0{word-spacing:-64.960000pt;}
.ws120{word-spacing:-61.760000pt;}
.ws11d{word-spacing:-58.880000pt;}
.ws12d{word-spacing:-37.120000pt;}
.ws1{word-spacing:-19.488000pt;}
.ws3{word-spacing:-18.624000pt;}
.ws4{word-spacing:-14.261333pt;}
.ws7{word-spacing:-12.992000pt;}
.ws6d{word-spacing:-12.416000pt;}
.ws1b{word-spacing:-12.352000pt;}
.ws6c{word-spacing:-12.160000pt;}
.ws5{word-spacing:-11.136000pt;}
.ws116{word-spacing:-6.912000pt;}
.wsae{word-spacing:-6.869333pt;}
.wse3{word-spacing:-6.400000pt;}
.wsa6{word-spacing:-5.674667pt;}
.wsdd{word-spacing:-5.312000pt;}
.ws138{word-spacing:-5.056000pt;}
.ws10a{word-spacing:-4.992000pt;}
.ws135{word-spacing:-4.928000pt;}
.ws115{word-spacing:-4.864000pt;}
.ws5f{word-spacing:-4.800000pt;}
.ws106{word-spacing:-4.544000pt;}
.ws85{word-spacing:-4.480000pt;}
.wse7{word-spacing:-4.416000pt;}
.ws72{word-spacing:-3.904000pt;}
.wsa9{word-spacing:-3.808000pt;}
.ws70{word-spacing:-3.520000pt;}
.ws5e{word-spacing:-3.456000pt;}
.wsfa{word-spacing:-3.392000pt;}
.wsef{word-spacing:-3.200000pt;}
.ws12e{word-spacing:-3.136000pt;}
.wsd4{word-spacing:-3.072000pt;}
.wsd3{word-spacing:-3.008000pt;}
.wsac{word-spacing:-2.986667pt;}
.ws24{word-spacing:-2.944000pt;}
.ws100{word-spacing:-2.880000pt;}
.ws132{word-spacing:-2.816000pt;}
.wscb{word-spacing:-2.752000pt;}
.ws56{word-spacing:-2.688000pt;}
.wsdc{word-spacing:-2.624000pt;}
.ws130{word-spacing:-2.560000pt;}
.ws84{word-spacing:-2.496000pt;}
.ws37{word-spacing:-2.432000pt;}
.wsb7{word-spacing:-2.368000pt;}
.ws131{word-spacing:-2.304000pt;}
.ws13e{word-spacing:-2.240000pt;}
.ws126{word-spacing:-2.176000pt;}
.ws87{word-spacing:-2.112000pt;}
.ws69{word-spacing:-2.048000pt;}
.ws62{word-spacing:-1.984000pt;}
.ws127{word-spacing:-1.920000pt;}
.ws9a{word-spacing:-1.856000pt;}
.wsb5{word-spacing:-1.792000pt;}
.ws3c{word-spacing:-1.728000pt;}
.ws5c{word-spacing:-1.600000pt;}
.ws1e{word-spacing:-1.536000pt;}
.ws32{word-spacing:-1.472000pt;}
.ws12f{word-spacing:-1.344000pt;}
.ws21{word-spacing:-1.280000pt;}
.ws6a{word-spacing:-1.216000pt;}
.wsf{word-spacing:-1.152000pt;}
.ws92{word-spacing:-1.088000pt;}
.wsaa{word-spacing:-1.045333pt;}
.ws129{word-spacing:-1.024000pt;}
.ws108{word-spacing:-0.960000pt;}
.wsb1{word-spacing:-0.832000pt;}
.wsa8{word-spacing:-0.672000pt;}
.ws81{word-spacing:-0.640000pt;}
.wsec{word-spacing:-0.576000pt;}
.ws17{word-spacing:-0.512000pt;}
.ws134{word-spacing:-0.448000pt;}
.ws10{word-spacing:-0.384000pt;}
.ws29{word-spacing:-0.346667pt;}
.ws2d{word-spacing:-0.320000pt;}
.ws3f{word-spacing:-0.256000pt;}
.ws15{word-spacing:-0.192000pt;}
.ws4a{word-spacing:-0.128000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.064000pt;}
.ws4f{word-spacing:0.256000pt;}
.ws45{word-spacing:0.320000pt;}
.ws19{word-spacing:0.448000pt;}
.ws2e{word-spacing:0.512000pt;}
.wsd2{word-spacing:0.576000pt;}
.ws4d{word-spacing:0.704000pt;}
.ws34{word-spacing:0.768000pt;}
.wsfc{word-spacing:0.832000pt;}
.ws1d{word-spacing:0.960000pt;}
.ws42{word-spacing:1.088000pt;}
.ws133{word-spacing:1.152000pt;}
.ws44{word-spacing:1.216000pt;}
.ws43{word-spacing:1.280000pt;}
.ws137{word-spacing:1.344000pt;}
.ws7d{word-spacing:1.408000pt;}
.ws13{word-spacing:1.536000pt;}
.ws39{word-spacing:1.600000pt;}
.ws4e{word-spacing:1.664000pt;}
.wsb8{word-spacing:1.728000pt;}
.wse{word-spacing:1.792000pt;}
.wscc{word-spacing:1.856000pt;}
.wsb0{word-spacing:1.920000pt;}
.ws47{word-spacing:1.984000pt;}
.wsa5{word-spacing:2.016000pt;}
.ws23{word-spacing:2.048000pt;}
.ws28{word-spacing:2.112000pt;}
.ws35{word-spacing:2.176000pt;}
.ws1f{word-spacing:2.368000pt;}
.ws82{word-spacing:2.496000pt;}
.ws49{word-spacing:2.560000pt;}
.ws31{word-spacing:2.624000pt;}
.ws125{word-spacing:2.688000pt;}
.ws94{word-spacing:2.752000pt;}
.ws114{word-spacing:2.880000pt;}
.ws40{word-spacing:2.944000pt;}
.ws118{word-spacing:3.008000pt;}
.wsa7{word-spacing:3.061333pt;}
.ws6b{word-spacing:3.072000pt;}
.ws5a{word-spacing:3.136000pt;}
.wse2{word-spacing:3.200000pt;}
.ws50{word-spacing:3.264000pt;}
.ws7a{word-spacing:3.392000pt;}
.ws107{word-spacing:3.520000pt;}
.ws97{word-spacing:3.584000pt;}
.ws60{word-spacing:3.648000pt;}
.ws4c{word-spacing:3.712000pt;}
.ws5b{word-spacing:3.776000pt;}
.ws1a{word-spacing:3.840000pt;}
.ws22{word-spacing:3.904000pt;}
.ws4b{word-spacing:3.968000pt;}
.ws79{word-spacing:4.032000pt;}
.ws9e{word-spacing:4.096000pt;}
.ws83{word-spacing:4.160000pt;}
.ws16{word-spacing:4.288000pt;}
.ws86{word-spacing:4.352000pt;}
.wsbb{word-spacing:4.416000pt;}
.ws52{word-spacing:4.544000pt;}
.ws73{word-spacing:4.608000pt;}
.wsa0{word-spacing:4.629333pt;}
.wsea{word-spacing:4.672000pt;}
.ws2c{word-spacing:4.736000pt;}
.ws41{word-spacing:4.800000pt;}
.ws36{word-spacing:4.864000pt;}
.wsc4{word-spacing:4.928000pt;}
.ws8b{word-spacing:4.992000pt;}
.ws61{word-spacing:5.056000pt;}
.ws136{word-spacing:5.120000pt;}
.ws12{word-spacing:5.184000pt;}
.ws95{word-spacing:5.248000pt;}
.ws38{word-spacing:5.312000pt;}
.ws102{word-spacing:5.376000pt;}
.wsd9{word-spacing:5.440000pt;}
.wsce{word-spacing:5.504000pt;}
.ws119{word-spacing:5.568000pt;}
.wsf4{word-spacing:5.632000pt;}
.ws27{word-spacing:5.696000pt;}
.ws67{word-spacing:5.760000pt;}
.ws48{word-spacing:5.824000pt;}
.ws33{word-spacing:5.888000pt;}
.ws10c{word-spacing:5.952000pt;}
.ws10f{word-spacing:6.016000pt;}
.ws9d{word-spacing:6.080000pt;}
.ws9f{word-spacing:6.122667pt;}
.ws53{word-spacing:6.144000pt;}
.wsd0{word-spacing:6.208000pt;}
.ws13c{word-spacing:6.272000pt;}
.wsb6{word-spacing:6.336000pt;}
.wsf2{word-spacing:6.400000pt;}
.ws58{word-spacing:6.464000pt;}
.ws9{word-spacing:6.528000pt;}
.wsc0{word-spacing:6.592000pt;}
.ws30{word-spacing:6.656000pt;}
.wsad{word-spacing:6.720000pt;}
.wsbe{word-spacing:6.784000pt;}
.ws99{word-spacing:6.848000pt;}
.wse4{word-spacing:6.912000pt;}
.wsd{word-spacing:6.976000pt;}
.wsa4{word-spacing:7.018667pt;}
.ws128{word-spacing:7.104000pt;}
.ws54{word-spacing:7.168000pt;}
.ws142{word-spacing:7.296000pt;}
.ws25{word-spacing:7.360000pt;}
.ws46{word-spacing:7.424000pt;}
.ws68{word-spacing:7.488000pt;}
.ws13a{word-spacing:7.552000pt;}
.ws90{word-spacing:7.616000pt;}
.wsc5{word-spacing:7.680000pt;}
.wse1{word-spacing:7.744000pt;}
.ws14{word-spacing:7.872000pt;}
.ws93{word-spacing:8.000000pt;}
.wsc9{word-spacing:8.064000pt;}
.ws122{word-spacing:8.128000pt;}
.ws26{word-spacing:8.256000pt;}
.wsb{word-spacing:8.320000pt;}
.wsa1{word-spacing:8.362667pt;}
.wsd6{word-spacing:8.384000pt;}
.wsc8{word-spacing:8.448000pt;}
.ws9b{word-spacing:8.576000pt;}
.wsb4{word-spacing:8.640000pt;}
.ws12c{word-spacing:8.704000pt;}
.ws101{word-spacing:8.768000pt;}
.ws11{word-spacing:8.832000pt;}
.ws105{word-spacing:8.896000pt;}
.ws71{word-spacing:8.960000pt;}
.wsc3{word-spacing:9.088000pt;}
.ws64{word-spacing:9.152000pt;}
.ws63{word-spacing:9.216000pt;}
.ws2a{word-spacing:9.344000pt;}
.wsaf{word-spacing:9.408000pt;}
.ws139{word-spacing:9.600000pt;}
.ws76{word-spacing:9.728000pt;}
.wsf3{word-spacing:9.856000pt;}
.ws13b{word-spacing:9.984000pt;}
.ws123{word-spacing:10.048000pt;}
.ws66{word-spacing:10.112000pt;}
.ws11e{word-spacing:10.176000pt;}
.ws11a{word-spacing:10.240000pt;}
.wsc{word-spacing:10.368000pt;}
.ws8{word-spacing:10.432000pt;}
.ws51{word-spacing:10.496000pt;}
.ws91{word-spacing:10.560000pt;}
.wsb9{word-spacing:10.624000pt;}
.ws77{word-spacing:10.752000pt;}
.ws88{word-spacing:10.816000pt;}
.wse9{word-spacing:10.944000pt;}
.wsb3{word-spacing:11.008000pt;}
.wsd1{word-spacing:11.072000pt;}
.wsf1{word-spacing:11.200000pt;}
.ws59{word-spacing:11.264000pt;}
.ws7e{word-spacing:11.328000pt;}
.ws96{word-spacing:11.456000pt;}
.ws13d{word-spacing:11.520000pt;}
.wse6{word-spacing:11.584000pt;}
.ws3b{word-spacing:11.648000pt;}
.ws55{word-spacing:11.712000pt;}
.ws13f{word-spacing:11.776000pt;}
.wsca{word-spacing:11.840000pt;}
.ws78{word-spacing:11.904000pt;}
.ws104{word-spacing:12.032000pt;}
.ws75{word-spacing:12.096000pt;}
.ws7f{word-spacing:12.160000pt;}
.ws109{word-spacing:12.224000pt;}
.ws80{word-spacing:12.288000pt;}
.ws5d{word-spacing:12.352000pt;}
.ws117{word-spacing:12.416000pt;}
.wsf5{word-spacing:12.480000pt;}
.ws1c{word-spacing:12.544000pt;}
.ws11c{word-spacing:12.672000pt;}
.ws57{word-spacing:12.736000pt;}
.wsa3{word-spacing:12.768000pt;}
.wsdf{word-spacing:12.800000pt;}
.ws18{word-spacing:12.928000pt;}
.ws8a{word-spacing:13.248000pt;}
.ws74{word-spacing:13.376000pt;}
.wsfd{word-spacing:13.504000pt;}
.wsf6{word-spacing:13.568000pt;}
.wsee{word-spacing:13.760000pt;}
.ws103{word-spacing:13.952000pt;}
.ws12a{word-spacing:14.016000pt;}
.ws8e{word-spacing:14.080000pt;}
.wscd{word-spacing:14.144000pt;}
.ws7c{word-spacing:14.208000pt;}
.ws98{word-spacing:14.272000pt;}
.wsc1{word-spacing:14.528000pt;}
.wsab{word-spacing:14.560000pt;}
.wsa{word-spacing:14.592000pt;}
.wsc2{word-spacing:14.720000pt;}
.ws3a{word-spacing:15.104000pt;}
.ws10e{word-spacing:15.296000pt;}
.wsbc{word-spacing:15.360000pt;}
.wsda{word-spacing:15.488000pt;}
.wsb2{word-spacing:15.616000pt;}
.ws10d{word-spacing:15.680000pt;}
.ws89{word-spacing:15.808000pt;}
.wsbf{word-spacing:16.512000pt;}
.ws3d{word-spacing:16.704000pt;}
.ws3e{word-spacing:17.024000pt;}
.wsed{word-spacing:17.088000pt;}
.wsde{word-spacing:17.408000pt;}
.ws6f{word-spacing:17.472000pt;}
.ws7b{word-spacing:17.536000pt;}
.ws113{word-spacing:17.792000pt;}
.ws8f{word-spacing:17.856000pt;}
.wsba{word-spacing:17.984000pt;}
.wse8{word-spacing:18.112000pt;}
.wscf{word-spacing:18.432000pt;}
.ws9c{word-spacing:18.624000pt;}
.ws20{word-spacing:18.816000pt;}
.ws8d{word-spacing:18.880000pt;}
.wseb{word-spacing:18.944000pt;}
.wsf7{word-spacing:19.072000pt;}
.wse0{word-spacing:19.264000pt;}
.ws65{word-spacing:19.776000pt;}
.ws2b{word-spacing:19.840000pt;}
.ws6e{word-spacing:20.288000pt;}
.ws11b{word-spacing:20.352000pt;}
.ws12b{word-spacing:20.416000pt;}
.ws140{word-spacing:20.800000pt;}
.wsdb{word-spacing:20.992000pt;}
.wsf9{word-spacing:21.376000pt;}
.ws112{word-spacing:21.504000pt;}
.wsff{word-spacing:21.696000pt;}
.wsd8{word-spacing:22.080000pt;}
.wsa2{word-spacing:22.624000pt;}
.ws124{word-spacing:23.040000pt;}
.ws110{word-spacing:23.168000pt;}
.wsd5{word-spacing:23.232000pt;}
.wsf0{word-spacing:23.360000pt;}
.wsf8{word-spacing:23.680000pt;}
.wsd7{word-spacing:24.192000pt;}
.wsbd{word-spacing:24.512000pt;}
.wse5{word-spacing:25.280000pt;}
.ws121{word-spacing:25.344000pt;}
.ws8c{word-spacing:25.472000pt;}
.ws10b{word-spacing:26.688000pt;}
.wsfe{word-spacing:27.648000pt;}
.wsc6{word-spacing:27.968000pt;}
.ws111{word-spacing:30.144000pt;}
.ws11f{word-spacing:31.936000pt;}
.wsc7{word-spacing:33.344000pt;}
.wsfb{word-spacing:49.856000pt;}
._11{margin-left:-28.448000pt;}
._f{margin-left:-16.288000pt;}
._d{margin-left:-11.827200pt;}
._10{margin-left:-10.636800pt;}
._c{margin-left:-9.254400pt;}
._5{margin-left:-6.869333pt;}
._a{margin-left:-5.715200pt;}
._0{margin-left:-4.512000pt;}
._4{margin-left:-2.956800pt;}
._2{margin-left:-1.689600pt;}
._1{width:1.088000pt;}
._6{width:2.352000pt;}
._9{width:3.636267pt;}
._13{width:4.544000pt;}
._b{width:5.548800pt;}
._8{width:7.689600pt;}
._7{width:8.812800pt;}
._17{width:15.385600pt;}
._e{width:21.056000pt;}
._15{width:26.848000pt;}
._16{width:28.160000pt;}
._14{width:29.376000pt;}
._3{width:42.634667pt;}
._12{width:1260.019200pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:320.000000pt;}
.fs7{font-size:346.666667pt;}
.fs6{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:33.846667pt;}
.y69{bottom:33.849333pt;}
.y6c{bottom:33.852000pt;}
.y50{bottom:33.854267pt;}
.y5d{bottom:33.854400pt;}
.y56{bottom:33.854667pt;}
.y1dc{bottom:33.856000pt;}
.y195{bottom:33.861333pt;}
.y1e3{bottom:39.819600pt;}
.y16f{bottom:48.134667pt;}
.y1e2{bottom:59.019600pt;}
.y16e{bottom:67.334667pt;}
.y54{bottom:82.070133pt;}
.y112{bottom:84.902667pt;}
.y16d{bottom:86.534667pt;}
.y123{bottom:88.822667pt;}
.yc0{bottom:96.820000pt;}
.y181{bottom:98.610667pt;}
.y1d3{bottom:98.710667pt;}
.y8c{bottom:102.490667pt;}
.yf5{bottom:103.750667pt;}
.y111{bottom:104.102667pt;}
.y16c{bottom:105.734667pt;}
.y122{bottom:108.022667pt;}
.y156{bottom:109.722667pt;}
.y1db{bottom:111.712000pt;}
.ybf{bottom:116.820000pt;}
.y180{bottom:117.810667pt;}
.y1d2{bottom:117.910667pt;}
.y8b{bottom:121.690667pt;}
.yf4{bottom:122.950667pt;}
.y110{bottom:123.302667pt;}
.y121{bottom:127.222667pt;}
.y155{bottom:128.922667pt;}
.y6e{bottom:130.912000pt;}
.y13b{bottom:131.737333pt;}
.y17f{bottom:137.010667pt;}
.y1d1{bottom:137.110667pt;}
.yd5{bottom:137.682667pt;}
.y8a{bottom:140.890667pt;}
.y1bc{bottom:141.193333pt;}
.yf3{bottom:142.150667pt;}
.y115{bottom:142.502667pt;}
.y16b{bottom:144.134667pt;}
.y154{bottom:148.122667pt;}
.y63{bottom:150.112000pt;}
.y13a{bottom:150.937333pt;}
.y1d0{bottom:156.310667pt;}
.ybe{bottom:156.820000pt;}
.y70{bottom:157.260000pt;}
.yd4{bottom:160.082667pt;}
.y89{bottom:160.090667pt;}
.y1bb{bottom:160.393333pt;}
.yf2{bottom:161.350667pt;}
.y10f{bottom:161.702667pt;}
.y16a{bottom:163.334667pt;}
.y120{bottom:165.622667pt;}
.y153{bottom:167.322667pt;}
.y62{bottom:169.312000pt;}
.y12{bottom:169.852000pt;}
.y139{bottom:170.137333pt;}
.y1f{bottom:170.530667pt;}
.y17e{bottom:175.410667pt;}
.ybd{bottom:176.820000pt;}
.y55{bottom:177.854667pt;}
.y8e{bottom:179.290667pt;}
.y1ba{bottom:179.593333pt;}
.yf1{bottom:180.550667pt;}
.y10e{bottom:180.902667pt;}
.yd3{bottom:182.482667pt;}
.y169{bottom:182.534667pt;}
.y11f{bottom:184.822667pt;}
.y152{bottom:186.522667pt;}
.y61{bottom:188.512000pt;}
.y138{bottom:189.337333pt;}
.y37{bottom:193.626667pt;}
.y1da{bottom:193.822667pt;}
.y2a{bottom:193.852000pt;}
.y11{bottom:193.857333pt;}
.y1e{bottom:194.530667pt;}
.y17d{bottom:194.610667pt;}
.y1cf{bottom:194.710667pt;}
.ybc{bottom:196.820000pt;}
.y88{bottom:198.490667pt;}
.y1b9{bottom:198.793333pt;}
.yf0{bottom:199.750667pt;}
.y10d{bottom:200.102667pt;}
.y168{bottom:201.734667pt;}
.y11e{bottom:204.022667pt;}
.yd2{bottom:204.882667pt;}
.y151{bottom:205.722667pt;}
.y60{bottom:207.712000pt;}
.y137{bottom:208.537333pt;}
.y64{bottom:210.708000pt;}
.y17c{bottom:213.810667pt;}
.y1ce{bottom:213.910667pt;}
.ybb{bottom:216.820000pt;}
.y36{bottom:217.626667pt;}
.y87{bottom:217.690667pt;}
.y29{bottom:217.857333pt;}
.y10{bottom:217.862667pt;}
.y1b8{bottom:217.993333pt;}
.y1d{bottom:218.530667pt;}
.yef{bottom:218.950667pt;}
.y10c{bottom:219.302667pt;}
.y167{bottom:220.934667pt;}
.y11d{bottom:223.222667pt;}
.y158{bottom:224.922667pt;}
.y4e{bottom:225.268000pt;}
.y4d{bottom:226.912000pt;}
.yd1{bottom:227.282667pt;}
.y136{bottom:227.737333pt;}
.y17b{bottom:233.010667pt;}
.y1cd{bottom:233.110667pt;}
.yba{bottom:236.820000pt;}
.y86{bottom:236.890667pt;}
.y1b7{bottom:237.193333pt;}
.yee{bottom:238.150667pt;}
.y10b{bottom:238.502667pt;}
.y166{bottom:240.134667pt;}
.y35{bottom:241.626667pt;}
.y28{bottom:241.862667pt;}
.yf{bottom:241.868000pt;}
.y11c{bottom:242.422667pt;}
.y1c{bottom:242.530667pt;}
.y150{bottom:244.122667pt;}
.y4c{bottom:246.112000pt;}
.y135{bottom:246.937333pt;}
.yd0{bottom:249.682667pt;}
.y17a{bottom:252.210667pt;}
.y1cc{bottom:252.310667pt;}
.y85{bottom:256.090667pt;}
.y1b6{bottom:256.393333pt;}
.yb9{bottom:256.820000pt;}
.yed{bottom:257.350667pt;}
.y10a{bottom:257.702667pt;}
.y165{bottom:259.334667pt;}
.y6b{bottom:261.372000pt;}
.ya6{bottom:262.913333pt;}
.y14f{bottom:263.322667pt;}
.y4b{bottom:265.312000pt;}
.y34{bottom:265.626667pt;}
.ye{bottom:265.868000pt;}
.y13d{bottom:266.137333pt;}
.y65{bottom:267.662667pt;}
.y1cb{bottom:271.510667pt;}
.y84{bottom:275.290667pt;}
.yec{bottom:276.550667pt;}
.yb8{bottom:276.820000pt;}
.y109{bottom:276.902667pt;}
.y164{bottom:278.534667pt;}
.y11b{bottom:280.822667pt;}
.ya5{bottom:282.113333pt;}
.y14e{bottom:282.522667pt;}
.y5f{bottom:284.512000pt;}
.y134{bottom:285.337333pt;}
.y27{bottom:289.868000pt;}
.y179{bottom:290.610667pt;}
.y1ca{bottom:290.710667pt;}
.ycf{bottom:294.482667pt;}
.y83{bottom:294.490667pt;}
.y1b5{bottom:294.793333pt;}
.yeb{bottom:295.750667pt;}
.y114{bottom:296.102667pt;}
.y11a{bottom:300.022667pt;}
.ya4{bottom:301.313333pt;}
.y14d{bottom:301.722667pt;}
.y4a{bottom:303.712000pt;}
.y133{bottom:304.537333pt;}
.y178{bottom:309.810667pt;}
.y1c9{bottom:309.910667pt;}
.y1e1{bottom:310.918667pt;}
.y1b{bottom:311.870667pt;}
.y33{bottom:313.626667pt;}
.y82{bottom:313.690667pt;}
.yd{bottom:313.852000pt;}
.y1b4{bottom:313.993333pt;}
.yf6{bottom:314.950667pt;}
.y108{bottom:315.302667pt;}
.yb7{bottom:316.820000pt;}
.yce{bottom:316.882667pt;}
.y163{bottom:316.934667pt;}
.y119{bottom:319.222667pt;}
.y68{bottom:319.721333pt;}
.y194{bottom:319.989333pt;}
.ya3{bottom:320.513333pt;}
.y14c{bottom:320.922667pt;}
.y49{bottom:322.912000pt;}
.y132{bottom:323.737333pt;}
.y177{bottom:329.010667pt;}
.y1b3{bottom:333.193333pt;}
.yea{bottom:334.150667pt;}
.y107{bottom:334.502667pt;}
.y1a{bottom:335.870667pt;}
.y162{bottom:336.134667pt;}
.yb6{bottom:336.820000pt;}
.yc{bottom:337.857333pt;}
.y26{bottom:337.868000pt;}
.y118{bottom:338.422667pt;}
.y193{bottom:339.189333pt;}
.ycd{bottom:339.282667pt;}
.y14b{bottom:340.122667pt;}
.y48{bottom:342.112000pt;}
.y131{bottom:342.937333pt;}
.y176{bottom:348.210667pt;}
.y1c8{bottom:348.310667pt;}
.y81{bottom:352.090667pt;}
.y1b2{bottom:352.393333pt;}
.ye9{bottom:353.350667pt;}
.y106{bottom:353.702667pt;}
.y161{bottom:355.334667pt;}
.y94{bottom:355.744000pt;}
.yb5{bottom:356.820000pt;}
.ydc{bottom:357.332000pt;}
.y117{bottom:357.622667pt;}
.y187{bottom:357.912000pt;}
.y192{bottom:358.389333pt;}
.ya2{bottom:358.913333pt;}
.y140{bottom:359.082667pt;}
.y14a{bottom:359.322667pt;}
.y197{bottom:359.709333pt;}
.y171{bottom:359.838667pt;}
.y19{bottom:359.870667pt;}
.y47{bottom:361.312000pt;}
.ycc{bottom:361.682667pt;}
.yb{bottom:361.862667pt;}
.y130{bottom:362.137333pt;}
.y15b{bottom:365.029333pt;}
.y175{bottom:367.410667pt;}
.y1c7{bottom:367.510667pt;}
.yc3{bottom:368.342667pt;}
.yda{bottom:368.809333pt;}
.y1a9{bottom:369.173333pt;}
.y80{bottom:371.290667pt;}
.y1b1{bottom:371.593333pt;}
.ye8{bottom:372.550667pt;}
.y105{bottom:372.902667pt;}
.y1dd{bottom:373.848000pt;}
.y125{bottom:374.012000pt;}
.y1de{bottom:374.125333pt;}
.y160{bottom:374.534667pt;}
.y73{bottom:376.368000pt;}
.yb4{bottom:376.820000pt;}
.y5b{bottom:377.186667pt;}
.y191{bottom:377.589333pt;}
.y58{bottom:377.790667pt;}
.ya1{bottom:378.113333pt;}
.y149{bottom:378.522667pt;}
.y183{bottom:378.862667pt;}
.y46{bottom:380.512000pt;}
.y12f{bottom:381.337333pt;}
.y18{bottom:383.870667pt;}
.yd7{bottom:384.082667pt;}
.y75{bottom:384.684000pt;}
.ydb{bottom:385.321333pt;}
.y32{bottom:385.626667pt;}
.y25{bottom:385.862667pt;}
.ya{bottom:385.868000pt;}
.y174{bottom:386.610667pt;}
.y1c6{bottom:386.710667pt;}
.y13f{bottom:387.072000pt;}
.y196{bottom:387.698667pt;}
.y93{bottom:387.744000pt;}
.y170{bottom:387.828000pt;}
.y1a8{bottom:388.373333pt;}
.y186{bottom:389.912000pt;}
.y7f{bottom:390.490667pt;}
.y1b0{bottom:390.793333pt;}
.ye7{bottom:391.750667pt;}
.y104{bottom:392.102667pt;}
.y15f{bottom:393.734667pt;}
.y116{bottom:396.022667pt;}
.y5a{bottom:396.386667pt;}
.yb3{bottom:396.820000pt;}
.ya0{bottom:397.313333pt;}
.y148{bottom:397.722667pt;}
.y45{bottom:399.712000pt;}
.y13c{bottom:400.537333pt;}
.y1bd{bottom:402.726667pt;}
.y124{bottom:403.068000pt;}
.yc2{bottom:403.602667pt;}
.y1c5{bottom:405.910667pt;}
.ycb{bottom:406.482667pt;}
.y72{bottom:407.090667pt;}
.y15a{bottom:407.156000pt;}
.y182{bottom:407.381333pt;}
.y1a7{bottom:407.573333pt;}
.y31{bottom:409.626667pt;}
.y57{bottom:409.648000pt;}
.y7e{bottom:409.690667pt;}
.y9{bottom:409.868000pt;}
.ye6{bottom:410.950667pt;}
.y103{bottom:411.302667pt;}
.y74{bottom:412.673333pt;}
.y15e{bottom:412.934667pt;}
.y59{bottom:415.586667pt;}
.y190{bottom:415.989333pt;}
.y9f{bottom:416.513333pt;}
.yb2{bottom:416.820000pt;}
.y147{bottom:416.922667pt;}
.y44{bottom:418.912000pt;}
.y12e{bottom:419.737333pt;}
.y1c4{bottom:425.110667pt;}
.y1e0{bottom:426.118667pt;}
.y1a6{bottom:426.773333pt;}
.yca{bottom:428.882667pt;}
.y7d{bottom:428.890667pt;}
.y1af{bottom:429.193333pt;}
.ye5{bottom:430.150667pt;}
.y102{bottom:430.502667pt;}
.y24{bottom:433.868000pt;}
.y18f{bottom:435.189333pt;}
.y9e{bottom:435.713333pt;}
.y157{bottom:436.122667pt;}
.yb1{bottom:436.820000pt;}
.y43{bottom:438.112000pt;}
.y12d{bottom:438.937333pt;}
.y1a5{bottom:445.973333pt;}
.y7c{bottom:448.090667pt;}
.y1ae{bottom:448.393333pt;}
.ye4{bottom:449.350667pt;}
.y101{bottom:449.702667pt;}
.y1d9{bottom:451.240000pt;}
.yc9{bottom:451.282667pt;}
.y18e{bottom:454.389333pt;}
.y9d{bottom:454.913333pt;}
.y146{bottom:455.322667pt;}
.yb0{bottom:456.820000pt;}
.y17{bottom:457.108000pt;}
.y52{bottom:457.312000pt;}
.y8{bottom:457.857333pt;}
.y12c{bottom:458.137333pt;}
.y1c3{bottom:463.510667pt;}
.y1a4{bottom:465.173333pt;}
.y8d{bottom:467.290667pt;}
.y1ad{bottom:467.593333pt;}
.ye3{bottom:468.550667pt;}
.y100{bottom:468.902667pt;}
.y1d8{bottom:470.440000pt;}
.yd6{bottom:473.682667pt;}
.y9c{bottom:474.113333pt;}
.y145{bottom:474.522667pt;}
.y5c{bottom:476.290667pt;}
.y42{bottom:476.512000pt;}
.yaf{bottom:476.820000pt;}
.y12b{bottom:477.337333pt;}
.y16{bottom:481.108000pt;}
.y23{bottom:481.841333pt;}
.y7{bottom:481.862667pt;}
.y1c2{bottom:482.710667pt;}
.y30{bottom:483.546667pt;}
.y1a3{bottom:484.373333pt;}
.y7b{bottom:486.490667pt;}
.y1ac{bottom:486.793333pt;}
.ye2{bottom:487.750667pt;}
.yff{bottom:488.102667pt;}
.y1d7{bottom:489.640000pt;}
.y18d{bottom:492.789333pt;}
.y9b{bottom:493.313333pt;}
.y144{bottom:493.722667pt;}
.y41{bottom:495.712000pt;}
.yc8{bottom:496.082667pt;}
.y12a{bottom:496.537333pt;}
.yc1{bottom:496.820000pt;}
.y1c1{bottom:501.910667pt;}
.y1a2{bottom:503.573333pt;}
.y15{bottom:505.108000pt;}
.y7a{bottom:505.690667pt;}
.y22{bottom:505.846667pt;}
.y6{bottom:505.868000pt;}
.y1ab{bottom:505.993333pt;}
.ye1{bottom:506.950667pt;}
.yfe{bottom:507.302667pt;}
.y2f{bottom:507.546667pt;}
.y1d6{bottom:508.840000pt;}
.y18c{bottom:511.989333pt;}
.y143{bottom:512.922667pt;}
.y40{bottom:514.912000pt;}
.y129{bottom:515.737333pt;}
.yae{bottom:516.820000pt;}
.yc7{bottom:518.482667pt;}
.y1c0{bottom:521.110667pt;}
.y1a1{bottom:522.773333pt;}
.y79{bottom:524.890667pt;}
.y1aa{bottom:525.193333pt;}
.ye0{bottom:526.150667pt;}
.y113{bottom:526.502667pt;}
.y1d5{bottom:528.040000pt;}
.y21{bottom:529.852000pt;}
.y5{bottom:529.868000pt;}
.y18b{bottom:531.189333pt;}
.y2e{bottom:531.546667pt;}
.y9a{bottom:531.713333pt;}
.y142{bottom:532.122667pt;}
.y3f{bottom:534.112000pt;}
.y128{bottom:534.937333pt;}
.yad{bottom:536.820000pt;}
.y1bf{bottom:540.310667pt;}
.yc6{bottom:540.882667pt;}
.y1a0{bottom:541.973333pt;}
.y78{bottom:544.090667pt;}
.ydf{bottom:545.350667pt;}
.yfd{bottom:545.702667pt;}
.y1d4{bottom:547.240000pt;}
.y18a{bottom:550.389333pt;}
.y99{bottom:550.913333pt;}
.y3e{bottom:553.312000pt;}
.y20{bottom:553.857333pt;}
.y127{bottom:554.137333pt;}
.y2d{bottom:555.546667pt;}
.yac{bottom:556.820000pt;}
.yfc{bottom:564.902667pt;}
.y98{bottom:570.113333pt;}
.y3d{bottom:572.512000pt;}
.y14{bottom:573.908000pt;}
.yab{bottom:576.820000pt;}
.y4{bottom:577.862667pt;}
.y2c{bottom:579.546667pt;}
.y19f{bottom:580.373333pt;}
.y67{bottom:582.992000pt;}
.yfb{bottom:584.102667pt;}
.y8f{bottom:584.310667pt;}
.y97{bottom:589.313333pt;}
.y5e{bottom:591.712000pt;}
.y13{bottom:597.908000pt;}
.y19e{bottom:599.573333pt;}
.y3{bottom:601.868000pt;}
.yfa{bottom:603.302667pt;}
.y2b{bottom:603.546667pt;}
.y3c{bottom:610.912000pt;}
.y51{bottom:615.360000pt;}
.y19d{bottom:618.773333pt;}
.y2{bottom:625.868000pt;}
.y3b{bottom:630.112000pt;}
.y19c{bottom:637.973333pt;}
.y3a{bottom:649.312000pt;}
.y19b{bottom:657.173333pt;}
.y198{bottom:657.776000pt;}
.y199{bottom:659.350667pt;}
.y39{bottom:668.512000pt;}
.y1be{bottom:669.342667pt;}
.y173{bottom:672.226667pt;}
.y172{bottom:672.893333pt;}
.y185{bottom:674.437333pt;}
.yc5{bottom:674.784000pt;}
.y184{bottom:675.728000pt;}
.y19a{bottom:676.373333pt;}
.y77{bottom:677.688000pt;}
.yde{bottom:678.354667pt;}
.y126{bottom:681.996000pt;}
.y13e{bottom:682.657333pt;}
.yd9{bottom:685.776000pt;}
.yd8{bottom:686.405333pt;}
.yc4{bottom:687.665333pt;}
.y38{bottom:687.712000pt;}
.y1{bottom:695.224000pt;}
.y76{bottom:697.460000pt;}
.yf8{bottom:697.968000pt;}
.yf7{bottom:698.474667pt;}
.ydd{bottom:699.285333pt;}
.y159{bottom:699.420000pt;}
.y141{bottom:700.230667pt;}
.y91{bottom:700.294667pt;}
.yaa{bottom:700.912000pt;}
.y96{bottom:701.996000pt;}
.y92{bottom:705.089333pt;}
.yf9{bottom:705.964000pt;}
.ya9{bottom:706.594667pt;}
.y15d{bottom:707.224000pt;}
.ya7{bottom:707.854667pt;}
.y15c{bottom:708.484000pt;}
.y188{bottom:709.114667pt;}
.y95{bottom:709.633333pt;}
.ya8{bottom:709.744000pt;}
.y189{bottom:711.633333pt;}
.y53{bottom:742.848000pt;}
.y4f{bottom:742.856000pt;}
.y6a{bottom:742.857333pt;}
.y6d{bottom:742.860000pt;}
.y6f{bottom:742.862267pt;}
.y66{bottom:742.862667pt;}
.y71{bottom:744.398267pt;}
.y1df{bottom:870.201333pt;}
.hb{height:35.104167pt;}
.he{height:38.468750pt;}
.ha{height:41.468750pt;}
.h9{height:42.125000pt;}
.h7{height:44.375000pt;}
.h11{height:44.406250pt;}
.h12{height:44.800000pt;}
.h14{height:45.568000pt;}
.hf{height:48.000000pt;}
.h13{height:49.031250pt;}
.h4{height:51.770833pt;}
.h6{height:56.000000pt;}
.h5{height:61.289062pt;}
.h3{height:73.546875pt;}
.h8{height:207.343750pt;}
.h10{height:222.031250pt;}
.hd{height:224.622396pt;}
.hc{height:231.937500pt;}
.h15{height:235.312500pt;}
.h16{height:241.750000pt;}
.h2{height:245.156250pt;}
.h17{height:248.812500pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x60{left:-62.362267pt;}
.x0{left:0.000000pt;}
.x3e{left:59.212533pt;}
.x16{left:75.590533pt;}
.x2{left:94.488133pt;}
.x17{left:166.298667pt;}
.x4a{left:242.758667pt;}
.x30{left:258.425333pt;}
.x4c{left:261.272000pt;}
.x49{left:288.189333pt;}
.x1a{left:295.566667pt;}
.x27{left:299.658667pt;}
.x5c{left:303.306667pt;}
.x62{left:307.908000pt;}
.x58{left:309.980000pt;}
.x32{left:312.033333pt;}
.x31{left:336.220000pt;}
.x36{left:337.980000pt;}
.x63{left:343.937333pt;}
.x61{left:346.596000pt;}
.x26{left:351.024000pt;}
.x50{left:353.385333pt;}
.x5d{left:354.802667pt;}
.x57{left:360.928000pt;}
.x37{left:364.724000pt;}
.x39{left:366.850667pt;}
.x38{left:368.110667pt;}
.x46{left:372.229333pt;}
.x2a{left:377.705333pt;}
.x41{left:380.786667pt;}
.xc{left:382.144000pt;}
.x3c{left:385.512000pt;}
.x29{left:386.689333pt;}
.x47{left:388.318667pt;}
.x25{left:393.542667pt;}
.x2f{left:395.037333pt;}
.x4f{left:397.282667pt;}
.x35{left:398.897333pt;}
.x2d{left:400.322667pt;}
.x3f{left:405.036533pt;}
.x28{left:408.268000pt;}
.x59{left:409.446533pt;}
.x43{left:411.000133pt;}
.x18{left:412.057333pt;}
.x45{left:413.878667pt;}
.x1b{left:415.637333pt;}
.x3d{left:417.165333pt;}
.x2b{left:421.414533pt;}
.x5b{left:423.780000pt;}
.x33{left:426.205333pt;}
.x2e{left:428.930667pt;}
.x48{left:431.994667pt;}
.x4d{left:437.480000pt;}
.x42{left:440.314667pt;}
.x19{left:447.509333pt;}
.x4b{left:449.732000pt;}
.x51{left:451.662667pt;}
.x3a{left:454.838667pt;}
.x1{left:462.992000pt;}
.x55{left:463.916000pt;}
.x34{left:464.886533pt;}
.x56{left:467.345333pt;}
.x1f{left:468.444000pt;}
.x4e{left:469.556000pt;}
.x1e{left:494.036000pt;}
.x12{left:501.056000pt;}
.x5{left:512.925333pt;}
.x3b{left:518.284000pt;}
.x4{left:520.080000pt;}
.x3{left:523.958667pt;}
.xd{left:527.560000pt;}
.xb{left:532.056000pt;}
.xa{left:534.945333pt;}
.x23{left:580.444000pt;}
.x11{left:604.724000pt;}
.x1d{left:608.504000pt;}
.x22{left:610.844000pt;}
.x15{left:625.242667pt;}
.x21{left:628.012000pt;}
.x20{left:713.772000pt;}
.x44{left:727.512133pt;}
.x13{left:734.976000pt;}
.x5a{left:743.302533pt;}
.x40{left:745.820533pt;}
.x8{left:989.176000pt;}
.x10{left:999.244000pt;}
.xf{left:1000.964000pt;}
.xe{left:1009.984000pt;}
.x9{left:1015.653333pt;}
.x7{left:1019.189333pt;}
.x6{left:1021.449333pt;}
.x5f{left:1054.488000pt;}
.x5e{left:1059.528000pt;}
.x52{left:1062.802667pt;}
.x53{left:1064.881333pt;}
.x54{left:1065.826667pt;}
.x2c{left:1068.834667pt;}
.x24{left:1070.362667pt;}
.x1c{left:1073.385333pt;}
.x14{left:1077.524000pt;}
}




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