
    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_46dfba5c26c2b92c6b8caaac.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0934d281fa4929bee48ed6fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115723;font-style:normal;font-weight: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_8d17530e4aae4ca3009610ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.949219;font-style:normal;font-weight: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_9458ec3f992f68b8e26f4259.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.712000;font-style:normal;font-weight: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_b44f761a9f30c145a27fa967.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0116cea947ee1aace348fe9b.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_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0116cea947ee1aace348fe9b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8851b21a9691626b63af3617.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.136719;font-style:normal;font-weight: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_1314dcf69d527c92720866a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.905273;font-style:normal;font-weight: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_16a0ecf31f4a81115bdce306.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.113281;font-style:normal;font-weight: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_46dfba5c26c2b92c6b8caaac.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0116cea947ee1aace348fe9b.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_177ec753b1fe9b5d760c030a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.093262;font-style:normal;font-weight: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_848b0384c67e6dc24b8599e2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.111328;font-style:normal;font-weight: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_821a9b8bcd7b05437db92176.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910645;font-style:normal;font-weight: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_0116cea947ee1aace348fe9b.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_6980c1ab51efa6448ecfbf5c.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_eb8d5db8e516c436b777dbe3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_10b500ac8f7b3728f4ebc63b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.750000;font-style:normal;font-weight: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_3ffe261f732343161b48874b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910645;font-style:normal;font-weight: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_7fc0b86f070104024533f4cd.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.693848;font-style:normal;font-weight: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_fbf4bf3ccc73c38b0c9748de.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.138184;font-style:normal;font-weight: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_a6ad75ee20c01d95d816b0d4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.893555;font-style:normal;font-weight: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_9a594652d372d0741bb3d4e5.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_50d3df9c29812a517fe37ae8.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.708008;font-style:normal;font-weight: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_d62d23296d7018ee912abb57.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.799805;font-style:normal;font-weight: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_585c617f0957bdb3b92665fd.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910645;font-style:normal;font-weight: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_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_9c44718502ede79c2571522b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.920410;font-style:normal;font-weight: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_ae2112393a4ab595061f9044.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_963a9510984e70c48fadfa29.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.680664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_6e660be0e6c00e191c05de50.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.093262;font-style:normal;font-weight: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_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_ca22907b07094c0a82d1fd90.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.138184;font-style:normal;font-weight: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_ae2112393a4ab595061f9044.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_78378c73d5207dfcb8a2912c.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.893555;font-style:normal;font-weight: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_21bfe8cdfbfedda0be1c641d.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_9a594652d372d0741bb3d4e5.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_6216b6bbc18c3921099d6abe.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.910645;font-style:normal;font-weight: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_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_d8ef7cac43fd8550afd0fcf5.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.138184;font-style:normal;font-weight: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_7787e962a3a5c2cf777921b9.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_05e6fbff1c8846adac3eeaf8.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.892090;font-style:normal;font-weight: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_6f8dff96acda61eba65cbd48.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.006836;font-style:normal;font-weight: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_92deb99fe26ce0d8f0609eb3.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.093262;font-style:normal;font-weight: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_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_aeb64bea3aadf9cf22f07f17.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.138184;font-style:normal;font-weight: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_911fa61035535f410c94f328.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.892578;font-style:normal;font-weight: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_925fb8b594660d5aeb01984b.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_9a594652d372d0741bb3d4e5.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_44dfbea0624cd8267a59e432.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.910645;font-style:normal;font-weight: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_7db4bd6faa0bcc572b837433.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.138184;font-style:normal;font-weight: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_7339f79ff8737557fc7d935d.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_6442e635388c91becf7c54b0.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.887695;font-style:normal;font-weight: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_4eefe57ad47ba493a520dcd0.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.910645;font-style:normal;font-weight: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_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_3ddd3345cd5d656feaf0579c.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.920410;font-style:normal;font-weight: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_7339f79ff8737557fc7d935d.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_65c8dba2da39b789cf72f938.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_e10ba138218f406f12dd6f34.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_9e86fa3889ed4f943abf6bf3.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.708008;font-style:normal;font-weight: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_9226583a157488dc005c416d.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.910645;font-style:normal;font-weight: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_7e9a5fb2701a5b3974483cdf.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.717285;font-style:normal;font-weight: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_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_a6d16e85a1254dd86ae22c0c.woff2')format("woff");}.ff46{font-family:ff46;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:ff47;src:url('chunks/assets/font_8ca8be809c112b22f07d12df.woff2')format("woff");}.ff47{font-family:ff47;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:ff48;src:url('chunks/assets/font_67921fc6c6c7933dd8d0a9ae.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.701172;font-style:normal;font-weight: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_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff49{font-family:ff49;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:ff4a;src:url('chunks/assets/font_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff4a{font-family:ff4a;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:ff4b;src:url('chunks/assets/font_0116cea947ee1aace348fe9b.woff2')format("woff");}.ff4b{font-family:ff4b;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:ff4c;src:url('chunks/assets/font_ea2b76b8d47f997a80c3a185.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_dbfcb27f03275b8803061b67.woff2')format("woff");}.ff4d{font-family:ff4d;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:ff4e;src:url('chunks/assets/font_31648f38acb90d7d3d403ec5.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;}
.m2{transform:matrix(0.236144,0.000000,-0.080763,0.236595,0,0);-ms-transform:matrix(0.236144,0.000000,-0.080763,0.236595,0,0);-webkit-transform:matrix(0.236144,0.000000,-0.080763,0.236595,0,0);}
.m0{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls60{letter-spacing:-2.880000px;}
.ls23{letter-spacing:-2.736000px;}
.ls3a{letter-spacing:-2.376000px;}
.ls55{letter-spacing:-2.232000px;}
.ls38{letter-spacing:-2.088000px;}
.lsa5{letter-spacing:-1.944000px;}
.lsbf{letter-spacing:-1.905120px;}
.ls49{letter-spacing:-1.728000px;}
.ls5e{letter-spacing:-1.584000px;}
.lsc8{letter-spacing:-1.451520px;}
.ls22{letter-spacing:-1.440000px;}
.lsca{letter-spacing:-1.439424px;}
.lsc9{letter-spacing:-1.391040px;}
.ls1b{letter-spacing:-1.296000px;}
.lsd3{letter-spacing:-1.188000px;}
.ls3b{letter-spacing:-1.152000px;}
.lsc4{letter-spacing:-0.973728px;}
.lsc7{letter-spacing:-0.967680px;}
.lsd1{letter-spacing:-0.950400px;}
.lsc1{letter-spacing:-0.937440px;}
.lsd5{letter-spacing:-0.936144px;}
.ls20{letter-spacing:-0.936000px;}
.lsb7{letter-spacing:-0.907200px;}
.ls36{letter-spacing:-0.792000px;}
.ls29{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.648000px;}
.lscc{letter-spacing:-0.522720px;}
.lsfb{letter-spacing:-0.508032px;}
.ls47{letter-spacing:-0.504000px;}
.lsc3{letter-spacing:-0.483840px;}
.lsfa{letter-spacing:-0.465696px;}
.ls13{letter-spacing:-0.410400px;}
.lsd6{letter-spacing:-0.361152px;}
.lsd{letter-spacing:-0.360720px;}
.ls21{letter-spacing:-0.288000px;}
.lsce{letter-spacing:-0.237600px;}
.lsa{letter-spacing:-0.203112px;}
.ls6e{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.076608px;}
.ls10{letter-spacing:-0.043200px;}
.ls4{letter-spacing:0.000000px;}
.ls75{letter-spacing:0.012000px;}
.lsd2{letter-spacing:0.014256px;}
.lsea{letter-spacing:0.018144px;}
.ls101{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.072000px;}
.lsf9{letter-spacing:0.076320px;}
.ls6{letter-spacing:0.092232px;}
.lsba{letter-spacing:0.096480px;}
.lsf{letter-spacing:0.114912px;}
.lsaf{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.120240px;}
.ls4a{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.180000px;}
.lscd{letter-spacing:0.190080px;}
.ls11{letter-spacing:0.194400px;}
.ls8{letter-spacing:0.204408px;}
.ls24{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.228456px;}
.ls54{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.309600px;}
.ls7{letter-spacing:0.335160px;}
.lsbd{letter-spacing:0.360000px;}
.lse{letter-spacing:0.367200px;}
.ls3{letter-spacing:0.402192px;}
.ls0{letter-spacing:0.421848px;}
.lsc5{letter-spacing:0.423360px;}
.lscb{letter-spacing:0.427680px;}
.ls19{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.445748px;}
.ls1{letter-spacing:0.450072px;}
.lsbc{letter-spacing:0.465696px;}
.lscf{letter-spacing:0.475200px;}
.lsc2{letter-spacing:0.483840px;}
.lsf7{letter-spacing:0.495360px;}
.ls48{letter-spacing:0.504000px;}
.lsbb{letter-spacing:0.515520px;}
.ls5f{letter-spacing:0.576000px;}
.ls8b{letter-spacing:0.624000px;}
.ls16{letter-spacing:0.648000px;}
.lsbe{letter-spacing:0.665280px;}
.lsf8{letter-spacing:0.675360px;}
.ls102{letter-spacing:0.684000px;}
.ls18{letter-spacing:0.720000px;}
.lsd4{letter-spacing:0.722304px;}
.ls7a{letter-spacing:0.732000px;}
.ls26{letter-spacing:0.792000px;}
.ls2a{letter-spacing:0.840000px;}
.lsfd{letter-spacing:0.846720px;}
.ls8c{letter-spacing:0.864000px;}
.ls1f{letter-spacing:0.900000px;}
.lsf6{letter-spacing:0.933120px;}
.lsf1{letter-spacing:0.936000px;}
.ls1a{letter-spacing:1.080000px;}
.lsd0{letter-spacing:1.140480px;}
.ls30{letter-spacing:1.152000px;}
.ls28{letter-spacing:1.224000px;}
.lsf2{letter-spacing:1.296000px;}
.lsfc{letter-spacing:1.330560px;}
.ls25{letter-spacing:1.368000px;}
.lsc0{letter-spacing:1.391040px;}
.lsc6{letter-spacing:1.439424px;}
.ls1c{letter-spacing:1.440000px;}
.lse3{letter-spacing:1.452000px;}
.ls27{letter-spacing:1.512000px;}
.ls79{letter-spacing:1.560000px;}
.lsa6{letter-spacing:1.584000px;}
.ls8e{letter-spacing:1.620000px;}
.ls6a{letter-spacing:1.656000px;}
.ls35{letter-spacing:1.872000px;}
.ls37{letter-spacing:1.944000px;}
.lsb9{letter-spacing:1.955520px;}
.ls105{letter-spacing:2.016000px;}
.ls69{letter-spacing:2.088000px;}
.ls2b{letter-spacing:2.160000px;}
.ls9b{letter-spacing:2.172000px;}
.ls70{letter-spacing:2.280000px;}
.ls6b{letter-spacing:2.340000px;}
.ls6f{letter-spacing:2.520000px;}
.ls39{letter-spacing:2.592000px;}
.lsb2{letter-spacing:2.808000px;}
.lsee{letter-spacing:2.820000px;}
.ls32{letter-spacing:2.880000px;}
.ls100{letter-spacing:2.928000px;}
.ls68{letter-spacing:2.952000px;}
.lsf3{letter-spacing:3.024000px;}
.lsb4{letter-spacing:3.060000px;}
.ls2d{letter-spacing:3.600000px;}
.lsf0{letter-spacing:3.612000px;}
.ls2e{letter-spacing:3.720000px;}
.lsfe{letter-spacing:3.744000px;}
.lsaa{letter-spacing:3.780000px;}
.lsb0{letter-spacing:4.248000px;}
.lsed{letter-spacing:4.428000px;}
.ls103{letter-spacing:4.608000px;}
.ls33{letter-spacing:5.040000px;}
.ls109{letter-spacing:5.052000px;}
.ls84{letter-spacing:5.160000px;}
.lsec{letter-spacing:5.184000px;}
.ls58{letter-spacing:5.220000px;}
.lsb3{letter-spacing:5.688000px;}
.lsdb{letter-spacing:5.808000px;}
.ls34{letter-spacing:6.480000px;}
.ls5b{letter-spacing:6.492000px;}
.ls8d{letter-spacing:6.600000px;}
.ls90{letter-spacing:6.624000px;}
.ls46{letter-spacing:6.660000px;}
.lsda{letter-spacing:7.128000px;}
.lsef{letter-spacing:7.248000px;}
.ls43{letter-spacing:7.920000px;}
.lsa8{letter-spacing:7.932000px;}
.ls4b{letter-spacing:8.040000px;}
.ls104{letter-spacing:8.064000px;}
.ls5d{letter-spacing:8.100000px;}
.lsae{letter-spacing:8.568000px;}
.ls45{letter-spacing:9.360000px;}
.ls10a{letter-spacing:9.372000px;}
.ls89{letter-spacing:9.480000px;}
.lsa1{letter-spacing:9.504000px;}
.ls93{letter-spacing:9.540000px;}
.ls9a{letter-spacing:9.648000px;}
.ls7e{letter-spacing:9.768000px;}
.lseb{letter-spacing:10.008000px;}
.ls2f{letter-spacing:10.800000px;}
.ls42{letter-spacing:10.920000px;}
.lsd7{letter-spacing:10.980000px;}
.ls85{letter-spacing:11.088000px;}
.lsb5{letter-spacing:11.448000px;}
.ls31{letter-spacing:12.240000px;}
.ls56{letter-spacing:12.360000px;}
.lsd9{letter-spacing:12.384000px;}
.ls81{letter-spacing:12.420000px;}
.ls6c{letter-spacing:12.528000px;}
.ls8f{letter-spacing:12.540000px;}
.lse9{letter-spacing:12.888000px;}
.ls4d{letter-spacing:13.680000px;}
.lsa4{letter-spacing:13.692000px;}
.ls71{letter-spacing:13.800000px;}
.ls72{letter-spacing:13.860000px;}
.lsa0{letter-spacing:13.968000px;}
.ls9f{letter-spacing:14.088000px;}
.ls99{letter-spacing:14.148000px;}
.lse7{letter-spacing:14.328000px;}
.ls64{letter-spacing:15.120000px;}
.ls65{letter-spacing:15.240000px;}
.ls63{letter-spacing:15.300000px;}
.ls9e{letter-spacing:15.408000px;}
.ls74{letter-spacing:15.552000px;}
.lsdc{letter-spacing:15.768000px;}
.ls61{letter-spacing:16.560000px;}
.ls44{letter-spacing:16.572000px;}
.ls77{letter-spacing:16.680000px;}
.lsd8{letter-spacing:16.704000px;}
.ls62{letter-spacing:16.740000px;}
.ls7f{letter-spacing:16.848000px;}
.ls94{letter-spacing:16.968000px;}
.ls3f{letter-spacing:18.000000px;}
.ls87{letter-spacing:18.120000px;}
.ls57{letter-spacing:18.180000px;}
.ls9d{letter-spacing:18.288000px;}
.lsf4{letter-spacing:18.468000px;}
.lse2{letter-spacing:18.828000px;}
.ls3d{letter-spacing:19.440000px;}
.ls40{letter-spacing:19.560000px;}
.ls88{letter-spacing:19.620000px;}
.lsdf{letter-spacing:19.728000px;}
.lsdd{letter-spacing:20.088000px;}
.ls3c{letter-spacing:20.880000px;}
.ls83{letter-spacing:21.000000px;}
.ls5c{letter-spacing:21.024000px;}
.lse4{letter-spacing:21.060000px;}
.lsb6{letter-spacing:21.528000px;}
.lsde{letter-spacing:21.708000px;}
.ls4c{letter-spacing:22.320000px;}
.lsac{letter-spacing:22.332000px;}
.lsad{letter-spacing:22.500000px;}
.ls9c{letter-spacing:22.788000px;}
.ls7c{letter-spacing:23.760000px;}
.ls53{letter-spacing:23.880000px;}
.ls7d{letter-spacing:23.940000px;}
.ls82{letter-spacing:24.048000px;}
.ls51{letter-spacing:25.200000px;}
.lsa7{letter-spacing:25.320000px;}
.ls6d{letter-spacing:25.380000px;}
.ls2c{letter-spacing:26.640000px;}
.ls8a{letter-spacing:26.760000px;}
.lse6{letter-spacing:26.784000px;}
.ls52{letter-spacing:26.820000px;}
.ls76{letter-spacing:26.928000px;}
.ls86{letter-spacing:28.080000px;}
.ls95{letter-spacing:28.368000px;}
.ls92{letter-spacing:29.520000px;}
.lsb1{letter-spacing:29.640000px;}
.ls78{letter-spacing:29.808000px;}
.lsab{letter-spacing:30.960000px;}
.ls10b{letter-spacing:31.104000px;}
.lsf5{letter-spacing:31.248000px;}
.ls66{letter-spacing:32.400000px;}
.ls67{letter-spacing:32.520000px;}
.lsa3{letter-spacing:33.840000px;}
.ls80{letter-spacing:34.128000px;}
.ls4f{letter-spacing:35.280000px;}
.ls4e{letter-spacing:35.424000px;}
.lse5{letter-spacing:35.460000px;}
.ls50{letter-spacing:36.720000px;}
.ls3e{letter-spacing:38.160000px;}
.lsa2{letter-spacing:38.448000px;}
.ls91{letter-spacing:39.600000px;}
.ls59{letter-spacing:41.040000px;}
.ls5a{letter-spacing:42.480000px;}
.ls7b{letter-spacing:42.600000px;}
.ls98{letter-spacing:44.040000px;}
.ls41{letter-spacing:49.680000px;}
.lsa9{letter-spacing:51.240000px;}
.lse8{letter-spacing:54.000000px;}
.lse0{letter-spacing:55.440000px;}
.ls96{letter-spacing:56.880000px;}
.ls97{letter-spacing:58.320000px;}
.lse1{letter-spacing:64.368000px;}
.ls17{letter-spacing:136.200000px;}
.ls15{letter-spacing:162.180000px;}
.ls108{letter-spacing:180.720000px;}
.ls107{letter-spacing:182.280000px;}
.lsb8{letter-spacing:846.276000px;}
.lsff{letter-spacing:1127.369760px;}
.ls106{letter-spacing:1340.645760px;}
.ls73{letter-spacing:1356.485760px;}
.ls1e{letter-spacing:1373.765760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4b{word-spacing:-72.000000px;}
.ws55{word-spacing:-69.120000px;}
.ws32{word-spacing:-47.520000px;}
.ws50{word-spacing:-21.024000px;}
.ws23{word-spacing:-20.952000px;}
.ws2b{word-spacing:-20.880000px;}
.ws4a{word-spacing:-20.808000px;}
.ws18{word-spacing:-20.592000px;}
.ws27{word-spacing:-20.520000px;}
.ws24{word-spacing:-20.088000px;}
.ws56{word-spacing:-20.016000px;}
.ws16{word-spacing:-19.944000px;}
.ws12{word-spacing:-19.872000px;}
.ws25{word-spacing:-19.656000px;}
.ws2d{word-spacing:-19.584000px;}
.wsb{word-spacing:-19.512000px;}
.ws6{word-spacing:-19.440000px;}
.ws9{word-spacing:-19.368000px;}
.ws4f{word-spacing:-19.296000px;}
.ws29{word-spacing:-19.224000px;}
.ws15{word-spacing:-19.152000px;}
.ws4{word-spacing:-19.080000px;}
.ws4e{word-spacing:-18.936000px;}
.ws2a{word-spacing:-18.864000px;}
.wsa{word-spacing:-18.792000px;}
.ws8{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.648000px;}
.ws22{word-spacing:-18.576000px;}
.ws1c{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.432000px;}
.ws1f{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws1e{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws26{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.712000px;}
.ws1b{word-spacing:-17.496000px;}
.ws10{word-spacing:-17.352000px;}
.ws4c{word-spacing:-17.280000px;}
.ws13{word-spacing:-17.208000px;}
.wsc{word-spacing:-17.064000px;}
.ws1a{word-spacing:-16.848000px;}
.ws5{word-spacing:-16.704000px;}
.wse{word-spacing:-16.560000px;}
.ws37{word-spacing:-16.559424px;}
.ws30{word-spacing:-16.511040px;}
.ws53{word-spacing:-16.450560px;}
.ws21{word-spacing:-16.416000px;}
.ws1d{word-spacing:-16.272000px;}
.ws2c{word-spacing:-16.056000px;}
.ws54{word-spacing:-15.966720px;}
.ws17{word-spacing:-15.912000px;}
.ws20{word-spacing:-15.768000px;}
.ws19{word-spacing:-15.624000px;}
.ws33{word-spacing:-15.603840px;}
.ws3a{word-spacing:-15.585696px;}
.ws36{word-spacing:-15.543360px;}
.ws14{word-spacing:-15.264000px;}
.ws4d{word-spacing:-15.138144px;}
.wsd{word-spacing:-15.120000px;}
.ws51{word-spacing:-14.654304px;}
.ws34{word-spacing:-14.636160px;}
.ws52{word-spacing:-14.611968px;}
.ws2e{word-spacing:-14.212800px;}
.ws31{word-spacing:-14.182560px;}
.ws38{word-spacing:-14.152320px;}
.ws35{word-spacing:-14.146272px;}
.ws3b{word-spacing:-13.728960px;}
.ws3c{word-spacing:-13.680576px;}
.ws39{word-spacing:-13.668480px;}
.ws2f{word-spacing:-13.214880px;}
.ws44{word-spacing:-13.020480px;}
.ws48{word-spacing:-12.602304px;}
.ws41{word-spacing:-12.545280px;}
.ws43{word-spacing:-12.355200px;}
.ws3d{word-spacing:-12.307680px;}
.ws40{word-spacing:-12.070080px;}
.ws46{word-spacing:-11.894256px;}
.ws3e{word-spacing:-11.880000px;}
.ws42{word-spacing:-11.642400px;}
.ws3f{word-spacing:-11.357280px;}
.ws49{word-spacing:-10.943856px;}
.ws45{word-spacing:-10.929600px;}
.ws47{word-spacing:-10.692000px;}
.ws28{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._4a{margin-left:-56.132640px;}
._3c{margin-left:-31.783200px;}
._46{margin-left:-23.112480px;}
._2f{margin-left:-21.164880px;}
._3e{margin-left:-17.346480px;}
._3f{margin-left:-14.741760px;}
._38{margin-left:-12.592800px;}
._41{margin-left:-11.407680px;}
._42{margin-left:-10.210560px;}
._36{margin-left:-8.824320px;}
._37{margin-left:-7.202640px;}
._35{margin-left:-5.930160px;}
._2b{margin-left:-4.122240px;}
._b{margin-left:-3.051120px;}
._0{margin-left:-2.031120px;}
._2{margin-left:-1.008720px;}
._1{width:1.054080px;}
._6{width:2.559120px;}
._c{width:3.708000px;}
._24{width:5.043360px;}
._21{width:6.169680px;}
._25{width:7.408320px;}
._23{width:8.624160px;}
._28{width:9.702720px;}
._1a{width:11.434320px;}
._30{width:12.435840px;}
._5{width:13.523280px;}
._1b{width:15.293040px;}
._22{width:16.714800px;}
._1c{width:19.945920px;}
._1d{width:21.420000px;}
._1e{width:22.925040px;}
._26{width:23.930400px;}
._27{width:25.401600px;}
._7{width:26.640000px;}
._2a{width:28.052880px;}
._1f{width:30.003120px;}
._20{width:31.193040px;}
._15{width:32.394960px;}
._39{width:34.794960px;}
._3a{width:36.061680px;}
._31{width:37.477920px;}
._32{width:39.064320px;}
._40{width:40.229280px;}
._3b{width:41.381040px;}
._18{width:43.152000px;}
._3d{width:44.729760px;}
._45{width:48.013920px;}
._33{width:49.116000px;}
._34{width:50.520000px;}
._4b{width:54.516240px;}
._49{width:55.589520px;}
._43{width:56.682480px;}
._16{width:58.116000px;}
._4c{width:60.396000px;}
._2d{width:67.464000px;}
._2e{width:69.061920px;}
._2c{width:70.722240px;}
._12{width:71.774400px;}
._44{width:83.847840px;}
._17{width:84.850080px;}
._9{width:90.248880px;}
._e{width:136.045920px;}
._a{width:141.070080px;}
._10{width:147.157920px;}
._8{width:148.230960px;}
._d{width:150.029040px;}
._13{width:160.551360px;}
._11{width:178.158960px;}
._4e{width:180.952080px;}
._f{width:182.091840px;}
._14{width:188.190960px;}
._3{width:197.221920px;}
._4{width:198.958080px;}
._4d{width:759.750240px;}
._29{width:846.276000px;}
._47{width:849.329760px;}
._48{width:1350.749760px;}
._19{width:1389.605760px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:47.520000px;}
.fs7{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fsb{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fsf{font-size:96.480000px;}
.fsc{font-size:119.520000px;}
.fs5{font-size:120.240000px;}
.fs3{font-size:131.760000px;}
.fse{font-size:132.480000px;}
.fsd{font-size:155.520000px;}
.fs1{font-size:156.240000px;}
.fs2{font-size:165.091783px;}
.y1b3{bottom:-9.720000px;}
.y0{bottom:0.000000px;}
.y212{bottom:2.880000px;}
.y216{bottom:3.240000px;}
.y1b7{bottom:5.040000px;}
.y1bc{bottom:5.085000px;}
.y1b9{bottom:5.400000px;}
.y10{bottom:6.300000px;}
.y200{bottom:6.840000px;}
.yc{bottom:7.200000px;}
.y1b2{bottom:7.560000px;}
.y12{bottom:8.100000px;}
.y1b5{bottom:8.280000px;}
.y1fe{bottom:10.800000px;}
.y6{bottom:12.060000px;}
.y139{bottom:14.760000px;}
.y13d{bottom:14.790000px;}
.y188{bottom:18.360000px;}
.y12e{bottom:20.160000px;}
.y137{bottom:20.190000px;}
.y130{bottom:20.520000px;}
.y13c{bottom:20.550000px;}
.y1b4{bottom:25.605000px;}
.y210{bottom:27.045000px;}
.y181{bottom:27.720000px;}
.y184{bottom:27.750000px;}
.y17a{bottom:28.440000px;}
.y147{bottom:30.600000px;}
.y142{bottom:30.630000px;}
.y1fd{bottom:31.680000px;}
.y12d{bottom:35.640000px;}
.y136{bottom:35.670000px;}
.y12c{bottom:36.000000px;}
.y141{bottom:36.030000px;}
.y145{bottom:36.360000px;}
.y140{bottom:36.390000px;}
.y187{bottom:39.240000px;}
.y17e{bottom:43.200000px;}
.y18a{bottom:47.160000px;}
.y17c{bottom:47.190000px;}
.y18c{bottom:47.205000px;}
.y186{bottom:48.240000px;}
.y183{bottom:48.270000px;}
.y180{bottom:48.285000px;}
.y178{bottom:49.005000px;}
.y135{bottom:51.870000px;}
.y1ce{bottom:55.110000px;}
.y1f7{bottom:57.960000px;}
.y59{bottom:58.320000px;}
.y134{bottom:67.710000px;}
.y179{bottom:69.885000px;}
.y81{bottom:75.600000px;}
.y1a3{bottom:76.680000px;}
.y58{bottom:78.120000px;}
.y133{bottom:83.550000px;}
.y132{bottom:83.910000px;}
.y1cd{bottom:96.870000px;}
.yf{bottom:109.800000px;}
.y191{bottom:114.156000px;}
.y220{bottom:114.876000px;}
.ye{bottom:116.100000px;}
.y93{bottom:116.676000px;}
.y44{bottom:119.196000px;}
.yc7{bottom:119.916000px;}
.y167{bottom:121.716000px;}
.y2a{bottom:121.860000px;}
.yd3{bottom:122.076000px;}
.yb9{bottom:122.796000px;}
.y1f4{bottom:125.676000px;}
.y199{bottom:127.116000px;}
.y111{bottom:127.476000px;}
.y153{bottom:128.916000px;}
.ya5{bottom:130.356000px;}
.y176{bottom:131.076000px;}
.y115{bottom:132.876000px;}
.y15d{bottom:134.316000px;}
.yf8{bottom:137.196000px;}
.yb0{bottom:137.916000px;}
.y1cc{bottom:138.270000px;}
.y195{bottom:139.356000px;}
.y12a{bottom:139.716000px;}
.ycc{bottom:140.076000px;}
.y11a{bottom:145.476000px;}
.y1f3{bottom:146.196000px;}
.y226{bottom:150.510000px;}
.y10b{bottom:150.870000px;}
.y20e{bottom:153.390000px;}
.y1fb{bottom:156.270000px;}
.y92{bottom:158.070000px;}
.y129{bottom:159.510000px;}
.y43{bottom:160.590000px;}
.ye4{bottom:160.950000px;}
.yc6{bottom:161.310000px;}
.y166{bottom:163.110000px;}
.yd2{bottom:163.470000px;}
.yb8{bottom:164.190000px;}
.y1f2{bottom:167.070000px;}
.y110{bottom:168.870000px;}
.ya4{bottom:171.750000px;}
.y175{bottom:172.470000px;}
.y114{bottom:174.270000px;}
.ye7{bottom:176.070000px;}
.y152{bottom:177.870000px;}
.y29{bottom:178.380000px;}
.yaf{bottom:179.310000px;}
.y190{bottom:179.670000px;}
.y1cb{bottom:179.715000px;}
.yf7{bottom:180.030000px;}
.ycb{bottom:181.470000px;}
.y15c{bottom:181.830000px;}
.y198{bottom:186.510000px;}
.y119{bottom:186.870000px;}
.y194{bottom:187.230000px;}
.y1b0{bottom:187.590000px;}
.yd{bottom:192.060000px;}
.y109{bottom:192.270000px;}
.y236{bottom:197.670000px;}
.y91{bottom:199.470000px;}
.y42{bottom:201.990000px;}
.yc5{bottom:202.710000px;}
.y18f{bottom:203.430000px;}
.y8b{bottom:204.870000px;}
.yb7{bottom:205.590000px;}
.y1f1{bottom:208.470000px;}
.y151{bottom:209.190000px;}
.y225{bottom:209.910000px;}
.y112{bottom:210.270000px;}
.y193{bottom:210.990000px;}
.y20d{bottom:212.790000px;}
.ya3{bottom:213.150000px;}
.y174{bottom:213.870000px;}
.y128{bottom:215.310000px;}
.y1ae{bottom:215.670000px;}
.ye6{bottom:217.515000px;}
.ye3{bottom:220.395000px;}
.yae{bottom:220.755000px;}
.y1ca{bottom:221.115000px;}
.yf6{bottom:222.555000px;}
.yca{bottom:222.915000px;}
.y127{bottom:226.515000px;}
.y10f{bottom:228.315000px;}
.y1f0{bottom:229.035000px;}
.y15b{bottom:229.755000px;}
.y108{bottom:233.715000px;}
.y28{bottom:234.720000px;}
.y192{bottom:234.795000px;}
.y23b{bottom:239.115000px;}
.y150{bottom:240.195000px;}
.y90{bottom:240.915000px;}
.y41{bottom:243.435000px;}
.yc4{bottom:244.155000px;}
.y197{bottom:245.955000px;}
.y8a{bottom:246.315000px;}
.y126{bottom:247.395000px;}
.y1ef{bottom:249.915000px;}
.y101{bottom:251.715000px;}
.y21f{bottom:252.075000px;}
.y15a{bottom:253.515000px;}
.y20c{bottom:254.235000px;}
.ya2{bottom:254.595000px;}
.y173{bottom:255.315000px;}
.y1ad{bottom:257.115000px;}
.y18e{bottom:258.555000px;}
.ye5{bottom:258.915000px;}
.yad{bottom:262.155000px;}
.yf5{bottom:263.955000px;}
.yc9{bottom:264.315000px;}
.y80{bottom:265.035000px;}
.y224{bottom:269.355000px;}
.y10e{bottom:269.715000px;}
.y14f{bottom:271.155000px;}
.y107{bottom:275.115000px;}
.y159{bottom:277.275000px;}
.ye2{bottom:279.795000px;}
.y6b{bottom:281.955000px;}
.yd4{bottom:282.315000px;}
.y1c9{bottom:283.035000px;}
.y7f{bottom:283.755000px;}
.y1c7{bottom:284.115000px;}
.y40{bottom:284.835000px;}
.yc3{bottom:285.555000px;}
.y89{bottom:287.715000px;}
.y1ee{bottom:288.435000px;}
.y27{bottom:291.060000px;}
.y21e{bottom:292.755000px;}
.y100{bottom:293.115000px;}
.y20b{bottom:295.635000px;}
.ya1{bottom:295.995000px;}
.y172{bottom:296.715000px;}
.y235{bottom:298.515000px;}
.y8f{bottom:300.315000px;}
.y158{bottom:301.035000px;}
.y7e{bottom:301.755000px;}
.y14e{bottom:302.115000px;}
.yb6{bottom:303.555000px;}
.y1c6{bottom:304.275000px;}
.y168{bottom:305.355000px;}
.yc8{bottom:305.715000px;}
.yac{bottom:310.755000px;}
.y10d{bottom:311.115000px;}
.y23a{bottom:316.155000px;}
.y1ac{bottom:316.515000px;}
.y57{bottom:318.675000px;}
.ye1{bottom:321.195000px;}
.yf4{bottom:323.355000px;}
.y6a{bottom:323.715000px;}
.y157{bottom:324.795000px;}
.y3f{bottom:325.875000px;}
.yc2{bottom:326.595000px;}
.y22e{bottom:328.035000px;}
.y223{bottom:328.755000px;}
.y88{bottom:329.115000px;}
.y14d{bottom:333.465000px;}
.y106{bottom:334.545000px;}
.ya0{bottom:337.425000px;}
.y171{bottom:338.145000px;}
.y18d{bottom:338.865000px;}
.y234{bottom:339.945000px;}
.y7d{bottom:341.745000px;}
.y1c5{bottom:342.825000px;}
.y1ed{bottom:343.905000px;}
.yb5{bottom:344.625000px;}
.yd1{bottom:347.145000px;}
.y24c{bottom:349.665000px;}
.yab{bottom:352.185000px;}
.yff{bottom:352.545000px;}
.y20a{bottom:355.065000px;}
.y26{bottom:356.220000px;}
.y239{bottom:357.585000px;}
.y23e{bottom:357.945000px;}
.y56{bottom:359.745000px;}
.y1ec{bottom:361.185000px;}
.y156{bottom:361.545000px;}
.ye0{bottom:362.625000px;}
.y14c{bottom:364.425000px;}
.yf3{bottom:364.785000px;}
.y69{bottom:365.145000px;}
.y3e{bottom:365.505000px;}
.yc1{bottom:368.025000px;}
.y87{bottom:370.545000px;}
.y105{bottom:375.945000px;}
.y1eb{bottom:378.465000px;}
.y9f{bottom:378.825000px;}
.y170{bottom:379.545000px;}
.y1c4{bottom:381.705000px;}
.y7c{bottom:383.145000px;}
.yb4{bottom:386.025000px;}
.y22d{bottom:386.745000px;}
.y222{bottom:388.185000px;}
.yd0{bottom:388.545000px;}
.y146{bottom:388.905000px;}
.y24b{bottom:390.705000px;}
.yaa{bottom:393.585000px;}
.yfe{bottom:393.945000px;}
.y14b{bottom:395.385000px;}
.y1ea{bottom:395.745000px;}
.y209{bottom:396.465000px;}
.y19d{bottom:397.545000px;}
.y233{bottom:398.985000px;}
.y55{bottom:401.145000px;}
.ydf{bottom:404.025000px;}
.y3d{bottom:404.385000px;}
.yf2{bottom:406.185000px;}
.y68{bottom:406.545000px;}
.yc0{bottom:409.425000px;}
.y86{bottom:411.945000px;}
.y1e9{bottom:413.025000px;}
.y23d{bottom:416.985000px;}
.y1ab{bottom:417.345000px;}
.y18b{bottom:419.145000px;}
.y9e{bottom:420.225000px;}
.y7b{bottom:424.545000px;}
.y14a{bottom:426.345000px;}
.y25{bottom:426.420000px;}
.yb3{bottom:427.425000px;}
.y196{bottom:429.585000px;}
.ycf{bottom:429.945000px;}
.y1e8{bottom:430.305000px;}
.y21d{bottom:432.465000px;}
.ya9{bottom:434.985000px;}
.yfd{bottom:435.345000px;}
.y16f{bottom:438.945000px;}
.y232{bottom:440.385000px;}
.y1c3{bottom:441.105000px;}
.y54{bottom:442.545000px;}
.y3c{bottom:442.905000px;}
.yde{bottom:445.470000px;}
.y22c{bottom:446.190000px;}
.yf1{bottom:447.630000px;}
.y67{bottom:447.990000px;}
.y144{bottom:448.350000px;}
.y24a{bottom:450.510000px;}
.ybf{bottom:450.870000px;}
.y85{bottom:453.390000px;}
.y149{bottom:457.710000px;}
.y23c{bottom:458.430000px;}
.y1aa{bottom:458.790000px;}
.y1e7{bottom:464.550000px;}
.y7a{bottom:465.990000px;}
.yb{bottom:468.000000px;}
.y9d{bottom:468.870000px;}
.y21c{bottom:471.030000px;}
.yce{bottom:471.390000px;}
.y18{bottom:475.200000px;}
.y208{bottom:476.070000px;}
.ya8{bottom:476.430000px;}
.y104{bottom:476.790000px;}
.y1c2{bottom:480.030000px;}
.y16e{bottom:480.390000px;}
.y3b{bottom:481.830000px;}
.y53{bottom:483.990000px;}
.ydd{bottom:486.870000px;}
.yf0{bottom:489.030000px;}
.y66{bottom:489.390000px;}
.y249{bottom:491.910000px;}
.ybe{bottom:492.270000px;}
.y1fa{bottom:494.430000px;}
.y84{bottom:494.790000px;}
.y24{bottom:496.620000px;}
.y1e6{bottom:499.110000px;}
.y189{bottom:499.470000px;}
.y1a9{bottom:500.190000px;}
.y22b{bottom:505.590000px;}
.y79{bottom:507.390000px;}
.y143{bottom:507.750000px;}
.y1f6{bottom:509.550000px;}
.y9c{bottom:510.270000px;}
.y21b{bottom:512.070000px;}
.y1f5{bottom:512.430000px;}
.ycd{bottom:512.790000px;}
.y1e5{bottom:516.390000px;}
.ya7{bottom:517.830000px;}
.y113{bottom:518.190000px;}
.y1c1{bottom:520.350000px;}
.y3a{bottom:520.710000px;}
.y16d{bottom:521.790000px;}
.y52{bottom:525.390000px;}
.ydc{bottom:528.270000px;}
.yef{bottom:530.430000px;}
.y65{bottom:530.790000px;}
.y1c8{bottom:531.510000px;}
.ybd{bottom:533.670000px;}
.yfc{bottom:536.190000px;}
.y1a8{bottom:541.590000px;}
.y248{bottom:548.070000px;}
.y165{bottom:548.430000px;}
.y78{bottom:548.790000px;}
.y1e4{bottom:550.950000px;}
.y13f{bottom:551.310000px;}
.y9b{bottom:551.670000px;}
.y83{bottom:553.830000px;}
.y10c{bottom:554.190000px;}
.y23{bottom:558.540000px;}
.ya6{bottom:559.260000px;}
.y39{bottom:559.620000px;}
.y21a{bottom:562.140000px;}
.y16c{bottom:563.220000px;}
.y22a{bottom:565.020000px;}
.y51{bottom:566.820000px;}
.y221{bottom:567.540000px;}
.y1e3{bottom:568.260000px;}
.y17{bottom:569.160000px;}
.yee{bottom:571.860000px;}
.y64{bottom:572.220000px;}
.y1c0{bottom:572.940000px;}
.ybc{bottom:575.100000px;}
.y1f9{bottom:577.260000px;}
.yfb{bottom:577.620000px;}
.y185{bottom:579.780000px;}
.y1a7{bottom:583.020000px;}
.y207{bottom:584.460000px;}
.y1e2{bottom:585.540000px;}
.ydb{bottom:587.700000px;}
.y247{bottom:589.500000px;}
.y164{bottom:589.860000px;}
.y77{bottom:590.220000px;}
.y9a{bottom:593.100000px;}
.y10a{bottom:595.620000px;}
.y38{bottom:598.500000px;}
.y124{bottom:601.020000px;}
.y1e1{bottom:602.820000px;}
.y16b{bottom:604.620000px;}
.y50{bottom:608.220000px;}
.y13e{bottom:611.100000px;}
.y219{bottom:611.820000px;}
.yed{bottom:613.260000px;}
.y63{bottom:613.620000px;}
.y22{bottom:614.880000px;}
.ybb{bottom:616.500000px;}
.y103{bottom:619.020000px;}
.y1e0{bottom:620.100000px;}
.y229{bottom:624.420000px;}
.y1bf{bottom:625.500000px;}
.ya{bottom:626.040000px;}
.yda{bottom:629.100000px;}
.y246{bottom:630.900000px;}
.y163{bottom:631.260000px;}
.y76{bottom:631.620000px;}
.y99{bottom:634.500000px;}
.y1af{bottom:636.660000px;}
.y37{bottom:637.020000px;}
.y1df{bottom:637.380000px;}
.y9{bottom:638.100000px;}
.y206{bottom:638.820000px;}
.y123{bottom:642.420000px;}
.y253{bottom:645.660000px;}
.y4f{bottom:649.620000px;}
.yec{bottom:654.660000px;}
.y62{bottom:655.020000px;}
.y11e{bottom:660.420000px;}
.y218{bottom:661.860000px;}
.y182{bottom:662.220000px;}
.y16a{bottom:663.660000px;}
.y19c{bottom:664.020000px;}
.yd9{bottom:670.500000px;}
.y21{bottom:671.220000px;}
.y1de{bottom:671.580000px;}
.y162{bottom:672.660000px;}
.y75{bottom:673.020000px;}
.yba{bottom:675.570000px;}
.y36{bottom:675.930000px;}
.y1be{bottom:678.090000px;}
.yfa{bottom:678.450000px;}
.y228{bottom:683.850000px;}
.y245{bottom:687.450000px;}
.y1dd{bottom:688.890000px;}
.y4e{bottom:690.690000px;}
.y8e{bottom:691.050000px;}
.y205{bottom:692.850000px;}
.yeb{bottom:696.090000px;}
.y61{bottom:696.450000px;}
.y122{bottom:701.490000px;}
.y11d{bottom:701.850000px;}
.y19b{bottom:705.450000px;}
.y1dc{bottom:706.170000px;}
.y8{bottom:707.220000px;}
.yd8{bottom:711.930000px;}
.yd5{bottom:714.090000px;}
.y74{bottom:714.450000px;}
.y35{bottom:714.810000px;}
.y98{bottom:717.330000px;}
.y7{bottom:719.280000px;}
.y102{bottom:719.850000px;}
.y1db{bottom:723.450000px;}
.y231{bottom:725.250000px;}
.y20{bottom:727.560000px;}
.y244{bottom:728.850000px;}
.y1bd{bottom:730.650000px;}
.y252{bottom:731.370000px;}
.y4d{bottom:732.450000px;}
.y60{bottom:737.850000px;}
.y1da{bottom:740.730000px;}
.y227{bottom:743.250000px;}
.y17f{bottom:744.690000px;}
.y19a{bottom:746.850000px;}
.y204{bottom:747.210000px;}
.yd7{bottom:753.330000px;}
.y34{bottom:753.690000px;}
.yea{bottom:755.490000px;}
.y73{bottom:755.850000px;}
.y13b{bottom:757.650000px;}
.y1d9{bottom:758.010000px;}
.yb2{bottom:758.730000px;}
.y11c{bottom:761.250000px;}
.y217{bottom:761.970000px;}
.y97{bottom:766.290000px;}
.y243{bottom:770.250000px;}
.y4c{bottom:773.850000px;}
.y1d8{bottom:775.290000px;}
.y5f{bottom:779.250000px;}
.y1bb{bottom:783.210000px;}
.y1f{bottom:784.080000px;}
.y230{bottom:784.650000px;}
.y1a0{bottom:788.295000px;}
.y5{bottom:788.580000px;}
.y33{bottom:792.255000px;}
.y1d7{bottom:792.615000px;}
.yd6{bottom:796.215000px;}
.ye9{bottom:796.935000px;}
.y72{bottom:797.295000px;}
.yb1{bottom:800.175000px;}
.y251{bottom:800.535000px;}
.y19{bottom:800.640000px;}
.y13a{bottom:801.255000px;}
.y203{bottom:801.615000px;}
.y238{bottom:802.335000px;}
.y11b{bottom:802.695000px;}
.y96{bottom:807.735000px;}
.y1d6{bottom:809.895000px;}
.y215{bottom:811.695000px;}
.y161{bottom:814.935000px;}
.y4b{bottom:815.295000px;}
.y5e{bottom:820.695000px;}
.y22f{bottom:826.095000px;}
.y1d5{bottom:827.175000px;}
.y17d{bottom:827.535000px;}
.y32{bottom:831.135000px;}
.y1ba{bottom:835.455000px;}
.ye8{bottom:838.335000px;}
.y71{bottom:838.695000px;}
.y237{bottom:843.735000px;}
.y121{bottom:844.095000px;}
.y1d4{bottom:844.455000px;}
.y138{bottom:844.815000px;}
.y1e{bottom:848.880000px;}
.y95{bottom:849.135000px;}
.y242{bottom:853.095000px;}
.y202{bottom:855.615000px;}
.y160{bottom:856.335000px;}
.y4a{bottom:856.695000px;}
.y1d3{bottom:861.375000px;}
.y214{bottom:861.735000px;}
.y5d{bottom:862.095000px;}
.y31{bottom:870.015000px;}
.y1d2{bottom:878.655000px;}
.y70{bottom:880.095000px;}
.y120{bottom:885.495000px;}
.y1b8{bottom:888.015000px;}
.y131{bottom:888.735000px;}
.y1a1{bottom:889.095000px;}
.y94{bottom:890.535000px;}
.y241{bottom:894.495000px;}
.y1d1{bottom:895.935000px;}
.y15f{bottom:897.735000px;}
.y49{bottom:898.095000px;}
.y17b{bottom:899.895000px;}
.y250{bottom:902.445000px;}
.y16{bottom:902.520000px;}
.y1a6{bottom:903.165000px;}
.y5c{bottom:903.525000px;}
.y30{bottom:908.925000px;}
.y201{bottom:910.005000px;}
.y1d{bottom:910.260000px;}
.y213{bottom:911.805000px;}
.y1d0{bottom:913.245000px;}
.yf9{bottom:921.165000px;}
.y6f{bottom:921.525000px;}
.y117{bottom:923.325000px;}
.y11f{bottom:926.925000px;}
.y19f{bottom:930.525000px;}
.y15e{bottom:939.165000px;}
.y48{bottom:939.525000px;}
.y125{bottom:940.245000px;}
.y1b6{bottom:940.605000px;}
.y1f8{bottom:944.565000px;}
.y5b{bottom:944.925000px;}
.y2f{bottom:947.805000px;}
.y240{bottom:951.045000px;}
.y211{bottom:961.845000px;}
.y1a5{bottom:962.565000px;}
.y6e{bottom:962.925000px;}
.y116{bottom:963.645000px;}
.y1ff{bottom:964.365000px;}
.y169{bottom:971.565000px;}
.y19e{bottom:971.925000px;}
.y24f{bottom:973.005000px;}
.y4{bottom:973.260000px;}
.y177{bottom:980.205000px;}
.y47{bottom:980.565000px;}
.y8d{bottom:980.925000px;}
.y154{bottom:981.645000px;}
.y1c{bottom:983.160000px;}
.y82{bottom:985.965000px;}
.y2e{bottom:986.325000px;}
.y1b1{bottom:993.165000px;}
.y12f{bottom:995.685000px;}
.y1a4{bottom:1003.965000px;}
.y6d{bottom:1004.325000px;}
.y23f{bottom:1007.205000px;}
.y20f{bottom:1011.525000px;}
.y1fc{bottom:1018.410000px;}
.y46{bottom:1022.010000px;}
.y8c{bottom:1022.370000px;}
.y2d{bottom:1025.250000px;}
.y24e{bottom:1031.370000px;}
.y3{bottom:1031.580000px;}
.y12b{bottom:1039.290000px;}
.y15{bottom:1042.380000px;}
.y148{bottom:1043.610000px;}
.y5a{bottom:1045.410000px;}
.y1cf{bottom:1045.770000px;}
.y1a{bottom:1046.490000px;}
.y1b{bottom:1052.100000px;}
.y155{bottom:1058.730000px;}
.y6c{bottom:1063.410000px;}
.y45{bottom:1063.770000px;}
.y2c{bottom:1064.130000px;}
.y118{bottom:1064.490000px;}
.y14{bottom:1070.820000px;}
.y13{bottom:1078.920000px;}
.y24d{bottom:1089.690000px;}
.y2{bottom:1089.720000px;}
.y11{bottom:1107.540000px;}
.y2b{bottom:1120.290000px;}
.y1a2{bottom:1120.650000px;}
.y1{bottom:1148.040000px;}
.h3d{height:0.000000px;}
.h2b{height:5.054063px;}
.h21{height:20.155078px;}
.h9{height:28.440000px;}
.h27{height:30.960000px;}
.h24{height:30.996000px;}
.h34{height:33.018047px;}
.ha{height:36.540000px;}
.hc{height:36.720000px;}
.h43{height:37.080000px;}
.h45{height:37.116000px;}
.h5{height:37.260000px;}
.h44{height:37.440000px;}
.h37{height:39.240000px;}
.h35{height:39.276000px;}
.h3b{height:39.600000px;}
.h3a{height:39.636000px;}
.h3f{height:41.400000px;}
.h41{height:41.436000px;}
.h26{height:41.696016px;}
.h40{height:41.760000px;}
.h16{height:42.022969px;}
.h1{height:44.149219px;}
.h23{height:44.225156px;}
.h1b{height:45.345937px;}
.h1a{height:45.360000px;}
.h46{height:45.992812px;}
.h17{height:46.025156px;}
.h28{height:46.440000px;}
.h22{height:46.800000px;}
.h29{height:46.836000px;}
.h39{height:47.992500px;}
.h18{height:49.992188px;}
.h19{height:50.027344px;}
.h1f{height:51.328125px;}
.h47{height:51.644531px;}
.h14{height:53.067656px;}
.h3e{height:54.720000px;}
.h2{height:55.080000px;}
.h36{height:56.286563px;}
.h1e{height:56.882812px;}
.h2e{height:56.953125px;}
.h20{height:58.121719px;}
.h2f{height:59.400000px;}
.h38{height:60.648750px;}
.h42{height:61.596000px;}
.h15{height:63.175781px;}
.h4b{height:64.304297px;}
.h13{height:64.406250px;}
.hd{height:65.086875px;}
.h1c{height:66.138047px;}
.h1d{height:66.258047px;}
.h7{height:66.553200px;}
.h2d{height:66.996000px;}
.h11{height:67.007812px;}
.h33{height:67.320000px;}
.h32{height:67.356000px;}
.h31{height:69.480000px;}
.h30{height:69.516000px;}
.h2a{height:74.816016px;}
.h48{height:80.769375px;}
.hb{height:81.725625px;}
.h12{height:85.660313px;}
.h4a{height:89.527500px;}
.h8{height:91.573200px;}
.h2c{height:92.556000px;}
.h25{height:94.356000px;}
.h49{height:103.654687px;}
.he{height:111.903047px;}
.h6{height:122.624297px;}
.h3{height:141.439922px;}
.h4{height:149.453206px;}
.h3c{height:237.315000px;}
.h0{height:1188.000000px;}
.h10{height:1221.000000px;}
.hf{height:1234.500000px;}
.w2b{width:0.000000px;}
.wf{width:3.420000px;}
.wc{width:10.800000px;}
.w5{width:16.200000px;}
.w6{width:18.000000px;}
.w4{width:28.260000px;}
.w14{width:39.960000px;}
.wa{width:44.100000px;}
.w1a{width:51.120000px;}
.w22{width:51.516000px;}
.w21{width:53.280000px;}
.w13{width:54.756000px;}
.w20{width:57.636000px;}
.w26{width:62.676000px;}
.w19{width:66.276000px;}
.w23{width:68.076000px;}
.we{width:69.120000px;}
.w27{width:70.236000px;}
.w28{width:73.116000px;}
.w17{width:73.440000px;}
.w16{width:73.476000px;}
.w25{width:79.920000px;}
.w24{width:79.956000px;}
.w15{width:80.316000px;}
.w1e{width:93.636000px;}
.w29{width:95.436000px;}
.w1f{width:100.476000px;}
.w1c{width:102.996000px;}
.w2{width:107.820000px;}
.w1b{width:109.152000px;}
.w3{width:112.500000px;}
.w18{width:120.996000px;}
.w1d{width:122.076000px;}
.w2d{width:125.676000px;}
.w2c{width:125.712000px;}
.w2e{width:126.036000px;}
.w10{width:135.360000px;}
.w30{width:141.876000px;}
.w31{width:141.912000px;}
.w2f{width:142.272000px;}
.wd{width:188.640000px;}
.w9{width:259.020000px;}
.wb{width:272.340000px;}
.w2a{width:288.105000px;}
.w7{width:294.300000px;}
.w1{width:300.960000px;}
.w8{width:343.080000px;}
.w12{width:873.000000px;}
.w11{width:898.500000px;}
.w0{width:918.000000px;}
.x1c{left:-644.040000px;}
.x62{left:-561.090000px;}
.x20{left:-455.580000px;}
.x1e{left:-450.900000px;}
.x11{left:-300.780000px;}
.x19{left:-294.120000px;}
.x21{left:-272.520000px;}
.x13{left:-112.320000px;}
.x12{left:-107.640000px;}
.x14{left:-28.080000px;}
.x16{left:-16.020000px;}
.x0{left:0.000000px;}
.x34{left:5.760000px;}
.xc{left:7.920000px;}
.x45{left:9.000000px;}
.x48{left:10.440000px;}
.x59{left:11.520000px;}
.x1{left:12.960000px;}
.x57{left:16.560000px;}
.x49{left:18.000000px;}
.x53{left:19.080000px;}
.x4c{left:20.160000px;}
.x4a{left:21.960000px;}
.x4f{left:23.790000px;}
.x4e{left:25.230000px;}
.x60{left:26.310000px;}
.x42{left:27.390000px;}
.x4b{left:28.440000px;}
.x4d{left:30.990000px;}
.x69{left:32.400000px;}
.x5f{left:33.480000px;}
.x5e{left:34.920000px;}
.x64{left:37.116000px;}
.x66{left:39.240000px;}
.x2{left:42.120000px;}
.x46{left:43.560000px;}
.x6d{left:45.399000px;}
.xd{left:48.780000px;}
.x73{left:50.070000px;}
.x6b{left:51.150000px;}
.x6c{left:53.679000px;}
.x74{left:54.750000px;}
.x50{left:56.520000px;}
.x6a{left:57.999000px;}
.x75{left:60.870000px;}
.x77{left:61.959000px;}
.x76{left:65.910000px;}
.x8{left:66.960000px;}
.x72{left:68.070000px;}
.x33{left:102.276000px;}
.x23{left:108.036000px;}
.x52{left:110.556000px;}
.x25{left:129.780045px;}
.x24{left:148.320000px;}
.x35{left:157.755000px;}
.x3{left:161.460000px;}
.x40{left:169.995000px;}
.x2a{left:190.980150px;}
.x36{left:198.435000px;}
.x5{left:215.460000px;}
.x41{left:222.195000px;}
.x54{left:223.275000px;}
.x2b{left:226.980000px;}
.x6{left:230.580000px;}
.x4{left:235.260000px;}
.x2c{left:237.780000px;}
.x6e{left:253.545000px;}
.x2d{left:254.700000px;}
.x55{left:275.865000px;}
.x37{left:279.465000px;}
.xe{left:281.160000px;}
.x29{left:307.260000px;}
.x9{left:312.660000px;}
.x7{left:314.820000px;}
.xa{left:320.940000px;}
.xb{left:326.880000px;}
.x43{left:332.430000px;}
.x10{left:343.080000px;}
.x56{left:345.030000px;}
.x1a{left:353.880000px;}
.x27{left:358.560000px;}
.x38{left:360.510000px;}
.x65{left:363.750000px;}
.x17{left:387.180000px;}
.x63{left:393.630000px;}
.x6f{left:396.150000px;}
.x18{left:413.820000px;}
.x28{left:417.960000px;}
.x58{left:426.060000px;}
.x39{left:434.700000px;}
.x44{left:436.500000px;}
.x2e{left:441.000450px;}
.x26{left:445.500000px;}
.xf{left:458.640000px;}
.x67{left:490.500000px;}
.x5a{left:507.060000px;}
.x3a{left:508.860000px;}
.x61{left:524.370000px;}
.x70{left:539.130000px;}
.x47{left:559.650000px;}
.x5b{left:570.810000px;}
.x3b{left:583.050000px;}
.x15{left:602.100000px;}
.x68{left:617.295000px;}
.x5c{left:642.135000px;}
.x3f{left:654.375000px;}
.x3c{left:664.095000px;}
.x71{left:682.095000px;}
.x1b{left:686.160000px;}
.x3e{left:700.125000px;}
.x78{left:707.685000px;}
.x32{left:710.565000px;}
.x5d{left:716.325000px;}
.x30{left:733.605000px;}
.x31{left:751.965000px;}
.x1f{left:755.280000px;}
.x51{left:771.765000px;}
.x2f{left:772.845000px;}
.x3d{left:810.330000px;}
.x22{left:821.520000px;}
.x1d{left:874.800000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls60{letter-spacing:-2.560000pt;}
.ls23{letter-spacing:-2.432000pt;}
.ls3a{letter-spacing:-2.112000pt;}
.ls55{letter-spacing:-1.984000pt;}
.ls38{letter-spacing:-1.856000pt;}
.lsa5{letter-spacing:-1.728000pt;}
.lsbf{letter-spacing:-1.693440pt;}
.ls49{letter-spacing:-1.536000pt;}
.ls5e{letter-spacing:-1.408000pt;}
.lsc8{letter-spacing:-1.290240pt;}
.ls22{letter-spacing:-1.280000pt;}
.lsca{letter-spacing:-1.279488pt;}
.lsc9{letter-spacing:-1.236480pt;}
.ls1b{letter-spacing:-1.152000pt;}
.lsd3{letter-spacing:-1.056000pt;}
.ls3b{letter-spacing:-1.024000pt;}
.lsc4{letter-spacing:-0.865536pt;}
.lsc7{letter-spacing:-0.860160pt;}
.lsd1{letter-spacing:-0.844800pt;}
.lsc1{letter-spacing:-0.833280pt;}
.lsd5{letter-spacing:-0.832128pt;}
.ls20{letter-spacing:-0.832000pt;}
.lsb7{letter-spacing:-0.806400pt;}
.ls36{letter-spacing:-0.704000pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.576000pt;}
.lscc{letter-spacing:-0.464640pt;}
.lsfb{letter-spacing:-0.451584pt;}
.ls47{letter-spacing:-0.448000pt;}
.lsc3{letter-spacing:-0.430080pt;}
.lsfa{letter-spacing:-0.413952pt;}
.ls13{letter-spacing:-0.364800pt;}
.lsd6{letter-spacing:-0.321024pt;}
.lsd{letter-spacing:-0.320640pt;}
.ls21{letter-spacing:-0.256000pt;}
.lsce{letter-spacing:-0.211200pt;}
.lsa{letter-spacing:-0.180544pt;}
.ls6e{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.068096pt;}
.ls10{letter-spacing:-0.038400pt;}
.ls4{letter-spacing:0.000000pt;}
.ls75{letter-spacing:0.010667pt;}
.lsd2{letter-spacing:0.012672pt;}
.lsea{letter-spacing:0.016128pt;}
.ls101{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.064000pt;}
.lsf9{letter-spacing:0.067840pt;}
.ls6{letter-spacing:0.081984pt;}
.lsba{letter-spacing:0.085760pt;}
.lsf{letter-spacing:0.102144pt;}
.lsaf{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.106880pt;}
.ls4a{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.160000pt;}
.lscd{letter-spacing:0.168960pt;}
.ls11{letter-spacing:0.172800pt;}
.ls8{letter-spacing:0.181696pt;}
.ls24{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.203072pt;}
.ls54{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.275200pt;}
.ls7{letter-spacing:0.297920pt;}
.lsbd{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.326400pt;}
.ls3{letter-spacing:0.357504pt;}
.ls0{letter-spacing:0.374976pt;}
.lsc5{letter-spacing:0.376320pt;}
.lscb{letter-spacing:0.380160pt;}
.ls19{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.396220pt;}
.ls1{letter-spacing:0.400064pt;}
.lsbc{letter-spacing:0.413952pt;}
.lscf{letter-spacing:0.422400pt;}
.lsc2{letter-spacing:0.430080pt;}
.lsf7{letter-spacing:0.440320pt;}
.ls48{letter-spacing:0.448000pt;}
.lsbb{letter-spacing:0.458240pt;}
.ls5f{letter-spacing:0.512000pt;}
.ls8b{letter-spacing:0.554667pt;}
.ls16{letter-spacing:0.576000pt;}
.lsbe{letter-spacing:0.591360pt;}
.lsf8{letter-spacing:0.600320pt;}
.ls102{letter-spacing:0.608000pt;}
.ls18{letter-spacing:0.640000pt;}
.lsd4{letter-spacing:0.642048pt;}
.ls7a{letter-spacing:0.650667pt;}
.ls26{letter-spacing:0.704000pt;}
.ls2a{letter-spacing:0.746667pt;}
.lsfd{letter-spacing:0.752640pt;}
.ls8c{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.800000pt;}
.lsf6{letter-spacing:0.829440pt;}
.lsf1{letter-spacing:0.832000pt;}
.ls1a{letter-spacing:0.960000pt;}
.lsd0{letter-spacing:1.013760pt;}
.ls30{letter-spacing:1.024000pt;}
.ls28{letter-spacing:1.088000pt;}
.lsf2{letter-spacing:1.152000pt;}
.lsfc{letter-spacing:1.182720pt;}
.ls25{letter-spacing:1.216000pt;}
.lsc0{letter-spacing:1.236480pt;}
.lsc6{letter-spacing:1.279488pt;}
.ls1c{letter-spacing:1.280000pt;}
.lse3{letter-spacing:1.290667pt;}
.ls27{letter-spacing:1.344000pt;}
.ls79{letter-spacing:1.386667pt;}
.lsa6{letter-spacing:1.408000pt;}
.ls8e{letter-spacing:1.440000pt;}
.ls6a{letter-spacing:1.472000pt;}
.ls35{letter-spacing:1.664000pt;}
.ls37{letter-spacing:1.728000pt;}
.lsb9{letter-spacing:1.738240pt;}
.ls105{letter-spacing:1.792000pt;}
.ls69{letter-spacing:1.856000pt;}
.ls2b{letter-spacing:1.920000pt;}
.ls9b{letter-spacing:1.930667pt;}
.ls70{letter-spacing:2.026667pt;}
.ls6b{letter-spacing:2.080000pt;}
.ls6f{letter-spacing:2.240000pt;}
.ls39{letter-spacing:2.304000pt;}
.lsb2{letter-spacing:2.496000pt;}
.lsee{letter-spacing:2.506667pt;}
.ls32{letter-spacing:2.560000pt;}
.ls100{letter-spacing:2.602667pt;}
.ls68{letter-spacing:2.624000pt;}
.lsf3{letter-spacing:2.688000pt;}
.lsb4{letter-spacing:2.720000pt;}
.ls2d{letter-spacing:3.200000pt;}
.lsf0{letter-spacing:3.210667pt;}
.ls2e{letter-spacing:3.306667pt;}
.lsfe{letter-spacing:3.328000pt;}
.lsaa{letter-spacing:3.360000pt;}
.lsb0{letter-spacing:3.776000pt;}
.lsed{letter-spacing:3.936000pt;}
.ls103{letter-spacing:4.096000pt;}
.ls33{letter-spacing:4.480000pt;}
.ls109{letter-spacing:4.490667pt;}
.ls84{letter-spacing:4.586667pt;}
.lsec{letter-spacing:4.608000pt;}
.ls58{letter-spacing:4.640000pt;}
.lsb3{letter-spacing:5.056000pt;}
.lsdb{letter-spacing:5.162667pt;}
.ls34{letter-spacing:5.760000pt;}
.ls5b{letter-spacing:5.770667pt;}
.ls8d{letter-spacing:5.866667pt;}
.ls90{letter-spacing:5.888000pt;}
.ls46{letter-spacing:5.920000pt;}
.lsda{letter-spacing:6.336000pt;}
.lsef{letter-spacing:6.442667pt;}
.ls43{letter-spacing:7.040000pt;}
.lsa8{letter-spacing:7.050667pt;}
.ls4b{letter-spacing:7.146667pt;}
.ls104{letter-spacing:7.168000pt;}
.ls5d{letter-spacing:7.200000pt;}
.lsae{letter-spacing:7.616000pt;}
.ls45{letter-spacing:8.320000pt;}
.ls10a{letter-spacing:8.330667pt;}
.ls89{letter-spacing:8.426667pt;}
.lsa1{letter-spacing:8.448000pt;}
.ls93{letter-spacing:8.480000pt;}
.ls9a{letter-spacing:8.576000pt;}
.ls7e{letter-spacing:8.682667pt;}
.lseb{letter-spacing:8.896000pt;}
.ls2f{letter-spacing:9.600000pt;}
.ls42{letter-spacing:9.706667pt;}
.lsd7{letter-spacing:9.760000pt;}
.ls85{letter-spacing:9.856000pt;}
.lsb5{letter-spacing:10.176000pt;}
.ls31{letter-spacing:10.880000pt;}
.ls56{letter-spacing:10.986667pt;}
.lsd9{letter-spacing:11.008000pt;}
.ls81{letter-spacing:11.040000pt;}
.ls6c{letter-spacing:11.136000pt;}
.ls8f{letter-spacing:11.146667pt;}
.lse9{letter-spacing:11.456000pt;}
.ls4d{letter-spacing:12.160000pt;}
.lsa4{letter-spacing:12.170667pt;}
.ls71{letter-spacing:12.266667pt;}
.ls72{letter-spacing:12.320000pt;}
.lsa0{letter-spacing:12.416000pt;}
.ls9f{letter-spacing:12.522667pt;}
.ls99{letter-spacing:12.576000pt;}
.lse7{letter-spacing:12.736000pt;}
.ls64{letter-spacing:13.440000pt;}
.ls65{letter-spacing:13.546667pt;}
.ls63{letter-spacing:13.600000pt;}
.ls9e{letter-spacing:13.696000pt;}
.ls74{letter-spacing:13.824000pt;}
.lsdc{letter-spacing:14.016000pt;}
.ls61{letter-spacing:14.720000pt;}
.ls44{letter-spacing:14.730667pt;}
.ls77{letter-spacing:14.826667pt;}
.lsd8{letter-spacing:14.848000pt;}
.ls62{letter-spacing:14.880000pt;}
.ls7f{letter-spacing:14.976000pt;}
.ls94{letter-spacing:15.082667pt;}
.ls3f{letter-spacing:16.000000pt;}
.ls87{letter-spacing:16.106667pt;}
.ls57{letter-spacing:16.160000pt;}
.ls9d{letter-spacing:16.256000pt;}
.lsf4{letter-spacing:16.416000pt;}
.lse2{letter-spacing:16.736000pt;}
.ls3d{letter-spacing:17.280000pt;}
.ls40{letter-spacing:17.386667pt;}
.ls88{letter-spacing:17.440000pt;}
.lsdf{letter-spacing:17.536000pt;}
.lsdd{letter-spacing:17.856000pt;}
.ls3c{letter-spacing:18.560000pt;}
.ls83{letter-spacing:18.666667pt;}
.ls5c{letter-spacing:18.688000pt;}
.lse4{letter-spacing:18.720000pt;}
.lsb6{letter-spacing:19.136000pt;}
.lsde{letter-spacing:19.296000pt;}
.ls4c{letter-spacing:19.840000pt;}
.lsac{letter-spacing:19.850667pt;}
.lsad{letter-spacing:20.000000pt;}
.ls9c{letter-spacing:20.256000pt;}
.ls7c{letter-spacing:21.120000pt;}
.ls53{letter-spacing:21.226667pt;}
.ls7d{letter-spacing:21.280000pt;}
.ls82{letter-spacing:21.376000pt;}
.ls51{letter-spacing:22.400000pt;}
.lsa7{letter-spacing:22.506667pt;}
.ls6d{letter-spacing:22.560000pt;}
.ls2c{letter-spacing:23.680000pt;}
.ls8a{letter-spacing:23.786667pt;}
.lse6{letter-spacing:23.808000pt;}
.ls52{letter-spacing:23.840000pt;}
.ls76{letter-spacing:23.936000pt;}
.ls86{letter-spacing:24.960000pt;}
.ls95{letter-spacing:25.216000pt;}
.ls92{letter-spacing:26.240000pt;}
.lsb1{letter-spacing:26.346667pt;}
.ls78{letter-spacing:26.496000pt;}
.lsab{letter-spacing:27.520000pt;}
.ls10b{letter-spacing:27.648000pt;}
.lsf5{letter-spacing:27.776000pt;}
.ls66{letter-spacing:28.800000pt;}
.ls67{letter-spacing:28.906667pt;}
.lsa3{letter-spacing:30.080000pt;}
.ls80{letter-spacing:30.336000pt;}
.ls4f{letter-spacing:31.360000pt;}
.ls4e{letter-spacing:31.488000pt;}
.lse5{letter-spacing:31.520000pt;}
.ls50{letter-spacing:32.640000pt;}
.ls3e{letter-spacing:33.920000pt;}
.lsa2{letter-spacing:34.176000pt;}
.ls91{letter-spacing:35.200000pt;}
.ls59{letter-spacing:36.480000pt;}
.ls5a{letter-spacing:37.760000pt;}
.ls7b{letter-spacing:37.866667pt;}
.ls98{letter-spacing:39.146667pt;}
.ls41{letter-spacing:44.160000pt;}
.lsa9{letter-spacing:45.546667pt;}
.lse8{letter-spacing:48.000000pt;}
.lse0{letter-spacing:49.280000pt;}
.ls96{letter-spacing:50.560000pt;}
.ls97{letter-spacing:51.840000pt;}
.lse1{letter-spacing:57.216000pt;}
.ls17{letter-spacing:121.066667pt;}
.ls15{letter-spacing:144.160000pt;}
.ls108{letter-spacing:160.640000pt;}
.ls107{letter-spacing:162.026667pt;}
.lsb8{letter-spacing:752.245333pt;}
.lsff{letter-spacing:1002.106453pt;}
.ls106{letter-spacing:1191.685120pt;}
.ls73{letter-spacing:1205.765120pt;}
.ls1e{letter-spacing:1221.125120pt;}
.ws4b{word-spacing:-64.000000pt;}
.ws55{word-spacing:-61.440000pt;}
.ws32{word-spacing:-42.240000pt;}
.ws50{word-spacing:-18.688000pt;}
.ws23{word-spacing:-18.624000pt;}
.ws2b{word-spacing:-18.560000pt;}
.ws4a{word-spacing:-18.496000pt;}
.ws18{word-spacing:-18.304000pt;}
.ws27{word-spacing:-18.240000pt;}
.ws24{word-spacing:-17.856000pt;}
.ws56{word-spacing:-17.792000pt;}
.ws16{word-spacing:-17.728000pt;}
.ws12{word-spacing:-17.664000pt;}
.ws25{word-spacing:-17.472000pt;}
.ws2d{word-spacing:-17.408000pt;}
.wsb{word-spacing:-17.344000pt;}
.ws6{word-spacing:-17.280000pt;}
.ws9{word-spacing:-17.216000pt;}
.ws4f{word-spacing:-17.152000pt;}
.ws29{word-spacing:-17.088000pt;}
.ws15{word-spacing:-17.024000pt;}
.ws4{word-spacing:-16.960000pt;}
.ws4e{word-spacing:-16.832000pt;}
.ws2a{word-spacing:-16.768000pt;}
.wsa{word-spacing:-16.704000pt;}
.ws8{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.576000pt;}
.ws22{word-spacing:-16.512000pt;}
.ws1c{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.384000pt;}
.ws1f{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws1e{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws26{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws1b{word-spacing:-15.552000pt;}
.ws10{word-spacing:-15.424000pt;}
.ws4c{word-spacing:-15.360000pt;}
.ws13{word-spacing:-15.296000pt;}
.wsc{word-spacing:-15.168000pt;}
.ws1a{word-spacing:-14.976000pt;}
.ws5{word-spacing:-14.848000pt;}
.wse{word-spacing:-14.720000pt;}
.ws37{word-spacing:-14.719488pt;}
.ws30{word-spacing:-14.676480pt;}
.ws53{word-spacing:-14.622720pt;}
.ws21{word-spacing:-14.592000pt;}
.ws1d{word-spacing:-14.464000pt;}
.ws2c{word-spacing:-14.272000pt;}
.ws54{word-spacing:-14.192640pt;}
.ws17{word-spacing:-14.144000pt;}
.ws20{word-spacing:-14.016000pt;}
.ws19{word-spacing:-13.888000pt;}
.ws33{word-spacing:-13.870080pt;}
.ws3a{word-spacing:-13.853952pt;}
.ws36{word-spacing:-13.816320pt;}
.ws14{word-spacing:-13.568000pt;}
.ws4d{word-spacing:-13.456128pt;}
.wsd{word-spacing:-13.440000pt;}
.ws51{word-spacing:-13.026048pt;}
.ws34{word-spacing:-13.009920pt;}
.ws52{word-spacing:-12.988416pt;}
.ws2e{word-spacing:-12.633600pt;}
.ws31{word-spacing:-12.606720pt;}
.ws38{word-spacing:-12.579840pt;}
.ws35{word-spacing:-12.574464pt;}
.ws3b{word-spacing:-12.203520pt;}
.ws3c{word-spacing:-12.160512pt;}
.ws39{word-spacing:-12.149760pt;}
.ws2f{word-spacing:-11.746560pt;}
.ws44{word-spacing:-11.573760pt;}
.ws48{word-spacing:-11.202048pt;}
.ws41{word-spacing:-11.151360pt;}
.ws43{word-spacing:-10.982400pt;}
.ws3d{word-spacing:-10.940160pt;}
.ws40{word-spacing:-10.728960pt;}
.ws46{word-spacing:-10.572672pt;}
.ws3e{word-spacing:-10.560000pt;}
.ws42{word-spacing:-10.348800pt;}
.ws3f{word-spacing:-10.095360pt;}
.ws49{word-spacing:-9.727872pt;}
.ws45{word-spacing:-9.715200pt;}
.ws47{word-spacing:-9.504000pt;}
.ws28{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._4a{margin-left:-49.895680pt;}
._3c{margin-left:-28.251733pt;}
._46{margin-left:-20.544427pt;}
._2f{margin-left:-18.813227pt;}
._3e{margin-left:-15.419093pt;}
._3f{margin-left:-13.103787pt;}
._38{margin-left:-11.193600pt;}
._41{margin-left:-10.140160pt;}
._42{margin-left:-9.076053pt;}
._36{margin-left:-7.843840pt;}
._37{margin-left:-6.402347pt;}
._35{margin-left:-5.271253pt;}
._2b{margin-left:-3.664213pt;}
._b{margin-left:-2.712107pt;}
._0{margin-left:-1.805440pt;}
._2{margin-left:-0.896640pt;}
._1{width:0.936960pt;}
._6{width:2.274773pt;}
._c{width:3.296000pt;}
._24{width:4.482987pt;}
._21{width:5.484160pt;}
._25{width:6.585173pt;}
._23{width:7.665920pt;}
._28{width:8.624640pt;}
._1a{width:10.163840pt;}
._30{width:11.054080pt;}
._5{width:12.020693pt;}
._1b{width:13.593813pt;}
._22{width:14.857600pt;}
._1c{width:17.729707pt;}
._1d{width:19.040000pt;}
._1e{width:20.377813pt;}
._26{width:21.271467pt;}
._27{width:22.579200pt;}
._7{width:23.680000pt;}
._2a{width:24.935893pt;}
._1f{width:26.669440pt;}
._20{width:27.727147pt;}
._15{width:28.795520pt;}
._39{width:30.928853pt;}
._3a{width:32.054827pt;}
._31{width:33.313707pt;}
._32{width:34.723840pt;}
._40{width:35.759360pt;}
._3b{width:36.783147pt;}
._18{width:38.357333pt;}
._3d{width:39.759787pt;}
._45{width:42.679040pt;}
._33{width:43.658667pt;}
._34{width:44.906667pt;}
._4b{width:48.458880pt;}
._49{width:49.412907pt;}
._43{width:50.384427pt;}
._16{width:51.658667pt;}
._4c{width:53.685333pt;}
._2d{width:59.968000pt;}
._2e{width:61.388373pt;}
._2c{width:62.864213pt;}
._12{width:63.799467pt;}
._44{width:74.531413pt;}
._17{width:75.422293pt;}
._9{width:80.221227pt;}
._e{width:120.929707pt;}
._a{width:125.395627pt;}
._10{width:130.807040pt;}
._8{width:131.760853pt;}
._d{width:133.359147pt;}
._13{width:142.712320pt;}
._11{width:158.363520pt;}
._4e{width:160.846293pt;}
._f{width:161.859413pt;}
._14{width:167.280853pt;}
._3{width:175.308373pt;}
._4{width:176.851627pt;}
._4d{width:675.333547pt;}
._29{width:752.245333pt;}
._47{width:754.959787pt;}
._48{width:1200.666453pt;}
._19{width:1235.205120pt;}
.fsa{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:42.240000pt;}
.fs7{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fsb{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fsf{font-size:85.760000pt;}
.fsc{font-size:106.240000pt;}
.fs5{font-size:106.880000pt;}
.fs3{font-size:117.120000pt;}
.fse{font-size:117.760000pt;}
.fsd{font-size:138.240000pt;}
.fs1{font-size:138.880000pt;}
.fs2{font-size:146.748252pt;}
.y1b3{bottom:-8.640000pt;}
.y0{bottom:0.000000pt;}
.y212{bottom:2.560000pt;}
.y216{bottom:2.880000pt;}
.y1b7{bottom:4.480000pt;}
.y1bc{bottom:4.520000pt;}
.y1b9{bottom:4.800000pt;}
.y10{bottom:5.600000pt;}
.y200{bottom:6.080000pt;}
.yc{bottom:6.400000pt;}
.y1b2{bottom:6.720000pt;}
.y12{bottom:7.200000pt;}
.y1b5{bottom:7.360000pt;}
.y1fe{bottom:9.600000pt;}
.y6{bottom:10.720000pt;}
.y139{bottom:13.120000pt;}
.y13d{bottom:13.146667pt;}
.y188{bottom:16.320000pt;}
.y12e{bottom:17.920000pt;}
.y137{bottom:17.946667pt;}
.y130{bottom:18.240000pt;}
.y13c{bottom:18.266667pt;}
.y1b4{bottom:22.760000pt;}
.y210{bottom:24.040000pt;}
.y181{bottom:24.640000pt;}
.y184{bottom:24.666667pt;}
.y17a{bottom:25.280000pt;}
.y147{bottom:27.200000pt;}
.y142{bottom:27.226667pt;}
.y1fd{bottom:28.160000pt;}
.y12d{bottom:31.680000pt;}
.y136{bottom:31.706667pt;}
.y12c{bottom:32.000000pt;}
.y141{bottom:32.026667pt;}
.y145{bottom:32.320000pt;}
.y140{bottom:32.346667pt;}
.y187{bottom:34.880000pt;}
.y17e{bottom:38.400000pt;}
.y18a{bottom:41.920000pt;}
.y17c{bottom:41.946667pt;}
.y18c{bottom:41.960000pt;}
.y186{bottom:42.880000pt;}
.y183{bottom:42.906667pt;}
.y180{bottom:42.920000pt;}
.y178{bottom:43.560000pt;}
.y135{bottom:46.106667pt;}
.y1ce{bottom:48.986667pt;}
.y1f7{bottom:51.520000pt;}
.y59{bottom:51.840000pt;}
.y134{bottom:60.186667pt;}
.y179{bottom:62.120000pt;}
.y81{bottom:67.200000pt;}
.y1a3{bottom:68.160000pt;}
.y58{bottom:69.440000pt;}
.y133{bottom:74.266667pt;}
.y132{bottom:74.586667pt;}
.y1cd{bottom:86.106667pt;}
.yf{bottom:97.600000pt;}
.y191{bottom:101.472000pt;}
.y220{bottom:102.112000pt;}
.ye{bottom:103.200000pt;}
.y93{bottom:103.712000pt;}
.y44{bottom:105.952000pt;}
.yc7{bottom:106.592000pt;}
.y167{bottom:108.192000pt;}
.y2a{bottom:108.320000pt;}
.yd3{bottom:108.512000pt;}
.yb9{bottom:109.152000pt;}
.y1f4{bottom:111.712000pt;}
.y199{bottom:112.992000pt;}
.y111{bottom:113.312000pt;}
.y153{bottom:114.592000pt;}
.ya5{bottom:115.872000pt;}
.y176{bottom:116.512000pt;}
.y115{bottom:118.112000pt;}
.y15d{bottom:119.392000pt;}
.yf8{bottom:121.952000pt;}
.yb0{bottom:122.592000pt;}
.y1cc{bottom:122.906667pt;}
.y195{bottom:123.872000pt;}
.y12a{bottom:124.192000pt;}
.ycc{bottom:124.512000pt;}
.y11a{bottom:129.312000pt;}
.y1f3{bottom:129.952000pt;}
.y226{bottom:133.786667pt;}
.y10b{bottom:134.106667pt;}
.y20e{bottom:136.346667pt;}
.y1fb{bottom:138.906667pt;}
.y92{bottom:140.506667pt;}
.y129{bottom:141.786667pt;}
.y43{bottom:142.746667pt;}
.ye4{bottom:143.066667pt;}
.yc6{bottom:143.386667pt;}
.y166{bottom:144.986667pt;}
.yd2{bottom:145.306667pt;}
.yb8{bottom:145.946667pt;}
.y1f2{bottom:148.506667pt;}
.y110{bottom:150.106667pt;}
.ya4{bottom:152.666667pt;}
.y175{bottom:153.306667pt;}
.y114{bottom:154.906667pt;}
.ye7{bottom:156.506667pt;}
.y152{bottom:158.106667pt;}
.y29{bottom:158.560000pt;}
.yaf{bottom:159.386667pt;}
.y190{bottom:159.706667pt;}
.y1cb{bottom:159.746667pt;}
.yf7{bottom:160.026667pt;}
.ycb{bottom:161.306667pt;}
.y15c{bottom:161.626667pt;}
.y198{bottom:165.786667pt;}
.y119{bottom:166.106667pt;}
.y194{bottom:166.426667pt;}
.y1b0{bottom:166.746667pt;}
.yd{bottom:170.720000pt;}
.y109{bottom:170.906667pt;}
.y236{bottom:175.706667pt;}
.y91{bottom:177.306667pt;}
.y42{bottom:179.546667pt;}
.yc5{bottom:180.186667pt;}
.y18f{bottom:180.826667pt;}
.y8b{bottom:182.106667pt;}
.yb7{bottom:182.746667pt;}
.y1f1{bottom:185.306667pt;}
.y151{bottom:185.946667pt;}
.y225{bottom:186.586667pt;}
.y112{bottom:186.906667pt;}
.y193{bottom:187.546667pt;}
.y20d{bottom:189.146667pt;}
.ya3{bottom:189.466667pt;}
.y174{bottom:190.106667pt;}
.y128{bottom:191.386667pt;}
.y1ae{bottom:191.706667pt;}
.ye6{bottom:193.346667pt;}
.ye3{bottom:195.906667pt;}
.yae{bottom:196.226667pt;}
.y1ca{bottom:196.546667pt;}
.yf6{bottom:197.826667pt;}
.yca{bottom:198.146667pt;}
.y127{bottom:201.346667pt;}
.y10f{bottom:202.946667pt;}
.y1f0{bottom:203.586667pt;}
.y15b{bottom:204.226667pt;}
.y108{bottom:207.746667pt;}
.y28{bottom:208.640000pt;}
.y192{bottom:208.706667pt;}
.y23b{bottom:212.546667pt;}
.y150{bottom:213.506667pt;}
.y90{bottom:214.146667pt;}
.y41{bottom:216.386667pt;}
.yc4{bottom:217.026667pt;}
.y197{bottom:218.626667pt;}
.y8a{bottom:218.946667pt;}
.y126{bottom:219.906667pt;}
.y1ef{bottom:222.146667pt;}
.y101{bottom:223.746667pt;}
.y21f{bottom:224.066667pt;}
.y15a{bottom:225.346667pt;}
.y20c{bottom:225.986667pt;}
.ya2{bottom:226.306667pt;}
.y173{bottom:226.946667pt;}
.y1ad{bottom:228.546667pt;}
.y18e{bottom:229.826667pt;}
.ye5{bottom:230.146667pt;}
.yad{bottom:233.026667pt;}
.yf5{bottom:234.626667pt;}
.yc9{bottom:234.946667pt;}
.y80{bottom:235.586667pt;}
.y224{bottom:239.426667pt;}
.y10e{bottom:239.746667pt;}
.y14f{bottom:241.026667pt;}
.y107{bottom:244.546667pt;}
.y159{bottom:246.466667pt;}
.ye2{bottom:248.706667pt;}
.y6b{bottom:250.626667pt;}
.yd4{bottom:250.946667pt;}
.y1c9{bottom:251.586667pt;}
.y7f{bottom:252.226667pt;}
.y1c7{bottom:252.546667pt;}
.y40{bottom:253.186667pt;}
.yc3{bottom:253.826667pt;}
.y89{bottom:255.746667pt;}
.y1ee{bottom:256.386667pt;}
.y27{bottom:258.720000pt;}
.y21e{bottom:260.226667pt;}
.y100{bottom:260.546667pt;}
.y20b{bottom:262.786667pt;}
.ya1{bottom:263.106667pt;}
.y172{bottom:263.746667pt;}
.y235{bottom:265.346667pt;}
.y8f{bottom:266.946667pt;}
.y158{bottom:267.586667pt;}
.y7e{bottom:268.226667pt;}
.y14e{bottom:268.546667pt;}
.yb6{bottom:269.826667pt;}
.y1c6{bottom:270.466667pt;}
.y168{bottom:271.426667pt;}
.yc8{bottom:271.746667pt;}
.yac{bottom:276.226667pt;}
.y10d{bottom:276.546667pt;}
.y23a{bottom:281.026667pt;}
.y1ac{bottom:281.346667pt;}
.y57{bottom:283.266667pt;}
.ye1{bottom:285.506667pt;}
.yf4{bottom:287.426667pt;}
.y6a{bottom:287.746667pt;}
.y157{bottom:288.706667pt;}
.y3f{bottom:289.666667pt;}
.yc2{bottom:290.306667pt;}
.y22e{bottom:291.586667pt;}
.y223{bottom:292.226667pt;}
.y88{bottom:292.546667pt;}
.y14d{bottom:296.413333pt;}
.y106{bottom:297.373333pt;}
.ya0{bottom:299.933333pt;}
.y171{bottom:300.573333pt;}
.y18d{bottom:301.213333pt;}
.y234{bottom:302.173333pt;}
.y7d{bottom:303.773333pt;}
.y1c5{bottom:304.733333pt;}
.y1ed{bottom:305.693333pt;}
.yb5{bottom:306.333333pt;}
.yd1{bottom:308.573333pt;}
.y24c{bottom:310.813333pt;}
.yab{bottom:313.053333pt;}
.yff{bottom:313.373333pt;}
.y20a{bottom:315.613333pt;}
.y26{bottom:316.640000pt;}
.y239{bottom:317.853333pt;}
.y23e{bottom:318.173333pt;}
.y56{bottom:319.773333pt;}
.y1ec{bottom:321.053333pt;}
.y156{bottom:321.373333pt;}
.ye0{bottom:322.333333pt;}
.y14c{bottom:323.933333pt;}
.yf3{bottom:324.253333pt;}
.y69{bottom:324.573333pt;}
.y3e{bottom:324.893333pt;}
.yc1{bottom:327.133333pt;}
.y87{bottom:329.373333pt;}
.y105{bottom:334.173333pt;}
.y1eb{bottom:336.413333pt;}
.y9f{bottom:336.733333pt;}
.y170{bottom:337.373333pt;}
.y1c4{bottom:339.293333pt;}
.y7c{bottom:340.573333pt;}
.yb4{bottom:343.133333pt;}
.y22d{bottom:343.773333pt;}
.y222{bottom:345.053333pt;}
.yd0{bottom:345.373333pt;}
.y146{bottom:345.693333pt;}
.y24b{bottom:347.293333pt;}
.yaa{bottom:349.853333pt;}
.yfe{bottom:350.173333pt;}
.y14b{bottom:351.453333pt;}
.y1ea{bottom:351.773333pt;}
.y209{bottom:352.413333pt;}
.y19d{bottom:353.373333pt;}
.y233{bottom:354.653333pt;}
.y55{bottom:356.573333pt;}
.ydf{bottom:359.133333pt;}
.y3d{bottom:359.453333pt;}
.yf2{bottom:361.053333pt;}
.y68{bottom:361.373333pt;}
.yc0{bottom:363.933333pt;}
.y86{bottom:366.173333pt;}
.y1e9{bottom:367.133333pt;}
.y23d{bottom:370.653333pt;}
.y1ab{bottom:370.973333pt;}
.y18b{bottom:372.573333pt;}
.y9e{bottom:373.533333pt;}
.y7b{bottom:377.373333pt;}
.y14a{bottom:378.973333pt;}
.y25{bottom:379.040000pt;}
.yb3{bottom:379.933333pt;}
.y196{bottom:381.853333pt;}
.ycf{bottom:382.173333pt;}
.y1e8{bottom:382.493333pt;}
.y21d{bottom:384.413333pt;}
.ya9{bottom:386.653333pt;}
.yfd{bottom:386.973333pt;}
.y16f{bottom:390.173333pt;}
.y232{bottom:391.453333pt;}
.y1c3{bottom:392.093333pt;}
.y54{bottom:393.373333pt;}
.y3c{bottom:393.693333pt;}
.yde{bottom:395.973333pt;}
.y22c{bottom:396.613333pt;}
.yf1{bottom:397.893333pt;}
.y67{bottom:398.213333pt;}
.y144{bottom:398.533333pt;}
.y24a{bottom:400.453333pt;}
.ybf{bottom:400.773333pt;}
.y85{bottom:403.013333pt;}
.y149{bottom:406.853333pt;}
.y23c{bottom:407.493333pt;}
.y1aa{bottom:407.813333pt;}
.y1e7{bottom:412.933333pt;}
.y7a{bottom:414.213333pt;}
.yb{bottom:416.000000pt;}
.y9d{bottom:416.773333pt;}
.y21c{bottom:418.693333pt;}
.yce{bottom:419.013333pt;}
.y18{bottom:422.400000pt;}
.y208{bottom:423.173333pt;}
.ya8{bottom:423.493333pt;}
.y104{bottom:423.813333pt;}
.y1c2{bottom:426.693333pt;}
.y16e{bottom:427.013333pt;}
.y3b{bottom:428.293333pt;}
.y53{bottom:430.213333pt;}
.ydd{bottom:432.773333pt;}
.yf0{bottom:434.693333pt;}
.y66{bottom:435.013333pt;}
.y249{bottom:437.253333pt;}
.ybe{bottom:437.573333pt;}
.y1fa{bottom:439.493333pt;}
.y84{bottom:439.813333pt;}
.y24{bottom:441.440000pt;}
.y1e6{bottom:443.653333pt;}
.y189{bottom:443.973333pt;}
.y1a9{bottom:444.613333pt;}
.y22b{bottom:449.413333pt;}
.y79{bottom:451.013333pt;}
.y143{bottom:451.333333pt;}
.y1f6{bottom:452.933333pt;}
.y9c{bottom:453.573333pt;}
.y21b{bottom:455.173333pt;}
.y1f5{bottom:455.493333pt;}
.ycd{bottom:455.813333pt;}
.y1e5{bottom:459.013333pt;}
.ya7{bottom:460.293333pt;}
.y113{bottom:460.613333pt;}
.y1c1{bottom:462.533333pt;}
.y3a{bottom:462.853333pt;}
.y16d{bottom:463.813333pt;}
.y52{bottom:467.013333pt;}
.ydc{bottom:469.573333pt;}
.yef{bottom:471.493333pt;}
.y65{bottom:471.813333pt;}
.y1c8{bottom:472.453333pt;}
.ybd{bottom:474.373333pt;}
.yfc{bottom:476.613333pt;}
.y1a8{bottom:481.413333pt;}
.y248{bottom:487.173333pt;}
.y165{bottom:487.493333pt;}
.y78{bottom:487.813333pt;}
.y1e4{bottom:489.733333pt;}
.y13f{bottom:490.053333pt;}
.y9b{bottom:490.373333pt;}
.y83{bottom:492.293333pt;}
.y10c{bottom:492.613333pt;}
.y23{bottom:496.480000pt;}
.ya6{bottom:497.120000pt;}
.y39{bottom:497.440000pt;}
.y21a{bottom:499.680000pt;}
.y16c{bottom:500.640000pt;}
.y22a{bottom:502.240000pt;}
.y51{bottom:503.840000pt;}
.y221{bottom:504.480000pt;}
.y1e3{bottom:505.120000pt;}
.y17{bottom:505.920000pt;}
.yee{bottom:508.320000pt;}
.y64{bottom:508.640000pt;}
.y1c0{bottom:509.280000pt;}
.ybc{bottom:511.200000pt;}
.y1f9{bottom:513.120000pt;}
.yfb{bottom:513.440000pt;}
.y185{bottom:515.360000pt;}
.y1a7{bottom:518.240000pt;}
.y207{bottom:519.520000pt;}
.y1e2{bottom:520.480000pt;}
.ydb{bottom:522.400000pt;}
.y247{bottom:524.000000pt;}
.y164{bottom:524.320000pt;}
.y77{bottom:524.640000pt;}
.y9a{bottom:527.200000pt;}
.y10a{bottom:529.440000pt;}
.y38{bottom:532.000000pt;}
.y124{bottom:534.240000pt;}
.y1e1{bottom:535.840000pt;}
.y16b{bottom:537.440000pt;}
.y50{bottom:540.640000pt;}
.y13e{bottom:543.200000pt;}
.y219{bottom:543.840000pt;}
.yed{bottom:545.120000pt;}
.y63{bottom:545.440000pt;}
.y22{bottom:546.560000pt;}
.ybb{bottom:548.000000pt;}
.y103{bottom:550.240000pt;}
.y1e0{bottom:551.200000pt;}
.y229{bottom:555.040000pt;}
.y1bf{bottom:556.000000pt;}
.ya{bottom:556.480000pt;}
.yda{bottom:559.200000pt;}
.y246{bottom:560.800000pt;}
.y163{bottom:561.120000pt;}
.y76{bottom:561.440000pt;}
.y99{bottom:564.000000pt;}
.y1af{bottom:565.920000pt;}
.y37{bottom:566.240000pt;}
.y1df{bottom:566.560000pt;}
.y9{bottom:567.200000pt;}
.y206{bottom:567.840000pt;}
.y123{bottom:571.040000pt;}
.y253{bottom:573.920000pt;}
.y4f{bottom:577.440000pt;}
.yec{bottom:581.920000pt;}
.y62{bottom:582.240000pt;}
.y11e{bottom:587.040000pt;}
.y218{bottom:588.320000pt;}
.y182{bottom:588.640000pt;}
.y16a{bottom:589.920000pt;}
.y19c{bottom:590.240000pt;}
.yd9{bottom:596.000000pt;}
.y21{bottom:596.640000pt;}
.y1de{bottom:596.960000pt;}
.y162{bottom:597.920000pt;}
.y75{bottom:598.240000pt;}
.yba{bottom:600.506667pt;}
.y36{bottom:600.826667pt;}
.y1be{bottom:602.746667pt;}
.yfa{bottom:603.066667pt;}
.y228{bottom:607.866667pt;}
.y245{bottom:611.066667pt;}
.y1dd{bottom:612.346667pt;}
.y4e{bottom:613.946667pt;}
.y8e{bottom:614.266667pt;}
.y205{bottom:615.866667pt;}
.yeb{bottom:618.746667pt;}
.y61{bottom:619.066667pt;}
.y122{bottom:623.546667pt;}
.y11d{bottom:623.866667pt;}
.y19b{bottom:627.066667pt;}
.y1dc{bottom:627.706667pt;}
.y8{bottom:628.640000pt;}
.yd8{bottom:632.826667pt;}
.yd5{bottom:634.746667pt;}
.y74{bottom:635.066667pt;}
.y35{bottom:635.386667pt;}
.y98{bottom:637.626667pt;}
.y7{bottom:639.360000pt;}
.y102{bottom:639.866667pt;}
.y1db{bottom:643.066667pt;}
.y231{bottom:644.666667pt;}
.y20{bottom:646.720000pt;}
.y244{bottom:647.866667pt;}
.y1bd{bottom:649.466667pt;}
.y252{bottom:650.106667pt;}
.y4d{bottom:651.066667pt;}
.y60{bottom:655.866667pt;}
.y1da{bottom:658.426667pt;}
.y227{bottom:660.666667pt;}
.y17f{bottom:661.946667pt;}
.y19a{bottom:663.866667pt;}
.y204{bottom:664.186667pt;}
.yd7{bottom:669.626667pt;}
.y34{bottom:669.946667pt;}
.yea{bottom:671.546667pt;}
.y73{bottom:671.866667pt;}
.y13b{bottom:673.466667pt;}
.y1d9{bottom:673.786667pt;}
.yb2{bottom:674.426667pt;}
.y11c{bottom:676.666667pt;}
.y217{bottom:677.306667pt;}
.y97{bottom:681.146667pt;}
.y243{bottom:684.666667pt;}
.y4c{bottom:687.866667pt;}
.y1d8{bottom:689.146667pt;}
.y5f{bottom:692.666667pt;}
.y1bb{bottom:696.186667pt;}
.y1f{bottom:696.960000pt;}
.y230{bottom:697.466667pt;}
.y1a0{bottom:700.706667pt;}
.y5{bottom:700.960000pt;}
.y33{bottom:704.226667pt;}
.y1d7{bottom:704.546667pt;}
.yd6{bottom:707.746667pt;}
.ye9{bottom:708.386667pt;}
.y72{bottom:708.706667pt;}
.yb1{bottom:711.266667pt;}
.y251{bottom:711.586667pt;}
.y19{bottom:711.680000pt;}
.y13a{bottom:712.226667pt;}
.y203{bottom:712.546667pt;}
.y238{bottom:713.186667pt;}
.y11b{bottom:713.506667pt;}
.y96{bottom:717.986667pt;}
.y1d6{bottom:719.906667pt;}
.y215{bottom:721.506667pt;}
.y161{bottom:724.386667pt;}
.y4b{bottom:724.706667pt;}
.y5e{bottom:729.506667pt;}
.y22f{bottom:734.306667pt;}
.y1d5{bottom:735.266667pt;}
.y17d{bottom:735.586667pt;}
.y32{bottom:738.786667pt;}
.y1ba{bottom:742.626667pt;}
.ye8{bottom:745.186667pt;}
.y71{bottom:745.506667pt;}
.y237{bottom:749.986667pt;}
.y121{bottom:750.306667pt;}
.y1d4{bottom:750.626667pt;}
.y138{bottom:750.946667pt;}
.y1e{bottom:754.560000pt;}
.y95{bottom:754.786667pt;}
.y242{bottom:758.306667pt;}
.y202{bottom:760.546667pt;}
.y160{bottom:761.186667pt;}
.y4a{bottom:761.506667pt;}
.y1d3{bottom:765.666667pt;}
.y214{bottom:765.986667pt;}
.y5d{bottom:766.306667pt;}
.y31{bottom:773.346667pt;}
.y1d2{bottom:781.026667pt;}
.y70{bottom:782.306667pt;}
.y120{bottom:787.106667pt;}
.y1b8{bottom:789.346667pt;}
.y131{bottom:789.986667pt;}
.y1a1{bottom:790.306667pt;}
.y94{bottom:791.586667pt;}
.y241{bottom:795.106667pt;}
.y1d1{bottom:796.386667pt;}
.y15f{bottom:797.986667pt;}
.y49{bottom:798.306667pt;}
.y17b{bottom:799.906667pt;}
.y250{bottom:802.173333pt;}
.y16{bottom:802.240000pt;}
.y1a6{bottom:802.813333pt;}
.y5c{bottom:803.133333pt;}
.y30{bottom:807.933333pt;}
.y201{bottom:808.893333pt;}
.y1d{bottom:809.120000pt;}
.y213{bottom:810.493333pt;}
.y1d0{bottom:811.773333pt;}
.yf9{bottom:818.813333pt;}
.y6f{bottom:819.133333pt;}
.y117{bottom:820.733333pt;}
.y11f{bottom:823.933333pt;}
.y19f{bottom:827.133333pt;}
.y15e{bottom:834.813333pt;}
.y48{bottom:835.133333pt;}
.y125{bottom:835.773333pt;}
.y1b6{bottom:836.093333pt;}
.y1f8{bottom:839.613333pt;}
.y5b{bottom:839.933333pt;}
.y2f{bottom:842.493333pt;}
.y240{bottom:845.373333pt;}
.y211{bottom:854.973333pt;}
.y1a5{bottom:855.613333pt;}
.y6e{bottom:855.933333pt;}
.y116{bottom:856.573333pt;}
.y1ff{bottom:857.213333pt;}
.y169{bottom:863.613333pt;}
.y19e{bottom:863.933333pt;}
.y24f{bottom:864.893333pt;}
.y4{bottom:865.120000pt;}
.y177{bottom:871.293333pt;}
.y47{bottom:871.613333pt;}
.y8d{bottom:871.933333pt;}
.y154{bottom:872.573333pt;}
.y1c{bottom:873.920000pt;}
.y82{bottom:876.413333pt;}
.y2e{bottom:876.733333pt;}
.y1b1{bottom:882.813333pt;}
.y12f{bottom:885.053333pt;}
.y1a4{bottom:892.413333pt;}
.y6d{bottom:892.733333pt;}
.y23f{bottom:895.293333pt;}
.y20f{bottom:899.133333pt;}
.y1fc{bottom:905.253333pt;}
.y46{bottom:908.453333pt;}
.y8c{bottom:908.773333pt;}
.y2d{bottom:911.333333pt;}
.y24e{bottom:916.773333pt;}
.y3{bottom:916.960000pt;}
.y12b{bottom:923.813333pt;}
.y15{bottom:926.560000pt;}
.y148{bottom:927.653333pt;}
.y5a{bottom:929.253333pt;}
.y1cf{bottom:929.573333pt;}
.y1a{bottom:930.213333pt;}
.y1b{bottom:935.200000pt;}
.y155{bottom:941.093333pt;}
.y6c{bottom:945.253333pt;}
.y45{bottom:945.573333pt;}
.y2c{bottom:945.893333pt;}
.y118{bottom:946.213333pt;}
.y14{bottom:951.840000pt;}
.y13{bottom:959.040000pt;}
.y24d{bottom:968.613333pt;}
.y2{bottom:968.640000pt;}
.y11{bottom:984.480000pt;}
.y2b{bottom:995.813333pt;}
.y1a2{bottom:996.133333pt;}
.y1{bottom:1020.480000pt;}
.h3d{height:0.000000pt;}
.h2b{height:4.492500pt;}
.h21{height:17.915625pt;}
.h9{height:25.280000pt;}
.h27{height:27.520000pt;}
.h24{height:27.552000pt;}
.h34{height:29.349375pt;}
.ha{height:32.480000pt;}
.hc{height:32.640000pt;}
.h43{height:32.960000pt;}
.h45{height:32.992000pt;}
.h5{height:33.120000pt;}
.h44{height:33.280000pt;}
.h37{height:34.880000pt;}
.h35{height:34.912000pt;}
.h3b{height:35.200000pt;}
.h3a{height:35.232000pt;}
.h3f{height:36.800000pt;}
.h41{height:36.832000pt;}
.h26{height:37.063125pt;}
.h40{height:37.120000pt;}
.h16{height:37.353750pt;}
.h1{height:39.243750pt;}
.h23{height:39.311250pt;}
.h1b{height:40.307500pt;}
.h1a{height:40.320000pt;}
.h46{height:40.882500pt;}
.h17{height:40.911250pt;}
.h28{height:41.280000pt;}
.h22{height:41.600000pt;}
.h29{height:41.632000pt;}
.h39{height:42.660000pt;}
.h18{height:44.437500pt;}
.h19{height:44.468750pt;}
.h1f{height:45.625000pt;}
.h47{height:45.906250pt;}
.h14{height:47.171250pt;}
.h3e{height:48.640000pt;}
.h2{height:48.960000pt;}
.h36{height:50.032500pt;}
.h1e{height:50.562500pt;}
.h2e{height:50.625000pt;}
.h20{height:51.663750pt;}
.h2f{height:52.800000pt;}
.h38{height:53.910000pt;}
.h42{height:54.752000pt;}
.h15{height:56.156250pt;}
.h4b{height:57.159375pt;}
.h13{height:57.250000pt;}
.hd{height:57.855000pt;}
.h1c{height:58.789375pt;}
.h1d{height:58.896042pt;}
.h7{height:59.158400pt;}
.h2d{height:59.552000pt;}
.h11{height:59.562500pt;}
.h33{height:59.840000pt;}
.h32{height:59.872000pt;}
.h31{height:61.760000pt;}
.h30{height:61.792000pt;}
.h2a{height:66.503125pt;}
.h48{height:71.795000pt;}
.hb{height:72.645000pt;}
.h12{height:76.142500pt;}
.h4a{height:79.580000pt;}
.h8{height:81.398400pt;}
.h2c{height:82.272000pt;}
.h25{height:83.872000pt;}
.h49{height:92.137500pt;}
.he{height:99.469375pt;}
.h6{height:108.999375pt;}
.h3{height:125.724375pt;}
.h4{height:132.847294pt;}
.h3c{height:210.946667pt;}
.h0{height:1056.000000pt;}
.h10{height:1085.333333pt;}
.hf{height:1097.333333pt;}
.w2b{width:0.000000pt;}
.wf{width:3.040000pt;}
.wc{width:9.600000pt;}
.w5{width:14.400000pt;}
.w6{width:16.000000pt;}
.w4{width:25.120000pt;}
.w14{width:35.520000pt;}
.wa{width:39.200000pt;}
.w1a{width:45.440000pt;}
.w22{width:45.792000pt;}
.w21{width:47.360000pt;}
.w13{width:48.672000pt;}
.w20{width:51.232000pt;}
.w26{width:55.712000pt;}
.w19{width:58.912000pt;}
.w23{width:60.512000pt;}
.we{width:61.440000pt;}
.w27{width:62.432000pt;}
.w28{width:64.992000pt;}
.w17{width:65.280000pt;}
.w16{width:65.312000pt;}
.w25{width:71.040000pt;}
.w24{width:71.072000pt;}
.w15{width:71.392000pt;}
.w1e{width:83.232000pt;}
.w29{width:84.832000pt;}
.w1f{width:89.312000pt;}
.w1c{width:91.552000pt;}
.w2{width:95.840000pt;}
.w1b{width:97.024000pt;}
.w3{width:100.000000pt;}
.w18{width:107.552000pt;}
.w1d{width:108.512000pt;}
.w2d{width:111.712000pt;}
.w2c{width:111.744000pt;}
.w2e{width:112.032000pt;}
.w10{width:120.320000pt;}
.w30{width:126.112000pt;}
.w31{width:126.144000pt;}
.w2f{width:126.464000pt;}
.wd{width:167.680000pt;}
.w9{width:230.240000pt;}
.wb{width:242.080000pt;}
.w2a{width:256.093333pt;}
.w7{width:261.600000pt;}
.w1{width:267.520000pt;}
.w8{width:304.960000pt;}
.w12{width:776.000000pt;}
.w11{width:798.666667pt;}
.w0{width:816.000000pt;}
.x1c{left:-572.480000pt;}
.x62{left:-498.746667pt;}
.x20{left:-404.960000pt;}
.x1e{left:-400.800000pt;}
.x11{left:-267.360000pt;}
.x19{left:-261.440000pt;}
.x21{left:-242.240000pt;}
.x13{left:-99.840000pt;}
.x12{left:-95.680000pt;}
.x14{left:-24.960000pt;}
.x16{left:-14.240000pt;}
.x0{left:0.000000pt;}
.x34{left:5.120000pt;}
.xc{left:7.040000pt;}
.x45{left:8.000000pt;}
.x48{left:9.280000pt;}
.x59{left:10.240000pt;}
.x1{left:11.520000pt;}
.x57{left:14.720000pt;}
.x49{left:16.000000pt;}
.x53{left:16.960000pt;}
.x4c{left:17.920000pt;}
.x4a{left:19.520000pt;}
.x4f{left:21.146667pt;}
.x4e{left:22.426667pt;}
.x60{left:23.386667pt;}
.x42{left:24.346667pt;}
.x4b{left:25.280000pt;}
.x4d{left:27.546667pt;}
.x69{left:28.800000pt;}
.x5f{left:29.760000pt;}
.x5e{left:31.040000pt;}
.x64{left:32.992000pt;}
.x66{left:34.880000pt;}
.x2{left:37.440000pt;}
.x46{left:38.720000pt;}
.x6d{left:40.354667pt;}
.xd{left:43.360000pt;}
.x73{left:44.506667pt;}
.x6b{left:45.466667pt;}
.x6c{left:47.714667pt;}
.x74{left:48.666667pt;}
.x50{left:50.240000pt;}
.x6a{left:51.554667pt;}
.x75{left:54.106667pt;}
.x77{left:55.074667pt;}
.x76{left:58.586667pt;}
.x8{left:59.520000pt;}
.x72{left:60.506667pt;}
.x33{left:90.912000pt;}
.x23{left:96.032000pt;}
.x52{left:98.272000pt;}
.x25{left:115.360040pt;}
.x24{left:131.840000pt;}
.x35{left:140.226667pt;}
.x3{left:143.520000pt;}
.x40{left:151.106667pt;}
.x2a{left:169.760133pt;}
.x36{left:176.386667pt;}
.x5{left:191.520000pt;}
.x41{left:197.506667pt;}
.x54{left:198.466667pt;}
.x2b{left:201.760000pt;}
.x6{left:204.960000pt;}
.x4{left:209.120000pt;}
.x2c{left:211.360000pt;}
.x6e{left:225.373333pt;}
.x2d{left:226.400000pt;}
.x55{left:245.213333pt;}
.x37{left:248.413333pt;}
.xe{left:249.920000pt;}
.x29{left:273.120000pt;}
.x9{left:277.920000pt;}
.x7{left:279.840000pt;}
.xa{left:285.280000pt;}
.xb{left:290.560000pt;}
.x43{left:295.493333pt;}
.x10{left:304.960000pt;}
.x56{left:306.693333pt;}
.x1a{left:314.560000pt;}
.x27{left:318.720000pt;}
.x38{left:320.453333pt;}
.x65{left:323.333333pt;}
.x17{left:344.160000pt;}
.x63{left:349.893333pt;}
.x6f{left:352.133333pt;}
.x18{left:367.840000pt;}
.x28{left:371.520000pt;}
.x58{left:378.720000pt;}
.x39{left:386.400000pt;}
.x44{left:388.000000pt;}
.x2e{left:392.000400pt;}
.x26{left:396.000000pt;}
.xf{left:407.680000pt;}
.x67{left:436.000000pt;}
.x5a{left:450.720000pt;}
.x3a{left:452.320000pt;}
.x61{left:466.106667pt;}
.x70{left:479.226667pt;}
.x47{left:497.466667pt;}
.x5b{left:507.386667pt;}
.x3b{left:518.266667pt;}
.x15{left:535.200000pt;}
.x68{left:548.706667pt;}
.x5c{left:570.786667pt;}
.x3f{left:581.666667pt;}
.x3c{left:590.306667pt;}
.x71{left:606.306667pt;}
.x1b{left:609.920000pt;}
.x3e{left:622.333333pt;}
.x78{left:629.053333pt;}
.x32{left:631.613333pt;}
.x5d{left:636.733333pt;}
.x30{left:652.093333pt;}
.x31{left:668.413333pt;}
.x1f{left:671.360000pt;}
.x51{left:686.013333pt;}
.x2f{left:686.973333pt;}
.x3d{left:720.293333pt;}
.x22{left:730.240000pt;}
.x1d{left:777.600000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  