
    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_81cb64703a54eedafbe9269b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936000;font-style:normal;font-weight: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_88ab961a8fc6ef69cf9daf75.woff')format("woff");}.ff2{font-family:ff2;line-height:0.912308;font-style:normal;font-weight: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_680b56a08a355898d2f27e19.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c3b9105b8a85cccd7a05a0be.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942871;font-style:normal;font-weight: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_c630c4573f63fe866cb22b2f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_759dd1838fa2b793b4d4794e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.939453;font-style:normal;font-weight: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_81cb64703a54eedafbe9269b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.936000;font-style:normal;font-weight: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_6c27ffe479eebaa15c705f70.woff')format("woff");}.ff8{font-family:ff8;line-height:0.943359;font-style:normal;font-weight: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_81cb64703a54eedafbe9269b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.936000;font-style:normal;font-weight: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_6288b5eabf8aa4dbd94b4169.woff')format("woff");}.ffa{font-family:ffa;line-height:0.890137;font-style:normal;font-weight: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_bbb62b2cbb6b9238371b55a0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.927734;font-style:normal;font-weight: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_4e61c81d2b292d96835dd266.woff')format("woff");}.ffc{font-family:ffc;line-height:0.781000;font-style:normal;font-weight: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_37f9ca6bc4ba8552064eb732.woff')format("woff");}.ffd{font-family:ffd;line-height:0.912308;font-style:normal;font-weight: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_ffe2bf81116bebd526f111d2.woff')format("woff");}.ffe{font-family:ffe;line-height:0.715820;font-style:normal;font-weight: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_bb96b4e444b1bce5ae859111.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_81cb64703a54eedafbe9269b.woff')format("woff");}.ff10{font-family:ff10;line-height:0.936000;font-style:normal;font-weight: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_1f8a517f1b672d28aecda333.woff')format("woff");}.ff11{font-family:ff11;line-height:0.890137;font-style:normal;font-weight: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_444b7fdbc742f9818191e492.woff')format("woff");}.ff12{font-family:ff12;line-height:0.927734;font-style:normal;font-weight: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_4e61c81d2b292d96835dd266.woff')format("woff");}.ff13{font-family:ff13;line-height:0.781000;font-style:normal;font-weight: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_37f9ca6bc4ba8552064eb732.woff')format("woff");}.ff14{font-family:ff14;line-height:0.912308;font-style:normal;font-weight: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_ffe2bf81116bebd526f111d2.woff')format("woff");}.ff15{font-family:ff15;line-height:0.715820;font-style:normal;font-weight: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_bb96b4e444b1bce5ae859111.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_4e61c81d2b292d96835dd266.woff')format("woff");}.ff17{font-family:ff17;line-height:0.781000;font-style:normal;font-weight: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_37f9ca6bc4ba8552064eb732.woff')format("woff");}.ff18{font-family:ff18;line-height:0.912308;font-style:normal;font-weight: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_ffe2bf81116bebd526f111d2.woff')format("woff");}.ff19{font-family:ff19;line-height:0.715820;font-style:normal;font-weight: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_bb96b4e444b1bce5ae859111.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_c85071ec9fb0d571f92307c6.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.890137;font-style:normal;font-weight: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_936a513484dfe8e2fd825496.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.927734;font-style:normal;font-weight: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_4e61c81d2b292d96835dd266.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.781000;font-style:normal;font-weight: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_81cb64703a54eedafbe9269b.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.936000;font-style:normal;font-weight: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_37f9ca6bc4ba8552064eb732.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.912308;font-style:normal;font-weight: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_ffe2bf81116bebd526f111d2.woff')format("woff");}.ff20{font-family:ff20;line-height:0.715820;font-style:normal;font-weight: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_bb96b4e444b1bce5ae859111.woff')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_c85071ec9fb0d571f92307c6.woff')format("woff");}.ff22{font-family:ff22;line-height:0.890137;font-style:normal;font-weight: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_936a513484dfe8e2fd825496.woff')format("woff");}.ff23{font-family:ff23;line-height:0.927734;font-style:normal;font-weight: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_4e61c81d2b292d96835dd266.woff')format("woff");}.ff24{font-family:ff24;line-height:0.781000;font-style:normal;font-weight: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_81cb64703a54eedafbe9269b.woff')format("woff");}.ff25{font-family:ff25;line-height:0.936000;font-style:normal;font-weight: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_37f9ca6bc4ba8552064eb732.woff')format("woff");}.ff26{font-family:ff26;line-height:0.912308;font-style:normal;font-weight: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_ffe2bf81116bebd526f111d2.woff')format("woff");}.ff27{font-family:ff27;line-height:0.715820;font-style:normal;font-weight: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_bb96b4e444b1bce5ae859111.woff')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_e8487f6a1ad46c1e956e225f.woff')format("woff");}.ff29{font-family:ff29;line-height:0.861328;font-style:normal;font-weight: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_071f180681f3bed020295d92.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.142000px;}
