
    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_84e6ff4f325c72c108ceb5bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight: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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight: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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight: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_4b09341ae7bcf14412723576.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;font-style:normal;font-weight: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_1fb09c82b2681f01666baef0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;font-style:normal;font-weight: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_4a919f27baaf7d88669b467a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;font-style:normal;font-weight: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_7771273deb5c575d90eb11e0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_92e6ae45f70aa6f931ce41b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;font-style:normal;font-weight: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_6a0d2bb879798f0a367ec726.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;font-style:normal;font-weight: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_9abe18a80771d2c1f8234dec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;font-style:normal;font-weight: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_ea9db8db8cffbe08d59543a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942000;font-style:normal;font-weight: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_48562bab5ffea6d597b0cfdc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.947000;font-style:normal;font-weight: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_06a7847955ad3cc1492b8a90.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.945000;font-style:normal;font-weight: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_89d6203246424ba8d8f3ca3e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.fff{font-family:fff;line-height:0.824000;font-style:normal;font-weight: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_993f86ba332e11c75d27476b.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.824000;font-style:normal;font-weight: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_608247e3a0ad3ac5fb0b4fc7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.680664;font-style:normal;font-weight: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_993f86ba332e11c75d27476b.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.824000;font-style:normal;font-weight: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_608247e3a0ad3ac5fb0b4fc7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.680664;font-style:normal;font-weight: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_993f86ba332e11c75d27476b.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.824000;font-style:normal;font-weight: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_03815fddd186a35c0935ace4.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_993f86ba332e11c75d27476b.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_da0debb6e50f24668efa9ac3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.956543;font-style:normal;font-weight: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_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.824000;font-style:normal;font-weight: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_f83974dedc9c98cffc0921c7.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.824000;font-style:normal;font-weight: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_993f86ba332e11c75d27476b.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_dea5095a8fad4a6ecc7aaaf3.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.824000;font-style:normal;font-weight: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_993f86ba332e11c75d27476b.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_993f86ba332e11c75d27476b.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_1a7b3283d163a9605e75f3bf.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.956543;font-style:normal;font-weight: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_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.824000;font-style:normal;font-weight: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_993f86ba332e11c75d27476b.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_cac12ccfd53c4b9246acf0d1.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_89d6203246424ba8d8f3ca3e.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_89d6203246424ba8d8f3ca3e.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.824000;font-style:normal;font-weight: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_993f86ba332e11c75d27476b.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_e4ccddb4e1ac37488e0d7a19.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.025879;font-style:normal;font-weight: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_993f86ba332e11c75d27476b.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.824000;font-style:normal;font-weight: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_03815fddd186a35c0935ace4.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_993f86ba332e11c75d27476b.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_da0debb6e50f24668efa9ac3.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.956543;font-style:normal;font-weight: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_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.824000;font-style:normal;font-weight: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_8e379a9b9695837c58c23cb9.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.824000;font-style:normal;font-weight: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_7296c736c28ab6204938de6c.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.142090;font-style:normal;font-weight: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_698437bc7a678528638da159.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.824000;font-style:normal;font-weight: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_993f86ba332e11c75d27476b.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_3ea585b3febbd1f0cb211fd2.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.840332;font-style:normal;font-weight: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_993f86ba332e11c75d27476b.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.824000;font-style:normal;font-weight: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_608247e3a0ad3ac5fb0b4fc7.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.680664;font-style:normal;font-weight: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_89d6203246424ba8d8f3ca3e.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.824000;font-style:normal;font-weight: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_89d6203246424ba8d8f3ca3e.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_993f86ba332e11c75d27476b.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_608247e3a0ad3ac5fb0b4fc7.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.680664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_89d6203246424ba8d8f3ca3e.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_993f86ba332e11c75d27476b.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_608247e3a0ad3ac5fb0b4fc7.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.680664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_993f86ba332e11c75d27476b.woff2')format("woff");}.ff47{font-family:ff47;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:ff48;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_03815fddd186a35c0935ace4.woff2')format("woff");}.ff49{font-family:ff49;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:ff4a;src:url('chunks/assets/font_754d625255c1cddda68dc5df.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_43b928d51e9e6d362ef21de8.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_89d6203246424ba8d8f3ca3e.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_277f52099a1fb4dbe1e8dd28.woff2')format("woff");}.ff4e{font-family:ff4e;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:ff4f;src:url('chunks/assets/font_89d6203246424ba8d8f3ca3e.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_1c9b155a7632759037699ad1.woff2')format("woff");}.ff51{font-family:ff51;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:ff52;src:url('chunks/assets/font_89d6203246424ba8d8f3ca3e.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_89d6203246424ba8d8f3ca3e.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_e4705b13d0c89725a32cdfe9.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_854b6e0d5b97f1e01ae78dab.woff2')format("woff");}.ff56{font-family:ff56;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;}
