
    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_451052ce6bf02cdfb30f2e48.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c0a73f74ca85db1dca2b1794.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1e9634540b1129ec4944f12a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.698000;font-style:normal;font-weight: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_d336c856f09dd0ddca3260f4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.909000;font-style:normal;font-weight: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_094d550bc28c777c956ae932.woff')format("woff");}.ff5{font-family:ff5;line-height:0.898000;font-style:normal;font-weight: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_905a96182952e26b9811fae8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.957000;font-style:normal;font-weight: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_c9b23c6d00d37fc916f5d16d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.906000;font-style:normal;font-weight: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_e8c8b37a33b0269912389687.woff')format("woff");}.ff8{font-family:ff8;line-height:0.474000;font-style:normal;font-weight: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_698bf3305ad020644e809917.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893000;font-style:normal;font-weight: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_d1af5d95d7487fe373b93845.woff')format("woff");}.ffa{font-family:ffa;line-height:0.839000;font-style:normal;font-weight: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_1d715959d9bf5f8a719452f8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0cc95338b094c24595896885.woff')format("woff");}.ffc{font-family:ffc;line-height:1.464000;font-style:normal;font-weight: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_4702c5f532d330cf6d0f9735.woff')format("woff");}.ffd{font-family:ffd;line-height:0.844000;font-style:normal;font-weight: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_25af611589bd2f35ae1ad57e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.764000;font-style:normal;font-weight: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_e7b8ce3534570e6407723f04.woff')format("woff");}.fff{font-family:fff;line-height:0.959000;font-style:normal;font-weight: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_cd22972a652d04a3109ffe77.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_fa3537e84b8489d4eea7d00b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.675781;font-style:normal;font-weight: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_96342384ed1624692d54c9d8.woff')format("woff");}.ff12{font-family:ff12;line-height:1.045898;font-style:normal;font-weight: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_829ba5298550e22f5f9fab33.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_42eb463913e3ac0bfdfd9a29.woff')format("woff");}.ff14{font-family:ff14;line-height:0.730957;font-style:normal;font-weight: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_a2a9492d223add65f3ff6b25.woff')format("woff");}.ff15{font-family:ff15;line-height:0.935059;font-style:normal;font-weight: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_f2e334ac3463306baa36de74.woff')format("woff");}.ff16{font-family:ff16;line-height:1.382000;font-style:normal;font-weight: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_d53eb5bdfe60614c22d35ca0.woff')format("woff");}.ff17{font-family:ff17;line-height:0.949707;font-style:normal;font-weight: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_60a3312cdfda8571c42e4a7e.woff')format("woff");}.ff18{font-family:ff18;line-height:0.730957;font-style:normal;font-weight: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_c9a080b162a8f1c9869938b9.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_fa3537e84b8489d4eea7d00b.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.675781;font-style:normal;font-weight: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_d39fb57421a4aef9b498230c.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.938477;font-style:normal;font-weight: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_071ac6cf72b5fee05819f89d.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.740723;font-style:normal;font-weight: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_42eb463913e3ac0bfdfd9a29.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.730957;font-style:normal;font-weight: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_914093b9421c3c4d9353fc51.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_fa3537e84b8489d4eea7d00b.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.675781;font-style:normal;font-weight: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_873693a91085a5b23d7b2c81.woff')format("woff");}.ff20{font-family:ff20;line-height:0.938477;font-style:normal;font-weight: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_0ea30370601c9077cac986d8.woff')format("woff");}.ff21{font-family:ff21;line-height:0.929688;font-style:normal;font-weight: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_2523dd5fcf4b60f070f514e1.woff')format("woff");}.ff22{font-family:ff22;line-height:0.882324;font-style:normal;font-weight: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_9fbd0046ea89e4ed6c457258.woff')format("woff");}.ff23{font-family:ff23;line-height:0.675000;font-style:normal;font-weight: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_13b24c739a9be10a249a74d8.woff')format("woff");}.ff24{font-family:ff24;line-height:0.676000;font-style:normal;font-weight: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_c022ca47d25d09ca1ad4731f.woff')format("woff");}.ff25{font-family:ff25;line-height:0.730957;font-style:normal;font-weight: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_914093b9421c3c4d9353fc51.woff')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_fa3537e84b8489d4eea7d00b.woff')format("woff");}.ff27{font-family:ff27;line-height:0.675781;font-style:normal;font-weight: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_b8c597f417088427af73cef6.woff')format("woff");}.ff28{font-family:ff28;line-height:0.730957;font-style:normal;font-weight: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_914093b9421c3c4d9353fc51.woff')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_fa3537e84b8489d4eea7d00b.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.675781;font-style:normal;font-weight: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_b966ad5cb1971b05aacd3f6e.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.938477;font-style:normal;font-weight: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_c835a8fe8aa1f5a1dc36519f.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.864258;font-style:normal;font-weight: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_187fa5a057ebc8476b49014c.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.683105;font-style:normal;font-weight: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_69875b5a68abf7f198cd1eda.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_383e22bdff28939614dde658.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.929199;font-style:normal;font-weight: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_17baa932699d5c64cd0f67ac.woff')format("woff");}.ff30{font-family:ff30;line-height:0.730957;font-style:normal;font-weight: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_914093b9421c3c4d9353fc51.woff')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_fa3537e84b8489d4eea7d00b.woff')format("woff");}.ff32{font-family:ff32;line-height:0.675781;font-style:normal;font-weight: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_f6d989e1ec17609b227934d3.woff')format("woff");}.ff33{font-family:ff33;line-height:0.730957;font-style:normal;font-weight: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_1d59732ac4905a4e88022f84.woff')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_fa3537e84b8489d4eea7d00b.woff')format("woff");}.ff35{font-family:ff35;line-height:0.675781;font-style:normal;font-weight: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_ef1badb9880d72b55218630d.woff')format("woff");}.ff36{font-family:ff36;line-height:0.938477;font-style:normal;font-weight: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_df36655443ef4dafe70a75ee.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_8ff8ed5b5c12edca4aa660ea.woff')format("woff");}.ff38{font-family:ff38;line-height:0.938477;font-style:normal;font-weight: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_c964f348becb58aeab5e818f.woff')format("woff");}.ff39{font-family:ff39;line-height:0.731445;font-style:normal;font-weight: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_1d59732ac4905a4e88022f84.woff')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_fa3537e84b8489d4eea7d00b.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.675781;font-style:normal;font-weight: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_819e7bcd04d5d47217a6750d.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.731445;font-style:normal;font-weight: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_1d59732ac4905a4e88022f84.woff')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_fa3537e84b8489d4eea7d00b.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.251738,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251738,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251738,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.004268,-0.249964,0.249964,0.004268,0,0);-ms-transform:matrix(0.004268,-0.249964,0.249964,0.004268,0,0);-webkit-transform:matrix(0.004268,-0.249964,0.249964,0.004268,0,0);}