.v2{vertical-align:6.046800px;}
.ls9{letter-spacing:-4.950000px;}
.lsd{letter-spacing:-1.998000px;}
.lsf{letter-spacing:-1.650000px;}
.lse{letter-spacing:-1.320000px;}
.lsb{letter-spacing:-0.924000px;}
.lsa{letter-spacing:-0.462000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001200px;}
.ls6{letter-spacing:0.003600px;}
.ls5{letter-spacing:8.640000px;}
.ls0{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.200000px;}
.lsc{letter-spacing:14.400000px;}
.ls2{letter-spacing:19.585200px;}
.ls8{letter-spacing:28.800000px;}
.ls4{letter-spacing:36.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws21{word-spacing:-98.766600px;}
.wsb{word-spacing:-92.160000px;}
.wsa{word-spacing:-75.600000px;}
.ws86{word-spacing:-72.479400px;}
.ws22{word-spacing:-36.180000px;}
.ws5{word-spacing:-25.812000px;}
.wsee{word-spacing:-20.016000px;}
.ws91{word-spacing:-15.012000px;}
.wsd{word-spacing:-14.520000px;}
.ws9c{word-spacing:-14.400000px;}
.ws8a{word-spacing:-14.322000px;}
.ws7c{word-spacing:-14.256000px;}
.ws23{word-spacing:-14.190000px;}
.ws48{word-spacing:-14.124000px;}
.ws46{word-spacing:-14.058000px;}
.ws43{word-spacing:-13.992000px;}
.ws32{word-spacing:-13.926000px;}
.ws2b{word-spacing:-13.860000px;}
.ws70{word-spacing:-13.794000px;}
.ws28{word-spacing:-13.728000px;}
.ws4e{word-spacing:-13.662000px;}
.ws47{word-spacing:-13.596000px;}
.ws8c{word-spacing:-13.464000px;}
.ws2e{word-spacing:-13.398000px;}
.ws5c{word-spacing:-13.332000px;}
.ws8e{word-spacing:-13.266000px;}
.ws57{word-spacing:-13.200000px;}
.wsc0{word-spacing:-13.014000px;}
.ws69{word-spacing:-13.002000px;}
.ws6{word-spacing:-12.960000px;}
.ws5e{word-spacing:-12.936000px;}
.ws77{word-spacing:-12.870000px;}
.ws49{word-spacing:-12.804000px;}
.ws1a{word-spacing:-12.672000px;}
.ws39{word-spacing:-12.540000px;}
.ws79{word-spacing:-12.474000px;}
.ws2c{word-spacing:-12.408000px;}
.ws3f{word-spacing:-12.342000px;}
.ws42{word-spacing:-12.144000px;}
.ws84{word-spacing:-12.012000px;}
.ws61{word-spacing:-11.880000px;}
.ws53{word-spacing:-11.748000px;}
.ws74{word-spacing:-11.682000px;}
.ws5f{word-spacing:-11.550000px;}
.ws80{word-spacing:-11.484000px;}
.ws3d{word-spacing:-11.286000px;}
.ws3b{word-spacing:-11.154000px;}
.ws54{word-spacing:-11.088000px;}
.ws64{word-spacing:-11.022000px;}
.ws5a{word-spacing:-10.956000px;}
.ws38{word-spacing:-10.890000px;}
.ws51{word-spacing:-10.824000px;}
.ws71{word-spacing:-10.692000px;}
.ws16{word-spacing:-10.560000px;}
.ws3c{word-spacing:-10.494000px;}
.ws37{word-spacing:-10.428000px;}
.ws13{word-spacing:-10.362000px;}
.ws2d{word-spacing:-10.296000px;}
.ws1c{word-spacing:-10.032000px;}
.ws7e{word-spacing:-9.900000px;}
.ws82{word-spacing:-9.636000px;}
.wsc{word-spacing:-9.570000px;}
.ws14{word-spacing:-9.504000px;}
.ws50{word-spacing:-9.372000px;}
.ws6f{word-spacing:-9.306000px;}
.ws90{word-spacing:-9.240000px;}
.ws68{word-spacing:-9.174000px;}
.ws52{word-spacing:-9.108000px;}
.ws8b{word-spacing:-8.976000px;}
.ws25{word-spacing:-8.910000px;}
.ws2f{word-spacing:-8.844000px;}
.ws6b{word-spacing:-8.580000px;}
.ws63{word-spacing:-8.514000px;}
.ws75{word-spacing:-8.448000px;}
.ws72{word-spacing:-8.250000px;}
.ws78{word-spacing:-8.118000px;}
.ws1f{word-spacing:-7.920000px;}
.ws1d{word-spacing:-7.788000px;}
.ws81{word-spacing:-7.722000px;}
.ws55{word-spacing:-7.656000px;}
.ws6d{word-spacing:-7.524000px;}
.ws36{word-spacing:-7.458000px;}
.ws26{word-spacing:-7.392000px;}
.ws4f{word-spacing:-7.260000px;}
.ws4b{word-spacing:-7.128000px;}
.ws3e{word-spacing:-6.996000px;}
.ws7b{word-spacing:-6.864000px;}
.ws66{word-spacing:-6.666000px;}
.ws56{word-spacing:-6.600000px;}
.ws5b{word-spacing:-6.204000px;}
.ws6c{word-spacing:-6.138000px;}
.ws6e{word-spacing:-6.072000px;}
.ws11{word-spacing:-5.940000px;}
.ws33{word-spacing:-5.874000px;}
.ws76{word-spacing:-5.808000px;}
.ws15{word-spacing:-5.610000px;}
.ws58{word-spacing:-5.478000px;}
.ws27{word-spacing:-5.346000px;}
.wse{word-spacing:-5.280000px;}
.ws5d{word-spacing:-5.214000px;}
.ws67{word-spacing:-5.148000px;}
.ws4d{word-spacing:-5.016000px;}
.ws2a{word-spacing:-4.950000px;}
.wsbf{word-spacing:-4.800000px;}
.ws1e{word-spacing:-4.752000px;}
.ws83{word-spacing:-4.554000px;}
.ws40{word-spacing:-4.488000px;}
.ws8d{word-spacing:-4.422000px;}
.ws62{word-spacing:-4.290000px;}
.ws30{word-spacing:-4.224000px;}
.ws7f{word-spacing:-4.222800px;}
.ws19{word-spacing:-4.158000px;}
.ws6a{word-spacing:-4.026000px;}
.ws87{word-spacing:-3.985800px;}
.wsef{word-spacing:-3.960000px;}
.wsac{word-spacing:-3.900000px;}
.ws31{word-spacing:-3.894000px;}
.ws24{word-spacing:-3.762000px;}
.ws65{word-spacing:-3.696000px;}
.ws89{word-spacing:-3.630000px;}
.ws4a{word-spacing:-3.564000px;}
.ws59{word-spacing:-3.498000px;}
.ws88{word-spacing:-3.356400px;}
.ws29{word-spacing:-3.300000px;}
.ws41{word-spacing:-3.234000px;}
.ws94{word-spacing:-3.186000px;}
.wsa1{word-spacing:-3.180000px;}
.ws7d{word-spacing:-3.102000px;}
.wsd6{word-spacing:-3.000000px;}
.ws12{word-spacing:-2.970000px;}
.ws93{word-spacing:-2.916000px;}
.wsf{word-spacing:-2.904000px;}
.ws34{word-spacing:-2.772000px;}
.ws17{word-spacing:-2.706000px;}
.ws3a{word-spacing:-2.574000px;}
.ws18{word-spacing:-2.508000px;}
.ws73{word-spacing:-2.442000px;}
.wsc6{word-spacing:-2.400000px;}
.ws60{word-spacing:-2.376000px;}
.ws8f{word-spacing:-2.244000px;}
.ws1{word-spacing:-2.220000px;}
.ws45{word-spacing:-2.178000px;}
.ws7a{word-spacing:-2.112000px;}
.ws2{word-spacing:-1.998000px;}
.ws4c{word-spacing:-1.980000px;}
.wse4{word-spacing:-1.920000px;}
.ws44{word-spacing:-1.848000px;}
.wscb{word-spacing:-1.800000px;}
.ws10{word-spacing:-1.776000px;}
.ws1b{word-spacing:-1.716000px;}
.wsce{word-spacing:-1.500000px;}
.wsb5{word-spacing:-1.440000px;}
.wsbe{word-spacing:-1.380000px;}
.wsdd{word-spacing:-1.080000px;}
.ws3{word-spacing:-0.972000px;}
.ws35{word-spacing:-0.864000px;}
.ws0{word-spacing:0.000000px;}
.wsdb{word-spacing:0.120000px;}
.ws9f{word-spacing:0.300000px;}
.wsb9{word-spacing:0.420000px;}
.ws95{word-spacing:0.594000px;}
.wsda{word-spacing:0.600000px;}
.wse5{word-spacing:0.900000px;}
.wsd3{word-spacing:1.020000px;}
.wsb6{word-spacing:1.140000px;}
.wse7{word-spacing:1.200000px;}
.wsb8{word-spacing:1.260000px;}
.wsd1{word-spacing:1.380000px;}
.wse8{word-spacing:1.440000px;}
.wsd4{word-spacing:1.620000px;}
.wsd7{word-spacing:1.680000px;}
.wsae{word-spacing:1.860000px;}
.wsbc{word-spacing:2.460000px;}
.wsb1{word-spacing:2.760000px;}
.wsec{word-spacing:3.360000px;}
.ws96{word-spacing:3.564000px;}
.wsd5{word-spacing:3.900000px;}
.ws97{word-spacing:4.104000px;}
.wsa0{word-spacing:4.140000px;}
.wsdf{word-spacing:4.260000px;}
.wsc5{word-spacing:4.560000px;}
.wsc8{word-spacing:5.160000px;}
.wsbd{word-spacing:5.220000px;}
.wsca{word-spacing:5.400000px;}
.ws92{word-spacing:5.454000px;}
.wse9{word-spacing:5.460000px;}
.wsa7{word-spacing:5.700000px;}
.ws99{word-spacing:5.886000px;}
.ws9a{word-spacing:6.750000px;}
.ws9d{word-spacing:7.260000px;}
.wsd0{word-spacing:7.380000px;}
.wsaf{word-spacing:7.440000px;}
.wsc7{word-spacing:7.500000px;}
.wsa4{word-spacing:7.800000px;}
.wsb7{word-spacing:8.340000px;}
.wsde{word-spacing:8.760000px;}
.ws98{word-spacing:8.802000px;}
.wse1{word-spacing:9.180000px;}
.wsa8{word-spacing:9.300000px;}
.wsa6{word-spacing:9.420000px;}
.wsb0{word-spacing:9.480000px;}
.wsc4{word-spacing:9.780000px;}
.wsa9{word-spacing:10.020000px;}
.wsb2{word-spacing:10.380000px;}
.wsea{word-spacing:10.500000px;}
.wsbb{word-spacing:10.680000px;}
.wseb{word-spacing:11.100000px;}
.wsad{word-spacing:11.160000px;}
.wsd2{word-spacing:11.340000px;}
.wse6{word-spacing:11.460000px;}
.wsba{word-spacing:11.640000px;}
.ws9e{word-spacing:11.880000px;}
.wse2{word-spacing:13.080000px;}
.wsa2{word-spacing:13.620000px;}
.wse0{word-spacing:13.980000px;}
.wsb4{word-spacing:14.700000px;}
.wsaa{word-spacing:14.940000px;}
.wscc{word-spacing:15.360000px;}
.wsdc{word-spacing:16.380000px;}
.wsd9{word-spacing:18.480000px;}
.wsb3{word-spacing:19.380000px;}
.wsed{word-spacing:19.494000px;}
.ws7{word-spacing:20.574000px;}
.wsab{word-spacing:21.480000px;}
.wscf{word-spacing:21.720000px;}
.wsa5{word-spacing:22.200000px;}
.wsc9{word-spacing:22.800000px;}
.wsa3{word-spacing:22.920000px;}
.wscd{word-spacing:24.240000px;}
.wse3{word-spacing:28.200000px;}
.ws8{word-spacing:41.597400px;}
.ws9{word-spacing:41.633400px;}
.ws9b{word-spacing:66.634800px;}
.ws20{word-spacing:81.017400px;}
.ws4{word-spacing:101.888400px;}
.ws85{word-spacing:107.243400px;}
.wsc1{word-spacing:109.992000px;}
.wsd8{word-spacing:126.468000px;}
.wsc2{word-spacing:156.492000px;}
.wsc3{word-spacing:180.240000px;}
._f{margin-left:-2067.096000px;}
._35{margin-left:-1881.693600px;}
._2c{margin-left:-1721.301600px;}
._2a{margin-left:-1718.806800px;}
._3e{margin-left:-1698.882600px;}
._33{margin-left:-1597.708200px;}
._37{margin-left:-1537.439400px;}
._24{margin-left:-1473.690000px;}
._2e{margin-left:-1406.215800px;}
._26{margin-left:-1348.122600px;}
._7{margin-left:-1344.388800px;}
._42{margin-left:-1325.889000px;}
._2f{margin-left:-1314.353400px;}
._16{margin-left:-1272.573000px;}
._d{margin-left:-1238.490600px;}
._31{margin-left:-1212.406200px;}
._28{margin-left:-1194.318600px;}
._11{margin-left:-1134.312600px;}
._b{margin-left:-1121.347800px;}
._29{margin-left:-1086.210000px;}
._3a{margin-left:-1072.250400px;}
._1b{margin-left:-1068.670800px;}
._13{margin-left:-1065.258000px;}
._8{margin-left:-1053.270000px;}
._1d{margin-left:-1029.294000px;}
._9{margin-left:-998.220000px;}
._14{margin-left:-951.156000px;}
._34{margin-left:-937.422000px;}
._22{margin-left:-927.258600px;}
._10{margin-left:-924.264000px;}
._20{margin-left:-915.300000px;}
._17{margin-left:-897.210000px;}
._41{margin-left:-891.096000px;}
._3d{margin-left:-882.966000px;}
._1f{margin-left:-878.310000px;}
._12{margin-left:-861.192000px;}
._3b{margin-left:-858.276000px;}
._19{margin-left:-853.032000px;}
._30{margin-left:-840.294000px;}
._1a{margin-left:-838.440000px;}
._c{margin-left:-813.078000px;}
._15{margin-left:-796.932000px;}
._21{margin-left:-786.240000px;}
._1c{margin-left:-782.130000px;}
._1e{margin-left:-775.422000px;}
._32{margin-left:-767.210400px;}
._3f{margin-left:-762.156000px;}
._23{margin-left:-724.446000px;}
._39{margin-left:-705.240000px;}
._2b{margin-left:-696.222000px;}
._6{margin-left:-693.252000px;}
._3c{margin-left:-609.336000px;}
._5{margin-left:-571.860000px;}
._40{margin-left:-563.239800px;}
._18{margin-left:-480.864000px;}
._2d{margin-left:-441.126000px;}
._e{margin-left:-399.114000px;}
._27{margin-left:-389.048400px;}
._38{margin-left:-378.162000px;}
._36{margin-left:-366.120000px;}
._25{margin-left:-264.060000px;}
._4f{margin-left:-16.761600px;}
._47{margin-left:-13.186800px;}
._43{margin-left:-10.800000px;}
._49{margin-left:-9.106800px;}
._54{margin-left:-8.006400px;}
._a{margin-left:-6.993000px;}
._2{margin-left:-5.757600px;}
._3{margin-left:-4.017600px;}
._1{margin-left:-2.220000px;}
._4{margin-left:-1.043400px;}
._48{width:1.015200px;}
._0{width:2.196000px;}
._50{width:3.234600px;}
._4a{width:4.340400px;}
._4b{width:5.540400px;}
._4d{width:6.567600px;}
._46{width:8.532000px;}
._45{width:10.492200px;}
._4e{width:11.596800px;}
._53{width:13.593600px;}
._44{width:20.410200px;}
._52{width:22.327200px;}
._51{width:23.361000px;}
._5a{width:59.007600px;}
._55{width:195.252000px;}
._4c{width:204.448800px;}
._58{width:257.352000px;}
._56{width:287.376000px;}
._59{width:377.352000px;}
._57{width:407.376000px;}
.fca{color:rgb(105,198,71);}
.fc9{color:rgb(246,131,19);}
.fc8{color:rgb(68,114,196);}
.fc6{color:rgb(47,92,179);}
.fc5{color:rgb(210,32,39);}
.fc4{color:transparent;}
.fc7{color:rgb(90,198,243);}
.fc2{color:rgb(61,123,199);}
.fc3{color:rgb(48,169,64);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:126.000000px;}
.fs7{font-size:144.000000px;}
.fs4{font-size:180.000000px;}
.fs5{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:83.368950px;}
.y2{bottom:83.904450px;}
.y32{bottom:84.471900px;}
.y9a{bottom:85.007400px;}
.y31{bottom:127.558950px;}
.y59{bottom:127.559100px;}
.y156{bottom:131.165700px;}
.y19a{bottom:132.313800px;}
.y5d{bottom:135.315750px;}
.y26c{bottom:136.610400px;}
.y68{bottom:142.600050px;}
.y155{bottom:145.565700px;}
.y12f{bottom:146.713650px;}
.y30{bottom:146.811000px;}
.y58{bottom:148.011000px;}
.y14c{bottom:150.965700px;}
.y5c{bottom:151.515750px;}
.y1cb{bottom:152.071950px;}
.y26b{bottom:152.810400px;}
.ycd{bottom:155.194050px;}
.y173{bottom:156.365700px;}
.y230{bottom:160.584600px;}
.y67{bottom:160.600050px;}
.y12e{bottom:161.113800px;}
.y14b{bottom:165.365700px;}
.y2f{bottom:166.062900px;}
.y199{bottom:166.513800px;}
.y5b{bottom:167.715750px;}
.y57{bottom:168.463050px;}
.y22c{bottom:168.684600px;}
.y26a{bottom:169.010400px;}
.ycc{bottom:169.594050px;}
.y101{bottom:169.617600px;}
.y1ca{bottom:170.071950px;}
.y172{bottom:170.765700px;}
.y200{bottom:176.430450px;}
.y22f{bottom:176.784600px;}
.y66{bottom:178.600050px;}
.y12d{bottom:180.913650px;}
.y5a{bottom:183.915750px;}
.y100{bottom:184.017750px;}
.y22a{bottom:184.884600px;}
.y269{bottom:185.210400px;}
.y2e{bottom:185.314950px;}
.y1c9{bottom:188.071950px;}
.y56{bottom:188.914950px;}
.y14a{bottom:189.417600px;}
.y171{bottom:190.565700px;}
.y22e{bottom:192.984600px;}
.ycb{bottom:193.646100px;}
.y1ff{bottom:194.430450px;}
.y65{bottom:196.600050px;}
.y22b{bottom:201.084600px;}
.y268{bottom:201.410400px;}
.y149{bottom:203.817750px;}
.y2d{bottom:204.566850px;}
.y12c{bottom:204.965700px;}
.yca{bottom:208.045950px;}
.yff{bottom:208.069650px;}
.y22d{bottom:209.184600px;}
.y1a5{bottom:209.217750px;}
.y55{bottom:209.366850px;}
.y1fe{bottom:212.430450px;}
.y1c8{bottom:214.575900px;}
.y64{bottom:214.600050px;}
.y170{bottom:214.617600px;}
.y267{bottom:217.610400px;}
.y12b{bottom:219.365700px;}
.yfe{bottom:222.469650px;}
.y17c{bottom:223.617600px;}
.y2c{bottom:223.818900px;}
.y99{bottom:224.493600px;}
.y198{bottom:224.765700px;}
.yc9{bottom:227.845950px;}
.y148{bottom:227.869650px;}
.y16f{bottom:229.017750px;}
.y54{bottom:229.818900px;}
.y1fd{bottom:230.430450px;}
.y1c7{bottom:232.575900px;}
.y63{bottom:232.600050px;}
.y266{bottom:233.810400px;}
.y12a{bottom:239.165700px;}
.yfd{bottom:242.269650px;}
.y2b{bottom:243.070800px;}
.y1a4{bottom:243.417600px;}
.y98{bottom:244.945650px;}
.y17b{bottom:247.669650px;}
.y1fc{bottom:248.430450px;}
.y197{bottom:248.817750px;}
.y265{bottom:250.010400px;}
.y53{bottom:250.270800px;}
.y1c6{bottom:250.575900px;}
.y62{bottom:250.600050px;}
.yc8{bottom:251.898000px;}
.y229{bottom:252.280050px;}
.y16e{bottom:253.069650px;}
.y26e{bottom:253.855950px;}
.y225{bottom:260.380050px;}
.y147{bottom:262.069650px;}
.y2a{bottom:262.322700px;}
.y129{bottom:263.217750px;}
.y97{bottom:265.397550px;}
.y264{bottom:266.210400px;}
.yc7{bottom:266.298000px;}
.yfc{bottom:266.321550px;}
.y1fb{bottom:266.430450px;}
.y16d{bottom:267.469650px;}
.y228{bottom:268.480050px;}
.y1c5{bottom:268.575900px;}
.y61{bottom:268.600050px;}
.y52{bottom:270.722850px;}
.y26d{bottom:271.855950px;}
.y223{bottom:276.580050px;}
.y128{bottom:277.617600px;}
.yfb{bottom:280.721700px;}
.y29{bottom:281.574750px;}
.y1a3{bottom:281.869650px;}
.y263{bottom:282.410400px;}
.y1fa{bottom:284.430450px;}
.y227{bottom:284.680050px;}
.y96{bottom:285.849600px;}
.yc6{bottom:286.098000px;}
.y146{bottom:286.121550px;}
.y1c4{bottom:286.575900px;}
.y196{bottom:287.269650px;}
.y51{bottom:291.174750px;}
.y16c{bottom:291.521550px;}
.y224{bottom:292.780050px;}
.y60{bottom:295.104000px;}
.y262{bottom:298.610400px;}
.yfa{bottom:300.521550px;}
.y28{bottom:300.826650px;}
.y226{bottom:300.880050px;}
.y127{bottom:301.669650px;}
.y1f9{bottom:302.430450px;}
.y1c3{bottom:304.575900px;}
.y284{bottom:305.730000px;}
.y16b{bottom:305.921700px;}
.y95{bottom:306.301500px;}
.yc5{bottom:310.149900px;}
.y50{bottom:311.626800px;}
.y5f{bottom:313.104000px;}
.y261{bottom:314.810400px;}
.y126{bottom:316.069650px;}
.y27{bottom:320.078700px;}
.yf9{bottom:320.321550px;}
.y1f8{bottom:320.430450px;}
.y195{bottom:321.469650px;}
.y1c2{bottom:322.575900px;}
.yc4{bottom:324.549900px;}
.y145{bottom:324.573600px;}
.y283{bottom:325.530000px;}
.y1a2{bottom:325.721700px;}
.y94{bottom:326.753550px;}
.y222{bottom:328.752150px;}
.y16a{bottom:329.973600px;}
.y260{bottom:331.010400px;}
.y4f{bottom:332.078700px;}
.y21e{bottom:336.852150px;}
.y1f7{bottom:338.430450px;}
.y144{bottom:338.973600px;}
.y26{bottom:339.330600px;}
.y5e{bottom:339.607950px;}
.y125{bottom:340.121550px;}
.yc3{bottom:344.350050px;}
.yf8{bottom:344.373600px;}
.y221{bottom:344.952150px;}
.y282{bottom:345.330000px;}
.y194{bottom:345.521550px;}
.y93{bottom:347.205450px;}
.y25f{bottom:347.210400px;}
.y4e{bottom:352.530600px;}
.y21c{bottom:353.052150px;}
.y124{bottom:354.521550px;}
.y1f6{bottom:356.430450px;}
.y25{bottom:358.582650px;}
.yf7{bottom:358.773600px;}
.y193{bottom:359.921700px;}
.y220{bottom:361.152150px;}
.y19d{bottom:363.025500px;}
.y169{bottom:364.173600px;}
.y281{bottom:365.130000px;}
.y92{bottom:367.657500px;}
.yc2{bottom:368.401950px;}
.y21d{bottom:369.252150px;}
.y4d{bottom:372.982650px;}
.y1f5{bottom:374.430450px;}
.y21f{bottom:377.352150px;}
.y19c{bottom:377.425500px;}
.y24{bottom:377.834550px;}
.y1c1{bottom:377.964750px;}
.yf6{bottom:378.573600px;}
.y25e{bottom:381.410400px;}
.yc1{bottom:382.801950px;}
.y143{bottom:382.825500px;}
.y192{bottom:383.973600px;}
.y280{bottom:384.930000px;}
.y91{bottom:388.109400px;}
.y168{bottom:388.225500px;}
.y1f4{bottom:392.430450px;}
.y123{bottom:392.973600px;}
.y4c{bottom:393.434550px;}
.y1c0{bottom:395.964750px;}
.y23{bottom:397.086600px;}
.y142{bottom:397.225500px;}
.y191{bottom:398.373600px;}
.y25d{bottom:399.410400px;}
.yf5{bottom:402.625500px;}
.yc0{bottom:406.853850px;}
.y90{bottom:408.561450px;}
.y1f3{bottom:410.430450px;}
.y4b{bottom:413.886600px;}
.y21b{bottom:414.403800px;}
.y22{bottom:416.338500px;}
.yf4{bottom:417.025500px;}
.y25c{bottom:417.410400px;}
.y190{bottom:418.173600px;}
.ybf{bottom:421.253850px;}
.y141{bottom:421.277550px;}
.y167{bottom:422.425500px;}
.y1bf{bottom:422.468700px;}
.y217{bottom:422.503950px;}
.y1f2{bottom:428.430450px;}
.y8f{bottom:429.013350px;}
.y21a{bottom:430.603800px;}
.y122{bottom:431.425500px;}
.y279{bottom:432.045300px;}
.y4a{bottom:434.338500px;}
.y25b{bottom:435.410400px;}
.y21{bottom:435.590400px;}
.y140{bottom:435.677550px;}
.yf3{bottom:436.825500px;}
.y215{bottom:438.703800px;}
.y1be{bottom:440.468700px;}
.y17a{bottom:441.077550px;}
.y18f{bottom:442.225500px;}
.ybe{bottom:445.305900px;}
.y1f1{bottom:446.430450px;}
.y166{bottom:446.477550px;}
.y219{bottom:446.803800px;}
.y8e{bottom:449.465400px;}
.y278{bottom:451.845300px;}
.y25a{bottom:453.410400px;}
.y49{bottom:454.790550px;}
.y20{bottom:454.842450px;}
.y216{bottom:454.903800px;}
.y121{bottom:455.477550px;}
.y18e{bottom:456.625500px;}
.y1bd{bottom:458.468700px;}
.ybd{bottom:459.705900px;}
.y13f{bottom:459.729450px;}
.yf2{bottom:460.877550px;}
.y218{bottom:463.003950px;}
.y1f0{bottom:464.430450px;}
.y120{bottom:469.877550px;}
.y8d{bottom:469.917300px;}
.y259{bottom:471.410400px;}
.y277{bottom:471.645300px;}
.y1f{bottom:474.094500px;}
.y13e{bottom:474.129450px;}
.y48{bottom:475.242450px;}
.yf1{bottom:475.277550px;}
.y1bc{bottom:476.468700px;}
.ybc{bottom:479.505900px;}
.y19b{bottom:479.529450px;}
.y18d{bottom:480.677550px;}
.y1ef{bottom:482.430450px;}
.y165{bottom:484.929450px;}
.y258{bottom:489.410400px;}
.y8c{bottom:490.369200px;}
.y1e{bottom:493.346400px;}
.y11f{bottom:493.929450px;}
.y1bb{bottom:494.468700px;}
.y18c{bottom:495.077550px;}
.y47{bottom:495.694500px;}
.yf0{bottom:499.329450px;}
.y1ee{bottom:500.430450px;}
.y214{bottom:500.430600px;}
.ybb{bottom:503.557800px;}
.y257{bottom:507.410400px;}
.y11e{bottom:508.329450px;}
.y8b{bottom:510.821250px;}
.y1ba{bottom:512.468700px;}
.y1d{bottom:512.598300px;}
.yef{bottom:513.729450px;}
.y1a1{bottom:514.877550px;}
.y46{bottom:516.146400px;}
.yba{bottom:517.957800px;}
.y13d{bottom:517.981500px;}
.y1ed{bottom:518.430450px;}
.y213{bottom:518.430600px;}
.y27f{bottom:518.760750px;}
.y164{bottom:519.129450px;}
.y8a{bottom:531.273150px;}
.y1c{bottom:531.850350px;}
.y11d{bottom:532.381500px;}
.yee{bottom:533.529450px;}
.y256{bottom:533.914350px;}
.y1ec{bottom:536.430450px;}
.y45{bottom:536.598450px;}
.y154{bottom:537.781500px;}
.y27e{bottom:538.560750px;}
.y1a0{bottom:538.929450px;}
.yb9{bottom:542.009850px;}
.y163{bottom:543.181500px;}
.y11c{bottom:546.781500px;}
.y1b{bottom:551.102400px;}
.y89{bottom:551.725200px;}
.y13c{bottom:552.181500px;}
.y19f{bottom:553.329450px;}
.y212{bottom:554.430600px;}
.yb8{bottom:556.409850px;}
.y44{bottom:557.050350px;}
.yed{bottom:557.581500px;}
.y27d{bottom:558.360600px;}
.y1eb{bottom:562.934400px;}
.y1b9{bottom:566.125050px;}
.y1a{bottom:570.354300px;}
.y11b{bottom:570.833400px;}
.yec{bottom:571.981500px;}
.y211{bottom:572.430600px;}
.y255{bottom:573.514350px;}
.y13b{bottom:576.233400px;}
.y19e{bottom:577.381500px;}
.y43{bottom:577.502400px;}
.y27c{bottom:578.160750px;}
.yb7{bottom:580.461750px;}
.y162{bottom:581.633400px;}
.y1b8{bottom:584.125050px;}
.y11a{bottom:585.233400px;}
.y19{bottom:589.606200px;}
.y210{bottom:590.430600px;}
.y13a{bottom:590.633400px;}
.y254{bottom:591.514350px;}
.y18b{bottom:591.781500px;}
.y88{bottom:594.452400px;}
.yb6{bottom:594.861750px;}
.yeb{bottom:596.033400px;}
.y42{bottom:597.954300px;}
.y27b{bottom:597.960600px;}
.y1ea{bottom:602.534400px;}
.y119{bottom:605.033400px;}
.y20f{bottom:608.430600px;}
.y18{bottom:608.858250px;}
.y253{bottom:609.514350px;}
.yea{bottom:610.433400px;}
.y1b7{bottom:610.628850px;}
.y87{bottom:613.704300px;}
.yb5{bottom:614.661750px;}
.y139{bottom:614.685450px;}
.y18a{bottom:615.833400px;}
.y27a{bottom:617.760750px;}
.y41{bottom:618.406200px;}
.y161{bottom:620.085450px;}
.y1e9{bottom:620.534400px;}
.y20e{bottom:626.430600px;}
.y252{bottom:627.514350px;}
.y17{bottom:628.110150px;}
.y1b6{bottom:628.628850px;}
.y118{bottom:629.085450px;}
.y179{bottom:630.233400px;}
.y86{bottom:632.956350px;}
.ye9{bottom:634.485450px;}
.y1e8{bottom:638.534400px;}
.yb4{bottom:638.713800px;}
.y40{bottom:638.858250px;}
.y117{bottom:643.485450px;}
.y20d{bottom:644.430600px;}
.y251{bottom:645.514350px;}
.y1b5{bottom:646.628850px;}
.y16{bottom:647.362200px;}
.ye8{bottom:648.885450px;}
.y85{bottom:652.208250px;}
.yb3{bottom:653.113650px;}
.y178{bottom:654.285450px;}
.y1e7{bottom:656.534400px;}
.y160{bottom:658.537350px;}
.y3f{bottom:659.310150px;}
.y20c{bottom:662.430600px;}
.y116{bottom:663.285450px;}
.y250{bottom:663.514350px;}
.y1b4{bottom:664.628850px;}
.y15{bottom:666.614100px;}
.ye7{bottom:668.685450px;}
.y84{bottom:671.460300px;}
.yb2{bottom:672.913800px;}
.y138{bottom:672.937350px;}
.y1e6{bottom:674.534400px;}
.y276{bottom:677.952450px;}
.y3e{bottom:679.762200px;}
.y20b{bottom:680.430600px;}
.y24f{bottom:681.514350px;}
.y1b3{bottom:682.628850px;}
.y14{bottom:685.866000px;}
.y115{bottom:687.337350px;}
.y177{bottom:688.485450px;}
.y83{bottom:690.712350px;}
.y1e5{bottom:692.534400px;}
.ye6{bottom:692.737350px;}
.yb1{bottom:696.965700px;}
.y275{bottom:697.752450px;}
.y20a{bottom:698.430600px;}
.y24e{bottom:699.514350px;}
.y3d{bottom:700.214100px;}
.y1b2{bottom:700.628850px;}
.y114{bottom:701.737350px;}
.y13{bottom:705.118050px;}
.ye5{bottom:707.137350px;}
.y82{bottom:709.964250px;}
.y1e4{bottom:710.534400px;}
.yb0{bottom:711.365700px;}
.y176{bottom:712.537350px;}
.y209{bottom:716.430600px;}
.y15f{bottom:716.789400px;}
.y24d{bottom:717.514350px;}
.y274{bottom:717.552450px;}
.y1b1{bottom:718.628850px;}
.y3c{bottom:720.666150px;}
.y113{bottom:721.537350px;}
.y12{bottom:724.369950px;}
.y153{bottom:726.937350px;}
.y1e3{bottom:728.534400px;}
.y81{bottom:729.216150px;}
.ye4{bottom:731.189400px;}
.y208{bottom:734.430600px;}
.yaf{bottom:735.417600px;}
.y24c{bottom:735.514350px;}
.y273{bottom:737.352450px;}
.y3b{bottom:741.118050px;}
.y11{bottom:743.622000px;}
.ye3{bottom:745.589250px;}
.y1e2{bottom:746.534400px;}
.y189{bottom:746.737350px;}
.y80{bottom:748.468200px;}
.yae{bottom:749.817600px;}
.y152{bottom:750.989250px;}
.y207{bottom:752.430600px;}
.y24b{bottom:753.514350px;}
.y112{bottom:759.989250px;}
.y3a{bottom:761.570100px;}
.y10{bottom:762.873900px;}
.y1e1{bottom:764.534400px;}
.ye2{bottom:765.389400px;}
.y26f{bottom:766.563300px;}
.y7f{bottom:767.720100px;}
.yad{bottom:769.617750px;}
.y137{bottom:769.641300px;}
.y206{bottom:770.430600px;}
.y188{bottom:770.789400px;}
.y24a{bottom:771.514350px;}
.y15e{bottom:775.041300px;}
.y111{bottom:779.789400px;}
.y39{bottom:782.022000px;}
.yf{bottom:782.125950px;}
.y1e0{bottom:782.534400px;}
.y136{bottom:784.041300px;}
.y187{bottom:785.189250px;}
.y7e{bottom:786.972150px;}
.y205{bottom:788.430600px;}
.ye1{bottom:789.441300px;}
.y249{bottom:789.514350px;}
.y1b0{bottom:793.237500px;}
.yac{bottom:793.669650px;}
.y1df{bottom:800.534400px;}
.ye{bottom:801.378000px;}
.y38{bottom:802.474050px;}
.ye0{bottom:803.841300px;}
.y186{bottom:804.989250px;}
.y272{bottom:805.427700px;}
.y7d{bottom:806.224050px;}
.y204{bottom:806.430600px;}
.y248{bottom:807.514350px;}
.yab{bottom:808.069650px;}
.y135{bottom:808.093350px;}
.y1af{bottom:813.037500px;}
.y15d{bottom:813.493350px;}
.y110{bottom:818.241300px;}
.y1de{bottom:818.534400px;}
.yd{bottom:820.629900px;}
.y134{bottom:822.493350px;}
.y37{bottom:822.925950px;}
.ydf{bottom:823.641300px;}
.y203{bottom:824.430600px;}
.y7c{bottom:825.476100px;}
.y247{bottom:825.514350px;}
.y151{bottom:827.893200px;}
.y185{bottom:829.041300px;}
.yaa{bottom:832.121550px;}
.y1ae{bottom:832.837500px;}
.y271{bottom:835.531800px;}
.y1dd{bottom:836.534400px;}
.yc{bottom:839.881950px;}
.y10f{bottom:842.293200px;}
.y202{bottom:842.430600px;}
.y36{bottom:843.378000px;}
.y184{bottom:843.441300px;}
.y246{bottom:843.514350px;}
.y7b{bottom:844.728000px;}
.ya9{bottom:846.521700px;}
.yde{bottom:847.693200px;}
.y1ad{bottom:852.637500px;}
.y1dc{bottom:854.534400px;}
.y10e{bottom:856.693200px;}
.yb{bottom:859.133850px;}
.y245{bottom:861.514350px;}
.ydd{bottom:862.093350px;}
.y35{bottom:863.829900px;}
.y7a{bottom:863.980050px;}
.y270{bottom:865.635750px;}
.y133{bottom:866.345250px;}
.y183{bottom:867.493350px;}
.y201{bottom:868.934550px;}
.ya8{bottom:870.573600px;}
.y15c{bottom:871.745250px;}
.y1db{bottom:872.534400px;}
.y244{bottom:879.514350px;}
.y10d{bottom:880.745250px;}
.y182{bottom:881.893200px;}
.y79{bottom:883.232100px;}
.y34{bottom:884.281800px;}
.ya7{bottom:884.973600px;}
.ydc{bottom:886.145250px;}
.y1da{bottom:890.534400px;}
.y10c{bottom:895.145250px;}
.y243{bottom:897.514350px;}
.ydb{bottom:900.545250px;}
.y181{bottom:901.693200px;}
.y8{bottom:903.943050px;}
.y33{bottom:904.733850px;}
.ya6{bottom:904.773600px;}
.y132{bottom:904.797150px;}
.y1d9{bottom:908.534400px;}
.y15b{bottom:910.197300px;}
.y1ac{bottom:912.037500px;}
.y78{bottom:914.243400px;}
.y242{bottom:915.514350px;}
.y10b{bottom:919.197300px;}
.y150{bottom:920.345250px;}
.y7{bottom:921.943050px;}
.yda{bottom:924.597150px;}
.y180{bottom:925.745250px;}
.y1d8{bottom:926.534400px;}
.ya5{bottom:928.825500px;}
.y1ab{bottom:931.837500px;}
.y77{bottom:933.495300px;}
.y241{bottom:933.514350px;}
.y10a{bottom:933.597150px;}
.yd9{bottom:938.997300px;}
.y17f{bottom:940.145250px;}
.ya4{bottom:943.225500px;}
.y14f{bottom:944.397150px;}
.y1d7{bottom:944.534400px;}
.y6{bottom:948.446850px;}
.y240{bottom:951.514350px;}
.y1aa{bottom:951.637500px;}
.y76{bottom:952.747350px;}
.y109{bottom:953.397150px;}
.yd8{bottom:958.797150px;}
.y1d6{bottom:962.534400px;}
.ya3{bottom:963.025500px;}
.y131{bottom:963.049200px;}
.y17e{bottom:964.197300px;}
.y5{bottom:966.446850px;}
.y15a{bottom:968.449200px;}
.y23f{bottom:969.514350px;}
.y75{bottom:971.999250px;}
.y108{bottom:977.449200px;}
.y17d{bottom:978.597150px;}
.y1d5{bottom:980.534400px;}
.yd7{bottom:982.849200px;}
.ya2{bottom:987.077550px;}
.ya{bottom:987.166650px;}
.y74{bottom:991.251300px;}
.y107{bottom:991.849200px;}
.y4{bottom:992.950800px;}
.yd6{bottom:997.249200px;}
.y1d4{bottom:998.534400px;}
.ya1{bottom:1001.477550px;}
.y159{bottom:1002.649200px;}
.y1a9{bottom:1007.437350px;}
.y9{bottom:1008.766800px;}
.y73{bottom:1010.503200px;}
.y3{bottom:1010.950800px;}
.y106{bottom:1011.649200px;}
.y23e{bottom:1011.700200px;}
.y1d3{bottom:1016.534400px;}
.y14e{bottom:1017.049200px;}
.y23a{bottom:1019.800200px;}
.yd5{bottom:1021.301100px;}
.ya0{bottom:1025.529450px;}
.y158{bottom:1026.701100px;}
.y23d{bottom:1027.900200px;}
.y72{bottom:1029.755100px;}
.y1d2{bottom:1034.534400px;}
.yd4{bottom:1035.701100px;}
.y238{bottom:1036.000200px;}
.y9f{bottom:1039.929450px;}
.y14d{bottom:1041.101100px;}
.y23c{bottom:1044.100200px;}
.y71{bottom:1049.007150px;}
.y105{bottom:1050.101100px;}
.y1a8{bottom:1050.637500px;}
.y239{bottom:1052.200200px;}
.y1d1{bottom:1052.534400px;}
.yd3{bottom:1055.501100px;}
.y9e{bottom:1059.729450px;}
.y130{bottom:1059.753150px;}
.y23b{bottom:1060.300200px;}
.y157{bottom:1065.153150px;}
.y70{bottom:1068.259050px;}
.y1d0{bottom:1070.534400px;}
.y104{bottom:1074.153150px;}
.yd2{bottom:1079.553150px;}
.y6f{bottom:1087.511100px;}
.y1cf{bottom:1088.534400px;}
.y103{bottom:1088.553150px;}
.y1a7{bottom:1093.837500px;}
.yd1{bottom:1093.953150px;}
.y237{bottom:1094.087700px;}
.y233{bottom:1102.187700px;}
.y1ce{bottom:1106.534400px;}
.y6e{bottom:1106.763000px;}
.y9d{bottom:1109.035500px;}
.y236{bottom:1110.287700px;}
.y102{bottom:1112.605050px;}
.y175{bottom:1113.753150px;}
.yd0{bottom:1118.005050px;}
.y231{bottom:1118.387700px;}
.y1cd{bottom:1124.534400px;}
.y6d{bottom:1126.015050px;}
.y235{bottom:1126.487700px;}
.ycf{bottom:1132.405050px;}
.y232{bottom:1134.587700px;}
.y1a6{bottom:1137.037500px;}
.y174{bottom:1137.805050px;}
.y234{bottom:1142.687700px;}
.y6c{bottom:1145.267100px;}
.y1cc{bottom:1151.038350px;}
.yce{bottom:1152.205050px;}
.y6b{bottom:1164.518850px;}
.y6a{bottom:1183.770900px;}
.y9b{bottom:1201.511100px;}
.y9c{bottom:1203.022800px;}
.y69{bottom:1203.022950px;}
.h12{height:34.945312px;}
.h13{height:35.156250px;}
.h3{height:39.312000px;}
.h7{height:39.313477px;}
.h8{height:39.366211px;}
.h2{height:39.474000px;}
.h9{height:39.550781px;}
.hb{height:39.577148px;}
.ha{height:41.454000px;}
.h1d{height:42.568359px;}
.h4{height:43.681641px;}
.h18{height:43.740234px;}
.h5{height:43.945312px;}
.h1b{height:43.974609px;}
.h11{height:46.825195px;}
.h17{height:48.049805px;}
.hc{height:48.114258px;}
.h1c{height:48.234375px;}
.hd{height:48.372070px;}
.h19{height:50.308594px;}
.h1a{height:51.082031px;}
.h6{height:52.417969px;}
.h1f{height:52.488281px;}
.hf{height:52.560000px;}
.h1e{height:85.148438px;}
.h15{height:100.617188px;}
.h16{height:102.164062px;}
.he{height:127.705078px;}
.h14{height:127.705678px;}
.h10{height:201.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:68.031450px;}
.x1a{left:72.776850px;}
.x3a{left:74.406450px;}
.x17{left:84.189000px;}
.x3{left:96.944850px;}
.x1f{left:99.504600px;}
.x8{left:104.598450px;}
.x13{left:106.299150px;}
.x2{left:108.374100px;}
.x19{left:110.551200px;}
.x42{left:117.879900px;}
.x21{left:121.556850px;}
.x46{left:123.708900px;}
.x45{left:124.732050px;}
.x20{left:127.559100px;}
.x41{left:133.513800px;}
.x43{left:135.354750px;}
.x1c{left:140.314950px;}
.x1{left:142.368300px;}
.x23{left:167.340600px;}
.x22{left:168.843450px;}
.x24{left:180.860250px;}
.x47{left:197.802150px;}
.x1b{left:208.346400px;}
.x18{left:215.016000px;}
.x4b{left:227.937750px;}
.x25{left:231.629700px;}
.x26{left:236.883300px;}
.x4c{left:242.157600px;}
.x27{left:248.893500px;}
.x4d{left:256.192350px;}
.x3b{left:271.747950px;}
.x16{left:280.629900px;}
.x3e{left:286.271400px;}
.x38{left:301.511700px;}
.x29{left:304.170900px;}
.x28{left:311.286750px;}
.x44{left:329.282100px;}
.x48{left:345.007050px;}
.x3c{left:363.322950px;}
.x3f{left:368.097600px;}
.x49{left:389.464350px;}
.x2c{left:393.885150px;}
.x2b{left:396.749400px;}
.x4a{left:399.251700px;}
.x2a{left:408.756300px;}
.x5{left:439.674750px;}
.x40{left:461.720700px;}
.x2e{left:477.004050px;}
.x2d{left:493.134150px;}
.x6{left:511.976100px;}
.x2f{left:548.248200px;}
.x30{left:556.125450px;}
.xd{left:581.778450px;}
.x31{left:583.514400px;}
.x9{left:596.738100px;}
.x11{left:599.176800px;}
.x4{left:602.747100px;}
.xc{left:605.154750px;}
.xf{left:611.128800px;}
.xe{left:612.957600px;}
.xa{left:617.239800px;}
.xb{left:634.041900px;}
.x10{left:652.837950px;}
.x1e{left:654.652800px;}
.x12{left:656.048550px;}
.x32{left:663.717000px;}
.x33{left:673.851900px;}
.x3d{left:696.248100px;}
.x39{left:726.011850px;}
.x36{left:727.250550px;}
.x34{left:732.128550px;}
.x35{left:744.877050px;}
.x37{left:751.640250px;}
.x1d{left:772.793700px;}
.x15{left:776.033700px;}
.x14{left:855.139050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.904000pt;}
.v2{vertical-align:5.374933pt;}
.ls9{letter-spacing:-4.400000pt;}
.lsd{letter-spacing:-1.776000pt;}
.lsf{letter-spacing:-1.466667pt;}
.lse{letter-spacing:-1.173333pt;}
.lsb{letter-spacing:-0.821333pt;}
.lsa{letter-spacing:-0.410667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001067pt;}
.ls6{letter-spacing:0.003200pt;}
.ls5{letter-spacing:7.680000pt;}
.ls0{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.733333pt;}
.lsc{letter-spacing:12.800000pt;}
.ls2{letter-spacing:17.409067pt;}
.ls8{letter-spacing:25.600000pt;}
.ls4{letter-spacing:32.000000pt;}
.ws21{word-spacing:-87.792533pt;}
.wsb{word-spacing:-81.920000pt;}
.wsa{word-spacing:-67.200000pt;}
.ws86{word-spacing:-64.426133pt;}
.ws22{word-spacing:-32.160000pt;}
.ws5{word-spacing:-22.944000pt;}
.wsee{word-spacing:-17.792000pt;}
.ws91{word-spacing:-13.344000pt;}
.wsd{word-spacing:-12.906667pt;}
.ws9c{word-spacing:-12.800000pt;}
.ws8a{word-spacing:-12.730667pt;}
.ws7c{word-spacing:-12.672000pt;}
.ws23{word-spacing:-12.613333pt;}
.ws48{word-spacing:-12.554667pt;}
.ws46{word-spacing:-12.496000pt;}
.ws43{word-spacing:-12.437333pt;}
.ws32{word-spacing:-12.378667pt;}
.ws2b{word-spacing:-12.320000pt;}
.ws70{word-spacing:-12.261333pt;}
.ws28{word-spacing:-12.202667pt;}
.ws4e{word-spacing:-12.144000pt;}
.ws47{word-spacing:-12.085333pt;}
.ws8c{word-spacing:-11.968000pt;}
.ws2e{word-spacing:-11.909333pt;}
.ws5c{word-spacing:-11.850667pt;}
.ws8e{word-spacing:-11.792000pt;}
.ws57{word-spacing:-11.733333pt;}
.wsc0{word-spacing:-11.568000pt;}
.ws69{word-spacing:-11.557333pt;}
.ws6{word-spacing:-11.520000pt;}
.ws5e{word-spacing:-11.498667pt;}
.ws77{word-spacing:-11.440000pt;}
.ws49{word-spacing:-11.381333pt;}
.ws1a{word-spacing:-11.264000pt;}
.ws39{word-spacing:-11.146667pt;}
.ws79{word-spacing:-11.088000pt;}
.ws2c{word-spacing:-11.029333pt;}
.ws3f{word-spacing:-10.970667pt;}
.ws42{word-spacing:-10.794667pt;}
.ws84{word-spacing:-10.677333pt;}
.ws61{word-spacing:-10.560000pt;}
.ws53{word-spacing:-10.442667pt;}
.ws74{word-spacing:-10.384000pt;}
.ws5f{word-spacing:-10.266667pt;}
.ws80{word-spacing:-10.208000pt;}
.ws3d{word-spacing:-10.032000pt;}
.ws3b{word-spacing:-9.914667pt;}
.ws54{word-spacing:-9.856000pt;}
.ws64{word-spacing:-9.797333pt;}
.ws5a{word-spacing:-9.738667pt;}
.ws38{word-spacing:-9.680000pt;}
.ws51{word-spacing:-9.621333pt;}
.ws71{word-spacing:-9.504000pt;}
.ws16{word-spacing:-9.386667pt;}
.ws3c{word-spacing:-9.328000pt;}
.ws37{word-spacing:-9.269333pt;}
.ws13{word-spacing:-9.210667pt;}
.ws2d{word-spacing:-9.152000pt;}
.ws1c{word-spacing:-8.917333pt;}
.ws7e{word-spacing:-8.800000pt;}
.ws82{word-spacing:-8.565333pt;}
.wsc{word-spacing:-8.506667pt;}
.ws14{word-spacing:-8.448000pt;}
.ws50{word-spacing:-8.330667pt;}
.ws6f{word-spacing:-8.272000pt;}
.ws90{word-spacing:-8.213333pt;}
.ws68{word-spacing:-8.154667pt;}
.ws52{word-spacing:-8.096000pt;}
.ws8b{word-spacing:-7.978667pt;}
.ws25{word-spacing:-7.920000pt;}
.ws2f{word-spacing:-7.861333pt;}
.ws6b{word-spacing:-7.626667pt;}
.ws63{word-spacing:-7.568000pt;}
.ws75{word-spacing:-7.509333pt;}
.ws72{word-spacing:-7.333333pt;}
.ws78{word-spacing:-7.216000pt;}
.ws1f{word-spacing:-7.040000pt;}
.ws1d{word-spacing:-6.922667pt;}
.ws81{word-spacing:-6.864000pt;}
.ws55{word-spacing:-6.805333pt;}
.ws6d{word-spacing:-6.688000pt;}
.ws36{word-spacing:-6.629333pt;}
.ws26{word-spacing:-6.570667pt;}
.ws4f{word-spacing:-6.453333pt;}
.ws4b{word-spacing:-6.336000pt;}
.ws3e{word-spacing:-6.218667pt;}
.ws7b{word-spacing:-6.101333pt;}
.ws66{word-spacing:-5.925333pt;}
.ws56{word-spacing:-5.866667pt;}
.ws5b{word-spacing:-5.514667pt;}
.ws6c{word-spacing:-5.456000pt;}
.ws6e{word-spacing:-5.397333pt;}
.ws11{word-spacing:-5.280000pt;}
.ws33{word-spacing:-5.221333pt;}
.ws76{word-spacing:-5.162667pt;}
.ws15{word-spacing:-4.986667pt;}
.ws58{word-spacing:-4.869333pt;}
.ws27{word-spacing:-4.752000pt;}
.wse{word-spacing:-4.693333pt;}
.ws5d{word-spacing:-4.634667pt;}
.ws67{word-spacing:-4.576000pt;}
.ws4d{word-spacing:-4.458667pt;}
.ws2a{word-spacing:-4.400000pt;}
.wsbf{word-spacing:-4.266667pt;}
.ws1e{word-spacing:-4.224000pt;}
.ws83{word-spacing:-4.048000pt;}
.ws40{word-spacing:-3.989333pt;}
.ws8d{word-spacing:-3.930667pt;}
.ws62{word-spacing:-3.813333pt;}
.ws30{word-spacing:-3.754667pt;}
.ws7f{word-spacing:-3.753600pt;}
.ws19{word-spacing:-3.696000pt;}
.ws6a{word-spacing:-3.578667pt;}
.ws87{word-spacing:-3.542933pt;}
.wsef{word-spacing:-3.520000pt;}
.wsac{word-spacing:-3.466667pt;}
.ws31{word-spacing:-3.461333pt;}
.ws24{word-spacing:-3.344000pt;}
.ws65{word-spacing:-3.285333pt;}
.ws89{word-spacing:-3.226667pt;}
.ws4a{word-spacing:-3.168000pt;}
.ws59{word-spacing:-3.109333pt;}
.ws88{word-spacing:-2.983467pt;}
.ws29{word-spacing:-2.933333pt;}
.ws41{word-spacing:-2.874667pt;}
.ws94{word-spacing:-2.832000pt;}
.wsa1{word-spacing:-2.826667pt;}
.ws7d{word-spacing:-2.757333pt;}
.wsd6{word-spacing:-2.666667pt;}
.ws12{word-spacing:-2.640000pt;}
.ws93{word-spacing:-2.592000pt;}
.wsf{word-spacing:-2.581333pt;}
.ws34{word-spacing:-2.464000pt;}
.ws17{word-spacing:-2.405333pt;}
.ws3a{word-spacing:-2.288000pt;}
.ws18{word-spacing:-2.229333pt;}
.ws73{word-spacing:-2.170667pt;}
.wsc6{word-spacing:-2.133333pt;}
.ws60{word-spacing:-2.112000pt;}
.ws8f{word-spacing:-1.994667pt;}
.ws1{word-spacing:-1.973333pt;}
.ws45{word-spacing:-1.936000pt;}
.ws7a{word-spacing:-1.877333pt;}
.ws2{word-spacing:-1.776000pt;}
.ws4c{word-spacing:-1.760000pt;}
.wse4{word-spacing:-1.706667pt;}
.ws44{word-spacing:-1.642667pt;}
.wscb{word-spacing:-1.600000pt;}
.ws10{word-spacing:-1.578667pt;}
.ws1b{word-spacing:-1.525333pt;}
.wsce{word-spacing:-1.333333pt;}
.wsb5{word-spacing:-1.280000pt;}
.wsbe{word-spacing:-1.226667pt;}
.wsdd{word-spacing:-0.960000pt;}
.ws3{word-spacing:-0.864000pt;}
.ws35{word-spacing:-0.768000pt;}
.ws0{word-spacing:0.000000pt;}
.wsdb{word-spacing:0.106667pt;}
.ws9f{word-spacing:0.266667pt;}
.wsb9{word-spacing:0.373333pt;}
.ws95{word-spacing:0.528000pt;}
.wsda{word-spacing:0.533333pt;}
.wse5{word-spacing:0.800000pt;}
.wsd3{word-spacing:0.906667pt;}
.wsb6{word-spacing:1.013333pt;}
.wse7{word-spacing:1.066667pt;}
.wsb8{word-spacing:1.120000pt;}
.wsd1{word-spacing:1.226667pt;}
.wse8{word-spacing:1.280000pt;}
.wsd4{word-spacing:1.440000pt;}
.wsd7{word-spacing:1.493333pt;}
.wsae{word-spacing:1.653333pt;}
.wsbc{word-spacing:2.186667pt;}
.wsb1{word-spacing:2.453333pt;}
.wsec{word-spacing:2.986667pt;}
.ws96{word-spacing:3.168000pt;}
.wsd5{word-spacing:3.466667pt;}
.ws97{word-spacing:3.648000pt;}
.wsa0{word-spacing:3.680000pt;}
.wsdf{word-spacing:3.786667pt;}
.wsc5{word-spacing:4.053333pt;}
.wsc8{word-spacing:4.586667pt;}
.wsbd{word-spacing:4.640000pt;}
.wsca{word-spacing:4.800000pt;}
.ws92{word-spacing:4.848000pt;}
.wse9{word-spacing:4.853333pt;}
.wsa7{word-spacing:5.066667pt;}
.ws99{word-spacing:5.232000pt;}
.ws9a{word-spacing:6.000000pt;}
.ws9d{word-spacing:6.453333pt;}
.wsd0{word-spacing:6.560000pt;}
.wsaf{word-spacing:6.613333pt;}
.wsc7{word-spacing:6.666667pt;}
.wsa4{word-spacing:6.933333pt;}
.wsb7{word-spacing:7.413333pt;}
.wsde{word-spacing:7.786667pt;}
.ws98{word-spacing:7.824000pt;}
.wse1{word-spacing:8.160000pt;}
.wsa8{word-spacing:8.266667pt;}
.wsa6{word-spacing:8.373333pt;}
.wsb0{word-spacing:8.426667pt;}
.wsc4{word-spacing:8.693333pt;}
.wsa9{word-spacing:8.906667pt;}
.wsb2{word-spacing:9.226667pt;}
.wsea{word-spacing:9.333333pt;}
.wsbb{word-spacing:9.493333pt;}
.wseb{word-spacing:9.866667pt;}
.wsad{word-spacing:9.920000pt;}
.wsd2{word-spacing:10.080000pt;}
.wse6{word-spacing:10.186667pt;}
.wsba{word-spacing:10.346667pt;}
.ws9e{word-spacing:10.560000pt;}
.wse2{word-spacing:11.626667pt;}
.wsa2{word-spacing:12.106667pt;}
.wse0{word-spacing:12.426667pt;}
.wsb4{word-spacing:13.066667pt;}
.wsaa{word-spacing:13.280000pt;}
.wscc{word-spacing:13.653333pt;}
.wsdc{word-spacing:14.560000pt;}
.wsd9{word-spacing:16.426667pt;}
.wsb3{word-spacing:17.226667pt;}
.wsed{word-spacing:17.328000pt;}
.ws7{word-spacing:18.288000pt;}
.wsab{word-spacing:19.093333pt;}
.wscf{word-spacing:19.306667pt;}
.wsa5{word-spacing:19.733333pt;}
.wsc9{word-spacing:20.266667pt;}
.wsa3{word-spacing:20.373333pt;}
.wscd{word-spacing:21.546667pt;}
.wse3{word-spacing:25.066667pt;}
.ws8{word-spacing:36.975467pt;}
.ws9{word-spacing:37.007467pt;}
.ws9b{word-spacing:59.230933pt;}
.ws20{word-spacing:72.015467pt;}
.ws4{word-spacing:90.567467pt;}
.ws85{word-spacing:95.327467pt;}
.wsc1{word-spacing:97.770667pt;}
.wsd8{word-spacing:112.416000pt;}
.wsc2{word-spacing:139.104000pt;}
.wsc3{word-spacing:160.213333pt;}
._f{margin-left:-1837.418667pt;}
._35{margin-left:-1672.616533pt;}
._2c{margin-left:-1530.045867pt;}
._2a{margin-left:-1527.828267pt;}
._3e{margin-left:-1510.117867pt;}
._33{margin-left:-1420.185067pt;}
._37{margin-left:-1366.612800pt;}
._24{margin-left:-1309.946667pt;}
._2e{margin-left:-1249.969600pt;}
._26{margin-left:-1198.331200pt;}
._7{margin-left:-1195.012267pt;}
._42{margin-left:-1178.568000pt;}
._2f{margin-left:-1168.314133pt;}
._16{margin-left:-1131.176000pt;}
._d{margin-left:-1100.880533pt;}
._31{margin-left:-1077.694400pt;}
._28{margin-left:-1061.616533pt;}
._11{margin-left:-1008.277867pt;}
._b{margin-left:-996.753600pt;}
._29{margin-left:-965.520000pt;}
._3a{margin-left:-953.111467pt;}
._1b{margin-left:-949.929600pt;}
._13{margin-left:-946.896000pt;}
._8{margin-left:-936.240000pt;}
._1d{margin-left:-914.928000pt;}
._9{margin-left:-887.306667pt;}
._14{margin-left:-845.472000pt;}
._34{margin-left:-833.264000pt;}
._22{margin-left:-824.229867pt;}
._10{margin-left:-821.568000pt;}
._20{margin-left:-813.600000pt;}
._17{margin-left:-797.520000pt;}
._41{margin-left:-792.085333pt;}
._3d{margin-left:-784.858667pt;}
._1f{margin-left:-780.720000pt;}
._12{margin-left:-765.504000pt;}
._3b{margin-left:-762.912000pt;}
._19{margin-left:-758.250667pt;}
._30{margin-left:-746.928000pt;}
._1a{margin-left:-745.280000pt;}
._c{margin-left:-722.736000pt;}
._15{margin-left:-708.384000pt;}
._21{margin-left:-698.880000pt;}
._1c{margin-left:-695.226667pt;}
._1e{margin-left:-689.264000pt;}
._32{margin-left:-681.964800pt;}
._3f{margin-left:-677.472000pt;}
._23{margin-left:-643.952000pt;}
._39{margin-left:-626.880000pt;}
._2b{margin-left:-618.864000pt;}
._6{margin-left:-616.224000pt;}
._3c{margin-left:-541.632000pt;}
._5{margin-left:-508.320000pt;}
._40{margin-left:-500.657600pt;}
._18{margin-left:-427.434667pt;}
._2d{margin-left:-392.112000pt;}
._e{margin-left:-354.768000pt;}
._27{margin-left:-345.820800pt;}
._38{margin-left:-336.144000pt;}
._36{margin-left:-325.440000pt;}
._25{margin-left:-234.720000pt;}
._4f{margin-left:-14.899200pt;}
._47{margin-left:-11.721600pt;}
._43{margin-left:-9.600000pt;}
._49{margin-left:-8.094933pt;}
._54{margin-left:-7.116800pt;}
._a{margin-left:-6.216000pt;}
._2{margin-left:-5.117867pt;}
._3{margin-left:-3.571200pt;}
._1{margin-left:-1.973333pt;}
._4{margin-left:-0.927467pt;}
._48{width:0.902400pt;}
._0{width:1.952000pt;}
._50{width:2.875200pt;}
._4a{width:3.858133pt;}
._4b{width:4.924800pt;}
._4d{width:5.837867pt;}
._46{width:7.584000pt;}
._45{width:9.326400pt;}
._4e{width:10.308267pt;}
._53{width:12.083200pt;}
._44{width:18.142400pt;}
._52{width:19.846400pt;}
._51{width:20.765333pt;}
._5a{width:52.451200pt;}
._55{width:173.557333pt;}
._4c{width:181.732267pt;}
._58{width:228.757333pt;}
._56{width:255.445333pt;}
._59{width:335.424000pt;}
._57{width:362.112000pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:112.000000pt;}
.fs7{font-size:128.000000pt;}
.fs4{font-size:160.000000pt;}
.fs5{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:74.105733pt;}
.y2{bottom:74.581733pt;}
.y32{bottom:75.086133pt;}
.y9a{bottom:75.562133pt;}
.y31{bottom:113.385733pt;}
.y59{bottom:113.385867pt;}
.y156{bottom:116.591733pt;}
.y19a{bottom:117.612267pt;}
.y5d{bottom:120.280667pt;}
.y26c{bottom:121.431467pt;}
.y68{bottom:126.755600pt;}
.y155{bottom:129.391733pt;}
.y12f{bottom:130.412133pt;}
.y30{bottom:130.498667pt;}
.y58{bottom:131.565333pt;}
.y14c{bottom:134.191733pt;}
.y5c{bottom:134.680667pt;}
.y1cb{bottom:135.175067pt;}
.y26b{bottom:135.831467pt;}
.ycd{bottom:137.950267pt;}
.y173{bottom:138.991733pt;}
.y230{bottom:142.741867pt;}
.y67{bottom:142.755600pt;}
.y12e{bottom:143.212267pt;}
.y14b{bottom:146.991733pt;}
.y2f{bottom:147.611467pt;}
.y199{bottom:148.012267pt;}
.y5b{bottom:149.080667pt;}
.y57{bottom:149.744933pt;}
.y22c{bottom:149.941867pt;}
.y26a{bottom:150.231467pt;}
.ycc{bottom:150.750267pt;}
.y101{bottom:150.771200pt;}
.y1ca{bottom:151.175067pt;}
.y172{bottom:151.791733pt;}
.y200{bottom:156.827067pt;}
.y22f{bottom:157.141867pt;}
.y66{bottom:158.755600pt;}
.y12d{bottom:160.812133pt;}
.y5a{bottom:163.480667pt;}
.y100{bottom:163.571333pt;}
.y22a{bottom:164.341867pt;}
.y269{bottom:164.631467pt;}
.y2e{bottom:164.724400pt;}
.y1c9{bottom:167.175067pt;}
.y56{bottom:167.924400pt;}
.y14a{bottom:168.371200pt;}
.y171{bottom:169.391733pt;}
.y22e{bottom:171.541867pt;}
.ycb{bottom:172.129867pt;}
.y1ff{bottom:172.827067pt;}
.y65{bottom:174.755600pt;}
.y22b{bottom:178.741867pt;}
.y268{bottom:179.031467pt;}
.y149{bottom:181.171333pt;}
.y2d{bottom:181.837200pt;}
.y12c{bottom:182.191733pt;}
.yca{bottom:184.929733pt;}
.yff{bottom:184.950800pt;}
.y22d{bottom:185.941867pt;}
.y1a5{bottom:185.971333pt;}
.y55{bottom:186.103867pt;}
.y1fe{bottom:188.827067pt;}
.y1c8{bottom:190.734133pt;}
.y64{bottom:190.755600pt;}
.y170{bottom:190.771200pt;}
.y267{bottom:193.431467pt;}
.y12b{bottom:194.991733pt;}
.yfe{bottom:197.750800pt;}
.y17c{bottom:198.771200pt;}
.y2c{bottom:198.950133pt;}
.y99{bottom:199.549867pt;}
.y198{bottom:199.791733pt;}
.yc9{bottom:202.529733pt;}
.y148{bottom:202.550800pt;}
.y16f{bottom:203.571333pt;}
.y54{bottom:204.283467pt;}
.y1fd{bottom:204.827067pt;}
.y1c7{bottom:206.734133pt;}
.y63{bottom:206.755600pt;}
.y266{bottom:207.831467pt;}
.y12a{bottom:212.591733pt;}
.yfd{bottom:215.350800pt;}
.y2b{bottom:216.062933pt;}
.y1a4{bottom:216.371200pt;}
.y98{bottom:217.729467pt;}
.y17b{bottom:220.150800pt;}
.y1fc{bottom:220.827067pt;}
.y197{bottom:221.171333pt;}
.y265{bottom:222.231467pt;}
.y53{bottom:222.462933pt;}
.y1c6{bottom:222.734133pt;}
.y62{bottom:222.755600pt;}
.yc8{bottom:223.909333pt;}
.y229{bottom:224.248933pt;}
.y16e{bottom:224.950800pt;}
.y26e{bottom:225.649733pt;}
.y225{bottom:231.448933pt;}
.y147{bottom:232.950800pt;}
.y2a{bottom:233.175733pt;}
.y129{bottom:233.971333pt;}
.y97{bottom:235.908933pt;}
.y264{bottom:236.631467pt;}
.yc7{bottom:236.709333pt;}
.yfc{bottom:236.730267pt;}
.y1fb{bottom:236.827067pt;}
.y16d{bottom:237.750800pt;}
.y228{bottom:238.648933pt;}
.y1c5{bottom:238.734133pt;}
.y61{bottom:238.755600pt;}
.y52{bottom:240.642533pt;}
.y26d{bottom:241.649733pt;}
.y223{bottom:245.848933pt;}
.y128{bottom:246.771200pt;}
.yfb{bottom:249.530400pt;}
.y29{bottom:250.288667pt;}
.y1a3{bottom:250.550800pt;}
.y263{bottom:251.031467pt;}
.y1fa{bottom:252.827067pt;}
.y227{bottom:253.048933pt;}
.y96{bottom:254.088533pt;}
.yc6{bottom:254.309333pt;}
.y146{bottom:254.330267pt;}
.y1c4{bottom:254.734133pt;}
.y196{bottom:255.350800pt;}
.y51{bottom:258.822000pt;}
.y16c{bottom:259.130267pt;}
.y224{bottom:260.248933pt;}
.y60{bottom:262.314667pt;}
.y262{bottom:265.431467pt;}
.yfa{bottom:267.130267pt;}
.y28{bottom:267.401467pt;}
.y226{bottom:267.448933pt;}
.y127{bottom:268.150800pt;}
.y1f9{bottom:268.827067pt;}
.y1c3{bottom:270.734133pt;}
.y284{bottom:271.760000pt;}
.y16b{bottom:271.930400pt;}
.y95{bottom:272.268000pt;}
.yc5{bottom:275.688800pt;}
.y50{bottom:277.001600pt;}
.y5f{bottom:278.314667pt;}
.y261{bottom:279.831467pt;}
.y126{bottom:280.950800pt;}
.y27{bottom:284.514400pt;}
.yf9{bottom:284.730267pt;}
.y1f8{bottom:284.827067pt;}
.y195{bottom:285.750800pt;}
.y1c2{bottom:286.734133pt;}
.yc4{bottom:288.488800pt;}
.y145{bottom:288.509867pt;}
.y283{bottom:289.360000pt;}
.y1a2{bottom:289.530400pt;}
.y94{bottom:290.447600pt;}
.y222{bottom:292.224133pt;}
.y16a{bottom:293.309867pt;}
.y260{bottom:294.231467pt;}
.y4f{bottom:295.181067pt;}
.y21e{bottom:299.424133pt;}
.y1f7{bottom:300.827067pt;}
.y144{bottom:301.309867pt;}
.y26{bottom:301.627200pt;}
.y5e{bottom:301.873733pt;}
.y125{bottom:302.330267pt;}
.yc3{bottom:306.088933pt;}
.yf8{bottom:306.109867pt;}
.y221{bottom:306.624133pt;}
.y282{bottom:306.960000pt;}
.y194{bottom:307.130267pt;}
.y93{bottom:308.627067pt;}
.y25f{bottom:308.631467pt;}
.y4e{bottom:313.360533pt;}
.y21c{bottom:313.824133pt;}
.y124{bottom:315.130267pt;}
.y1f6{bottom:316.827067pt;}
.y25{bottom:318.740133pt;}
.yf7{bottom:318.909867pt;}
.y193{bottom:319.930400pt;}
.y220{bottom:321.024133pt;}
.y19d{bottom:322.689333pt;}
.y169{bottom:323.709867pt;}
.y281{bottom:324.560000pt;}
.y92{bottom:326.806667pt;}
.yc2{bottom:327.468400pt;}
.y21d{bottom:328.224133pt;}
.y4d{bottom:331.540133pt;}
.y1f5{bottom:332.827067pt;}
.y21f{bottom:335.424133pt;}
.y19c{bottom:335.489333pt;}
.y24{bottom:335.852933pt;}
.y1c1{bottom:335.968667pt;}
.yf6{bottom:336.509867pt;}
.y25e{bottom:339.031467pt;}
.yc1{bottom:340.268400pt;}
.y143{bottom:340.289333pt;}
.y192{bottom:341.309867pt;}
.y280{bottom:342.160000pt;}
.y91{bottom:344.986133pt;}
.y168{bottom:345.089333pt;}
.y1f4{bottom:348.827067pt;}
.y123{bottom:349.309867pt;}
.y4c{bottom:349.719600pt;}
.y1c0{bottom:351.968667pt;}
.y23{bottom:352.965867pt;}
.y142{bottom:353.089333pt;}
.y191{bottom:354.109867pt;}
.y25d{bottom:355.031467pt;}
.yf5{bottom:357.889333pt;}
.yc0{bottom:361.647867pt;}
.y90{bottom:363.165733pt;}
.y1f3{bottom:364.827067pt;}
.y4b{bottom:367.899200pt;}
.y21b{bottom:368.358933pt;}
.y22{bottom:370.078667pt;}
.yf4{bottom:370.689333pt;}
.y25c{bottom:371.031467pt;}
.y190{bottom:371.709867pt;}
.ybf{bottom:374.447867pt;}
.y141{bottom:374.468933pt;}
.y167{bottom:375.489333pt;}
.y1bf{bottom:375.527733pt;}
.y217{bottom:375.559067pt;}
.y1f2{bottom:380.827067pt;}
.y8f{bottom:381.345200pt;}
.y21a{bottom:382.758933pt;}
.y122{bottom:383.489333pt;}
.y279{bottom:384.040267pt;}
.y4a{bottom:386.078667pt;}
.y25b{bottom:387.031467pt;}
.y21{bottom:387.191467pt;}
.y140{bottom:387.268933pt;}
.yf3{bottom:388.289333pt;}
.y215{bottom:389.958933pt;}
.y1be{bottom:391.527733pt;}
.y17a{bottom:392.068933pt;}
.y18f{bottom:393.089333pt;}
.ybe{bottom:395.827467pt;}
.y1f1{bottom:396.827067pt;}
.y166{bottom:396.868933pt;}
.y219{bottom:397.158933pt;}
.y8e{bottom:399.524800pt;}
.y278{bottom:401.640267pt;}
.y25a{bottom:403.031467pt;}
.y49{bottom:404.258267pt;}
.y20{bottom:404.304400pt;}
.y216{bottom:404.358933pt;}
.y121{bottom:404.868933pt;}
.y18e{bottom:405.889333pt;}
.y1bd{bottom:407.527733pt;}
.ybd{bottom:408.627467pt;}
.y13f{bottom:408.648400pt;}
.yf2{bottom:409.668933pt;}
.y218{bottom:411.559067pt;}
.y1f0{bottom:412.827067pt;}
.y120{bottom:417.668933pt;}
.y8d{bottom:417.704267pt;}
.y259{bottom:419.031467pt;}
.y277{bottom:419.240267pt;}
.y1f{bottom:421.417333pt;}
.y13e{bottom:421.448400pt;}
.y48{bottom:422.437733pt;}
.yf1{bottom:422.468933pt;}
.y1bc{bottom:423.527733pt;}
.ybc{bottom:426.227467pt;}
.y19b{bottom:426.248400pt;}
.y18d{bottom:427.268933pt;}
.y1ef{bottom:428.827067pt;}
.y165{bottom:431.048400pt;}
.y258{bottom:435.031467pt;}
.y8c{bottom:435.883733pt;}
.y1e{bottom:438.530133pt;}
.y11f{bottom:439.048400pt;}
.y1bb{bottom:439.527733pt;}
.y18c{bottom:440.068933pt;}
.y47{bottom:440.617333pt;}
.yf0{bottom:443.848400pt;}
.y1ee{bottom:444.827067pt;}
.y214{bottom:444.827200pt;}
.ybb{bottom:447.606933pt;}
.y257{bottom:451.031467pt;}
.y11e{bottom:451.848400pt;}
.y8b{bottom:454.063333pt;}
.y1ba{bottom:455.527733pt;}
.y1d{bottom:455.642933pt;}
.yef{bottom:456.648400pt;}
.y1a1{bottom:457.668933pt;}
.y46{bottom:458.796800pt;}
.yba{bottom:460.406933pt;}
.y13d{bottom:460.428000pt;}
.y1ed{bottom:460.827067pt;}
.y213{bottom:460.827200pt;}
.y27f{bottom:461.120667pt;}
.y164{bottom:461.448400pt;}
.y8a{bottom:472.242800pt;}
.y1c{bottom:472.755867pt;}
.y11d{bottom:473.228000pt;}
.yee{bottom:474.248400pt;}
.y256{bottom:474.590533pt;}
.y1ec{bottom:476.827067pt;}
.y45{bottom:476.976400pt;}
.y154{bottom:478.028000pt;}
.y27e{bottom:478.720667pt;}
.y1a0{bottom:479.048400pt;}
.yb9{bottom:481.786533pt;}
.y163{bottom:482.828000pt;}
.y11c{bottom:486.028000pt;}
.y1b{bottom:489.868800pt;}
.y89{bottom:490.422400pt;}
.y13c{bottom:490.828000pt;}
.y19f{bottom:491.848400pt;}
.y212{bottom:492.827200pt;}
.yb8{bottom:494.586533pt;}
.y44{bottom:495.155867pt;}
.yed{bottom:495.628000pt;}
.y27d{bottom:496.320533pt;}
.y1eb{bottom:500.386133pt;}
.y1b9{bottom:503.222267pt;}
.y1a{bottom:506.981600pt;}
.y11b{bottom:507.407467pt;}
.yec{bottom:508.428000pt;}
.y211{bottom:508.827200pt;}
.y255{bottom:509.790533pt;}
.y13b{bottom:512.207467pt;}
.y19e{bottom:513.228000pt;}
.y43{bottom:513.335467pt;}
.y27c{bottom:513.920667pt;}
.yb7{bottom:515.966000pt;}
.y162{bottom:517.007467pt;}
.y1b8{bottom:519.222267pt;}
.y11a{bottom:520.207467pt;}
.y19{bottom:524.094400pt;}
.y210{bottom:524.827200pt;}
.y13a{bottom:525.007467pt;}
.y254{bottom:525.790533pt;}
.y18b{bottom:526.028000pt;}
.y88{bottom:528.402133pt;}
.yb6{bottom:528.766000pt;}
.yeb{bottom:529.807467pt;}
.y42{bottom:531.514933pt;}
.y27b{bottom:531.520533pt;}
.y1ea{bottom:535.586133pt;}
.y119{bottom:537.807467pt;}
.y20f{bottom:540.827200pt;}
.y18{bottom:541.207333pt;}
.y253{bottom:541.790533pt;}
.yea{bottom:542.607467pt;}
.y1b7{bottom:542.781200pt;}
.y87{bottom:545.514933pt;}
.yb5{bottom:546.366000pt;}
.y139{bottom:546.387067pt;}
.y18a{bottom:547.407467pt;}
.y27a{bottom:549.120667pt;}
.y41{bottom:549.694400pt;}
.y161{bottom:551.187067pt;}
.y1e9{bottom:551.586133pt;}
.y20e{bottom:556.827200pt;}
.y252{bottom:557.790533pt;}
.y17{bottom:558.320133pt;}
.y1b6{bottom:558.781200pt;}
.y118{bottom:559.187067pt;}
.y179{bottom:560.207467pt;}
.y86{bottom:562.627867pt;}
.ye9{bottom:563.987067pt;}
.y1e8{bottom:567.586133pt;}
.yb4{bottom:567.745600pt;}
.y40{bottom:567.874000pt;}
.y117{bottom:571.987067pt;}
.y20d{bottom:572.827200pt;}
.y251{bottom:573.790533pt;}
.y1b5{bottom:574.781200pt;}
.y16{bottom:575.433067pt;}
.ye8{bottom:576.787067pt;}
.y85{bottom:579.740667pt;}
.yb3{bottom:580.545467pt;}
.y178{bottom:581.587067pt;}
.y1e7{bottom:583.586133pt;}
.y160{bottom:585.366533pt;}
.y3f{bottom:586.053467pt;}
.y20c{bottom:588.827200pt;}
.y116{bottom:589.587067pt;}
.y250{bottom:589.790533pt;}
.y1b4{bottom:590.781200pt;}
.y15{bottom:592.545867pt;}
.ye7{bottom:594.387067pt;}
.y84{bottom:596.853600pt;}
.yb2{bottom:598.145600pt;}
.y138{bottom:598.166533pt;}
.y1e6{bottom:599.586133pt;}
.y276{bottom:602.624400pt;}
.y3e{bottom:604.233067pt;}
.y20b{bottom:604.827200pt;}
.y24f{bottom:605.790533pt;}
.y1b3{bottom:606.781200pt;}
.y14{bottom:609.658667pt;}
.y115{bottom:610.966533pt;}
.y177{bottom:611.987067pt;}
.y83{bottom:613.966533pt;}
.y1e5{bottom:615.586133pt;}
.ye6{bottom:615.766533pt;}
.yb1{bottom:619.525067pt;}
.y275{bottom:620.224400pt;}
.y20a{bottom:620.827200pt;}
.y24e{bottom:621.790533pt;}
.y3d{bottom:622.412533pt;}
.y1b2{bottom:622.781200pt;}
.y114{bottom:623.766533pt;}
.y13{bottom:626.771600pt;}
.ye5{bottom:628.566533pt;}
.y82{bottom:631.079333pt;}
.y1e4{bottom:631.586133pt;}
.yb0{bottom:632.325067pt;}
.y176{bottom:633.366533pt;}
.y209{bottom:636.827200pt;}
.y15f{bottom:637.146133pt;}
.y24d{bottom:637.790533pt;}
.y274{bottom:637.824400pt;}
.y1b1{bottom:638.781200pt;}
.y3c{bottom:640.592133pt;}
.y113{bottom:641.366533pt;}
.y12{bottom:643.884400pt;}
.y153{bottom:646.166533pt;}
.y1e3{bottom:647.586133pt;}
.y81{bottom:648.192133pt;}
.ye4{bottom:649.946133pt;}
.y208{bottom:652.827200pt;}
.yaf{bottom:653.704533pt;}
.y24c{bottom:653.790533pt;}
.y273{bottom:655.424400pt;}
.y3b{bottom:658.771600pt;}
.y11{bottom:660.997333pt;}
.ye3{bottom:662.746000pt;}
.y1e2{bottom:663.586133pt;}
.y189{bottom:663.766533pt;}
.y80{bottom:665.305067pt;}
.yae{bottom:666.504533pt;}
.y152{bottom:667.546000pt;}
.y207{bottom:668.827200pt;}
.y24b{bottom:669.790533pt;}
.y112{bottom:675.546000pt;}
.y3a{bottom:676.951200pt;}
.y10{bottom:678.110133pt;}
.y1e1{bottom:679.586133pt;}
.ye2{bottom:680.346133pt;}
.y26f{bottom:681.389600pt;}
.y7f{bottom:682.417867pt;}
.yad{bottom:684.104667pt;}
.y137{bottom:684.125600pt;}
.y206{bottom:684.827200pt;}
.y188{bottom:685.146133pt;}
.y24a{bottom:685.790533pt;}
.y15e{bottom:688.925600pt;}
.y111{bottom:693.146133pt;}
.y39{bottom:695.130667pt;}
.yf{bottom:695.223067pt;}
.y1e0{bottom:695.586133pt;}
.y136{bottom:696.925600pt;}
.y187{bottom:697.946000pt;}
.y7e{bottom:699.530800pt;}
.y205{bottom:700.827200pt;}
.ye1{bottom:701.725600pt;}
.y249{bottom:701.790533pt;}
.y1b0{bottom:705.100000pt;}
.yac{bottom:705.484133pt;}
.y1df{bottom:711.586133pt;}
.ye{bottom:712.336000pt;}
.y38{bottom:713.310267pt;}
.ye0{bottom:714.525600pt;}
.y186{bottom:715.546000pt;}
.y272{bottom:715.935733pt;}
.y7d{bottom:716.643600pt;}
.y204{bottom:716.827200pt;}
.y248{bottom:717.790533pt;}
.yab{bottom:718.284133pt;}
.y135{bottom:718.305200pt;}
.y1af{bottom:722.700000pt;}
.y15d{bottom:723.105200pt;}
.y110{bottom:727.325600pt;}
.y1de{bottom:727.586133pt;}
.yd{bottom:729.448800pt;}
.y134{bottom:731.105200pt;}
.y37{bottom:731.489733pt;}
.ydf{bottom:732.125600pt;}
.y203{bottom:732.827200pt;}
.y7c{bottom:733.756533pt;}
.y247{bottom:733.790533pt;}
.y151{bottom:735.905067pt;}
.y185{bottom:736.925600pt;}
.yaa{bottom:739.663600pt;}
.y1ae{bottom:740.300000pt;}
.y271{bottom:742.694933pt;}
.y1dd{bottom:743.586133pt;}
.yc{bottom:746.561733pt;}
.y10f{bottom:748.705067pt;}
.y202{bottom:748.827200pt;}
.y36{bottom:749.669333pt;}
.y184{bottom:749.725600pt;}
.y246{bottom:749.790533pt;}
.y7b{bottom:750.869333pt;}
.ya9{bottom:752.463733pt;}
.yde{bottom:753.505067pt;}
.y1ad{bottom:757.900000pt;}
.y1dc{bottom:759.586133pt;}
.y10e{bottom:761.505067pt;}
.yb{bottom:763.674533pt;}
.y245{bottom:765.790533pt;}
.ydd{bottom:766.305200pt;}
.y35{bottom:767.848800pt;}
.y7a{bottom:767.982267pt;}
.y270{bottom:769.454000pt;}
.y133{bottom:770.084667pt;}
.y183{bottom:771.105200pt;}
.y201{bottom:772.386267pt;}
.ya8{bottom:773.843200pt;}
.y15c{bottom:774.884667pt;}
.y1db{bottom:775.586133pt;}
.y244{bottom:781.790533pt;}
.y10d{bottom:782.884667pt;}
.y182{bottom:783.905067pt;}
.y79{bottom:785.095200pt;}
.y34{bottom:786.028267pt;}
.ya7{bottom:786.643200pt;}
.ydc{bottom:787.684667pt;}
.y1da{bottom:791.586133pt;}
.y10c{bottom:795.684667pt;}
.y243{bottom:797.790533pt;}
.ydb{bottom:800.484667pt;}
.y181{bottom:801.505067pt;}
.y8{bottom:803.504933pt;}
.y33{bottom:804.207867pt;}
.ya6{bottom:804.243200pt;}
.y132{bottom:804.264133pt;}
.y1d9{bottom:807.586133pt;}
.y15b{bottom:809.064267pt;}
.y1ac{bottom:810.700000pt;}
.y78{bottom:812.660800pt;}
.y242{bottom:813.790533pt;}
.y10b{bottom:817.064267pt;}
.y150{bottom:818.084667pt;}
.y7{bottom:819.504933pt;}
.yda{bottom:821.864133pt;}
.y180{bottom:822.884667pt;}
.y1d8{bottom:823.586133pt;}
.ya5{bottom:825.622667pt;}
.y1ab{bottom:828.300000pt;}
.y77{bottom:829.773600pt;}
.y241{bottom:829.790533pt;}
.y10a{bottom:829.864133pt;}
.yd9{bottom:834.664267pt;}
.y17f{bottom:835.684667pt;}
.ya4{bottom:838.422667pt;}
.y14f{bottom:839.464133pt;}
.y1d7{bottom:839.586133pt;}
.y6{bottom:843.063867pt;}
.y240{bottom:845.790533pt;}
.y1aa{bottom:845.900000pt;}
.y76{bottom:846.886533pt;}
.y109{bottom:847.464133pt;}
.yd8{bottom:852.264133pt;}
.y1d6{bottom:855.586133pt;}
.ya3{bottom:856.022667pt;}
.y131{bottom:856.043733pt;}
.y17e{bottom:857.064267pt;}
.y5{bottom:859.063867pt;}
.y15a{bottom:860.843733pt;}
.y23f{bottom:861.790533pt;}
.y75{bottom:863.999333pt;}
.y108{bottom:868.843733pt;}
.y17d{bottom:869.864133pt;}
.y1d5{bottom:871.586133pt;}
.yd7{bottom:873.643733pt;}
.ya2{bottom:877.402267pt;}
.ya{bottom:877.481467pt;}
.y74{bottom:881.112267pt;}
.y107{bottom:881.643733pt;}
.y4{bottom:882.622933pt;}
.yd6{bottom:886.443733pt;}
.y1d4{bottom:887.586133pt;}
.ya1{bottom:890.202267pt;}
.y159{bottom:891.243733pt;}
.y1a9{bottom:895.499867pt;}
.y9{bottom:896.681600pt;}
.y73{bottom:898.225067pt;}
.y3{bottom:898.622933pt;}
.y106{bottom:899.243733pt;}
.y23e{bottom:899.289067pt;}
.y1d3{bottom:903.586133pt;}
.y14e{bottom:904.043733pt;}
.y23a{bottom:906.489067pt;}
.yd5{bottom:907.823200pt;}
.ya0{bottom:911.581733pt;}
.y158{bottom:912.623200pt;}
.y23d{bottom:913.689067pt;}
.y72{bottom:915.337867pt;}
.y1d2{bottom:919.586133pt;}
.yd4{bottom:920.623200pt;}
.y238{bottom:920.889067pt;}
.y9f{bottom:924.381733pt;}
.y14d{bottom:925.423200pt;}
.y23c{bottom:928.089067pt;}
.y71{bottom:932.450800pt;}
.y105{bottom:933.423200pt;}
.y1a8{bottom:933.900000pt;}
.y239{bottom:935.289067pt;}
.y1d1{bottom:935.586133pt;}
.yd3{bottom:938.223200pt;}
.y9e{bottom:941.981733pt;}
.y130{bottom:942.002800pt;}
.y23b{bottom:942.489067pt;}
.y157{bottom:946.802800pt;}
.y70{bottom:949.563600pt;}
.y1d0{bottom:951.586133pt;}
.y104{bottom:954.802800pt;}
.yd2{bottom:959.602800pt;}
.y6f{bottom:966.676533pt;}
.y1cf{bottom:967.586133pt;}
.y103{bottom:967.602800pt;}
.y1a7{bottom:972.300000pt;}
.yd1{bottom:972.402800pt;}
.y237{bottom:972.522400pt;}
.y233{bottom:979.722400pt;}
.y1ce{bottom:983.586133pt;}
.y6e{bottom:983.789333pt;}
.y9d{bottom:985.809333pt;}
.y236{bottom:986.922400pt;}
.y102{bottom:988.982267pt;}
.y175{bottom:990.002800pt;}
.yd0{bottom:993.782267pt;}
.y231{bottom:994.122400pt;}
.y1cd{bottom:999.586133pt;}
.y6d{bottom:1000.902267pt;}
.y235{bottom:1001.322400pt;}
.ycf{bottom:1006.582267pt;}
.y232{bottom:1008.522400pt;}
.y1a6{bottom:1010.700000pt;}
.y174{bottom:1011.382267pt;}
.y234{bottom:1015.722400pt;}
.y6c{bottom:1018.015200pt;}
.y1cc{bottom:1023.145200pt;}
.yce{bottom:1024.182267pt;}
.y6b{bottom:1035.127867pt;}
.y6a{bottom:1052.240800pt;}
.y9b{bottom:1068.009867pt;}
.y9c{bottom:1069.353600pt;}
.y69{bottom:1069.353733pt;}
.h12{height:31.062500pt;}
.h13{height:31.250000pt;}
.h3{height:34.944000pt;}
.h7{height:34.945312pt;}
.h8{height:34.992188pt;}
.h2{height:35.088000pt;}
.h9{height:35.156250pt;}
.hb{height:35.179688pt;}
.ha{height:36.848000pt;}
.h1d{height:37.838542pt;}
.h4{height:38.828125pt;}
.h18{height:38.880208pt;}
.h5{height:39.062500pt;}
.h1b{height:39.088542pt;}
.h11{height:41.622396pt;}
.h17{height:42.710938pt;}
.hc{height:42.768229pt;}
.h1c{height:42.875000pt;}
.hd{height:42.997396pt;}
.h19{height:44.718750pt;}
.h1a{height:45.406250pt;}
.h6{height:46.593750pt;}
.h1f{height:46.656250pt;}
.hf{height:46.720000pt;}
.h1e{height:75.687500pt;}
.h15{height:89.437500pt;}
.h16{height:90.812500pt;}
.he{height:113.515625pt;}
.h14{height:113.516158pt;}
.h10{height:178.875000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:60.472400pt;}
.x1a{left:64.690533pt;}
.x3a{left:66.139067pt;}
.x17{left:74.834667pt;}
.x3{left:86.173200pt;}
.x1f{left:88.448533pt;}
.x8{left:92.976400pt;}
.x13{left:94.488133pt;}
.x2{left:96.332533pt;}
.x19{left:98.267733pt;}
.x42{left:104.782133pt;}
.x21{left:108.050533pt;}
.x46{left:109.963467pt;}
.x45{left:110.872933pt;}
.x20{left:113.385867pt;}
.x41{left:118.678933pt;}
.x43{left:120.315333pt;}
.x1c{left:124.724400pt;}
.x1{left:126.549600pt;}
.x23{left:148.747200pt;}
.x22{left:150.083067pt;}
.x24{left:160.764667pt;}
.x47{left:175.824133pt;}
.x1b{left:185.196800pt;}
.x18{left:191.125333pt;}
.x4b{left:202.611333pt;}
.x25{left:205.893067pt;}
.x26{left:210.562933pt;}
.x4c{left:215.251200pt;}
.x27{left:221.238667pt;}
.x4d{left:227.726533pt;}
.x3b{left:241.553733pt;}
.x16{left:249.448800pt;}
.x3e{left:254.463467pt;}
.x38{left:268.010400pt;}
.x29{left:270.374133pt;}
.x28{left:276.699333pt;}
.x44{left:292.695200pt;}
.x48{left:306.672933pt;}
.x3c{left:322.953733pt;}
.x3f{left:327.197867pt;}
.x49{left:346.190533pt;}
.x2c{left:350.120133pt;}
.x2b{left:352.666133pt;}
.x4a{left:354.890400pt;}
.x2a{left:363.338933pt;}
.x5{left:390.822000pt;}
.x40{left:410.418400pt;}
.x2e{left:424.003600pt;}
.x2d{left:438.341467pt;}
.x6{left:455.089867pt;}
.x2f{left:487.331733pt;}
.x30{left:494.333733pt;}
.xd{left:517.136400pt;}
.x31{left:518.679467pt;}
.x9{left:530.433867pt;}
.x11{left:532.601600pt;}
.x4{left:535.775200pt;}
.xc{left:537.915333pt;}
.xf{left:543.225600pt;}
.xe{left:544.851200pt;}
.xa{left:548.657600pt;}
.xb{left:563.592800pt;}
.x10{left:580.300400pt;}
.x1e{left:581.913600pt;}
.x12{left:583.154267pt;}
.x32{left:589.970667pt;}
.x33{left:598.979467pt;}
.x3d{left:618.887200pt;}
.x39{left:645.343867pt;}
.x36{left:646.444933pt;}
.x34{left:650.780933pt;}
.x35{left:662.112933pt;}
.x37{left:668.124667pt;}
.x1d{left:686.927733pt;}
.x15{left:689.807733pt;}
.x14{left:760.123600pt;}
}




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