
    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_4a7cca462024becbf481c7df.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907715;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_d92d25c7041809fffef2a3d1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b4e8d0540653878010ff109e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d1f89fdbea2ff0da55a2b530.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_904bb3f2fe3554e03189d17f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fd6161dfe25416fd5e675bb0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.716000;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_793718ff91a84283ba8f5e27.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_0829a9ff5a87a07d40ec688f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920000;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_a8fdd292bf9b22610424aec5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922000;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a76c9cdcc3d30187f7bbb832.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999000;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_5a093dd7c1f20810011c6dbf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.920000;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f418188f176bf92a658bf91e.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ca2e6d024ee09da90b8adea2.woff2')format("woff");}.fff{font-family:fff;line-height:0.922000;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_be9b54a6d078c70cab02dc9b.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d645314b8c55fc1690aa7f21.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.364258;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_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.907715;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_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922000;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_8d8a7ecd61ce67ebea0af102.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_454fd1b2ee66908372473bf2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.716000;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_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.907715;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_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.922000;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_6bf71f1cebe5ffdbfb951408.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_25575d6c3ea5bc5ad3591605.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.819000;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_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.907715;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_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.922000;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_1df97e90b73500705aabd01d.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_723118e6e7122ab5a1c66898.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.716000;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_a703f9962a330394280b551b.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.910000;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_debd151c8f0c81afb9643345.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.704000;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_9633694b0f465cccb1603016.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.664000;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_5d31f48c4c2c3092900c1b59.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.482000;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_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.907715;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_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.922000;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_6bf71f1cebe5ffdbfb951408.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_25575d6c3ea5bc5ad3591605.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.819000;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_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.907715;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_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.922000;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_1df97e90b73500705aabd01d.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_723118e6e7122ab5a1c66898.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.716000;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_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.907715;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_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.922000;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_54f6403cdd740e53aea9c51e.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_c14461ee882bdf3b176bf580.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.819000;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_0b28c42b61ab496cd5162fcf.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.899000;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_1894c62054770d414954ef55.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.919000;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_a621f29ddfa07cec84525116.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.907715;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_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.922000;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_0d832ca47c428758e43e3e69.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_cf5cb96270f0f535b61b4823.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.716000;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_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.907715;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_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.922000;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_449eb69cedd2138170b01031.woff2')format("woff");}.ff47{font-family:ff47;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:ff48;src:url('chunks/assets/font_8cc17843cf5f574f90ce15b6.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.819000;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:ff49;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.907715;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:ff4a;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff4a{font-family:ff4a;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:ff4b;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff4b{font-family:ff4b;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:ff4c;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.922000;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:ff4d;src:url('chunks/assets/font_0d832ca47c428758e43e3e69.woff2')format("woff");}.ff4d{font-family:ff4d;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:ff4e;src:url('chunks/assets/font_cf5cb96270f0f535b61b4823.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.716000;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);}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.980000px;}
