
    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_48f92edd54b80b957d62a64d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ad33297a1749e579e8e33280.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7d55de195e9966a2641526df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909668;font-style:normal;font-weight: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_68cc675b63cc5260ccd6d010.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911621;font-style:normal;font-weight: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_bbdc17f4da038a922e099d9f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936035;font-style:normal;font-weight: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_1fda06f5c6ff0c4bee9b267b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906250;font-style:normal;font-weight: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_879840bdc5bcb49959a1fd94.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897461;font-style:normal;font-weight: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_fb94b0b963f6f8d98b87da85.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.906250;font-style:normal;font-weight: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_d81093e0d1391b25a8e9b809.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.991211;font-style:normal;font-weight: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_f6607d27874d3085b47a1a39.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.884766;font-style:normal;font-weight: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_7f958d423a6ce98d60e6aa4c.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f098933d9e467aad608592d3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.585840;font-style:normal;font-weight: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_eeca3f122bdd1db75e3cdf00.woff2')format("woff");}.fff{font-family:fff;line-height:0.911621;font-style:normal;font-weight: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_3bccda1576f8decdbdd98204.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.712402;font-style:normal;font-weight: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_e6f0559674c0c46dce30eb6d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.887971;font-style:normal;font-weight: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_25abad795c00b0106517a6aa.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.908691;font-style:normal;font-weight: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_5fcd6973190aa4562dc30c7c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.909668;font-style:normal;font-weight: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_e0cff7484c272d9e6550d6df.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.906250;font-style:normal;font-weight: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_b23142885b2fd03e18a9e2e9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.897461;font-style:normal;font-weight: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_93f908bd3bce257f5df7ce72.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.906738;font-style:normal;font-weight: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_c07ad505d6fbc001e9902800.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.689941;font-style:normal;font-weight: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_c4cc9840c57efe09661374f3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.984863;font-style:normal;font-weight: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_6c4cd65f106a700e6662b8d7.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.977539;font-style:normal;font-weight: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_97a0f3e092a2494c9b193577.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.909668;font-style:normal;font-weight: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_3353bbbc1c0e98790eb48080.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.906738;font-style:normal;font-weight: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_7951891f344f065ddbad2531.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.906000;font-style:normal;font-weight: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_621fb4fdb68f0bdd71d354fd.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.906000;font-style:normal;font-weight: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_3bc80a12d705c05949935c0c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.908691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440792px;}
