
    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_c6ebaaeb0af8f16a74707406.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight: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_265ea5ceff3226df8cecf0a6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.996000;font-style:normal;font-weight: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_4f98c23a2820c24803560492.woff')format("woff");}.ff3{font-family:ff3;line-height:0.996000;font-style:normal;font-weight: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_006ae72871dc232aae18dcee.woff')format("woff");}.ff4{font-family:ff4;line-height:0.971191;font-style:normal;font-weight: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_ac829897af50078894999218.woff')format("woff");}.ff5{font-family:ff5;line-height:0.706000;font-style:normal;font-weight: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_b95e92ed6adec7d8855f1956.woff')format("woff");}.ff6{font-family:ff6;line-height:0.979004;font-style:normal;font-weight: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_3f1b692a9fcc8f4f72581d87.woff')format("woff");}.ff7{font-family:ff7;line-height:0.958008;font-style:normal;font-weight: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_886efef8406e25248ea0bc8c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_466b29d7f3d2b21ddf19ada9.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946289;font-style:normal;font-weight: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_bc3b484f73619feb8b20604d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d0b836327e67282aca9ab2b4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_373f0cac5073a6fb86b2eefd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9c733acc8530f522692e7c88.woff')format("woff");}.ffd{font-family:ffd;line-height:0.758000;font-style:normal;font-weight: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_46827ac5ab918bcef327d183.woff')format("woff");}.ffe{font-family:ffe;line-height:0.935059;font-style:normal;font-weight: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_ec7c12ef76df80f2e759d641.woff')format("woff");}.fff{font-family:fff;line-height:0.871094;font-style:normal;font-weight: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_862a27b73bef2855f92964bd.woff')format("woff");}.ff10{font-family:ff10;line-height:0.758000;font-style:normal;font-weight: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_84d948b9c8a3931af3ad3009.woff')format("woff");}.ff11{font-family:ff11;line-height:0.940000;font-style:normal;font-weight: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_66384f84568f01aa773aebe6.woff')format("woff");}.ff12{font-family:ff12;line-height:0.940000;font-style:normal;font-weight: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_d17b3893ea76c49c0015add0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.967773;font-style:normal;font-weight: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_99b6d1cdf65cc9c4bf0080e6.woff')format("woff");}.ff14{font-family:ff14;line-height:0.975586;font-style:normal;font-weight: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_b8b43b38b300a4ce9de921f1.woff')format("woff");}.ff15{font-family:ff15;line-height:0.967773;font-style:normal;font-weight: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_d762c67f2618b747933a3be7.woff')format("woff");}.ff16{font-family:ff16;line-height:0.975586;font-style:normal;font-weight: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_bfdf0569d42b3243aec68b8e.woff')format("woff");}.ff17{font-family:ff17;line-height:0.739746;font-style:normal;font-weight: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_a1c569d01f3d878d675af8e7.woff')format("woff");}.ff18{font-family:ff18;line-height:0.951172;font-style:normal;font-weight: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_6fcb98bb6ed574c61e246f25.woff')format("woff");}.ff19{font-family:ff19;line-height:0.752000;font-style:normal;font-weight: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_8389baf7743a08ae66e144e4.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_5efe60b9ef2813e674ac3acd.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249049,0.021789,-0.021789,0.249049,0,0);-ms-transform:matrix(0.249049,0.021789,-0.021789,0.249049,0,0);-webkit-transform:matrix(0.249049,0.021789,-0.021789,0.249049,0,0);}
.m1{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);}
.v6{vertical-align:-13.000002px;}
.v9{vertical-align:-12.000000px;}
.v5{vertical-align:-9.499998px;}
.v2{vertical-align:-7.835940px;}
.v8{vertical-align:-5.472033px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:14.676240px;}
.v1{vertical-align:20.610354px;}
.v4{vertical-align:31.591800px;}
.v3{vertical-align:67.411200px;}
.ls25{letter-spacing:-8.658000px;}
.ls22{letter-spacing:-4.080000px;}
.ls59{letter-spacing:-1.310400px;}
.ls1d{letter-spacing:-1.260000px;}
.lsd{letter-spacing:-1.155000px;}
.ls17{letter-spacing:-0.980400px;}
.ls1c{letter-spacing:-0.078000px;}
.ls3b{letter-spacing:-0.075000px;}
.ls46{letter-spacing:-0.066000px;}
.ls42{letter-spacing:-0.062400px;}
.lsc{letter-spacing:-0.060000px;}
.ls55{letter-spacing:-0.057600px;}
.ls18{letter-spacing:-0.057000px;}
.ls44{letter-spacing:-0.055200px;}
.ls49{letter-spacing:-0.048000px;}
.ls5a{letter-spacing:-0.043200px;}
.ls3c{letter-spacing:-0.042203px;}
.lsb{letter-spacing:-0.039600px;}
.ls6{letter-spacing:-0.032400px;}
.ls2f{letter-spacing:-0.030000px;}
.ls56{letter-spacing:-0.028800px;}
.ls40{letter-spacing:-0.027600px;}
.ls51{letter-spacing:-0.027360px;}
.ls45{letter-spacing:-0.024000px;}
.ls7{letter-spacing:-0.020400px;}
.ls47{letter-spacing:-0.015000px;}
.ls58{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000030px;}
.ls5{letter-spacing:0.000420px;}
.ls12{letter-spacing:0.005340px;}
.ls1f{letter-spacing:0.005580px;}
.ls4d{letter-spacing:0.006600px;}
.ls34{letter-spacing:0.007020px;}
.ls4c{letter-spacing:0.007080px;}
.ls33{letter-spacing:0.007200px;}
.ls53{letter-spacing:0.010686px;}
.ls10{letter-spacing:0.011400px;}
.ls50{letter-spacing:0.011502px;}
.ls2{letter-spacing:0.012000px;}
.ls3e{letter-spacing:0.012411px;}
.ls4f{letter-spacing:0.012888px;}
.ls52{letter-spacing:0.014400px;}
.lse{letter-spacing:0.015000px;}
.ls1b{letter-spacing:0.015600px;}
.ls0{letter-spacing:0.016800px;}
.ls37{letter-spacing:0.017741px;}
.ls14{letter-spacing:0.018000px;}
.ls39{letter-spacing:0.018964px;}
.ls2e{letter-spacing:0.019200px;}
.ls2d{letter-spacing:0.019320px;}
.ls4e{letter-spacing:0.019611px;}
.ls36{letter-spacing:0.019880px;}
.ls15{letter-spacing:0.020000px;}
.ls3a{letter-spacing:0.020013px;}
.ls19{letter-spacing:0.020400px;}
.lsa{letter-spacing:0.021600px;}
.ls16{letter-spacing:0.022800px;}
.ls11{letter-spacing:0.023160px;}
.ls20{letter-spacing:0.024000px;}
.ls1e{letter-spacing:0.024360px;}
.ls48{letter-spacing:0.026400px;}
.ls41{letter-spacing:0.027600px;}
.ls38{letter-spacing:0.028685px;}
.ls54{letter-spacing:0.028800px;}
.ls29{letter-spacing:0.029388px;}
.lsf{letter-spacing:0.030000px;}
.ls35{letter-spacing:0.030249px;}
.ls4b{letter-spacing:0.030480px;}
.ls1a{letter-spacing:0.031200px;}
.ls4{letter-spacing:0.032400px;}
.ls9{letter-spacing:0.036000px;}
.ls30{letter-spacing:0.037500px;}
.ls26{letter-spacing:0.039600px;}
.ls4a{letter-spacing:0.043200px;}
.ls32{letter-spacing:0.044400px;}
.ls31{letter-spacing:0.044520px;}
.ls27{letter-spacing:0.045000px;}
.ls28{letter-spacing:0.045600px;}
.ls8{letter-spacing:0.048000px;}
.ls2a{letter-spacing:0.054000px;}
.ls24{letter-spacing:0.060000px;}
.ls3f{letter-spacing:0.062400px;}
.ls3{letter-spacing:0.064800px;}
.ls57{letter-spacing:0.067200px;}
.ls3d{letter-spacing:0.069600px;}
.ls21{letter-spacing:0.075000px;}
.ls43{letter-spacing:0.078000px;}
.ls23{letter-spacing:0.096000px;}
.ls2b{letter-spacing:49.184940px;}
.ls2c{letter-spacing:49.185000px;}
.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;}
}
.ws2f{word-spacing:-60.048000px;}
.ws1d{word-spacing:-54.336000px;}
.ws6{word-spacing:-54.240000px;}
.ws8{word-spacing:-48.794400px;}
.ws24{word-spacing:-35.334000px;}
.ws25{word-spacing:-35.318400px;}
.ws14{word-spacing:-35.287200px;}
.ws18{word-spacing:-35.256000px;}
.ws17{word-spacing:-35.178000px;}
.ws28{word-spacing:-35.028000px;}
.ws20{word-spacing:-33.960000px;}
.ws1f{word-spacing:-33.945000px;}
.ws2a{word-spacing:-33.930000px;}
.ws21{word-spacing:-33.915000px;}
.ws16{word-spacing:-33.900000px;}
.ws29{word-spacing:-33.870000px;}
.wsa{word-spacing:-33.840000px;}
.wsb{word-spacing:-32.745000px;}
.ws19{word-spacing:-32.640000px;}
.ws2d{word-spacing:-32.515200px;}
.ws2c{word-spacing:-32.486400px;}
.ws4{word-spacing:-30.273600px;}
.ws1e{word-spacing:-29.871600px;}
.ws26{word-spacing:-29.858400px;}
.ws9{word-spacing:-29.832000px;}
.ws3{word-spacing:-28.356000px;}
.ws7{word-spacing:-27.168000px;}
.ws1a{word-spacing:-27.144000px;}
.ws1c{word-spacing:-27.120000px;}
.ws27{word-spacing:-27.072000px;}
.ws2{word-spacing:-26.688000px;}
.wse{word-spacing:-25.786800px;}
.ws10{word-spacing:-25.775400px;}
.ws12{word-spacing:-25.707000px;}
.ws11{word-spacing:-24.783600px;}
.ws15{word-spacing:-23.503995px;}
.wsd{word-spacing:-22.620005px;}
.wsc{word-spacing:-22.600005px;}
.ws2e{word-spacing:-21.696000px;}
.ws13{word-spacing:-20.358000px;}
.ws5{word-spacing:-18.903994px;}
.ws1b{word-spacing:-18.079995px;}
.wsf{word-spacing:-17.176005px;}
.ws1{word-spacing:-16.680000px;}
.ws22{word-spacing:-13.420439px;}
.ws23{word-spacing:-12.902580px;}
.ws2b{word-spacing:-8.700585px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-3050.677620px;}
._10{margin-left:-21.264000px;}
._6{margin-left:-19.889808px;}
._11{margin-left:-18.672000px;}
._f{margin-left:-12.180000px;}
._d{margin-left:-10.533600px;}
._1{margin-left:-8.352000px;}
._e{margin-left:-6.732000px;}
._b{margin-left:-5.238408px;}
._0{margin-left:-3.888000px;}
._2{margin-left:-2.376000px;}
._3{margin-left:-1.080192px;}
._7{width:1.536000px;}
._a{width:3.405540px;}
._5{width:4.503000px;}
._c{width:8.658000px;}
._4{width:1983.462600px;}
._8{width:2263.573860px;}
.fc15{color:rgb(169,169,169);}
.fc13{color:rgb(203,41,123);}
.fc12{color:rgb(0,0,128);}
.fce{color:rgb(0,150,255);}
.fcd{color:rgb(115,253,255);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(255,38,0);}
.fc1{color:rgb(66,66,66);}
.fcc{color:transparent;}
.fc5{color:rgb(0,97,255);}
.fc6{color:rgb(148,55,255);}
.fc11{color:rgb(212,170,0);}
.fcf{color:rgb(255,212,121);}
.fc9{color:rgb(4,51,255);}
.fc10{color:rgb(212,0,0);}
.fc7{color:rgb(255,47,146);}
.fc14{color:rgb(255,147,0);}
.fc4{color:rgb(227,36,0);}
.fca{color:rgb(255,147,0);}
.fc8{color:rgb(214,214,214);}
.fcb{color:rgb(0,144,81);}
.fs2d{font-size:17.784211px;}
.fs25{font-size:26.373191px;}
.fs2c{font-size:27.360331px;}
.fs2b{font-size:27.360719px;}
.fs20{font-size:27.431708px;}
.fs24{font-size:40.574151px;}
.fs23{font-size:40.574718px;}
.fs29{font-size:41.020561px;}
.fs1f{font-size:42.202638px;}
.fs1e{font-size:42.203237px;}
.fs2a{font-size:47.981511px;}
.fs26{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs21{font-size:60.831669px;}
.fs1c{font-size:63.273207px;}
.fse{font-size:67.999980px;}
.fs22{font-size:71.154428px;}
.fs1d{font-size:74.010282px;}
.fs13{font-size:76.000020px;}
.fs19{font-size:78.000000px;}
.fs17{font-size:79.999980px;}
.fs0{font-size:84.000000px;}
.fs7{font-size:90.000000px;}
.fs9{font-size:96.000000px;}
.fs11{font-size:100.000020px;}
.fsa{font-size:102.000000px;}
.fs16{font-size:103.999980px;}
.fsb{font-size:108.000000px;}
.fs12{font-size:114.000000px;}
.fs3{font-size:120.000000px;}
.fs28{font-size:126.000000px;}
.fs10{font-size:132.000000px;}
.fs27{font-size:138.000000px;}
.fs2e{font-size:144.000000px;}
.fsc{font-size:150.000000px;}
.fs15{font-size:156.000000px;}
.fsd{font-size:162.000000px;}
.fs2f{font-size:168.000000px;}
.fs2{font-size:174.000000px;}
.fs18{font-size:180.000000px;}
.fs14{font-size:192.000000px;}
.fs1{font-size:216.000000px;}
.fs1a{font-size:217.500000px;}
.fs5{font-size:228.000000px;}
.fsf{font-size:240.000000px;}
.fs6{font-size:252.000000px;}
.fs1b{font-size:270.000000px;}
.fs4{font-size:372.480000px;}
.fs30{font-size:390.000000px;}
.y0{bottom:0.000000px;}
.y72{bottom:0.209400px;}
.y1a1{bottom:2.441712px;}
.y77{bottom:2.865000px;}
.y57{bottom:2.876850px;}
.y5a{bottom:2.877000px;}
.y1bb{bottom:3.209475px;}
.y87{bottom:3.209550px;}
.ydb{bottom:3.506850px;}
.ydd{bottom:3.507000px;}
.y1b5{bottom:4.709400px;}
.y7d{bottom:4.709550px;}
.y194{bottom:4.749060px;}
.y198{bottom:4.749075px;}
.y36{bottom:4.821090px;}
.y1{bottom:6.396786px;}
.y199{bottom:6.650139px;}
.y175{bottom:7.681635px;}
.y8e{bottom:8.250000px;}
.y16e{bottom:9.000000px;}
.y19c{bottom:9.382416px;}
.y19e{bottom:10.201080px;}
.yb0{bottom:10.484550px;}
.ya4{bottom:10.484625px;}
.ya6{bottom:10.484700px;}
.yf2{bottom:10.554771px;}
.y6f{bottom:11.344650px;}
.ycd{bottom:12.239850px;}
.y19d{bottom:12.803919px;}
.y1a0{bottom:12.803925px;}
.yd4{bottom:12.959400px;}
.ycb{bottom:12.959475px;}
.y13e{bottom:13.198200px;}
.yf1{bottom:13.198230px;}
.yf3{bottom:13.198239px;}
.yfb{bottom:13.198242px;}
.yf7{bottom:13.198245px;}
.y6b{bottom:13.198350px;}
.yf5{bottom:13.369455px;}
.y140{bottom:13.369500px;}
.y65{bottom:13.396800px;}
.yfa{bottom:13.442298px;}
.y5{bottom:13.798828px;}
.y5e{bottom:13.803900px;}
.y70{bottom:14.398755px;}
.y12e{bottom:14.399550px;}
.y182{bottom:15.663000px;}
.y75{bottom:16.215900px;}
.y18d{bottom:16.303800px;}
.y1c4{bottom:16.342950px;}
.y89{bottom:17.452350px;}
.y1d{bottom:17.526300px;}
.y1b{bottom:17.526360px;}
.y188{bottom:17.564100px;}
.y12c{bottom:17.679450px;}
.y133{bottom:17.679600px;}
.y185{bottom:18.121050px;}
.y60{bottom:20.681100px;}
.ya3{bottom:22.525680px;}
.y15f{bottom:23.041200px;}
.y14b{bottom:23.041350px;}
.y109{bottom:23.141235px;}
.y1bd{bottom:23.333400px;}
.ya8{bottom:23.783100px;}
.yae{bottom:23.783250px;}
.y3f{bottom:23.796930px;}
.y19{bottom:25.001400px;}
.y1a7{bottom:25.918950px;}
.y85{bottom:27.026250px;}
.y138{bottom:27.026355px;}
.y95{bottom:27.026370px;}
.y44{bottom:27.026400px;}
.y1c2{bottom:27.473400px;}
.y7f{bottom:28.107450px;}
.y13c{bottom:28.189200px;}
.y190{bottom:29.017650px;}
.y53{bottom:29.625000px;}
.y1f5{bottom:30.269550px;}
.y1a3{bottom:31.635633px;}
.y19b{bottom:31.635636px;}
.yca{bottom:31.745265px;}
.y18b{bottom:32.421900px;}
.yc3{bottom:32.431635px;}
.y55{bottom:34.593750px;}
.y9d{bottom:35.024595px;}
.y16b{bottom:35.341050px;}
.ye6{bottom:35.926650px;}
.y10{bottom:36.236700px;}
.y19f{bottom:39.803925px;}
.y24{bottom:40.361850px;}
.y22{bottom:40.362000px;}
.ye1{bottom:40.786335px;}
.y174{bottom:41.820555px;}
.y18{bottom:41.861700px;}
.y181{bottom:42.663000px;}
.yf0{bottom:43.198230px;}
.y6a{bottom:43.198350px;}
.y74{bottom:43.215900px;}
.y31{bottom:43.242150px;}
.ya1{bottom:43.242300px;}
.y5d{bottom:43.803900px;}
.y1da{bottom:45.981990px;}
.yd1{bottom:46.056615px;}
.y1ff{bottom:46.798050px;}
.y96{bottom:47.951655px;}
.yf{bottom:50.518950px;}
.y1fa{bottom:51.367125px;}
.yf8{bottom:52.524975px;}
.y184{bottom:52.621050px;}
.y1ba{bottom:53.262150px;}
.y192{bottom:56.136015px;}
.y196{bottom:56.136045px;}
.y108{bottom:56.141235px;}
.y34{bottom:57.621030px;}
.y187{bottom:57.860250px;}
.yc2{bottom:58.174830px;}
.y12b{bottom:58.179450px;}
.y132{bottom:58.179600px;}
.y1d7{bottom:58.246283px;}
.y1e3{bottom:61.333830px;}
.y1c1{bottom:63.473400px;}
.y52{bottom:64.125000px;}
.y18f{bottom:65.017650px;}
.y1d6{bottom:66.796517px;}
.y1a2{bottom:67.635633px;}
.y19a{bottom:67.635636px;}
.ydf{bottom:68.266020px;}
.y18a{bottom:70.079550px;}
.yef{bottom:70.125435px;}
.y9{bottom:72.752400px;}
.y84{bottom:73.526250px;}
.y137{bottom:73.526310px;}
.ye0{bottom:73.526370px;}
.y94{bottom:73.526385px;}
.y43{bottom:73.526400px;}
.y1cc{bottom:74.130546px;}
.y3b{bottom:80.231055px;}
.y1d9{bottom:81.981990px;}
.y139{bottom:82.989420px;}
.yf4{bottom:84.106545px;}
.y1f{bottom:88.823175px;}
.y123{bottom:88.892312px;}
.y124{bottom:89.076045px;}
.y117{bottom:89.843431px;}
.yd0{bottom:92.556615px;}
.yed{bottom:93.026400px;}
.y33{bottom:93.621030px;}
.y93{bottom:95.862915px;}
.y16a{bottom:96.841050px;}
.y1b9{bottom:97.758450px;}
.y51{bottom:98.625000px;}
.y1c0{bottom:99.473400px;}
.y122{bottom:101.571950px;}
.y116{bottom:103.031956px;}
.y32{bottom:103.107120px;}
.y191{bottom:103.915335px;}
.y1e2{bottom:104.833830px;}
.y195{bottom:105.892155px;}
.y173{bottom:106.502190px;}
.y20{bottom:108.598845px;}
.y99{bottom:112.429500px;}
.y1ad{bottom:112.495965px;}
.y10c{bottom:114.344516px;}
.yc8{bottom:114.486645px;}
.y79{bottom:115.798950px;}
.y193{bottom:116.302350px;}
.y1d5{bottom:116.509099px;}
.ya0{bottom:116.742300px;}
.ye5{bottom:116.926650px;}
.y10a{bottom:117.086640px;}
.y1d8{bottom:117.981990px;}
.y197{bottom:118.279170px;}
.y136{bottom:118.934790px;}
.y35{bottom:119.907120px;}
.y172{bottom:120.026250px;}
.yac{bottom:123.356880px;}
.y1d4{bottom:125.059193px;}
.yf9{bottom:130.095000px;}
.yf6{bottom:132.912660px;}
.y50{bottom:133.125000px;}
.y1a{bottom:133.468590px;}
.y1d3{bottom:133.609288px;}
.y1bf{bottom:135.473400px;}
.ycf{bottom:139.056615px;}
.y1d2{bottom:142.159417px;}
.y1b8{bottom:144.258450px;}
.y101{bottom:147.026400px;}
.y1e1{bottom:148.333830px;}
.y1d1{bottom:150.709547px;}
.y169{bottom:158.341050px;}
.yec{bottom:159.026400px;}
.y11a{bottom:159.174986px;}
.yee{bottom:159.276600px;}
.y168{bottom:163.796250px;}
.y4f{bottom:167.625000px;}
.yc7{bottom:168.486600px;}
.y107{bottom:169.011600px;}
.y1c{bottom:169.185000px;}
.yab{bottom:169.856850px;}
.y115{bottom:179.712392px;}
.y126{bottom:180.438300px;}
.yea{bottom:183.417000px;}
.y1d0{bottom:187.219919px;}
.yce{bottom:189.225750px;}
.y9f{bottom:190.242300px;}
.y1b7{bottom:190.758450px;}
.y1e0{bottom:191.833800px;}
.y114{bottom:192.900703px;}
.y100{bottom:193.526400px;}
.y18e{bottom:194.569200px;}
.y1cf{bottom:195.770013px;}
.y183{bottom:196.506000px;}
.y121{bottom:196.977299px;}
.y1de{bottom:200.349600px;}
.yaf{bottom:201.924450px;}
.y4e{bottom:202.125000px;}
.yfc{bottom:202.362450px;}
.y1ce{bottom:204.320108px;}
.yeb{bottom:205.526400px;}
.y113{bottom:206.089014px;}
.y1f9{bottom:207.136200px;}
.y120{bottom:209.656728px;}
.y1cd{bottom:212.870272px;}
.y106{bottom:215.511600px;}
.yaa{bottom:216.356850px;}
.yd9{bottom:216.990000px;}
.y112{bottom:219.277379px;}
.y83{bottom:220.012350px;}
.yc6{bottom:222.486600px;}
.y7a{bottom:224.302950px;}
.y189{bottom:229.312650px;}
.y98{bottom:230.634750px;}
.y111{bottom:232.465743px;}
.y1df{bottom:235.333800px;}
.y4d{bottom:236.625000px;}
.y1b6{bottom:237.258450px;}
.y135{bottom:238.171200px;}
.yff{bottom:240.026400px;}
.y186{bottom:243.789750px;}
.y8b{bottom:247.038600px;}
.y1cb{bottom:253.730606px;}
.y1ac{bottom:259.438950px;}
.y1dd{bottom:260.349600px;}
.yd8{bottom:263.490000px;}
.y4c{bottom:271.125000px;}
.y11f{bottom:271.368979px;}
.y97{bottom:277.134750px;}
.y11e{bottom:284.048408px;}
.yfe{bottom:286.526400px;}
.y110{bottom:288.782095px;}
.y105{bottom:289.011600px;}
.ybd{bottom:292.823700px;}
.y8a{bottom:293.538600px;}
.y11d{bottom:296.727784px;}
.y180{bottom:297.137400px;}
.y10f{bottom:301.970406px;}
.y4b{bottom:305.625000px;}
.yd7{bottom:306.320850px;}
.y1fb{bottom:306.798300px;}
.y16{bottom:307.536750px;}
.y11c{bottom:309.407213px;}
.y129{bottom:311.922000px;}
.y1c3{bottom:314.741850px;}
.y10e{bottom:315.158717px;}
.y11b{bottom:322.086694px;}
.y18c{bottom:327.524850px;}
.y10d{bottom:328.347135px;}
.y4{bottom:328.788600px;}
.ye3{bottom:330.610200px;}
.y104{bottom:335.511600px;}
.y163{bottom:335.681550px;}
.y9a{bottom:339.072900px;}
.ybc{bottom:339.323700px;}
.y7c{bottom:339.364500px;}
.y1e9{bottom:339.576600px;}
.y48{bottom:339.691050px;}
.y4a{bottom:340.125000px;}
.y170{bottom:341.617050px;}
.y128{bottom:341.922000px;}
.y8c{bottom:349.864500px;}
.yd3{bottom:354.353100px;}
.ya9{bottom:358.717950px;}
.y162{bottom:365.965650px;}
.y1be{bottom:370.460850px;}
.y127{bottom:372.034050px;}
.y49{bottom:374.625000px;}
.yd6{bottom:375.990000px;}
.y119{bottom:378.786835px;}
.y103{bottom:382.011600px;}
.y1e8{bottom:383.076600px;}
.ybb{bottom:385.823700px;}
.y88{bottom:386.231700px;}
.y3{bottom:388.788600px;}
.y10b{bottom:391.373196px;}
.ycc{bottom:401.089800px;}
.y2a{bottom:403.681950px;}
.y1fc{bottom:406.423500px;}
.yd5{bottom:418.820850px;}
.y1e7{bottom:426.576600px;}
.y171{bottom:427.896750px;}
.y102{bottom:428.511600px;}
.y40{bottom:435.855750px;}
.yc4{bottom:439.800300px;}
.y9e{bottom:444.145650px;}
.yc5{bottom:447.243150px;}
.ye7{bottom:448.460400px;}
.y134{bottom:450.165300px;}
.y29{bottom:450.181950px;}
.y2{bottom:452.631600px;}
.y1bc{bottom:453.738000px;}
.y71{bottom:464.135400px;}
.y8d{bottom:464.846850px;}
.y16d{bottom:468.087750px;}
.y15{bottom:472.693950px;}
.y1dc{bottom:473.133150px;}
.ye4{bottom:474.395700px;}
.yde{bottom:479.797200px;}
.y90{bottom:484.124250px;}
.y42{bottom:484.547400px;}
.y8f{bottom:487.053900px;}
.y73{bottom:487.328700px;}
.ya5{bottom:491.411400px;}
.y1fe{bottom:493.125000px;}
.y14{bottom:502.693950px;}
.y1f8{bottom:506.048850px;}
.y131{bottom:514.554000px;}
.y12a{bottom:514.554150px;}
.y1af{bottom:515.580000px;}
.y21{bottom:517.743300px;}
.yad{bottom:519.168600px;}
.y1db{bottom:519.633150px;}
.y12d{bottom:522.903300px;}
.y1c5{bottom:524.438100px;}
.y1ef{bottom:530.819400px;}
.y1f7{bottom:549.548850px;}
.y1b4{bottom:560.375400px;}
.y1ae{bottom:562.080000px;}
.y1ee{bottom:574.319400px;}
.y130{bottom:575.242950px;}
.yc0{bottom:582.298650px;}
.y92{bottom:583.129950px;}
.y1b3{bottom:585.894300px;}
.y125{bottom:589.825050px;}
.y78{bottom:590.734950px;}
.y1f6{bottom:593.048850px;}
.y118{bottom:602.490000px;}
.yfd{bottom:602.825700px;}
.y17f{bottom:603.140100px;}
.y91{bottom:608.688300px;}
.y3d{bottom:617.454450px;}
.y1ed{bottom:617.819400px;}
.yb3{bottom:620.113500px;}
.ydc{bottom:620.952000px;}
.ybf{bottom:628.798650px;}
.y1ca{bottom:633.411900px;}
.y17e{bottom:636.140100px;}
.y16f{bottom:638.108400px;}
.y1aa{bottom:642.841950px;}
.y28{bottom:642.992850px;}
.y12f{bottom:647.099550px;}
.y1ab{bottom:648.141900px;}
.y1ec{bottom:661.319400px;}
.yb6{bottom:665.521200px;}
.yb2{bottom:666.613500px;}
.y1f4{bottom:667.691400px;}
.y17d{bottom:669.140100px;}
.y17{bottom:671.566500px;}
.ybe{bottom:675.298650px;}
.y1c9{bottom:675.390150px;}
.y27{bottom:689.492850px;}
.y7{bottom:694.988100px;}
.y167{bottom:698.441550px;}
.y17c{bottom:702.140100px;}
.y1eb{bottom:704.819400px;}
.yb5{bottom:712.021200px;}
.y1a8{bottom:712.102500px;}
.yb1{bottom:713.113500px;}
.y178{bottom:716.747700px;}
.y1a9{bottom:717.668400px;}
.y1c8{bottom:721.890150px;}
.y2f{bottom:728.008650px;}
.y14e{bottom:729.159600px;}
.ye{bottom:736.234350px;}
.y3e{bottom:740.476800px;}
.y54{bottom:743.355450px;}
.y13d{bottom:743.739900px;}
.y14a{bottom:745.477200px;}
.y144{bottom:746.627400px;}
.y1ea{bottom:748.319400px;}
.y157{bottom:754.239900px;}
.y158{bottom:755.739900px;}
.y2e{bottom:758.008650px;}
.yb4{bottom:758.521200px;}
.y146{bottom:765.820200px;}
.y17b{bottom:767.297700px;}
.y3a{bottom:769.721100px;}
.y161{bottom:771.372000px;}
.y156{bottom:777.186300px;}
.y15c{bottom:783.001050px;}
.y142{bottom:785.710050px;}
.y14d{bottom:787.266600px;}
.y2d{bottom:788.120700px;}
.y152{bottom:788.739900px;}
.y1a6{bottom:791.080350px;}
.yc1{bottom:792.771150px;}
.y81{bottom:797.616300px;}
.yb{bottom:798.064500px;}
.y166{bottom:802.591500px;}
.y17a{bottom:803.297700px;}
.y13b{bottom:803.319600px;}
.y6{bottom:804.620700px;}
.y76{bottom:810.938100px;}
.y151{bottom:816.332850px;}
.y154{bottom:817.350900px;}
.ya7{bottom:818.926200px;}
.y15b{bottom:823.165500px;}
.ya{bottom:823.564500px;}
.y149{bottom:827.431200px;}
.y147{bottom:828.931200px;}
.y160{bottom:835.398900px;}
.y15a{bottom:838.180050px;}
.y39{bottom:838.721100px;}
.y179{bottom:839.297700px;}
.y7e{bottom:841.393800px;}
.yba{bottom:844.555650px;}
.y1f3{bottom:848.798850px;}
.y165{bottom:849.091500px;}
.y159{bottom:849.966750px;}
.y1e6{bottom:852.562200px;}
.y13{bottom:861.492900px;}
.y143{bottom:863.280150px;}
.y2c{bottom:865.480200px;}
.y141{bottom:866.097750px;}
.y15d{bottom:867.293850px;}
.y63{bottom:872.011800px;}
.y155{bottom:874.461750px;}
.y6c{bottom:875.326200px;}
.y38{bottom:875.553750px;}
.y153{bottom:875.961750px;}
.y26{bottom:876.303750px;}
.y14c{bottom:878.067000px;}
.y5f{bottom:878.908050px;}
.y15e{bottom:878.976000px;}
.y150{bottom:880.461750px;}
.y1b2{bottom:882.717750px;}
.y47{bottom:883.400400px;}
.yb9{bottom:891.055650px;}
.y148{bottom:892.042050px;}
.y1f2{bottom:892.298850px;}
.y13a{bottom:892.461750px;}
.y164{bottom:895.591500px;}
.y1e5{bottom:896.062200px;}
.y67{bottom:897.367650px;}
.y6e{bottom:897.836100px;}
.ya2{bottom:903.327000px;}
.y1a5{bottom:904.830000px;}
.y145{bottom:905.542050px;}
.yda{bottom:907.352700px;}
.y2b{bottom:908.980200px;}
.y8{bottom:909.267000px;}
.y80{bottom:909.442800px;}
.y13f{bottom:913.693350px;}
.y1c7{bottom:914.001000px;}
.y12{bottom:914.696250px;}
.y59{bottom:916.575600px;}
.yd{bottom:919.196250px;}
.y14f{bottom:920.120100px;}
.y37{bottom:922.053750px;}
.y25{bottom:922.803750px;}
.y62{bottom:923.853000px;}
.y69{bottom:926.485650px;}
.y1b1{bottom:929.217750px;}
.y46{bottom:929.900400px;}
.y82{bottom:930.938100px;}
.y5c{bottom:934.413000px;}
.ye2{bottom:935.438100px;}
.y1f1{bottom:935.798850px;}
.yb8{bottom:937.555650px;}
.y1e4{bottom:939.562200px;}
.y66{bottom:941.566800px;}
.y11{bottom:943.196250px;}
.yc{bottom:947.696250px;}
.y3c{bottom:948.955200px;}
.y1a4{bottom:951.330000px;}
.y1c6{bottom:960.501000px;}
.y58{bottom:962.009700px;}
.ye8{bottom:962.492100px;}
.y9b{bottom:968.796450px;}
.y177{bottom:970.730850px;}
.yd2{bottom:971.438100px;}
.y1b0{bottom:975.717750px;}
.y45{bottom:976.400400px;}
.y1f0{bottom:979.298850px;}
.y6d{bottom:986.309100px;}
.y86{bottom:987.227550px;}
.y23{bottom:991.258500px;}
.y9c{bottom:992.438100px;}
.y68{bottom:992.606550px;}
.y176{bottom:997.014300px;}
.y61{bottom:1007.008650px;}
.y64{bottom:1007.807250px;}
.y41{bottom:1008.056550px;}
.y16c{bottom:1009.604850px;}
.y5b{bottom:1011.129750px;}
.ye9{bottom:1013.976900px;}
.y56{bottom:1029.423150px;}
.y7b{bottom:1043.820000px;}
.y30{bottom:1044.600000px;}
.yb7{bottom:1045.320000px;}
.yc9{bottom:1046.820000px;}
.y1fd{bottom:1055.668950px;}
.y1e{bottom:1070.746950px;}
.h8c{height:20.787439px;}
.h8b{height:20.787734px;}
.h26{height:27.000000px;}
.h34{height:30.000000px;}
.h61{height:30.826845px;}
.h60{height:30.827276px;}
.h89{height:31.166012px;}
.h30{height:31.500000px;}
.h5c{height:32.064114px;}
.h5b{height:32.064569px;}
.h41{height:36.000000px;}
.h8a{height:36.454703px;}
.h62{height:39.313477px;}
.h82{height:41.039985px;}
.h4d{height:42.750000px;}
.h53{height:44.642580px;}
.h55{height:44.821290px;}
.h56{height:44.880435px;}
.h29{height:45.019845px;}
.h5e{height:46.217811px;}
.h4c{height:46.500000px;}
.h59{height:48.072807px;}
.h2b{height:50.189295px;}
.h7b{height:50.899830px;}
.h66{height:51.000000px;}
.hf{height:51.340755px;}
.h87{height:53.633475px;}
.h5f{height:54.060688px;}
.h35{height:54.742920px;}
.h5a{height:56.230468px;}
.h42{height:57.471680px;}
.h28{height:58.304235px;}
.h43{height:58.500000px;}
.h71{height:59.250000px;}
.h48{height:60.750000px;}
.h1{height:61.154297px;}
.h6b{height:63.664320px;}
.h2d{height:64.599609px;}
.h69{height:65.250000px;}
.h2c{height:65.625000px;}
.h74{height:65.790000px;}
.h33{height:66.375000px;}
.h9{height:67.500000px;}
.h6c{height:67.875000px;}
.h83{height:68.519985px;}
.h85{height:68.933865px;}
.h31{height:69.000000px;}
.h7c{height:70.176000px;}
.ha{height:72.000000px;}
.h12{height:72.012000px;}
.h73{height:74.627910px;}
.h2a{height:74.642580px;}
.h6a{height:74.812305px;}
.h54{height:74.821290px;}
.h80{height:75.000000px;}
.h1c{height:75.378000px;}
.h27{height:75.426915px;}
.hc{height:76.500000px;}
.h4f{height:78.948000px;}
.h3d{height:79.207031px;}
.h90{height:79.500000px;}
.he{height:79.576172px;}
.h23{height:81.826172px;}
.h24{height:82.500000px;}
.h45{height:83.144531px;}
.h76{height:83.334000px;}
.h46{height:84.750000px;}
.h18{height:86.132812px;}
.h6e{height:86.674800px;}
.h17{height:87.128906px;}
.h7e{height:87.720000px;}
.h1a{height:88.476562px;}
.h67{height:89.003906px;}
.h84{height:91.500000px;}
.h4{height:91.757812px;}
.h78{height:92.106000px;}
.h75{height:93.752655px;}
.h49{height:94.746094px;}
.h1e{height:95.841797px;}
.h79{height:96.492000px;}
.h7f{height:96.774015px;}
.h77{height:98.498205px;}
.h19{height:98.700000px;}
.h1b{height:99.000000px;}
.h3a{height:99.879000px;}
.h64{height:100.400391px;}
.h70{height:100.500000px;}
.h11{height:100.691895px;}
.h63{height:101.029545px;}
.h65{height:101.748047px;}
.h8e{height:103.359375px;}
.h4b{height:103.680000px;}
.h8d{height:104.554688px;}
.h44{height:105.180000px;}
.h14{height:105.900000px;}
.h2f{height:106.680000px;}
.h21{height:107.666016px;}
.h20{height:108.911133px;}
.h37{height:110.015550px;}
.h1f{height:111.750000px;}
.h32{height:111.972656px;}
.h10{height:112.500000px;}
.h40{height:112.875000px;}
.h68{height:113.267578px;}
.h81{height:113.514540px;}
.h38{height:115.875000px;}
.h7d{height:116.287785px;}
.h47{height:117.375000px;}
.h13{height:119.443359px;}
.h8f{height:121.980469px;}
.h16{height:123.000000px;}
.h2e{height:124.798950px;}
.h3b{height:124.875000px;}
.h7a{height:128.330505px;}
.h3c{height:130.693359px;}
.h3{height:131.544000px;}
.h4a{height:133.020000px;}
.h39{height:135.474600px;}
.h25{height:137.812500px;}
.h1d{height:146.987372px;}
.h7{height:148.285200px;}
.h36{height:154.429650px;}
.h4e{height:156.115723px;}
.h6f{height:158.250000px;}
.h72{height:160.207031px;}
.h2{height:163.296000px;}
.h91{height:165.750000px;}
.h8{height:167.832000px;}
.hd{height:168.944250px;}
.hb{height:168.944400px;}
.h15{height:172.265625px;}
.h3f{height:174.257812px;}
.h6{height:174.339844px;}
.h86{height:182.303400px;}
.h51{height:197.370000px;}
.h50{height:201.318450px;}
.h6d{height:214.189650px;}
.h88{height:240.325800px;}
.h52{height:250.875000px;}
.h3e{height:259.500000px;}
.h5{height:284.816250px;}
.h92{height:289.262695px;}
.h57{height:324.750000px;}
.h5d{height:360.269850px;}
.h58{height:370.696500px;}
.h22{height:419.709900px;}
.h0{height:1152.000000px;}
.w5c{width:39.256350px;}
.w1f{width:51.000000px;}
.w3{width:51.340650px;}
.w49{width:58.500000px;}
.w16{width:58.500300px;}
.w2c{width:63.017985px;}
.wa{width:66.239475px;}
.we{width:69.506610px;}
.w5d{width:76.939455px;}
.w33{width:77.190405px;}
.w10{width:78.558405px;}
.wc{width:79.776975px;}
.w29{width:83.686500px;}
.wf{width:83.739555px;}
.w2{width:84.012165px;}
.w34{width:93.058950px;}
.wd{width:99.510480px;}
.w11{width:104.486805px;}
.w45{width:116.190405px;}
.w15{width:120.850815px;}
.w64{width:125.384550px;}
.w18{width:129.392580px;}
.w23{width:135.610845px;}
.w19{width:136.138320px;}
.w35{width:138.826260px;}
.wb{width:141.529065px;}
.w58{width:141.855105px;}
.w2b{width:142.925235px;}
.w5a{width:148.628910px;}
.w1a{width:154.567350px;}
.w4d{width:160.209300px;}
.w44{width:165.444300px;}
.w1e{width:167.020200px;}
.w4e{width:167.671650px;}
.w4{width:168.944250px;}
.w3a{width:176.880600px;}
.w3e{width:200.817000px;}
.w53{width:203.779650px;}
.w14{width:209.671800px;}
.w3b{width:216.836850px;}
.w4a{width:218.552100px;}
.w5b{width:219.065850px;}
.w24{width:228.648900px;}
.w4f{width:248.197800px;}
.w5{width:252.135000px;}
.w67{width:253.039800px;}
.w5e{width:259.019550px;}
.w22{width:264.467250px;}
.w12{width:266.956350px;}
.w59{width:281.378400px;}
.w13{width:281.812350px;}
.w50{width:281.860500px;}
.w65{width:288.777450px;}
.w3f{width:305.787900px;}
.w1c{width:306.184050px;}
.w54{width:317.808150px;}
.w27{width:327.221250px;}
.w62{width:336.925050px;}
.w28{width:337.721250px;}
.w40{width:340.112550px;}
.w8{width:344.014500px;}
.w9{width:348.400050px;}
.w2d{width:350.822400px;}
.w1{width:352.044450px;}
.w2a{width:354.200700px;}
.w55{width:366.421350px;}
.w57{width:370.275000px;}
.w51{width:388.616550px;}
.w52{width:389.339700px;}
.w38{width:390.307500px;}
.w39{width:390.345750px;}
.w4b{width:395.445600px;}
.w3d{width:400.078650px;}
.w56{width:403.059750px;}
.w66{width:409.584900px;}
.w63{width:483.211350px;}
.w69{width:485.399250px;}
.w47{width:487.821150px;}
.w3c{width:497.245650px;}
.w41{width:548.794950px;}
.w6{width:556.504650px;}
.w17{width:566.798250px;}
.w37{width:582.941250px;}
.w1d{width:600.394050px;}
.w6c{width:628.108950px;}
.w5f{width:726.746250px;}
.w36{width:728.264100px;}
.w60{width:731.488950px;}
.w25{width:743.865600px;}
.w30{width:774.440850px;}
.w2e{width:787.111050px;}
.w6b{width:845.694750px;}
.w43{width:855.253350px;}
.w32{width:872.506500px;}
.w31{width:888.143100px;}
.w7{width:958.900500px;}
.w21{width:1031.306550px;}
.w68{width:1090.352550px;}
.w26{width:1112.835600px;}
.w20{width:1262.925750px;}
.w46{width:1329.906450px;}
.w42{width:1362.889650px;}
.w61{width:1373.776050px;}
.w2f{width:1377.826950px;}
.w1b{width:1382.545200px;}
.w4c{width:1462.407000px;}
.w6a{width:1464.194850px;}
.w48{width:1468.983450px;}
.w0{width:1536.000000px;}
.x0{left:0.000000px;}
.x38{left:7.125000px;}
.x3d{left:9.078600px;}
.x49{left:10.712100px;}
.x35{left:13.346100px;}
.x41{left:14.799300px;}
.x39{left:16.524225px;}
.xcf{left:17.885550px;}
.x4f{left:19.175250px;}
.x2b{left:20.813250px;}
.x53{left:22.399800px;}
.x6{left:23.790240px;}
.x5f{left:25.707135px;}
.x106{left:26.832900px;}
.x73{left:27.836400px;}
.x68{left:29.378850px;}
.x9f{left:30.666900px;}
.xa0{left:32.692800px;}
.x17{left:33.814350px;}
.x20{left:35.478750px;}
.xe{left:36.814455px;}
.xdf{left:38.571765px;}
.xd7{left:40.359000px;}
.x62{left:42.033450px;}
.x77{left:45.027375px;}
.x2f{left:46.269900px;}
.x79{left:47.283225px;}
.x36{left:50.315460px;}
.xde{left:51.933225px;}
.x19{left:53.111700px;}
.x7e{left:54.714600px;}
.xd{left:56.223645px;}
.x1b{left:58.736700px;}
.x9b{left:60.770490px;}
.xf{left:62.314455px;}
.xf6{left:64.748925px;}
.x56{left:72.003300px;}
.x108{left:73.766550px;}
.x78{left:77.620125px;}
.x9c{left:79.086495px;}
.x95{left:81.356325px;}
.xcb{left:86.555145px;}
.x2c{left:88.078950px;}
.x8f{left:89.628150px;}
.x6c{left:91.599675px;}
.x60{left:93.099690px;}
.x103{left:96.510435px;}
.x9a{left:98.813160px;}
.x64{left:102.474690px;}
.xc0{left:104.645865px;}
.x114{left:107.230470px;}
.x102{left:110.165850px;}
.x118{left:111.603525px;}
.xca{left:113.329515px;}
.xc5{left:116.425155px;}
.xc1{left:118.475670px;}
.x87{left:124.558440px;}
.x5a{left:128.659860px;}
.x86{left:131.397420px;}
.x2e{left:132.863985px;}
.xc2{left:135.272295px;}
.x76{left:136.537125px;}
.x100{left:138.462855px;}
.x5e{left:145.118415px;}
.xe1{left:148.027380px;}
.xfa{left:149.946750px;}
.x24{left:152.378850px;}
.xe9{left:157.031100px;}
.x31{left:159.673350px;}
.x85{left:168.119250px;}
.x3{left:171.876000px;}
.x8b{left:177.946350px;}
.x34{left:182.306700px;}
.xf2{left:188.186250px;}
.x6f{left:190.457850px;}
.x6e{left:194.499000px;}
.x84{left:198.724350px;}
.x23{left:200.535600px;}
.xe0{left:205.579650px;}
.x2a{left:208.855350px;}
.xaf{left:212.340750px;}
.x88{left:215.195700px;}
.x71{left:217.519050px;}
.xdd{left:219.079650px;}
.x1e{left:225.454200px;}
.x97{left:234.603750px;}
.xf4{left:242.150400px;}
.xee{left:249.459000px;}
.x7b{left:252.346650px;}
.x1c{left:253.844700px;}
.x105{left:259.607700px;}
.xa3{left:264.583650px;}
.xec{left:284.731650px;}
.x33{left:288.549750px;}
.x59{left:289.611300px;}
.xa1{left:299.183550px;}
.x4{left:305.616750px;}
.x10a{left:314.618400px;}
.xa{left:316.533000px;}
.xb{left:323.251200px;}
.x7a{left:325.397400px;}
.xc{left:328.050000px;}
.x9{left:331.511100px;}
.xc6{left:332.799300px;}
.x112{left:334.569144px;}
.x111{left:336.211752px;}
.xed{left:337.438500px;}
.xcc{left:340.373250px;}
.x5c{left:343.989900px;}
.x10b{left:345.172800px;}
.x113{left:346.428161px;}
.xfe{left:347.451600px;}
.xf9{left:348.897150px;}
.x110{left:350.625799px;}
.xf5{left:353.405550px;}
.x7{left:358.938750px;}
.x90{left:363.004950px;}
.x99{left:364.360650px;}
.xd2{left:369.215100px;}
.x8c{left:372.379950px;}
.x1a{left:374.173350px;}
.xc3{left:383.493150px;}
.x26{left:389.458650px;}
.x27{left:392.886900px;}
.x92{left:395.871150px;}
.x8d{left:403.980150px;}
.x10f{left:412.238250px;}
.x25{left:414.993900px;}
.xff{left:416.188500px;}
.xf3{left:418.488615px;}
.xc4{left:424.420200px;}
.x115{left:428.658900px;}
.x10c{left:438.033900px;}
.xd0{left:443.608950px;}
.xb1{left:448.138200px;}
.x119{left:453.945600px;}
.xce{left:455.616450px;}
.xf0{left:459.615000px;}
.xcd{left:463.714950px;}
.x74{left:469.230450px;}
.xb0{left:471.435450px;}
.xbc{left:477.179308px;}
.x70{left:482.089950px;}
.x29{left:489.747750px;}
.xbe{left:504.047744px;}
.x117{left:505.573200px;}
.xbd{left:507.573395px;}
.xba{left:509.804314px;}
.x5d{left:513.849750px;}
.xb7{left:516.064540px;}
.xbb{left:517.452340px;}
.xa9{left:519.172200px;}
.x2{left:520.437000px;}
.xb8{left:523.547867px;}
.xbf{left:527.397133px;}
.xab{left:528.681600px;}
.x5b{left:532.437150px;}
.xb5{left:533.485701px;}
.x54{left:537.344850px;}
.xb3{left:540.831529px;}
.xb9{left:544.639482px;}
.x8e{left:547.489950px;}
.x11{left:550.695900px;}
.x82{left:552.644400px;}
.xb4{left:554.638635px;}
.x10{left:556.479150px;}
.xd1{left:558.214950px;}
.xb6{left:561.172513px;}
.x2d{left:567.666600px;}
.x81{left:569.041500px;}
.xea{left:572.529150px;}
.x5{left:576.845250px;}
.xeb{left:598.383600px;}
.xa6{left:603.075450px;}
.x9d{left:610.999650px;}
.xa5{left:615.082950px;}
.xa4{left:623.181600px;}
.x116{left:624.434700px;}
.x37{left:627.741150px;}
.x7d{left:635.766300px;}
.x15{left:644.192100px;}
.x22{left:654.087900px;}
.x83{left:667.378200px;}
.x28{left:677.868150px;}
.x12{left:686.341200px;}
.xac{left:687.969450px;}
.x104{left:689.764800px;}
.x7f{left:694.163700px;}
.x109{left:710.715450px;}
.xe2{left:712.331250px;}
.xa8{left:717.681600px;}
.x98{left:719.967150px;}
.x21{left:723.393900px;}
.xaa{left:728.181600px;}
.xe6{left:731.831250px;}
.x72{left:739.239900px;}
.x10d{left:741.734100px;}
.x1f{left:745.893900px;}
.xe3{left:751.331250px;}
.x107{left:761.118000px;}
.xad{left:766.978200px;}
.x93{left:781.126050px;}
.xc7{left:784.397700px;}
.xe7{left:799.772850px;}
.xa7{left:804.233550px;}
.xe5{left:809.397000px;}
.xfb{left:810.672750px;}
.xe8{left:820.822350px;}
.x32{left:824.320650px;}
.xfc{left:827.065050px;}
.x8{left:853.066050px;}
.xef{left:878.018700px;}
.x63{left:893.847600px;}
.x4a{left:896.360250px;}
.xe4{left:898.331250px;}
.x4e{left:904.432650px;}
.x10e{left:916.911150px;}
.x48{left:921.922800px;}
.x80{left:927.334800px;}
.x67{left:937.072800px;}
.x51{left:948.830550px;}
.x1d{left:965.258550px;}
.x89{left:966.311100px;}
.x46{left:973.047600px;}
.x4c{left:975.745050px;}
.x30{left:977.493150px;}
.xc9{left:988.959150px;}
.x4d{left:1008.027900px;}
.x65{left:1010.986500px;}
.x75{left:1015.534950px;}
.x8a{left:1025.326050px;}
.x94{left:1027.379700px;}
.x61{left:1029.458700px;}
.x69{left:1033.009500px;}
.xc8{left:1036.104600px;}
.x4b{left:1041.865500px;}
.x50{left:1053.771150px;}
.xd6{left:1057.446600px;}
.x66{left:1068.382650px;}
.x47{left:1075.297500px;}
.x7c{left:1079.742150px;}
.x55{left:1082.764650px;}
.x101{left:1089.311850px;}
.xd5{left:1101.573450px;}
.x52{left:1105.698000px;}
.xb2{left:1107.591300px;}
.xf1{left:1115.061750px;}
.xd4{left:1117.397550px;}
.xae{left:1127.715600px;}
.x96{left:1134.516450px;}
.x18{left:1162.737150px;}
.x91{left:1168.784250px;}
.xdb{left:1171.397550px;}
.x13{left:1177.580700px;}
.x14{left:1190.392950px;}
.x3f{left:1200.181950px;}
.xd8{left:1206.963300px;}
.xd3{left:1217.003700px;}
.x6a{left:1223.084400px;}
.x3e{left:1224.327150px;}
.x57{left:1234.118400px;}
.x3c{left:1241.665650px;}
.xfd{left:1244.417100px;}
.xf8{left:1246.610400px;}
.xf7{left:1252.821750px;}
.x45{left:1281.334950px;}
.xd9{left:1289.897550px;}
.xa2{left:1295.166900px;}
.x6d{left:1298.618400px;}
.xda{left:1309.397550px;}
.x40{left:1313.332650px;}
.x3a{left:1320.241500px;}
.x6b{left:1322.618400px;}
.x42{left:1326.122700px;}
.x9e{left:1354.118400px;}
.x16{left:1364.864850px;}
.xdc{left:1367.153100px;}
.x43{left:1382.427450px;}
.x44{left:1399.063050px;}
.x3b{left:1408.020600px;}
.x58{left:1461.500700px;}
.x1{left:1533.390000px;}
@media print{
.v6{vertical-align:-11.555557pt;}
.v9{vertical-align:-10.666667pt;}
.v5{vertical-align:-8.444443pt;}
.v2{vertical-align:-6.965280pt;}
.v8{vertical-align:-4.864029pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:13.045547pt;}
.v1{vertical-align:18.320315pt;}
.v4{vertical-align:28.081600pt;}
.v3{vertical-align:59.921067pt;}
.ls25{letter-spacing:-7.696000pt;}
.ls22{letter-spacing:-3.626667pt;}
.ls59{letter-spacing:-1.164800pt;}
.ls1d{letter-spacing:-1.120000pt;}
.lsd{letter-spacing:-1.026667pt;}
.ls17{letter-spacing:-0.871467pt;}
.ls1c{letter-spacing:-0.069333pt;}
.ls3b{letter-spacing:-0.066667pt;}
.ls46{letter-spacing:-0.058667pt;}
.ls42{letter-spacing:-0.055467pt;}
.lsc{letter-spacing:-0.053333pt;}
.ls55{letter-spacing:-0.051200pt;}
.ls18{letter-spacing:-0.050667pt;}
.ls44{letter-spacing:-0.049067pt;}
.ls49{letter-spacing:-0.042667pt;}
.ls5a{letter-spacing:-0.038400pt;}
.ls3c{letter-spacing:-0.037513pt;}
.lsb{letter-spacing:-0.035200pt;}
.ls6{letter-spacing:-0.028800pt;}
.ls2f{letter-spacing:-0.026667pt;}
.ls56{letter-spacing:-0.025600pt;}
.ls40{letter-spacing:-0.024533pt;}
.ls51{letter-spacing:-0.024320pt;}
.ls45{letter-spacing:-0.021333pt;}
.ls7{letter-spacing:-0.018133pt;}
.ls47{letter-spacing:-0.013333pt;}
.ls58{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000027pt;}
.ls5{letter-spacing:0.000373pt;}
.ls12{letter-spacing:0.004747pt;}
.ls1f{letter-spacing:0.004960pt;}
.ls4d{letter-spacing:0.005867pt;}
.ls34{letter-spacing:0.006240pt;}
.ls4c{letter-spacing:0.006293pt;}
.ls33{letter-spacing:0.006400pt;}
.ls53{letter-spacing:0.009499pt;}
.ls10{letter-spacing:0.010133pt;}
.ls50{letter-spacing:0.010224pt;}
.ls2{letter-spacing:0.010667pt;}
.ls3e{letter-spacing:0.011032pt;}
.ls4f{letter-spacing:0.011456pt;}
.ls52{letter-spacing:0.012800pt;}
.lse{letter-spacing:0.013333pt;}
.ls1b{letter-spacing:0.013867pt;}
.ls0{letter-spacing:0.014933pt;}
.ls37{letter-spacing:0.015770pt;}
.ls14{letter-spacing:0.016000pt;}
.ls39{letter-spacing:0.016857pt;}
.ls2e{letter-spacing:0.017067pt;}
.ls2d{letter-spacing:0.017173pt;}
.ls4e{letter-spacing:0.017432pt;}
.ls36{letter-spacing:0.017671pt;}
.ls15{letter-spacing:0.017778pt;}
.ls3a{letter-spacing:0.017789pt;}
.ls19{letter-spacing:0.018133pt;}
.lsa{letter-spacing:0.019200pt;}
.ls16{letter-spacing:0.020267pt;}
.ls11{letter-spacing:0.020587pt;}
.ls20{letter-spacing:0.021333pt;}
.ls1e{letter-spacing:0.021653pt;}
.ls48{letter-spacing:0.023467pt;}
.ls41{letter-spacing:0.024533pt;}
.ls38{letter-spacing:0.025497pt;}
.ls54{letter-spacing:0.025600pt;}
.ls29{letter-spacing:0.026123pt;}
.lsf{letter-spacing:0.026667pt;}
.ls35{letter-spacing:0.026888pt;}
.ls4b{letter-spacing:0.027093pt;}
.ls1a{letter-spacing:0.027733pt;}
.ls4{letter-spacing:0.028800pt;}
.ls9{letter-spacing:0.032000pt;}
.ls30{letter-spacing:0.033333pt;}
.ls26{letter-spacing:0.035200pt;}
.ls4a{letter-spacing:0.038400pt;}
.ls32{letter-spacing:0.039467pt;}
.ls31{letter-spacing:0.039573pt;}
.ls27{letter-spacing:0.040000pt;}
.ls28{letter-spacing:0.040533pt;}
.ls8{letter-spacing:0.042667pt;}
.ls2a{letter-spacing:0.048000pt;}
.ls24{letter-spacing:0.053333pt;}
.ls3f{letter-spacing:0.055467pt;}
.ls3{letter-spacing:0.057600pt;}
.ls57{letter-spacing:0.059733pt;}
.ls3d{letter-spacing:0.061867pt;}
.ls21{letter-spacing:0.066667pt;}
.ls43{letter-spacing:0.069333pt;}
.ls23{letter-spacing:0.085333pt;}
.ls2b{letter-spacing:43.719947pt;}
.ls2c{letter-spacing:43.720000pt;}
.ws2f{word-spacing:-53.376000pt;}
.ws1d{word-spacing:-48.298667pt;}
.ws6{word-spacing:-48.213333pt;}
.ws8{word-spacing:-43.372800pt;}
.ws24{word-spacing:-31.408000pt;}
.ws25{word-spacing:-31.394133pt;}
.ws14{word-spacing:-31.366400pt;}
.ws18{word-spacing:-31.338667pt;}
.ws17{word-spacing:-31.269333pt;}
.ws28{word-spacing:-31.136000pt;}
.ws20{word-spacing:-30.186667pt;}
.ws1f{word-spacing:-30.173333pt;}
.ws2a{word-spacing:-30.160000pt;}
.ws21{word-spacing:-30.146667pt;}
.ws16{word-spacing:-30.133333pt;}
.ws29{word-spacing:-30.106667pt;}
.wsa{word-spacing:-30.080000pt;}
.wsb{word-spacing:-29.106667pt;}
.ws19{word-spacing:-29.013333pt;}
.ws2d{word-spacing:-28.902400pt;}
.ws2c{word-spacing:-28.876800pt;}
.ws4{word-spacing:-26.909867pt;}
.ws1e{word-spacing:-26.552533pt;}
.ws26{word-spacing:-26.540800pt;}
.ws9{word-spacing:-26.517333pt;}
.ws3{word-spacing:-25.205333pt;}
.ws7{word-spacing:-24.149333pt;}
.ws1a{word-spacing:-24.128000pt;}
.ws1c{word-spacing:-24.106667pt;}
.ws27{word-spacing:-24.064000pt;}
.ws2{word-spacing:-23.722667pt;}
.wse{word-spacing:-22.921600pt;}
.ws10{word-spacing:-22.911467pt;}
.ws12{word-spacing:-22.850667pt;}
.ws11{word-spacing:-22.029867pt;}
.ws15{word-spacing:-20.892440pt;}
.wsd{word-spacing:-20.106671pt;}
.wsc{word-spacing:-20.088893pt;}
.ws2e{word-spacing:-19.285333pt;}
.ws13{word-spacing:-18.096000pt;}
.ws5{word-spacing:-16.803551pt;}
.ws1b{word-spacing:-16.071107pt;}
.wsf{word-spacing:-15.267560pt;}
.ws1{word-spacing:-14.826667pt;}
.ws22{word-spacing:-11.929279pt;}
.ws23{word-spacing:-11.468960pt;}
.ws2b{word-spacing:-7.733853pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-2711.713440pt;}
._10{margin-left:-18.901333pt;}
._6{margin-left:-17.679829pt;}
._11{margin-left:-16.597333pt;}
._f{margin-left:-10.826667pt;}
._d{margin-left:-9.363200pt;}
._1{margin-left:-7.424000pt;}
._e{margin-left:-5.984000pt;}
._b{margin-left:-4.656363pt;}
._0{margin-left:-3.456000pt;}
._2{margin-left:-2.112000pt;}
._3{margin-left:-0.960171pt;}
._7{width:1.365333pt;}
._a{width:3.027147pt;}
._5{width:4.002667pt;}
._c{width:7.696000pt;}
._4{width:1763.077867pt;}
._8{width:2012.065653pt;}
.fs2d{font-size:15.808187pt;}
.fs25{font-size:23.442836pt;}
.fs2c{font-size:24.320294pt;}
.fs2b{font-size:24.320639pt;}
.fs20{font-size:24.383741pt;}
.fs24{font-size:36.065912pt;}
.fs23{font-size:36.066416pt;}
.fs29{font-size:36.462720pt;}
.fs1f{font-size:37.513456pt;}
.fs1e{font-size:37.513988pt;}
.fs2a{font-size:42.650232pt;}
.fs26{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs21{font-size:54.072594pt;}
.fs1c{font-size:56.242850pt;}
.fse{font-size:60.444427pt;}
.fs22{font-size:63.248380pt;}
.fs1d{font-size:65.786917pt;}
.fs13{font-size:67.555573pt;}
.fs19{font-size:69.333333pt;}
.fs17{font-size:71.111093pt;}
.fs0{font-size:74.666667pt;}
.fs7{font-size:80.000000pt;}
.fs9{font-size:85.333333pt;}
.fs11{font-size:88.888907pt;}
.fsa{font-size:90.666667pt;}
.fs16{font-size:92.444427pt;}
.fsb{font-size:96.000000pt;}
.fs12{font-size:101.333333pt;}
.fs3{font-size:106.666667pt;}
.fs28{font-size:112.000000pt;}
.fs10{font-size:117.333333pt;}
.fs27{font-size:122.666667pt;}
.fs2e{font-size:128.000000pt;}
.fsc{font-size:133.333333pt;}
.fs15{font-size:138.666667pt;}
.fsd{font-size:144.000000pt;}
.fs2f{font-size:149.333333pt;}
.fs2{font-size:154.666667pt;}
.fs18{font-size:160.000000pt;}
.fs14{font-size:170.666667pt;}
.fs1{font-size:192.000000pt;}
.fs1a{font-size:193.333333pt;}
.fs5{font-size:202.666667pt;}
.fsf{font-size:213.333333pt;}
.fs6{font-size:224.000000pt;}
.fs1b{font-size:240.000000pt;}
.fs4{font-size:331.093333pt;}
.fs30{font-size:346.666667pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:0.186133pt;}
.y1a1{bottom:2.170411pt;}
.y77{bottom:2.546667pt;}
.y57{bottom:2.557200pt;}
.y5a{bottom:2.557333pt;}
.y1bb{bottom:2.852867pt;}
.y87{bottom:2.852933pt;}
.ydb{bottom:3.117200pt;}
.ydd{bottom:3.117333pt;}
.y1b5{bottom:4.186133pt;}
.y7d{bottom:4.186267pt;}
.y194{bottom:4.221387pt;}
.y198{bottom:4.221400pt;}
.y36{bottom:4.285413pt;}
.y1{bottom:5.686032pt;}
.y199{bottom:5.911235pt;}
.y175{bottom:6.828120pt;}
.y8e{bottom:7.333333pt;}
.y16e{bottom:8.000000pt;}
.y19c{bottom:8.339925pt;}
.y19e{bottom:9.067627pt;}
.yb0{bottom:9.319600pt;}
.ya4{bottom:9.319667pt;}
.ya6{bottom:9.319733pt;}
.yf2{bottom:9.382019pt;}
.y6f{bottom:10.084133pt;}
.ycd{bottom:10.879867pt;}
.y19d{bottom:11.381261pt;}
.y1a0{bottom:11.381267pt;}
.yd4{bottom:11.519467pt;}
.ycb{bottom:11.519533pt;}
.y13e{bottom:11.731733pt;}
.yf1{bottom:11.731760pt;}
.yf3{bottom:11.731768pt;}
.yfb{bottom:11.731771pt;}
.yf7{bottom:11.731773pt;}
.y6b{bottom:11.731867pt;}
.yf5{bottom:11.883960pt;}
.y140{bottom:11.884000pt;}
.y65{bottom:11.908267pt;}
.yfa{bottom:11.948709pt;}
.y5{bottom:12.265625pt;}
.y5e{bottom:12.270133pt;}
.y70{bottom:12.798893pt;}
.y12e{bottom:12.799600pt;}
.y182{bottom:13.922667pt;}
.y75{bottom:14.414133pt;}
.y18d{bottom:14.492267pt;}
.y1c4{bottom:14.527067pt;}
.y89{bottom:15.513200pt;}
.y1d{bottom:15.578933pt;}
.y1b{bottom:15.578987pt;}
.y188{bottom:15.612533pt;}
.y12c{bottom:15.715067pt;}
.y133{bottom:15.715200pt;}
.y185{bottom:16.107600pt;}
.y60{bottom:18.383200pt;}
.ya3{bottom:20.022827pt;}
.y15f{bottom:20.481067pt;}
.y14b{bottom:20.481200pt;}
.y109{bottom:20.569987pt;}
.y1bd{bottom:20.740800pt;}
.ya8{bottom:21.140533pt;}
.yae{bottom:21.140667pt;}
.y3f{bottom:21.152827pt;}
.y19{bottom:22.223467pt;}
.y1a7{bottom:23.039067pt;}
.y85{bottom:24.023333pt;}
.y138{bottom:24.023427pt;}
.y95{bottom:24.023440pt;}
.y44{bottom:24.023467pt;}
.y1c2{bottom:24.420800pt;}
.y7f{bottom:24.984400pt;}
.y13c{bottom:25.057067pt;}
.y190{bottom:25.793467pt;}
.y53{bottom:26.333333pt;}
.y1f5{bottom:26.906267pt;}
.y1a3{bottom:28.120563pt;}
.y19b{bottom:28.120565pt;}
.yca{bottom:28.218013pt;}
.y18b{bottom:28.819467pt;}
.yc3{bottom:28.828120pt;}
.y55{bottom:30.750000pt;}
.y9d{bottom:31.132973pt;}
.y16b{bottom:31.414267pt;}
.ye6{bottom:31.934800pt;}
.y10{bottom:32.210400pt;}
.y19f{bottom:35.381267pt;}
.y24{bottom:35.877200pt;}
.y22{bottom:35.877333pt;}
.ye1{bottom:36.254520pt;}
.y174{bottom:37.173827pt;}
.y18{bottom:37.210400pt;}
.y181{bottom:37.922667pt;}
.yf0{bottom:38.398427pt;}
.y6a{bottom:38.398533pt;}
.y74{bottom:38.414133pt;}
.y31{bottom:38.437467pt;}
.ya1{bottom:38.437600pt;}
.y5d{bottom:38.936800pt;}
.y1da{bottom:40.872880pt;}
.yd1{bottom:40.939213pt;}
.y1ff{bottom:41.598267pt;}
.y96{bottom:42.623693pt;}
.yf{bottom:44.905733pt;}
.y1fa{bottom:45.659667pt;}
.yf8{bottom:46.688867pt;}
.y184{bottom:46.774267pt;}
.y1ba{bottom:47.344133pt;}
.y192{bottom:49.898680pt;}
.y196{bottom:49.898707pt;}
.y108{bottom:49.903320pt;}
.y34{bottom:51.218693pt;}
.y187{bottom:51.431333pt;}
.yc2{bottom:51.710960pt;}
.y12b{bottom:51.715067pt;}
.y132{bottom:51.715200pt;}
.y1d7{bottom:51.774474pt;}
.y1e3{bottom:54.518960pt;}
.y1c1{bottom:56.420800pt;}
.y52{bottom:57.000000pt;}
.y18f{bottom:57.793467pt;}
.y1d6{bottom:59.374681pt;}
.y1a2{bottom:60.120563pt;}
.y19a{bottom:60.120565pt;}
.ydf{bottom:60.680907pt;}
.y18a{bottom:62.292933pt;}
.yef{bottom:62.333720pt;}
.y9{bottom:64.668800pt;}
.y84{bottom:65.356667pt;}
.y137{bottom:65.356720pt;}
.ye0{bottom:65.356773pt;}
.y94{bottom:65.356787pt;}
.y43{bottom:65.356800pt;}
.y1cc{bottom:65.893819pt;}
.y3b{bottom:71.316493pt;}
.y1d9{bottom:72.872880pt;}
.y139{bottom:73.768373pt;}
.yf4{bottom:74.761373pt;}
.y1f{bottom:78.953933pt;}
.y123{bottom:79.015388pt;}
.y124{bottom:79.178707pt;}
.y117{bottom:79.860827pt;}
.yd0{bottom:82.272547pt;}
.yed{bottom:82.690133pt;}
.y33{bottom:83.218693pt;}
.y93{bottom:85.211480pt;}
.y16a{bottom:86.080933pt;}
.y1b9{bottom:86.896400pt;}
.y51{bottom:87.666667pt;}
.y1c0{bottom:88.420800pt;}
.y122{bottom:90.286178pt;}
.y116{bottom:91.583961pt;}
.y32{bottom:91.650773pt;}
.y191{bottom:92.369187pt;}
.y1e2{bottom:93.185627pt;}
.y195{bottom:94.126360pt;}
.y173{bottom:94.668613pt;}
.y20{bottom:96.532307pt;}
.y99{bottom:99.937333pt;}
.y1ad{bottom:99.996413pt;}
.y10c{bottom:101.639570pt;}
.yc8{bottom:101.765907pt;}
.y79{bottom:102.932400pt;}
.y193{bottom:103.379867pt;}
.y1d5{bottom:103.563643pt;}
.ya0{bottom:103.770933pt;}
.ye5{bottom:103.934800pt;}
.y10a{bottom:104.077013pt;}
.y1d8{bottom:104.872880pt;}
.y197{bottom:105.137040pt;}
.y136{bottom:105.719813pt;}
.y35{bottom:106.584107pt;}
.y172{bottom:106.690000pt;}
.yac{bottom:109.650560pt;}
.y1d4{bottom:111.163727pt;}
.yf9{bottom:115.640000pt;}
.yf6{bottom:118.144587pt;}
.y50{bottom:118.333333pt;}
.y1a{bottom:118.638747pt;}
.y1d3{bottom:118.763812pt;}
.y1bf{bottom:120.420800pt;}
.ycf{bottom:123.605880pt;}
.y1d2{bottom:126.363926pt;}
.y1b8{bottom:128.229733pt;}
.y101{bottom:130.690133pt;}
.y1e1{bottom:131.852293pt;}
.y1d1{bottom:133.964041pt;}
.y169{bottom:140.747600pt;}
.yec{bottom:141.356800pt;}
.y11a{bottom:141.488876pt;}
.yee{bottom:141.579200pt;}
.y168{bottom:145.596667pt;}
.y4f{bottom:149.000000pt;}
.yc7{bottom:149.765867pt;}
.y107{bottom:150.232533pt;}
.y1c{bottom:150.386667pt;}
.yab{bottom:150.983867pt;}
.y115{bottom:159.744349pt;}
.y126{bottom:160.389600pt;}
.yea{bottom:163.037333pt;}
.y1d0{bottom:166.417706pt;}
.yce{bottom:168.200667pt;}
.y9f{bottom:169.104267pt;}
.y1b7{bottom:169.563067pt;}
.y1e0{bottom:170.518933pt;}
.y114{bottom:171.467292pt;}
.y100{bottom:172.023467pt;}
.y18e{bottom:172.950400pt;}
.y1cf{bottom:174.017790pt;}
.y183{bottom:174.672000pt;}
.y121{bottom:175.090933pt;}
.y1de{bottom:178.088533pt;}
.yaf{bottom:179.488400pt;}
.y4e{bottom:179.666667pt;}
.yfc{bottom:179.877733pt;}
.y1ce{bottom:181.617874pt;}
.yeb{bottom:182.690133pt;}
.y113{bottom:183.190235pt;}
.y1f9{bottom:184.121067pt;}
.y120{bottom:186.361536pt;}
.y1cd{bottom:189.218020pt;}
.y106{bottom:191.565867pt;}
.yaa{bottom:192.317200pt;}
.yd9{bottom:192.880000pt;}
.y112{bottom:194.913225pt;}
.y83{bottom:195.566533pt;}
.yc6{bottom:197.765867pt;}
.y7a{bottom:199.380400pt;}
.y189{bottom:203.833467pt;}
.y98{bottom:205.008667pt;}
.y111{bottom:206.636216pt;}
.y1df{bottom:209.185600pt;}
.y4d{bottom:210.333333pt;}
.y1b6{bottom:210.896400pt;}
.y135{bottom:211.707733pt;}
.yff{bottom:213.356800pt;}
.y186{bottom:216.702000pt;}
.y8b{bottom:219.589867pt;}
.y1cb{bottom:225.538317pt;}
.y1ac{bottom:230.612400pt;}
.y1dd{bottom:231.421867pt;}
.yd8{bottom:234.213333pt;}
.y4c{bottom:241.000000pt;}
.y11f{bottom:241.216870pt;}
.y97{bottom:246.342000pt;}
.y11e{bottom:252.487473pt;}
.yfe{bottom:254.690133pt;}
.y110{bottom:256.695196pt;}
.y105{bottom:256.899200pt;}
.ybd{bottom:260.287733pt;}
.y8a{bottom:260.923200pt;}
.y11d{bottom:263.758030pt;}
.y180{bottom:264.122133pt;}
.y10f{bottom:268.418139pt;}
.y4b{bottom:271.666667pt;}
.yd7{bottom:272.285200pt;}
.y1fb{bottom:272.709600pt;}
.y16{bottom:273.366000pt;}
.y11c{bottom:275.028634pt;}
.y129{bottom:277.264000pt;}
.y1c3{bottom:279.770533pt;}
.y10e{bottom:280.141082pt;}
.y11b{bottom:286.299284pt;}
.y18c{bottom:291.133200pt;}
.y10d{bottom:291.864120pt;}
.y4{bottom:292.256533pt;}
.ye3{bottom:293.875733pt;}
.y104{bottom:298.232533pt;}
.y163{bottom:298.383600pt;}
.y9a{bottom:301.398133pt;}
.ybc{bottom:301.621067pt;}
.y7c{bottom:301.657333pt;}
.y1e9{bottom:301.845867pt;}
.y48{bottom:301.947600pt;}
.y4a{bottom:302.333333pt;}
.y170{bottom:303.659600pt;}
.y128{bottom:303.930667pt;}
.y8c{bottom:310.990667pt;}
.yd3{bottom:314.980533pt;}
.ya9{bottom:318.860400pt;}
.y162{bottom:325.302800pt;}
.y1be{bottom:329.298533pt;}
.y127{bottom:330.696933pt;}
.y49{bottom:333.000000pt;}
.yd6{bottom:334.213333pt;}
.y119{bottom:336.699409pt;}
.y103{bottom:339.565867pt;}
.y1e8{bottom:340.512533pt;}
.ybb{bottom:342.954400pt;}
.y88{bottom:343.317067pt;}
.y3{bottom:345.589867pt;}
.y10b{bottom:347.887285pt;}
.ycc{bottom:356.524267pt;}
.y2a{bottom:358.828400pt;}
.y1fc{bottom:361.265333pt;}
.yd5{bottom:372.285200pt;}
.y1e7{bottom:379.179200pt;}
.y171{bottom:380.352667pt;}
.y102{bottom:380.899200pt;}
.y40{bottom:387.427333pt;}
.yc4{bottom:390.933600pt;}
.y9e{bottom:394.796133pt;}
.yc5{bottom:397.549467pt;}
.ye7{bottom:398.631467pt;}
.y134{bottom:400.146933pt;}
.y29{bottom:400.161733pt;}
.y2{bottom:402.339200pt;}
.y1bc{bottom:403.322667pt;}
.y71{bottom:412.564800pt;}
.y8d{bottom:413.197200pt;}
.y16d{bottom:416.078000pt;}
.y15{bottom:420.172400pt;}
.y1dc{bottom:420.562800pt;}
.ye4{bottom:421.685067pt;}
.yde{bottom:426.486400pt;}
.y90{bottom:430.332667pt;}
.y42{bottom:430.708800pt;}
.y8f{bottom:432.936800pt;}
.y73{bottom:433.181067pt;}
.ya5{bottom:436.810133pt;}
.y1fe{bottom:438.333333pt;}
.y14{bottom:446.839067pt;}
.y1f8{bottom:449.821200pt;}
.y131{bottom:457.381333pt;}
.y12a{bottom:457.381467pt;}
.y1af{bottom:458.293333pt;}
.y21{bottom:460.216267pt;}
.yad{bottom:461.483200pt;}
.y1db{bottom:461.896133pt;}
.y12d{bottom:464.802933pt;}
.y1c5{bottom:466.167200pt;}
.y1ef{bottom:471.839467pt;}
.y1f7{bottom:488.487867pt;}
.y1b4{bottom:498.111467pt;}
.y1ae{bottom:499.626667pt;}
.y1ee{bottom:510.506133pt;}
.y130{bottom:511.327067pt;}
.yc0{bottom:517.598800pt;}
.y92{bottom:518.337733pt;}
.y1b3{bottom:520.794933pt;}
.y125{bottom:524.288933pt;}
.y78{bottom:525.097733pt;}
.y1f6{bottom:527.154533pt;}
.y118{bottom:535.546667pt;}
.yfd{bottom:535.845067pt;}
.y17f{bottom:536.124533pt;}
.y91{bottom:541.056267pt;}
.y3d{bottom:548.848400pt;}
.y1ed{bottom:549.172800pt;}
.yb3{bottom:551.212000pt;}
.ydc{bottom:551.957333pt;}
.ybf{bottom:558.932133pt;}
.y1ca{bottom:563.032800pt;}
.y17e{bottom:565.457867pt;}
.y16f{bottom:567.207467pt;}
.y1aa{bottom:571.415067pt;}
.y28{bottom:571.549200pt;}
.y12f{bottom:575.199600pt;}
.y1ab{bottom:576.126133pt;}
.y1ec{bottom:587.839467pt;}
.yb6{bottom:591.574400pt;}
.yb2{bottom:592.545333pt;}
.y1f4{bottom:593.503467pt;}
.y17d{bottom:594.791200pt;}
.y17{bottom:596.948000pt;}
.ybe{bottom:600.265467pt;}
.y1c9{bottom:600.346800pt;}
.y27{bottom:612.882533pt;}
.y7{bottom:617.767200pt;}
.y167{bottom:620.836933pt;}
.y17c{bottom:624.124533pt;}
.y1eb{bottom:626.506133pt;}
.yb5{bottom:632.907733pt;}
.y1a8{bottom:632.980000pt;}
.yb1{bottom:633.878667pt;}
.y178{bottom:637.109067pt;}
.y1a9{bottom:637.927467pt;}
.y1c8{bottom:641.680133pt;}
.y2f{bottom:647.118800pt;}
.y14e{bottom:648.141867pt;}
.ye{bottom:654.430533pt;}
.y3e{bottom:658.201600pt;}
.y54{bottom:660.760400pt;}
.y13d{bottom:661.102133pt;}
.y14a{bottom:662.646400pt;}
.y144{bottom:663.668800pt;}
.y1ea{bottom:665.172800pt;}
.y157{bottom:670.435467pt;}
.y158{bottom:671.768800pt;}
.y2e{bottom:673.785467pt;}
.yb4{bottom:674.241067pt;}
.y146{bottom:680.729067pt;}
.y17b{bottom:682.042400pt;}
.y3a{bottom:684.196533pt;}
.y161{bottom:685.664000pt;}
.y156{bottom:690.832267pt;}
.y15c{bottom:696.000933pt;}
.y142{bottom:698.408933pt;}
.y14d{bottom:699.792533pt;}
.y2d{bottom:700.551733pt;}
.y152{bottom:701.102133pt;}
.y1a6{bottom:703.182533pt;}
.yc1{bottom:704.685467pt;}
.y81{bottom:708.992267pt;}
.yb{bottom:709.390667pt;}
.y166{bottom:713.414667pt;}
.y17a{bottom:714.042400pt;}
.y13b{bottom:714.061867pt;}
.y6{bottom:715.218400pt;}
.y76{bottom:720.833867pt;}
.y151{bottom:725.629200pt;}
.y154{bottom:726.534133pt;}
.ya7{bottom:727.934400pt;}
.y15b{bottom:731.702667pt;}
.ya{bottom:732.057333pt;}
.y149{bottom:735.494400pt;}
.y147{bottom:736.827733pt;}
.y160{bottom:742.576800pt;}
.y15a{bottom:745.048933pt;}
.y39{bottom:745.529867pt;}
.y179{bottom:746.042400pt;}
.y7e{bottom:747.905600pt;}
.yba{bottom:750.716133pt;}
.y1f3{bottom:754.487867pt;}
.y165{bottom:754.748000pt;}
.y159{bottom:755.526000pt;}
.y1e6{bottom:757.833067pt;}
.y13{bottom:765.771467pt;}
.y143{bottom:767.360133pt;}
.y2c{bottom:769.315733pt;}
.y141{bottom:769.864667pt;}
.y15d{bottom:770.927867pt;}
.y63{bottom:775.121600pt;}
.y155{bottom:777.299333pt;}
.y6c{bottom:778.067733pt;}
.y38{bottom:778.270000pt;}
.y153{bottom:778.632667pt;}
.y26{bottom:778.936667pt;}
.y14c{bottom:780.504000pt;}
.y5f{bottom:781.251600pt;}
.y15e{bottom:781.312000pt;}
.y150{bottom:782.632667pt;}
.y1b2{bottom:784.638000pt;}
.y47{bottom:785.244800pt;}
.yb9{bottom:792.049467pt;}
.y148{bottom:792.926267pt;}
.y1f2{bottom:793.154533pt;}
.y13a{bottom:793.299333pt;}
.y164{bottom:796.081333pt;}
.y1e5{bottom:796.499733pt;}
.y67{bottom:797.660133pt;}
.y6e{bottom:798.076533pt;}
.ya2{bottom:802.957333pt;}
.y1a5{bottom:804.293333pt;}
.y145{bottom:804.926267pt;}
.yda{bottom:806.535733pt;}
.y2b{bottom:807.982400pt;}
.y8{bottom:808.237333pt;}
.y80{bottom:808.393600pt;}
.y13f{bottom:812.171867pt;}
.y1c7{bottom:812.445333pt;}
.y12{bottom:813.063333pt;}
.y59{bottom:814.733867pt;}
.yd{bottom:817.063333pt;}
.y14f{bottom:817.884533pt;}
.y37{bottom:819.603333pt;}
.y25{bottom:820.270000pt;}
.y62{bottom:821.202667pt;}
.y69{bottom:823.542800pt;}
.y1b1{bottom:825.971333pt;}
.y46{bottom:826.578133pt;}
.y82{bottom:827.500533pt;}
.y5c{bottom:830.589333pt;}
.ye2{bottom:831.500533pt;}
.y1f1{bottom:831.821200pt;}
.yb8{bottom:833.382800pt;}
.y1e4{bottom:835.166400pt;}
.y66{bottom:836.948267pt;}
.y11{bottom:838.396667pt;}
.yc{bottom:842.396667pt;}
.y3c{bottom:843.515733pt;}
.y1a4{bottom:845.626667pt;}
.y1c6{bottom:853.778667pt;}
.y58{bottom:855.119733pt;}
.ye8{bottom:855.548533pt;}
.y9b{bottom:861.152400pt;}
.y177{bottom:862.871867pt;}
.yd2{bottom:863.500533pt;}
.y1b0{bottom:867.304667pt;}
.y45{bottom:867.911467pt;}
.y1f0{bottom:870.487867pt;}
.y6d{bottom:876.719200pt;}
.y86{bottom:877.535600pt;}
.y23{bottom:881.118667pt;}
.y9c{bottom:882.167200pt;}
.y68{bottom:882.316933pt;}
.y176{bottom:886.234933pt;}
.y61{bottom:895.118800pt;}
.y64{bottom:895.828667pt;}
.y41{bottom:896.050267pt;}
.y16c{bottom:897.426533pt;}
.y5b{bottom:898.782000pt;}
.ye9{bottom:901.312800pt;}
.y56{bottom:915.042800pt;}
.y7b{bottom:927.840000pt;}
.y30{bottom:928.533333pt;}
.yb7{bottom:929.173333pt;}
.yc9{bottom:930.506667pt;}
.y1fd{bottom:938.372400pt;}
.y1e{bottom:951.775067pt;}
.h8c{height:18.477723pt;}
.h8b{height:18.477986pt;}
.h26{height:24.000000pt;}
.h34{height:26.666667pt;}
.h61{height:27.401640pt;}
.h60{height:27.402023pt;}
.h89{height:27.703122pt;}
.h30{height:28.000000pt;}
.h5c{height:28.501434pt;}
.h5b{height:28.501839pt;}
.h41{height:32.000000pt;}
.h8a{height:32.404180pt;}
.h62{height:34.945312pt;}
.h82{height:36.479987pt;}
.h4d{height:38.000000pt;}
.h53{height:39.682293pt;}
.h55{height:39.841147pt;}
.h56{height:39.893720pt;}
.h29{height:40.017640pt;}
.h5e{height:41.082498pt;}
.h4c{height:41.333333pt;}
.h59{height:42.731384pt;}
.h2b{height:44.612707pt;}
.h7b{height:45.244293pt;}
.h66{height:45.333333pt;}
.hf{height:45.636227pt;}
.h87{height:47.674200pt;}
.h5f{height:48.053945pt;}
.h35{height:48.660373pt;}
.h5a{height:49.982638pt;}
.h42{height:51.085938pt;}
.h28{height:51.825987pt;}
.h43{height:52.000000pt;}
.h71{height:52.666667pt;}
.h48{height:54.000000pt;}
.h1{height:54.359375pt;}
.h6b{height:56.590507pt;}
.h2d{height:57.421875pt;}
.h69{height:58.000000pt;}
.h2c{height:58.333333pt;}
.h74{height:58.480000pt;}
.h33{height:59.000000pt;}
.h9{height:60.000000pt;}
.h6c{height:60.333333pt;}
.h83{height:60.906653pt;}
.h85{height:61.274547pt;}
.h31{height:61.333333pt;}
.h7c{height:62.378667pt;}
.ha{height:64.000000pt;}
.h12{height:64.010667pt;}
.h73{height:66.335920pt;}
.h2a{height:66.348960pt;}
.h6a{height:66.499827pt;}
.h54{height:66.507813pt;}
.h80{height:66.666667pt;}
.h1c{height:67.002667pt;}
.h27{height:67.046147pt;}
.hc{height:68.000000pt;}
.h4f{height:70.176000pt;}
.h3d{height:70.406250pt;}
.h90{height:70.666667pt;}
.he{height:70.734375pt;}
.h23{height:72.734375pt;}
.h24{height:73.333333pt;}
.h45{height:73.906250pt;}
.h76{height:74.074667pt;}
.h46{height:75.333333pt;}
.h18{height:76.562500pt;}
.h6e{height:77.044267pt;}
.h17{height:77.447917pt;}
.h7e{height:77.973333pt;}
.h1a{height:78.645833pt;}
.h67{height:79.114583pt;}
.h84{height:81.333333pt;}
.h4{height:81.562500pt;}
.h78{height:81.872000pt;}
.h75{height:83.335693pt;}
.h49{height:84.218750pt;}
.h1e{height:85.192708pt;}
.h79{height:85.770667pt;}
.h7f{height:86.021347pt;}
.h77{height:87.553960pt;}
.h19{height:87.733333pt;}
.h1b{height:88.000000pt;}
.h3a{height:88.781333pt;}
.h64{height:89.244792pt;}
.h70{height:89.333333pt;}
.h11{height:89.503907pt;}
.h63{height:89.804040pt;}
.h65{height:90.442708pt;}
.h8e{height:91.875000pt;}
.h4b{height:92.160000pt;}
.h8d{height:92.937500pt;}
.h44{height:93.493333pt;}
.h14{height:94.133333pt;}
.h2f{height:94.826667pt;}
.h21{height:95.703125pt;}
.h20{height:96.809896pt;}
.h37{height:97.791600pt;}
.h1f{height:99.333333pt;}
.h32{height:99.531250pt;}
.h10{height:100.000000pt;}
.h40{height:100.333333pt;}
.h68{height:100.682292pt;}
.h81{height:100.901813pt;}
.h38{height:103.000000pt;}
.h7d{height:103.366920pt;}
.h47{height:104.333333pt;}
.h13{height:106.171875pt;}
.h8f{height:108.427083pt;}
.h16{height:109.333333pt;}
.h2e{height:110.932400pt;}
.h3b{height:111.000000pt;}
.h7a{height:114.071560pt;}
.h3c{height:116.171875pt;}
.h3{height:116.928000pt;}
.h4a{height:118.240000pt;}
.h39{height:120.421867pt;}
.h25{height:122.500000pt;}
.h1d{height:130.655442pt;}
.h7{height:131.809067pt;}
.h36{height:137.270800pt;}
.h4e{height:138.769531pt;}
.h6f{height:140.666667pt;}
.h72{height:142.406250pt;}
.h2{height:145.152000pt;}
.h91{height:147.333333pt;}
.h8{height:149.184000pt;}
.hd{height:150.172667pt;}
.hb{height:150.172800pt;}
.h15{height:153.125000pt;}
.h3f{height:154.895833pt;}
.h6{height:154.968750pt;}
.h86{height:162.047467pt;}
.h51{height:175.440000pt;}
.h50{height:178.949733pt;}
.h6d{height:190.390800pt;}
.h88{height:213.622933pt;}
.h52{height:223.000000pt;}
.h3e{height:230.666667pt;}
.h5{height:253.170000pt;}
.h92{height:257.122396pt;}
.h57{height:288.666667pt;}
.h5d{height:320.239867pt;}
.h58{height:329.508000pt;}
.h22{height:373.075467pt;}
.h0{height:1024.000000pt;}
.w5c{width:34.894533pt;}
.w1f{width:45.333333pt;}
.w3{width:45.636133pt;}
.w49{width:52.000000pt;}
.w16{width:52.000267pt;}
.w2c{width:56.015987pt;}
.wa{width:58.879533pt;}
.we{width:61.783653pt;}
.w5d{width:68.390627pt;}
.w33{width:68.613693pt;}
.w10{width:69.829693pt;}
.wc{width:70.912867pt;}
.w29{width:74.388000pt;}
.wf{width:74.435160pt;}
.w2{width:74.677480pt;}
.w34{width:82.719067pt;}
.wd{width:88.453760pt;}
.w11{width:92.877160pt;}
.w45{width:103.280360pt;}
.w15{width:107.422947pt;}
.w64{width:111.452933pt;}
.w18{width:115.015627pt;}
.w23{width:120.542973pt;}
.w19{width:121.011840pt;}
.w35{width:123.401120pt;}
.wb{width:125.803613pt;}
.w58{width:126.093427pt;}
.w2b{width:127.044653pt;}
.w5a{width:132.114587pt;}
.w1a{width:137.393200pt;}
.w4d{width:142.408267pt;}
.w44{width:147.061600pt;}
.w1e{width:148.462400pt;}
.w4e{width:149.041467pt;}
.w4{width:150.172667pt;}
.w3a{width:157.227200pt;}
.w3e{width:178.504000pt;}
.w53{width:181.137467pt;}
.w14{width:186.374933pt;}
.w3b{width:192.743867pt;}
.w4a{width:194.268533pt;}
.w5b{width:194.725200pt;}
.w24{width:203.243467pt;}
.w4f{width:220.620267pt;}
.w5{width:224.120000pt;}
.w67{width:224.924267pt;}
.w5e{width:230.239600pt;}
.w22{width:235.082000pt;}
.w12{width:237.294533pt;}
.w59{width:250.114133pt;}
.w13{width:250.499867pt;}
.w50{width:250.542667pt;}
.w65{width:256.691067pt;}
.w3f{width:271.811467pt;}
.w1c{width:272.163600pt;}
.w54{width:282.496133pt;}
.w27{width:290.863333pt;}
.w62{width:299.488933pt;}
.w28{width:300.196667pt;}
.w40{width:302.322267pt;}
.w8{width:305.790667pt;}
.w9{width:309.688933pt;}
.w2d{width:311.842133pt;}
.w1{width:312.928400pt;}
.w2a{width:314.845067pt;}
.w55{width:325.707867pt;}
.w57{width:329.133333pt;}
.w51{width:345.436933pt;}
.w52{width:346.079733pt;}
.w38{width:346.940000pt;}
.w39{width:346.974000pt;}
.w4b{width:351.507200pt;}
.w3d{width:355.625467pt;}
.w56{width:358.275333pt;}
.w66{width:364.075467pt;}
.w63{width:429.521200pt;}
.w69{width:431.466000pt;}
.w47{width:433.618800pt;}
.w3c{width:441.996133pt;}
.w41{width:487.817733pt;}
.w6{width:494.670800pt;}
.w17{width:503.820667pt;}
.w37{width:518.170000pt;}
.w1d{width:533.683600pt;}
.w6c{width:558.319067pt;}
.w5f{width:645.996667pt;}
.w36{width:647.345867pt;}
.w60{width:650.212400pt;}
.w25{width:661.213867pt;}
.w30{width:688.391867pt;}
.w2e{width:699.654267pt;}
.w6b{width:751.728667pt;}
.w43{width:760.225200pt;}
.w32{width:775.561333pt;}
.w31{width:789.460533pt;}
.w7{width:852.356000pt;}
.w21{width:916.716933pt;}
.w68{width:969.202267pt;}
.w26{width:989.187200pt;}
.w20{width:1122.600667pt;}
.w46{width:1182.139067pt;}
.w42{width:1211.457467pt;}
.w61{width:1221.134267pt;}
.w2f{width:1224.735067pt;}
.w1b{width:1228.929067pt;}
.w4c{width:1299.917333pt;}
.w6a{width:1301.506533pt;}
.w48{width:1305.763067pt;}
.w0{width:1365.333333pt;}
.x0{left:0.000000pt;}
.x38{left:6.333333pt;}
.x3d{left:8.069867pt;}
.x49{left:9.521867pt;}
.x35{left:11.863200pt;}
.x41{left:13.154933pt;}
.x39{left:14.688200pt;}
.xcf{left:15.898267pt;}
.x4f{left:17.044667pt;}
.x2b{left:18.500667pt;}
.x53{left:19.910933pt;}
.x6{left:21.146880pt;}
.x5f{left:22.850787pt;}
.x106{left:23.851467pt;}
.x73{left:24.743467pt;}
.x68{left:26.114533pt;}
.x9f{left:27.259467pt;}
.xa0{left:29.060267pt;}
.x17{left:30.057200pt;}
.x20{left:31.536667pt;}
.xe{left:32.723960pt;}
.xdf{left:34.286013pt;}
.xd7{left:35.874667pt;}
.x62{left:37.363067pt;}
.x77{left:40.024333pt;}
.x2f{left:41.128800pt;}
.x79{left:42.029533pt;}
.x36{left:44.724853pt;}
.xde{left:46.162867pt;}
.x19{left:47.210400pt;}
.x7e{left:48.635200pt;}
.xd{left:49.976573pt;}
.x1b{left:52.210400pt;}
.x9b{left:54.018213pt;}
.xf{left:55.390627pt;}
.xf6{left:57.554600pt;}
.x56{left:64.002933pt;}
.x108{left:65.570267pt;}
.x78{left:68.995667pt;}
.x9c{left:70.299107pt;}
.x95{left:72.316733pt;}
.xcb{left:76.937907pt;}
.x2c{left:78.292400pt;}
.x8f{left:79.669467pt;}
.x6c{left:81.421933pt;}
.x60{left:82.755280pt;}
.x103{left:85.787053pt;}
.x9a{left:87.833920pt;}
.x64{left:91.088613pt;}
.xc0{left:93.018547pt;}
.x114{left:95.315973pt;}
.x102{left:97.925200pt;}
.x118{left:99.203133pt;}
.xca{left:100.737347pt;}
.xc5{left:103.489027pt;}
.xc1{left:105.311707pt;}
.x87{left:110.718613pt;}
.x5a{left:114.364320pt;}
.x86{left:116.797707pt;}
.x2e{left:118.101320pt;}
.xc2{left:120.242040pt;}
.x76{left:121.366333pt;}
.x100{left:123.078093pt;}
.x5e{left:128.994147pt;}
.xe1{left:131.579893pt;}
.xfa{left:133.286000pt;}
.x24{left:135.447867pt;}
.xe9{left:139.583200pt;}
.x31{left:141.931867pt;}
.x85{left:149.439333pt;}
.x3{left:152.778667pt;}
.x8b{left:158.174533pt;}
.x34{left:162.050400pt;}
.xf2{left:167.276667pt;}
.x6f{left:169.295867pt;}
.x6e{left:172.888000pt;}
.x84{left:176.643867pt;}
.x23{left:178.253867pt;}
.xe0{left:182.737467pt;}
.x2a{left:185.649200pt;}
.xaf{left:188.747333pt;}
.x88{left:191.285067pt;}
.x71{left:193.350267pt;}
.xdd{left:194.737467pt;}
.x1e{left:200.403733pt;}
.x97{left:208.536667pt;}
.xf4{left:215.244800pt;}
.xee{left:221.741333pt;}
.x7b{left:224.308133pt;}
.x1c{left:225.639733pt;}
.x105{left:230.762400pt;}
.xa3{left:235.185467pt;}
.xec{left:253.094800pt;}
.x33{left:256.488667pt;}
.x59{left:257.432267pt;}
.xa1{left:265.940933pt;}
.x4{left:271.659333pt;}
.x10a{left:279.660800pt;}
.xa{left:281.362667pt;}
.xb{left:287.334400pt;}
.x7a{left:289.242133pt;}
.xc{left:291.600000pt;}
.x9{left:294.676533pt;}
.xc6{left:295.821600pt;}
.x112{left:297.394795pt;}
.x111{left:298.854891pt;}
.xed{left:299.945333pt;}
.xcc{left:302.554000pt;}
.x5c{left:305.768800pt;}
.x10b{left:306.820267pt;}
.x113{left:307.936144pt;}
.xfe{left:308.845867pt;}
.xf9{left:310.130800pt;}
.x110{left:311.667377pt;}
.xf5{left:314.138267pt;}
.x7{left:319.056667pt;}
.x90{left:322.671067pt;}
.x99{left:323.876133pt;}
.xd2{left:328.191200pt;}
.x8c{left:331.004400pt;}
.x1a{left:332.598533pt;}
.xc3{left:340.882800pt;}
.x26{left:346.185467pt;}
.x27{left:349.232800pt;}
.x92{left:351.885467pt;}
.x8d{left:359.093467pt;}
.x10f{left:366.434000pt;}
.x25{left:368.883467pt;}
.xff{left:369.945333pt;}
.xf3{left:371.989880pt;}
.xc4{left:377.262400pt;}
.x115{left:381.030133pt;}
.x10c{left:389.363467pt;}
.xd0{left:394.319067pt;}
.xb1{left:398.345067pt;}
.x119{left:403.507200pt;}
.xce{left:404.992400pt;}
.xf0{left:408.546667pt;}
.xcd{left:412.191067pt;}
.x74{left:417.093733pt;}
.xb0{left:419.053733pt;}
.xbc{left:424.159385pt;}
.x70{left:428.524400pt;}
.x29{left:435.331333pt;}
.xbe{left:448.042439pt;}
.x117{left:449.398400pt;}
.xbd{left:451.176351pt;}
.xba{left:453.159390pt;}
.x5d{left:456.755333pt;}
.xb7{left:458.724036pt;}
.xbb{left:459.957636pt;}
.xa9{left:461.486400pt;}
.x2{left:462.610667pt;}
.xb8{left:465.375882pt;}
.xbf{left:468.797452pt;}
.xab{left:469.939200pt;}
.x5b{left:473.277467pt;}
.xb5{left:474.209512pt;}
.x54{left:477.639867pt;}
.xb3{left:480.739137pt;}
.xb9{left:484.123984pt;}
.x8e{left:486.657733pt;}
.x11{left:489.507467pt;}
.x82{left:491.239467pt;}
.xb4{left:493.012120pt;}
.x10{left:494.648133pt;}
.xd1{left:496.191067pt;}
.xb6{left:498.820011pt;}
.x2d{left:504.592533pt;}
.x81{left:505.814667pt;}
.xea{left:508.914800pt;}
.x5{left:512.751333pt;}
.xeb{left:531.896533pt;}
.xa6{left:536.067067pt;}
.x9d{left:543.110800pt;}
.xa5{left:546.740400pt;}
.xa4{left:553.939200pt;}
.x116{left:555.053067pt;}
.x37{left:557.992133pt;}
.x7d{left:565.125600pt;}
.x15{left:572.615200pt;}
.x22{left:581.411467pt;}
.x83{left:593.225067pt;}
.x28{left:602.549467pt;}
.x12{left:610.081067pt;}
.xac{left:611.528400pt;}
.x104{left:613.124267pt;}
.x7f{left:617.034400pt;}
.x109{left:631.747067pt;}
.xe2{left:633.183333pt;}
.xa8{left:637.939200pt;}
.x98{left:639.970800pt;}
.x21{left:643.016800pt;}
.xaa{left:647.272533pt;}
.xe6{left:650.516667pt;}
.x72{left:657.102133pt;}
.x10d{left:659.319200pt;}
.x1f{left:663.016800pt;}
.xe3{left:667.850000pt;}
.x107{left:676.549333pt;}
.xad{left:681.758400pt;}
.x93{left:694.334267pt;}
.xc7{left:697.242400pt;}
.xe7{left:710.909200pt;}
.xa7{left:714.874267pt;}
.xe5{left:719.464000pt;}
.xfb{left:720.598000pt;}
.xe8{left:729.619867pt;}
.x32{left:732.729467pt;}
.xfc{left:735.168933pt;}
.x8{left:758.280933pt;}
.xef{left:780.461067pt;}
.x63{left:794.531200pt;}
.x4a{left:796.764667pt;}
.xe4{left:798.516667pt;}
.x4e{left:803.940133pt;}
.x10e{left:815.032133pt;}
.x48{left:819.486933pt;}
.x80{left:824.297600pt;}
.x67{left:832.953600pt;}
.x51{left:843.404933pt;}
.x1d{left:858.007600pt;}
.x89{left:858.943200pt;}
.x46{left:864.931200pt;}
.x4c{left:867.328933pt;}
.x30{left:868.882800pt;}
.xc9{left:879.074800pt;}
.x4d{left:896.024800pt;}
.x65{left:898.654667pt;}
.x75{left:902.697733pt;}
.x8a{left:911.400933pt;}
.x94{left:913.226400pt;}
.x61{left:915.074400pt;}
.x69{left:918.230667pt;}
.xc8{left:920.981867pt;}
.x4b{left:926.102667pt;}
.x50{left:936.685467pt;}
.xd6{left:939.952533pt;}
.x66{left:949.673467pt;}
.x47{left:955.820000pt;}
.x7c{left:959.770800pt;}
.x55{left:962.457467pt;}
.x101{left:968.277200pt;}
.xd5{left:979.176400pt;}
.x52{left:982.842667pt;}
.xb2{left:984.525600pt;}
.xf1{left:991.166000pt;}
.xd4{left:993.242267pt;}
.xae{left:1002.413867pt;}
.x96{left:1008.459067pt;}
.x18{left:1033.544133pt;}
.x91{left:1038.919333pt;}
.xdb{left:1041.242267pt;}
.x13{left:1046.738400pt;}
.x14{left:1058.127067pt;}
.x3f{left:1066.828400pt;}
.xd8{left:1072.856267pt;}
.xd3{left:1081.781067pt;}
.x6a{left:1087.186133pt;}
.x3e{left:1088.290800pt;}
.x57{left:1096.994133pt;}
.x3c{left:1103.702800pt;}
.xfd{left:1106.148533pt;}
.xf8{left:1108.098133pt;}
.xf7{left:1113.619333pt;}
.x45{left:1138.964400pt;}
.xd9{left:1146.575600pt;}
.xa2{left:1151.259467pt;}
.x6d{left:1154.327467pt;}
.xda{left:1163.908933pt;}
.x40{left:1167.406800pt;}
.x3a{left:1173.548000pt;}
.x6b{left:1175.660800pt;}
.x42{left:1178.775733pt;}
.x9e{left:1203.660800pt;}
.x16{left:1213.213200pt;}
.xdc{left:1215.247200pt;}
.x43{left:1228.824400pt;}
.x44{left:1243.611600pt;}
.x3b{left:1251.573867pt;}
.x58{left:1299.111733pt;}
.x1{left:1363.013333pt;}
}




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