
    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_168e9049c6cbb100badcc6ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050000;font-style:normal;font-weight: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_24c9f1b80ede746831ba35e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.768000;font-style:normal;font-weight: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_f89930cd9773337b3f509c3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008000;font-style:normal;font-weight: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_c8855604ded6def9eb8a695e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008000;font-style:normal;font-weight: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_5ff618773ab64a9a30bb4991.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008000;font-style:normal;font-weight: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_eb03a1db8fd236ffa57a413a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008000;font-style:normal;font-weight: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_9640fd75dfbe193913a94656.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008000;font-style:normal;font-weight: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_676147d0c69c8b944ecbe1d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.008000;font-style:normal;font-weight: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_73fda0a576a22c2cb0583f44.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.050000;font-style:normal;font-weight: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_73fda0a576a22c2cb0583f44.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.050000;font-style:normal;font-weight: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_2b0f87e72981d60396c38f92.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.890000;font-style:normal;font-weight: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_906b1aba4e7d22b9c34f0e28.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.890000;font-style:normal;font-weight: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_48dde07a0f082434e23c52ba.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a2cd7bd47992117ee1181d4e.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.501000;font-style:normal;font-weight: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_cbad6d92b6610a22f38d0723.woff2')format("woff");}.fff{font-family:fff;line-height:0.900000;font-style:normal;font-weight: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_83f0282ae0142a5e5020b8cc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.518000;font-style:normal;font-weight: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_6b73e9edc391c9d4ce7cfee7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.008000;font-style:normal;font-weight: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_1ff698be57adb9bf311de9b1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.890000;font-style:normal;font-weight: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_a2cd7bd47992117ee1181d4e.woff2')format("woff");}.ff13{font-family:ff13;line-height:2.501000;font-style:normal;font-weight: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_20ebb0ca2f01e147ee0d1779.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.890000;font-style:normal;font-weight: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_1924ee88c81395ba11bd6ccf.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2b0f87e72981d60396c38f92.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.890000;font-style:normal;font-weight: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_1b5258b1b3545e6200555d6b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.890000;font-style:normal;font-weight: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_0aa400445677f5c29912ef06.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.890000;font-style:normal;font-weight: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_1b5258b1b3545e6200555d6b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.890000;font-style:normal;font-weight: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_1ff698be57adb9bf311de9b1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.890000;font-style:normal;font-weight: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_a2cd7bd47992117ee1181d4e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:2.501000;font-style:normal;font-weight: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_20ebb0ca2f01e147ee0d1779.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.890000;font-style:normal;font-weight: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_1924ee88c81395ba11bd6ccf.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_31b0f0acc6e8ff5104433dcb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.890000;font-style:normal;font-weight: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_0aa3294d32d2dd52434b3358.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:2.501000;font-style:normal;font-weight: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_20ebb0ca2f01e147ee0d1779.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.890000;font-style:normal;font-weight: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_ef1f55eb3780d0a5cf0a5c96.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_cbad6d92b6610a22f38d0723.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.900000;font-style:normal;font-weight: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_cbad6d92b6610a22f38d0723.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.900000;font-style:normal;font-weight: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_8acafdf34f5110a19786da6f.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.890000;font-style:normal;font-weight: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_6093f533e3b85dfa1a854077.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.890000;font-style:normal;font-weight: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_a2cd7bd47992117ee1181d4e.woff2')format("woff");}.ff26{font-family:ff26;line-height:2.501000;font-style:normal;font-weight: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_20ebb0ca2f01e147ee0d1779.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.890000;font-style:normal;font-weight: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_1924ee88c81395ba11bd6ccf.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_6093f533e3b85dfa1a854077.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.890000;font-style:normal;font-weight: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_a2cd7bd47992117ee1181d4e.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:2.501000;font-style:normal;font-weight: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_20ebb0ca2f01e147ee0d1779.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.890000;font-style:normal;font-weight: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_1924ee88c81395ba11bd6ccf.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_982224b9447d36afe31511b4.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.890000;font-style:normal;font-weight: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_1430b242008ae737b96859fb.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:2.501000;font-style:normal;font-weight: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_20ebb0ca2f01e147ee0d1779.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.890000;font-style:normal;font-weight: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_c451e1fbe9a4d6a15c8dcc03.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_71697de0c61a83fe1237f2ff.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.043000;font-style:normal;font-weight: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_05f79bda4959e4c2aa04694e.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.518000;font-style:normal;font-weight: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_116969d95c0fa9b2ffaa86fa.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.890000;font-style:normal;font-weight: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_0aa400445677f5c29912ef06.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.890000;font-style:normal;font-weight: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_1b5258b1b3545e6200555d6b.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.890000;font-style:normal;font-weight: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_116969d95c0fa9b2ffaa86fa.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.890000;font-style:normal;font-weight: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_3bb31840ac96c1c52d668f93.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.890000;font-style:normal;font-weight: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_df40091c74a0c115d39ba47d.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_6d27f78637e73affda6e284e.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.799000;font-style:normal;font-weight: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_d64cb3fb8b72ca1ef2550b09.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.890000;font-style:normal;font-weight: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_6b0e8fd7633af2d3b2e78ae8.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.521000;font-style:normal;font-weight: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_9a5a0acb7aa458fa25bcfa5c.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_d64cb3fb8b72ca1ef2550b09.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.890000;font-style:normal;font-weight: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_6b0e8fd7633af2d3b2e78ae8.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.521000;font-style:normal;font-weight: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_991d2364e110eb6c5f7e5d82.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.890000;font-style:normal;font-weight: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_a2cd7bd47992117ee1181d4e.woff2')format("woff");}.ff40{font-family:ff40;line-height:2.501000;font-style:normal;font-weight: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_0aa400445677f5c29912ef06.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.890000;font-style:normal;font-weight: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_1b5258b1b3545e6200555d6b.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.890000;font-style:normal;font-weight: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_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.913000;font-style:normal;font-weight: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_8acafdf34f5110a19786da6f.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.890000;font-style:normal;font-weight: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_22abd850243189f349517659.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.890000;font-style:normal;font-weight: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_f70af88ea79184ee62d69db5.woff2')format("woff");}.ff46{font-family:ff46;line-height:2.501000;font-style:normal;font-weight: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_20ebb0ca2f01e147ee0d1779.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.890000;font-style:normal;font-weight: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_2d4bc05d3c6606aba274860e.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_cbad6d92b6610a22f38d0723.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.900000;font-style:normal;font-weight: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_05f79bda4959e4c2aa04694e.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.518000;font-style:normal;font-weight: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_912c3eaf6922dbf80eb56dd6.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.694000;font-style:normal;font-weight: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_71697de0c61a83fe1237f2ff.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.043000;font-style:normal;font-weight: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_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.913000;font-style:normal;font-weight: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_6b0e8fd7633af2d3b2e78ae8.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.521000;font-style:normal;font-weight: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_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.913000;font-style:normal;font-weight: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_12036298dbee306c41d636d7.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.890000;font-style:normal;font-weight: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_0aa400445677f5c29912ef06.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.890000;font-style:normal;font-weight: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_1b5258b1b3545e6200555d6b.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.890000;font-style:normal;font-weight: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_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.913000;font-style:normal;font-weight: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_8acafdf34f5110a19786da6f.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.890000;font-style:normal;font-weight: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_912c3eaf6922dbf80eb56dd6.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.694000;font-style:normal;font-weight: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_12036298dbee306c41d636d7.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_c3fcbc444ceeb0cab1002860.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_cbad6d92b6610a22f38d0723.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_31cbbebca1fecb1efe9460a8.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_cbad6d92b6610a22f38d0723.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_a3a234d064aabe00a03b0b45.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_8acafdf34f5110a19786da6f.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_d64cb3fb8b72ca1ef2550b09.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_6b0e8fd7633af2d3b2e78ae8.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.521000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_23121750aaa9a8cd66f1470d.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_87ea3b671a425dbfcb2e043b.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_cbad6d92b6610a22f38d0723.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_b62c2b909264e4d5f58e4fbb.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_603a39499267057c87c66a5d.woff2')format("woff");}.ff64{font-family:ff64;line-height:2.501000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url('chunks/assets/font_981d3fd21dd30c9921b99fc5.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_12036298dbee306c41d636d7.woff2')format("woff");}.ff67{font-family:ff67;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_cbad6d92b6610a22f38d0723.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url('chunks/assets/font_9946e706ad697ddba7df4bcb.woff2')format("woff");}.ff69{font-family:ff69;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_b6167e7ce4ddeae0077bc249.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_5b0efbe67285a946ad8b7d8a.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c;src:url('chunks/assets/font_63ebdc94f1ae0398b21dd219.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_9a5a0acb7aa458fa25bcfa5c.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url('chunks/assets/font_4518bf5f62fb2b2b6350c3a0.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:1.799000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_7d66e4d8191e1f0c370720a9.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:0.611000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url('chunks/assets/font_29b9d68ca7d436310fc08ccc.woff2')format("woff");}.ff70{font-family:ff70;line-height:2.501000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71;src:url('chunks/assets/font_30ef84e8e2c83cc5348c9c34.woff2')format("woff");}.ff71{font-family:ff71;line-height:0.587000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_0129e2574b5c78fe61c123a8.woff2')format("woff");}.ff72{font-family:ff72;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73;src:url('chunks/assets/font_73fda0a576a22c2cb0583f44.woff2')format("woff");}.ff73{font-family:ff73;line-height:1.050000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74;src:url('chunks/assets/font_912c3eaf6922dbf80eb56dd6.woff2')format("woff");}.ff74{font-family:ff74;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75;src:url('chunks/assets/font_cbad6d92b6610a22f38d0723.woff2')format("woff");}.ff75{font-family:ff75;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url('chunks/assets/font_eec26474af1c5c29021d513e.woff2')format("woff");}.ff76{font-family:ff76;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77;src:url('chunks/assets/font_0085303afdb795da4e8a8121.woff2')format("woff");}.ff77{font-family:ff77;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78;src:url('chunks/assets/font_603a39499267057c87c66a5d.woff2')format("woff");}.ff78{font-family:ff78;line-height:2.501000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79;src:url('chunks/assets/font_912c3eaf6922dbf80eb56dd6.woff2')format("woff");}.ff79{font-family:ff79;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url('chunks/assets/font_cbad6d92b6610a22f38d0723.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url('chunks/assets/font_0129e2574b5c78fe61c123a8.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_af95f7cca622e4f46a00c9c6.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:0.756000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d;src:url('chunks/assets/font_912c3eaf6922dbf80eb56dd6.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_cbad6d92b6610a22f38d0723.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f;src:url('chunks/assets/font_0129e2574b5c78fe61c123a8.woff2')format("woff");}.ff7f{font-family:ff7f;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80;src:url('chunks/assets/font_75bc7f1fc44ee944da3d47ab.woff2')format("woff");}.ff80{font-family:ff80;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:ff81;src:url('chunks/assets/font_5f628d7cbff922743b8b64ee.woff2')format("woff");}.ff81{font-family:ff81;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:ff82;src:url('chunks/assets/font_29b9d68ca7d436310fc08ccc.woff2')format("woff");}.ff82{font-family:ff82;line-height:2.501000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83;src:url('chunks/assets/font_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff83{font-family:ff83;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84;src:url('chunks/assets/font_ceeed3a42ef215de4509eb58.woff2')format("woff");}.ff84{font-family:ff84;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85;src:url('chunks/assets/font_f999e4d5ab65b75687771b8e.woff2')format("woff");}.ff85{font-family:ff85;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86;src:url('chunks/assets/font_9a32d15174dbfb464e447228.woff2')format("woff");}.ff86{font-family:ff86;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87;src:url('chunks/assets/font_29b9d68ca7d436310fc08ccc.woff2')format("woff");}.ff87{font-family:ff87;line-height:2.501000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff88;src:url('chunks/assets/font_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff88{font-family:ff88;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff89;src:url('chunks/assets/font_ceeed3a42ef215de4509eb58.woff2')format("woff");}.ff89{font-family:ff89;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a;src:url('chunks/assets/font_29b9d68ca7d436310fc08ccc.woff2')format("woff");}.ff8a{font-family:ff8a;line-height:2.501000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8b;src:url('chunks/assets/font_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff8b{font-family:ff8b;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8c;src:url('chunks/assets/font_0bc6cddd861c59e069f6caa8.woff2')format("woff");}.ff8c{font-family:ff8c;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8d;src:url('chunks/assets/font_f999e4d5ab65b75687771b8e.woff2')format("woff");}.ff8d{font-family:ff8d;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8e;src:url('chunks/assets/font_9a32d15174dbfb464e447228.woff2')format("woff");}.ff8e{font-family:ff8e;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8f;src:url('chunks/assets/font_29b9d68ca7d436310fc08ccc.woff2')format("woff");}.ff8f{font-family:ff8f;line-height:2.501000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff90;src:url('chunks/assets/font_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff90{font-family:ff90;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff91;src:url('chunks/assets/font_0bc6cddd861c59e069f6caa8.woff2')format("woff");}.ff91{font-family:ff91;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff92;src:url('chunks/assets/font_29b9d68ca7d436310fc08ccc.woff2')format("woff");}.ff92{font-family:ff92;line-height:2.501000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff93;src:url('chunks/assets/font_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff93{font-family:ff93;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff94;src:url('chunks/assets/font_c666dd0bd4bfef1f8cf586da.woff2')format("woff");}.ff94{font-family:ff94;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95;src:url('chunks/assets/font_f999e4d5ab65b75687771b8e.woff2')format("woff");}.ff95{font-family:ff95;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff96;src:url('chunks/assets/font_9a32d15174dbfb464e447228.woff2')format("woff");}.ff96{font-family:ff96;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff97;src:url('chunks/assets/font_29b9d68ca7d436310fc08ccc.woff2')format("woff");}.ff97{font-family:ff97;line-height:2.501000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff98;src:url('chunks/assets/font_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff98{font-family:ff98;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99;src:url('chunks/assets/font_c666dd0bd4bfef1f8cf586da.woff2')format("woff");}.ff99{font-family:ff99;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9a;src:url('chunks/assets/font_29b9d68ca7d436310fc08ccc.woff2')format("woff");}.ff9a{font-family:ff9a;line-height:2.501000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9b;src:url('chunks/assets/font_a19a1f3cec9626f95947973b.woff2')format("woff");}.ff9b{font-family:ff9b;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9c;src:url('chunks/assets/font_0d8f2d865430d829de0ca5f7.woff2')format("woff");}.ff9c{font-family:ff9c;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9d;src:url('chunks/assets/font_f999e4d5ab65b75687771b8e.woff2')format("woff");}.ff9d{font-family:ff9d;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9e;src:url('chunks/assets/font_9a32d15174dbfb464e447228.woff2')format("woff");}.ff9e{font-family:ff9e;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9f;src:url('chunks/assets/font_29b9d68ca7d436310fc08ccc.woff2')format("woff");}.ff9f{font-family:ff9f;line-height:2.501000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa0;src:url('chunks/assets/font_a19a1f3cec9626f95947973b.woff2')format("woff");}.ffa0{font-family:ffa0;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa1;src:url('chunks/assets/font_0d8f2d865430d829de0ca5f7.woff2')format("woff");}.ffa1{font-family:ffa1;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v11{vertical-align:-59.605968px;}
.va{vertical-align:-57.480000px;}
.v20{vertical-align:-52.218000px;}
.vd{vertical-align:-46.332000px;}
.v9{vertical-align:-43.413372px;}
.v23{vertical-align:-33.558888px;}
.v2{vertical-align:-24.318000px;}
.v1c{vertical-align:-22.500000px;}
.v4{vertical-align:-18.576000px;}
.v1b{vertical-align:-16.559400px;}
.v5{vertical-align:-13.980000px;}
.v8{vertical-align:-12.540000px;}
.v13{vertical-align:-10.800000px;}
.v1a{vertical-align:-9.234774px;}
.v17{vertical-align:-8.040000px;}
.vb{vertical-align:-5.994000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.940000px;}
.v16{vertical-align:7.270806px;}
.v19{vertical-align:9.387060px;}
.v3{vertical-align:11.785800px;}
.v15{vertical-align:13.270806px;}
.v1f{vertical-align:15.282000px;}
.v10{vertical-align:16.440000px;}
.v26{vertical-align:20.916000px;}
.v25{vertical-align:22.020000px;}
.v14{vertical-align:23.220000px;}
.v1{vertical-align:24.318000px;}
.v22{vertical-align:25.500000px;}
.v12{vertical-align:27.864000px;}
.v1e{vertical-align:30.510000px;}
.v24{vertical-align:33.156000px;}
.vf{vertical-align:34.666800px;}
.v21{vertical-align:39.935400px;}
.ve{vertical-align:41.904000px;}
.v6{vertical-align:43.520964px;}
.vc{vertical-align:46.313400px;}
.v18{vertical-align:52.908024px;}
.v1d{vertical-align:61.740600px;}
.ls41{letter-spacing:-0.540000px;}
.ls1{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000240px;}
.ls3d{letter-spacing:0.000360px;}
.ls13{letter-spacing:0.006816px;}
.ls38{letter-spacing:0.008208px;}
.ls28{letter-spacing:0.009396px;}
.ls30{letter-spacing:0.016368px;}
.ls11{letter-spacing:0.017880px;}
.ls17{letter-spacing:0.018000px;}
.ls1d{letter-spacing:0.024168px;}
.ls32{letter-spacing:0.029886px;}
.ls39{letter-spacing:0.034152px;}
.ls2d{letter-spacing:0.036192px;}
.lsf{letter-spacing:0.039324px;}
.ls33{letter-spacing:0.041748px;}
.ls12{letter-spacing:0.041844px;}
.ls7{letter-spacing:0.042084px;}
.ls23{letter-spacing:0.043368px;}
.lsb{letter-spacing:0.044712px;}
.ls16{letter-spacing:0.046932px;}
.lsd{letter-spacing:0.047952px;}
.ls8{letter-spacing:0.053796px;}
.ls22{letter-spacing:0.054576px;}
.ls40{letter-spacing:0.060528px;}
.ls21{letter-spacing:0.066228px;}
.ls2b{letter-spacing:0.076968px;}
.ls3a{letter-spacing:0.094692px;}
.ls42{letter-spacing:0.270000px;}
.ls3e{letter-spacing:0.810000px;}
.ls43{letter-spacing:1.854408px;}
.ls45{letter-spacing:1.861860px;}
.ls1a{letter-spacing:1.868436px;}
.ls26{letter-spacing:1.961748px;}
.ls24{letter-spacing:2.039628px;}
.ls9{letter-spacing:2.971692px;}
.ls2c{letter-spacing:2.987016px;}
.ls2e{letter-spacing:2.987616px;}
.ls31{letter-spacing:2.988216px;}
.lsc{letter-spacing:2.990616px;}
.ls4{letter-spacing:2.997000px;}
.ls46{letter-spacing:3.018000px;}
.ls44{letter-spacing:8.445972px;}
.ls5{letter-spacing:9.145320px;}
.ls3b{letter-spacing:9.199116px;}
.ls35{letter-spacing:9.226014px;}
.ls6{letter-spacing:9.252912px;}
.ls15{letter-spacing:10.831692px;}
.ls2a{letter-spacing:12.265488px;}
.ls25{letter-spacing:12.590616px;}
.ls1e{letter-spacing:13.480800px;}
.ls29{letter-spacing:15.287616px;}
.ls2f{letter-spacing:15.317400px;}
.ls3{letter-spacing:15.331860px;}
.ls20{letter-spacing:16.398000px;}
.lse{letter-spacing:18.350616px;}
.ls27{letter-spacing:18.351216px;}
.ls2{letter-spacing:18.391692px;}
.ls19{letter-spacing:20.011692px;}
.ls18{letter-spacing:20.663952px;}
.ls37{letter-spacing:22.489740px;}
.ls34{letter-spacing:22.648116px;}
.ls3c{letter-spacing:26.029740px;}
.ls1f{letter-spacing:29.337000px;}
.ls0{letter-spacing:31.701600px;}
.ls48{letter-spacing:35.904000px;}
.ls1c{letter-spacing:38.517000px;}
.ls14{letter-spacing:46.249740px;}
.ls47{letter-spacing:47.904000px;}
.ls1b{letter-spacing:449.227800px;}
.lsa{letter-spacing:660.426000px;}
.ls10{letter-spacing:832.239600px;}
.ls36{letter-spacing:1008.280200px;}
.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;}
}
.ws53{word-spacing:-69.127860px;}
.ws50{word-spacing:-53.796000px;}
.ws5c{word-spacing:-44.543088px;}
.ws58{word-spacing:-41.844000px;}
.ws54{word-spacing:-40.347000px;}
.ws55{word-spacing:-38.464140px;}
.ws56{word-spacing:-29.886000px;}
.wsd8{word-spacing:-26.910000px;}
.ws57{word-spacing:-17.659332px;}
.ws8d{word-spacing:-15.984000px;}
.ws26{word-spacing:-15.012000px;}
.wsd6{word-spacing:-14.208000px;}
.ws5a{word-spacing:-13.483692px;}
.ws0{word-spacing:-13.344000px;}
.wsd4{word-spacing:-12.510000px;}
.ws5{word-spacing:-12.480000px;}
.ws5b{word-spacing:-11.563692px;}
.ws59{word-spacing:-11.532000px;}
.ws5e{word-spacing:-11.503692px;}
.ws1{word-spacing:-11.002320px;}
.ws2{word-spacing:-10.333260px;}
.ws5d{word-spacing:-9.306708px;}
.ws52{word-spacing:-9.252912px;}
.ws94{word-spacing:-8.857080px;}
.wsae{word-spacing:-4.914000px;}
.ws1b{word-spacing:-3.510000px;}
.wscc{word-spacing:-3.348000px;}
.wsa7{word-spacing:-3.186000px;}
.ws79{word-spacing:-2.970000px;}
.wsc1{word-spacing:-2.916000px;}
.ws76{word-spacing:-2.862000px;}
.ws78{word-spacing:-2.808000px;}
.ws7b{word-spacing:-2.754000px;}
.wsbe{word-spacing:-2.700000px;}
.ws9b{word-spacing:-2.646000px;}
.wsb6{word-spacing:-2.592000px;}
.ws9e{word-spacing:-2.538000px;}
.ws6e{word-spacing:-2.484000px;}
.ws9d{word-spacing:-2.376000px;}
.ws6b{word-spacing:-2.322000px;}
.wsc3{word-spacing:-2.214000px;}
.ws48{word-spacing:-2.160000px;}
.ws25{word-spacing:-2.106000px;}
.ws49{word-spacing:-2.052000px;}
.ws89{word-spacing:-1.998000px;}
.ws68{word-spacing:-1.944000px;}
.ws77{word-spacing:-1.782000px;}
.wsc9{word-spacing:-1.728000px;}
.wsb2{word-spacing:-1.674000px;}
.ws43{word-spacing:-1.620000px;}
.wscd{word-spacing:-1.566000px;}
.ws41{word-spacing:-1.512000px;}
.wsce{word-spacing:-1.458000px;}
.ws28{word-spacing:-1.404000px;}
.ws12{word-spacing:-1.350000px;}
.wsd2{word-spacing:-1.296000px;}
.ws7e{word-spacing:-1.242000px;}
.wsb{word-spacing:-1.134000px;}
.wsc{word-spacing:-1.080000px;}
.wscf{word-spacing:-1.026000px;}
.ws30{word-spacing:-0.972000px;}
.ws31{word-spacing:-0.918000px;}
.ws14{word-spacing:-0.864000px;}
.wsa9{word-spacing:-0.810000px;}
.ws7f{word-spacing:-0.756000px;}
.ws6a{word-spacing:-0.702000px;}
.ws4d{word-spacing:-0.594000px;}
.wsa2{word-spacing:-0.540000px;}
.ws73{word-spacing:-0.486000px;}
.ws2f{word-spacing:-0.432000px;}
.ws2e{word-spacing:-0.378000px;}
.ws69{word-spacing:-0.324000px;}
.ws45{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.162000px;}
.ws8c{word-spacing:-0.108000px;}
.ws23{word-spacing:-0.054000px;}
.ws51{word-spacing:-0.053796px;}
.wsd5{word-spacing:-0.048000px;}
.ws5f{word-spacing:-0.041844px;}
.ws3{word-spacing:0.000000px;}
.wsbd{word-spacing:0.054000px;}
.ws97{word-spacing:0.108000px;}
.wsbf{word-spacing:0.162000px;}
.ws1d{word-spacing:0.216000px;}
.wsf{word-spacing:0.324000px;}
.ws7a{word-spacing:0.378000px;}
.ws32{word-spacing:0.432000px;}
.ws1c{word-spacing:0.486000px;}
.ws75{word-spacing:0.540000px;}
.wsc0{word-spacing:0.594000px;}
.ws63{word-spacing:0.648000px;}
.ws9a{word-spacing:0.702000px;}
.ws16{word-spacing:0.756000px;}
.ws15{word-spacing:0.810000px;}
.ws88{word-spacing:0.864000px;}
.ws2d{word-spacing:0.918000px;}
.ws35{word-spacing:0.972000px;}
.ws36{word-spacing:1.026000px;}
.ws37{word-spacing:1.080000px;}
.ws8b{word-spacing:1.134000px;}
.ws20{word-spacing:1.188000px;}
.ws81{word-spacing:1.242000px;}
.ws47{word-spacing:1.296000px;}
.ws82{word-spacing:1.350000px;}
.ws62{word-spacing:1.404000px;}
.ws67{word-spacing:1.458000px;}
.wsca{word-spacing:1.566000px;}
.ws8e{word-spacing:1.620000px;}
.ws98{word-spacing:1.728000px;}
.wsb5{word-spacing:1.782000px;}
.ws80{word-spacing:1.836000px;}
.wsd0{word-spacing:1.890000px;}
.wsac{word-spacing:1.998000px;}
.ws84{word-spacing:2.052000px;}
.ws3f{word-spacing:2.106000px;}
.ws70{word-spacing:2.160000px;}
.ws40{word-spacing:2.214000px;}
.wsb0{word-spacing:2.268000px;}
.ws6f{word-spacing:2.322000px;}
.ws1e{word-spacing:2.376000px;}
.ws3c{word-spacing:2.430000px;}
.ws10{word-spacing:2.538000px;}
.ws21{word-spacing:2.592000px;}
.ws39{word-spacing:2.646000px;}
.wsa0{word-spacing:2.700000px;}
.ws19{word-spacing:2.808000px;}
.wsb3{word-spacing:2.862000px;}
.ws8a{word-spacing:2.916000px;}
.ws4e{word-spacing:2.970000px;}
.ws1a{word-spacing:3.024000px;}
.ws83{word-spacing:3.078000px;}
.ws2c{word-spacing:3.186000px;}
.ws9c{word-spacing:3.240000px;}
.ws6{word-spacing:3.348000px;}
.ws7d{word-spacing:3.402000px;}
.wsd{word-spacing:3.510000px;}
.ws7{word-spacing:3.564000px;}
.ws66{word-spacing:3.618000px;}
.wsaf{word-spacing:3.672000px;}
.ws72{word-spacing:3.726000px;}
.ws8{word-spacing:3.780000px;}
.ws87{word-spacing:3.834000px;}
.ws86{word-spacing:3.888000px;}
.ws71{word-spacing:3.942000px;}
.ws3b{word-spacing:3.996000px;}
.ws24{word-spacing:4.050000px;}
.ws74{word-spacing:4.158000px;}
.wsd3{word-spacing:4.212000px;}
.ws3a{word-spacing:4.266000px;}
.ws6d{word-spacing:4.482000px;}
.ws4a{word-spacing:4.536000px;}
.ws95{word-spacing:4.644000px;}
.ws34{word-spacing:4.698000px;}
.ws4f{word-spacing:4.752000px;}
.ws96{word-spacing:4.914000px;}
.wsad{word-spacing:4.968000px;}
.ws29{word-spacing:5.022000px;}
.ws91{word-spacing:5.076000px;}
.ws93{word-spacing:5.184000px;}
.wscb{word-spacing:5.238000px;}
.ws42{word-spacing:5.400000px;}
.ws4b{word-spacing:5.616000px;}
.ws22{word-spacing:5.724000px;}
.ws46{word-spacing:5.778000px;}
.wsd1{word-spacing:5.832000px;}
.ws92{word-spacing:5.940000px;}
.wsa{word-spacing:6.048000px;}
.ws7c{word-spacing:6.156000px;}
.wsb4{word-spacing:6.264000px;}
.wsa1{word-spacing:6.318000px;}
.ws2a{word-spacing:6.372000px;}
.ws65{word-spacing:6.426000px;}
.ws8f{word-spacing:6.480000px;}
.ws4c{word-spacing:6.534000px;}
.ws99{word-spacing:6.588000px;}
.wsc4{word-spacing:6.642000px;}
.ws6c{word-spacing:6.696000px;}
.ws27{word-spacing:6.750000px;}
.ws1f{word-spacing:6.804000px;}
.ws2b{word-spacing:6.858000px;}
.ws11{word-spacing:6.912000px;}
.ws44{word-spacing:6.966000px;}
.wsc6{word-spacing:7.074000px;}
.ws9{word-spacing:7.128000px;}
.wsc2{word-spacing:7.182000px;}
.wsb8{word-spacing:7.236000px;}
.ws33{word-spacing:7.452000px;}
.ws3e{word-spacing:7.560000px;}
.wsc8{word-spacing:7.614000px;}
.ws64{word-spacing:7.668000px;}
.ws90{word-spacing:7.830000px;}
.ws61{word-spacing:7.884000px;}
.wsc5{word-spacing:8.100000px;}
.wsb7{word-spacing:8.262000px;}
.ws9f{word-spacing:8.316000px;}
.wsa3{word-spacing:8.424000px;}
.wsa8{word-spacing:8.640000px;}
.wsaa{word-spacing:8.694000px;}
.ws18{word-spacing:8.910000px;}
.ws85{word-spacing:8.964000px;}
.ws17{word-spacing:9.450000px;}
.ws38{word-spacing:9.558000px;}
.ws60{word-spacing:9.990000px;}
.wsb1{word-spacing:10.314000px;}
.wsbc{word-spacing:10.476000px;}
.wse{word-spacing:10.908000px;}
.ws3d{word-spacing:11.772000px;}
.wsd7{word-spacing:11.988000px;}
.wsd9{word-spacing:12.480000px;}
.wsc7{word-spacing:12.852000px;}
.wsab{word-spacing:22.950000px;}
.wsda{word-spacing:41.280000px;}
.wsdb{word-spacing:53.280000px;}
.wsba{word-spacing:158.112000px;}
.wsbb{word-spacing:170.640000px;}
.wsb9{word-spacing:183.120000px;}
.ws4{word-spacing:189.744000px;}
.wsa6{word-spacing:236.016000px;}
.wsa5{word-spacing:236.976000px;}
.wsa4{word-spacing:393.072000px;}
._1{margin-left:-190.608000px;}
._2{margin-left:-153.696000px;}
._23{margin-left:-38.988000px;}
._1d{margin-left:-30.609924px;}
._4c{margin-left:-27.864000px;}
._c{margin-left:-25.758000px;}
._14{margin-left:-24.624000px;}
._12{margin-left:-23.544000px;}
._a{margin-left:-22.032000px;}
._21{margin-left:-20.466000px;}
._4e{margin-left:-19.386000px;}
._9{margin-left:-18.306000px;}
._15{margin-left:-16.632000px;}
._d{margin-left:-15.336000px;}
._6{margin-left:-14.208000px;}
._4d{margin-left:-12.852000px;}
._1f{margin-left:-11.718000px;}
._50{margin-left:-9.190800px;}
._7{margin-left:-6.414240px;}
._24{margin-left:-5.400000px;}
._b{margin-left:-4.212000px;}
._20{margin-left:-2.970000px;}
._4{margin-left:-1.728000px;}
._e{width:1.495800px;}
._10{width:2.797200px;}
._8{width:4.783800px;}
._13{width:5.972400px;}
._4b{width:7.132440px;}
._f{width:8.699400px;}
._1a{width:11.982000px;}
._5{width:13.344000px;}
._1b{width:15.331860px;}
._22{width:18.624000px;}
._60{width:30.816000px;}
._54{width:35.904000px;}
._51{width:37.248000px;}
._61{width:39.840000px;}
._5d{width:47.760000px;}
._4f{width:53.231400px;}
._2e{width:56.736000px;}
._5b{width:59.760000px;}
._56{width:61.968000px;}
._59{width:65.760000px;}
._2d{width:69.216000px;}
._5a{width:71.760000px;}
._58{width:77.760000px;}
._5e{width:83.760000px;}
._5c{width:89.760000px;}
._5f{width:101.760000px;}
._3c{width:111.462000px;}
._2c{width:118.176000px;}
._53{width:159.408000px;}
._57{width:167.040000px;}
._35{width:170.640000px;}
._55{width:176.208000px;}
._52{width:187.920000px;}
._34{width:194.592000px;}
._31{width:195.600000px;}
._36{width:198.960000px;}
._49{width:207.120000px;}
._4a{width:211.440000px;}
._30{width:219.600000px;}
._3a{width:220.608000px;}
._29{width:224.496000px;}
._3e{width:226.800000px;}
._3b{width:235.056000px;}
._39{width:244.512000px;}
._43{width:245.664000px;}
._27{width:249.456000px;}
._3f{width:262.272000px;}
._42{width:264.096000px;}
._41{width:269.520000px;}
._2b{width:288.720000px;}
._3{width:315.408000px;}
._37{width:347.616000px;}
._0{width:390.048000px;}
._18{width:393.390000px;}
._28{width:426.480000px;}
._45{width:452.352000px;}
._44{width:464.832000px;}
._3d{width:471.360000px;}
._2a{width:473.568000px;}
._26{width:506.592000px;}
._32{width:553.968000px;}
._16{width:604.156020px;}
._33{width:617.136000px;}
._38{width:619.008000px;}
._40{width:621.234000px;}
._2f{width:631.392000px;}
._25{width:676.944000px;}
._47{width:717.504000px;}
._17{width:776.358000px;}
._46{width:792.288000px;}
._48{width:802.920000px;}
._19{width:811.512000px;}
._1c{width:961.146000px;}
._1e{width:1011.213108px;}
._11{width:1737.144600px;}
.fcb{color:rgb(40,61,132);}
.fca{color:rgb(41,59,134);}
.fc7{color:rgb(150,151,150);}
.fc6{color:rgb(142,145,146);}
.fc5{color:rgb(43,59,134);}
.fc8{color:rgb(0,0,0);}
.fc4{color:rgb(30,164,215);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(75,182,223);}
.fc9{color:transparent;}
.fc2{color:rgb(110,110,112);}
.fc0{color:rgb(139,139,141);}
.fs8{font-size:29.886000px;}
.fsa{font-size:31.860000px;}
.fs3{font-size:37.170000px;}
.fs9{font-size:41.844000px;}
.fsb{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:53.796000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fsc{font-size:90.000000px;}
.fs1{font-size:123.000000px;}
.y0{bottom:0.000000px;}
.y100{bottom:0.069300px;}
.y9d{bottom:0.077850px;}
.y13f{bottom:0.078000px;}
.y117{bottom:0.079050px;}
.ya0{bottom:1.571550px;}
.yc3{bottom:1.573800px;}
.ydd{bottom:1.574550px;}
.y90{bottom:1.575150px;}
.y1d5{bottom:1.581000px;}
.y1b3{bottom:1.581900px;}
.y120{bottom:1.892550px;}
.y130{bottom:2.130900px;}
.yd9{bottom:2.288544px;}
.yff{bottom:2.424300px;}
.y135{bottom:2.631651px;}
.ybf{bottom:2.745450px;}
.y7e{bottom:3.171300px;}
.y302{bottom:3.363000px;}
.y301{bottom:3.365913px;}
.yf7{bottom:3.429300px;}
.ye1{bottom:3.443550px;}
.yfd{bottom:3.444300px;}
.y10d{bottom:3.452850px;}
.y2fe{bottom:3.498150px;}
.y2fd{bottom:3.501063px;}
.y8c{bottom:3.567300px;}
.yf0{bottom:4.104600px;}
.yd7{bottom:4.640550px;}
.ya4{bottom:4.652550px;}
.y85{bottom:4.653300px;}
.y7c{bottom:4.656300px;}
.y134{bottom:4.662450px;}
.y300{bottom:6.903000px;}
.y2fc{bottom:7.038150px;}
.ybb{bottom:8.663400px;}
.yf1{bottom:8.664750px;}
.y119{bottom:10.084050px;}
.y13a{bottom:11.583150px;}
.y12f{bottom:12.000900px;}
.y10e{bottom:13.682850px;}
.yf2{bottom:14.544600px;}
.yd8{bottom:14.870550px;}
.yb7{bottom:15.443400px;}
.ya6{bottom:15.512550px;}
.y87{bottom:15.513300px;}
.y80{bottom:15.531300px;}
.y12b{bottom:17.880900px;}
.yd2{bottom:18.258000px;}
.yb5{bottom:18.743400px;}
.yb3{bottom:19.523400px;}
.ye7{bottom:19.539750px;}
.yec{bottom:20.154600px;}
.y9c{bottom:21.662850px;}
.y13e{bottom:21.663000px;}
.y116{bottom:21.664050px;}
.yea{bottom:22.179600px;}
.y99{bottom:22.443000px;}
.yba{bottom:23.558400px;}
.yee{bottom:23.574600px;}
.y9b{bottom:24.362850px;}
.y13d{bottom:24.363000px;}
.y115{bottom:24.364050px;}
.y12d{bottom:26.265900px;}
.ycf{bottom:34.788000px;}
.ycd{bottom:38.793000px;}
.y3f{bottom:55.859850px;}
.y1{bottom:55.860000px;}
.y133{bottom:106.581000px;}
.y136{bottom:106.581450px;}
.y3d{bottom:107.583150px;}
.y199{bottom:108.000000px;}
.y14{bottom:108.792000px;}
.y239{bottom:108.795000px;}
.y2a7{bottom:108.804000px;}
.y202{bottom:108.828750px;}
.y1e5{bottom:108.889350px;}
.y18a{bottom:108.915900px;}
.y174{bottom:108.940500px;}
.y132{bottom:109.127400px;}
.y137{bottom:109.132950px;}
.y26e{bottom:109.179000px;}
.y73{bottom:109.287000px;}
.y198{bottom:123.000000px;}
.y13{bottom:123.792000px;}
.y2a6{bottom:123.804000px;}
.y3c{bottom:125.578650px;}
.y201{bottom:126.824250px;}
.y1e4{bottom:126.884850px;}
.y189{bottom:126.911400px;}
.y173{bottom:126.936000px;}
.y26d{bottom:127.269000px;}
.y72{bottom:127.863000px;}
.y197{bottom:138.000000px;}
.y2a5{bottom:138.804000px;}
.y12{bottom:141.792000px;}
.y12a{bottom:142.269000px;}
.y131{bottom:142.269900px;}
.y129{bottom:142.291050px;}
.y3b{bottom:143.574150px;}
.y200{bottom:144.819750px;}
.y1e3{bottom:144.880350px;}
.y188{bottom:144.906900px;}
.y172{bottom:144.931500px;}
.y26c{bottom:145.359000px;}
.y12e{bottom:145.899900px;}
.y71{bottom:146.439000px;}
.y2a4{bottom:153.804000px;}
.y11{bottom:158.292000px;}
.y12c{bottom:158.649900px;}
.y3a{bottom:161.569650px;}
.y1b8{bottom:162.521250px;}
.y1ff{bottom:162.815250px;}
.y1e2{bottom:162.875850px;}
.y187{bottom:162.902400px;}
.y171{bottom:162.927000px;}
.y26b{bottom:163.449000px;}
.y70{bottom:165.015000px;}
.y2a3{bottom:168.804000px;}
.y10{bottom:174.792000px;}
.y39{bottom:179.565150px;}
.y1b7{bottom:180.516750px;}
.y1fe{bottom:180.810750px;}
.y1e1{bottom:180.871350px;}
.y186{bottom:180.897900px;}
.y170{bottom:180.922500px;}
.y26a{bottom:181.539000px;}
.y196{bottom:182.403000px;}
.y6f{bottom:183.591000px;}
.y2a2{bottom:183.804000px;}
.y128{bottom:188.582550px;}
.yf{bottom:191.292000px;}
.y38{bottom:197.560650px;}
.y1b6{bottom:198.512250px;}
.y2a1{bottom:198.804000px;}
.y1fd{bottom:198.806250px;}
.y1e0{bottom:198.866850px;}
.y185{bottom:198.893400px;}
.y16f{bottom:198.918000px;}
.y269{bottom:199.629000px;}
.y195{bottom:200.979000px;}
.y6e{bottom:202.167000px;}
.y127{bottom:206.578050px;}
.ye{bottom:207.792000px;}
.y2a0{bottom:213.804000px;}
.y1b2{bottom:215.008500px;}
.y1b4{bottom:215.009250px;}
.y37{bottom:215.556150px;}
.y1b5{bottom:216.507750px;}
.y1b1{bottom:216.522750px;}
.y1fc{bottom:216.801750px;}
.y1df{bottom:216.866850px;}
.y184{bottom:216.888900px;}
.y16e{bottom:216.913500px;}
.y268{bottom:217.719000px;}
.y194{bottom:219.555000px;}
.y6d{bottom:220.743000px;}
.y126{bottom:224.573550px;}
.y29f{bottom:228.804000px;}
.yd{bottom:233.292000px;}
.y36{bottom:233.551650px;}
.y1b0{bottom:234.518250px;}
.y1fb{bottom:234.797250px;}
.y183{bottom:234.884400px;}
.y16d{bottom:234.909000px;}
.y267{bottom:235.809000px;}
.y193{bottom:238.131000px;}
.y6c{bottom:239.319000px;}
.y125{bottom:242.569050px;}
.y29e{bottom:243.804000px;}
.yc{bottom:249.792000px;}
.y35{bottom:251.547150px;}
.y1af{bottom:252.513750px;}
.y1fa{bottom:252.797250px;}
.y182{bottom:252.879900px;}
.y16c{bottom:252.904500px;}
.y266{bottom:253.899000px;}
.y192{bottom:256.707000px;}
.y6b{bottom:257.895000px;}
.y29d{bottom:258.804000px;}
.y124{bottom:260.564550px;}
.yb{bottom:266.292000px;}
.y1de{bottom:268.368000px;}
.y34{bottom:269.542650px;}
.y1ae{bottom:270.557250px;}
.y181{bottom:270.875400px;}
.y16b{bottom:270.900000px;}
.y265{bottom:271.989000px;}
.y29c{bottom:273.804000px;}
.y191{bottom:275.283000px;}
.y6a{bottom:276.471000px;}
.y123{bottom:278.560050px;}
.ya{bottom:282.792000px;}
.y1dd{bottom:286.363500px;}
.y33{bottom:287.538150px;}
.y1ad{bottom:288.552750px;}
.y29b{bottom:288.804000px;}
.y180{bottom:288.870900px;}
.y16a{bottom:288.895500px;}
.y264{bottom:290.079000px;}
.y114{bottom:290.272500px;}
.y11a{bottom:290.273550px;}
.y190{bottom:293.841000px;}
.y69{bottom:295.047000px;}
.y1f9{bottom:297.128250px;}
.y9{bottom:299.292000px;}
.y11d{bottom:299.873550px;}
.y11c{bottom:299.874000px;}
.y121{bottom:301.523550px;}
.y11f{bottom:301.524000px;}
.y118{bottom:301.856550px;}
.y122{bottom:303.319050px;}
.y11b{bottom:303.328050px;}
.y11e{bottom:303.329550px;}
.y113{bottom:303.334350px;}
.y29a{bottom:303.804000px;}
.y1dc{bottom:304.359000px;}
.y32{bottom:305.533650px;}
.y1ac{bottom:306.548250px;}
.y17f{bottom:306.866400px;}
.y169{bottom:306.891000px;}
.y2f6{bottom:306.999150px;}
.y263{bottom:308.169000px;}
.y18f{bottom:312.417000px;}
.y68{bottom:313.623000px;}
.y1f8{bottom:315.123750px;}
.y8{bottom:315.792000px;}
.y299{bottom:318.804000px;}
.y1db{bottom:322.354500px;}
.y31{bottom:323.529150px;}
.y1ab{bottom:324.543750px;}
.y17e{bottom:324.861900px;}
.y168{bottom:324.886500px;}
.y2f5{bottom:324.994650px;}
.y112{bottom:326.230350px;}
.y262{bottom:326.259000px;}
.y18e{bottom:330.993000px;}
.y67{bottom:332.199000px;}
.y7{bottom:332.292000px;}
.y1f7{bottom:333.119250px;}
.y298{bottom:333.804000px;}
.y1da{bottom:340.350000px;}
.y30{bottom:341.524650px;}
.y1aa{bottom:342.539250px;}
.y17d{bottom:342.857400px;}
.y167{bottom:342.882000px;}
.y2f4{bottom:342.990150px;}
.y261{bottom:344.349000px;}
.y111{bottom:345.737850px;}
.y6{bottom:348.792000px;}
.y297{bottom:348.804000px;}
.y18d{bottom:349.569000px;}
.y1f6{bottom:351.114750px;}
.y66{bottom:352.269000px;}
.y1d9{bottom:358.345500px;}
.y2f{bottom:359.520150px;}
.y1a9{bottom:360.534750px;}
.y17c{bottom:360.852900px;}
.y166{bottom:360.877500px;}
.y260{bottom:362.439000px;}
.y110{bottom:363.733350px;}
.y296{bottom:363.804000px;}
.y5{bottom:365.296800px;}
.y1f5{bottom:369.110250px;}
.y18c{bottom:369.639000px;}
.y1d8{bottom:376.341000px;}
.y2e{bottom:377.515650px;}
.y1a8{bottom:378.530250px;}
.y295{bottom:378.804000px;}
.y17b{bottom:378.848400px;}
.y165{bottom:378.873000px;}
.y2f3{bottom:378.990150px;}
.y25f{bottom:380.529000px;}
.y65{bottom:381.339000px;}
.y1bf{bottom:381.860250px;}
.y1f4{bottom:387.105750px;}
.y4{bottom:387.796800px;}
.y238{bottom:392.589000px;}
.y294{bottom:393.804000px;}
.y2f2{bottom:393.990150px;}
.y1d7{bottom:394.336500px;}
.y10f{bottom:394.972350px;}
.y10c{bottom:394.972500px;}
.y10b{bottom:394.996800px;}
.y2d{bottom:395.511150px;}
.y1a7{bottom:396.525750px;}
.y17a{bottom:396.843900px;}
.y164{bottom:396.868500px;}
.y25e{bottom:398.619000px;}
.y3{bottom:404.296800px;}
.y1f3{bottom:405.101250px;}
.y293{bottom:408.804000px;}
.y2f1{bottom:408.990150px;}
.y237{bottom:410.584500px;}
.y1d4{bottom:410.833500px;}
.y1d6{bottom:412.332000px;}
.y1d3{bottom:412.369500px;}
.y2c{bottom:413.506650px;}
.y1a6{bottom:414.521250px;}
.y179{bottom:414.839400px;}
.y163{bottom:414.864000px;}
.y25d{bottom:416.709000px;}
.y1f2{bottom:423.096750px;}
.y292{bottom:423.804000px;}
.y2f0{bottom:423.990150px;}
.y236{bottom:428.580000px;}
.y64{bottom:428.808000px;}
.y1d2{bottom:430.365000px;}
.y2b{bottom:431.502150px;}
.y10a{bottom:432.351300px;}
.y1a5{bottom:432.516750px;}
.y178{bottom:432.834900px;}
.y162{bottom:432.859500px;}
.y25c{bottom:434.799000px;}
.y291{bottom:438.804000px;}
.y1f1{bottom:441.092250px;}
.y235{bottom:446.575500px;}
.y63{bottom:447.384000px;}
.y2ef{bottom:447.990150px;}
.y1d1{bottom:448.360500px;}
.y2a{bottom:449.497650px;}
.y109{bottom:450.346800px;}
.y1a4{bottom:450.512250px;}
.y177{bottom:450.830400px;}
.y161{bottom:450.855000px;}
.y25b{bottom:452.889000px;}
.y290{bottom:453.804000px;}
.y1f0{bottom:459.087750px;}
.y234{bottom:464.571000px;}
.y62{bottom:465.960000px;}
.y1d0{bottom:466.356000px;}
.y29{bottom:467.493150px;}
.y1a3{bottom:468.507750px;}
.y28f{bottom:468.804000px;}
.y176{bottom:468.825900px;}
.y160{bottom:468.850500px;}
.y108{bottom:469.854300px;}
.y25a{bottom:470.979000px;}
.y1ef{bottom:477.083250px;}
.y233{bottom:482.566500px;}
.y28e{bottom:483.804000px;}
.y1cf{bottom:484.351500px;}
.y61{bottom:484.536000px;}
.y2ee{bottom:484.912650px;}
.y105{bottom:485.446500px;}
.y106{bottom:485.446800px;}
.y28{bottom:485.488650px;}
.y1a2{bottom:486.503250px;}
.y175{bottom:486.821400px;}
.y15f{bottom:486.846000px;}
.y107{bottom:487.849800px;}
.y104{bottom:487.858800px;}
.y259{bottom:489.069000px;}
.y1ee{bottom:495.078750px;}
.y2d0{bottom:498.678000px;}
.y28d{bottom:498.804000px;}
.y232{bottom:500.562000px;}
.y1ce{bottom:502.347000px;}
.y2ed{bottom:502.908150px;}
.y60{bottom:503.112000px;}
.y27{bottom:503.484150px;}
.y1a1{bottom:504.498750px;}
.y103{bottom:505.854300px;}
.y15e{bottom:506.346000px;}
.y258{bottom:507.159000px;}
.y1ed{bottom:513.074250px;}
.y2cf{bottom:513.678000px;}
.y28c{bottom:513.804000px;}
.y231{bottom:518.557500px;}
.y1cd{bottom:520.342500px;}
.yf6{bottom:520.396500px;}
.yf8{bottom:520.396800px;}
.y2ec{bottom:520.903650px;}
.yfe{bottom:521.446500px;}
.y101{bottom:521.446800px;}
.y26{bottom:521.479650px;}
.y5f{bottom:521.688000px;}
.yfb{bottom:522.346800px;}
.yfa{bottom:522.348000px;}
.y1a0{bottom:522.494250px;}
.yfc{bottom:523.845300px;}
.yf5{bottom:523.847250px;}
.y102{bottom:523.849800px;}
.yf9{bottom:523.852800px;}
.y257{bottom:525.249000px;}
.y2ce{bottom:528.678000px;}
.y28b{bottom:528.804000px;}
.y1ec{bottom:531.069750px;}
.y230{bottom:536.553000px;}
.y1cc{bottom:538.338000px;}
.y2eb{bottom:538.899150px;}
.y25{bottom:539.475150px;}
.y18b{bottom:540.137400px;}
.y5e{bottom:540.264000px;}
.y19f{bottom:540.489750px;}
.y256{bottom:543.339000px;}
.y2cd{bottom:543.678000px;}
.y28a{bottom:543.804000px;}
.y1eb{bottom:549.065250px;}
.ye6{bottom:550.900500px;}
.yf4{bottom:550.901250px;}
.ye5{bottom:550.906050px;}
.y22f{bottom:554.548500px;}
.y15d{bottom:555.870000px;}
.y1cb{bottom:556.333500px;}
.yf3{bottom:556.835100px;}
.y2ea{bottom:556.894650px;}
.y24{bottom:557.475150px;}
.y19e{bottom:558.485250px;}
.y2cc{bottom:558.678000px;}
.y289{bottom:558.804000px;}
.y5d{bottom:558.840000px;}
.ye8{bottom:559.565250px;}
.y255{bottom:561.429000px;}
.yed{bottom:561.680100px;}
.yeb{bottom:563.705100px;}
.yef{bottom:565.085100px;}
.y1ea{bottom:567.060750px;}
.ye9{bottom:567.305100px;}
.y22e{bottom:572.544000px;}
.y2cb{bottom:573.678000px;}
.y288{bottom:573.804000px;}
.y15c{bottom:573.865500px;}
.y2e9{bottom:574.890150px;}
.y1ca{bottom:575.833500px;}
.y19d{bottom:577.061250px;}
.y5c{bottom:577.416000px;}
.y254{bottom:579.519000px;}
.y1e9{bottom:585.056250px;}
.y2ca{bottom:588.678000px;}
.y287{bottom:588.804000px;}
.y15b{bottom:591.861000px;}
.y22d{bottom:592.044000px;}
.y19c{bottom:595.637250px;}
.y5b{bottom:595.992000px;}
.ye4{bottom:597.400050px;}
.y253{bottom:597.609000px;}
.y1e8{bottom:603.051750px;}
.y2c9{bottom:603.678000px;}
.y286{bottom:603.804000px;}
.y1c9{bottom:604.333500px;}
.y15a{bottom:609.856500px;}
.yda{bottom:610.739550px;}
.yd6{bottom:610.740000px;}
.y2e8{bottom:610.890150px;}
.ye2{bottom:611.939550px;}
.ye0{bottom:611.940000px;}
.yde{bottom:613.889550px;}
.ydc{bottom:613.890000px;}
.y19b{bottom:614.213250px;}
.y5a{bottom:614.568000px;}
.ydb{bottom:615.383550px;}
.ydf{bottom:615.388050px;}
.yd5{bottom:615.391500px;}
.ye3{bottom:615.395550px;}
.y252{bottom:615.699000px;}
.y2c8{bottom:618.678000px;}
.y285{bottom:618.804000px;}
.y311{bottom:620.749500px;}
.y1e7{bottom:621.047250px;}
.y2e7{bottom:625.890150px;}
.y159{bottom:627.852000px;}
.y19a{bottom:632.789250px;}
.y59{bottom:633.144000px;}
.y2c7{bottom:633.678000px;}
.y251{bottom:633.789000px;}
.y284{bottom:633.804000px;}
.y22c{bottom:637.134000px;}
.y310{bottom:640.321500px;}
.y2e6{bottom:640.890150px;}
.y158{bottom:645.847500px;}
.y23{bottom:647.580150px;}
.y2c6{bottom:648.678000px;}
.y283{bottom:648.804000px;}
.y1c8{bottom:649.322700px;}
.yca{bottom:650.796300px;}
.ycc{bottom:650.802000px;}
.y58{bottom:651.720000px;}
.y250{bottom:651.879000px;}
.yd3{bottom:654.222298px;}
.y22b{bottom:655.129500px;}
.y2e5{bottom:655.890150px;}
.yd1{bottom:657.540000px;}
.y2c5{bottom:663.678000px;}
.y282{bottom:663.804000px;}
.y157{bottom:663.843000px;}
.y30f{bottom:664.393500px;}
.yd4{bottom:665.355000px;}
.y22{bottom:665.616150px;}
.ycb{bottom:667.050000px;}
.y1c7{bottom:667.318200px;}
.y24f{bottom:669.969000px;}
.y57{bottom:670.296000px;}
.y2e4{bottom:670.890150px;}
.y22a{bottom:673.125000px;}
.yd0{bottom:675.075000px;}
.yce{bottom:678.075000px;}
.y2c4{bottom:678.678000px;}
.y281{bottom:678.804000px;}
.y1be{bottom:678.995250px;}
.y156{bottom:681.838500px;}
.y21{bottom:683.611650px;}
.y1c6{bottom:685.313700px;}
.y2e3{bottom:685.890150px;}
.y24e{bottom:688.059000px;}
.y214{bottom:688.132650px;}
.y30e{bottom:688.465500px;}
.y56{bottom:688.872000px;}
.y229{bottom:691.120500px;}
.y2c3{bottom:693.678000px;}
.y280{bottom:693.804000px;}
.y155{bottom:699.834000px;}
.y2e2{bottom:700.890150px;}
.y20{bottom:701.607150px;}
.y1c5{bottom:703.309200px;}
.y24d{bottom:706.149000px;}
.y55{bottom:707.448000px;}
.y213{bottom:707.704650px;}
.y2c2{bottom:708.678000px;}
.y27f{bottom:708.804000px;}
.y228{bottom:709.116000px;}
.yc7{bottom:711.141000px;}
.yc8{bottom:711.141300px;}
.yc6{bottom:711.144300px;}
.y30d{bottom:712.537500px;}
.yc9{bottom:713.841300px;}
.y2e1{bottom:715.890150px;}
.y154{bottom:717.829500px;}
.y1f{bottom:719.602650px;}
.y1c4{bottom:721.304700px;}
.y2c1{bottom:723.678000px;}
.y27e{bottom:723.804000px;}
.y24c{bottom:724.239000px;}
.y54{bottom:726.024000px;}
.y227{bottom:727.111500px;}
.ybe{bottom:729.141000px;}
.yc0{bottom:729.141300px;}
.yc4{bottom:730.341300px;}
.yc2{bottom:730.342500px;}
.y212{bottom:731.776650px;}
.ybd{bottom:731.835750px;}
.yc5{bottom:731.839800px;}
.yc1{bottom:731.841300px;}
.y153{bottom:735.825000px;}
.y30c{bottom:736.609500px;}
.y1e{bottom:737.598150px;}
.y2c0{bottom:738.678000px;}
.y27d{bottom:738.804000px;}
.y1c3{bottom:739.300200px;}
.y2e0{bottom:739.890150px;}
.y24b{bottom:742.329000px;}
.y53{bottom:744.600000px;}
.y226{bottom:745.107000px;}
.y2bf{bottom:753.678000px;}
.y27c{bottom:753.804000px;}
.y152{bottom:753.820500px;}
.y1d{bottom:755.593650px;}
.y211{bottom:755.848650px;}
.y1c2{bottom:757.295700px;}
.yb1{bottom:758.833200px;}
.ybc{bottom:758.835750px;}
.yb2{bottom:758.836500px;}
.y24a{bottom:760.419000px;}
.y30b{bottom:760.681500px;}
.y225{bottom:763.102500px;}
.y52{bottom:763.176000px;}
.yb6{bottom:763.389900px;}
.yb9{bottom:764.755509px;}
.yb4{bottom:767.499900px;}
.y2be{bottom:768.678000px;}
.y27b{bottom:768.804000px;}
.y151{bottom:771.816000px;}
.yb8{bottom:772.779900px;}
.y1c{bottom:773.589150px;}
.y1c1{bottom:775.291200px;}
.y2df{bottom:778.318650px;}
.y210{bottom:779.920650px;}
.y224{bottom:781.098000px;}
.y51{bottom:781.752000px;}
.y2bd{bottom:783.678000px;}
.y27a{bottom:783.804000px;}
.y30a{bottom:784.753500px;}
.y150{bottom:789.811500px;}
.y1b{bottom:791.584650px;}
.y1c0{bottom:793.286700px;}
.y2de{bottom:794.815650px;}
.y2bc{bottom:798.678000px;}
.y279{bottom:798.804000px;}
.y223{bottom:799.093500px;}
.y50{bottom:800.328000px;}
.y20f{bottom:803.992650px;}
.yb0{bottom:804.004200px;}
.y14f{bottom:807.807000px;}
.y249{bottom:808.104000px;}
.y309{bottom:808.825500px;}
.y1a{bottom:809.580150px;}
.y2dd{bottom:811.312650px;}
.y2bb{bottom:813.678000px;}
.y278{bottom:816.804000px;}
.y222{bottom:817.089000px;}
.y4f{bottom:818.904000px;}
.yaf{bottom:821.999700px;}
.y14e{bottom:825.802500px;}
.y248{bottom:826.194000px;}
.y2dc{bottom:827.809650px;}
.y20e{bottom:828.064650px;}
.y2ba{bottom:828.678000px;}
.y308{bottom:832.897500px;}
.y221{bottom:835.084500px;}
.yad{bottom:835.351200px;}
.yab{bottom:835.351500px;}
.y4e{bottom:837.480000px;}
.yac{bottom:838.504050px;}
.yae{bottom:839.995200px;}
.yaa{bottom:840.004200px;}
.y2b9{bottom:843.678000px;}
.y14d{bottom:843.798000px;}
.y247{bottom:844.284000px;}
.y2db{bottom:844.306650px;}
.y20d{bottom:852.136650px;}
.y220{bottom:853.080000px;}
.y1e6{bottom:855.677700px;}
.y4d{bottom:856.056000px;}
.y307{bottom:856.969500px;}
.ya9{bottom:857.999700px;}
.y2b8{bottom:858.678000px;}
.y2da{bottom:860.803650px;}
.y14c{bottom:861.793500px;}
.y246{bottom:862.374000px;}
.y277{bottom:863.544000px;}
.y21f{bottom:871.075500px;}
.ya7{bottom:871.351200px;}
.ya3{bottom:871.351500px;}
.y2b7{bottom:873.678000px;}
.ya1{bottom:874.501050px;}
.y9f{bottom:874.501500px;}
.ya5{bottom:874.504050px;}
.y4c{bottom:874.632000px;}
.ya8{bottom:875.995200px;}
.ya2{bottom:875.999550px;}
.y9e{bottom:876.007500px;}
.y20c{bottom:876.208650px;}
.y2d9{bottom:877.300650px;}
.y19{bottom:877.831650px;}
.y14b{bottom:879.789000px;}
.y245{bottom:880.464000px;}
.y306{bottom:881.041500px;}
.y276{bottom:881.544000px;}
.y2b6{bottom:888.678000px;}
.y21e{bottom:889.071000px;}
.y4b{bottom:893.208000px;}
.y14a{bottom:897.784500px;}
.y244{bottom:898.554000px;}
.y20b{bottom:900.280650px;}
.y2d8{bottom:902.802150px;}
.y98{bottom:902.872500px;}
.y97{bottom:902.877150px;}
.y18{bottom:903.409650px;}
.y2b5{bottom:903.678000px;}
.y305{bottom:905.113500px;}
.y21d{bottom:907.066500px;}
.y4a{bottom:911.784000px;}
.y9a{bottom:914.455500px;}
.y243{bottom:916.644000px;}
.y275{bottom:917.548500px;}
.y2b4{bottom:918.678000px;}
.y149{bottom:919.101000px;}
.y2d7{bottom:919.299150px;}
.y20a{bottom:924.352650px;}
.y21c{bottom:925.062000px;}
.y304{bottom:929.185500px;}
.y17{bottom:930.330150px;}
.y49{bottom:930.360000px;}
.y2b3{bottom:933.678000px;}
.y242{bottom:934.734000px;}
.y274{bottom:935.544000px;}
.y2d6{bottom:935.796150px;}
.y148{bottom:937.096500px;}
.y21b{bottom:943.057500px;}
.y209{bottom:948.424650px;}
.y2b2{bottom:948.678000px;}
.y48{bottom:948.936000px;}
.y2d5{bottom:952.293150px;}
.y241{bottom:952.824000px;}
.y303{bottom:953.257500px;}
.y96{bottom:953.542650px;}
.y273{bottom:953.544000px;}
.y147{bottom:955.092000px;}
.y21a{bottom:961.053000px;}
.y2b1{bottom:963.678000px;}
.y16{bottom:964.089150px;}
.y92{bottom:966.894000px;}
.y94{bottom:966.894150px;}
.y47{bottom:967.512000px;}
.y8b{bottom:968.094000px;}
.y8d{bottom:968.094150px;}
.y2d4{bottom:968.790150px;}
.y8f{bottom:970.044000px;}
.y91{bottom:970.044150px;}
.y93{bottom:970.047300px;}
.y240{bottom:970.914000px;}
.y95{bottom:971.538150px;}
.y8a{bottom:971.542650px;}
.y8e{bottom:971.550150px;}
.y208{bottom:972.496650px;}
.y146{bottom:973.087500px;}
.y2fb{bottom:974.065500px;}
.y2ff{bottom:974.215500px;}
.y2fa{bottom:977.515500px;}
.y2b0{bottom:978.678000px;}
.y219{bottom:979.048500px;}
.y1bd{bottom:981.309300px;}
.y84{bottom:984.894000px;}
.y88{bottom:984.894150px;}
.y46{bottom:986.088000px;}
.y86{bottom:988.047300px;}
.y23f{bottom:989.004000px;}
.y89{bottom:989.538150px;}
.y83{bottom:989.542650px;}
.y272{bottom:989.553000px;}
.y145{bottom:991.083000px;}
.y2af{bottom:993.678000px;}
.y2d3{bottom:995.790150px;}
.y207{bottom:996.568650px;}
.y218{bottom:997.044000px;}
.y7b{bottom:1002.894000px;}
.y81{bottom:1002.894150px;}
.y15{bottom:1003.080150px;}
.y1bc{bottom:1003.881150px;}
.y45{bottom:1004.664000px;}
.y7d{bottom:1006.065300px;}
.y23e{bottom:1007.094000px;}
.y82{bottom:1007.538150px;}
.y271{bottom:1007.548500px;}
.y7f{bottom:1007.550300px;}
.y7a{bottom:1007.566650px;}
.y2ae{bottom:1008.678000px;}
.y144{bottom:1009.078500px;}
.y217{bottom:1016.544000px;}
.y206{bottom:1020.640650px;}
.y44{bottom:1023.240000px;}
.y1bb{bottom:1023.453150px;}
.y2ad{bottom:1023.671850px;}
.y23d{bottom:1025.184000px;}
.y270{bottom:1025.544000px;}
.y79{bottom:1025.562150px;}
.y143{bottom:1027.074000px;}
.y2d2{bottom:1027.290150px;}
.y2f9{bottom:1030.755000px;}
.y2ac{bottom:1038.671850px;}
.y43{bottom:1041.816000px;}
.y23c{bottom:1043.274000px;}
.y26f{bottom:1043.544000px;}
.y78{bottom:1043.557650px;}
.y205{bottom:1044.712650px;}
.y142{bottom:1045.069500px;}
.y1ba{bottom:1047.520650px;}
.y2ab{bottom:1053.671850px;}
.y2f8{bottom:1056.247500px;}
.y42{bottom:1060.392000px;}
.y23b{bottom:1061.364000px;}
.y216{bottom:1061.553000px;}
.y77{bottom:1061.553150px;}
.y2aa{bottom:1068.671850px;}
.y204{bottom:1068.784650px;}
.y1b9{bottom:1071.784650px;}
.y139{bottom:1076.592000px;}
.y41{bottom:1078.968000px;}
.y23a{bottom:1079.454000px;}
.y215{bottom:1079.548500px;}
.y76{bottom:1079.548650px;}
.y2f7{bottom:1081.740000px;}
.y2d1{bottom:1082.790150px;}
.y13c{bottom:1083.615000px;}
.y2a9{bottom:1083.671850px;}
.y13b{bottom:1086.675150px;}
.y141{bottom:1088.175510px;}
.y140{bottom:1088.310000px;}
.y40{bottom:1097.544000px;}
.y75{bottom:1097.544150px;}
.y203{bottom:1097.568750px;}
.y2a8{bottom:1098.671850px;}
.y2{bottom:1104.328800px;}
.y3e{bottom:1121.526150px;}
.y138{bottom:1121.526300px;}
.y74{bottom:1121.526900px;}
.h24{height:2.050356px;}
.h1b{height:7.344000px;}
.h21{height:8.667000px;}
.h39{height:9.477000px;}
.h14{height:9.747000px;}
.h16{height:10.530000px;}
.h4c{height:10.908000px;}
.h3f{height:11.043000px;}
.h2d{height:12.879000px;}
.h1f{height:14.632512px;}
.h45{height:14.661000px;}
.h3a{height:15.174000px;}
.h13{height:16.092000px;}
.h26{height:16.706274px;}
.h54{height:16.902000px;}
.h51{height:17.037000px;}
.h3d{height:17.847000px;}
.hb{height:18.225000px;}
.h2b{height:19.035000px;}
.hd{height:20.412138px;}
.h31{height:23.390796px;}
.h1d{height:24.138000px;}
.h30{height:25.461000px;}
.h41{height:26.784000px;}
.h33{height:28.283268px;}
.h34{height:28.286544px;}
.h2a{height:28.326096px;}
.h4{height:28.546560px;}
.h1a{height:28.579452px;}
.h25{height:28.663140px;}
.h32{height:29.691396px;}
.h18{height:31.158000px;}
.h46{height:31.470660px;}
.h42{height:34.286544px;}
.h19{height:36.366096px;}
.h11{height:36.742668px;}
.h15{height:36.850260px;}
.h1{height:36.864000px;}
.h4e{height:36.864600px;}
.h4d{height:36.882000px;}
.h4f{height:36.888600px;}
.h49{height:37.041960px;}
.h48{height:37.334424px;}
.h53{height:37.488000px;}
.h2e{height:37.764792px;}
.h10{height:37.979976px;}
.h23{height:39.312000px;}
.h28{height:39.926274px;}
.h12{height:40.024224px;}
.h7{height:41.472000px;}
.h27{height:41.500020px;}
.h43{height:41.530356px;}
.hf{height:42.306096px;}
.he{height:42.682668px;}
.h29{height:42.770826px;}
.h4b{height:45.120480px;}
.h4a{height:45.384480px;}
.h3c{height:46.270260px;}
.h36{height:46.910196px;}
.ha{height:48.222000px;}
.h5{height:48.384000px;}
.h9{height:48.649800px;}
.h3b{height:51.146544px;}
.h3{height:52.864560px;}
.h1e{height:53.182668px;}
.h52{height:54.172572px;}
.h6{height:55.296000px;}
.h37{height:56.163024px;}
.h47{height:56.306544px;}
.h3e{height:56.754000px;}
.h8{height:64.512000px;}
.h50{height:69.120000px;}
.h20{height:69.336000px;}
.h2f{height:71.379468px;}
.h1c{height:71.409468px;}
.h38{height:71.982000px;}
.h22{height:72.386544px;}
.h44{height:74.628000px;}
.h17{height:83.056068px;}
.hc{height:83.545188px;}
.h2c{height:92.932248px;}
.h2{height:94.464000px;}
.h40{height:100.935420px;}
.h35{height:101.764824px;}
.h0{height:1188.000000px;}
.w3{width:10.584000px;}
.w6{width:12.501000px;}
.w4{width:12.663000px;}
.wc{width:13.932000px;}
.w10{width:14.256000px;}
.w1a{width:15.093000px;}
.w1c{width:15.390000px;}
.w18{width:15.471000px;}
.w1b{width:15.498000px;}
.w16{width:15.903000px;}
.we{width:15.984000px;}
.w13{width:16.011000px;}
.w9{width:16.767000px;}
.w12{width:23.220000px;}
.wb{width:30.078000px;}
.w19{width:41.472000px;}
.w2{width:46.062000px;}
.w7{width:49.383000px;}
.wf{width:53.458500px;}
.w17{width:74.250000px;}
.w14{width:90.963000px;}
.w15{width:99.117000px;}
.wa{width:106.191000px;}
.w1{width:117.585000px;}
.w11{width:173.934000px;}
.w8{width:191.511000px;}
.w5{width:277.398000px;}
.wd{width:382.995000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:1.979700px;}
.x70{left:3.737550px;}
.x4f{left:8.066850px;}
.x13{left:11.573100px;}
.x6e{left:12.851250px;}
.x2d{left:14.903550px;}
.x72{left:20.567550px;}
.x8e{left:21.637644px;}
.x6b{left:40.874100px;}
.x9{left:42.059700px;}
.x2f{left:44.513550px;}
.x82{left:46.007550px;}
.x79{left:52.346250px;}
.x1{left:55.512000px;}
.xb{left:60.254700px;}
.x49{left:62.381550px;}
.x20{left:64.418550px;}
.x21{left:65.633550px;}
.x1f{left:68.228550px;}
.x7a{left:76.766250px;}
.x47{left:84.566550px;}
.xd{left:88.829700px;}
.x4b{left:90.491550px;}
.x7c{left:92.786250px;}
.x38{left:101.558550px;}
.x23{left:105.473550px;}
.xf{left:107.444700px;}
.x3a{left:114.158550px;}
.x5{left:124.123950px;}
.x3b{left:132.203550px;}
.x25{left:135.098550px;}
.x3d{left:152.813550px;}
.x28{left:156.128550px;}
.x29{left:157.343550px;}
.x27{left:159.938550px;}
.x40{left:177.668550px;}
.x5a{left:194.348400px;}
.x5c{left:216.098400px;}
.x5e{left:243.638400px;}
.x3{left:252.825000px;}
.x88{left:263.271750px;}
.x15{left:269.677500px;}
.x4{left:270.820500px;}
.x60{left:273.113400px;}
.x89{left:278.652000px;}
.x16{left:280.260900px;}
.x8a{left:293.650500px;}
.x8b{left:296.652000px;}
.x61{left:305.873400px;}
.x4e{left:311.481000px;}
.x2b{left:313.167000px;}
.x6d{left:320.229300px;}
.x2c{left:325.668150px;}
.x68{left:327.364800px;}
.x64{left:332.363400px;}
.x50{left:341.558850px;}
.x86{left:359.128500px;}
.x66{left:361.838400px;}
.x54{left:366.135000px;}
.x87{left:371.629200px;}
.x71{left:378.718050px;}
.x73{left:385.105050px;}
.x55{left:387.368400px;}
.x2{left:389.058450px;}
.x42{left:402.487500px;}
.x8c{left:403.623000px;}
.x1c{left:418.933500px;}
.x56{left:420.818400px;}
.x1d{left:436.852050px;}
.x57{left:440.213400px;}
.x51{left:444.169500px;}
.x84{left:447.168000px;}
.x8d{left:454.152000px;}
.x7e{left:455.589000px;}
.x52{left:456.832350px;}
.x85{left:459.669000px;}
.x34{left:461.877000px;}
.x1e{left:470.302050px;}
.x7f{left:471.492150px;}
.x58{left:474.233400px;}
.x35{left:483.110550px;}
.x53{left:486.940500px;}
.x8f{left:495.624000px;}
.x22{left:500.257050px;}
.x45{left:504.537000px;}
.x44{left:506.273550px;}
.x77{left:508.074000px;}
.x90{left:511.152000px;}
.x6{left:512.926500px;}
.x36{left:516.560550px;}
.x80{left:520.507500px;}
.x91{left:526.245000px;}
.x59{left:528.383400px;}
.x24{left:530.752050px;}
.x17{left:538.479000px;}
.x48{left:539.963400px;}
.x37{left:542.675550px;}
.x11{left:544.107000px;}
.x74{left:548.136000px;}
.x12{left:550.565100px;}
.x81{left:551.635050px;}
.x8{left:552.901200px;}
.x78{left:556.355250px;}
.x7d{left:558.500250px;}
.x26{left:562.672050px;}
.x75{left:564.146850px;}
.x39{left:568.085550px;}
.x92{left:569.652000px;}
.xa{left:571.111200px;}
.x46{left:573.473550px;}
.x43{left:577.176000px;}
.x4a{left:579.398550px;}
.x83{left:580.645050px;}
.x5b{left:582.233400px;}
.xc{left:583.336200px;}
.x14{left:590.168100px;}
.x2a{left:591.952050px;}
.x76{left:593.242500px;}
.x7b{left:596.795250px;}
.x5d{left:597.908400px;}
.x69{left:605.079000px;}
.x3c{left:607.910550px;}
.x4c{left:610.727550px;}
.xe{left:613.396200px;}
.x3f{left:614.688852px;}
.x6a{left:619.011300px;}
.x5f{left:623.588400px;}
.x10{left:630.511200px;}
.x3e{left:633.905550px;}
.x93{left:639.150000px;}
.x31{left:642.828000px;}
.x6f{left:644.598750px;}
.x32{left:649.287300px;}
.x41{left:653.387550px;}
.x62{left:662.663400px;}
.x18{left:677.208000px;}
.x19{left:683.668050px;}
.x94{left:685.152000px;}
.x63{left:686.618400px;}
.x33{left:692.211150px;}
.x6c{left:702.380100px;}
.x65{left:712.313400px;}
.x1a{left:715.588050px;}
.x2e{left:718.946550px;}
.x1b{left:723.271050px;}
.x30{left:726.635550px;}
.x95{left:739.152000px;}
.x67{left:749.129400px;}
.x96{left:754.542000px;}
.x97{left:802.152000px;}
.x98{left:843.624000px;}
.x4d{left:847.477050px;}
@media print{
.v11{vertical-align:-52.983083pt;}
.va{vertical-align:-51.093333pt;}
.v20{vertical-align:-46.416000pt;}
.vd{vertical-align:-41.184000pt;}
.v9{vertical-align:-38.589664pt;}
.v23{vertical-align:-29.830123pt;}
.v2{vertical-align:-21.616000pt;}
.v1c{vertical-align:-20.000000pt;}
.v4{vertical-align:-16.512000pt;}
.v1b{vertical-align:-14.719467pt;}
.v5{vertical-align:-12.426667pt;}
.v8{vertical-align:-11.146667pt;}
.v13{vertical-align:-9.600000pt;}
.v1a{vertical-align:-8.208688pt;}
.v17{vertical-align:-7.146667pt;}
.vb{vertical-align:-5.328000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.280000pt;}
.v16{vertical-align:6.462939pt;}
.v19{vertical-align:8.344053pt;}
.v3{vertical-align:10.476267pt;}
.v15{vertical-align:11.796272pt;}
.v1f{vertical-align:13.584000pt;}
.v10{vertical-align:14.613333pt;}
.v26{vertical-align:18.592000pt;}
.v25{vertical-align:19.573333pt;}
.v14{vertical-align:20.640000pt;}
.v1{vertical-align:21.616000pt;}
.v22{vertical-align:22.666667pt;}
.v12{vertical-align:24.768000pt;}
.v1e{vertical-align:27.120000pt;}
.v24{vertical-align:29.472000pt;}
.vf{vertical-align:30.814933pt;}
.v21{vertical-align:35.498133pt;}
.ve{vertical-align:37.248000pt;}
.v6{vertical-align:38.685301pt;}
.vc{vertical-align:41.167467pt;}
.v18{vertical-align:47.029355pt;}
.v1d{vertical-align:54.880533pt;}
.ls41{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000213pt;}
.ls3d{letter-spacing:0.000320pt;}
.ls13{letter-spacing:0.006059pt;}
.ls38{letter-spacing:0.007296pt;}
.ls28{letter-spacing:0.008352pt;}
.ls30{letter-spacing:0.014549pt;}
.ls11{letter-spacing:0.015893pt;}
.ls17{letter-spacing:0.016000pt;}
.ls1d{letter-spacing:0.021483pt;}
.ls32{letter-spacing:0.026565pt;}
.ls39{letter-spacing:0.030357pt;}
.ls2d{letter-spacing:0.032171pt;}
.lsf{letter-spacing:0.034955pt;}
.ls33{letter-spacing:0.037109pt;}
.ls12{letter-spacing:0.037195pt;}
.ls7{letter-spacing:0.037408pt;}
.ls23{letter-spacing:0.038549pt;}
.lsb{letter-spacing:0.039744pt;}
.ls16{letter-spacing:0.041717pt;}
.lsd{letter-spacing:0.042624pt;}
.ls8{letter-spacing:0.047819pt;}
.ls22{letter-spacing:0.048512pt;}
.ls40{letter-spacing:0.053803pt;}
.ls21{letter-spacing:0.058869pt;}
.ls2b{letter-spacing:0.068416pt;}
.ls3a{letter-spacing:0.084171pt;}
.ls42{letter-spacing:0.240000pt;}
.ls3e{letter-spacing:0.720000pt;}
.ls43{letter-spacing:1.648363pt;}
.ls45{letter-spacing:1.654987pt;}
.ls1a{letter-spacing:1.660832pt;}
.ls26{letter-spacing:1.743776pt;}
.ls24{letter-spacing:1.813003pt;}
.ls9{letter-spacing:2.641504pt;}
.ls2c{letter-spacing:2.655125pt;}
.ls2e{letter-spacing:2.655659pt;}
.ls31{letter-spacing:2.656192pt;}
.lsc{letter-spacing:2.658325pt;}
.ls4{letter-spacing:2.664000pt;}
.ls46{letter-spacing:2.682667pt;}
.ls44{letter-spacing:7.507531pt;}
.ls5{letter-spacing:8.129173pt;}
.ls3b{letter-spacing:8.176992pt;}
.ls35{letter-spacing:8.200901pt;}
.ls6{letter-spacing:8.224811pt;}
.ls15{letter-spacing:9.628171pt;}
.ls2a{letter-spacing:10.902656pt;}
.ls25{letter-spacing:11.191659pt;}
.ls1e{letter-spacing:11.982933pt;}
.ls29{letter-spacing:13.588992pt;}
.ls2f{letter-spacing:13.615467pt;}
.ls3{letter-spacing:13.628320pt;}
.ls20{letter-spacing:14.576000pt;}
.lse{letter-spacing:16.311659pt;}
.ls27{letter-spacing:16.312192pt;}
.ls2{letter-spacing:16.348171pt;}
.ls19{letter-spacing:17.788171pt;}
.ls18{letter-spacing:18.367957pt;}
.ls37{letter-spacing:19.990880pt;}
.ls34{letter-spacing:20.131659pt;}
.ls3c{letter-spacing:23.137547pt;}
.ls1f{letter-spacing:26.077333pt;}
.ls0{letter-spacing:28.179200pt;}
.ls48{letter-spacing:31.914667pt;}
.ls1c{letter-spacing:34.237333pt;}
.ls14{letter-spacing:41.110880pt;}
.ls47{letter-spacing:42.581333pt;}
.ls1b{letter-spacing:399.313600pt;}
.lsa{letter-spacing:587.045333pt;}
.ls10{letter-spacing:739.768533pt;}
.ls36{letter-spacing:896.249067pt;}
.ws53{word-spacing:-61.446987pt;}
.ws50{word-spacing:-47.818667pt;}
.ws5c{word-spacing:-39.593856pt;}
.ws58{word-spacing:-37.194667pt;}
.ws54{word-spacing:-35.864000pt;}
.ws55{word-spacing:-34.190347pt;}
.ws56{word-spacing:-26.565333pt;}
.wsd8{word-spacing:-23.920000pt;}
.ws57{word-spacing:-15.697184pt;}
.ws8d{word-spacing:-14.208000pt;}
.ws26{word-spacing:-13.344000pt;}
.wsd6{word-spacing:-12.629333pt;}
.ws5a{word-spacing:-11.985504pt;}
.ws0{word-spacing:-11.861333pt;}
.wsd4{word-spacing:-11.120000pt;}
.ws5{word-spacing:-11.093333pt;}
.ws5b{word-spacing:-10.278837pt;}
.ws59{word-spacing:-10.250667pt;}
.ws5e{word-spacing:-10.225504pt;}
.ws1{word-spacing:-9.779840pt;}
.ws2{word-spacing:-9.185120pt;}
.ws5d{word-spacing:-8.272629pt;}
.ws52{word-spacing:-8.224811pt;}
.ws94{word-spacing:-7.872960pt;}
.wsae{word-spacing:-4.368000pt;}
.ws1b{word-spacing:-3.120000pt;}
.wscc{word-spacing:-2.976000pt;}
.wsa7{word-spacing:-2.832000pt;}
.ws79{word-spacing:-2.640000pt;}
.wsc1{word-spacing:-2.592000pt;}
.ws76{word-spacing:-2.544000pt;}
.ws78{word-spacing:-2.496000pt;}
.ws7b{word-spacing:-2.448000pt;}
.wsbe{word-spacing:-2.400000pt;}
.ws9b{word-spacing:-2.352000pt;}
.wsb6{word-spacing:-2.304000pt;}
.ws9e{word-spacing:-2.256000pt;}
.ws6e{word-spacing:-2.208000pt;}
.ws9d{word-spacing:-2.112000pt;}
.ws6b{word-spacing:-2.064000pt;}
.wsc3{word-spacing:-1.968000pt;}
.ws48{word-spacing:-1.920000pt;}
.ws25{word-spacing:-1.872000pt;}
.ws49{word-spacing:-1.824000pt;}
.ws89{word-spacing:-1.776000pt;}
.ws68{word-spacing:-1.728000pt;}
.ws77{word-spacing:-1.584000pt;}
.wsc9{word-spacing:-1.536000pt;}
.wsb2{word-spacing:-1.488000pt;}
.ws43{word-spacing:-1.440000pt;}
.wscd{word-spacing:-1.392000pt;}
.ws41{word-spacing:-1.344000pt;}
.wsce{word-spacing:-1.296000pt;}
.ws28{word-spacing:-1.248000pt;}
.ws12{word-spacing:-1.200000pt;}
.wsd2{word-spacing:-1.152000pt;}
.ws7e{word-spacing:-1.104000pt;}
.wsb{word-spacing:-1.008000pt;}
.wsc{word-spacing:-0.960000pt;}
.wscf{word-spacing:-0.912000pt;}
.ws30{word-spacing:-0.864000pt;}
.ws31{word-spacing:-0.816000pt;}
.ws14{word-spacing:-0.768000pt;}
.wsa9{word-spacing:-0.720000pt;}
.ws7f{word-spacing:-0.672000pt;}
.ws6a{word-spacing:-0.624000pt;}
.ws4d{word-spacing:-0.528000pt;}
.wsa2{word-spacing:-0.480000pt;}
.ws73{word-spacing:-0.432000pt;}
.ws2f{word-spacing:-0.384000pt;}
.ws2e{word-spacing:-0.336000pt;}
.ws69{word-spacing:-0.288000pt;}
.ws45{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.144000pt;}
.ws8c{word-spacing:-0.096000pt;}
.ws23{word-spacing:-0.048000pt;}
.ws51{word-spacing:-0.047819pt;}
.wsd5{word-spacing:-0.042667pt;}
.ws5f{word-spacing:-0.037195pt;}
.ws3{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.048000pt;}
.ws97{word-spacing:0.096000pt;}
.wsbf{word-spacing:0.144000pt;}
.ws1d{word-spacing:0.192000pt;}
.wsf{word-spacing:0.288000pt;}
.ws7a{word-spacing:0.336000pt;}
.ws32{word-spacing:0.384000pt;}
.ws1c{word-spacing:0.432000pt;}
.ws75{word-spacing:0.480000pt;}
.wsc0{word-spacing:0.528000pt;}
.ws63{word-spacing:0.576000pt;}
.ws9a{word-spacing:0.624000pt;}
.ws16{word-spacing:0.672000pt;}
.ws15{word-spacing:0.720000pt;}
.ws88{word-spacing:0.768000pt;}
.ws2d{word-spacing:0.816000pt;}
.ws35{word-spacing:0.864000pt;}
.ws36{word-spacing:0.912000pt;}
.ws37{word-spacing:0.960000pt;}
.ws8b{word-spacing:1.008000pt;}
.ws20{word-spacing:1.056000pt;}
.ws81{word-spacing:1.104000pt;}
.ws47{word-spacing:1.152000pt;}
.ws82{word-spacing:1.200000pt;}
.ws62{word-spacing:1.248000pt;}
.ws67{word-spacing:1.296000pt;}
.wsca{word-spacing:1.392000pt;}
.ws8e{word-spacing:1.440000pt;}
.ws98{word-spacing:1.536000pt;}
.wsb5{word-spacing:1.584000pt;}
.ws80{word-spacing:1.632000pt;}
.wsd0{word-spacing:1.680000pt;}
.wsac{word-spacing:1.776000pt;}
.ws84{word-spacing:1.824000pt;}
.ws3f{word-spacing:1.872000pt;}
.ws70{word-spacing:1.920000pt;}
.ws40{word-spacing:1.968000pt;}
.wsb0{word-spacing:2.016000pt;}
.ws6f{word-spacing:2.064000pt;}
.ws1e{word-spacing:2.112000pt;}
.ws3c{word-spacing:2.160000pt;}
.ws10{word-spacing:2.256000pt;}
.ws21{word-spacing:2.304000pt;}
.ws39{word-spacing:2.352000pt;}
.wsa0{word-spacing:2.400000pt;}
.ws19{word-spacing:2.496000pt;}
.wsb3{word-spacing:2.544000pt;}
.ws8a{word-spacing:2.592000pt;}
.ws4e{word-spacing:2.640000pt;}
.ws1a{word-spacing:2.688000pt;}
.ws83{word-spacing:2.736000pt;}
.ws2c{word-spacing:2.832000pt;}
.ws9c{word-spacing:2.880000pt;}
.ws6{word-spacing:2.976000pt;}
.ws7d{word-spacing:3.024000pt;}
.wsd{word-spacing:3.120000pt;}
.ws7{word-spacing:3.168000pt;}
.ws66{word-spacing:3.216000pt;}
.wsaf{word-spacing:3.264000pt;}
.ws72{word-spacing:3.312000pt;}
.ws8{word-spacing:3.360000pt;}
.ws87{word-spacing:3.408000pt;}
.ws86{word-spacing:3.456000pt;}
.ws71{word-spacing:3.504000pt;}
.ws3b{word-spacing:3.552000pt;}
.ws24{word-spacing:3.600000pt;}
.ws74{word-spacing:3.696000pt;}
.wsd3{word-spacing:3.744000pt;}
.ws3a{word-spacing:3.792000pt;}
.ws6d{word-spacing:3.984000pt;}
.ws4a{word-spacing:4.032000pt;}
.ws95{word-spacing:4.128000pt;}
.ws34{word-spacing:4.176000pt;}
.ws4f{word-spacing:4.224000pt;}
.ws96{word-spacing:4.368000pt;}
.wsad{word-spacing:4.416000pt;}
.ws29{word-spacing:4.464000pt;}
.ws91{word-spacing:4.512000pt;}
.ws93{word-spacing:4.608000pt;}
.wscb{word-spacing:4.656000pt;}
.ws42{word-spacing:4.800000pt;}
.ws4b{word-spacing:4.992000pt;}
.ws22{word-spacing:5.088000pt;}
.ws46{word-spacing:5.136000pt;}
.wsd1{word-spacing:5.184000pt;}
.ws92{word-spacing:5.280000pt;}
.wsa{word-spacing:5.376000pt;}
.ws7c{word-spacing:5.472000pt;}
.wsb4{word-spacing:5.568000pt;}
.wsa1{word-spacing:5.616000pt;}
.ws2a{word-spacing:5.664000pt;}
.ws65{word-spacing:5.712000pt;}
.ws8f{word-spacing:5.760000pt;}
.ws4c{word-spacing:5.808000pt;}
.ws99{word-spacing:5.856000pt;}
.wsc4{word-spacing:5.904000pt;}
.ws6c{word-spacing:5.952000pt;}
.ws27{word-spacing:6.000000pt;}
.ws1f{word-spacing:6.048000pt;}
.ws2b{word-spacing:6.096000pt;}
.ws11{word-spacing:6.144000pt;}
.ws44{word-spacing:6.192000pt;}
.wsc6{word-spacing:6.288000pt;}
.ws9{word-spacing:6.336000pt;}
.wsc2{word-spacing:6.384000pt;}
.wsb8{word-spacing:6.432000pt;}
.ws33{word-spacing:6.624000pt;}
.ws3e{word-spacing:6.720000pt;}
.wsc8{word-spacing:6.768000pt;}
.ws64{word-spacing:6.816000pt;}
.ws90{word-spacing:6.960000pt;}
.ws61{word-spacing:7.008000pt;}
.wsc5{word-spacing:7.200000pt;}
.wsb7{word-spacing:7.344000pt;}
.ws9f{word-spacing:7.392000pt;}
.wsa3{word-spacing:7.488000pt;}
.wsa8{word-spacing:7.680000pt;}
.wsaa{word-spacing:7.728000pt;}
.ws18{word-spacing:7.920000pt;}
.ws85{word-spacing:7.968000pt;}
.ws17{word-spacing:8.400000pt;}
.ws38{word-spacing:8.496000pt;}
.ws60{word-spacing:8.880000pt;}
.wsb1{word-spacing:9.168000pt;}
.wsbc{word-spacing:9.312000pt;}
.wse{word-spacing:9.696000pt;}
.ws3d{word-spacing:10.464000pt;}
.wsd7{word-spacing:10.656000pt;}
.wsd9{word-spacing:11.093333pt;}
.wsc7{word-spacing:11.424000pt;}
.wsab{word-spacing:20.400000pt;}
.wsda{word-spacing:36.693333pt;}
.wsdb{word-spacing:47.360000pt;}
.wsba{word-spacing:140.544000pt;}
.wsbb{word-spacing:151.680000pt;}
.wsb9{word-spacing:162.773333pt;}
.ws4{word-spacing:168.661333pt;}
.wsa6{word-spacing:209.792000pt;}
.wsa5{word-spacing:210.645333pt;}
.wsa4{word-spacing:349.397333pt;}
._1{margin-left:-169.429333pt;}
._2{margin-left:-136.618667pt;}
._23{margin-left:-34.656000pt;}
._1d{margin-left:-27.208821pt;}
._4c{margin-left:-24.768000pt;}
._c{margin-left:-22.896000pt;}
._14{margin-left:-21.888000pt;}
._12{margin-left:-20.928000pt;}
._a{margin-left:-19.584000pt;}
._21{margin-left:-18.192000pt;}
._4e{margin-left:-17.232000pt;}
._9{margin-left:-16.272000pt;}
._15{margin-left:-14.784000pt;}
._d{margin-left:-13.632000pt;}
._6{margin-left:-12.629333pt;}
._4d{margin-left:-11.424000pt;}
._1f{margin-left:-10.416000pt;}
._50{margin-left:-8.169600pt;}
._7{margin-left:-5.701547pt;}
._24{margin-left:-4.800000pt;}
._b{margin-left:-3.744000pt;}
._20{margin-left:-2.640000pt;}
._4{margin-left:-1.536000pt;}
._e{width:1.329600pt;}
._10{width:2.486400pt;}
._8{width:4.252267pt;}
._13{width:5.308800pt;}
._4b{width:6.339947pt;}
._f{width:7.732800pt;}
._1a{width:10.650667pt;}
._5{width:11.861333pt;}
._1b{width:13.628320pt;}
._22{width:16.554667pt;}
._60{width:27.392000pt;}
._54{width:31.914667pt;}
._51{width:33.109333pt;}
._61{width:35.413333pt;}
._5d{width:42.453333pt;}
._4f{width:47.316800pt;}
._2e{width:50.432000pt;}
._5b{width:53.120000pt;}
._56{width:55.082667pt;}
._59{width:58.453333pt;}
._2d{width:61.525333pt;}
._5a{width:63.786667pt;}
._58{width:69.120000pt;}
._5e{width:74.453333pt;}
._5c{width:79.786667pt;}
._5f{width:90.453333pt;}
._3c{width:99.077333pt;}
._2c{width:105.045333pt;}
._53{width:141.696000pt;}
._57{width:148.480000pt;}
._35{width:151.680000pt;}
._55{width:156.629333pt;}
._52{width:167.040000pt;}
._34{width:172.970667pt;}
._31{width:173.866667pt;}
._36{width:176.853333pt;}
._49{width:184.106667pt;}
._4a{width:187.946667pt;}
._30{width:195.200000pt;}
._3a{width:196.096000pt;}
._29{width:199.552000pt;}
._3e{width:201.600000pt;}
._3b{width:208.938667pt;}
._39{width:217.344000pt;}
._43{width:218.368000pt;}
._27{width:221.738667pt;}
._3f{width:233.130667pt;}
._42{width:234.752000pt;}
._41{width:239.573333pt;}
._2b{width:256.640000pt;}
._3{width:280.362667pt;}
._37{width:308.992000pt;}
._0{width:346.709333pt;}
._18{width:349.680000pt;}
._28{width:379.093333pt;}
._45{width:402.090667pt;}
._44{width:413.184000pt;}
._3d{width:418.986667pt;}
._2a{width:420.949333pt;}
._26{width:450.304000pt;}
._32{width:492.416000pt;}
._16{width:537.027573pt;}
._33{width:548.565333pt;}
._38{width:550.229333pt;}
._40{width:552.208000pt;}
._2f{width:561.237333pt;}
._25{width:601.728000pt;}
._47{width:637.781333pt;}
._17{width:690.096000pt;}
._46{width:704.256000pt;}
._48{width:713.706667pt;}
._19{width:721.344000pt;}
._1c{width:854.352000pt;}
._1e{width:898.856096pt;}
._11{width:1544.128533pt;}
.fs8{font-size:26.565333pt;}
.fsa{font-size:28.320000pt;}
.fs3{font-size:33.040000pt;}
.fs9{font-size:37.194667pt;}
.fsb{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:47.818667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fsc{font-size:80.000000pt;}
.fs1{font-size:109.333333pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:0.061600pt;}
.y9d{bottom:0.069200pt;}
.y13f{bottom:0.069333pt;}
.y117{bottom:0.070267pt;}
.ya0{bottom:1.396933pt;}
.yc3{bottom:1.398933pt;}
.ydd{bottom:1.399600pt;}
.y90{bottom:1.400133pt;}
.y1d5{bottom:1.405333pt;}
.y1b3{bottom:1.406133pt;}
.y120{bottom:1.682267pt;}
.y130{bottom:1.894133pt;}
.yd9{bottom:2.034261pt;}
.yff{bottom:2.154933pt;}
.y135{bottom:2.339245pt;}
.ybf{bottom:2.440400pt;}
.y7e{bottom:2.818933pt;}
.y302{bottom:2.989333pt;}
.y301{bottom:2.991923pt;}
.yf7{bottom:3.048267pt;}
.ye1{bottom:3.060933pt;}
.yfd{bottom:3.061600pt;}
.y10d{bottom:3.069200pt;}
.y2fe{bottom:3.109467pt;}
.y2fd{bottom:3.112056pt;}
.y8c{bottom:3.170933pt;}
.yf0{bottom:3.648533pt;}
.yd7{bottom:4.124933pt;}
.ya4{bottom:4.135600pt;}
.y85{bottom:4.136267pt;}
.y7c{bottom:4.138933pt;}
.y134{bottom:4.144400pt;}
.y300{bottom:6.136000pt;}
.y2fc{bottom:6.256133pt;}
.ybb{bottom:7.700800pt;}
.yf1{bottom:7.702000pt;}
.y119{bottom:8.963600pt;}
.y13a{bottom:10.296133pt;}
.y12f{bottom:10.667467pt;}
.y10e{bottom:12.162533pt;}
.yf2{bottom:12.928533pt;}
.yd8{bottom:13.218267pt;}
.yb7{bottom:13.727467pt;}
.ya6{bottom:13.788933pt;}
.y87{bottom:13.789600pt;}
.y80{bottom:13.805600pt;}
.y12b{bottom:15.894133pt;}
.yd2{bottom:16.229333pt;}
.yb5{bottom:16.660800pt;}
.yb3{bottom:17.354133pt;}
.ye7{bottom:17.368667pt;}
.yec{bottom:17.915200pt;}
.y9c{bottom:19.255867pt;}
.y13e{bottom:19.256000pt;}
.y116{bottom:19.256933pt;}
.yea{bottom:19.715200pt;}
.y99{bottom:19.949333pt;}
.yba{bottom:20.940800pt;}
.yee{bottom:20.955200pt;}
.y9b{bottom:21.655867pt;}
.y13d{bottom:21.656000pt;}
.y115{bottom:21.656933pt;}
.y12d{bottom:23.347467pt;}
.ycf{bottom:30.922667pt;}
.ycd{bottom:34.482667pt;}
.y3f{bottom:49.653200pt;}
.y1{bottom:49.653333pt;}
.y133{bottom:94.738667pt;}
.y136{bottom:94.739067pt;}
.y3d{bottom:95.629467pt;}
.y199{bottom:96.000000pt;}
.y14{bottom:96.704000pt;}
.y239{bottom:96.706667pt;}
.y2a7{bottom:96.714667pt;}
.y202{bottom:96.736667pt;}
.y1e5{bottom:96.790533pt;}
.y18a{bottom:96.814133pt;}
.y174{bottom:96.836000pt;}
.y132{bottom:97.002133pt;}
.y137{bottom:97.007067pt;}
.y26e{bottom:97.048000pt;}
.y73{bottom:97.144000pt;}
.y198{bottom:109.333333pt;}
.y13{bottom:110.037333pt;}
.y2a6{bottom:110.048000pt;}
.y3c{bottom:111.625467pt;}
.y201{bottom:112.732667pt;}
.y1e4{bottom:112.786533pt;}
.y189{bottom:112.810133pt;}
.y173{bottom:112.832000pt;}
.y26d{bottom:113.128000pt;}
.y72{bottom:113.656000pt;}
.y197{bottom:122.666667pt;}
.y2a5{bottom:123.381333pt;}
.y12{bottom:126.037333pt;}
.y12a{bottom:126.461333pt;}
.y131{bottom:126.462133pt;}
.y129{bottom:126.480933pt;}
.y3b{bottom:127.621467pt;}
.y200{bottom:128.728667pt;}
.y1e3{bottom:128.782533pt;}
.y188{bottom:128.806133pt;}
.y172{bottom:128.828000pt;}
.y26c{bottom:129.208000pt;}
.y12e{bottom:129.688800pt;}
.y71{bottom:130.168000pt;}
.y2a4{bottom:136.714667pt;}
.y11{bottom:140.704000pt;}
.y12c{bottom:141.022133pt;}
.y3a{bottom:143.617467pt;}
.y1b8{bottom:144.463333pt;}
.y1ff{bottom:144.724667pt;}
.y1e2{bottom:144.778533pt;}
.y187{bottom:144.802133pt;}
.y171{bottom:144.824000pt;}
.y26b{bottom:145.288000pt;}
.y70{bottom:146.680000pt;}
.y2a3{bottom:150.048000pt;}
.y10{bottom:155.370667pt;}
.y39{bottom:159.613467pt;}
.y1b7{bottom:160.459333pt;}
.y1fe{bottom:160.720667pt;}
.y1e1{bottom:160.774533pt;}
.y186{bottom:160.798133pt;}
.y170{bottom:160.820000pt;}
.y26a{bottom:161.368000pt;}
.y196{bottom:162.136000pt;}
.y6f{bottom:163.192000pt;}
.y2a2{bottom:163.381333pt;}
.y128{bottom:167.628933pt;}
.yf{bottom:170.037333pt;}
.y38{bottom:175.609467pt;}
.y1b6{bottom:176.455333pt;}
.y2a1{bottom:176.714667pt;}
.y1fd{bottom:176.716667pt;}
.y1e0{bottom:176.770533pt;}
.y185{bottom:176.794133pt;}
.y16f{bottom:176.816000pt;}
.y269{bottom:177.448000pt;}
.y195{bottom:178.648000pt;}
.y6e{bottom:179.704000pt;}
.y127{bottom:183.624933pt;}
.ye{bottom:184.704000pt;}
.y2a0{bottom:190.048000pt;}
.y1b2{bottom:191.118667pt;}
.y1b4{bottom:191.119333pt;}
.y37{bottom:191.605467pt;}
.y1b5{bottom:192.451333pt;}
.y1b1{bottom:192.464667pt;}
.y1fc{bottom:192.712667pt;}
.y1df{bottom:192.770533pt;}
.y184{bottom:192.790133pt;}
.y16e{bottom:192.812000pt;}
.y268{bottom:193.528000pt;}
.y194{bottom:195.160000pt;}
.y6d{bottom:196.216000pt;}
.y126{bottom:199.620933pt;}
.y29f{bottom:203.381333pt;}
.yd{bottom:207.370667pt;}
.y36{bottom:207.601467pt;}
.y1b0{bottom:208.460667pt;}
.y1fb{bottom:208.708667pt;}
.y183{bottom:208.786133pt;}
.y16d{bottom:208.808000pt;}
.y267{bottom:209.608000pt;}
.y193{bottom:211.672000pt;}
.y6c{bottom:212.728000pt;}
.y125{bottom:215.616933pt;}
.y29e{bottom:216.714667pt;}
.yc{bottom:222.037333pt;}
.y35{bottom:223.597467pt;}
.y1af{bottom:224.456667pt;}
.y1fa{bottom:224.708667pt;}
.y182{bottom:224.782133pt;}
.y16c{bottom:224.804000pt;}
.y266{bottom:225.688000pt;}
.y192{bottom:228.184000pt;}
.y6b{bottom:229.240000pt;}
.y29d{bottom:230.048000pt;}
.y124{bottom:231.612933pt;}
.yb{bottom:236.704000pt;}
.y1de{bottom:238.549333pt;}
.y34{bottom:239.593467pt;}
.y1ae{bottom:240.495333pt;}
.y181{bottom:240.778133pt;}
.y16b{bottom:240.800000pt;}
.y265{bottom:241.768000pt;}
.y29c{bottom:243.381333pt;}
.y191{bottom:244.696000pt;}
.y6a{bottom:245.752000pt;}
.y123{bottom:247.608933pt;}
.ya{bottom:251.370667pt;}
.y1dd{bottom:254.545333pt;}
.y33{bottom:255.589467pt;}
.y1ad{bottom:256.491333pt;}
.y29b{bottom:256.714667pt;}
.y180{bottom:256.774133pt;}
.y16a{bottom:256.796000pt;}
.y264{bottom:257.848000pt;}
.y114{bottom:258.020000pt;}
.y11a{bottom:258.020933pt;}
.y190{bottom:261.192000pt;}
.y69{bottom:262.264000pt;}
.y1f9{bottom:264.114000pt;}
.y9{bottom:266.037333pt;}
.y11d{bottom:266.554267pt;}
.y11c{bottom:266.554667pt;}
.y121{bottom:268.020933pt;}
.y11f{bottom:268.021333pt;}
.y118{bottom:268.316933pt;}
.y122{bottom:269.616933pt;}
.y11b{bottom:269.624933pt;}
.y11e{bottom:269.626267pt;}
.y113{bottom:269.630533pt;}
.y29a{bottom:270.048000pt;}
.y1dc{bottom:270.541333pt;}
.y32{bottom:271.585467pt;}
.y1ac{bottom:272.487333pt;}
.y17f{bottom:272.770133pt;}
.y169{bottom:272.792000pt;}
.y2f6{bottom:272.888133pt;}
.y263{bottom:273.928000pt;}
.y18f{bottom:277.704000pt;}
.y68{bottom:278.776000pt;}
.y1f8{bottom:280.110000pt;}
.y8{bottom:280.704000pt;}
.y299{bottom:283.381333pt;}
.y1db{bottom:286.537333pt;}
.y31{bottom:287.581467pt;}
.y1ab{bottom:288.483333pt;}
.y17e{bottom:288.766133pt;}
.y168{bottom:288.788000pt;}
.y2f5{bottom:288.884133pt;}
.y112{bottom:289.982533pt;}
.y262{bottom:290.008000pt;}
.y18e{bottom:294.216000pt;}
.y67{bottom:295.288000pt;}
.y7{bottom:295.370667pt;}
.y1f7{bottom:296.106000pt;}
.y298{bottom:296.714667pt;}
.y1da{bottom:302.533333pt;}
.y30{bottom:303.577467pt;}
.y1aa{bottom:304.479333pt;}
.y17d{bottom:304.762133pt;}
.y167{bottom:304.784000pt;}
.y2f4{bottom:304.880133pt;}
.y261{bottom:306.088000pt;}
.y111{bottom:307.322533pt;}
.y6{bottom:310.037333pt;}
.y297{bottom:310.048000pt;}
.y18d{bottom:310.728000pt;}
.y1f6{bottom:312.102000pt;}
.y66{bottom:313.128000pt;}
.y1d9{bottom:318.529333pt;}
.y2f{bottom:319.573467pt;}
.y1a9{bottom:320.475333pt;}
.y17c{bottom:320.758133pt;}
.y166{bottom:320.780000pt;}
.y260{bottom:322.168000pt;}
.y110{bottom:323.318533pt;}
.y296{bottom:323.381333pt;}
.y5{bottom:324.708267pt;}
.y1f5{bottom:328.098000pt;}
.y18c{bottom:328.568000pt;}
.y1d8{bottom:334.525333pt;}
.y2e{bottom:335.569467pt;}
.y1a8{bottom:336.471333pt;}
.y295{bottom:336.714667pt;}
.y17b{bottom:336.754133pt;}
.y165{bottom:336.776000pt;}
.y2f3{bottom:336.880133pt;}
.y25f{bottom:338.248000pt;}
.y65{bottom:338.968000pt;}
.y1bf{bottom:339.431333pt;}
.y1f4{bottom:344.094000pt;}
.y4{bottom:344.708267pt;}
.y238{bottom:348.968000pt;}
.y294{bottom:350.048000pt;}
.y2f2{bottom:350.213467pt;}
.y1d7{bottom:350.521333pt;}
.y10f{bottom:351.086533pt;}
.y10c{bottom:351.086667pt;}
.y10b{bottom:351.108267pt;}
.y2d{bottom:351.565467pt;}
.y1a7{bottom:352.467333pt;}
.y17a{bottom:352.750133pt;}
.y164{bottom:352.772000pt;}
.y25e{bottom:354.328000pt;}
.y3{bottom:359.374933pt;}
.y1f3{bottom:360.090000pt;}
.y293{bottom:363.381333pt;}
.y2f1{bottom:363.546800pt;}
.y237{bottom:364.964000pt;}
.y1d4{bottom:365.185333pt;}
.y1d6{bottom:366.517333pt;}
.y1d3{bottom:366.550667pt;}
.y2c{bottom:367.561467pt;}
.y1a6{bottom:368.463333pt;}
.y179{bottom:368.746133pt;}
.y163{bottom:368.768000pt;}
.y25d{bottom:370.408000pt;}
.y1f2{bottom:376.086000pt;}
.y292{bottom:376.714667pt;}
.y2f0{bottom:376.880133pt;}
.y236{bottom:380.960000pt;}
.y64{bottom:381.162667pt;}
.y1d2{bottom:382.546667pt;}
.y2b{bottom:383.557467pt;}
.y10a{bottom:384.312267pt;}
.y1a5{bottom:384.459333pt;}
.y178{bottom:384.742133pt;}
.y162{bottom:384.764000pt;}
.y25c{bottom:386.488000pt;}
.y291{bottom:390.048000pt;}
.y1f1{bottom:392.082000pt;}
.y235{bottom:396.956000pt;}
.y63{bottom:397.674667pt;}
.y2ef{bottom:398.213467pt;}
.y1d1{bottom:398.542667pt;}
.y2a{bottom:399.553467pt;}
.y109{bottom:400.308267pt;}
.y1a4{bottom:400.455333pt;}
.y177{bottom:400.738133pt;}
.y161{bottom:400.760000pt;}
.y25b{bottom:402.568000pt;}
.y290{bottom:403.381333pt;}
.y1f0{bottom:408.078000pt;}
.y234{bottom:412.952000pt;}
.y62{bottom:414.186667pt;}
.y1d0{bottom:414.538667pt;}
.y29{bottom:415.549467pt;}
.y1a3{bottom:416.451333pt;}
.y28f{bottom:416.714667pt;}
.y176{bottom:416.734133pt;}
.y160{bottom:416.756000pt;}
.y108{bottom:417.648267pt;}
.y25a{bottom:418.648000pt;}
.y1ef{bottom:424.074000pt;}
.y233{bottom:428.948000pt;}
.y28e{bottom:430.048000pt;}
.y1cf{bottom:430.534667pt;}
.y61{bottom:430.698667pt;}
.y2ee{bottom:431.033467pt;}
.y105{bottom:431.508000pt;}
.y106{bottom:431.508267pt;}
.y28{bottom:431.545467pt;}
.y1a2{bottom:432.447333pt;}
.y175{bottom:432.730133pt;}
.y15f{bottom:432.752000pt;}
.y107{bottom:433.644267pt;}
.y104{bottom:433.652267pt;}
.y259{bottom:434.728000pt;}
.y1ee{bottom:440.070000pt;}
.y2d0{bottom:443.269333pt;}
.y28d{bottom:443.381333pt;}
.y232{bottom:444.944000pt;}
.y1ce{bottom:446.530667pt;}
.y2ed{bottom:447.029467pt;}
.y60{bottom:447.210667pt;}
.y27{bottom:447.541467pt;}
.y1a1{bottom:448.443333pt;}
.y103{bottom:449.648267pt;}
.y15e{bottom:450.085333pt;}
.y258{bottom:450.808000pt;}
.y1ed{bottom:456.066000pt;}
.y2cf{bottom:456.602667pt;}
.y28c{bottom:456.714667pt;}
.y231{bottom:460.940000pt;}
.y1cd{bottom:462.526667pt;}
.yf6{bottom:462.574667pt;}
.yf8{bottom:462.574933pt;}
.y2ec{bottom:463.025467pt;}
.yfe{bottom:463.508000pt;}
.y101{bottom:463.508267pt;}
.y26{bottom:463.537467pt;}
.y5f{bottom:463.722667pt;}
.yfb{bottom:464.308267pt;}
.yfa{bottom:464.309333pt;}
.y1a0{bottom:464.439333pt;}
.yfc{bottom:465.640267pt;}
.yf5{bottom:465.642000pt;}
.y102{bottom:465.644267pt;}
.yf9{bottom:465.646933pt;}
.y257{bottom:466.888000pt;}
.y2ce{bottom:469.936000pt;}
.y28b{bottom:470.048000pt;}
.y1ec{bottom:472.062000pt;}
.y230{bottom:476.936000pt;}
.y1cc{bottom:478.522667pt;}
.y2eb{bottom:479.021467pt;}
.y25{bottom:479.533467pt;}
.y18b{bottom:480.122133pt;}
.y5e{bottom:480.234667pt;}
.y19f{bottom:480.435333pt;}
.y256{bottom:482.968000pt;}
.y2cd{bottom:483.269333pt;}
.y28a{bottom:483.381333pt;}
.y1eb{bottom:488.058000pt;}
.ye6{bottom:489.689333pt;}
.yf4{bottom:489.690000pt;}
.ye5{bottom:489.694267pt;}
.y22f{bottom:492.932000pt;}
.y15d{bottom:494.106667pt;}
.y1cb{bottom:494.518667pt;}
.yf3{bottom:494.964533pt;}
.y2ea{bottom:495.017467pt;}
.y24{bottom:495.533467pt;}
.y19e{bottom:496.431333pt;}
.y2cc{bottom:496.602667pt;}
.y289{bottom:496.714667pt;}
.y5d{bottom:496.746667pt;}
.ye8{bottom:497.391333pt;}
.y255{bottom:499.048000pt;}
.yed{bottom:499.271200pt;}
.yeb{bottom:501.071200pt;}
.yef{bottom:502.297867pt;}
.y1ea{bottom:504.054000pt;}
.ye9{bottom:504.271200pt;}
.y22e{bottom:508.928000pt;}
.y2cb{bottom:509.936000pt;}
.y288{bottom:510.048000pt;}
.y15c{bottom:510.102667pt;}
.y2e9{bottom:511.013467pt;}
.y1ca{bottom:511.852000pt;}
.y19d{bottom:512.943333pt;}
.y5c{bottom:513.258667pt;}
.y254{bottom:515.128000pt;}
.y1e9{bottom:520.050000pt;}
.y2ca{bottom:523.269333pt;}
.y287{bottom:523.381333pt;}
.y15b{bottom:526.098667pt;}
.y22d{bottom:526.261333pt;}
.y19c{bottom:529.455333pt;}
.y5b{bottom:529.770667pt;}
.ye4{bottom:531.022267pt;}
.y253{bottom:531.208000pt;}
.y1e8{bottom:536.046000pt;}
.y2c9{bottom:536.602667pt;}
.y286{bottom:536.714667pt;}
.y1c9{bottom:537.185333pt;}
.y15a{bottom:542.094667pt;}
.yda{bottom:542.879600pt;}
.yd6{bottom:542.880000pt;}
.y2e8{bottom:543.013467pt;}
.ye2{bottom:543.946267pt;}
.ye0{bottom:543.946667pt;}
.yde{bottom:545.679600pt;}
.ydc{bottom:545.680000pt;}
.y19b{bottom:545.967333pt;}
.y5a{bottom:546.282667pt;}
.ydb{bottom:547.007600pt;}
.ydf{bottom:547.011600pt;}
.yd5{bottom:547.014667pt;}
.ye3{bottom:547.018267pt;}
.y252{bottom:547.288000pt;}
.y2c8{bottom:549.936000pt;}
.y285{bottom:550.048000pt;}
.y311{bottom:551.777333pt;}
.y1e7{bottom:552.042000pt;}
.y2e7{bottom:556.346800pt;}
.y159{bottom:558.090667pt;}
.y19a{bottom:562.479333pt;}
.y59{bottom:562.794667pt;}
.y2c7{bottom:563.269333pt;}
.y251{bottom:563.368000pt;}
.y284{bottom:563.381333pt;}
.y22c{bottom:566.341333pt;}
.y310{bottom:569.174667pt;}
.y2e6{bottom:569.680133pt;}
.y158{bottom:574.086667pt;}
.y23{bottom:575.626800pt;}
.y2c6{bottom:576.602667pt;}
.y283{bottom:576.714667pt;}
.y1c8{bottom:577.175733pt;}
.yca{bottom:578.485600pt;}
.ycc{bottom:578.490667pt;}
.y58{bottom:579.306667pt;}
.y250{bottom:579.448000pt;}
.yd3{bottom:581.530932pt;}
.y22b{bottom:582.337333pt;}
.y2e5{bottom:583.013467pt;}
.yd1{bottom:584.480000pt;}
.y2c5{bottom:589.936000pt;}
.y282{bottom:590.048000pt;}
.y157{bottom:590.082667pt;}
.y30f{bottom:590.572000pt;}
.yd4{bottom:591.426667pt;}
.y22{bottom:591.658800pt;}
.ycb{bottom:592.933333pt;}
.y1c7{bottom:593.171733pt;}
.y24f{bottom:595.528000pt;}
.y57{bottom:595.818667pt;}
.y2e4{bottom:596.346800pt;}
.y22a{bottom:598.333333pt;}
.yd0{bottom:600.066667pt;}
.yce{bottom:602.733333pt;}
.y2c4{bottom:603.269333pt;}
.y281{bottom:603.381333pt;}
.y1be{bottom:603.551333pt;}
.y156{bottom:606.078667pt;}
.y21{bottom:607.654800pt;}
.y1c6{bottom:609.167733pt;}
.y2e3{bottom:609.680133pt;}
.y24e{bottom:611.608000pt;}
.y214{bottom:611.673467pt;}
.y30e{bottom:611.969333pt;}
.y56{bottom:612.330667pt;}
.y229{bottom:614.329333pt;}
.y2c3{bottom:616.602667pt;}
.y280{bottom:616.714667pt;}
.y155{bottom:622.074667pt;}
.y2e2{bottom:623.013467pt;}
.y20{bottom:623.650800pt;}
.y1c5{bottom:625.163733pt;}
.y24d{bottom:627.688000pt;}
.y55{bottom:628.842667pt;}
.y213{bottom:629.070800pt;}
.y2c2{bottom:629.936000pt;}
.y27f{bottom:630.048000pt;}
.y228{bottom:630.325333pt;}
.yc7{bottom:632.125333pt;}
.yc8{bottom:632.125600pt;}
.yc6{bottom:632.128267pt;}
.y30d{bottom:633.366667pt;}
.yc9{bottom:634.525600pt;}
.y2e1{bottom:636.346800pt;}
.y154{bottom:638.070667pt;}
.y1f{bottom:639.646800pt;}
.y1c4{bottom:641.159733pt;}
.y2c1{bottom:643.269333pt;}
.y27e{bottom:643.381333pt;}
.y24c{bottom:643.768000pt;}
.y54{bottom:645.354667pt;}
.y227{bottom:646.321333pt;}
.ybe{bottom:648.125333pt;}
.yc0{bottom:648.125600pt;}
.yc4{bottom:649.192267pt;}
.yc2{bottom:649.193333pt;}
.y212{bottom:650.468133pt;}
.ybd{bottom:650.520667pt;}
.yc5{bottom:650.524267pt;}
.yc1{bottom:650.525600pt;}
.y153{bottom:654.066667pt;}
.y30c{bottom:654.764000pt;}
.y1e{bottom:655.642800pt;}
.y2c0{bottom:656.602667pt;}
.y27d{bottom:656.714667pt;}
.y1c3{bottom:657.155733pt;}
.y2e0{bottom:657.680133pt;}
.y24b{bottom:659.848000pt;}
.y53{bottom:661.866667pt;}
.y226{bottom:662.317333pt;}
.y2bf{bottom:669.936000pt;}
.y27c{bottom:670.048000pt;}
.y152{bottom:670.062667pt;}
.y1d{bottom:671.638800pt;}
.y211{bottom:671.865467pt;}
.y1c2{bottom:673.151733pt;}
.yb1{bottom:674.518400pt;}
.ybc{bottom:674.520667pt;}
.yb2{bottom:674.521333pt;}
.y24a{bottom:675.928000pt;}
.y30b{bottom:676.161333pt;}
.y225{bottom:678.313333pt;}
.y52{bottom:678.378667pt;}
.yb6{bottom:678.568800pt;}
.yb9{bottom:679.782675pt;}
.yb4{bottom:682.222133pt;}
.y2be{bottom:683.269333pt;}
.y27b{bottom:683.381333pt;}
.y151{bottom:686.058667pt;}
.yb8{bottom:686.915467pt;}
.y1c{bottom:687.634800pt;}
.y1c1{bottom:689.147733pt;}
.y2df{bottom:691.838800pt;}
.y210{bottom:693.262800pt;}
.y224{bottom:694.309333pt;}
.y51{bottom:694.890667pt;}
.y2bd{bottom:696.602667pt;}
.y27a{bottom:696.714667pt;}
.y30a{bottom:697.558667pt;}
.y150{bottom:702.054667pt;}
.y1b{bottom:703.630800pt;}
.y1c0{bottom:705.143733pt;}
.y2de{bottom:706.502800pt;}
.y2bc{bottom:709.936000pt;}
.y279{bottom:710.048000pt;}
.y223{bottom:710.305333pt;}
.y50{bottom:711.402667pt;}
.y20f{bottom:714.660133pt;}
.yb0{bottom:714.670400pt;}
.y14f{bottom:718.050667pt;}
.y249{bottom:718.314667pt;}
.y309{bottom:718.956000pt;}
.y1a{bottom:719.626800pt;}
.y2dd{bottom:721.166800pt;}
.y2bb{bottom:723.269333pt;}
.y278{bottom:726.048000pt;}
.y222{bottom:726.301333pt;}
.y4f{bottom:727.914667pt;}
.yaf{bottom:730.666400pt;}
.y14e{bottom:734.046667pt;}
.y248{bottom:734.394667pt;}
.y2dc{bottom:735.830800pt;}
.y20e{bottom:736.057467pt;}
.y2ba{bottom:736.602667pt;}
.y308{bottom:740.353333pt;}
.y221{bottom:742.297333pt;}
.yad{bottom:742.534400pt;}
.yab{bottom:742.534667pt;}
.y4e{bottom:744.426667pt;}
.yac{bottom:745.336933pt;}
.yae{bottom:746.662400pt;}
.yaa{bottom:746.670400pt;}
.y2b9{bottom:749.936000pt;}
.y14d{bottom:750.042667pt;}
.y247{bottom:750.474667pt;}
.y2db{bottom:750.494800pt;}
.y20d{bottom:757.454800pt;}
.y220{bottom:758.293333pt;}
.y1e6{bottom:760.602400pt;}
.y4d{bottom:760.938667pt;}
.y307{bottom:761.750667pt;}
.ya9{bottom:762.666400pt;}
.y2b8{bottom:763.269333pt;}
.y2da{bottom:765.158800pt;}
.y14c{bottom:766.038667pt;}
.y246{bottom:766.554667pt;}
.y277{bottom:767.594667pt;}
.y21f{bottom:774.289333pt;}
.ya7{bottom:774.534400pt;}
.ya3{bottom:774.534667pt;}
.y2b7{bottom:776.602667pt;}
.ya1{bottom:777.334267pt;}
.y9f{bottom:777.334667pt;}
.ya5{bottom:777.336933pt;}
.y4c{bottom:777.450667pt;}
.ya8{bottom:778.662400pt;}
.ya2{bottom:778.666267pt;}
.y9e{bottom:778.673333pt;}
.y20c{bottom:778.852133pt;}
.y2d9{bottom:779.822800pt;}
.y19{bottom:780.294800pt;}
.y14b{bottom:782.034667pt;}
.y245{bottom:782.634667pt;}
.y306{bottom:783.148000pt;}
.y276{bottom:783.594667pt;}
.y2b6{bottom:789.936000pt;}
.y21e{bottom:790.285333pt;}
.y4b{bottom:793.962667pt;}
.y14a{bottom:798.030667pt;}
.y244{bottom:798.714667pt;}
.y20b{bottom:800.249467pt;}
.y2d8{bottom:802.490800pt;}
.y98{bottom:802.553333pt;}
.y97{bottom:802.557467pt;}
.y18{bottom:803.030800pt;}
.y2b5{bottom:803.269333pt;}
.y305{bottom:804.545333pt;}
.y21d{bottom:806.281333pt;}
.y4a{bottom:810.474667pt;}
.y9a{bottom:812.849333pt;}
.y243{bottom:814.794667pt;}
.y275{bottom:815.598667pt;}
.y2b4{bottom:816.602667pt;}
.y149{bottom:816.978667pt;}
.y2d7{bottom:817.154800pt;}
.y20a{bottom:821.646800pt;}
.y21c{bottom:822.277333pt;}
.y304{bottom:825.942667pt;}
.y17{bottom:826.960133pt;}
.y49{bottom:826.986667pt;}
.y2b3{bottom:829.936000pt;}
.y242{bottom:830.874667pt;}
.y274{bottom:831.594667pt;}
.y2d6{bottom:831.818800pt;}
.y148{bottom:832.974667pt;}
.y21b{bottom:838.273333pt;}
.y209{bottom:843.044133pt;}
.y2b2{bottom:843.269333pt;}
.y48{bottom:843.498667pt;}
.y2d5{bottom:846.482800pt;}
.y241{bottom:846.954667pt;}
.y303{bottom:847.340000pt;}
.y96{bottom:847.593467pt;}
.y273{bottom:847.594667pt;}
.y147{bottom:848.970667pt;}
.y21a{bottom:854.269333pt;}
.y2b1{bottom:856.602667pt;}
.y16{bottom:856.968133pt;}
.y92{bottom:859.461333pt;}
.y94{bottom:859.461467pt;}
.y47{bottom:860.010667pt;}
.y8b{bottom:860.528000pt;}
.y8d{bottom:860.528133pt;}
.y2d4{bottom:861.146800pt;}
.y8f{bottom:862.261333pt;}
.y91{bottom:862.261467pt;}
.y93{bottom:862.264267pt;}
.y240{bottom:863.034667pt;}
.y95{bottom:863.589467pt;}
.y8a{bottom:863.593467pt;}
.y8e{bottom:863.600133pt;}
.y208{bottom:864.441467pt;}
.y146{bottom:864.966667pt;}
.y2fb{bottom:865.836000pt;}
.y2ff{bottom:865.969333pt;}
.y2fa{bottom:868.902667pt;}
.y2b0{bottom:869.936000pt;}
.y219{bottom:870.265333pt;}
.y1bd{bottom:872.274933pt;}
.y84{bottom:875.461333pt;}
.y88{bottom:875.461467pt;}
.y46{bottom:876.522667pt;}
.y86{bottom:878.264267pt;}
.y23f{bottom:879.114667pt;}
.y89{bottom:879.589467pt;}
.y83{bottom:879.593467pt;}
.y272{bottom:879.602667pt;}
.y145{bottom:880.962667pt;}
.y2af{bottom:883.269333pt;}
.y2d3{bottom:885.146800pt;}
.y207{bottom:885.838800pt;}
.y218{bottom:886.261333pt;}
.y7b{bottom:891.461333pt;}
.y81{bottom:891.461467pt;}
.y15{bottom:891.626800pt;}
.y1bc{bottom:892.338800pt;}
.y45{bottom:893.034667pt;}
.y7d{bottom:894.280267pt;}
.y23e{bottom:895.194667pt;}
.y82{bottom:895.589467pt;}
.y271{bottom:895.598667pt;}
.y7f{bottom:895.600267pt;}
.y7a{bottom:895.614800pt;}
.y2ae{bottom:896.602667pt;}
.y144{bottom:896.958667pt;}
.y217{bottom:903.594667pt;}
.y206{bottom:907.236133pt;}
.y44{bottom:909.546667pt;}
.y1bb{bottom:909.736133pt;}
.y2ad{bottom:909.930533pt;}
.y23d{bottom:911.274667pt;}
.y270{bottom:911.594667pt;}
.y79{bottom:911.610800pt;}
.y143{bottom:912.954667pt;}
.y2d2{bottom:913.146800pt;}
.y2f9{bottom:916.226667pt;}
.y2ac{bottom:923.263867pt;}
.y43{bottom:926.058667pt;}
.y23c{bottom:927.354667pt;}
.y26f{bottom:927.594667pt;}
.y78{bottom:927.606800pt;}
.y205{bottom:928.633467pt;}
.y142{bottom:928.950667pt;}
.y1ba{bottom:931.129467pt;}
.y2ab{bottom:936.597200pt;}
.y2f8{bottom:938.886667pt;}
.y42{bottom:942.570667pt;}
.y23b{bottom:943.434667pt;}
.y216{bottom:943.602667pt;}
.y77{bottom:943.602800pt;}
.y2aa{bottom:949.930533pt;}
.y204{bottom:950.030800pt;}
.y1b9{bottom:952.697467pt;}
.y139{bottom:956.970667pt;}
.y41{bottom:959.082667pt;}
.y23a{bottom:959.514667pt;}
.y215{bottom:959.598667pt;}
.y76{bottom:959.598800pt;}
.y2f7{bottom:961.546667pt;}
.y2d1{bottom:962.480133pt;}
.y13c{bottom:963.213333pt;}
.y2a9{bottom:963.263867pt;}
.y13b{bottom:965.933467pt;}
.y141{bottom:967.267120pt;}
.y140{bottom:967.386667pt;}
.y40{bottom:975.594667pt;}
.y75{bottom:975.594800pt;}
.y203{bottom:975.616667pt;}
.y2a8{bottom:976.597200pt;}
.y2{bottom:981.625600pt;}
.y3e{bottom:996.912133pt;}
.y138{bottom:996.912267pt;}
.y74{bottom:996.912800pt;}
.h24{height:1.822539pt;}
.h1b{height:6.528000pt;}
.h21{height:7.704000pt;}
.h39{height:8.424000pt;}
.h14{height:8.664000pt;}
.h16{height:9.360000pt;}
.h4c{height:9.696000pt;}
.h3f{height:9.816000pt;}
.h2d{height:11.448000pt;}
.h1f{height:13.006677pt;}
.h45{height:13.032000pt;}
.h3a{height:13.488000pt;}
.h13{height:14.304000pt;}
.h26{height:14.850021pt;}
.h54{height:15.024000pt;}
.h51{height:15.144000pt;}
.h3d{height:15.864000pt;}
.hb{height:16.200000pt;}
.h2b{height:16.920000pt;}
.hd{height:18.144123pt;}
.h31{height:20.791819pt;}
.h1d{height:21.456000pt;}
.h30{height:22.632000pt;}
.h41{height:23.808000pt;}
.h33{height:25.140683pt;}
.h34{height:25.143595pt;}
.h2a{height:25.178752pt;}
.h4{height:25.374720pt;}
.h1a{height:25.403957pt;}
.h25{height:25.478347pt;}
.h32{height:26.392352pt;}
.h18{height:27.696000pt;}
.h46{height:27.973920pt;}
.h42{height:30.476928pt;}
.h19{height:32.325419pt;}
.h11{height:32.660149pt;}
.h15{height:32.755787pt;}
.h1{height:32.768000pt;}
.h4e{height:32.768533pt;}
.h4d{height:32.784000pt;}
.h4f{height:32.789867pt;}
.h49{height:32.926187pt;}
.h48{height:33.186155pt;}
.h53{height:33.322667pt;}
.h2e{height:33.568704pt;}
.h10{height:33.759979pt;}
.h23{height:34.944000pt;}
.h28{height:35.490021pt;}
.h12{height:35.577088pt;}
.h7{height:36.864000pt;}
.h27{height:36.888907pt;}
.h43{height:36.915872pt;}
.hf{height:37.605419pt;}
.he{height:37.940149pt;}
.h29{height:38.018512pt;}
.h4b{height:40.107093pt;}
.h4a{height:40.341760pt;}
.h3c{height:41.129120pt;}
.h36{height:41.697952pt;}
.ha{height:42.864000pt;}
.h5{height:43.008000pt;}
.h9{height:43.244267pt;}
.h3b{height:45.463595pt;}
.h3{height:46.990720pt;}
.h1e{height:47.273483pt;}
.h52{height:48.153397pt;}
.h6{height:49.152000pt;}
.h37{height:49.922688pt;}
.h47{height:50.050261pt;}
.h3e{height:50.448000pt;}
.h8{height:57.344000pt;}
.h50{height:61.440000pt;}
.h20{height:61.632000pt;}
.h2f{height:63.448416pt;}
.h1c{height:63.475083pt;}
.h38{height:63.984000pt;}
.h22{height:64.343595pt;}
.h44{height:66.336000pt;}
.h17{height:73.827616pt;}
.hc{height:74.262389pt;}
.h2c{height:82.606443pt;}
.h2{height:83.968000pt;}
.h40{height:89.720373pt;}
.h35{height:90.457621pt;}
.h0{height:1056.000000pt;}
.w3{width:9.408000pt;}
.w6{width:11.112000pt;}
.w4{width:11.256000pt;}
.wc{width:12.384000pt;}
.w10{width:12.672000pt;}
.w1a{width:13.416000pt;}
.w1c{width:13.680000pt;}
.w18{width:13.752000pt;}
.w1b{width:13.776000pt;}
.w16{width:14.136000pt;}
.we{width:14.208000pt;}
.w13{width:14.232000pt;}
.w9{width:14.904000pt;}
.w12{width:20.640000pt;}
.wb{width:26.736000pt;}
.w19{width:36.864000pt;}
.w2{width:40.944000pt;}
.w7{width:43.896000pt;}
.wf{width:47.518667pt;}
.w17{width:66.000000pt;}
.w14{width:80.856000pt;}
.w15{width:88.104000pt;}
.wa{width:94.392000pt;}
.w1{width:104.520000pt;}
.w11{width:154.608000pt;}
.w8{width:170.232000pt;}
.w5{width:246.576000pt;}
.wd{width:340.440000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:1.759733pt;}
.x70{left:3.322267pt;}
.x4f{left:7.170533pt;}
.x13{left:10.287200pt;}
.x6e{left:11.423333pt;}
.x2d{left:13.247600pt;}
.x72{left:18.282267pt;}
.x8e{left:19.233461pt;}
.x6b{left:36.332533pt;}
.x9{left:37.386400pt;}
.x2f{left:39.567600pt;}
.x82{left:40.895600pt;}
.x79{left:46.530000pt;}
.x1{left:49.344000pt;}
.xb{left:53.559733pt;}
.x49{left:55.450267pt;}
.x20{left:57.260933pt;}
.x21{left:58.340933pt;}
.x1f{left:60.647600pt;}
.x7a{left:68.236667pt;}
.x47{left:75.170267pt;}
.xd{left:78.959733pt;}
.x4b{left:80.436933pt;}
.x7c{left:82.476667pt;}
.x38{left:90.274267pt;}
.x23{left:93.754267pt;}
.xf{left:95.506400pt;}
.x3a{left:101.474267pt;}
.x5{left:110.332400pt;}
.x3b{left:117.514267pt;}
.x25{left:120.087600pt;}
.x3d{left:135.834267pt;}
.x28{left:138.780933pt;}
.x29{left:139.860933pt;}
.x27{left:142.167600pt;}
.x40{left:157.927600pt;}
.x5a{left:172.754133pt;}
.x5c{left:192.087467pt;}
.x5e{left:216.567467pt;}
.x3{left:224.733333pt;}
.x88{left:234.019333pt;}
.x15{left:239.713333pt;}
.x4{left:240.729333pt;}
.x60{left:242.767467pt;}
.x89{left:247.690667pt;}
.x16{left:249.120800pt;}
.x8a{left:261.022667pt;}
.x8b{left:263.690667pt;}
.x61{left:271.887467pt;}
.x4e{left:276.872000pt;}
.x2b{left:278.370667pt;}
.x6d{left:284.648267pt;}
.x2c{left:289.482800pt;}
.x68{left:290.990933pt;}
.x64{left:295.434133pt;}
.x50{left:303.607867pt;}
.x86{left:319.225333pt;}
.x66{left:321.634133pt;}
.x54{left:325.453333pt;}
.x87{left:330.337067pt;}
.x71{left:336.638267pt;}
.x73{left:342.315600pt;}
.x55{left:344.327467pt;}
.x2{left:345.829733pt;}
.x42{left:357.766667pt;}
.x8c{left:358.776000pt;}
.x1c{left:372.385333pt;}
.x56{left:374.060800pt;}
.x1d{left:388.312933pt;}
.x57{left:391.300800pt;}
.x51{left:394.817333pt;}
.x84{left:397.482667pt;}
.x8d{left:403.690667pt;}
.x7e{left:404.968000pt;}
.x52{left:406.073200pt;}
.x85{left:408.594667pt;}
.x34{left:410.557333pt;}
.x1e{left:418.046267pt;}
.x7f{left:419.104133pt;}
.x58{left:421.540800pt;}
.x35{left:429.431600pt;}
.x53{left:432.836000pt;}
.x8f{left:440.554667pt;}
.x22{left:444.672933pt;}
.x45{left:448.477333pt;}
.x44{left:450.020933pt;}
.x77{left:451.621333pt;}
.x90{left:454.357333pt;}
.x6{left:455.934667pt;}
.x36{left:459.164933pt;}
.x80{left:462.673333pt;}
.x91{left:467.773333pt;}
.x59{left:469.674133pt;}
.x24{left:471.779600pt;}
.x17{left:478.648000pt;}
.x48{left:479.967467pt;}
.x37{left:482.378267pt;}
.x11{left:483.650667pt;}
.x74{left:487.232000pt;}
.x12{left:489.391200pt;}
.x81{left:490.342267pt;}
.x8{left:491.467733pt;}
.x78{left:494.538000pt;}
.x7d{left:496.444667pt;}
.x26{left:500.152933pt;}
.x75{left:501.463867pt;}
.x39{left:504.964933pt;}
.x92{left:506.357333pt;}
.xa{left:507.654400pt;}
.x46{left:509.754267pt;}
.x43{left:513.045333pt;}
.x4a{left:515.020933pt;}
.x83{left:516.128933pt;}
.x5b{left:517.540800pt;}
.xc{left:518.521067pt;}
.x14{left:524.593867pt;}
.x2a{left:526.179600pt;}
.x76{left:527.326667pt;}
.x7b{left:530.484667pt;}
.x5d{left:531.474133pt;}
.x69{left:537.848000pt;}
.x3c{left:540.364933pt;}
.x4c{left:542.868933pt;}
.xe{left:545.241067pt;}
.x3f{left:546.390091pt;}
.x6a{left:550.232267pt;}
.x5f{left:554.300800pt;}
.x10{left:560.454400pt;}
.x3e{left:563.471600pt;}
.x93{left:568.133333pt;}
.x31{left:571.402667pt;}
.x6f{left:572.976667pt;}
.x32{left:577.144267pt;}
.x41{left:580.788933pt;}
.x62{left:589.034133pt;}
.x18{left:601.962667pt;}
.x19{left:607.704933pt;}
.x94{left:609.024000pt;}
.x63{left:610.327467pt;}
.x33{left:615.298800pt;}
.x6c{left:624.337867pt;}
.x65{left:633.167467pt;}
.x1a{left:636.078267pt;}
.x2e{left:639.063600pt;}
.x1b{left:642.907600pt;}
.x30{left:645.898267pt;}
.x95{left:657.024000pt;}
.x67{left:665.892800pt;}
.x96{left:670.704000pt;}
.x97{left:713.024000pt;}
.x98{left:749.888000pt;}
.x4d{left:753.312933pt;}
}




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