.v2{vertical-align:41.037948px;}
.ls16{letter-spacing:-6.326100px;}
.ls18{letter-spacing:-5.702400px;}
.ls17{letter-spacing:-5.459400px;}
.ls7f{letter-spacing:-5.045544px;}
.ls89{letter-spacing:-4.324752px;}
.ls7e{letter-spacing:-4.319640px;}
.ls55{letter-spacing:-4.038480px;}
.ls8f{letter-spacing:-3.966912px;}
.ls73{letter-spacing:-3.961800px;}
.ls3a{letter-spacing:-3.685824px;}
.ls87{letter-spacing:-3.603960px;}
.ls6f{letter-spacing:-3.598848px;}
.lsc{letter-spacing:-3.595500px;}
.ls45{letter-spacing:-3.321792px;}
.ls2f{letter-spacing:-3.316104px;}
.ls38{letter-spacing:-3.310416px;}
.ls28{letter-spacing:-3.297996px;}
.ls1c{letter-spacing:-3.246120px;}
.lsb{letter-spacing:-3.244500px;}
.ls80{letter-spacing:-3.241008px;}
.ls6e{letter-spacing:-3.230784px;}
.lse{letter-spacing:-2.952072px;}
.ls30{letter-spacing:-2.946384px;}
.ls3b{letter-spacing:-2.940696px;}
.ls2a{letter-spacing:-2.931552px;}
.ls6d{letter-spacing:-2.888280px;}
.ls23{letter-spacing:-2.883168px;}
.ls81{letter-spacing:-2.872944px;}
.lsf{letter-spacing:-2.582352px;}
.lsa{letter-spacing:-2.576664px;}
.ls27{letter-spacing:-2.565108px;}
.ls68{letter-spacing:-2.525328px;}
.ls58{letter-spacing:-2.521800px;}
.ls65{letter-spacing:-2.520216px;}
.ls14{letter-spacing:-2.519100px;}
.ls49{letter-spacing:-2.518488px;}
.ls4d{letter-spacing:-2.513700px;}
.ls88{letter-spacing:-2.509992px;}
.ls39{letter-spacing:-2.218320px;}
.ls2c{letter-spacing:-2.212632px;}
.ls35{letter-spacing:-2.206944px;}
.ls59{letter-spacing:-2.189880px;}
.ls21{letter-spacing:-2.167488px;}
.ls53{letter-spacing:-2.165400px;}
.ls70{letter-spacing:-2.162376px;}
.ls71{letter-spacing:-2.157264px;}
.ls19{letter-spacing:-2.156544px;}
.ls20{letter-spacing:-2.152152px;}
.ls83{letter-spacing:-2.147040px;}
.ls36{letter-spacing:-2.098872px;}
.ls37{letter-spacing:-2.041992px;}
.ls5{letter-spacing:-1.848600px;}
.ls8{letter-spacing:-1.842912px;}
.ls32{letter-spacing:-1.837224px;}
.ls29{letter-spacing:-1.832220px;}
.ls3d{letter-spacing:-1.825848px;}
.ls84{letter-spacing:-1.809648px;}
.ls25{letter-spacing:-1.804536px;}
.ls6b{letter-spacing:-1.799424px;}
.ls24{letter-spacing:-1.794312px;}
.ls66{letter-spacing:-1.789200px;}
.ls50{letter-spacing:-1.700712px;}
.ls2e{letter-spacing:-1.683648px;}
.ls3f{letter-spacing:-1.677960px;}
.ls51{letter-spacing:-1.666584px;}
.ls8e{letter-spacing:-1.635840px;}
.ls2d{letter-spacing:-1.626768px;}
.ls3e{letter-spacing:-1.621080px;}
.ls11{letter-spacing:-1.478880px;}
.ls4{letter-spacing:-1.473192px;}
.ls74{letter-spacing:-1.451808px;}
.ls1d{letter-spacing:-1.446696px;}
.ls67{letter-spacing:-1.441584px;}
.ls61{letter-spacing:-1.441188px;}
.ls1e{letter-spacing:-1.436472px;}
.ls1a{letter-spacing:-1.435500px;}
.ls7c{letter-spacing:-1.431360px;}
.ls7b{letter-spacing:-1.426248px;}
.ls86{letter-spacing:-1.303560px;}
.ls85{letter-spacing:-1.247328px;}
.ls26{letter-spacing:-1.115604px;}
.ls31{letter-spacing:-1.114848px;}
.ls6{letter-spacing:-1.109160px;}
.ls2b{letter-spacing:-1.103472px;}
.ls76{letter-spacing:-1.088856px;}
.ls57{letter-spacing:-1.086876px;}
.ls75{letter-spacing:-1.083744px;}
.ls64{letter-spacing:-1.078632px;}
.ls7d{letter-spacing:-1.073520px;}
.ls8b{letter-spacing:-1.068408px;}
.ls7{letter-spacing:-0.745128px;}
.lsd{letter-spacing:-0.739440px;}
.ls44{letter-spacing:-0.733752px;}
.ls5b{letter-spacing:-0.727776px;}
.ls82{letter-spacing:-0.725904px;}
.ls78{letter-spacing:-0.720792px;}
.ls15{letter-spacing:-0.719316px;}
.ls22{letter-spacing:-0.715680px;}
.ls1f{letter-spacing:-0.710568px;}
.ls41{letter-spacing:-0.557424px;}
.ls40{letter-spacing:-0.534672px;}
.ls42{letter-spacing:-0.375408px;}
.ls10{letter-spacing:-0.369720px;}
.ls4b{letter-spacing:-0.368676px;}
.ls13{letter-spacing:-0.366444px;}
.ls54{letter-spacing:-0.364032px;}
.ls56{letter-spacing:-0.363888px;}
.ls8a{letter-spacing:-0.362952px;}
.ls63{letter-spacing:-0.357840px;}
.ls5e{letter-spacing:-0.354312px;}
.ls79{letter-spacing:-0.352728px;}
.ls69{letter-spacing:-0.347616px;}
.ls33{letter-spacing:-0.093600px;}
.ls3{letter-spacing:-0.072000px;}
.ls48{letter-spacing:-0.064800px;}
.ls52{letter-spacing:-0.043200px;}
.ls62{letter-spacing:-0.028800px;}
.ls43{letter-spacing:-0.011376px;}
.ls34{letter-spacing:-0.006588px;}
.ls9{letter-spacing:-0.005688px;}
.ls4a{letter-spacing:-0.004788px;}
.ls12{letter-spacing:-0.004212px;}
.ls0{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.004788px;}
.ls6c{letter-spacing:0.005112px;}
.ls5a{letter-spacing:0.005688px;}
.ls5f{letter-spacing:0.009576px;}
.ls46{letter-spacing:0.013176px;}
.ls60{letter-spacing:0.354312px;}
.ls5c{letter-spacing:0.368676px;}
.ls3c{letter-spacing:0.392472px;}
.ls72{letter-spacing:6.124176px;}
.ls6a{letter-spacing:8.286552px;}
.ls47{letter-spacing:8.469432px;}
.ls1b{letter-spacing:9.499392px;}
.ls8c{letter-spacing:10.443816px;}
.ls8d{letter-spacing:11.185056px;}
.ls7a{letter-spacing:11.522448px;}
.ls4c{letter-spacing:12.242916px;}
.ls77{letter-spacing:12.964032px;}
.ls2{letter-spacing:20.520864px;}
.ls4e{letter-spacing:122.022180px;}
.ls5d{letter-spacing:374.751972px;}
.ls1{letter-spacing:689.399100px;}
.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;}
}
.ws3{word-spacing:-19.440000px;}
.ws2b{word-spacing:-17.935200px;}
.ws12{word-spacing:-14.498712px;}
.ws18{word-spacing:-14.328072px;}
.ws3c{word-spacing:-12.933360px;}
.ws21{word-spacing:-12.247704px;}
.ws34{word-spacing:-12.222792px;}
.ws43{word-spacing:-12.217680px;}
.ws24{word-spacing:-11.874240px;}
.ws42{word-spacing:-11.854728px;}
.ws2e{word-spacing:-11.849616px;}
.ws3a{word-spacing:-11.629800px;}
.ws36{word-spacing:-11.507112px;}
.ws37{word-spacing:-11.502000px;}
.ws5{word-spacing:-11.496888px;}
.ws2c{word-spacing:-11.491776px;}
.ws39{word-spacing:-11.486664px;}
.ws2d{word-spacing:-11.133936px;}
.ws6{word-spacing:-10.781208px;}
.ws3b{word-spacing:-10.770984px;}
.ws38{word-spacing:-10.765872px;}
.ws7{word-spacing:-10.656360px;}
.ws2{word-spacing:-10.441548px;}
.ws35{word-spacing:-10.413144px;}
.ws1{word-spacing:-10.079316px;}
.ws4{word-spacing:-9.687240px;}
.ws8{word-spacing:-8.824140px;}
.ws46{word-spacing:-7.565760px;}
.ws10{word-spacing:-0.745128px;}
.ws26{word-spacing:-0.733752px;}
.ws33{word-spacing:-0.731016px;}
.ws25{word-spacing:-0.375408px;}
.ws11{word-spacing:-0.369720px;}
.wsd{word-spacing:-0.368064px;}
.ws17{word-spacing:-0.364032px;}
.ws41{word-spacing:-0.362952px;}
.ws45{word-spacing:-0.357840px;}
.wsa{word-spacing:-0.353808px;}
.ws16{word-spacing:-0.210456px;}
.ws44{word-spacing:-0.163584px;}
.wsf{word-spacing:-0.005688px;}
.ws31{word-spacing:-0.005112px;}
.ws28{word-spacing:-0.004788px;}
.ws13{word-spacing:-0.004212px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.005112px;}
.ws2f{word-spacing:0.005688px;}
.ws14{word-spacing:0.019764px;}
.ws30{word-spacing:0.352728px;}
.ws32{word-spacing:0.362952px;}
.ws9{word-spacing:0.364032px;}
.ws3d{word-spacing:0.368064px;}
.wsc{word-spacing:0.405000px;}
.ws3f{word-spacing:0.710568px;}
.ws27{word-spacing:0.722988px;}
.ws3e{word-spacing:0.725904px;}
.ws15{word-spacing:0.733752px;}
.wsb{word-spacing:0.907200px;}
.ws40{word-spacing:1.441584px;}
.ws23{word-spacing:76.689396px;}
.ws2a{word-spacing:329.040936px;}
.ws1d{word-spacing:419.759172px;}
.ws19{word-spacing:432.729864px;}
.ws1f{word-spacing:447.481692px;}
.ws29{word-spacing:457.589160px;}
.ws1e{word-spacing:458.302572px;}
.ws1c{word-spacing:488.873952px;}
.ws1a{word-spacing:498.919176px;}
.ws1b{word-spacing:510.482196px;}
.ws20{word-spacing:541.431828px;}
.ws22{word-spacing:553.315644px;}
._10{margin-left:-730.783296px;}
._2d{margin-left:-541.063152px;}
._22{margin-left:-529.557588px;}
._53{margin-left:-169.844292px;}
._50{margin-left:-168.125832px;}
._59{margin-left:-16.017408px;}
._58{margin-left:-14.763456px;}
._15{margin-left:-12.774384px;}
._4c{margin-left:-11.677860px;}
._1c{margin-left:-10.665000px;}
._1b{margin-left:-9.578592px;}
._1d{margin-left:-8.486496px;}
._57{margin-left:-6.979176px;}
._5b{margin-left:-5.326272px;}
._9{margin-left:-4.073472px;}
._8{margin-left:-2.616408px;}
._5{margin-left:-1.075032px;}
._0{width:1.120536px;}
._3{width:2.172816px;}
._12{width:3.362580px;}
._1e{width:4.509468px;}
._5a{width:5.823504px;}
._7{width:6.830064px;}
._4{width:8.475120px;}
._2{width:9.589968px;}
._1{width:10.653624px;}
._b{width:11.672892px;}
._c{width:12.883320px;}
._39{width:14.034600px;}
._17{width:15.331392px;}
._13{width:16.605000px;}
._11{width:17.855748px;}
._d{width:19.504152px;}
._e{width:20.977344px;}
._6{width:22.046688px;}
._a{width:23.089500px;}
._16{width:24.399612px;}
._14{width:25.988040px;}
._1a{width:27.234144px;}
._5c{width:28.712016px;}
._19{width:30.186216px;}
._18{width:31.278312px;}
._2f{width:38.080044px;}
._56{width:39.736368px;}
._f{width:41.555988px;}
._3d{width:44.339112px;}
._34{width:61.559316px;}
._30{width:66.828312px;}
._4f{width:83.353860px;}
._32{width:122.079636px;}
._47{width:126.010584px;}
._4a{width:129.232908px;}
._4b{width:130.319784px;}
._43{width:139.321224px;}
._44{width:143.285688px;}
._42{width:145.066824px;}
._48{width:171.348156px;}
._45{width:172.770192px;}
._41{width:185.400936px;}
._46{width:225.356796px;}
._49{width:226.462824px;}
._40{width:269.698932px;}
._3e{width:280.117620px;}
._3b{width:291.880404px;}
._4d{width:300.978468px;}
._4e{width:318.272724px;}
._52{width:367.177356px;}
._2c{width:402.252228px;}
._2b{width:427.813776px;}
._2a{width:440.056692px;}
._55{width:461.534472px;}
._54{width:469.434672px;}
._29{width:471.230028px;}
._51{width:472.312260px;}
._37{width:478.115784px;}
._1f{width:486.748080px;}
._21{width:492.304536px;}
._23{width:503.625780px;}
._20{width:529.548012px;}
._3f{width:534.002508px;}
._24{width:541.427040px;}
._25{width:546.114492px;}
._27{width:547.895628px;}
._2e{width:553.679676px;}
._28{width:559.784232px;}
._26{width:565.194672px;}
._38{width:732.699720px;}
._31{width:742.671324px;}
._35{width:753.972948px;}
._36{width:1270.453608px;}
._3c{width:1369.357848px;}
._3a{width:1380.697596px;}
._33{width:1393.120836px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:4.680000px;}
.fs5{font-size:6.120000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:42.120000px;}
.fsc{font-size:44.280000px;}
.fs7{font-size:45.000000px;}
.fsd{font-size:47.880000px;}
.fse{font-size:51.120000px;}
.fs10{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsf{font-size:65.880000px;}
.fsb{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:81.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:2.519850px;}
.y4b{bottom:2.699850px;}
.y4e{bottom:3.239850px;}
.y44{bottom:5.399850px;}
.y6{bottom:50.595005px;}
.y61{bottom:66.167850px;}
.y63{bottom:73.817448px;}
.y5e{bottom:74.178000px;}
.y5{bottom:75.795004px;}
.y60{bottom:76.697850px;}
.y5d{bottom:87.137850px;}
.y4{bottom:100.995005px;}
.y2e{bottom:116.387850px;}
.y2c1{bottom:117.283638px;}
.y20f{bottom:118.634376px;}
.y1fb{bottom:118.635798px;}
.y1b7{bottom:118.817850px;}
.y1a2{bottom:120.795915px;}
.y173{bottom:120.796176px;}
.y13f{bottom:124.031208px;}
.yf6{bottom:124.032180px;}
.y8f{bottom:124.033206px;}
.y224{bottom:124.306446px;}
.y113{bottom:127.815150px;}
.yca{bottom:127.816122px;}
.yb6{bottom:128.085690px;}
.y1d1{bottom:128.265906px;}
.y3b{bottom:131.596554px;}
.y2d{bottom:131.597850px;}
.y251{bottom:131.864124px;}
.y2c0{bottom:131.953800px;}
.y288{bottom:133.121220px;}
.y1a1{bottom:135.195825px;}
.y20e{bottom:138.704484px;}
.y1fa{bottom:138.705906px;}
.y1b5{bottom:138.887202px;}
.y1b6{bottom:138.887850px;}
.y23{bottom:139.264499px;}
.y172{bottom:141.316347px;}
.y13e{bottom:144.101316px;}
.yf5{bottom:144.102288px;}
.y8e{bottom:144.103314px;}
.y223{bottom:144.376554px;}
.y250{bottom:146.534286px;}
.y2bf{bottom:146.623962px;}
.y287{bottom:147.791382px;}
.y112{bottom:147.885258px;}
.yc9{bottom:147.886230px;}
.yb5{bottom:148.155798px;}
.y1d0{bottom:148.336014px;}
.y2c{bottom:149.687850px;}
.y3a{bottom:151.666662px;}
.y1a0{bottom:155.715996px;}
.y20d{bottom:158.774592px;}
.y1f9{bottom:158.776014px;}
.y1b4{bottom:158.957310px;}
.y2be{bottom:161.294124px;}
.y16f{bottom:161.746743px;}
.y286{bottom:162.461544px;}
.y13d{bottom:164.171424px;}
.yf4{bottom:164.172396px;}
.y8d{bottom:164.173422px;}
.y222{bottom:164.446662px;}
.y24f{bottom:165.704286px;}
.y111{bottom:167.955366px;}
.yc8{bottom:167.956338px;}
.yb4{bottom:168.225906px;}
.y1cf{bottom:168.406122px;}
.y39{bottom:171.736770px;}
.y19f{bottom:176.146392px;}
.y285{bottom:177.131706px;}
.y20c{bottom:178.844700px;}
.y1f8{bottom:178.846122px;}
.y1b3{bottom:179.027418px;}
.y24e{bottom:180.374448px;}
.y2bd{bottom:180.464124px;}
.y171{bottom:182.266914px;}
.y13c{bottom:184.241532px;}
.yf3{bottom:184.242504px;}
.y8c{bottom:184.243530px;}
.y221{bottom:184.516770px;}
.y110{bottom:188.025474px;}
.yc7{bottom:188.026446px;}
.yb3{bottom:188.296014px;}
.y1ce{bottom:188.476230px;}
.y284{bottom:191.801868px;}
.y38{bottom:191.806878px;}
.y2b{bottom:192.077202px;}
.y24d{bottom:195.044610px;}
.y2bc{bottom:195.134286px;}
.y19e{bottom:196.666563px;}
.y1a{bottom:196.933500px;}
.y20b{bottom:198.914808px;}
.y1f7{bottom:198.916230px;}
.y1b2{bottom:199.097526px;}
.y170{bottom:202.787085px;}
.y13b{bottom:204.311640px;}
.yf2{bottom:204.312612px;}
.y8b{bottom:204.313638px;}
.y220{bottom:204.586878px;}
.y10f{bottom:208.095582px;}
.yc6{bottom:208.096554px;}
.yb2{bottom:208.366122px;}
.y1cd{bottom:208.546338px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y2bb{bottom:209.804448px;}
.y283{bottom:210.971868px;}
.y19d{bottom:211.066473px;}
.y37{bottom:211.876986px;}
.y2a{bottom:212.147310px;}
.y24c{bottom:214.214610px;}
.y20a{bottom:218.984916px;}
.y1f6{bottom:218.986338px;}
.y1b1{bottom:219.167634px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y16e{bottom:223.216284px;}
.y13a{bottom:224.381748px;}
.yf1{bottom:224.382720px;}
.y8a{bottom:224.383746px;}
.y2ba{bottom:224.474610px;}
.y21f{bottom:224.656986px;}
.y282{bottom:225.642030px;}
.y10e{bottom:228.165690px;}
.yc5{bottom:228.166662px;}
.yb1{bottom:228.436230px;}
.y1cc{bottom:228.616446px;}
.y24b{bottom:228.884772px;}
.y19c{bottom:231.586644px;}
.y36{bottom:231.947094px;}
.y29{bottom:232.217418px;}
.y16d{bottom:233.476968px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y209{bottom:239.055024px;}
.y1f5{bottom:239.056446px;}
.y2b9{bottom:239.144772px;}
.y1b0{bottom:239.237742px;}
.y281{bottom:240.312192px;}
.y24a{bottom:243.554934px;}
.y139{bottom:244.451856px;}
.yf0{bottom:244.452828px;}
.y89{bottom:244.453854px;}
.y21e{bottom:244.727094px;}
.y10d{bottom:248.235798px;}
.yc4{bottom:248.236770px;}
.yb0{bottom:248.506338px;}
.y1cb{bottom:248.686554px;}
.y19b{bottom:252.017040px;}
.y35{bottom:252.017202px;}
.y28{bottom:252.287526px;}
.y280{bottom:254.982354px;}
.y249{bottom:258.225096px;}
.y2b8{bottom:258.314772px;}
.y208{bottom:259.125132px;}
.y1f4{bottom:259.126554px;}
.y1af{bottom:259.307850px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y16c{bottom:264.256626px;}
.y138{bottom:264.521964px;}
.yef{bottom:264.522936px;}
.y88{bottom:264.523962px;}
.y21d{bottom:264.797202px;}
.y19a{bottom:266.416950px;}
.y10c{bottom:268.305906px;}
.yc3{bottom:268.306878px;}
.yaf{bottom:268.576446px;}
.y1ca{bottom:268.756662px;}
.y27f{bottom:269.652516px;}
.y34{bottom:272.087310px;}
.y27{bottom:272.357634px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y248{bottom:272.895258px;}
.y2b7{bottom:272.984934px;}
.y207{bottom:279.195240px;}
.y1f3{bottom:279.196662px;}
.y137{bottom:284.592072px;}
.yee{bottom:284.593044px;}
.y87{bottom:284.594070px;}
.y16a{bottom:284.687022px;}
.y21c{bottom:284.867310px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y199{bottom:286.937121px;}
.y2b6{bottom:287.655096px;}
.y10b{bottom:288.376014px;}
.yc2{bottom:288.376986px;}
.yae{bottom:288.646554px;}
.y27e{bottom:288.822516px;}
.y1c9{bottom:288.826770px;}
.y247{bottom:292.065258px;}
.y33{bottom:292.157418px;}
.y26{bottom:292.427742px;}
.y1ae{bottom:294.947850px;}
.y206{bottom:299.265348px;}
.y1f2{bottom:299.266770px;}
.y198{bottom:301.337031px;}
.y2b5{bottom:302.325258px;}
.y27d{bottom:303.492678px;}
.y136{bottom:304.662180px;}
.yed{bottom:304.663152px;}
.y86{bottom:304.664178px;}
.y21b{bottom:304.937418px;}
.y16b{bottom:305.207193px;}
.y246{bottom:306.735420px;}
.y10a{bottom:308.446122px;}
.yc1{bottom:308.447094px;}
.yad{bottom:308.716662px;}
.y1c8{bottom:308.896878px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y32{bottom:312.227526px;}
.y25{bottom:312.497850px;}
.y2b4{bottom:316.995420px;}
.y27c{bottom:318.162840px;}
.y205{bottom:319.335456px;}
.y1f1{bottom:319.336878px;}
.y245{bottom:321.405582px;}
.y197{bottom:321.857202px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y135{bottom:324.732288px;}
.yec{bottom:324.733260px;}
.y85{bottom:324.734286px;}
.y21a{bottom:325.007526px;}
.y169{bottom:325.727364px;}
.y109{bottom:328.516230px;}
.yc0{bottom:328.517202px;}
.yac{bottom:328.786770px;}
.y1c7{bottom:328.966986px;}
.y2b3{bottom:331.665582px;}
.y31{bottom:332.297634px;}
.y27b{bottom:332.833002px;}
.y1ad{bottom:334.456878px;}
.y168{bottom:335.898273px;}
.y244{bottom:336.075744px;}
.y204{bottom:339.405564px;}
.y1f0{bottom:339.406986px;}
.y196{bottom:342.287598px;}
.y134{bottom:344.802396px;}
.yeb{bottom:344.803368px;}
.y84{bottom:344.804394px;}
.y219{bottom:345.077634px;}
.y2b2{bottom:346.335744px;}
.y11{bottom:348.133500px;}
.y108{bottom:348.586338px;}
.ybf{bottom:348.587310px;}
.yab{bottom:348.856878px;}
.y1c6{bottom:349.037094px;}
.y243{bottom:350.745906px;}
.y27a{bottom:352.003002px;}
.y30{bottom:352.367742px;}
.y1ac{bottom:354.526986px;}
.y195{bottom:356.687508px;}
.y203{bottom:359.475672px;}
.y1ef{bottom:359.477094px;}
.y133{bottom:364.872504px;}
.yea{bottom:364.873476px;}
.y83{bottom:364.874502px;}
.y218{bottom:365.147742px;}
.y2b1{bottom:365.505744px;}
.y279{bottom:366.673164px;}
.y167{bottom:366.677931px;}
.y107{bottom:368.656446px;}
.ybe{bottom:368.657418px;}
.yaa{bottom:368.926986px;}
.y1c5{bottom:369.107202px;}
.y24{bottom:369.287850px;}
.y242{bottom:369.915906px;}
.y2f{bottom:372.437850px;}
.y1ab{bottom:374.597094px;}
.y194{bottom:377.207679px;}
.y202{bottom:379.545780px;}
.y1ee{bottom:379.547202px;}
.y2b0{bottom:380.175906px;}
.y278{bottom:381.343326px;}
.y241{bottom:384.586068px;}
.y132{bottom:384.942612px;}
.ye9{bottom:384.943584px;}
.y82{bottom:384.944610px;}
.y217{bottom:385.217850px;}
.y10{bottom:386.785499px;}
.y106{bottom:388.726554px;}
.ybd{bottom:388.727526px;}
.ya9{bottom:388.997094px;}
.y1c4{bottom:389.177310px;}
.y174{bottom:392.597850px;}
.y1aa{bottom:394.667202px;}
.y2af{bottom:394.846068px;}
.y193{bottom:397.727850px;}
.y240{bottom:399.256230px;}
.y201{bottom:399.615888px;}
.y1ed{bottom:399.617310px;}
.y277{bottom:400.513326px;}
.y131{bottom:405.012720px;}
.ye8{bottom:405.013692px;}
.y81{bottom:405.014718px;}
.yf{bottom:408.044999px;}
.y105{bottom:408.796662px;}
.ybc{bottom:408.797634px;}
.ya8{bottom:409.067202px;}
.y1c3{bottom:409.247418px;}
.y2ae{bottom:409.516230px;}
.y23f{bottom:413.926392px;}
.y1a9{bottom:414.737310px;}
.y276{bottom:415.183488px;}
.y200{bottom:419.685996px;}
.y1ec{bottom:419.687418px;}
.y1a3{bottom:423.647850px;}
.y2ad{bottom:424.186392px;}
.y130{bottom:425.082828px;}
.ye7{bottom:425.083800px;}
.y80{bottom:425.084826px;}
.y23e{bottom:428.596554px;}
.y104{bottom:428.866770px;}
.ybb{bottom:428.867742px;}
.ya7{bottom:429.137310px;}
.y1c2{bottom:429.317526px;}
.y275{bottom:429.853650px;}
.y1a8{bottom:434.807418px;}
.y14c{bottom:438.227742px;}
.y1ff{bottom:439.756104px;}
.y1eb{bottom:439.757526px;}
.y216{bottom:442.007850px;}
.y2ac{bottom:443.356392px;}
.y274{bottom:444.523812px;}
.y12f{bottom:445.152936px;}
.ye6{bottom:445.153908px;}
.y7f{bottom:445.154934px;}
.y165{bottom:447.046014px;}
.y23d{bottom:447.766554px;}
.y103{bottom:448.936878px;}
.yba{bottom:448.937850px;}
.ya6{bottom:449.207418px;}
.y1c1{bottom:449.387634px;}
.y1a7{bottom:454.877526px;}
.y2ab{bottom:458.026554px;}
.y14b{bottom:458.297850px;}
.y5c{bottom:458.657850px;}
.y273{bottom:459.193974px;}
.y1fe{bottom:459.826212px;}
.y1ea{bottom:459.827634px;}
.y23c{bottom:462.436716px;}
.y12e{bottom:465.223044px;}
.ye5{bottom:465.224016px;}
.y7e{bottom:465.225042px;}
.y164{bottom:467.116122px;}
.y17b{bottom:467.117310px;}
.y102{bottom:469.006986px;}
.ya5{bottom:469.277526px;}
.y1c0{bottom:469.457742px;}
.y192{bottom:472.607526px;}
.y2aa{bottom:472.696716px;}
.y1a6{bottom:474.947634px;}
.y23b{bottom:477.106878px;}
.y272{bottom:478.363974px;}
.y1fd{bottom:479.896320px;}
.y1e9{bottom:479.897742px;}
.y2ce{bottom:482.863812px;}
.ye{bottom:484.864502px;}
.y12d{bottom:485.293152px;}
.ye4{bottom:485.294124px;}
.y7d{bottom:485.295150px;}
.yb9{bottom:485.298264px;}
.y163{bottom:487.186230px;}
.y17a{bottom:487.187418px;}
.y2a9{bottom:487.366878px;}
.y101{bottom:489.077094px;}
.ya4{bottom:489.347634px;}
.y1bf{bottom:489.527850px;}
.y23a{bottom:491.777040px;}
.y191{bottom:492.677634px;}
.y271{bottom:493.034136px;}
.y14a{bottom:494.657850px;}
.y1a5{bottom:495.017742px;}
.y2cd{bottom:497.533974px;}
.y1fc{bottom:499.966428px;}
.y1e8{bottom:499.967850px;}
.y2ee{bottom:502.029978px;}
.yd{bottom:502.864502px;}
.yb8{bottom:503.477850px;}
.y5b{bottom:504.737688px;}
.y12c{bottom:505.363260px;}
.ye3{bottom:505.364232px;}
.y7c{bottom:505.365258px;}
.y2a8{bottom:506.536878px;}
.y162{bottom:507.256338px;}
.y179{bottom:507.257526px;}
.y270{bottom:507.704298px;}
.y100{bottom:509.147202px;}
.ya3{bottom:509.417742px;}
.y239{bottom:510.947040px;}
.y2cc{bottom:512.204136px;}
.y190{bottom:512.747742px;}
.y1a4{bottom:515.087850px;}
.y2ed{bottom:516.700140px;}
.y5a{bottom:520.037904px;}
.yc{bottom:520.864502px;}
.y2a7{bottom:521.207040px;}
.y12b{bottom:525.433368px;}
.ye2{bottom:525.434340px;}
.y7b{bottom:525.435366px;}
.y238{bottom:525.617202px;}
.y1be{bottom:525.797850px;}
.y26f{bottom:526.874298px;}
.y161{bottom:527.326446px;}
.y178{bottom:527.327634px;}
.yff{bottom:529.217310px;}
.ya2{bottom:529.487850px;}
.y2cb{bottom:531.374136px;}
.y18f{bottom:532.817850px;}
.y149{bottom:533.267850px;}
.y59{bottom:535.338120px;}
.y2ec{bottom:535.870140px;}
.y2a6{bottom:535.877202px;}
.yb{bottom:538.864499px;}
.y237{bottom:540.287364px;}
.y26e{bottom:541.544460px;}
.y12a{bottom:545.503476px;}
.ye1{bottom:545.504448px;}
.y7a{bottom:545.505474px;}
.y2ca{bottom:546.044298px;}
.y160{bottom:547.396554px;}
.y177{bottom:547.397742px;}
.y214{bottom:547.937472px;}
.yfe{bottom:549.287418px;}
.y2eb{bottom:550.540302px;}
.y58{bottom:550.547598px;}
.y18d{bottom:552.887742px;}
.y18e{bottom:552.887850px;}
.y236{bottom:554.957526px;}
.y2a5{bottom:555.047202px;}
.ya{bottom:556.864499px;}
.y26d{bottom:560.714460px;}
.y1e5{bottom:562.966854px;}
.y2ea{bottom:565.210464px;}
.y129{bottom:565.573584px;}
.ye0{bottom:565.574556px;}
.y79{bottom:565.575582px;}
.yb7{bottom:565.577850px;}
.y57{bottom:565.847814px;}
.ya1{bottom:565.848264px;}
.y15f{bottom:567.466662px;}
.y176{bottom:567.467850px;}
.y213{bottom:568.457643px;}
.yfd{bottom:569.357526px;}
.y235{bottom:569.627688px;}
.y2a4{bottom:569.717364px;}
.y18c{bottom:572.957850px;}
.y26c{bottom:575.384622px;}
.y2e9{bottom:579.880626px;}
.y56{bottom:581.148030px;}
.y1e4{bottom:583.487025px;}
.ya0{bottom:584.027850px;}
.y234{bottom:584.297850px;}
.y2a3{bottom:584.387526px;}
.y128{bottom:585.643692px;}
.ydf{bottom:585.644664px;}
.y78{bottom:585.645690px;}
.y15e{bottom:587.536770px;}
.y1bd{bottom:587.987742px;}
.y212{bottom:588.888039px;}
.yfc{bottom:589.427634px;}
.y26b{bottom:590.054784px;}
.y18a{bottom:593.027202px;}
.y18b{bottom:593.027850px;}
.y2e8{bottom:594.550788px;}
.y55{bottom:596.357508px;}
.y2a2{bottom:599.057688px;}
.y175{bottom:603.827850px;}
.y1e3{bottom:604.007196px;}
.y127{bottom:605.713800px;}
.yde{bottom:605.714772px;}
.y77{bottom:605.715798px;}
.y15d{bottom:607.606878px;}
.y1bc{bottom:608.057850px;}
.y2e7{bottom:609.220950px;}
.y26a{bottom:609.224784px;}
.y211{bottom:609.408210px;}
.yfb{bottom:609.497742px;}
.y54{bottom:611.657724px;}
.y189{bottom:613.097310px;}
.y2a1{bottom:613.727850px;}
.y148{bottom:616.697418px;}
.y9f{bottom:622.637850px;}
.y269{bottom:623.894946px;}
.y1e2{bottom:624.437592px;}
.y126{bottom:625.783908px;}
.ydd{bottom:625.784880px;}
.y76{bottom:625.785906px;}
.y53{bottom:626.957940px;}
.y15c{bottom:627.676986px;}
.y1ba{bottom:628.127634px;}
.y1bb{bottom:628.127850px;}
.y2e6{bottom:628.390950px;}
.yfa{bottom:629.567850px;}
.y2a0{bottom:632.897850px;}
.y188{bottom:633.167418px;}
.y215{bottom:635.327850px;}
.y147{bottom:636.767526px;}
.y268{bottom:638.565108px;}
.y233{bottom:639.827850px;}
.y52{bottom:642.167418px;}
.y2e5{bottom:643.061112px;}
.y1e1{bottom:644.957763px;}
.y9{bottom:645.510000px;}
.y125{bottom:645.854016px;}
.ydc{bottom:645.854988px;}
.y75{bottom:645.856014px;}
.y29f{bottom:647.558394px;}
.y15b{bottom:647.747094px;}
.y1b9{bottom:648.197742px;}
.y187{bottom:653.237526px;}
.y146{bottom:656.837634px;}
.y51{bottom:657.467634px;}
.y2e4{bottom:657.731274px;}
.y267{bottom:657.735108px;}
.y29e{bottom:662.228556px;}
.y124{bottom:665.924124px;}
.ydb{bottom:665.925096px;}
.y74{bottom:665.926122px;}
.yf9{bottom:665.928264px;}
.y8{bottom:666.771000px;}
.y1e7{bottom:667.638000px;}
.y15a{bottom:667.817202px;}
.y1b8{bottom:668.267850px;}
.y1e6{bottom:670.877850px;}
.y2e3{bottom:672.401436px;}
.y266{bottom:672.405270px;}
.y50{bottom:672.767850px;}
.y186{bottom:673.307634px;}
.y29d{bottom:676.898718px;}
.y210{bottom:678.977850px;}
.yf8{bottom:684.107850px;}
.y123{bottom:685.994232px;}
.yda{bottom:685.995204px;}
.y73{bottom:685.996230px;}
.y265{bottom:687.075432px;}
.y159{bottom:687.887310px;}
.y29c{bottom:691.568880px;}
.y2e2{bottom:691.571436px;}
.y185{bottom:693.377742px;}
.y145{bottom:696.977850px;}
.y4d{bottom:696.978000px;}
.y4f{bottom:700.217850px;}
.y264{bottom:701.745594px;}
.y9e{bottom:706.062072px;}
.y122{bottom:706.064340px;}
.yd9{bottom:706.065312px;}
.y72{bottom:706.066338px;}
.y2e1{bottom:706.241598px;}
.y158{bottom:707.957418px;}
.y29b{bottom:710.738880px;}
.y184{bottom:713.447850px;}
.y1df{bottom:716.145735px;}
.y263{bottom:716.415756px;}
.y144{bottom:717.047418px;}
.y2e0{bottom:720.911760px;}
.y2c9{bottom:720.915594px;}
.y29a{bottom:725.409042px;}
.y9d{bottom:726.132180px;}
.y121{bottom:726.134448px;}
.y232{bottom:726.135240px;}
.yd8{bottom:726.135420px;}
.y71{bottom:726.136446px;}
.y7{bottom:726.298500px;}
.y157{bottom:728.027526px;}
.y262{bottom:731.085918px;}
.y2df{bottom:735.581922px;}
.y2c8{bottom:735.585756px;}
.y1de{bottom:736.665906px;}
.y143{bottom:737.117526px;}
.y299{bottom:740.079204px;}
.y9c{bottom:746.202288px;}
.y120{bottom:746.204556px;}
.y231{bottom:746.205348px;}
.yd7{bottom:746.205528px;}
.y70{bottom:746.206554px;}
.yf7{bottom:746.207850px;}
.y4a{bottom:747.648000px;}
.y156{bottom:748.097634px;}
.y183{bottom:748.997850px;}
.y261{bottom:750.255918px;}
.y4c{bottom:750.347850px;}
.y3{bottom:752.599495px;}
.y298{bottom:754.749366px;}
.y2de{bottom:754.751922px;}
.y1dd{bottom:757.096302px;}
.y142{bottom:757.187634px;}
.y260{bottom:764.926080px;}
.y9b{bottom:766.272396px;}
.y11f{bottom:766.274664px;}
.y230{bottom:766.275456px;}
.yd6{bottom:766.275636px;}
.y6f{bottom:766.276662px;}
.y155{bottom:768.167742px;}
.y2dd{bottom:769.422084px;}
.y2c7{bottom:769.425918px;}
.y297{bottom:773.919366px;}
.y141{bottom:777.257742px;}
.y1dc{bottom:777.616473px;}
.y25f{bottom:779.596242px;}
.y48{bottom:780.317850px;}
.y2dc{bottom:784.092246px;}
.y2c6{bottom:784.096080px;}
.y182{bottom:784.727850px;}
.y9a{bottom:786.342504px;}
.y11e{bottom:786.344772px;}
.y22f{bottom:786.345564px;}
.yd5{bottom:786.345744px;}
.y6e{bottom:786.346770px;}
.y49{bottom:787.967850px;}
.y154{bottom:788.237850px;}
.y296{bottom:788.589528px;}
.y25e{bottom:794.266404px;}
.y140{bottom:797.327850px;}
.y1db{bottom:798.136644px;}
.y2db{bottom:798.762408px;}
.y2c5{bottom:798.766242px;}
.y295{bottom:803.259690px;}
.y99{bottom:806.412612px;}
.y11d{bottom:806.414880px;}
.y22e{bottom:806.415672px;}
.yd4{bottom:806.415852px;}
.y6d{bottom:806.416878px;}
.y25d{bottom:813.436404px;}
.y294{bottom:817.929852px;}
.y2da{bottom:817.932408px;}
.y1da{bottom:818.567040px;}
.y47{bottom:819.017700px;}
.y181{bottom:823.337700px;}
.y153{bottom:824.597850px;}
.y98{bottom:826.482720px;}
.y11c{bottom:826.484988px;}
.y22d{bottom:826.485780px;}
.yd3{bottom:826.485960px;}
.y6c{bottom:826.486986px;}
.y25c{bottom:828.106566px;}
.y293{bottom:832.600014px;}
.y2d9{bottom:832.602570px;}
.y1d9{bottom:832.966950px;}
.y46{bottom:834.678000px;}
.y45{bottom:840.077850px;}
.y25b{bottom:842.776728px;}
.y166{bottom:846.467850px;}
.y97{bottom:846.552828px;}
.y11b{bottom:846.555096px;}
.y22c{bottom:846.555888px;}
.yd2{bottom:846.556068px;}
.y6b{bottom:846.557094px;}
.y2d8{bottom:847.272732px;}
.y292{bottom:851.770014px;}
.y1d8{bottom:853.487121px;}
.y43{bottom:855.648000px;}
.y25a{bottom:857.446890px;}
.y42{bottom:861.047850px;}
.y2d7{bottom:861.942894px;}
.y2c4{bottom:861.946728px;}
.y291{bottom:866.440176px;}
.y96{bottom:866.622936px;}
.y11a{bottom:866.625204px;}
.y22b{bottom:866.625996px;}
.yd1{bottom:866.626176px;}
.y6a{bottom:866.627202px;}
.y259{bottom:872.117052px;}
.y1d7{bottom:874.007292px;}
.y2d6{bottom:876.613056px;}
.y2c3{bottom:876.616890px;}
.y2{bottom:879.369000px;}
.y290{bottom:881.110338px;}
.y95{bottom:886.693044px;}
.y119{bottom:886.695312px;}
.y22a{bottom:886.696104px;}
.yd0{bottom:886.696284px;}
.y152{bottom:886.696680px;}
.y69{bottom:886.697310px;}
.y1d6{bottom:888.407202px;}
.y258{bottom:891.287052px;}
.y28f{bottom:895.780500px;}
.y2d5{bottom:895.783056px;}
.y94{bottom:906.763152px;}
.y118{bottom:906.765420px;}
.y229{bottom:906.766212px;}
.ycf{bottom:906.766392px;}
.y151{bottom:906.766788px;}
.y180{bottom:906.767004px;}
.y68{bottom:906.767418px;}
.y1d5{bottom:908.837598px;}
.y28e{bottom:910.450662px;}
.y2d4{bottom:910.453218px;}
.y257{bottom:910.457052px;}
.y1d4{bottom:923.237508px;}
.y2d3{bottom:925.123380px;}
.y256{bottom:925.127214px;}
.y41{bottom:926.567652px;}
.y93{bottom:926.833260px;}
.y117{bottom:926.835528px;}
.y228{bottom:926.836320px;}
.yce{bottom:926.836500px;}
.y150{bottom:926.836896px;}
.y17f{bottom:926.837112px;}
.y67{bottom:926.837526px;}
.y28d{bottom:929.620662px;}
.y40{bottom:939.167850px;}
.y2d2{bottom:939.793542px;}
.y255{bottom:939.797376px;}
.y1d3{bottom:943.757679px;}
.y28c{bottom:944.290824px;}
.y92{bottom:946.903368px;}
.y116{bottom:946.905636px;}
.y227{bottom:946.906428px;}
.ycd{bottom:946.906608px;}
.y14f{bottom:946.907004px;}
.y17e{bottom:946.907220px;}
.y66{bottom:946.907634px;}
.y2d1{bottom:954.463704px;}
.y254{bottom:954.467538px;}
.y28b{bottom:958.960986px;}
.y3f{bottom:963.287850px;}
.y1d2{bottom:964.277850px;}
.y1{bottom:966.726000px;}
.y91{bottom:966.973476px;}
.y115{bottom:966.975744px;}
.y226{bottom:966.976536px;}
.ycc{bottom:966.976716px;}
.y14e{bottom:966.977112px;}
.y17d{bottom:966.977328px;}
.y65{bottom:966.977742px;}
.y2c2{bottom:969.137700px;}
.y28a{bottom:973.631148px;}
.y2d0{bottom:973.633704px;}
.y253{bottom:973.637538px;}
.y90{bottom:987.043584px;}
.y114{bottom:987.045852px;}
.y225{bottom:987.046644px;}
.ycb{bottom:987.046824px;}
.y14d{bottom:987.047220px;}
.y17c{bottom:987.047436px;}
.y64{bottom:987.047850px;}
.y289{bottom:988.301310px;}
.y2cf{bottom:988.303866px;}
.y252{bottom:988.307700px;}
.y1e0{bottom:990.197700px;}
.y3e{bottom:1000.637304px;}
.y3d{bottom:1013.237502px;}
.y3c{bottom:1025.837700px;}
.y62{bottom:1032.767700px;}
.h9{height:4.079004px;}
.h18{height:11.880000px;}
.h20{height:12.240000px;}
.h13{height:12.780000px;}
.h14{height:14.670000px;}
.h10{height:24.660000px;}
.hd{height:29.163164px;}
.h12{height:30.247910px;}
.hc{height:31.311035px;}
.h7{height:32.130000px;}
.h15{height:33.244805px;}
.h17{height:33.478594px;}
.he{height:33.852305px;}
.h1f{height:35.239680px;}
.h1b{height:35.278770px;}
.h16{height:35.644219px;}
.h1d{height:37.441406px;}
.h1a{height:38.521758px;}
.hb{height:39.604922px;}
.h1e{height:41.863680px;}
.h19{height:45.710684px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.ha{height:50.027344px;}
.h11{height:50.760000px;}
.h2{height:55.080000px;}
.hf{height:59.761230px;}
.h5{height:64.260000px;}
.h1c{height:74.516542px;}
.h4{height:119.055004px;}
.h8{height:1119.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:90.090000px;}
.w8{width:119.160000px;}
.w5{width:331.380000px;}
.w7{width:487.980000px;}
.w4{width:620.100000px;}
.w2{width:637.794021px;}
.w3{width:799.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:89.280000px;}
.x32{left:91.440000px;}
.x10{left:93.240000px;}
.x34{left:94.410954px;}
.x11{left:96.840000px;}
.x7{left:99.810266px;}
.x1{left:102.045000px;}
.x6{left:104.310000px;}
.x2{left:106.297500px;}
.x19{left:108.540369px;}
.x2e{left:112.589658px;}
.x2c{left:113.850099px;}
.x18{left:125.100000px;}
.x23{left:128.159757px;}
.x1a{left:130.590000px;}
.x12{left:132.300000px;}
.x21{left:149.219775px;}
.x33{left:151.290000px;}
.x1c{left:155.879883px;}
.x1e{left:163.529910px;}
.x30{left:179.730000px;}
.x9{left:183.240000px;}
.x4{left:203.484001px;}
.x2f{left:220.950000px;}
.xf{left:223.920000px;}
.xa{left:252.180000px;}
.x2b{left:261.360000px;}
.x27{left:289.170621px;}
.x26{left:292.140378px;}
.x25{left:295.110135px;}
.x22{left:300.149505px;}
.x28{left:303.120459px;}
.xc{left:305.099865px;}
.x24{left:306.179991px;}
.x1f{left:311.219361px;}
.x1d{left:313.559496px;}
.x1b{left:315.899631px;}
.x20{left:318.869388px;}
.xb{left:401.760000px;}
.x8{left:416.610000px;}
.x31{left:430.019950px;}
.x17{left:431.640000px;}
.x16{left:436.860234px;}
.x3{left:454.959000px;}
.x2a{left:470.520000px;}
.x13{left:486.090000px;}
.x2d{left:548.189928px;}
.x29{left:606.330000px;}
.xd{left:608.850000px;}
.xe{left:610.470150px;}
.x14{left:629.460000px;}
.x15{left:694.170009px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280704pt;}
.v2{vertical-align:36.478176pt;}
.ls16{letter-spacing:-5.623200pt;}
.ls18{letter-spacing:-5.068800pt;}
.ls17{letter-spacing:-4.852800pt;}
.ls7f{letter-spacing:-4.484928pt;}
.ls89{letter-spacing:-3.844224pt;}
.ls7e{letter-spacing:-3.839680pt;}
.ls55{letter-spacing:-3.589760pt;}
.ls8f{letter-spacing:-3.526144pt;}
.ls73{letter-spacing:-3.521600pt;}
.ls3a{letter-spacing:-3.276288pt;}
.ls87{letter-spacing:-3.203520pt;}
.ls6f{letter-spacing:-3.198976pt;}
.lsc{letter-spacing:-3.196000pt;}
.ls45{letter-spacing:-2.952704pt;}
.ls2f{letter-spacing:-2.947648pt;}
.ls38{letter-spacing:-2.942592pt;}
.ls28{letter-spacing:-2.931552pt;}
.ls1c{letter-spacing:-2.885440pt;}
.lsb{letter-spacing:-2.884000pt;}
.ls80{letter-spacing:-2.880896pt;}
.ls6e{letter-spacing:-2.871808pt;}
.lse{letter-spacing:-2.624064pt;}
.ls30{letter-spacing:-2.619008pt;}
.ls3b{letter-spacing:-2.613952pt;}
.ls2a{letter-spacing:-2.605824pt;}
.ls6d{letter-spacing:-2.567360pt;}
.ls23{letter-spacing:-2.562816pt;}
.ls81{letter-spacing:-2.553728pt;}
.lsf{letter-spacing:-2.295424pt;}
.lsa{letter-spacing:-2.290368pt;}
.ls27{letter-spacing:-2.280096pt;}
.ls68{letter-spacing:-2.244736pt;}
.ls58{letter-spacing:-2.241600pt;}
.ls65{letter-spacing:-2.240192pt;}
.ls14{letter-spacing:-2.239200pt;}
.ls49{letter-spacing:-2.238656pt;}
.ls4d{letter-spacing:-2.234400pt;}
.ls88{letter-spacing:-2.231104pt;}
.ls39{letter-spacing:-1.971840pt;}
.ls2c{letter-spacing:-1.966784pt;}
.ls35{letter-spacing:-1.961728pt;}
.ls59{letter-spacing:-1.946560pt;}
.ls21{letter-spacing:-1.926656pt;}
.ls53{letter-spacing:-1.924800pt;}
.ls70{letter-spacing:-1.922112pt;}
.ls71{letter-spacing:-1.917568pt;}
.ls19{letter-spacing:-1.916928pt;}
.ls20{letter-spacing:-1.913024pt;}
.ls83{letter-spacing:-1.908480pt;}
.ls36{letter-spacing:-1.865664pt;}
.ls37{letter-spacing:-1.815104pt;}
.ls5{letter-spacing:-1.643200pt;}
.ls8{letter-spacing:-1.638144pt;}
.ls32{letter-spacing:-1.633088pt;}
.ls29{letter-spacing:-1.628640pt;}
.ls3d{letter-spacing:-1.622976pt;}
.ls84{letter-spacing:-1.608576pt;}
.ls25{letter-spacing:-1.604032pt;}
.ls6b{letter-spacing:-1.599488pt;}
.ls24{letter-spacing:-1.594944pt;}
.ls66{letter-spacing:-1.590400pt;}
.ls50{letter-spacing:-1.511744pt;}
.ls2e{letter-spacing:-1.496576pt;}
.ls3f{letter-spacing:-1.491520pt;}
.ls51{letter-spacing:-1.481408pt;}
.ls8e{letter-spacing:-1.454080pt;}
.ls2d{letter-spacing:-1.446016pt;}
.ls3e{letter-spacing:-1.440960pt;}
.ls11{letter-spacing:-1.314560pt;}
.ls4{letter-spacing:-1.309504pt;}
.ls74{letter-spacing:-1.290496pt;}
.ls1d{letter-spacing:-1.285952pt;}
.ls67{letter-spacing:-1.281408pt;}
.ls61{letter-spacing:-1.281056pt;}
.ls1e{letter-spacing:-1.276864pt;}
.ls1a{letter-spacing:-1.276000pt;}
.ls7c{letter-spacing:-1.272320pt;}
.ls7b{letter-spacing:-1.267776pt;}
.ls86{letter-spacing:-1.158720pt;}
.ls85{letter-spacing:-1.108736pt;}
.ls26{letter-spacing:-0.991648pt;}
.ls31{letter-spacing:-0.990976pt;}
.ls6{letter-spacing:-0.985920pt;}
.ls2b{letter-spacing:-0.980864pt;}
.ls76{letter-spacing:-0.967872pt;}
.ls57{letter-spacing:-0.966112pt;}
.ls75{letter-spacing:-0.963328pt;}
.ls64{letter-spacing:-0.958784pt;}
.ls7d{letter-spacing:-0.954240pt;}
.ls8b{letter-spacing:-0.949696pt;}
.ls7{letter-spacing:-0.662336pt;}
.lsd{letter-spacing:-0.657280pt;}
.ls44{letter-spacing:-0.652224pt;}
.ls5b{letter-spacing:-0.646912pt;}
.ls82{letter-spacing:-0.645248pt;}
.ls78{letter-spacing:-0.640704pt;}
.ls15{letter-spacing:-0.639392pt;}
.ls22{letter-spacing:-0.636160pt;}
.ls1f{letter-spacing:-0.631616pt;}
.ls41{letter-spacing:-0.495488pt;}
.ls40{letter-spacing:-0.475264pt;}
.ls42{letter-spacing:-0.333696pt;}
.ls10{letter-spacing:-0.328640pt;}
.ls4b{letter-spacing:-0.327712pt;}
.ls13{letter-spacing:-0.325728pt;}
.ls54{letter-spacing:-0.323584pt;}
.ls56{letter-spacing:-0.323456pt;}
.ls8a{letter-spacing:-0.322624pt;}
.ls63{letter-spacing:-0.318080pt;}
.ls5e{letter-spacing:-0.314944pt;}
.ls79{letter-spacing:-0.313536pt;}
.ls69{letter-spacing:-0.308992pt;}
.ls33{letter-spacing:-0.083200pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls48{letter-spacing:-0.057600pt;}
.ls52{letter-spacing:-0.038400pt;}
.ls62{letter-spacing:-0.025600pt;}
.ls43{letter-spacing:-0.010112pt;}
.ls34{letter-spacing:-0.005856pt;}
.ls9{letter-spacing:-0.005056pt;}
.ls4a{letter-spacing:-0.004256pt;}
.ls12{letter-spacing:-0.003744pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.004256pt;}
.ls6c{letter-spacing:0.004544pt;}
.ls5a{letter-spacing:0.005056pt;}
.ls5f{letter-spacing:0.008512pt;}
.ls46{letter-spacing:0.011712pt;}
.ls60{letter-spacing:0.314944pt;}
.ls5c{letter-spacing:0.327712pt;}
.ls3c{letter-spacing:0.348864pt;}
.ls72{letter-spacing:5.443712pt;}
.ls6a{letter-spacing:7.365824pt;}
.ls47{letter-spacing:7.528384pt;}
.ls1b{letter-spacing:8.443904pt;}
.ls8c{letter-spacing:9.283392pt;}
.ls8d{letter-spacing:9.942272pt;}
.ls7a{letter-spacing:10.242176pt;}
.ls4c{letter-spacing:10.882592pt;}
.ls77{letter-spacing:11.523584pt;}
.ls2{letter-spacing:18.240768pt;}
.ls4e{letter-spacing:108.464160pt;}
.ls5d{letter-spacing:333.112864pt;}
.ls1{letter-spacing:612.799200pt;}
.ws3{word-spacing:-17.280000pt;}
.ws2b{word-spacing:-15.942400pt;}
.ws12{word-spacing:-12.887744pt;}
.ws18{word-spacing:-12.736064pt;}
.ws3c{word-spacing:-11.496320pt;}
.ws21{word-spacing:-10.886848pt;}
.ws34{word-spacing:-10.864704pt;}
.ws43{word-spacing:-10.860160pt;}
.ws24{word-spacing:-10.554880pt;}
.ws42{word-spacing:-10.537536pt;}
.ws2e{word-spacing:-10.532992pt;}
.ws3a{word-spacing:-10.337600pt;}
.ws36{word-spacing:-10.228544pt;}
.ws37{word-spacing:-10.224000pt;}
.ws5{word-spacing:-10.219456pt;}
.ws2c{word-spacing:-10.214912pt;}
.ws39{word-spacing:-10.210368pt;}
.ws2d{word-spacing:-9.896832pt;}
.ws6{word-spacing:-9.583296pt;}
.ws3b{word-spacing:-9.574208pt;}
.ws38{word-spacing:-9.569664pt;}
.ws7{word-spacing:-9.472320pt;}
.ws2{word-spacing:-9.281376pt;}
.ws35{word-spacing:-9.256128pt;}
.ws1{word-spacing:-8.959392pt;}
.ws4{word-spacing:-8.610880pt;}
.ws8{word-spacing:-7.843680pt;}
.ws46{word-spacing:-6.725120pt;}
.ws10{word-spacing:-0.662336pt;}
.ws26{word-spacing:-0.652224pt;}
.ws33{word-spacing:-0.649792pt;}
.ws25{word-spacing:-0.333696pt;}
.ws11{word-spacing:-0.328640pt;}
.wsd{word-spacing:-0.327168pt;}
.ws17{word-spacing:-0.323584pt;}
.ws41{word-spacing:-0.322624pt;}
.ws45{word-spacing:-0.318080pt;}
.wsa{word-spacing:-0.314496pt;}
.ws16{word-spacing:-0.187072pt;}
.ws44{word-spacing:-0.145408pt;}
.wsf{word-spacing:-0.005056pt;}
.ws31{word-spacing:-0.004544pt;}
.ws28{word-spacing:-0.004256pt;}
.ws13{word-spacing:-0.003744pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.004544pt;}
.ws2f{word-spacing:0.005056pt;}
.ws14{word-spacing:0.017568pt;}
.ws30{word-spacing:0.313536pt;}
.ws32{word-spacing:0.322624pt;}
.ws9{word-spacing:0.323584pt;}
.ws3d{word-spacing:0.327168pt;}
.wsc{word-spacing:0.360000pt;}
.ws3f{word-spacing:0.631616pt;}
.ws27{word-spacing:0.642656pt;}
.ws3e{word-spacing:0.645248pt;}
.ws15{word-spacing:0.652224pt;}
.wsb{word-spacing:0.806400pt;}
.ws40{word-spacing:1.281408pt;}
.ws23{word-spacing:68.168352pt;}
.ws2a{word-spacing:292.480832pt;}
.ws1d{word-spacing:373.119264pt;}
.ws19{word-spacing:384.648768pt;}
.ws1f{word-spacing:397.761504pt;}
.ws29{word-spacing:406.745920pt;}
.ws1e{word-spacing:407.380064pt;}
.ws1c{word-spacing:434.554624pt;}
.ws1a{word-spacing:443.483712pt;}
.ws1b{word-spacing:453.761952pt;}
.ws20{word-spacing:481.272736pt;}
.ws22{word-spacing:491.836128pt;}
._10{margin-left:-649.585152pt;}
._2d{margin-left:-480.945024pt;}
._22{margin-left:-470.717856pt;}
._53{margin-left:-150.972704pt;}
._50{margin-left:-149.445184pt;}
._59{margin-left:-14.237696pt;}
._58{margin-left:-13.123072pt;}
._15{margin-left:-11.355008pt;}
._4c{margin-left:-10.380320pt;}
._1c{margin-left:-9.480000pt;}
._1b{margin-left:-8.514304pt;}
._1d{margin-left:-7.543552pt;}
._57{margin-left:-6.203712pt;}
._5b{margin-left:-4.734464pt;}
._9{margin-left:-3.620864pt;}
._8{margin-left:-2.325696pt;}
._5{margin-left:-0.955584pt;}
._0{width:0.996032pt;}
._3{width:1.931392pt;}
._12{width:2.988960pt;}
._1e{width:4.008416pt;}
._5a{width:5.176448pt;}
._7{width:6.071168pt;}
._4{width:7.533440pt;}
._2{width:8.524416pt;}
._1{width:9.469888pt;}
._b{width:10.375904pt;}
._c{width:11.451840pt;}
._39{width:12.475200pt;}
._17{width:13.627904pt;}
._13{width:14.760000pt;}
._11{width:15.871776pt;}
._d{width:17.337024pt;}
._e{width:18.646528pt;}
._6{width:19.597056pt;}
._a{width:20.524000pt;}
._16{width:21.688544pt;}
._14{width:23.100480pt;}
._1a{width:24.208128pt;}
._5c{width:25.521792pt;}
._19{width:26.832192pt;}
._18{width:27.802944pt;}
._2f{width:33.848928pt;}
._56{width:35.321216pt;}
._f{width:36.938656pt;}
._3d{width:39.412544pt;}
._34{width:54.719392pt;}
._30{width:59.402944pt;}
._4f{width:74.092320pt;}
._32{width:108.515232pt;}
._47{width:112.009408pt;}
._4a{width:114.873696pt;}
._4b{width:115.839808pt;}
._43{width:123.841088pt;}
._44{width:127.365056pt;}
._42{width:128.948288pt;}
._48{width:152.309472pt;}
._45{width:153.573504pt;}
._41{width:164.800832pt;}
._46{width:200.317152pt;}
._49{width:201.300288pt;}
._40{width:239.732384pt;}
._3e{width:248.993440pt;}
._3b{width:259.449248pt;}
._4d{width:267.536416pt;}
._4e{width:282.909088pt;}
._52{width:326.379872pt;}
._2c{width:357.557536pt;}
._2b{width:380.278912pt;}
._2a{width:391.161504pt;}
._55{width:410.252864pt;}
._54{width:417.275264pt;}
._29{width:418.871136pt;}
._51{width:419.833120pt;}
._37{width:424.991808pt;}
._1f{width:432.664960pt;}
._21{width:437.604032pt;}
._23{width:447.667360pt;}
._20{width:470.709344pt;}
._3f{width:474.668896pt;}
._24{width:481.268480pt;}
._25{width:485.435104pt;}
._27{width:487.018336pt;}
._2e{width:492.159712pt;}
._28{width:497.585984pt;}
._26{width:502.395264pt;}
._38{width:651.288640pt;}
._31{width:660.152288pt;}
._35{width:670.198176pt;}
._36{width:1129.292096pt;}
._3c{width:1217.206976pt;}
._3a{width:1227.286752pt;}
._33{width:1238.329632pt;}
.fsa{font-size:4.160000pt;}
.fs5{font-size:5.440000pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:37.440000pt;}
.fsc{font-size:39.360000pt;}
.fs7{font-size:40.000000pt;}
.fsd{font-size:42.560000pt;}
.fse{font-size:45.440000pt;}
.fs10{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsf{font-size:58.560000pt;}
.fsb{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:72.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:2.239867pt;}
.y4b{bottom:2.399867pt;}
.y4e{bottom:2.879867pt;}
.y44{bottom:4.799867pt;}
.y6{bottom:44.973338pt;}
.y61{bottom:58.815867pt;}
.y63{bottom:65.615509pt;}
.y5e{bottom:65.936000pt;}
.y5{bottom:67.373337pt;}
.y60{bottom:68.175867pt;}
.y5d{bottom:77.455867pt;}
.y4{bottom:89.773337pt;}
.y2e{bottom:103.455867pt;}
.y2c1{bottom:104.252123pt;}
.y20f{bottom:105.452779pt;}
.y1fb{bottom:105.454043pt;}
.y1b7{bottom:105.615867pt;}
.y1a2{bottom:107.374147pt;}
.y173{bottom:107.374379pt;}
.y13f{bottom:110.249963pt;}
.yf6{bottom:110.250827pt;}
.y8f{bottom:110.251739pt;}
.y224{bottom:110.494619pt;}
.y113{bottom:113.613467pt;}
.yca{bottom:113.614331pt;}
.yb6{bottom:113.853947pt;}
.y1d1{bottom:114.014139pt;}
.y3b{bottom:116.974715pt;}
.y2d{bottom:116.975867pt;}
.y251{bottom:117.212555pt;}
.y2c0{bottom:117.292267pt;}
.y288{bottom:118.329973pt;}
.y1a1{bottom:120.174067pt;}
.y20e{bottom:123.292875pt;}
.y1fa{bottom:123.294139pt;}
.y1b5{bottom:123.455291pt;}
.y1b6{bottom:123.455867pt;}
.y23{bottom:123.790666pt;}
.y172{bottom:125.614531pt;}
.y13e{bottom:128.090059pt;}
.yf5{bottom:128.090923pt;}
.y8e{bottom:128.091835pt;}
.y223{bottom:128.334715pt;}
.y250{bottom:130.252699pt;}
.y2bf{bottom:130.332411pt;}
.y287{bottom:131.370117pt;}
.y112{bottom:131.453563pt;}
.yc9{bottom:131.454427pt;}
.yb5{bottom:131.694043pt;}
.y1d0{bottom:131.854235pt;}
.y2c{bottom:133.055867pt;}
.y3a{bottom:134.814811pt;}
.y1a0{bottom:138.414219pt;}
.y20d{bottom:141.132971pt;}
.y1f9{bottom:141.134235pt;}
.y1b4{bottom:141.295387pt;}
.y2be{bottom:143.372555pt;}
.y16f{bottom:143.774883pt;}
.y286{bottom:144.410261pt;}
.y13d{bottom:145.930155pt;}
.yf4{bottom:145.931019pt;}
.y8d{bottom:145.931931pt;}
.y222{bottom:146.174811pt;}
.y24f{bottom:147.292699pt;}
.y111{bottom:149.293659pt;}
.yc8{bottom:149.294523pt;}
.yb4{bottom:149.534139pt;}
.y1cf{bottom:149.694331pt;}
.y39{bottom:152.654907pt;}
.y19f{bottom:156.574571pt;}
.y285{bottom:157.450405pt;}
.y20c{bottom:158.973067pt;}
.y1f8{bottom:158.974331pt;}
.y1b3{bottom:159.135483pt;}
.y24e{bottom:160.332843pt;}
.y2bd{bottom:160.412555pt;}
.y171{bottom:162.015035pt;}
.y13c{bottom:163.770251pt;}
.yf3{bottom:163.771115pt;}
.y8c{bottom:163.772027pt;}
.y221{bottom:164.014907pt;}
.y110{bottom:167.133755pt;}
.yc7{bottom:167.134619pt;}
.yb3{bottom:167.374235pt;}
.y1ce{bottom:167.534427pt;}
.y284{bottom:170.490549pt;}
.y38{bottom:170.495003pt;}
.y2b{bottom:170.735291pt;}
.y24d{bottom:173.372987pt;}
.y2bc{bottom:173.452699pt;}
.y19e{bottom:174.814723pt;}
.y1a{bottom:175.052000pt;}
.y20b{bottom:176.813163pt;}
.y1f7{bottom:176.814427pt;}
.y1b2{bottom:176.975579pt;}
.y170{bottom:180.255187pt;}
.y13b{bottom:181.610347pt;}
.yf2{bottom:181.611211pt;}
.y8b{bottom:181.612123pt;}
.y220{bottom:181.855003pt;}
.y10f{bottom:184.973851pt;}
.yc6{bottom:184.974715pt;}
.yb2{bottom:185.214331pt;}
.y1cd{bottom:185.374523pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y2bb{bottom:186.492843pt;}
.y283{bottom:187.530549pt;}
.y19d{bottom:187.614643pt;}
.y37{bottom:188.335099pt;}
.y2a{bottom:188.575387pt;}
.y24c{bottom:190.412987pt;}
.y20a{bottom:194.653259pt;}
.y1f6{bottom:194.654523pt;}
.y1b1{bottom:194.815675pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y16e{bottom:198.414475pt;}
.y13a{bottom:199.450443pt;}
.yf1{bottom:199.451307pt;}
.y8a{bottom:199.452219pt;}
.y2ba{bottom:199.532987pt;}
.y21f{bottom:199.695099pt;}
.y282{bottom:200.570693pt;}
.y10e{bottom:202.813947pt;}
.yc5{bottom:202.814811pt;}
.yb1{bottom:203.054427pt;}
.y1cc{bottom:203.214619pt;}
.y24b{bottom:203.453131pt;}
.y19c{bottom:205.854795pt;}
.y36{bottom:206.175195pt;}
.y29{bottom:206.415483pt;}
.y16d{bottom:207.535083pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y209{bottom:212.493355pt;}
.y1f5{bottom:212.494619pt;}
.y2b9{bottom:212.573131pt;}
.y1b0{bottom:212.655771pt;}
.y281{bottom:213.610837pt;}
.y24a{bottom:216.493275pt;}
.y139{bottom:217.290539pt;}
.yf0{bottom:217.291403pt;}
.y89{bottom:217.292315pt;}
.y21e{bottom:217.535195pt;}
.y10d{bottom:220.654043pt;}
.yc4{bottom:220.654907pt;}
.yb0{bottom:220.894523pt;}
.y1cb{bottom:221.054715pt;}
.y19b{bottom:224.015147pt;}
.y35{bottom:224.015291pt;}
.y28{bottom:224.255579pt;}
.y280{bottom:226.650981pt;}
.y249{bottom:229.533419pt;}
.y2b8{bottom:229.613131pt;}
.y208{bottom:230.333451pt;}
.y1f4{bottom:230.334715pt;}
.y1af{bottom:230.495867pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y16c{bottom:234.894779pt;}
.y138{bottom:235.130635pt;}
.yef{bottom:235.131499pt;}
.y88{bottom:235.132411pt;}
.y21d{bottom:235.375291pt;}
.y19a{bottom:236.815067pt;}
.y10c{bottom:238.494139pt;}
.yc3{bottom:238.495003pt;}
.yaf{bottom:238.734619pt;}
.y1ca{bottom:238.894811pt;}
.y27f{bottom:239.691125pt;}
.y34{bottom:241.855387pt;}
.y27{bottom:242.095675pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y248{bottom:242.573563pt;}
.y2b7{bottom:242.653275pt;}
.y207{bottom:248.173547pt;}
.y1f3{bottom:248.174811pt;}
.y137{bottom:252.970731pt;}
.yee{bottom:252.971595pt;}
.y87{bottom:252.972507pt;}
.y16a{bottom:253.055131pt;}
.y21c{bottom:253.215387pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y199{bottom:255.055219pt;}
.y2b6{bottom:255.693419pt;}
.y10b{bottom:256.334235pt;}
.yc2{bottom:256.335099pt;}
.yae{bottom:256.574715pt;}
.y27e{bottom:256.731125pt;}
.y1c9{bottom:256.734907pt;}
.y247{bottom:259.613563pt;}
.y33{bottom:259.695483pt;}
.y26{bottom:259.935771pt;}
.y1ae{bottom:262.175867pt;}
.y206{bottom:266.013643pt;}
.y1f2{bottom:266.014907pt;}
.y198{bottom:267.855139pt;}
.y2b5{bottom:268.733563pt;}
.y27d{bottom:269.771269pt;}
.y136{bottom:270.810827pt;}
.yed{bottom:270.811691pt;}
.y86{bottom:270.812603pt;}
.y21b{bottom:271.055483pt;}
.y16b{bottom:271.295283pt;}
.y246{bottom:272.653707pt;}
.y10a{bottom:274.174331pt;}
.yc1{bottom:274.175195pt;}
.yad{bottom:274.414811pt;}
.y1c8{bottom:274.575003pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y32{bottom:277.535579pt;}
.y25{bottom:277.775867pt;}
.y2b4{bottom:281.773707pt;}
.y27c{bottom:282.811413pt;}
.y205{bottom:283.853739pt;}
.y1f1{bottom:283.855003pt;}
.y245{bottom:285.693851pt;}
.y197{bottom:286.095291pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y135{bottom:288.650923pt;}
.yec{bottom:288.651787pt;}
.y85{bottom:288.652699pt;}
.y21a{bottom:288.895579pt;}
.y169{bottom:289.535435pt;}
.y109{bottom:292.014427pt;}
.yc0{bottom:292.015291pt;}
.yac{bottom:292.254907pt;}
.y1c7{bottom:292.415099pt;}
.y2b3{bottom:294.813851pt;}
.y31{bottom:295.375675pt;}
.y27b{bottom:295.851557pt;}
.y1ad{bottom:297.295003pt;}
.y168{bottom:298.576243pt;}
.y244{bottom:298.733995pt;}
.y204{bottom:301.693835pt;}
.y1f0{bottom:301.695099pt;}
.y196{bottom:304.255643pt;}
.y134{bottom:306.491019pt;}
.yeb{bottom:306.491883pt;}
.y84{bottom:306.492795pt;}
.y219{bottom:306.735675pt;}
.y2b2{bottom:307.853995pt;}
.y11{bottom:309.452000pt;}
.y108{bottom:309.854523pt;}
.ybf{bottom:309.855387pt;}
.yab{bottom:310.095003pt;}
.y1c6{bottom:310.255195pt;}
.y243{bottom:311.774139pt;}
.y27a{bottom:312.891557pt;}
.y30{bottom:313.215771pt;}
.y1ac{bottom:315.135099pt;}
.y195{bottom:317.055563pt;}
.y203{bottom:319.533931pt;}
.y1ef{bottom:319.535195pt;}
.y133{bottom:324.331115pt;}
.yea{bottom:324.331979pt;}
.y83{bottom:324.332891pt;}
.y218{bottom:324.575771pt;}
.y2b1{bottom:324.893995pt;}
.y279{bottom:325.931701pt;}
.y167{bottom:325.935939pt;}
.y107{bottom:327.694619pt;}
.ybe{bottom:327.695483pt;}
.yaa{bottom:327.935099pt;}
.y1c5{bottom:328.095291pt;}
.y24{bottom:328.255867pt;}
.y242{bottom:328.814139pt;}
.y2f{bottom:331.055867pt;}
.y1ab{bottom:332.975195pt;}
.y194{bottom:335.295715pt;}
.y202{bottom:337.374027pt;}
.y1ee{bottom:337.375291pt;}
.y2b0{bottom:337.934139pt;}
.y278{bottom:338.971845pt;}
.y241{bottom:341.854283pt;}
.y132{bottom:342.171211pt;}
.ye9{bottom:342.172075pt;}
.y82{bottom:342.172987pt;}
.y217{bottom:342.415867pt;}
.y10{bottom:343.809333pt;}
.y106{bottom:345.534715pt;}
.ybd{bottom:345.535579pt;}
.ya9{bottom:345.775195pt;}
.y1c4{bottom:345.935387pt;}
.y174{bottom:348.975867pt;}
.y1aa{bottom:350.815291pt;}
.y2af{bottom:350.974283pt;}
.y193{bottom:353.535867pt;}
.y240{bottom:354.894427pt;}
.y201{bottom:355.214123pt;}
.y1ed{bottom:355.215387pt;}
.y277{bottom:356.011845pt;}
.y131{bottom:360.011307pt;}
.ye8{bottom:360.012171pt;}
.y81{bottom:360.013083pt;}
.yf{bottom:362.706666pt;}
.y105{bottom:363.374811pt;}
.ybc{bottom:363.375675pt;}
.ya8{bottom:363.615291pt;}
.y1c3{bottom:363.775483pt;}
.y2ae{bottom:364.014427pt;}
.y23f{bottom:367.934571pt;}
.y1a9{bottom:368.655387pt;}
.y276{bottom:369.051989pt;}
.y200{bottom:373.054219pt;}
.y1ec{bottom:373.055483pt;}
.y1a3{bottom:376.575867pt;}
.y2ad{bottom:377.054571pt;}
.y130{bottom:377.851403pt;}
.ye7{bottom:377.852267pt;}
.y80{bottom:377.853179pt;}
.y23e{bottom:380.974715pt;}
.y104{bottom:381.214907pt;}
.ybb{bottom:381.215771pt;}
.ya7{bottom:381.455387pt;}
.y1c2{bottom:381.615579pt;}
.y275{bottom:382.092133pt;}
.y1a8{bottom:386.495483pt;}
.y14c{bottom:389.535771pt;}
.y1ff{bottom:390.894315pt;}
.y1eb{bottom:390.895579pt;}
.y216{bottom:392.895867pt;}
.y2ac{bottom:394.094571pt;}
.y274{bottom:395.132277pt;}
.y12f{bottom:395.691499pt;}
.ye6{bottom:395.692363pt;}
.y7f{bottom:395.693275pt;}
.y165{bottom:397.374235pt;}
.y23d{bottom:398.014715pt;}
.y103{bottom:399.055003pt;}
.yba{bottom:399.055867pt;}
.ya6{bottom:399.295483pt;}
.y1c1{bottom:399.455675pt;}
.y1a7{bottom:404.335579pt;}
.y2ab{bottom:407.134715pt;}
.y14b{bottom:407.375867pt;}
.y5c{bottom:407.695867pt;}
.y273{bottom:408.172421pt;}
.y1fe{bottom:408.734411pt;}
.y1ea{bottom:408.735675pt;}
.y23c{bottom:411.054859pt;}
.y12e{bottom:413.531595pt;}
.ye5{bottom:413.532459pt;}
.y7e{bottom:413.533371pt;}
.y164{bottom:415.214331pt;}
.y17b{bottom:415.215387pt;}
.y102{bottom:416.895099pt;}
.ya5{bottom:417.135579pt;}
.y1c0{bottom:417.295771pt;}
.y192{bottom:420.095579pt;}
.y2aa{bottom:420.174859pt;}
.y1a6{bottom:422.175675pt;}
.y23b{bottom:424.095003pt;}
.y272{bottom:425.212421pt;}
.y1fd{bottom:426.574507pt;}
.y1e9{bottom:426.575771pt;}
.y2ce{bottom:429.212277pt;}
.ye{bottom:430.990669pt;}
.y12d{bottom:431.371691pt;}
.ye4{bottom:431.372555pt;}
.y7d{bottom:431.373467pt;}
.yb9{bottom:431.376235pt;}
.y163{bottom:433.054427pt;}
.y17a{bottom:433.055483pt;}
.y2a9{bottom:433.215003pt;}
.y101{bottom:434.735195pt;}
.ya4{bottom:434.975675pt;}
.y1bf{bottom:435.135867pt;}
.y23a{bottom:437.135147pt;}
.y191{bottom:437.935675pt;}
.y271{bottom:438.252565pt;}
.y14a{bottom:439.695867pt;}
.y1a5{bottom:440.015771pt;}
.y2cd{bottom:442.252421pt;}
.y1fc{bottom:444.414603pt;}
.y1e8{bottom:444.415867pt;}
.y2ee{bottom:446.248869pt;}
.yd{bottom:446.990669pt;}
.yb8{bottom:447.535867pt;}
.y5b{bottom:448.655723pt;}
.y12c{bottom:449.211787pt;}
.ye3{bottom:449.212651pt;}
.y7c{bottom:449.213563pt;}
.y2a8{bottom:450.255003pt;}
.y162{bottom:450.894523pt;}
.y179{bottom:450.895579pt;}
.y270{bottom:451.292709pt;}
.y100{bottom:452.575291pt;}
.ya3{bottom:452.815771pt;}
.y239{bottom:454.175147pt;}
.y2cc{bottom:455.292565pt;}
.y190{bottom:455.775771pt;}
.y1a4{bottom:457.855867pt;}
.y2ed{bottom:459.289013pt;}
.y5a{bottom:462.255915pt;}
.yc{bottom:462.990669pt;}
.y2a7{bottom:463.295147pt;}
.y12b{bottom:467.051883pt;}
.ye2{bottom:467.052747pt;}
.y7b{bottom:467.053659pt;}
.y238{bottom:467.215291pt;}
.y1be{bottom:467.375867pt;}
.y26f{bottom:468.332709pt;}
.y161{bottom:468.734619pt;}
.y178{bottom:468.735675pt;}
.yff{bottom:470.415387pt;}
.ya2{bottom:470.655867pt;}
.y2cb{bottom:472.332565pt;}
.y18f{bottom:473.615867pt;}
.y149{bottom:474.015867pt;}
.y59{bottom:475.856107pt;}
.y2ec{bottom:476.329013pt;}
.y2a6{bottom:476.335291pt;}
.yb{bottom:478.990666pt;}
.y237{bottom:480.255435pt;}
.y26e{bottom:481.372853pt;}
.y12a{bottom:484.891979pt;}
.ye1{bottom:484.892843pt;}
.y7a{bottom:484.893755pt;}
.y2ca{bottom:485.372709pt;}
.y160{bottom:486.574715pt;}
.y177{bottom:486.575771pt;}
.y214{bottom:487.055531pt;}
.yfe{bottom:488.255483pt;}
.y2eb{bottom:489.369157pt;}
.y58{bottom:489.375643pt;}
.y18d{bottom:491.455771pt;}
.y18e{bottom:491.455867pt;}
.y236{bottom:493.295579pt;}
.y2a5{bottom:493.375291pt;}
.ya{bottom:494.990666pt;}
.y26d{bottom:498.412853pt;}
.y1e5{bottom:500.414981pt;}
.y2ea{bottom:502.409301pt;}
.y129{bottom:502.732075pt;}
.ye0{bottom:502.732939pt;}
.y79{bottom:502.733851pt;}
.yb7{bottom:502.735867pt;}
.y57{bottom:502.975835pt;}
.ya1{bottom:502.976235pt;}
.y15f{bottom:504.414811pt;}
.y176{bottom:504.415867pt;}
.y213{bottom:505.295683pt;}
.yfd{bottom:506.095579pt;}
.y235{bottom:506.335723pt;}
.y2a4{bottom:506.415435pt;}
.y18c{bottom:509.295867pt;}
.y26c{bottom:511.452997pt;}
.y2e9{bottom:515.449445pt;}
.y56{bottom:516.576027pt;}
.y1e4{bottom:518.655133pt;}
.ya0{bottom:519.135867pt;}
.y234{bottom:519.375867pt;}
.y2a3{bottom:519.455579pt;}
.y128{bottom:520.572171pt;}
.ydf{bottom:520.573035pt;}
.y78{bottom:520.573947pt;}
.y15e{bottom:522.254907pt;}
.y1bd{bottom:522.655771pt;}
.y212{bottom:523.456035pt;}
.yfc{bottom:523.935675pt;}
.y26b{bottom:524.493141pt;}
.y18a{bottom:527.135291pt;}
.y18b{bottom:527.135867pt;}
.y2e8{bottom:528.489589pt;}
.y55{bottom:530.095563pt;}
.y2a2{bottom:532.495723pt;}
.y175{bottom:536.735867pt;}
.y1e3{bottom:536.895285pt;}
.y127{bottom:538.412267pt;}
.yde{bottom:538.413131pt;}
.y77{bottom:538.414043pt;}
.y15d{bottom:540.095003pt;}
.y1bc{bottom:540.495867pt;}
.y2e7{bottom:541.529733pt;}
.y26a{bottom:541.533141pt;}
.y211{bottom:541.696187pt;}
.yfb{bottom:541.775771pt;}
.y54{bottom:543.695755pt;}
.y189{bottom:544.975387pt;}
.y2a1{bottom:545.535867pt;}
.y148{bottom:548.175483pt;}
.y9f{bottom:553.455867pt;}
.y269{bottom:554.573285pt;}
.y1e2{bottom:555.055637pt;}
.y126{bottom:556.252363pt;}
.ydd{bottom:556.253227pt;}
.y76{bottom:556.254139pt;}
.y53{bottom:557.295947pt;}
.y15c{bottom:557.935099pt;}
.y1ba{bottom:558.335675pt;}
.y1bb{bottom:558.335867pt;}
.y2e6{bottom:558.569733pt;}
.yfa{bottom:559.615867pt;}
.y2a0{bottom:562.575867pt;}
.y188{bottom:562.815483pt;}
.y215{bottom:564.735867pt;}
.y147{bottom:566.015579pt;}
.y268{bottom:567.613429pt;}
.y233{bottom:568.735867pt;}
.y52{bottom:570.815483pt;}
.y2e5{bottom:571.609877pt;}
.y1e1{bottom:573.295789pt;}
.y9{bottom:573.786667pt;}
.y125{bottom:574.092459pt;}
.ydc{bottom:574.093323pt;}
.y75{bottom:574.094235pt;}
.y29f{bottom:575.607461pt;}
.y15b{bottom:575.775195pt;}
.y1b9{bottom:576.175771pt;}
.y187{bottom:580.655579pt;}
.y146{bottom:583.855675pt;}
.y51{bottom:584.415675pt;}
.y2e4{bottom:584.650021pt;}
.y267{bottom:584.653429pt;}
.y29e{bottom:588.647605pt;}
.y124{bottom:591.932555pt;}
.ydb{bottom:591.933419pt;}
.y74{bottom:591.934331pt;}
.yf9{bottom:591.936235pt;}
.y8{bottom:592.685334pt;}
.y1e7{bottom:593.456000pt;}
.y15a{bottom:593.615291pt;}
.y1b8{bottom:594.015867pt;}
.y1e6{bottom:596.335867pt;}
.y2e3{bottom:597.690165pt;}
.y266{bottom:597.693573pt;}
.y50{bottom:598.015867pt;}
.y186{bottom:598.495675pt;}
.y29d{bottom:601.687749pt;}
.y210{bottom:603.535867pt;}
.yf8{bottom:608.095867pt;}
.y123{bottom:609.772651pt;}
.yda{bottom:609.773515pt;}
.y73{bottom:609.774427pt;}
.y265{bottom:610.733717pt;}
.y159{bottom:611.455387pt;}
.y29c{bottom:614.727893pt;}
.y2e2{bottom:614.730165pt;}
.y185{bottom:616.335771pt;}
.y145{bottom:619.535867pt;}
.y4d{bottom:619.536000pt;}
.y4f{bottom:622.415867pt;}
.y264{bottom:623.773861pt;}
.y9e{bottom:627.610731pt;}
.y122{bottom:627.612747pt;}
.yd9{bottom:627.613611pt;}
.y72{bottom:627.614523pt;}
.y2e1{bottom:627.770309pt;}
.y158{bottom:629.295483pt;}
.y29b{bottom:631.767893pt;}
.y184{bottom:634.175867pt;}
.y1df{bottom:636.573987pt;}
.y263{bottom:636.814005pt;}
.y144{bottom:637.375483pt;}
.y2e0{bottom:640.810453pt;}
.y2c9{bottom:640.813861pt;}
.y29a{bottom:644.808037pt;}
.y9d{bottom:645.450827pt;}
.y121{bottom:645.452843pt;}
.y232{bottom:645.453547pt;}
.yd8{bottom:645.453707pt;}
.y71{bottom:645.454619pt;}
.y7{bottom:645.598667pt;}
.y157{bottom:647.135579pt;}
.y262{bottom:649.854149pt;}
.y2df{bottom:653.850597pt;}
.y2c8{bottom:653.854005pt;}
.y1de{bottom:654.814139pt;}
.y143{bottom:655.215579pt;}
.y299{bottom:657.848181pt;}
.y9c{bottom:663.290923pt;}
.y120{bottom:663.292939pt;}
.y231{bottom:663.293643pt;}
.yd7{bottom:663.293803pt;}
.y70{bottom:663.294715pt;}
.yf7{bottom:663.295867pt;}
.y4a{bottom:664.576000pt;}
.y156{bottom:664.975675pt;}
.y183{bottom:665.775867pt;}
.y261{bottom:666.894149pt;}
.y4c{bottom:666.975867pt;}
.y3{bottom:668.977329pt;}
.y298{bottom:670.888325pt;}
.y2de{bottom:670.890597pt;}
.y1dd{bottom:672.974491pt;}
.y142{bottom:673.055675pt;}
.y260{bottom:679.934293pt;}
.y9b{bottom:681.131019pt;}
.y11f{bottom:681.133035pt;}
.y230{bottom:681.133739pt;}
.yd6{bottom:681.133899pt;}
.y6f{bottom:681.134811pt;}
.y155{bottom:682.815771pt;}
.y2dd{bottom:683.930741pt;}
.y2c7{bottom:683.934149pt;}
.y297{bottom:687.928325pt;}
.y141{bottom:690.895771pt;}
.y1dc{bottom:691.214643pt;}
.y25f{bottom:692.974437pt;}
.y48{bottom:693.615867pt;}
.y2dc{bottom:696.970885pt;}
.y2c6{bottom:696.974293pt;}
.y182{bottom:697.535867pt;}
.y9a{bottom:698.971115pt;}
.y11e{bottom:698.973131pt;}
.y22f{bottom:698.973835pt;}
.yd5{bottom:698.973995pt;}
.y6e{bottom:698.974907pt;}
.y49{bottom:700.415867pt;}
.y154{bottom:700.655867pt;}
.y296{bottom:700.968469pt;}
.y25e{bottom:706.014581pt;}
.y140{bottom:708.735867pt;}
.y1db{bottom:709.454795pt;}
.y2db{bottom:710.011029pt;}
.y2c5{bottom:710.014437pt;}
.y295{bottom:714.008613pt;}
.y99{bottom:716.811211pt;}
.y11d{bottom:716.813227pt;}
.y22e{bottom:716.813931pt;}
.yd4{bottom:716.814091pt;}
.y6d{bottom:716.815003pt;}
.y25d{bottom:723.054581pt;}
.y294{bottom:727.048757pt;}
.y2da{bottom:727.051029pt;}
.y1da{bottom:727.615147pt;}
.y47{bottom:728.015733pt;}
.y181{bottom:731.855733pt;}
.y153{bottom:732.975867pt;}
.y98{bottom:734.651307pt;}
.y11c{bottom:734.653323pt;}
.y22d{bottom:734.654027pt;}
.yd3{bottom:734.654187pt;}
.y6c{bottom:734.655099pt;}
.y25c{bottom:736.094725pt;}
.y293{bottom:740.088901pt;}
.y2d9{bottom:740.091173pt;}
.y1d9{bottom:740.415067pt;}
.y46{bottom:741.936000pt;}
.y45{bottom:746.735867pt;}
.y25b{bottom:749.134869pt;}
.y166{bottom:752.415867pt;}
.y97{bottom:752.491403pt;}
.y11b{bottom:752.493419pt;}
.y22c{bottom:752.494123pt;}
.yd2{bottom:752.494283pt;}
.y6b{bottom:752.495195pt;}
.y2d8{bottom:753.131317pt;}
.y292{bottom:757.128901pt;}
.y1d8{bottom:758.655219pt;}
.y43{bottom:760.576000pt;}
.y25a{bottom:762.175013pt;}
.y42{bottom:765.375867pt;}
.y2d7{bottom:766.171461pt;}
.y2c4{bottom:766.174869pt;}
.y291{bottom:770.169045pt;}
.y96{bottom:770.331499pt;}
.y11a{bottom:770.333515pt;}
.y22b{bottom:770.334219pt;}
.yd1{bottom:770.334379pt;}
.y6a{bottom:770.335291pt;}
.y259{bottom:775.215157pt;}
.y1d7{bottom:776.895371pt;}
.y2d6{bottom:779.211605pt;}
.y2c3{bottom:779.215013pt;}
.y2{bottom:781.661334pt;}
.y290{bottom:783.209189pt;}
.y95{bottom:788.171595pt;}
.y119{bottom:788.173611pt;}
.y22a{bottom:788.174315pt;}
.yd0{bottom:788.174475pt;}
.y152{bottom:788.174827pt;}
.y69{bottom:788.175387pt;}
.y1d6{bottom:789.695291pt;}
.y258{bottom:792.255157pt;}
.y28f{bottom:796.249333pt;}
.y2d5{bottom:796.251605pt;}
.y94{bottom:806.011691pt;}
.y118{bottom:806.013707pt;}
.y229{bottom:806.014411pt;}
.ycf{bottom:806.014571pt;}
.y151{bottom:806.014923pt;}
.y180{bottom:806.015115pt;}
.y68{bottom:806.015483pt;}
.y1d5{bottom:807.855643pt;}
.y28e{bottom:809.289477pt;}
.y2d4{bottom:809.291749pt;}
.y257{bottom:809.295157pt;}
.y1d4{bottom:820.655563pt;}
.y2d3{bottom:822.331893pt;}
.y256{bottom:822.335301pt;}
.y41{bottom:823.615691pt;}
.y93{bottom:823.851787pt;}
.y117{bottom:823.853803pt;}
.y228{bottom:823.854507pt;}
.yce{bottom:823.854667pt;}
.y150{bottom:823.855019pt;}
.y17f{bottom:823.855211pt;}
.y67{bottom:823.855579pt;}
.y28d{bottom:826.329477pt;}
.y40{bottom:834.815867pt;}
.y2d2{bottom:835.372037pt;}
.y255{bottom:835.375445pt;}
.y1d3{bottom:838.895715pt;}
.y28c{bottom:839.369621pt;}
.y92{bottom:841.691883pt;}
.y116{bottom:841.693899pt;}
.y227{bottom:841.694603pt;}
.ycd{bottom:841.694763pt;}
.y14f{bottom:841.695115pt;}
.y17e{bottom:841.695307pt;}
.y66{bottom:841.695675pt;}
.y2d1{bottom:848.412181pt;}
.y254{bottom:848.415589pt;}
.y28b{bottom:852.409765pt;}
.y3f{bottom:856.255867pt;}
.y1d2{bottom:857.135867pt;}
.y1{bottom:859.312000pt;}
.y91{bottom:859.531979pt;}
.y115{bottom:859.533995pt;}
.y226{bottom:859.534699pt;}
.ycc{bottom:859.534859pt;}
.y14e{bottom:859.535211pt;}
.y17d{bottom:859.535403pt;}
.y65{bottom:859.535771pt;}
.y2c2{bottom:861.455733pt;}
.y28a{bottom:865.449909pt;}
.y2d0{bottom:865.452181pt;}
.y253{bottom:865.455589pt;}
.y90{bottom:877.372075pt;}
.y114{bottom:877.374091pt;}
.y225{bottom:877.374795pt;}
.ycb{bottom:877.374955pt;}
.y14d{bottom:877.375307pt;}
.y17c{bottom:877.375499pt;}
.y64{bottom:877.375867pt;}
.y289{bottom:878.490053pt;}
.y2cf{bottom:878.492325pt;}
.y252{bottom:878.495733pt;}
.y1e0{bottom:880.175733pt;}
.y3e{bottom:889.455381pt;}
.y3d{bottom:900.655557pt;}
.y3c{bottom:911.855733pt;}
.y62{bottom:918.015733pt;}
.h9{height:3.625781pt;}
.h18{height:10.560000pt;}
.h20{height:10.880000pt;}
.h13{height:11.360000pt;}
.h14{height:13.040000pt;}
.h10{height:21.920000pt;}
.hd{height:25.922812pt;}
.h12{height:26.887031pt;}
.hc{height:27.832031pt;}
.h7{height:28.560000pt;}
.h15{height:29.550937pt;}
.h17{height:29.758750pt;}
.he{height:30.090937pt;}
.h1f{height:31.324160pt;}
.h1b{height:31.358906pt;}
.h16{height:31.683750pt;}
.h1d{height:33.281250pt;}
.h1a{height:34.241563pt;}
.hb{height:35.204375pt;}
.h1e{height:37.212160pt;}
.h19{height:40.631719pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.ha{height:44.468750pt;}
.h11{height:45.120000pt;}
.h2{height:48.960000pt;}
.hf{height:53.121094pt;}
.h5{height:57.120000pt;}
.h1c{height:66.236926pt;}
.h4{height:105.826671pt;}
.h8{height:994.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:80.080000pt;}
.w8{width:105.920000pt;}
.w5{width:294.560000pt;}
.w7{width:433.760000pt;}
.w4{width:551.200000pt;}
.w2{width:566.928019pt;}
.w3{width:710.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:79.360000pt;}
.x32{left:81.280000pt;}
.x10{left:82.880000pt;}
.x34{left:83.920848pt;}
.x11{left:86.080000pt;}
.x7{left:88.720237pt;}
.x1{left:90.706667pt;}
.x6{left:92.720000pt;}
.x2{left:94.486667pt;}
.x19{left:96.480328pt;}
.x2e{left:100.079696pt;}
.x2c{left:101.200088pt;}
.x18{left:111.200000pt;}
.x23{left:113.919784pt;}
.x1a{left:116.080000pt;}
.x12{left:117.600000pt;}
.x21{left:132.639800pt;}
.x33{left:134.480000pt;}
.x1c{left:138.559896pt;}
.x1e{left:145.359920pt;}
.x30{left:159.760000pt;}
.x9{left:162.880000pt;}
.x4{left:180.874667pt;}
.x2f{left:196.400000pt;}
.xf{left:199.040000pt;}
.xa{left:224.160000pt;}
.x2b{left:232.320000pt;}
.x27{left:257.040552pt;}
.x26{left:259.680336pt;}
.x25{left:262.320120pt;}
.x22{left:266.799560pt;}
.x28{left:269.440408pt;}
.xc{left:271.199880pt;}
.x24{left:272.159992pt;}
.x1f{left:276.639432pt;}
.x1d{left:278.719552pt;}
.x1b{left:280.799672pt;}
.x20{left:283.439456pt;}
.xb{left:357.120000pt;}
.x8{left:370.320000pt;}
.x31{left:382.239956pt;}
.x17{left:383.680000pt;}
.x16{left:388.320208pt;}
.x3{left:404.408000pt;}
.x2a{left:418.240000pt;}
.x13{left:432.080000pt;}
.x2d{left:487.279936pt;}
.x29{left:538.960000pt;}
.xd{left:541.200000pt;}
.xe{left:542.640133pt;}
.x14{left:559.520000pt;}
.x15{left:617.040008pt;}
}




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