.m9{transform:matrix(0.184672,-0.168512,0.168512,0.184672,0,0);-ms-transform:matrix(0.184672,-0.168512,0.168512,0.184672,0,0);-webkit-transform:matrix(0.184672,-0.168512,0.168512,0.184672,0,0);}
.m8{transform:matrix(0.248276,0.029311,-0.029311,0.248276,0,0);-ms-transform:matrix(0.248276,0.029311,-0.029311,0.248276,0,0);-webkit-transform:matrix(0.248276,0.029311,-0.029311,0.248276,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254297,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281326,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.283216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283216,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);}
.v6{vertical-align:-26.696520px;}
.v2{vertical-align:-21.702000px;}
.v9{vertical-align:-11.364313px;}
.v4{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:9.457016px;}
.v7{vertical-align:11.364313px;}
.v3{vertical-align:21.702000px;}
.v1{vertical-align:23.760000px;}
.va{vertical-align:42.033721px;}
.v5{vertical-align:49.272000px;}
.ls3d{letter-spacing:-24.870000px;}
.ls39{letter-spacing:-24.864000px;}
.ls40{letter-spacing:-24.810000px;}
.ls37{letter-spacing:-23.196000px;}
.ls3a{letter-spacing:-18.294000px;}
.ls2e{letter-spacing:-10.224000px;}
.ls34{letter-spacing:-7.920000px;}
.ls35{letter-spacing:-7.200000px;}
.ls33{letter-spacing:-7.068000px;}
.ls3b{letter-spacing:-6.576000px;}
.ls30{letter-spacing:-6.348000px;}
.ls31{letter-spacing:-5.364000px;}
.ls2f{letter-spacing:-5.172000px;}
.ls32{letter-spacing:-4.842000px;}
.ls3c{letter-spacing:-4.722000px;}
.ls36{letter-spacing:-4.362000px;}
.ls0{letter-spacing:0.000000px;}
.ls77{letter-spacing:0.000017px;}
.ls25{letter-spacing:0.000036px;}
.ls56{letter-spacing:0.000098px;}
.lse{letter-spacing:0.000126px;}
.ls1d{letter-spacing:0.000148px;}
.ls1c{letter-spacing:0.000246px;}
.ls12{letter-spacing:0.000252px;}
.ls11{letter-spacing:0.000456px;}
.ls22{letter-spacing:0.000468px;}
.ls54{letter-spacing:0.000521px;}
.ls6b{letter-spacing:0.000583px;}
.ls27{letter-spacing:0.000604px;}
.ls1a{letter-spacing:0.000678px;}
.ls17{letter-spacing:0.000684px;}
.ls2b{letter-spacing:0.000888px;}
.ls61{letter-spacing:0.001046px;}
.ls13{letter-spacing:0.001110px;}
.ls5a{letter-spacing:0.001261px;}
.ls1e{letter-spacing:0.001320px;}
.ls14{letter-spacing:0.001564px;}
.ls44{letter-spacing:0.001598px;}
.ls4a{letter-spacing:0.001618px;}
.ls2c{letter-spacing:0.001746px;}
.ls29{letter-spacing:0.001752px;}
.ls16{letter-spacing:0.001962px;}
.ls10{letter-spacing:0.002108px;}
.ls7{letter-spacing:0.002124px;}
.ls42{letter-spacing:0.002158px;}
.ls47{letter-spacing:0.002161px;}
.ls1b{letter-spacing:0.002394px;}
.ls24{letter-spacing:0.002604px;}
.ls18{letter-spacing:0.002610px;}
.ls2a{letter-spacing:0.002616px;}
.ls60{letter-spacing:0.002700px;}
.ls3{letter-spacing:0.002806px;}
.ls19{letter-spacing:0.003234px;}
.ls6f{letter-spacing:0.003239px;}
.ls8e{letter-spacing:0.003244px;}
.ls2{letter-spacing:0.003336px;}
.ls20{letter-spacing:0.003438px;}
.ls81{letter-spacing:0.003586px;}
.ls82{letter-spacing:0.003634px;}
.ls23{letter-spacing:0.003678px;}
.ls4{letter-spacing:0.003882px;}
.ls21{letter-spacing:0.003894px;}
.ls5d{letter-spacing:0.003979px;}
.ls85{letter-spacing:0.004200px;}
.ls2d{letter-spacing:0.004223px;}
.ls28{letter-spacing:0.004287px;}
.ls5c{letter-spacing:0.004317px;}
.ls51{letter-spacing:0.004350px;}
.ls87{letter-spacing:0.004729px;}
.ls92{letter-spacing:0.004800px;}
.ls6{letter-spacing:0.004860px;}
.ls15{letter-spacing:0.005718px;}
.ls69{letter-spacing:0.005830px;}
.ls9{letter-spacing:0.006126px;}
.ls1f{letter-spacing:0.027894px;}
.ls26{letter-spacing:0.057000px;}
.lsd{letter-spacing:0.057576px;}
.lsc{letter-spacing:0.059394px;}
.ls8{letter-spacing:0.063576px;}
.ls1{letter-spacing:0.064182px;}
.lsb{letter-spacing:0.065394px;}
.lsa{letter-spacing:0.067818px;}
.ls5{letter-spacing:0.070182px;}
.ls4e{letter-spacing:2.987162px;}
.ls55{letter-spacing:2.987700px;}
.lsf{letter-spacing:2.988000px;}
.ls41{letter-spacing:2.988098px;}
.ls50{letter-spacing:2.988600px;}
.ls78{letter-spacing:2.990041px;}
.ls72{letter-spacing:2.991787px;}
.ls57{letter-spacing:2.993700px;}
.ls7d{letter-spacing:3.287675px;}
.ls64{letter-spacing:3.587675px;}
.ls7c{letter-spacing:4.483151px;}
.ls3f{letter-spacing:4.896000px;}
.ls38{letter-spacing:4.962000px;}
.ls3e{letter-spacing:5.022000px;}
.ls45{letter-spacing:10.340700px;}
.ls68{letter-spacing:10.912894px;}
.ls52{letter-spacing:11.906700px;}
.ls53{letter-spacing:11.908874px;}
.ls5b{letter-spacing:13.282718px;}
.ls4c{letter-spacing:13.960874px;}
.ls93{letter-spacing:14.110718px;}
.ls4f{letter-spacing:14.440718px;}
.ls90{letter-spacing:14.548874px;}
.ls8b{letter-spacing:14.940583px;}
.ls84{letter-spacing:14.943634px;}
.ls6a{letter-spacing:14.944718px;}
.ls88{letter-spacing:14.946583px;}
.ls6d{letter-spacing:14.947261px;}
.ls4b{letter-spacing:15.470161px;}
.ls8f{letter-spacing:16.052161px;}
.ls6c{letter-spacing:16.600718px;}
.ls6e{letter-spacing:16.606718px;}
.ls8a{letter-spacing:16.841700px;}
.ls58{letter-spacing:17.396700px;}
.ls59{letter-spacing:17.398874px;}
.ls83{letter-spacing:17.935151px;}
.ls89{letter-spacing:18.178874px;}
.ls67{letter-spacing:18.184874px;}
.ls73{letter-spacing:18.606497px;}
.ls91{letter-spacing:18.928874px;}
.ls86{letter-spacing:19.053979px;}
.ls71{letter-spacing:19.349700px;}
.ls70{letter-spacing:19.385700px;}
.ls7e{letter-spacing:19.773586px;}
.ls66{letter-spacing:20.052098px;}
.ls63{letter-spacing:20.223979px;}
.ls46{letter-spacing:20.697239px;}
.ls5e{letter-spacing:20.876700px;}
.ls5f{letter-spacing:20.878874px;}
.ls4d{letter-spacing:21.173162px;}
.ls74{letter-spacing:21.267787px;}
.ls79{letter-spacing:21.272100px;}
.ls62{letter-spacing:21.327979px;}
.ls65{letter-spacing:22.403675px;}
.ls8c{letter-spacing:22.877162px;}
.ls8d{letter-spacing:22.892161px;}
.ls75{letter-spacing:24.947108px;}
.ls49{letter-spacing:25.100161px;}
.ls48{letter-spacing:25.269239px;}
.ls43{letter-spacing:25.542098px;}
.ls7b{letter-spacing:25.548322px;}
.ls76{letter-spacing:27.036322px;}
.ls7f{letter-spacing:27.042322px;}
.ls7a{letter-spacing:28.532041px;}
.ls80{letter-spacing:28.538041px;}
.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;}
}
.wsd2{word-spacing:-62.981400px;}
.ws66{word-spacing:-48.000000px;}
.ws1{word-spacing:-24.101616px;}
.wsb{word-spacing:-18.327288px;}
.ws6e{word-spacing:-16.001591px;}
.ws6f{word-spacing:-13.334659px;}
.ws89{word-spacing:-12.369388px;}
.ws6d{word-spacing:-12.001193px;}
.wsb2{word-spacing:-10.406920px;}
.wsb4{word-spacing:-7.364287px;}
.ws13{word-spacing:-3.207275px;}
.ws38{word-spacing:-1.854000px;}
.ws39{word-spacing:-1.794000px;}
.ws24{word-spacing:-0.720000px;}
.ws25{word-spacing:-0.660000px;}
.ws33{word-spacing:-0.288000px;}
.ws14{word-spacing:-0.065454px;}
.ws35{word-spacing:-0.060000px;}
.ws16{word-spacing:-0.059778px;}
.ws5e{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.056784px;}
.ws15{word-spacing:-0.047820px;}
.ws17{word-spacing:-0.041844px;}
.ws6a{word-spacing:-0.041843px;}
.wsb3{word-spacing:-0.041628px;}
.wsb1{word-spacing:-0.026490px;}
.ws1b{word-spacing:0.000000px;}
.ws34{word-spacing:0.060000px;}
.ws9{word-spacing:0.065455px;}
.ws29{word-spacing:0.294000px;}
.ws42{word-spacing:0.540000px;}
.ws6{word-spacing:0.589091px;}
.ws40{word-spacing:0.600000px;}
.ws41{word-spacing:0.660000px;}
.ws43{word-spacing:0.720000px;}
.ws44{word-spacing:0.780000px;}
.ws2a{word-spacing:1.014000px;}
.ws2b{word-spacing:1.074000px;}
.ws3a{word-spacing:1.134000px;}
.ws3b{word-spacing:1.194000px;}
.ws22{word-spacing:1.314000px;}
.ws23{word-spacing:1.374000px;}
.ws12{word-spacing:1.374547px;}
.ws1c{word-spacing:1.440000px;}
.ws1e{word-spacing:1.506000px;}
.ws3d{word-spacing:1.614000px;}
.ws21{word-spacing:1.638000px;}
.ws3c{word-spacing:1.674000px;}
.ws2f{word-spacing:1.734000px;}
.ws20{word-spacing:1.770000px;}
.ws2e{word-spacing:1.794000px;}
.ws30{word-spacing:1.854000px;}
.ws4a{word-spacing:1.914000px;}
.ws48{word-spacing:1.974000px;}
.ws49{word-spacing:2.034000px;}
.ws27{word-spacing:2.094000px;}
.ws26{word-spacing:2.154000px;}
.ws28{word-spacing:2.214000px;}
.ws1a{word-spacing:2.274000px;}
.ws19{word-spacing:2.376000px;}
.ws4d{word-spacing:2.838000px;}
.ws4c{word-spacing:2.898000px;}
.ws46{word-spacing:3.288000px;}
.ws45{word-spacing:3.348000px;}
.ws47{word-spacing:3.408000px;}
.ws2{word-spacing:3.469094px;}
.ws11{word-spacing:3.959551px;}
.wse{word-spacing:4.450913px;}
.ws36{word-spacing:4.482000px;}
.ws37{word-spacing:4.542000px;}
.ws3e{word-spacing:4.782000px;}
.ws3f{word-spacing:4.842000px;}
.wsd{word-spacing:5.694550px;}
.ws2c{word-spacing:5.736000px;}
.ws2d{word-spacing:5.796000px;}
.wsa{word-spacing:6.283642px;}
.ws10{word-spacing:6.610714px;}
.wsc{word-spacing:7.134551px;}
.ws0{word-spacing:8.177334px;}
.ws1d{word-spacing:8.496000px;}
.ws1f{word-spacing:8.502000px;}
.ws31{word-spacing:9.084000px;}
.ws32{word-spacing:9.144000px;}
.ws5{word-spacing:9.621826px;}
.wsf{word-spacing:11.520010px;}
.wse8{word-spacing:11.895344px;}
.wse7{word-spacing:11.939868px;}
.wse9{word-spacing:11.955120px;}
.wsf1{word-spacing:12.536059px;}
.wsf2{word-spacing:12.552876px;}
.wseb{word-spacing:12.791978px;}
.wsea{word-spacing:12.822126px;}
.wsec{word-spacing:12.851754px;}
.ws68{word-spacing:13.222424px;}
.wsb5{word-spacing:13.270183px;}
.ws5a{word-spacing:13.509286px;}
.ws7d{word-spacing:13.549102px;}
.wsca{word-spacing:13.614557px;}
.wsc1{word-spacing:13.680011px;}
.wsc0{word-spacing:13.810921px;}
.wsdb{word-spacing:14.047266px;}
.wse5{word-spacing:14.166817px;}
.wse6{word-spacing:14.226593px;}
.ws87{word-spacing:14.337734px;}
.ws59{word-spacing:14.346144px;}
.ws88{word-spacing:14.400012px;}
.wsab{word-spacing:14.465467px;}
.wsef{word-spacing:14.645022px;}
.wsbe{word-spacing:14.727285px;}
.wsf0{word-spacing:14.764573px;}
.ws9a{word-spacing:14.792740px;}
.ws67{word-spacing:14.824349px;}
.wsdf{word-spacing:14.855584px;}
.ws99{word-spacing:14.858194px;}
.ws8d{word-spacing:14.882624px;}
.ws8e{word-spacing:14.883892px;}
.ws5b{word-spacing:14.884124px;}
.wsc3{word-spacing:14.887291px;}
.wsc4{word-spacing:14.888624px;}
.wsa1{word-spacing:14.923649px;}
.ws7{word-spacing:14.989103px;}
.wscc{word-spacing:15.008103px;}
.ws90{word-spacing:15.054558px;}
.wsee{word-spacing:15.183002px;}
.ws71{word-spacing:15.242778px;}
.ws7c{word-spacing:15.250922px;}
.ws8b{word-spacing:15.302554px;}
.ws62{word-spacing:15.316376px;}
.ws63{word-spacing:15.381831px;}
.wscf{word-spacing:15.447286px;}
.wsbb{word-spacing:15.481880px;}
.ws4b{word-spacing:15.498000px;}
.ws9e{word-spacing:15.512740px;}
.wsbc{word-spacing:15.541656px;}
.ws61{word-spacing:15.578195px;}
.wsed{word-spacing:15.601432px;}
.ws77{word-spacing:15.643649px;}
.wsb7{word-spacing:15.960085px;}
.wscb{word-spacing:15.970922px;}
.wsb8{word-spacing:16.019861px;}
.ws7a{word-spacing:16.036377px;}
.ws54{word-spacing:16.101832px;}
.ws55{word-spacing:16.232741px;}
.ws56{word-spacing:16.298195px;}
.ws9b{word-spacing:16.363650px;}
.wsd4{word-spacing:16.557841px;}
.wsc9{word-spacing:16.560014px;}
.wsaa{word-spacing:16.625468px;}
.ws7b{word-spacing:16.952741px;}
.ws70{word-spacing:16.976270px;}
.ws86{word-spacing:17.018196px;}
.ws8a{word-spacing:17.036046px;}
.ws8{word-spacing:17.083651px;}
.ws96{word-spacing:17.149105px;}
.ws82{word-spacing:17.155597px;}
.wsc6{word-spacing:17.214560px;}
.ws60{word-spacing:17.410924px;}
.wscd{word-spacing:17.607287px;}
.ws79{word-spacing:17.861069px;}
.ws69{word-spacing:17.887357px;}
.ws57{word-spacing:18.065470px;}
.wsa0{word-spacing:18.130924px;}
.wsdd{word-spacing:18.154501px;}
.wsde{word-spacing:18.171782px;}
.ws9f{word-spacing:18.196379px;}
.ws80{word-spacing:18.231558px;}
.ws8f{word-spacing:18.261833px;}
.ws81{word-spacing:18.291334px;}
.ws91{word-spacing:18.392743px;}
.wsa4{word-spacing:18.458197px;}
.wse3{word-spacing:18.530436px;}
.ws9d{word-spacing:18.589106px;}
.ws8c{word-spacing:18.590212px;}
.ws84{word-spacing:18.709763px;}
.wsa2{word-spacing:18.720016px;}
.ws83{word-spacing:18.769538px;}
.wsdc{word-spacing:18.778050px;}
.wse2{word-spacing:18.829314px;}
.wsce{word-spacing:18.850925px;}
.ws5c{word-spacing:18.889090px;}
.wsd6{word-spacing:18.916379px;}
.wsaf{word-spacing:18.946981px;}
.wsb0{word-spacing:18.948865px;}
.ws98{word-spacing:19.047289px;}
.wsd0{word-spacing:19.187968px;}
.wsbd{word-spacing:19.243652px;}
.wsa3{word-spacing:19.570925px;}
.ws85{word-spacing:19.636380px;}
.wsad{word-spacing:19.666172px;}
.ws6c{word-spacing:19.701835px;}
.wsae{word-spacing:19.725948px;}
.ws9c{word-spacing:19.767289px;}
.ws92{word-spacing:19.898198px;}
.ws6b{word-spacing:20.094562px;}
.ws64{word-spacing:20.160017px;}
.ws7f{word-spacing:20.225471px;}
.wsd8{word-spacing:20.290926px;}
.ws97{word-spacing:20.421835px;}
.wsb6{word-spacing:20.428097px;}
.ws95{word-spacing:20.487290px;}
.ws94{word-spacing:20.552744px;}
.wsd5{word-spacing:20.562806px;}
.ws72{word-spacing:20.861684px;}
.ws74{word-spacing:20.880017px;}
.ws73{word-spacing:20.921460px;}
.ws78{word-spacing:21.010927px;}
.wsc7{word-spacing:21.076381px;}
.ws7e{word-spacing:21.141836px;}
.ws50{word-spacing:21.207290px;}
.ws51{word-spacing:21.272745px;}
.wse4{word-spacing:21.461117px;}
.wsda{word-spacing:21.861836px;}
.wsa5{word-spacing:21.992746px;}
.wsa7{word-spacing:22.174190px;}
.wsa9{word-spacing:22.189109px;}
.wsd7{word-spacing:22.385473px;}
.ws4f{word-spacing:22.450928px;}
.wsba{word-spacing:22.535401px;}
.wse0{word-spacing:22.834279px;}
.wsc8{word-spacing:22.843655px;}
.wse1{word-spacing:22.894055px;}
.wsbf{word-spacing:23.170928px;}
.ws75{word-spacing:23.498201px;}
.ws65{word-spacing:23.760020px;}
.wsd1{word-spacing:23.825474px;}
.ws93{word-spacing:23.956384px;}
.wsd9{word-spacing:24.676384px;}
.ws76{word-spacing:24.807293px;}
.ws53{word-spacing:25.003657px;}
.wsa6{word-spacing:25.134566px;}
.ws52{word-spacing:25.854567px;}
.wsb9{word-spacing:26.277136px;}
.ws58{word-spacing:29.768249px;}
.ws3{word-spacing:33.564941px;}
.ws4{word-spacing:33.578210px;}
.wsc5{word-spacing:40.472645px;}
.wsa8{word-spacing:47.536939px;}
.ws5f{word-spacing:71.611169px;}
.ws4e{word-spacing:71.659469px;}
.ws5d{word-spacing:71.670944px;}
.wsc2{word-spacing:280.651270px;}
.wsac{word-spacing:1216.217939px;}
.wsd3{word-spacing:1331.365561px;}
._27{margin-left:-2646.000000px;}
._28{margin-left:-355.968000px;}
._3e{margin-left:-19.411375px;}
._7{margin-left:-9.709486px;}
._9{margin-left:-8.091257px;}
._8{margin-left:-6.972253px;}
._5{margin-left:-5.170913px;}
._e{margin-left:-4.060622px;}
._d{margin-left:-2.873258px;}
._2{margin-left:-1.767274px;}
._3{width:1.767274px;}
._1{width:2.926625px;}
._26{width:8.509098px;}
._39{width:12.829102px;}
._3f{width:13.905750px;}
._16{width:14.943900px;}
._19{width:16.441668px;}
._2c{width:18.082443px;}
._12{width:19.197874px;}
._a{width:20.749108px;}
._11{width:22.388923px;}
._10{width:23.545816px;}
._c{width:26.770931px;}
._b{width:28.734569px;}
._41{width:30.039797px;}
._6{width:31.680026px;}
._40{width:32.697253px;}
._42{width:38.920646px;}
._0{width:43.038600px;}
._f{width:44.064000px;}
._13{width:58.944067px;}
._31{width:60.552441px;}
._4{width:63.752780px;}
._2b{width:65.454600px;}
._17{width:71.730720px;}
._15{width:78.545138px;}
._2f{width:85.837762px;}
._3b{width:87.185264px;}
._2d{width:91.572100px;}
._14{width:93.309712px;}
._3a{width:104.846402px;}
._32{width:112.437904px;}
._2e{width:119.013220px;}
._30{width:120.686936px;}
._20{width:126.425394px;}
._1a{width:136.467695px;}
._3c{width:164.263349px;}
._35{width:173.946996px;}
._18{width:181.302514px;}
._1d{width:183.006042px;}
._2a{width:206.231509px;}
._25{width:224.455150px;}
._1b{width:242.754805px;}
._1e{width:246.069308px;}
._22{width:254.347150px;}
._3d{width:265.643486px;}
._38{width:288.755026px;}
._29{width:297.721959px;}
._21{width:325.780172px;}
._37{width:330.026184px;}
._24{width:332.415264px;}
._36{width:336.661276px;}
._23{width:369.146356px;}
._34{width:391.355950px;}
._1c{width:398.974380px;}
._33{width:416.611465px;}
._1f{width:428.862180px;}
.fc4{color:rgb(255,255,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1d{font-size:26.490127px;}
.fs1b{font-size:26.490154px;}
.fs1a{font-size:26.490240px;}
.fsa{font-size:36.000000px;}
.fs18{font-size:38.189694px;}
.fs1c{font-size:41.627679px;}
.fsf{font-size:41.842800px;}
.fs6{font-size:41.844000px;}
.fs23{font-size:42.406560px;}
.fs11{font-size:43.169760px;}
.fs19{font-size:44.494200px;}
.fs16{font-size:45.568080px;}
.fs15{font-size:46.574895px;}
.fs5{font-size:47.820000px;}
.fsc{font-size:47.820600px;}
.fs12{font-size:47.966400px;}
.fs9{font-size:48.000000px;}
.fs1e{font-size:48.481800px;}
.fs13{font-size:52.763040px;}
.fs14{font-size:55.161360px;}
.fs8{font-size:56.784000px;}
.fs17{font-size:56.810880px;}
.fs21{font-size:57.517200px;}
.fs10{font-size:57.559680px;}
.fs1f{font-size:58.561920px;}
.fsd{font-size:58.810080px;}
.fse{font-size:59.775600px;}
.fs7{font-size:59.778000px;}
.fs22{font-size:62.981400px;}
.fs4{font-size:65.454000px;}
.fs1{font-size:65.454600px;}
.fsb{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs20{font-size:87.842880px;}
.fs3{font-size:103.290000px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y7a{bottom:4.033734px;}
.y79{bottom:4.191184px;}
.y56{bottom:9.715793px;}
.y78{bottom:9.836590px;}
.yaf{bottom:12.745364px;}
.y87{bottom:15.339823px;}
.y80{bottom:16.362538px;}
.y45{bottom:21.000000px;}
.yef{bottom:23.831188px;}
.y77{bottom:25.750882px;}
.yf7{bottom:27.059147px;}
.yec{bottom:28.304443px;}
.y11d{bottom:28.390331px;}
.y47{bottom:31.500000px;}
.ye3{bottom:31.920361px;}
.yae{bottom:33.727365px;}
.y86{bottom:43.284759px;}
.y12c{bottom:44.174251px;}
.yfa{bottom:44.961052px;}
.y7f{bottom:49.459354px;}
.yfe{bottom:52.520940px;}
.ye5{bottom:53.695338px;}
.y43{bottom:54.000000px;}
.yad{bottom:56.641181px;}
.yf0{bottom:61.983803px;}
.yf9{bottom:64.644662px;}
.yee{bottom:65.802229px;}
.y54{bottom:68.957576px;}
.ya{bottom:68.958000px;}
.y85{bottom:71.229696px;}
.y41{bottom:73.230000px;}
.y11f{bottom:74.662544px;}
.ye8{bottom:78.821331px;}
.yac{bottom:79.554997px;}
.y7e{bottom:82.556170px;}
.yf8{bottom:84.037382px;}
.yfb{bottom:84.328273px;}
.ya6{bottom:86.419527px;}
.ye9{bottom:89.794913px;}
.yfd{bottom:91.306380px;}
.yed{bottom:91.682342px;}
.y12d{bottom:95.952661px;}
.y11e{bottom:97.024169px;}
.y84{bottom:99.174633px;}
.yeb{bottom:100.198954px;}
.yb0{bottom:101.356786px;}
.yea{bottom:102.331419px;}
.yab{bottom:102.468814px;}
.y6d{bottom:112.084500px;}
.yf1{bottom:113.063041px;}
.y7d{bottom:115.652986px;}
.yf2{bottom:117.222008px;}
.ye7{bottom:117.232179px;}
.ye6{bottom:125.179251px;}
.yaa{bottom:125.382630px;}
.y83{bottom:127.119570px;}
.ye4{bottom:127.636220px;}
.y6c{bottom:131.512500px;}
.y88{bottom:131.711417px;}
.yfc{bottom:132.515910px;}
.y9{bottom:132.649500px;}
.ye2{bottom:134.457457px;}
.y12e{bottom:138.125985px;}
.y40{bottom:139.173000px;}
.y55{bottom:146.089201px;}
.ya9{bottom:148.296446px;}
.y7c{bottom:148.749802px;}
.y53{bottom:150.062741px;}
.y6b{bottom:150.939000px;}
.y8{bottom:152.973000px;}
.y82{bottom:155.064507px;}
.y3f{bottom:156.790500px;}
.yba{bottom:164.056500px;}
.y6a{bottom:170.367000px;}
.ya8{bottom:171.210263px;}
.y9c{bottom:171.861000px;}
.y7{bottom:173.296500px;}
.y3e{bottom:180.495000px;}
.y7b{bottom:181.846618px;}
.yb9{bottom:181.989000px;}
.y81{bottom:183.009444px;}
.y120{bottom:183.195411px;}
.y57{bottom:183.772495px;}
.y69{bottom:189.793500px;}
.y12f{bottom:190.572298px;}
.y6{bottom:193.620000px;}
.ya7{bottom:194.124079px;}
.y3d{bottom:198.427500px;}
.yb8{bottom:199.921500px;}
.y121{bottom:200.097906px;}
.y68{bottom:209.220000px;}
.y9b{bottom:210.715500px;}
.y130{bottom:211.775578px;}
.y5{bottom:213.943500px;}
.y3c{bottom:216.360000px;}
.yb7{bottom:217.854000px;}
.y67{bottom:228.648000px;}
.y9a{bottom:230.142000px;}
.y4{bottom:234.268500px;}
.y3b{bottom:234.292500px;}
.yb6{bottom:235.786500px;}
.y12b{bottom:240.113761px;}
.ydc{bottom:248.074500px;}
.y99{bottom:249.570000px;}
.y3a{bottom:252.225000px;}
.y133{bottom:256.437000px;}
.y12a{bottom:263.119320px;}
.yb5{bottom:264.568500px;}
.ydb{bottom:267.502500px;}
.y98{bottom:268.996500px;}
.y39{bottom:270.157500px;}
.y132{bottom:274.371000px;}
.y102{bottom:274.987500px;}
.yda{bottom:286.929000px;}
.y66{bottom:287.676000px;}
.y129{bottom:288.054378px;}
.y38{bottom:288.090000px;}
.y97{bottom:288.423000px;}
.y131{bottom:292.303500px;}
.y101{bottom:292.920000px;}
.y65{bottom:305.608500px;}
.y37{bottom:306.022500px;}
.yd9{bottom:306.357000px;}
.y100{bottom:310.852500px;}
.y128{bottom:316.213500px;}
.y64{bottom:323.541000px;}
.y36{bottom:323.955000px;}
.y11b{bottom:325.783500px;}
.y96{bottom:327.277500px;}
.yff{bottom:328.786500px;}
.y3{bottom:329.197500px;}
.y63{bottom:341.473500px;}
.y35{bottom:341.887500px;}
.yd8{bottom:345.210000px;}
.yf6{bottom:352.696500px;}
.y62{bottom:359.779500px;}
.y34{bottom:359.820000px;}
.y2{bottom:362.080500px;}
.y11a{bottom:364.638000px;}
.y95{bottom:367.626000px;}
.y61{bottom:377.713500px;}
.y33{bottom:377.752500px;}
.yb4{bottom:382.410000px;}
.y119{bottom:384.064500px;}
.yd7{bottom:385.560000px;}
.y94{bottom:387.054000px;}
.y1{bottom:394.965000px;}
.y32{bottom:395.325000px;}
.y60{bottom:396.019500px;}
.yb3{bottom:400.342500px;}
.y118{bottom:403.492500px;}
.yd6{bottom:404.986500px;}
.y93{bottom:406.480500px;}
.y31{bottom:413.617500px;}
.y5f{bottom:413.952000px;}
.yb2{bottom:418.275000px;}
.y117{bottom:422.919000px;}
.yd5{bottom:424.413000px;}
.y92{bottom:425.908500px;}
.y30{bottom:431.550000px;}
.y5e{bottom:432.258000px;}
.yb1{bottom:436.207500px;}
.y116{bottom:442.347000px;}
.yd4{bottom:443.841000px;}
.y91{bottom:445.335000px;}
.y2f{bottom:449.482500px;}
.y5d{bottom:450.190500px;}
.ya5{bottom:460.117500px;}
.y115{bottom:461.773500px;}
.yd3{bottom:463.267500px;}
.y90{bottom:464.763000px;}
.y2e{bottom:467.415000px;}
.y114{bottom:481.200000px;}
.y5c{bottom:482.022000px;}
.yd2{bottom:482.695500px;}
.y8f{bottom:484.189500px;}
.y2d{bottom:484.987500px;}
.y14e{bottom:493.156500px;}
.y5b{bottom:499.954500px;}
.y113{bottom:500.628000px;}
.y2c{bottom:503.280000px;}
.y8e{bottom:503.616000px;}
.y14d{bottom:511.089000px;}
.y8d{bottom:523.044000px;}
.y14c{bottom:529.021500px;}
.y2b{bottom:535.560000px;}
.y112{bottom:539.482500px;}
.yf5{bottom:544.482000px;}
.y14b{bottom:546.954000px;}
.yf4{bottom:562.414500px;}
.y2a{bottom:563.836500px;}
.y14a{bottom:564.886500px;}
.y12{bottom:568.335000px;}
.yd1{bottom:576.721500px;}
.yf3{bottom:580.347000px;}
.y8c{bottom:581.079000px;}
.y149{bottom:582.819000px;}
.y11{bottom:588.658500px;}
.y29{bottom:588.843000px;}
.yd0{bottom:594.654000px;}
.y8b{bottom:599.011500px;}
.y5a{bottom:600.171000px;}
.y148{bottom:600.753000px;}
.ye1{bottom:604.257000px;}
.y28{bottom:606.822000px;}
.y10{bottom:608.982000px;}
.ycf{bottom:612.586500px;}
.y8a{bottom:616.944000px;}
.y59{bottom:618.105000px;}
.y147{bottom:618.685500px;}
.y111{bottom:621.775500px;}
.y27{bottom:625.725000px;}
.yce{bottom:630.519000px;}
.y89{bottom:634.878000px;}
.y58{bottom:636.037500px;}
.y146{bottom:636.618000px;}
.y110{bottom:639.709500px;}
.y26{bottom:643.704000px;}
.yf{bottom:645.027000px;}
.y145{bottom:654.550500px;}
.y10f{bottom:657.642000px;}
.y76{bottom:658.788000px;}
.y52{bottom:659.947500px;}
.ycd{bottom:662.349000px;}
.y25{bottom:662.607000px;}
.y144{bottom:672.483000px;}
.y10e{bottom:675.948000px;}
.y24{bottom:681.048000px;}
.y127{bottom:681.823500px;}
.y143{bottom:690.415500px;}
.y23{bottom:699.489000px;}
.y126{bottom:701.250000px;}
.y10d{bottom:707.778000px;}
.y142{bottom:708.349500px;}
.ycc{bottom:712.831500px;}
.y22{bottom:717.930000px;}
.y125{bottom:720.676500px;}
.y141{bottom:726.282000px;}
.ycb{bottom:732.259500px;}
.y21{bottom:736.371000px;}
.y124{bottom:740.104500px;}
.ye{bottom:743.167500px;}
.y140{bottom:744.214500px;}
.ya4{bottom:748.270500px;}
.yca{bottom:751.686000px;}
.y20{bottom:754.812000px;}
.y13f{bottom:762.147000px;}
.y10c{bottom:767.265000px;}
.ya3{bottom:767.697000px;}
.yc9{bottom:771.114000px;}
.y1f{bottom:773.253000px;}
.yd{bottom:776.050500px;}
.y13e{bottom:780.079500px;}
.y10b{bottom:786.693000px;}
.ya2{bottom:787.125000px;}
.yc8{bottom:790.540500px;}
.y1e{bottom:791.694000px;}
.y13d{bottom:798.012000px;}
.y123{bottom:805.522500px;}
.y10a{bottom:806.119500px;}
.ya1{bottom:806.551500px;}
.yc{bottom:808.935000px;}
.yc7{bottom:809.968500px;}
.y1d{bottom:810.135000px;}
.ye0{bottom:811.426500px;}
.y13c{bottom:815.946000px;}
.y122{bottom:823.456500px;}
.y109{bottom:825.547500px;}
.ydf{bottom:829.360500px;}
.yc6{bottom:829.395000px;}
.y1c{bottom:831.393000px;}
.y13b{bottom:833.878500px;}
.yb{bottom:841.818000px;}
.y108{bottom:844.974000px;}
.y1b{bottom:847.003500px;}
.yde{bottom:847.293000px;}
.y11c{bottom:847.366500px;}
.yc5{bottom:848.821500px;}
.y13a{bottom:851.811000px;}
.y1a{bottom:866.430000px;}
.yc4{bottom:868.249500px;}
.y139{bottom:869.743500px;}
.ydd{bottom:871.203000px;}
.ya0{bottom:881.424000px;}
.y19{bottom:885.856500px;}
.yc3{bottom:887.676000px;}
.y9f{bottom:899.358000px;}
.y75{bottom:899.673000px;}
.y18{bottom:905.283000px;}
.y138{bottom:905.608500px;}
.yc2{bottom:907.104000px;}
.y51{bottom:908.598000px;}
.y107{bottom:909.906000px;}
.y9e{bottom:917.290500px;}
.y74{bottom:919.101000px;}
.y137{bottom:923.542500px;}
.y17{bottom:924.709500px;}
.yc1{bottom:926.530500px;}
.y106{bottom:927.838500px;}
.y50{bottom:928.024500px;}
.y9d{bottom:935.223000px;}
.y73{bottom:938.527500px;}
.y136{bottom:941.475000px;}
.y16{bottom:944.136000px;}
.y105{bottom:945.771000px;}
.yc0{bottom:945.958500px;}
.y4f{bottom:947.452500px;}
.y15{bottom:963.562500px;}
.y104{bottom:963.703500px;}
.ybf{bottom:965.385000px;}
.y4e{bottom:966.879000px;}
.y135{bottom:968.374500px;}
.y103{bottom:981.636000px;}
.y14{bottom:982.989000px;}
.ybe{bottom:984.811500px;}
.y4d{bottom:986.307000px;}
.y72{bottom:999.570000px;}
.ybd{bottom:1004.239500px;}
.y4c{bottom:1005.733500px;}
.y71{bottom:1017.502500px;}
.y13{bottom:1023.168000px;}
.ybc{bottom:1023.666000px;}
.y4b{bottom:1025.161500px;}
.y70{bottom:1035.435000px;}
.ybb{bottom:1043.094000px;}
.y134{bottom:1044.588000px;}
.y4a{bottom:1064.014500px;}
.y6f{bottom:1067.265000px;}
.y44{bottom:1188.000000px;}
.y6e{bottom:1191.000000px;}
.y42{bottom:1203.000000px;}
.y46{bottom:1218.000000px;}
.y49{bottom:1238.835000px;}
.y48{bottom:1250.835000px;}
.h37{height:19.285537px;}
.h35{height:19.285556px;}
.h31{height:19.285619px;}
.h13{height:26.648438px;}
.h34{height:27.112864px;}
.h2d{height:27.803141px;}
.h33{height:28.742635px;}
.h9{height:28.788672px;}
.h11{height:30.638672px;}
.h32{height:30.649932px;}
.h41{height:30.873135px;}
.h2f{height:32.392994px;}
.h10{height:32.437500px;}
.h26{height:33.174808px;}
.hf{height:33.328125px;}
.h25{height:33.907797px;}
.h12{height:34.500000px;}
.h39{height:34.846294px;}
.h22{height:34.920851px;}
.h36{height:37.194494px;}
.h23{height:38.412936px;}
.h24{height:40.158978px;}
.h1c{height:41.125613px;}
.hd{height:41.127264px;}
.h2c{height:41.359874px;}
.h1b{height:41.364715px;}
.ha{height:41.844600px;}
.hc{height:42.076944px;}
.h3c{height:42.634679px;}
.h1a{height:43.246084px;}
.h29{height:43.454256px;}
.h28{height:44.901856px;}
.h17{height:45.032765px;}
.h42{height:45.294583px;}
.h8{height:45.817800px;}
.h18{height:48.626712px;}
.h3{height:49.090950px;}
.h15{height:49.637990px;}
.h1e{height:50.483846px;}
.h27{height:50.489846px;}
.hb{height:50.490672px;}
.h3e{height:50.615136px;}
.h14{height:52.800000px;}
.h21{height:55.394218px;}
.h20{height:55.411966px;}
.h3f{height:55.423632px;}
.h16{height:56.421470px;}
.h1d{height:56.660573px;}
.h7{height:57.234000px;}
.h5{height:60.598349px;}
.h3d{height:63.952019px;}
.h2{height:64.557900px;}
.h6{height:72.303000px;}
.h3a{height:76.880014px;}
.h4{height:77.469300px;}
.h2a{height:83.308392px;}
.h38{height:145.445400px;}
.h30{height:160.660940px;}
.h1f{height:200.980415px;}
.h19{height:208.161954px;}
.h2e{height:209.831310px;}
.h2b{height:222.505729px;}
.h3b{height:236.125322px;}
.h40{height:320.699610px;}
.he{height:1261.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:230.143935px;}
.w7{width:262.804468px;}
.w5{width:295.616598px;}
.w6{width:295.999890px;}
.w4{width:393.985217px;}
.w8{width:526.027530px;}
.w3{width:592.438043px;}
.w9{width:624.660480px;}
.w2{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:5.476810px;}
.x30{left:12.122890px;}
.x2c{left:14.271485px;}
.x25{left:16.062388px;}
.x28{left:19.508055px;}
.x38{left:23.582889px;}
.x27{left:26.644975px;}
.x50{left:31.252484px;}
.x1a{left:41.243142px;}
.x3e{left:45.086341px;}
.x3f{left:76.000924px;}
.x5{left:85.039500px;}
.x19{left:97.919335px;}
.x9{left:108.000000px;}
.x4{left:112.039500px;}
.x13{left:114.000000px;}
.xf{left:115.471500px;}
.xe{left:117.564000px;}
.x34{left:120.411339px;}
.x2a{left:123.592500px;}
.x39{left:126.086873px;}
.xd{left:128.025000px;}
.xa{left:130.176000px;}
.x4d{left:131.911500px;}
.x40{left:133.653337px;}
.x44{left:135.749040px;}
.x51{left:140.476500px;}
.x17{left:142.371000px;}
.x2b{left:145.846500px;}
.x18{left:148.350000px;}
.x4f{left:149.985678px;}
.x3a{left:153.305594px;}
.x3d{left:154.464542px;}
.xb{left:157.173000px;}
.x54{left:161.128584px;}
.x53{left:165.517663px;}
.x8{left:167.104500px;}
.x42{left:176.058629px;}
.x43{left:181.224000px;}
.x1c{left:187.898573px;}
.x12{left:193.500000px;}
.x36{left:198.325757px;}
.x37{left:201.776111px;}
.x45{left:206.447625px;}
.x1e{left:209.292000px;}
.x2f{left:211.569587px;}
.x15{left:219.570000px;}
.x3b{left:221.902071px;}
.x21{left:222.981000px;}
.x41{left:236.922510px;}
.xc{left:246.951000px;}
.x35{left:251.802929px;}
.x2{left:259.951500px;}
.x20{left:262.074000px;}
.x16{left:267.900000px;}
.x46{left:278.769744px;}
.x48{left:287.446500px;}
.x4c{left:294.777000px;}
.x31{left:296.521500px;}
.x4b{left:299.223000px;}
.x1d{left:300.298787px;}
.x1b{left:304.783791px;}
.x23{left:311.064000px;}
.x33{left:312.735000px;}
.x32{left:318.238500px;}
.x1{left:328.078500px;}
.x26{left:348.934455px;}
.x3{left:358.150500px;}
.x29{left:365.032099px;}
.x24{left:386.243080px;}
.x4a{left:401.013000px;}
.x4e{left:408.298464px;}
.x14{left:420.900000px;}
.x47{left:422.220118px;}
.x49{left:427.636500px;}
.x1f{left:432.016500px;}
.x10{left:442.371000px;}
.x2d{left:445.827000px;}
.x7{left:453.928500px;}
.x2e{left:468.997500px;}
.x6{left:480.928500px;}
.x52{left:517.860000px;}
.x11{left:668.115000px;}
.x22{left:726.300000px;}
@media print{
.v6{vertical-align:-23.730240pt;}
.v2{vertical-align:-19.290667pt;}
.v9{vertical-align:-10.101612pt;}
.v4{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:8.406236pt;}
.v7{vertical-align:10.101612pt;}
.v3{vertical-align:19.290667pt;}
.v1{vertical-align:21.120000pt;}
.va{vertical-align:37.363307pt;}
.v5{vertical-align:43.797333pt;}
.ls3d{letter-spacing:-22.106667pt;}
.ls39{letter-spacing:-22.101333pt;}
.ls40{letter-spacing:-22.053333pt;}
.ls37{letter-spacing:-20.618667pt;}
.ls3a{letter-spacing:-16.261333pt;}
.ls2e{letter-spacing:-9.088000pt;}
.ls34{letter-spacing:-7.040000pt;}
.ls35{letter-spacing:-6.400000pt;}
.ls33{letter-spacing:-6.282667pt;}
.ls3b{letter-spacing:-5.845333pt;}
.ls30{letter-spacing:-5.642667pt;}
.ls31{letter-spacing:-4.768000pt;}
.ls2f{letter-spacing:-4.597333pt;}
.ls32{letter-spacing:-4.304000pt;}
.ls3c{letter-spacing:-4.197333pt;}
.ls36{letter-spacing:-3.877333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls77{letter-spacing:0.000015pt;}
.ls25{letter-spacing:0.000032pt;}
.ls56{letter-spacing:0.000087pt;}
.lse{letter-spacing:0.000112pt;}
.ls1d{letter-spacing:0.000131pt;}
.ls1c{letter-spacing:0.000219pt;}
.ls12{letter-spacing:0.000224pt;}
.ls11{letter-spacing:0.000406pt;}
.ls22{letter-spacing:0.000416pt;}
.ls54{letter-spacing:0.000463pt;}
.ls6b{letter-spacing:0.000518pt;}
.ls27{letter-spacing:0.000537pt;}
.ls1a{letter-spacing:0.000603pt;}
.ls17{letter-spacing:0.000608pt;}
.ls2b{letter-spacing:0.000789pt;}
.ls61{letter-spacing:0.000930pt;}
.ls13{letter-spacing:0.000987pt;}
.ls5a{letter-spacing:0.001121pt;}
.ls1e{letter-spacing:0.001173pt;}
.ls14{letter-spacing:0.001390pt;}
.ls44{letter-spacing:0.001421pt;}
.ls4a{letter-spacing:0.001438pt;}
.ls2c{letter-spacing:0.001552pt;}
.ls29{letter-spacing:0.001557pt;}
.ls16{letter-spacing:0.001744pt;}
.ls10{letter-spacing:0.001874pt;}
.ls7{letter-spacing:0.001888pt;}
.ls42{letter-spacing:0.001918pt;}
.ls47{letter-spacing:0.001921pt;}
.ls1b{letter-spacing:0.002128pt;}
.ls24{letter-spacing:0.002315pt;}
.ls18{letter-spacing:0.002320pt;}
.ls2a{letter-spacing:0.002325pt;}
.ls60{letter-spacing:0.002400pt;}
.ls3{letter-spacing:0.002495pt;}
.ls19{letter-spacing:0.002874pt;}
.ls6f{letter-spacing:0.002879pt;}
.ls8e{letter-spacing:0.002883pt;}
.ls2{letter-spacing:0.002965pt;}
.ls20{letter-spacing:0.003056pt;}
.ls81{letter-spacing:0.003187pt;}
.ls82{letter-spacing:0.003230pt;}
.ls23{letter-spacing:0.003269pt;}
.ls4{letter-spacing:0.003451pt;}
.ls21{letter-spacing:0.003461pt;}
.ls5d{letter-spacing:0.003537pt;}
.ls85{letter-spacing:0.003733pt;}
.ls2d{letter-spacing:0.003753pt;}
.ls28{letter-spacing:0.003811pt;}
.ls5c{letter-spacing:0.003837pt;}
.ls51{letter-spacing:0.003867pt;}
.ls87{letter-spacing:0.004204pt;}
.ls92{letter-spacing:0.004267pt;}
.ls6{letter-spacing:0.004320pt;}
.ls15{letter-spacing:0.005083pt;}
.ls69{letter-spacing:0.005182pt;}
.ls9{letter-spacing:0.005445pt;}
.ls1f{letter-spacing:0.024795pt;}
.ls26{letter-spacing:0.050667pt;}
.lsd{letter-spacing:0.051179pt;}
.lsc{letter-spacing:0.052795pt;}
.ls8{letter-spacing:0.056512pt;}
.ls1{letter-spacing:0.057051pt;}
.lsb{letter-spacing:0.058128pt;}
.lsa{letter-spacing:0.060283pt;}
.ls5{letter-spacing:0.062384pt;}
.ls4e{letter-spacing:2.655255pt;}
.ls55{letter-spacing:2.655733pt;}
.lsf{letter-spacing:2.656000pt;}
.ls41{letter-spacing:2.656087pt;}
.ls50{letter-spacing:2.656533pt;}
.ls78{letter-spacing:2.657814pt;}
.ls72{letter-spacing:2.659366pt;}
.ls57{letter-spacing:2.661067pt;}
.ls7d{letter-spacing:2.922378pt;}
.ls64{letter-spacing:3.189044pt;}
.ls7c{letter-spacing:3.985023pt;}
.ls3f{letter-spacing:4.352000pt;}
.ls38{letter-spacing:4.410667pt;}
.ls3e{letter-spacing:4.464000pt;}
.ls45{letter-spacing:9.191733pt;}
.ls68{letter-spacing:9.700350pt;}
.ls52{letter-spacing:10.583733pt;}
.ls53{letter-spacing:10.585666pt;}
.ls5b{letter-spacing:11.806861pt;}
.ls4c{letter-spacing:12.409666pt;}
.ls93{letter-spacing:12.542861pt;}
.ls4f{letter-spacing:12.836194pt;}
.ls90{letter-spacing:12.932333pt;}
.ls8b{letter-spacing:13.280518pt;}
.ls84{letter-spacing:13.283230pt;}
.ls6a{letter-spacing:13.284194pt;}
.ls88{letter-spacing:13.285852pt;}
.ls6d{letter-spacing:13.286454pt;}
.ls4b{letter-spacing:13.751254pt;}
.ls8f{letter-spacing:14.268587pt;}
.ls6c{letter-spacing:14.756194pt;}
.ls6e{letter-spacing:14.761527pt;}
.ls8a{letter-spacing:14.970400pt;}
.ls58{letter-spacing:15.463733pt;}
.ls59{letter-spacing:15.465666pt;}
.ls83{letter-spacing:15.942356pt;}
.ls89{letter-spacing:16.158999pt;}
.ls67{letter-spacing:16.164333pt;}
.ls73{letter-spacing:16.539109pt;}
.ls91{letter-spacing:16.825666pt;}
.ls86{letter-spacing:16.936870pt;}
.ls71{letter-spacing:17.199733pt;}
.ls70{letter-spacing:17.231733pt;}
.ls7e{letter-spacing:17.576521pt;}
.ls66{letter-spacing:17.824087pt;}
.ls63{letter-spacing:17.976870pt;}
.ls46{letter-spacing:18.397546pt;}
.ls5e{letter-spacing:18.557067pt;}
.ls5f{letter-spacing:18.558999pt;}
.ls4d{letter-spacing:18.820588pt;}
.ls74{letter-spacing:18.904699pt;}
.ls79{letter-spacing:18.908533pt;}
.ls62{letter-spacing:18.958204pt;}
.ls65{letter-spacing:19.914378pt;}
.ls8c{letter-spacing:20.335255pt;}
.ls8d{letter-spacing:20.348587pt;}
.ls75{letter-spacing:22.175207pt;}
.ls49{letter-spacing:22.311254pt;}
.ls48{letter-spacing:22.461546pt;}
.ls43{letter-spacing:22.704087pt;}
.ls7b{letter-spacing:22.709619pt;}
.ls76{letter-spacing:24.032286pt;}
.ls7f{letter-spacing:24.037619pt;}
.ls7a{letter-spacing:25.361814pt;}
.ls80{letter-spacing:25.367148pt;}
.wsd2{word-spacing:-55.983467pt;}
.ws66{word-spacing:-42.666667pt;}
.ws1{word-spacing:-21.423659pt;}
.wsb{word-spacing:-16.290923pt;}
.ws6e{word-spacing:-14.223636pt;}
.ws6f{word-spacing:-11.853030pt;}
.ws89{word-spacing:-10.995011pt;}
.ws6d{word-spacing:-10.667727pt;}
.wsb2{word-spacing:-9.250595pt;}
.wsb4{word-spacing:-6.546033pt;}
.ws13{word-spacing:-2.850911pt;}
.ws38{word-spacing:-1.648000pt;}
.ws39{word-spacing:-1.594667pt;}
.ws24{word-spacing:-0.640000pt;}
.ws25{word-spacing:-0.586667pt;}
.ws33{word-spacing:-0.256000pt;}
.ws14{word-spacing:-0.058181pt;}
.ws35{word-spacing:-0.053333pt;}
.ws16{word-spacing:-0.053136pt;}
.ws5e{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.050475pt;}
.ws15{word-spacing:-0.042507pt;}
.ws17{word-spacing:-0.037195pt;}
.ws6a{word-spacing:-0.037194pt;}
.wsb3{word-spacing:-0.037002pt;}
.wsb1{word-spacing:-0.023547pt;}
.ws1b{word-spacing:0.000000pt;}
.ws34{word-spacing:0.053333pt;}
.ws9{word-spacing:0.058182pt;}
.ws29{word-spacing:0.261333pt;}
.ws42{word-spacing:0.480000pt;}
.ws6{word-spacing:0.523637pt;}
.ws40{word-spacing:0.533333pt;}
.ws41{word-spacing:0.586667pt;}
.ws43{word-spacing:0.640000pt;}
.ws44{word-spacing:0.693333pt;}
.ws2a{word-spacing:0.901333pt;}
.ws2b{word-spacing:0.954667pt;}
.ws3a{word-spacing:1.008000pt;}
.ws3b{word-spacing:1.061333pt;}
.ws22{word-spacing:1.168000pt;}
.ws23{word-spacing:1.221333pt;}
.ws12{word-spacing:1.221819pt;}
.ws1c{word-spacing:1.280000pt;}
.ws1e{word-spacing:1.338667pt;}
.ws3d{word-spacing:1.434667pt;}
.ws21{word-spacing:1.456000pt;}
.ws3c{word-spacing:1.488000pt;}
.ws2f{word-spacing:1.541333pt;}
.ws20{word-spacing:1.573333pt;}
.ws2e{word-spacing:1.594667pt;}
.ws30{word-spacing:1.648000pt;}
.ws4a{word-spacing:1.701333pt;}
.ws48{word-spacing:1.754667pt;}
.ws49{word-spacing:1.808000pt;}
.ws27{word-spacing:1.861333pt;}
.ws26{word-spacing:1.914667pt;}
.ws28{word-spacing:1.968000pt;}
.ws1a{word-spacing:2.021333pt;}
.ws19{word-spacing:2.112000pt;}
.ws4d{word-spacing:2.522667pt;}
.ws4c{word-spacing:2.576000pt;}
.ws46{word-spacing:2.922667pt;}
.ws45{word-spacing:2.976000pt;}
.ws47{word-spacing:3.029333pt;}
.ws2{word-spacing:3.083639pt;}
.ws11{word-spacing:3.519601pt;}
.wse{word-spacing:3.956367pt;}
.ws36{word-spacing:3.984000pt;}
.ws37{word-spacing:4.037333pt;}
.ws3e{word-spacing:4.250667pt;}
.ws3f{word-spacing:4.304000pt;}
.wsd{word-spacing:5.061822pt;}
.ws2c{word-spacing:5.098667pt;}
.ws2d{word-spacing:5.152000pt;}
.wsa{word-spacing:5.585459pt;}
.ws10{word-spacing:5.876190pt;}
.wsc{word-spacing:6.341823pt;}
.ws0{word-spacing:7.268741pt;}
.ws1d{word-spacing:7.552000pt;}
.ws1f{word-spacing:7.557333pt;}
.ws31{word-spacing:8.074667pt;}
.ws32{word-spacing:8.128000pt;}
.ws5{word-spacing:8.552734pt;}
.wsf{word-spacing:10.240009pt;}
.wse8{word-spacing:10.573639pt;}
.wse7{word-spacing:10.613216pt;}
.wse9{word-spacing:10.626773pt;}
.wsf1{word-spacing:11.143164pt;}
.wsf2{word-spacing:11.158112pt;}
.wseb{word-spacing:11.370647pt;}
.wsea{word-spacing:11.397445pt;}
.wsec{word-spacing:11.423781pt;}
.ws68{word-spacing:11.753266pt;}
.wsb5{word-spacing:11.795718pt;}
.ws5a{word-spacing:12.008254pt;}
.ws7d{word-spacing:12.043646pt;}
.wsca{word-spacing:12.101828pt;}
.wsc1{word-spacing:12.160010pt;}
.wsc0{word-spacing:12.276374pt;}
.wsdb{word-spacing:12.486459pt;}
.wse5{word-spacing:12.592726pt;}
.wse6{word-spacing:12.645860pt;}
.ws87{word-spacing:12.744652pt;}
.ws59{word-spacing:12.752128pt;}
.ws88{word-spacing:12.800011pt;}
.wsab{word-spacing:12.858193pt;}
.wsef{word-spacing:13.017797pt;}
.wsbe{word-spacing:13.090920pt;}
.wsf0{word-spacing:13.124065pt;}
.ws9a{word-spacing:13.149102pt;}
.ws67{word-spacing:13.177199pt;}
.wsdf{word-spacing:13.204963pt;}
.ws99{word-spacing:13.207284pt;}
.ws8d{word-spacing:13.228999pt;}
.ws8e{word-spacing:13.230126pt;}
.ws5b{word-spacing:13.230333pt;}
.wsc3{word-spacing:13.233148pt;}
.wsc4{word-spacing:13.234333pt;}
.wsa1{word-spacing:13.265466pt;}
.ws7{word-spacing:13.323647pt;}
.wscc{word-spacing:13.340536pt;}
.ws90{word-spacing:13.381829pt;}
.wsee{word-spacing:13.496002pt;}
.ws71{word-spacing:13.549136pt;}
.ws7c{word-spacing:13.556375pt;}
.ws8b{word-spacing:13.602270pt;}
.ws62{word-spacing:13.614557pt;}
.ws63{word-spacing:13.672739pt;}
.wscf{word-spacing:13.730921pt;}
.wsbb{word-spacing:13.761671pt;}
.ws4b{word-spacing:13.776000pt;}
.ws9e{word-spacing:13.789102pt;}
.wsbc{word-spacing:13.814805pt;}
.ws61{word-spacing:13.847284pt;}
.wsed{word-spacing:13.867939pt;}
.ws77{word-spacing:13.905466pt;}
.wsb7{word-spacing:14.186742pt;}
.wscb{word-spacing:14.196375pt;}
.wsb8{word-spacing:14.239876pt;}
.ws7a{word-spacing:14.254557pt;}
.ws54{word-spacing:14.312739pt;}
.ws55{word-spacing:14.429103pt;}
.ws56{word-spacing:14.487285pt;}
.ws9b{word-spacing:14.545467pt;}
.wsd4{word-spacing:14.718081pt;}
.wsc9{word-spacing:14.720012pt;}
.wsaa{word-spacing:14.778194pt;}
.ws7b{word-spacing:15.069103pt;}
.ws70{word-spacing:15.090018pt;}
.ws86{word-spacing:15.127285pt;}
.ws8a{word-spacing:15.143152pt;}
.ws8{word-spacing:15.185467pt;}
.ws96{word-spacing:15.243649pt;}
.ws82{word-spacing:15.249420pt;}
.wsc6{word-spacing:15.301831pt;}
.ws60{word-spacing:15.476377pt;}
.wscd{word-spacing:15.650922pt;}
.ws79{word-spacing:15.876506pt;}
.ws69{word-spacing:15.899873pt;}
.ws57{word-spacing:16.058195pt;}
.wsa0{word-spacing:16.116377pt;}
.wsdd{word-spacing:16.137334pt;}
.wsde{word-spacing:16.152695pt;}
.ws9f{word-spacing:16.174559pt;}
.ws80{word-spacing:16.205829pt;}
.ws8f{word-spacing:16.232741pt;}
.ws81{word-spacing:16.258963pt;}
.ws91{word-spacing:16.349105pt;}
.wsa4{word-spacing:16.407286pt;}
.wse3{word-spacing:16.471499pt;}
.ws9d{word-spacing:16.523650pt;}
.ws8c{word-spacing:16.524633pt;}
.ws84{word-spacing:16.630900pt;}
.wsa2{word-spacing:16.640014pt;}
.ws83{word-spacing:16.684034pt;}
.wsdc{word-spacing:16.691600pt;}
.wse2{word-spacing:16.737168pt;}
.wsce{word-spacing:16.756378pt;}
.ws5c{word-spacing:16.790302pt;}
.wsd6{word-spacing:16.814559pt;}
.wsaf{word-spacing:16.841761pt;}
.wsb0{word-spacing:16.843436pt;}
.ws98{word-spacing:16.930923pt;}
.wsd0{word-spacing:17.055971pt;}
.wsbd{word-spacing:17.105469pt;}
.wsa3{word-spacing:17.396378pt;}
.ws85{word-spacing:17.454560pt;}
.wsad{word-spacing:17.481042pt;}
.ws6c{word-spacing:17.512742pt;}
.wsae{word-spacing:17.534176pt;}
.ws9c{word-spacing:17.570924pt;}
.ws92{word-spacing:17.687287pt;}
.ws6b{word-spacing:17.861833pt;}
.ws64{word-spacing:17.920015pt;}
.ws7f{word-spacing:17.978197pt;}
.wsd8{word-spacing:18.036379pt;}
.ws97{word-spacing:18.152742pt;}
.wsb6{word-spacing:18.158308pt;}
.ws95{word-spacing:18.210924pt;}
.ws94{word-spacing:18.269106pt;}
.wsd5{word-spacing:18.278050pt;}
.ws72{word-spacing:18.543719pt;}
.ws74{word-spacing:18.560015pt;}
.ws73{word-spacing:18.596853pt;}
.ws78{word-spacing:18.676379pt;}
.wsc7{word-spacing:18.734561pt;}
.ws7e{word-spacing:18.792743pt;}
.ws50{word-spacing:18.850925pt;}
.ws51{word-spacing:18.909107pt;}
.wse4{word-spacing:19.076548pt;}
.wsda{word-spacing:19.432743pt;}
.wsa5{word-spacing:19.549107pt;}
.wsa7{word-spacing:19.710391pt;}
.wsa9{word-spacing:19.723653pt;}
.wsd7{word-spacing:19.898198pt;}
.ws4f{word-spacing:19.956380pt;}
.wsba{word-spacing:20.031468pt;}
.wse0{word-spacing:20.297137pt;}
.wsc8{word-spacing:20.305471pt;}
.wse1{word-spacing:20.350271pt;}
.wsbf{word-spacing:20.596381pt;}
.ws75{word-spacing:20.887290pt;}
.ws65{word-spacing:21.120018pt;}
.wsd1{word-spacing:21.178199pt;}
.ws93{word-spacing:21.294563pt;}
.wsd9{word-spacing:21.934564pt;}
.ws76{word-spacing:22.050927pt;}
.ws53{word-spacing:22.225473pt;}
.wsa6{word-spacing:22.341837pt;}
.ws52{word-spacing:22.981837pt;}
.wsb9{word-spacing:23.357454pt;}
.ws58{word-spacing:26.460666pt;}
.ws3{word-spacing:29.835503pt;}
.ws4{word-spacing:29.847298pt;}
.wsc5{word-spacing:35.975685pt;}
.wsa8{word-spacing:42.255057pt;}
.ws5f{word-spacing:63.654372pt;}
.ws4e{word-spacing:63.697306pt;}
.ws5d{word-spacing:63.707506pt;}
.wsc2{word-spacing:249.467795pt;}
.wsac{word-spacing:1081.082613pt;}
.wsd3{word-spacing:1183.436054pt;}
._27{margin-left:-2352.000000pt;}
._28{margin-left:-316.416000pt;}
._3e{margin-left:-17.254556pt;}
._7{margin-left:-8.630654pt;}
._9{margin-left:-7.192228pt;}
._8{margin-left:-6.197558pt;}
._5{margin-left:-4.596367pt;}
._e{margin-left:-3.609442pt;}
._d{margin-left:-2.554007pt;}
._2{margin-left:-1.570910pt;}
._3{width:1.570910pt;}
._1{width:2.601444pt;}
._26{width:7.563643pt;}
._39{width:11.403646pt;}
._3f{width:12.360667pt;}
._16{width:13.283467pt;}
._19{width:14.614816pt;}
._2c{width:16.073283pt;}
._12{width:17.064777pt;}
._a{width:18.443652pt;}
._11{width:19.901265pt;}
._10{width:20.929614pt;}
._c{width:23.796383pt;}
._b{width:25.541839pt;}
._41{width:26.702042pt;}
._6{width:28.160023pt;}
._40{width:29.064225pt;}
._42{width:34.596130pt;}
._0{width:38.256533pt;}
._f{width:39.168000pt;}
._13{width:52.394726pt;}
._31{width:53.824392pt;}
._4{width:56.669138pt;}
._2b{width:58.181867pt;}
._17{width:63.760640pt;}
._15{width:69.817901pt;}
._2f{width:76.300233pt;}
._3b{width:77.498013pt;}
._2d{width:81.397423pt;}
._14{width:82.941966pt;}
._3a{width:93.196802pt;}
._32{width:99.944803pt;}
._2e{width:105.789529pt;}
._30{width:107.277277pt;}
._20{width:112.378128pt;}
._1a{width:121.304618pt;}
._3c{width:146.011866pt;}
._35{width:154.619552pt;}
._18{width:161.157790pt;}
._1d{width:162.672037pt;}
._2a{width:183.316897pt;}
._25{width:199.515689pt;}
._1b{width:215.782049pt;}
._1e{width:218.728274pt;}
._22{width:226.086355pt;}
._3d{width:236.127543pt;}
._38{width:256.671134pt;}
._29{width:264.641741pt;}
._21{width:289.582375pt;}
._37{width:293.356608pt;}
._24{width:295.480235pt;}
._36{width:299.254467pt;}
._23{width:328.130094pt;}
._34{width:347.871955pt;}
._1c{width:354.643893pt;}
._33{width:370.321302pt;}
._1f{width:381.210827pt;}
.fs1d{font-size:23.546779pt;}
.fs1b{font-size:23.546803pt;}
.fs1a{font-size:23.546880pt;}
.fsa{font-size:32.000000pt;}
.fs18{font-size:33.946394pt;}
.fs1c{font-size:37.002382pt;}
.fsf{font-size:37.193600pt;}
.fs6{font-size:37.194667pt;}
.fs23{font-size:37.694720pt;}
.fs11{font-size:38.373120pt;}
.fs19{font-size:39.550400pt;}
.fs16{font-size:40.504960pt;}
.fs15{font-size:41.399906pt;}
.fs5{font-size:42.506667pt;}
.fsc{font-size:42.507200pt;}
.fs12{font-size:42.636800pt;}
.fs9{font-size:42.666667pt;}
.fs1e{font-size:43.094933pt;}
.fs13{font-size:46.900480pt;}
.fs14{font-size:49.032320pt;}
.fs8{font-size:50.474667pt;}
.fs17{font-size:50.498560pt;}
.fs21{font-size:51.126400pt;}
.fs10{font-size:51.164160pt;}
.fs1f{font-size:52.055040pt;}
.fsd{font-size:52.275627pt;}
.fse{font-size:53.133867pt;}
.fs7{font-size:53.136000pt;}
.fs22{font-size:55.983467pt;}
.fs4{font-size:58.181333pt;}
.fs1{font-size:58.181867pt;}
.fsb{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs20{font-size:78.082560pt;}
.fs3{font-size:91.813333pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:3.585542pt;}
.y79{bottom:3.725497pt;}
.y56{bottom:8.636260pt;}
.y78{bottom:8.743635pt;}
.yaf{bottom:11.329212pt;}
.y87{bottom:13.635398pt;}
.y80{bottom:14.544478pt;}
.y45{bottom:18.666667pt;}
.yef{bottom:21.183278pt;}
.y77{bottom:22.889673pt;}
.yf7{bottom:24.052575pt;}
.yec{bottom:25.159505pt;}
.y11d{bottom:25.235850pt;}
.y47{bottom:28.000000pt;}
.ye3{bottom:28.373654pt;}
.yae{bottom:29.979880pt;}
.y86{bottom:38.475342pt;}
.y12c{bottom:39.266001pt;}
.yfa{bottom:39.965379pt;}
.y7f{bottom:43.963870pt;}
.yfe{bottom:46.685280pt;}
.ye5{bottom:47.729189pt;}
.y43{bottom:48.000000pt;}
.yad{bottom:50.347717pt;}
.yf0{bottom:55.096714pt;}
.yf9{bottom:57.461922pt;}
.yee{bottom:58.490870pt;}
.y54{bottom:61.295623pt;}
.ya{bottom:61.296000pt;}
.y85{bottom:63.315286pt;}
.y41{bottom:65.093333pt;}
.y11f{bottom:66.366706pt;}
.ye8{bottom:70.063405pt;}
.yac{bottom:70.715553pt;}
.y7e{bottom:73.383262pt;}
.yf8{bottom:74.699896pt;}
.yfb{bottom:74.958465pt;}
.ya6{bottom:76.817357pt;}
.ye9{bottom:79.817700pt;}
.yfd{bottom:81.161227pt;}
.yed{bottom:81.495415pt;}
.y12d{bottom:85.291254pt;}
.y11e{bottom:86.243706pt;}
.y84{bottom:88.155229pt;}
.yeb{bottom:89.065737pt;}
.yb0{bottom:90.094921pt;}
.yea{bottom:90.961261pt;}
.yab{bottom:91.083390pt;}
.y6d{bottom:99.630667pt;}
.yf1{bottom:100.500481pt;}
.y7d{bottom:102.802654pt;}
.yf2{bottom:104.197341pt;}
.ye7{bottom:104.206381pt;}
.ye6{bottom:111.270445pt;}
.yaa{bottom:111.451227pt;}
.y83{bottom:112.995173pt;}
.ye4{bottom:113.454418pt;}
.y6c{bottom:116.900000pt;}
.y88{bottom:117.076815pt;}
.yfc{bottom:117.791920pt;}
.y9{bottom:117.910667pt;}
.ye2{bottom:119.517740pt;}
.y12e{bottom:122.778653pt;}
.y40{bottom:123.709333pt;}
.y55{bottom:129.857067pt;}
.ya9{bottom:131.819063pt;}
.y7c{bottom:132.222046pt;}
.y53{bottom:133.389103pt;}
.y6b{bottom:134.168000pt;}
.y8{bottom:135.976000pt;}
.y82{bottom:137.835117pt;}
.y3f{bottom:139.369333pt;}
.yba{bottom:145.828000pt;}
.y6a{bottom:151.437333pt;}
.ya8{bottom:152.186900pt;}
.y9c{bottom:152.765333pt;}
.y7{bottom:154.041333pt;}
.y3e{bottom:160.440000pt;}
.y7b{bottom:161.641438pt;}
.yb9{bottom:161.768000pt;}
.y81{bottom:162.675061pt;}
.y120{bottom:162.840366pt;}
.y57{bottom:163.353329pt;}
.y69{bottom:168.705333pt;}
.y12f{bottom:169.397598pt;}
.y6{bottom:172.106667pt;}
.ya7{bottom:172.554737pt;}
.y3d{bottom:176.380000pt;}
.yb8{bottom:177.708000pt;}
.y121{bottom:177.864806pt;}
.y68{bottom:185.973333pt;}
.y9b{bottom:187.302667pt;}
.y130{bottom:188.244958pt;}
.y5{bottom:190.172000pt;}
.y3c{bottom:192.320000pt;}
.yb7{bottom:193.648000pt;}
.y67{bottom:203.242667pt;}
.y9a{bottom:204.570667pt;}
.y4{bottom:208.238667pt;}
.y3b{bottom:208.260000pt;}
.yb6{bottom:209.588000pt;}
.y12b{bottom:213.434455pt;}
.ydc{bottom:220.510667pt;}
.y99{bottom:221.840000pt;}
.y3a{bottom:224.200000pt;}
.y133{bottom:227.944000pt;}
.y12a{bottom:233.883840pt;}
.yb5{bottom:235.172000pt;}
.ydb{bottom:237.780000pt;}
.y98{bottom:239.108000pt;}
.y39{bottom:240.140000pt;}
.y132{bottom:243.885333pt;}
.y102{bottom:244.433333pt;}
.yda{bottom:255.048000pt;}
.y66{bottom:255.712000pt;}
.y129{bottom:256.048336pt;}
.y38{bottom:256.080000pt;}
.y97{bottom:256.376000pt;}
.y131{bottom:259.825333pt;}
.y101{bottom:260.373333pt;}
.y65{bottom:271.652000pt;}
.y37{bottom:272.020000pt;}
.yd9{bottom:272.317333pt;}
.y100{bottom:276.313333pt;}
.y128{bottom:281.078667pt;}
.y64{bottom:287.592000pt;}
.y36{bottom:287.960000pt;}
.y11b{bottom:289.585333pt;}
.y96{bottom:290.913333pt;}
.yff{bottom:292.254667pt;}
.y3{bottom:292.620000pt;}
.y63{bottom:303.532000pt;}
.y35{bottom:303.900000pt;}
.yd8{bottom:306.853333pt;}
.yf6{bottom:313.508000pt;}
.y62{bottom:319.804000pt;}
.y34{bottom:319.840000pt;}
.y2{bottom:321.849333pt;}
.y11a{bottom:324.122667pt;}
.y95{bottom:326.778667pt;}
.y61{bottom:335.745333pt;}
.y33{bottom:335.780000pt;}
.yb4{bottom:339.920000pt;}
.y119{bottom:341.390667pt;}
.yd7{bottom:342.720000pt;}
.y94{bottom:344.048000pt;}
.y1{bottom:351.080000pt;}
.y32{bottom:351.400000pt;}
.y60{bottom:352.017333pt;}
.yb3{bottom:355.860000pt;}
.y118{bottom:358.660000pt;}
.yd6{bottom:359.988000pt;}
.y93{bottom:361.316000pt;}
.y31{bottom:367.660000pt;}
.y5f{bottom:367.957333pt;}
.yb2{bottom:371.800000pt;}
.y117{bottom:375.928000pt;}
.yd5{bottom:377.256000pt;}
.y92{bottom:378.585333pt;}
.y30{bottom:383.600000pt;}
.y5e{bottom:384.229333pt;}
.yb1{bottom:387.740000pt;}
.y116{bottom:393.197333pt;}
.yd4{bottom:394.525333pt;}
.y91{bottom:395.853333pt;}
.y2f{bottom:399.540000pt;}
.y5d{bottom:400.169333pt;}
.ya5{bottom:408.993333pt;}
.y115{bottom:410.465333pt;}
.yd3{bottom:411.793333pt;}
.y90{bottom:413.122667pt;}
.y2e{bottom:415.480000pt;}
.y114{bottom:427.733333pt;}
.y5c{bottom:428.464000pt;}
.yd2{bottom:429.062667pt;}
.y8f{bottom:430.390667pt;}
.y2d{bottom:431.100000pt;}
.y14e{bottom:438.361333pt;}
.y5b{bottom:444.404000pt;}
.y113{bottom:445.002667pt;}
.y2c{bottom:447.360000pt;}
.y8e{bottom:447.658667pt;}
.y14d{bottom:454.301333pt;}
.y8d{bottom:464.928000pt;}
.y14c{bottom:470.241333pt;}
.y2b{bottom:476.053333pt;}
.y112{bottom:479.540000pt;}
.yf5{bottom:483.984000pt;}
.y14b{bottom:486.181333pt;}
.yf4{bottom:499.924000pt;}
.y2a{bottom:501.188000pt;}
.y14a{bottom:502.121333pt;}
.y12{bottom:505.186667pt;}
.yd1{bottom:512.641333pt;}
.yf3{bottom:515.864000pt;}
.y8c{bottom:516.514667pt;}
.y149{bottom:518.061333pt;}
.y11{bottom:523.252000pt;}
.y29{bottom:523.416000pt;}
.yd0{bottom:528.581333pt;}
.y8b{bottom:532.454667pt;}
.y5a{bottom:533.485333pt;}
.y148{bottom:534.002667pt;}
.ye1{bottom:537.117333pt;}
.y28{bottom:539.397333pt;}
.y10{bottom:541.317333pt;}
.ycf{bottom:544.521333pt;}
.y8a{bottom:548.394667pt;}
.y59{bottom:549.426667pt;}
.y147{bottom:549.942667pt;}
.y111{bottom:552.689333pt;}
.y27{bottom:556.200000pt;}
.yce{bottom:560.461333pt;}
.y89{bottom:564.336000pt;}
.y58{bottom:565.366667pt;}
.y146{bottom:565.882667pt;}
.y110{bottom:568.630667pt;}
.y26{bottom:572.181333pt;}
.yf{bottom:573.357333pt;}
.y145{bottom:581.822667pt;}
.y10f{bottom:584.570667pt;}
.y76{bottom:585.589333pt;}
.y52{bottom:586.620000pt;}
.ycd{bottom:588.754667pt;}
.y25{bottom:588.984000pt;}
.y144{bottom:597.762667pt;}
.y10e{bottom:600.842667pt;}
.y24{bottom:605.376000pt;}
.y127{bottom:606.065333pt;}
.y143{bottom:613.702667pt;}
.y23{bottom:621.768000pt;}
.y126{bottom:623.333333pt;}
.y10d{bottom:629.136000pt;}
.y142{bottom:629.644000pt;}
.ycc{bottom:633.628000pt;}
.y22{bottom:638.160000pt;}
.y125{bottom:640.601333pt;}
.y141{bottom:645.584000pt;}
.ycb{bottom:650.897333pt;}
.y21{bottom:654.552000pt;}
.y124{bottom:657.870667pt;}
.ye{bottom:660.593333pt;}
.y140{bottom:661.524000pt;}
.ya4{bottom:665.129333pt;}
.yca{bottom:668.165333pt;}
.y20{bottom:670.944000pt;}
.y13f{bottom:677.464000pt;}
.y10c{bottom:682.013333pt;}
.ya3{bottom:682.397333pt;}
.yc9{bottom:685.434667pt;}
.y1f{bottom:687.336000pt;}
.yd{bottom:689.822667pt;}
.y13e{bottom:693.404000pt;}
.y10b{bottom:699.282667pt;}
.ya2{bottom:699.666667pt;}
.yc8{bottom:702.702667pt;}
.y1e{bottom:703.728000pt;}
.y13d{bottom:709.344000pt;}
.y123{bottom:716.020000pt;}
.y10a{bottom:716.550667pt;}
.ya1{bottom:716.934667pt;}
.yc{bottom:719.053333pt;}
.yc7{bottom:719.972000pt;}
.y1d{bottom:720.120000pt;}
.ye0{bottom:721.268000pt;}
.y13c{bottom:725.285333pt;}
.y122{bottom:731.961333pt;}
.y109{bottom:733.820000pt;}
.ydf{bottom:737.209333pt;}
.yc6{bottom:737.240000pt;}
.y1c{bottom:739.016000pt;}
.y13b{bottom:741.225333pt;}
.yb{bottom:748.282667pt;}
.y108{bottom:751.088000pt;}
.y1b{bottom:752.892000pt;}
.yde{bottom:753.149333pt;}
.y11c{bottom:753.214667pt;}
.yc5{bottom:754.508000pt;}
.y13a{bottom:757.165333pt;}
.y1a{bottom:770.160000pt;}
.yc4{bottom:771.777333pt;}
.y139{bottom:773.105333pt;}
.ydd{bottom:774.402667pt;}
.ya0{bottom:783.488000pt;}
.y19{bottom:787.428000pt;}
.yc3{bottom:789.045333pt;}
.y9f{bottom:799.429333pt;}
.y75{bottom:799.709333pt;}
.y18{bottom:804.696000pt;}
.y138{bottom:804.985333pt;}
.yc2{bottom:806.314667pt;}
.y51{bottom:807.642667pt;}
.y107{bottom:808.805333pt;}
.y9e{bottom:815.369333pt;}
.y74{bottom:816.978667pt;}
.y137{bottom:820.926667pt;}
.y17{bottom:821.964000pt;}
.yc1{bottom:823.582667pt;}
.y106{bottom:824.745333pt;}
.y50{bottom:824.910667pt;}
.y9d{bottom:831.309333pt;}
.y73{bottom:834.246667pt;}
.y136{bottom:836.866667pt;}
.y16{bottom:839.232000pt;}
.y105{bottom:840.685333pt;}
.yc0{bottom:840.852000pt;}
.y4f{bottom:842.180000pt;}
.y15{bottom:856.500000pt;}
.y104{bottom:856.625333pt;}
.ybf{bottom:858.120000pt;}
.y4e{bottom:859.448000pt;}
.y135{bottom:860.777333pt;}
.y103{bottom:872.565333pt;}
.y14{bottom:873.768000pt;}
.ybe{bottom:875.388000pt;}
.y4d{bottom:876.717333pt;}
.y72{bottom:888.506667pt;}
.ybd{bottom:892.657333pt;}
.y4c{bottom:893.985333pt;}
.y71{bottom:904.446667pt;}
.y13{bottom:909.482667pt;}
.ybc{bottom:909.925333pt;}
.y4b{bottom:911.254667pt;}
.y70{bottom:920.386667pt;}
.ybb{bottom:927.194667pt;}
.y134{bottom:928.522667pt;}
.y4a{bottom:945.790667pt;}
.y6f{bottom:948.680000pt;}
.y44{bottom:1056.000000pt;}
.y6e{bottom:1058.666667pt;}
.y42{bottom:1069.333333pt;}
.y46{bottom:1082.666667pt;}
.y49{bottom:1101.186667pt;}
.y48{bottom:1111.853333pt;}
.h37{height:17.142699pt;}
.h35{height:17.142717pt;}
.h31{height:17.142773pt;}
.h13{height:23.687500pt;}
.h34{height:24.100324pt;}
.h2d{height:24.713903pt;}
.h33{height:25.549009pt;}
.h9{height:25.589931pt;}
.h11{height:27.234375pt;}
.h32{height:27.244384pt;}
.h41{height:27.442787pt;}
.h2f{height:28.793773pt;}
.h10{height:28.833333pt;}
.h26{height:29.488718pt;}
.hf{height:29.625000pt;}
.h25{height:30.140264pt;}
.h12{height:30.666667pt;}
.h39{height:30.974483pt;}
.h22{height:31.040756pt;}
.h36{height:33.061773pt;}
.h23{height:34.144832pt;}
.h24{height:35.696870pt;}
.h1c{height:36.556100pt;}
.hd{height:36.557568pt;}
.h2c{height:36.764333pt;}
.h1b{height:36.768636pt;}
.ha{height:37.195200pt;}
.hc{height:37.401728pt;}
.h3c{height:37.897492pt;}
.h1a{height:38.440964pt;}
.h29{height:38.626005pt;}
.h28{height:39.912761pt;}
.h17{height:40.029124pt;}
.h42{height:40.261852pt;}
.h8{height:40.726933pt;}
.h18{height:43.223744pt;}
.h3{height:43.636400pt;}
.h15{height:44.122658pt;}
.h1e{height:44.874530pt;}
.h27{height:44.879863pt;}
.hb{height:44.880597pt;}
.h3e{height:44.991232pt;}
.h14{height:46.933333pt;}
.h21{height:49.239305pt;}
.h20{height:49.255081pt;}
.h3f{height:49.265451pt;}
.h16{height:50.152418pt;}
.h1d{height:50.364954pt;}
.h7{height:50.874667pt;}
.h5{height:53.865199pt;}
.h3d{height:56.846239pt;}
.h2{height:57.384800pt;}
.h6{height:64.269333pt;}
.h3a{height:68.337791pt;}
.h4{height:68.861600pt;}
.h2a{height:74.051904pt;}
.h38{height:129.284800pt;}
.h30{height:142.809725pt;}
.h1f{height:178.649258pt;}
.h19{height:185.032848pt;}
.h2e{height:186.516720pt;}
.h2b{height:197.782871pt;}
.h3b{height:209.889175pt;}
.h40{height:285.066320pt;}
.he{height:1121.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:204.572387pt;}
.w7{width:233.603971pt;}
.w5{width:262.770309pt;}
.w6{width:263.111014pt;}
.w4{width:350.209082pt;}
.w8{width:467.580027pt;}
.w3{width:526.611594pt;}
.w9{width:555.253760pt;}
.w2{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:4.868275pt;}
.x30{left:10.775902pt;}
.x2c{left:12.685764pt;}
.x25{left:14.277679pt;}
.x28{left:17.340493pt;}
.x38{left:20.962568pt;}
.x27{left:23.684423pt;}
.x50{left:27.779985pt;}
.x1a{left:36.660570pt;}
.x3e{left:40.076748pt;}
.x3f{left:67.556377pt;}
.x5{left:75.590667pt;}
.x19{left:87.039408pt;}
.x9{left:96.000000pt;}
.x4{left:99.590667pt;}
.x13{left:101.333333pt;}
.xf{left:102.641333pt;}
.xe{left:104.501333pt;}
.x34{left:107.032301pt;}
.x2a{left:109.860000pt;}
.x39{left:112.077220pt;}
.xd{left:113.800000pt;}
.xa{left:115.712000pt;}
.x4d{left:117.254667pt;}
.x40{left:118.802966pt;}
.x44{left:120.665813pt;}
.x51{left:124.868000pt;}
.x17{left:126.552000pt;}
.x2b{left:129.641333pt;}
.x18{left:131.866667pt;}
.x4f{left:133.320603pt;}
.x3a{left:136.271639pt;}
.x3d{left:137.301815pt;}
.xb{left:139.709333pt;}
.x54{left:143.225408pt;}
.x53{left:147.126811pt;}
.x8{left:148.537333pt;}
.x42{left:156.496559pt;}
.x43{left:161.088000pt;}
.x1c{left:167.020954pt;}
.x12{left:172.000000pt;}
.x36{left:176.289562pt;}
.x37{left:179.356543pt;}
.x45{left:183.509000pt;}
.x1e{left:186.037333pt;}
.x2f{left:188.061855pt;}
.x15{left:195.173333pt;}
.x3b{left:197.246285pt;}
.x21{left:198.205333pt;}
.x41{left:210.597786pt;}
.xc{left:219.512000pt;}
.x35{left:223.824826pt;}
.x2{left:231.068000pt;}
.x20{left:232.954667pt;}
.x16{left:238.133333pt;}
.x46{left:247.795328pt;}
.x48{left:255.508000pt;}
.x4c{left:262.024000pt;}
.x31{left:263.574667pt;}
.x4b{left:265.976000pt;}
.x1d{left:266.932255pt;}
.x1b{left:270.918925pt;}
.x23{left:276.501333pt;}
.x33{left:277.986667pt;}
.x32{left:282.878667pt;}
.x1{left:291.625333pt;}
.x26{left:310.163960pt;}
.x3{left:318.356000pt;}
.x29{left:324.472976pt;}
.x24{left:343.327183pt;}
.x4a{left:356.456000pt;}
.x4e{left:362.931968pt;}
.x14{left:374.133333pt;}
.x47{left:375.306771pt;}
.x49{left:380.121333pt;}
.x1f{left:384.014667pt;}
.x10{left:393.218667pt;}
.x2d{left:396.290667pt;}
.x7{left:403.492000pt;}
.x2e{left:416.886667pt;}
.x6{left:427.492000pt;}
.x52{left:460.320000pt;}
.x11{left:593.880000pt;}
.x22{left:645.600000pt;}
}




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