
    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_c4e6257e09e0b32d5384e973.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_11a0f2cf492a9495700b22dc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202000;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_8c7c8f811922416aa28e8172.woff')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_7c6eb15ab5fb03619d06fa23.woff')format("woff");}.ff4{font-family:ff4;line-height:1.049805;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_5a7a0680d989639d2ea26701.woff')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_f54186ddcec473d823986370.woff')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_e8350332693616bcab19ba30.woff')format("woff");}.ff7{font-family:ff7;line-height:1.213000;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_053b975658ebaa84e2988a6e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.222000;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ff9{font-family:ff9;line-height:1.256000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c4e6257e09e0b32d5384e973.woff')format("woff");}.ffa{font-family:ffa;line-height:1.197000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8e8df698bcee2402bcc9ccc6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_f06ba4b1ed4d5c82db695e85.woff')format("woff");}.ffc{font-family:ffc;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ffd{font-family:ffd;line-height:1.256000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c4e6257e09e0b32d5384e973.woff')format("woff");}.ffe{font-family:ffe;line-height:1.197000;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.fff{font-family:fff;line-height:1.256000;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_3bc0284850f3186670bff2a7.woff')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_96d8eb1ba9c10acd5fc135d6.woff')format("woff");}.ff11{font-family:ff11;line-height:0.908203;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_30a1bbff0e7723ad699e6719.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_a37dba3bd59e136315f481d2.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_b2a5bce4fbc0a89ec533ab72.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_4cbbc7e1483b3f0178dd9b70.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_45345fd52d8205caca620f50.woff')format("woff");}.ff16{font-family:ff16;line-height:0.042000;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_81eefbeeaf04d59ef4599415.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_45345fd52d8205caca620f50.woff')format("woff");}.ff18{font-family:ff18;line-height:0.042000;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_1abed282aa1b39fe7e240edb.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_81eefbeeaf04d59ef4599415.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_fba72811a099f6c31a0c01e4.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_f12ba5950dba86d2e7e5208b.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_81eefbeeaf04d59ef4599415.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_45345fd52d8205caca620f50.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.042000;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_1abed282aa1b39fe7e240edb.woff')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_4cbbc7e1483b3f0178dd9b70.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_39587570bbd6a7c8b6124063.woff')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_4cbbc7e1483b3f0178dd9b70.woff')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_45345fd52d8205caca620f50.woff')format("woff");}.ff23{font-family:ff23;line-height:0.042000;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_be6031583736a3158050a117.woff')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_547e12fb5f95e1a60220c143.woff')format("woff");}.ff25{font-family:ff25;line-height:1.230000;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_31aee50fa38f9102a4b3df81.woff')format("woff");}.ff26{font-family:ff26;line-height:0.738000;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_746c021b68ad93ae1b392efb.woff')format("woff");}.ff27{font-family:ff27;line-height:0.888000;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_fec6f0290ac4baff07b9339c.woff')format("woff");}.ff28{font-family:ff28;line-height:0.738000;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_47897a29efb736f4cee5a640.woff')format("woff");}.ff29{font-family:ff29;line-height:0.665000;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_fec6f0290ac4baff07b9339c.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.738000;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_47897a29efb736f4cee5a640.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.665000;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_1b53692eaba71c2a8482438a.woff')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_6172b8eb4922f088601a7bd5.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.888000;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_bf676e9077885edbdab03e8e.woff')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_be6031583736a3158050a117.woff')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_4cbbc7e1483b3f0178dd9b70.woff')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_45345fd52d8205caca620f50.woff')format("woff");}.ff31{font-family:ff31;line-height:0.042000;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_4cbbc7e1483b3f0178dd9b70.woff')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_39587570bbd6a7c8b6124063.woff')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_246ad4e45d2910682153a29f.woff')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_1abed282aa1b39fe7e240edb.woff')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_246ad4e45d2910682153a29f.woff')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_1abed282aa1b39fe7e240edb.woff')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_71fa26f3586ee0d8be7c7e9c.woff')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_1e8ccfbcab525b629760eee0.woff')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_4cbbc7e1483b3f0178dd9b70.woff')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_39587570bbd6a7c8b6124063.woff')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_246ad4e45d2910682153a29f.woff')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_1abed282aa1b39fe7e240edb.woff')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_bf676e9077885edbdab03e8e.woff')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_b05bc42347ca0b3af263349a.woff')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_1abed282aa1b39fe7e240edb.woff')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_4cbbc7e1483b3f0178dd9b70.woff')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_07e14b81f6159e5e66fcdad7.woff')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_bf676e9077885edbdab03e8e.woff')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_be6031583736a3158050a117.woff')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_4cbbc7e1483b3f0178dd9b70.woff')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_70a8044ee2ba1a9f837f357d.woff')format("woff");}.ff46{font-family:ff46;line-height:0.653000;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_07e14b81f6159e5e66fcdad7.woff')format("woff");}.ff47{font-family:ff47;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:ff48;src:url('chunks/assets/font_4cbbc7e1483b3f0178dd9b70.woff')format("woff");}.ff48{font-family:ff48;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:ff49;src:url('chunks/assets/font_70a8044ee2ba1a9f837f357d.woff')format("woff");}.ff49{font-family:ff49;line-height:0.653000;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_fd54d6450dfde6f41c14ee6d.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.738000;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_10ae85f7d747015ebbd39945.woff')format("woff");}.ff4b{font-family:ff4b;line-height:0.520000;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_1da8a170ba00e1d43fb5ee34.woff')format("woff");}.ff4c{font-family:ff4c;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:ff4d;src:url('chunks/assets/font_1abed282aa1b39fe7e240edb.woff')format("woff");}.ff4d{font-family:ff4d;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:ff4e;src:url('chunks/assets/font_b4d8e93a7b4750c17005530e.woff')format("woff");}.ff4e{font-family:ff4e;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:ff4f;src:url('chunks/assets/font_9c543d1e1270caa20bcf522f.woff')format("woff");}.ff4f{font-family:ff4f;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:ff50;src:url('chunks/assets/font_87938d6e1d4731c2e2039a16.woff')format("woff");}.ff50{font-family:ff50;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_c1f76ea3337ba70c981532c9.woff')format("woff");}.ff51{font-family:ff51;line-height:0.653000;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:ff52;src:url('chunks/assets/font_5aa9a00b0a948ac61720e920.woff')format("woff");}.ff52{font-family:ff52;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:ff53;src:url('chunks/assets/font_aaa2745de85c6ec19d63c35a.woff')format("woff");}.ff53{font-family:ff53;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:ff54;src:url('chunks/assets/font_dfd8b6fc95ca7af0e12083bb.woff')format("woff");}.ff54{font-family:ff54;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:ff55;src:url('chunks/assets/font_bf82198c484674581ae90c34.woff')format("woff");}.ff55{font-family:ff55;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:ff56;src:url('chunks/assets/font_dfd8b6fc95ca7af0e12083bb.woff')format("woff");}.ff56{font-family:ff56;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:ff57;src:url('chunks/assets/font_1da8a170ba00e1d43fb5ee34.woff')format("woff");}.ff57{font-family:ff57;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:ff58;src:url('chunks/assets/font_1abed282aa1b39fe7e240edb.woff')format("woff");}.ff58{font-family:ff58;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:ff59;src:url('chunks/assets/font_b4d8e93a7b4750c17005530e.woff')format("woff");}.ff59{font-family:ff59;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:ff5a;src:url('chunks/assets/font_9c543d1e1270caa20bcf522f.woff')format("woff");}.ff5a{font-family:ff5a;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:ff5b;src:url('chunks/assets/font_87938d6e1d4731c2e2039a16.woff')format("woff");}.ff5b{font-family:ff5b;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_c1f76ea3337ba70c981532c9.woff')format("woff");}.ff5c{font-family:ff5c;line-height:0.653000;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:ff5d;src:url('chunks/assets/font_5aa9a00b0a948ac61720e920.woff')format("woff");}.ff5d{font-family:ff5d;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:ff5e;src:url('chunks/assets/font_bf676e9077885edbdab03e8e.woff')format("woff");}.ff5e{font-family:ff5e;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:ff5f;src:url('chunks/assets/font_be6031583736a3158050a117.woff')format("woff");}.ff5f{font-family:ff5f;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:ff60;src:url('chunks/assets/font_4cbbc7e1483b3f0178dd9b70.woff')format("woff");}.ff60{font-family:ff60;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:ff61;src:url('chunks/assets/font_70a8044ee2ba1a9f837f357d.woff')format("woff");}.ff61{font-family:ff61;line-height:0.653000;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:-20.399963px;}
.v3{vertical-align:-5.646606px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.695984px;}
.v2{vertical-align:24.000000px;}
.ls6{letter-spacing:-2.220000px;}
.ls3e{letter-spacing:-1.428000px;}
.ls42{letter-spacing:-0.600000px;}
.ls2{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000008px;}
.ls33{letter-spacing:0.000011px;}
.ls13{letter-spacing:0.000032px;}
.ls1b{letter-spacing:0.000103px;}
.ls29{letter-spacing:0.000183px;}
.ls2c{letter-spacing:0.000302px;}
.ls17{letter-spacing:0.000469px;}
.ls1c{letter-spacing:0.000557px;}
.lsc{letter-spacing:0.000560px;}
.lsd{letter-spacing:0.000582px;}
.ls3{letter-spacing:0.000583px;}
.ls1d{letter-spacing:0.000606px;}
.ls7{letter-spacing:0.000652px;}
.ls2e{letter-spacing:0.007770px;}
.ls10{letter-spacing:0.008383px;}
.ls1f{letter-spacing:0.008386px;}
.ls21{letter-spacing:0.008404px;}
.ls22{letter-spacing:0.008429px;}
.ls20{letter-spacing:0.008475px;}
.ls12{letter-spacing:0.008933px;}
.ls2b{letter-spacing:0.008958px;}
.ls2d{letter-spacing:0.009003px;}
.ls1e{letter-spacing:0.009025px;}
.ls3b{letter-spacing:0.009049px;}
.ls11{letter-spacing:0.009116px;}
.ls3a{letter-spacing:0.009141px;}
.ls36{letter-spacing:0.009609px;}
.ls32{letter-spacing:0.009620px;}
.ls34{letter-spacing:0.009625px;}
.ls2a{letter-spacing:0.009690px;}
.ls16{letter-spacing:0.009712px;}
.ls1a{letter-spacing:0.010078px;}
.ls23{letter-spacing:0.010170px;}
.lsf{letter-spacing:0.010261px;}
.ls19{letter-spacing:0.010263px;}
.ls25{letter-spacing:0.010267px;}
.ls18{letter-spacing:0.010444px;}
.ls9{letter-spacing:0.298878px;}
.ls3f{letter-spacing:0.357000px;}
.ls38{letter-spacing:0.418429px;}
.ls40{letter-spacing:1.122000px;}
.ls35{letter-spacing:1.673717px;}
.ls41{letter-spacing:1.887000px;}
.ls14{letter-spacing:2.845315px;}
.lsa{letter-spacing:3.048556px;}
.lse{letter-spacing:3.407209px;}
.ls26{letter-spacing:3.466985px;}
.ls28{letter-spacing:4.722272px;}
.ls24{letter-spacing:6.515540px;}
.ls39{letter-spacing:8.249033px;}
.ls30{letter-spacing:8.308808px;}
.ls27{letter-spacing:9.922749px;}
.ls2f{letter-spacing:13.270183px;}
.ls15{letter-spacing:14.480622px;}
.ls43{letter-spacing:15.708000px;}
.ls8{letter-spacing:16.557841px;}
.lsb{letter-spacing:16.617616px;}
.ls5{letter-spacing:17.274536px;}
.ls0{letter-spacing:27.307191px;}
.ls1{letter-spacing:53.015396px;}
.ls31{letter-spacing:53.442610px;}
.ls4{letter-spacing:53.442678px;}
.ls3c{letter-spacing:146.354988px;}
.ls3d{letter-spacing:292.887085px;}
.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;}
}
.wsaf{word-spacing:-16.617616px;}
.wsbc{word-spacing:-16.557841px;}
.ws1{word-spacing:-15.000000px;}
.ws188{word-spacing:-14.544000px;}
.wsdc{word-spacing:-14.480622px;}
.ws150{word-spacing:-14.400000px;}
.ws13c{word-spacing:-13.872000px;}
.ws13f{word-spacing:-13.107000px;}
.ws1f{word-spacing:-12.780000px;}
.wscb{word-spacing:-12.750000px;}
.ws187{word-spacing:-12.474000px;}
.ws5{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.120000px;}
.ws4{word-spacing:-11.520000px;}
.ws0{word-spacing:-9.996000px;}
.wsf1{word-spacing:-9.982525px;}
.ws186{word-spacing:-9.792000px;}
.ws2{word-spacing:-8.925000px;}
.ws11d{word-spacing:-8.249033px;}
.ws6{word-spacing:-8.064000px;}
.ws99{word-spacing:-4.380000px;}
.wsfe{word-spacing:-3.960000px;}
.ws108{word-spacing:-3.540000px;}
.wsae{word-spacing:-3.466985px;}
.wsba{word-spacing:-3.407209px;}
.ws118{word-spacing:-3.360000px;}
.ws123{word-spacing:-3.240000px;}
.wsb4{word-spacing:-3.180000px;}
.ws143{word-spacing:-3.120000px;}
.ws27{word-spacing:-3.060000px;}
.ws112{word-spacing:-3.000000px;}
.wse7{word-spacing:-2.940000px;}
.ws173{word-spacing:-2.880000px;}
.ws33{word-spacing:-2.820000px;}
.ws1c4{word-spacing:-2.805000px;}
.ws136{word-spacing:-2.760000px;}
.ws60{word-spacing:-2.700000px;}
.ws175{word-spacing:-2.640000px;}
.ws147{word-spacing:-2.580000px;}
.wsc2{word-spacing:-2.520000px;}
.wsb1{word-spacing:-2.460000px;}
.wsc9{word-spacing:-2.448000px;}
.ws75{word-spacing:-2.400000px;}
.ws185{word-spacing:-2.397000px;}
.wsf5{word-spacing:-2.340000px;}
.ws10c{word-spacing:-2.295000px;}
.ws87{word-spacing:-2.280000px;}
.ws19b{word-spacing:-2.244000px;}
.ws4e{word-spacing:-2.220000px;}
.ws122{word-spacing:-2.160000px;}
.ws181{word-spacing:-2.142000px;}
.ws31{word-spacing:-2.100000px;}
.ws7f{word-spacing:-2.040000px;}
.ws141{word-spacing:-1.980000px;}
.ws12d{word-spacing:-1.920000px;}
.ws14b{word-spacing:-1.887000px;}
.ws7e{word-spacing:-1.860000px;}
.wsc1{word-spacing:-1.800000px;}
.ws1b6{word-spacing:-1.785000px;}
.ws5a{word-spacing:-1.740000px;}
.ws176{word-spacing:-1.734000px;}
.ws163{word-spacing:-1.683000px;}
.wsf7{word-spacing:-1.680000px;}
.ws5d{word-spacing:-1.620000px;}
.ws149{word-spacing:-1.581000px;}
.ws48{word-spacing:-1.560000px;}
.wsea{word-spacing:-1.500000px;}
.ws196{word-spacing:-1.479000px;}
.wsfa{word-spacing:-1.440000px;}
.ws1a6{word-spacing:-1.428000px;}
.ws7d{word-spacing:-1.380000px;}
.wsed{word-spacing:-1.326000px;}
.wsb8{word-spacing:-1.320000px;}
.ws162{word-spacing:-1.275000px;}
.ws6a{word-spacing:-1.260000px;}
.ws5b{word-spacing:-1.200000px;}
.ws189{word-spacing:-1.173000px;}
.ws117{word-spacing:-1.140000px;}
.wsc8{word-spacing:-1.122000px;}
.ws74{word-spacing:-1.080000px;}
.ws18b{word-spacing:-1.071000px;}
.ws22{word-spacing:-1.020000px;}
.ws16{word-spacing:-0.960000px;}
.ws177{word-spacing:-0.918000px;}
.wse1{word-spacing:-0.900000px;}
.wsc7{word-spacing:-0.867000px;}
.ws3f{word-spacing:-0.840000px;}
.ws4f{word-spacing:-0.780000px;}
.ws19c{word-spacing:-0.765000px;}
.ws25{word-spacing:-0.720000px;}
.ws41{word-spacing:-0.660000px;}
.ws178{word-spacing:-0.612000px;}
.ws96{word-spacing:-0.600000px;}
.ws5c{word-spacing:-0.540000px;}
.ws94{word-spacing:-0.480000px;}
.ws10f{word-spacing:-0.478205px;}
.ws1c1{word-spacing:-0.459000px;}
.ws28{word-spacing:-0.420000px;}
.ws14{word-spacing:-0.360000px;}
.ws14f{word-spacing:-0.357000px;}
.ws18a{word-spacing:-0.306000px;}
.ws21{word-spacing:-0.300000px;}
.ws1c0{word-spacing:-0.255000px;}
.ws105{word-spacing:-0.240000px;}
.ws11b{word-spacing:-0.180000px;}
.ws26{word-spacing:-0.120000px;}
.wsec{word-spacing:-0.102000px;}
.ws5f{word-spacing:-0.060000px;}
.wsad{word-spacing:-0.059776px;}
.ws190{word-spacing:-0.051000px;}
.wscd{word-spacing:-0.050809px;}
.ws7{word-spacing:0.000000px;}
.ws15e{word-spacing:0.060000px;}
.wsca{word-spacing:0.102000px;}
.wsd1{word-spacing:0.180000px;}
.ws1a4{word-spacing:0.204000px;}
.wsa9{word-spacing:0.240000px;}
.ws1a5{word-spacing:0.255000px;}
.ws66{word-spacing:0.300000px;}
.ws1b3{word-spacing:0.306000px;}
.ws1a2{word-spacing:0.357000px;}
.ws24{word-spacing:0.360000px;}
.ws183{word-spacing:0.408000px;}
.ws29{word-spacing:0.420000px;}
.wsda{word-spacing:0.459000px;}
.wsc{word-spacing:0.480000px;}
.ws184{word-spacing:0.510000px;}
.ws11{word-spacing:0.540000px;}
.ws1ac{word-spacing:0.561000px;}
.wsd{word-spacing:0.600000px;}
.ws1af{word-spacing:0.612000px;}
.wsbd{word-spacing:0.660000px;}
.ws83{word-spacing:0.720000px;}
.ws192{word-spacing:0.765000px;}
.ws137{word-spacing:0.780000px;}
.ws15{word-spacing:0.840000px;}
.ws119{word-spacing:0.900000px;}
.ws80{word-spacing:0.960000px;}
.ws1a7{word-spacing:0.969000px;}
.ws78{word-spacing:1.020000px;}
.wsde{word-spacing:1.071000px;}
.ws8c{word-spacing:1.080000px;}
.wsd3{word-spacing:1.122000px;}
.ws92{word-spacing:1.140000px;}
.wsbf{word-spacing:1.200000px;}
.ws2f{word-spacing:1.260000px;}
.ws1a8{word-spacing:1.275000px;}
.ws10{word-spacing:1.320000px;}
.ws145{word-spacing:1.380000px;}
.ws14a{word-spacing:1.428000px;}
.ws128{word-spacing:1.440000px;}
.wsd4{word-spacing:1.479000px;}
.wsfd{word-spacing:1.500000px;}
.wsd7{word-spacing:1.530000px;}
.ws4d{word-spacing:1.560000px;}
.ws1b5{word-spacing:1.581000px;}
.ws127{word-spacing:1.620000px;}
.wsdd{word-spacing:1.683000px;}
.ws9d{word-spacing:1.740000px;}
.ws84{word-spacing:1.800000px;}
.ws1b{word-spacing:1.860000px;}
.ws40{word-spacing:1.920000px;}
.ws10d{word-spacing:1.938000px;}
.ws46{word-spacing:1.980000px;}
.wsc3{word-spacing:2.040000px;}
.ws1ad{word-spacing:2.091000px;}
.wsb{word-spacing:2.100000px;}
.ws1a0{word-spacing:2.142000px;}
.ws6e{word-spacing:2.160000px;}
.ws1b1{word-spacing:2.193000px;}
.ws54{word-spacing:2.220000px;}
.ws86{word-spacing:2.280000px;}
.ws89{word-spacing:2.340000px;}
.ws180{word-spacing:2.346000px;}
.ws8f{word-spacing:2.400000px;}
.wsd9{word-spacing:2.448000px;}
.ws73{word-spacing:2.460000px;}
.ws1bd{word-spacing:2.499000px;}
.ws45{word-spacing:2.520000px;}
.ws10e{word-spacing:2.550000px;}
.ws79{word-spacing:2.580000px;}
.ws30{word-spacing:2.640000px;}
.ws164{word-spacing:2.652000px;}
.ws2b{word-spacing:2.700000px;}
.wse9{word-spacing:2.760000px;}
.wsf0{word-spacing:2.805000px;}
.wsb7{word-spacing:2.820000px;}
.ws14c{word-spacing:2.856000px;}
.wsd2{word-spacing:2.880000px;}
.ws17a{word-spacing:2.907000px;}
.ws102{word-spacing:2.940000px;}
.ws170{word-spacing:3.000000px;}
.ws20{word-spacing:3.009000px;}
.wse{word-spacing:3.060000px;}
.wsee{word-spacing:3.111000px;}
.wse8{word-spacing:3.120000px;}
.ws1c3{word-spacing:3.162000px;}
.ws2a{word-spacing:3.180000px;}
.ws3b{word-spacing:3.240000px;}
.wsb9{word-spacing:3.300000px;}
.ws1bf{word-spacing:3.315000px;}
.ws98{word-spacing:3.360000px;}
.ws19e{word-spacing:3.366000px;}
.ws191{word-spacing:3.417000px;}
.ws18{word-spacing:3.420000px;}
.ws16d{word-spacing:3.480000px;}
.wsdf{word-spacing:3.519000px;}
.ws7c{word-spacing:3.540000px;}
.wsd8{word-spacing:3.570000px;}
.ws44{word-spacing:3.600000px;}
.wsb2{word-spacing:3.660000px;}
.ws109{word-spacing:3.672000px;}
.ws1d{word-spacing:3.720000px;}
.ws65{word-spacing:3.780000px;}
.ws67{word-spacing:3.840000px;}
.wseb{word-spacing:3.900000px;}
.ws1c7{word-spacing:3.927000px;}
.ws17{word-spacing:3.960000px;}
.wsd6{word-spacing:3.978000px;}
.ws4b{word-spacing:4.020000px;}
.ws18e{word-spacing:4.029000px;}
.ws6b{word-spacing:4.080000px;}
.ws76{word-spacing:4.140000px;}
.ws57{word-spacing:4.200000px;}
.wsef{word-spacing:4.233000px;}
.ws1c{word-spacing:4.260000px;}
.wsf6{word-spacing:4.320000px;}
.ws37{word-spacing:4.380000px;}
.ws19f{word-spacing:4.386000px;}
.ws1ba{word-spacing:4.437000px;}
.ws1e{word-spacing:4.440000px;}
.ws1ae{word-spacing:4.488000px;}
.ws70{word-spacing:4.500000px;}
.ws121{word-spacing:4.560000px;}
.ws47{word-spacing:4.620000px;}
.ws18f{word-spacing:4.641000px;}
.ws61{word-spacing:4.680000px;}
.ws71{word-spacing:4.740000px;}
.ws19d{word-spacing:4.794000px;}
.ws90{word-spacing:4.800000px;}
.wsdb{word-spacing:4.845000px;}
.ws6d{word-spacing:4.860000px;}
.ws1c6{word-spacing:4.896000px;}
.wse5{word-spacing:4.920000px;}
.wsc5{word-spacing:4.980000px;}
.wsbb{word-spacing:5.040000px;}
.ws110{word-spacing:5.080926px;}
.ws62{word-spacing:5.100000px;}
.wsfb{word-spacing:5.160000px;}
.ws179{word-spacing:5.202000px;}
.wsbe{word-spacing:5.220000px;}
.ws8a{word-spacing:5.280000px;}
.ws23{word-spacing:5.340000px;}
.ws51{word-spacing:5.400000px;}
.ws107{word-spacing:5.460000px;}
.wsce{word-spacing:5.520000px;}
.ws35{word-spacing:5.580000px;}
.ws182{word-spacing:5.610000px;}
.ws104{word-spacing:5.640000px;}
.ws9e{word-spacing:5.700000px;}
.ws8b{word-spacing:5.760000px;}
.ws197{word-spacing:5.763000px;}
.ws9f{word-spacing:5.820000px;}
.ws129{word-spacing:5.880000px;}
.ws8d{word-spacing:5.940000px;}
.ws1b2{word-spacing:5.967000px;}
.wsf{word-spacing:6.000000px;}
.ws1a3{word-spacing:6.018000px;}
.ws101{word-spacing:6.120000px;}
.wsb6{word-spacing:6.180000px;}
.ws19{word-spacing:6.240000px;}
.ws3c{word-spacing:6.300000px;}
.ws199{word-spacing:6.324000px;}
.ws69{word-spacing:6.360000px;}
.ws10b{word-spacing:6.375000px;}
.ws42{word-spacing:6.420000px;}
.ws1b0{word-spacing:6.477000px;}
.wsa5{word-spacing:6.480000px;}
.ws56{word-spacing:6.540000px;}
.ws88{word-spacing:6.600000px;}
.ws146{word-spacing:6.660000px;}
.wse3{word-spacing:6.720000px;}
.ws116{word-spacing:6.780000px;}
.ws12e{word-spacing:6.840000px;}
.ws15a{word-spacing:6.900000px;}
.ws11c{word-spacing:6.960000px;}
.ws93{word-spacing:7.020000px;}
.ws12b{word-spacing:7.080000px;}
.ws1b7{word-spacing:7.089000px;}
.ws1a9{word-spacing:7.191000px;}
.ws43{word-spacing:7.200000px;}
.wsa{word-spacing:7.260000px;}
.ws10a{word-spacing:7.293000px;}
.wsa0{word-spacing:7.320000px;}
.ws32{word-spacing:7.380000px;}
.ws9b{word-spacing:7.440000px;}
.ws18c{word-spacing:7.497000px;}
.ws12{word-spacing:7.500000px;}
.ws1ab{word-spacing:7.548000px;}
.ws17b{word-spacing:7.560000px;}
.ws95{word-spacing:7.620000px;}
.ws2e{word-spacing:7.680000px;}
.ws50{word-spacing:7.740000px;}
.ws1a1{word-spacing:7.752000px;}
.ws38{word-spacing:7.800000px;}
.ws14d{word-spacing:7.803000px;}
.ws91{word-spacing:7.860000px;}
.ws7a{word-spacing:7.920000px;}
.ws1a{word-spacing:7.980000px;}
.ws4a{word-spacing:8.040000px;}
.wse4{word-spacing:8.100000px;}
.wsd0{word-spacing:8.220000px;}
.wscf{word-spacing:8.280000px;}
.ws6f{word-spacing:8.340000px;}
.ws53{word-spacing:8.400000px;}
.wsd5{word-spacing:8.415000px;}
.ws120{word-spacing:8.460000px;}
.ws144{word-spacing:8.520000px;}
.ws39{word-spacing:8.580000px;}
.ws49{word-spacing:8.640000px;}
.wsb3{word-spacing:8.700000px;}
.ws161{word-spacing:8.760000px;}
.wse6{word-spacing:8.820000px;}
.ws19a{word-spacing:8.823000px;}
.wse0{word-spacing:8.874000px;}
.wsb5{word-spacing:8.880000px;}
.wsc4{word-spacing:8.940000px;}
.ws9{word-spacing:9.000000px;}
.ws9c{word-spacing:9.060000px;}
.ws1be{word-spacing:9.129000px;}
.ws12f{word-spacing:9.180000px;}
.ws3e{word-spacing:9.240000px;}
.wsa8{word-spacing:9.300000px;}
.ws16c{word-spacing:9.360000px;}
.ws2c{word-spacing:9.420000px;}
.wsa1{word-spacing:9.480000px;}
.ws1bc{word-spacing:9.486000px;}
.ws85{word-spacing:9.540000px;}
.wsf4{word-spacing:9.552141px;}
.ws198{word-spacing:9.588000px;}
.ws126{word-spacing:9.600000px;}
.wsf9{word-spacing:9.660000px;}
.wsc0{word-spacing:9.840000px;}
.ws1b9{word-spacing:9.843000px;}
.wsac{word-spacing:9.851019px;}
.wsb0{word-spacing:9.856996px;}
.ws7b{word-spacing:9.900000px;}
.wsa6{word-spacing:10.020000px;}
.ws2d{word-spacing:10.080000px;}
.ws17e{word-spacing:10.140000px;}
.ws14e{word-spacing:10.149000px;}
.ws125{word-spacing:10.200000px;}
.ws52{word-spacing:10.260000px;}
.ws174{word-spacing:10.320000px;}
.ws11a{word-spacing:10.380000px;}
.ws82{word-spacing:10.440000px;}
.wsa2{word-spacing:10.560000px;}
.wscc{word-spacing:10.619122px;}
.ws17d{word-spacing:10.620000px;}
.ws193{word-spacing:10.659000px;}
.ws142{word-spacing:10.740000px;}
.ws81{word-spacing:10.800000px;}
.wsa4{word-spacing:10.920000px;}
.ws55{word-spacing:11.100000px;}
.ws1b4{word-spacing:11.118000px;}
.ws15f{word-spacing:11.160000px;}
.ws36{word-spacing:11.220000px;}
.ws133{word-spacing:11.280000px;}
.wsaa{word-spacing:11.340000px;}
.ws5e{word-spacing:11.520000px;}
.ws18d{word-spacing:11.526000px;}
.ws3d{word-spacing:11.580000px;}
.ws1c2{word-spacing:11.781000px;}
.ws100{word-spacing:11.880000px;}
.wsab{word-spacing:11.895344px;}
.ws171{word-spacing:11.940000px;}
.wsa7{word-spacing:12.120000px;}
.ws148{word-spacing:12.240000px;}
.wsfc{word-spacing:12.300000px;}
.wsff{word-spacing:12.480000px;}
.ws132{word-spacing:12.720000px;}
.wsc6{word-spacing:12.780000px;}
.ws16e{word-spacing:12.900000px;}
.ws1b8{word-spacing:12.903000px;}
.ws194{word-spacing:13.005000px;}
.wsf3{word-spacing:13.198452px;}
.ws9a{word-spacing:13.200000px;}
.ws68{word-spacing:13.440000px;}
.ws135{word-spacing:13.500000px;}
.ws195{word-spacing:13.515000px;}
.ws140{word-spacing:13.560000px;}
.ws15c{word-spacing:13.680000px;}
.ws1aa{word-spacing:13.719000px;}
.ws12a{word-spacing:13.740000px;}
.ws77{word-spacing:13.800000px;}
.ws15d{word-spacing:13.860000px;}
.ws4c{word-spacing:13.920000px;}
.ws72{word-spacing:14.040000px;}
.ws131{word-spacing:14.100000px;}
.ws1bb{word-spacing:14.127000px;}
.ws106{word-spacing:14.280000px;}
.ws134{word-spacing:14.580000px;}
.ws16f{word-spacing:14.640000px;}
.ws63{word-spacing:14.700000px;}
.ws3a{word-spacing:14.760000px;}
.wse2{word-spacing:14.820000px;}
.ws17c{word-spacing:15.120000px;}
.ws97{word-spacing:15.300000px;}
.ws115{word-spacing:15.660000px;}
.ws58{word-spacing:15.900000px;}
.ws172{word-spacing:15.960000px;}
.ws8e{word-spacing:16.200000px;}
.ws1c5{word-spacing:16.218000px;}
.wsf2{word-spacing:16.492087px;}
.ws160{word-spacing:16.800000px;}
.ws6c{word-spacing:17.160000px;}
.ws59{word-spacing:17.280000px;}
.ws34{word-spacing:17.580000px;}
.ws103{word-spacing:17.880000px;}
.ws12c{word-spacing:18.240000px;}
.ws114{word-spacing:18.480000px;}
.ws113{word-spacing:19.020000px;}
.wsf8{word-spacing:20.526000px;}
.ws13{word-spacing:20.700000px;}
.ws8{word-spacing:21.456000px;}
.ws64{word-spacing:22.620000px;}
.ws130{word-spacing:28.200000px;}
.wsa3{word-spacing:31.860000px;}
.ws17f{word-spacing:34.860000px;}
.ws15b{word-spacing:36.180000px;}
.ws168{word-spacing:55.161530px;}
.ws156{word-spacing:57.189108px;}
.ws16a{word-spacing:60.814789px;}
.ws152{word-spacing:62.070732px;}
.ws151{word-spacing:62.133688px;}
.ws158{word-spacing:85.596497px;}
.ws159{word-spacing:87.488597px;}
.ws154{word-spacing:90.541809px;}
.ws165{word-spacing:91.471828px;}
.ws138{word-spacing:92.058020px;}
.ws169{word-spacing:93.039001px;}
.ws157{word-spacing:94.212524px;}
.ws153{word-spacing:99.157654px;}
.ws167{word-spacing:103.297789px;}
.ws155{word-spacing:104.553732px;}
.ws13b{word-spacing:104.951385px;}
.ws166{word-spacing:107.681101px;}
.ws16b{word-spacing:119.725828px;}
.ws13a{word-spacing:129.081665px;}
.ws139{word-spacing:167.130020px;}
.ws13d{word-spacing:174.576050px;}
.ws13e{word-spacing:200.076050px;}
.ws111{word-spacing:351.120000px;}
.ws124{word-spacing:432.359991px;}
.ws11e{word-spacing:730.200000px;}
.ws11f{word-spacing:816.240000px;}
._7{margin-left:-70.498787px;}
._e{margin-left:-51.240601px;}
._0{margin-left:-16.500000px;}
._18{margin-left:-13.080056px;}
._1a{margin-left:-8.040000px;}
._13{margin-left:-6.960000px;}
._6{margin-left:-5.676300px;}
._5{margin-left:-4.470000px;}
._2{margin-left:-3.312000px;}
._b{margin-left:-2.151633px;}
._4{margin-left:-1.128000px;}
._3{width:1.158000px;}
._1{width:2.226000px;}
._d{width:3.390000px;}
._a{width:4.470000px;}
._c{width:5.946000px;}
._9{width:7.806000px;}
._12{width:9.173999px;}
._f{width:11.101824px;}
._15{width:12.606000px;}
._19{width:13.860000px;}
._45{width:15.963000px;}
._17{width:17.712001px;}
._16{width:18.744000px;}
._44{width:19.788000px;}
._14{width:21.456000px;}
._48{width:23.103000px;}
._49{width:24.531000px;}
._41{width:25.602000px;}
._42{width:26.937633px;}
._43{width:27.948000px;}
._11{width:37.995000px;}
._47{width:39.933000px;}
._10{width:41.461803px;}
._46{width:45.084000px;}
._40{width:47.022000px;}
._3f{width:51.051000px;}
._3e{width:52.224000px;}
._8{width:54.416991px;}
._38{width:61.789828px;}
._2f{width:82.826312px;}
._2a{width:87.771441px;}
._36{width:93.776137px;}
._3a{width:104.221828px;}
._33{width:107.651751px;}
._2d{width:112.790107px;}
._1b{width:117.998988px;}
._3c{width:119.451543px;}
._30{width:124.282884px;}
._35{width:125.309312px;}
._37{width:127.420789px;}
._29{width:128.676732px;}
._22{width:133.215546px;}
._2b{width:135.864441px;}
._21{width:141.831665px;}
._1d{width:143.201385px;}
._31{width:145.011108px;}
._1e{width:146.354988px;}
._2e{width:148.456884px;}
._2c{width:149.955688px;}
._20{width:158.715546px;}
._34{width:163.457312px;}
._24{width:171.079609px;}
._23{width:172.713085px;}
._1f{width:179.880020px;}
._32{width:184.775312px;}
._3b{width:194.671812px;}
._27{width:195.941895px;}
._39{width:220.171812px;}
._28{width:221.441895px;}
._1c{width:222.465546px;}
._26{width:233.990295px;}
._3d{width:246.411530px;}
._25{width:292.887085px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.566200px;}
.fs3{font-size:35.699999px;}
.fsb{font-size:41.842800px;}
.fs5{font-size:42.000000px;}
.fs9{font-size:50.809198px;}
.fs0{font-size:51.000000px;}
.fs7{font-size:59.775599px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:0.298646px;}
.y68{bottom:0.298691px;}
.yaf{bottom:0.300110px;}
.y77{bottom:0.300156px;}
.ya5{bottom:1.135666px;}
.ybd{bottom:1.540649px;}
.yc3{bottom:1.541107px;}
.y96{bottom:1.543167px;}
.ycd{bottom:1.543201px;}
.y7a{bottom:1.711029px;}
.y86{bottom:2.767502px;}
.y7f{bottom:3.203568px;}
.y63{bottom:3.777328px;}
.yb7{bottom:4.033813px;}
.yc9{bottom:4.035164px;}
.y61{bottom:4.035324px;}
.yba{bottom:11.791626px;}
.yc0{bottom:11.792084px;}
.yb1{bottom:14.284653px;}
.ybc{bottom:21.900146px;}
.yc2{bottom:21.900604px;}
.yb5{bottom:27.211670px;}
.yc7{bottom:38.419670px;}
.yb3{bottom:38.419693px;}
.y3d{bottom:60.997650px;}
.y27{bottom:110.551048px;}
.y6d{bottom:110.765396px;}
.y105{bottom:114.803100px;}
.y178{bottom:121.298103px;}
.y15{bottom:124.299145px;}
.y6c{bottom:125.765396px;}
.y104{bottom:129.803100px;}
.y26{bottom:130.651050px;}
.y177{bottom:136.298103px;}
.y6b{bottom:140.765396px;}
.yce{bottom:142.749000px;}
.y14{bottom:143.049145px;}
.y103{bottom:144.803100px;}
.y150{bottom:145.458904px;}
.y25{bottom:148.051048px;}
.y176{bottom:151.298103px;}
.y6a{bottom:155.765396px;}
.y102{bottom:159.803100px;}
.ycc{bottom:160.399498px;}
.y14f{bottom:160.458904px;}
.y13{bottom:161.799145px;}
.y175{bottom:166.298103px;}
.y24{bottom:168.151050px;}
.y101{bottom:174.803100px;}
.y14e{bottom:175.458904px;}
.y12{bottom:180.549145px;}
.y174{bottom:181.298103px;}
.y23{bottom:185.551048px;}
.y100{bottom:189.803100px;}
.yf4{bottom:189.908695px;}
.y14d{bottom:190.458904px;}
.yc5{bottom:194.933990px;}
.y173{bottom:196.298103px;}
.yca{bottom:198.969154px;}
.y11{bottom:199.299156px;}
.yff{bottom:204.803100px;}
.yf3{bottom:204.908707px;}
.y14c{bottom:205.458893px;}
.y22{bottom:205.651039px;}
.yc6{bottom:209.218643px;}
.ycb{bottom:209.678856px;}
.y172{bottom:211.298103px;}
.yc8{bottom:217.662140px;}
.y10{bottom:218.049156px;}
.yf2{bottom:219.908707px;}
.y14b{bottom:220.458893px;}
.y8e{bottom:220.508698px;}
.yfe{bottom:222.147446px;}
.y171{bottom:226.298103px;}
.y21{bottom:230.551048px;}
.yf1{bottom:234.908707px;}
.y14a{bottom:235.458893px;}
.y8d{bottom:235.508698px;}
.yf{bottom:236.799156px;}
.yfd{bottom:239.492249px;}
.y20{bottom:245.551048px;}
.yf0{bottom:249.908707px;}
.y149{bottom:250.458893px;}
.y8c{bottom:250.508698px;}
.ye{bottom:255.549156px;}
.yfc{bottom:256.837050px;}
.y170{bottom:260.048103px;}
.yef{bottom:264.908707px;}
.y148{bottom:265.458893px;}
.y8b{bottom:265.508698px;}
.y1f{bottom:268.051048px;}
.yfb{bottom:274.181854px;}
.yd{bottom:274.299156px;}
.yee{bottom:279.908707px;}
.y147{bottom:280.458893px;}
.y8a{bottom:280.508698px;}
.y1e{bottom:283.051048px;}
.y10c{bottom:286.777359px;}
.yfa{bottom:291.526657px;}
.yc{bottom:293.049156px;}
.yed{bottom:294.908707px;}
.y146{bottom:295.458893px;}
.y89{bottom:295.508698px;}
.y10b{bottom:301.777359px;}
.y1d{bottom:305.551048px;}
.yf9{bottom:308.871460px;}
.yec{bottom:309.908707px;}
.y145{bottom:310.458893px;}
.y88{bottom:310.508698px;}
.yb{bottom:311.799156px;}
.y16f{bottom:316.298103px;}
.y10a{bottom:316.777359px;}
.y1c{bottom:320.551048px;}
.yf5{bottom:321.990761px;}
.yeb{bottom:324.908707px;}
.y144{bottom:325.458893px;}
.y87{bottom:325.508698px;}
.yf8{bottom:326.959808px;}
.ya{bottom:330.549156px;}
.y16e{bottom:331.298103px;}
.y109{bottom:331.777359px;}
.y72{bottom:333.804611px;}
.y17a{bottom:337.458893px;}
.y85{bottom:337.879509px;}
.y143{bottom:340.458893px;}
.y84{bottom:340.508698px;}
.y1b{bottom:343.051048px;}
.yf7{bottom:344.303993px;}
.y16d{bottom:346.298103px;}
.y108{bottom:346.777359px;}
.y71{bottom:348.804611px;}
.y9{bottom:349.299156px;}
.y179{bottom:352.458893px;}
.y142{bottom:355.458893px;}
.y83{bottom:355.508698px;}
.y1a{bottom:358.051048px;}
.yf6{bottom:359.303993px;}
.y16c{bottom:361.298103px;}
.y107{bottom:361.777359px;}
.y70{bottom:363.804611px;}
.y8{bottom:368.049156px;}
.y141{bottom:370.458893px;}
.y82{bottom:370.508698px;}
.y16b{bottom:376.298103px;}
.y106{bottom:376.777359px;}
.y6f{bottom:378.804611px;}
.y19{bottom:380.551048px;}
.y140{bottom:385.458893px;}
.y81{bottom:385.508698px;}
.y7{bottom:386.799133px;}
.y16a{bottom:391.298080px;}
.y18{bottom:395.551071px;}
.y8f{bottom:397.590729px;}
.y13f{bottom:400.458893px;}
.y80{bottom:400.508698px;}
.y9d{bottom:401.648987px;}
.y6{bottom:405.549133px;}
.y169{bottom:406.298080px;}
.y13e{bottom:415.458893px;}
.y168{bottom:421.298080px;}
.y5{bottom:424.299133px;}
.y17{bottom:426.301071px;}
.y6e{bottom:426.808960px;}
.y13d{bottom:430.458893px;}
.y167{bottom:436.298080px;}
.y9c{bottom:439.148987px;}
.y16{bottom:441.301071px;}
.ya9{bottom:442.748978px;}
.y4{bottom:443.049133px;}
.y13c{bottom:445.458893px;}
.y166{bottom:451.298080px;}
.y13b{bottom:460.458893px;}
.y5f{bottom:461.799133px;}
.y165{bottom:466.298080px;}
.y13a{bottom:475.458893px;}
.y9b{bottom:480.248978px;}
.y3{bottom:480.549133px;}
.y164{bottom:481.298080px;}
.y139{bottom:490.458893px;}
.y9a{bottom:495.398987px;}
.y163{bottom:496.298080px;}
.ya8{bottom:498.308990px;}
.y5e{bottom:499.299133px;}
.y138{bottom:505.458893px;}
.y99{bottom:514.148987px;}
.ya7{bottom:517.748978px;}
.y5d{bottom:518.049133px;}
.y137{bottom:520.458893px;}
.y162{bottom:529.298080px;}
.y98{bottom:532.898987px;}
.y36{bottom:533.112579px;}
.y69{bottom:533.156982px;}
.y136{bottom:535.458893px;}
.ya4{bottom:535.808990px;}
.y67{bottom:536.498978px;}
.y5c{bottom:536.799133px;}
.ybf{bottom:540.667511px;}
.y161{bottom:544.298080px;}
.y135{bottom:550.458893px;}
.y66{bottom:551.648987px;}
.yc4{bottom:552.262665px;}
.yc1{bottom:552.459595px;}
.ya6{bottom:554.149521px;}
.y5b{bottom:555.549133px;}
.y134{bottom:565.458893px;}
.y35{bottom:569.862579px;}
.y65{bottom:570.398987px;}
.y5a{bottom:574.299133px;}
.y160{bottom:577.298080px;}
.y133{bottom:580.458893px;}
.y34{bottom:588.612579px;}
.y64{bottom:589.148987px;}
.y15f{bottom:592.298080px;}
.y97{bottom:592.748978px;}
.y59{bottom:593.049133px;}
.yb9{bottom:594.984009px;}
.y132{bottom:595.458893px;}
.ybe{bottom:606.578842px;}
.ybb{bottom:606.775635px;}
.y15e{bottom:607.298080px;}
.y33{bottom:607.362579px;}
.y60{bottom:607.898987px;}
.y62{bottom:608.156982px;}
.y131{bottom:610.458893px;}
.y58{bottom:611.799133px;}
.y130{bottom:625.458893px;}
.y32{bottom:626.112579px;}
.y57{bottom:630.549133px;}
.y15d{bottom:640.298080px;}
.y12f{bottom:640.458893px;}
.y31{bottom:644.862579px;}
.y56{bottom:649.299133px;}
.y12e{bottom:655.458893px;}
.y30{bottom:663.612579px;}
.y7e{bottom:664.982986px;}
.y95{bottom:666.649521px;}
.y55{bottom:668.049133px;}
.y12d{bottom:670.458893px;}
.y15c{bottom:677.799133px;}
.y2f{bottom:682.362579px;}
.y12c{bottom:685.458893px;}
.y54{bottom:686.799133px;}
.yea{bottom:691.583405px;}
.y15b{bottom:692.799133px;}
.y73{bottom:696.288300px;}
.y12b{bottom:700.458893px;}
.y10d{bottom:700.814529px;}
.y2e{bottom:701.112762px;}
.y53{bottom:705.549133px;}
.y15a{bottom:707.799133px;}
.ye9{bottom:708.928207px;}
.y12a{bottom:715.458893px;}
.yb0{bottom:718.975479px;}
.y2d{bottom:719.862762px;}
.y159{bottom:722.799133px;}
.y52{bottom:724.299133px;}
.yae{bottom:725.835022px;}
.yad{bottom:726.135132px;}
.ye8{bottom:726.273010px;}
.y7c{bottom:727.449005px;}
.y7b{bottom:729.015152px;}
.y129{bottom:730.458893px;}
.y110{bottom:732.781631px;}
.yb2{bottom:733.260132px;}
.yb8{bottom:734.199005px;}
.y2c{bottom:738.612762px;}
.yac{bottom:741.135132px;}
.yb4{bottom:741.703629px;}
.y79{bottom:742.449005px;}
.y51{bottom:743.049133px;}
.ye7{bottom:743.617813px;}
.y78{bottom:744.015152px;}
.y128{bottom:745.458893px;}
.yb6{bottom:746.187149px;}
.y10f{bottom:747.781631px;}
.y158{bottom:755.799133px;}
.yab{bottom:756.135132px;}
.y2b{bottom:757.362762px;}
.y76{bottom:758.714996px;}
.y75{bottom:759.015152px;}
.y127{bottom:760.458893px;}
.ye6{bottom:760.962616px;}
.y50{bottom:761.799133px;}
.y10e{bottom:762.781631px;}
.y157{bottom:770.799133px;}
.yaa{bottom:771.135132px;}
.y74{bottom:774.015106px;}
.y126{bottom:775.458893px;}
.y2a{bottom:776.112579px;}
.ye5{bottom:778.307373px;}
.y4f{bottom:780.549133px;}
.y125{bottom:790.458893px;}
.y29{bottom:794.862579px;}
.ye4{bottom:795.652222px;}
.y4e{bottom:799.299133px;}
.y156{bottom:803.799133px;}
.y124{bottom:805.458893px;}
.y94{bottom:806.176758px;}
.ye3{bottom:812.996979px;}
.y28{bottom:813.612579px;}
.y4d{bottom:818.049133px;}
.y155{bottom:818.799133px;}
.y123{bottom:820.458893px;}
.y93{bottom:821.176758px;}
.ye2{bottom:830.341827px;}
.y154{bottom:833.799133px;}
.y122{bottom:835.458893px;}
.y92{bottom:836.176758px;}
.y4c{bottom:836.799133px;}
.ye1{bottom:847.686584px;}
.y153{bottom:848.799133px;}
.y121{bottom:850.458893px;}
.y91{bottom:851.176758px;}
.y4b{bottom:855.549133px;}
.y38{bottom:858.878357px;}
.y152{bottom:863.799133px;}
.y120{bottom:865.458893px;}
.ye0{bottom:865.774933px;}
.y90{bottom:866.176758px;}
.y37{bottom:873.878357px;}
.y4a{bottom:874.299133px;}
.y151{bottom:878.799133px;}
.y11f{bottom:880.458893px;}
.ydf{bottom:883.119324px;}
.y49{bottom:893.049133px;}
.y11e{bottom:895.458893px;}
.yde{bottom:898.119324px;}
.y11d{bottom:910.458893px;}
.y48{bottom:911.799133px;}
.y3c{bottom:917.456726px;}
.y11c{bottom:925.458893px;}
.y47{bottom:930.549133px;}
.ydd{bottom:935.672974px;}
.y3b{bottom:936.206726px;}
.yd9{bottom:938.017822px;}
.y11b{bottom:940.458893px;}
.y46{bottom:949.299133px;}
.ydc{bottom:950.672974px;}
.yd8{bottom:953.017822px;}
.y11a{bottom:955.458893px;}
.ydb{bottom:965.672974px;}
.yd7{bottom:968.017822px;}
.y45{bottom:968.049133px;}
.y119{bottom:970.458893px;}
.y3a{bottom:980.043274px;}
.yda{bottom:983.017181px;}
.yd6{bottom:983.017822px;}
.y118{bottom:985.458893px;}
.y44{bottom:986.799133px;}
.yd5{bottom:1000.362122px;}
.y117{bottom:1000.458893px;}
.y43{bottom:1005.549133px;}
.y39{bottom:1007.043274px;}
.ya3{bottom:1014.736633px;}
.y116{bottom:1015.458893px;}
.yd4{bottom:1017.706970px;}
.y42{bottom:1024.299133px;}
.ya2{bottom:1029.736633px;}
.y115{bottom:1030.458893px;}
.yd3{bottom:1035.051636px;}
.y41{bottom:1043.049133px;}
.ya1{bottom:1044.736633px;}
.y114{bottom:1045.458893px;}
.yd2{bottom:1053.140076px;}
.ya0{bottom:1059.736633px;}
.y113{bottom:1060.458893px;}
.y40{bottom:1061.799133px;}
.yd1{bottom:1070.484283px;}
.y9f{bottom:1074.736633px;}
.y112{bottom:1075.458893px;}
.y3f{bottom:1080.549133px;}
.yd0{bottom:1085.484283px;}
.y7d{bottom:1086.818665px;}
.y9e{bottom:1089.736633px;}
.y111{bottom:1090.458893px;}
.y2{bottom:1109.543884px;}
.y3e{bottom:1125.713104px;}
.y1{bottom:1126.031982px;}
.h24{height:0.000000px;}
.h14{height:9.420000px;}
.h16{height:10.845000px;}
.h10{height:10.965000px;}
.h1b{height:10.966500px;}
.h21{height:11.085000px;}
.h1a{height:11.400000px;}
.h18{height:11.970000px;}
.h1e{height:11.985000px;}
.h1d{height:12.793500px;}
.h20{height:12.795000px;}
.h17{height:13.950000px;}
.hf{height:14.445000px;}
.hd{height:15.690000px;}
.h1c{height:15.691500px;}
.h7{height:29.773241px;}
.h25{height:31.382100px;}
.h27{height:32.564999px;}
.h19{height:35.261584px;}
.h15{height:36.379386px;}
.h28{height:38.865000px;}
.h23{height:39.823500px;}
.h22{height:41.463598px;}
.h6{height:42.533203px;}
.he{height:44.831699px;}
.h1f{height:45.839279px;}
.h29{height:45.839325px;}
.h3{height:48.297000px;}
.h2{height:48.552000px;}
.h12{height:49.113000px;}
.h5{height:50.039062px;}
.h2a{height:50.439000px;}
.h26{height:53.072774px;}
.h9{height:57.780000px;}
.h8{height:59.340000px;}
.h13{height:60.046875px;}
.hb{height:64.446000px;}
.h11{height:64.680000px;}
.h4{height:71.208000px;}
.hc{height:72.000000px;}
.ha{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.wb{width:10.875000px;}
.wa{width:12.450000px;}
.w15{width:13.784999px;}
.w13{width:15.405000px;}
.w9{width:16.065000px;}
.wc{width:19.094999px;}
.w12{width:26.010000px;}
.w14{width:27.390000px;}
.w7{width:31.168499px;}
.w8{width:39.435000px;}
.w3{width:41.505000px;}
.wd{width:41.506499px;}
.w6{width:45.194999px;}
.w2{width:67.485003px;}
.w5{width:80.911503px;}
.we{width:91.395000px;}
.w4{width:100.875000px;}
.w10{width:103.004997px;}
.w18{width:131.865005px;}
.wf{width:136.531506px;}
.w17{width:153.375000px;}
.w11{width:186.404995px;}
.w19{width:227.834999px;}
.w16{width:248.146500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4e{left:60.945906px;}
.x4b{left:64.010405px;}
.x3d{left:71.227066px;}
.x1{left:76.535402px;}
.x46{left:85.595552px;}
.x49{left:87.485407px;}
.x4{left:90.972599px;}
.x8{left:93.543303px;}
.x5{left:97.795200px;}
.x47{left:98.956055px;}
.x29{left:102.316498px;}
.x48{left:108.296408px;}
.x54{left:112.211998px;}
.x4d{left:119.913895px;}
.x26{left:121.730404px;}
.x3b{left:123.050995px;}
.x50{left:129.786901px;}
.x3f{left:131.141556px;}
.x36{left:137.613304px;}
.x41{left:144.110550px;}
.x37{left:146.619003px;}
.x51{left:148.896910px;}
.x4f{left:153.255900px;}
.x2d{left:155.844006px;}
.x2b{left:158.142002px;}
.x31{left:166.502998px;}
.x43{left:170.267578px;}
.x38{left:174.008995px;}
.x2a{left:193.712105px;}
.x22{left:196.043999px;}
.x2e{left:201.039299px;}
.x4c{left:208.400391px;}
.x23{left:215.139290px;}
.x20{left:227.143500px;}
.x4a{left:229.910408px;}
.x21{left:238.019852px;}
.x2f{left:250.543510px;}
.x39{left:264.542999px;}
.x1a{left:269.269500px;}
.x18{left:271.424995px;}
.x3a{left:279.948600px;}
.x1b{left:285.334190px;}
.x2c{left:294.672157px;}
.x1c{left:302.672997px;}
.x52{left:304.370407px;}
.x19{left:310.860741px;}
.x1d{left:318.737709px;}
.x27{left:342.305992px;}
.x34{left:344.137505px;}
.x30{left:353.548508px;}
.x35{left:363.232796px;}
.x24{left:387.199493px;}
.x25{left:428.705704px;}
.x28{left:433.700867px;}
.x2{left:459.850342px;}
.x9{left:468.272690px;}
.x14{left:475.201492px;}
.x3{left:476.858231px;}
.xa{left:481.633209px;}
.x57{left:484.724396px;}
.xc{left:496.271988px;}
.x12{left:505.791000px;}
.x3c{left:512.870544px;}
.x15{left:520.396042px;}
.x55{left:529.618973px;}
.x56{left:534.564011px;}
.x11{left:540.122543px;}
.x3e{left:546.212540px;}
.xd{left:563.757431px;}
.x40{left:596.165543px;}
.x13{left:606.666321px;}
.x42{left:609.134537px;}
.x1e{left:615.632996px;}
.x1f{left:628.083435px;}
.x44{left:653.555557px;}
.x10{left:663.844803px;}
.x45{left:666.886047px;}
.x32{left:681.099014px;}
.x7{left:692.292160px;}
.x53{left:697.697388px;}
.xe{left:699.515991px;}
.xb{left:703.753510px;}
.x33{left:707.109879px;}
.xf{left:741.021011px;}
.x16{left:742.808990px;}
.x6{left:755.658737px;}
.x17{left:773.978577px;}
@media print{
.v1{vertical-align:-18.133301pt;}
.v3{vertical-align:-5.019206pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.285319pt;}
.v2{vertical-align:21.333333pt;}
.ls6{letter-spacing:-1.973333pt;}
.ls3e{letter-spacing:-1.269333pt;}
.ls42{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000007pt;}
.ls33{letter-spacing:0.000010pt;}
.ls13{letter-spacing:0.000029pt;}
.ls1b{letter-spacing:0.000091pt;}
.ls29{letter-spacing:0.000163pt;}
.ls2c{letter-spacing:0.000268pt;}
.ls17{letter-spacing:0.000417pt;}
.ls1c{letter-spacing:0.000495pt;}
.lsc{letter-spacing:0.000498pt;}
.lsd{letter-spacing:0.000517pt;}
.ls3{letter-spacing:0.000518pt;}
.ls1d{letter-spacing:0.000539pt;}
.ls7{letter-spacing:0.000579pt;}
.ls2e{letter-spacing:0.006906pt;}
.ls10{letter-spacing:0.007452pt;}
.ls1f{letter-spacing:0.007454pt;}
.ls21{letter-spacing:0.007470pt;}
.ls22{letter-spacing:0.007493pt;}
.ls20{letter-spacing:0.007533pt;}
.ls12{letter-spacing:0.007940pt;}
.ls2b{letter-spacing:0.007962pt;}
.ls2d{letter-spacing:0.008003pt;}
.ls1e{letter-spacing:0.008023pt;}
.ls3b{letter-spacing:0.008044pt;}
.ls11{letter-spacing:0.008103pt;}
.ls3a{letter-spacing:0.008125pt;}
.ls36{letter-spacing:0.008542pt;}
.ls32{letter-spacing:0.008551pt;}
.ls34{letter-spacing:0.008556pt;}
.ls2a{letter-spacing:0.008613pt;}
.ls16{letter-spacing:0.008633pt;}
.ls1a{letter-spacing:0.008959pt;}
.ls23{letter-spacing:0.009040pt;}
.lsf{letter-spacing:0.009121pt;}
.ls19{letter-spacing:0.009123pt;}
.ls25{letter-spacing:0.009126pt;}
.ls18{letter-spacing:0.009284pt;}
.ls9{letter-spacing:0.265669pt;}
.ls3f{letter-spacing:0.317333pt;}
.ls38{letter-spacing:0.371937pt;}
.ls40{letter-spacing:0.997333pt;}
.ls35{letter-spacing:1.487748pt;}
.ls41{letter-spacing:1.677333pt;}
.ls14{letter-spacing:2.529169pt;}
.lsa{letter-spacing:2.709827pt;}
.lse{letter-spacing:3.028630pt;}
.ls26{letter-spacing:3.081764pt;}
.ls28{letter-spacing:4.197575pt;}
.ls24{letter-spacing:5.791591pt;}
.ls39{letter-spacing:7.332473pt;}
.ls30{letter-spacing:7.385607pt;}
.ls27{letter-spacing:8.820222pt;}
.ls2f{letter-spacing:11.795718pt;}
.ls15{letter-spacing:12.871664pt;}
.ls43{letter-spacing:13.962667pt;}
.ls8{letter-spacing:14.718081pt;}
.lsb{letter-spacing:14.771215pt;}
.ls5{letter-spacing:15.355143pt;}
.ls0{letter-spacing:24.273059pt;}
.ls1{letter-spacing:47.124797pt;}
.ls31{letter-spacing:47.504542pt;}
.ls4{letter-spacing:47.504603pt;}
.ls3c{letter-spacing:130.093323pt;}
.ls3d{letter-spacing:260.344076pt;}
.wsaf{word-spacing:-14.771215pt;}
.wsbc{word-spacing:-14.718081pt;}
.ws1{word-spacing:-13.333333pt;}
.ws188{word-spacing:-12.928000pt;}
.wsdc{word-spacing:-12.871664pt;}
.ws150{word-spacing:-12.800000pt;}
.ws13c{word-spacing:-12.330667pt;}
.ws13f{word-spacing:-11.650667pt;}
.ws1f{word-spacing:-11.360000pt;}
.wscb{word-spacing:-11.333333pt;}
.ws187{word-spacing:-11.088000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.773333pt;}
.ws4{word-spacing:-10.240000pt;}
.ws0{word-spacing:-8.885333pt;}
.wsf1{word-spacing:-8.873356pt;}
.ws186{word-spacing:-8.704000pt;}
.ws2{word-spacing:-7.933333pt;}
.ws11d{word-spacing:-7.332473pt;}
.ws6{word-spacing:-7.168000pt;}
.ws99{word-spacing:-3.893333pt;}
.wsfe{word-spacing:-3.520000pt;}
.ws108{word-spacing:-3.146667pt;}
.wsae{word-spacing:-3.081764pt;}
.wsba{word-spacing:-3.028630pt;}
.ws118{word-spacing:-2.986667pt;}
.ws123{word-spacing:-2.880000pt;}
.wsb4{word-spacing:-2.826667pt;}
.ws143{word-spacing:-2.773333pt;}
.ws27{word-spacing:-2.720000pt;}
.ws112{word-spacing:-2.666667pt;}
.wse7{word-spacing:-2.613333pt;}
.ws173{word-spacing:-2.560000pt;}
.ws33{word-spacing:-2.506667pt;}
.ws1c4{word-spacing:-2.493333pt;}
.ws136{word-spacing:-2.453333pt;}
.ws60{word-spacing:-2.400000pt;}
.ws175{word-spacing:-2.346667pt;}
.ws147{word-spacing:-2.293333pt;}
.wsc2{word-spacing:-2.240000pt;}
.wsb1{word-spacing:-2.186667pt;}
.wsc9{word-spacing:-2.176000pt;}
.ws75{word-spacing:-2.133333pt;}
.ws185{word-spacing:-2.130667pt;}
.wsf5{word-spacing:-2.080000pt;}
.ws10c{word-spacing:-2.040000pt;}
.ws87{word-spacing:-2.026667pt;}
.ws19b{word-spacing:-1.994667pt;}
.ws4e{word-spacing:-1.973333pt;}
.ws122{word-spacing:-1.920000pt;}
.ws181{word-spacing:-1.904000pt;}
.ws31{word-spacing:-1.866667pt;}
.ws7f{word-spacing:-1.813333pt;}
.ws141{word-spacing:-1.760000pt;}
.ws12d{word-spacing:-1.706667pt;}
.ws14b{word-spacing:-1.677333pt;}
.ws7e{word-spacing:-1.653333pt;}
.wsc1{word-spacing:-1.600000pt;}
.ws1b6{word-spacing:-1.586667pt;}
.ws5a{word-spacing:-1.546667pt;}
.ws176{word-spacing:-1.541333pt;}
.ws163{word-spacing:-1.496000pt;}
.wsf7{word-spacing:-1.493333pt;}
.ws5d{word-spacing:-1.440000pt;}
.ws149{word-spacing:-1.405333pt;}
.ws48{word-spacing:-1.386667pt;}
.wsea{word-spacing:-1.333333pt;}
.ws196{word-spacing:-1.314667pt;}
.wsfa{word-spacing:-1.280000pt;}
.ws1a6{word-spacing:-1.269333pt;}
.ws7d{word-spacing:-1.226667pt;}
.wsed{word-spacing:-1.178667pt;}
.wsb8{word-spacing:-1.173333pt;}
.ws162{word-spacing:-1.133333pt;}
.ws6a{word-spacing:-1.120000pt;}
.ws5b{word-spacing:-1.066667pt;}
.ws189{word-spacing:-1.042667pt;}
.ws117{word-spacing:-1.013333pt;}
.wsc8{word-spacing:-0.997333pt;}
.ws74{word-spacing:-0.960000pt;}
.ws18b{word-spacing:-0.952000pt;}
.ws22{word-spacing:-0.906667pt;}
.ws16{word-spacing:-0.853333pt;}
.ws177{word-spacing:-0.816000pt;}
.wse1{word-spacing:-0.800000pt;}
.wsc7{word-spacing:-0.770667pt;}
.ws3f{word-spacing:-0.746667pt;}
.ws4f{word-spacing:-0.693333pt;}
.ws19c{word-spacing:-0.680000pt;}
.ws25{word-spacing:-0.640000pt;}
.ws41{word-spacing:-0.586667pt;}
.ws178{word-spacing:-0.544000pt;}
.ws96{word-spacing:-0.533333pt;}
.ws5c{word-spacing:-0.480000pt;}
.ws94{word-spacing:-0.426667pt;}
.ws10f{word-spacing:-0.425071pt;}
.ws1c1{word-spacing:-0.408000pt;}
.ws28{word-spacing:-0.373333pt;}
.ws14{word-spacing:-0.320000pt;}
.ws14f{word-spacing:-0.317333pt;}
.ws18a{word-spacing:-0.272000pt;}
.ws21{word-spacing:-0.266667pt;}
.ws1c0{word-spacing:-0.226667pt;}
.ws105{word-spacing:-0.213333pt;}
.ws11b{word-spacing:-0.160000pt;}
.ws26{word-spacing:-0.106667pt;}
.wsec{word-spacing:-0.090667pt;}
.ws5f{word-spacing:-0.053333pt;}
.wsad{word-spacing:-0.053134pt;}
.ws190{word-spacing:-0.045333pt;}
.wscd{word-spacing:-0.045164pt;}
.ws7{word-spacing:0.000000pt;}
.ws15e{word-spacing:0.053333pt;}
.wsca{word-spacing:0.090667pt;}
.wsd1{word-spacing:0.160000pt;}
.ws1a4{word-spacing:0.181333pt;}
.wsa9{word-spacing:0.213333pt;}
.ws1a5{word-spacing:0.226667pt;}
.ws66{word-spacing:0.266667pt;}
.ws1b3{word-spacing:0.272000pt;}
.ws1a2{word-spacing:0.317333pt;}
.ws24{word-spacing:0.320000pt;}
.ws183{word-spacing:0.362667pt;}
.ws29{word-spacing:0.373333pt;}
.wsda{word-spacing:0.408000pt;}
.wsc{word-spacing:0.426667pt;}
.ws184{word-spacing:0.453333pt;}
.ws11{word-spacing:0.480000pt;}
.ws1ac{word-spacing:0.498667pt;}
.wsd{word-spacing:0.533333pt;}
.ws1af{word-spacing:0.544000pt;}
.wsbd{word-spacing:0.586667pt;}
.ws83{word-spacing:0.640000pt;}
.ws192{word-spacing:0.680000pt;}
.ws137{word-spacing:0.693333pt;}
.ws15{word-spacing:0.746667pt;}
.ws119{word-spacing:0.800000pt;}
.ws80{word-spacing:0.853333pt;}
.ws1a7{word-spacing:0.861333pt;}
.ws78{word-spacing:0.906667pt;}
.wsde{word-spacing:0.952000pt;}
.ws8c{word-spacing:0.960000pt;}
.wsd3{word-spacing:0.997333pt;}
.ws92{word-spacing:1.013333pt;}
.wsbf{word-spacing:1.066667pt;}
.ws2f{word-spacing:1.120000pt;}
.ws1a8{word-spacing:1.133333pt;}
.ws10{word-spacing:1.173333pt;}
.ws145{word-spacing:1.226667pt;}
.ws14a{word-spacing:1.269333pt;}
.ws128{word-spacing:1.280000pt;}
.wsd4{word-spacing:1.314667pt;}
.wsfd{word-spacing:1.333333pt;}
.wsd7{word-spacing:1.360000pt;}
.ws4d{word-spacing:1.386667pt;}
.ws1b5{word-spacing:1.405333pt;}
.ws127{word-spacing:1.440000pt;}
.wsdd{word-spacing:1.496000pt;}
.ws9d{word-spacing:1.546667pt;}
.ws84{word-spacing:1.600000pt;}
.ws1b{word-spacing:1.653333pt;}
.ws40{word-spacing:1.706667pt;}
.ws10d{word-spacing:1.722667pt;}
.ws46{word-spacing:1.760000pt;}
.wsc3{word-spacing:1.813333pt;}
.ws1ad{word-spacing:1.858667pt;}
.wsb{word-spacing:1.866667pt;}
.ws1a0{word-spacing:1.904000pt;}
.ws6e{word-spacing:1.920000pt;}
.ws1b1{word-spacing:1.949333pt;}
.ws54{word-spacing:1.973333pt;}
.ws86{word-spacing:2.026667pt;}
.ws89{word-spacing:2.080000pt;}
.ws180{word-spacing:2.085333pt;}
.ws8f{word-spacing:2.133333pt;}
.wsd9{word-spacing:2.176000pt;}
.ws73{word-spacing:2.186667pt;}
.ws1bd{word-spacing:2.221333pt;}
.ws45{word-spacing:2.240000pt;}
.ws10e{word-spacing:2.266667pt;}
.ws79{word-spacing:2.293333pt;}
.ws30{word-spacing:2.346667pt;}
.ws164{word-spacing:2.357333pt;}
.ws2b{word-spacing:2.400000pt;}
.wse9{word-spacing:2.453333pt;}
.wsf0{word-spacing:2.493333pt;}
.wsb7{word-spacing:2.506667pt;}
.ws14c{word-spacing:2.538667pt;}
.wsd2{word-spacing:2.560000pt;}
.ws17a{word-spacing:2.584000pt;}
.ws102{word-spacing:2.613333pt;}
.ws170{word-spacing:2.666667pt;}
.ws20{word-spacing:2.674667pt;}
.wse{word-spacing:2.720000pt;}
.wsee{word-spacing:2.765333pt;}
.wse8{word-spacing:2.773333pt;}
.ws1c3{word-spacing:2.810667pt;}
.ws2a{word-spacing:2.826667pt;}
.ws3b{word-spacing:2.880000pt;}
.wsb9{word-spacing:2.933333pt;}
.ws1bf{word-spacing:2.946667pt;}
.ws98{word-spacing:2.986667pt;}
.ws19e{word-spacing:2.992000pt;}
.ws191{word-spacing:3.037333pt;}
.ws18{word-spacing:3.040000pt;}
.ws16d{word-spacing:3.093333pt;}
.wsdf{word-spacing:3.128000pt;}
.ws7c{word-spacing:3.146667pt;}
.wsd8{word-spacing:3.173333pt;}
.ws44{word-spacing:3.200000pt;}
.wsb2{word-spacing:3.253333pt;}
.ws109{word-spacing:3.264000pt;}
.ws1d{word-spacing:3.306667pt;}
.ws65{word-spacing:3.360000pt;}
.ws67{word-spacing:3.413333pt;}
.wseb{word-spacing:3.466667pt;}
.ws1c7{word-spacing:3.490667pt;}
.ws17{word-spacing:3.520000pt;}
.wsd6{word-spacing:3.536000pt;}
.ws4b{word-spacing:3.573333pt;}
.ws18e{word-spacing:3.581333pt;}
.ws6b{word-spacing:3.626667pt;}
.ws76{word-spacing:3.680000pt;}
.ws57{word-spacing:3.733333pt;}
.wsef{word-spacing:3.762667pt;}
.ws1c{word-spacing:3.786667pt;}
.wsf6{word-spacing:3.840000pt;}
.ws37{word-spacing:3.893333pt;}
.ws19f{word-spacing:3.898667pt;}
.ws1ba{word-spacing:3.944000pt;}
.ws1e{word-spacing:3.946667pt;}
.ws1ae{word-spacing:3.989333pt;}
.ws70{word-spacing:4.000000pt;}
.ws121{word-spacing:4.053333pt;}
.ws47{word-spacing:4.106667pt;}
.ws18f{word-spacing:4.125333pt;}
.ws61{word-spacing:4.160000pt;}
.ws71{word-spacing:4.213333pt;}
.ws19d{word-spacing:4.261333pt;}
.ws90{word-spacing:4.266667pt;}
.wsdb{word-spacing:4.306667pt;}
.ws6d{word-spacing:4.320000pt;}
.ws1c6{word-spacing:4.352000pt;}
.wse5{word-spacing:4.373333pt;}
.wsc5{word-spacing:4.426667pt;}
.wsbb{word-spacing:4.480000pt;}
.ws110{word-spacing:4.516379pt;}
.ws62{word-spacing:4.533333pt;}
.wsfb{word-spacing:4.586667pt;}
.ws179{word-spacing:4.624000pt;}
.wsbe{word-spacing:4.640000pt;}
.ws8a{word-spacing:4.693333pt;}
.ws23{word-spacing:4.746667pt;}
.ws51{word-spacing:4.800000pt;}
.ws107{word-spacing:4.853333pt;}
.wsce{word-spacing:4.906667pt;}
.ws35{word-spacing:4.960000pt;}
.ws182{word-spacing:4.986667pt;}
.ws104{word-spacing:5.013333pt;}
.ws9e{word-spacing:5.066667pt;}
.ws8b{word-spacing:5.120000pt;}
.ws197{word-spacing:5.122667pt;}
.ws9f{word-spacing:5.173333pt;}
.ws129{word-spacing:5.226667pt;}
.ws8d{word-spacing:5.280000pt;}
.ws1b2{word-spacing:5.304000pt;}
.wsf{word-spacing:5.333333pt;}
.ws1a3{word-spacing:5.349333pt;}
.ws101{word-spacing:5.440000pt;}
.wsb6{word-spacing:5.493333pt;}
.ws19{word-spacing:5.546667pt;}
.ws3c{word-spacing:5.600000pt;}
.ws199{word-spacing:5.621333pt;}
.ws69{word-spacing:5.653333pt;}
.ws10b{word-spacing:5.666667pt;}
.ws42{word-spacing:5.706667pt;}
.ws1b0{word-spacing:5.757333pt;}
.wsa5{word-spacing:5.760000pt;}
.ws56{word-spacing:5.813333pt;}
.ws88{word-spacing:5.866667pt;}
.ws146{word-spacing:5.920000pt;}
.wse3{word-spacing:5.973333pt;}
.ws116{word-spacing:6.026667pt;}
.ws12e{word-spacing:6.080000pt;}
.ws15a{word-spacing:6.133333pt;}
.ws11c{word-spacing:6.186667pt;}
.ws93{word-spacing:6.240000pt;}
.ws12b{word-spacing:6.293333pt;}
.ws1b7{word-spacing:6.301333pt;}
.ws1a9{word-spacing:6.392000pt;}
.ws43{word-spacing:6.400000pt;}
.wsa{word-spacing:6.453333pt;}
.ws10a{word-spacing:6.482667pt;}
.wsa0{word-spacing:6.506667pt;}
.ws32{word-spacing:6.560000pt;}
.ws9b{word-spacing:6.613333pt;}
.ws18c{word-spacing:6.664000pt;}
.ws12{word-spacing:6.666667pt;}
.ws1ab{word-spacing:6.709333pt;}
.ws17b{word-spacing:6.720000pt;}
.ws95{word-spacing:6.773333pt;}
.ws2e{word-spacing:6.826667pt;}
.ws50{word-spacing:6.880000pt;}
.ws1a1{word-spacing:6.890667pt;}
.ws38{word-spacing:6.933333pt;}
.ws14d{word-spacing:6.936000pt;}
.ws91{word-spacing:6.986667pt;}
.ws7a{word-spacing:7.040000pt;}
.ws1a{word-spacing:7.093333pt;}
.ws4a{word-spacing:7.146667pt;}
.wse4{word-spacing:7.200000pt;}
.wsd0{word-spacing:7.306667pt;}
.wscf{word-spacing:7.360000pt;}
.ws6f{word-spacing:7.413333pt;}
.ws53{word-spacing:7.466667pt;}
.wsd5{word-spacing:7.480000pt;}
.ws120{word-spacing:7.520000pt;}
.ws144{word-spacing:7.573333pt;}
.ws39{word-spacing:7.626667pt;}
.ws49{word-spacing:7.680000pt;}
.wsb3{word-spacing:7.733333pt;}
.ws161{word-spacing:7.786667pt;}
.wse6{word-spacing:7.840000pt;}
.ws19a{word-spacing:7.842667pt;}
.wse0{word-spacing:7.888000pt;}
.wsb5{word-spacing:7.893333pt;}
.wsc4{word-spacing:7.946667pt;}
.ws9{word-spacing:8.000000pt;}
.ws9c{word-spacing:8.053333pt;}
.ws1be{word-spacing:8.114667pt;}
.ws12f{word-spacing:8.160000pt;}
.ws3e{word-spacing:8.213333pt;}
.wsa8{word-spacing:8.266667pt;}
.ws16c{word-spacing:8.320000pt;}
.ws2c{word-spacing:8.373333pt;}
.wsa1{word-spacing:8.426667pt;}
.ws1bc{word-spacing:8.432000pt;}
.ws85{word-spacing:8.480000pt;}
.wsf4{word-spacing:8.490792pt;}
.ws198{word-spacing:8.522667pt;}
.ws126{word-spacing:8.533333pt;}
.wsf9{word-spacing:8.586667pt;}
.wsc0{word-spacing:8.746667pt;}
.ws1b9{word-spacing:8.749333pt;}
.wsac{word-spacing:8.756461pt;}
.wsb0{word-spacing:8.761774pt;}
.ws7b{word-spacing:8.800000pt;}
.wsa6{word-spacing:8.906667pt;}
.ws2d{word-spacing:8.960000pt;}
.ws17e{word-spacing:9.013333pt;}
.ws14e{word-spacing:9.021333pt;}
.ws125{word-spacing:9.066667pt;}
.ws52{word-spacing:9.120000pt;}
.ws174{word-spacing:9.173333pt;}
.ws11a{word-spacing:9.226667pt;}
.ws82{word-spacing:9.280000pt;}
.wsa2{word-spacing:9.386667pt;}
.wscc{word-spacing:9.439220pt;}
.ws17d{word-spacing:9.440000pt;}
.ws193{word-spacing:9.474667pt;}
.ws142{word-spacing:9.546667pt;}
.ws81{word-spacing:9.600000pt;}
.wsa4{word-spacing:9.706667pt;}
.ws55{word-spacing:9.866667pt;}
.ws1b4{word-spacing:9.882667pt;}
.ws15f{word-spacing:9.920000pt;}
.ws36{word-spacing:9.973333pt;}
.ws133{word-spacing:10.026667pt;}
.wsaa{word-spacing:10.080000pt;}
.ws5e{word-spacing:10.240000pt;}
.ws18d{word-spacing:10.245333pt;}
.ws3d{word-spacing:10.293333pt;}
.ws1c2{word-spacing:10.472000pt;}
.ws100{word-spacing:10.560000pt;}
.wsab{word-spacing:10.573639pt;}
.ws171{word-spacing:10.613333pt;}
.wsa7{word-spacing:10.773333pt;}
.ws148{word-spacing:10.880000pt;}
.wsfc{word-spacing:10.933333pt;}
.wsff{word-spacing:11.093333pt;}
.ws132{word-spacing:11.306667pt;}
.wsc6{word-spacing:11.360000pt;}
.ws16e{word-spacing:11.466667pt;}
.ws1b8{word-spacing:11.469333pt;}
.ws194{word-spacing:11.560000pt;}
.wsf3{word-spacing:11.731958pt;}
.ws9a{word-spacing:11.733333pt;}
.ws68{word-spacing:11.946667pt;}
.ws135{word-spacing:12.000000pt;}
.ws195{word-spacing:12.013333pt;}
.ws140{word-spacing:12.053333pt;}
.ws15c{word-spacing:12.160000pt;}
.ws1aa{word-spacing:12.194667pt;}
.ws12a{word-spacing:12.213333pt;}
.ws77{word-spacing:12.266667pt;}
.ws15d{word-spacing:12.320000pt;}
.ws4c{word-spacing:12.373333pt;}
.ws72{word-spacing:12.480000pt;}
.ws131{word-spacing:12.533333pt;}
.ws1bb{word-spacing:12.557333pt;}
.ws106{word-spacing:12.693333pt;}
.ws134{word-spacing:12.960000pt;}
.ws16f{word-spacing:13.013333pt;}
.ws63{word-spacing:13.066667pt;}
.ws3a{word-spacing:13.120000pt;}
.wse2{word-spacing:13.173333pt;}
.ws17c{word-spacing:13.440000pt;}
.ws97{word-spacing:13.600000pt;}
.ws115{word-spacing:13.920000pt;}
.ws58{word-spacing:14.133333pt;}
.ws172{word-spacing:14.186667pt;}
.ws8e{word-spacing:14.400000pt;}
.ws1c5{word-spacing:14.416000pt;}
.wsf2{word-spacing:14.659633pt;}
.ws160{word-spacing:14.933333pt;}
.ws6c{word-spacing:15.253333pt;}
.ws59{word-spacing:15.360000pt;}
.ws34{word-spacing:15.626667pt;}
.ws103{word-spacing:15.893333pt;}
.ws12c{word-spacing:16.213333pt;}
.ws114{word-spacing:16.426667pt;}
.ws113{word-spacing:16.906667pt;}
.wsf8{word-spacing:18.245333pt;}
.ws13{word-spacing:18.400000pt;}
.ws8{word-spacing:19.072000pt;}
.ws64{word-spacing:20.106667pt;}
.ws130{word-spacing:25.066667pt;}
.wsa3{word-spacing:28.320000pt;}
.ws17f{word-spacing:30.986667pt;}
.ws15b{word-spacing:32.160000pt;}
.ws168{word-spacing:49.032471pt;}
.ws156{word-spacing:50.834763pt;}
.ws16a{word-spacing:54.057590pt;}
.ws152{word-spacing:55.173984pt;}
.ws151{word-spacing:55.229945pt;}
.ws158{word-spacing:76.085775pt;}
.ws159{word-spacing:77.767641pt;}
.ws154{word-spacing:80.481608pt;}
.ws165{word-spacing:81.308291pt;}
.ws138{word-spacing:81.829351pt;}
.ws169{word-spacing:82.701335pt;}
.ws157{word-spacing:83.744466pt;}
.ws153{word-spacing:88.140137pt;}
.ws167{word-spacing:91.820257pt;}
.ws155{word-spacing:92.936651pt;}
.ws13b{word-spacing:93.290120pt;}
.ws166{word-spacing:95.716535pt;}
.ws16b{word-spacing:106.422958pt;}
.ws13a{word-spacing:114.739258pt;}
.ws139{word-spacing:148.560018pt;}
.ws13d{word-spacing:155.178711pt;}
.ws13e{word-spacing:177.845378pt;}
.ws111{word-spacing:312.106667pt;}
.ws124{word-spacing:384.319992pt;}
.ws11e{word-spacing:649.066667pt;}
.ws11f{word-spacing:725.546667pt;}
._7{margin-left:-62.665588pt;}
._e{margin-left:-45.547201pt;}
._0{margin-left:-14.666667pt;}
._18{margin-left:-11.626716pt;}
._1a{margin-left:-7.146667pt;}
._13{margin-left:-6.186667pt;}
._6{margin-left:-5.045600pt;}
._5{margin-left:-3.973333pt;}
._2{margin-left:-2.944000pt;}
._b{margin-left:-1.912562pt;}
._4{margin-left:-1.002667pt;}
._3{width:1.029334pt;}
._1{width:1.978667pt;}
._d{width:3.013333pt;}
._a{width:3.973333pt;}
._c{width:5.285333pt;}
._9{width:6.938667pt;}
._12{width:8.154666pt;}
._f{width:9.868288pt;}
._15{width:11.205334pt;}
._19{width:12.320000pt;}
._45{width:14.189333pt;}
._17{width:15.744001pt;}
._16{width:16.661333pt;}
._44{width:17.589333pt;}
._14{width:19.072000pt;}
._48{width:20.536000pt;}
._49{width:21.805333pt;}
._41{width:22.757333pt;}
._42{width:23.944562pt;}
._43{width:24.842667pt;}
._11{width:33.773333pt;}
._47{width:35.496000pt;}
._10{width:36.854936pt;}
._46{width:40.074667pt;}
._40{width:41.797333pt;}
._3f{width:45.378667pt;}
._3e{width:46.421333pt;}
._8{width:48.370659pt;}
._38{width:54.924291pt;}
._2f{width:73.623388pt;}
._2a{width:78.019059pt;}
._36{width:83.356566pt;}
._3a{width:92.641625pt;}
._33{width:95.690445pt;}
._2d{width:100.257873pt;}
._1b{width:104.887989pt;}
._3c{width:106.179149pt;}
._30{width:110.473674pt;}
._35{width:111.386055pt;}
._37{width:113.262924pt;}
._29{width:114.379318pt;}
._22{width:118.413818pt;}
._2b{width:120.768392pt;}
._21{width:126.072591pt;}
._1d{width:127.290120pt;}
._31{width:128.898763pt;}
._1e{width:130.093323pt;}
._2e{width:131.961674pt;}
._2c{width:133.293945pt;}
._20{width:141.080485pt;}
._34{width:145.295388pt;}
._24{width:152.070764pt;}
._23{width:153.522742pt;}
._1f{width:159.893351pt;}
._32{width:164.244721pt;}
._3b{width:173.041610pt;}
._27{width:174.170573pt;}
._39{width:195.708277pt;}
._28{width:196.837240pt;}
._1c{width:197.747152pt;}
._26{width:207.991374pt;}
._3d{width:219.032471pt;}
._25{width:260.344076pt;}
.fsa{font-size:31.614400pt;}
.fs3{font-size:31.733332pt;}
.fsb{font-size:37.193600pt;}
.fs5{font-size:37.333333pt;}
.fs9{font-size:45.163732pt;}
.fs0{font-size:45.333333pt;}
.fs7{font-size:53.133865pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:0.265463pt;}
.y68{bottom:0.265503pt;}
.yaf{bottom:0.266764pt;}
.y77{bottom:0.266805pt;}
.ya5{bottom:1.009481pt;}
.ybd{bottom:1.369466pt;}
.yc3{bottom:1.369873pt;}
.y96{bottom:1.371704pt;}
.ycd{bottom:1.371735pt;}
.y7a{bottom:1.520915pt;}
.y86{bottom:2.460002pt;}
.y7f{bottom:2.847616pt;}
.y63{bottom:3.357625pt;}
.yb7{bottom:3.585612pt;}
.yc9{bottom:3.586812pt;}
.y61{bottom:3.586955pt;}
.yba{bottom:10.481445pt;}
.yc0{bottom:10.481852pt;}
.yb1{bottom:12.697469pt;}
.ybc{bottom:19.466797pt;}
.yc2{bottom:19.467204pt;}
.yb5{bottom:24.188151pt;}
.yc7{bottom:34.150818pt;}
.yb3{bottom:34.150838pt;}
.y3d{bottom:54.220133pt;}
.y27{bottom:98.267598pt;}
.y6d{bottom:98.458130pt;}
.y105{bottom:102.047200pt;}
.y178{bottom:107.820536pt;}
.y15{bottom:110.488129pt;}
.y6c{bottom:111.791463pt;}
.y104{bottom:115.380533pt;}
.y26{bottom:116.134267pt;}
.y177{bottom:121.153870pt;}
.y6b{bottom:125.124797pt;}
.yce{bottom:126.888000pt;}
.y14{bottom:127.154795pt;}
.y103{bottom:128.713867pt;}
.y150{bottom:129.296804pt;}
.y25{bottom:131.600932pt;}
.y176{bottom:134.487203pt;}
.y6a{bottom:138.458130pt;}
.y102{bottom:142.047200pt;}
.ycc{bottom:142.577332pt;}
.y14f{bottom:142.630137pt;}
.y13{bottom:143.821462pt;}
.y175{bottom:147.820536pt;}
.y24{bottom:149.467600pt;}
.y101{bottom:155.380533pt;}
.y14e{bottom:155.963470pt;}
.y12{bottom:160.488129pt;}
.y174{bottom:161.153870pt;}
.y23{bottom:164.934265pt;}
.y100{bottom:168.713867pt;}
.yf4{bottom:168.807729pt;}
.y14d{bottom:169.296804pt;}
.yc5{bottom:173.274658pt;}
.y173{bottom:174.487203pt;}
.yca{bottom:176.861471pt;}
.y11{bottom:177.154805pt;}
.yff{bottom:182.047200pt;}
.yf3{bottom:182.141073pt;}
.y14c{bottom:182.630127pt;}
.y22{bottom:182.800924pt;}
.yc6{bottom:185.972127pt;}
.ycb{bottom:186.381205pt;}
.y172{bottom:187.820536pt;}
.yc8{bottom:193.477458pt;}
.y10{bottom:193.821472pt;}
.yf2{bottom:195.474406pt;}
.y14b{bottom:195.963460pt;}
.y8e{bottom:196.007731pt;}
.yfe{bottom:197.464396pt;}
.y171{bottom:201.153870pt;}
.y21{bottom:204.934265pt;}
.yf1{bottom:208.807739pt;}
.y14a{bottom:209.296794pt;}
.y8d{bottom:209.341064pt;}
.yf{bottom:210.488139pt;}
.yfd{bottom:212.881999pt;}
.y20{bottom:218.267598pt;}
.yf0{bottom:222.141073pt;}
.y149{bottom:222.630127pt;}
.y8c{bottom:222.674398pt;}
.ye{bottom:227.154805pt;}
.yfc{bottom:228.299600pt;}
.y170{bottom:231.153870pt;}
.yef{bottom:235.474406pt;}
.y148{bottom:235.963460pt;}
.y8b{bottom:236.007731pt;}
.y1f{bottom:238.267598pt;}
.yfb{bottom:243.717204pt;}
.yd{bottom:243.821472pt;}
.yee{bottom:248.807739pt;}
.y147{bottom:249.296794pt;}
.y8a{bottom:249.341064pt;}
.y1e{bottom:251.600932pt;}
.y10c{bottom:254.913208pt;}
.yfa{bottom:259.134806pt;}
.yc{bottom:260.488139pt;}
.yed{bottom:262.141073pt;}
.y146{bottom:262.630127pt;}
.y89{bottom:262.674398pt;}
.y10b{bottom:268.246541pt;}
.y1d{bottom:271.600932pt;}
.yf9{bottom:274.552409pt;}
.yec{bottom:275.474406pt;}
.y145{bottom:275.963460pt;}
.y88{bottom:276.007731pt;}
.yb{bottom:277.154805pt;}
.y16f{bottom:281.153870pt;}
.y10a{bottom:281.579875pt;}
.y1c{bottom:284.934265pt;}
.yf5{bottom:286.214010pt;}
.yeb{bottom:288.807739pt;}
.y144{bottom:289.296794pt;}
.y87{bottom:289.341064pt;}
.yf8{bottom:290.630941pt;}
.ya{bottom:293.821472pt;}
.y16e{bottom:294.487203pt;}
.y109{bottom:294.913208pt;}
.y72{bottom:296.715210pt;}
.y17a{bottom:299.963460pt;}
.y85{bottom:300.337341pt;}
.y143{bottom:302.630127pt;}
.y84{bottom:302.674398pt;}
.y1b{bottom:304.934265pt;}
.yf7{bottom:306.047994pt;}
.y16d{bottom:307.820536pt;}
.y108{bottom:308.246541pt;}
.y71{bottom:310.048543pt;}
.y9{bottom:310.488139pt;}
.y179{bottom:313.296794pt;}
.y142{bottom:315.963460pt;}
.y83{bottom:316.007731pt;}
.y1a{bottom:318.267598pt;}
.yf6{bottom:319.381327pt;}
.y16c{bottom:321.153870pt;}
.y107{bottom:321.579875pt;}
.y70{bottom:323.381877pt;}
.y8{bottom:327.154805pt;}
.y141{bottom:329.296794pt;}
.y82{bottom:329.341064pt;}
.y16b{bottom:334.487203pt;}
.y106{bottom:334.913208pt;}
.y6f{bottom:336.715210pt;}
.y19{bottom:338.267598pt;}
.y140{bottom:342.630127pt;}
.y81{bottom:342.674398pt;}
.y7{bottom:343.821452pt;}
.y16a{bottom:347.820516pt;}
.y18{bottom:351.600952pt;}
.y8f{bottom:353.413981pt;}
.y13f{bottom:355.963460pt;}
.y80{bottom:356.007731pt;}
.y9d{bottom:357.021322pt;}
.y6{bottom:360.488118pt;}
.y169{bottom:361.153849pt;}
.y13e{bottom:369.296794pt;}
.y168{bottom:374.487183pt;}
.y5{bottom:377.154785pt;}
.y17{bottom:378.934285pt;}
.y6e{bottom:379.385742pt;}
.y13d{bottom:382.630127pt;}
.y167{bottom:387.820516pt;}
.y9c{bottom:390.354655pt;}
.y16{bottom:392.267619pt;}
.ya9{bottom:393.554647pt;}
.y4{bottom:393.821452pt;}
.y13c{bottom:395.963460pt;}
.y166{bottom:401.153849pt;}
.y13b{bottom:409.296794pt;}
.y5f{bottom:410.488118pt;}
.y165{bottom:414.487183pt;}
.y13a{bottom:422.630127pt;}
.y9b{bottom:426.887980pt;}
.y3{bottom:427.154785pt;}
.y164{bottom:427.820516pt;}
.y139{bottom:435.963460pt;}
.y9a{bottom:440.354655pt;}
.y163{bottom:441.153849pt;}
.ya8{bottom:442.941325pt;}
.y5e{bottom:443.821452pt;}
.y138{bottom:449.296794pt;}
.y99{bottom:457.021322pt;}
.ya7{bottom:460.221313pt;}
.y5d{bottom:460.488118pt;}
.y137{bottom:462.630127pt;}
.y162{bottom:470.487183pt;}
.y98{bottom:473.687988pt;}
.y36{bottom:473.877848pt;}
.y69{bottom:473.917318pt;}
.y136{bottom:475.963460pt;}
.ya4{bottom:476.274658pt;}
.y67{bottom:476.887980pt;}
.y5c{bottom:477.154785pt;}
.ybf{bottom:480.593343pt;}
.y161{bottom:483.820516pt;}
.y135{bottom:489.296794pt;}
.y66{bottom:490.354655pt;}
.yc4{bottom:490.900146pt;}
.yc1{bottom:491.075195pt;}
.ya6{bottom:492.577352pt;}
.y5b{bottom:493.821452pt;}
.y134{bottom:502.630127pt;}
.y35{bottom:506.544515pt;}
.y65{bottom:507.021322pt;}
.y5a{bottom:510.488118pt;}
.y160{bottom:513.153849pt;}
.y133{bottom:515.963460pt;}
.y34{bottom:523.211182pt;}
.y64{bottom:523.687988pt;}
.y15f{bottom:526.487183pt;}
.y97{bottom:526.887980pt;}
.y59{bottom:527.154785pt;}
.yb9{bottom:528.874674pt;}
.y132{bottom:529.296794pt;}
.ybe{bottom:539.181193pt;}
.ybb{bottom:539.356120pt;}
.y15e{bottom:539.820516pt;}
.y33{bottom:539.877848pt;}
.y60{bottom:540.354655pt;}
.y62{bottom:540.583984pt;}
.y131{bottom:542.630127pt;}
.y58{bottom:543.821452pt;}
.y130{bottom:555.963460pt;}
.y32{bottom:556.544515pt;}
.y57{bottom:560.488118pt;}
.y15d{bottom:569.153849pt;}
.y12f{bottom:569.296794pt;}
.y31{bottom:573.211182pt;}
.y56{bottom:577.154785pt;}
.y12e{bottom:582.630127pt;}
.y30{bottom:589.877848pt;}
.y7e{bottom:591.095988pt;}
.y95{bottom:592.577352pt;}
.y55{bottom:593.821452pt;}
.y12d{bottom:595.963460pt;}
.y15c{bottom:602.488118pt;}
.y2f{bottom:606.544515pt;}
.y12c{bottom:609.296794pt;}
.y54{bottom:610.488118pt;}
.yea{bottom:614.740804pt;}
.y15b{bottom:615.821452pt;}
.y73{bottom:618.922933pt;}
.y12b{bottom:622.630127pt;}
.y10d{bottom:622.946248pt;}
.y2e{bottom:623.211344pt;}
.y53{bottom:627.154785pt;}
.y15a{bottom:629.154785pt;}
.ye9{bottom:630.158407pt;}
.y12a{bottom:635.963460pt;}
.yb0{bottom:639.089315pt;}
.y2d{bottom:639.878011pt;}
.y159{bottom:642.488118pt;}
.y52{bottom:643.821452pt;}
.yae{bottom:645.186686pt;}
.yad{bottom:645.453451pt;}
.ye8{bottom:645.576009pt;}
.y7c{bottom:646.621338pt;}
.y7b{bottom:648.013468pt;}
.y129{bottom:649.296794pt;}
.y110{bottom:651.361450pt;}
.yb2{bottom:651.786784pt;}
.yb8{bottom:652.621338pt;}
.y2c{bottom:656.544678pt;}
.yac{bottom:658.786784pt;}
.yb4{bottom:659.292114pt;}
.y79{bottom:659.954671pt;}
.y51{bottom:660.488118pt;}
.ye7{bottom:660.993612pt;}
.y78{bottom:661.346802pt;}
.y128{bottom:662.630127pt;}
.yb6{bottom:663.277466pt;}
.y10f{bottom:664.694784pt;}
.y158{bottom:671.821452pt;}
.yab{bottom:672.120117pt;}
.y2b{bottom:673.211344pt;}
.y76{bottom:674.413330pt;}
.y75{bottom:674.680135pt;}
.y127{bottom:675.963460pt;}
.ye6{bottom:676.411214pt;}
.y50{bottom:677.154785pt;}
.y10e{bottom:678.028117pt;}
.y157{bottom:685.154785pt;}
.yaa{bottom:685.453451pt;}
.y74{bottom:688.013428pt;}
.y126{bottom:689.296794pt;}
.y2a{bottom:689.877848pt;}
.ye5{bottom:691.828776pt;}
.y4f{bottom:693.821452pt;}
.y125{bottom:702.630127pt;}
.y29{bottom:706.544515pt;}
.ye4{bottom:707.246419pt;}
.y4e{bottom:710.488118pt;}
.y156{bottom:714.488118pt;}
.y124{bottom:715.963460pt;}
.y94{bottom:716.601562pt;}
.ye3{bottom:722.663981pt;}
.y28{bottom:723.211182pt;}
.y4d{bottom:727.154785pt;}
.y155{bottom:727.821452pt;}
.y123{bottom:729.296794pt;}
.y93{bottom:729.934896pt;}
.ye2{bottom:738.081624pt;}
.y154{bottom:741.154785pt;}
.y122{bottom:742.630127pt;}
.y92{bottom:743.268229pt;}
.y4c{bottom:743.821452pt;}
.ye1{bottom:753.499186pt;}
.y153{bottom:754.488118pt;}
.y121{bottom:755.963460pt;}
.y91{bottom:756.601562pt;}
.y4b{bottom:760.488118pt;}
.y38{bottom:763.447428pt;}
.y152{bottom:767.821452pt;}
.y120{bottom:769.296794pt;}
.ye0{bottom:769.577718pt;}
.y90{bottom:769.934896pt;}
.y37{bottom:776.780762pt;}
.y4a{bottom:777.154785pt;}
.y151{bottom:781.154785pt;}
.y11f{bottom:782.630127pt;}
.ydf{bottom:784.994954pt;}
.y49{bottom:793.821452pt;}
.y11e{bottom:795.963460pt;}
.yde{bottom:798.328288pt;}
.y11d{bottom:809.296794pt;}
.y48{bottom:810.488118pt;}
.y3c{bottom:815.517090pt;}
.y11c{bottom:822.630127pt;}
.y47{bottom:827.154785pt;}
.ydd{bottom:831.709310pt;}
.y3b{bottom:832.183757pt;}
.yd9{bottom:833.793620pt;}
.y11b{bottom:835.963460pt;}
.y46{bottom:843.821452pt;}
.ydc{bottom:845.042643pt;}
.yd8{bottom:847.126953pt;}
.y11a{bottom:849.296794pt;}
.ydb{bottom:858.375977pt;}
.yd7{bottom:860.460286pt;}
.y45{bottom:860.488118pt;}
.y119{bottom:862.630127pt;}
.y3a{bottom:871.149577pt;}
.yda{bottom:873.793050pt;}
.yd6{bottom:873.793620pt;}
.y118{bottom:875.963460pt;}
.y44{bottom:877.154785pt;}
.yd5{bottom:889.210775pt;}
.y117{bottom:889.296794pt;}
.y43{bottom:893.821452pt;}
.y39{bottom:895.149577pt;}
.ya3{bottom:901.988118pt;}
.y116{bottom:902.630127pt;}
.yd4{bottom:904.628418pt;}
.y42{bottom:910.488118pt;}
.ya2{bottom:915.321452pt;}
.y115{bottom:915.963460pt;}
.yd3{bottom:920.045898pt;}
.y41{bottom:927.154785pt;}
.ya1{bottom:928.654785pt;}
.y114{bottom:929.296794pt;}
.yd2{bottom:936.124512pt;}
.ya0{bottom:941.988118pt;}
.y113{bottom:942.630127pt;}
.y40{bottom:943.821452pt;}
.yd1{bottom:951.541585pt;}
.y9f{bottom:955.321452pt;}
.y112{bottom:955.963460pt;}
.y3f{bottom:960.488118pt;}
.yd0{bottom:964.874919pt;}
.y7d{bottom:966.061035pt;}
.y9e{bottom:968.654785pt;}
.y111{bottom:969.296794pt;}
.y2{bottom:986.261230pt;}
.y3e{bottom:1000.633870pt;}
.y1{bottom:1000.917318pt;}
.h24{height:0.000000pt;}
.h14{height:8.373333pt;}
.h16{height:9.640000pt;}
.h10{height:9.746667pt;}
.h1b{height:9.748000pt;}
.h21{height:9.853333pt;}
.h1a{height:10.133333pt;}
.h18{height:10.640000pt;}
.h1e{height:10.653333pt;}
.h1d{height:11.372000pt;}
.h20{height:11.373333pt;}
.h17{height:12.400000pt;}
.hf{height:12.840000pt;}
.hd{height:13.946667pt;}
.h1c{height:13.948000pt;}
.h7{height:26.465103pt;}
.h25{height:27.895200pt;}
.h27{height:28.946665pt;}
.h19{height:31.343630pt;}
.h15{height:32.337232pt;}
.h28{height:34.546666pt;}
.h23{height:35.398666pt;}
.h22{height:36.856532pt;}
.h6{height:37.807292pt;}
.he{height:39.850399pt;}
.h1f{height:40.746026pt;}
.h29{height:40.746067pt;}
.h3{height:42.930667pt;}
.h2{height:43.157333pt;}
.h12{height:43.656000pt;}
.h5{height:44.479167pt;}
.h2a{height:44.834667pt;}
.h26{height:47.175799pt;}
.h9{height:51.360000pt;}
.h8{height:52.746667pt;}
.h13{height:53.375000pt;}
.hb{height:57.285333pt;}
.h11{height:57.493333pt;}
.h4{height:63.296000pt;}
.hc{height:64.000000pt;}
.ha{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.wb{width:9.666667pt;}
.wa{width:11.066667pt;}
.w15{width:12.253333pt;}
.w13{width:13.693333pt;}
.w9{width:14.280000pt;}
.wc{width:16.973333pt;}
.w12{width:23.120000pt;}
.w14{width:24.346667pt;}
.w7{width:27.705332pt;}
.w8{width:35.053333pt;}
.w3{width:36.893333pt;}
.wd{width:36.894666pt;}
.w6{width:40.173332pt;}
.w2{width:59.986669pt;}
.w5{width:71.921336pt;}
.we{width:81.240000pt;}
.w4{width:89.666667pt;}
.w10{width:91.559998pt;}
.w18{width:117.213338pt;}
.wf{width:121.361338pt;}
.w17{width:136.333333pt;}
.w11{width:165.693329pt;}
.w19{width:202.519999pt;}
.w16{width:220.574666pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4e{left:54.174138pt;}
.x4b{left:56.898137pt;}
.x3d{left:63.312948pt;}
.x1{left:68.031469pt;}
.x46{left:76.084936pt;}
.x49{left:77.764806pt;}
.x4{left:80.864532pt;}
.x8{left:83.149602pt;}
.x5{left:86.929067pt;}
.x47{left:87.960938pt;}
.x29{left:90.947998pt;}
.x48{left:96.263474pt;}
.x54{left:99.743998pt;}
.x4d{left:106.590129pt;}
.x26{left:108.204803pt;}
.x3b{left:109.378662pt;}
.x50{left:115.366135pt;}
.x3f{left:116.570272pt;}
.x36{left:122.322937pt;}
.x41{left:128.098267pt;}
.x37{left:130.328003pt;}
.x51{left:132.352809pt;}
.x4f{left:136.227467pt;}
.x2d{left:138.528005pt;}
.x2b{left:140.570669pt;}
.x31{left:148.002665pt;}
.x43{left:151.348958pt;}
.x38{left:154.674662pt;}
.x2a{left:172.188538pt;}
.x22{left:174.261332pt;}
.x2e{left:178.701599pt;}
.x4c{left:185.244792pt;}
.x23{left:191.234924pt;}
.x20{left:201.905333pt;}
.x4a{left:204.364807pt;}
.x21{left:211.573201pt;}
.x2f{left:222.705343pt;}
.x39{left:235.149333pt;}
.x1a{left:239.350667pt;}
.x18{left:241.266663pt;}
.x3a{left:248.843200pt;}
.x1b{left:253.630391pt;}
.x2c{left:261.930806pt;}
.x1c{left:269.042664pt;}
.x52{left:270.551473pt;}
.x19{left:276.320658pt;}
.x1d{left:283.322408pt;}
.x27{left:304.271993pt;}
.x34{left:305.900004pt;}
.x30{left:314.265340pt;}
.x35{left:322.873596pt;}
.x24{left:344.177327pt;}
.x25{left:381.071737pt;}
.x28{left:385.511882pt;}
.x2{left:408.755859pt;}
.x9{left:416.242391pt;}
.x14{left:422.401326pt;}
.x3{left:423.873983pt;}
.xa{left:428.118408pt;}
.x57{left:430.866130pt;}
.xc{left:441.130656pt;}
.x12{left:449.592000pt;}
.x3c{left:455.884928pt;}
.x15{left:462.574259pt;}
.x55{left:470.772420pt;}
.x56{left:475.168009pt;}
.x11{left:480.108927pt;}
.x3e{left:485.522257pt;}
.xd{left:501.117716pt;}
.x40{left:529.924927pt;}
.x13{left:539.258952pt;}
.x42{left:541.452922pt;}
.x1e{left:547.229329pt;}
.x1f{left:558.296387pt;}
.x44{left:580.938273pt;}
.x10{left:590.084269pt;}
.x45{left:592.787598pt;}
.x32{left:605.421346pt;}
.x7{left:615.370809pt;}
.x53{left:620.175456pt;}
.xe{left:621.791992pt;}
.xb{left:625.558675pt;}
.x33{left:628.542114pt;}
.xf{left:658.685343pt;}
.x16{left:660.274658pt;}
.x6{left:671.696655pt;}
.x17{left:687.980957pt;}
}




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