
    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_8cd9bfcea1df6d0dcb458aa0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.850586;font-style:normal;font-weight: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_e717807664f501302abfa101.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b02de523515cc6f82caac1a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909180;font-style:normal;font-weight: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_e6598e516f6ba62ab28172ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2ebaebfe15eb72befcca215c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915039;font-style:normal;font-weight: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_fe8ea1113ed65e69717c5c10.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_08d55d107f104a423ba59fb6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947266;font-style:normal;font-weight: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_e4af26bb06a19fcc68687a5c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692871;font-style:normal;font-weight: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_6ade3ef1b5fe16a63e0ab5ef.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937012;font-style:normal;font-weight: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_494c17f8ceb32b19fd9721f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901855;font-style:normal;font-weight: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_96eaa328b83ca92bf8a8d32e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.904297;font-style:normal;font-weight: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_eac789f009c4fa2a3da8ad36.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895996;font-style:normal;font-weight: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_a546d1ae482b065ee15a1b0d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939941;font-style:normal;font-weight: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_69bb36c39eaef540517b18de.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.844727;font-style:normal;font-weight: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_4036762857f52217c447b6b1.woff2')format("woff");}.fff{font-family:fff;line-height:0.850586;font-style:normal;font-weight: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_11feb5bc6d37433eeb9bf595.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.941406;font-style:normal;font-weight: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_8e178463ec268d79d0a3e2ca.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c85b78029e3c3e9932a841ac.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.926270;font-style:normal;font-weight: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_0f61926778f0a0c343756c6b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7b49c7291f28607520f0b26c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.947266;font-style:normal;font-weight: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_5adfb44dd49e08b730f33a63.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.926270;font-style:normal;font-weight: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_99fdca9b28ae18e834c2ef31.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.861328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_7276445b7829fed0e5c4b325.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.850586;font-style:normal;font-weight: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_3ea89cfc49f249c7e37bf1e0.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.861816;font-style:normal;font-weight: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_b0086a264cf6785b1f36665c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.675293;font-style:normal;font-weight: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_158246d35fdbf9ad42fccd48.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_607d9eed3f3070d2f34c25be.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_a1672c0c35d5242ed450b1ef.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_d93d58c028d0549278903984.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.735000;font-style:normal;font-weight: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_18126c5ff127ed6f6e50ae4d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_32e4f5f5fb01c7e30c73bcd9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.733000;font-style:normal;font-weight: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_d28c070a6f933969c8db5d27.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.001000;font-style:normal;font-weight: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_607d9eed3f3070d2f34c25be.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_a1672c0c35d5242ed450b1ef.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_d93d58c028d0549278903984.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.735000;font-style:normal;font-weight: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_18126c5ff127ed6f6e50ae4d.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_32e4f5f5fb01c7e30c73bcd9.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.733000;font-style:normal;font-weight: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_d28c070a6f933969c8db5d27.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.001000;font-style:normal;font-weight: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_607d9eed3f3070d2f34c25be.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_a1672c0c35d5242ed450b1ef.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_d93d58c028d0549278903984.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.735000;font-style:normal;font-weight: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_18126c5ff127ed6f6e50ae4d.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_32e4f5f5fb01c7e30c73bcd9.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.733000;font-style:normal;font-weight: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_d28c070a6f933969c8db5d27.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.001000;font-style:normal;font-weight: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_607d9eed3f3070d2f34c25be.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_a1672c0c35d5242ed450b1ef.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_d93d58c028d0549278903984.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.735000;font-style:normal;font-weight: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_18126c5ff127ed6f6e50ae4d.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_32e4f5f5fb01c7e30c73bcd9.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.733000;font-style:normal;font-weight: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_d28c070a6f933969c8db5d27.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.001000;font-style:normal;font-weight: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_b2b1ec3488f929dce2dabb25.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.857910;font-style:normal;font-weight: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_3ac0f7858c198f78f97a3e70.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_925111b7100ef9bb87c432fe.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_a219dc2997ecc40c16f93211.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_864bec52eaab1c7ca21bfb10.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.735000;font-style:normal;font-weight: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_6c35d6b022dbb0b68a603241.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_8bbbad089aa344b48952503b.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.733000;font-style:normal;font-weight: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_27c38202d94850c24816bbfb.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.001000;font-style:normal;font-weight: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_925111b7100ef9bb87c432fe.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_a219dc2997ecc40c16f93211.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_864bec52eaab1c7ca21bfb10.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.735000;font-style:normal;font-weight: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_6c35d6b022dbb0b68a603241.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_8bbbad089aa344b48952503b.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.733000;font-style:normal;font-weight: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_27c38202d94850c24816bbfb.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.001000;font-style:normal;font-weight: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_925111b7100ef9bb87c432fe.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_a219dc2997ecc40c16f93211.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_864bec52eaab1c7ca21bfb10.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.735000;font-style:normal;font-weight: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_6c35d6b022dbb0b68a603241.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_8bbbad089aa344b48952503b.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.733000;font-style:normal;font-weight: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_27c38202d94850c24816bbfb.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.001000;font-style:normal;font-weight: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_925111b7100ef9bb87c432fe.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_a219dc2997ecc40c16f93211.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_864bec52eaab1c7ca21bfb10.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.735000;font-style:normal;font-weight: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_6c35d6b022dbb0b68a603241.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_8bbbad089aa344b48952503b.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.733000;font-style:normal;font-weight: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_27c38202d94850c24816bbfb.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.001000;font-style:normal;font-weight: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_78d16acda5d292e0b285e523.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.858398;font-style:normal;font-weight: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_aab77c09f5215c24ed230798.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_b12e188590e96f56ece7ddc4.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.934082;font-style:normal;font-weight: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_fc629cdb1af7c8ba68150d7d.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.714355;font-style:normal;font-weight: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_2850ab706001f8cb69f1e44e.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.699707;font-style:normal;font-weight: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_de91e4588642b0e4778b92e2.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.735000;font-style:normal;font-weight: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_6c35d6b022dbb0b68a603241.woff2')format("woff");}.ff53{font-family:ff53;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_73640b5371167a9b2e7104c3.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_27c38202d94850c24816bbfb.woff2')format("woff");}.ff55{font-family:ff55;line-height:1.001000;font-style:normal;font-weight: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_9f7f30c05294b0531da53ab6.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.733000;font-style:normal;font-weight: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_2d760ddd6e7eb12aeab6cfb5.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_b1786a0b6a72e4ed89af6fa4.woff2')format("woff");}.ff58{font-family:ff58;line-height:1.735000;font-style:normal;font-weight: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_1622af47f06987f17b30cddc.woff2')format("woff");}.ff59{font-family:ff59;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_a219dc2997ecc40c16f93211.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_3e1999dc1bc42af9cadbf763.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_efdd86863efbd73222853a4c.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_179c1e9b784cfbfcc655f497.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.855957;font-style:normal;font-weight: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_140ae86db5456530a2852208.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.895020;font-style:normal;font-weight: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_7932b86d9535c70ea23aa01a.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.947266;font-style:normal;font-weight: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_638d2282d4eb65891d2bbbdc.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.692383;font-style:normal;font-weight: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_3bb0a910b01c0cc4536e6fb9.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.675293;font-style:normal;font-weight: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_15ea2c6bac946e255d07ef51.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_12c585497dfb543192b76122.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.674316;font-style:normal;font-weight: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_83dca8e469fbccb4cdac2b16.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.692871;font-style:normal;font-weight: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_26df8361c3454f5bfc633c7e.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_20cdc06da84feb8778d27647.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.941406;font-style:normal;font-weight: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_ca84da782c60d23bb0aff071.woff2')format("woff");}.ff67{font-family:ff67;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_c5176716ea3ec2927408c521.woff2')format("woff");}.ff68{font-family:ff68;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url('chunks/assets/font_35e306e3574e82aaa6d570a1.woff2')format("woff");}.ff69{font-family:ff69;line-height:1.001000;font-style:normal;font-weight: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_d52323df0d8a68fcac682de5.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:1.735000;font-style:normal;font-weight: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_f1fb651cca890ccf99c609d1.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c;src:url('chunks/assets/font_9bd81dc30a0b32576c7e63ab.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:1.735000;font-style:normal;font-weight: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_9bf8bf5d2623fd544c64d63f.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:0.934570;font-style:normal;font-weight: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_c674434ed92dd4adf81fcb7f.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:0.706543;font-style:normal;font-weight: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_c0068d76cac20570f501f083.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md{transform:matrix(0.000000,-0.250036,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250036,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250036,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250808,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.250816,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250816,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250816,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.200316,-0.149578,0.149578,0.200316,0,0);-ms-transform:matrix(0.200316,-0.149578,0.149578,0.200316,0,0);-webkit-transform:matrix(0.200316,-0.149578,0.149578,0.200316,0,0);}
.me{transform:matrix(0.210613,-0.134692,0.134692,0.210613,0,0);-ms-transform:matrix(0.210613,-0.134692,0.134692,0.210613,0,0);-webkit-transform:matrix(0.210613,-0.134692,0.134692,0.210613,0,0);}
.mf{transform:matrix(0.249187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249187,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-60.480000px;}
.v1a{vertical-align:-43.200000px;}
.v6{vertical-align:-34.560060px;}
.v1e{vertical-align:-33.120000px;}
.vd{vertical-align:-28.800000px;}
.v12{vertical-align:-24.225330px;}
.v2{vertical-align:-23.040000px;}
.v1{vertical-align:-21.600000px;}
.v15{vertical-align:-18.720000px;}
.v11{vertical-align:-17.439577px;}
.v13{vertical-align:-14.534549px;}
.v14{vertical-align:-12.112503px;}
.v19{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:1.440000px;}
.v1d{vertical-align:8.640000px;}
.ve{vertical-align:11.520000px;}
.vb{vertical-align:15.397908px;}
.v16{vertical-align:18.720000px;}
.v17{vertical-align:21.600000px;}
.v3{vertical-align:23.040000px;}
.v1c{vertical-align:26.847639px;}
.v4{vertical-align:28.800000px;}
.v1f{vertical-align:33.120000px;}
.v7{vertical-align:34.560060px;}
.v9{vertical-align:51.840000px;}
.v1b{vertical-align:62.434815px;}
.v10{vertical-align:64.800000px;}
.va{vertical-align:71.617641px;}
.vc{vertical-align:75.018765px;}
.v5{vertical-align:84.960000px;}
.vf{vertical-align:87.840000px;}
.ls91{letter-spacing:-16.653600px;}
.ls48{letter-spacing:-15.681600px;}
.lsb0{letter-spacing:-9.698400px;}
.ls61{letter-spacing:-6.868800px;}
.ls4a{letter-spacing:-4.114800px;}
.lsa7{letter-spacing:-3.337200px;}
.ls6{letter-spacing:-3.307199px;}
.lsaa{letter-spacing:-3.283200px;}
.ls25{letter-spacing:-2.959200px;}
.ls66{letter-spacing:-2.721600px;}
.ls67{letter-spacing:-2.635200px;}
.ls90{letter-spacing:-1.728000px;}
.ls62{letter-spacing:-1.652400px;}
.lsaf{letter-spacing:-1.587600px;}
.lsbc{letter-spacing:-1.512000px;}
.ls69{letter-spacing:-1.425600px;}
.ls3d{letter-spacing:-1.371600px;}
.lscc{letter-spacing:-1.144800px;}
.ls52{letter-spacing:-1.112400px;}
.lsa5{letter-spacing:-1.108800px;}
.ls2c{letter-spacing:-0.918000px;}
.lsb3{letter-spacing:-0.367200px;}
.ls3b{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.356400px;}
.lsa{letter-spacing:-0.343200px;}
.lsb2{letter-spacing:-0.334800px;}
.ls3e{letter-spacing:-0.331200px;}
.lsc1{letter-spacing:-0.330000px;}
.lsa8{letter-spacing:-0.313200px;}
.ls4f{letter-spacing:-0.302400px;}
.ls9d{letter-spacing:-0.297600px;}
.ls71{letter-spacing:-0.273600px;}
.ls9b{letter-spacing:-0.273000px;}
.ls18{letter-spacing:-0.270000px;}
.lsa2{letter-spacing:-0.268800px;}
.ls9{letter-spacing:-0.265200px;}
.ls2d{letter-spacing:-0.259200px;}
.ls4b{letter-spacing:-0.252000px;}
.lsb8{letter-spacing:-0.244800px;}
.lsa6{letter-spacing:-0.240000px;}
.lsc0{letter-spacing:-0.237600px;}
.ls6b{letter-spacing:-0.230400px;}
.ls68{letter-spacing:-0.226800px;}
.ls39{letter-spacing:-0.216000px;}
.lsc5{letter-spacing:-0.211200px;}
.ls16{letter-spacing:-0.205200px;}
.ls4c{letter-spacing:-0.201600px;}
.ls30{letter-spacing:-0.194400px;}
.lsbb{letter-spacing:-0.187200px;}
.ls17{letter-spacing:-0.183600px;}
.lsa4{letter-spacing:-0.182400px;}
.ls2e{letter-spacing:-0.172800px;}
.ls23{letter-spacing:-0.168000px;}
.ls14{letter-spacing:-0.151200px;}
.ls38{letter-spacing:-0.144000px;}
.ls51{letter-spacing:-0.140400px;}
.lsc{letter-spacing:-0.124800px;}
.ls7{letter-spacing:-0.109200px;}
.ls29{letter-spacing:-0.108000px;}
.ls44{letter-spacing:-0.097200px;}
.lsc4{letter-spacing:-0.092400px;}
.ls64{letter-spacing:-0.086400px;}
.ls8{letter-spacing:-0.078000px;}
.ls1e{letter-spacing:-0.075600px;}
.ls24{letter-spacing:-0.064800px;}
.ls3a{letter-spacing:-0.057600px;}
.ls15{letter-spacing:-0.043200px;}
.ls6a{letter-spacing:-0.038400px;}
.ls41{letter-spacing:-0.034200px;}
.ls1c{letter-spacing:-0.032400px;}
.ls3c{letter-spacing:-0.028800px;}
.lsb1{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.ls76{letter-spacing:0.000081px;}
.lsc9{letter-spacing:0.006084px;}
.lsc8{letter-spacing:0.010877px;}
.ls8d{letter-spacing:0.019015px;}
.ls63{letter-spacing:0.021600px;}
.ls34{letter-spacing:0.024000px;}
.lsca{letter-spacing:0.024669px;}
.ls55{letter-spacing:0.028196px;}
.ls6e{letter-spacing:0.028252px;}
.ls70{letter-spacing:0.028800px;}
.ls5b{letter-spacing:0.029225px;}
.ls58{letter-spacing:0.029535px;}
.ls5e{letter-spacing:0.029601px;}
.ls36{letter-spacing:0.030000px;}
.ls95{letter-spacing:0.030003px;}
.lsac{letter-spacing:0.042000px;}
.ls46{letter-spacing:0.043200px;}
.ls8b{letter-spacing:0.045183px;}
.ls88{letter-spacing:0.046855px;}
.ls53{letter-spacing:0.047192px;}
.ls6c{letter-spacing:0.047285px;}
.ls7e{letter-spacing:0.048613px;}
.ls59{letter-spacing:0.048914px;}
.ls56{letter-spacing:0.049433px;}
.ls5c{letter-spacing:0.049543px;}
.ls86{letter-spacing:0.060856px;}
.ls7a{letter-spacing:0.062806px;}
.ls77{letter-spacing:0.062887px;}
.ls75{letter-spacing:0.063049px;}
.ls79{letter-spacing:0.063130px;}
.ls7c{letter-spacing:0.063455px;}
.ls7d{letter-spacing:0.063617px;}
.ls1b{letter-spacing:0.064800px;}
.ls97{letter-spacing:0.066007px;}
.ls54{letter-spacing:0.075447px;}
.ls8a{letter-spacing:0.075525px;}
.ls6d{letter-spacing:0.075597px;}
.ls45{letter-spacing:0.075600px;}
.ls87{letter-spacing:0.075667px;}
.ls80{letter-spacing:0.075957px;}
.ls83{letter-spacing:0.076768px;}
.ls50{letter-spacing:0.078000px;}
.ls5a{letter-spacing:0.078200px;}
.ls57{letter-spacing:0.079030px;}
.ls5d{letter-spacing:0.079206px;}
.ls9c{letter-spacing:0.084000px;}
.ls10{letter-spacing:0.086400px;}
.ls7f{letter-spacing:0.090788px;}
.lsbe{letter-spacing:0.092400px;}
.ls6f{letter-spacing:0.100800px;}
.ls85{letter-spacing:0.106224px;}
.lsc7{letter-spacing:0.108000px;}
.ls74{letter-spacing:0.115200px;}
.ls21{letter-spacing:0.118800px;}
.lsa0{letter-spacing:0.124800px;}
.ls49{letter-spacing:0.129600px;}
.ls2a{letter-spacing:0.140400px;}
.lsc3{letter-spacing:0.145200px;}
.ls31{letter-spacing:0.150000px;}
.lsb4{letter-spacing:0.150600px;}
.lsa3{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.156000px;}
.ls4{letter-spacing:0.159000px;}
.ls2b{letter-spacing:0.162000px;}
.lsce{letter-spacing:0.168000px;}
.ls42{letter-spacing:0.172800px;}
.ls47{letter-spacing:0.183960px;}
.lsb9{letter-spacing:0.187200px;}
.ls8f{letter-spacing:0.194400px;}
.lscf{letter-spacing:0.205200px;}
.ls4d{letter-spacing:0.208800px;}
.lsbf{letter-spacing:0.211200px;}
.ls3f{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.218400px;}
.lsa9{letter-spacing:0.226800px;}
.ls32{letter-spacing:0.228000px;}
.lsd{letter-spacing:0.234000px;}
.ls4e{letter-spacing:0.237600px;}
.ls9e{letter-spacing:0.240000px;}
.ls94{letter-spacing:0.240015px;}
.ls60{letter-spacing:0.259200px;}
.lsc2{letter-spacing:0.264000px;}
.ls9f{letter-spacing:0.268800px;}
.ls1a{letter-spacing:0.270000px;}
.lsab{letter-spacing:0.280800px;}
.ls40{letter-spacing:0.296400px;}
.lsd0{letter-spacing:0.297600px;}
.lsf{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.302400px;}
.lsb{letter-spacing:0.312000px;}
.lsa1{letter-spacing:0.326400px;}
.lsc6{letter-spacing:0.330000px;}
.lsba{letter-spacing:0.331200px;}
.ls11{letter-spacing:0.334800px;}
.ls1d{letter-spacing:0.342000px;}
.ls13{letter-spacing:0.356400px;}
.ls2f{letter-spacing:0.367200px;}
.ls65{letter-spacing:0.388800px;}
.lsae{letter-spacing:0.410400px;}
.ls73{letter-spacing:0.503940px;}
.ls43{letter-spacing:1.112400px;}
.lsad{letter-spacing:1.372800px;}
.ls5f{letter-spacing:2.976000px;}
.lsb5{letter-spacing:3.480600px;}
.ls84{letter-spacing:4.049012px;}
.ls96{letter-spacing:5.100000px;}
.ls81{letter-spacing:6.292496px;}
.ls37{letter-spacing:6.696000px;}
.ls35{letter-spacing:12.240003px;}
.ls93{letter-spacing:22.432595px;}
.ls28{letter-spacing:24.324000px;}
.ls8e{letter-spacing:28.514421px;}
.ls99{letter-spacing:30.324000px;}
.ls9a{letter-spacing:30.324600px;}
.ls27{letter-spacing:31.320005px;}
.ls92{letter-spacing:31.628511px;}
.ls8c{letter-spacing:31.702679px;}
.ls89{letter-spacing:33.312207px;}
.ls98{letter-spacing:36.090006px;}
.ls26{letter-spacing:37.542003px;}
.ls82{letter-spacing:38.061183px;}
.ls72{letter-spacing:55.499983px;}
.ls33{letter-spacing:57.600000px;}
.lsbd{letter-spacing:61.800003px;}
.ls20{letter-spacing:70.200000px;}
.lscd{letter-spacing:81.960003px;}
.ls1f{letter-spacing:97.200000px;}
.lse{letter-spacing:132.000000px;}
.ls7b{letter-spacing:286.291233px;}
.ls78{letter-spacing:286.291314px;}
.ls1{letter-spacing:378.648016px;}
.ls0{letter-spacing:382.752000px;}
.lsb7{letter-spacing:385.920000px;}
.ls22{letter-spacing:397.440000px;}
.lsb6{letter-spacing:401.280003px;}
.lscb{letter-spacing:1572.554500px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-61.532991px;}
.ws22{word-spacing:-55.512000px;}
.ws96{word-spacing:-49.010400px;}
.ws95{word-spacing:-48.859200px;}
.ws1a{word-spacing:-48.816000px;}
.ws2f{word-spacing:-48.556800px;}
.ws73{word-spacing:-47.186989px;}
.ws69{word-spacing:-47.088000px;}
.ws68{word-spacing:-46.195200px;}
.ws8e{word-spacing:-46.051200px;}
.ws23{word-spacing:-46.022400px;}
.ws26{word-spacing:-45.748800px;}
.ws27{word-spacing:-45.720000px;}
.wsd{word-spacing:-34.862400px;}
.wse{word-spacing:-34.830000px;}
.ws19{word-spacing:-34.678800px;}
.ws15{word-spacing:-34.646400px;}
.ws11{word-spacing:-34.624800px;}
.ws17{word-spacing:-34.560000px;}
.ws14{word-spacing:-34.527600px;}
.ws13{word-spacing:-34.408800px;}
.ws12{word-spacing:-34.376400px;}
.wsf{word-spacing:-34.354800px;}
.ws30{word-spacing:-34.257600px;}
.ws66{word-spacing:-32.644800px;}
.ws77{word-spacing:-31.046397px;}
.ws7b{word-spacing:-30.873597px;}
.ws76{word-spacing:-30.719997px;}
.ws75{word-spacing:-30.691197px;}
.ws79{word-spacing:-30.537597px;}
.ws7c{word-spacing:-30.479997px;}
.ws4b{word-spacing:-24.710400px;}
.ws7f{word-spacing:-24.688800px;}
.ws4d{word-spacing:-24.494400px;}
.ws87{word-spacing:-24.429600px;}
.ws80{word-spacing:-24.408000px;}
.ws86{word-spacing:-24.397200px;}
.ws4a{word-spacing:-24.364800px;}
.ws16{word-spacing:-24.332400px;}
.ws4e{word-spacing:-24.310800px;}
.ws4c{word-spacing:-24.224400px;}
.ws50{word-spacing:-24.181200px;}
.ws88{word-spacing:-24.073200px;}
.ws51{word-spacing:-22.982400px;}
.ws84{word-spacing:-22.820400px;}
.ws20{word-spacing:-22.226400px;}
.ws89{word-spacing:-22.194000px;}
.ws7e{word-spacing:-22.150800px;}
.ws1c{word-spacing:-22.086000px;}
.ws54{word-spacing:-22.053600px;}
.ws98{word-spacing:-21.999600px;}
.ws21{word-spacing:-21.924000px;}
.ws97{word-spacing:-21.913200px;}
.ws8f{word-spacing:-21.880801px;}
.ws2b{word-spacing:-21.826800px;}
.ws4f{word-spacing:-21.772800px;}
.ws1f{word-spacing:-21.751200px;}
.ws1e{word-spacing:-21.664800px;}
.ws52{word-spacing:-21.657598px;}
.ws8b{word-spacing:-21.589200px;}
.ws8a{word-spacing:-21.556800px;}
.ws1d{word-spacing:-21.006000px;}
.ws7d{word-spacing:-18.586800px;}
.ws2e{word-spacing:-17.809200px;}
.ws49{word-spacing:-17.539200px;}
.ws85{word-spacing:-14.709600px;}
.ws83{word-spacing:-1.528800px;}
.ws8{word-spacing:-0.468000px;}
.ws9b{word-spacing:-0.464400px;}
.wsa{word-spacing:-0.390000px;}
.ws1{word-spacing:-0.374400px;}
.ws9a{word-spacing:-0.313200px;}
.ws6{word-spacing:-0.312000px;}
.ws2a{word-spacing:-0.280800px;}
.ws74{word-spacing:-0.210000px;}
.ws28{word-spacing:-0.168000px;}
.wsb{word-spacing:-0.156000px;}
.ws8c{word-spacing:-0.144000px;}
.ws10{word-spacing:-0.108000px;}
.ws71{word-spacing:-0.096901px;}
.ws78{word-spacing:-0.096000px;}
.ws45{word-spacing:-0.089089px;}
.ws39{word-spacing:-0.088891px;}
.ws46{word-spacing:-0.088802px;}
.ws3a{word-spacing:-0.088605px;}
.ws3f{word-spacing:-0.087958px;}
.ws40{word-spacing:-0.087675px;}
.ws59{word-spacing:-0.085030px;}
.ws33{word-spacing:-0.084861px;}
.ws5a{word-spacing:-0.084756px;}
.ws34{word-spacing:-0.084588px;}
.ws6a{word-spacing:-0.080751px;}
.ws4{word-spacing:-0.078000px;}
.ws91{word-spacing:-0.073983px;}
.ws90{word-spacing:-0.073742px;}
.ws6f{word-spacing:-0.064601px;}
.ws3{word-spacing:-0.046800px;}
.ws9{word-spacing:-0.031200px;}
.ws2c{word-spacing:-0.024000px;}
.wsc{word-spacing:0.000000px;}
.ws56{word-spacing:0.038400px;}
.ws5{word-spacing:0.109200px;}
.ws7{word-spacing:0.187200px;}
.ws7a{word-spacing:1.036800px;}
.ws25{word-spacing:1.263600px;}
.ws8d{word-spacing:1.404000px;}
.ws2{word-spacing:3.151199px;}
.ws35{word-spacing:14.099709px;}
.ws5f{word-spacing:14.127660px;}
.ws5b{word-spacing:14.127722px;}
.ws64{word-spacing:14.127728px;}
.ws41{word-spacing:14.614301px;}
.ws3b{word-spacing:14.769298px;}
.ws47{word-spacing:14.802166px;}
.ws92{word-spacing:14.931793px;}
.ws36{word-spacing:16.568327px;}
.ws60{word-spacing:16.601173px;}
.ws5c{word-spacing:16.601245px;}
.ws65{word-spacing:16.601252px;}
.ws42{word-spacing:17.173015px;}
.ws3c{word-spacing:17.355150px;}
.ws48{word-spacing:17.393773px;}
.ws67{word-spacing:20.700049px;}
.ws94{word-spacing:24.073930px;}
.ws32{word-spacing:25.534772px;}
.ws5e{word-spacing:25.585393px;}
.ws58{word-spacing:25.585504px;}
.ws63{word-spacing:25.585515px;}
.ws3e{word-spacing:26.466705px;}
.ws38{word-spacing:26.747407px;}
.ws44{word-spacing:26.806931px;}
.ws70{word-spacing:26.822218px;}
.ws18{word-spacing:30.000000px;}
.ws99{word-spacing:30.204000px;}
.ws1b{word-spacing:30.216000px;}
.ws24{word-spacing:31.524000px;}
.ws72{word-spacing:31.531610px;}
.ws6d{word-spacing:37.832432px;}
.ws6c{word-spacing:37.837922px;}
.ws6e{word-spacing:39.408788px;}
.ws29{word-spacing:46.265964px;}
.ws5d{word-spacing:97.848841px;}
.ws57{word-spacing:97.849267px;}
.ws37{word-spacing:102.292849px;}
.ws43{word-spacing:102.520496px;}
.ws93{word-spacing:127.411111px;}
.ws31{word-spacing:257.116904px;}
.ws61{word-spacing:257.627748px;}
.ws62{word-spacing:257.627857px;}
.ws3d{word-spacing:266.500809px;}
.ws6b{word-spacing:317.613927px;}
.ws81{word-spacing:1142.709600px;}
.ws82{word-spacing:1323.474600px;}
.ws2d{word-spacing:1495.534020px;}
.ws55{word-spacing:1612.764600px;}
.ws53{word-spacing:1620.809400px;}
._29{margin-left:-2443.373398px;}
._25{margin-left:-401.280003px;}
._5{margin-left:-16.032942px;}
._6{margin-left:-13.779401px;}
._f{margin-left:-12.312000px;}
._10{margin-left:-10.908601px;}
._8{margin-left:-9.771591px;}
._d{margin-left:-8.403009px;}
._0{margin-left:-6.773399px;}
._7{margin-left:-5.731139px;}
._9{margin-left:-4.335593px;}
._2{margin-left:-3.013504px;}
._1{margin-left:-1.049400px;}
._4{width:1.092000px;}
._3{width:3.119999px;}
._12{width:4.205422px;}
._22{width:5.327212px;}
._11{width:6.409260px;}
._e{width:8.196905px;}
._24{width:9.390340px;}
._23{width:10.570497px;}
._13{width:15.257400px;}
._14{width:16.435800px;}
._21{width:17.726824px;}
._26{width:19.920331px;}
._1a{width:22.158992px;}
._28{width:25.714609px;}
._a{width:31.920002px;}
._15{width:32.976000px;}
._20{width:41.520197px;}
._2b{width:116.273342px;}
._b{width:121.543200px;}
._1e{width:150.428820px;}
._1b{width:157.260173px;}
._27{width:161.109809px;}
._c{width:190.533600px;}
._16{width:271.048201px;}
._19{width:274.659770px;}
._1f{width:275.890070px;}
._1d{width:284.683931px;}
._18{width:344.572329px;}
._1c{width:357.148064px;}
._17{width:1379.672393px;}
._2a{width:2315.272200px;}
.fcd{color:rgb(0,176,240);}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc7{color:rgb(0,176,80);}
.fc9{color:rgb(118,118,118);}
.fca{color:rgb(165,42,42);}
.fc5{color:rgb(192,79,21);}
.fc6{color:rgb(255,0,0);}
.fcb{color:rgb(255,215,0);}
.fc0{color:rgb(0,32,96);}
.fc4{color:rgb(112,48,160);}
.fc8{color:transparent;}
.fcc{color:rgb(0,0,139);}
.fs11{font-size:29.701462px;}
.fs31{font-size:29.760344px;}
.fs2b{font-size:29.760474px;}
.fs37{font-size:29.760486px;}
.fs1d{font-size:30.785466px;}
.fs17{font-size:31.111972px;}
.fs23{font-size:31.181210px;}
.fs48{font-size:42.275746px;}
.fs10{font-size:42.430661px;}
.fs30{font-size:42.514777px;}
.fs2a{font-size:42.514962px;}
.fs36{font-size:42.514980px;}
.fs1c{font-size:43.979237px;}
.fs16{font-size:44.445674px;}
.fs22{font-size:44.544585px;}
.fs12{font-size:50.916801px;}
.fs32{font-size:51.017741px;}
.fs2c{font-size:51.017963px;}
.fs38{font-size:51.017985px;}
.fs4b{font-size:51.787564px;}
.fs1e{font-size:52.775094px;}
.fs18{font-size:53.334818px;}
.fs24{font-size:53.453511px;}
.fs3d{font-size:56.525618px;}
.fs44{font-size:64.600707px;}
.fsb{font-size:71.999992px;}
.fsc{font-size:72.000000px;}
.fs49{font-size:73.741986px;}
.fs4a{font-size:73.982576px;}
.fsd{font-size:76.375181px;}
.fs2d{font-size:76.526590px;}
.fs27{font-size:76.526924px;}
.fs34{font-size:76.526956px;}
.fs5{font-size:77.999990px;}
.fs19{font-size:79.162619px;}
.fs13{font-size:80.002205px;}
.fs1f{font-size:80.180245px;}
.fs3f{font-size:80.739167px;}
.fs3b{font-size:80.750883px;}
.fsf{font-size:84.587847px;}
.fs2f{font-size:84.755506px;}
.fs29{font-size:84.755877px;}
.fs33{font-size:84.755889px;}
.fse{font-size:84.861321px;}
.fs2e{font-size:85.029554px;}
.fs28{font-size:85.029925px;}
.fs35{font-size:85.029961px;}
.fs1b{font-size:87.675006px;}
.fs1a{font-size:87.958475px;}
.fs15{font-size:88.604927px;}
.fs21{font-size:88.802055px;}
.fs14{font-size:88.891349px;}
.fs20{font-size:89.089171px;}
.fs3a{font-size:90.000000px;}
.fs25{font-size:95.999990px;}
.fs43{font-size:96.901076px;}
.fs4{font-size:108.000000px;}
.fs47{font-size:108.000005px;}
.fs41{font-size:113.050783px;}
.fs8{font-size:113.999990px;}
.fs3e{font-size:116.264388px;}
.fs3c{font-size:116.281259px;}
.fsa{font-size:119.999995px;}
.fs42{font-size:121.108751px;}
.fs46{font-size:131.999990px;}
.fs1{font-size:144.000000px;}
.fs39{font-size:150.000048px;}
.fs3{font-size:152.941104px;}
.fs2{font-size:155.999952px;}
.fs40{font-size:161.501767px;}
.fs9{font-size:168.000048px;}
.fs26{font-size:191.999952px;}
.fs45{font-size:209.999952px;}
.fs6{font-size:216.000000px;}
.fs7{font-size:240.000048px;}
.fs0{font-size:317.999952px;}
.y0{bottom:0.000000px;}
.y128{bottom:0.000035px;}
.y49{bottom:1.312419px;}
.ya2{bottom:1.315019px;}
.yb2{bottom:1.315021px;}
.yc2{bottom:1.315026px;}
.y6f{bottom:1.360318px;}
.y5f{bottom:1.374745px;}
.y82{bottom:1.377804px;}
.y14f{bottom:4.320000px;}
.y143{bottom:7.365901px;}
.y1e{bottom:8.640000px;}
.y80{bottom:9.349998px;}
.ya0{bottom:11.308143px;}
.yb0{bottom:11.309673px;}
.y32{bottom:11.520000px;}
.y14{bottom:12.600000px;}
.y35{bottom:12.960000px;}
.y5d{bottom:14.922670px;}
.y126{bottom:17.640000px;}
.y108{bottom:19.800000px;}
.y3e{bottom:20.160000px;}
.y9d{bottom:21.600000px;}
.yf3{bottom:21.857224px;}
.y48{bottom:25.177691px;}
.yb1{bottom:25.227605px;}
.ya1{bottom:25.227707px;}
.yc1{bottom:25.227715px;}
.yd7{bottom:25.227725px;}
.y6e{bottom:26.096593px;}
.y5e{bottom:26.373369px;}
.y81{bottom:26.432061px;}
.y142{bottom:28.596992px;}
.y105{bottom:32.040000px;}
.y4a{bottom:35.534088px;}
.yb3{bottom:35.604532px;}
.ya3{bottom:35.604680px;}
.yc3{bottom:35.604687px;}
.yd8{bottom:35.604702px;}
.y70{bottom:36.830963px;}
.y144{bottom:36.908011px;}
.y60{bottom:37.221586px;}
.y83{bottom:37.304420px;}
.y154{bottom:41.400000px;}
.y38{bottom:42.120000px;}
.y34{bottom:44.280000px;}
.yf1{bottom:46.321935px;}
.yf2{bottom:55.690700px;}
.y15{bottom:56.520000px;}
.y46{bottom:57.960000px;}
.y3c{bottom:61.560000px;}
.yf4{bottom:69.792524px;}
.yf9{bottom:76.186446px;}
.y3b{bottom:78.480000px;}
.y145{bottom:80.706248px;}
.y14a{bottom:87.157677px;}
.y45{bottom:91.080000px;}
.y4b{bottom:91.752592px;}
.yb4{bottom:91.934487px;}
.ya4{bottom:91.934880px;}
.yc4{bottom:91.934887px;}
.yd9{bottom:91.934926px;}
.y3f{bottom:93.240000px;}
.y71{bottom:95.101254px;}
.y61{bottom:96.109883px;}
.y84{bottom:96.323769px;}
.y30{bottom:97.200000px;}
.yff{bottom:100.815099px;}
.y153{bottom:106.560000px;}
.y104{bottom:113.760000px;}
.y50{bottom:114.483234px;}
.yb9{bottom:114.710191px;}
.ya9{bottom:114.710684px;}
.yc9{bottom:114.710691px;}
.yde{bottom:114.710740px;}
.y76{bottom:118.661489px;}
.y66{bottom:119.919994px;}
.y89{bottom:120.186868px;}
.y146{bottom:124.504485px;}
.y5c{bottom:128.311815px;}
.yd5{bottom:128.566747px;}
.y118{bottom:128.880000px;}
.y152{bottom:139.680000px;}
.y5b{bottom:146.119239px;}
.yd4{bottom:146.409551px;}
.y4c{bottom:147.971043px;}
.yb5{bottom:148.264388px;}
.ya5{bottom:148.265026px;}
.yc5{bottom:148.265034px;}
.yda{bottom:148.265097px;}
.y72{bottom:153.371490px;}
.y124{bottom:154.080000px;}
.y62{bottom:154.998124px;}
.y85{bottom:155.343062px;}
.y12{bottom:161.280000px;}
.y2f{bottom:163.440000px;}
.y5a{bottom:163.926664px;}
.yd3{bottom:164.252356px;}
.y147{bottom:168.302709px;}
.y103{bottom:171.720000px;}
.y117{bottom:178.200000px;}
.y59{bottom:182.441185px;}
.yd2{bottom:182.803661px;}
.ye7{bottom:182.803739px;}
.y7f{bottom:189.099676px;}
.y123{bottom:190.080000px;}
.y14b{bottom:193.871617px;}
.yf5{bottom:194.615222px;}
.y42{bottom:196.920000px;}
.y58{bottom:201.558883px;}
.yd1{bottom:201.959343px;}
.ye6{bottom:201.959429px;}
.y102{bottom:201.960000px;}
.y4d{bottom:204.189547px;}
.yb6{bottom:204.594342px;}
.ya6{bottom:204.595227px;}
.yc6{bottom:204.595234px;}
.ydb{bottom:204.595320px;}
.y3a{bottom:206.280000px;}
.y11{bottom:207.720000px;}
.y7e{bottom:208.915107px;}
.y73{bottom:211.641781px;}
.y148{bottom:212.100986px;}
.y63{bottom:213.886420px;}
.y86{bottom:214.362411px;}
.y9c{bottom:214.560000px;}
.y2e{bottom:220.320000px;}
.y57{bottom:220.676582px;}
.yd0{bottom:221.115025px;}
.ye5{bottom:221.115119px;}
.y116{bottom:223.200000px;}
.y122{bottom:226.080000px;}
.y7d{bottom:228.730537px;}
.y101{bottom:230.400000px;}
.y2d{bottom:238.320000px;}
.yfa{bottom:239.200208px;}
.y56{bottom:239.794281px;}
.ybf{bottom:240.269660px;}
.yaf{bottom:240.270700px;}
.ycf{bottom:240.270707px;}
.ye4{bottom:240.270809px;}
.y9b{bottom:244.440000px;}
.y7c{bottom:248.545968px;}
.y6c{bottom:251.182007px;}
.y8f{bottom:251.740997px;}
.y10{bottom:252.720000px;}
.y149{bottom:255.899263px;}
.y55{bottom:258.911873px;}
.ybe{bottom:259.425152px;}
.yae{bottom:259.426275px;}
.yce{bottom:259.426283px;}
.ye3{bottom:259.426392px;}
.y4e{bottom:260.408052px;}
.y121{bottom:260.640000px;}
.yb7{bottom:260.924297px;}
.ya7{bottom:260.925427px;}
.yc7{bottom:260.925434px;}
.ydc{bottom:260.925544px;}
.y159{bottom:261.360000px;}
.y39{bottom:263.880000px;}
.y13a{bottom:266.848765px;}
.yba{bottom:267.567284px;}
.yaa{bottom:267.568443px;}
.y7b{bottom:268.361288px;}
.y74{bottom:269.912072px;}
.y6b{bottom:271.207485px;}
.y8e{bottom:271.811041px;}
.y64{bottom:272.774717px;}
.y9a{bottom:272.880000px;}
.y87{bottom:273.381760px;}
.y115{bottom:277.200000px;}
.y54{bottom:278.029571px;}
.ybd{bottom:278.580750px;}
.yad{bottom:278.581957px;}
.ycd{bottom:278.581965px;}
.ye2{bottom:278.582082px;}
.y67{bottom:279.719409px;}
.y8a{bottom:280.341908px;}
.y51{bottom:281.092522px;}
.yea{bottom:281.160000px;}
.yca{bottom:281.651000px;}
.ydf{bottom:281.651119px;}
.y6{bottom:284.040000px;}
.y7a{bottom:288.176718px;}
.y6a{bottom:291.233075px;}
.y77{bottom:291.351456px;}
.y8d{bottom:291.881196px;}
.y158{bottom:294.480000px;}
.y53{bottom:297.147270px;}
.yf{bottom:297.720000px;}
.ybc{bottom:297.736349px;}
.yac{bottom:297.737639px;}
.ycc{bottom:297.737647px;}
.ye1{bottom:297.737772px;}
.y99{bottom:301.320000px;}
.y79{bottom:307.992149px;}
.y13b{bottom:310.647042px;}
.y69{bottom:311.258665px;}
.y120{bottom:311.760000px;}
.y8c{bottom:311.951352px;}
.y22{bottom:316.080000px;}
.y52{bottom:316.264862px;}
.y4f{bottom:316.626556px;}
.ybb{bottom:316.891841px;}
.yab{bottom:316.893214px;}
.ycb{bottom:316.893222px;}
.ye0{bottom:316.893356px;}
.y140{bottom:317.098379px;}
.yb8{bottom:317.254251px;}
.ya8{bottom:317.255627px;}
.yc8{bottom:317.255634px;}
.ydd{bottom:317.255768px;}
.yf6{bottom:319.437900px;}
.yfc{bottom:320.559481px;}
.y2c{bottom:320.760000px;}
.y78{bottom:327.807469px;}
.y75{bottom:328.182363px;}
.y5{bottom:330.480000px;}
.y114{bottom:331.200000px;}
.y68{bottom:331.284143px;}
.y65{bottom:331.663014px;}
.y8b{bottom:332.021396px;}
.y88{bottom:332.401109px;}
.y98{bottom:340.560000px;}
.ye{bottom:342.720000px;}
.y21{bottom:347.400000px;}
.y11f{bottom:347.760000px;}
.y13c{bottom:354.445187px;}
.y113{bottom:368.640000px;}
.y97{bottom:369.000000px;}
.y2b{bottom:371.880000px;}
.y3{bottom:378.720000px;}
.y4{bottom:379.190520px;}
.y1d{bottom:383.040000px;}
.yd{bottom:389.160000px;}
.y13d{bottom:398.243463px;}
.y11e{bottom:398.880000px;}
.y160{bottom:399.600000px;}
.y96{bottom:407.880000px;}
.y6d{bottom:411.754650px;}
.yc0{bottom:412.491450px;}
.yd6{bottom:419.389650px;}
.y112{bottom:422.640000px;}
.y141{bottom:423.812372px;}
.y47{bottom:424.962900px;}
.y1c{bottom:426.600000px;}
.y2a{bottom:432.000000px;}
.y11d{bottom:433.080000px;}
.yc{bottom:435.600000px;}
.y95{bottom:436.320000px;}
.yef{bottom:436.680000px;}
.y29{bottom:439.200000px;}
.y13e{bottom:442.041740px;}
.y23{bottom:442.080000px;}
.yf7{bottom:444.260598px;}
.yfe{bottom:470.057965px;}
.y1b{bottom:471.600000px;}
.y94{bottom:475.560000px;}
.y111{bottom:476.640000px;}
.yb{bottom:480.600000px;}
.y11c{bottom:484.200000px;}
.y13f{bottom:485.840017px;}
.y28{bottom:490.320000px;}
.y129{bottom:496.789520px;}
.y10b{bottom:497.520000px;}
.y93{bottom:504.000000px;}
.yfd{bottom:507.633244px;}
.y1a{bottom:514.800000px;}
.y11b{bottom:520.200000px;}
.yee{bottom:524.160000px;}
.ya{bottom:527.040000px;}
.y10a{bottom:530.280000px;}
.y110{bottom:530.640000px;}
.yfb{bottom:532.469314px;}
.y12a{bottom:540.587797px;}
.y27{bottom:542.880000px;}
.yed{bottom:543.240000px;}
.y20{bottom:544.320000px;}
.y19{bottom:545.040000px;}
.y12f{bottom:547.039134px;}
.y11a{bottom:556.200000px;}
.y156{bottom:557.280000px;}
.y109{bottom:561.960000px;}
.y2{bottom:562.320000px;}
.yf8{bottom:569.083296px;}
.y10f{bottom:569.880000px;}
.y92{bottom:571.320000px;}
.y9{bottom:572.040000px;}
.y12b{bottom:584.385941px;}
.y18{bottom:588.600000px;}
.y155{bottom:590.400000px;}
.y41{bottom:591.480000px;}
.y91{bottom:599.760000px;}
.y37{bottom:601.200000px;}
.y15f{bottom:601.560000px;}
.yec{bottom:609.120000px;}
.y26{bottom:610.200000px;}
.y14c{bottom:610.560000px;}
.y8{bottom:617.040000px;}
.ye9{bottom:617.400000px;}
.y127{bottom:618.480000px;}
.y10e{bottom:623.880000px;}
.y40{bottom:624.600000px;}
.y12c{bottom:628.184218px;}
.y15e{bottom:630.000000px;}
.y44{bottom:630.720000px;}
.y17{bottom:633.600000px;}
.y136{bottom:634.060173px;}
.y90{bottom:639.000000px;}
.y1{bottom:648.000000px;}
.y135{bottom:649.432786px;}
.yeb{bottom:649.800000px;}
.y130{bottom:653.753126px;}
.y15d{bottom:658.440000px;}
.y7{bottom:662.040015px;}
.y10d{bottom:662.760015px;}
.y134{bottom:665.305992px;}
.y157{bottom:666.720015px;}
.y31{bottom:667.440015px;}
.y119{bottom:671.400015px;}
.y12d{bottom:671.982495px;}
.y25{bottom:676.440015px;}
.y150{bottom:678.600015px;}
.y133{bottom:681.179197px;}
.y139{bottom:683.855607px;}
.y15c{bottom:686.880015px;}
.y106{bottom:695.880015px;}
.y132{bottom:697.052403px;}
.y138{bottom:698.641036px;}
.y131{bottom:712.925608px;}
.y137{bottom:713.426333px;}
.y12e{bottom:715.780772px;}
.y15b{bottom:717.120015px;}
.y14d{bottom:720.359992px;}
.y125{bottom:725.759992px;}
.y43{bottom:726.480015px;}
.y9f{bottom:727.200015px;}
.y16{bottom:732.600015px;}
.yf0{bottom:734.040015px;}
.y3d{bottom:735.480015px;}
.y161{bottom:737.639993px;}
.y10c{bottom:737.640015px;}
.y1f{bottom:738.360015px;}
.y13{bottom:739.440015px;}
.y24{bottom:739.800015px;}
.y14e{bottom:741.240015px;}
.y15a{bottom:741.599992px;}
.y100{bottom:744.120015px;}
.y107{bottom:748.080015px;}
.y151{bottom:748.800015px;}
.y33{bottom:749.160015px;}
.y36{bottom:750.240015px;}
.ye8{bottom:762.480015px;}
.y9e{bottom:777.240015px;}
.h5f{height:31.706809px;}
.h1b{height:38.187601px;}
.h41{height:38.263306px;}
.h3a{height:38.263473px;}
.h48{height:38.263489px;}
.h1a{height:38.624451px;}
.h40{height:38.701022px;}
.h39{height:38.701191px;}
.h47{height:38.701207px;}
.h29{height:39.581320px;}
.h22{height:40.001114px;}
.h28{height:40.034114px;}
.h30{height:40.090134px;}
.h21{height:40.458710px;}
.h2f{height:40.548748px;}
.h12{height:47.988276px;}
.h13{height:47.988281px;}
.h62{height:55.486932px;}
.h16{height:57.205010px;}
.h18{height:57.281385px;}
.h3c{height:57.318416px;}
.h35{height:57.318666px;}
.h44{height:57.318690px;}
.h3e{height:57.394943px;}
.h37{height:57.395193px;}
.h46{height:57.395217px;}
.h24{height:59.292801px;}
.h26{height:59.371964px;}
.h1d{height:59.921651px;}
.h1f{height:60.001654px;}
.h2b{height:60.055003px;}
.h2d{height:60.135184px;}
.h57{height:60.563163px;}
.h4d{height:62.581935px;}
.h17{height:63.645991px;}
.h3d{height:63.772166px;}
.h36{height:63.772444px;}
.h45{height:63.772471px;}
.h31{height:65.296868px;}
.h25{height:65.968856px;}
.h1e{height:66.668511px;}
.h2c{height:66.816878px;}
.h61{height:67.086576px;}
.h59{height:68.765618px;}
.h65{height:68.812493px;}
.h51{height:71.698368px;}
.hb{height:71.982422px;}
.h5d{height:71.982425px;}
.h55{height:72.675807px;}
.h4f{height:73.506864px;}
.h50{height:73.507188px;}
.h56{height:75.098334px;}
.h5{height:77.361328px;}
.h9{height:77.414063px;}
.h8{height:77.519531px;}
.h6{height:78.732422px;}
.h5a{height:80.172422px;}
.h63{height:80.622422px;}
.h32{height:83.502422px;}
.h4e{height:87.210944px;}
.h52{height:90.104901px;}
.h54{height:90.831563px;}
.h5c{height:94.552727px;}
.h49{height:101.601563px;}
.h3{height:101.935843px;}
.hd{height:103.148438px;}
.hc{height:104.062500px;}
.h11{height:106.640592px;}
.h4a{height:107.446323px;}
.h2{height:109.078091px;}
.h4{height:109.382779px;}
.h10{height:118.535190px;}
.h60{height:119.584854px;}
.h53{height:121.126325px;}
.h14{height:129.201328px;}
.h33{height:130.499967px;}
.he{height:131.948438px;}
.h19{height:137.173222px;}
.h3f{height:137.445109px;}
.h38{height:137.445710px;}
.h42{height:137.445730px;}
.h27{height:142.179562px;}
.h20{height:143.687583px;}
.h2e{height:144.007260px;}
.h58{height:146.835904px;}
.h5b{height:147.656250px;}
.h64{height:154.828125px;}
.h7{height:156.832031px;}
.ha{height:159.960969px;}
.hf{height:163.692422px;}
.h4b{height:166.572422px;}
.h1{height:211.948210px;}
.h15{height:383.308050px;}
.h3b{height:384.067950px;}
.h34{height:384.069600px;}
.h43{height:384.069750px;}
.h23{height:397.297500px;}
.h1c{height:401.511150px;}
.h2a{height:402.404700px;}
.h4c{height:653.709600px;}
.h5e{height:809.999965px;}
.h0{height:810.000000px;}
.w1{width:458.487300px;}
.w6{width:459.396000px;}
.w5{width:459.397950px;}
.w7{width:459.398100px;}
.w3{width:475.220400px;}
.w2{width:480.260850px;}
.w4{width:481.329300px;}
.w8{width:805.499850px;}
.w9{width:808.916400px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x30{left:10.165630px;}
.x21{left:18.883695px;}
.x2d{left:21.448385px;}
.x34{left:22.466970px;}
.x5f{left:27.000000px;}
.x1{left:30.119880px;}
.x33{left:32.433105px;}
.x50{left:36.387102px;}
.x7{left:40.939485px;}
.x64{left:45.784816px;}
.x62{left:48.369863px;}
.x4d{left:49.950120px;}
.x49{left:51.300240px;}
.x2c{left:52.946642px;}
.x60{left:54.000000px;}
.x31{left:55.461080px;}
.x16{left:59.400000px;}
.x68{left:61.915033px;}
.x47{left:64.523025px;}
.x48{left:66.510000px;}
.x15{left:72.524640px;}
.x9{left:76.872645px;}
.x4a{left:78.300240px;}
.x4b{left:80.010240px;}
.xc{left:82.350000px;}
.x8{left:83.389485px;}
.x17{left:86.400000px;}
.x57{left:94.939485px;}
.x61{left:103.258590px;}
.x42{left:104.640666px;}
.xe{left:109.350000px;}
.x4c{left:114.397725px;}
.xd{left:116.100000px;}
.x39{left:122.045847px;}
.x40{left:124.972964px;}
.x36{left:129.277235px;}
.x32{left:130.648407px;}
.x69{left:138.977793px;}
.x18{left:143.309985px;}
.x1d{left:160.274700px;}
.x55{left:174.659057px;}
.x3d{left:179.550000px;}
.x2e{left:182.213989px;}
.x58{left:184.950000px;}
.x37{left:188.864159px;}
.x3f{left:211.374600px;}
.x51{left:212.748870px;}
.x45{left:221.307900px;}
.x41{left:223.573715px;}
.x65{left:227.118889px;}
.x1a{left:229.200900px;}
.x35{left:233.726951px;}
.x29{left:235.998450px;}
.x4f{left:248.456759px;}
.x6{left:251.100000px;}
.x5a{left:282.675000px;}
.x2f{left:294.150369px;}
.x2{left:303.457350px;}
.x1e{left:313.033050px;}
.x56{left:330.759000px;}
.x3{left:359.100000px;}
.x52{left:371.023778px;}
.x26{left:374.072700px;}
.x5e{left:384.750000px;}
.x6c{left:396.284250px;}
.x6a{left:413.793674px;}
.x11{left:437.985450px;}
.xb{left:442.575000px;}
.x28{left:444.998700px;}
.x19{left:453.802500px;}
.x24{left:458.963850px;}
.x6b{left:482.833768px;}
.x38{left:485.109300px;}
.x2b{left:488.047500px;}
.x54{left:506.687986px;}
.x70{left:514.808400px;}
.x2a{left:524.616600px;}
.x74{left:534.474450px;}
.x22{left:563.289300px;}
.xf{left:564.321000px;}
.x1f{left:568.092000px;}
.x23{left:575.853750px;}
.x46{left:588.945750px;}
.x4e{left:593.999850px;}
.x63{left:602.475900px;}
.x13{left:626.690250px;}
.x6e{left:658.800000px;}
.x67{left:662.541165px;}
.x12{left:663.773400px;}
.x10{left:680.134500px;}
.x66{left:687.267838px;}
.x25{left:719.996250px;}
.x4{left:730.995000px;}
.x5{left:744.307500px;}
.x53{left:765.126073px;}
.x43{left:832.167900px;}
.x44{left:839.991300px;}
.x1b{left:843.750000px;}
.x3a{left:934.200000px;}
.x6f{left:937.200000px;}
.x3b{left:961.200000px;}
.x5c{left:974.700000px;}
.x6d{left:1000.350000px;}
.x5d{left:1008.450000px;}
.x20{left:1020.218700px;}
.x3e{left:1027.350000px;}
.x5b{left:1031.400000px;}
.x27{left:1066.848300px;}
.x73{left:1070.413500px;}
.x3c{left:1090.210800px;}
.x71{left:1112.674200px;}
.x59{left:1116.971400px;}
.x72{left:1165.736700px;}
.x1c{left:1167.195150px;}
.xa{left:1219.050000px;}
.x14{left:1234.012800px;}
@media print{
.v8{vertical-align:-53.760000pt;}
.v1a{vertical-align:-38.400000pt;}
.v6{vertical-align:-30.720053pt;}
.v1e{vertical-align:-29.440000pt;}
.vd{vertical-align:-25.600000pt;}
.v12{vertical-align:-21.533627pt;}
.v2{vertical-align:-20.480000pt;}
.v1{vertical-align:-19.200000pt;}
.v15{vertical-align:-16.640000pt;}
.v11{vertical-align:-15.501846pt;}
.v13{vertical-align:-12.919600pt;}
.v14{vertical-align:-10.766669pt;}
.v19{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:1.280000pt;}
.v1d{vertical-align:7.680000pt;}
.ve{vertical-align:10.240000pt;}
.vb{vertical-align:13.687029pt;}
.v16{vertical-align:16.640000pt;}
.v17{vertical-align:19.200000pt;}
.v3{vertical-align:20.480000pt;}
.v1c{vertical-align:23.864568pt;}
.v4{vertical-align:25.600000pt;}
.v1f{vertical-align:29.440000pt;}
.v7{vertical-align:30.720053pt;}
.v9{vertical-align:46.080000pt;}
.v1b{vertical-align:55.497613pt;}
.v10{vertical-align:57.600000pt;}
.va{vertical-align:63.660125pt;}
.vc{vertical-align:66.683347pt;}
.v5{vertical-align:75.520000pt;}
.vf{vertical-align:78.080000pt;}
.ls91{letter-spacing:-14.803200pt;}
.ls48{letter-spacing:-13.939200pt;}
.lsb0{letter-spacing:-8.620800pt;}
.ls61{letter-spacing:-6.105600pt;}
.ls4a{letter-spacing:-3.657600pt;}
.lsa7{letter-spacing:-2.966400pt;}
.ls6{letter-spacing:-2.939732pt;}
.lsaa{letter-spacing:-2.918400pt;}
.ls25{letter-spacing:-2.630400pt;}
.ls66{letter-spacing:-2.419200pt;}
.ls67{letter-spacing:-2.342400pt;}
.ls90{letter-spacing:-1.536000pt;}
.ls62{letter-spacing:-1.468800pt;}
.lsaf{letter-spacing:-1.411200pt;}
.lsbc{letter-spacing:-1.344000pt;}
.ls69{letter-spacing:-1.267200pt;}
.ls3d{letter-spacing:-1.219200pt;}
.lscc{letter-spacing:-1.017600pt;}
.ls52{letter-spacing:-0.988800pt;}
.lsa5{letter-spacing:-0.985600pt;}
.ls2c{letter-spacing:-0.816000pt;}
.lsb3{letter-spacing:-0.326400pt;}
.ls3b{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.316800pt;}
.lsa{letter-spacing:-0.305067pt;}
.lsb2{letter-spacing:-0.297600pt;}
.ls3e{letter-spacing:-0.294400pt;}
.lsc1{letter-spacing:-0.293333pt;}
.lsa8{letter-spacing:-0.278400pt;}
.ls4f{letter-spacing:-0.268800pt;}
.ls9d{letter-spacing:-0.264533pt;}
.ls71{letter-spacing:-0.243200pt;}
.ls9b{letter-spacing:-0.242667pt;}
.ls18{letter-spacing:-0.240000pt;}
.lsa2{letter-spacing:-0.238933pt;}
.ls9{letter-spacing:-0.235733pt;}
.ls2d{letter-spacing:-0.230400pt;}
.ls4b{letter-spacing:-0.224000pt;}
.lsb8{letter-spacing:-0.217600pt;}
.lsa6{letter-spacing:-0.213333pt;}
.lsc0{letter-spacing:-0.211200pt;}
.ls6b{letter-spacing:-0.204800pt;}
.ls68{letter-spacing:-0.201600pt;}
.ls39{letter-spacing:-0.192000pt;}
.lsc5{letter-spacing:-0.187733pt;}
.ls16{letter-spacing:-0.182400pt;}
.ls4c{letter-spacing:-0.179200pt;}
.ls30{letter-spacing:-0.172800pt;}
.lsbb{letter-spacing:-0.166400pt;}
.ls17{letter-spacing:-0.163200pt;}
.lsa4{letter-spacing:-0.162133pt;}
.ls2e{letter-spacing:-0.153600pt;}
.ls23{letter-spacing:-0.149333pt;}
.ls14{letter-spacing:-0.134400pt;}
.ls38{letter-spacing:-0.128000pt;}
.ls51{letter-spacing:-0.124800pt;}
.lsc{letter-spacing:-0.110933pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls44{letter-spacing:-0.086400pt;}
.lsc4{letter-spacing:-0.082133pt;}
.ls64{letter-spacing:-0.076800pt;}
.ls8{letter-spacing:-0.069333pt;}
.ls1e{letter-spacing:-0.067200pt;}
.ls24{letter-spacing:-0.057600pt;}
.ls3a{letter-spacing:-0.051200pt;}
.ls15{letter-spacing:-0.038400pt;}
.ls6a{letter-spacing:-0.034133pt;}
.ls41{letter-spacing:-0.030400pt;}
.ls1c{letter-spacing:-0.028800pt;}
.ls3c{letter-spacing:-0.025600pt;}
.lsb1{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.ls76{letter-spacing:0.000072pt;}
.lsc9{letter-spacing:0.005408pt;}
.lsc8{letter-spacing:0.009668pt;}
.ls8d{letter-spacing:0.016902pt;}
.ls63{letter-spacing:0.019200pt;}
.ls34{letter-spacing:0.021333pt;}
.lsca{letter-spacing:0.021928pt;}
.ls55{letter-spacing:0.025063pt;}
.ls6e{letter-spacing:0.025113pt;}
.ls70{letter-spacing:0.025600pt;}
.ls5b{letter-spacing:0.025978pt;}
.ls58{letter-spacing:0.026253pt;}
.ls5e{letter-spacing:0.026312pt;}
.ls36{letter-spacing:0.026667pt;}
.ls95{letter-spacing:0.026669pt;}
.lsac{letter-spacing:0.037333pt;}
.ls46{letter-spacing:0.038400pt;}
.ls8b{letter-spacing:0.040163pt;}
.ls88{letter-spacing:0.041649pt;}
.ls53{letter-spacing:0.041948pt;}
.ls6c{letter-spacing:0.042031pt;}
.ls7e{letter-spacing:0.043211pt;}
.ls59{letter-spacing:0.043479pt;}
.ls56{letter-spacing:0.043940pt;}
.ls5c{letter-spacing:0.044038pt;}
.ls86{letter-spacing:0.054094pt;}
.ls7a{letter-spacing:0.055828pt;}
.ls77{letter-spacing:0.055900pt;}
.ls75{letter-spacing:0.056044pt;}
.ls79{letter-spacing:0.056116pt;}
.ls7c{letter-spacing:0.056404pt;}
.ls7d{letter-spacing:0.056548pt;}
.ls1b{letter-spacing:0.057600pt;}
.ls97{letter-spacing:0.058672pt;}
.ls54{letter-spacing:0.067064pt;}
.ls8a{letter-spacing:0.067133pt;}
.ls6d{letter-spacing:0.067197pt;}
.ls45{letter-spacing:0.067200pt;}
.ls87{letter-spacing:0.067259pt;}
.ls80{letter-spacing:0.067518pt;}
.ls83{letter-spacing:0.068238pt;}
.ls50{letter-spacing:0.069333pt;}
.ls5a{letter-spacing:0.069511pt;}
.ls57{letter-spacing:0.070249pt;}
.ls5d{letter-spacing:0.070405pt;}
.ls9c{letter-spacing:0.074667pt;}
.ls10{letter-spacing:0.076800pt;}
.ls7f{letter-spacing:0.080700pt;}
.lsbe{letter-spacing:0.082133pt;}
.ls6f{letter-spacing:0.089600pt;}
.ls85{letter-spacing:0.094422pt;}
.lsc7{letter-spacing:0.096000pt;}
.ls74{letter-spacing:0.102400pt;}
.ls21{letter-spacing:0.105600pt;}
.lsa0{letter-spacing:0.110933pt;}
.ls49{letter-spacing:0.115200pt;}
.ls2a{letter-spacing:0.124800pt;}
.lsc3{letter-spacing:0.129067pt;}
.ls31{letter-spacing:0.133333pt;}
.lsb4{letter-spacing:0.133867pt;}
.lsa3{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.138667pt;}
.ls4{letter-spacing:0.141333pt;}
.ls2b{letter-spacing:0.144000pt;}
.lsce{letter-spacing:0.149333pt;}
.ls42{letter-spacing:0.153600pt;}
.ls47{letter-spacing:0.163520pt;}
.lsb9{letter-spacing:0.166400pt;}
.ls8f{letter-spacing:0.172800pt;}
.lscf{letter-spacing:0.182400pt;}
.ls4d{letter-spacing:0.185600pt;}
.lsbf{letter-spacing:0.187733pt;}
.ls3f{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.194133pt;}
.lsa9{letter-spacing:0.201600pt;}
.ls32{letter-spacing:0.202667pt;}
.lsd{letter-spacing:0.208000pt;}
.ls4e{letter-spacing:0.211200pt;}
.ls9e{letter-spacing:0.213333pt;}
.ls94{letter-spacing:0.213346pt;}
.ls60{letter-spacing:0.230400pt;}
.lsc2{letter-spacing:0.234667pt;}
.ls9f{letter-spacing:0.238933pt;}
.ls1a{letter-spacing:0.240000pt;}
.lsab{letter-spacing:0.249600pt;}
.ls40{letter-spacing:0.263467pt;}
.lsd0{letter-spacing:0.264533pt;}
.lsf{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.268800pt;}
.lsb{letter-spacing:0.277333pt;}
.lsa1{letter-spacing:0.290133pt;}
.lsc6{letter-spacing:0.293333pt;}
.lsba{letter-spacing:0.294400pt;}
.ls11{letter-spacing:0.297600pt;}
.ls1d{letter-spacing:0.304000pt;}
.ls13{letter-spacing:0.316800pt;}
.ls2f{letter-spacing:0.326400pt;}
.ls65{letter-spacing:0.345600pt;}
.lsae{letter-spacing:0.364800pt;}
.ls73{letter-spacing:0.447947pt;}
.ls43{letter-spacing:0.988800pt;}
.lsad{letter-spacing:1.220266pt;}
.ls5f{letter-spacing:2.645333pt;}
.lsb5{letter-spacing:3.093867pt;}
.ls84{letter-spacing:3.599122pt;}
.ls96{letter-spacing:4.533333pt;}
.ls81{letter-spacing:5.593330pt;}
.ls37{letter-spacing:5.952000pt;}
.ls35{letter-spacing:10.880003pt;}
.ls93{letter-spacing:19.940085pt;}
.ls28{letter-spacing:21.621333pt;}
.ls8e{letter-spacing:25.346152pt;}
.ls99{letter-spacing:26.954667pt;}
.ls9a{letter-spacing:26.955200pt;}
.ls27{letter-spacing:27.840004pt;}
.ls92{letter-spacing:28.114232pt;}
.ls8c{letter-spacing:28.180159pt;}
.ls89{letter-spacing:29.610851pt;}
.ls98{letter-spacing:32.080006pt;}
.ls26{letter-spacing:33.370670pt;}
.ls82{letter-spacing:33.832163pt;}
.ls72{letter-spacing:49.333318pt;}
.ls33{letter-spacing:51.200000pt;}
.lsbd{letter-spacing:54.933336pt;}
.ls20{letter-spacing:62.400000pt;}
.lscd{letter-spacing:72.853336pt;}
.ls1f{letter-spacing:86.400000pt;}
.lse{letter-spacing:117.333333pt;}
.ls7b{letter-spacing:254.481096pt;}
.ls78{letter-spacing:254.481168pt;}
.ls1{letter-spacing:336.576015pt;}
.ls0{letter-spacing:340.224000pt;}
.lsb7{letter-spacing:343.040000pt;}
.ls22{letter-spacing:353.280000pt;}
.lsb6{letter-spacing:356.693336pt;}
.lscb{letter-spacing:1397.826222pt;}
.ws0{word-spacing:-54.695992pt;}
.ws22{word-spacing:-49.344000pt;}
.ws96{word-spacing:-43.564800pt;}
.ws95{word-spacing:-43.430400pt;}
.ws1a{word-spacing:-43.392000pt;}
.ws2f{word-spacing:-43.161600pt;}
.ws73{word-spacing:-41.943990pt;}
.ws69{word-spacing:-41.856000pt;}
.ws68{word-spacing:-41.062400pt;}
.ws8e{word-spacing:-40.934400pt;}
.ws23{word-spacing:-40.908800pt;}
.ws26{word-spacing:-40.665600pt;}
.ws27{word-spacing:-40.640000pt;}
.wsd{word-spacing:-30.988800pt;}
.wse{word-spacing:-30.960000pt;}
.ws19{word-spacing:-30.825600pt;}
.ws15{word-spacing:-30.796800pt;}
.ws11{word-spacing:-30.777600pt;}
.ws17{word-spacing:-30.720000pt;}
.ws14{word-spacing:-30.691200pt;}
.ws13{word-spacing:-30.585600pt;}
.ws12{word-spacing:-30.556800pt;}
.wsf{word-spacing:-30.537600pt;}
.ws30{word-spacing:-30.451200pt;}
.ws66{word-spacing:-29.017600pt;}
.ws77{word-spacing:-27.596797pt;}
.ws7b{word-spacing:-27.443197pt;}
.ws76{word-spacing:-27.306664pt;}
.ws75{word-spacing:-27.281064pt;}
.ws79{word-spacing:-27.144531pt;}
.ws7c{word-spacing:-27.093331pt;}
.ws4b{word-spacing:-21.964800pt;}
.ws7f{word-spacing:-21.945600pt;}
.ws4d{word-spacing:-21.772800pt;}
.ws87{word-spacing:-21.715200pt;}
.ws80{word-spacing:-21.696000pt;}
.ws86{word-spacing:-21.686400pt;}
.ws4a{word-spacing:-21.657600pt;}
.ws16{word-spacing:-21.628800pt;}
.ws4e{word-spacing:-21.609600pt;}
.ws4c{word-spacing:-21.532800pt;}
.ws50{word-spacing:-21.494400pt;}
.ws88{word-spacing:-21.398400pt;}
.ws51{word-spacing:-20.428800pt;}
.ws84{word-spacing:-20.284800pt;}
.ws20{word-spacing:-19.756800pt;}
.ws89{word-spacing:-19.728000pt;}
.ws7e{word-spacing:-19.689600pt;}
.ws1c{word-spacing:-19.632000pt;}
.ws54{word-spacing:-19.603200pt;}
.ws98{word-spacing:-19.555200pt;}
.ws21{word-spacing:-19.488000pt;}
.ws97{word-spacing:-19.478400pt;}
.ws8f{word-spacing:-19.449601pt;}
.ws2b{word-spacing:-19.401600pt;}
.ws4f{word-spacing:-19.353600pt;}
.ws1f{word-spacing:-19.334400pt;}
.ws1e{word-spacing:-19.257600pt;}
.ws52{word-spacing:-19.251198pt;}
.ws8b{word-spacing:-19.190400pt;}
.ws8a{word-spacing:-19.161600pt;}
.ws1d{word-spacing:-18.672000pt;}
.ws7d{word-spacing:-16.521600pt;}
.ws2e{word-spacing:-15.830400pt;}
.ws49{word-spacing:-15.590400pt;}
.ws85{word-spacing:-13.075200pt;}
.ws83{word-spacing:-1.358933pt;}
.ws8{word-spacing:-0.416000pt;}
.ws9b{word-spacing:-0.412800pt;}
.wsa{word-spacing:-0.346667pt;}
.ws1{word-spacing:-0.332800pt;}
.ws9a{word-spacing:-0.278400pt;}
.ws6{word-spacing:-0.277333pt;}
.ws2a{word-spacing:-0.249600pt;}
.ws74{word-spacing:-0.186667pt;}
.ws28{word-spacing:-0.149333pt;}
.wsb{word-spacing:-0.138667pt;}
.ws8c{word-spacing:-0.128000pt;}
.ws10{word-spacing:-0.096000pt;}
.ws71{word-spacing:-0.086134pt;}
.ws78{word-spacing:-0.085333pt;}
.ws45{word-spacing:-0.079190pt;}
.ws39{word-spacing:-0.079015pt;}
.ws46{word-spacing:-0.078935pt;}
.ws3a{word-spacing:-0.078760pt;}
.ws3f{word-spacing:-0.078185pt;}
.ws40{word-spacing:-0.077933pt;}
.ws59{word-spacing:-0.075582pt;}
.ws33{word-spacing:-0.075432pt;}
.ws5a{word-spacing:-0.075339pt;}
.ws34{word-spacing:-0.075189pt;}
.ws6a{word-spacing:-0.071779pt;}
.ws4{word-spacing:-0.069333pt;}
.ws91{word-spacing:-0.065762pt;}
.ws90{word-spacing:-0.065548pt;}
.ws6f{word-spacing:-0.057423pt;}
.ws3{word-spacing:-0.041600pt;}
.ws9{word-spacing:-0.027733pt;}
.ws2c{word-spacing:-0.021333pt;}
.wsc{word-spacing:0.000000pt;}
.ws56{word-spacing:0.034133pt;}
.ws5{word-spacing:0.097067pt;}
.ws7{word-spacing:0.166400pt;}
.ws7a{word-spacing:0.921600pt;}
.ws25{word-spacing:1.123200pt;}
.ws8d{word-spacing:1.248000pt;}
.ws2{word-spacing:2.801066pt;}
.ws35{word-spacing:12.533074pt;}
.ws5f{word-spacing:12.557920pt;}
.ws5b{word-spacing:12.557975pt;}
.ws64{word-spacing:12.557980pt;}
.ws41{word-spacing:12.990489pt;}
.ws3b{word-spacing:13.128264pt;}
.ws47{word-spacing:13.157481pt;}
.ws92{word-spacing:13.272705pt;}
.ws36{word-spacing:14.727402pt;}
.ws60{word-spacing:14.756598pt;}
.ws5c{word-spacing:14.756663pt;}
.ws65{word-spacing:14.756669pt;}
.ws42{word-spacing:15.264903pt;}
.ws3c{word-spacing:15.426800pt;}
.ws48{word-spacing:15.461131pt;}
.ws67{word-spacing:18.400044pt;}
.ws94{word-spacing:21.399049pt;}
.ws32{word-spacing:22.697575pt;}
.ws5e{word-spacing:22.742571pt;}
.ws58{word-spacing:22.742671pt;}
.ws63{word-spacing:22.742680pt;}
.ws3e{word-spacing:23.525960pt;}
.ws38{word-spacing:23.775473pt;}
.ws44{word-spacing:23.828384pt;}
.ws70{word-spacing:23.841971pt;}
.ws18{word-spacing:26.666667pt;}
.ws99{word-spacing:26.848000pt;}
.ws1b{word-spacing:26.858667pt;}
.ws24{word-spacing:28.021333pt;}
.ws72{word-spacing:28.028098pt;}
.ws6d{word-spacing:33.628828pt;}
.ws6c{word-spacing:33.633708pt;}
.ws6e{word-spacing:35.030033pt;}
.ws29{word-spacing:41.125301pt;}
.ws5d{word-spacing:86.976747pt;}
.ws57{word-spacing:86.977126pt;}
.ws37{word-spacing:90.926977pt;}
.ws43{word-spacing:91.129330pt;}
.ws93{word-spacing:113.254321pt;}
.ws31{word-spacing:228.548359pt;}
.ws61{word-spacing:229.002443pt;}
.ws62{word-spacing:229.002539pt;}
.ws3d{word-spacing:236.889608pt;}
.ws6b{word-spacing:282.323491pt;}
.ws81{word-spacing:1015.741867pt;}
.ws82{word-spacing:1176.421867pt;}
.ws2d{word-spacing:1329.363573pt;}
.ws55{word-spacing:1433.568533pt;}
.ws53{word-spacing:1440.719467pt;}
._29{margin-left:-2171.887465pt;}
._25{margin-left:-356.693336pt;}
._5{margin-left:-14.251504pt;}
._6{margin-left:-12.248356pt;}
._f{margin-left:-10.944000pt;}
._10{margin-left:-9.696534pt;}
._8{margin-left:-8.685859pt;}
._d{margin-left:-7.469341pt;}
._0{margin-left:-6.020799pt;}
._7{margin-left:-5.094346pt;}
._9{margin-left:-3.853861pt;}
._2{margin-left:-2.678671pt;}
._1{margin-left:-0.932800pt;}
._4{width:0.970666pt;}
._3{width:2.773332pt;}
._12{width:3.738153pt;}
._22{width:4.735300pt;}
._11{width:5.697120pt;}
._e{width:7.286138pt;}
._24{width:8.346969pt;}
._23{width:9.395998pt;}
._13{width:13.562133pt;}
._14{width:14.609600pt;}
._21{width:15.757177pt;}
._26{width:17.706961pt;}
._1a{width:19.696882pt;}
._28{width:22.857430pt;}
._a{width:28.373335pt;}
._15{width:29.312000pt;}
._20{width:36.906842pt;}
._2b{width:103.354082pt;}
._b{width:108.038400pt;}
._1e{width:133.714507pt;}
._1b{width:139.786820pt;}
._27{width:143.208719pt;}
._c{width:169.363200pt;}
._16{width:240.931735pt;}
._19{width:244.142018pt;}
._1f{width:245.235618pt;}
._1d{width:253.052383pt;}
._18{width:306.286515pt;}
._1c{width:317.464946pt;}
._17{width:1226.375460pt;}
._2a{width:2058.019733pt;}
.fs11{font-size:26.401300pt;}
.fs31{font-size:26.453639pt;}
.fs2b{font-size:26.453754pt;}
.fs37{font-size:26.453766pt;}
.fs1d{font-size:27.364859pt;}
.fs17{font-size:27.655086pt;}
.fs23{font-size:27.716631pt;}
.fs48{font-size:37.578440pt;}
.fs10{font-size:37.716143pt;}
.fs30{font-size:37.790913pt;}
.fs2a{font-size:37.791078pt;}
.fs36{font-size:37.791094pt;}
.fs1c{font-size:39.092655pt;}
.fs16{font-size:39.507266pt;}
.fs22{font-size:39.595187pt;}
.fs12{font-size:45.259379pt;}
.fs32{font-size:45.349103pt;}
.fs2c{font-size:45.349301pt;}
.fs38{font-size:45.349320pt;}
.fs4b{font-size:46.033391pt;}
.fs1e{font-size:46.911194pt;}
.fs18{font-size:47.408727pt;}
.fs24{font-size:47.514232pt;}
.fs3d{font-size:50.244994pt;}
.fs44{font-size:57.422850pt;}
.fsb{font-size:63.999993pt;}
.fsc{font-size:64.000000pt;}
.fs49{font-size:65.548432pt;}
.fs4a{font-size:65.762290pt;}
.fsd{font-size:67.889049pt;}
.fs2d{font-size:68.023636pt;}
.fs27{font-size:68.023932pt;}
.fs34{font-size:68.023961pt;}
.fs5{font-size:69.333325pt;}
.fs19{font-size:70.366772pt;}
.fs13{font-size:71.113071pt;}
.fs1f{font-size:71.271329pt;}
.fs3f{font-size:71.768149pt;}
.fs3b{font-size:71.778563pt;}
.fsf{font-size:75.189197pt;}
.fs2f{font-size:75.338228pt;}
.fs29{font-size:75.338557pt;}
.fs33{font-size:75.338568pt;}
.fse{font-size:75.432286pt;}
.fs2e{font-size:75.581826pt;}
.fs28{font-size:75.582155pt;}
.fs35{font-size:75.582187pt;}
.fs1b{font-size:77.933339pt;}
.fs1a{font-size:78.185311pt;}
.fs15{font-size:78.759935pt;}
.fs21{font-size:78.935160pt;}
.fs14{font-size:79.014532pt;}
.fs20{font-size:79.190374pt;}
.fs3a{font-size:80.000000pt;}
.fs25{font-size:85.333325pt;}
.fs43{font-size:86.134290pt;}
.fs4{font-size:96.000000pt;}
.fs47{font-size:96.000004pt;}
.fs41{font-size:100.489585pt;}
.fs8{font-size:101.333325pt;}
.fs3e{font-size:103.346123pt;}
.fs3c{font-size:103.361119pt;}
.fsa{font-size:106.666662pt;}
.fs42{font-size:107.652223pt;}
.fs46{font-size:117.333325pt;}
.fs1{font-size:128.000000pt;}
.fs39{font-size:133.333376pt;}
.fs3{font-size:135.947648pt;}
.fs2{font-size:138.666624pt;}
.fs40{font-size:143.557126pt;}
.fs9{font-size:149.333376pt;}
.fs26{font-size:170.666624pt;}
.fs45{font-size:186.666624pt;}
.fs6{font-size:192.000000pt;}
.fs7{font-size:213.333376pt;}
.fs0{font-size:282.666624pt;}
.y0{bottom:0.000000pt;}
.y128{bottom:0.000032pt;}
.y49{bottom:1.166595pt;}
.ya2{bottom:1.168906pt;}
.yb2{bottom:1.168907pt;}
.yc2{bottom:1.168912pt;}
.y6f{bottom:1.209171pt;}
.y5f{bottom:1.221996pt;}
.y82{bottom:1.224715pt;}
.y14f{bottom:3.840000pt;}
.y143{bottom:6.547468pt;}
.y1e{bottom:7.680000pt;}
.y80{bottom:8.311109pt;}
.ya0{bottom:10.051683pt;}
.yb0{bottom:10.053043pt;}
.y32{bottom:10.240000pt;}
.y14{bottom:11.200000pt;}
.y35{bottom:11.520000pt;}
.y5d{bottom:13.264596pt;}
.y126{bottom:15.680000pt;}
.y108{bottom:17.600000pt;}
.y3e{bottom:17.920000pt;}
.y9d{bottom:19.200000pt;}
.yf3{bottom:19.428644pt;}
.y48{bottom:22.380170pt;}
.yb1{bottom:22.424538pt;}
.ya1{bottom:22.424629pt;}
.yc1{bottom:22.424635pt;}
.yd7{bottom:22.424645pt;}
.y6e{bottom:23.196971pt;}
.y5e{bottom:23.442995pt;}
.y81{bottom:23.495166pt;}
.y142{bottom:25.419548pt;}
.y105{bottom:28.480000pt;}
.y4a{bottom:31.585856pt;}
.yb3{bottom:31.648473pt;}
.ya3{bottom:31.648604pt;}
.yc3{bottom:31.648611pt;}
.yd8{bottom:31.648624pt;}
.y70{bottom:32.738633pt;}
.y144{bottom:32.807121pt;}
.y60{bottom:33.085854pt;}
.y83{bottom:33.159485pt;}
.y154{bottom:36.800000pt;}
.y38{bottom:37.440000pt;}
.y34{bottom:39.360000pt;}
.yf1{bottom:41.175053pt;}
.yf2{bottom:49.502845pt;}
.y15{bottom:50.240000pt;}
.y46{bottom:51.520000pt;}
.y3c{bottom:54.720000pt;}
.yf4{bottom:62.037800pt;}
.yf9{bottom:67.721285pt;}
.y3b{bottom:69.760000pt;}
.y145{bottom:71.738887pt;}
.y14a{bottom:77.473491pt;}
.y45{bottom:80.960000pt;}
.y4b{bottom:81.557859pt;}
.yb4{bottom:81.719544pt;}
.ya4{bottom:81.719893pt;}
.yc4{bottom:81.719900pt;}
.yd9{bottom:81.719934pt;}
.y3f{bottom:82.880000pt;}
.y71{bottom:84.534448pt;}
.y61{bottom:85.431007pt;}
.y84{bottom:85.621128pt;}
.y30{bottom:86.400000pt;}
.yff{bottom:89.613421pt;}
.y153{bottom:94.720000pt;}
.y104{bottom:101.120000pt;}
.y50{bottom:101.762875pt;}
.yb9{bottom:101.964615pt;}
.ya9{bottom:101.965052pt;}
.yc9{bottom:101.965059pt;}
.yde{bottom:101.965102pt;}
.y76{bottom:105.476879pt;}
.y66{bottom:106.595550pt;}
.y89{bottom:106.832772pt;}
.y146{bottom:110.670653pt;}
.y5c{bottom:114.054947pt;}
.yd5{bottom:114.281553pt;}
.y118{bottom:114.560000pt;}
.y152{bottom:124.160000pt;}
.y5b{bottom:129.883768pt;}
.yd4{bottom:130.141823pt;}
.y4c{bottom:131.529816pt;}
.yb5{bottom:131.790567pt;}
.ya5{bottom:131.791135pt;}
.yc5{bottom:131.791141pt;}
.yda{bottom:131.791197pt;}
.y72{bottom:136.330213pt;}
.y124{bottom:136.960000pt;}
.y62{bottom:137.776110pt;}
.y85{bottom:138.082722pt;}
.y12{bottom:143.360000pt;}
.y2f{bottom:145.280000pt;}
.y5a{bottom:145.712590pt;}
.yd3{bottom:146.002094pt;}
.y147{bottom:149.602408pt;}
.y103{bottom:152.640000pt;}
.y117{bottom:158.400000pt;}
.y59{bottom:162.169942pt;}
.yd2{bottom:162.492144pt;}
.ye7{bottom:162.492212pt;}
.y7f{bottom:168.088601pt;}
.y123{bottom:168.960000pt;}
.y14b{bottom:172.330326pt;}
.yf5{bottom:172.991309pt;}
.y42{bottom:175.040000pt;}
.y58{bottom:179.163452pt;}
.yd1{bottom:179.519416pt;}
.ye6{bottom:179.519492pt;}
.y102{bottom:179.520000pt;}
.y4d{bottom:181.501820pt;}
.yb6{bottom:181.861638pt;}
.ya6{bottom:181.862424pt;}
.yc6{bottom:181.862430pt;}
.ydb{bottom:181.862507pt;}
.y3a{bottom:183.360000pt;}
.y11{bottom:184.640000pt;}
.y7e{bottom:185.702317pt;}
.y73{bottom:188.126028pt;}
.y148{bottom:188.534209pt;}
.y63{bottom:190.121263pt;}
.y86{bottom:190.544366pt;}
.y9c{bottom:190.720000pt;}
.y2e{bottom:195.840000pt;}
.y57{bottom:196.156962pt;}
.yd0{bottom:196.546689pt;}
.ye5{bottom:196.546772pt;}
.y116{bottom:198.400000pt;}
.y122{bottom:200.960000pt;}
.y7d{bottom:203.316033pt;}
.y101{bottom:204.800000pt;}
.y2d{bottom:211.840000pt;}
.yfa{bottom:212.622407pt;}
.y56{bottom:213.150472pt;}
.ybf{bottom:213.573031pt;}
.yaf{bottom:213.573955pt;}
.ycf{bottom:213.573962pt;}
.ye4{bottom:213.574052pt;}
.y9b{bottom:217.280000pt;}
.y7c{bottom:220.929749pt;}
.y6c{bottom:223.272895pt;}
.y8f{bottom:223.769775pt;}
.y10{bottom:224.640000pt;}
.y149{bottom:227.466011pt;}
.y55{bottom:230.143887pt;}
.ybe{bottom:230.600135pt;}
.yae{bottom:230.601134pt;}
.yce{bottom:230.601140pt;}
.ye3{bottom:230.601237pt;}
.y4e{bottom:231.473824pt;}
.y121{bottom:231.680000pt;}
.yb7{bottom:231.932708pt;}
.ya7{bottom:231.933713pt;}
.yc7{bottom:231.933719pt;}
.ydc{bottom:231.933817pt;}
.y159{bottom:232.320000pt;}
.y39{bottom:234.560000pt;}
.y13a{bottom:237.198903pt;}
.yba{bottom:237.837586pt;}
.yaa{bottom:237.838616pt;}
.y7b{bottom:238.543367pt;}
.y74{bottom:239.921842pt;}
.y6b{bottom:241.073320pt;}
.y8e{bottom:241.609814pt;}
.y64{bottom:242.466415pt;}
.y9a{bottom:242.560000pt;}
.y87{bottom:243.006009pt;}
.y115{bottom:246.400000pt;}
.y54{bottom:247.137397pt;}
.ybd{bottom:247.627334pt;}
.yad{bottom:247.628406pt;}
.ycd{bottom:247.628413pt;}
.ye2{bottom:247.628517pt;}
.y67{bottom:248.639475pt;}
.y8a{bottom:249.192807pt;}
.y51{bottom:249.860019pt;}
.yea{bottom:249.920000pt;}
.yca{bottom:250.356445pt;}
.ydf{bottom:250.356550pt;}
.y6{bottom:252.480000pt;}
.y7a{bottom:256.157083pt;}
.y6a{bottom:258.873845pt;}
.y77{bottom:258.979072pt;}
.y8d{bottom:259.449952pt;}
.y158{bottom:261.760000pt;}
.y53{bottom:264.130907pt;}
.yf{bottom:264.640000pt;}
.ybc{bottom:264.654532pt;}
.yac{bottom:264.655679pt;}
.ycc{bottom:264.655686pt;}
.ye1{bottom:264.655798pt;}
.y99{bottom:267.840000pt;}
.y79{bottom:273.770799pt;}
.y13b{bottom:276.130704pt;}
.y69{bottom:276.674369pt;}
.y120{bottom:277.120000pt;}
.y8c{bottom:277.290091pt;}
.y22{bottom:280.960000pt;}
.y52{bottom:281.124322pt;}
.y4f{bottom:281.445827pt;}
.ybb{bottom:281.681636pt;}
.yab{bottom:281.682857pt;}
.ycb{bottom:281.682864pt;}
.ye0{bottom:281.682983pt;}
.y140{bottom:281.865226pt;}
.yb8{bottom:282.003779pt;}
.ya8{bottom:282.005002pt;}
.yc8{bottom:282.005008pt;}
.ydd{bottom:282.005127pt;}
.yf6{bottom:283.944800pt;}
.yfc{bottom:284.941761pt;}
.y2c{bottom:285.120000pt;}
.y78{bottom:291.384417pt;}
.y75{bottom:291.717656pt;}
.y5{bottom:293.760000pt;}
.y114{bottom:294.400000pt;}
.y68{bottom:294.474794pt;}
.y65{bottom:294.811568pt;}
.y8b{bottom:295.130129pt;}
.y88{bottom:295.467653pt;}
.y98{bottom:302.720000pt;}
.ye{bottom:304.640000pt;}
.y21{bottom:308.800000pt;}
.y11f{bottom:309.120000pt;}
.y13c{bottom:315.062388pt;}
.y113{bottom:327.680000pt;}
.y97{bottom:328.000000pt;}
.y2b{bottom:330.560000pt;}
.y3{bottom:336.640000pt;}
.y4{bottom:337.058240pt;}
.y1d{bottom:340.480000pt;}
.yd{bottom:345.920000pt;}
.y13d{bottom:353.994190pt;}
.y11e{bottom:354.560000pt;}
.y160{bottom:355.200000pt;}
.y96{bottom:362.560000pt;}
.y6d{bottom:366.004133pt;}
.yc0{bottom:366.659067pt;}
.yd6{bottom:372.790800pt;}
.y112{bottom:375.680000pt;}
.y141{bottom:376.722108pt;}
.y47{bottom:377.744800pt;}
.y1c{bottom:379.200000pt;}
.y2a{bottom:384.000000pt;}
.y11d{bottom:384.960000pt;}
.yc{bottom:387.200000pt;}
.y95{bottom:387.840000pt;}
.yef{bottom:388.160000pt;}
.y29{bottom:390.400000pt;}
.y13e{bottom:392.925991pt;}
.y23{bottom:392.960000pt;}
.yf7{bottom:394.898310pt;}
.yfe{bottom:417.829302pt;}
.y1b{bottom:419.200000pt;}
.y94{bottom:422.720000pt;}
.y111{bottom:423.680000pt;}
.yb{bottom:427.200000pt;}
.y11c{bottom:430.400000pt;}
.y13f{bottom:431.857793pt;}
.y28{bottom:435.840000pt;}
.y129{bottom:441.590685pt;}
.y10b{bottom:442.240000pt;}
.y93{bottom:448.000000pt;}
.yfd{bottom:451.229550pt;}
.y1a{bottom:457.600000pt;}
.y11b{bottom:462.400000pt;}
.yee{bottom:465.920000pt;}
.ya{bottom:468.480000pt;}
.y10a{bottom:471.360000pt;}
.y110{bottom:471.680000pt;}
.yfb{bottom:473.306056pt;}
.y12a{bottom:480.522486pt;}
.y27{bottom:482.560000pt;}
.yed{bottom:482.880000pt;}
.y20{bottom:483.840000pt;}
.y19{bottom:484.480000pt;}
.y12f{bottom:486.257008pt;}
.y11a{bottom:494.400000pt;}
.y156{bottom:495.360000pt;}
.y109{bottom:499.520000pt;}
.y2{bottom:499.840000pt;}
.yf8{bottom:505.851819pt;}
.y10f{bottom:506.560000pt;}
.y92{bottom:507.840000pt;}
.y9{bottom:508.480000pt;}
.y12b{bottom:519.454170pt;}
.y18{bottom:523.200000pt;}
.y155{bottom:524.800000pt;}
.y41{bottom:525.760000pt;}
.y91{bottom:533.120000pt;}
.y37{bottom:534.400000pt;}
.y15f{bottom:534.720000pt;}
.yec{bottom:541.440000pt;}
.y26{bottom:542.400000pt;}
.y14c{bottom:542.720000pt;}
.y8{bottom:548.480000pt;}
.ye9{bottom:548.800000pt;}
.y127{bottom:549.760000pt;}
.y10e{bottom:554.560000pt;}
.y40{bottom:555.200000pt;}
.y12c{bottom:558.385972pt;}
.y15e{bottom:560.000000pt;}
.y44{bottom:560.640000pt;}
.y17{bottom:563.200000pt;}
.y136{bottom:563.609042pt;}
.y90{bottom:568.000000pt;}
.y1{bottom:576.000000pt;}
.y135{bottom:577.273588pt;}
.yeb{bottom:577.600000pt;}
.y130{bottom:581.113890pt;}
.y15d{bottom:585.280000pt;}
.y7{bottom:588.480013pt;}
.y10d{bottom:589.120013pt;}
.y134{bottom:591.383104pt;}
.y157{bottom:592.640013pt;}
.y31{bottom:593.280013pt;}
.y119{bottom:596.800013pt;}
.y12d{bottom:597.317773pt;}
.y25{bottom:601.280013pt;}
.y150{bottom:603.200013pt;}
.y133{bottom:605.492620pt;}
.y139{bottom:607.871650pt;}
.y15c{bottom:610.560013pt;}
.y106{bottom:618.560013pt;}
.y132{bottom:619.602136pt;}
.y138{bottom:621.014254pt;}
.y131{bottom:633.711652pt;}
.y137{bottom:634.156740pt;}
.y12e{bottom:636.249575pt;}
.y15b{bottom:637.440013pt;}
.y14d{bottom:640.319993pt;}
.y125{bottom:645.119993pt;}
.y43{bottom:645.760013pt;}
.y9f{bottom:646.400013pt;}
.y16{bottom:651.200013pt;}
.yf0{bottom:652.480013pt;}
.y3d{bottom:653.760013pt;}
.y161{bottom:655.679993pt;}
.y10c{bottom:655.680013pt;}
.y1f{bottom:656.320013pt;}
.y13{bottom:657.280013pt;}
.y24{bottom:657.600013pt;}
.y14e{bottom:658.880013pt;}
.y15a{bottom:659.199993pt;}
.y100{bottom:661.440013pt;}
.y107{bottom:664.960013pt;}
.y151{bottom:665.600013pt;}
.y33{bottom:665.920013pt;}
.y36{bottom:666.880013pt;}
.ye8{bottom:677.760013pt;}
.y9e{bottom:690.880013pt;}
.h5f{height:28.183830pt;}
.h1b{height:33.944534pt;}
.h41{height:34.011827pt;}
.h3a{height:34.011976pt;}
.h48{height:34.011990pt;}
.h1a{height:34.332846pt;}
.h40{height:34.400909pt;}
.h39{height:34.401059pt;}
.h47{height:34.401073pt;}
.h29{height:35.183396pt;}
.h22{height:35.556545pt;}
.h28{height:35.585879pt;}
.h30{height:35.635674pt;}
.h21{height:35.963297pt;}
.h2f{height:36.043332pt;}
.h12{height:42.656245pt;}
.h13{height:42.656250pt;}
.h62{height:49.321717pt;}
.h16{height:50.848898pt;}
.h18{height:50.916787pt;}
.h3c{height:50.949703pt;}
.h35{height:50.949925pt;}
.h44{height:50.949947pt;}
.h3e{height:51.017727pt;}
.h37{height:51.017949pt;}
.h46{height:51.017971pt;}
.h24{height:52.704712pt;}
.h26{height:52.775079pt;}
.h1d{height:53.263690pt;}
.h1f{height:53.334803pt;}
.h2b{height:53.382225pt;}
.h2d{height:53.453496pt;}
.h57{height:53.833922pt;}
.h4d{height:55.628386pt;}
.h17{height:56.574214pt;}
.h3d{height:56.686370pt;}
.h36{height:56.686617pt;}
.h45{height:56.686641pt;}
.h31{height:58.041661pt;}
.h25{height:58.638983pt;}
.h1e{height:59.260899pt;}
.h2c{height:59.392780pt;}
.h61{height:59.632512pt;}
.h59{height:61.124994pt;}
.h65{height:61.166661pt;}
.h51{height:63.731883pt;}
.hb{height:63.984375pt;}
.h5d{height:63.984378pt;}
.h55{height:64.600718pt;}
.h4f{height:65.339435pt;}
.h50{height:65.339723pt;}
.h56{height:66.754075pt;}
.h5{height:68.765625pt;}
.h9{height:68.812500pt;}
.h8{height:68.906250pt;}
.h6{height:69.984375pt;}
.h5a{height:71.264375pt;}
.h63{height:71.664375pt;}
.h32{height:74.224375pt;}
.h4e{height:77.520839pt;}
.h52{height:80.093245pt;}
.h54{height:80.739167pt;}
.h5c{height:84.046869pt;}
.h49{height:90.312500pt;}
.h3{height:90.609638pt;}
.hd{height:91.687500pt;}
.hc{height:92.500000pt;}
.h11{height:94.791637pt;}
.h4a{height:95.507843pt;}
.h2{height:96.958303pt;}
.h4{height:97.229137pt;}
.h10{height:105.364613pt;}
.h60{height:106.297648pt;}
.h53{height:107.667845pt;}
.h14{height:114.845625pt;}
.h33{height:115.999971pt;}
.he{height:117.287500pt;}
.h19{height:121.931753pt;}
.h3f{height:122.173430pt;}
.h38{height:122.173965pt;}
.h42{height:122.173982pt;}
.h27{height:126.381833pt;}
.h20{height:127.722296pt;}
.h2e{height:128.006453pt;}
.h58{height:130.520804pt;}
.h5b{height:131.250000pt;}
.h64{height:137.625000pt;}
.h7{height:139.406250pt;}
.ha{height:142.187528pt;}
.hf{height:145.504375pt;}
.h4b{height:148.064375pt;}
.h1{height:188.398409pt;}
.h15{height:340.718267pt;}
.h3b{height:341.393733pt;}
.h34{height:341.395200pt;}
.h43{height:341.395333pt;}
.h23{height:353.153333pt;}
.h1c{height:356.898800pt;}
.h2a{height:357.693067pt;}
.h4c{height:581.075200pt;}
.h5e{height:719.999968pt;}
.h0{height:720.000000pt;}
.w1{width:407.544267pt;}
.w6{width:408.352000pt;}
.w5{width:408.353733pt;}
.w7{width:408.353867pt;}
.w3{width:422.418133pt;}
.w2{width:426.898533pt;}
.w4{width:427.848267pt;}
.w8{width:715.999867pt;}
.w9{width:719.036800pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x30{left:9.036116pt;}
.x21{left:16.785507pt;}
.x2d{left:19.065231pt;}
.x34{left:19.970640pt;}
.x5f{left:24.000000pt;}
.x1{left:26.773227pt;}
.x33{left:28.829427pt;}
.x50{left:32.344090pt;}
.x7{left:36.390653pt;}
.x64{left:40.697614pt;}
.x62{left:42.995433pt;}
.x4d{left:44.400107pt;}
.x49{left:45.600213pt;}
.x2c{left:47.063682pt;}
.x60{left:48.000000pt;}
.x31{left:49.298738pt;}
.x16{left:52.800000pt;}
.x68{left:55.035585pt;}
.x47{left:57.353800pt;}
.x48{left:59.120000pt;}
.x15{left:64.466347pt;}
.x9{left:68.331240pt;}
.x4a{left:69.600213pt;}
.x4b{left:71.120213pt;}
.xc{left:73.200000pt;}
.x8{left:74.123987pt;}
.x17{left:76.800000pt;}
.x57{left:84.390653pt;}
.x61{left:91.785413pt;}
.x42{left:93.013925pt;}
.xe{left:97.200000pt;}
.x4c{left:101.686867pt;}
.xd{left:103.200000pt;}
.x39{left:108.485197pt;}
.x40{left:111.087079pt;}
.x36{left:114.913097pt;}
.x32{left:116.131918pt;}
.x69{left:123.535816pt;}
.x18{left:127.386653pt;}
.x1d{left:142.466400pt;}
.x55{left:155.252495pt;}
.x3d{left:159.600000pt;}
.x2e{left:161.967990pt;}
.x58{left:164.400000pt;}
.x37{left:167.879253pt;}
.x3f{left:187.888533pt;}
.x51{left:189.110106pt;}
.x45{left:196.718133pt;}
.x41{left:198.732191pt;}
.x65{left:201.883457pt;}
.x1a{left:203.734133pt;}
.x35{left:207.757290pt;}
.x29{left:209.776400pt;}
.x4f{left:220.850452pt;}
.x6{left:223.200000pt;}
.x5a{left:251.266667pt;}
.x2f{left:261.466994pt;}
.x2{left:269.739867pt;}
.x1e{left:278.251600pt;}
.x56{left:294.008000pt;}
.x3{left:319.200000pt;}
.x52{left:329.798914pt;}
.x26{left:332.509067pt;}
.x5e{left:342.000000pt;}
.x6c{left:352.252667pt;}
.x6a{left:367.816599pt;}
.x11{left:389.320400pt;}
.xb{left:393.400000pt;}
.x28{left:395.554400pt;}
.x19{left:403.380000pt;}
.x24{left:407.967867pt;}
.x6b{left:429.185571pt;}
.x38{left:431.208267pt;}
.x2b{left:433.820000pt;}
.x54{left:450.389321pt;}
.x70{left:457.607467pt;}
.x2a{left:466.325867pt;}
.x74{left:475.088400pt;}
.x22{left:500.701600pt;}
.xf{left:501.618667pt;}
.x1f{left:504.970667pt;}
.x23{left:511.870000pt;}
.x46{left:523.507333pt;}
.x4e{left:527.999867pt;}
.x63{left:535.534133pt;}
.x13{left:557.058000pt;}
.x6e{left:585.600000pt;}
.x67{left:588.925480pt;}
.x12{left:590.020800pt;}
.x10{left:604.564000pt;}
.x66{left:610.904745pt;}
.x25{left:639.996667pt;}
.x4{left:649.773333pt;}
.x5{left:661.606667pt;}
.x53{left:680.112065pt;}
.x43{left:739.704800pt;}
.x44{left:746.658933pt;}
.x1b{left:750.000000pt;}
.x3a{left:830.400000pt;}
.x6f{left:833.066667pt;}
.x3b{left:854.400000pt;}
.x5c{left:866.400000pt;}
.x6d{left:889.200000pt;}
.x5d{left:896.400000pt;}
.x20{left:906.861067pt;}
.x3e{left:913.200000pt;}
.x5b{left:916.800000pt;}
.x27{left:948.309600pt;}
.x73{left:951.478667pt;}
.x3c{left:969.076267pt;}
.x71{left:989.043733pt;}
.x59{left:992.863467pt;}
.x72{left:1036.210400pt;}
.x1c{left:1037.506800pt;}
.xa{left:1083.600000pt;}
.x14{left:1096.900267pt;}
}




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