.m4{transform:matrix(0.123457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123457,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244161,0.000000,-0.053717,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053717,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053717,0.244161,0,0);}
.m2{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,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);}
.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);}
.v4{vertical-align:-26.400000px;}
.v2{vertical-align:-17.820000px;}
.vf{vertical-align:-15.600000px;}
.vd{vertical-align:-11.412089px;}
.ve{vertical-align:-6.000000px;}
.vc{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:6.000000px;}
.vb{vertical-align:8.394302px;}
.v5{vertical-align:10.787719px;}
.v6{vertical-align:15.599400px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:20.790000px;}
.v7{vertical-align:38.400600px;}
.v8{vertical-align:47.400000px;}
.v9{vertical-align:49.800000px;}
.ls3b{letter-spacing:-32.007553px;}
.ls42{letter-spacing:-1.200000px;}
.ls13{letter-spacing:-0.900000px;}
.ls4c{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.540000px;}
.ls41{letter-spacing:-0.432000px;}
.ls35{letter-spacing:-0.381559px;}
.ls36{letter-spacing:-0.240000px;}
.ls3a{letter-spacing:-0.180000px;}
.ls34{letter-spacing:-0.138749px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls18{letter-spacing:0.208123px;}
.ls49{letter-spacing:0.270000px;}
.lsf{letter-spacing:0.300000px;}
.ls21{letter-spacing:0.301500px;}
.ls5{letter-spacing:0.408450px;}
.ls7{letter-spacing:0.408900px;}
.ls8{letter-spacing:0.409050px;}
.ls6{letter-spacing:0.409200px;}
.lsc{letter-spacing:0.409500px;}
.ls28{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.450000px;}
.ls32{letter-spacing:0.450934px;}
.ls48{letter-spacing:0.599400px;}
.ls47{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.630000px;}
.ls44{letter-spacing:0.780000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.ls43{letter-spacing:1.200000px;}
.ls26{letter-spacing:1.734360px;}
.ls4a{letter-spacing:2.327400px;}
.ls40{letter-spacing:5.400000px;}
.ls2c{letter-spacing:5.460000px;}
.ls10{letter-spacing:7.380000px;}
.ls4b{letter-spacing:9.157800px;}
.ls19{letter-spacing:10.961220px;}
.lsa{letter-spacing:14.143200px;}
.ls27{letter-spacing:25.980000px;}
.ls38{letter-spacing:28.825063px;}
.ls16{letter-spacing:32.605968px;}
.ls2e{letter-spacing:36.799471px;}
.ls22{letter-spacing:41.589953px;}
.ls11{letter-spacing:44.340000px;}
.ls31{letter-spacing:49.560000px;}
.ls2b{letter-spacing:56.782946px;}
.ls14{letter-spacing:60.216979px;}
.ls12{letter-spacing:60.780000px;}
.ls3d{letter-spacing:61.380000px;}
.ls17{letter-spacing:63.209585px;}
.ls24{letter-spacing:63.609375px;}
.ls37{letter-spacing:69.968014px;}
.lsb{letter-spacing:74.000400px;}
.ls45{letter-spacing:96.180000px;}
.ls46{letter-spacing:97.380000px;}
.ls1d{letter-spacing:114.030000px;}
.ls1c{letter-spacing:120.360000px;}
.ls1a{letter-spacing:120.630000px;}
.ls2d{letter-spacing:125.879994px;}
.ls3c{letter-spacing:132.300000px;}
.ls3e{letter-spacing:137.700000px;}
.ls2a{letter-spacing:139.620000px;}
.ls15{letter-spacing:140.624357px;}
.ls33{letter-spacing:152.220000px;}
.ls1f{letter-spacing:153.525674px;}
.ls29{letter-spacing:158.440461px;}
.ls3f{letter-spacing:164.220000px;}
.ls25{letter-spacing:218.760000px;}
.ls1b{letter-spacing:231.420000px;}
.ls23{letter-spacing:252.106570px;}
.ls1e{letter-spacing:314.760000px;}
.ls2f{letter-spacing:416.361000px;}
.ls39{letter-spacing:500.490000px;}
.ls30{letter-spacing:517.225500px;}
.ls20{letter-spacing:823.014000px;}
.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;}
}
.ws89{word-spacing:-549.900000px;}
.ws9c{word-spacing:-517.225500px;}
.ws9a{word-spacing:-416.361000px;}
.ws80{word-spacing:-143.760000px;}
.wsa5{word-spacing:-137.700000px;}
.wsa2{word-spacing:-132.300000px;}
.ws77{word-spacing:-130.560000px;}
.ws98{word-spacing:-125.879994px;}
.ws84{word-spacing:-112.302894px;}
.ws7a{word-spacing:-98.787228px;}
.wsfb{word-spacing:-97.380000px;}
.wsfa{word-spacing:-96.180000px;}
.ws9f{word-spacing:-69.968014px;}
.ws93{word-spacing:-66.841110px;}
.wsa3{word-spacing:-61.380000px;}
.ws99{word-spacing:-60.780000px;}
.ws73{word-spacing:-60.216979px;}
.ws95{word-spacing:-56.782946px;}
.ws8f{word-spacing:-56.160000px;}
.ws59{word-spacing:-51.240000px;}
.ws7f{word-spacing:-49.620000px;}
.ws87{word-spacing:-28.859750px;}
.ws1{word-spacing:-13.986000px;}
.ws32{word-spacing:-13.332000px;}
.ws57{word-spacing:-13.020000px;}
.ws10d{word-spacing:-12.726000px;}
.ws7{word-spacing:-12.720000px;}
.ws7c{word-spacing:-12.164099px;}
.ws6{word-spacing:-12.120000px;}
.ws56{word-spacing:-11.820000px;}
.ws12d{word-spacing:-11.718000px;}
.wsfe{word-spacing:-11.520000px;}
.wsab{word-spacing:-11.514000px;}
.ws12a{word-spacing:-11.448000px;}
.wsac{word-spacing:-11.172000px;}
.wsef{word-spacing:-10.920000px;}
.ws12c{word-spacing:-10.908000px;}
.ws158{word-spacing:-10.800000px;}
.wsaa{word-spacing:-10.374000px;}
.wsb{word-spacing:-10.176000px;}
.ws12e{word-spacing:-10.098000px;}
.ws12b{word-spacing:-9.828000px;}
.wsc{word-spacing:-9.810000px;}
.ws8{word-spacing:-9.696000px;}
.wsae{word-spacing:-9.408000px;}
.ws4{word-spacing:-9.360000px;}
.ws2{word-spacing:-9.090900px;}
.ws9{word-spacing:-8.820000px;}
.wsb1{word-spacing:-8.736000px;}
.wsa{word-spacing:-8.232000px;}
.ws3{word-spacing:-6.879600px;}
.ws108{word-spacing:-5.220000px;}
.ws5{word-spacing:-2.666400px;}
.ws8c{word-spacing:-1.720176px;}
.wse6{word-spacing:-1.200000px;}
.ws10b{word-spacing:-0.600000px;}
.ws9d{word-spacing:-0.450934px;}
.ws5a{word-spacing:-0.450000px;}
.ws6f{word-spacing:-0.300000px;}
.ws14d{word-spacing:-0.270000px;}
.wsfd{word-spacing:-0.208123px;}
.ws0{word-spacing:0.000000px;}
.ws85{word-spacing:0.180000px;}
.ws143{word-spacing:0.540000px;}
.ws164{word-spacing:0.648000px;}
.wsda{word-spacing:1.200000px;}
.ws132{word-spacing:1.296000px;}
.ws165{word-spacing:2.538000px;}
.ws163{word-spacing:2.970000px;}
.wsce{word-spacing:3.600000px;}
.ws111{word-spacing:4.440000px;}
.ws155{word-spacing:4.752000px;}
.ws14c{word-spacing:4.860000px;}
.ws122{word-spacing:5.508000px;}
.ws156{word-spacing:5.562000px;}
.wsed{word-spacing:5.580000px;}
.ws14b{word-spacing:5.670000px;}
.ws13f{word-spacing:5.724000px;}
.ws128{word-spacing:5.778000px;}
.ws120{word-spacing:6.210000px;}
.ws3e{word-spacing:6.360000px;}
.ws4d{word-spacing:6.540000px;}
.ws2a{word-spacing:6.594000px;}
.ws46{word-spacing:6.600000px;}
.wse{word-spacing:6.615000px;}
.ws129{word-spacing:6.642000px;}
.ws2f{word-spacing:6.660000px;}
.wsa7{word-spacing:6.780000px;}
.ws166{word-spacing:6.804000px;}
.ws10a{word-spacing:6.900000px;}
.ws18{word-spacing:6.912000px;}
.ws167{word-spacing:6.966000px;}
.ws14e{word-spacing:7.020000px;}
.wsf{word-spacing:7.065000px;}
.wse8{word-spacing:7.080000px;}
.ws11d{word-spacing:7.128000px;}
.ws121{word-spacing:7.182000px;}
.ws31{word-spacing:7.200000px;}
.ws147{word-spacing:7.236000px;}
.wsec{word-spacing:7.320000px;}
.ws113{word-spacing:7.380000px;}
.ws13e{word-spacing:7.398000px;}
.ws69{word-spacing:7.500000px;}
.ws2c{word-spacing:7.536000px;}
.ws13a{word-spacing:7.560000px;}
.ws74{word-spacing:7.680000px;}
.ws49{word-spacing:7.740000px;}
.ws27{word-spacing:7.800000px;}
.ws52{word-spacing:7.860000px;}
.ws138{word-spacing:7.884000px;}
.ws5d{word-spacing:7.920000px;}
.ws109{word-spacing:7.980000px;}
.ws135{word-spacing:7.992000px;}
.wsfc{word-spacing:8.040000px;}
.ws3a{word-spacing:8.100000px;}
.ws12f{word-spacing:8.154000px;}
.ws30{word-spacing:8.160000px;}
.ws11e{word-spacing:8.208000px;}
.ws110{word-spacing:8.280000px;}
.ws33{word-spacing:8.340000px;}
.ws160{word-spacing:8.370000px;}
.wsf8{word-spacing:8.400000px;}
.ws146{word-spacing:8.424000px;}
.ws47{word-spacing:8.460000px;}
.ws12{word-spacing:8.478000px;}
.ws2e{word-spacing:8.484000px;}
.ws114{word-spacing:8.520000px;}
.ws8a{word-spacing:8.526000px;}
.ws50{word-spacing:8.580000px;}
.ws112{word-spacing:8.640000px;}
.wsd6{word-spacing:8.700000px;}
.ws60{word-spacing:8.760000px;}
.wsb7{word-spacing:8.778000px;}
.ws139{word-spacing:8.802000px;}
.ws118{word-spacing:8.856000px;}
.wseb{word-spacing:8.880000px;}
.ws65{word-spacing:8.940000px;}
.wsb8{word-spacing:8.949000px;}
.ws24{word-spacing:9.000000px;}
.ws157{word-spacing:9.018000px;}
.ws5e{word-spacing:9.060000px;}
.ws115{word-spacing:9.072000px;}
.ws42{word-spacing:9.120000px;}
.ws14f{word-spacing:9.126000px;}
.ws1a{word-spacing:9.180000px;}
.ws53{word-spacing:9.198000px;}
.ws44{word-spacing:9.261000px;}
.ws119{word-spacing:9.288000px;}
.ws10f{word-spacing:9.300000px;}
.wse9{word-spacing:9.360000px;}
.ws130{word-spacing:9.450000px;}
.ws21{word-spacing:9.480000px;}
.wsca{word-spacing:9.540000px;}
.ws117{word-spacing:9.558000px;}
.wsd{word-spacing:9.600000px;}
.ws13d{word-spacing:9.612000px;}
.ws63{word-spacing:9.660000px;}
.wsc7{word-spacing:9.720000px;}
.ws15{word-spacing:9.774000px;}
.ws19{word-spacing:9.828000px;}
.ws4f{word-spacing:9.900000px;}
.ws14{word-spacing:9.936000px;}
.ws124{word-spacing:9.990000px;}
.wsc6{word-spacing:10.020000px;}
.ws145{word-spacing:10.044000px;}
.ws28{word-spacing:10.080000px;}
.ws15c{word-spacing:10.098000px;}
.ws1e{word-spacing:10.140000px;}
.ws23{word-spacing:10.200000px;}
.wsd9{word-spacing:10.260000px;}
.wsa8{word-spacing:10.320000px;}
.ws123{word-spacing:10.368000px;}
.wsc8{word-spacing:10.380000px;}
.ws162{word-spacing:10.422000px;}
.wscd{word-spacing:10.440000px;}
.ws13c{word-spacing:10.476000px;}
.ws5c{word-spacing:10.500000px;}
.ws116{word-spacing:10.530000px;}
.wsa9{word-spacing:10.560000px;}
.wscf{word-spacing:10.620000px;}
.ws1d{word-spacing:10.638000px;}
.wsb2{word-spacing:10.680000px;}
.ws43{word-spacing:10.692000px;}
.ws11{word-spacing:10.710000px;}
.ws22{word-spacing:10.740000px;}
.ws11a{word-spacing:10.746000px;}
.ws133{word-spacing:10.800000px;}
.ws72{word-spacing:10.860000px;}
.ws15a{word-spacing:10.908000px;}
.wsd3{word-spacing:10.920000px;}
.ws48{word-spacing:10.980000px;}
.ws70{word-spacing:11.100000px;}
.ws36{word-spacing:11.160000px;}
.ws66{word-spacing:11.220000px;}
.wsd7{word-spacing:11.280000px;}
.ws2d{word-spacing:11.298000px;}
.ws6d{word-spacing:11.340000px;}
.ws126{word-spacing:11.394000px;}
.ws26{word-spacing:11.400000px;}
.wsb5{word-spacing:11.460000px;}
.ws105{word-spacing:11.520000px;}
.ws15f{word-spacing:11.556000px;}
.ws6c{word-spacing:11.640000px;}
.ws97{word-spacing:11.700000px;}
.ws161{word-spacing:11.718000px;}
.ws37{word-spacing:11.760000px;}
.ws15b{word-spacing:11.772000px;}
.wsdb{word-spacing:11.820000px;}
.ws1b{word-spacing:11.826000px;}
.ws38{word-spacing:11.880000px;}
.ws6a{word-spacing:11.940000px;}
.ws6b{word-spacing:12.000000px;}
.ws4a{word-spacing:12.060000px;}
.ws14a{word-spacing:12.096000px;}
.wsc9{word-spacing:12.120000px;}
.ws154{word-spacing:12.150000px;}
.wsd5{word-spacing:12.180000px;}
.ws13b{word-spacing:12.204000px;}
.ws55{word-spacing:12.240000px;}
.wsa1{word-spacing:12.300000px;}
.ws10e{word-spacing:12.360000px;}
.ws141{word-spacing:12.366000px;}
.ws64{word-spacing:12.420000px;}
.ws3f{word-spacing:12.540000px;}
.ws1f{word-spacing:12.660000px;}
.ws159{word-spacing:12.690000px;}
.ws134{word-spacing:12.744000px;}
.ws25{word-spacing:12.780000px;}
.ws75{word-spacing:12.900000px;}
.ws149{word-spacing:12.906000px;}
.ws94{word-spacing:13.020000px;}
.wsde{word-spacing:13.140000px;}
.ws127{word-spacing:13.176000px;}
.wsd1{word-spacing:13.260000px;}
.ws61{word-spacing:13.320000px;}
.wsb6{word-spacing:13.440000px;}
.ws3c{word-spacing:13.560000px;}
.ws151{word-spacing:13.662000px;}
.ws71{word-spacing:13.680000px;}
.wsd4{word-spacing:13.740000px;}
.ws11c{word-spacing:13.770000px;}
.ws4c{word-spacing:13.860000px;}
.ws20{word-spacing:13.920000px;}
.ws10{word-spacing:13.944000px;}
.ws2b{word-spacing:14.016000px;}
.wsa4{word-spacing:14.100000px;}
.ws153{word-spacing:14.148000px;}
.ws76{word-spacing:14.160000px;}
.ws131{word-spacing:14.256000px;}
.ws54{word-spacing:14.340000px;}
.ws140{word-spacing:14.418000px;}
.wsb3{word-spacing:14.580000px;}
.ws106{word-spacing:14.640000px;}
.wsd2{word-spacing:14.700000px;}
.ws17{word-spacing:14.742000px;}
.ws29{word-spacing:14.760000px;}
.wsd8{word-spacing:14.820000px;}
.wse7{word-spacing:14.880000px;}
.ws3d{word-spacing:14.940000px;}
.ws51{word-spacing:15.000000px;}
.ws148{word-spacing:15.066000px;}
.ws15e{word-spacing:15.120000px;}
.ws5f{word-spacing:15.180000px;}
.ws13{word-spacing:15.552000px;}
.ws1c{word-spacing:15.660000px;}
.ws5b{word-spacing:15.780000px;}
.ws62{word-spacing:15.840000px;}
.ws144{word-spacing:16.092000px;}
.wsea{word-spacing:16.260000px;}
.wscb{word-spacing:16.440000px;}
.ws125{word-spacing:16.470000px;}
.wsd0{word-spacing:16.500000px;}
.ws150{word-spacing:16.524000px;}
.wsee{word-spacing:16.560000px;}
.wsdd{word-spacing:16.680000px;}
.ws4e{word-spacing:16.740000px;}
.ws3b{word-spacing:16.800000px;}
.ws34{word-spacing:16.980000px;}
.ws45{word-spacing:17.040000px;}
.wsdc{word-spacing:17.100000px;}
.wsb4{word-spacing:17.160000px;}
.ws11b{word-spacing:17.280000px;}
.ws40{word-spacing:17.340000px;}
.ws15d{word-spacing:17.604000px;}
.wscc{word-spacing:17.640000px;}
.ws39{word-spacing:18.060000px;}
.ws35{word-spacing:18.360000px;}
.ws142{word-spacing:18.792000px;}
.ws152{word-spacing:19.710000px;}
.ws137{word-spacing:20.034000px;}
.ws10c{word-spacing:20.640000px;}
.ws67{word-spacing:21.240000px;}
.wsf9{word-spacing:21.480000px;}
.ws6e{word-spacing:22.740000px;}
.ws136{word-spacing:23.328000px;}
.ws11f{word-spacing:23.490000px;}
.ws9b{word-spacing:23.940000px;}
.ws16{word-spacing:24.030000px;}
.ws41{word-spacing:24.060000px;}
.ws4b{word-spacing:24.120000px;}
.ws107{word-spacing:26.580000px;}
.ws7d{word-spacing:30.954857px;}
.ws68{word-spacing:31.920000px;}
.ws78{word-spacing:34.551920px;}
.ws58{word-spacing:36.600000px;}
.ws82{word-spacing:47.733056px;}
.ws8b{word-spacing:52.367266px;}
.ws91{word-spacing:52.533764px;}
.ws81{word-spacing:55.832517px;}
.ws90{word-spacing:61.250658px;}
.ws86{word-spacing:77.681475px;}
.ws79{word-spacing:93.612000px;}
.wsf0{word-spacing:97.554281px;}
.wsf1{word-spacing:99.933823px;}
.ws83{word-spacing:105.612000px;}
.ws92{word-spacing:110.532000px;}
.ws7e{word-spacing:136.332000px;}
.ws7b{word-spacing:140.753720px;}
.ws8d{word-spacing:143.133262px;}
.ws8e{word-spacing:150.334325px;}
.wsad{word-spacing:172.528200px;}
.wsf3{word-spacing:262.715400px;}
.wsf2{word-spacing:262.716000px;}
.wsbd{word-spacing:268.715400px;}
.wsbe{word-spacing:268.716000px;}
.wsbc{word-spacing:274.715400px;}
.wsf4{word-spacing:280.715400px;}
.wsba{word-spacing:285.323400px;}
.wse1{word-spacing:310.170600px;}
.wse2{word-spacing:316.170600px;}
.wse0{word-spacing:322.171200px;}
.ws103{word-spacing:328.171200px;}
.ws101{word-spacing:330.572400px;}
.wsaf{word-spacing:331.667400px;}
.wse3{word-spacing:338.778600px;}
.wsf6{word-spacing:338.971800px;}
.ws104{word-spacing:342.474600px;}
.wsbf{word-spacing:357.042000px;}
.wsf7{word-spacing:358.171200px;}
.ws100{word-spacing:359.180400px;}
.wsb9{word-spacing:366.587400px;}
.wsbb{word-spacing:372.587400px;}
.wse5{word-spacing:389.779200px;}
.wsb0{word-spacing:404.267400px;}
.wsc4{word-spacing:421.722600px;}
.wse4{word-spacing:430.843200px;}
.ws102{word-spacing:441.642600px;}
.wsf5{word-spacing:456.042600px;}
.wsdf{word-spacing:459.642600px;}
.wsff{word-spacing:463.242600px;}
.wsc5{word-spacing:467.322600px;}
.wsc1{word-spacing:490.967400px;}
.ws88{word-spacing:525.927326px;}
.wsc0{word-spacing:569.543400px;}
.wsc2{word-spacing:607.078800px;}
.wsc3{word-spacing:612.454800px;}
.wsa0{word-spacing:750.870000px;}
.wsa6{word-spacing:904.284000px;}
.ws9e{word-spacing:940.896000px;}
.ws96{word-spacing:962.766000px;}
._27{margin-left:-133.800000px;}
._1c{margin-left:-124.860000px;}
._24{margin-left:-67.813476px;}
._68{margin-left:-34.821600px;}
._2b{margin-left:-18.239985px;}
._75{margin-left:-16.959615px;}
._2c{margin-left:-15.840015px;}
._76{margin-left:-13.359659px;}
._9{margin-left:-10.233615px;}
._c{margin-left:-8.820015px;}
._84{margin-left:-7.428000px;}
._2{margin-left:-5.928015px;}
._1{margin-left:-4.320000px;}
._3{margin-left:-3.180015px;}
._0{margin-left:-1.919985px;}
._6{width:1.839600px;}
._56{width:3.099659px;}
._3b{width:4.102471px;}
._60{width:5.256000px;}
._4{width:6.299985px;}
._5{width:7.799985px;}
._7{width:8.841000px;}
._8{width:10.094385px;}
._10{width:11.792327px;}
._f{width:13.792785px;}
._74{width:14.985000px;}
._d{width:17.477985px;}
._83{width:18.559185px;}
._1d{width:35.128171px;}
._14{width:46.196413px;}
._a{width:59.335185px;}
._18{width:61.434844px;}
._11{width:64.320000px;}
._23{width:71.588971px;}
._17{width:73.394371px;}
._13{width:82.198258px;}
._12{width:83.394966px;}
._21{width:84.584737px;}
._2a{width:89.385446px;}
._1b{width:96.032400px;}
._19{width:106.794951px;}
._1a{width:113.395926px;}
._25{width:121.920000px;}
._e{width:131.698171px;}
._b{width:133.679400px;}
._16{width:148.806000px;}
._15{width:161.996161px;}
._22{width:163.217890px;}
._20{width:166.193313px;}
._1e{width:177.008782px;}
._1f{width:184.778714px;}
._28{width:188.420870px;}
._2f{width:189.845371px;}
._3a{width:203.622015px;}
._32{width:210.683400px;}
._29{width:215.407512px;}
._30{width:223.721985px;}
._2e{width:231.115800px;}
._34{width:243.144585px;}
._33{width:262.373400px;}
._4f{width:273.745200px;}
._6b{width:278.123400px;}
._4a{width:282.970785px;}
._47{width:284.123400px;}
._31{width:290.004600px;}
._4d{width:292.210200px;}
._46{width:296.123400px;}
._3e{width:299.531400px;}
._3f{width:300.732000px;}
._44{width:306.732000px;}
._48{width:313.692015px;}
._35{width:318.402000px;}
._43{width:324.730800px;}
._45{width:326.172585px;}
._5c{width:331.579200px;}
._49{width:334.380585px;}
._6a{width:338.172585px;}
._40{width:339.563971px;}
._53{width:340.684800px;}
._7f{width:342.378000px;}
._42{width:346.509000px;}
._5a{width:348.186600px;}
._6c{width:352.524585px;}
._59{width:354.186000px;}
._82{width:356.682600px;}
._69{width:358.509000px;}
._5f{width:360.186600px;}
._70{width:361.579200px;}
._3c{width:366.996000px;}
._38{width:368.076000px;}
._4c{width:374.563200px;}
._73{width:376.987800px;}
._4e{width:381.815400px;}
._39{width:386.062200px;}
._37{width:390.966015px;}
._6e{width:396.186600px;}
._65{width:400.986600px;}
._64{width:403.386600px;}
._26{width:412.267778px;}
._52{width:440.131200px;}
._5e{width:450.859200px;}
._41{width:452.843971px;}
._51{width:458.130600px;}
._5b{width:459.259200px;}
._36{width:464.934000px;}
._61{width:467.250600px;}
._7a{width:468.665985px;}
._62{width:476.250600px;}
._57{width:478.050600px;}
._66{width:481.913371px;}
._55{width:485.730600px;}
._7d{width:487.050600px;}
._54{width:492.330600px;}
._79{width:493.625985px;}
._81{width:496.505985px;}
._7c{width:501.833985px;}
._2d{width:506.395800px;}
._7b{width:507.977985px;}
._78{width:513.962400px;}
._72{width:522.905985px;}
._6f{width:535.338000px;}
._58{width:552.859200px;}
._5d{width:589.579200px;}
._67{width:595.193371px;}
._3d{width:598.236000px;}
._7e{width:602.058000px;}
._6d{width:628.458000px;}
._80{width:638.778000px;}
._71{width:665.178000px;}
._4b{width:672.376800px;}
._50{width:696.436815px;}
._63{width:740.585400px;}
._77{width:1129.978800px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:25.125000px;}
.fse{font-size:34.687200px;}
.fsc{font-size:35.100000px;}
.fs12{font-size:35.516758px;}
.fsb{font-size:40.950000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs14{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:61.434844px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs10{font-size:93.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.fs11{font-size:121.500000px;}
.y0{bottom:0.000000px;}
.y108{bottom:2.999400px;}
.y1f5{bottom:2.999700px;}
.y143{bottom:3.149850px;}
.y1e2{bottom:3.598950px;}
.y14f{bottom:3.599850px;}
.y1df{bottom:3.600450px;}
.y14b{bottom:3.601350px;}
.y112{bottom:4.499400px;}
.ye1{bottom:5.099700px;}
.y153{bottom:5.099850px;}
.ye7{bottom:5.100300px;}
.y118{bottom:5.100450px;}
.yf3{bottom:5.101050px;}
.yd7{bottom:5.101200px;}
.yd4{bottom:5.999700px;}
.y1e1{bottom:7.498950px;}
.y106{bottom:7.499400px;}
.y14e{bottom:7.499850px;}
.y1de{bottom:7.500450px;}
.y149{bottom:7.501350px;}
.y11f{bottom:8.249850px;}
.yee{bottom:8.250900px;}
.yfa{bottom:8.700900px;}
.ye0{bottom:8.999700px;}
.y152{bottom:8.999850px;}
.ye6{bottom:9.000300px;}
.y117{bottom:9.000450px;}
.yf2{bottom:9.000900px;}
.yd6{bottom:9.001200px;}
.y102{bottom:10.051050px;}
.yf7{bottom:10.500900px;}
.y141{bottom:11.099850px;}
.y121{bottom:11.999850px;}
.yf0{bottom:12.000900px;}
.y113{bottom:13.949400px;}
.y125{bottom:18.149850px;}
.y142{bottom:21.748820px;}
.y13f{bottom:24.599850px;}
.y12c{bottom:25.949850px;}
.y111{bottom:26.399400px;}
.y13b{bottom:26.999850px;}
.y65{bottom:63.082800px;}
.y1e0{bottom:63.375000px;}
.y5{bottom:66.525004px;}
.y38{bottom:67.597501px;}
.y1e3{bottom:70.873950px;}
.y235{bottom:73.708200px;}
.y64{bottom:75.082800px;}
.ydc{bottom:80.926200px;}
.y1dd{bottom:82.873500px;}
.y37{bottom:84.097501px;}
.y1d4{bottom:84.677700px;}
.y1ac{bottom:85.275000px;}
.yab{bottom:85.426200px;}
.y63{bottom:87.082800px;}
.y179{bottom:87.863700px;}
.y270{bottom:89.551200px;}
.y234{bottom:90.208200px;}
.y1dc{bottom:90.373950px;}
.y205{bottom:90.525000px;}
.y169{bottom:90.749850px;}
.y1bf{bottom:96.434400px;}
.y4{bottom:97.125005px;}
.y5f{bottom:99.457800px;}
.ydb{bottom:100.426200px;}
.y1ab{bottom:103.650000px;}
.y204{bottom:104.025000px;}
.yaa{bottom:104.926200px;}
.y26f{bottom:106.051200px;}
.y233{bottom:106.708200px;}
.y178{bottom:107.363700px;}
.y1db{bottom:109.873950px;}
.y168{bottom:110.249850px;}
.y61{bottom:110.332800px;}
.y1be{bottom:115.934400px;}
.y1aa{bottom:117.150000px;}
.y203{bottom:117.525000px;}
.yda{bottom:119.926200px;}
.y26e{bottom:122.551200px;}
.y60{bottom:123.832800px;}
.ya9{bottom:124.426200px;}
.y1da{bottom:129.373950px;}
.y167{bottom:129.749850px;}
.y1a9{bottom:130.650000px;}
.y202{bottom:131.025000px;}
.y232{bottom:132.208200px;}
.y1bd{bottom:135.434400px;}
.y177{bottom:137.363700px;}
.y26d{bottom:139.051200px;}
.y21{bottom:139.264499px;}
.yd9{bottom:139.426200px;}
.y1a8{bottom:144.150000px;}
.y231{bottom:148.708200px;}
.y201{bottom:149.025000px;}
.y166{bottom:149.249850px;}
.yd5{bottom:149.925000px;}
.yd3{bottom:152.926500px;}
.ya8{bottom:154.426200px;}
.y1bc{bottom:154.934400px;}
.yd8{bottom:155.026200px;}
.y26c{bottom:155.551200px;}
.y1a7{bottom:157.650000px;}
.yd2{bottom:158.926200px;}
.y230{bottom:165.208200px;}
.y176{bottom:167.363700px;}
.y1f2{bottom:167.623950px;}
.y200{bottom:167.775000px;}
.y165{bottom:168.749850px;}
.y1a6{bottom:171.150000px;}
.y26b{bottom:172.051200px;}
.y1bb{bottom:174.434400px;}
.y5e{bottom:175.426200px;}
.yd1{bottom:178.426200px;}
.y1a5{bottom:184.650000px;}
.y1f1{bottom:185.623950px;}
.y1ff{bottom:186.525000px;}
.y164{bottom:188.249850px;}
.y26a{bottom:188.551200px;}
.y22f{bottom:190.708200px;}
.y1ba{bottom:193.934400px;}
.y5d{bottom:194.926200px;}
.y18{bottom:196.933500px;}
.yd0{bottom:197.926200px;}
.y1a4{bottom:198.150000px;}
.y1f0{bottom:199.123950px;}
.y269{bottom:205.051200px;}
.ya7{bottom:205.426200px;}
.y22e{bottom:207.208200px;}
.y163{bottom:207.749850px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1ef{bottom:212.623950px;}
.y1b9{bottom:213.434400px;}
.y5c{bottom:214.426200px;}
.y1a3{bottom:216.150000px;}
.y175{bottom:218.363700px;}
.y268{bottom:221.551200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y22d{bottom:223.708200px;}
.ya6{bottom:224.926200px;}
.y1ee{bottom:226.123950px;}
.y36{bottom:226.426501px;}
.y162{bottom:227.249850px;}
.ycf{bottom:227.926200px;}
.y1b8{bottom:232.934400px;}
.y5b{bottom:233.926200px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1a2{bottom:234.900000px;}
.y174{bottom:237.863700px;}
.y267{bottom:238.051200px;}
.y22c{bottom:240.208200px;}
.y1ed{bottom:244.123950px;}
.ya5{bottom:244.426200px;}
.y161{bottom:246.749850px;}
.y1b7{bottom:252.434400px;}
.y5a{bottom:253.426200px;}
.y1fe{bottom:253.724400px;}
.y266{bottom:254.551200px;}
.y173{bottom:257.363700px;}
.yce{bottom:257.926200px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1ec{bottom:262.873950px;}
.ya4{bottom:263.926200px;}
.y22b{bottom:265.708200px;}
.y160{bottom:266.249850px;}
.y1fd{bottom:267.224400px;}
.y265{bottom:271.051200px;}
.y1b6{bottom:271.934400px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y59{bottom:272.926200px;}
.y1fc{bottom:280.724400px;}
.y22a{bottom:282.208200px;}
.ya3{bottom:283.426200px;}
.y1a1{bottom:283.941900px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y15f{bottom:285.749850px;}
.y172{bottom:287.363700px;}
.y264{bottom:287.551200px;}
.y35{bottom:290.776501px;}
.y1b5{bottom:291.434400px;}
.y58{bottom:292.426200px;}
.y1fb{bottom:294.224400px;}
.y229{bottom:298.708200px;}
.y1a0{bottom:301.941900px;}
.ya2{bottom:302.926200px;}
.y263{bottom:304.051200px;}
.y15e{bottom:305.249850px;}
.y1f3{bottom:305.331450px;}
.y1fa{bottom:307.724400px;}
.ycd{bottom:308.926200px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1b4{bottom:310.934400px;}
.y57{bottom:311.926200px;}
.y19f{bottom:315.441900px;}
.y262{bottom:320.551200px;}
.ya1{bottom:322.426200px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y228{bottom:324.208200px;}
.y1f9{bottom:325.724400px;}
.ycc{bottom:328.426200px;}
.y19e{bottom:328.941900px;}
.y1b3{bottom:330.434400px;}
.y56{bottom:331.426200px;}
.y15d{bottom:335.249850px;}
.y261{bottom:337.051200px;}
.y171{bottom:338.363700px;}
.y227{bottom:340.708200px;}
.ya0{bottom:341.926200px;}
.y19d{bottom:342.441900px;}
.y1f8{bottom:344.474400px;}
.ycb{bottom:347.926200px;}
.yf{bottom:348.133500px;}
.y1b2{bottom:349.934400px;}
.y55{bottom:350.926200px;}
.y260{bottom:353.551200px;}
.y34{bottom:355.126501px;}
.y19c{bottom:355.941900px;}
.y226{bottom:357.208200px;}
.y170{bottom:357.863700px;}
.y9f{bottom:361.426200px;}
.y1f7{bottom:363.224400px;}
.yca{bottom:367.426200px;}
.y1b1{bottom:369.434400px;}
.y25f{bottom:370.051200px;}
.y54{bottom:370.426200px;}
.y225{bottom:373.708200px;}
.y19b{bottom:373.941900px;}
.y15b{bottom:377.250000px;}
.y16f{bottom:377.363700px;}
.y9e{bottom:380.926200px;}
.y15c{bottom:382.349850px;}
.y15a{bottom:386.249850px;}
.y25e{bottom:386.551200px;}
.ye{bottom:386.785499px;}
.yc9{bottom:386.926200px;}
.y1b0{bottom:388.934400px;}
.y53{bottom:389.926200px;}
.y224{bottom:390.208200px;}
.y19a{bottom:392.691900px;}
.y16e{bottom:396.863700px;}
.y9d{bottom:400.426200px;}
.y25d{bottom:403.051200px;}
.yc8{bottom:406.426200px;}
.yd{bottom:408.044999px;}
.y1af{bottom:408.434400px;}
.y52{bottom:409.426200px;}
.y158{bottom:413.250000px;}
.y223{bottom:415.708200px;}
.y16d{bottom:416.363700px;}
.y159{bottom:416.849850px;}
.y1d3{bottom:418.613700px;}
.y25c{bottom:419.551200px;}
.y9c{bottom:419.926200px;}
.y157{bottom:420.749850px;}
.y33{bottom:422.407500px;}
.y1f6{bottom:425.173650px;}
.yc7{bottom:425.926200px;}
.y1ae{bottom:427.934400px;}
.y51{bottom:428.926200px;}
.y222{bottom:432.208200px;}
.y156{bottom:432.748500px;}
.y199{bottom:433.566900px;}
.y16c{bottom:435.863700px;}
.y25b{bottom:436.051200px;}
.y1d2{bottom:436.613700px;}
.y155{bottom:440.249850px;}
.yc6{bottom:445.426200px;}
.y1ad{bottom:447.434400px;}
.y221{bottom:448.708200px;}
.y9b{bottom:449.926200px;}
.y1d1{bottom:450.113700px;}
.y151{bottom:450.750000px;}
.y198{bottom:451.566900px;}
.y25a{bottom:452.551200px;}
.y16b{bottom:455.363700px;}
.y154{bottom:455.849850px;}
.y50{bottom:458.926200px;}
.y150{bottom:459.749850px;}
.y1d0{bottom:463.613700px;}
.yc5{bottom:464.926200px;}
.y197{bottom:465.066900px;}
.y220{bottom:465.208200px;}
.y259{bottom:469.051200px;}
.y14d{bottom:471.750000px;}
.y16a{bottom:474.863700px;}
.y1cf{bottom:477.113700px;}
.y196{bottom:478.566900px;}
.y14c{bottom:479.249850px;}
.y32{bottom:483.826501px;}
.yc4{bottom:484.426200px;}
.y258{bottom:485.551200px;}
.y1c1{bottom:491.684400px;}
.y21f{bottom:492.208200px;}
.y1ce{bottom:495.113700px;}
.y195{bottom:496.566900px;}
.y7e{bottom:496.995300px;}
.y148{bottom:500.248500px;}
.y9a{bottom:500.926200px;}
.y257{bottom:502.051200px;}
.yc{bottom:502.864502px;}
.y14a{bottom:503.849850px;}
.yc3{bottom:503.926200px;}
.y147{bottom:507.749850px;}
.y7d{bottom:510.495300px;}
.y18c{bottom:513.113700px;}
.y1cd{bottom:513.863700px;}
.y194{bottom:515.316900px;}
.y256{bottom:518.551200px;}
.y99{bottom:520.426200px;}
.yb{bottom:520.864502px;}
.yc2{bottom:523.426200px;}
.y7c{bottom:523.995300px;}
.y13e{bottom:530.250000px;}
.y18b{bottom:531.113700px;}
.y255{bottom:535.051200px;}
.y7b{bottom:537.495300px;}
.y140{bottom:538.649850px;}
.ya{bottom:538.864499px;}
.y98{bottom:539.926200px;}
.y145{bottom:541.346780px;}
.y146{bottom:541.499850px;}
.yc1{bottom:542.926200px;}
.y21e{bottom:543.208200px;}
.y18a{bottom:544.613700px;}
.y13d{bottom:545.249850px;}
.y7a{bottom:550.995300px;}
.y31{bottom:551.107500px;}
.y254{bottom:551.551200px;}
.y144{bottom:554.996193px;}
.y9{bottom:556.864499px;}
.y189{bottom:558.113700px;}
.y97{bottom:559.426200px;}
.yc0{bottom:562.426200px;}
.y1d9{bottom:562.613700px;}
.y79{bottom:564.495300px;}
.y193{bottom:565.426200px;}
.y253{bottom:568.051200px;}
.y21d{bottom:570.208200px;}
.y188{bottom:571.613700px;}
.y13c{bottom:572.249850px;}
.y78{bottom:577.995300px;}
.y96{bottom:578.926200px;}
.y1d8{bottom:580.613700px;}
.ybf{bottom:581.926200px;}
.y252{bottom:584.551200px;}
.y192{bottom:584.926200px;}
.y187{bottom:585.113700px;}
.y30{bottom:585.457501px;}
.y77{bottom:591.495300px;}
.y1d7{bottom:594.113700px;}
.y95{bottom:598.426200px;}
.y186{bottom:598.613700px;}
.y2f{bottom:600.457501px;}
.y251{bottom:601.051200px;}
.ybe{bottom:601.426200px;}
.y191{bottom:604.426200px;}
.y1d6{bottom:607.613700px;}
.y185{bottom:612.113700px;}
.y70{bottom:614.820300px;}
.y2e{bottom:615.457500px;}
.y250{bottom:617.551200px;}
.y94{bottom:617.926200px;}
.y124{bottom:618.750000px;}
.y134{bottom:624.299850px;}
.y21c{bottom:624.301200px;}
.y184{bottom:625.613700px;}
.y6f{bottom:628.320300px;}
.y12e{bottom:628.349850px;}
.y135{bottom:628.949850px;}
.ybd{bottom:631.426200px;}
.y24f{bottom:634.051200px;}
.y127{bottom:634.649850px;}
.y12b{bottom:636.901274px;}
.y130{bottom:637.799850px;}
.y28a{bottom:638.551200px;}
.y129{bottom:638.999850px;}
.y183{bottom:639.113700px;}
.y21b{bottom:640.801200px;}
.y6e{bottom:641.820300px;}
.y137{bottom:641.844200px;}
.y139{bottom:641.849850px;}
.y132{bottom:643.199850px;}
.y123{bottom:644.249850px;}
.y1d5{bottom:644.363700px;}
.y12f{bottom:644.399850px;}
.y8{bottom:645.510000px;}
.y126{bottom:645.749850px;}
.y93{bottom:647.926200px;}
.y24e{bottom:650.551200px;}
.y190{bottom:650.926200px;}
.y13a{bottom:652.498820px;}
.y182{bottom:652.613700px;}
.y133{bottom:654.449850px;}
.y138{bottom:654.739167px;}
.y136{bottom:654.747839px;}
.y289{bottom:655.051200px;}
.y6d{bottom:655.320300px;}
.y128{bottom:655.349850px;}
.y1eb{bottom:655.426200px;}
.y12d{bottom:657.899850px;}
.y131{bottom:662.099850px;}
.y4f{bottom:662.926200px;}
.y181{bottom:666.113700px;}
.y7{bottom:666.771000px;}
.y24d{bottom:667.051200px;}
.y21a{bottom:667.801200px;}
.y12a{bottom:668.102411px;}
.y6c{bottom:668.820300px;}
.y18f{bottom:670.426200px;}
.y288{bottom:671.551200px;}
.y1ea{bottom:673.426200px;}
.y4e{bottom:677.926200px;}
.y180{bottom:679.613700px;}
.ybc{bottom:682.426200px;}
.y24c{bottom:683.551200px;}
.y76{bottom:686.476200px;}
.y1e9{bottom:686.926200px;}
.y122{bottom:687.749850px;}
.y287{bottom:688.051200px;}
.y18e{bottom:689.926200px;}
.y4d{bottom:692.926200px;}
.y17f{bottom:693.113700px;}
.y2d{bottom:696.817498px;}
.y75{bottom:699.976200px;}
.y24b{bottom:700.051200px;}
.y1e8{bottom:700.426200px;}
.ybb{bottom:701.926200px;}
.y286{bottom:704.551200px;}
.y1cc{bottom:706.426200px;}
.y17e{bottom:706.613700px;}
.y4c{bottom:707.926200px;}
.y18d{bottom:709.426200px;}
.y11e{bottom:713.250000px;}
.y74{bottom:713.476200px;}
.y1e7{bottom:713.926200px;}
.y24a{bottom:716.551200px;}
.y219{bottom:717.301200px;}
.y11d{bottom:718.649850px;}
.y17d{bottom:720.113700px;}
.y285{bottom:721.051200px;}
.y11c{bottom:721.346780px;}
.yba{bottom:721.426200px;}
.y4b{bottom:722.926200px;}
.y11a{bottom:725.249850px;}
.y1cb{bottom:725.926200px;}
.y6{bottom:726.298500px;}
.y2c{bottom:726.817498px;}
.y73{bottom:726.976200px;}
.y1e6{bottom:727.426200px;}
.y92{bottom:728.926200px;}
.y120{bottom:731.995750px;}
.y249{bottom:733.051200px;}
.y11b{bottom:734.996193px;}
.y218{bottom:736.801200px;}
.y284{bottom:737.551200px;}
.y4a{bottom:737.926200px;}
.y17c{bottom:738.113700px;}
.y72{bottom:740.476200px;}
.yb9{bottom:740.926200px;}
.y2b{bottom:744.817498px;}
.y1ca{bottom:745.426200px;}
.y91{bottom:748.426200px;}
.y248{bottom:749.551200px;}
.y3{bottom:752.599495px;}
.y49{bottom:752.926200px;}
.y71{bottom:753.976200px;}
.y283{bottom:754.051200px;}
.y217{bottom:756.301200px;}
.y17b{bottom:756.863700px;}
.y116{bottom:757.995000px;}
.yb8{bottom:760.426200px;}
.y2a{bottom:762.817498px;}
.y119{bottom:763.095450px;}
.y1e5{bottom:764.176200px;}
.y1c9{bottom:764.926200px;}
.y247{bottom:766.051200px;}
.y115{bottom:766.995450px;}
.y48{bottom:767.926200px;}
.y282{bottom:770.551200px;}
.y216{bottom:775.801200px;}
.y6b{bottom:776.738700px;}
.yb7{bottom:779.926200px;}
.y29{bottom:780.817498px;}
.y246{bottom:782.551200px;}
.y47{bottom:782.926200px;}
.y1c8{bottom:784.426200px;}
.y281{bottom:787.051200px;}
.y90{bottom:787.426200px;}
.y6a{bottom:790.238700px;}
.y215{bottom:795.301200px;}
.y46{bottom:797.926200px;}
.y245{bottom:799.051200px;}
.yb6{bottom:799.426200px;}
.y280{bottom:803.551200px;}
.y69{bottom:803.738700px;}
.y1c7{bottom:803.926200px;}
.y17a{bottom:805.036200px;}
.y114{bottom:805.740900px;}
.y8f{bottom:806.926200px;}
.y1e4{bottom:807.916200px;}
.y45{bottom:812.926200px;}
.y110{bottom:814.741500px;}
.y214{bottom:814.801200px;}
.y244{bottom:815.551200px;}
.y68{bottom:817.238700px;}
.yb5{bottom:818.926200px;}
.y27f{bottom:820.051200px;}
.y10c{bottom:820.890900px;}
.y1c6{bottom:823.426200px;}
.y10a{bottom:825.241500px;}
.y10b{bottom:826.140900px;}
.y8e{bottom:826.426200px;}
.y44{bottom:827.926200px;}
.y10e{bottom:828.837830px;}
.y10f{bottom:828.990900px;}
.y67{bottom:830.738700px;}
.y243{bottom:832.051200px;}
.y109{bottom:832.740900px;}
.y28{bottom:833.289002px;}
.y213{bottom:834.301200px;}
.y27e{bottom:836.551200px;}
.yb4{bottom:838.426200px;}
.y10d{bottom:842.487243px;}
.y43{bottom:842.926200px;}
.y1f4{bottom:842.926500px;}
.y66{bottom:844.238700px;}
.y8d{bottom:845.926200px;}
.y242{bottom:848.551200px;}
.y1c0{bottom:851.296200px;}
.y105{bottom:852.241500px;}
.y27d{bottom:853.051200px;}
.y212{bottom:853.801200px;}
.y27{bottom:854.289002px;}
.y107{bottom:856.741500px;}
.yb3{bottom:857.926200px;}
.y104{bottom:859.740900px;}
.y1c5{bottom:862.426200px;}
.y241{bottom:865.051200px;}
.y8c{bottom:865.426200px;}
.y27c{bottom:869.551200px;}
.y101{bottom:873.240000px;}
.y211{bottom:873.301200px;}
.y26{bottom:875.289002px;}
.yb2{bottom:877.426200px;}
.y2{bottom:879.369000px;}
.yff{bottom:880.140900px;}
.y240{bottom:881.551200px;}
.y1c4{bottom:881.926200px;}
.yfe{bottom:882.837830px;}
.y100{bottom:882.990900px;}
.y8b{bottom:884.926200px;}
.y27b{bottom:886.051200px;}
.yfc{bottom:886.740900px;}
.y42{bottom:889.801200px;}
.y210{bottom:892.801200px;}
.y103{bottom:893.486800px;}
.yfd{bottom:896.487243px;}
.yb1{bottom:896.926200px;}
.y23f{bottom:898.051200px;}
.y1c3{bottom:901.426200px;}
.y27a{bottom:902.551200px;}
.yf6{bottom:903.240000px;}
.y8a{bottom:904.426200px;}
.y41{bottom:904.801200px;}
.yf8{bottom:909.841050px;}
.y20f{bottom:912.301200px;}
.yf9{bottom:913.740900px;}
.y23e{bottom:914.551200px;}
.yb0{bottom:916.426200px;}
.y279{bottom:919.051200px;}
.y40{bottom:919.801200px;}
.y89{bottom:923.926200px;}
.yfb{bottom:924.392330px;}
.y1c2{bottom:931.426200px;}
.y20e{bottom:931.801200px;}
.y278{bottom:935.551200px;}
.yaf{bottom:935.926200px;}
.y25{bottom:938.940000px;}
.y3f{bottom:939.256200px;}
.yf5{bottom:940.740900px;}
.y23d{bottom:941.551200px;}
.y88{bottom:943.426200px;}
.y20d{bottom:951.301200px;}
.y277{bottom:952.051200px;}
.yae{bottom:955.426200px;}
.yed{bottom:955.740000px;}
.yf1{bottom:958.740000px;}
.yec{bottom:961.140900px;}
.y3e{bottom:961.801200px;}
.y87{bottom:962.926200px;}
.yeb{bottom:963.837830px;}
.yf4{bottom:963.841050px;}
.y1{bottom:966.726000px;}
.ye9{bottom:967.740900px;}
.y276{bottom:968.551200px;}
.y24{bottom:970.440000px;}
.y20c{bottom:970.801200px;}
.yef{bottom:974.486800px;}
.yad{bottom:974.926200px;}
.yea{bottom:977.487243px;}
.y3d{bottom:979.801200px;}
.y86{bottom:982.426200px;}
.y275{bottom:985.051200px;}
.y20b{bottom:990.301200px;}
.y23c{bottom:992.551200px;}
.y274{bottom:1001.551200px;}
.y85{bottom:1001.926200px;}
.ye5{bottom:1004.802000px;}
.y23b{bottom:1009.051200px;}
.y20a{bottom:1009.801200px;}
.ye8{bottom:1009.902300px;}
.ye4{bottom:1013.802300px;}
.y273{bottom:1018.051200px;}
.y3c{bottom:1018.801200px;}
.y84{bottom:1021.426200px;}
.y23a{bottom:1025.551200px;}
.y209{bottom:1029.301200px;}
.y272{bottom:1034.551200px;}
.y23{bottom:1035.546001px;}
.y83{bottom:1040.926200px;}
.y239{bottom:1042.051200px;}
.y39{bottom:1047.511200px;}
.y208{bottom:1048.801200px;}
.ye3{bottom:1049.363700px;}
.y271{bottom:1051.051200px;}
.ydf{bottom:1059.864000px;}
.y82{bottom:1060.426200px;}
.ye2{bottom:1064.963700px;}
.y238{bottom:1067.551200px;}
.y207{bottom:1068.301200px;}
.yde{bottom:1068.863700px;}
.y81{bottom:1079.926200px;}
.y62{bottom:1083.782250px;}
.y237{bottom:1084.051200px;}
.y3b{bottom:1097.407950px;}
.y206{bottom:1098.301200px;}
.ydd{bottom:1098.863700px;}
.y80{bottom:1099.426200px;}
.y236{bottom:1100.551200px;}
.y3a{bottom:1110.907950px;}
.yac{bottom:1141.238100px;}
.y7f{bottom:1141.313100px;}
.y22{bottom:1165.122003px;}
.h4a{height:13.500000px;}
.h34{height:16.500000px;}
.h41{height:17.587500px;}
.h33{height:18.000000px;}
.h22{height:19.500000px;}
.h35{height:20.998500px;}
.h49{height:22.498500px;}
.h46{height:22.500000px;}
.h24{height:24.000000px;}
.h25{height:24.281040px;}
.h45{height:24.627912px;}
.h16{height:25.096500px;}
.h29{height:25.693595px;}
.h1c{height:30.030000px;}
.h19{height:31.500000px;}
.h2a{height:31.501500px;}
.h38{height:32.129696px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h3f{height:32.898091px;}
.h20{height:33.750000px;}
.h1e{height:34.320000px;}
.h31{height:34.500000px;}
.h1d{height:34.608000px;}
.h2d{height:35.068759px;}
.h42{height:35.693129px;}
.h1f{height:36.000000px;}
.hb{height:36.726562px;}
.h18{height:38.610000px;}
.h26{height:39.990234px;}
.h1a{height:40.500000px;}
.h43{height:40.523999px;}
.h48{height:40.755000px;}
.h47{height:41.097000px;}
.hf{height:41.317383px;}
.h27{height:41.660156px;}
.h23{height:42.000000px;}
.h28{height:42.656420px;}
.h17{height:42.916500px;}
.h3a{height:43.500000px;}
.h2c{height:44.443359px;}
.h12{height:45.000000px;}
.h21{height:45.423000px;}
.h2e{height:45.506180px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h1b{height:47.586000px;}
.h3d{height:48.000000px;}
.h3{height:48.195000px;}
.h15{height:51.502500px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h3b{height:55.576172px;}
.h40{height:56.905224px;}
.h14{height:60.564000px;}
.h2f{height:60.599400px;}
.h3e{height:61.500000px;}
.h30{height:64.573242px;}
.h2b{height:66.665039px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.h36{height:80.400600px;}
.hc{height:82.620000px;}
.h39{height:83.364258px;}
.h44{height:87.000000px;}
.h37{height:89.400000px;}
.h32{height:89.997803px;}
.h3c{height:105.376172px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w1d{width:7.452000px;}
.we{width:9.342000px;}
.w6{width:10.935000px;}
.w15{width:11.097000px;}
.w16{width:12.717000px;}
.w1b{width:16.497000px;}
.w1c{width:17.685000px;}
.wd{width:27.486000px;}
.w13{width:50.325000px;}
.w19{width:51.138000px;}
.w1a{width:51.273000px;}
.wa{width:53.217000px;}
.w14{width:53.676000px;}
.w17{width:56.673000px;}
.w11{width:60.588000px;}
.w9{width:64.233000px;}
.w7{width:71.982000px;}
.wc{width:72.522000px;}
.wf{width:88.884000px;}
.wb{width:112.833000px;}
.w8{width:160.629000px;}
.w10{width:171.564000px;}
.w18{width:189.864000px;}
.w12{width:266.577000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.xf{left:-1.277100px;}
.x0{left:0.000000px;}
.x67{left:1.200900px;}
.x29{left:6.174900px;}
.x47{left:9.023850px;}
.x75{left:14.130150px;}
.x1d{left:16.524000px;}
.x2b{left:19.224900px;}
.x78{left:20.756850px;}
.x90{left:21.807300px;}
.x2f{left:25.373850px;}
.x1e{left:26.874000px;}
.x49{left:29.873850px;}
.x7c{left:31.674000px;}
.x15{left:37.980450px;}
.x6a{left:45.599745px;}
.x69{left:47.550900px;}
.x51{left:55.763400px;}
.x26{left:61.613100px;}
.x5b{left:62.696850px;}
.x12{left:67.680450px;}
.x44{left:83.811750px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x31{left:110.273850px;}
.x82{left:123.000000px;}
.xb{left:126.112500px;}
.x2d{left:132.173850px;}
.x1b{left:137.574000px;}
.x2e{left:140.423850px;}
.x6{left:145.650000px;}
.x36{left:156.633000px;}
.x92{left:159.273000px;}
.x35{left:162.142950px;}
.x33{left:179.997175px;}
.x34{left:183.448552px;}
.x37{left:187.492950px;}
.x38{left:188.842950px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x30{left:212.873850px;}
.x93{left:214.009500px;}
.x96{left:218.007000px;}
.x97{left:225.609750px;}
.x9{left:228.743990px;}
.x94{left:230.507100px;}
.x32{left:238.832850px;}
.x70{left:244.882350px;}
.x3d{left:248.317500px;}
.x3e{left:257.659200px;}
.x64{left:261.746850px;}
.x66{left:267.079500px;}
.x86{left:270.772650px;}
.x83{left:274.078500px;}
.x6f{left:275.182350px;}
.x85{left:276.928500px;}
.x6e{left:278.180400px;}
.x98{left:280.601700px;}
.x71{left:282.301350px;}
.x9a{left:286.001700px;}
.x8{left:293.590494px;}
.x6c{left:295.580400px;}
.x6d{left:298.277330px;}
.x68{left:302.330400px;}
.x99{left:303.814200px;}
.x6b{left:305.330400px;}
.x9b{left:309.214200px;}
.x20{left:310.792825px;}
.x8e{left:311.914200px;}
.x53{left:313.168500px;}
.x22{left:314.244202px;}
.x55{left:316.465350px;}
.x24{left:318.288600px;}
.x25{left:319.638600px;}
.x5a{left:323.959217px;}
.x21{left:328.491969px;}
.x23{left:339.138600px;}
.x76{left:348.145500px;}
.x5e{left:349.465350px;}
.x7a{left:351.525000px;}
.x27{left:357.657600px;}
.x56{left:358.765350px;}
.x46{left:360.675000px;}
.x7b{left:363.549000px;}
.x1a{left:366.142500px;}
.x5c{left:368.215350px;}
.x84{left:369.225000px;}
.x48{left:372.098850px;}
.x1c{left:374.566500px;}
.x88{left:382.741650px;}
.x8c{left:385.591650px;}
.x95{left:387.337500px;}
.x87{left:391.747350px;}
.x60{left:394.015350px;}
.x4e{left:397.783500px;}
.x57{left:400.765350px;}
.x54{left:404.365350px;}
.x61{left:413.223387px;}
.x4b{left:415.151125px;}
.x4d{left:418.602502px;}
.x50{left:422.646900px;}
.x52{left:423.996900px;}
.x72{left:430.747500px;}
.x4c{left:432.850269px;}
.x5d{left:436.165350px;}
.x58{left:442.164523px;}
.x4f{left:443.496900px;}
.x17{left:445.837500px;}
.x5f{left:449.215350px;}
.x3{left:454.959000px;}
.x18{left:459.966900px;}
.x77{left:471.331350px;}
.x79{left:480.247350px;}
.x7d{left:490.810650px;}
.x89{left:493.660500px;}
.xe{left:499.008000px;}
.x28{left:503.394000px;}
.x10{left:509.943750px;}
.x19{left:517.818900px;}
.x2a{left:519.468900px;}
.x1f{left:526.771500px;}
.x4a{left:532.238850px;}
.x62{left:534.273043px;}
.x43{left:537.836250px;}
.x59{left:541.760146px;}
.x63{left:545.515350px;}
.x2c{left:549.318900px;}
.x40{left:555.236250px;}
.x42{left:557.941852px;}
.x3f{left:561.986250px;}
.x65{left:565.015350px;}
.xd{left:570.946500px;}
.x41{left:572.787973px;}
.x11{left:576.555000px;}
.x13{left:585.285450px;}
.x14{left:590.685450px;}
.x7f{left:598.879500px;}
.x8d{left:601.729350px;}
.x7e{left:605.035200px;}
.x45{left:608.159250px;}
.x39{left:611.166000px;}
.x3a{left:638.652300px;}
.x16{left:648.537450px;}
.xc{left:650.025750px;}
.x8f{left:685.600500px;}
.x3b{left:699.819000px;}
.x3c{left:709.160850px;}
.x81{left:713.698350px;}
.x8b{left:716.548350px;}
.x80{left:719.854200px;}
.x8a{left:722.704050px;}
.x91{left:736.738800px;}
.x73{left:772.195500px;}
.x74{left:784.913400px;}
@media print{
.v4{vertical-align:-23.466667pt;}
.v2{vertical-align:-15.840000pt;}
.vf{vertical-align:-13.866667pt;}
.vd{vertical-align:-10.144079pt;}
.ve{vertical-align:-5.333333pt;}
.vc{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:5.333333pt;}
.vb{vertical-align:7.461602pt;}
.v5{vertical-align:9.589084pt;}
.v6{vertical-align:13.866133pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:18.480000pt;}
.v7{vertical-align:34.133867pt;}
.v8{vertical-align:42.133333pt;}
.v9{vertical-align:44.266667pt;}
.ls3b{letter-spacing:-28.451159pt;}
.ls42{letter-spacing:-1.066667pt;}
.ls13{letter-spacing:-0.800000pt;}
.ls4c{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls41{letter-spacing:-0.384000pt;}
.ls35{letter-spacing:-0.339164pt;}
.ls36{letter-spacing:-0.213333pt;}
.ls3a{letter-spacing:-0.160000pt;}
.ls34{letter-spacing:-0.123332pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls18{letter-spacing:0.184998pt;}
.ls49{letter-spacing:0.240000pt;}
.lsf{letter-spacing:0.266667pt;}
.ls21{letter-spacing:0.268000pt;}
.ls5{letter-spacing:0.363067pt;}
.ls7{letter-spacing:0.363467pt;}
.ls8{letter-spacing:0.363600pt;}
.ls6{letter-spacing:0.363733pt;}
.lsc{letter-spacing:0.364000pt;}
.ls28{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.400000pt;}
.ls32{letter-spacing:0.400830pt;}
.ls48{letter-spacing:0.532800pt;}
.ls47{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.560000pt;}
.ls44{letter-spacing:0.693333pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls43{letter-spacing:1.066667pt;}
.ls26{letter-spacing:1.541653pt;}
.ls4a{letter-spacing:2.068800pt;}
.ls40{letter-spacing:4.800000pt;}
.ls2c{letter-spacing:4.853333pt;}
.ls10{letter-spacing:6.560000pt;}
.ls4b{letter-spacing:8.140267pt;}
.ls19{letter-spacing:9.743307pt;}
.lsa{letter-spacing:12.571733pt;}
.ls27{letter-spacing:23.093333pt;}
.ls38{letter-spacing:25.622278pt;}
.ls16{letter-spacing:28.983083pt;}
.ls2e{letter-spacing:32.710641pt;}
.ls22{letter-spacing:36.968847pt;}
.ls11{letter-spacing:39.413333pt;}
.ls31{letter-spacing:44.053333pt;}
.ls2b{letter-spacing:50.473730pt;}
.ls14{letter-spacing:53.526204pt;}
.ls12{letter-spacing:54.026667pt;}
.ls3d{letter-spacing:54.560000pt;}
.ls17{letter-spacing:56.186298pt;}
.ls24{letter-spacing:56.541667pt;}
.ls37{letter-spacing:62.193790pt;}
.lsb{letter-spacing:65.778133pt;}
.ls45{letter-spacing:85.493333pt;}
.ls46{letter-spacing:86.560000pt;}
.ls1d{letter-spacing:101.360000pt;}
.ls1c{letter-spacing:106.986667pt;}
.ls1a{letter-spacing:107.226667pt;}
.ls2d{letter-spacing:111.893328pt;}
.ls3c{letter-spacing:117.600000pt;}
.ls3e{letter-spacing:122.400000pt;}
.ls2a{letter-spacing:124.106667pt;}
.ls15{letter-spacing:124.999428pt;}
.ls33{letter-spacing:135.306667pt;}
.ls1f{letter-spacing:136.467266pt;}
.ls29{letter-spacing:140.835966pt;}
.ls3f{letter-spacing:145.973333pt;}
.ls25{letter-spacing:194.453333pt;}
.ls1b{letter-spacing:205.706667pt;}
.ls23{letter-spacing:224.094729pt;}
.ls1e{letter-spacing:279.786667pt;}
.ls2f{letter-spacing:370.098667pt;}
.ls39{letter-spacing:444.880000pt;}
.ls30{letter-spacing:459.756000pt;}
.ls20{letter-spacing:731.568000pt;}
.ws89{word-spacing:-488.800000pt;}
.ws9c{word-spacing:-459.756000pt;}
.ws9a{word-spacing:-370.098667pt;}
.ws80{word-spacing:-127.786667pt;}
.wsa5{word-spacing:-122.400000pt;}
.wsa2{word-spacing:-117.600000pt;}
.ws77{word-spacing:-116.053333pt;}
.ws98{word-spacing:-111.893328pt;}
.ws84{word-spacing:-99.824795pt;}
.ws7a{word-spacing:-87.810870pt;}
.wsfb{word-spacing:-86.560000pt;}
.wsfa{word-spacing:-85.493333pt;}
.ws9f{word-spacing:-62.193790pt;}
.ws93{word-spacing:-59.414320pt;}
.wsa3{word-spacing:-54.560000pt;}
.ws99{word-spacing:-54.026667pt;}
.ws73{word-spacing:-53.526204pt;}
.ws95{word-spacing:-50.473730pt;}
.ws8f{word-spacing:-49.920000pt;}
.ws59{word-spacing:-45.546667pt;}
.ws7f{word-spacing:-44.106667pt;}
.ws87{word-spacing:-25.653111pt;}
.ws1{word-spacing:-12.432000pt;}
.ws32{word-spacing:-11.850667pt;}
.ws57{word-spacing:-11.573333pt;}
.ws10d{word-spacing:-11.312000pt;}
.ws7{word-spacing:-11.306667pt;}
.ws7c{word-spacing:-10.812532pt;}
.ws6{word-spacing:-10.773333pt;}
.ws56{word-spacing:-10.506667pt;}
.ws12d{word-spacing:-10.416000pt;}
.wsfe{word-spacing:-10.240000pt;}
.wsab{word-spacing:-10.234667pt;}
.ws12a{word-spacing:-10.176000pt;}
.wsac{word-spacing:-9.930667pt;}
.wsef{word-spacing:-9.706667pt;}
.ws12c{word-spacing:-9.696000pt;}
.ws158{word-spacing:-9.600000pt;}
.wsaa{word-spacing:-9.221333pt;}
.wsb{word-spacing:-9.045333pt;}
.ws12e{word-spacing:-8.976000pt;}
.ws12b{word-spacing:-8.736000pt;}
.wsc{word-spacing:-8.720000pt;}
.ws8{word-spacing:-8.618667pt;}
.wsae{word-spacing:-8.362667pt;}
.ws4{word-spacing:-8.320000pt;}
.ws2{word-spacing:-8.080800pt;}
.ws9{word-spacing:-7.840000pt;}
.wsb1{word-spacing:-7.765333pt;}
.wsa{word-spacing:-7.317333pt;}
.ws3{word-spacing:-6.115200pt;}
.ws108{word-spacing:-4.640000pt;}
.ws5{word-spacing:-2.370133pt;}
.ws8c{word-spacing:-1.529045pt;}
.wse6{word-spacing:-1.066667pt;}
.ws10b{word-spacing:-0.533333pt;}
.ws9d{word-spacing:-0.400830pt;}
.ws5a{word-spacing:-0.400000pt;}
.ws6f{word-spacing:-0.266667pt;}
.ws14d{word-spacing:-0.240000pt;}
.wsfd{word-spacing:-0.184998pt;}
.ws0{word-spacing:0.000000pt;}
.ws85{word-spacing:0.160000pt;}
.ws143{word-spacing:0.480000pt;}
.ws164{word-spacing:0.576000pt;}
.wsda{word-spacing:1.066667pt;}
.ws132{word-spacing:1.152000pt;}
.ws165{word-spacing:2.256000pt;}
.ws163{word-spacing:2.640000pt;}
.wsce{word-spacing:3.200000pt;}
.ws111{word-spacing:3.946667pt;}
.ws155{word-spacing:4.224000pt;}
.ws14c{word-spacing:4.320000pt;}
.ws122{word-spacing:4.896000pt;}
.ws156{word-spacing:4.944000pt;}
.wsed{word-spacing:4.960000pt;}
.ws14b{word-spacing:5.040000pt;}
.ws13f{word-spacing:5.088000pt;}
.ws128{word-spacing:5.136000pt;}
.ws120{word-spacing:5.520000pt;}
.ws3e{word-spacing:5.653333pt;}
.ws4d{word-spacing:5.813333pt;}
.ws2a{word-spacing:5.861333pt;}
.ws46{word-spacing:5.866667pt;}
.wse{word-spacing:5.880000pt;}
.ws129{word-spacing:5.904000pt;}
.ws2f{word-spacing:5.920000pt;}
.wsa7{word-spacing:6.026667pt;}
.ws166{word-spacing:6.048000pt;}
.ws10a{word-spacing:6.133333pt;}
.ws18{word-spacing:6.144000pt;}
.ws167{word-spacing:6.192000pt;}
.ws14e{word-spacing:6.240000pt;}
.wsf{word-spacing:6.280000pt;}
.wse8{word-spacing:6.293333pt;}
.ws11d{word-spacing:6.336000pt;}
.ws121{word-spacing:6.384000pt;}
.ws31{word-spacing:6.400000pt;}
.ws147{word-spacing:6.432000pt;}
.wsec{word-spacing:6.506667pt;}
.ws113{word-spacing:6.560000pt;}
.ws13e{word-spacing:6.576000pt;}
.ws69{word-spacing:6.666667pt;}
.ws2c{word-spacing:6.698667pt;}
.ws13a{word-spacing:6.720000pt;}
.ws74{word-spacing:6.826667pt;}
.ws49{word-spacing:6.880000pt;}
.ws27{word-spacing:6.933333pt;}
.ws52{word-spacing:6.986667pt;}
.ws138{word-spacing:7.008000pt;}
.ws5d{word-spacing:7.040000pt;}
.ws109{word-spacing:7.093333pt;}
.ws135{word-spacing:7.104000pt;}
.wsfc{word-spacing:7.146667pt;}
.ws3a{word-spacing:7.200000pt;}
.ws12f{word-spacing:7.248000pt;}
.ws30{word-spacing:7.253333pt;}
.ws11e{word-spacing:7.296000pt;}
.ws110{word-spacing:7.360000pt;}
.ws33{word-spacing:7.413333pt;}
.ws160{word-spacing:7.440000pt;}
.wsf8{word-spacing:7.466667pt;}
.ws146{word-spacing:7.488000pt;}
.ws47{word-spacing:7.520000pt;}
.ws12{word-spacing:7.536000pt;}
.ws2e{word-spacing:7.541333pt;}
.ws114{word-spacing:7.573333pt;}
.ws8a{word-spacing:7.578667pt;}
.ws50{word-spacing:7.626667pt;}
.ws112{word-spacing:7.680000pt;}
.wsd6{word-spacing:7.733333pt;}
.ws60{word-spacing:7.786667pt;}
.wsb7{word-spacing:7.802667pt;}
.ws139{word-spacing:7.824000pt;}
.ws118{word-spacing:7.872000pt;}
.wseb{word-spacing:7.893333pt;}
.ws65{word-spacing:7.946667pt;}
.wsb8{word-spacing:7.954667pt;}
.ws24{word-spacing:8.000000pt;}
.ws157{word-spacing:8.016000pt;}
.ws5e{word-spacing:8.053333pt;}
.ws115{word-spacing:8.064000pt;}
.ws42{word-spacing:8.106667pt;}
.ws14f{word-spacing:8.112000pt;}
.ws1a{word-spacing:8.160000pt;}
.ws53{word-spacing:8.176000pt;}
.ws44{word-spacing:8.232000pt;}
.ws119{word-spacing:8.256000pt;}
.ws10f{word-spacing:8.266667pt;}
.wse9{word-spacing:8.320000pt;}
.ws130{word-spacing:8.400000pt;}
.ws21{word-spacing:8.426667pt;}
.wsca{word-spacing:8.480000pt;}
.ws117{word-spacing:8.496000pt;}
.wsd{word-spacing:8.533333pt;}
.ws13d{word-spacing:8.544000pt;}
.ws63{word-spacing:8.586667pt;}
.wsc7{word-spacing:8.640000pt;}
.ws15{word-spacing:8.688000pt;}
.ws19{word-spacing:8.736000pt;}
.ws4f{word-spacing:8.800000pt;}
.ws14{word-spacing:8.832000pt;}
.ws124{word-spacing:8.880000pt;}
.wsc6{word-spacing:8.906667pt;}
.ws145{word-spacing:8.928000pt;}
.ws28{word-spacing:8.960000pt;}
.ws15c{word-spacing:8.976000pt;}
.ws1e{word-spacing:9.013333pt;}
.ws23{word-spacing:9.066667pt;}
.wsd9{word-spacing:9.120000pt;}
.wsa8{word-spacing:9.173333pt;}
.ws123{word-spacing:9.216000pt;}
.wsc8{word-spacing:9.226667pt;}
.ws162{word-spacing:9.264000pt;}
.wscd{word-spacing:9.280000pt;}
.ws13c{word-spacing:9.312000pt;}
.ws5c{word-spacing:9.333333pt;}
.ws116{word-spacing:9.360000pt;}
.wsa9{word-spacing:9.386667pt;}
.wscf{word-spacing:9.440000pt;}
.ws1d{word-spacing:9.456000pt;}
.wsb2{word-spacing:9.493333pt;}
.ws43{word-spacing:9.504000pt;}
.ws11{word-spacing:9.520000pt;}
.ws22{word-spacing:9.546667pt;}
.ws11a{word-spacing:9.552000pt;}
.ws133{word-spacing:9.600000pt;}
.ws72{word-spacing:9.653333pt;}
.ws15a{word-spacing:9.696000pt;}
.wsd3{word-spacing:9.706667pt;}
.ws48{word-spacing:9.760000pt;}
.ws70{word-spacing:9.866667pt;}
.ws36{word-spacing:9.920000pt;}
.ws66{word-spacing:9.973333pt;}
.wsd7{word-spacing:10.026667pt;}
.ws2d{word-spacing:10.042667pt;}
.ws6d{word-spacing:10.080000pt;}
.ws126{word-spacing:10.128000pt;}
.ws26{word-spacing:10.133333pt;}
.wsb5{word-spacing:10.186667pt;}
.ws105{word-spacing:10.240000pt;}
.ws15f{word-spacing:10.272000pt;}
.ws6c{word-spacing:10.346667pt;}
.ws97{word-spacing:10.400000pt;}
.ws161{word-spacing:10.416000pt;}
.ws37{word-spacing:10.453333pt;}
.ws15b{word-spacing:10.464000pt;}
.wsdb{word-spacing:10.506667pt;}
.ws1b{word-spacing:10.512000pt;}
.ws38{word-spacing:10.560000pt;}
.ws6a{word-spacing:10.613333pt;}
.ws6b{word-spacing:10.666667pt;}
.ws4a{word-spacing:10.720000pt;}
.ws14a{word-spacing:10.752000pt;}
.wsc9{word-spacing:10.773333pt;}
.ws154{word-spacing:10.800000pt;}
.wsd5{word-spacing:10.826667pt;}
.ws13b{word-spacing:10.848000pt;}
.ws55{word-spacing:10.880000pt;}
.wsa1{word-spacing:10.933333pt;}
.ws10e{word-spacing:10.986667pt;}
.ws141{word-spacing:10.992000pt;}
.ws64{word-spacing:11.040000pt;}
.ws3f{word-spacing:11.146667pt;}
.ws1f{word-spacing:11.253333pt;}
.ws159{word-spacing:11.280000pt;}
.ws134{word-spacing:11.328000pt;}
.ws25{word-spacing:11.360000pt;}
.ws75{word-spacing:11.466667pt;}
.ws149{word-spacing:11.472000pt;}
.ws94{word-spacing:11.573333pt;}
.wsde{word-spacing:11.680000pt;}
.ws127{word-spacing:11.712000pt;}
.wsd1{word-spacing:11.786667pt;}
.ws61{word-spacing:11.840000pt;}
.wsb6{word-spacing:11.946667pt;}
.ws3c{word-spacing:12.053333pt;}
.ws151{word-spacing:12.144000pt;}
.ws71{word-spacing:12.160000pt;}
.wsd4{word-spacing:12.213333pt;}
.ws11c{word-spacing:12.240000pt;}
.ws4c{word-spacing:12.320000pt;}
.ws20{word-spacing:12.373333pt;}
.ws10{word-spacing:12.394667pt;}
.ws2b{word-spacing:12.458667pt;}
.wsa4{word-spacing:12.533333pt;}
.ws153{word-spacing:12.576000pt;}
.ws76{word-spacing:12.586667pt;}
.ws131{word-spacing:12.672000pt;}
.ws54{word-spacing:12.746667pt;}
.ws140{word-spacing:12.816000pt;}
.wsb3{word-spacing:12.960000pt;}
.ws106{word-spacing:13.013333pt;}
.wsd2{word-spacing:13.066667pt;}
.ws17{word-spacing:13.104000pt;}
.ws29{word-spacing:13.120000pt;}
.wsd8{word-spacing:13.173333pt;}
.wse7{word-spacing:13.226667pt;}
.ws3d{word-spacing:13.280000pt;}
.ws51{word-spacing:13.333333pt;}
.ws148{word-spacing:13.392000pt;}
.ws15e{word-spacing:13.440000pt;}
.ws5f{word-spacing:13.493333pt;}
.ws13{word-spacing:13.824000pt;}
.ws1c{word-spacing:13.920000pt;}
.ws5b{word-spacing:14.026667pt;}
.ws62{word-spacing:14.080000pt;}
.ws144{word-spacing:14.304000pt;}
.wsea{word-spacing:14.453333pt;}
.wscb{word-spacing:14.613333pt;}
.ws125{word-spacing:14.640000pt;}
.wsd0{word-spacing:14.666667pt;}
.ws150{word-spacing:14.688000pt;}
.wsee{word-spacing:14.720000pt;}
.wsdd{word-spacing:14.826667pt;}
.ws4e{word-spacing:14.880000pt;}
.ws3b{word-spacing:14.933333pt;}
.ws34{word-spacing:15.093333pt;}
.ws45{word-spacing:15.146667pt;}
.wsdc{word-spacing:15.200000pt;}
.wsb4{word-spacing:15.253333pt;}
.ws11b{word-spacing:15.360000pt;}
.ws40{word-spacing:15.413333pt;}
.ws15d{word-spacing:15.648000pt;}
.wscc{word-spacing:15.680000pt;}
.ws39{word-spacing:16.053333pt;}
.ws35{word-spacing:16.320000pt;}
.ws142{word-spacing:16.704000pt;}
.ws152{word-spacing:17.520000pt;}
.ws137{word-spacing:17.808000pt;}
.ws10c{word-spacing:18.346667pt;}
.ws67{word-spacing:18.880000pt;}
.wsf9{word-spacing:19.093333pt;}
.ws6e{word-spacing:20.213333pt;}
.ws136{word-spacing:20.736000pt;}
.ws11f{word-spacing:20.880000pt;}
.ws9b{word-spacing:21.280000pt;}
.ws16{word-spacing:21.360000pt;}
.ws41{word-spacing:21.386667pt;}
.ws4b{word-spacing:21.440000pt;}
.ws107{word-spacing:23.626667pt;}
.ws7d{word-spacing:27.515429pt;}
.ws68{word-spacing:28.373333pt;}
.ws78{word-spacing:30.712818pt;}
.ws58{word-spacing:32.533333pt;}
.ws82{word-spacing:42.429383pt;}
.ws8b{word-spacing:46.548681pt;}
.ws91{word-spacing:46.696679pt;}
.ws81{word-spacing:49.628904pt;}
.ws90{word-spacing:54.445029pt;}
.ws86{word-spacing:69.050200pt;}
.ws79{word-spacing:83.210667pt;}
.wsf0{word-spacing:86.714917pt;}
.wsf1{word-spacing:88.830065pt;}
.ws83{word-spacing:93.877333pt;}
.ws92{word-spacing:98.250667pt;}
.ws7e{word-spacing:121.184000pt;}
.ws7b{word-spacing:125.114418pt;}
.ws8d{word-spacing:127.229566pt;}
.ws8e{word-spacing:133.630511pt;}
.wsad{word-spacing:153.358400pt;}
.wsf3{word-spacing:233.524800pt;}
.wsf2{word-spacing:233.525333pt;}
.wsbd{word-spacing:238.858133pt;}
.wsbe{word-spacing:238.858667pt;}
.wsbc{word-spacing:244.191467pt;}
.wsf4{word-spacing:249.524800pt;}
.wsba{word-spacing:253.620800pt;}
.wse1{word-spacing:275.707200pt;}
.wse2{word-spacing:281.040533pt;}
.wse0{word-spacing:286.374400pt;}
.ws103{word-spacing:291.707733pt;}
.ws101{word-spacing:293.842133pt;}
.wsaf{word-spacing:294.815467pt;}
.wse3{word-spacing:301.136533pt;}
.wsf6{word-spacing:301.308267pt;}
.ws104{word-spacing:304.421867pt;}
.wsbf{word-spacing:317.370667pt;}
.wsf7{word-spacing:318.374400pt;}
.ws100{word-spacing:319.271467pt;}
.wsb9{word-spacing:325.855467pt;}
.wsbb{word-spacing:331.188800pt;}
.wse5{word-spacing:346.470400pt;}
.wsb0{word-spacing:359.348800pt;}
.wsc4{word-spacing:374.864533pt;}
.wse4{word-spacing:382.971733pt;}
.ws102{word-spacing:392.571200pt;}
.wsf5{word-spacing:405.371200pt;}
.wsdf{word-spacing:408.571200pt;}
.wsff{word-spacing:411.771200pt;}
.wsc5{word-spacing:415.397867pt;}
.wsc1{word-spacing:436.415467pt;}
.ws88{word-spacing:467.490957pt;}
.wsc0{word-spacing:506.260800pt;}
.wsc2{word-spacing:539.625600pt;}
.wsc3{word-spacing:544.404267pt;}
.wsa0{word-spacing:667.440000pt;}
.wsa6{word-spacing:803.808000pt;}
.ws9e{word-spacing:836.352000pt;}
.ws96{word-spacing:855.792000pt;}
._27{margin-left:-118.933333pt;}
._1c{margin-left:-110.986667pt;}
._24{margin-left:-60.278645pt;}
._68{margin-left:-30.952533pt;}
._2b{margin-left:-16.213320pt;}
._75{margin-left:-15.075213pt;}
._2c{margin-left:-14.080013pt;}
._76{margin-left:-11.875252pt;}
._9{margin-left:-9.096546pt;}
._c{margin-left:-7.840013pt;}
._84{margin-left:-6.602667pt;}
._2{margin-left:-5.269346pt;}
._1{margin-left:-3.840000pt;}
._3{margin-left:-2.826680pt;}
._0{margin-left:-1.706654pt;}
._6{width:1.635200pt;}
._56{width:2.755252pt;}
._3b{width:3.646641pt;}
._60{width:4.672000pt;}
._4{width:5.599987pt;}
._5{width:6.933320pt;}
._7{width:7.858667pt;}
._8{width:8.972787pt;}
._10{width:10.482068pt;}
._f{width:12.260254pt;}
._74{width:13.320000pt;}
._d{width:15.535987pt;}
._83{width:16.497054pt;}
._1d{width:31.225041pt;}
._14{width:41.063478pt;}
._a{width:52.742387pt;}
._18{width:54.608750pt;}
._11{width:57.173333pt;}
._23{width:63.634641pt;}
._17{width:65.239441pt;}
._13{width:73.065118pt;}
._12{width:74.128859pt;}
._21{width:75.186433pt;}
._2a{width:79.453729pt;}
._1b{width:85.362133pt;}
._19{width:94.928846pt;}
._1a{width:100.796378pt;}
._25{width:108.373333pt;}
._e{width:117.065041pt;}
._b{width:118.826133pt;}
._16{width:132.272000pt;}
._15{width:143.996588pt;}
._22{width:145.082569pt;}
._20{width:147.727389pt;}
._1e{width:157.341139pt;}
._1f{width:164.247746pt;}
._28{width:167.485218pt;}
._2f{width:168.751441pt;}
._3a{width:180.997346pt;}
._32{width:187.274133pt;}
._29{width:191.473344pt;}
._30{width:198.863987pt;}
._2e{width:205.436267pt;}
._34{width:216.128520pt;}
._33{width:233.220800pt;}
._4f{width:243.329067pt;}
._6b{width:247.220800pt;}
._4a{width:251.529587pt;}
._47{width:252.554133pt;}
._31{width:257.781867pt;}
._4d{width:259.742400pt;}
._46{width:263.220800pt;}
._3e{width:266.250133pt;}
._3f{width:267.317333pt;}
._44{width:272.650667pt;}
._48{width:278.837346pt;}
._35{width:283.024000pt;}
._43{width:288.649600pt;}
._45{width:289.931187pt;}
._5c{width:294.737067pt;}
._49{width:297.227187pt;}
._6a{width:300.597854pt;}
._40{width:301.834641pt;}
._53{width:302.830933pt;}
._7f{width:304.336000pt;}
._42{width:308.008000pt;}
._5a{width:309.499200pt;}
._6c{width:313.355187pt;}
._59{width:314.832000pt;}
._82{width:317.051200pt;}
._69{width:318.674667pt;}
._5f{width:320.165867pt;}
._70{width:321.403733pt;}
._3c{width:326.218667pt;}
._38{width:327.178667pt;}
._4c{width:332.945067pt;}
._73{width:335.100267pt;}
._4e{width:339.391467pt;}
._39{width:343.166400pt;}
._37{width:347.525346pt;}
._6e{width:352.165867pt;}
._65{width:356.432533pt;}
._64{width:358.565867pt;}
._26{width:366.460247pt;}
._52{width:391.227733pt;}
._5e{width:400.763733pt;}
._41{width:402.527974pt;}
._51{width:407.227200pt;}
._5b{width:408.230400pt;}
._36{width:413.274667pt;}
._61{width:415.333867pt;}
._7a{width:416.591987pt;}
._62{width:423.333867pt;}
._57{width:424.933867pt;}
._66{width:428.367441pt;}
._55{width:431.760533pt;}
._7d{width:432.933867pt;}
._54{width:437.627200pt;}
._79{width:438.778654pt;}
._81{width:441.338654pt;}
._7c{width:446.074654pt;}
._2d{width:450.129600pt;}
._7b{width:451.535987pt;}
._78{width:456.855467pt;}
._72{width:464.805320pt;}
._6f{width:475.856000pt;}
._58{width:491.430400pt;}
._5d{width:524.070400pt;}
._67{width:529.060774pt;}
._3d{width:531.765333pt;}
._7e{width:535.162667pt;}
._6d{width:558.629333pt;}
._80{width:567.802667pt;}
._71{width:591.269333pt;}
._4b{width:597.668267pt;}
._50{width:619.054946pt;}
._63{width:658.298133pt;}
._77{width:1004.425600pt;}
.fs13{font-size:22.333333pt;}
.fse{font-size:30.833067pt;}
.fsc{font-size:31.200000pt;}
.fs12{font-size:31.570452pt;}
.fsb{font-size:36.400000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs14{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:54.608750pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs10{font-size:82.666667pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.fs11{font-size:108.000000pt;}
.y0{bottom:0.000000pt;}
.y108{bottom:2.666133pt;}
.y1f5{bottom:2.666400pt;}
.y143{bottom:2.799867pt;}
.y1e2{bottom:3.199067pt;}
.y14f{bottom:3.199867pt;}
.y1df{bottom:3.200400pt;}
.y14b{bottom:3.201200pt;}
.y112{bottom:3.999467pt;}
.ye1{bottom:4.533067pt;}
.y153{bottom:4.533200pt;}
.ye7{bottom:4.533600pt;}
.y118{bottom:4.533733pt;}
.yf3{bottom:4.534267pt;}
.yd7{bottom:4.534400pt;}
.yd4{bottom:5.333067pt;}
.y1e1{bottom:6.665733pt;}
.y106{bottom:6.666133pt;}
.y14e{bottom:6.666533pt;}
.y1de{bottom:6.667067pt;}
.y149{bottom:6.667867pt;}
.y11f{bottom:7.333200pt;}
.yee{bottom:7.334133pt;}
.yfa{bottom:7.734133pt;}
.ye0{bottom:7.999733pt;}
.y152{bottom:7.999867pt;}
.ye6{bottom:8.000267pt;}
.y117{bottom:8.000400pt;}
.yf2{bottom:8.000800pt;}
.yd6{bottom:8.001067pt;}
.y102{bottom:8.934267pt;}
.yf7{bottom:9.334133pt;}
.y141{bottom:9.866533pt;}
.y121{bottom:10.666533pt;}
.yf0{bottom:10.667467pt;}
.y113{bottom:12.399467pt;}
.y125{bottom:16.133200pt;}
.y142{bottom:19.332285pt;}
.y13f{bottom:21.866533pt;}
.y12c{bottom:23.066533pt;}
.y111{bottom:23.466133pt;}
.y13b{bottom:23.999867pt;}
.y65{bottom:56.073600pt;}
.y1e0{bottom:56.333333pt;}
.y5{bottom:59.133337pt;}
.y38{bottom:60.086668pt;}
.y1e3{bottom:62.999067pt;}
.y235{bottom:65.518400pt;}
.y64{bottom:66.740267pt;}
.ydc{bottom:71.934400pt;}
.y1dd{bottom:73.665333pt;}
.y37{bottom:74.753335pt;}
.y1d4{bottom:75.269067pt;}
.y1ac{bottom:75.800000pt;}
.yab{bottom:75.934400pt;}
.y63{bottom:77.406933pt;}
.y179{bottom:78.101067pt;}
.y270{bottom:79.601067pt;}
.y234{bottom:80.185067pt;}
.y1dc{bottom:80.332400pt;}
.y205{bottom:80.466667pt;}
.y169{bottom:80.666533pt;}
.y1bf{bottom:85.719467pt;}
.y4{bottom:86.333337pt;}
.y5f{bottom:88.406933pt;}
.ydb{bottom:89.267733pt;}
.y1ab{bottom:92.133333pt;}
.y204{bottom:92.466667pt;}
.yaa{bottom:93.267733pt;}
.y26f{bottom:94.267733pt;}
.y233{bottom:94.851733pt;}
.y178{bottom:95.434400pt;}
.y1db{bottom:97.665733pt;}
.y168{bottom:97.999867pt;}
.y61{bottom:98.073600pt;}
.y1be{bottom:103.052800pt;}
.y1aa{bottom:104.133333pt;}
.y203{bottom:104.466667pt;}
.yda{bottom:106.601067pt;}
.y26e{bottom:108.934400pt;}
.y60{bottom:110.073600pt;}
.ya9{bottom:110.601067pt;}
.y1da{bottom:114.999067pt;}
.y167{bottom:115.333200pt;}
.y1a9{bottom:116.133333pt;}
.y202{bottom:116.466667pt;}
.y232{bottom:117.518400pt;}
.y1bd{bottom:120.386133pt;}
.y177{bottom:122.101067pt;}
.y26d{bottom:123.601067pt;}
.y21{bottom:123.790666pt;}
.yd9{bottom:123.934400pt;}
.y1a8{bottom:128.133333pt;}
.y231{bottom:132.185067pt;}
.y201{bottom:132.466667pt;}
.y166{bottom:132.666533pt;}
.yd5{bottom:133.266667pt;}
.yd3{bottom:135.934667pt;}
.ya8{bottom:137.267733pt;}
.y1bc{bottom:137.719467pt;}
.yd8{bottom:137.801067pt;}
.y26c{bottom:138.267733pt;}
.y1a7{bottom:140.133333pt;}
.yd2{bottom:141.267733pt;}
.y230{bottom:146.851733pt;}
.y176{bottom:148.767733pt;}
.y1f2{bottom:148.999067pt;}
.y200{bottom:149.133333pt;}
.y165{bottom:149.999867pt;}
.y1a6{bottom:152.133333pt;}
.y26b{bottom:152.934400pt;}
.y1bb{bottom:155.052800pt;}
.y5e{bottom:155.934400pt;}
.yd1{bottom:158.601067pt;}
.y1a5{bottom:164.133333pt;}
.y1f1{bottom:164.999067pt;}
.y1ff{bottom:165.800000pt;}
.y164{bottom:167.333200pt;}
.y26a{bottom:167.601067pt;}
.y22f{bottom:169.518400pt;}
.y1ba{bottom:172.386133pt;}
.y5d{bottom:173.267733pt;}
.y18{bottom:175.052000pt;}
.yd0{bottom:175.934400pt;}
.y1a4{bottom:176.133333pt;}
.y1f0{bottom:176.999067pt;}
.y269{bottom:182.267733pt;}
.ya7{bottom:182.601067pt;}
.y22e{bottom:184.185067pt;}
.y163{bottom:184.666533pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1ef{bottom:188.999067pt;}
.y1b9{bottom:189.719467pt;}
.y5c{bottom:190.601067pt;}
.y1a3{bottom:192.133333pt;}
.y175{bottom:194.101067pt;}
.y268{bottom:196.934400pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y22d{bottom:198.851733pt;}
.ya6{bottom:199.934400pt;}
.y1ee{bottom:200.999067pt;}
.y36{bottom:201.268001pt;}
.y162{bottom:201.999867pt;}
.ycf{bottom:202.601067pt;}
.y1b8{bottom:207.052800pt;}
.y5b{bottom:207.934400pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1a2{bottom:208.800000pt;}
.y174{bottom:211.434400pt;}
.y267{bottom:211.601067pt;}
.y22c{bottom:213.518400pt;}
.y1ed{bottom:216.999067pt;}
.ya5{bottom:217.267733pt;}
.y161{bottom:219.333200pt;}
.y1b7{bottom:224.386133pt;}
.y5a{bottom:225.267733pt;}
.y1fe{bottom:225.532800pt;}
.y266{bottom:226.267733pt;}
.y173{bottom:228.767733pt;}
.yce{bottom:229.267733pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1ec{bottom:233.665733pt;}
.ya4{bottom:234.601067pt;}
.y22b{bottom:236.185067pt;}
.y160{bottom:236.666533pt;}
.y1fd{bottom:237.532800pt;}
.y265{bottom:240.934400pt;}
.y1b6{bottom:241.719467pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y59{bottom:242.601067pt;}
.y1fc{bottom:249.532800pt;}
.y22a{bottom:250.851733pt;}
.ya3{bottom:251.934400pt;}
.y1a1{bottom:252.392800pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y15f{bottom:253.999867pt;}
.y172{bottom:255.434400pt;}
.y264{bottom:255.601067pt;}
.y35{bottom:258.468001pt;}
.y1b5{bottom:259.052800pt;}
.y58{bottom:259.934400pt;}
.y1fb{bottom:261.532800pt;}
.y229{bottom:265.518400pt;}
.y1a0{bottom:268.392800pt;}
.ya2{bottom:269.267733pt;}
.y263{bottom:270.267733pt;}
.y15e{bottom:271.333200pt;}
.y1f3{bottom:271.405733pt;}
.y1fa{bottom:273.532800pt;}
.ycd{bottom:274.601067pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1b4{bottom:276.386133pt;}
.y57{bottom:277.267733pt;}
.y19f{bottom:280.392800pt;}
.y262{bottom:284.934400pt;}
.ya1{bottom:286.601067pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y228{bottom:288.185067pt;}
.y1f9{bottom:289.532800pt;}
.ycc{bottom:291.934400pt;}
.y19e{bottom:292.392800pt;}
.y1b3{bottom:293.719467pt;}
.y56{bottom:294.601067pt;}
.y15d{bottom:297.999867pt;}
.y261{bottom:299.601067pt;}
.y171{bottom:300.767733pt;}
.y227{bottom:302.851733pt;}
.ya0{bottom:303.934400pt;}
.y19d{bottom:304.392800pt;}
.y1f8{bottom:306.199467pt;}
.ycb{bottom:309.267733pt;}
.yf{bottom:309.452000pt;}
.y1b2{bottom:311.052800pt;}
.y55{bottom:311.934400pt;}
.y260{bottom:314.267733pt;}
.y34{bottom:315.668001pt;}
.y19c{bottom:316.392800pt;}
.y226{bottom:317.518400pt;}
.y170{bottom:318.101067pt;}
.y9f{bottom:321.267733pt;}
.y1f7{bottom:322.866133pt;}
.yca{bottom:326.601067pt;}
.y1b1{bottom:328.386133pt;}
.y25f{bottom:328.934400pt;}
.y54{bottom:329.267733pt;}
.y225{bottom:332.185067pt;}
.y19b{bottom:332.392800pt;}
.y15b{bottom:335.333333pt;}
.y16f{bottom:335.434400pt;}
.y9e{bottom:338.601067pt;}
.y15c{bottom:339.866533pt;}
.y15a{bottom:343.333200pt;}
.y25e{bottom:343.601067pt;}
.ye{bottom:343.809333pt;}
.yc9{bottom:343.934400pt;}
.y1b0{bottom:345.719467pt;}
.y53{bottom:346.601067pt;}
.y224{bottom:346.851733pt;}
.y19a{bottom:349.059467pt;}
.y16e{bottom:352.767733pt;}
.y9d{bottom:355.934400pt;}
.y25d{bottom:358.267733pt;}
.yc8{bottom:361.267733pt;}
.yd{bottom:362.706666pt;}
.y1af{bottom:363.052800pt;}
.y52{bottom:363.934400pt;}
.y158{bottom:367.333333pt;}
.y223{bottom:369.518400pt;}
.y16d{bottom:370.101067pt;}
.y159{bottom:370.533200pt;}
.y1d3{bottom:372.101067pt;}
.y25c{bottom:372.934400pt;}
.y9c{bottom:373.267733pt;}
.y157{bottom:373.999867pt;}
.y33{bottom:375.473333pt;}
.y1f6{bottom:377.932133pt;}
.yc7{bottom:378.601067pt;}
.y1ae{bottom:380.386133pt;}
.y51{bottom:381.267733pt;}
.y222{bottom:384.185067pt;}
.y156{bottom:384.665333pt;}
.y199{bottom:385.392800pt;}
.y16c{bottom:387.434400pt;}
.y25b{bottom:387.601067pt;}
.y1d2{bottom:388.101067pt;}
.y155{bottom:391.333200pt;}
.yc6{bottom:395.934400pt;}
.y1ad{bottom:397.719467pt;}
.y221{bottom:398.851733pt;}
.y9b{bottom:399.934400pt;}
.y1d1{bottom:400.101067pt;}
.y151{bottom:400.666667pt;}
.y198{bottom:401.392800pt;}
.y25a{bottom:402.267733pt;}
.y16b{bottom:404.767733pt;}
.y154{bottom:405.199867pt;}
.y50{bottom:407.934400pt;}
.y150{bottom:408.666533pt;}
.y1d0{bottom:412.101067pt;}
.yc5{bottom:413.267733pt;}
.y197{bottom:413.392800pt;}
.y220{bottom:413.518400pt;}
.y259{bottom:416.934400pt;}
.y14d{bottom:419.333333pt;}
.y16a{bottom:422.101067pt;}
.y1cf{bottom:424.101067pt;}
.y196{bottom:425.392800pt;}
.y14c{bottom:425.999867pt;}
.y32{bottom:430.068001pt;}
.yc4{bottom:430.601067pt;}
.y258{bottom:431.601067pt;}
.y1c1{bottom:437.052800pt;}
.y21f{bottom:437.518400pt;}
.y1ce{bottom:440.101067pt;}
.y195{bottom:441.392800pt;}
.y7e{bottom:441.773600pt;}
.y148{bottom:444.665333pt;}
.y9a{bottom:445.267733pt;}
.y257{bottom:446.267733pt;}
.yc{bottom:446.990669pt;}
.y14a{bottom:447.866533pt;}
.yc3{bottom:447.934400pt;}
.y147{bottom:451.333200pt;}
.y7d{bottom:453.773600pt;}
.y18c{bottom:456.101067pt;}
.y1cd{bottom:456.767733pt;}
.y194{bottom:458.059467pt;}
.y256{bottom:460.934400pt;}
.y99{bottom:462.601067pt;}
.yb{bottom:462.990669pt;}
.yc2{bottom:465.267733pt;}
.y7c{bottom:465.773600pt;}
.y13e{bottom:471.333333pt;}
.y18b{bottom:472.101067pt;}
.y255{bottom:475.601067pt;}
.y7b{bottom:477.773600pt;}
.y140{bottom:478.799867pt;}
.ya{bottom:478.990666pt;}
.y98{bottom:479.934400pt;}
.y145{bottom:481.197138pt;}
.y146{bottom:481.333200pt;}
.yc1{bottom:482.601067pt;}
.y21e{bottom:482.851733pt;}
.y18a{bottom:484.101067pt;}
.y13d{bottom:484.666533pt;}
.y7a{bottom:489.773600pt;}
.y31{bottom:489.873333pt;}
.y254{bottom:490.267733pt;}
.y144{bottom:493.329949pt;}
.y9{bottom:494.990666pt;}
.y189{bottom:496.101067pt;}
.y97{bottom:497.267733pt;}
.yc0{bottom:499.934400pt;}
.y1d9{bottom:500.101067pt;}
.y79{bottom:501.773600pt;}
.y193{bottom:502.601067pt;}
.y253{bottom:504.934400pt;}
.y21d{bottom:506.851733pt;}
.y188{bottom:508.101067pt;}
.y13c{bottom:508.666533pt;}
.y78{bottom:513.773600pt;}
.y96{bottom:514.601067pt;}
.y1d8{bottom:516.101067pt;}
.ybf{bottom:517.267733pt;}
.y252{bottom:519.601067pt;}
.y192{bottom:519.934400pt;}
.y187{bottom:520.101067pt;}
.y30{bottom:520.406668pt;}
.y77{bottom:525.773600pt;}
.y1d7{bottom:528.101067pt;}
.y95{bottom:531.934400pt;}
.y186{bottom:532.101067pt;}
.y2f{bottom:533.740001pt;}
.y251{bottom:534.267733pt;}
.ybe{bottom:534.601067pt;}
.y191{bottom:537.267733pt;}
.y1d6{bottom:540.101067pt;}
.y185{bottom:544.101067pt;}
.y70{bottom:546.506933pt;}
.y2e{bottom:547.073333pt;}
.y250{bottom:548.934400pt;}
.y94{bottom:549.267733pt;}
.y124{bottom:550.000000pt;}
.y134{bottom:554.933200pt;}
.y21c{bottom:554.934400pt;}
.y184{bottom:556.101067pt;}
.y6f{bottom:558.506933pt;}
.y12e{bottom:558.533200pt;}
.y135{bottom:559.066533pt;}
.ybd{bottom:561.267733pt;}
.y24f{bottom:563.601067pt;}
.y127{bottom:564.133200pt;}
.y12b{bottom:566.134466pt;}
.y130{bottom:566.933200pt;}
.y28a{bottom:567.601067pt;}
.y129{bottom:567.999867pt;}
.y183{bottom:568.101067pt;}
.y21b{bottom:569.601067pt;}
.y6e{bottom:570.506933pt;}
.y137{bottom:570.528178pt;}
.y139{bottom:570.533200pt;}
.y132{bottom:571.733200pt;}
.y123{bottom:572.666533pt;}
.y1d5{bottom:572.767733pt;}
.y12f{bottom:572.799867pt;}
.y8{bottom:573.786667pt;}
.y126{bottom:573.999867pt;}
.y93{bottom:575.934400pt;}
.y24e{bottom:578.267733pt;}
.y190{bottom:578.601067pt;}
.y13a{bottom:579.998951pt;}
.y182{bottom:580.101067pt;}
.y133{bottom:581.733200pt;}
.y138{bottom:581.990371pt;}
.y136{bottom:581.998079pt;}
.y289{bottom:582.267733pt;}
.y6d{bottom:582.506933pt;}
.y128{bottom:582.533200pt;}
.y1eb{bottom:582.601067pt;}
.y12d{bottom:584.799867pt;}
.y131{bottom:588.533200pt;}
.y4f{bottom:589.267733pt;}
.y181{bottom:592.101067pt;}
.y7{bottom:592.685334pt;}
.y24d{bottom:592.934400pt;}
.y21a{bottom:593.601067pt;}
.y12a{bottom:593.868810pt;}
.y6c{bottom:594.506933pt;}
.y18f{bottom:595.934400pt;}
.y288{bottom:596.934400pt;}
.y1ea{bottom:598.601067pt;}
.y4e{bottom:602.601067pt;}
.y180{bottom:604.101067pt;}
.ybc{bottom:606.601067pt;}
.y24c{bottom:607.601067pt;}
.y76{bottom:610.201067pt;}
.y1e9{bottom:610.601067pt;}
.y122{bottom:611.333200pt;}
.y287{bottom:611.601067pt;}
.y18e{bottom:613.267733pt;}
.y4d{bottom:615.934400pt;}
.y17f{bottom:616.101067pt;}
.y2d{bottom:619.393332pt;}
.y75{bottom:622.201067pt;}
.y24b{bottom:622.267733pt;}
.y1e8{bottom:622.601067pt;}
.ybb{bottom:623.934400pt;}
.y286{bottom:626.267733pt;}
.y1cc{bottom:627.934400pt;}
.y17e{bottom:628.101067pt;}
.y4c{bottom:629.267733pt;}
.y18d{bottom:630.601067pt;}
.y11e{bottom:634.000000pt;}
.y74{bottom:634.201067pt;}
.y1e7{bottom:634.601067pt;}
.y24a{bottom:636.934400pt;}
.y219{bottom:637.601067pt;}
.y11d{bottom:638.799867pt;}
.y17d{bottom:640.101067pt;}
.y285{bottom:640.934400pt;}
.y11c{bottom:641.197138pt;}
.yba{bottom:641.267733pt;}
.y4b{bottom:642.601067pt;}
.y11a{bottom:644.666533pt;}
.y1cb{bottom:645.267733pt;}
.y6{bottom:645.598667pt;}
.y2c{bottom:646.059998pt;}
.y73{bottom:646.201067pt;}
.y1e6{bottom:646.601067pt;}
.y92{bottom:647.934400pt;}
.y120{bottom:650.662889pt;}
.y249{bottom:651.601067pt;}
.y11b{bottom:653.329949pt;}
.y218{bottom:654.934400pt;}
.y284{bottom:655.601067pt;}
.y4a{bottom:655.934400pt;}
.y17c{bottom:656.101067pt;}
.y72{bottom:658.201067pt;}
.yb9{bottom:658.601067pt;}
.y2b{bottom:662.059998pt;}
.y1ca{bottom:662.601067pt;}
.y91{bottom:665.267733pt;}
.y248{bottom:666.267733pt;}
.y3{bottom:668.977329pt;}
.y49{bottom:669.267733pt;}
.y71{bottom:670.201067pt;}
.y283{bottom:670.267733pt;}
.y217{bottom:672.267733pt;}
.y17b{bottom:672.767733pt;}
.y116{bottom:673.773333pt;}
.yb8{bottom:675.934400pt;}
.y2a{bottom:678.059998pt;}
.y119{bottom:678.307067pt;}
.y1e5{bottom:679.267733pt;}
.y1c9{bottom:679.934400pt;}
.y247{bottom:680.934400pt;}
.y115{bottom:681.773733pt;}
.y48{bottom:682.601067pt;}
.y282{bottom:684.934400pt;}
.y216{bottom:689.601067pt;}
.y6b{bottom:690.434400pt;}
.yb7{bottom:693.267733pt;}
.y29{bottom:694.059998pt;}
.y246{bottom:695.601067pt;}
.y47{bottom:695.934400pt;}
.y1c8{bottom:697.267733pt;}
.y281{bottom:699.601067pt;}
.y90{bottom:699.934400pt;}
.y6a{bottom:702.434400pt;}
.y215{bottom:706.934400pt;}
.y46{bottom:709.267733pt;}
.y245{bottom:710.267733pt;}
.yb6{bottom:710.601067pt;}
.y280{bottom:714.267733pt;}
.y69{bottom:714.434400pt;}
.y1c7{bottom:714.601067pt;}
.y17a{bottom:715.587733pt;}
.y114{bottom:716.214133pt;}
.y8f{bottom:717.267733pt;}
.y1e4{bottom:718.147733pt;}
.y45{bottom:722.601067pt;}
.y110{bottom:724.214667pt;}
.y214{bottom:724.267733pt;}
.y244{bottom:724.934400pt;}
.y68{bottom:726.434400pt;}
.yb5{bottom:727.934400pt;}
.y27f{bottom:728.934400pt;}
.y10c{bottom:729.680800pt;}
.y1c6{bottom:731.934400pt;}
.y10a{bottom:733.548000pt;}
.y10b{bottom:734.347467pt;}
.y8e{bottom:734.601067pt;}
.y44{bottom:735.934400pt;}
.y10e{bottom:736.744738pt;}
.y10f{bottom:736.880800pt;}
.y67{bottom:738.434400pt;}
.y243{bottom:739.601067pt;}
.y109{bottom:740.214133pt;}
.y28{bottom:740.701335pt;}
.y213{bottom:741.601067pt;}
.y27e{bottom:743.601067pt;}
.yb4{bottom:745.267733pt;}
.y10d{bottom:748.877549pt;}
.y43{bottom:749.267733pt;}
.y1f4{bottom:749.268000pt;}
.y66{bottom:750.434400pt;}
.y8d{bottom:751.934400pt;}
.y242{bottom:754.267733pt;}
.y1c0{bottom:756.707733pt;}
.y105{bottom:757.548000pt;}
.y27d{bottom:758.267733pt;}
.y212{bottom:758.934400pt;}
.y27{bottom:759.368002pt;}
.y107{bottom:761.548000pt;}
.yb3{bottom:762.601067pt;}
.y104{bottom:764.214133pt;}
.y1c5{bottom:766.601067pt;}
.y241{bottom:768.934400pt;}
.y8c{bottom:769.267733pt;}
.y27c{bottom:772.934400pt;}
.y101{bottom:776.213333pt;}
.y211{bottom:776.267733pt;}
.y26{bottom:778.034669pt;}
.yb2{bottom:779.934400pt;}
.y2{bottom:781.661334pt;}
.yff{bottom:782.347467pt;}
.y240{bottom:783.601067pt;}
.y1c4{bottom:783.934400pt;}
.yfe{bottom:784.744738pt;}
.y100{bottom:784.880800pt;}
.y8b{bottom:786.601067pt;}
.y27b{bottom:787.601067pt;}
.yfc{bottom:788.214133pt;}
.y42{bottom:790.934400pt;}
.y210{bottom:793.601067pt;}
.y103{bottom:794.210489pt;}
.yfd{bottom:796.877549pt;}
.yb1{bottom:797.267733pt;}
.y23f{bottom:798.267733pt;}
.y1c3{bottom:801.267733pt;}
.y27a{bottom:802.267733pt;}
.yf6{bottom:802.880000pt;}
.y8a{bottom:803.934400pt;}
.y41{bottom:804.267733pt;}
.yf8{bottom:808.747600pt;}
.y20f{bottom:810.934400pt;}
.yf9{bottom:812.214133pt;}
.y23e{bottom:812.934400pt;}
.yb0{bottom:814.601067pt;}
.y279{bottom:816.934400pt;}
.y40{bottom:817.601067pt;}
.y89{bottom:821.267733pt;}
.yfb{bottom:821.682071pt;}
.y1c2{bottom:827.934400pt;}
.y20e{bottom:828.267733pt;}
.y278{bottom:831.601067pt;}
.yaf{bottom:831.934400pt;}
.y25{bottom:834.613333pt;}
.y3f{bottom:834.894400pt;}
.yf5{bottom:836.214133pt;}
.y23d{bottom:836.934400pt;}
.y88{bottom:838.601067pt;}
.y20d{bottom:845.601067pt;}
.y277{bottom:846.267733pt;}
.yae{bottom:849.267733pt;}
.yed{bottom:849.546667pt;}
.yf1{bottom:852.213333pt;}
.yec{bottom:854.347467pt;}
.y3e{bottom:854.934400pt;}
.y87{bottom:855.934400pt;}
.yeb{bottom:856.744738pt;}
.yf4{bottom:856.747600pt;}
.y1{bottom:859.312000pt;}
.ye9{bottom:860.214133pt;}
.y276{bottom:860.934400pt;}
.y24{bottom:862.613333pt;}
.y20c{bottom:862.934400pt;}
.yef{bottom:866.210489pt;}
.yad{bottom:866.601067pt;}
.yea{bottom:868.877549pt;}
.y3d{bottom:870.934400pt;}
.y86{bottom:873.267733pt;}
.y275{bottom:875.601067pt;}
.y20b{bottom:880.267733pt;}
.y23c{bottom:882.267733pt;}
.y274{bottom:890.267733pt;}
.y85{bottom:890.601067pt;}
.ye5{bottom:893.157333pt;}
.y23b{bottom:896.934400pt;}
.y20a{bottom:897.601067pt;}
.ye8{bottom:897.690933pt;}
.ye4{bottom:901.157600pt;}
.y273{bottom:904.934400pt;}
.y3c{bottom:905.601067pt;}
.y84{bottom:907.934400pt;}
.y23a{bottom:911.601067pt;}
.y209{bottom:914.934400pt;}
.y272{bottom:919.601067pt;}
.y23{bottom:920.485335pt;}
.y83{bottom:925.267733pt;}
.y239{bottom:926.267733pt;}
.y39{bottom:931.121067pt;}
.y208{bottom:932.267733pt;}
.ye3{bottom:932.767733pt;}
.y271{bottom:934.267733pt;}
.ydf{bottom:942.101333pt;}
.y82{bottom:942.601067pt;}
.ye2{bottom:946.634400pt;}
.y238{bottom:948.934400pt;}
.y207{bottom:949.601067pt;}
.yde{bottom:950.101067pt;}
.y81{bottom:959.934400pt;}
.y62{bottom:963.362000pt;}
.y237{bottom:963.601067pt;}
.y3b{bottom:975.473733pt;}
.y206{bottom:976.267733pt;}
.ydd{bottom:976.767733pt;}
.y80{bottom:977.267733pt;}
.y236{bottom:978.267733pt;}
.y3a{bottom:987.473733pt;}
.yac{bottom:1014.433867pt;}
.y7f{bottom:1014.500533pt;}
.y22{bottom:1035.664002pt;}
.h4a{height:12.000000pt;}
.h34{height:14.666667pt;}
.h41{height:15.633333pt;}
.h33{height:16.000000pt;}
.h22{height:17.333333pt;}
.h35{height:18.665333pt;}
.h49{height:19.998667pt;}
.h46{height:20.000000pt;}
.h24{height:21.333333pt;}
.h25{height:21.583147pt;}
.h45{height:21.891477pt;}
.h16{height:22.308000pt;}
.h29{height:22.838751pt;}
.h1c{height:26.693333pt;}
.h19{height:28.000000pt;}
.h2a{height:28.001333pt;}
.h38{height:28.559730pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h3f{height:29.242747pt;}
.h20{height:30.000000pt;}
.h1e{height:30.506667pt;}
.h31{height:30.666667pt;}
.h1d{height:30.762667pt;}
.h2d{height:31.172230pt;}
.h42{height:31.727226pt;}
.h1f{height:32.000000pt;}
.hb{height:32.645833pt;}
.h18{height:34.320000pt;}
.h26{height:35.546875pt;}
.h1a{height:36.000000pt;}
.h43{height:36.021332pt;}
.h48{height:36.226667pt;}
.h47{height:36.530667pt;}
.hf{height:36.726562pt;}
.h27{height:37.031250pt;}
.h23{height:37.333333pt;}
.h28{height:37.916817pt;}
.h17{height:38.148000pt;}
.h3a{height:38.666667pt;}
.h2c{height:39.505208pt;}
.h12{height:40.000000pt;}
.h21{height:40.376000pt;}
.h2e{height:40.449938pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h1b{height:42.298667pt;}
.h3d{height:42.666667pt;}
.h3{height:42.840000pt;}
.h15{height:45.780000pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h3b{height:49.401042pt;}
.h40{height:50.582421pt;}
.h14{height:53.834667pt;}
.h2f{height:53.866133pt;}
.h3e{height:54.666667pt;}
.h30{height:57.398438pt;}
.h2b{height:59.257812pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.h36{height:71.467200pt;}
.hc{height:73.440000pt;}
.h39{height:74.101562pt;}
.h44{height:77.333333pt;}
.h37{height:79.466667pt;}
.h32{height:79.998047pt;}
.h3c{height:93.667708pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w1d{width:6.624000pt;}
.we{width:8.304000pt;}
.w6{width:9.720000pt;}
.w15{width:9.864000pt;}
.w16{width:11.304000pt;}
.w1b{width:14.664000pt;}
.w1c{width:15.720000pt;}
.wd{width:24.432000pt;}
.w13{width:44.733333pt;}
.w19{width:45.456000pt;}
.w1a{width:45.576000pt;}
.wa{width:47.304000pt;}
.w14{width:47.712000pt;}
.w17{width:50.376000pt;}
.w11{width:53.856000pt;}
.w9{width:57.096000pt;}
.w7{width:63.984000pt;}
.wc{width:64.464000pt;}
.wf{width:79.008000pt;}
.wb{width:100.296000pt;}
.w8{width:142.781333pt;}
.w10{width:152.501333pt;}
.w18{width:168.768000pt;}
.w12{width:236.957333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.xf{left:-1.135200pt;}
.x0{left:0.000000pt;}
.x67{left:1.067467pt;}
.x29{left:5.488800pt;}
.x47{left:8.021200pt;}
.x75{left:12.560133pt;}
.x1d{left:14.688000pt;}
.x2b{left:17.088800pt;}
.x78{left:18.450533pt;}
.x90{left:19.384267pt;}
.x2f{left:22.554533pt;}
.x1e{left:23.888000pt;}
.x49{left:26.554533pt;}
.x7c{left:28.154667pt;}
.x15{left:33.760400pt;}
.x6a{left:40.533107pt;}
.x69{left:42.267467pt;}
.x51{left:49.567467pt;}
.x26{left:54.767200pt;}
.x5b{left:55.730533pt;}
.x12{left:60.160400pt;}
.x44{left:74.499333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x31{left:98.021200pt;}
.x82{left:109.333333pt;}
.xb{left:112.100000pt;}
.x2d{left:117.487867pt;}
.x1b{left:122.288000pt;}
.x2e{left:124.821200pt;}
.x6{left:129.466667pt;}
.x36{left:139.229333pt;}
.x92{left:141.576000pt;}
.x35{left:144.127067pt;}
.x33{left:159.997489pt;}
.x34{left:163.065379pt;}
.x37{left:166.660400pt;}
.x38{left:167.860400pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x30{left:189.221200pt;}
.x93{left:190.230667pt;}
.x96{left:193.784000pt;}
.x97{left:200.542000pt;}
.x9{left:203.327991pt;}
.x94{left:204.895200pt;}
.x32{left:212.295867pt;}
.x70{left:217.673200pt;}
.x3d{left:220.726667pt;}
.x3e{left:229.030400pt;}
.x64{left:232.663867pt;}
.x66{left:237.404000pt;}
.x86{left:240.686800pt;}
.x83{left:243.625333pt;}
.x6f{left:244.606533pt;}
.x85{left:246.158667pt;}
.x6e{left:247.271467pt;}
.x98{left:249.423733pt;}
.x71{left:250.934533pt;}
.x9a{left:254.223733pt;}
.x8{left:260.969328pt;}
.x6c{left:262.738133pt;}
.x6d{left:265.135404pt;}
.x68{left:268.738133pt;}
.x99{left:270.057067pt;}
.x6b{left:271.404800pt;}
.x9b{left:274.857067pt;}
.x20{left:276.260289pt;}
.x8e{left:277.257067pt;}
.x53{left:278.372000pt;}
.x22{left:279.328179pt;}
.x55{left:281.302533pt;}
.x24{left:282.923200pt;}
.x25{left:284.123200pt;}
.x5a{left:287.963749pt;}
.x21{left:291.992861pt;}
.x23{left:301.456533pt;}
.x76{left:309.462667pt;}
.x5e{left:310.635867pt;}
.x7a{left:312.466667pt;}
.x27{left:317.917867pt;}
.x56{left:318.902533pt;}
.x46{left:320.600000pt;}
.x7b{left:323.154667pt;}
.x1a{left:325.460000pt;}
.x5c{left:327.302533pt;}
.x84{left:328.200000pt;}
.x48{left:330.754533pt;}
.x1c{left:332.948000pt;}
.x88{left:340.214800pt;}
.x8c{left:342.748133pt;}
.x95{left:344.300000pt;}
.x87{left:348.219867pt;}
.x60{left:350.235867pt;}
.x4e{left:353.585333pt;}
.x57{left:356.235867pt;}
.x54{left:359.435867pt;}
.x61{left:367.309677pt;}
.x4b{left:369.023222pt;}
.x4d{left:372.091113pt;}
.x50{left:375.686133pt;}
.x52{left:376.886133pt;}
.x72{left:382.886667pt;}
.x4c{left:384.755795pt;}
.x5d{left:387.702533pt;}
.x58{left:393.035132pt;}
.x4f{left:394.219467pt;}
.x17{left:396.300000pt;}
.x5f{left:399.302533pt;}
.x3{left:404.408000pt;}
.x18{left:408.859467pt;}
.x77{left:418.961200pt;}
.x79{left:426.886533pt;}
.x7d{left:436.276133pt;}
.x89{left:438.809333pt;}
.xe{left:443.562667pt;}
.x28{left:447.461333pt;}
.x10{left:453.283333pt;}
.x19{left:460.283467pt;}
.x2a{left:461.750133pt;}
.x1f{left:468.241333pt;}
.x4a{left:473.101200pt;}
.x62{left:474.909372pt;}
.x43{left:478.076667pt;}
.x59{left:481.564574pt;}
.x63{left:484.902533pt;}
.x2c{left:488.283467pt;}
.x40{left:493.543333pt;}
.x42{left:495.948313pt;}
.x3f{left:499.543333pt;}
.x65{left:502.235867pt;}
.xd{left:507.508000pt;}
.x41{left:509.144865pt;}
.x11{left:512.493333pt;}
.x13{left:520.253733pt;}
.x14{left:525.053733pt;}
.x7f{left:532.337333pt;}
.x8d{left:534.870533pt;}
.x7e{left:537.809067pt;}
.x45{left:540.586000pt;}
.x39{left:543.258667pt;}
.x3a{left:567.690933pt;}
.x16{left:576.477733pt;}
.xc{left:577.800667pt;}
.x8f{left:609.422667pt;}
.x3b{left:622.061333pt;}
.x3c{left:630.365200pt;}
.x81{left:634.398533pt;}
.x8b{left:636.931867pt;}
.x80{left:639.870400pt;}
.x8a{left:642.403600pt;}
.x91{left:654.878933pt;}
.x73{left:686.396000pt;}
.x74{left:697.700800pt;}
}




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