
    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_b870eb5ca1d537ae8f589ce9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight: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_dfdccf0b33aa17d6961eaffc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_120264b63de7fdb7ee4f3795.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;font-style:normal;font-weight: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_d7ea0164f3691f533f677ff8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;font-style:normal;font-weight: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_81b941fc82f30e6f4952e014.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_683a516ac0e0baf11a8d8aa4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1017705424c9d4759ba6ad01.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c79821f23525e3df12e4a04f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_78a2c3ed3ac381ba4ba00151.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4d2b26da7aae1dcb7c1ff1a3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight: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_cc22b5a73b19e21e98ea9367.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916992;font-style:normal;font-weight: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_3316e1deeed4a0749f283a85.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.707031;font-style:normal;font-weight: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_52eb1e3e470a62fab257005f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916992;font-style:normal;font-weight: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_e0da8bc38d0f6dfeab843f4c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_01da421400a61917e070491f.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e58379f2b35e85ef820e95f3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb{transform:matrix(0.000000,-0.222508,0.250000,-0.000025,0,0);-ms-transform:matrix(0.000000,-0.222508,0.250000,-0.000025,0,0);-webkit-transform:matrix(0.000000,-0.222508,0.250000,-0.000025,0,0);}
.m9{transform:matrix(0.000000,-0.258330,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.258330,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.258330,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000010,-0.249947,0.250000,0.000010,0,0);-ms-transform:matrix(0.000010,-0.249947,0.250000,0.000010,0,0);-webkit-transform:matrix(0.000010,-0.249947,0.250000,0.000010,0,0);}
.m5{transform:matrix(0.000194,-0.262949,0.250000,0.000206,0,0);-ms-transform:matrix(0.000194,-0.262949,0.250000,0.000206,0,0);-webkit-transform:matrix(0.000194,-0.262949,0.250000,0.000206,0,0);}
.m3{transform:matrix(0.000197,-0.268247,0.250000,0.000206,0,0);-ms-transform:matrix(0.000197,-0.268247,0.250000,0.000206,0,0);-webkit-transform:matrix(0.000197,-0.268247,0.250000,0.000206,0,0);}
.me{transform:matrix(0.151548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151548,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.225869,0.000194,-0.000177,0.250000,0,0);-ms-transform:matrix(0.225869,0.000194,-0.000177,0.250000,0,0);-webkit-transform:matrix(0.225869,0.000194,-0.000177,0.250000,0,0);}
.m2{transform:matrix(0.232993,0.000193,-0.000184,0.250000,0,0);-ms-transform:matrix(0.232993,0.000193,-0.000184,0.250000,0,0);-webkit-transform:matrix(0.232993,0.000193,-0.000184,0.250000,0,0);}
.m6{transform:matrix(0.239820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239820,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249949,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);}
.mc{transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.255796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255796,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.285445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285445,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.430341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430341,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);}
.v2{vertical-align:-21.701400px;}
.v4{vertical-align:-11.790000px;}
.v6{vertical-align:-9.357600px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.620000px;}
.v5{vertical-align:11.697000px;}
.v3{vertical-align:28.941000px;}
.v1{vertical-align:30.381600px;}
.ls5f{letter-spacing:-4.882995px;}
.lsa3{letter-spacing:-2.640000px;}
.ls64{letter-spacing:-2.214148px;}
.lsa1{letter-spacing:-2.112000px;}
.ls62{letter-spacing:-1.822985px;}
.ls57{letter-spacing:-1.776000px;}
.ls55{letter-spacing:-1.740000px;}
.ls61{letter-spacing:-1.302132px;}
.ls74{letter-spacing:-1.200000px;}
.ls56{letter-spacing:-0.900000px;}
.lsac{letter-spacing:-0.840000px;}
.ls9{letter-spacing:-0.780000px;}
.ls33{letter-spacing:-0.600000px;}
.ls34{letter-spacing:-0.420000px;}
.ls92{letter-spacing:-0.336000px;}
.lsa0{letter-spacing:-0.240000px;}
.ls5c{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.120000px;}
.ls93{letter-spacing:-0.096000px;}
.ls4f{letter-spacing:-0.069960px;}
.lsb{letter-spacing:-0.060000px;}
.ls91{letter-spacing:-0.048000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004140px;}
.ls2{letter-spacing:0.004920px;}
.ls4a{letter-spacing:0.025800px;}
.ls52{letter-spacing:0.048000px;}
.ls1a{letter-spacing:0.060000px;}
.ls6a{letter-spacing:0.069960px;}
.ls6e{letter-spacing:0.088200px;}
.ls76{letter-spacing:0.096000px;}
.ls6{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.130800px;}
.ls68{letter-spacing:0.135000px;}
.ls4d{letter-spacing:0.139920px;}
.ls84{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls7d{letter-spacing:0.192000px;}
.ls51{letter-spacing:0.209880px;}
.ls2b{letter-spacing:0.240000px;}
.ls70{letter-spacing:0.246600px;}
.ls44{letter-spacing:0.249000px;}
.ls95{letter-spacing:0.288000px;}
.ls43{letter-spacing:0.297000px;}
.ls23{letter-spacing:0.300000px;}
.ls9d{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.360000px;}
.ls4b{letter-spacing:0.371400px;}
.ls8e{letter-spacing:0.384000px;}
.lse{letter-spacing:0.420000px;}
.ls5e{letter-spacing:0.432000px;}
.ls27{letter-spacing:0.480000px;}
.ls65{letter-spacing:0.528000px;}
.ls25{letter-spacing:0.540000px;}
.ls66{letter-spacing:0.576000px;}
.ls28{letter-spacing:0.600000px;}
.ls7e{letter-spacing:0.624000px;}
.ls18{letter-spacing:0.660000px;}
.ls90{letter-spacing:0.672000px;}
.ls15{letter-spacing:0.720000px;}
.lsa7{letter-spacing:0.768000px;}
.lsd{letter-spacing:0.780000px;}
.ls50{letter-spacing:0.804540px;}
.ls96{letter-spacing:0.816000px;}
.ls2f{letter-spacing:0.840000px;}
.ls9e{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.900000px;}
.ls77{letter-spacing:0.912000px;}
.ls29{letter-spacing:0.960000px;}
.ls80{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.020000px;}
.ls79{letter-spacing:1.056000px;}
.ls4{letter-spacing:1.080000px;}
.ls7a{letter-spacing:1.104000px;}
.ls20{letter-spacing:1.140000px;}
.ls8f{letter-spacing:1.152000px;}
.ls4e{letter-spacing:1.154340px;}
.ls11{letter-spacing:1.200000px;}
.ls60{letter-spacing:1.237025px;}
.ls86{letter-spacing:1.248000px;}
.ls2a{letter-spacing:1.260000px;}
.lsa8{letter-spacing:1.296000px;}
.ls26{letter-spacing:1.320000px;}
.ls7c{letter-spacing:1.344000px;}
.ls48{letter-spacing:1.363800px;}
.ls12{letter-spacing:1.380000px;}
.ls87{letter-spacing:1.392000px;}
.ls7{letter-spacing:1.440000px;}
.ls97{letter-spacing:1.488000px;}
.ls1b{letter-spacing:1.500000px;}
.ls83{letter-spacing:1.536000px;}
.ls3b{letter-spacing:1.560000px;}
.ls7b{letter-spacing:1.584000px;}
.ls39{letter-spacing:1.620000px;}
.ls75{letter-spacing:1.632000px;}
.ls1f{letter-spacing:1.680000px;}
.ls5{letter-spacing:1.740000px;}
.ls9c{letter-spacing:1.776000px;}
.ls17{letter-spacing:1.800000px;}
.lsab{letter-spacing:1.824000px;}
.ls2d{letter-spacing:1.860000px;}
.lsa2{letter-spacing:1.872000px;}
.ls3{letter-spacing:1.920000px;}
.ls46{letter-spacing:1.967400px;}
.ls98{letter-spacing:1.968000px;}
.ls35{letter-spacing:1.980000px;}
.ls47{letter-spacing:1.982400px;}
.ls45{letter-spacing:1.991400px;}
.ls94{letter-spacing:2.016000px;}
.ls2c{letter-spacing:2.040000px;}
.ls36{letter-spacing:2.100000px;}
.ls8d{letter-spacing:2.112000px;}
.ls2e{letter-spacing:2.160000px;}
.lsa6{letter-spacing:2.208000px;}
.ls41{letter-spacing:2.220000px;}
.ls9a{letter-spacing:2.256000px;}
.ls3a{letter-spacing:2.280000px;}
.ls8c{letter-spacing:2.304000px;}
.ls14{letter-spacing:2.340000px;}
.ls8b{letter-spacing:2.352000px;}
.ls3e{letter-spacing:2.400000px;}
.ls89{letter-spacing:2.448000px;}
.ls49{letter-spacing:2.460000px;}
.lsa5{letter-spacing:2.496000px;}
.ls32{letter-spacing:2.520000px;}
.ls1d{letter-spacing:2.580000px;}
.ls81{letter-spacing:2.592000px;}
.ls1e{letter-spacing:2.640000px;}
.ls85{letter-spacing:2.688000px;}
.ls21{letter-spacing:2.700000px;}
.ls78{letter-spacing:2.736000px;}
.ls4c{letter-spacing:2.760000px;}
.ls9f{letter-spacing:2.784000px;}
.ls16{letter-spacing:2.820000px;}
.ls9b{letter-spacing:2.832000px;}
.ls59{letter-spacing:2.880000px;}
.ls3d{letter-spacing:2.940000px;}
.ls3c{letter-spacing:3.000000px;}
.ls8a{letter-spacing:3.024000px;}
.ls42{letter-spacing:3.060000px;}
.ls7f{letter-spacing:3.072000px;}
.ls5a{letter-spacing:3.120000px;}
.ls53{letter-spacing:3.180000px;}
.ls82{letter-spacing:3.216000px;}
.ls38{letter-spacing:3.300000px;}
.lsa4{letter-spacing:3.312000px;}
.ls10{letter-spacing:3.360000px;}
.ls40{letter-spacing:3.420000px;}
.ls99{letter-spacing:3.456000px;}
.ls37{letter-spacing:3.480000px;}
.ls3f{letter-spacing:3.540000px;}
.ls88{letter-spacing:3.552000px;}
.ls31{letter-spacing:3.660000px;}
.ls6c{letter-spacing:3.720000px;}
.ls30{letter-spacing:3.780000px;}
.ls24{letter-spacing:3.840000px;}
.lsaa{letter-spacing:3.888000px;}
.ls6f{letter-spacing:3.900000px;}
.ls71{letter-spacing:4.020000px;}
.ls5d{letter-spacing:4.080000px;}
.ls72{letter-spacing:4.260000px;}
.ls5b{letter-spacing:4.320000px;}
.ls6b{letter-spacing:4.380000px;}
.ls22{letter-spacing:4.500000px;}
.ls58{letter-spacing:4.560000px;}
.ls69{letter-spacing:4.740000px;}
.lsa9{letter-spacing:4.752000px;}
.ls1c{letter-spacing:4.860000px;}
.ls6d{letter-spacing:5.040000px;}
.ls73{letter-spacing:5.520000px;}
.ls67{letter-spacing:103.926139px;}
.ls54{letter-spacing:222.384000px;}
.ls63{letter-spacing:261.728532px;}
.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;}
}
.ws7e{word-spacing:-261.793639px;}
.ws83{word-spacing:-117.486439px;}
.ws82{word-spacing:-23.865732px;}
.ws88{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.580000px;}
.ws2{word-spacing:-17.514000px;}
.ws97{word-spacing:-17.280000px;}
.ws30{word-spacing:-17.160000px;}
.ws68{word-spacing:-17.040000px;}
.ws33{word-spacing:-16.980000px;}
.ws8f{word-spacing:-16.860000px;}
.ws4{word-spacing:-16.680000px;}
.ws2f{word-spacing:-16.620000px;}
.ws11{word-spacing:-16.200000px;}
.wse2{word-spacing:-16.080000px;}
.ws10{word-spacing:-16.020000px;}
.ws16{word-spacing:-15.960000px;}
.ws61{word-spacing:-15.900000px;}
.ws12{word-spacing:-15.720000px;}
.ws15{word-spacing:-15.600000px;}
.ws14{word-spacing:-15.480000px;}
.ws69{word-spacing:-15.360000px;}
.ws17{word-spacing:-15.240000px;}
.ws18{word-spacing:-15.000000px;}
.ws87{word-spacing:-14.820000px;}
.ws9f{word-spacing:-14.688000px;}
.wsdc{word-spacing:-14.496000px;}
.wsa1{word-spacing:-14.400000px;}
.wsc4{word-spacing:-14.352000px;}
.ws96{word-spacing:-14.220000px;}
.wsca{word-spacing:-14.112000px;}
.wsc1{word-spacing:-13.968000px;}
.wsc2{word-spacing:-13.920000px;}
.ws9e{word-spacing:-13.584000px;}
.ws84{word-spacing:-13.560300px;}
.wse0{word-spacing:-13.536000px;}
.wsc0{word-spacing:-13.488000px;}
.ws6{word-spacing:-13.344000px;}
.wsde{word-spacing:-13.296000px;}
.wsbf{word-spacing:-13.152000px;}
.wsa2{word-spacing:-13.104000px;}
.wscb{word-spacing:-12.960000px;}
.wsdf{word-spacing:-12.624000px;}
.ws81{word-spacing:-12.576000px;}
.wsdd{word-spacing:-12.528000px;}
.ws5{word-spacing:-12.510000px;}
.ws9d{word-spacing:-12.480000px;}
.wsc3{word-spacing:-12.384000px;}
.wse1{word-spacing:-12.336000px;}
.wsc6{word-spacing:-12.288000px;}
.wsa0{word-spacing:-12.240000px;}
.wsc7{word-spacing:-12.192000px;}
.wsc9{word-spacing:-12.096000px;}
.ws8a{word-spacing:-12.000000px;}
.ws76{word-spacing:-10.230927px;}
.ws3{word-spacing:-10.210662px;}
.ws32{word-spacing:-9.899340px;}
.wsc5{word-spacing:-9.888000px;}
.ws7f{word-spacing:-9.666644px;}
.ws35{word-spacing:-9.549540px;}
.wsc8{word-spacing:-9.360000px;}
.ws37{word-spacing:-8.954880px;}
.ws31{word-spacing:-8.884920px;}
.ws89{word-spacing:-8.814960px;}
.ws36{word-spacing:-8.745000px;}
.ws34{word-spacing:-8.675040px;}
.ws8b{word-spacing:-6.996000px;}
.ws78{word-spacing:-6.810672px;}
.wsb7{word-spacing:-4.320000px;}
.wsed{word-spacing:-3.888000px;}
.ws6e{word-spacing:-3.420000px;}
.ws3c{word-spacing:-3.300000px;}
.ws8{word-spacing:-2.886000px;}
.wsda{word-spacing:-2.784000px;}
.wsa6{word-spacing:-2.736000px;}
.ws60{word-spacing:-2.640000px;}
.ws3a{word-spacing:-2.580000px;}
.wsba{word-spacing:-2.400000px;}
.ws9{word-spacing:-2.331000px;}
.ws2a{word-spacing:-2.220000px;}
.wsdb{word-spacing:-2.112000px;}
.ws72{word-spacing:-2.040000px;}
.ws43{word-spacing:-1.980000px;}
.wsec{word-spacing:-1.968000px;}
.ws73{word-spacing:-1.920000px;}
.wsa8{word-spacing:-1.584000px;}
.wsef{word-spacing:-1.536000px;}
.wsb4{word-spacing:-1.440000px;}
.ws5e{word-spacing:-1.380000px;}
.wsaa{word-spacing:-1.344000px;}
.ws7a{word-spacing:-1.302132px;}
.wsea{word-spacing:-1.296000px;}
.ws25{word-spacing:-1.260000px;}
.ws1b{word-spacing:-1.200000px;}
.wsbd{word-spacing:-1.152000px;}
.ws94{word-spacing:-1.140000px;}
.wsa7{word-spacing:-1.056000px;}
.ws93{word-spacing:-0.960000px;}
.wsd2{word-spacing:-0.912000px;}
.ws6f{word-spacing:-0.900000px;}
.wsf0{word-spacing:-0.864000px;}
.wseb{word-spacing:-0.816000px;}
.ws3b{word-spacing:-0.780000px;}
.ws1c{word-spacing:-0.720000px;}
.wsce{word-spacing:-0.672000px;}
.wsd4{word-spacing:-0.624000px;}
.ws21{word-spacing:-0.600000px;}
.wse8{word-spacing:-0.528000px;}
.ws71{word-spacing:-0.480000px;}
.wsbb{word-spacing:-0.432000px;}
.wsd3{word-spacing:-0.384000px;}
.ws1d{word-spacing:-0.360000px;}
.ws23{word-spacing:-0.300000px;}
.wsd5{word-spacing:-0.288000px;}
.ws39{word-spacing:-0.240000px;}
.wsf{word-spacing:-0.120000px;}
.wsd8{word-spacing:-0.096000px;}
.ws64{word-spacing:-0.060000px;}
.wsb0{word-spacing:-0.048000px;}
.ws85{word-spacing:-0.045200px;}
.ws7{word-spacing:0.000000px;}
.wse3{word-spacing:0.048000px;}
.ws5c{word-spacing:0.060000px;}
.wse5{word-spacing:0.096000px;}
.wsa{word-spacing:0.120000px;}
.ws75{word-spacing:0.180000px;}
.wsd1{word-spacing:0.192000px;}
.ws6c{word-spacing:0.240000px;}
.ws49{word-spacing:0.480000px;}
.ws4a{word-spacing:0.528000px;}
.ws70{word-spacing:0.540000px;}
.wsb3{word-spacing:0.576000px;}
.ws1a{word-spacing:0.600000px;}
.wsbc{word-spacing:0.624000px;}
.wsb8{word-spacing:0.672000px;}
.ws65{word-spacing:0.720000px;}
.ws2e{word-spacing:0.780000px;}
.wsd0{word-spacing:0.816000px;}
.ws20{word-spacing:0.840000px;}
.wse6{word-spacing:0.864000px;}
.ws98{word-spacing:0.960000px;}
.wse4{word-spacing:1.008000px;}
.wscf{word-spacing:1.152000px;}
.ws99{word-spacing:1.200000px;}
.ws7c{word-spacing:1.237025px;}
.wsee{word-spacing:1.248000px;}
.ws9c{word-spacing:1.260000px;}
.wsab{word-spacing:1.296000px;}
.ws41{word-spacing:1.320000px;}
.ws28{word-spacing:1.440000px;}
.wsaf{word-spacing:1.488000px;}
.ws42{word-spacing:1.500000px;}
.ws5d{word-spacing:1.560000px;}
.ws47{word-spacing:1.680000px;}
.ws7d{word-spacing:1.757878px;}
.wsb5{word-spacing:1.824000px;}
.ws8e{word-spacing:1.920000px;}
.ws24{word-spacing:1.980000px;}
.ws80{word-spacing:2.016000px;}
.ws26{word-spacing:2.040000px;}
.wsb9{word-spacing:2.112000px;}
.ws6b{word-spacing:2.160000px;}
.wsd{word-spacing:2.220000px;}
.ws38{word-spacing:2.280000px;}
.ws2c{word-spacing:2.400000px;}
.ws1e{word-spacing:2.460000px;}
.wsd9{word-spacing:2.496000px;}
.ws8d{word-spacing:2.520000px;}
.ws95{word-spacing:2.580000px;}
.wse9{word-spacing:2.592000px;}
.ws44{word-spacing:2.640000px;}
.wsae{word-spacing:2.688000px;}
.wse{word-spacing:2.700000px;}
.ws5f{word-spacing:2.760000px;}
.ws91{word-spacing:2.820000px;}
.wsad{word-spacing:2.832000px;}
.ws40{word-spacing:2.880000px;}
.wsb1{word-spacing:2.928000px;}
.wsa9{word-spacing:2.976000px;}
.ws29{word-spacing:3.000000px;}
.wsbe{word-spacing:3.120000px;}
.ws48{word-spacing:3.168000px;}
.ws66{word-spacing:3.180000px;}
.wsb2{word-spacing:3.216000px;}
.ws19{word-spacing:3.240000px;}
.wscd{word-spacing:3.312000px;}
.wsd6{word-spacing:3.408000px;}
.ws1f{word-spacing:3.420000px;}
.ws9a{word-spacing:3.480000px;}
.ws46{word-spacing:3.552000px;}
.wsb6{word-spacing:3.600000px;}
.ws6d{word-spacing:3.660000px;}
.wsd7{word-spacing:3.696000px;}
.ws74{word-spacing:3.720000px;}
.ws62{word-spacing:3.780000px;}
.wsac{word-spacing:3.792000px;}
.ws6a{word-spacing:3.840000px;}
.wscc{word-spacing:3.888000px;}
.ws45{word-spacing:3.936000px;}
.ws86{word-spacing:3.984000px;}
.ws63{word-spacing:4.020000px;}
.ws90{word-spacing:4.080000px;}
.ws3d{word-spacing:4.140000px;}
.ws9b{word-spacing:4.260000px;}
.ws3e{word-spacing:4.320000px;}
.ws92{word-spacing:4.440000px;}
.wsa5{word-spacing:4.464000px;}
.ws27{word-spacing:4.500000px;}
.wse7{word-spacing:4.512000px;}
.ws67{word-spacing:4.620000px;}
.ws3f{word-spacing:4.680000px;}
.ws2b{word-spacing:4.740000px;}
.wsa4{word-spacing:4.800000px;}
.ws79{word-spacing:4.817888px;}
.ws8c{word-spacing:4.860000px;}
.wsb{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.wsa3{word-spacing:5.340000px;}
.ws22{word-spacing:5.520000px;}
.ws2d{word-spacing:8.700000px;}
.ws77{word-spacing:18.415062px;}
.ws0{word-spacing:49.137828px;}
.ws1{word-spacing:49.138428px;}
.ws7b{word-spacing:116.019961px;}
.ws4c{word-spacing:147.936000px;}
.ws50{word-spacing:200.160000px;}
.ws5a{word-spacing:211.022400px;}
.ws4e{word-spacing:212.160000px;}
.ws51{word-spacing:220.176000px;}
.ws58{word-spacing:234.864000px;}
.ws52{word-spacing:237.552000px;}
.ws4b{word-spacing:286.704000px;}
.ws53{word-spacing:331.152000px;}
.ws56{word-spacing:458.160000px;}
.ws4f{word-spacing:543.600000px;}
.ws55{word-spacing:545.760000px;}
.ws4d{word-spacing:561.504000px;}
.ws54{word-spacing:563.616000px;}
.ws57{word-spacing:594.240000px;}
.ws59{word-spacing:598.272000px;}
.ws5b{word-spacing:602.880000px;}
._a{margin-left:-2898.096000px;}
._c{margin-left:-2874.288000px;}
._40{margin-left:-1720.068395px;}
._3f{margin-left:-266.649739px;}
._3d{margin-left:-261.940219px;}
._3e{margin-left:-103.980380px;}
._b{margin-left:-8.220000px;}
._4{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.524400px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.080000px;}
._6{width:1.020000px;}
._3{width:2.263200px;}
._9{width:3.360000px;}
._7{width:5.040000px;}
._8{width:6.840000px;}
._3c{width:8.616000px;}
._d{width:111.600000px;}
._f{width:172.704000px;}
._29{width:220.176000px;}
._15{width:224.160000px;}
._12{width:232.176000px;}
._13{width:236.160000px;}
._1d{width:240.864000px;}
._1e{width:249.552000px;}
._22{width:282.864000px;}
._21{width:316.176000px;}
._3a{width:326.632800px;}
._11{width:338.688000px;}
._1a{width:350.688000px;}
._2c{width:358.032000px;}
._24{width:359.376000px;}
._30{width:379.536000px;}
._1f{width:391.680000px;}
._20{width:392.688000px;}
._31{width:423.744000px;}
._10{width:425.924400px;}
._25{width:434.256000px;}
._14{width:441.744000px;}
._16{width:446.208000px;}
._2a{width:447.600000px;}
._17{width:453.744000px;}
._19{width:465.744000px;}
._26{width:470.208000px;}
._1c{width:477.744000px;}
._2b{width:487.632000px;}
._27{width:504.864000px;}
._3b{width:520.896000px;}
._32{width:540.192000px;}
._18{width:543.504000px;}
._39{width:550.224000px;}
._1b{width:552.912000px;}
._38{width:558.240000px;}
._35{width:562.224000px;}
._2d{width:576.912000px;}
._33{width:580.896000px;}
._28{width:586.224000px;}
._2e{width:595.584000px;}
._2f{width:606.240000px;}
._36{width:623.568000px;}
._23{width:627.552000px;}
._34{width:634.224000px;}
._37{width:667.584000px;}
._e{width:809.472000px;}
.fc4{color:rgb(10,9,10);}
.fc3{color:rgb(4,0,0);}
.fc2{color:rgb(4,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs1c{font-size:27.984000px;}
.fsf{font-size:30.957600px;}
.fs13{font-size:33.853200px;}
.fs9{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs18{font-size:45.200400px;}
.fsc{font-size:46.504216px;}
.fsa{font-size:48.000000px;}
.fs12{font-size:54.003600px;}
.fs16{font-size:54.239400px;}
.fs19{font-size:54.241200px;}
.fsb{font-size:55.291815px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs10{font-size:65.106600px;}
.fs1{font-size:78.000000px;}
.fse{font-size:83.704828px;}
.fs11{font-size:83.706000px;}
.fsd{font-size:83.706021px;}
.fs14{font-size:83.709000px;}
.fs1a{font-size:99.439800px;}
.fs1b{font-size:103.960200px;}
.fs17{font-size:108.480600px;}
.fs2{font-size:126.600000px;}
.fs15{font-size:223.219200px;}
.y0{bottom:0.000000px;}
.y11c{bottom:12.150000px;}
.y11d{bottom:14.212350px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.ye5{bottom:82.672800px;}
.yb2{bottom:83.212500px;}
.y11a{bottom:83.436900px;}
.y182{bottom:83.566650px;}
.y64{bottom:83.770350px;}
.yad{bottom:83.912100px;}
.y79{bottom:83.920350px;}
.ye9{bottom:84.086400px;}
.yb7{bottom:84.925050px;}
.y25{bottom:88.029450px;}
.y1cd{bottom:89.121900px;}
.y20d{bottom:95.263500px;}
.yb1{bottom:98.956500px;}
.y119{bottom:99.180900px;}
.y181{bottom:99.310650px;}
.ye8{bottom:99.830400px;}
.yb6{bottom:100.669050px;}
.y194{bottom:101.628600px;}
.y63{bottom:101.770350px;}
.yac{bottom:101.912100px;}
.y78{bottom:101.920350px;}
.y24{bottom:103.023000px;}
.y1cc{bottom:104.121900px;}
.ye4{bottom:108.184800px;}
.y20c{bottom:110.263500px;}
.yb0{bottom:114.700500px;}
.y118{bottom:114.924900px;}
.ye7{bottom:115.574400px;}
.yb5{bottom:116.413050px;}
.y1cb{bottom:119.121900px;}
.y193{bottom:119.223600px;}
.y62{bottom:119.770350px;}
.yab{bottom:119.912100px;}
.y77{bottom:119.920350px;}
.ye3{bottom:124.432800px;}
.y20b{bottom:125.263500px;}
.yaf{bottom:130.444500px;}
.y117{bottom:130.668900px;}
.yb4{bottom:132.157050px;}
.y1ca{bottom:134.121900px;}
.y61{bottom:137.770350px;}
.yfe{bottom:137.823000px;}
.yaa{bottom:137.912100px;}
.y76{bottom:137.920350px;}
.y20a{bottom:140.263500px;}
.ye2{bottom:140.680800px;}
.y110{bottom:144.076950px;}
.yae{bottom:146.188500px;}
.y1c9{bottom:149.121900px;}
.y11b{bottom:153.070500px;}
.y209{bottom:155.263500px;}
.y192{bottom:155.628600px;}
.y60{bottom:155.770350px;}
.ya9{bottom:155.912100px;}
.y75{bottom:155.920350px;}
.ye1{bottom:156.928800px;}
.y29{bottom:163.638750px;}
.y1c8{bottom:164.121900px;}
.y10f{bottom:169.654650px;}
.y208{bottom:170.263500px;}
.ye0{bottom:173.176800px;}
.y191{bottom:173.628600px;}
.y5f{bottom:173.770350px;}
.ya8{bottom:173.912100px;}
.y74{bottom:173.920350px;}
.y1c7{bottom:179.121900px;}
.y28{bottom:181.638750px;}
.y207{bottom:185.263500px;}
.y22b{bottom:188.914350px;}
.ydf{bottom:189.424800px;}
.y114{bottom:190.449300px;}
.y190{bottom:191.628600px;}
.y5e{bottom:191.770350px;}
.ya7{bottom:191.912100px;}
.y73{bottom:191.920350px;}
.y12d{bottom:192.171236px;}
.y100{bottom:193.506600px;}
.y1c6{bottom:194.121900px;}
.y27{bottom:199.638750px;}
.y206{bottom:200.263500px;}
.y12c{bottom:203.182200px;}
.yde{bottom:205.672800px;}
.y22a{bottom:206.914350px;}
.y1c5{bottom:209.121900px;}
.y18f{bottom:209.628600px;}
.y5d{bottom:209.770350px;}
.ya6{bottom:209.912100px;}
.y72{bottom:209.920350px;}
.y205{bottom:215.263500px;}
.y166{bottom:215.982821px;}
.y2b{bottom:217.638750px;}
.y101{bottom:217.645789px;}
.ydd{bottom:221.920800px;}
.y1c4{bottom:224.121900px;}
.y229{bottom:224.914350px;}
.y165{bottom:226.356450px;}
.y18e{bottom:227.628600px;}
.y5c{bottom:227.770350px;}
.ya5{bottom:227.912100px;}
.y71{bottom:227.920350px;}
.y204{bottom:230.263500px;}
.y26{bottom:235.233750px;}
.y2a{bottom:235.638750px;}
.y167{bottom:238.045429px;}
.ydc{bottom:238.168800px;}
.y1c3{bottom:239.121900px;}
.y228{bottom:242.914350px;}
.y18d{bottom:245.230350px;}
.y203{bottom:245.263500px;}
.y5b{bottom:245.770350px;}
.ya4{bottom:245.912100px;}
.y70{bottom:245.920350px;}
.y102{bottom:248.255116px;}
.y168{bottom:250.086975px;}
.y1c2{bottom:254.121900px;}
.ydb{bottom:254.416800px;}
.y202{bottom:260.263500px;}
.y169{bottom:260.541966px;}
.y227{bottom:260.914350px;}
.y5a{bottom:263.770350px;}
.ya3{bottom:263.912100px;}
.y6f{bottom:263.920350px;}
.y1c1{bottom:269.121900px;}
.yda{bottom:270.664800px;}
.y164{bottom:271.186542px;}
.y201{bottom:275.263500px;}
.y103{bottom:278.454254px;}
.y226{bottom:278.914350px;}
.y18c{bottom:281.635350px;}
.y59{bottom:281.770350px;}
.ya2{bottom:281.912100px;}
.y6e{bottom:281.920350px;}
.y163{bottom:282.690044px;}
.y1c0{bottom:284.121900px;}
.yd9{bottom:286.912800px;}
.y200{bottom:290.263500px;}
.y162{bottom:293.888443px;}
.y225{bottom:296.914350px;}
.y1bf{bottom:299.121900px;}
.y18b{bottom:299.230350px;}
.y58{bottom:299.770350px;}
.ya1{bottom:299.912100px;}
.y6d{bottom:299.920350px;}
.yd8{bottom:303.160800px;}
.y161{bottom:305.075542px;}
.y1ff{bottom:305.263500px;}
.y104{bottom:308.653393px;}
.y23{bottom:310.564200px;}
.y1be{bottom:314.121900px;}
.y160{bottom:316.940647px;}
.y57{bottom:317.770350px;}
.ya0{bottom:317.912100px;}
.y6c{bottom:317.920350px;}
.y1fe{bottom:320.263500px;}
.y15f{bottom:327.449740px;}
.y1bd{bottom:329.121900px;}
.yd7{bottom:330.040800px;}
.y224{bottom:332.914350px;}
.y1fd{bottom:335.263500px;}
.y18a{bottom:335.635350px;}
.y56{bottom:335.770350px;}
.y9f{bottom:335.912100px;}
.y6b{bottom:335.920350px;}
.y111{bottom:337.017750px;}
.y22{bottom:337.909200px;}
.y105{bottom:338.844793px;}
.y15e{bottom:338.975842px;}
.y1bc{bottom:344.121900px;}
.yd6{bottom:346.288800px;}
.y1fc{bottom:350.263500px;}
.y15d{bottom:350.501944px;}
.y223{bottom:350.914350px;}
.y189{bottom:353.635350px;}
.y55{bottom:353.770350px;}
.y9e{bottom:353.912100px;}
.y6a{bottom:353.920350px;}
.y21{bottom:355.909200px;}
.y1bb{bottom:359.121900px;}
.y15c{bottom:361.700343px;}
.yd5{bottom:362.536800px;}
.y1fb{bottom:365.263500px;}
.y112{bottom:368.690100px;}
.y222{bottom:368.914350px;}
.y106{bottom:369.051671px;}
.y188{bottom:371.635350px;}
.y54{bottom:371.770350px;}
.y9d{bottom:371.912100px;}
.y15b{bottom:373.226445px;}
.y20{bottom:373.909200px;}
.y1ba{bottom:374.121900px;}
.yd4{bottom:378.784800px;}
.y1fa{bottom:380.263500px;}
.y15a{bottom:384.402244px;}
.y221{bottom:386.914350px;}
.y1b9{bottom:389.121900px;}
.y69{bottom:389.515350px;}
.y187{bottom:389.635350px;}
.y53{bottom:389.770350px;}
.y9c{bottom:389.912100px;}
.y1f{bottom:391.909200px;}
.yd3{bottom:395.081700px;}
.y1f9{bottom:395.263500px;}
.y159{bottom:395.600643px;}
.y107{bottom:399.243070px;}
.y113{bottom:399.961993px;}
.y1b8{bottom:404.121900px;}
.y158{bottom:406.448739px;}
.y68{bottom:407.515350px;}
.y186{bottom:407.635350px;}
.y52{bottom:407.770350px;}
.y9b{bottom:407.912100px;}
.y1e{bottom:409.909200px;}
.y1f8{bottom:410.263500px;}
.y157{bottom:418.302544px;}
.y1b7{bottom:419.121900px;}
.yd2{bottom:419.837700px;}
.y220{bottom:422.914350px;}
.y1f7{bottom:425.263500px;}
.y185{bottom:425.635350px;}
.y51{bottom:425.770350px;}
.y9a{bottom:425.912100px;}
.y1d{bottom:427.909200px;}
.y156{bottom:429.150640px;}
.y108{bottom:429.449948px;}
.y1b6{bottom:434.121900px;}
.yd1{bottom:436.085700px;}
.y1f6{bottom:440.263500px;}
.y155{bottom:440.405540px;}
.y21f{bottom:440.914350px;}
.y184{bottom:443.635350px;}
.y50{bottom:443.770350px;}
.y99{bottom:443.912100px;}
.y1c{bottom:445.909200px;}
.y1b5{bottom:449.121900px;}
.y154{bottom:452.202844px;}
.y1f5{bottom:455.263500px;}
.y21e{bottom:458.914350px;}
.y109{bottom:459.649087px;}
.yd0{bottom:460.841700px;}
.y180{bottom:461.635350px;}
.y4f{bottom:461.770350px;}
.y98{bottom:461.935350px;}
.y153{bottom:463.401243px;}
.y1b{bottom:463.909200px;}
.y1b4{bottom:464.121900px;}
.y1f4{bottom:470.263500px;}
.y152{bottom:475.255048px;}
.ycf{bottom:477.089700px;}
.y1b3{bottom:479.121900px;}
.y17f{bottom:479.635350px;}
.y4e{bottom:479.770350px;}
.y97{bottom:479.935350px;}
.y1a{bottom:481.909200px;}
.y1f3{bottom:485.263500px;}
.y151{bottom:486.453447px;}
.y10a{bottom:489.840487px;}
.yce{bottom:493.337700px;}
.y1b2{bottom:494.121900px;}
.y21d{bottom:494.509350px;}
.y17e{bottom:497.635350px;}
.y150{bottom:497.640546px;}
.y4d{bottom:497.770350px;}
.y96{bottom:497.935350px;}
.y19{bottom:499.909200px;}
.y1f2{bottom:500.263500px;}
.y14f{bottom:508.838945px;}
.y1b1{bottom:509.121900px;}
.ycd{bottom:509.585700px;}
.y1f1{bottom:515.263500px;}
.y17d{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.y95{bottom:515.935350px;}
.y18{bottom:517.909200px;}
.y14e{bottom:520.037345px;}
.y10b{bottom:520.047365px;}
.y1b0{bottom:524.121900px;}
.y16a{bottom:526.155000px;}
.y1f0{bottom:530.263500px;}
.y14d{bottom:531.619947px;}
.y66{bottom:533.365350px;}
.y17c{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.y94{bottom:533.935350px;}
.ycc{bottom:534.341700px;}
.y17{bottom:535.909200px;}
.y1af{bottom:539.121900px;}
.y14c{bottom:542.739245px;}
.y1ef{bottom:545.263500px;}
.y10c{bottom:550.238764px;}
.ycb{bottom:550.589700px;}
.y17b{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y93{bottom:551.935350px;}
.y14b{bottom:553.858544px;}
.y16{bottom:553.909200px;}
.y1ae{bottom:554.121900px;}
.y1ee{bottom:560.263500px;}
.y14a{bottom:565.452446px;}
.yca{bottom:566.837700px;}
.y1ad{bottom:569.121900px;}
.y65{bottom:569.230350px;}
.y17a{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.y92{bottom:569.935350px;}
.y15{bottom:571.909200px;}
.y1ed{bottom:575.263500px;}
.y149{bottom:576.571745px;}
.y10d{bottom:580.437903px;}
.yc9{bottom:583.085700px;}
.y1ac{bottom:584.121900px;}
.y179{bottom:587.635350px;}
.y148{bottom:587.758844px;}
.y48{bottom:587.770350px;}
.y91{bottom:587.935350px;}
.y14{bottom:589.909200px;}
.y1ec{bottom:590.263500px;}
.y1ab{bottom:599.121900px;}
.y147{bottom:599.352746px;}
.y10e{bottom:604.600310px;}
.y1eb{bottom:605.263500px;}
.y178{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.y90{bottom:605.935350px;}
.yc8{bottom:607.841700px;}
.y13{bottom:607.909200px;}
.y146{bottom:610.709347px;}
.y1aa{bottom:614.121900px;}
.y1ea{bottom:620.263500px;}
.y116{bottom:620.479500px;}
.y145{bottom:621.907746px;}
.yfd{bottom:622.021350px;}
.y177{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.y8f{bottom:623.935350px;}
.yc7{bottom:624.089700px;}
.y12{bottom:625.909200px;}
.y1a9{bottom:629.121900px;}
.y144{bottom:633.106145px;}
.y1e9{bottom:635.263500px;}
.yc6{bottom:640.337700px;}
.y176{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.y8e{bottom:641.935350px;}
.yfc{bottom:642.747976px;}
.yfb{bottom:642.790470px;}
.yfa{bottom:642.815531px;}
.yf9{bottom:642.853067px;}
.yf8{bottom:642.903078px;}
.yf7{bottom:642.928139px;}
.yf6{bottom:642.978160px;}
.yf5{bottom:643.015686px;}
.yf4{bottom:643.040747px;}
.yf3{bottom:643.090758px;}
.yf2{bottom:643.128294px;}
.yf1{bottom:643.153355px;}
.yf0{bottom:643.203366px;}
.y1a8{bottom:644.121900px;}
.y143{bottom:645.118151px;}
.yef{bottom:648.879421px;}
.yee{bottom:648.909450px;}
.y1e8{bottom:650.263500px;}
.y142{bottom:656.158349px;}
.yc5{bottom:656.585700px;}
.y1a7{bottom:659.121900px;}
.y175{bottom:659.635350px;}
.y44{bottom:659.770350px;}
.y8d{bottom:659.935350px;}
.yff{bottom:663.336900px;}
.y1e7{bottom:665.263500px;}
.y141{bottom:667.232447px;}
.yea{bottom:670.846050px;}
.y11{bottom:671.067300px;}
.yc4{bottom:672.833700px;}
.y1a6{bottom:674.121900px;}
.y174{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.y8c{bottom:677.935350px;}
.y140{bottom:678.521247px;}
.y1e6{bottom:680.263500px;}
.y16b{bottom:682.804800px;}
.y10{bottom:683.518050px;}
.y1a5{bottom:689.121900px;}
.y13f{bottom:690.047349px;}
.y1e5{bottom:695.263500px;}
.y173{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.y8b{bottom:695.935350px;}
.yc3{bottom:697.589700px;}
.y13e{bottom:701.347449px;}
.y1a4{bottom:704.121900px;}
.y1e4{bottom:710.263500px;}
.y13d{bottom:712.749250px;}
.y172{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.y8a{bottom:713.935350px;}
.yf{bottom:715.233600px;}
.y16c{bottom:716.731800px;}
.y1a3{bottom:719.121900px;}
.yc2{bottom:722.345700px;}
.y13c{bottom:723.721647px;}
.y1e3{bottom:725.263500px;}
.ye{bottom:728.733600px;}
.y183{bottom:731.230350px;}
.y171{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.y89{bottom:731.935350px;}
.y1a2{bottom:734.121900px;}
.y13b{bottom:735.247749px;}
.y1e2{bottom:740.263500px;}
.y13a{bottom:746.570449px;}
.yd{bottom:747.658800px;}
.y16d{bottom:749.069850px;}
.y1a1{bottom:749.121900px;}
.yc1{bottom:749.225700px;}
.y170{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.y88{bottom:749.935350px;}
.y1e1{bottom:755.263500px;}
.yc{bottom:755.733600px;}
.y139{bottom:757.689748px;}
.y1a0{bottom:764.121900px;}
.y3e{bottom:767.770350px;}
.y87{bottom:767.935350px;}
.y138{bottom:768.876847px;}
.y1e0{bottom:770.263500px;}
.yeb{bottom:772.236612px;}
.yb{bottom:774.658950px;}
.yc0{bottom:778.229700px;}
.y19f{bottom:779.121900px;}
.y137{bottom:780.504650px;}
.ya{bottom:782.733600px;}
.y16f{bottom:785.230350px;}
.y1df{bottom:785.263500px;}
.y3d{bottom:785.770350px;}
.y86{bottom:785.935350px;}
.y136{bottom:791.748249px;}
.y19e{bottom:794.121900px;}
.y1de{bottom:800.263500px;}
.y9{bottom:801.658950px;}
.y135{bottom:803.387352px;}
.y3c{bottom:803.770350px;}
.y85{bottom:803.935350px;}
.y19d{bottom:809.121900px;}
.ybf{bottom:810.625350px;}
.y134{bottom:814.630952px;}
.y1dd{bottom:815.263500px;}
.y3b{bottom:821.770350px;}
.y84{bottom:821.935350px;}
.y19c{bottom:824.121900px;}
.y132{bottom:826.100553px;}
.ybe{bottom:830.125350px;}
.y1dc{bottom:830.263500px;}
.y8{bottom:830.386200px;}
.y133{bottom:837.005150px;}
.y3a{bottom:839.770350px;}
.y83{bottom:839.935350px;}
.y21c{bottom:845.263500px;}
.y1db{bottom:845.265900px;}
.y131{bottom:848.192249px;}
.ybd{bottom:849.625350px;}
.y7{bottom:851.380950px;}
.y19b{bottom:857.232600px;}
.y39{bottom:857.770350px;}
.y130{bottom:859.729651px;}
.y21b{bottom:860.263500px;}
.y1da{bottom:860.265900px;}
.y115{bottom:865.912800px;}
.y12f{bottom:870.905450px;}
.yec{bottom:873.614127px;}
.y21a{bottom:875.263500px;}
.y1d9{bottom:875.265900px;}
.y82{bottom:875.530350px;}
.y38{bottom:875.770350px;}
.y12e{bottom:882.262050px;}
.y11e{bottom:887.385450px;}
.y219{bottom:890.263500px;}
.y1d8{bottom:890.265900px;}
.ybc{bottom:893.635350px;}
.y12b{bottom:893.746801px;}
.y37{bottom:893.770350px;}
.y6{bottom:897.543600px;}
.y12a{bottom:904.888700px;}
.y218{bottom:905.263500px;}
.y1d7{bottom:905.265900px;}
.ybb{bottom:911.635350px;}
.y36{bottom:911.770350px;}
.y19a{bottom:911.772600px;}
.y81{bottom:911.785350px;}
.y129{bottom:916.290501px;}
.y217{bottom:920.263500px;}
.y1d6{bottom:920.265900px;}
.y128{bottom:927.432400px;}
.y199{bottom:929.367600px;}
.yba{bottom:929.635350px;}
.y35{bottom:929.770350px;}
.y80{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y216{bottom:935.263500px;}
.y1d5{bottom:935.265900px;}
.y127{bottom:938.675999px;}
.y34{bottom:947.770350px;}
.y7f{bottom:947.785350px;}
.y126{bottom:950.032600px;}
.y215{bottom:950.263500px;}
.y1d4{bottom:950.265900px;}
.y125{bottom:961.536101px;}
.yb9{bottom:965.230350px;}
.y214{bottom:965.263500px;}
.y1d3{bottom:965.265900px;}
.y198{bottom:965.367600px;}
.y33{bottom:965.770350px;}
.y7e{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y124{bottom:972.564999px;}
.yed{bottom:974.991642px;}
.y213{bottom:980.263500px;}
.y1d2{bottom:980.265900px;}
.y32{bottom:983.770350px;}
.y7d{bottom:983.785350px;}
.y123{bottom:984.260603px;}
.y122{bottom:995.221699px;}
.y212{bottom:995.263500px;}
.y1d1{bottom:995.265900px;}
.y31{bottom:1001.770350px;}
.y197{bottom:1001.772600px;}
.y7c{bottom:1001.785350px;}
.y121{bottom:1006.623500px;}
.y3{bottom:1006.926000px;}
.y211{bottom:1010.263500px;}
.y1d0{bottom:1010.265900px;}
.y120{bottom:1017.980101px;}
.y30{bottom:1019.770350px;}
.y196{bottom:1019.772600px;}
.y7b{bottom:1019.785350px;}
.y210{bottom:1025.263500px;}
.y1cf{bottom:1025.265900px;}
.y11f{bottom:1029.178500px;}
.y195{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.y7a{bottom:1037.785350px;}
.y20f{bottom:1040.263500px;}
.y1ce{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y67{bottom:1132.418700px;}
.y16e{bottom:1132.421700px;}
.y20e{bottom:1132.423500px;}
.yb8{bottom:1132.441050px;}
.yb3{bottom:1132.444500px;}
.ye6{bottom:1132.480800px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h1a{height:21.631018px;}
.h1e{height:23.654262px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.h16{height:32.493913px;}
.h8{height:32.805176px;}
.he{height:32.815976px;}
.h14{height:33.351562px;}
.h12{height:34.968750px;}
.h11{height:34.992188px;}
.h25{height:37.661614px;}
.h1d{height:37.733961px;}
.h22{height:37.898721px;}
.h15{height:38.742068px;}
.h24{height:39.660703px;}
.h10{height:41.689453px;}
.h13{height:42.117188px;}
.hd{height:43.681641px;}
.hb{height:43.710938px;}
.ha{height:43.740234px;}
.h1b{height:45.619126px;}
.hf{height:52.646484px;}
.h29{height:54.266484px;}
.hc{height:54.424477px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h1c{height:58.528805px;}
.h19{height:58.650600px;}
.h17{height:58.651436px;}
.h1f{height:58.653523px;}
.h28{height:58.955900px;}
.h26{height:69.481618px;}
.h27{height:72.640159px;}
.h23{height:75.798701px;}
.h4{height:92.168262px;}
.h20{height:155.970056px;}
.h21{height:897.165000px;}
.h18{height:912.414000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w3{width:683.715000px;}
.w2{width:710.287500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:1.667550px;}
.x2a{left:17.437050px;}
.x3c{left:70.582650px;}
.xa{left:76.535400px;}
.x15{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x29{left:101.943000px;}
.x30{left:103.783050px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x18{left:121.699172px;}
.x42{left:123.307050px;}
.x3{left:125.427900px;}
.x6{left:131.816400px;}
.x2b{left:135.373650px;}
.x17{left:137.405550px;}
.x3a{left:163.142700px;}
.x19{left:165.326850px;}
.x2c{left:187.773450px;}
.x40{left:194.285400px;}
.x1a{left:201.693134px;}
.x14{left:211.100400px;}
.x5{left:212.876400px;}
.x3d{left:220.143750px;}
.x1b{left:247.146854px;}
.x38{left:262.399050px;}
.x39{left:263.899800px;}
.x1c{left:292.604700px;}
.x31{left:297.789600px;}
.x1d{left:338.062565px;}
.x16{left:339.649350px;}
.x1e{left:383.520421px;}
.x28{left:422.569650px;}
.x1f{left:428.978267px;}
.x2d{left:430.652250px;}
.x9{left:455.041500px;}
.xc{left:457.100400px;}
.x20{left:474.436132px;}
.x11{left:478.330350px;}
.x7{left:480.491400px;}
.x41{left:482.603400px;}
.xe{left:491.106600px;}
.x43{left:503.863050px;}
.x12{left:512.350350px;}
.x21{left:519.882361px;}
.xd{left:525.276600px;}
.x22{left:565.351833px;}
.x3f{left:591.938100px;}
.x33{left:599.796150px;}
.x23{left:610.809698px;}
.x24{left:656.267544px;}
.x35{left:658.691550px;}
.x10{left:663.492300px;}
.x32{left:669.381150px;}
.x37{left:672.244350px;}
.x2{left:693.365400px;}
.x34{left:696.687900px;}
.x36{left:699.130023px;}
.x25{left:701.725400px;}
.x3b{left:721.717650px;}
.xf{left:728.391600px;}
.x3e{left:743.868150px;}
.x26{left:747.183265px;}
.x13{left:749.651400px;}
.x2e{left:764.688000px;}
.x27{left:783.537914px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-10.480000pt;}
.v6{vertical-align:-8.317867pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.440000pt;}
.v5{vertical-align:10.397333pt;}
.v3{vertical-align:25.725333pt;}
.v1{vertical-align:27.005867pt;}
.ls5f{letter-spacing:-4.340440pt;}
.lsa3{letter-spacing:-2.346667pt;}
.ls64{letter-spacing:-1.968131pt;}
.lsa1{letter-spacing:-1.877333pt;}
.ls62{letter-spacing:-1.620431pt;}
.ls57{letter-spacing:-1.578667pt;}
.ls55{letter-spacing:-1.546667pt;}
.ls61{letter-spacing:-1.157451pt;}
.ls74{letter-spacing:-1.066667pt;}
.ls56{letter-spacing:-0.800000pt;}
.lsac{letter-spacing:-0.746667pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls33{letter-spacing:-0.533333pt;}
.ls34{letter-spacing:-0.373333pt;}
.ls92{letter-spacing:-0.298667pt;}
.lsa0{letter-spacing:-0.213333pt;}
.ls5c{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.106667pt;}
.ls93{letter-spacing:-0.085333pt;}
.ls4f{letter-spacing:-0.062187pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls91{letter-spacing:-0.042667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003680pt;}
.ls2{letter-spacing:0.004373pt;}
.ls4a{letter-spacing:0.022933pt;}
.ls52{letter-spacing:0.042667pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls6a{letter-spacing:0.062187pt;}
.ls6e{letter-spacing:0.078400pt;}
.ls76{letter-spacing:0.085333pt;}
.ls6{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.116267pt;}
.ls68{letter-spacing:0.120000pt;}
.ls4d{letter-spacing:0.124373pt;}
.ls84{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls7d{letter-spacing:0.170667pt;}
.ls51{letter-spacing:0.186560pt;}
.ls2b{letter-spacing:0.213333pt;}
.ls70{letter-spacing:0.219200pt;}
.ls44{letter-spacing:0.221333pt;}
.ls95{letter-spacing:0.256000pt;}
.ls43{letter-spacing:0.264000pt;}
.ls23{letter-spacing:0.266667pt;}
.ls9d{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls4b{letter-spacing:0.330133pt;}
.ls8e{letter-spacing:0.341333pt;}
.lse{letter-spacing:0.373333pt;}
.ls5e{letter-spacing:0.384000pt;}
.ls27{letter-spacing:0.426667pt;}
.ls65{letter-spacing:0.469333pt;}
.ls25{letter-spacing:0.480000pt;}
.ls66{letter-spacing:0.512000pt;}
.ls28{letter-spacing:0.533333pt;}
.ls7e{letter-spacing:0.554667pt;}
.ls18{letter-spacing:0.586667pt;}
.ls90{letter-spacing:0.597333pt;}
.ls15{letter-spacing:0.640000pt;}
.lsa7{letter-spacing:0.682667pt;}
.lsd{letter-spacing:0.693333pt;}
.ls50{letter-spacing:0.715147pt;}
.ls96{letter-spacing:0.725333pt;}
.ls2f{letter-spacing:0.746667pt;}
.ls9e{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls77{letter-spacing:0.810667pt;}
.ls29{letter-spacing:0.853333pt;}
.ls80{letter-spacing:0.896000pt;}
.lsf{letter-spacing:0.906667pt;}
.ls79{letter-spacing:0.938667pt;}
.ls4{letter-spacing:0.960000pt;}
.ls7a{letter-spacing:0.981333pt;}
.ls20{letter-spacing:1.013333pt;}
.ls8f{letter-spacing:1.024000pt;}
.ls4e{letter-spacing:1.026080pt;}
.ls11{letter-spacing:1.066667pt;}
.ls60{letter-spacing:1.099578pt;}
.ls86{letter-spacing:1.109333pt;}
.ls2a{letter-spacing:1.120000pt;}
.lsa8{letter-spacing:1.152000pt;}
.ls26{letter-spacing:1.173333pt;}
.ls7c{letter-spacing:1.194667pt;}
.ls48{letter-spacing:1.212267pt;}
.ls12{letter-spacing:1.226667pt;}
.ls87{letter-spacing:1.237333pt;}
.ls7{letter-spacing:1.280000pt;}
.ls97{letter-spacing:1.322667pt;}
.ls1b{letter-spacing:1.333333pt;}
.ls83{letter-spacing:1.365333pt;}
.ls3b{letter-spacing:1.386667pt;}
.ls7b{letter-spacing:1.408000pt;}
.ls39{letter-spacing:1.440000pt;}
.ls75{letter-spacing:1.450667pt;}
.ls1f{letter-spacing:1.493333pt;}
.ls5{letter-spacing:1.546667pt;}
.ls9c{letter-spacing:1.578667pt;}
.ls17{letter-spacing:1.600000pt;}
.lsab{letter-spacing:1.621333pt;}
.ls2d{letter-spacing:1.653333pt;}
.lsa2{letter-spacing:1.664000pt;}
.ls3{letter-spacing:1.706667pt;}
.ls46{letter-spacing:1.748800pt;}
.ls98{letter-spacing:1.749333pt;}
.ls35{letter-spacing:1.760000pt;}
.ls47{letter-spacing:1.762133pt;}
.ls45{letter-spacing:1.770133pt;}
.ls94{letter-spacing:1.792000pt;}
.ls2c{letter-spacing:1.813333pt;}
.ls36{letter-spacing:1.866667pt;}
.ls8d{letter-spacing:1.877333pt;}
.ls2e{letter-spacing:1.920000pt;}
.lsa6{letter-spacing:1.962667pt;}
.ls41{letter-spacing:1.973333pt;}
.ls9a{letter-spacing:2.005333pt;}
.ls3a{letter-spacing:2.026667pt;}
.ls8c{letter-spacing:2.048000pt;}
.ls14{letter-spacing:2.080000pt;}
.ls8b{letter-spacing:2.090667pt;}
.ls3e{letter-spacing:2.133333pt;}
.ls89{letter-spacing:2.176000pt;}
.ls49{letter-spacing:2.186667pt;}
.lsa5{letter-spacing:2.218667pt;}
.ls32{letter-spacing:2.240000pt;}
.ls1d{letter-spacing:2.293333pt;}
.ls81{letter-spacing:2.304000pt;}
.ls1e{letter-spacing:2.346667pt;}
.ls85{letter-spacing:2.389333pt;}
.ls21{letter-spacing:2.400000pt;}
.ls78{letter-spacing:2.432000pt;}
.ls4c{letter-spacing:2.453333pt;}
.ls9f{letter-spacing:2.474667pt;}
.ls16{letter-spacing:2.506667pt;}
.ls9b{letter-spacing:2.517333pt;}
.ls59{letter-spacing:2.560000pt;}
.ls3d{letter-spacing:2.613333pt;}
.ls3c{letter-spacing:2.666667pt;}
.ls8a{letter-spacing:2.688000pt;}
.ls42{letter-spacing:2.720000pt;}
.ls7f{letter-spacing:2.730667pt;}
.ls5a{letter-spacing:2.773333pt;}
.ls53{letter-spacing:2.826667pt;}
.ls82{letter-spacing:2.858667pt;}
.ls38{letter-spacing:2.933333pt;}
.lsa4{letter-spacing:2.944000pt;}
.ls10{letter-spacing:2.986667pt;}
.ls40{letter-spacing:3.040000pt;}
.ls99{letter-spacing:3.072000pt;}
.ls37{letter-spacing:3.093333pt;}
.ls3f{letter-spacing:3.146667pt;}
.ls88{letter-spacing:3.157333pt;}
.ls31{letter-spacing:3.253333pt;}
.ls6c{letter-spacing:3.306667pt;}
.ls30{letter-spacing:3.360000pt;}
.ls24{letter-spacing:3.413333pt;}
.lsaa{letter-spacing:3.456000pt;}
.ls6f{letter-spacing:3.466667pt;}
.ls71{letter-spacing:3.573333pt;}
.ls5d{letter-spacing:3.626667pt;}
.ls72{letter-spacing:3.786667pt;}
.ls5b{letter-spacing:3.840000pt;}
.ls6b{letter-spacing:3.893333pt;}
.ls22{letter-spacing:4.000000pt;}
.ls58{letter-spacing:4.053333pt;}
.ls69{letter-spacing:4.213333pt;}
.lsa9{letter-spacing:4.224000pt;}
.ls1c{letter-spacing:4.320000pt;}
.ls6d{letter-spacing:4.480000pt;}
.ls73{letter-spacing:4.906667pt;}
.ls67{letter-spacing:92.378790pt;}
.ls54{letter-spacing:197.674667pt;}
.ls63{letter-spacing:232.647584pt;}
.ws7e{word-spacing:-232.705457pt;}
.ws83{word-spacing:-104.432390pt;}
.ws82{word-spacing:-21.213984pt;}
.ws88{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.626667pt;}
.ws2{word-spacing:-15.568000pt;}
.ws97{word-spacing:-15.360000pt;}
.ws30{word-spacing:-15.253333pt;}
.ws68{word-spacing:-15.146667pt;}
.ws33{word-spacing:-15.093333pt;}
.ws8f{word-spacing:-14.986667pt;}
.ws4{word-spacing:-14.826667pt;}
.ws2f{word-spacing:-14.773333pt;}
.ws11{word-spacing:-14.400000pt;}
.wse2{word-spacing:-14.293333pt;}
.ws10{word-spacing:-14.240000pt;}
.ws16{word-spacing:-14.186667pt;}
.ws61{word-spacing:-14.133333pt;}
.ws12{word-spacing:-13.973333pt;}
.ws15{word-spacing:-13.866667pt;}
.ws14{word-spacing:-13.760000pt;}
.ws69{word-spacing:-13.653333pt;}
.ws17{word-spacing:-13.546667pt;}
.ws18{word-spacing:-13.333333pt;}
.ws87{word-spacing:-13.173333pt;}
.ws9f{word-spacing:-13.056000pt;}
.wsdc{word-spacing:-12.885333pt;}
.wsa1{word-spacing:-12.800000pt;}
.wsc4{word-spacing:-12.757333pt;}
.ws96{word-spacing:-12.640000pt;}
.wsca{word-spacing:-12.544000pt;}
.wsc1{word-spacing:-12.416000pt;}
.wsc2{word-spacing:-12.373333pt;}
.ws9e{word-spacing:-12.074667pt;}
.ws84{word-spacing:-12.053600pt;}
.wse0{word-spacing:-12.032000pt;}
.wsc0{word-spacing:-11.989333pt;}
.ws6{word-spacing:-11.861333pt;}
.wsde{word-spacing:-11.818667pt;}
.wsbf{word-spacing:-11.690667pt;}
.wsa2{word-spacing:-11.648000pt;}
.wscb{word-spacing:-11.520000pt;}
.wsdf{word-spacing:-11.221333pt;}
.ws81{word-spacing:-11.178667pt;}
.wsdd{word-spacing:-11.136000pt;}
.ws5{word-spacing:-11.120000pt;}
.ws9d{word-spacing:-11.093333pt;}
.wsc3{word-spacing:-11.008000pt;}
.wse1{word-spacing:-10.965333pt;}
.wsc6{word-spacing:-10.922667pt;}
.wsa0{word-spacing:-10.880000pt;}
.wsc7{word-spacing:-10.837333pt;}
.wsc9{word-spacing:-10.752000pt;}
.ws8a{word-spacing:-10.666667pt;}
.ws76{word-spacing:-9.094158pt;}
.ws3{word-spacing:-9.076144pt;}
.ws32{word-spacing:-8.799413pt;}
.wsc5{word-spacing:-8.789333pt;}
.ws7f{word-spacing:-8.592573pt;}
.ws35{word-spacing:-8.488480pt;}
.wsc8{word-spacing:-8.320000pt;}
.ws37{word-spacing:-7.959893pt;}
.ws31{word-spacing:-7.897707pt;}
.ws89{word-spacing:-7.835520pt;}
.ws36{word-spacing:-7.773333pt;}
.ws34{word-spacing:-7.711147pt;}
.ws8b{word-spacing:-6.218667pt;}
.ws78{word-spacing:-6.053931pt;}
.wsb7{word-spacing:-3.840000pt;}
.wsed{word-spacing:-3.456000pt;}
.ws6e{word-spacing:-3.040000pt;}
.ws3c{word-spacing:-2.933333pt;}
.ws8{word-spacing:-2.565333pt;}
.wsda{word-spacing:-2.474667pt;}
.wsa6{word-spacing:-2.432000pt;}
.ws60{word-spacing:-2.346667pt;}
.ws3a{word-spacing:-2.293333pt;}
.wsba{word-spacing:-2.133333pt;}
.ws9{word-spacing:-2.072000pt;}
.ws2a{word-spacing:-1.973333pt;}
.wsdb{word-spacing:-1.877333pt;}
.ws72{word-spacing:-1.813333pt;}
.ws43{word-spacing:-1.760000pt;}
.wsec{word-spacing:-1.749333pt;}
.ws73{word-spacing:-1.706667pt;}
.wsa8{word-spacing:-1.408000pt;}
.wsef{word-spacing:-1.365333pt;}
.wsb4{word-spacing:-1.280000pt;}
.ws5e{word-spacing:-1.226667pt;}
.wsaa{word-spacing:-1.194667pt;}
.ws7a{word-spacing:-1.157451pt;}
.wsea{word-spacing:-1.152000pt;}
.ws25{word-spacing:-1.120000pt;}
.ws1b{word-spacing:-1.066667pt;}
.wsbd{word-spacing:-1.024000pt;}
.ws94{word-spacing:-1.013333pt;}
.wsa7{word-spacing:-0.938667pt;}
.ws93{word-spacing:-0.853333pt;}
.wsd2{word-spacing:-0.810667pt;}
.ws6f{word-spacing:-0.800000pt;}
.wsf0{word-spacing:-0.768000pt;}
.wseb{word-spacing:-0.725333pt;}
.ws3b{word-spacing:-0.693333pt;}
.ws1c{word-spacing:-0.640000pt;}
.wsce{word-spacing:-0.597333pt;}
.wsd4{word-spacing:-0.554667pt;}
.ws21{word-spacing:-0.533333pt;}
.wse8{word-spacing:-0.469333pt;}
.ws71{word-spacing:-0.426667pt;}
.wsbb{word-spacing:-0.384000pt;}
.wsd3{word-spacing:-0.341333pt;}
.ws1d{word-spacing:-0.320000pt;}
.ws23{word-spacing:-0.266667pt;}
.wsd5{word-spacing:-0.256000pt;}
.ws39{word-spacing:-0.213333pt;}
.wsf{word-spacing:-0.106667pt;}
.wsd8{word-spacing:-0.085333pt;}
.ws64{word-spacing:-0.053333pt;}
.wsb0{word-spacing:-0.042667pt;}
.ws85{word-spacing:-0.040178pt;}
.ws7{word-spacing:0.000000pt;}
.wse3{word-spacing:0.042667pt;}
.ws5c{word-spacing:0.053333pt;}
.wse5{word-spacing:0.085333pt;}
.wsa{word-spacing:0.106667pt;}
.ws75{word-spacing:0.160000pt;}
.wsd1{word-spacing:0.170667pt;}
.ws6c{word-spacing:0.213333pt;}
.ws49{word-spacing:0.426667pt;}
.ws4a{word-spacing:0.469333pt;}
.ws70{word-spacing:0.480000pt;}
.wsb3{word-spacing:0.512000pt;}
.ws1a{word-spacing:0.533333pt;}
.wsbc{word-spacing:0.554667pt;}
.wsb8{word-spacing:0.597333pt;}
.ws65{word-spacing:0.640000pt;}
.ws2e{word-spacing:0.693333pt;}
.wsd0{word-spacing:0.725333pt;}
.ws20{word-spacing:0.746667pt;}
.wse6{word-spacing:0.768000pt;}
.ws98{word-spacing:0.853333pt;}
.wse4{word-spacing:0.896000pt;}
.wscf{word-spacing:1.024000pt;}
.ws99{word-spacing:1.066667pt;}
.ws7c{word-spacing:1.099578pt;}
.wsee{word-spacing:1.109333pt;}
.ws9c{word-spacing:1.120000pt;}
.wsab{word-spacing:1.152000pt;}
.ws41{word-spacing:1.173333pt;}
.ws28{word-spacing:1.280000pt;}
.wsaf{word-spacing:1.322667pt;}
.ws42{word-spacing:1.333333pt;}
.ws5d{word-spacing:1.386667pt;}
.ws47{word-spacing:1.493333pt;}
.ws7d{word-spacing:1.562558pt;}
.wsb5{word-spacing:1.621333pt;}
.ws8e{word-spacing:1.706667pt;}
.ws24{word-spacing:1.760000pt;}
.ws80{word-spacing:1.792000pt;}
.ws26{word-spacing:1.813333pt;}
.wsb9{word-spacing:1.877333pt;}
.ws6b{word-spacing:1.920000pt;}
.wsd{word-spacing:1.973333pt;}
.ws38{word-spacing:2.026667pt;}
.ws2c{word-spacing:2.133333pt;}
.ws1e{word-spacing:2.186667pt;}
.wsd9{word-spacing:2.218667pt;}
.ws8d{word-spacing:2.240000pt;}
.ws95{word-spacing:2.293333pt;}
.wse9{word-spacing:2.304000pt;}
.ws44{word-spacing:2.346667pt;}
.wsae{word-spacing:2.389333pt;}
.wse{word-spacing:2.400000pt;}
.ws5f{word-spacing:2.453333pt;}
.ws91{word-spacing:2.506667pt;}
.wsad{word-spacing:2.517333pt;}
.ws40{word-spacing:2.560000pt;}
.wsb1{word-spacing:2.602667pt;}
.wsa9{word-spacing:2.645333pt;}
.ws29{word-spacing:2.666667pt;}
.wsbe{word-spacing:2.773333pt;}
.ws48{word-spacing:2.816000pt;}
.ws66{word-spacing:2.826667pt;}
.wsb2{word-spacing:2.858667pt;}
.ws19{word-spacing:2.880000pt;}
.wscd{word-spacing:2.944000pt;}
.wsd6{word-spacing:3.029333pt;}
.ws1f{word-spacing:3.040000pt;}
.ws9a{word-spacing:3.093333pt;}
.ws46{word-spacing:3.157333pt;}
.wsb6{word-spacing:3.200000pt;}
.ws6d{word-spacing:3.253333pt;}
.wsd7{word-spacing:3.285333pt;}
.ws74{word-spacing:3.306667pt;}
.ws62{word-spacing:3.360000pt;}
.wsac{word-spacing:3.370667pt;}
.ws6a{word-spacing:3.413333pt;}
.wscc{word-spacing:3.456000pt;}
.ws45{word-spacing:3.498667pt;}
.ws86{word-spacing:3.541333pt;}
.ws63{word-spacing:3.573333pt;}
.ws90{word-spacing:3.626667pt;}
.ws3d{word-spacing:3.680000pt;}
.ws9b{word-spacing:3.786667pt;}
.ws3e{word-spacing:3.840000pt;}
.ws92{word-spacing:3.946667pt;}
.wsa5{word-spacing:3.968000pt;}
.ws27{word-spacing:4.000000pt;}
.wse7{word-spacing:4.010667pt;}
.ws67{word-spacing:4.106667pt;}
.ws3f{word-spacing:4.160000pt;}
.ws2b{word-spacing:4.213333pt;}
.wsa4{word-spacing:4.266667pt;}
.ws79{word-spacing:4.282567pt;}
.ws8c{word-spacing:4.320000pt;}
.wsb{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.wsa3{word-spacing:4.746667pt;}
.ws22{word-spacing:4.906667pt;}
.ws2d{word-spacing:7.733333pt;}
.ws77{word-spacing:16.368944pt;}
.ws0{word-spacing:43.678069pt;}
.ws1{word-spacing:43.678603pt;}
.ws7b{word-spacing:103.128854pt;}
.ws4c{word-spacing:131.498667pt;}
.ws50{word-spacing:177.920000pt;}
.ws5a{word-spacing:187.575467pt;}
.ws4e{word-spacing:188.586667pt;}
.ws51{word-spacing:195.712000pt;}
.ws58{word-spacing:208.768000pt;}
.ws52{word-spacing:211.157333pt;}
.ws4b{word-spacing:254.848000pt;}
.ws53{word-spacing:294.357333pt;}
.ws56{word-spacing:407.253333pt;}
.ws4f{word-spacing:483.200000pt;}
.ws55{word-spacing:485.120000pt;}
.ws4d{word-spacing:499.114667pt;}
.ws54{word-spacing:500.992000pt;}
.ws57{word-spacing:528.213333pt;}
.ws59{word-spacing:531.797333pt;}
.ws5b{word-spacing:535.893333pt;}
._a{margin-left:-2576.085333pt;}
._c{margin-left:-2554.922667pt;}
._40{margin-left:-1528.949684pt;}
._3f{margin-left:-237.021990pt;}
._3d{margin-left:-232.835750pt;}
._3e{margin-left:-92.427005pt;}
._b{margin-left:-7.306667pt;}
._4{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.132800pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.960000pt;}
._6{width:0.906667pt;}
._3{width:2.011733pt;}
._9{width:2.986667pt;}
._7{width:4.480000pt;}
._8{width:6.080000pt;}
._3c{width:7.658667pt;}
._d{width:99.200000pt;}
._f{width:153.514667pt;}
._29{width:195.712000pt;}
._15{width:199.253333pt;}
._12{width:206.378667pt;}
._13{width:209.920000pt;}
._1d{width:214.101333pt;}
._1e{width:221.824000pt;}
._22{width:251.434667pt;}
._21{width:281.045333pt;}
._3a{width:290.340267pt;}
._11{width:301.056000pt;}
._1a{width:311.722667pt;}
._2c{width:318.250667pt;}
._24{width:319.445333pt;}
._30{width:337.365333pt;}
._1f{width:348.160000pt;}
._20{width:349.056000pt;}
._31{width:376.661333pt;}
._10{width:378.599467pt;}
._25{width:386.005333pt;}
._14{width:392.661333pt;}
._16{width:396.629333pt;}
._2a{width:397.866667pt;}
._17{width:403.328000pt;}
._19{width:413.994667pt;}
._26{width:417.962667pt;}
._1c{width:424.661333pt;}
._2b{width:433.450667pt;}
._27{width:448.768000pt;}
._3b{width:463.018667pt;}
._32{width:480.170667pt;}
._18{width:483.114667pt;}
._39{width:489.088000pt;}
._1b{width:491.477333pt;}
._38{width:496.213333pt;}
._35{width:499.754667pt;}
._2d{width:512.810667pt;}
._33{width:516.352000pt;}
._28{width:521.088000pt;}
._2e{width:529.408000pt;}
._2f{width:538.880000pt;}
._36{width:554.282667pt;}
._23{width:557.824000pt;}
._34{width:563.754667pt;}
._37{width:593.408000pt;}
._e{width:719.530667pt;}
.fs5{font-size:23.320000pt;}
.fs1c{font-size:24.874667pt;}
.fsf{font-size:27.517867pt;}
.fs13{font-size:30.091733pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs18{font-size:40.178133pt;}
.fsc{font-size:41.337081pt;}
.fsa{font-size:42.666667pt;}
.fs12{font-size:48.003200pt;}
.fs16{font-size:48.212800pt;}
.fs19{font-size:48.214400pt;}
.fsb{font-size:49.148280pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs10{font-size:57.872533pt;}
.fs1{font-size:69.333333pt;}
.fse{font-size:74.404292pt;}
.fs11{font-size:74.405333pt;}
.fsd{font-size:74.405352pt;}
.fs14{font-size:74.408000pt;}
.fs1a{font-size:88.390933pt;}
.fs1b{font-size:92.409067pt;}
.fs17{font-size:96.427200pt;}
.fs2{font-size:112.533333pt;}
.fs15{font-size:198.417067pt;}
.y0{bottom:0.000000pt;}
.y11c{bottom:10.800000pt;}
.y11d{bottom:12.633200pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.ye5{bottom:73.486933pt;}
.yb2{bottom:73.966667pt;}
.y11a{bottom:74.166133pt;}
.y182{bottom:74.281467pt;}
.y64{bottom:74.462533pt;}
.yad{bottom:74.588533pt;}
.y79{bottom:74.595867pt;}
.ye9{bottom:74.743467pt;}
.yb7{bottom:75.488933pt;}
.y25{bottom:78.248400pt;}
.y1cd{bottom:79.219467pt;}
.y20d{bottom:84.678667pt;}
.yb1{bottom:87.961333pt;}
.y119{bottom:88.160800pt;}
.y181{bottom:88.276133pt;}
.ye8{bottom:88.738133pt;}
.yb6{bottom:89.483600pt;}
.y194{bottom:90.336533pt;}
.y63{bottom:90.462533pt;}
.yac{bottom:90.588533pt;}
.y78{bottom:90.595867pt;}
.y24{bottom:91.576000pt;}
.y1cc{bottom:92.552800pt;}
.ye4{bottom:96.164267pt;}
.y20c{bottom:98.012000pt;}
.yb0{bottom:101.956000pt;}
.y118{bottom:102.155467pt;}
.ye7{bottom:102.732800pt;}
.yb5{bottom:103.478267pt;}
.y1cb{bottom:105.886133pt;}
.y193{bottom:105.976533pt;}
.y62{bottom:106.462533pt;}
.yab{bottom:106.588533pt;}
.y77{bottom:106.595867pt;}
.ye3{bottom:110.606933pt;}
.y20b{bottom:111.345333pt;}
.yaf{bottom:115.950667pt;}
.y117{bottom:116.150133pt;}
.yb4{bottom:117.472933pt;}
.y1ca{bottom:119.219467pt;}
.y61{bottom:122.462533pt;}
.yfe{bottom:122.509333pt;}
.yaa{bottom:122.588533pt;}
.y76{bottom:122.595867pt;}
.y20a{bottom:124.678667pt;}
.ye2{bottom:125.049600pt;}
.y110{bottom:128.068400pt;}
.yae{bottom:129.945333pt;}
.y1c9{bottom:132.552800pt;}
.y11b{bottom:136.062667pt;}
.y209{bottom:138.012000pt;}
.y192{bottom:138.336533pt;}
.y60{bottom:138.462533pt;}
.ya9{bottom:138.588533pt;}
.y75{bottom:138.595867pt;}
.ye1{bottom:139.492267pt;}
.y29{bottom:145.456667pt;}
.y1c8{bottom:145.886133pt;}
.y10f{bottom:150.804133pt;}
.y208{bottom:151.345333pt;}
.ye0{bottom:153.934933pt;}
.y191{bottom:154.336533pt;}
.y5f{bottom:154.462533pt;}
.ya8{bottom:154.588533pt;}
.y74{bottom:154.595867pt;}
.y1c7{bottom:159.219467pt;}
.y28{bottom:161.456667pt;}
.y207{bottom:164.678667pt;}
.y22b{bottom:167.923867pt;}
.ydf{bottom:168.377600pt;}
.y114{bottom:169.288267pt;}
.y190{bottom:170.336533pt;}
.y5e{bottom:170.462533pt;}
.ya7{bottom:170.588533pt;}
.y73{bottom:170.595867pt;}
.y12d{bottom:170.818877pt;}
.y100{bottom:172.005867pt;}
.y1c6{bottom:172.552800pt;}
.y27{bottom:177.456667pt;}
.y206{bottom:178.012000pt;}
.y12c{bottom:180.606400pt;}
.yde{bottom:182.820267pt;}
.y22a{bottom:183.923867pt;}
.y1c5{bottom:185.886133pt;}
.y18f{bottom:186.336533pt;}
.y5d{bottom:186.462533pt;}
.ya6{bottom:186.588533pt;}
.y72{bottom:186.595867pt;}
.y205{bottom:191.345333pt;}
.y166{bottom:191.984729pt;}
.y2b{bottom:193.456667pt;}
.y101{bottom:193.462923pt;}
.ydd{bottom:197.262933pt;}
.y1c4{bottom:199.219467pt;}
.y229{bottom:199.923867pt;}
.y165{bottom:201.205733pt;}
.y18e{bottom:202.336533pt;}
.y5c{bottom:202.462533pt;}
.ya5{bottom:202.588533pt;}
.y71{bottom:202.595867pt;}
.y204{bottom:204.678667pt;}
.y26{bottom:209.096667pt;}
.y2a{bottom:209.456667pt;}
.y167{bottom:211.595937pt;}
.ydc{bottom:211.705600pt;}
.y1c3{bottom:212.552800pt;}
.y228{bottom:215.923867pt;}
.y18d{bottom:217.982533pt;}
.y203{bottom:218.012000pt;}
.y5b{bottom:218.462533pt;}
.ya4{bottom:218.588533pt;}
.y70{bottom:218.595867pt;}
.y102{bottom:220.671214pt;}
.y168{bottom:222.299533pt;}
.y1c2{bottom:225.886133pt;}
.ydb{bottom:226.148267pt;}
.y202{bottom:231.345333pt;}
.y169{bottom:231.592859pt;}
.y227{bottom:231.923867pt;}
.y5a{bottom:234.462533pt;}
.ya3{bottom:234.588533pt;}
.y6f{bottom:234.595867pt;}
.y1c1{bottom:239.219467pt;}
.yda{bottom:240.590933pt;}
.y164{bottom:241.054704pt;}
.y201{bottom:244.678667pt;}
.y103{bottom:247.514893pt;}
.y226{bottom:247.923867pt;}
.y18c{bottom:250.342533pt;}
.y59{bottom:250.462533pt;}
.ya2{bottom:250.588533pt;}
.y6e{bottom:250.595867pt;}
.y163{bottom:251.280039pt;}
.y1c0{bottom:252.552800pt;}
.yd9{bottom:255.033600pt;}
.y200{bottom:258.012000pt;}
.y162{bottom:261.234172pt;}
.y225{bottom:263.923867pt;}
.y1bf{bottom:265.886133pt;}
.y18b{bottom:265.982533pt;}
.y58{bottom:266.462533pt;}
.ya1{bottom:266.588533pt;}
.y6d{bottom:266.595867pt;}
.yd8{bottom:269.476267pt;}
.y161{bottom:271.178260pt;}
.y1ff{bottom:271.345333pt;}
.y104{bottom:274.358572pt;}
.y23{bottom:276.057067pt;}
.y1be{bottom:279.219467pt;}
.y160{bottom:281.725020pt;}
.y57{bottom:282.462533pt;}
.ya0{bottom:282.588533pt;}
.y6c{bottom:282.595867pt;}
.y1fe{bottom:284.678667pt;}
.y15f{bottom:291.066436pt;}
.y1bd{bottom:292.552800pt;}
.yd7{bottom:293.369600pt;}
.y224{bottom:295.923867pt;}
.y1fd{bottom:298.012000pt;}
.y18a{bottom:298.342533pt;}
.y56{bottom:298.462533pt;}
.y9f{bottom:298.588533pt;}
.y6b{bottom:298.595867pt;}
.y111{bottom:299.571333pt;}
.y22{bottom:300.363733pt;}
.y105{bottom:301.195371pt;}
.y15e{bottom:301.311860pt;}
.y1bc{bottom:305.886133pt;}
.yd6{bottom:307.812267pt;}
.y1fc{bottom:311.345333pt;}
.y15d{bottom:311.557284pt;}
.y223{bottom:311.923867pt;}
.y189{bottom:314.342533pt;}
.y55{bottom:314.462533pt;}
.y9e{bottom:314.588533pt;}
.y6a{bottom:314.595867pt;}
.y21{bottom:316.363733pt;}
.y1bb{bottom:319.219467pt;}
.y15c{bottom:321.511416pt;}
.yd5{bottom:322.254933pt;}
.y1fb{bottom:324.678667pt;}
.y112{bottom:327.724533pt;}
.y222{bottom:327.923867pt;}
.y106{bottom:328.045930pt;}
.y188{bottom:330.342533pt;}
.y54{bottom:330.462533pt;}
.y9d{bottom:330.588533pt;}
.y15b{bottom:331.756840pt;}
.y20{bottom:332.363733pt;}
.y1ba{bottom:332.552800pt;}
.yd4{bottom:336.697600pt;}
.y1fa{bottom:338.012000pt;}
.y15a{bottom:341.690884pt;}
.y221{bottom:343.923867pt;}
.y1b9{bottom:345.886133pt;}
.y69{bottom:346.235867pt;}
.y187{bottom:346.342533pt;}
.y53{bottom:346.462533pt;}
.y9c{bottom:346.588533pt;}
.y1f{bottom:348.363733pt;}
.yd3{bottom:351.183733pt;}
.y1f9{bottom:351.345333pt;}
.y159{bottom:351.645016pt;}
.y107{bottom:354.882729pt;}
.y113{bottom:355.521772pt;}
.y1b8{bottom:359.219467pt;}
.y158{bottom:361.287768pt;}
.y68{bottom:362.235867pt;}
.y186{bottom:362.342533pt;}
.y52{bottom:362.462533pt;}
.y9b{bottom:362.588533pt;}
.y1e{bottom:364.363733pt;}
.y1f8{bottom:364.678667pt;}
.y157{bottom:371.824484pt;}
.y1b7{bottom:372.552800pt;}
.yd2{bottom:373.189067pt;}
.y220{bottom:375.923867pt;}
.y1f7{bottom:378.012000pt;}
.y185{bottom:378.342533pt;}
.y51{bottom:378.462533pt;}
.y9a{bottom:378.588533pt;}
.y1d{bottom:380.363733pt;}
.y156{bottom:381.467236pt;}
.y108{bottom:381.733287pt;}
.y1b6{bottom:385.886133pt;}
.yd1{bottom:387.631733pt;}
.y1f6{bottom:391.345333pt;}
.y155{bottom:391.471591pt;}
.y21f{bottom:391.923867pt;}
.y184{bottom:394.342533pt;}
.y50{bottom:394.462533pt;}
.y99{bottom:394.588533pt;}
.y1c{bottom:396.363733pt;}
.y1b5{bottom:399.219467pt;}
.y154{bottom:401.958084pt;}
.y1f5{bottom:404.678667pt;}
.y21e{bottom:407.923867pt;}
.y109{bottom:408.576966pt;}
.yd0{bottom:409.637067pt;}
.y180{bottom:410.342533pt;}
.y4f{bottom:410.462533pt;}
.y98{bottom:410.609200pt;}
.y153{bottom:411.912216pt;}
.y1b{bottom:412.363733pt;}
.y1b4{bottom:412.552800pt;}
.y1f4{bottom:418.012000pt;}
.y152{bottom:422.448932pt;}
.ycf{bottom:424.079733pt;}
.y1b3{bottom:425.886133pt;}
.y17f{bottom:426.342533pt;}
.y4e{bottom:426.462533pt;}
.y97{bottom:426.609200pt;}
.y1a{bottom:428.363733pt;}
.y1f3{bottom:431.345333pt;}
.y151{bottom:432.403064pt;}
.y10a{bottom:435.413766pt;}
.yce{bottom:438.522400pt;}
.y1b2{bottom:439.219467pt;}
.y21d{bottom:439.563867pt;}
.y17e{bottom:442.342533pt;}
.y150{bottom:442.347152pt;}
.y4d{bottom:442.462533pt;}
.y96{bottom:442.609200pt;}
.y19{bottom:444.363733pt;}
.y1f2{bottom:444.678667pt;}
.y14f{bottom:452.301285pt;}
.y1b1{bottom:452.552800pt;}
.ycd{bottom:452.965067pt;}
.y1f1{bottom:458.012000pt;}
.y17d{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.y95{bottom:458.609200pt;}
.y18{bottom:460.363733pt;}
.y14e{bottom:462.255417pt;}
.y10b{bottom:462.264324pt;}
.y1b0{bottom:465.886133pt;}
.y16a{bottom:467.693333pt;}
.y1f0{bottom:471.345333pt;}
.y14d{bottom:472.551064pt;}
.y66{bottom:474.102533pt;}
.y17c{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.y94{bottom:474.609200pt;}
.ycc{bottom:474.970400pt;}
.y17{bottom:476.363733pt;}
.y1af{bottom:479.219467pt;}
.y14c{bottom:482.434885pt;}
.y1ef{bottom:484.678667pt;}
.y10c{bottom:489.101124pt;}
.ycb{bottom:489.413067pt;}
.y17b{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y93{bottom:490.609200pt;}
.y14b{bottom:492.318706pt;}
.y16{bottom:492.363733pt;}
.y1ae{bottom:492.552800pt;}
.y1ee{bottom:498.012000pt;}
.y14a{bottom:502.624397pt;}
.yca{bottom:503.855733pt;}
.y1ad{bottom:505.886133pt;}
.y65{bottom:505.982533pt;}
.y17a{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.y92{bottom:506.609200pt;}
.y15{bottom:508.363733pt;}
.y1ed{bottom:511.345333pt;}
.y149{bottom:512.508218pt;}
.y10d{bottom:515.944803pt;}
.yc9{bottom:518.298400pt;}
.y1ac{bottom:519.219467pt;}
.y179{bottom:522.342533pt;}
.y148{bottom:522.452306pt;}
.y48{bottom:522.462533pt;}
.y91{bottom:522.609200pt;}
.y14{bottom:524.363733pt;}
.y1ec{bottom:524.678667pt;}
.y1ab{bottom:532.552800pt;}
.y147{bottom:532.757997pt;}
.y10e{bottom:537.422498pt;}
.y1eb{bottom:538.012000pt;}
.y178{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.y90{bottom:538.609200pt;}
.yc8{bottom:540.303733pt;}
.y13{bottom:540.363733pt;}
.y146{bottom:542.852753pt;}
.y1aa{bottom:545.886133pt;}
.y1ea{bottom:551.345333pt;}
.y116{bottom:551.537333pt;}
.y145{bottom:552.806885pt;}
.yfd{bottom:552.907867pt;}
.y177{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.y8f{bottom:554.609200pt;}
.yc7{bottom:554.746400pt;}
.y12{bottom:556.363733pt;}
.y1a9{bottom:559.219467pt;}
.y144{bottom:562.761018pt;}
.y1e9{bottom:564.678667pt;}
.yc6{bottom:569.189067pt;}
.y176{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.y8e{bottom:570.609200pt;}
.yfc{bottom:571.331534pt;}
.yfb{bottom:571.369307pt;}
.yfa{bottom:571.391583pt;}
.yf9{bottom:571.424949pt;}
.yf8{bottom:571.469403pt;}
.yf7{bottom:571.491679pt;}
.yf6{bottom:571.536142pt;}
.yf5{bottom:571.569499pt;}
.yf4{bottom:571.591775pt;}
.yf3{bottom:571.636229pt;}
.yf2{bottom:571.669595pt;}
.yf1{bottom:571.691871pt;}
.yf0{bottom:571.736325pt;}
.y1a8{bottom:572.552800pt;}
.y143{bottom:573.438357pt;}
.yef{bottom:576.781708pt;}
.yee{bottom:576.808400pt;}
.y1e8{bottom:578.012000pt;}
.y142{bottom:583.251866pt;}
.yc5{bottom:583.631733pt;}
.y1a7{bottom:585.886133pt;}
.y175{bottom:586.342533pt;}
.y44{bottom:586.462533pt;}
.y8d{bottom:586.609200pt;}
.yff{bottom:589.632800pt;}
.y1e7{bottom:591.345333pt;}
.y141{bottom:593.095509pt;}
.yea{bottom:596.307600pt;}
.y11{bottom:596.504267pt;}
.yc4{bottom:598.074400pt;}
.y1a6{bottom:599.219467pt;}
.y174{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.y8c{bottom:602.609200pt;}
.y140{bottom:603.129997pt;}
.y1e6{bottom:604.678667pt;}
.y16b{bottom:606.937600pt;}
.y10{bottom:607.571600pt;}
.y1a5{bottom:612.552800pt;}
.y13f{bottom:613.375421pt;}
.y1e5{bottom:618.012000pt;}
.y173{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.y8b{bottom:618.609200pt;}
.yc3{bottom:620.079733pt;}
.y13e{bottom:623.419955pt;}
.y1a4{bottom:625.886133pt;}
.y1e4{bottom:631.345333pt;}
.y13d{bottom:633.554889pt;}
.y172{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.y8a{bottom:634.609200pt;}
.yf{bottom:635.763200pt;}
.y16c{bottom:637.094933pt;}
.y1a3{bottom:639.219467pt;}
.yc2{bottom:642.085067pt;}
.y13c{bottom:643.308131pt;}
.y1e3{bottom:644.678667pt;}
.ye{bottom:647.763200pt;}
.y183{bottom:649.982533pt;}
.y171{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.y89{bottom:650.609200pt;}
.y1a2{bottom:652.552800pt;}
.y13b{bottom:653.553555pt;}
.y1e2{bottom:658.012000pt;}
.y13a{bottom:663.618177pt;}
.yd{bottom:664.585600pt;}
.y16d{bottom:665.839867pt;}
.y1a1{bottom:665.886133pt;}
.yc1{bottom:665.978400pt;}
.y170{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.y88{bottom:666.609200pt;}
.y1e1{bottom:671.345333pt;}
.yc{bottom:671.763200pt;}
.y139{bottom:673.501998pt;}
.y1a0{bottom:679.219467pt;}
.y3e{bottom:682.462533pt;}
.y87{bottom:682.609200pt;}
.y138{bottom:683.446086pt;}
.y1e0{bottom:684.678667pt;}
.yeb{bottom:686.432544pt;}
.yb{bottom:688.585733pt;}
.yc0{bottom:691.759733pt;}
.y19f{bottom:692.552800pt;}
.y137{bottom:693.781911pt;}
.ya{bottom:695.763200pt;}
.y16f{bottom:697.982533pt;}
.y1df{bottom:698.012000pt;}
.y3d{bottom:698.462533pt;}
.y86{bottom:698.609200pt;}
.y136{bottom:703.776221pt;}
.y19e{bottom:705.886133pt;}
.y1de{bottom:711.345333pt;}
.y9{bottom:712.585733pt;}
.y135{bottom:714.122091pt;}
.y3c{bottom:714.462533pt;}
.y85{bottom:714.609200pt;}
.y19d{bottom:719.219467pt;}
.ybf{bottom:720.555867pt;}
.y134{bottom:724.116401pt;}
.y1dd{bottom:724.678667pt;}
.y3b{bottom:730.462533pt;}
.y84{bottom:730.609200pt;}
.y19c{bottom:732.552800pt;}
.y132{bottom:734.311603pt;}
.ybe{bottom:737.889200pt;}
.y1dc{bottom:738.012000pt;}
.y8{bottom:738.121067pt;}
.y133{bottom:744.004577pt;}
.y3a{bottom:746.462533pt;}
.y83{bottom:746.609200pt;}
.y21c{bottom:751.345333pt;}
.y1db{bottom:751.347467pt;}
.y131{bottom:753.948665pt;}
.ybd{bottom:755.222533pt;}
.y7{bottom:756.783067pt;}
.y19b{bottom:761.984533pt;}
.y39{bottom:762.462533pt;}
.y130{bottom:764.204134pt;}
.y21b{bottom:764.678667pt;}
.y1da{bottom:764.680800pt;}
.y115{bottom:769.700267pt;}
.y12f{bottom:774.138177pt;}
.yec{bottom:776.545891pt;}
.y21a{bottom:778.012000pt;}
.y1d9{bottom:778.014133pt;}
.y82{bottom:778.249200pt;}
.y38{bottom:778.462533pt;}
.y12e{bottom:784.232933pt;}
.y11e{bottom:788.787067pt;}
.y219{bottom:791.345333pt;}
.y1d8{bottom:791.347467pt;}
.ybc{bottom:794.342533pt;}
.y12b{bottom:794.441601pt;}
.y37{bottom:794.462533pt;}
.y6{bottom:797.816533pt;}
.y12a{bottom:804.345511pt;}
.y218{bottom:804.678667pt;}
.y1d7{bottom:804.680800pt;}
.ybb{bottom:810.342533pt;}
.y36{bottom:810.462533pt;}
.y19a{bottom:810.464533pt;}
.y81{bottom:810.475867pt;}
.y129{bottom:814.480445pt;}
.y217{bottom:818.012000pt;}
.y1d6{bottom:818.014133pt;}
.y128{bottom:824.384355pt;}
.y199{bottom:826.104533pt;}
.yba{bottom:826.342533pt;}
.y35{bottom:826.462533pt;}
.y80{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y216{bottom:831.345333pt;}
.y1d5{bottom:831.347467pt;}
.y127{bottom:834.378666pt;}
.y34{bottom:842.462533pt;}
.y7f{bottom:842.475867pt;}
.y126{bottom:844.473422pt;}
.y215{bottom:844.678667pt;}
.y1d4{bottom:844.680800pt;}
.y125{bottom:854.698757pt;}
.yb9{bottom:857.982533pt;}
.y214{bottom:858.012000pt;}
.y1d3{bottom:858.014133pt;}
.y198{bottom:858.104533pt;}
.y33{bottom:858.462533pt;}
.y7e{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y124{bottom:864.502221pt;}
.yed{bottom:866.659237pt;}
.y213{bottom:871.345333pt;}
.y1d2{bottom:871.347467pt;}
.y32{bottom:874.462533pt;}
.y7d{bottom:874.475867pt;}
.y123{bottom:874.898313pt;}
.y122{bottom:884.641511pt;}
.y212{bottom:884.678667pt;}
.y1d1{bottom:884.680800pt;}
.y31{bottom:890.462533pt;}
.y197{bottom:890.464533pt;}
.y7c{bottom:890.475867pt;}
.y121{bottom:894.776445pt;}
.y3{bottom:895.045333pt;}
.y211{bottom:898.012000pt;}
.y1d0{bottom:898.014133pt;}
.y120{bottom:904.871201pt;}
.y30{bottom:906.462533pt;}
.y196{bottom:906.464533pt;}
.y7b{bottom:906.475867pt;}
.y210{bottom:911.345333pt;}
.y1cf{bottom:911.347467pt;}
.y11f{bottom:914.825333pt;}
.y195{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.y7a{bottom:922.475867pt;}
.y20f{bottom:924.678667pt;}
.y1ce{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y67{bottom:1006.594400pt;}
.y16e{bottom:1006.597067pt;}
.y20e{bottom:1006.598667pt;}
.yb8{bottom:1006.614267pt;}
.yb3{bottom:1006.617333pt;}
.ye6{bottom:1006.649600pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h1a{height:19.227572pt;}
.h1e{height:21.026011pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.h16{height:28.883478pt;}
.h8{height:29.160156pt;}
.he{height:29.169756pt;}
.h14{height:29.645833pt;}
.h12{height:31.083333pt;}
.h11{height:31.104167pt;}
.h25{height:33.476991pt;}
.h1d{height:33.541298pt;}
.h22{height:33.687752pt;}
.h15{height:34.437393pt;}
.h24{height:35.253958pt;}
.h10{height:37.057292pt;}
.h13{height:37.437500pt;}
.hd{height:38.828125pt;}
.hb{height:38.854167pt;}
.ha{height:38.880208pt;}
.h1b{height:40.550335pt;}
.hf{height:46.796875pt;}
.h29{height:48.236875pt;}
.hc{height:48.377312pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h1c{height:52.025604pt;}
.h19{height:52.133867pt;}
.h17{height:52.134609pt;}
.h1f{height:52.136465pt;}
.h28{height:52.405245pt;}
.h26{height:61.761438pt;}
.h27{height:64.569030pt;}
.h23{height:67.376623pt;}
.h4{height:81.927344pt;}
.h20{height:138.640050pt;}
.h21{height:797.480000pt;}
.h18{height:811.034667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w3{width:607.746667pt;}
.w2{width:631.366667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:1.482267pt;}
.x2a{left:15.499600pt;}
.x3c{left:62.740133pt;}
.xa{left:68.031467pt;}
.x15{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x29{left:90.616000pt;}
.x30{left:92.251600pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x18{left:108.177042pt;}
.x42{left:109.606267pt;}
.x3{left:111.491467pt;}
.x6{left:117.170133pt;}
.x2b{left:120.332133pt;}
.x17{left:122.138267pt;}
.x3a{left:145.015733pt;}
.x19{left:146.957200pt;}
.x2c{left:166.909733pt;}
.x40{left:172.698133pt;}
.x1a{left:179.282786pt;}
.x14{left:187.644800pt;}
.x5{left:189.223467pt;}
.x3d{left:195.683333pt;}
.x1b{left:219.686093pt;}
.x38{left:233.243600pt;}
.x39{left:234.577600pt;}
.x1c{left:260.093067pt;}
.x31{left:264.701867pt;}
.x1d{left:300.500058pt;}
.x16{left:301.910533pt;}
.x1e{left:340.907041pt;}
.x28{left:375.617467pt;}
.x1f{left:381.314015pt;}
.x2d{left:382.802000pt;}
.x9{left:404.481333pt;}
.xc{left:406.311467pt;}
.x20{left:421.721006pt;}
.x11{left:425.182533pt;}
.x7{left:427.103467pt;}
.x41{left:428.980800pt;}
.xe{left:436.539200pt;}
.x43{left:447.878267pt;}
.x12{left:455.422533pt;}
.x21{left:462.117654pt;}
.xd{left:466.912533pt;}
.x22{left:502.534963pt;}
.x3f{left:526.167200pt;}
.x33{left:533.152133pt;}
.x23{left:542.941954pt;}
.x24{left:583.348928pt;}
.x35{left:585.503600pt;}
.x10{left:589.770933pt;}
.x32{left:595.005467pt;}
.x37{left:597.550533pt;}
.x2{left:616.324800pt;}
.x34{left:619.278133pt;}
.x36{left:621.448909pt;}
.x25{left:623.755911pt;}
.x3b{left:641.526800pt;}
.xf{left:647.459200pt;}
.x3e{left:661.216133pt;}
.x26{left:664.162902pt;}
.x13{left:666.356800pt;}
.x2e{left:679.722667pt;}
.x27{left:696.478146pt;}
}




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