.v2{vertical-align:21.690000px;}
.lsb{letter-spacing:-0.338030px;}
.ls9{letter-spacing:-0.089291px;}
.lsa{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.003688px;}
.lsc{letter-spacing:0.038268px;}
.ls5{letter-spacing:0.094215px;}
.ls4{letter-spacing:0.094827px;}
.ls1{letter-spacing:0.242361px;}
.ls0{letter-spacing:0.612281px;}
.ls2{letter-spacing:0.666417px;}
.ls3{letter-spacing:0.694290px;}
.ls2e{letter-spacing:1.804082px;}
.ls22{letter-spacing:2.983842px;}
.ls20{letter-spacing:2.988655px;}
.ls21{letter-spacing:2.989842px;}
.ls25{letter-spacing:13.282672px;}
.ls18{letter-spacing:13.950343px;}
.ls13{letter-spacing:14.343000px;}
.lsf{letter-spacing:14.809313px;}
.ls24{letter-spacing:16.266655px;}
.ls1f{letter-spacing:16.600672px;}
.ls28{letter-spacing:16.677000px;}
.ls27{letter-spacing:16.678062px;}
.ls2a{letter-spacing:17.451000px;}
.ls2d{letter-spacing:17.813904px;}
.ls17{letter-spacing:18.396152px;}
.ls1d{letter-spacing:18.407236px;}
.ls14{letter-spacing:19.185000px;}
.ls1e{letter-spacing:19.590655px;}
.ls8{letter-spacing:19.689343px;}
.ls16{letter-spacing:19.743343px;}
.ls29{letter-spacing:19.850639px;}
.ls15{letter-spacing:19.905000px;}
.ls1b{letter-spacing:19.965000px;}
.ls6{letter-spacing:24.765566px;}
.ls2b{letter-spacing:25.167000px;}
.ls19{letter-spacing:25.212913px;}
.ls1a{letter-spacing:25.291672px;}
.ls2c{letter-spacing:26.840322px;}
.ls12{letter-spacing:27.151520px;}
.ls1c{letter-spacing:27.958500px;}
.lsd{letter-spacing:28.506157px;}
.ls11{letter-spacing:30.073672px;}
.ls10{letter-spacing:30.152729px;}
.ls7{letter-spacing:30.699243px;}
.lse{letter-spacing:32.535343px;}
.ls26{letter-spacing:483.702655px;}
.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;}
}
.ws0{word-spacing:-48.485022px;}
.ws1{word-spacing:-48.000300px;}
.ws11b{word-spacing:-38.939389px;}
.ws157{word-spacing:-16.606328px;}
.ws1a9{word-spacing:-15.279257px;}
.ws202{word-spacing:-3.311881px;}
.ws90{word-spacing:-3.276193px;}
.ws1ab{word-spacing:-3.275536px;}
.ws113{word-spacing:-3.156697px;}
.ws196{word-spacing:-3.156099px;}
.ws236{word-spacing:-3.096500px;}
.ws148{word-spacing:-3.036722px;}
.ws2a0{word-spacing:-2.976944px;}
.wsc4{word-spacing:-2.857388px;}
.ws86{word-spacing:-2.677995px;}
.wsdb{word-spacing:-2.677935px;}
.wsbf{word-spacing:-2.618516px;}
.wse2{word-spacing:-2.498541px;}
.ws184{word-spacing:-2.379164px;}
.ws186{word-spacing:-2.379105px;}
.ws185{word-spacing:-2.319386px;}
.wsab{word-spacing:-2.279978px;}
.wsac{word-spacing:-2.259728px;}
.ws286{word-spacing:-2.259608px;}
.ws7d{word-spacing:-2.199711px;}
.ws15d{word-spacing:-2.080334px;}
.ws1cf{word-spacing:-1.900940px;}
.ws81{word-spacing:-1.841521px;}
.ws74{word-spacing:-1.840923px;}
.ws80{word-spacing:-1.781564px;}
.ws27c{word-spacing:-1.781444px;}
.ws1b1{word-spacing:-1.721606px;}
.wse4{word-spacing:-1.721547px;}
.ws136{word-spacing:-1.661530px;}
.wsb1{word-spacing:-1.422716px;}
.ws8f{word-spacing:-1.303340px;}
.wsc9{word-spacing:-1.183306px;}
.ws62{word-spacing:-1.167161px;}
.ws27f{word-spacing:-1.159693px;}
.ws281{word-spacing:-1.123946px;}
.wsb7{word-spacing:-1.123886px;}
.ws6e{word-spacing:-1.064048px;}
.ws115{word-spacing:-1.063929px;}
.ws5d{word-spacing:-1.020469px;}
.ws61{word-spacing:-1.001335px;}
.ws2aa{word-spacing:-0.920761px;}
.ws190{word-spacing:-0.825116px;}
.ws1dc{word-spacing:-0.820766px;}
.ws1b8{word-spacing:-0.801025px;}
.ws126{word-spacing:-0.765099px;}
.ws9f{word-spacing:-0.705679px;}
.ws19a{word-spacing:-0.681469px;}
.ws231{word-spacing:-0.645662px;}
.ws5b{word-spacing:-0.612281px;}
.wsa4{word-spacing:-0.585705px;}
.wsa3{word-spacing:-0.526345px;}
.ws5e{word-spacing:-0.503856px;}
.ws177{word-spacing:-0.466328px;}
.wsbd{word-spacing:-0.466268px;}
.ws63{word-spacing:-0.465589px;}
.ws117{word-spacing:-0.406311px;}
.ws79{word-spacing:-0.406251px;}
.ws299{word-spacing:-0.363428px;}
.wsd4{word-spacing:-0.286934px;}
.ws283{word-spacing:-0.263023px;}
.ws284{word-spacing:-0.227156px;}
.ws161{word-spacing:-0.226917px;}
.ws244{word-spacing:-0.167378px;}
.ws33{word-spacing:-0.048121px;}
.ws78{word-spacing:-0.048062px;}
.ws1b2{word-spacing:-0.047822px;}
.ws11c{word-spacing:-0.041844px;}
.ws5a{word-spacing:0.000000px;}
.ws14b{word-spacing:0.026785px;}
.ws240{word-spacing:0.035508px;}
.ws60{word-spacing:0.044646px;}
.ws145{word-spacing:0.071255px;}
.ws1b9{word-spacing:0.071315px;}
.ws14a{word-spacing:0.071734px;}
.ws14c{word-spacing:0.071853px;}
.ws232{word-spacing:0.143168px;}
.wsc3{word-spacing:0.191349px;}
.ws51{word-spacing:0.250649px;}
.ws5c{word-spacing:0.293385px;}
.ws15f{word-spacing:0.310666px;}
.ws29a{word-spacing:0.322562px;}
.ws28b{word-spacing:0.334936px;}
.ws163{word-spacing:0.370743px;}
.ws293{word-spacing:0.490060px;}
.ws294{word-spacing:0.549958px;}
.ws10f{word-spacing:0.550077px;}
.ws1b7{word-spacing:0.550137px;}
.ws243{word-spacing:0.573869px;}
.ws7a{word-spacing:0.609496px;}
.ws13c{word-spacing:0.669454px;}
.ws50{word-spacing:0.669573px;}
.ws5f{word-spacing:0.714328px;}
.ws278{word-spacing:0.728873px;}
.ws89{word-spacing:0.728993px;}
.ws151{word-spacing:0.729590px;}
.ws28{word-spacing:0.788890px;}
.ws21b{word-spacing:0.801324px;}
.ws277{word-spacing:0.812981px;}
.ws169{word-spacing:0.826222px;}
.ws6f{word-spacing:0.848848px;}
.ws29b{word-spacing:0.872520px;}
.ws4c{word-spacing:0.908267px;}
.ws8a{word-spacing:0.908386px;}
.ws3e{word-spacing:0.968284px;}
.ws221{word-spacing:1.028182px;}
.ws204{word-spacing:1.051913px;}
.ws125{word-spacing:1.088258px;}
.ws192{word-spacing:1.147678px;}
.wsde{word-spacing:1.147797px;}
.ws103{word-spacing:1.207097px;}
.ws102{word-spacing:1.207157px;}
.ws17e{word-spacing:1.207575px;}
.ws17f{word-spacing:1.207695px;}
.ws242{word-spacing:1.327072px;}
.wsa1{word-spacing:1.327191px;}
.wseb{word-spacing:1.386491px;}
.ws114{word-spacing:1.387089px;}
.ws245{word-spacing:1.446448px;}
.wsd3{word-spacing:1.505868px;}
.ws42{word-spacing:1.566004px;}
.ws65{word-spacing:1.625902px;}
.ws1a3{word-spacing:1.625962px;}
.ws220{word-spacing:1.685381px;}
.ws105{word-spacing:1.685740px;}
.ws7e{word-spacing:1.685859px;}
.ws267{word-spacing:1.769489px;}
.wsce{word-spacing:1.805415px;}
.ws39{word-spacing:1.864655px;}
.wsa5{word-spacing:1.924672px;}
.wsd8{word-spacing:1.984630px;}
.ws10e{word-spacing:1.984689px;}
.ws155{word-spacing:1.984809px;}
.wsf4{word-spacing:1.985287px;}
.ws12a{word-spacing:2.044408px;}
.ws187{word-spacing:2.044706px;}
.ws122{word-spacing:2.104066px;}
.ws132{word-spacing:2.104245px;}
.ws21f{word-spacing:2.127977px;}
.wsc8{word-spacing:2.163485px;}
.wsb5{word-spacing:2.163605px;}
.ws107{word-spacing:2.164083px;}
.ws7f{word-spacing:2.223622px;}
.ws10d{word-spacing:2.283460px;}
.ws95{word-spacing:2.283639px;}
.ws1ba{word-spacing:2.295356px;}
.ws1dd{word-spacing:2.355253px;}
.wsc2{word-spacing:2.403016px;}
.ws249{word-spacing:2.403076px;}
.ws166{word-spacing:2.462854px;}
.ws11d{word-spacing:2.467225px;}
.ws297{word-spacing:2.522632px;}
.ws248{word-spacing:2.546543px;}
.ws99{word-spacing:2.581692px;}
.ws9a{word-spacing:2.582290px;}
.ws1e{word-spacing:2.582410px;}
.ws98{word-spacing:2.582469px;}
.ws149{word-spacing:2.641650px;}
.ws92{word-spacing:2.641829px;}
.ws91{word-spacing:2.642486px;}
.ws175{word-spacing:2.701846px;}
.ws101{word-spacing:2.761684px;}
.ws235{word-spacing:2.761744px;}
.wsed{word-spacing:2.761863px;}
.ws3a{word-spacing:2.821701px;}
.ws292{word-spacing:2.830328px;}
.ws1ff{word-spacing:2.881060px;}
.ws1ac{word-spacing:2.941078px;}
.ws171{word-spacing:3.000676px;}
.ws27d{word-spacing:3.000856px;}
.ws112{word-spacing:3.001095px;}
.ws1b3{word-spacing:3.012931px;}
.ws234{word-spacing:3.024767px;}
.ws38{word-spacing:3.060454px;}
.wsf0{word-spacing:3.119874px;}
.ws17c{word-spacing:3.120412px;}
.wsb6{word-spacing:3.120471px;}
.wsfe{word-spacing:3.179891px;}
.ws25{word-spacing:3.180070px;}
.ws19f{word-spacing:3.204101px;}
.ws16e{word-spacing:3.239489px;}
.ws3c{word-spacing:3.239848px;}
.wsee{word-spacing:3.281358px;}
.ws179{word-spacing:3.299267px;}
.wsa9{word-spacing:3.299447px;}
.ws127{word-spacing:3.299746px;}
.ws109{word-spacing:3.299865px;}
.ws29{word-spacing:3.300044px;}
.ws1d0{word-spacing:3.313179px;}
.ws10b{word-spacing:3.359284px;}
.ws41{word-spacing:3.359464px;}
.ws6a{word-spacing:3.359524px;}
.ws77{word-spacing:3.360062px;}
.wsad{word-spacing:3.419302px;}
.ws2e{word-spacing:3.419481px;}
.ws3b{word-spacing:3.478900px;}
.wsbe{word-spacing:3.479498px;}
.ws24a{word-spacing:3.502333px;}
.ws280{word-spacing:3.502991px;}
.ws17b{word-spacing:3.538678px;}
.ws1d6{word-spacing:3.538858px;}
.ws224{word-spacing:3.562769px;}
.wsc7{word-spacing:3.598098px;}
.ws3f{word-spacing:3.598695px;}
.ws1ce{word-spacing:3.682325px;}
.ws1d5{word-spacing:3.682624px;}
.ws279{word-spacing:3.688732px;}
.ws274{word-spacing:3.702437px;}
.wsd5{word-spacing:3.718072px;}
.ws2a6{word-spacing:3.718192px;}
.ws138{word-spacing:3.718311px;}
.ws1fc{word-spacing:3.742342px;}
.ws6d{word-spacing:3.777491px;}
.wsdc{word-spacing:3.777671px;}
.ws183{word-spacing:3.777970px;}
.ws13a{word-spacing:3.778089px;}
.ws176{word-spacing:3.837688px;}
.ws168{word-spacing:3.849345px;}
.ws1fd{word-spacing:3.856181px;}
.ws22e{word-spacing:3.889199px;}
.ws188{word-spacing:3.897466px;}
.ws34{word-spacing:3.897705px;}
.ws152{word-spacing:3.957483px;}
.ws222{word-spacing:3.969319px;}
.ws59{word-spacing:4.016902px;}
.ws147{word-spacing:4.017082px;}
.ws15c{word-spacing:4.076860px;}
.ws29d{word-spacing:4.077457px;}
.ws21c{word-spacing:4.100831px;}
.wse5{word-spacing:4.136279px;}
.ws106{word-spacing:4.136877px;}
.ws1fa{word-spacing:4.148175px;}
.ws24c{word-spacing:4.196296px;}
.ws270{word-spacing:4.256194px;}
.ws7b{word-spacing:4.256253px;}
.ws119{word-spacing:4.315673px;}
.ws8b{word-spacing:4.315912px;}
.ws18e{word-spacing:4.315972px;}
.ws11f{word-spacing:4.375690px;}
.ws37{word-spacing:4.375929px;}
.ws1c6{word-spacing:4.435049px;}
.wscb{word-spacing:4.495066px;}
.ws1f{word-spacing:4.495306px;}
.ws226{word-spacing:4.507261px;}
.ws13b{word-spacing:4.555084px;}
.ws1a4{word-spacing:4.566920px;}
.ws2a3{word-spacing:4.607999px;}
.ws1da{word-spacing:4.610681px;}
.ws124{word-spacing:4.614503px;}
.ws25b{word-spacing:4.637982px;}
.ws223{word-spacing:4.656892px;}
.wsa8{word-spacing:4.674699px;}
.ws110{word-spacing:4.734477px;}
.ws139{word-spacing:4.734716px;}
.wsf6{word-spacing:4.794136px;}
.ws1f3{word-spacing:4.794196px;}
.ws1f9{word-spacing:4.853854px;}
.wscd{word-spacing:4.854153px;}
.wsb2{word-spacing:4.913512px;}
.ws146{word-spacing:4.913752px;}
.ws53{word-spacing:4.973290px;}
.ws57{word-spacing:4.973530px;}
.ws1f2{word-spacing:4.997441px;}
.ws45{word-spacing:5.032650px;}
.ws268{word-spacing:5.092966px;}
.ws271{word-spacing:5.164520px;}
.ws1c1{word-spacing:5.212642px;}
.ws40{word-spacing:5.332377px;}
.ws1bd{word-spacing:5.356288px;}
.ws137{word-spacing:5.391497px;}
.wsa6{word-spacing:5.392095px;}
.ws291{word-spacing:5.415707px;}
.ws262{word-spacing:5.416305px;}
.ws7c{word-spacing:5.451455px;}
.ws69{word-spacing:5.451754px;}
.ws100{word-spacing:5.511771px;}
.ws116{word-spacing:5.571489px;}
.ws2a1{word-spacing:5.584411px;}
.ws1c9{word-spacing:5.594503px;}
.wsbb{word-spacing:5.630848px;}
.ws123{word-spacing:5.690866px;}
.ws14e{word-spacing:5.691164px;}
.ws257{word-spacing:5.714777px;}
.wscf{word-spacing:5.750584px;}
.ws252{word-spacing:5.762779px;}
.ws1be{word-spacing:5.774555px;}
.ws255{word-spacing:5.810302px;}
.ws28a{word-spacing:5.810541px;}
.ws27e{word-spacing:5.822138px;}
.wsdd{word-spacing:5.869662px;}
.ws54{word-spacing:5.989696px;}
.ws43{word-spacing:5.989995px;}
.ws247{word-spacing:6.060951px;}
.ws1ae{word-spacing:6.061489px;}
.ws1e6{word-spacing:6.061549px;}
.ws201{word-spacing:6.061788px;}
.wsb8{word-spacing:6.108475px;}
.ws1b4{word-spacing:6.120968px;}
.ws1bb{word-spacing:6.121207px;}
.ws1a5{word-spacing:6.121267px;}
.ws67{word-spacing:6.169090px;}
.ws212{word-spacing:6.180328px;}
.ws16a{word-spacing:6.228449px;}
.ws22{word-spacing:6.229107px;}
.ws2ab{word-spacing:6.240823px;}
.ws87{word-spacing:6.288466px;}
.ws150{word-spacing:6.288765px;}
.wsc6{word-spacing:6.407903px;}
.wse1{word-spacing:6.408202px;}
.wsc5{word-spacing:6.408500px;}
.ws1a6{word-spacing:6.432113px;}
.ws290{word-spacing:6.467860px;}
.ws18d{word-spacing:6.467980px;}
.ws275{word-spacing:6.479756px;}
.wsba{word-spacing:6.527578px;}
.ws27a{word-spacing:6.539773px;}
.ws10a{word-spacing:6.599133px;}
.ws164{word-spacing:6.647612px;}
.wsef{word-spacing:6.658851px;}
.ws22f{word-spacing:6.659150px;}
.ws15a{word-spacing:6.659269px;}
.ws26b{word-spacing:6.671524px;}
.ws1fe{word-spacing:6.674420px;}
.ws11a{word-spacing:6.766690px;}
.ws82{word-spacing:6.766989px;}
.ws94{word-spacing:6.826050px;}
.ws266{word-spacing:6.833719px;}
.ws217{word-spacing:6.833779px;}
.ws29c{word-spacing:6.838543px;}
.ws1fb{word-spacing:6.840082px;}
.ws160{word-spacing:6.886067px;}
.ws189{word-spacing:6.886665px;}
.ws17d{word-spacing:6.946204px;}
.ws2a9{word-spacing:6.970115px;}
.ws162{word-spacing:7.006101px;}
.ws153{word-spacing:7.066058px;}
.ws15b{word-spacing:7.125538px;}
.ws9b{word-spacing:7.185196px;}
.ws12e{word-spacing:7.185316px;}
.wsf5{word-spacing:7.185495px;}
.ws1f4{word-spacing:7.197331px;}
.ws9d{word-spacing:7.244257px;}
.ws9c{word-spacing:7.244615px;}
.ws9e{word-spacing:7.244854px;}
.ws35{word-spacing:7.245452px;}
.ws1ee{word-spacing:7.364650px;}
.ws83{word-spacing:7.424248px;}
.ws27{word-spacing:7.424607px;}
.ws20f{word-spacing:7.484026px;}
.ws1a7{word-spacing:7.484206px;}
.wsd9{word-spacing:7.543984px;}
.wsa7{word-spacing:7.603702px;}
.ws182{word-spacing:7.663061px;}
.ws121{word-spacing:7.663659px;}
.ws1ed{word-spacing:7.747169px;}
.ws12f{word-spacing:7.783096px;}
.ws2b{word-spacing:7.842874px;}
.ws118{word-spacing:7.843053px;}
.ws20e{word-spacing:7.866605px;}
.wsd2{word-spacing:7.902652px;}
.ws1c2{word-spacing:7.914607px;}
.ws11e{word-spacing:7.918777px;}
.ws93{word-spacing:7.962250px;}
.wsaf{word-spacing:7.963087px;}
.ws3{word-spacing:7.990722px;}
.ws4{word-spacing:7.990794px;}
.wsb3{word-spacing:7.990937px;}
.ws214{word-spacing:8.021670px;}
.ws1e4{word-spacing:8.021849px;}
.ws1aa{word-spacing:8.046119px;}
.ws111{word-spacing:8.081866px;}
.wsa0{word-spacing:8.082284px;}
.ws23{word-spacing:8.141644px;}
.ws29f{word-spacing:8.141764px;}
.ws21{word-spacing:8.141883px;}
.ws2a2{word-spacing:8.153121px;}
.ws108{word-spacing:8.201302px;}
.ws26f{word-spacing:8.201542px;}
.wsaa{word-spacing:8.201661px;}
.ws180{word-spacing:8.261260px;}
.ws16d{word-spacing:8.261858px;}
.wsb9{word-spacing:8.321098px;}
.ws1eb{word-spacing:8.333053px;}
.ws1b0{word-spacing:8.344889px;}
.ws195{word-spacing:8.380696px;}
.wsea{word-spacing:8.440654px;}
.wse0{word-spacing:8.441251px;}
.ws56{word-spacing:8.500491px;}
.ws29e{word-spacing:8.524223px;}
.ws170{word-spacing:8.536222px;}
.ws4a{word-spacing:8.559851px;}
.ws49{word-spacing:8.560508px;}
.ws20c{word-spacing:8.572285px;}
.ws26e{word-spacing:8.584121px;}
.wse6{word-spacing:8.619808px;}
.wse7{word-spacing:8.679287px;}
.ws16c{word-spacing:8.679885px;}
.wsec{word-spacing:8.707950px;}
.ws18b{word-spacing:8.739544px;}
.ws173{word-spacing:8.740082px;}
.ws15e{word-spacing:8.799501px;}
.ws263{word-spacing:8.823233px;}
.ws10{word-spacing:8.852942px;}
.ws16{word-spacing:8.853122px;}
.ws131{word-spacing:8.859100px;}
.ws259{word-spacing:8.898478px;}
.wsae{word-spacing:8.918698px;}
.ws20{word-spacing:8.918878px;}
.ws172{word-spacing:8.978297px;}
.ws6c{word-spacing:8.978656px;}
.ws154{word-spacing:9.038673px;}
.ws165{word-spacing:9.038852px;}
.ws26c{word-spacing:9.097674px;}
.wsb0{word-spacing:9.098092px;}
.ws120{word-spacing:9.157691px;}
.ws3d{word-spacing:9.217708px;}
.ws233{word-spacing:9.226535px;}
.ws167{word-spacing:9.277486px;}
.ws133{word-spacing:9.277546px;}
.ws24{word-spacing:9.337084px;}
.ws215{word-spacing:9.396922px;}
.ws68{word-spacing:9.397102px;}
.ws2a7{word-spacing:9.456880px;}
.ws18c{word-spacing:9.456939px;}
.ws135{word-spacing:9.516658px;}
.ws1df{word-spacing:9.539156px;}
.ws11{word-spacing:9.570219px;}
.ws75{word-spacing:9.576316px;}
.wsb4{word-spacing:9.576495px;}
.ws213{word-spacing:9.600646px;}
.ws2a5{word-spacing:9.636214px;}
.ws8e{word-spacing:9.636333px;}
.ws1c{word-spacing:9.749774px;}
.ws18{word-spacing:9.752252px;}
.ws1d2{word-spacing:9.755770px;}
.ws46{word-spacing:9.755889px;}
.ws1a{word-spacing:9.756260px;}
.ws1b{word-spacing:9.757816px;}
.ws1c7{word-spacing:9.781179px;}
.ws4b{word-spacing:9.815129px;}
.ws47{word-spacing:9.815249px;}
.ws84{word-spacing:9.815727px;}
.ws48{word-spacing:9.815906px;}
.ws1bc{word-spacing:9.875146px;}
.ws1f5{word-spacing:9.875266px;}
.ws1e1{word-spacing:9.880865px;}
.ws26d{word-spacing:9.886907px;}
.ws28c{word-spacing:9.887336px;}
.ws1e5{word-spacing:9.889071px;}
.ws1e9{word-spacing:9.935104px;}
.wsff{word-spacing:9.935283px;}
.ws230{word-spacing:9.959015px;}
.ws85{word-spacing:9.994523px;}
.ws24b{word-spacing:10.002471px;}
.ws207{word-spacing:10.018853px;}
.ws211{word-spacing:10.104644px;}
.ws1f1{word-spacing:10.126393px;}
.ws2a4{word-spacing:10.138289px;}
.ws104{word-spacing:10.174216px;}
.ws17a{word-spacing:10.233994px;}
.ws13e{word-spacing:10.234053px;}
.ws14{word-spacing:10.281816px;}
.wscc{word-spacing:10.293951px;}
.ws174{word-spacing:10.353370px;}
.ws6b{word-spacing:10.353490px;}
.ws264{word-spacing:10.412849px;}
.ws14d{word-spacing:10.413507px;}
.ws1e8{word-spacing:10.437239px;}
.ws97{word-spacing:10.472269px;}
.ws32{word-spacing:10.472747px;}
.ws96{word-spacing:10.473345px;}
.wsdf{word-spacing:10.473464px;}
.ws1cd{word-spacing:10.497077px;}
.ws21d{word-spacing:10.532764px;}
.ws219{word-spacing:10.544538px;}
.ws241{word-spacing:10.592662px;}
.ws178{word-spacing:10.592781px;}
.ws88{word-spacing:10.652260px;}
.wsbc{word-spacing:10.652738px;}
.wse8{word-spacing:10.712158px;}
.wsa2{word-spacing:10.771577px;}
.ws2c{word-spacing:10.831594px;}
.ws2d{word-spacing:10.832252px;}
.ws20d{word-spacing:10.855326px;}
.ws16b{word-spacing:10.891552px;}
.wsf{word-spacing:10.945471px;}
.wsf2{word-spacing:10.951688px;}
.ws52{word-spacing:11.011108px;}
.ws64{word-spacing:11.070886px;}
.ws1f8{word-spacing:11.071005px;}
.ws128{word-spacing:11.071065px;}
.ws254{word-spacing:11.130365px;}
.ws269{word-spacing:11.130664px;}
.wsfc{word-spacing:11.250399px;}
.wsfb{word-spacing:11.250459px;}
.ws25a{word-spacing:11.262355px;}
.ws44{word-spacing:11.309878px;}
.ws141{word-spacing:11.309998px;}
.ws1d7{word-spacing:11.369776px;}
.ws36{word-spacing:11.429255px;}
.ws2a{word-spacing:11.429852px;}
.ws1ad{word-spacing:11.441509px;}
.ws200{word-spacing:11.441629px;}
.ws22d{word-spacing:11.549289px;}
.ws159{word-spacing:11.577222px;}
.wsd1{word-spacing:11.608051px;}
.ws129{word-spacing:11.608708px;}
.ws287{word-spacing:11.620843px;}
.ws1d8{word-spacing:11.632793px;}
.ws1c5{word-spacing:11.668666px;}
.ws1f7{word-spacing:11.692338px;}
.ws1c0{word-spacing:11.692577px;}
.wsa{word-spacing:11.722466px;}
.ws1ec{word-spacing:11.740399px;}
.ws17{word-spacing:11.782423px;}
.ws4d{word-spacing:11.787982px;}
.ws140{word-spacing:11.788102px;}
.ws71{word-spacing:11.848000px;}
.ws70{word-spacing:11.848059px;}
.ws1b5{word-spacing:11.871731px;}
.ws55{word-spacing:11.907419px;}
.ws1d1{word-spacing:11.931689px;}
.ws14f{word-spacing:11.967496px;}
.ws218{word-spacing:11.991168px;}
.ws130{word-spacing:12.027334px;}
.ws20a{word-spacing:12.027393px;}
.ws1d3{word-spacing:12.039289px;}
.ws1c8{word-spacing:12.039349px;}
.ws13f{word-spacing:12.087470px;}
.ws31{word-spacing:12.206249px;}
.wsd6{word-spacing:12.206668px;}
.wsd7{word-spacing:12.206907px;}
.ws16f{word-spacing:12.218743px;}
.ws1a8{word-spacing:12.266446px;}
.ws4e{word-spacing:12.326224px;}
.ws193{word-spacing:12.326283px;}
.ws216{word-spacing:12.397479px;}
.ws26{word-spacing:12.445660px;}
.ws265{word-spacing:12.457735px;}
.wsfa{word-spacing:12.565037px;}
.ws76{word-spacing:12.685071px;}
.ws1de{word-spacing:12.696847px;}
.ws19d{word-spacing:12.744490px;}
.ws1bf{word-spacing:12.745088px;}
.ws237{word-spacing:12.745672px;}
.ws21e{word-spacing:12.756326px;}
.ws21a{word-spacing:12.756924px;}
.wsca{word-spacing:12.804448px;}
.ws1e7{word-spacing:12.828179px;}
.ws58{word-spacing:12.923884px;}
.ws1b6{word-spacing:13.043261px;}
.ws181{word-spacing:13.103278px;}
.ws206{word-spacing:13.115174px;}
.ws10c{word-spacing:13.163295px;}
.ws191{word-spacing:13.222654px;}
.ws27b{word-spacing:13.234849px;}
.wsb{word-spacing:13.276694px;}
.ws1c3{word-spacing:13.277015px;}
.ws13{word-spacing:13.277052px;}
.ws199{word-spacing:13.280015px;}
.wsc1{word-spacing:13.282672px;}
.ws26a{word-spacing:13.294508px;}
.wsf3{word-spacing:13.342689px;}
.ws1e0{word-spacing:13.366361px;}
.ws1db{word-spacing:13.402048px;}
.ws8c{word-spacing:13.462065px;}
.ws8d{word-spacing:13.521485px;}
.ws282{word-spacing:13.533978px;}
.ws273{word-spacing:13.545695px;}
.wsf1{word-spacing:13.581502px;}
.ws261{word-spacing:13.653355px;}
.ws143{word-spacing:13.700878px;}
.ws228{word-spacing:13.701118px;}
.ws13d{word-spacing:13.760896px;}
.ws1d9{word-spacing:13.772732px;}
.ws25c{word-spacing:13.784627px;}
.wsf7{word-spacing:13.880272px;}
.ws258{word-spacing:13.940230px;}
.ws23d{word-spacing:14.001128px;}
.ws198{word-spacing:14.060264px;}
.wsc{word-spacing:14.113466px;}
.ws30{word-spacing:14.119085px;}
.ws2f{word-spacing:14.119683px;}
.ws12{word-spacing:14.173424px;}
.wsfd{word-spacing:14.179102px;}
.ws23c{word-spacing:14.179342px;}
.wsd{word-spacing:14.412834px;}
.ws1c4{word-spacing:14.442365px;}
.ws19{word-spacing:14.770974px;}
.ws19c{word-spacing:14.777301px;}
.ws19e{word-spacing:14.789137px;}
.ws18a{word-spacing:14.896678px;}
.wsd0{word-spacing:14.896737px;}
.ws7{word-spacing:15.069854px;}
.ws23b{word-spacing:15.195508px;}
.ws1a1{word-spacing:15.374902px;}
.ws142{word-spacing:15.434859px;}
.ws203{word-spacing:15.446755px;}
.ws295{word-spacing:15.506174px;}
.ws194{word-spacing:15.614253px;}
.ws1cc{word-spacing:15.626149px;}
.wsc0{word-spacing:15.793766px;}
.ws12b{word-spacing:15.853126px;}
.ws72{word-spacing:15.913202px;}
.ws23e{word-spacing:15.924979px;}
.ws73{word-spacing:15.972562px;}
.ws246{word-spacing:16.092477px;}
.ws1d4{word-spacing:16.116149px;}
.ws134{word-spacing:16.211794px;}
.ws22c{word-spacing:16.331350px;}
.wse9{word-spacing:16.570222px;}
.ws25e{word-spacing:16.570462px;}
.wse3{word-spacing:16.630060px;}
.ws4f{word-spacing:16.630180px;}
.ws9{word-spacing:16.683860px;}
.ws8{word-spacing:16.803297px;}
.ws144{word-spacing:16.809454px;}
.ws12c{word-spacing:16.929130px;}
.ws66{word-spacing:17.108464px;}
.ws18f{word-spacing:17.168242px;}
.ws28f{word-spacing:17.407354px;}
.ws298{word-spacing:17.467132px;}
.wse{word-spacing:17.759625px;}
.ws20b{word-spacing:17.925086px;}
.ws256{word-spacing:18.255962px;}
.ws5{word-spacing:18.344597px;}
.ws6{word-spacing:18.398393px;}
.ws28e{word-spacing:18.483059px;}
.ws1ea{word-spacing:18.554733px;}
.ws19b{word-spacing:18.567047px;}
.ws25f{word-spacing:18.602854px;}
.wsf9{word-spacing:18.662512px;}
.ws1e3{word-spacing:18.662692px;}
.ws23f{word-spacing:18.674289px;}
.wsf8{word-spacing:18.722470px;}
.ws225{word-spacing:18.842265px;}
.ws227{word-spacing:18.865937px;}
.ws28d{word-spacing:19.403939px;}
.ws1ef{word-spacing:19.559362px;}
.ws1e2{word-spacing:19.582914px;}
.ws1cb{word-spacing:19.929925px;}
.ws209{word-spacing:19.977509px;}
.ws22a{word-spacing:20.467987px;}
.ws2a8{word-spacing:20.587543px;}
.ws22b{word-spacing:20.599499px;}
.ws12d{word-spacing:20.754922px;}
.ws25d{word-spacing:20.838611px;}
.ws251{word-spacing:20.994034px;}
.ws15{word-spacing:21.013261px;}
.ws208{word-spacing:21.017885px;}
.ws1f0{word-spacing:21.065767px;}
.ws158{word-spacing:21.619422px;}
.ws1a2{word-spacing:21.651233px;}
.ws276{word-spacing:21.974393px;}
.ws24d{word-spacing:22.440661px;}
.wsda{word-spacing:22.727655px;}
.ws1af{word-spacing:22.811404px;}
.ws1a0{word-spacing:22.930781px;}
.ws253{word-spacing:23.169953px;}
.ws289{word-spacing:23.325495px;}
.ws1f6{word-spacing:24.425530px;}
.ws288{word-spacing:24.544907px;}
.ws23a{word-spacing:24.580654px;}
.ws205{word-spacing:25.195349px;}
.ws197{word-spacing:25.286077px;}
.ws296{word-spacing:26.158913px;}
.ws285{word-spacing:27.282978px;}
.ws2{word-spacing:27.974700px;}
.ws250{word-spacing:28.047838px;}
.ws210{word-spacing:29.840879px;}
.ws239{word-spacing:31.419317px;}
.ws272{word-spacing:33.810437px;}
.ws260{word-spacing:34.245170px;}
.ws24f{word-spacing:35.962445px;}
.ws156{word-spacing:40.840330px;}
.ws1ca{word-spacing:47.512499px;}
.ws229{word-spacing:56.355644px;}
.ws1d{word-spacing:60.568812px;}
.ws24e{word-spacing:60.590981px;}
.ws238{word-spacing:73.323755px;}
._2b{margin-left:-33.357929px;}
._23{margin-left:-15.217727px;}
._2{margin-left:-6.972328px;}
._3{margin-left:-5.796841px;}
._4{margin-left:-4.283377px;}
._1{margin-left:-2.324052px;}
._5{margin-left:-1.039613px;}
._0{width:1.750078px;}
._b{width:3.108456px;}
._29{width:13.398721px;}
._1b{width:15.781213px;}
._1e{width:17.492284px;}
._21{width:19.480637px;}
._16{width:20.609943px;}
._1c{width:21.931654px;}
._27{width:23.169281px;}
._c{width:24.525077px;}
._2a{width:25.532220px;}
._10{width:26.541492px;}
._d{width:28.147909px;}
._12{width:29.171246px;}
._9{width:30.529982px;}
._14{width:31.615989px;}
._1d{width:32.638908px;}
._13{width:33.672617px;}
._11{width:35.567611px;}
._1f{width:37.157034px;}
._15{width:38.181566px;}
._2f{width:39.304011px;}
._e{width:40.449306px;}
._a{width:42.522212px;}
._1a{width:43.936950px;}
._19{width:45.603264px;}
._f{width:47.650595px;}
._7{width:49.615381px;}
._22{width:51.470890px;}
._8{width:52.736767px;}
._30{width:54.522900px;}
._18{width:55.534061px;}
._25{width:57.250987px;}
._33{width:58.283550px;}
._6{width:59.334123px;}
._2c{width:60.463061px;}
._31{width:61.657088px;}
._2d{width:63.170205px;}
._24{width:65.756039px;}
._17{width:67.209868px;}
._26{width:72.570731px;}
._2e{width:75.296773px;}
._20{width:78.902857px;}
._34{width:86.873366px;}
._32{width:90.505724px;}
._28{width:101.682378px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(236,0,140);}
.fc3{color:rgb(0,104,152);}
.fc1{color:rgb(148,150,153);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:35.868000px;}
.fs9{font-size:41.844000px;}
.fs5{font-size:47.820000px;}
.fsa{font-size:48.000000px;}
.fs2{font-size:48.000300px;}
.fs0{font-size:48.242661px;}
.fs6{font-size:53.796000px;}
.fs1{font-size:59.761202px;}
.fs8{font-size:59.778000px;}
.fs4{font-size:71.730000px;}
.fs3{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y54{bottom:2.526000px;}
.y2{bottom:4.615708px;}
.y1{bottom:38.377917px;}
.y53{bottom:41.879334px;}
.y55{bottom:42.993625px;}
.yad{bottom:106.297500px;}
.y3c{bottom:106.299000px;}
.y3b{bottom:124.231500px;}
.y131{bottom:131.599500px;}
.y3a{bottom:142.164000px;}
.yf4{bottom:142.653000px;}
.y24f{bottom:144.808500px;}
.y130{bottom:149.532000px;}
.y39{bottom:160.096500px;}
.y116{bottom:160.098000px;}
.yf3{bottom:160.585500px;}
.y219{bottom:161.362500px;}
.y1e3{bottom:161.467500px;}
.y24e{bottom:162.741000px;}
.y12f{bottom:167.464500px;}
.y167{bottom:171.156000px;}
.y52{bottom:178.029000px;}
.y38{bottom:178.030500px;}
.yf2{bottom:178.518000px;}
.y218{bottom:179.295000px;}
.y1e2{bottom:179.400000px;}
.y24d{bottom:180.675000px;}
.y12e{bottom:185.398500px;}
.y154{bottom:195.531000px;}
.yac{bottom:195.961500px;}
.y37{bottom:195.963000px;}
.yf1{bottom:196.450500px;}
.y217{bottom:197.227500px;}
.y1e1{bottom:197.334000px;}
.y188{bottom:198.496500px;}
.y24c{bottom:198.607500px;}
.y12d{bottom:203.331000px;}
.y36{bottom:213.895500px;}
.yf0{bottom:214.384500px;}
.y1b4{bottom:215.070000px;}
.y216{bottom:215.161500px;}
.y1e0{bottom:215.266500px;}
.y187{bottom:216.429000px;}
.y24b{bottom:216.540000px;}
.y166{bottom:218.610000px;}
.y115{bottom:220.492500px;}
.y12c{bottom:221.263500px;}
.y89{bottom:222.121500px;}
.y35{bottom:231.828000px;}
.yef{bottom:232.317000px;}
.y1b3{bottom:233.004000px;}
.y215{bottom:233.094000px;}
.y186{bottom:234.361500px;}
.y1df{bottom:234.570000px;}
.y165{bottom:236.542500px;}
.y24a{bottom:237.118500px;}
.y114{bottom:238.425000px;}
.y12b{bottom:239.196000px;}
.y88{bottom:240.054000px;}
.y34{bottom:249.760500px;}
.yee{bottom:250.249500px;}
.y1b2{bottom:250.936500px;}
.y214{bottom:252.292500px;}
.y185{bottom:252.295500px;}
.y1de{bottom:252.502500px;}
.y51{bottom:253.165500px;}
.y164{bottom:254.475000px;}
.y249{bottom:255.051000px;}
.y113{bottom:256.359000px;}
.y12a{bottom:257.128500px;}
.y87{bottom:257.986500px;}
.yab{bottom:267.693000px;}
.y33{bottom:267.694500px;}
.yed{bottom:268.182000px;}
.y1b1{bottom:270.043500px;}
.y213{bottom:270.225000px;}
.y184{bottom:270.228000px;}
.y1dd{bottom:270.435000px;}
.y50{bottom:271.098000px;}
.y163{bottom:272.407500px;}
.y248{bottom:272.983500px;}
.y112{bottom:274.291500px;}
.y129{bottom:275.061000px;}
.y86{bottom:275.919000px;}
.yaa{bottom:285.625500px;}
.y32{bottom:285.627000px;}
.yec{bottom:286.114500px;}
.y1b0{bottom:287.977500px;}
.y212{bottom:288.157500px;}
.y183{bottom:288.160500px;}
.y1dc{bottom:288.367500px;}
.y108{bottom:288.675000px;}
.y4f{bottom:289.030500px;}
.y162{bottom:290.341500px;}
.y111{bottom:292.224000px;}
.y128{bottom:292.995000px;}
.y247{bottom:293.560500px;}
.y85{bottom:293.853000px;}
.ya9{bottom:303.558000px;}
.y31{bottom:303.559500px;}
.yeb{bottom:304.047000px;}
.y1af{bottom:305.910000px;}
.y211{bottom:306.090000px;}
.y1db{bottom:306.301500px;}
.y107{bottom:306.607500px;}
.y4e{bottom:306.964500px;}
.y161{bottom:308.274000px;}
.y182{bottom:308.628000px;}
.y110{bottom:310.156500px;}
.y127{bottom:310.927500px;}
.y246{bottom:311.494500px;}
.y84{bottom:311.785500px;}
.yc1{bottom:314.010000px;}
.y30{bottom:321.492000px;}
.yea{bottom:321.981000px;}
.y210{bottom:324.022500px;}
.y106{bottom:324.541500px;}
.y4d{bottom:324.897000px;}
.y1ae{bottom:325.017000px;}
.y1da{bottom:325.605000px;}
.y160{bottom:326.206500px;}
.y181{bottom:326.560500px;}
.y10f{bottom:328.089000px;}
.y126{bottom:328.860000px;}
.y245{bottom:329.427000px;}
.y83{bottom:329.718000px;}
.yc0{bottom:331.944000px;}
.y2f{bottom:339.424500px;}
.ye9{bottom:340.401000px;}
.y105{bottom:342.474000px;}
.y4c{bottom:342.829500px;}
.y1ad{bottom:342.949500px;}
.y20f{bottom:343.221000px;}
.y1d9{bottom:343.537500px;}
.y180{bottom:344.493000px;}
.y10e{bottom:346.023000px;}
.y125{bottom:346.792500px;}
.y244{bottom:347.359500px;}
.y82{bottom:347.650500px;}
.ybf{bottom:349.876500px;}
.y118{bottom:352.620000px;}
.y2e{bottom:357.357000px;}
.ye8{bottom:358.335000px;}
.y104{bottom:360.406500px;}
.y4b{bottom:360.762000px;}
.y1ac{bottom:360.883500px;}
.y20e{bottom:361.153500px;}
.y1d8{bottom:361.470000px;}
.y17f{bottom:362.425500px;}
.y10d{bottom:363.955500px;}
.y124{bottom:364.725000px;}
.y81{bottom:365.583000px;}
.ybe{bottom:367.809000px;}
.y243{bottom:367.936500px;}
.y117{bottom:370.552500px;}
.ya8{bottom:375.289500px;}
.ye7{bottom:376.267500px;}
.y103{bottom:378.339000px;}
.y4a{bottom:378.694500px;}
.y1ab{bottom:378.816000px;}
.y20d{bottom:379.087500px;}
.y1d7{bottom:379.402500px;}
.y17e{bottom:380.358000px;}
.y2d{bottom:380.565000px;}
.y123{bottom:382.659000px;}
.y15f{bottom:383.011500px;}
.y80{bottom:383.517000px;}
.ybd{bottom:385.741500px;}
.y242{bottom:385.870500px;}
.y10c{bottom:388.485000px;}
.ya7{bottom:393.222000px;}
.yc7{bottom:393.223500px;}
.ye6{bottom:394.200000px;}
.y102{bottom:396.271500px;}
.y49{bottom:396.627000px;}
.y1aa{bottom:396.748500px;}
.y20c{bottom:397.020000px;}
.y1d6{bottom:397.335000px;}
.y2c{bottom:398.497500px;}
.y122{bottom:400.591500px;}
.y7f{bottom:401.449500px;}
.ybc{bottom:403.674000px;}
.y241{bottom:403.803000px;}
.y10b{bottom:406.417500px;}
.y17d{bottom:406.746000px;}
.ya6{bottom:411.154500px;}
.yc6{bottom:411.156000px;}
.ye5{bottom:412.132500px;}
.y101{bottom:414.205500px;}
.y48{bottom:414.561000px;}
.y20b{bottom:414.952500px;}
.y1a9{bottom:415.857000px;}
.y2b{bottom:416.430000px;}
.y1d5{bottom:416.640000px;}
.y121{bottom:418.524000px;}
.y7e{bottom:419.382000px;}
.ybb{bottom:421.608000px;}
.y240{bottom:421.735500px;}
.ya5{bottom:429.088500px;}
.y100{bottom:432.138000px;}
.y47{bottom:432.493500px;}
.y1a8{bottom:433.789500px;}
.y20a{bottom:434.151000px;}
.y2a{bottom:434.362500px;}
.y1d4{bottom:434.572500px;}
.y120{bottom:436.456500px;}
.y7d{bottom:437.314500px;}
.yba{bottom:439.540500px;}
.y23f{bottom:439.668000px;}
.ye4{bottom:440.626500px;}
.ya4{bottom:447.021000px;}
.yff{bottom:450.070500px;}
.y46{bottom:450.426000px;}
.y1a7{bottom:451.722000px;}
.y209{bottom:452.083500px;}
.y29{bottom:452.296500px;}
.y1d3{bottom:452.505000px;}
.y17c{bottom:454.707000px;}
.y7c{bottom:455.247000px;}
.yb9{bottom:457.473000px;}
.y23e{bottom:460.246500px;}
.y10a{bottom:460.827000px;}
.ye3{bottom:461.547000px;}
.y11f{bottom:464.040000px;}
.ya3{bottom:464.953500px;}
.yfe{bottom:468.003000px;}
.y45{bottom:468.358500px;}
.y1a6{bottom:469.654500px;}
.y28{bottom:470.229000px;}
.y1d2{bottom:470.437500px;}
.y208{bottom:471.282000px;}
.y17b{bottom:472.639500px;}
.y7b{bottom:473.179500px;}
.yb8{bottom:475.405500px;}
.y23d{bottom:478.179000px;}
.ya2{bottom:482.886000px;}
.yfd{bottom:485.935500px;}
.y44{bottom:486.291000px;}
.y1a5{bottom:487.587000px;}
.y27{bottom:488.161500px;}
.y1d1{bottom:488.370000px;}
.y207{bottom:489.214500px;}
.y17a{bottom:490.572000px;}
.y7a{bottom:491.113500px;}
.y11e{bottom:491.625000px;}
.yb7{bottom:493.338000px;}
.y153{bottom:494.211000px;}
.y23c{bottom:496.111500px;}
.ya1{bottom:500.818500px;}
.y26{bottom:506.094000px;}
.y1d0{bottom:506.304000px;}
.y1a4{bottom:506.695500px;}
.yfc{bottom:506.917500px;}
.y206{bottom:507.147000px;}
.y43{bottom:507.628500px;}
.y79{bottom:509.046000px;}
.yc5{bottom:510.781500px;}
.yb6{bottom:511.270500px;}
.y152{bottom:512.145000px;}
.y11d{bottom:512.545500px;}
.y23b{bottom:516.688500px;}
.ya0{bottom:518.751000px;}
.y25{bottom:524.026500px;}
.y179{bottom:524.301000px;}
.y1a3{bottom:524.628000px;}
.yfb{bottom:524.850000px;}
.y205{bottom:525.079500px;}
.y42{bottom:525.561000px;}
.y1cf{bottom:525.607500px;}
.y78{bottom:526.978500px;}
.yb5{bottom:529.204500px;}
.y151{bottom:530.077500px;}
.y11c{bottom:533.467500px;}
.y23a{bottom:534.622500px;}
.ye2{bottom:535.945500px;}
.y9f{bottom:536.685000px;}
.y24{bottom:541.960500px;}
.y178{bottom:542.233500px;}
.yfa{bottom:542.782500px;}
.y41{bottom:543.495000px;}
.y1ce{bottom:543.540000px;}
.y1a2{bottom:543.736500px;}
.y204{bottom:544.278000px;}
.y77{bottom:544.911000px;}
.yb4{bottom:547.137000px;}
.y150{bottom:548.010000px;}
.yc4{bottom:552.118500px;}
.y239{bottom:552.555000px;}
.y9e{bottom:554.617500px;}
.ye1{bottom:555.343500px;}
.y23{bottom:559.893000px;}
.y177{bottom:560.166000px;}
.yf9{bottom:560.716500px;}
.y40{bottom:561.427500px;}
.y1cd{bottom:561.472500px;}
.y1a1{bottom:561.669000px;}
.y203{bottom:562.210500px;}
.y76{bottom:562.843500px;}
.yb3{bottom:565.069500px;}
.y14f{bottom:565.942500px;}
.yc3{bottom:570.051000px;}
.y238{bottom:570.487500px;}
.y9d{bottom:572.550000px;}
.ye0{bottom:573.276000px;}
.y22{bottom:577.825500px;}
.y176{bottom:578.100000px;}
.yf8{bottom:578.649000px;}
.y3f{bottom:579.360000px;}
.y1cc{bottom:579.405000px;}
.y1a0{bottom:579.601500px;}
.y202{bottom:580.144500px;}
.y75{bottom:580.776000px;}
.yb2{bottom:583.002000px;}
.y14e{bottom:583.875000px;}
.y11b{bottom:587.296500px;}
.y237{bottom:588.420000px;}
.y9c{bottom:590.482500px;}
.y21{bottom:595.758000px;}
.y175{bottom:596.032500px;}
.yf7{bottom:596.581500px;}
.y3e{bottom:597.292500px;}
.y1cb{bottom:597.337500px;}
.y19f{bottom:597.534000px;}
.yc2{bottom:597.946500px;}
.y201{bottom:598.077000px;}
.y74{bottom:598.710000px;}
.yb1{bottom:600.934500px;}
.y14d{bottom:601.807500px;}
.ydf{bottom:607.129500px;}
.y9b{bottom:608.415000px;}
.y236{bottom:608.998500px;}
.y174{bottom:613.965000px;}
.yf6{bottom:614.514000px;}
.y3d{bottom:615.225000px;}
.y1ca{bottom:615.271500px;}
.y73{bottom:616.642500px;}
.y200{bottom:617.275500px;}
.yb0{bottom:618.867000px;}
.y14c{bottom:619.741500px;}
.y269{bottom:619.887000px;}
.yde{bottom:625.062000px;}
.y9a{bottom:626.349000px;}
.y235{bottom:626.931000px;}
.y173{bottom:631.897500px;}
.y20{bottom:633.159000px;}
.y72{bottom:634.575000px;}
.y1ff{bottom:635.208000px;}
.y14b{bottom:637.674000px;}
.y268{bottom:637.819500px;}
.ydd{bottom:642.994500px;}
.y99{bottom:644.281500px;}
.y234{bottom:644.863500px;}
.y172{bottom:649.830000px;}
.y71{bottom:652.507500px;}
.y1fe{bottom:653.140500px;}
.y14a{bottom:655.606500px;}
.y267{bottom:655.753500px;}
.ydc{bottom:660.928500px;}
.y98{bottom:662.214000px;}
.y233{bottom:662.796000px;}
.y171{bottom:667.762500px;}
.y70{bottom:670.440000px;}
.y1fd{bottom:671.073000px;}
.y149{bottom:673.539000px;}
.y266{bottom:673.686000px;}
.ydb{bottom:678.861000px;}
.y97{bottom:680.146500px;}
.y232{bottom:680.728500px;}
.y15e{bottom:685.131000px;}
.y170{bottom:685.696500px;}
.yaf{bottom:686.032500px;}
.yf5{bottom:687.777000px;}
.y6f{bottom:688.372500px;}
.y19e{bottom:688.374000px;}
.y1fc{bottom:689.005500px;}
.y148{bottom:691.471500px;}
.y265{bottom:692.448000px;}
.yda{bottom:696.793500px;}
.y96{bottom:698.079000px;}
.y231{bottom:701.307000px;}
.y15d{bottom:703.063500px;}
.y16f{bottom:703.629000px;}
.y1c9{bottom:706.305000px;}
.y6e{bottom:706.306500px;}
.y1fb{bottom:706.939500px;}
.y19d{bottom:707.481000px;}
.y147{bottom:709.404000px;}
.y264{bottom:710.382000px;}
.y1d{bottom:713.038500px;}
.yd9{bottom:714.726000px;}
.y95{bottom:716.011500px;}
.y230{bottom:719.239500px;}
.y15c{bottom:720.996000px;}
.y16e{bottom:721.561500px;}
.y6d{bottom:724.239000px;}
.y1fa{bottom:724.872000px;}
.y1f{bottom:724.993500px;}
.y19c{bottom:725.413500px;}
.y1c8{bottom:725.610000px;}
.y146{bottom:727.338000px;}
.y263{bottom:728.314500px;}
.y1c{bottom:730.971000px;}
.yd8{bottom:732.658500px;}
.y94{bottom:733.945500px;}
.y1e{bottom:736.948500px;}
.y22f{bottom:737.172000px;}
.y15b{bottom:738.930000px;}
.y16d{bottom:739.494000px;}
.y6c{bottom:742.171500px;}
.y19b{bottom:743.347500px;}
.y1c7{bottom:743.542500px;}
.y1f9{bottom:744.070500px;}
.y145{bottom:745.270500px;}
.y262{bottom:746.247000px;}
.y1b{bottom:748.903500px;}
.yd7{bottom:750.591000px;}
.y93{bottom:751.878000px;}
.y22e{bottom:755.104500px;}
.y15a{bottom:756.862500px;}
.y16c{bottom:757.426500px;}
.y6b{bottom:760.104000px;}
.y19a{bottom:761.280000px;}
.y1c6{bottom:761.475000px;}
.y1f8{bottom:762.003000px;}
.y144{bottom:763.203000px;}
.y261{bottom:764.179500px;}
.yd6{bottom:768.525000px;}
.y92{bottom:769.810500px;}
.y22d{bottom:773.038500px;}
.y159{bottom:774.795000px;}
.y16b{bottom:775.359000px;}
.y6a{bottom:778.036500px;}
.y1c5{bottom:779.407500px;}
.y1f7{bottom:779.935500px;}
.y199{bottom:780.387000px;}
.y143{bottom:781.135500px;}
.y260{bottom:782.943000px;}
.y1a{bottom:784.768500px;}
.yd5{bottom:786.457500px;}
.y91{bottom:787.743000px;}
.y16a{bottom:793.293000px;}
.y158{bottom:793.483500px;}
.y22c{bottom:793.615500px;}
.y69{bottom:795.970500px;}
.y1f6{bottom:797.868000px;}
.y198{bottom:798.319500px;}
.y1c4{bottom:798.711000px;}
.y142{bottom:799.068000px;}
.y25f{bottom:800.875500px;}
.y19{bottom:802.701000px;}
.yd4{bottom:804.390000px;}
.y90{bottom:805.675500px;}
.y169{bottom:811.225500px;}
.y157{bottom:811.416000px;}
.y22b{bottom:811.548000px;}
.y68{bottom:813.903000px;}
.y197{bottom:816.253500px;}
.y1c3{bottom:816.645000px;}
.y141{bottom:817.002000px;}
.y1f5{bottom:817.066500px;}
.y25e{bottom:818.808000px;}
.y18{bottom:820.635000px;}
.yd3{bottom:822.322500px;}
.y168{bottom:829.158000px;}
.y156{bottom:829.350000px;}
.y22a{bottom:829.480500px;}
.y8f{bottom:833.260500px;}
.y1c2{bottom:834.577500px;}
.y1f4{bottom:834.999000px;}
.y196{bottom:835.360500px;}
.y25d{bottom:836.740500px;}
.y17{bottom:838.567500px;}
.y67{bottom:840.061500px;}
.yd2{bottom:840.255000px;}
.y140{bottom:844.585500px;}
.y229{bottom:850.059000px;}
.y1c1{bottom:852.510000px;}
.y109{bottom:852.840000px;}
.y1f3{bottom:852.931500px;}
.y195{bottom:853.293000px;}
.y25c{bottom:855.504000px;}
.y16{bottom:856.500000px;}
.y66{bottom:857.994000px;}
.yd1{bottom:858.187500px;}
.y13f{bottom:862.518000px;}
.y228{bottom:867.991500px;}
.y1c0{bottom:870.442500px;}
.y1f2{bottom:870.865500px;}
.y194{bottom:871.227000px;}
.y25b{bottom:873.436500px;}
.y15{bottom:874.432500px;}
.y65{bottom:875.926500px;}
.yd0{bottom:876.121500px;}
.y227{bottom:885.924000px;}
.y1f1{bottom:888.798000px;}
.y1bf{bottom:889.746000px;}
.y193{bottom:890.334000px;}
.y25a{bottom:891.369000px;}
.y11a{bottom:891.379500px;}
.y14{bottom:892.365000px;}
.y8e{bottom:893.859000px;}
.y64{bottom:893.860500px;}
.ycf{bottom:894.054000px;}
.y155{bottom:898.026000px;}
.y13e{bottom:902.140500px;}
.y226{bottom:903.856500px;}
.y1be{bottom:907.678500px;}
.y1f0{bottom:907.996500px;}
.y192{bottom:908.266500px;}
.y119{bottom:909.312000px;}
.y259{bottom:910.132500px;}
.y13{bottom:910.299000px;}
.y8d{bottom:911.791500px;}
.y63{bottom:911.793000px;}
.yce{bottom:911.986500px;}
.y13d{bottom:920.074500px;}
.y225{bottom:921.790500px;}
.y1bd{bottom:925.612500px;}
.y1ef{bottom:925.929000px;}
.y191{bottom:927.375000px;}
.y258{bottom:928.065000px;}
.y12{bottom:928.231500px;}
.y62{bottom:929.725500px;}
.ycd{bottom:929.919000px;}
.y13c{bottom:938.007000px;}
.y224{bottom:942.367500px;}
.y1bc{bottom:943.545000px;}
.y1ee{bottom:943.861500px;}
.y190{bottom:945.307500px;}
.y257{bottom:945.997500px;}
.y11{bottom:946.164000px;}
.y61{bottom:947.658000px;}
.ycc{bottom:947.851500px;}
.y13b{bottom:955.939500px;}
.y223{bottom:960.300000px;}
.y1ed{bottom:961.794000px;}
.y1bb{bottom:962.848500px;}
.y18f{bottom:963.240000px;}
.y256{bottom:963.930000px;}
.y10{bottom:964.096500px;}
.y60{bottom:965.590500px;}
.ycb{bottom:965.784000px;}
.y13a{bottom:973.872000px;}
.y222{bottom:978.232500px;}
.y1ba{bottom:980.781000px;}
.y1ec{bottom:980.992500px;}
.y18e{bottom:981.174000px;}
.y255{bottom:981.864000px;}
.yf{bottom:982.029000px;}
.y5f{bottom:983.523000px;}
.yca{bottom:983.718000px;}
.y139{bottom:991.804500px;}
.y221{bottom:996.166500px;}
.y1b9{bottom:998.713500px;}
.y1eb{bottom:998.925000px;}
.ye{bottom:999.961500px;}
.y18d{bottom:1000.281000px;}
.y254{bottom:1000.626000px;}
.y8c{bottom:1001.455500px;}
.y5e{bottom:1001.457000px;}
.yc9{bottom:1001.650500px;}
.y138{bottom:1009.737000px;}
.y220{bottom:1014.099000px;}
.y1b8{bottom:1016.647500px;}
.y1ea{bottom:1016.857500px;}
.yd{bottom:1017.895500px;}
.y18c{bottom:1018.213500px;}
.y253{bottom:1018.558500px;}
.y8b{bottom:1019.388000px;}
.y5d{bottom:1019.389500px;}
.y137{bottom:1027.671000px;}
.yc8{bottom:1030.143000px;}
.y21f{bottom:1032.031500px;}
.y1b7{bottom:1034.580000px;}
.y1e9{bottom:1034.791500px;}
.yc{bottom:1035.828000px;}
.y18b{bottom:1036.147500px;}
.y252{bottom:1036.492500px;}
.y5c{bottom:1037.322000px;}
.y136{bottom:1045.603500px;}
.y21e{bottom:1052.610000px;}
.y1b6{bottom:1053.883500px;}
.y1e8{bottom:1053.988500px;}
.y18a{bottom:1054.080000px;}
.y251{bottom:1054.425000px;}
.y5b{bottom:1055.254500px;}
.y135{bottom:1063.536000px;}
.ya{bottom:1067.956500px;}
.y21d{bottom:1070.542500px;}
.y1b5{bottom:1071.816000px;}
.y1e7{bottom:1071.922500px;}
.y189{bottom:1072.012500px;}
.yb{bottom:1072.176000px;}
.y250{bottom:1072.357500px;}
.y5a{bottom:1073.187000px;}
.y134{bottom:1081.468500px;}
.y9{bottom:1086.637500px;}
.y21c{bottom:1088.475000px;}
.y1e6{bottom:1089.855000px;}
.y59{bottom:1091.119500px;}
.y133{bottom:1099.401000px;}
.y8{bottom:1103.076000px;}
.y21b{bottom:1106.407500px;}
.y1e5{bottom:1107.787500px;}
.y8a{bottom:1109.052000px;}
.y58{bottom:1109.053500px;}
.y132{bottom:1117.335000px;}
.y6{bottom:1123.996500px;}
.y21a{bottom:1124.340000px;}
.y1e4{bottom:1125.720000px;}
.y57{bottom:1126.986000px;}
.y7{bottom:1130.505000px;}
.y56{bottom:1144.918500px;}
.y5{bottom:1162.851000px;}
.yae{bottom:1165.888438px;}
.y4{bottom:1166.003240px;}
.y3{bottom:1179.782758px;}
.he{height:13.200074px;}
.hd{height:29.960304px;}
.ha{height:34.074600px;}
.h9{height:34.191300px;}
.h12{height:34.368215px;}
.h4{height:36.000225px;}
.h8{height:40.347000px;}
.h11{height:42.792210px;}
.hb{height:42.801048px;}
.h3{height:44.824091px;}
.hc{height:44.833500px;}
.h7{height:45.429000px;}
.h14{height:47.781048px;}
.h13{height:49.474416px;}
.hf{height:49.898438px;}
.h6{height:51.358680px;}
.h5{height:61.544340px;}
.h2{height:1195.555378px;}
.h10{height:1262.830100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:20.022000px;}
.w2{width:727.996041px;}
.w4{width:892.910172px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:2.111095px;}
.x10{left:81.000000px;}
.x1{left:82.367775px;}
.x4{left:85.039500px;}
.x20{left:92.511000px;}
.xb{left:99.984000px;}
.x14{left:114.628500px;}
.x21{left:115.758000px;}
.x18{left:118.944000px;}
.x2{left:125.858878px;}
.x1c{left:141.111000px;}
.x1b{left:153.834000px;}
.x5{left:192.586500px;}
.x6{left:205.288500px;}
.xf{left:208.226652px;}
.x7{left:225.037500px;}
.x17{left:260.529000px;}
.x16{left:289.627500px;}
.x11{left:337.086000px;}
.x22{left:402.970500px;}
.x13{left:419.889000px;}
.xc{left:453.930000px;}
.x1d{left:460.830000px;}
.xd{left:468.874500px;}
.x12{left:483.517500px;}
.x1e{left:484.647000px;}
.x15{left:488.206500px;}
.x1a{left:490.095000px;}
.x19{left:491.371500px;}
.x1f{left:497.038500px;}
.x9{left:664.932000px;}
.x8{left:676.785000px;}
.xa{left:679.366500px;}
.xe{left:791.891968px;}
@media print{
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.426667pt;}
.v2{vertical-align:19.280000pt;}
.lsb{letter-spacing:-0.300471pt;}
.ls9{letter-spacing:-0.079370pt;}
.lsa{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.003278pt;}
.lsc{letter-spacing:0.034016pt;}
.ls5{letter-spacing:0.083746pt;}
.ls4{letter-spacing:0.084291pt;}
.ls1{letter-spacing:0.215432pt;}
.ls0{letter-spacing:0.544250pt;}
.ls2{letter-spacing:0.592371pt;}
.ls3{letter-spacing:0.617146pt;}
.ls2e{letter-spacing:1.603629pt;}
.ls22{letter-spacing:2.652304pt;}
.ls20{letter-spacing:2.656582pt;}
.ls21{letter-spacing:2.657637pt;}
.ls25{letter-spacing:11.806819pt;}
.ls18{letter-spacing:12.400305pt;}
.ls13{letter-spacing:12.749333pt;}
.lsf{letter-spacing:13.163834pt;}
.ls24{letter-spacing:14.459249pt;}
.ls1f{letter-spacing:14.756153pt;}
.ls28{letter-spacing:14.824000pt;}
.ls27{letter-spacing:14.824944pt;}
.ls2a{letter-spacing:15.512000pt;}
.ls2d{letter-spacing:15.834581pt;}
.ls17{letter-spacing:16.352136pt;}
.ls1d{letter-spacing:16.361988pt;}
.ls14{letter-spacing:17.053333pt;}
.ls1e{letter-spacing:17.413916pt;}
.ls8{letter-spacing:17.501638pt;}
.ls16{letter-spacing:17.549638pt;}
.ls29{letter-spacing:17.645013pt;}
.ls15{letter-spacing:17.693333pt;}
.ls1b{letter-spacing:17.746667pt;}
.ls6{letter-spacing:22.013837pt;}
.ls2b{letter-spacing:22.370667pt;}
.ls19{letter-spacing:22.411478pt;}
.ls1a{letter-spacing:22.481486pt;}
.ls2c{letter-spacing:23.858064pt;}
.ls12{letter-spacing:24.134685pt;}
.ls1c{letter-spacing:24.852000pt;}
.lsd{letter-spacing:25.338806pt;}
.ls11{letter-spacing:26.732153pt;}
.ls10{letter-spacing:26.802426pt;}
.ls7{letter-spacing:27.288216pt;}
.lse{letter-spacing:28.920305pt;}
.ls26{letter-spacing:429.957916pt;}
.ws0{word-spacing:-43.097798pt;}
.ws1{word-spacing:-42.666933pt;}
.ws11b{word-spacing:-34.612790pt;}
.ws157{word-spacing:-14.761181pt;}
.ws1a9{word-spacing:-13.581562pt;}
.ws202{word-spacing:-2.943894pt;}
.ws90{word-spacing:-2.912172pt;}
.ws1ab{word-spacing:-2.911587pt;}
.ws113{word-spacing:-2.805953pt;}
.ws196{word-spacing:-2.805421pt;}
.ws236{word-spacing:-2.752445pt;}
.ws148{word-spacing:-2.699309pt;}
.ws2a0{word-spacing:-2.646173pt;}
.wsc4{word-spacing:-2.539901pt;}
.ws86{word-spacing:-2.380440pt;}
.wsdb{word-spacing:-2.380387pt;}
.wsbf{word-spacing:-2.327569pt;}
.wse2{word-spacing:-2.220925pt;}
.ws184{word-spacing:-2.114813pt;}
.ws186{word-spacing:-2.114760pt;}
.ws185{word-spacing:-2.061677pt;}
.wsab{word-spacing:-2.026647pt;}
.wsac{word-spacing:-2.008647pt;}
.ws286{word-spacing:-2.008541pt;}
.ws7d{word-spacing:-1.955299pt;}
.ws15d{word-spacing:-1.849186pt;}
.ws1cf{word-spacing:-1.689725pt;}
.ws81{word-spacing:-1.636908pt;}
.ws74{word-spacing:-1.636376pt;}
.ws80{word-spacing:-1.583612pt;}
.ws27c{word-spacing:-1.583506pt;}
.ws1b1{word-spacing:-1.530317pt;}
.wse4{word-spacing:-1.530264pt;}
.ws136{word-spacing:-1.476915pt;}
.wsb1{word-spacing:-1.264637pt;}
.ws8f{word-spacing:-1.158524pt;}
.wsc9{word-spacing:-1.051827pt;}
.ws62{word-spacing:-1.037477pt;}
.ws27f{word-spacing:-1.030838pt;}
.ws281{word-spacing:-0.999063pt;}
.wsb7{word-spacing:-0.999010pt;}
.ws6e{word-spacing:-0.945821pt;}
.ws115{word-spacing:-0.945715pt;}
.ws5d{word-spacing:-0.907083pt;}
.ws61{word-spacing:-0.890076pt;}
.ws2aa{word-spacing:-0.818454pt;}
.ws190{word-spacing:-0.733436pt;}
.ws1dc{word-spacing:-0.729570pt;}
.ws1b8{word-spacing:-0.712022pt;}
.ws126{word-spacing:-0.680088pt;}
.ws9f{word-spacing:-0.627270pt;}
.ws19a{word-spacing:-0.605750pt;}
.ws231{word-spacing:-0.573922pt;}
.ws5b{word-spacing:-0.544250pt;}
.wsa4{word-spacing:-0.520627pt;}
.wsa3{word-spacing:-0.467862pt;}
.ws5e{word-spacing:-0.447872pt;}
.ws177{word-spacing:-0.414514pt;}
.wsbd{word-spacing:-0.414461pt;}
.ws63{word-spacing:-0.413857pt;}
.ws117{word-spacing:-0.361165pt;}
.ws79{word-spacing:-0.361112pt;}
.ws299{word-spacing:-0.323047pt;}
.wsd4{word-spacing:-0.255053pt;}
.ws283{word-spacing:-0.233798pt;}
.ws284{word-spacing:-0.201917pt;}
.ws161{word-spacing:-0.201704pt;}
.ws244{word-spacing:-0.148781pt;}
.ws33{word-spacing:-0.042774pt;}
.ws78{word-spacing:-0.042721pt;}
.ws1b2{word-spacing:-0.042509pt;}
.ws11c{word-spacing:-0.037195pt;}
.ws5a{word-spacing:0.000000pt;}
.ws14b{word-spacing:0.023809pt;}
.ws240{word-spacing:0.031563pt;}
.ws60{word-spacing:0.039685pt;}
.ws145{word-spacing:0.063338pt;}
.ws1b9{word-spacing:0.063391pt;}
.ws14a{word-spacing:0.063763pt;}
.ws14c{word-spacing:0.063869pt;}
.ws232{word-spacing:0.127261pt;}
.wsc3{word-spacing:0.170088pt;}
.ws51{word-spacing:0.222799pt;}
.ws5c{word-spacing:0.260786pt;}
.ws15f{word-spacing:0.276148pt;}
.ws29a{word-spacing:0.286722pt;}
.ws28b{word-spacing:0.297721pt;}
.ws163{word-spacing:0.329549pt;}
.ws293{word-spacing:0.435609pt;}
.ws294{word-spacing:0.488851pt;}
.ws10f{word-spacing:0.488957pt;}
.ws1b7{word-spacing:0.489011pt;}
.ws243{word-spacing:0.510106pt;}
.ws7a{word-spacing:0.541775pt;}
.ws13c{word-spacing:0.595070pt;}
.ws50{word-spacing:0.595176pt;}
.ws5f{word-spacing:0.634958pt;}
.ws278{word-spacing:0.647887pt;}
.ws89{word-spacing:0.647994pt;}
.ws151{word-spacing:0.648525pt;}
.ws28{word-spacing:0.701236pt;}
.ws21b{word-spacing:0.712288pt;}
.ws277{word-spacing:0.722650pt;}
.ws169{word-spacing:0.734420pt;}
.ws6f{word-spacing:0.754531pt;}
.ws29b{word-spacing:0.775573pt;}
.ws4c{word-spacing:0.807348pt;}
.ws8a{word-spacing:0.807455pt;}
.ws3e{word-spacing:0.860697pt;}
.ws221{word-spacing:0.913939pt;}
.ws204{word-spacing:0.935034pt;}
.ws125{word-spacing:0.967341pt;}
.ws192{word-spacing:1.020158pt;}
.wsde{word-spacing:1.020264pt;}
.ws103{word-spacing:1.072975pt;}
.ws102{word-spacing:1.073028pt;}
.ws17e{word-spacing:1.073400pt;}
.ws17f{word-spacing:1.073507pt;}
.ws242{word-spacing:1.179619pt;}
.wsa1{word-spacing:1.179725pt;}
.wseb{word-spacing:1.232436pt;}
.ws114{word-spacing:1.232968pt;}
.ws245{word-spacing:1.285732pt;}
.wsd3{word-spacing:1.338549pt;}
.ws42{word-spacing:1.392004pt;}
.ws65{word-spacing:1.445246pt;}
.ws1a3{word-spacing:1.445299pt;}
.ws220{word-spacing:1.498116pt;}
.ws105{word-spacing:1.498435pt;}
.ws7e{word-spacing:1.498541pt;}
.ws267{word-spacing:1.572879pt;}
.wsce{word-spacing:1.604813pt;}
.ws39{word-spacing:1.657471pt;}
.wsa5{word-spacing:1.710820pt;}
.wsd8{word-spacing:1.764115pt;}
.ws10e{word-spacing:1.764168pt;}
.ws155{word-spacing:1.764275pt;}
.wsf4{word-spacing:1.764700pt;}
.ws12a{word-spacing:1.817251pt;}
.ws187{word-spacing:1.817517pt;}
.ws122{word-spacing:1.870281pt;}
.ws132{word-spacing:1.870440pt;}
.ws21f{word-spacing:1.891535pt;}
.wsc8{word-spacing:1.923098pt;}
.wsb5{word-spacing:1.923204pt;}
.ws107{word-spacing:1.923629pt;}
.ws7f{word-spacing:1.976553pt;}
.ws10d{word-spacing:2.029742pt;}
.ws95{word-spacing:2.029901pt;}
.ws1ba{word-spacing:2.040316pt;}
.ws1dd{word-spacing:2.093558pt;}
.wsc2{word-spacing:2.136014pt;}
.ws249{word-spacing:2.136067pt;}
.ws166{word-spacing:2.189203pt;}
.ws11d{word-spacing:2.193089pt;}
.ws297{word-spacing:2.242339pt;}
.ws248{word-spacing:2.263594pt;}
.ws99{word-spacing:2.294838pt;}
.ws9a{word-spacing:2.295369pt;}
.ws1e{word-spacing:2.295475pt;}
.ws98{word-spacing:2.295528pt;}
.ws149{word-spacing:2.348133pt;}
.ws92{word-spacing:2.348292pt;}
.ws91{word-spacing:2.348877pt;}
.ws175{word-spacing:2.401641pt;}
.ws101{word-spacing:2.454830pt;}
.ws235{word-spacing:2.454883pt;}
.wsed{word-spacing:2.454989pt;}
.ws3a{word-spacing:2.508179pt;}
.ws292{word-spacing:2.515847pt;}
.ws1ff{word-spacing:2.560943pt;}
.ws1ac{word-spacing:2.614291pt;}
.ws171{word-spacing:2.667268pt;}
.ws27d{word-spacing:2.667427pt;}
.ws112{word-spacing:2.667640pt;}
.ws1b3{word-spacing:2.678161pt;}
.ws234{word-spacing:2.688682pt;}
.ws38{word-spacing:2.720404pt;}
.wsf0{word-spacing:2.773221pt;}
.ws17c{word-spacing:2.773699pt;}
.wsb6{word-spacing:2.773752pt;}
.wsfe{word-spacing:2.826570pt;}
.ws25{word-spacing:2.826729pt;}
.ws19f{word-spacing:2.848090pt;}
.ws16e{word-spacing:2.879546pt;}
.ws3c{word-spacing:2.879865pt;}
.wsee{word-spacing:2.916763pt;}
.ws179{word-spacing:2.932682pt;}
.wsa9{word-spacing:2.932842pt;}
.ws127{word-spacing:2.933107pt;}
.ws109{word-spacing:2.933213pt;}
.ws29{word-spacing:2.933373pt;}
.ws1d0{word-spacing:2.945048pt;}
.ws10b{word-spacing:2.986031pt;}
.ws41{word-spacing:2.986190pt;}
.ws6a{word-spacing:2.986243pt;}
.ws77{word-spacing:2.986721pt;}
.wsad{word-spacing:3.039379pt;}
.ws2e{word-spacing:3.039539pt;}
.ws3b{word-spacing:3.092356pt;}
.wsbe{word-spacing:3.092887pt;}
.ws24a{word-spacing:3.113185pt;}
.ws280{word-spacing:3.113770pt;}
.ws17b{word-spacing:3.145492pt;}
.ws1d6{word-spacing:3.145651pt;}
.ws224{word-spacing:3.166906pt;}
.wsc7{word-spacing:3.198309pt;}
.ws3f{word-spacing:3.198840pt;}
.ws1ce{word-spacing:3.273178pt;}
.ws1d5{word-spacing:3.273443pt;}
.ws279{word-spacing:3.278873pt;}
.ws274{word-spacing:3.291055pt;}
.wsd5{word-spacing:3.304953pt;}
.ws2a6{word-spacing:3.305059pt;}
.ws138{word-spacing:3.305165pt;}
.ws1fc{word-spacing:3.326526pt;}
.ws6d{word-spacing:3.357770pt;}
.wsdc{word-spacing:3.357930pt;}
.ws183{word-spacing:3.358195pt;}
.ws13a{word-spacing:3.358301pt;}
.ws176{word-spacing:3.411278pt;}
.ws168{word-spacing:3.421640pt;}
.ws1fd{word-spacing:3.427717pt;}
.ws22e{word-spacing:3.457066pt;}
.ws188{word-spacing:3.464414pt;}
.ws34{word-spacing:3.464627pt;}
.ws152{word-spacing:3.517763pt;}
.ws222{word-spacing:3.528284pt;}
.ws59{word-spacing:3.570580pt;}
.ws147{word-spacing:3.570739pt;}
.ws15c{word-spacing:3.623875pt;}
.ws29d{word-spacing:3.624407pt;}
.ws21c{word-spacing:3.645183pt;}
.wse5{word-spacing:3.676692pt;}
.ws106{word-spacing:3.677224pt;}
.ws1fa{word-spacing:3.687266pt;}
.ws24c{word-spacing:3.730041pt;}
.ws270{word-spacing:3.783283pt;}
.ws7b{word-spacing:3.783336pt;}
.ws119{word-spacing:3.836154pt;}
.ws8b{word-spacing:3.836366pt;}
.ws18e{word-spacing:3.836419pt;}
.ws11f{word-spacing:3.889502pt;}
.ws37{word-spacing:3.889715pt;}
.ws1c6{word-spacing:3.942266pt;}
.wscb{word-spacing:3.995615pt;}
.ws1f{word-spacing:3.995827pt;}
.ws226{word-spacing:4.006454pt;}
.ws13b{word-spacing:4.048963pt;}
.ws1a4{word-spacing:4.059484pt;}
.ws2a3{word-spacing:4.095999pt;}
.ws1da{word-spacing:4.098383pt;}
.ws124{word-spacing:4.101780pt;}
.ws25b{word-spacing:4.122651pt;}
.ws223{word-spacing:4.139460pt;}
.wsa8{word-spacing:4.155288pt;}
.ws110{word-spacing:4.208424pt;}
.ws139{word-spacing:4.208637pt;}
.wsf6{word-spacing:4.261454pt;}
.ws1f3{word-spacing:4.261507pt;}
.ws1f9{word-spacing:4.314537pt;}
.wscd{word-spacing:4.314803pt;}
.wsb2{word-spacing:4.367567pt;}
.ws146{word-spacing:4.367779pt;}
.ws53{word-spacing:4.420703pt;}
.ws57{word-spacing:4.420915pt;}
.ws1f2{word-spacing:4.442170pt;}
.ws45{word-spacing:4.473467pt;}
.ws268{word-spacing:4.527081pt;}
.ws271{word-spacing:4.590685pt;}
.ws1c1{word-spacing:4.633459pt;}
.ws40{word-spacing:4.739891pt;}
.ws1bd{word-spacing:4.761145pt;}
.ws137{word-spacing:4.792442pt;}
.wsa6{word-spacing:4.792973pt;}
.ws291{word-spacing:4.813962pt;}
.ws262{word-spacing:4.814494pt;}
.ws7c{word-spacing:4.845738pt;}
.ws69{word-spacing:4.846003pt;}
.ws100{word-spacing:4.899352pt;}
.ws116{word-spacing:4.952435pt;}
.ws2a1{word-spacing:4.963921pt;}
.ws1c9{word-spacing:4.972892pt;}
.wsbb{word-spacing:5.005199pt;}
.ws123{word-spacing:5.058547pt;}
.ws14e{word-spacing:5.058813pt;}
.ws257{word-spacing:5.079802pt;}
.wscf{word-spacing:5.111630pt;}
.ws252{word-spacing:5.122470pt;}
.ws1be{word-spacing:5.132938pt;}
.ws255{word-spacing:5.164713pt;}
.ws28a{word-spacing:5.164925pt;}
.ws27e{word-spacing:5.175234pt;}
.wsdd{word-spacing:5.217477pt;}
.ws54{word-spacing:5.324174pt;}
.ws43{word-spacing:5.324440pt;}
.ws247{word-spacing:5.387512pt;}
.ws1ae{word-spacing:5.387990pt;}
.ws1e6{word-spacing:5.388044pt;}
.ws201{word-spacing:5.388256pt;}
.wsb8{word-spacing:5.429755pt;}
.ws1b4{word-spacing:5.440861pt;}
.ws1bb{word-spacing:5.441073pt;}
.ws1a5{word-spacing:5.441126pt;}
.ws67{word-spacing:5.483635pt;}
.ws212{word-spacing:5.493625pt;}
.ws16a{word-spacing:5.536399pt;}
.ws22{word-spacing:5.536984pt;}
.ws2ab{word-spacing:5.547398pt;}
.ws87{word-spacing:5.589748pt;}
.ws150{word-spacing:5.590013pt;}
.wsc6{word-spacing:5.695914pt;}
.wse1{word-spacing:5.696179pt;}
.wsc5{word-spacing:5.696445pt;}
.ws1a6{word-spacing:5.717434pt;}
.ws290{word-spacing:5.749209pt;}
.ws18d{word-spacing:5.749315pt;}
.ws275{word-spacing:5.759783pt;}
.wsba{word-spacing:5.802292pt;}
.ws27a{word-spacing:5.813132pt;}
.ws10a{word-spacing:5.865896pt;}
.ws164{word-spacing:5.908989pt;}
.wsef{word-spacing:5.918978pt;}
.ws22f{word-spacing:5.919244pt;}
.ws15a{word-spacing:5.919350pt;}
.ws26b{word-spacing:5.930243pt;}
.ws1fe{word-spacing:5.932818pt;}
.ws11a{word-spacing:6.014836pt;}
.ws82{word-spacing:6.015101pt;}
.ws94{word-spacing:6.067600pt;}
.ws266{word-spacing:6.074417pt;}
.ws217{word-spacing:6.074470pt;}
.ws29c{word-spacing:6.078705pt;}
.ws1fb{word-spacing:6.080073pt;}
.ws160{word-spacing:6.120948pt;}
.ws189{word-spacing:6.121480pt;}
.ws17d{word-spacing:6.174403pt;}
.ws2a9{word-spacing:6.195658pt;}
.ws162{word-spacing:6.227645pt;}
.ws153{word-spacing:6.280941pt;}
.ws15b{word-spacing:6.333811pt;}
.ws9b{word-spacing:6.386841pt;}
.ws12e{word-spacing:6.386947pt;}
.wsf5{word-spacing:6.387107pt;}
.ws1f4{word-spacing:6.397628pt;}
.ws9d{word-spacing:6.439339pt;}
.ws9c{word-spacing:6.439658pt;}
.ws9e{word-spacing:6.439871pt;}
.ws35{word-spacing:6.440402pt;}
.ws1ee{word-spacing:6.546355pt;}
.ws83{word-spacing:6.599332pt;}
.ws27{word-spacing:6.599651pt;}
.ws20f{word-spacing:6.652468pt;}
.ws1a7{word-spacing:6.652627pt;}
.wsd9{word-spacing:6.705763pt;}
.wsa7{word-spacing:6.758846pt;}
.ws182{word-spacing:6.811610pt;}
.ws121{word-spacing:6.812141pt;}
.ws1ed{word-spacing:6.886372pt;}
.ws12f{word-spacing:6.918307pt;}
.ws2b{word-spacing:6.971443pt;}
.ws118{word-spacing:6.971603pt;}
.ws20e{word-spacing:6.992538pt;}
.wsd2{word-spacing:7.024579pt;}
.ws1c2{word-spacing:7.035206pt;}
.ws11e{word-spacing:7.038913pt;}
.ws93{word-spacing:7.077556pt;}
.wsaf{word-spacing:7.078300pt;}
.ws3{word-spacing:7.102864pt;}
.ws4{word-spacing:7.102928pt;}
.wsb3{word-spacing:7.103055pt;}
.ws214{word-spacing:7.130373pt;}
.ws1e4{word-spacing:7.130532pt;}
.ws1aa{word-spacing:7.152106pt;}
.ws111{word-spacing:7.183881pt;}
.wsa0{word-spacing:7.184253pt;}
.ws23{word-spacing:7.237017pt;}
.ws29f{word-spacing:7.237123pt;}
.ws21{word-spacing:7.237229pt;}
.ws2a2{word-spacing:7.247219pt;}
.ws108{word-spacing:7.290047pt;}
.ws26f{word-spacing:7.290259pt;}
.wsaa{word-spacing:7.290365pt;}
.ws180{word-spacing:7.343342pt;}
.ws16d{word-spacing:7.343873pt;}
.wsb9{word-spacing:7.396531pt;}
.ws1eb{word-spacing:7.407158pt;}
.ws1b0{word-spacing:7.417679pt;}
.ws195{word-spacing:7.449508pt;}
.wsea{word-spacing:7.502803pt;}
.wse0{word-spacing:7.503335pt;}
.ws56{word-spacing:7.555992pt;}
.ws29e{word-spacing:7.577087pt;}
.ws170{word-spacing:7.587753pt;}
.ws4a{word-spacing:7.608756pt;}
.ws49{word-spacing:7.609341pt;}
.ws20c{word-spacing:7.619809pt;}
.ws26e{word-spacing:7.630330pt;}
.wse6{word-spacing:7.662052pt;}
.wse7{word-spacing:7.714922pt;}
.ws16c{word-spacing:7.715453pt;}
.wsec{word-spacing:7.740400pt;}
.ws18b{word-spacing:7.768483pt;}
.ws173{word-spacing:7.768961pt;}
.ws15e{word-spacing:7.821779pt;}
.ws263{word-spacing:7.842874pt;}
.ws10{word-spacing:7.869282pt;}
.ws16{word-spacing:7.869442pt;}
.ws131{word-spacing:7.874755pt;}
.ws259{word-spacing:7.909758pt;}
.wsae{word-spacing:7.927732pt;}
.ws20{word-spacing:7.927891pt;}
.ws172{word-spacing:7.980708pt;}
.ws6c{word-spacing:7.981027pt;}
.ws154{word-spacing:8.034376pt;}
.ws165{word-spacing:8.034535pt;}
.ws26c{word-spacing:8.086821pt;}
.wsb0{word-spacing:8.087193pt;}
.ws120{word-spacing:8.140170pt;}
.ws3d{word-spacing:8.193518pt;}
.ws233{word-spacing:8.201364pt;}
.ws167{word-spacing:8.246654pt;}
.ws133{word-spacing:8.246707pt;}
.ws24{word-spacing:8.299631pt;}
.ws215{word-spacing:8.352820pt;}
.ws68{word-spacing:8.352979pt;}
.ws2a7{word-spacing:8.406115pt;}
.ws18c{word-spacing:8.406168pt;}
.ws135{word-spacing:8.459251pt;}
.ws1df{word-spacing:8.479250pt;}
.ws11{word-spacing:8.506861pt;}
.ws75{word-spacing:8.512281pt;}
.wsb4{word-spacing:8.512440pt;}
.ws213{word-spacing:8.533907pt;}
.ws2a5{word-spacing:8.565523pt;}
.ws8e{word-spacing:8.565629pt;}
.ws1c{word-spacing:8.666466pt;}
.ws18{word-spacing:8.668669pt;}
.ws1d2{word-spacing:8.671795pt;}
.ws46{word-spacing:8.671901pt;}
.ws1a{word-spacing:8.672231pt;}
.ws1b{word-spacing:8.673614pt;}
.ws1c7{word-spacing:8.694381pt;}
.ws4b{word-spacing:8.724559pt;}
.ws47{word-spacing:8.724666pt;}
.ws84{word-spacing:8.725091pt;}
.ws48{word-spacing:8.725250pt;}
.ws1bc{word-spacing:8.777908pt;}
.ws1f5{word-spacing:8.778014pt;}
.ws1e1{word-spacing:8.782991pt;}
.ws26d{word-spacing:8.788362pt;}
.ws28c{word-spacing:8.788743pt;}
.ws1e5{word-spacing:8.790285pt;}
.ws1e9{word-spacing:8.831203pt;}
.wsff{word-spacing:8.831363pt;}
.ws230{word-spacing:8.852458pt;}
.ws85{word-spacing:8.884020pt;}
.ws24b{word-spacing:8.891085pt;}
.ws207{word-spacing:8.905647pt;}
.ws211{word-spacing:8.981906pt;}
.ws1f1{word-spacing:9.001238pt;}
.ws2a4{word-spacing:9.011812pt;}
.ws104{word-spacing:9.043747pt;}
.ws17a{word-spacing:9.096883pt;}
.ws13e{word-spacing:9.096936pt;}
.ws14{word-spacing:9.139392pt;}
.wscc{word-spacing:9.150179pt;}
.ws174{word-spacing:9.202996pt;}
.ws6b{word-spacing:9.203102pt;}
.ws264{word-spacing:9.255866pt;}
.ws14d{word-spacing:9.256451pt;}
.ws1e8{word-spacing:9.277546pt;}
.ws97{word-spacing:9.308683pt;}
.ws32{word-spacing:9.309108pt;}
.ws96{word-spacing:9.309640pt;}
.wsdf{word-spacing:9.309746pt;}
.ws1cd{word-spacing:9.330735pt;}
.ws21d{word-spacing:9.362457pt;}
.ws219{word-spacing:9.372923pt;}
.ws241{word-spacing:9.415699pt;}
.ws178{word-spacing:9.415805pt;}
.ws88{word-spacing:9.468676pt;}
.wsbc{word-spacing:9.469101pt;}
.wse8{word-spacing:9.521918pt;}
.wsa2{word-spacing:9.574735pt;}
.ws2c{word-spacing:9.628084pt;}
.ws2d{word-spacing:9.628668pt;}
.ws20d{word-spacing:9.649179pt;}
.ws16b{word-spacing:9.681379pt;}
.wsf{word-spacing:9.729308pt;}
.wsf2{word-spacing:9.734834pt;}
.ws52{word-spacing:9.787651pt;}
.ws64{word-spacing:9.840787pt;}
.ws1f8{word-spacing:9.840893pt;}
.ws128{word-spacing:9.840947pt;}
.ws254{word-spacing:9.893658pt;}
.ws269{word-spacing:9.893923pt;}
.wsfc{word-spacing:10.000355pt;}
.wsfb{word-spacing:10.000408pt;}
.ws25a{word-spacing:10.010982pt;}
.ws44{word-spacing:10.053225pt;}
.ws141{word-spacing:10.053331pt;}
.ws1d7{word-spacing:10.106467pt;}
.ws36{word-spacing:10.159338pt;}
.ws2a{word-spacing:10.159869pt;}
.ws1ad{word-spacing:10.170230pt;}
.ws200{word-spacing:10.170337pt;}
.ws22d{word-spacing:10.266035pt;}
.ws159{word-spacing:10.290864pt;}
.wsd1{word-spacing:10.318267pt;}
.ws129{word-spacing:10.318852pt;}
.ws287{word-spacing:10.329638pt;}
.ws1d8{word-spacing:10.340260pt;}
.ws1c5{word-spacing:10.372147pt;}
.ws1f7{word-spacing:10.393189pt;}
.ws1c0{word-spacing:10.393402pt;}
.wsa{word-spacing:10.419970pt;}
.ws1ec{word-spacing:10.435910pt;}
.ws17{word-spacing:10.473265pt;}
.ws4d{word-spacing:10.478207pt;}
.ws140{word-spacing:10.478313pt;}
.ws71{word-spacing:10.531555pt;}
.ws70{word-spacing:10.531608pt;}
.ws1b5{word-spacing:10.552650pt;}
.ws55{word-spacing:10.584372pt;}
.ws1d1{word-spacing:10.605946pt;}
.ws14f{word-spacing:10.637774pt;}
.ws218{word-spacing:10.658816pt;}
.ws130{word-spacing:10.690963pt;}
.ws20a{word-spacing:10.691016pt;}
.ws1d3{word-spacing:10.701590pt;}
.ws1c8{word-spacing:10.701644pt;}
.ws13f{word-spacing:10.744418pt;}
.ws31{word-spacing:10.849999pt;}
.wsd6{word-spacing:10.850371pt;}
.wsd7{word-spacing:10.850584pt;}
.ws16f{word-spacing:10.861105pt;}
.ws1a8{word-spacing:10.903507pt;}
.ws4e{word-spacing:10.956643pt;}
.ws193{word-spacing:10.956696pt;}
.ws216{word-spacing:11.019981pt;}
.ws26{word-spacing:11.062809pt;}
.ws265{word-spacing:11.073542pt;}
.wsfa{word-spacing:11.168922pt;}
.ws76{word-spacing:11.275619pt;}
.ws1de{word-spacing:11.286086pt;}
.ws19d{word-spacing:11.328436pt;}
.ws1bf{word-spacing:11.328967pt;}
.ws237{word-spacing:11.329486pt;}
.ws21e{word-spacing:11.338957pt;}
.ws21a{word-spacing:11.339488pt;}
.wsca{word-spacing:11.381731pt;}
.ws1e7{word-spacing:11.402826pt;}
.ws58{word-spacing:11.487897pt;}
.ws1b6{word-spacing:11.594010pt;}
.ws181{word-spacing:11.647358pt;}
.ws206{word-spacing:11.657932pt;}
.ws10c{word-spacing:11.700707pt;}
.ws191{word-spacing:11.753471pt;}
.ws27b{word-spacing:11.764310pt;}
.wsb{word-spacing:11.801506pt;}
.ws1c3{word-spacing:11.801791pt;}
.ws13{word-spacing:11.801824pt;}
.ws199{word-spacing:11.804458pt;}
.wsc1{word-spacing:11.806819pt;}
.ws26a{word-spacing:11.817340pt;}
.wsf3{word-spacing:11.860168pt;}
.ws1e0{word-spacing:11.881210pt;}
.ws1db{word-spacing:11.912932pt;}
.ws8c{word-spacing:11.966280pt;}
.ws8d{word-spacing:12.019098pt;}
.ws282{word-spacing:12.030203pt;}
.ws273{word-spacing:12.040618pt;}
.wsf1{word-spacing:12.072446pt;}
.ws261{word-spacing:12.136316pt;}
.ws143{word-spacing:12.178559pt;}
.ws228{word-spacing:12.178771pt;}
.ws13d{word-spacing:12.231907pt;}
.ws1d9{word-spacing:12.242428pt;}
.ws25c{word-spacing:12.253002pt;}
.wsf7{word-spacing:12.338020pt;}
.ws258{word-spacing:12.391315pt;}
.ws23d{word-spacing:12.445447pt;}
.ws198{word-spacing:12.498012pt;}
.wsc{word-spacing:12.545303pt;}
.ws30{word-spacing:12.550298pt;}
.ws2f{word-spacing:12.550829pt;}
.ws12{word-spacing:12.598599pt;}
.wsfd{word-spacing:12.603647pt;}
.ws23c{word-spacing:12.603859pt;}
.wsd{word-spacing:12.811408pt;}
.ws1c4{word-spacing:12.837658pt;}
.ws19{word-spacing:13.129755pt;}
.ws19c{word-spacing:13.135379pt;}
.ws19e{word-spacing:13.145900pt;}
.ws18a{word-spacing:13.241491pt;}
.wsd0{word-spacing:13.241544pt;}
.ws7{word-spacing:13.395426pt;}
.ws23b{word-spacing:13.507118pt;}
.ws1a1{word-spacing:13.666579pt;}
.ws142{word-spacing:13.719875pt;}
.ws203{word-spacing:13.730449pt;}
.ws295{word-spacing:13.783266pt;}
.ws194{word-spacing:13.879336pt;}
.ws1cc{word-spacing:13.889910pt;}
.wsc0{word-spacing:14.038903pt;}
.ws12b{word-spacing:14.091667pt;}
.ws72{word-spacing:14.145069pt;}
.ws23e{word-spacing:14.155537pt;}
.ws73{word-spacing:14.197833pt;}
.ws246{word-spacing:14.304424pt;}
.ws1d4{word-spacing:14.325466pt;}
.ws134{word-spacing:14.410483pt;}
.ws22c{word-spacing:14.516755pt;}
.wse9{word-spacing:14.729087pt;}
.ws25e{word-spacing:14.729299pt;}
.wse3{word-spacing:14.782276pt;}
.ws4f{word-spacing:14.782382pt;}
.ws9{word-spacing:14.830098pt;}
.ws8{word-spacing:14.936264pt;}
.ws144{word-spacing:14.941737pt;}
.ws12c{word-spacing:15.048115pt;}
.ws66{word-spacing:15.207523pt;}
.ws18f{word-spacing:15.260659pt;}
.ws28f{word-spacing:15.473203pt;}
.ws298{word-spacing:15.526339pt;}
.wse{word-spacing:15.786334pt;}
.ws20b{word-spacing:15.933410pt;}
.ws256{word-spacing:16.227522pt;}
.ws5{word-spacing:16.306309pt;}
.ws6{word-spacing:16.354127pt;}
.ws28e{word-spacing:16.429386pt;}
.ws1ea{word-spacing:16.493096pt;}
.ws19b{word-spacing:16.504042pt;}
.ws25f{word-spacing:16.535870pt;}
.wsf9{word-spacing:16.588900pt;}
.ws1e3{word-spacing:16.589059pt;}
.ws23f{word-spacing:16.599368pt;}
.wsf8{word-spacing:16.642195pt;}
.ws225{word-spacing:16.748680pt;}
.ws227{word-spacing:16.769722pt;}
.ws28d{word-spacing:17.247946pt;}
.ws1ef{word-spacing:17.386099pt;}
.ws1e2{word-spacing:17.407035pt;}
.ws1cb{word-spacing:17.715489pt;}
.ws209{word-spacing:17.757786pt;}
.ws22a{word-spacing:18.193766pt;}
.ws2a8{word-spacing:18.300038pt;}
.ws22b{word-spacing:18.310666pt;}
.ws12d{word-spacing:18.448819pt;}
.ws25d{word-spacing:18.523210pt;}
.ws251{word-spacing:18.661363pt;}
.ws15{word-spacing:18.678454pt;}
.ws208{word-spacing:18.682564pt;}
.ws1f0{word-spacing:18.725126pt;}
.ws158{word-spacing:19.217264pt;}
.ws1a2{word-spacing:19.245540pt;}
.ws276{word-spacing:19.532794pt;}
.ws24d{word-spacing:19.947254pt;}
.wsda{word-spacing:20.202360pt;}
.ws1af{word-spacing:20.276804pt;}
.ws1a0{word-spacing:20.382916pt;}
.ws253{word-spacing:20.595514pt;}
.ws289{word-spacing:20.733773pt;}
.ws1f6{word-spacing:21.711582pt;}
.ws288{word-spacing:21.817695pt;}
.ws23a{word-spacing:21.849470pt;}
.ws205{word-spacing:22.395866pt;}
.ws197{word-spacing:22.476513pt;}
.ws296{word-spacing:23.252367pt;}
.ws285{word-spacing:24.251536pt;}
.ws2{word-spacing:24.866400pt;}
.ws250{word-spacing:24.931411pt;}
.ws210{word-spacing:26.525226pt;}
.ws239{word-spacing:27.928282pt;}
.ws272{word-spacing:30.053722pt;}
.ws260{word-spacing:30.440151pt;}
.ws24f{word-spacing:31.966618pt;}
.ws156{word-spacing:36.302515pt;}
.ws1ca{word-spacing:42.233333pt;}
.ws229{word-spacing:50.093906pt;}
.ws1d{word-spacing:53.838944pt;}
.ws24e{word-spacing:53.858650pt;}
.ws238{word-spacing:65.176671pt;}
._2b{margin-left:-29.651492pt;}
._23{margin-left:-13.526868pt;}
._2{margin-left:-6.197625pt;}
._3{margin-left:-5.152747pt;}
._4{margin-left:-3.807446pt;}
._1{margin-left:-2.065824pt;}
._5{margin-left:-0.924101pt;}
._0{width:1.555625pt;}
._b{width:2.763072pt;}
._29{width:11.909974pt;}
._1b{width:14.027745pt;}
._1e{width:15.548697pt;}
._21{width:17.316122pt;}
._16{width:18.319949pt;}
._1c{width:19.494804pt;}
._27{width:20.594916pt;}
._c{width:21.800069pt;}
._2a{width:22.695307pt;}
._10{width:23.592437pt;}
._d{width:25.020363pt;}
._12{width:25.929996pt;}
._9{width:27.137762pt;}
._14{width:28.103102pt;}
._1d{width:29.012362pt;}
._13{width:29.931215pt;}
._11{width:31.615654pt;}
._1f{width:33.028475pt;}
._15{width:33.939170pt;}
._2f{width:34.936899pt;}
._e{width:35.954939pt;}
._a{width:37.797522pt;}
._1a{width:39.055066pt;}
._19{width:40.536235pt;}
._f{width:42.356085pt;}
._7{width:44.102561pt;}
._22{width:45.751903pt;}
._8{width:46.877126pt;}
._30{width:48.464800pt;}
._18{width:49.363610pt;}
._25{width:50.889767pt;}
._33{width:51.807600pt;}
._6{width:52.741443pt;}
._2c{width:53.744943pt;}
._31{width:54.806300pt;}
._2d{width:56.151293pt;}
._24{width:58.449813pt;}
._17{width:59.742105pt;}
._26{width:64.507317pt;}
._2e{width:66.930465pt;}
._20{width:70.135872pt;}
._34{width:77.220769pt;}
._32{width:80.449533pt;}
._28{width:90.384336pt;}
.fs7{font-size:31.882667pt;}
.fs9{font-size:37.194667pt;}
.fs5{font-size:42.506667pt;}
.fsa{font-size:42.666667pt;}
.fs2{font-size:42.666933pt;}
.fs0{font-size:42.882365pt;}
.fs6{font-size:47.818667pt;}
.fs1{font-size:53.121069pt;}
.fs8{font-size:53.136000pt;}
.fs4{font-size:63.760000pt;}
.fs3{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:2.245333pt;}
.y2{bottom:4.102851pt;}
.y1{bottom:34.113704pt;}
.y53{bottom:37.226074pt;}
.y55{bottom:38.216555pt;}
.yad{bottom:94.486667pt;}
.y3c{bottom:94.488000pt;}
.y3b{bottom:110.428000pt;}
.y131{bottom:116.977333pt;}
.y3a{bottom:126.368000pt;}
.yf4{bottom:126.802667pt;}
.y24f{bottom:128.718667pt;}
.y130{bottom:132.917333pt;}
.y39{bottom:142.308000pt;}
.y116{bottom:142.309333pt;}
.yf3{bottom:142.742667pt;}
.y219{bottom:143.433333pt;}
.y1e3{bottom:143.526667pt;}
.y24e{bottom:144.658667pt;}
.y12f{bottom:148.857333pt;}
.y167{bottom:152.138667pt;}
.y52{bottom:158.248000pt;}
.y38{bottom:158.249333pt;}
.yf2{bottom:158.682667pt;}
.y218{bottom:159.373333pt;}
.y1e2{bottom:159.466667pt;}
.y24d{bottom:160.600000pt;}
.y12e{bottom:164.798667pt;}
.y154{bottom:173.805333pt;}
.yac{bottom:174.188000pt;}
.y37{bottom:174.189333pt;}
.yf1{bottom:174.622667pt;}
.y217{bottom:175.313333pt;}
.y1e1{bottom:175.408000pt;}
.y188{bottom:176.441333pt;}
.y24c{bottom:176.540000pt;}
.y12d{bottom:180.738667pt;}
.y36{bottom:190.129333pt;}
.yf0{bottom:190.564000pt;}
.y1b4{bottom:191.173333pt;}
.y216{bottom:191.254667pt;}
.y1e0{bottom:191.348000pt;}
.y187{bottom:192.381333pt;}
.y24b{bottom:192.480000pt;}
.y166{bottom:194.320000pt;}
.y115{bottom:195.993333pt;}
.y12c{bottom:196.678667pt;}
.y89{bottom:197.441333pt;}
.y35{bottom:206.069333pt;}
.yef{bottom:206.504000pt;}
.y1b3{bottom:207.114667pt;}
.y215{bottom:207.194667pt;}
.y186{bottom:208.321333pt;}
.y1df{bottom:208.506667pt;}
.y165{bottom:210.260000pt;}
.y24a{bottom:210.772000pt;}
.y114{bottom:211.933333pt;}
.y12b{bottom:212.618667pt;}
.y88{bottom:213.381333pt;}
.y34{bottom:222.009333pt;}
.yee{bottom:222.444000pt;}
.y1b2{bottom:223.054667pt;}
.y214{bottom:224.260000pt;}
.y185{bottom:224.262667pt;}
.y1de{bottom:224.446667pt;}
.y51{bottom:225.036000pt;}
.y164{bottom:226.200000pt;}
.y249{bottom:226.712000pt;}
.y113{bottom:227.874667pt;}
.y12a{bottom:228.558667pt;}
.y87{bottom:229.321333pt;}
.yab{bottom:237.949333pt;}
.y33{bottom:237.950667pt;}
.yed{bottom:238.384000pt;}
.y1b1{bottom:240.038667pt;}
.y213{bottom:240.200000pt;}
.y184{bottom:240.202667pt;}
.y1dd{bottom:240.386667pt;}
.y50{bottom:240.976000pt;}
.y163{bottom:242.140000pt;}
.y248{bottom:242.652000pt;}
.y112{bottom:243.814667pt;}
.y129{bottom:244.498667pt;}
.y86{bottom:245.261333pt;}
.yaa{bottom:253.889333pt;}
.y32{bottom:253.890667pt;}
.yec{bottom:254.324000pt;}
.y1b0{bottom:255.980000pt;}
.y212{bottom:256.140000pt;}
.y183{bottom:256.142667pt;}
.y1dc{bottom:256.326667pt;}
.y108{bottom:256.600000pt;}
.y4f{bottom:256.916000pt;}
.y162{bottom:258.081333pt;}
.y111{bottom:259.754667pt;}
.y128{bottom:260.440000pt;}
.y247{bottom:260.942667pt;}
.y85{bottom:261.202667pt;}
.ya9{bottom:269.829333pt;}
.y31{bottom:269.830667pt;}
.yeb{bottom:270.264000pt;}
.y1af{bottom:271.920000pt;}
.y211{bottom:272.080000pt;}
.y1db{bottom:272.268000pt;}
.y107{bottom:272.540000pt;}
.y4e{bottom:272.857333pt;}
.y161{bottom:274.021333pt;}
.y182{bottom:274.336000pt;}
.y110{bottom:275.694667pt;}
.y127{bottom:276.380000pt;}
.y246{bottom:276.884000pt;}
.y84{bottom:277.142667pt;}
.yc1{bottom:279.120000pt;}
.y30{bottom:285.770667pt;}
.yea{bottom:286.205333pt;}
.y210{bottom:288.020000pt;}
.y106{bottom:288.481333pt;}
.y4d{bottom:288.797333pt;}
.y1ae{bottom:288.904000pt;}
.y1da{bottom:289.426667pt;}
.y160{bottom:289.961333pt;}
.y181{bottom:290.276000pt;}
.y10f{bottom:291.634667pt;}
.y126{bottom:292.320000pt;}
.y245{bottom:292.824000pt;}
.y83{bottom:293.082667pt;}
.yc0{bottom:295.061333pt;}
.y2f{bottom:301.710667pt;}
.ye9{bottom:302.578667pt;}
.y105{bottom:304.421333pt;}
.y4c{bottom:304.737333pt;}
.y1ad{bottom:304.844000pt;}
.y20f{bottom:305.085333pt;}
.y1d9{bottom:305.366667pt;}
.y180{bottom:306.216000pt;}
.y10e{bottom:307.576000pt;}
.y125{bottom:308.260000pt;}
.y244{bottom:308.764000pt;}
.y82{bottom:309.022667pt;}
.ybf{bottom:311.001333pt;}
.y118{bottom:313.440000pt;}
.y2e{bottom:317.650667pt;}
.ye8{bottom:318.520000pt;}
.y104{bottom:320.361333pt;}
.y4b{bottom:320.677333pt;}
.y1ac{bottom:320.785333pt;}
.y20e{bottom:321.025333pt;}
.y1d8{bottom:321.306667pt;}
.y17f{bottom:322.156000pt;}
.y10d{bottom:323.516000pt;}
.y124{bottom:324.200000pt;}
.y81{bottom:324.962667pt;}
.ybe{bottom:326.941333pt;}
.y243{bottom:327.054667pt;}
.y117{bottom:329.380000pt;}
.ya8{bottom:333.590667pt;}
.ye7{bottom:334.460000pt;}
.y103{bottom:336.301333pt;}
.y4a{bottom:336.617333pt;}
.y1ab{bottom:336.725333pt;}
.y20d{bottom:336.966667pt;}
.y1d7{bottom:337.246667pt;}
.y17e{bottom:338.096000pt;}
.y2d{bottom:338.280000pt;}
.y123{bottom:340.141333pt;}
.y15f{bottom:340.454667pt;}
.y80{bottom:340.904000pt;}
.ybd{bottom:342.881333pt;}
.y242{bottom:342.996000pt;}
.y10c{bottom:345.320000pt;}
.ya7{bottom:349.530667pt;}
.yc7{bottom:349.532000pt;}
.ye6{bottom:350.400000pt;}
.y102{bottom:352.241333pt;}
.y49{bottom:352.557333pt;}
.y1aa{bottom:352.665333pt;}
.y20c{bottom:352.906667pt;}
.y1d6{bottom:353.186667pt;}
.y2c{bottom:354.220000pt;}
.y122{bottom:356.081333pt;}
.y7f{bottom:356.844000pt;}
.ybc{bottom:358.821333pt;}
.y241{bottom:358.936000pt;}
.y10b{bottom:361.260000pt;}
.y17d{bottom:361.552000pt;}
.ya6{bottom:365.470667pt;}
.yc6{bottom:365.472000pt;}
.ye5{bottom:366.340000pt;}
.y101{bottom:368.182667pt;}
.y48{bottom:368.498667pt;}
.y20b{bottom:368.846667pt;}
.y1a9{bottom:369.650667pt;}
.y2b{bottom:370.160000pt;}
.y1d5{bottom:370.346667pt;}
.y121{bottom:372.021333pt;}
.y7e{bottom:372.784000pt;}
.ybb{bottom:374.762667pt;}
.y240{bottom:374.876000pt;}
.ya5{bottom:381.412000pt;}
.y100{bottom:384.122667pt;}
.y47{bottom:384.438667pt;}
.y1a8{bottom:385.590667pt;}
.y20a{bottom:385.912000pt;}
.y2a{bottom:386.100000pt;}
.y1d4{bottom:386.286667pt;}
.y120{bottom:387.961333pt;}
.y7d{bottom:388.724000pt;}
.yba{bottom:390.702667pt;}
.y23f{bottom:390.816000pt;}
.ye4{bottom:391.668000pt;}
.ya4{bottom:397.352000pt;}
.yff{bottom:400.062667pt;}
.y46{bottom:400.378667pt;}
.y1a7{bottom:401.530667pt;}
.y209{bottom:401.852000pt;}
.y29{bottom:402.041333pt;}
.y1d3{bottom:402.226667pt;}
.y17c{bottom:404.184000pt;}
.y7c{bottom:404.664000pt;}
.yb9{bottom:406.642667pt;}
.y23e{bottom:409.108000pt;}
.y10a{bottom:409.624000pt;}
.ye3{bottom:410.264000pt;}
.y11f{bottom:412.480000pt;}
.ya3{bottom:413.292000pt;}
.yfe{bottom:416.002667pt;}
.y45{bottom:416.318667pt;}
.y1a6{bottom:417.470667pt;}
.y28{bottom:417.981333pt;}
.y1d2{bottom:418.166667pt;}
.y208{bottom:418.917333pt;}
.y17b{bottom:420.124000pt;}
.y7b{bottom:420.604000pt;}
.yb8{bottom:422.582667pt;}
.y23d{bottom:425.048000pt;}
.ya2{bottom:429.232000pt;}
.yfd{bottom:431.942667pt;}
.y44{bottom:432.258667pt;}
.y1a5{bottom:433.410667pt;}
.y27{bottom:433.921333pt;}
.y1d1{bottom:434.106667pt;}
.y207{bottom:434.857333pt;}
.y17a{bottom:436.064000pt;}
.y7a{bottom:436.545333pt;}
.y11e{bottom:437.000000pt;}
.yb7{bottom:438.522667pt;}
.y153{bottom:439.298667pt;}
.y23c{bottom:440.988000pt;}
.ya1{bottom:445.172000pt;}
.y26{bottom:449.861333pt;}
.y1d0{bottom:450.048000pt;}
.y1a4{bottom:450.396000pt;}
.yfc{bottom:450.593333pt;}
.y206{bottom:450.797333pt;}
.y43{bottom:451.225333pt;}
.y79{bottom:452.485333pt;}
.yc5{bottom:454.028000pt;}
.yb6{bottom:454.462667pt;}
.y152{bottom:455.240000pt;}
.y11d{bottom:455.596000pt;}
.y23b{bottom:459.278667pt;}
.ya0{bottom:461.112000pt;}
.y25{bottom:465.801333pt;}
.y179{bottom:466.045333pt;}
.y1a3{bottom:466.336000pt;}
.yfb{bottom:466.533333pt;}
.y205{bottom:466.737333pt;}
.y42{bottom:467.165333pt;}
.y1cf{bottom:467.206667pt;}
.y78{bottom:468.425333pt;}
.yb5{bottom:470.404000pt;}
.y151{bottom:471.180000pt;}
.y11c{bottom:474.193333pt;}
.y23a{bottom:475.220000pt;}
.ye2{bottom:476.396000pt;}
.y9f{bottom:477.053333pt;}
.y24{bottom:481.742667pt;}
.y178{bottom:481.985333pt;}
.yfa{bottom:482.473333pt;}
.y41{bottom:483.106667pt;}
.y1ce{bottom:483.146667pt;}
.y1a2{bottom:483.321333pt;}
.y204{bottom:483.802667pt;}
.y77{bottom:484.365333pt;}
.yb4{bottom:486.344000pt;}
.y150{bottom:487.120000pt;}
.yc4{bottom:490.772000pt;}
.y239{bottom:491.160000pt;}
.y9e{bottom:492.993333pt;}
.ye1{bottom:493.638667pt;}
.y23{bottom:497.682667pt;}
.y177{bottom:497.925333pt;}
.yf9{bottom:498.414667pt;}
.y40{bottom:499.046667pt;}
.y1cd{bottom:499.086667pt;}
.y1a1{bottom:499.261333pt;}
.y203{bottom:499.742667pt;}
.y76{bottom:500.305333pt;}
.yb3{bottom:502.284000pt;}
.y14f{bottom:503.060000pt;}
.yc3{bottom:506.712000pt;}
.y238{bottom:507.100000pt;}
.y9d{bottom:508.933333pt;}
.ye0{bottom:509.578667pt;}
.y22{bottom:513.622667pt;}
.y176{bottom:513.866667pt;}
.yf8{bottom:514.354667pt;}
.y3f{bottom:514.986667pt;}
.y1cc{bottom:515.026667pt;}
.y1a0{bottom:515.201333pt;}
.y202{bottom:515.684000pt;}
.y75{bottom:516.245333pt;}
.yb2{bottom:518.224000pt;}
.y14e{bottom:519.000000pt;}
.y11b{bottom:522.041333pt;}
.y237{bottom:523.040000pt;}
.y9c{bottom:524.873333pt;}
.y21{bottom:529.562667pt;}
.y175{bottom:529.806667pt;}
.yf7{bottom:530.294667pt;}
.y3e{bottom:530.926667pt;}
.y1cb{bottom:530.966667pt;}
.y19f{bottom:531.141333pt;}
.yc2{bottom:531.508000pt;}
.y201{bottom:531.624000pt;}
.y74{bottom:532.186667pt;}
.yb1{bottom:534.164000pt;}
.y14d{bottom:534.940000pt;}
.ydf{bottom:539.670667pt;}
.y9b{bottom:540.813333pt;}
.y236{bottom:541.332000pt;}
.y174{bottom:545.746667pt;}
.yf6{bottom:546.234667pt;}
.y3d{bottom:546.866667pt;}
.y1ca{bottom:546.908000pt;}
.y73{bottom:548.126667pt;}
.y200{bottom:548.689333pt;}
.yb0{bottom:550.104000pt;}
.y14c{bottom:550.881333pt;}
.y269{bottom:551.010667pt;}
.yde{bottom:555.610667pt;}
.y9a{bottom:556.754667pt;}
.y235{bottom:557.272000pt;}
.y173{bottom:561.686667pt;}
.y20{bottom:562.808000pt;}
.y72{bottom:564.066667pt;}
.y1ff{bottom:564.629333pt;}
.y14b{bottom:566.821333pt;}
.y268{bottom:566.950667pt;}
.ydd{bottom:571.550667pt;}
.y99{bottom:572.694667pt;}
.y234{bottom:573.212000pt;}
.y172{bottom:577.626667pt;}
.y71{bottom:580.006667pt;}
.y1fe{bottom:580.569333pt;}
.y14a{bottom:582.761333pt;}
.y267{bottom:582.892000pt;}
.ydc{bottom:587.492000pt;}
.y98{bottom:588.634667pt;}
.y233{bottom:589.152000pt;}
.y171{bottom:593.566667pt;}
.y70{bottom:595.946667pt;}
.y1fd{bottom:596.509333pt;}
.y149{bottom:598.701333pt;}
.y266{bottom:598.832000pt;}
.ydb{bottom:603.432000pt;}
.y97{bottom:604.574667pt;}
.y232{bottom:605.092000pt;}
.y15e{bottom:609.005333pt;}
.y170{bottom:609.508000pt;}
.yaf{bottom:609.806667pt;}
.yf5{bottom:611.357333pt;}
.y6f{bottom:611.886667pt;}
.y19e{bottom:611.888000pt;}
.y1fc{bottom:612.449333pt;}
.y148{bottom:614.641333pt;}
.y265{bottom:615.509333pt;}
.yda{bottom:619.372000pt;}
.y96{bottom:620.514667pt;}
.y231{bottom:623.384000pt;}
.y15d{bottom:624.945333pt;}
.y16f{bottom:625.448000pt;}
.y1c9{bottom:627.826667pt;}
.y6e{bottom:627.828000pt;}
.y1fb{bottom:628.390667pt;}
.y19d{bottom:628.872000pt;}
.y147{bottom:630.581333pt;}
.y264{bottom:631.450667pt;}
.y1d{bottom:633.812000pt;}
.yd9{bottom:635.312000pt;}
.y95{bottom:636.454667pt;}
.y230{bottom:639.324000pt;}
.y15c{bottom:640.885333pt;}
.y16e{bottom:641.388000pt;}
.y6d{bottom:643.768000pt;}
.y1fa{bottom:644.330667pt;}
.y1f{bottom:644.438667pt;}
.y19c{bottom:644.812000pt;}
.y1c8{bottom:644.986667pt;}
.y146{bottom:646.522667pt;}
.y263{bottom:647.390667pt;}
.y1c{bottom:649.752000pt;}
.yd8{bottom:651.252000pt;}
.y94{bottom:652.396000pt;}
.y1e{bottom:655.065333pt;}
.y22f{bottom:655.264000pt;}
.y15b{bottom:656.826667pt;}
.y16d{bottom:657.328000pt;}
.y6c{bottom:659.708000pt;}
.y19b{bottom:660.753333pt;}
.y1c7{bottom:660.926667pt;}
.y1f9{bottom:661.396000pt;}
.y145{bottom:662.462667pt;}
.y262{bottom:663.330667pt;}
.y1b{bottom:665.692000pt;}
.yd7{bottom:667.192000pt;}
.y93{bottom:668.336000pt;}
.y22e{bottom:671.204000pt;}
.y15a{bottom:672.766667pt;}
.y16c{bottom:673.268000pt;}
.y6b{bottom:675.648000pt;}
.y19a{bottom:676.693333pt;}
.y1c6{bottom:676.866667pt;}
.y1f8{bottom:677.336000pt;}
.y144{bottom:678.402667pt;}
.y261{bottom:679.270667pt;}
.yd6{bottom:683.133333pt;}
.y92{bottom:684.276000pt;}
.y22d{bottom:687.145333pt;}
.y159{bottom:688.706667pt;}
.y16b{bottom:689.208000pt;}
.y6a{bottom:691.588000pt;}
.y1c5{bottom:692.806667pt;}
.y1f7{bottom:693.276000pt;}
.y199{bottom:693.677333pt;}
.y143{bottom:694.342667pt;}
.y260{bottom:695.949333pt;}
.y1a{bottom:697.572000pt;}
.yd5{bottom:699.073333pt;}
.y91{bottom:700.216000pt;}
.y16a{bottom:705.149333pt;}
.y158{bottom:705.318667pt;}
.y22c{bottom:705.436000pt;}
.y69{bottom:707.529333pt;}
.y1f6{bottom:709.216000pt;}
.y198{bottom:709.617333pt;}
.y1c4{bottom:709.965333pt;}
.y142{bottom:710.282667pt;}
.y25f{bottom:711.889333pt;}
.y19{bottom:713.512000pt;}
.yd4{bottom:715.013333pt;}
.y90{bottom:716.156000pt;}
.y169{bottom:721.089333pt;}
.y157{bottom:721.258667pt;}
.y22b{bottom:721.376000pt;}
.y68{bottom:723.469333pt;}
.y197{bottom:725.558667pt;}
.y1c3{bottom:725.906667pt;}
.y141{bottom:726.224000pt;}
.y1f5{bottom:726.281333pt;}
.y25e{bottom:727.829333pt;}
.y18{bottom:729.453333pt;}
.yd3{bottom:730.953333pt;}
.y168{bottom:737.029333pt;}
.y156{bottom:737.200000pt;}
.y22a{bottom:737.316000pt;}
.y8f{bottom:740.676000pt;}
.y1c2{bottom:741.846667pt;}
.y1f4{bottom:742.221333pt;}
.y196{bottom:742.542667pt;}
.y25d{bottom:743.769333pt;}
.y17{bottom:745.393333pt;}
.y67{bottom:746.721333pt;}
.yd2{bottom:746.893333pt;}
.y140{bottom:750.742667pt;}
.y229{bottom:755.608000pt;}
.y1c1{bottom:757.786667pt;}
.y109{bottom:758.080000pt;}
.y1f3{bottom:758.161333pt;}
.y195{bottom:758.482667pt;}
.y25c{bottom:760.448000pt;}
.y16{bottom:761.333333pt;}
.y66{bottom:762.661333pt;}
.yd1{bottom:762.833333pt;}
.y13f{bottom:766.682667pt;}
.y228{bottom:771.548000pt;}
.y1c0{bottom:773.726667pt;}
.y1f2{bottom:774.102667pt;}
.y194{bottom:774.424000pt;}
.y25b{bottom:776.388000pt;}
.y15{bottom:777.273333pt;}
.y65{bottom:778.601333pt;}
.yd0{bottom:778.774667pt;}
.y227{bottom:787.488000pt;}
.y1f1{bottom:790.042667pt;}
.y1bf{bottom:790.885333pt;}
.y193{bottom:791.408000pt;}
.y25a{bottom:792.328000pt;}
.y11a{bottom:792.337333pt;}
.y14{bottom:793.213333pt;}
.y8e{bottom:794.541333pt;}
.y64{bottom:794.542667pt;}
.ycf{bottom:794.714667pt;}
.y155{bottom:798.245333pt;}
.y13e{bottom:801.902667pt;}
.y226{bottom:803.428000pt;}
.y1be{bottom:806.825333pt;}
.y1f0{bottom:807.108000pt;}
.y192{bottom:807.348000pt;}
.y119{bottom:808.277333pt;}
.y259{bottom:809.006667pt;}
.y13{bottom:809.154667pt;}
.y8d{bottom:810.481333pt;}
.y63{bottom:810.482667pt;}
.yce{bottom:810.654667pt;}
.y13d{bottom:817.844000pt;}
.y225{bottom:819.369333pt;}
.y1bd{bottom:822.766667pt;}
.y1ef{bottom:823.048000pt;}
.y191{bottom:824.333333pt;}
.y258{bottom:824.946667pt;}
.y12{bottom:825.094667pt;}
.y62{bottom:826.422667pt;}
.ycd{bottom:826.594667pt;}
.y13c{bottom:833.784000pt;}
.y224{bottom:837.660000pt;}
.y1bc{bottom:838.706667pt;}
.y1ee{bottom:838.988000pt;}
.y190{bottom:840.273333pt;}
.y257{bottom:840.886667pt;}
.y11{bottom:841.034667pt;}
.y61{bottom:842.362667pt;}
.ycc{bottom:842.534667pt;}
.y13b{bottom:849.724000pt;}
.y223{bottom:853.600000pt;}
.y1ed{bottom:854.928000pt;}
.y1bb{bottom:855.865333pt;}
.y18f{bottom:856.213333pt;}
.y256{bottom:856.826667pt;}
.y10{bottom:856.974667pt;}
.y60{bottom:858.302667pt;}
.ycb{bottom:858.474667pt;}
.y13a{bottom:865.664000pt;}
.y222{bottom:869.540000pt;}
.y1ba{bottom:871.805333pt;}
.y1ec{bottom:871.993333pt;}
.y18e{bottom:872.154667pt;}
.y255{bottom:872.768000pt;}
.yf{bottom:872.914667pt;}
.y5f{bottom:874.242667pt;}
.yca{bottom:874.416000pt;}
.y139{bottom:881.604000pt;}
.y221{bottom:885.481333pt;}
.y1b9{bottom:887.745333pt;}
.y1eb{bottom:887.933333pt;}
.ye{bottom:888.854667pt;}
.y18d{bottom:889.138667pt;}
.y254{bottom:889.445333pt;}
.y8c{bottom:890.182667pt;}
.y5e{bottom:890.184000pt;}
.yc9{bottom:890.356000pt;}
.y138{bottom:897.544000pt;}
.y220{bottom:901.421333pt;}
.y1b8{bottom:903.686667pt;}
.y1ea{bottom:903.873333pt;}
.yd{bottom:904.796000pt;}
.y18c{bottom:905.078667pt;}
.y253{bottom:905.385333pt;}
.y8b{bottom:906.122667pt;}
.y5d{bottom:906.124000pt;}
.y137{bottom:913.485333pt;}
.yc8{bottom:915.682667pt;}
.y21f{bottom:917.361333pt;}
.y1b7{bottom:919.626667pt;}
.y1e9{bottom:919.814667pt;}
.yc{bottom:920.736000pt;}
.y18b{bottom:921.020000pt;}
.y252{bottom:921.326667pt;}
.y5c{bottom:922.064000pt;}
.y136{bottom:929.425333pt;}
.y21e{bottom:935.653333pt;}
.y1b6{bottom:936.785333pt;}
.y1e8{bottom:936.878667pt;}
.y18a{bottom:936.960000pt;}
.y251{bottom:937.266667pt;}
.y5b{bottom:938.004000pt;}
.y135{bottom:945.365333pt;}
.ya{bottom:949.294667pt;}
.y21d{bottom:951.593333pt;}
.y1b5{bottom:952.725333pt;}
.y1e7{bottom:952.820000pt;}
.y189{bottom:952.900000pt;}
.yb{bottom:953.045333pt;}
.y250{bottom:953.206667pt;}
.y5a{bottom:953.944000pt;}
.y134{bottom:961.305333pt;}
.y9{bottom:965.900000pt;}
.y21c{bottom:967.533333pt;}
.y1e6{bottom:968.760000pt;}
.y59{bottom:969.884000pt;}
.y133{bottom:977.245333pt;}
.y8{bottom:980.512000pt;}
.y21b{bottom:983.473333pt;}
.y1e5{bottom:984.700000pt;}
.y8a{bottom:985.824000pt;}
.y58{bottom:985.825333pt;}
.y132{bottom:993.186667pt;}
.y6{bottom:999.108000pt;}
.y21a{bottom:999.413333pt;}
.y1e4{bottom:1000.640000pt;}
.y57{bottom:1001.765333pt;}
.y7{bottom:1004.893333pt;}
.y56{bottom:1017.705333pt;}
.y5{bottom:1033.645333pt;}
.yae{bottom:1036.345278pt;}
.y4{bottom:1036.447325pt;}
.y3{bottom:1048.695785pt;}
.he{height:11.733399pt;}
.hd{height:26.631381pt;}
.ha{height:30.288533pt;}
.h9{height:30.392267pt;}
.h12{height:30.549524pt;}
.h4{height:32.000200pt;}
.h8{height:35.864000pt;}
.h11{height:38.037520pt;}
.hb{height:38.045376pt;}
.h3{height:39.843636pt;}
.hc{height:39.852000pt;}
.h7{height:40.381333pt;}
.h14{height:42.472043pt;}
.h13{height:43.977259pt;}
.hf{height:44.354167pt;}
.h6{height:45.652160pt;}
.h5{height:54.706080pt;}
.h2{height:1062.715892pt;}
.h10{height:1122.515645pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:17.797333pt;}
.w2{width:647.107592pt;}
.w4{width:793.697931pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.876529pt;}
.x10{left:72.000000pt;}
.x1{left:73.215800pt;}
.x4{left:75.590667pt;}
.x20{left:82.232000pt;}
.xb{left:88.874667pt;}
.x14{left:101.892000pt;}
.x21{left:102.896000pt;}
.x18{left:105.728000pt;}
.x2{left:111.874558pt;}
.x1c{left:125.432000pt;}
.x1b{left:136.741333pt;}
.x5{left:171.188000pt;}
.x6{left:182.478667pt;}
.xf{left:185.090357pt;}
.x7{left:200.033333pt;}
.x17{left:231.581333pt;}
.x16{left:257.446667pt;}
.x11{left:299.632000pt;}
.x22{left:358.196000pt;}
.x13{left:373.234667pt;}
.xc{left:403.493333pt;}
.x1d{left:409.626667pt;}
.xd{left:416.777333pt;}
.x12{left:429.793333pt;}
.x1e{left:430.797333pt;}
.x15{left:433.961333pt;}
.x1a{left:435.640000pt;}
.x19{left:436.774667pt;}
.x1f{left:441.812000pt;}
.x9{left:591.050667pt;}
.x8{left:601.586667pt;}
.xa{left:603.881333pt;}
.xe{left:703.903971pt;}
}




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