
    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_3fafbc23b4b09c99ec34e285.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aee1b98cdf404062fe50b032.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;font-style:normal;font-weight: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_9ce09ff516f55c04b76bc971.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;font-style:normal;font-weight: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_d8a447a11f07b9fc65620991.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;font-style:normal;font-weight: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_53b6f8d65c6d7f12988f2f78.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909000;font-style:normal;font-weight: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_27344a91cbfa1d7d87d1e7a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.833000;font-style:normal;font-weight: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_8a29e67c17ae0f67b60f9144.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6bf0e677faae75bdda0a02c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6f8dd47c3e4ceb0ae54ed70c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;font-style:normal;font-weight: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_ccd54c0dff43c5abef614a19.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5f0184d5a1f3a2ffd34476c5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727000;font-style:normal;font-weight: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_c7311db5ec1ca341e5024f30.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940918;font-style:normal;font-weight: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_5a2a51ee1c862de1193b0e78.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910000;font-style:normal;font-weight: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_13e394d3a06f051544b65d22.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4a1911a627084d534c41395b.woff2')format("woff");}.fff{font-family:fff;line-height:0.686000;font-style:normal;font-weight: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_2ff1a3637c997085ba06e678.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ed5899f935c306bc8227a784.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.911000;font-style:normal;font-weight: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_1e9c18a6e1b8c42f59488dab.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.901000;font-style:normal;font-weight: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_8a739613b53218f02fd57275.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.674000;font-style:normal;font-weight: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_f66df262169aa3c9d10a122a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922000;font-style:normal;font-weight: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_0039d8e58e1e8a9ba3763e08.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;font-style:normal;font-weight: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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.575000;font-style:normal;font-weight: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_f94852c3fef0a20b7c2bc8d0.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight: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_166a9bfac1c1606be00264c1.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.846000;font-style:normal;font-weight: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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.575000;font-style:normal;font-weight: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_3d9e003e6f99d040ddac57a4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight: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_6fa513b5db964cf1ca5e1904.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_12907edaae2a2dfa3b62d392.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.875977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v6{vertical-align:-22.168658px;}
.v2{vertical-align:-5.976000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.072242px;}
.v1{vertical-align:17.424720px;}
.v4{vertical-align:22.168658px;}
.v3{vertical-align:35.862000px;}
.ls18{letter-spacing:-0.005808px;}
.ls2{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000031px;}
.ls50{letter-spacing:0.000557px;}
.ls4c{letter-spacing:0.001002px;}
.ls27{letter-spacing:0.001490px;}
.ls47{letter-spacing:0.003414px;}
.ls16{letter-spacing:0.005808px;}
.ls5b{letter-spacing:0.054432px;}
.ls5a{letter-spacing:0.076080px;}
.ls5d{letter-spacing:0.085536px;}
.ls5c{letter-spacing:0.116640px;}
.ls5e{letter-spacing:0.132192px;}
.ls0{letter-spacing:0.139968px;}
.ls25{letter-spacing:0.221549px;}
.ls1{letter-spacing:0.386400px;}
.ls3{letter-spacing:0.511056px;}
.ls4{letter-spacing:0.524160px;}
.ls5{letter-spacing:0.654480px;}
.ls6{letter-spacing:0.725760px;}
.ls3f{letter-spacing:0.894031px;}
.ls57{letter-spacing:2.144023px;}
.ls23{letter-spacing:3.156921px;}
.ls34{letter-spacing:4.519066px;}
.ls46{letter-spacing:4.841856px;}
.ls41{letter-spacing:4.949453px;}
.ls44{letter-spacing:5.003251px;}
.ls42{letter-spacing:5.218445px;}
.ls39{letter-spacing:5.272243px;}
.ls2a{letter-spacing:12.283559px;}
.ls2b{letter-spacing:12.289559px;}
.ls30{letter-spacing:13.718592px;}
.ls2e{letter-spacing:13.879987px;}
.ls32{letter-spacing:14.794560px;}
.ls3e{letter-spacing:14.999326px;}
.ls54{letter-spacing:15.020825px;}
.ls1b{letter-spacing:15.601536px;}
.lsd{letter-spacing:15.924326px;}
.ls28{letter-spacing:16.290532px;}
.ls2d{letter-spacing:16.462310px;}
.ls52{letter-spacing:16.516109px;}
.ls7{letter-spacing:16.569907px;}
.ls33{letter-spacing:16.838899px;}
.ls15{letter-spacing:17.592077px;}
.ls1f{letter-spacing:18.024532px;}
.ls40{letter-spacing:18.183859px;}
.ls53{letter-spacing:18.343052px;}
.ls29{letter-spacing:18.348532px;}
.lsc{letter-spacing:18.399053px;}
.ls4b{letter-spacing:18.432557px;}
.lsb{letter-spacing:18.452851px;}
.ls21{letter-spacing:18.472994px;}
.ls19{letter-spacing:18.560448px;}
.ls2f{letter-spacing:19.044634px;}
.ls59{letter-spacing:19.098432px;}
.lsa{letter-spacing:19.206029px;}
.ls49{letter-spacing:19.367424px;}
.ls24{letter-spacing:19.859549px;}
.lse{letter-spacing:20.120602px;}
.ls4a{letter-spacing:20.166031px;}
.ls51{letter-spacing:20.174400px;}
.ls1a{letter-spacing:20.389594px;}
.ls48{letter-spacing:20.927578px;}
.ls26{letter-spacing:21.237967px;}
.ls9{letter-spacing:21.357965px;}
.ls2c{letter-spacing:21.411763px;}
.ls3b{letter-spacing:21.788352px;}
.lsf{letter-spacing:21.842150px;}
.ls17{letter-spacing:22.326336px;}
.ls10{letter-spacing:22.487731px;}
.ls22{letter-spacing:22.751549px;}
.ls14{letter-spacing:22.864320px;}
.ls4f{letter-spacing:23.234023px;}
.ls11{letter-spacing:24.209280px;}
.ls1d{letter-spacing:24.408532px;}
.ls1c{letter-spacing:24.478272px;}
.ls56{letter-spacing:24.787606px;}
.ls13{letter-spacing:25.177651px;}
.ls12{letter-spacing:25.231450px;}
.ls8{letter-spacing:25.877030px;}
.ls31{letter-spacing:26.038426px;}
.ls58{letter-spacing:26.676961px;}
.ls20{letter-spacing:29.887002px;}
.ls3c{letter-spacing:30.503693px;}
.ls3d{letter-spacing:31.956250px;}
.ls55{letter-spacing:34.554387px;}
.ls38{letter-spacing:44.654004px;}
.ls36{letter-spacing:44.660004px;}
.ls37{letter-spacing:44.984004px;}
.ls45{letter-spacing:45.080004px;}
.ls4d{letter-spacing:45.158004px;}
.ls43{letter-spacing:45.164004px;}
.ls35{letter-spacing:45.224004px;}
.ls3a{letter-spacing:45.272004px;}
.ls4e{letter-spacing:50.924338px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(51,51,51),0 0.015em rgb(51,51,51),0.015em 0 rgb(51,51,51),0 -0.015em  rgb(51,51,51);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(51,51,51);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws106{word-spacing:-55.293996px;}
.ws12c{word-spacing:-38.937826px;}
.ws86{word-spacing:-36.071827px;}
.ws11f{word-spacing:-20.739283px;}
.ws0{word-spacing:-15.847488px;}
.ws22{word-spacing:-15.359443px;}
.ws1{word-spacing:-13.815360px;}
.ws4d{word-spacing:-8.079262px;}
.ws4e{word-spacing:-8.073454px;}
.ws124{word-spacing:-8.064847px;}
.ws10d{word-spacing:-7.392776px;}
.ws107{word-spacing:-5.057050px;}
.ws120{word-spacing:-5.027088px;}
.wsd4{word-spacing:-4.572864px;}
.wsa6{word-spacing:-3.093408px;}
.wsa5{word-spacing:-3.079513px;}
.wsa4{word-spacing:-3.047426px;}
.ws100{word-spacing:-2.985811px;}
.ws138{word-spacing:-2.770618px;}
.ws14{word-spacing:-2.663021px;}
.wsbd{word-spacing:-2.555424px;}
.ws150{word-spacing:-2.447827px;}
.ws148{word-spacing:-2.125037px;}
.ws8a{word-spacing:-2.071238px;}
.ws14f{word-spacing:-1.963642px;}
.wsc1{word-spacing:-1.909843px;}
.wsc0{word-spacing:-1.856045px;}
.ws76{word-spacing:-1.802246px;}
.ws157{word-spacing:-1.748448px;}
.ws151{word-spacing:-1.694650px;}
.wsc2{word-spacing:-1.640851px;}
.ws92{word-spacing:-1.587053px;}
.wsce{word-spacing:-1.533254px;}
.ws6a{word-spacing:-1.479456px;}
.wsbc{word-spacing:-1.264262px;}
.wsbe{word-spacing:-1.210464px;}
.wsf9{word-spacing:-1.156666px;}
.ws156{word-spacing:-1.102867px;}
.ws7a{word-spacing:-1.049069px;}
.wsfe{word-spacing:-0.995270px;}
.ws61{word-spacing:-0.833875px;}
.ws60{word-spacing:-0.780077px;}
.wsac{word-spacing:-0.726278px;}
.ws93{word-spacing:-0.618682px;}
.wsa9{word-spacing:-0.511085px;}
.ws1f{word-spacing:-0.457286px;}
.wse6{word-spacing:-0.403488px;}
.ws87{word-spacing:-0.349690px;}
.ws88{word-spacing:-0.326214px;}
.ws68{word-spacing:-0.295891px;}
.ws56{word-spacing:-0.242093px;}
.wsad{word-spacing:-0.188294px;}
.ws69{word-spacing:-0.080698px;}
.ws110{word-spacing:-0.059776px;}
.ws2d{word-spacing:-0.053798px;}
.wsc8{word-spacing:-0.035866px;}
.ws82{word-spacing:-0.026899px;}
.ws3{word-spacing:0.000000px;}
.wse8{word-spacing:0.026899px;}
.ws14c{word-spacing:0.031225px;}
.ws78{word-spacing:0.188294px;}
.ws77{word-spacing:0.242093px;}
.ws62{word-spacing:0.295891px;}
.ws89{word-spacing:0.349690px;}
.ws8e{word-spacing:0.403488px;}
.wsb7{word-spacing:0.457286px;}
.ws6c{word-spacing:0.511085px;}
.ws2a{word-spacing:0.564883px;}
.ws29{word-spacing:0.618682px;}
.wsb6{word-spacing:0.672480px;}
.ws6d{word-spacing:0.780077px;}
.wsc5{word-spacing:0.833875px;}
.ws34{word-spacing:0.887674px;}
.wsa1{word-spacing:0.941472px;}
.ws7f{word-spacing:0.995270px;}
.wsb3{word-spacing:1.049069px;}
.wsb2{word-spacing:1.102867px;}
.ws53{word-spacing:1.147692px;}
.ws91{word-spacing:1.156666px;}
.ws21{word-spacing:1.210464px;}
.ws75{word-spacing:1.264262px;}
.ws9c{word-spacing:1.318061px;}
.ws49{word-spacing:1.371859px;}
.ws45{word-spacing:1.425658px;}
.wsd0{word-spacing:1.479456px;}
.ws16{word-spacing:1.533254px;}
.wsf5{word-spacing:1.566121px;}
.wsd3{word-spacing:1.587053px;}
.ws37{word-spacing:1.640851px;}
.ws9e{word-spacing:1.694650px;}
.wsd2{word-spacing:1.748448px;}
.wsba{word-spacing:1.802246px;}
.ws54{word-spacing:1.805223px;}
.ws154{word-spacing:1.856045px;}
.ws6b{word-spacing:1.909843px;}
.ws72{word-spacing:1.963642px;}
.ws7e{word-spacing:2.017440px;}
.wsab{word-spacing:2.071238px;}
.wsf{word-spacing:2.125037px;}
.wsde{word-spacing:2.178835px;}
.ws40{word-spacing:2.232634px;}
.wsc9{word-spacing:2.286432px;}
.ws14b{word-spacing:2.447827px;}
.ws59{word-spacing:2.501626px;}
.ws13{word-spacing:2.609222px;}
.ws8d{word-spacing:2.716819px;}
.wsa8{word-spacing:2.770618px;}
.wsf2{word-spacing:2.797517px;}
.ws46{word-spacing:2.824416px;}
.ws12{word-spacing:2.932013px;}
.ws20{word-spacing:2.985811px;}
.ws96{word-spacing:3.000735px;}
.ws97{word-spacing:3.033892px;}
.wsc{word-spacing:3.039610px;}
.ws104{word-spacing:3.060061px;}
.ws95{word-spacing:3.060511px;}
.ws44{word-spacing:3.060860px;}
.ws153{word-spacing:3.069786px;}
.ws10{word-spacing:3.093408px;}
.ws81{word-spacing:3.147206px;}
.ws67{word-spacing:3.201005px;}
.ws55{word-spacing:3.299613px;}
.ws70{word-spacing:3.308602px;}
.ws155{word-spacing:3.416198px;}
.ws63{word-spacing:3.469997px;}
.ws1a{word-spacing:3.513036px;}
.wsc4{word-spacing:3.523795px;}
.wsaf{word-spacing:3.566834px;}
.ws5c{word-spacing:3.577594px;}
.wsb0{word-spacing:3.631392px;}
.wsb9{word-spacing:3.685190px;}
.wsa7{word-spacing:3.738989px;}
.ws6e{word-spacing:3.792787px;}
.ws26{word-spacing:3.900384px;}
.wsc6{word-spacing:3.954182px;}
.wsae{word-spacing:4.007981px;}
.wsfb{word-spacing:4.061779px;}
.ws41{word-spacing:4.115578px;}
.ws6{word-spacing:4.169376px;}
.ws140{word-spacing:4.276973px;}
.wsbb{word-spacing:4.330771px;}
.ws5b{word-spacing:4.384570px;}
.ws149{word-spacing:4.417225px;}
.ws65{word-spacing:4.483200px;}
.wsea{word-spacing:4.492166px;}
.ws111{word-spacing:4.495125px;}
.ws47{word-spacing:4.545965px;}
.ws8c{word-spacing:4.599763px;}
.ws9d{word-spacing:4.653562px;}
.ws116{word-spacing:4.741524px;}
.ws30{word-spacing:4.761158px;}
.ws31{word-spacing:4.814957px;}
.ws33{word-spacing:4.868755px;}
.wscb{word-spacing:4.922554px;}
.ws5f{word-spacing:5.030150px;}
.ws7c{word-spacing:5.083949px;}
.wscd{word-spacing:5.137747px;}
.ws136{word-spacing:5.245344px;}
.wsa{word-spacing:5.299142px;}
.ws102{word-spacing:5.352941px;}
.wsd{word-spacing:5.379825px;}
.wsa0{word-spacing:5.406739px;}
.ws12f{word-spacing:5.451535px;}
.ws15{word-spacing:5.460538px;}
.ws12b{word-spacing:5.511310px;}
.ws2c{word-spacing:5.514336px;}
.ws27{word-spacing:5.568134px;}
.wsb4{word-spacing:5.621933px;}
.wse7{word-spacing:5.675731px;}
.ws7d{word-spacing:5.729530px;}
.ws144{word-spacing:5.783328px;}
.ws1d{word-spacing:5.837126px;}
.ws57{word-spacing:5.890925px;}
.ws94{word-spacing:5.929740px;}
.ws25{word-spacing:5.944723px;}
.ws24{word-spacing:5.998522px;}
.ws85{word-spacing:6.052320px;}
.wsdf{word-spacing:6.106118px;}
.ws9{word-spacing:6.159917px;}
.wsdd{word-spacing:6.168842px;}
.wscf{word-spacing:6.213715px;}
.ws83{word-spacing:6.267514px;}
.ws7{word-spacing:6.321312px;}
.ws8b{word-spacing:6.375110px;}
.wse1{word-spacing:6.428909px;}
.ws119{word-spacing:6.533821px;}
.ws36{word-spacing:6.536506px;}
.ws79{word-spacing:6.590304px;}
.ws145{word-spacing:6.644102px;}
.ws48{word-spacing:6.697901px;}
.ws32{word-spacing:6.751699px;}
.wsc3{word-spacing:6.805498px;}
.wsd1{word-spacing:6.859296px;}
.ws5a{word-spacing:6.913094px;}
.ws5d{word-spacing:6.966893px;}
.ws6f{word-spacing:7.020691px;}
.ws74{word-spacing:7.074490px;}
.ws38{word-spacing:7.102343px;}
.ws11{word-spacing:7.128288px;}
.ws80{word-spacing:7.182086px;}
.ws146{word-spacing:7.224138px;}
.ws64{word-spacing:7.343482px;}
.ws2b{word-spacing:7.397280px;}
.ws90{word-spacing:7.451078px;}
.wsef{word-spacing:7.477978px;}
.ws3e{word-spacing:7.504877px;}
.wsb8{word-spacing:7.558675px;}
.ws101{word-spacing:7.612474px;}
.ws8f{word-spacing:7.666272px;}
.wsdb{word-spacing:7.693171px;}
.ws8{word-spacing:7.720070px;}
.wsf3{word-spacing:7.746970px;}
.ws152{word-spacing:7.773869px;}
.wsd9{word-spacing:7.800768px;}
.wsb{word-spacing:7.827667px;}
.wsd6{word-spacing:7.854566px;}
.wsec{word-spacing:7.908365px;}
.ws139{word-spacing:7.989062px;}
.ws9f{word-spacing:8.042861px;}
.wsa3{word-spacing:8.096659px;}
.ws13e{word-spacing:8.150458px;}
.wsd8{word-spacing:8.231155px;}
.ws3a{word-spacing:8.258054px;}
.ws3b{word-spacing:8.365651px;}
.wsbf{word-spacing:8.419450px;}
.ws2e{word-spacing:8.461140px;}
.ws2f{word-spacing:8.473248px;}
.ws13a{word-spacing:8.527046px;}
.ws11d{word-spacing:8.592630px;}
.ws129{word-spacing:8.619642px;}
.wsf4{word-spacing:8.679417px;}
.ws71{word-spacing:8.688442px;}
.ws1b{word-spacing:8.742240px;}
.ws28{word-spacing:8.796038px;}
.ws3c{word-spacing:8.849837px;}
.ws13c{word-spacing:8.957434px;}
.ws84{word-spacing:9.065030px;}
.ws141{word-spacing:9.172627px;}
.wseb{word-spacing:9.199526px;}
.ws158{word-spacing:9.305053px;}
.ws7b{word-spacing:9.441619px;}
.ws13f{word-spacing:9.495418px;}
.ws18{word-spacing:9.656813px;}
.wsff{word-spacing:9.710611px;}
.ws35{word-spacing:9.764410px;}
.ws17{word-spacing:9.818208px;}
.ws9b{word-spacing:9.979603px;}
.ws121{word-spacing:9.993738px;}
.ws128{word-spacing:9.994480px;}
.ws115{word-spacing:10.087200px;}
.ws113{word-spacing:10.114032px;}
.ws4b{word-spacing:10.140998px;}
.ws4c{word-spacing:10.194797px;}
.wsb1{word-spacing:10.248595px;}
.ws1e{word-spacing:10.302394px;}
.ws105{word-spacing:10.356192px;}
.ws23{word-spacing:10.517587px;}
.wse0{word-spacing:10.571386px;}
.ws50{word-spacing:10.592236px;}
.ws66{word-spacing:10.614424px;}
.wsa2{word-spacing:10.625184px;}
.wsc7{word-spacing:10.678982px;}
.ws3f{word-spacing:10.786579px;}
.ws135{word-spacing:10.840378px;}
.ws58{word-spacing:10.894176px;}
.wse{word-spacing:10.947974px;}
.ws13d{word-spacing:11.055571px;}
.ws1c{word-spacing:11.163168px;}
.ws103{word-spacing:11.216966px;}
.ws14d{word-spacing:11.252227px;}
.ws42{word-spacing:11.378362px;}
.ws10f{word-spacing:11.429095px;}
.ws19{word-spacing:11.647354px;}
.ws137{word-spacing:11.808749px;}
.ws43{word-spacing:12.023942px;}
.ws114{word-spacing:12.065030px;}
.ws143{word-spacing:12.077741px;}
.ws13b{word-spacing:12.131539px;}
.ws142{word-spacing:12.185338px;}
.ws4a{word-spacing:12.292934px;}
.ws14e{word-spacing:14.199786px;}
.wse3{word-spacing:15.090451px;}
.wse4{word-spacing:15.144250px;}
.ws14a{word-spacing:15.359443px;}
.ws11e{word-spacing:16.435402px;}
.ws12d{word-spacing:16.495946px;}
.ws11c{word-spacing:16.496122px;}
.wse5{word-spacing:16.596806px;}
.wsb5{word-spacing:16.758202px;}
.ws11b{word-spacing:18.428122px;}
.wse2{word-spacing:19.232928px;}
.wsca{word-spacing:19.604099px;}
.ws117{word-spacing:20.048122px;}
.wsfa{word-spacing:21.383553px;}
.ws11a{word-spacing:21.841162px;}
.wsfd{word-spacing:21.911553px;}
.ws118{word-spacing:22.094122px;}
.wsfc{word-spacing:22.343553px;}
.ws39{word-spacing:22.428357px;}
.wsaa{word-spacing:22.834279px;}
.wse9{word-spacing:22.894055px;}
.wscc{word-spacing:23.232417px;}
.ws5{word-spacing:23.312640px;}
.ws12a{word-spacing:25.201754px;}
.ws134{word-spacing:26.161162px;}
.ws131{word-spacing:29.347027px;}
.ws133{word-spacing:29.400826px;}
.ws3d{word-spacing:29.508422px;}
.wsf0{word-spacing:30.611290px;}
.ws10b{word-spacing:30.665088px;}
.ws4{word-spacing:31.091012px;}
.ws5e{word-spacing:32.897722px;}
.ws12e{word-spacing:34.314399px;}
.wsdc{word-spacing:34.808314px;}
.wsee{word-spacing:34.866298px;}
.wsf1{word-spacing:35.114064px;}
.wsed{word-spacing:35.143258px;}
.wsd5{word-spacing:35.566234px;}
.ws108{word-spacing:39.488026px;}
.ws127{word-spacing:40.650940px;}
.wsda{word-spacing:41.209574px;}
.ws10a{word-spacing:41.639962px;}
.ws112{word-spacing:43.560175px;}
.ws51{word-spacing:44.490940px;}
.ws52{word-spacing:44.526175px;}
.ws132{word-spacing:44.696122px;}
.wsd7{word-spacing:45.169171px;}
.ws109{word-spacing:45.327994px;}
.wsf6{word-spacing:55.125058px;}
.ws98{word-spacing:57.539309px;}
.ws73{word-spacing:58.281600px;}
.ws147{word-spacing:68.297069px;}
.ws130{word-spacing:68.682164px;}
.ws99{word-spacing:75.677607px;}
.ws123{word-spacing:84.671220px;}
.ws126{word-spacing:102.206588px;}
.wsf7{word-spacing:152.081082px;}
.ws122{word-spacing:155.108083px;}
.ws9a{word-spacing:156.086047px;}
.wsf8{word-spacing:181.968882px;}
.ws125{word-spacing:193.535626px;}
.ws10c{word-spacing:242.279019px;}
.ws10e{word-spacing:488.590462px;}
.ws4f{word-spacing:821.132829px;}
.ws2{word-spacing:849.290400px;}
._5{margin-left:-37.833890px;}
._4{margin-left:-35.076557px;}
._3b{margin-left:-29.652386px;}
._3f{margin-left:-24.966775px;}
._2d{margin-left:-23.944606px;}
._21{margin-left:-8.074048px;}
._3{margin-left:-5.881958px;}
._c{margin-left:-4.626662px;}
._2{margin-left:-2.685602px;}
._0{margin-left:-1.107840px;}
._6{width:1.506355px;}
._1{width:2.685602px;}
._2b{width:3.873485px;}
._2f{width:5.057050px;}
._31{width:6.827424px;}
._30{width:7.991549px;}
._23{width:12.513101px;}
._f{width:13.826189px;}
._29{width:15.332544px;}
._20{width:16.470946px;}
._17{width:17.781026px;}
._e{width:19.018390px;}
._19{width:20.363350px;}
._10{width:22.263902px;}
._b{width:24.209280px;}
._13{width:26.187362px;}
._18{width:27.253862px;}
._14{width:28.329074px;}
._d{width:29.858112px;}
._8{width:31.073549px;}
._15{width:32.611776px;}
._7{width:33.894302px;}
._1c{width:34.968960px;}
._2e{width:36.098726px;}
._1b{width:37.098970px;}
._2c{width:38.573453px;}
._32{width:39.654394px;}
._1a{width:41.026253px;}
._a{width:43.038600px;}
._11{width:44.921664px;}
._16{width:46.774046px;}
._1f{width:47.852359px;}
._1e{width:48.998650px;}
._1d{width:50.006268px;}
._12{width:51.319680px;}
._3e{width:52.453440px;}
._33{width:60.845990px;}
._34{width:65.203661px;}
._2a{width:68.741940px;}
._27{width:73.572033px;}
._24{width:75.061433px;}
._22{width:80.697600px;}
._9{width:96.836850px;}
._3c{width:99.957427px;}
._3d{width:105.422938px;}
._26{width:117.038478px;}
._39{width:155.122588px;}
._25{width:195.502918px;}
._3a{width:203.388990px;}
._28{width:213.615144px;}
._38{width:236.233171px;}
._37{width:257.844042px;}
._36{width:266.120971px;}
._35{width:288.297719px;}
.fc6{color:transparent;}
.fc3{color:rgb(181,54,3);}
.fc2{color:rgb(31,138,28);}
.fc1{color:rgb(0,37,178);}
.fc5{color:rgb(51,51,51);}
.fc4{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:13.078783px;}
.fsd{font-size:18.083050px;}
.fsa{font-size:21.757680px;}
.fsb{font-size:26.592720px;}
.fse{font-size:29.010240px;}
.fs8{font-size:29.041200px;}
.fsf{font-size:35.316720px;}
.fs9{font-size:35.865600px;}
.fs5{font-size:53.798400px;}
.fs10{font-size:59.040000px;}
.fs7{font-size:59.775600px;}
.fs0{font-size:64.800000px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:77.760000px;}
.fs6{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs2{font-size:131.040000px;}
.y0{bottom:0.000000px;}
.y212{bottom:4.635595px;}
.y23b{bottom:6.744881px;}
.y23f{bottom:9.518985px;}
.y24f{bottom:11.313994px;}
.y219{bottom:11.694753px;}
.y211{bottom:12.057381px;}
.y23a{bottom:12.293089px;}
.y253{bottom:13.772601px;}
.y1{bottom:14.031464px;}
.y247{bottom:15.061150px;}
.y21a{bottom:15.121588px;}
.y218{bottom:18.542378px;}
.y90{bottom:18.876780px;}
.y241{bottom:20.609358px;}
.y21c{bottom:21.963169px;}
.y8c{bottom:24.447775px;}
.y24d{bottom:28.720138px;}
.y93{bottom:28.803955px;}
.y21b{bottom:28.810795px;}
.y20c{bottom:29.826153px;}
.y8b{bottom:33.160135px;}
.y251{bottom:34.963208px;}
.y24e{bottom:42.119242px;}
.y5{bottom:43.489186px;}
.y252{bottom:61.922097px;}
.y45{bottom:63.168000px;}
.y4{bottom:63.649186px;}
.y21e{bottom:64.052192px;}
.y20d{bottom:95.171719px;}
.y11a{bottom:108.000000px;}
.y279{bottom:108.051000px;}
.y24b{bottom:109.314211px;}
.y14d{bottom:109.894500px;}
.y180{bottom:115.015500px;}
.y1de{bottom:117.070500px;}
.y81{bottom:117.724500px;}
.y2c3{bottom:120.712500px;}
.y254{bottom:123.387216px;}
.y88{bottom:123.550848px;}
.y44{bottom:124.174500px;}
.y2ed{bottom:124.438500px;}
.y278{bottom:124.489500px;}
.y29a{bottom:125.980500px;}
.y14c{bottom:126.333000px;}
.y1ac{bottom:126.718500px;}
.y119{bottom:127.347000px;}
.y17f{bottom:131.454000px;}
.ye5{bottom:132.238500px;}
.y87{bottom:132.263208px;}
.y80{bottom:134.161500px;}
.y20a{bottom:135.280500px;}
.y2c2{bottom:137.151000px;}
.y21d{bottom:138.324451px;}
.yb2{bottom:138.495000px;}
.y1dd{bottom:139.486500px;}
.y43{bottom:140.613000px;}
.y2ec{bottom:140.877000px;}
.y277{bottom:140.928000px;}
.y14b{bottom:142.771500px;}
.y1ab{bottom:143.157000px;}
.y21f{bottom:146.187434px;}
.y118{bottom:146.694000px;}
.y17e{bottom:147.892500px;}
.ye4{bottom:148.677000px;}
.y216{bottom:149.251641px;}
.y213{bottom:149.590094px;}
.y209{bottom:151.719000px;}
.y299{bottom:154.374000px;}
.y250{bottom:154.842156px;}
.yb1{bottom:154.933500px;}
.y1dc{bottom:155.925000px;}
.y7f{bottom:156.577500px;}
.y42{bottom:157.051500px;}
.y276{bottom:157.366500px;}
.y221{bottom:158.456348px;}
.y14a{bottom:159.210000px;}
.y1aa{bottom:159.595500px;}
.y215{bottom:159.695327px;}
.y20e{bottom:160.517284px;}
.ye3{bottom:165.115500px;}
.y2c1{bottom:165.544500px;}
.y208{bottom:168.157500px;}
.y117{bottom:168.949500px;}
.y2eb{bottom:169.101000px;}
.y214{bottom:169.480240px;}
.y23c{bottom:170.302196px;}
.y17d{bottom:170.308500px;}
.y298{bottom:170.812500px;}
.y1db{bottom:172.363500px;}
.y7e{bottom:173.016000px;}
.y41{bottom:173.490000px;}
.y275{bottom:173.805000px;}
.y1a9{bottom:176.034000px;}
.yb0{bottom:177.349500px;}
.y236{bottom:178.194000px;}
.y248{bottom:178.618465px;}
.y23e{bottom:181.386526px;}
.ye2{bottom:181.554000px;}
.y149{bottom:181.626000px;}
.y2c0{bottom:181.983000px;}
.y249{bottom:184.160630px;}
.y207{bottom:184.594500px;}
.y116{bottom:185.388000px;}
.y2ea{bottom:185.539500px;}
.y17c{bottom:186.747000px;}
.y238{bottom:186.934734px;}
.y297{bottom:187.251000px;}
.y1da{bottom:188.802000px;}
.y243{bottom:189.702794px;}
.y40{bottom:189.928500px;}
.y274{bottom:190.243500px;}
.y1a8{bottom:192.472500px;}
.y23d{bottom:192.476899px;}
.y235{bottom:194.631000px;}
.y24a{bottom:195.251003px;}
.y7d{bottom:195.432000px;}
.ye1{bottom:197.992500px;}
.y239{bottom:198.019063px;}
.y148{bottom:198.064500px;}
.y242{bottom:200.793167px;}
.y206{bottom:201.033000px;}
.y115{bottom:201.826500px;}
.yaf{bottom:202.474500px;}
.y17b{bottom:203.185500px;}
.y240{bottom:203.567272px;}
.y92{bottom:203.777163px;}
.y1d9{bottom:205.239000px;}
.y8e{bottom:205.955253px;}
.y245{bottom:206.335332px;}
.y3f{bottom:206.367000px;}
.y273{bottom:206.682000px;}
.y1a7{bottom:208.911000px;}
.y246{bottom:209.109436px;}
.y2bf{bottom:210.376500px;}
.y234{bottom:211.069500px;}
.y7c{bottom:211.870500px;}
.y91{bottom:212.489523px;}
.y2e9{bottom:213.763500px;}
.ye0{bottom:214.431000px;}
.y147{bottom:214.503000px;}
.y244{bottom:214.651601px;}
.y8d{bottom:214.667613px;}
.y296{bottom:215.644500px;}
.y205{bottom:217.471500px;}
.y114{bottom:218.265000px;}
.y272{bottom:223.120500px;}
.y1a6{bottom:225.349500px;}
.y17a{bottom:225.601500px;}
.y20f{bottom:225.862850px;}
.y2be{bottom:226.815000px;}
.y233{bottom:227.508000px;}
.y1d8{bottom:227.655000px;}
.y220{bottom:228.328720px;}
.y3e{bottom:228.781500px;}
.y2e8{bottom:230.202000px;}
.ydf{bottom:230.868000px;}
.y146{bottom:230.941500px;}
.y295{bottom:232.083000px;}
.y204{bottom:233.910000px;}
.y7b{bottom:234.286500px;}
.y113{bottom:237.612000px;}
.y271{bottom:239.557500px;}
.y179{bottom:242.038500px;}
.yae{bottom:242.215500px;}
.y232{bottom:243.946500px;}
.y1d7{bottom:244.093500px;}
.y3d{bottom:245.220000px;}
.yde{bottom:247.306500px;}
.y1a5{bottom:247.765500px;}
.y203{bottom:250.348500px;}
.y7a{bottom:250.725000px;}
.y112{bottom:254.050500px;}
.y86{bottom:254.236248px;}
.y2bd{bottom:255.208500px;}
.y270{bottom:255.996000px;}
.y145{bottom:256.345500px;}
.y2e7{bottom:258.426000px;}
.y178{bottom:258.477000px;}
.yad{bottom:258.654000px;}
.y231{bottom:260.385000px;}
.y294{bottom:260.476500px;}
.y1d6{bottom:260.532000px;}
.y3c{bottom:261.658500px;}
.y84{bottom:262.948608px;}
.ydd{bottom:263.745000px;}
.y1a4{bottom:264.202500px;}
.y202{bottom:266.787000px;}
.y111{bottom:270.487500px;}
.y2bc{bottom:271.647000px;}
.y83{bottom:271.660968px;}
.y26f{bottom:272.434500px;}
.y144{bottom:272.784000px;}
.y79{bottom:273.141000px;}
.y2e6{bottom:274.864500px;}
.yac{bottom:275.092500px;}
.y230{bottom:276.823500px;}
.y293{bottom:276.915000px;}
.y1d5{bottom:276.970500px;}
.y3b{bottom:278.097000px;}
.ydc{bottom:280.183500px;}
.y85{bottom:280.373328px;}
.y201{bottom:283.225500px;}
.y177{bottom:283.602000px;}
.y1a3{bottom:286.618500px;}
.y2bb{bottom:288.085500px;}
.y26e{bottom:288.873000px;}
.y78{bottom:289.579500px;}
.y210{bottom:291.208415px;}
.yab{bottom:291.531000px;}
.y30d{bottom:292.609037px;}
.y94{bottom:292.715838px;}
.y110{bottom:292.743000px;}
.y22f{bottom:293.262000px;}
.y3a{bottom:294.535500px;}
.ydb{bottom:296.622000px;}
.y143{bottom:297.909000px;}
.y200{bottom:299.664000px;}
.y1d4{bottom:302.095500px;}
.y1a2{bottom:303.057000px;}
.y2e5{bottom:303.088500px;}
.y292{bottom:305.308500px;}
.y26d{bottom:305.311500px;}
.y10f{bottom:309.181500px;}
.y22e{bottom:309.700500px;}
.y77{bottom:311.995500px;}
.yda{bottom:313.060500px;}
.y30c{bottom:316.009036px;}
.y1ff{bottom:316.102500px;}
.y2ba{bottom:316.479000px;}
.y39{bottom:316.951500px;}
.y1a1{bottom:319.495500px;}
.y2e4{bottom:319.527000px;}
.yaa{bottom:321.288000px;}
.y291{bottom:321.747000px;}
.y26c{bottom:321.750000px;}
.y176{bottom:323.343000px;}
.y10e{bottom:325.620000px;}
.y22d{bottom:326.139000px;}
.y76{bottom:328.434000px;}
.yd9{bottom:329.499000px;}
.y2b9{bottom:332.917500px;}
.y38{bottom:333.390000px;}
.y142{bottom:334.662000px;}
.y1a0{bottom:335.934000px;}
.y8a{bottom:336.985518px;}
.y26b{bottom:338.188500px;}
.y30b{bottom:338.689336px;}
.y1d3{bottom:338.848500px;}
.y175{bottom:339.781500px;}
.y1fe{bottom:341.226000px;}
.y22c{bottom:342.577500px;}
.y89{bottom:345.697878px;}
.yd8{bottom:345.937500px;}
.y2e3{bottom:347.751000px;}
.y10d{bottom:347.875500px;}
.y37{bottom:349.828500px;}
.y290{bottom:350.140500px;}
.y75{bottom:350.850000px;}
.y141{bottom:351.100500px;}
.y19f{bottom:352.372500px;}
.y26a{bottom:354.627000px;}
.y1d2{bottom:355.287000px;}
.y174{bottom:356.220000px;}
.y22b{bottom:359.014500px;}
.y2b8{bottom:361.311000px;}
.yd7{bottom:362.376000px;}
.y2e2{bottom:364.189500px;}
.y10c{bottom:364.314000px;}
.y28f{bottom:366.577500px;}
.y74{bottom:367.288500px;}
.y140{bottom:367.539000px;}
.ya9{bottom:368.455500px;}
.y19e{bottom:368.811000px;}
.y269{bottom:371.065500px;}
.y36{bottom:372.244500px;}
.y22a{bottom:375.453000px;}
.y173{bottom:375.648000px;}
.y1d1{bottom:377.701500px;}
.y2b7{bottom:377.748000px;}
.y1fd{bottom:377.979000px;}
.y10b{bottom:380.752500px;}
.y73{bottom:383.727000px;}
.y13f{bottom:383.976000px;}
.ya8{bottom:384.892500px;}
.y19d{bottom:385.249500px;}
.yd6{bottom:387.499500px;}
.y268{bottom:387.504000px;}
.y35{bottom:388.683000px;}
.y229{bottom:391.891500px;}
.y172{bottom:392.085000px;}
.y2e1{bottom:392.413500px;}
.y1d0{bottom:394.140000px;}
.y2b6{bottom:394.186500px;}
.y1fc{bottom:394.417500px;}
.y28e{bottom:394.972500px;}
.y10a{bottom:397.191000px;}
.y72{bottom:400.164000px;}
.y13e{bottom:400.414500px;}
.ya7{bottom:401.331000px;}
.y19c{bottom:401.688000px;}
.y267{bottom:403.942500px;}
.y34{bottom:405.121500px;}
.y228{bottom:408.330000px;}
.y171{bottom:408.523500px;}
.y2e0{bottom:408.852000px;}
.y1cf{bottom:410.578500px;}
.y1fb{bottom:410.856000px;}
.y28d{bottom:411.409500px;}
.y109{bottom:413.629500px;}
.y71{bottom:416.602500px;}
.y13d{bottom:416.853000px;}
.ya6{bottom:417.769500px;}
.y19b{bottom:418.126500px;}
.y266{bottom:420.379500px;}
.y33{bottom:421.560000px;}
.y2b5{bottom:422.580000px;}
.y227{bottom:424.768500px;}
.y170{bottom:424.962000px;}
.y1ce{bottom:427.017000px;}
.yd5{bottom:427.242000px;}
.y1fa{bottom:427.294500px;}
.y70{bottom:433.041000px;}
.y13c{bottom:433.291500px;}
.ya5{bottom:434.208000px;}
.y19a{bottom:434.565000px;}
.y108{bottom:435.964500px;}
.y265{bottom:436.818000px;}
.y2df{bottom:437.076000px;}
.y32{bottom:437.997000px;}
.y28c{bottom:439.803000px;}
.y30a{bottom:440.569037px;}
.y16f{bottom:441.400500px;}
.yd4{bottom:443.680500px;}
.y1f9{bottom:443.733000px;}
.y6f{bottom:449.479500px;}
.y13b{bottom:449.730000px;}
.y226{bottom:449.893500px;}
.ya4{bottom:450.646500px;}
.y2b4{bottom:450.973500px;}
.y199{bottom:451.002000px;}
.y1cd{bottom:452.142000px;}
.y2de{bottom:453.514500px;}
.y16e{bottom:457.839000px;}
.y1f8{bottom:460.171500px;}
.y31{bottom:460.413000px;}
.y107{bottom:461.089500px;}
.y6e{bottom:465.918000px;}
.y264{bottom:466.575000px;}
.ya3{bottom:467.085000px;}
.y2b3{bottom:467.412000px;}
.y28b{bottom:469.561500px;}
.yd3{bottom:473.437500px;}
.y16d{bottom:474.277500px;}
.y13a{bottom:474.855000px;}
.y198{bottom:476.127000px;}
.y1f7{bottom:476.610000px;}
.y30{bottom:476.851500px;}
.y2dd{bottom:481.738500px;}
.y6d{bottom:482.356500px;}
.ya2{bottom:483.523500px;}
.y1cc{bottom:491.883000px;}
.y1f6{bottom:493.047000px;}
.y2f{bottom:493.290000px;}
.y2b2{bottom:495.805500px;}
.y16c{bottom:496.693500px;}
.y225{bottom:497.631000px;}
.y2dc{bottom:498.177000px;}
.y6c{bottom:498.795000px;}
.ya1{bottom:499.962000px;}
.y106{bottom:500.769000px;}
.y1cb{bottom:508.321500px;}
.y1f5{bottom:509.485500px;}
.y197{bottom:510.367500px;}
.y2b1{bottom:512.244000px;}
.y16b{bottom:513.132000px;}
.y263{bottom:513.742500px;}
.y139{bottom:514.596000px;}
.y2db{bottom:514.615500px;}
.y6b{bottom:515.233500px;}
.y224{bottom:515.563500px;}
.y2e{bottom:515.706000px;}
.ya0{bottom:516.400500px;}
.y28a{bottom:516.727500px;}
.y105{bottom:517.207500px;}
.yd2{bottom:520.603500px;}
.y1ca{bottom:524.760000px;}
.y1f4{bottom:525.924000px;}
.y262{bottom:530.181000px;}
.y138{bottom:531.034500px;}
.y6a{bottom:531.672000px;}
.y2d{bottom:532.144500px;}
.y16a{bottom:532.558500px;}
.y9f{bottom:532.839000px;}
.y289{bottom:533.166000px;}
.y223{bottom:533.496000px;}
.y104{bottom:533.646000px;}
.yd1{bottom:537.042000px;}
.y309{bottom:538.849037px;}
.y2b0{bottom:540.637500px;}
.y1c9{bottom:541.198500px;}
.y1f3{bottom:542.362500px;}
.y2da{bottom:542.839500px;}
.y261{bottom:546.619500px;}
.y137{bottom:547.473000px;}
.y69{bottom:548.110500px;}
.y2c{bottom:548.583000px;}
.y169{bottom:548.997000px;}
.y9e{bottom:549.277500px;}
.y222{bottom:551.428500px;}
.yd0{bottom:553.480500px;}
.y288{bottom:555.582000px;}
.y2af{bottom:557.076000px;}
.y196{bottom:557.533500px;}
.y1c8{bottom:557.637000px;}
.y2d9{bottom:559.278000px;}
.y308{bottom:562.249037px;}
.y260{bottom:563.058000px;}
.y103{bottom:563.403000px;}
.y68{bottom:564.547500px;}
.y1f2{bottom:564.778500px;}
.y2b{bottom:565.021500px;}
.y168{bottom:565.435500px;}
.y9d{bottom:565.714500px;}
.y287{bottom:572.020500px;}
.y195{bottom:573.972000px;}
.y1c7{bottom:574.075500px;}
.ycf{bottom:575.896500px;}
.y136{bottom:576.613500px;}
.y25f{bottom:579.496500px;}
.y67{bottom:580.986000px;}
.y1f1{bottom:581.217000px;}
.y167{bottom:581.874000px;}
.y9c{bottom:582.153000px;}
.y20b{bottom:584.305500px;}
.y2ae{bottom:585.469500px;}
.y307{bottom:585.649036px;}
.y2a{bottom:587.437500px;}
.y2d8{bottom:587.502000px;}
.y15{bottom:587.809186px;}
.y286{bottom:588.459000px;}
.y194{bottom:590.410500px;}
.yce{bottom:592.335000px;}
.y25e{bottom:595.933500px;}
.y1c6{bottom:596.491500px;}
.y66{bottom:597.424500px;}
.y166{bottom:598.312500px;}
.y9b{bottom:598.591500px;}
.y217{bottom:603.252813px;}
.y1f0{bottom:603.633000px;}
.y29{bottom:603.876000px;}
.y2d7{bottom:603.940500px;}
.y285{bottom:604.897500px;}
.y135{bottom:605.754000px;}
.y193{bottom:606.849000px;}
.ycd{bottom:608.773500px;}
.y306{bottom:609.049037px;}
.y102{bottom:610.507500px;}
.y65{bottom:613.863000px;}
.y165{bottom:614.751000px;}
.y1c5{bottom:618.907500px;}
.y1ef{bottom:620.071500px;}
.y28{bottom:620.314500px;}
.y9a{bottom:621.007500px;}
.y25d{bottom:621.058500px;}
.y134{bottom:622.192500px;}
.y192{bottom:623.287500px;}
.y14{bottom:625.969186px;}
.y101{bottom:626.946000px;}
.y284{bottom:627.313500px;}
.y64{bottom:630.301500px;}
.ycc{bottom:631.189500px;}
.y2d6{bottom:632.164500px;}
.y305{bottom:632.449036px;}
.y99{bottom:637.446000px;}
.y191{bottom:639.726000px;}
.y1c4{bottom:641.323500px;}
.y133{bottom:641.619000px;}
.y1ee{bottom:642.487500px;}
.y100{bottom:643.384500px;}
.y283{bottom:643.750500px;}
.y63{bottom:646.740000px;}
.ycb{bottom:647.628000px;}
.y27{bottom:650.071500px;}
.y304{bottom:655.849037px;}
.y190{bottom:656.164500px;}
.y164{bottom:656.593500px;}
.y25c{bottom:657.811500px;}
.y132{bottom:658.057500px;}
.y2ad{bottom:658.695000px;}
.yff{bottom:659.823000px;}
.y282{bottom:660.189000px;}
.y2d5{bottom:660.388500px;}
.y62{bottom:663.178500px;}
.y1c3{bottom:663.739500px;}
.yca{bottom:664.066500px;}
.y13{bottom:664.129187px;}
.y1ed{bottom:664.903500px;}
.y18f{bottom:672.603000px;}
.y163{bottom:673.032000px;}
.y25b{bottom:674.250000px;}
.yfe{bottom:676.260000px;}
.y281{bottom:676.627500px;}
.y2d4{bottom:676.827000px;}
.y131{bottom:677.485500px;}
.y303{bottom:679.249037px;}
.y61{bottom:679.617000px;}
.y1c2{bottom:680.176500px;}
.yc9{bottom:680.503500px;}
.y1ec{bottom:681.342000px;}
.y98{bottom:686.014500px;}
.y2ac{bottom:687.088500px;}
.y18e{bottom:689.041500px;}
.y162{bottom:689.470500px;}
.y25a{bottom:690.688500px;}
.yfd{bottom:692.698500px;}
.y130{bottom:693.924000px;}
.y60{bottom:696.055500px;}
.y1c1{bottom:696.615000px;}
.y26{bottom:697.237500px;}
.y1eb{bottom:697.780500px;}
.y280{bottom:699.043500px;}
.yc8{bottom:699.931500px;}
.y12{bottom:702.289187px;}
.y302{bottom:702.649036px;}
.y2ab{bottom:703.527000px;}
.y97{bottom:703.947000px;}
.y2d3{bottom:705.051000px;}
.y18d{bottom:705.480000px;}
.yfc{bottom:709.137000px;}
.y5f{bottom:712.494000px;}
.y1c0{bottom:713.053500px;}
.y12f{bottom:713.350500px;}
.y25{bottom:713.676000px;}
.y161{bottom:714.595500px;}
.y27f{bottom:715.482000px;}
.y259{bottom:715.812000px;}
.yc7{bottom:716.370000px;}
.y2aa{bottom:719.965500px;}
.y2d2{bottom:721.489500px;}
.y96{bottom:721.879500px;}
.y18c{bottom:721.917000px;}
.y1ea{bottom:722.904000px;}
.yfb{bottom:725.575500px;}
.y301{bottom:726.049037px;}
.y5e{bottom:728.932500px;}
.y1bf{bottom:729.492000px;}
.y12e{bottom:729.789000px;}
.y24{bottom:730.114500px;}
.y27e{bottom:731.920500px;}
.yc6{bottom:732.808500px;}
.y2a9{bottom:736.404000px;}
.y18b{bottom:738.355500px;}
.y95{bottom:739.812000px;}
.y11{bottom:740.449186px;}
.yfa{bottom:742.014000px;}
.y5d{bottom:745.369500px;}
.y1be{bottom:745.930500px;}
.y23{bottom:746.553000px;}
.y12d{bottom:749.215500px;}
.yc5{bottom:749.247000px;}
.y300{bottom:749.449036px;}
.y2d1{bottom:749.713500px;}
.y160{bottom:751.348500px;}
.y27d{bottom:754.336500px;}
.yf9{bottom:758.452500px;}
.y5c{bottom:761.808000px;}
.y1bd{bottom:762.369000px;}
.y22{bottom:762.991500px;}
.y18a{bottom:763.480500px;}
.y258{bottom:763.549500px;}
.y2a8{bottom:764.797500px;}
.y12c{bottom:765.654000px;}
.y2d0{bottom:766.152000px;}
.y15f{bottom:767.785500px;}
.y27c{bottom:770.775000px;}
.yc4{bottom:771.663000px;}
.y82{bottom:772.689000px;}
.y2ff{bottom:772.849037px;}
.y1e9{bottom:773.713500px;}
.yf8{bottom:774.891000px;}
.y5b{bottom:778.246500px;}
.y10{bottom:778.609186px;}
.y1bc{bottom:778.807500px;}
.y21{bottom:779.430000px;}
.y2a7{bottom:781.236000px;}
.y257{bottom:781.483500px;}
.y12b{bottom:782.092500px;}
.y27b{bottom:787.213500px;}
.yc3{bottom:788.100000px;}
.yf7{bottom:791.329500px;}
.y1e8{bottom:791.646000px;}
.y15e{bottom:793.191000px;}
.y2cf{bottom:794.376000px;}
.y5a{bottom:794.685000px;}
.y1bb{bottom:795.246000px;}
.y20{bottom:795.868500px;}
.y2fe{bottom:796.249037px;}
.y256{bottom:799.416000px;}
.y12a{bottom:801.520500px;}
.y189{bottom:803.221500px;}
.y27a{bottom:803.652000px;}
.yc2{bottom:804.538500px;}
.yf6{bottom:807.768000px;}
.y1e7{bottom:809.580000px;}
.y15d{bottom:809.629500px;}
.y2ce{bottom:810.814500px;}
.y59{bottom:811.123500px;}
.y1ba{bottom:811.684500px;}
.yf{bottom:816.769186px;}
.y255{bottom:817.348500px;}
.y129{bottom:817.959000px;}
.y1f{bottom:819.292500px;}
.y2fd{bottom:819.649037px;}
.y188{bottom:819.660000px;}
.yf5{bottom:824.206500px;}
.y15c{bottom:826.068000px;}
.yc1{bottom:826.954500px;}
.y58{bottom:827.562000px;}
.y1e6{bottom:828.109500px;}
.y1b9{bottom:828.123000px;}
.y128{bottom:834.397500px;}
.y187{bottom:836.098500px;}
.y2a6{bottom:838.023000px;}
.y2cd{bottom:839.038500px;}
.yf4{bottom:840.643500px;}
.y15b{bottom:842.506500px;}
.y2fc{bottom:843.049036px;}
.yc0{bottom:843.393000px;}
.y57{bottom:844.000500px;}
.y1b8{bottom:844.561500px;}
.y1e5{bottom:845.661000px;}
.y24c{bottom:850.225500px;}
.y127{bottom:850.834500px;}
.y186{bottom:852.537000px;}
.ye{bottom:854.929186px;}
.yf3{bottom:857.082000px;}
.y15a{bottom:858.943500px;}
.ybf{bottom:859.831500px;}
.y56{bottom:860.439000px;}
.y1b7{bottom:860.998500px;}
.y2a5{bottom:866.416500px;}
.y2fb{bottom:866.449036px;}
.y2cc{bottom:867.262500px;}
.y185{bottom:868.975500px;}
.y1e{bottom:873.091500px;}
.y126{bottom:873.250500px;}
.yf2{bottom:873.520500px;}
.y159{bottom:875.382000px;}
.ybe{bottom:876.270000px;}
.y55{bottom:876.877500px;}
.y1b6{bottom:877.437000px;}
.y8f{bottom:881.719248px;}
.y2f9{bottom:882.855000px;}
.y2cb{bottom:883.701000px;}
.y184{bottom:885.414000px;}
.y125{bottom:889.689000px;}
.y2fa{bottom:889.849037px;}
.yf1{bottom:889.959000px;}
.y1e4{bottom:891.820500px;}
.ybd{bottom:892.708500px;}
.yd{bottom:893.089186px;}
.y54{bottom:893.316000px;}
.y237{bottom:894.611167px;}
.y2a4{bottom:894.810000px;}
.y158{bottom:897.798000px;}
.y2f8{bottom:899.293500px;}
.y2ca{bottom:900.139500px;}
.y1b5{bottom:902.562000px;}
.yf0{bottom:906.397500px;}
.y1d{bottom:908.259000px;}
.y124{bottom:909.117000px;}
.ybc{bottom:909.147000px;}
.y53{bottom:909.753000px;}
.y183{bottom:910.539000px;}
.y2a3{bottom:911.248500px;}
.y157{bottom:914.236500px;}
.yc{bottom:917.209186px;}
.yef{bottom:922.836000px;}
.y123{bottom:925.555500px;}
.y52{bottom:926.191500px;}
.y2f7{bottom:927.687000px;}
.y2c9{bottom:928.363500px;}
.y1c{bottom:929.181000px;}
.y156{bottom:930.675000px;}
.ybb{bottom:931.563000px;}
.yee{bottom:939.274500px;}
.y2a2{bottom:939.642000px;}
.y51{bottom:942.630000px;}
.y2f6{bottom:944.125500px;}
.y182{bottom:944.778000px;}
.y2c8{bottom:944.802000px;}
.y155{bottom:947.113500px;}
.y122{bottom:947.971500px;}
.yba{bottom:948.001500px;}
.y1b{bottom:950.103000px;}
.y1e3{bottom:956.529000px;}
.yb{bottom:956.809186px;}
.y50{bottom:959.068500px;}
.y2f5{bottom:960.562500px;}
.y154{bottom:963.552000px;}
.yb9{bottom:964.440000px;}
.y2a1{bottom:968.035500px;}
.yed{bottom:969.031500px;}
.y1a{bottom:971.023500px;}
.y1e2{bottom:972.966000px;}
.y2c7{bottom:973.026000px;}
.y1b4{bottom:974.013000px;}
.y4f{bottom:975.507000px;}
.y2f4{bottom:977.001000px;}
.y153{bottom:979.990500px;}
.y2a0{bottom:984.474000px;}
.y121{bottom:984.630000px;}
.yb8{bottom:986.856000px;}
.y1e1{bottom:989.404500px;}
.y2c6{bottom:989.464500px;}
.y19{bottom:991.945500px;}
.ya{bottom:996.409186px;}
.y152{bottom:996.429000px;}
.y29f{bottom:1000.912500px;}
.yb7{bottom:1003.293000px;}
.y2f3{bottom:1005.394500px;}
.y1e0{bottom:1005.843000px;}
.y4e{bottom:1008.384000px;}
.y18{bottom:1012.867500px;}
.yec{bottom:1016.136000px;}
.y120{bottom:1016.713500px;}
.y29e{bottom:1017.349500px;}
.y2c5{bottom:1017.688500px;}
.y151{bottom:1018.845000px;}
.yb6{bottom:1019.731500px;}
.y2f2{bottom:1021.833000px;}
.y1df{bottom:1022.281500px;}
.y4d{bottom:1024.822500px;}
.y11f{bottom:1026.277500px;}
.y9{bottom:1032.049037px;}
.yeb{bottom:1032.574500px;}
.y17{bottom:1033.788000px;}
.y150{bottom:1035.283500px;}
.y1b3{bottom:1038.720000px;}
.y4c{bottom:1041.261000px;}
.yb5{bottom:1044.856500px;}
.y29d{bottom:1045.743000px;}
.y2c4{bottom:1045.912500px;}
.yea{bottom:1049.013000px;}
.y2f1{bottom:1050.226500px;}
.y14f{bottom:1051.722000px;}
.y11e{bottom:1053.774000px;}
.y1b2{bottom:1055.158500px;}
.y8{bottom:1055.449036px;}
.y4b{bottom:1057.699500px;}
.y29c{bottom:1062.181500px;}
.ye9{bottom:1065.451500px;}
.y2f0{bottom:1066.665000px;}
.y14e{bottom:1068.159000px;}
.y1b1{bottom:1071.597000px;}
.y11d{bottom:1071.706500px;}
.y181{bottom:1074.136500px;}
.y4a{bottom:1074.138000px;}
.y16{bottom:1077.126000px;}
.y29b{bottom:1078.620000px;}
.y7{bottom:1078.849037px;}
.ye8{bottom:1081.890000px;}
.yb4{bottom:1084.597500px;}
.y1b0{bottom:1088.035500px;}
.y49{bottom:1090.575000px;}
.y2ef{bottom:1095.058500px;}
.ye7{bottom:1098.328500px;}
.yb3{bottom:1101.036000px;}
.y6{bottom:1102.249037px;}
.y1af{bottom:1104.474000px;}
.y48{bottom:1107.013500px;}
.y11c{bottom:1110.750000px;}
.y2ee{bottom:1111.497000px;}
.ye6{bottom:1114.765500px;}
.y1ae{bottom:1120.912500px;}
.y47{bottom:1123.452000px;}
.y11b{bottom:1128.682500px;}
.y1ad{bottom:1137.351000px;}
.y46{bottom:1139.890500px;}
.y3{bottom:1212.769186px;}
.y2{bottom:1232.929186px;}
.h1a{height:13.955062px;}
.h1c{height:19.294614px;}
.hf{height:20.901723px;}
.h17{height:22.692580px;}
.h22{height:25.418381px;}
.h18{height:27.735376px;}
.h20{height:30.256774px;}
.h1e{height:30.366856px;}
.h1f{height:30.391031px;}
.h15{height:37.336090px;}
.h10{height:38.326443px;}
.hb{height:40.348800px;}
.h1d{height:41.463272px;}
.h14{height:41.842920px;}
.h23{height:42.567840px;}
.h3{height:43.189453px;}
.h11{height:43.561800px;}
.ha{height:43.827763px;}
.hd{height:44.831700px;}
.h6{height:46.720800px;}
.h12{height:50.211840px;}
.h9{height:50.498765px;}
.h4{height:56.064960px;}
.hc{height:60.254040px;}
.h8{height:73.027727px;}
.h13{height:80.693700px;}
.h5{height:94.479840px;}
.h1b{height:224.539258px;}
.h21{height:240.595155px;}
.h19{height:282.348205px;}
.h16{height:304.607520px;}
.he{height:382.143349px;}
.h2{height:1234.729200px;}
.h0{height:1262.792100px;}
.h7{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:65.342700px;}
.w8{width:250.648474px;}
.w7{width:278.697749px;}
.w9{width:304.606710px;}
.w6{width:304.607520px;}
.w4{width:676.911529px;}
.w2{width:864.850500px;}
.w0{width:892.913400px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x47{left:7.494312px;}
.x40{left:9.410197px;}
.x3d{left:12.057381px;}
.x1{left:14.031451px;}
.x3c{left:15.085325px;}
.x48{left:19.708832px;}
.x20{left:22.784157px;}
.x49{left:24.592222px;}
.x21{left:30.161007px;}
.x23{left:33.399782px;}
.x22{left:36.077727px;}
.x4a{left:39.254481px;}
.x4b{left:44.137871px;}
.x4c{left:49.021262px;}
.x4d{left:51.469001px;}
.x3e{left:61.743461px;}
.x4e{left:63.683521px;}
.x4f{left:66.125216px;}
.x50{left:75.898040px;}
.x63{left:77.578217px;}
.x51{left:80.781431px;}
.x52{left:83.223126px;}
.x53{left:85.670865px;}
.x54{left:95.437646px;}
.x2{left:97.919998px;}
.x55{left:100.327080px;}
.x12{left:108.000000px;}
.x2c{left:109.129500px;}
.x29{left:116.967000px;}
.x56{left:122.314424px;}
.x57{left:124.756120px;}
.x58{left:127.197815px;}
.x3b{left:139.357500px;}
.x59{left:141.854030px;}
.x3f{left:143.661126px;}
.xe{left:145.360500px;}
.x1e{left:147.233323px;}
.x25{left:152.141467px;}
.x64{left:154.612492px;}
.x3{left:156.556500px;}
.x2e{left:158.478000px;}
.xf{left:160.014000px;}
.x2d{left:162.316500px;}
.x36{left:163.852500px;}
.x31{left:164.970000px;}
.xd{left:166.095000px;}
.x5a{left:168.730808px;}
.x5b{left:171.172504px;}
.x5c{left:173.614199px;}
.x46{left:175.040095px;}
.x5d{left:176.055894px;}
.x10{left:178.236000px;}
.x5e{left:188.270414px;}
.x27{left:191.799000px;}
.x5f{left:195.601543px;}
.x60{left:198.043238px;}
.x44{left:201.391504px;}
.x26{left:206.182500px;}
.x24{left:209.234085px;}
.x61{left:210.257758px;}
.x62{left:229.803407px;}
.x1f{left:235.544013px;}
.x6{left:239.653500px;}
.x1b{left:263.035108px;}
.x1c{left:268.951827px;}
.x41{left:272.732519px;}
.x30{left:278.700000px;}
.x42{left:284.481666px;}
.x2a{left:287.262000px;}
.x39{left:303.825000px;}
.x34{left:310.321500px;}
.x35{left:315.841500px;}
.x2f{left:320.772000px;}
.x9{left:326.058000px;}
.x14{left:329.328595px;}
.x33{left:332.737500px;}
.x13{left:348.895597px;}
.x65{left:349.919999px;}
.x4{left:351.495000px;}
.x28{left:362.662500px;}
.x1d{left:364.287932px;}
.x2b{left:373.692000px;}
.x8{left:378.172500px;}
.x5{left:382.809000px;}
.xb{left:387.442500px;}
.x32{left:389.856000px;}
.xa{left:391.089000px;}
.x7{left:412.077000px;}
.xc{left:416.016000px;}
.x38{left:431.158500px;}
.x37{left:438.984000px;}
.x11{left:442.720500px;}
.x45{left:448.947000px;}
.x1a{left:465.459220px;}
.x43{left:471.544768px;}
.x19{left:483.212926px;}
.x3a{left:574.968000px;}
.x17{left:609.899839px;}
.x18{left:612.725257px;}
.x15{left:617.360436px;}
.x16{left:619.515838px;}
@media print{
.v6{vertical-align:-19.705474pt;}
.v2{vertical-align:-5.312000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:9.841993pt;}
.v1{vertical-align:15.488640pt;}
.v4{vertical-align:19.705474pt;}
.v3{vertical-align:31.877333pt;}
.ls18{letter-spacing:-0.005163pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000027pt;}
.ls50{letter-spacing:0.000495pt;}
.ls4c{letter-spacing:0.000891pt;}
.ls27{letter-spacing:0.001324pt;}
.ls47{letter-spacing:0.003034pt;}
.ls16{letter-spacing:0.005163pt;}
.ls5b{letter-spacing:0.048384pt;}
.ls5a{letter-spacing:0.067627pt;}
.ls5d{letter-spacing:0.076032pt;}
.ls5c{letter-spacing:0.103680pt;}
.ls5e{letter-spacing:0.117504pt;}
.ls0{letter-spacing:0.124416pt;}
.ls25{letter-spacing:0.196932pt;}
.ls1{letter-spacing:0.343467pt;}
.ls3{letter-spacing:0.454272pt;}
.ls4{letter-spacing:0.465920pt;}
.ls5{letter-spacing:0.581760pt;}
.ls6{letter-spacing:0.645120pt;}
.ls3f{letter-spacing:0.794694pt;}
.ls57{letter-spacing:1.905799pt;}
.ls23{letter-spacing:2.806152pt;}
.ls34{letter-spacing:4.016947pt;}
.ls46{letter-spacing:4.303872pt;}
.ls41{letter-spacing:4.399514pt;}
.ls44{letter-spacing:4.447334pt;}
.ls42{letter-spacing:4.638618pt;}
.ls39{letter-spacing:4.686438pt;}
.ls2a{letter-spacing:10.918719pt;}
.ls2b{letter-spacing:10.924052pt;}
.ls30{letter-spacing:12.194304pt;}
.ls2e{letter-spacing:12.337766pt;}
.ls32{letter-spacing:13.150720pt;}
.ls3e{letter-spacing:13.332734pt;}
.ls54{letter-spacing:13.351845pt;}
.ls1b{letter-spacing:13.868032pt;}
.lsd{letter-spacing:14.154957pt;}
.ls28{letter-spacing:14.480473pt;}
.ls2d{letter-spacing:14.633165pt;}
.ls52{letter-spacing:14.680986pt;}
.ls7{letter-spacing:14.728806pt;}
.ls33{letter-spacing:14.967910pt;}
.ls15{letter-spacing:15.637402pt;}
.ls1f{letter-spacing:16.021806pt;}
.ls40{letter-spacing:16.163430pt;}
.ls53{letter-spacing:16.304935pt;}
.ls29{letter-spacing:16.309806pt;}
.lsc{letter-spacing:16.354714pt;}
.ls4b{letter-spacing:16.384495pt;}
.lsb{letter-spacing:16.402534pt;}
.ls21{letter-spacing:16.420439pt;}
.ls19{letter-spacing:16.498176pt;}
.ls2f{letter-spacing:16.928563pt;}
.ls59{letter-spacing:16.976384pt;}
.lsa{letter-spacing:17.072026pt;}
.ls49{letter-spacing:17.215488pt;}
.ls24{letter-spacing:17.652932pt;}
.lse{letter-spacing:17.884979pt;}
.ls4a{letter-spacing:17.925361pt;}
.ls51{letter-spacing:17.932800pt;}
.ls1a{letter-spacing:18.124083pt;}
.ls48{letter-spacing:18.602291pt;}
.ls26{letter-spacing:18.878193pt;}
.ls9{letter-spacing:18.984858pt;}
.ls2c{letter-spacing:19.032678pt;}
.ls3b{letter-spacing:19.367424pt;}
.lsf{letter-spacing:19.415245pt;}
.ls17{letter-spacing:19.845632pt;}
.ls10{letter-spacing:19.989094pt;}
.ls22{letter-spacing:20.223599pt;}
.ls14{letter-spacing:20.323840pt;}
.ls4f{letter-spacing:20.652465pt;}
.ls11{letter-spacing:21.519360pt;}
.ls1d{letter-spacing:21.696473pt;}
.ls1c{letter-spacing:21.758464pt;}
.ls56{letter-spacing:22.033428pt;}
.ls13{letter-spacing:22.380134pt;}
.ls12{letter-spacing:22.427955pt;}
.ls8{letter-spacing:23.001805pt;}
.ls31{letter-spacing:23.145267pt;}
.ls58{letter-spacing:23.712854pt;}
.ls20{letter-spacing:26.566224pt;}
.ls3c{letter-spacing:27.114394pt;}
.ls3d{letter-spacing:28.405555pt;}
.ls55{letter-spacing:30.715011pt;}
.ls38{letter-spacing:39.692448pt;}
.ls36{letter-spacing:39.697782pt;}
.ls37{letter-spacing:39.985782pt;}
.ls45{letter-spacing:40.071115pt;}
.ls4d{letter-spacing:40.140448pt;}
.ls43{letter-spacing:40.145782pt;}
.ls35{letter-spacing:40.199115pt;}
.ls3a{letter-spacing:40.241782pt;}
.ls4e{letter-spacing:45.266079pt;}
.ws106{word-spacing:-49.150218pt;}
.ws12c{word-spacing:-34.611401pt;}
.ws86{word-spacing:-32.063846pt;}
.ws11f{word-spacing:-18.434918pt;}
.ws0{word-spacing:-14.086656pt;}
.ws22{word-spacing:-13.652838pt;}
.ws1{word-spacing:-12.280320pt;}
.ws4d{word-spacing:-7.181566pt;}
.ws4e{word-spacing:-7.176403pt;}
.ws124{word-spacing:-7.168753pt;}
.ws10d{word-spacing:-6.571357pt;}
.ws107{word-spacing:-4.495155pt;}
.ws120{word-spacing:-4.468522pt;}
.wsd4{word-spacing:-4.064768pt;}
.wsa6{word-spacing:-2.749696pt;}
.wsa5{word-spacing:-2.737345pt;}
.wsa4{word-spacing:-2.708823pt;}
.ws100{word-spacing:-2.654054pt;}
.ws138{word-spacing:-2.462771pt;}
.ws14{word-spacing:-2.367130pt;}
.wsbd{word-spacing:-2.271488pt;}
.ws150{word-spacing:-2.175846pt;}
.ws148{word-spacing:-1.888922pt;}
.ws8a{word-spacing:-1.841101pt;}
.ws14f{word-spacing:-1.745459pt;}
.wsc1{word-spacing:-1.697638pt;}
.wsc0{word-spacing:-1.649818pt;}
.ws76{word-spacing:-1.601997pt;}
.ws157{word-spacing:-1.554176pt;}
.ws151{word-spacing:-1.506355pt;}
.wsc2{word-spacing:-1.458534pt;}
.ws92{word-spacing:-1.410714pt;}
.wsce{word-spacing:-1.362893pt;}
.ws6a{word-spacing:-1.315072pt;}
.wsbc{word-spacing:-1.123789pt;}
.wsbe{word-spacing:-1.075968pt;}
.wsf9{word-spacing:-1.028147pt;}
.ws156{word-spacing:-0.980326pt;}
.ws7a{word-spacing:-0.932506pt;}
.wsfe{word-spacing:-0.884685pt;}
.ws61{word-spacing:-0.741222pt;}
.ws60{word-spacing:-0.693402pt;}
.wsac{word-spacing:-0.645581pt;}
.ws93{word-spacing:-0.549939pt;}
.wsa9{word-spacing:-0.454298pt;}
.ws1f{word-spacing:-0.406477pt;}
.wse6{word-spacing:-0.358656pt;}
.ws87{word-spacing:-0.310835pt;}
.ws88{word-spacing:-0.289968pt;}
.ws68{word-spacing:-0.263014pt;}
.ws56{word-spacing:-0.215194pt;}
.wsad{word-spacing:-0.167373pt;}
.ws69{word-spacing:-0.071731pt;}
.ws110{word-spacing:-0.053134pt;}
.ws2d{word-spacing:-0.047821pt;}
.wsc8{word-spacing:-0.031881pt;}
.ws82{word-spacing:-0.023910pt;}
.ws3{word-spacing:0.000000pt;}
.wse8{word-spacing:0.023910pt;}
.ws14c{word-spacing:0.027756pt;}
.ws78{word-spacing:0.167373pt;}
.ws77{word-spacing:0.215194pt;}
.ws62{word-spacing:0.263014pt;}
.ws89{word-spacing:0.310835pt;}
.ws8e{word-spacing:0.358656pt;}
.wsb7{word-spacing:0.406477pt;}
.ws6c{word-spacing:0.454298pt;}
.ws2a{word-spacing:0.502118pt;}
.ws29{word-spacing:0.549939pt;}
.wsb6{word-spacing:0.597760pt;}
.ws6d{word-spacing:0.693402pt;}
.wsc5{word-spacing:0.741222pt;}
.ws34{word-spacing:0.789043pt;}
.wsa1{word-spacing:0.836864pt;}
.ws7f{word-spacing:0.884685pt;}
.wsb3{word-spacing:0.932506pt;}
.wsb2{word-spacing:0.980326pt;}
.ws53{word-spacing:1.020170pt;}
.ws91{word-spacing:1.028147pt;}
.ws21{word-spacing:1.075968pt;}
.ws75{word-spacing:1.123789pt;}
.ws9c{word-spacing:1.171610pt;}
.ws49{word-spacing:1.219430pt;}
.ws45{word-spacing:1.267251pt;}
.wsd0{word-spacing:1.315072pt;}
.ws16{word-spacing:1.362893pt;}
.wsf5{word-spacing:1.392107pt;}
.wsd3{word-spacing:1.410714pt;}
.ws37{word-spacing:1.458534pt;}
.ws9e{word-spacing:1.506355pt;}
.wsd2{word-spacing:1.554176pt;}
.wsba{word-spacing:1.601997pt;}
.ws54{word-spacing:1.604643pt;}
.ws154{word-spacing:1.649818pt;}
.ws6b{word-spacing:1.697638pt;}
.ws72{word-spacing:1.745459pt;}
.ws7e{word-spacing:1.793280pt;}
.wsab{word-spacing:1.841101pt;}
.wsf{word-spacing:1.888922pt;}
.wsde{word-spacing:1.936742pt;}
.ws40{word-spacing:1.984563pt;}
.wsc9{word-spacing:2.032384pt;}
.ws14b{word-spacing:2.175846pt;}
.ws59{word-spacing:2.223667pt;}
.ws13{word-spacing:2.319309pt;}
.ws8d{word-spacing:2.414950pt;}
.wsa8{word-spacing:2.462771pt;}
.wsf2{word-spacing:2.486682pt;}
.ws46{word-spacing:2.510592pt;}
.ws12{word-spacing:2.606234pt;}
.ws20{word-spacing:2.654054pt;}
.ws96{word-spacing:2.667320pt;}
.ws97{word-spacing:2.696793pt;}
.wsc{word-spacing:2.701875pt;}
.ws104{word-spacing:2.720055pt;}
.ws95{word-spacing:2.720454pt;}
.ws44{word-spacing:2.720765pt;}
.ws153{word-spacing:2.728699pt;}
.ws10{word-spacing:2.749696pt;}
.ws81{word-spacing:2.797517pt;}
.ws67{word-spacing:2.845338pt;}
.ws55{word-spacing:2.932989pt;}
.ws70{word-spacing:2.940979pt;}
.ws155{word-spacing:3.036621pt;}
.ws63{word-spacing:3.084442pt;}
.ws1a{word-spacing:3.122698pt;}
.wsc4{word-spacing:3.132262pt;}
.wsaf{word-spacing:3.170519pt;}
.ws5c{word-spacing:3.180083pt;}
.wsb0{word-spacing:3.227904pt;}
.wsb9{word-spacing:3.275725pt;}
.wsa7{word-spacing:3.323546pt;}
.ws6e{word-spacing:3.371366pt;}
.ws26{word-spacing:3.467008pt;}
.wsc6{word-spacing:3.514829pt;}
.wsae{word-spacing:3.562650pt;}
.wsfb{word-spacing:3.610470pt;}
.ws41{word-spacing:3.658291pt;}
.ws6{word-spacing:3.706112pt;}
.ws140{word-spacing:3.801754pt;}
.wsbb{word-spacing:3.849574pt;}
.ws5b{word-spacing:3.897395pt;}
.ws149{word-spacing:3.926422pt;}
.ws65{word-spacing:3.985067pt;}
.wsea{word-spacing:3.993037pt;}
.ws111{word-spacing:3.995667pt;}
.ws47{word-spacing:4.040858pt;}
.ws8c{word-spacing:4.088678pt;}
.ws9d{word-spacing:4.136499pt;}
.ws116{word-spacing:4.214688pt;}
.ws30{word-spacing:4.232141pt;}
.ws31{word-spacing:4.279962pt;}
.ws33{word-spacing:4.327782pt;}
.wscb{word-spacing:4.375603pt;}
.ws5f{word-spacing:4.471245pt;}
.ws7c{word-spacing:4.519066pt;}
.wscd{word-spacing:4.566886pt;}
.ws136{word-spacing:4.662528pt;}
.wsa{word-spacing:4.710349pt;}
.ws102{word-spacing:4.758170pt;}
.wsd{word-spacing:4.782067pt;}
.wsa0{word-spacing:4.805990pt;}
.ws12f{word-spacing:4.845809pt;}
.ws15{word-spacing:4.853811pt;}
.ws12b{word-spacing:4.898943pt;}
.ws2c{word-spacing:4.901632pt;}
.ws27{word-spacing:4.949453pt;}
.wsb4{word-spacing:4.997274pt;}
.wse7{word-spacing:5.045094pt;}
.ws7d{word-spacing:5.092915pt;}
.ws144{word-spacing:5.140736pt;}
.ws1d{word-spacing:5.188557pt;}
.ws57{word-spacing:5.236378pt;}
.ws94{word-spacing:5.270880pt;}
.ws25{word-spacing:5.284198pt;}
.ws24{word-spacing:5.332019pt;}
.ws85{word-spacing:5.379840pt;}
.wsdf{word-spacing:5.427661pt;}
.ws9{word-spacing:5.475482pt;}
.wsdd{word-spacing:5.483415pt;}
.wscf{word-spacing:5.523302pt;}
.ws83{word-spacing:5.571123pt;}
.ws7{word-spacing:5.618944pt;}
.ws8b{word-spacing:5.666765pt;}
.wse1{word-spacing:5.714586pt;}
.ws119{word-spacing:5.807841pt;}
.ws36{word-spacing:5.810227pt;}
.ws79{word-spacing:5.858048pt;}
.ws145{word-spacing:5.905869pt;}
.ws48{word-spacing:5.953690pt;}
.ws32{word-spacing:6.001510pt;}
.wsc3{word-spacing:6.049331pt;}
.wsd1{word-spacing:6.097152pt;}
.ws5a{word-spacing:6.144973pt;}
.ws5d{word-spacing:6.192794pt;}
.ws6f{word-spacing:6.240614pt;}
.ws74{word-spacing:6.288435pt;}
.ws38{word-spacing:6.313194pt;}
.ws11{word-spacing:6.336256pt;}
.ws80{word-spacing:6.384077pt;}
.ws146{word-spacing:6.421456pt;}
.ws64{word-spacing:6.527539pt;}
.ws2b{word-spacing:6.575360pt;}
.ws90{word-spacing:6.623181pt;}
.wsef{word-spacing:6.647091pt;}
.ws3e{word-spacing:6.671002pt;}
.wsb8{word-spacing:6.718822pt;}
.ws101{word-spacing:6.766643pt;}
.ws8f{word-spacing:6.814464pt;}
.wsdb{word-spacing:6.838374pt;}
.ws8{word-spacing:6.862285pt;}
.wsf3{word-spacing:6.886195pt;}
.ws152{word-spacing:6.910106pt;}
.wsd9{word-spacing:6.934016pt;}
.wsb{word-spacing:6.957926pt;}
.wsd6{word-spacing:6.981837pt;}
.wsec{word-spacing:7.029658pt;}
.ws139{word-spacing:7.101389pt;}
.ws9f{word-spacing:7.149210pt;}
.wsa3{word-spacing:7.197030pt;}
.ws13e{word-spacing:7.244851pt;}
.wsd8{word-spacing:7.316582pt;}
.ws3a{word-spacing:7.340493pt;}
.ws3b{word-spacing:7.436134pt;}
.wsbf{word-spacing:7.483955pt;}
.ws2e{word-spacing:7.521014pt;}
.ws2f{word-spacing:7.531776pt;}
.ws13a{word-spacing:7.579597pt;}
.ws11d{word-spacing:7.637893pt;}
.ws129{word-spacing:7.661904pt;}
.wsf4{word-spacing:7.715037pt;}
.ws71{word-spacing:7.723059pt;}
.ws1b{word-spacing:7.770880pt;}
.ws28{word-spacing:7.818701pt;}
.ws3c{word-spacing:7.866522pt;}
.ws13c{word-spacing:7.962163pt;}
.ws84{word-spacing:8.057805pt;}
.ws141{word-spacing:8.153446pt;}
.wseb{word-spacing:8.177357pt;}
.ws158{word-spacing:8.271159pt;}
.ws7b{word-spacing:8.392550pt;}
.ws13f{word-spacing:8.440371pt;}
.ws18{word-spacing:8.583834pt;}
.wsff{word-spacing:8.631654pt;}
.ws35{word-spacing:8.679475pt;}
.ws17{word-spacing:8.727296pt;}
.ws9b{word-spacing:8.870758pt;}
.ws121{word-spacing:8.883322pt;}
.ws128{word-spacing:8.883983pt;}
.ws115{word-spacing:8.966400pt;}
.ws113{word-spacing:8.990250pt;}
.ws4b{word-spacing:9.014221pt;}
.ws4c{word-spacing:9.062042pt;}
.wsb1{word-spacing:9.109862pt;}
.ws1e{word-spacing:9.157683pt;}
.ws105{word-spacing:9.205504pt;}
.ws23{word-spacing:9.348966pt;}
.wse0{word-spacing:9.396787pt;}
.ws50{word-spacing:9.415321pt;}
.ws66{word-spacing:9.435044pt;}
.wsa2{word-spacing:9.444608pt;}
.wsc7{word-spacing:9.492429pt;}
.ws3f{word-spacing:9.588070pt;}
.ws135{word-spacing:9.635891pt;}
.ws58{word-spacing:9.683712pt;}
.wse{word-spacing:9.731533pt;}
.ws13d{word-spacing:9.827174pt;}
.ws1c{word-spacing:9.922816pt;}
.ws103{word-spacing:9.970637pt;}
.ws14d{word-spacing:10.001980pt;}
.ws42{word-spacing:10.114099pt;}
.ws10f{word-spacing:10.159195pt;}
.ws19{word-spacing:10.353203pt;}
.ws137{word-spacing:10.496666pt;}
.ws43{word-spacing:10.687949pt;}
.ws114{word-spacing:10.724471pt;}
.ws143{word-spacing:10.735770pt;}
.ws13b{word-spacing:10.783590pt;}
.ws142{word-spacing:10.831411pt;}
.ws4a{word-spacing:10.927053pt;}
.ws14e{word-spacing:12.622032pt;}
.wse3{word-spacing:13.413734pt;}
.wse4{word-spacing:13.461555pt;}
.ws14a{word-spacing:13.652838pt;}
.ws11e{word-spacing:14.609246pt;}
.ws12d{word-spacing:14.663063pt;}
.ws11c{word-spacing:14.663219pt;}
.wse5{word-spacing:14.752717pt;}
.wsb5{word-spacing:14.896179pt;}
.ws11b{word-spacing:16.380553pt;}
.wse2{word-spacing:17.095936pt;}
.wsca{word-spacing:17.425865pt;}
.ws117{word-spacing:17.820553pt;}
.wsfa{word-spacing:19.007602pt;}
.ws11a{word-spacing:19.414366pt;}
.wsfd{word-spacing:19.476936pt;}
.ws118{word-spacing:19.639219pt;}
.wsfc{word-spacing:19.860936pt;}
.ws39{word-spacing:19.936317pt;}
.wsaa{word-spacing:20.297137pt;}
.wse9{word-spacing:20.350271pt;}
.wscc{word-spacing:20.651037pt;}
.ws5{word-spacing:20.722347pt;}
.ws12a{word-spacing:22.401559pt;}
.ws134{word-spacing:23.254366pt;}
.ws131{word-spacing:26.086246pt;}
.ws133{word-spacing:26.134067pt;}
.ws3d{word-spacing:26.229709pt;}
.wsf0{word-spacing:27.210035pt;}
.ws10b{word-spacing:27.257856pt;}
.ws4{word-spacing:27.636455pt;}
.ws5e{word-spacing:29.242419pt;}
.ws12e{word-spacing:30.501688pt;}
.wsdc{word-spacing:30.940723pt;}
.wsee{word-spacing:30.992265pt;}
.wsf1{word-spacing:31.212501pt;}
.wsed{word-spacing:31.238451pt;}
.wsd5{word-spacing:31.614430pt;}
.ws108{word-spacing:35.100467pt;}
.ws127{word-spacing:36.134169pt;}
.wsda{word-spacing:36.630733pt;}
.ws10a{word-spacing:37.013299pt;}
.ws112{word-spacing:38.720155pt;}
.ws51{word-spacing:39.547503pt;}
.ws52{word-spacing:39.578822pt;}
.ws132{word-spacing:39.729886pt;}
.wsd7{word-spacing:40.150374pt;}
.ws109{word-spacing:40.291550pt;}
.wsf6{word-spacing:49.000052pt;}
.ws98{word-spacing:51.146053pt;}
.ws73{word-spacing:51.805867pt;}
.ws147{word-spacing:60.708506pt;}
.ws130{word-spacing:61.050813pt;}
.ws99{word-spacing:67.268984pt;}
.ws123{word-spacing:75.263307pt;}
.ws126{word-spacing:90.850300pt;}
.wsf7{word-spacing:135.183184pt;}
.ws122{word-spacing:137.873852pt;}
.ws9a{word-spacing:138.743153pt;}
.wsf8{word-spacing:161.750117pt;}
.ws125{word-spacing:172.031667pt;}
.ws10c{word-spacing:215.359128pt;}
.ws10e{word-spacing:434.302633pt;}
.ws4f{word-spacing:729.895848pt;}
.ws2{word-spacing:754.924800pt;}
._5{margin-left:-33.630125pt;}
._4{margin-left:-31.179162pt;}
._3b{margin-left:-26.357677pt;}
._3f{margin-left:-22.192689pt;}
._2d{margin-left:-21.284094pt;}
._21{margin-left:-7.176931pt;}
._3{margin-left:-5.228407pt;}
._c{margin-left:-4.112589pt;}
._2{margin-left:-2.387202pt;}
._0{margin-left:-0.984747pt;}
._6{width:1.338982pt;}
._1{width:2.387202pt;}
._2b{width:3.443098pt;}
._2f{width:4.495155pt;}
._31{width:6.068821pt;}
._30{width:7.103599pt;}
._23{width:11.122756pt;}
._f{width:12.289946pt;}
._29{width:13.628928pt;}
._20{width:14.640841pt;}
._17{width:15.805357pt;}
._e{width:16.905235pt;}
._19{width:18.100755pt;}
._10{width:19.790135pt;}
._b{width:21.519360pt;}
._13{width:23.277655pt;}
._18{width:24.225655pt;}
._14{width:25.181399pt;}
._d{width:26.540544pt;}
._8{width:27.620932pt;}
._15{width:28.988245pt;}
._7{width:30.128269pt;}
._1c{width:31.083520pt;}
._2e{width:32.087757pt;}
._1b{width:32.976862pt;}
._2c{width:34.287514pt;}
._32{width:35.248350pt;}
._1a{width:36.467780pt;}
._a{width:38.256533pt;}
._11{width:39.930368pt;}
._16{width:41.576930pt;}
._1f{width:42.535430pt;}
._1e{width:43.554356pt;}
._1d{width:44.450016pt;}
._12{width:45.617493pt;}
._3e{width:46.625280pt;}
._33{width:54.085325pt;}
._34{width:57.958810pt;}
._2a{width:61.103947pt;}
._27{width:65.397362pt;}
._24{width:66.721274pt;}
._22{width:71.731200pt;}
._9{width:86.077200pt;}
._3c{width:88.851046pt;}
._3d{width:93.709278pt;}
._26{width:104.034203pt;}
._39{width:137.886745pt;}
._25{width:173.780372pt;}
._3a{width:180.790214pt;}
._28{width:189.880128pt;}
._38{width:209.985041pt;}
._37{width:229.194704pt;}
._36{width:236.551974pt;}
._35{width:256.264639pt;}
.fsc{font-size:11.625585pt;}
.fsd{font-size:16.073822pt;}
.fsa{font-size:19.340160pt;}
.fsb{font-size:23.637973pt;}
.fse{font-size:25.786880pt;}
.fs8{font-size:25.814400pt;}
.fsf{font-size:31.392640pt;}
.fs9{font-size:31.880533pt;}
.fs5{font-size:47.820800pt;}
.fs10{font-size:52.480000pt;}
.fs7{font-size:53.133867pt;}
.fs0{font-size:57.600000pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:69.120000pt;}
.fs6{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs2{font-size:116.480000pt;}
.y0{bottom:0.000000pt;}
.y212{bottom:4.120529pt;}
.y23b{bottom:5.995450pt;}
.y23f{bottom:8.461320pt;}
.y24f{bottom:10.056883pt;}
.y219{bottom:10.395336pt;}
.y211{bottom:10.717672pt;}
.y23a{bottom:10.927190pt;}
.y253{bottom:12.242312pt;}
.y1{bottom:12.472412pt;}
.y247{bottom:13.387689pt;}
.y21a{bottom:13.441411pt;}
.y218{bottom:16.482114pt;}
.y90{bottom:16.779360pt;}
.y241{bottom:18.319429pt;}
.y21c{bottom:19.522817pt;}
.y8c{bottom:21.731356pt;}
.y24d{bottom:25.529011pt;}
.y93{bottom:25.603516pt;}
.y21b{bottom:25.609595pt;}
.y20c{bottom:26.512136pt;}
.y8b{bottom:29.475676pt;}
.y251{bottom:31.078407pt;}
.y24e{bottom:37.439326pt;}
.y5{bottom:38.657055pt;}
.y252{bottom:55.041864pt;}
.y45{bottom:56.149333pt;}
.y4{bottom:56.577055pt;}
.y21e{bottom:56.935282pt;}
.y20d{bottom:84.597083pt;}
.y11a{bottom:96.000000pt;}
.y279{bottom:96.045333pt;}
.y24b{bottom:97.168187pt;}
.y14d{bottom:97.684000pt;}
.y180{bottom:102.236000pt;}
.y1de{bottom:104.062667pt;}
.y81{bottom:104.644000pt;}
.y2c3{bottom:107.300000pt;}
.y254{bottom:109.677525pt;}
.y88{bottom:109.822976pt;}
.y44{bottom:110.377333pt;}
.y2ed{bottom:110.612000pt;}
.y278{bottom:110.657333pt;}
.y29a{bottom:111.982667pt;}
.y14c{bottom:112.296000pt;}
.y1ac{bottom:112.638667pt;}
.y119{bottom:113.197333pt;}
.y17f{bottom:116.848000pt;}
.ye5{bottom:117.545333pt;}
.y87{bottom:117.567296pt;}
.y80{bottom:119.254667pt;}
.y20a{bottom:120.249333pt;}
.y2c2{bottom:121.912000pt;}
.y21d{bottom:122.955067pt;}
.yb2{bottom:123.106667pt;}
.y1dd{bottom:123.988000pt;}
.y43{bottom:124.989333pt;}
.y2ec{bottom:125.224000pt;}
.y277{bottom:125.269333pt;}
.y14b{bottom:126.908000pt;}
.y1ab{bottom:127.250667pt;}
.y21f{bottom:129.944386pt;}
.y118{bottom:130.394667pt;}
.y17e{bottom:131.460000pt;}
.ye4{bottom:132.157333pt;}
.y216{bottom:132.668125pt;}
.y213{bottom:132.968972pt;}
.y209{bottom:134.861333pt;}
.y299{bottom:137.221333pt;}
.y250{bottom:137.637472pt;}
.yb1{bottom:137.718667pt;}
.y1dc{bottom:138.600000pt;}
.y7f{bottom:139.180000pt;}
.y42{bottom:139.601333pt;}
.y276{bottom:139.881333pt;}
.y221{bottom:140.850087pt;}
.y14a{bottom:141.520000pt;}
.y1aa{bottom:141.862667pt;}
.y215{bottom:141.951402pt;}
.y20e{bottom:142.682030pt;}
.ye3{bottom:146.769333pt;}
.y2c1{bottom:147.150667pt;}
.y208{bottom:149.473333pt;}
.y117{bottom:150.177333pt;}
.y2eb{bottom:150.312000pt;}
.y214{bottom:150.649102pt;}
.y23c{bottom:151.379730pt;}
.y17d{bottom:151.385333pt;}
.y298{bottom:151.833333pt;}
.y1db{bottom:153.212000pt;}
.y7e{bottom:153.792000pt;}
.y41{bottom:154.213333pt;}
.y275{bottom:154.493333pt;}
.y1a9{bottom:156.474667pt;}
.yb0{bottom:157.644000pt;}
.y236{bottom:158.394667pt;}
.y248{bottom:158.771969pt;}
.y23e{bottom:161.232467pt;}
.ye2{bottom:161.381333pt;}
.y149{bottom:161.445333pt;}
.y2c0{bottom:161.762667pt;}
.y249{bottom:163.698338pt;}
.y207{bottom:164.084000pt;}
.y116{bottom:164.789333pt;}
.y2ea{bottom:164.924000pt;}
.y17c{bottom:165.997333pt;}
.y238{bottom:166.164208pt;}
.y297{bottom:166.445333pt;}
.y1da{bottom:167.824000pt;}
.y243{bottom:168.624706pt;}
.y40{bottom:168.825333pt;}
.y274{bottom:169.105333pt;}
.y1a8{bottom:171.086667pt;}
.y23d{bottom:171.090577pt;}
.y235{bottom:173.005333pt;}
.y24a{bottom:173.556447pt;}
.y7d{bottom:173.717333pt;}
.ye1{bottom:175.993333pt;}
.y239{bottom:176.016945pt;}
.y148{bottom:176.057333pt;}
.y242{bottom:178.482815pt;}
.y206{bottom:178.696000pt;}
.y115{bottom:179.401333pt;}
.yaf{bottom:179.977333pt;}
.y17b{bottom:180.609333pt;}
.y240{bottom:180.948686pt;}
.y92{bottom:181.135256pt;}
.y1d9{bottom:182.434667pt;}
.y8e{bottom:183.071336pt;}
.y245{bottom:183.409184pt;}
.y3f{bottom:183.437333pt;}
.y273{bottom:183.717333pt;}
.y1a7{bottom:185.698667pt;}
.y246{bottom:185.875054pt;}
.y2bf{bottom:187.001333pt;}
.y234{bottom:187.617333pt;}
.y7c{bottom:188.329333pt;}
.y91{bottom:188.879576pt;}
.y2e9{bottom:190.012000pt;}
.ye0{bottom:190.605333pt;}
.y147{bottom:190.669333pt;}
.y244{bottom:190.801423pt;}
.y8d{bottom:190.815656pt;}
.y296{bottom:191.684000pt;}
.y205{bottom:193.308000pt;}
.y114{bottom:194.013333pt;}
.y272{bottom:198.329333pt;}
.y1a6{bottom:200.310667pt;}
.y17a{bottom:200.534667pt;}
.y20f{bottom:200.766978pt;}
.y2be{bottom:201.613333pt;}
.y233{bottom:202.229333pt;}
.y1d8{bottom:202.360000pt;}
.y220{bottom:202.958862pt;}
.y3e{bottom:203.361333pt;}
.y2e8{bottom:204.624000pt;}
.ydf{bottom:205.216000pt;}
.y146{bottom:205.281333pt;}
.y295{bottom:206.296000pt;}
.y204{bottom:207.920000pt;}
.y7b{bottom:208.254667pt;}
.y113{bottom:211.210667pt;}
.y271{bottom:212.940000pt;}
.y179{bottom:215.145333pt;}
.yae{bottom:215.302667pt;}
.y232{bottom:216.841333pt;}
.y1d7{bottom:216.972000pt;}
.y3d{bottom:217.973333pt;}
.yde{bottom:219.828000pt;}
.y1a5{bottom:220.236000pt;}
.y203{bottom:222.532000pt;}
.y7a{bottom:222.866667pt;}
.y112{bottom:225.822667pt;}
.y86{bottom:225.987776pt;}
.y2bd{bottom:226.852000pt;}
.y270{bottom:227.552000pt;}
.y145{bottom:227.862667pt;}
.y2e7{bottom:229.712000pt;}
.y178{bottom:229.757333pt;}
.yad{bottom:229.914667pt;}
.y231{bottom:231.453333pt;}
.y294{bottom:231.534667pt;}
.y1d6{bottom:231.584000pt;}
.y3c{bottom:232.585333pt;}
.y84{bottom:233.732096pt;}
.ydd{bottom:234.440000pt;}
.y1a4{bottom:234.846667pt;}
.y202{bottom:237.144000pt;}
.y111{bottom:240.433333pt;}
.y2bc{bottom:241.464000pt;}
.y83{bottom:241.476416pt;}
.y26f{bottom:242.164000pt;}
.y144{bottom:242.474667pt;}
.y79{bottom:242.792000pt;}
.y2e6{bottom:244.324000pt;}
.yac{bottom:244.526667pt;}
.y230{bottom:246.065333pt;}
.y293{bottom:246.146667pt;}
.y1d5{bottom:246.196000pt;}
.y3b{bottom:247.197333pt;}
.ydc{bottom:249.052000pt;}
.y85{bottom:249.220736pt;}
.y201{bottom:251.756000pt;}
.y177{bottom:252.090667pt;}
.y1a3{bottom:254.772000pt;}
.y2bb{bottom:256.076000pt;}
.y26e{bottom:256.776000pt;}
.y78{bottom:257.404000pt;}
.y210{bottom:258.851925pt;}
.yab{bottom:259.138667pt;}
.y30d{bottom:260.096921pt;}
.y94{bottom:260.191856pt;}
.y110{bottom:260.216000pt;}
.y22f{bottom:260.677333pt;}
.y3a{bottom:261.809333pt;}
.ydb{bottom:263.664000pt;}
.y143{bottom:264.808000pt;}
.y200{bottom:266.368000pt;}
.y1d4{bottom:268.529333pt;}
.y1a2{bottom:269.384000pt;}
.y2e5{bottom:269.412000pt;}
.y292{bottom:271.385333pt;}
.y26d{bottom:271.388000pt;}
.y10f{bottom:274.828000pt;}
.y22e{bottom:275.289333pt;}
.y77{bottom:277.329333pt;}
.yda{bottom:278.276000pt;}
.y30c{bottom:280.896921pt;}
.y1ff{bottom:280.980000pt;}
.y2ba{bottom:281.314667pt;}
.y39{bottom:281.734667pt;}
.y1a1{bottom:283.996000pt;}
.y2e4{bottom:284.024000pt;}
.yaa{bottom:285.589333pt;}
.y291{bottom:285.997333pt;}
.y26c{bottom:286.000000pt;}
.y176{bottom:287.416000pt;}
.y10e{bottom:289.440000pt;}
.y22d{bottom:289.901333pt;}
.y76{bottom:291.941333pt;}
.yd9{bottom:292.888000pt;}
.y2b9{bottom:295.926667pt;}
.y38{bottom:296.346667pt;}
.y142{bottom:297.477333pt;}
.y1a0{bottom:298.608000pt;}
.y8a{bottom:299.542682pt;}
.y26b{bottom:300.612000pt;}
.y30b{bottom:301.057188pt;}
.y1d3{bottom:301.198667pt;}
.y175{bottom:302.028000pt;}
.y1fe{bottom:303.312000pt;}
.y22c{bottom:304.513333pt;}
.y89{bottom:307.287002pt;}
.yd8{bottom:307.500000pt;}
.y2e3{bottom:309.112000pt;}
.y10d{bottom:309.222667pt;}
.y37{bottom:310.958667pt;}
.y290{bottom:311.236000pt;}
.y75{bottom:311.866667pt;}
.y141{bottom:312.089333pt;}
.y19f{bottom:313.220000pt;}
.y26a{bottom:315.224000pt;}
.y1d2{bottom:315.810667pt;}
.y174{bottom:316.640000pt;}
.y22b{bottom:319.124000pt;}
.y2b8{bottom:321.165333pt;}
.yd7{bottom:322.112000pt;}
.y2e2{bottom:323.724000pt;}
.y10c{bottom:323.834667pt;}
.y28f{bottom:325.846667pt;}
.y74{bottom:326.478667pt;}
.y140{bottom:326.701333pt;}
.ya9{bottom:327.516000pt;}
.y19e{bottom:327.832000pt;}
.y269{bottom:329.836000pt;}
.y36{bottom:330.884000pt;}
.y22a{bottom:333.736000pt;}
.y173{bottom:333.909333pt;}
.y1d1{bottom:335.734667pt;}
.y2b7{bottom:335.776000pt;}
.y1fd{bottom:335.981333pt;}
.y10b{bottom:338.446667pt;}
.y73{bottom:341.090667pt;}
.y13f{bottom:341.312000pt;}
.ya8{bottom:342.126667pt;}
.y19d{bottom:342.444000pt;}
.yd6{bottom:344.444000pt;}
.y268{bottom:344.448000pt;}
.y35{bottom:345.496000pt;}
.y229{bottom:348.348000pt;}
.y172{bottom:348.520000pt;}
.y2e1{bottom:348.812000pt;}
.y1d0{bottom:350.346667pt;}
.y2b6{bottom:350.388000pt;}
.y1fc{bottom:350.593333pt;}
.y28e{bottom:351.086667pt;}
.y10a{bottom:353.058667pt;}
.y72{bottom:355.701333pt;}
.y13e{bottom:355.924000pt;}
.ya7{bottom:356.738667pt;}
.y19c{bottom:357.056000pt;}
.y267{bottom:359.060000pt;}
.y34{bottom:360.108000pt;}
.y228{bottom:362.960000pt;}
.y171{bottom:363.132000pt;}
.y2e0{bottom:363.424000pt;}
.y1cf{bottom:364.958667pt;}
.y1fb{bottom:365.205333pt;}
.y28d{bottom:365.697333pt;}
.y109{bottom:367.670667pt;}
.y71{bottom:370.313333pt;}
.y13d{bottom:370.536000pt;}
.ya6{bottom:371.350667pt;}
.y19b{bottom:371.668000pt;}
.y266{bottom:373.670667pt;}
.y33{bottom:374.720000pt;}
.y2b5{bottom:375.626667pt;}
.y227{bottom:377.572000pt;}
.y170{bottom:377.744000pt;}
.y1ce{bottom:379.570667pt;}
.yd5{bottom:379.770667pt;}
.y1fa{bottom:379.817333pt;}
.y70{bottom:384.925333pt;}
.y13c{bottom:385.148000pt;}
.ya5{bottom:385.962667pt;}
.y19a{bottom:386.280000pt;}
.y108{bottom:387.524000pt;}
.y265{bottom:388.282667pt;}
.y2df{bottom:388.512000pt;}
.y32{bottom:389.330667pt;}
.y28c{bottom:390.936000pt;}
.y30a{bottom:391.616921pt;}
.y16f{bottom:392.356000pt;}
.yd4{bottom:394.382667pt;}
.y1f9{bottom:394.429333pt;}
.y6f{bottom:399.537333pt;}
.y13b{bottom:399.760000pt;}
.y226{bottom:399.905333pt;}
.ya4{bottom:400.574667pt;}
.y2b4{bottom:400.865333pt;}
.y199{bottom:400.890667pt;}
.y1cd{bottom:401.904000pt;}
.y2de{bottom:403.124000pt;}
.y16e{bottom:406.968000pt;}
.y1f8{bottom:409.041333pt;}
.y31{bottom:409.256000pt;}
.y107{bottom:409.857333pt;}
.y6e{bottom:414.149333pt;}
.y264{bottom:414.733333pt;}
.ya3{bottom:415.186667pt;}
.y2b3{bottom:415.477333pt;}
.y28b{bottom:417.388000pt;}
.yd3{bottom:420.833333pt;}
.y16d{bottom:421.580000pt;}
.y13a{bottom:422.093333pt;}
.y198{bottom:423.224000pt;}
.y1f7{bottom:423.653333pt;}
.y30{bottom:423.868000pt;}
.y2dd{bottom:428.212000pt;}
.y6d{bottom:428.761333pt;}
.ya2{bottom:429.798667pt;}
.y1cc{bottom:437.229333pt;}
.y1f6{bottom:438.264000pt;}
.y2f{bottom:438.480000pt;}
.y2b2{bottom:440.716000pt;}
.y16c{bottom:441.505333pt;}
.y225{bottom:442.338667pt;}
.y2dc{bottom:442.824000pt;}
.y6c{bottom:443.373333pt;}
.ya1{bottom:444.410667pt;}
.y106{bottom:445.128000pt;}
.y1cb{bottom:451.841333pt;}
.y1f5{bottom:452.876000pt;}
.y197{bottom:453.660000pt;}
.y2b1{bottom:455.328000pt;}
.y16b{bottom:456.117333pt;}
.y263{bottom:456.660000pt;}
.y139{bottom:457.418667pt;}
.y2db{bottom:457.436000pt;}
.y6b{bottom:457.985333pt;}
.y224{bottom:458.278667pt;}
.y2e{bottom:458.405333pt;}
.ya0{bottom:459.022667pt;}
.y28a{bottom:459.313333pt;}
.y105{bottom:459.740000pt;}
.yd2{bottom:462.758667pt;}
.y1ca{bottom:466.453333pt;}
.y1f4{bottom:467.488000pt;}
.y262{bottom:471.272000pt;}
.y138{bottom:472.030667pt;}
.y6a{bottom:472.597333pt;}
.y2d{bottom:473.017333pt;}
.y16a{bottom:473.385333pt;}
.y9f{bottom:473.634667pt;}
.y289{bottom:473.925333pt;}
.y223{bottom:474.218667pt;}
.y104{bottom:474.352000pt;}
.yd1{bottom:477.370667pt;}
.y309{bottom:478.976921pt;}
.y2b0{bottom:480.566667pt;}
.y1c9{bottom:481.065333pt;}
.y1f3{bottom:482.100000pt;}
.y2da{bottom:482.524000pt;}
.y261{bottom:485.884000pt;}
.y137{bottom:486.642667pt;}
.y69{bottom:487.209333pt;}
.y2c{bottom:487.629333pt;}
.y169{bottom:487.997333pt;}
.y9e{bottom:488.246667pt;}
.y222{bottom:490.158667pt;}
.yd0{bottom:491.982667pt;}
.y288{bottom:493.850667pt;}
.y2af{bottom:495.178667pt;}
.y196{bottom:495.585333pt;}
.y1c8{bottom:495.677333pt;}
.y2d9{bottom:497.136000pt;}
.y308{bottom:499.776921pt;}
.y260{bottom:500.496000pt;}
.y103{bottom:500.802667pt;}
.y68{bottom:501.820000pt;}
.y1f2{bottom:502.025333pt;}
.y2b{bottom:502.241333pt;}
.y168{bottom:502.609333pt;}
.y9d{bottom:502.857333pt;}
.y287{bottom:508.462667pt;}
.y195{bottom:510.197333pt;}
.y1c7{bottom:510.289333pt;}
.ycf{bottom:511.908000pt;}
.y136{bottom:512.545333pt;}
.y25f{bottom:515.108000pt;}
.y67{bottom:516.432000pt;}
.y1f1{bottom:516.637333pt;}
.y167{bottom:517.221333pt;}
.y9c{bottom:517.469333pt;}
.y20b{bottom:519.382667pt;}
.y2ae{bottom:520.417333pt;}
.y307{bottom:520.576921pt;}
.y2a{bottom:522.166667pt;}
.y2d8{bottom:522.224000pt;}
.y15{bottom:522.497055pt;}
.y286{bottom:523.074667pt;}
.y194{bottom:524.809333pt;}
.yce{bottom:526.520000pt;}
.y25e{bottom:529.718667pt;}
.y1c6{bottom:530.214667pt;}
.y66{bottom:531.044000pt;}
.y166{bottom:531.833333pt;}
.y9b{bottom:532.081333pt;}
.y217{bottom:536.224723pt;}
.y1f0{bottom:536.562667pt;}
.y29{bottom:536.778667pt;}
.y2d7{bottom:536.836000pt;}
.y285{bottom:537.686667pt;}
.y135{bottom:538.448000pt;}
.y193{bottom:539.421333pt;}
.ycd{bottom:541.132000pt;}
.y306{bottom:541.376921pt;}
.y102{bottom:542.673333pt;}
.y65{bottom:545.656000pt;}
.y165{bottom:546.445333pt;}
.y1c5{bottom:550.140000pt;}
.y1ef{bottom:551.174667pt;}
.y28{bottom:551.390667pt;}
.y9a{bottom:552.006667pt;}
.y25d{bottom:552.052000pt;}
.y134{bottom:553.060000pt;}
.y192{bottom:554.033333pt;}
.y14{bottom:556.417055pt;}
.y101{bottom:557.285333pt;}
.y284{bottom:557.612000pt;}
.y64{bottom:560.268000pt;}
.ycc{bottom:561.057333pt;}
.y2d6{bottom:561.924000pt;}
.y305{bottom:562.176921pt;}
.y99{bottom:566.618667pt;}
.y191{bottom:568.645333pt;}
.y1c4{bottom:570.065333pt;}
.y133{bottom:570.328000pt;}
.y1ee{bottom:571.100000pt;}
.y100{bottom:571.897333pt;}
.y283{bottom:572.222667pt;}
.y63{bottom:574.880000pt;}
.ycb{bottom:575.669333pt;}
.y27{bottom:577.841333pt;}
.y304{bottom:582.976921pt;}
.y190{bottom:583.257333pt;}
.y164{bottom:583.638667pt;}
.y25c{bottom:584.721333pt;}
.y132{bottom:584.940000pt;}
.y2ad{bottom:585.506667pt;}
.yff{bottom:586.509333pt;}
.y282{bottom:586.834667pt;}
.y2d5{bottom:587.012000pt;}
.y62{bottom:589.492000pt;}
.y1c3{bottom:589.990667pt;}
.yca{bottom:590.281333pt;}
.y13{bottom:590.337055pt;}
.y1ed{bottom:591.025333pt;}
.y18f{bottom:597.869333pt;}
.y163{bottom:598.250667pt;}
.y25b{bottom:599.333333pt;}
.yfe{bottom:601.120000pt;}
.y281{bottom:601.446667pt;}
.y2d4{bottom:601.624000pt;}
.y131{bottom:602.209333pt;}
.y303{bottom:603.776921pt;}
.y61{bottom:604.104000pt;}
.y1c2{bottom:604.601333pt;}
.yc9{bottom:604.892000pt;}
.y1ec{bottom:605.637333pt;}
.y98{bottom:609.790667pt;}
.y2ac{bottom:610.745333pt;}
.y18e{bottom:612.481333pt;}
.y162{bottom:612.862667pt;}
.y25a{bottom:613.945333pt;}
.yfd{bottom:615.732000pt;}
.y130{bottom:616.821333pt;}
.y60{bottom:618.716000pt;}
.y1c1{bottom:619.213333pt;}
.y26{bottom:619.766667pt;}
.y1eb{bottom:620.249333pt;}
.y280{bottom:621.372000pt;}
.yc8{bottom:622.161333pt;}
.y12{bottom:624.257055pt;}
.y302{bottom:624.576921pt;}
.y2ab{bottom:625.357333pt;}
.y97{bottom:625.730667pt;}
.y2d3{bottom:626.712000pt;}
.y18d{bottom:627.093333pt;}
.yfc{bottom:630.344000pt;}
.y5f{bottom:633.328000pt;}
.y1c0{bottom:633.825333pt;}
.y12f{bottom:634.089333pt;}
.y25{bottom:634.378667pt;}
.y161{bottom:635.196000pt;}
.y27f{bottom:635.984000pt;}
.y259{bottom:636.277333pt;}
.yc7{bottom:636.773333pt;}
.y2aa{bottom:639.969333pt;}
.y2d2{bottom:641.324000pt;}
.y96{bottom:641.670667pt;}
.y18c{bottom:641.704000pt;}
.y1ea{bottom:642.581333pt;}
.yfb{bottom:644.956000pt;}
.y301{bottom:645.376921pt;}
.y5e{bottom:647.940000pt;}
.y1bf{bottom:648.437333pt;}
.y12e{bottom:648.701333pt;}
.y24{bottom:648.990667pt;}
.y27e{bottom:650.596000pt;}
.yc6{bottom:651.385333pt;}
.y2a9{bottom:654.581333pt;}
.y18b{bottom:656.316000pt;}
.y95{bottom:657.610667pt;}
.y11{bottom:658.177055pt;}
.yfa{bottom:659.568000pt;}
.y5d{bottom:662.550667pt;}
.y1be{bottom:663.049333pt;}
.y23{bottom:663.602667pt;}
.y12d{bottom:665.969333pt;}
.yc5{bottom:665.997333pt;}
.y300{bottom:666.176921pt;}
.y2d1{bottom:666.412000pt;}
.y160{bottom:667.865333pt;}
.y27d{bottom:670.521333pt;}
.yf9{bottom:674.180000pt;}
.y5c{bottom:677.162667pt;}
.y1bd{bottom:677.661333pt;}
.y22{bottom:678.214667pt;}
.y18a{bottom:678.649333pt;}
.y258{bottom:678.710667pt;}
.y2a8{bottom:679.820000pt;}
.y12c{bottom:680.581333pt;}
.y2d0{bottom:681.024000pt;}
.y15f{bottom:682.476000pt;}
.y27c{bottom:685.133333pt;}
.yc4{bottom:685.922667pt;}
.y82{bottom:686.834667pt;}
.y2ff{bottom:686.976921pt;}
.y1e9{bottom:687.745333pt;}
.yf8{bottom:688.792000pt;}
.y5b{bottom:691.774667pt;}
.y10{bottom:692.097055pt;}
.y1bc{bottom:692.273333pt;}
.y21{bottom:692.826667pt;}
.y2a7{bottom:694.432000pt;}
.y257{bottom:694.652000pt;}
.y12b{bottom:695.193333pt;}
.y27b{bottom:699.745333pt;}
.yc3{bottom:700.533333pt;}
.yf7{bottom:703.404000pt;}
.y1e8{bottom:703.685333pt;}
.y15e{bottom:705.058667pt;}
.y2cf{bottom:706.112000pt;}
.y5a{bottom:706.386667pt;}
.y1bb{bottom:706.885333pt;}
.y20{bottom:707.438667pt;}
.y2fe{bottom:707.776921pt;}
.y256{bottom:710.592000pt;}
.y12a{bottom:712.462667pt;}
.y189{bottom:713.974667pt;}
.y27a{bottom:714.357333pt;}
.yc2{bottom:715.145333pt;}
.yf6{bottom:718.016000pt;}
.y1e7{bottom:719.626667pt;}
.y15d{bottom:719.670667pt;}
.y2ce{bottom:720.724000pt;}
.y59{bottom:720.998667pt;}
.y1ba{bottom:721.497333pt;}
.yf{bottom:726.017055pt;}
.y255{bottom:726.532000pt;}
.y129{bottom:727.074667pt;}
.y1f{bottom:728.260000pt;}
.y2fd{bottom:728.576921pt;}
.y188{bottom:728.586667pt;}
.yf5{bottom:732.628000pt;}
.y15c{bottom:734.282667pt;}
.yc1{bottom:735.070667pt;}
.y58{bottom:735.610667pt;}
.y1e6{bottom:736.097333pt;}
.y1b9{bottom:736.109333pt;}
.y128{bottom:741.686667pt;}
.y187{bottom:743.198667pt;}
.y2a6{bottom:744.909333pt;}
.y2cd{bottom:745.812000pt;}
.yf4{bottom:747.238667pt;}
.y15b{bottom:748.894667pt;}
.y2fc{bottom:749.376921pt;}
.yc0{bottom:749.682667pt;}
.y57{bottom:750.222667pt;}
.y1b8{bottom:750.721333pt;}
.y1e5{bottom:751.698667pt;}
.y24c{bottom:755.756000pt;}
.y127{bottom:756.297333pt;}
.y186{bottom:757.810667pt;}
.ye{bottom:759.937055pt;}
.yf3{bottom:761.850667pt;}
.y15a{bottom:763.505333pt;}
.ybf{bottom:764.294667pt;}
.y56{bottom:764.834667pt;}
.y1b7{bottom:765.332000pt;}
.y2a5{bottom:770.148000pt;}
.y2fb{bottom:770.176921pt;}
.y2cc{bottom:770.900000pt;}
.y185{bottom:772.422667pt;}
.y1e{bottom:776.081333pt;}
.y126{bottom:776.222667pt;}
.yf2{bottom:776.462667pt;}
.y159{bottom:778.117333pt;}
.ybe{bottom:778.906667pt;}
.y55{bottom:779.446667pt;}
.y1b6{bottom:779.944000pt;}
.y8f{bottom:783.750443pt;}
.y2f9{bottom:784.760000pt;}
.y2cb{bottom:785.512000pt;}
.y184{bottom:787.034667pt;}
.y125{bottom:790.834667pt;}
.y2fa{bottom:790.976921pt;}
.yf1{bottom:791.074667pt;}
.y1e4{bottom:792.729333pt;}
.ybd{bottom:793.518667pt;}
.yd{bottom:793.857055pt;}
.y54{bottom:794.058667pt;}
.y237{bottom:795.209926pt;}
.y2a4{bottom:795.386667pt;}
.y158{bottom:798.042667pt;}
.y2f8{bottom:799.372000pt;}
.y2ca{bottom:800.124000pt;}
.y1b5{bottom:802.277333pt;}
.yf0{bottom:805.686667pt;}
.y1d{bottom:807.341333pt;}
.y124{bottom:808.104000pt;}
.ybc{bottom:808.130667pt;}
.y53{bottom:808.669333pt;}
.y183{bottom:809.368000pt;}
.y2a3{bottom:809.998667pt;}
.y157{bottom:812.654667pt;}
.yc{bottom:815.297055pt;}
.yef{bottom:820.298667pt;}
.y123{bottom:822.716000pt;}
.y52{bottom:823.281333pt;}
.y2f7{bottom:824.610667pt;}
.y2c9{bottom:825.212000pt;}
.y1c{bottom:825.938667pt;}
.y156{bottom:827.266667pt;}
.ybb{bottom:828.056000pt;}
.yee{bottom:834.910667pt;}
.y2a2{bottom:835.237333pt;}
.y51{bottom:837.893333pt;}
.y2f6{bottom:839.222667pt;}
.y182{bottom:839.802667pt;}
.y2c8{bottom:839.824000pt;}
.y155{bottom:841.878667pt;}
.y122{bottom:842.641333pt;}
.yba{bottom:842.668000pt;}
.y1b{bottom:844.536000pt;}
.y1e3{bottom:850.248000pt;}
.yb{bottom:850.497055pt;}
.y50{bottom:852.505333pt;}
.y2f5{bottom:853.833333pt;}
.y154{bottom:856.490667pt;}
.yb9{bottom:857.280000pt;}
.y2a1{bottom:860.476000pt;}
.yed{bottom:861.361333pt;}
.y1a{bottom:863.132000pt;}
.y1e2{bottom:864.858667pt;}
.y2c7{bottom:864.912000pt;}
.y1b4{bottom:865.789333pt;}
.y4f{bottom:867.117333pt;}
.y2f4{bottom:868.445333pt;}
.y153{bottom:871.102667pt;}
.y2a0{bottom:875.088000pt;}
.y121{bottom:875.226667pt;}
.yb8{bottom:877.205333pt;}
.y1e1{bottom:879.470667pt;}
.y2c6{bottom:879.524000pt;}
.y19{bottom:881.729333pt;}
.ya{bottom:885.697055pt;}
.y152{bottom:885.714667pt;}
.y29f{bottom:889.700000pt;}
.yb7{bottom:891.816000pt;}
.y2f3{bottom:893.684000pt;}
.y1e0{bottom:894.082667pt;}
.y4e{bottom:896.341333pt;}
.y18{bottom:900.326667pt;}
.yec{bottom:903.232000pt;}
.y120{bottom:903.745333pt;}
.y29e{bottom:904.310667pt;}
.y2c5{bottom:904.612000pt;}
.y151{bottom:905.640000pt;}
.yb6{bottom:906.428000pt;}
.y2f2{bottom:908.296000pt;}
.y1df{bottom:908.694667pt;}
.y4d{bottom:910.953333pt;}
.y11f{bottom:912.246667pt;}
.y9{bottom:917.376921pt;}
.yeb{bottom:917.844000pt;}
.y17{bottom:918.922667pt;}
.y150{bottom:920.252000pt;}
.y1b3{bottom:923.306667pt;}
.y4c{bottom:925.565333pt;}
.yb5{bottom:928.761333pt;}
.y29d{bottom:929.549333pt;}
.y2c4{bottom:929.700000pt;}
.yea{bottom:932.456000pt;}
.y2f1{bottom:933.534667pt;}
.y14f{bottom:934.864000pt;}
.y11e{bottom:936.688000pt;}
.y1b2{bottom:937.918667pt;}
.y8{bottom:938.176921pt;}
.y4b{bottom:940.177333pt;}
.y29c{bottom:944.161333pt;}
.ye9{bottom:947.068000pt;}
.y2f0{bottom:948.146667pt;}
.y14e{bottom:949.474667pt;}
.y1b1{bottom:952.530667pt;}
.y11d{bottom:952.628000pt;}
.y181{bottom:954.788000pt;}
.y4a{bottom:954.789333pt;}
.y16{bottom:957.445333pt;}
.y29b{bottom:958.773333pt;}
.y7{bottom:958.976921pt;}
.ye8{bottom:961.680000pt;}
.yb4{bottom:964.086667pt;}
.y1b0{bottom:967.142667pt;}
.y49{bottom:969.400000pt;}
.y2ef{bottom:973.385333pt;}
.ye7{bottom:976.292000pt;}
.yb3{bottom:978.698667pt;}
.y6{bottom:979.776921pt;}
.y1af{bottom:981.754667pt;}
.y48{bottom:984.012000pt;}
.y11c{bottom:987.333333pt;}
.y2ee{bottom:987.997333pt;}
.ye6{bottom:990.902667pt;}
.y1ae{bottom:996.366667pt;}
.y47{bottom:998.624000pt;}
.y11b{bottom:1003.273333pt;}
.y1ad{bottom:1010.978667pt;}
.y46{bottom:1013.236000pt;}
.y3{bottom:1078.017055pt;}
.y2{bottom:1095.937055pt;}
.h1a{height:12.404499pt;}
.h1c{height:17.150768pt;}
.hf{height:18.579309pt;}
.h17{height:20.171183pt;}
.h22{height:22.594117pt;}
.h18{height:24.653668pt;}
.h20{height:26.894910pt;}
.h1e{height:26.992760pt;}
.h1f{height:27.014250pt;}
.h15{height:33.187635pt;}
.h10{height:34.067949pt;}
.hb{height:35.865600pt;}
.h1d{height:36.856242pt;}
.h14{height:37.193707pt;}
.h23{height:37.838080pt;}
.h3{height:38.390625pt;}
.h11{height:38.721600pt;}
.ha{height:38.958012pt;}
.hd{height:39.850400pt;}
.h6{height:41.529600pt;}
.h12{height:44.632747pt;}
.h9{height:44.887791pt;}
.h4{height:49.835520pt;}
.hc{height:53.559147pt;}
.h8{height:64.913535pt;}
.h13{height:71.727733pt;}
.h5{height:83.982080pt;}
.h1b{height:199.590451pt;}
.h21{height:213.862360pt;}
.h19{height:250.976182pt;}
.h16{height:270.762240pt;}
.he{height:339.682977pt;}
.h2{height:1097.537067pt;}
.h0{height:1122.481867pt;}
.h7{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:58.082400pt;}
.w8{width:222.798643pt;}
.w7{width:247.731333pt;}
.w9{width:270.761520pt;}
.w6{width:270.762240pt;}
.w4{width:601.699137pt;}
.w2{width:768.756000pt;}
.w0{width:793.700800pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x47{left:6.661611pt;}
.x40{left:8.364619pt;}
.x3d{left:10.717672pt;}
.x1{left:12.472401pt;}
.x3c{left:13.409178pt;}
.x48{left:17.518962pt;}
.x20{left:20.252584pt;}
.x49{left:21.859753pt;}
.x21{left:26.809784pt;}
.x23{left:29.688695pt;}
.x22{left:32.069090pt;}
.x4a{left:34.892872pt;}
.x4b{left:39.233663pt;}
.x4c{left:43.574455pt;}
.x4d{left:45.750223pt;}
.x3e{left:54.883076pt;}
.x4e{left:56.607574pt;}
.x4f{left:58.777970pt;}
.x50{left:67.464925pt;}
.x63{left:68.958415pt;}
.x51{left:71.805716pt;}
.x52{left:73.976112pt;}
.x53{left:76.151880pt;}
.x54{left:84.833463pt;}
.x2{left:87.039999pt;}
.x55{left:89.179627pt;}
.x12{left:96.000000pt;}
.x2c{left:97.004000pt;}
.x29{left:103.970667pt;}
.x56{left:108.723933pt;}
.x57{left:110.894329pt;}
.x58{left:113.064724pt;}
.x3b{left:123.873333pt;}
.x59{left:126.092471pt;}
.x3f{left:127.698779pt;}
.xe{left:129.209333pt;}
.x1e{left:130.874065pt;}
.x25{left:135.236859pt;}
.x64{left:137.433326pt;}
.x3{left:139.161333pt;}
.x2e{left:140.869333pt;}
.xf{left:142.234667pt;}
.x2d{left:144.281333pt;}
.x36{left:145.646667pt;}
.x31{left:146.640000pt;}
.xd{left:147.640000pt;}
.x5a{left:149.982941pt;}
.x5b{left:152.153337pt;}
.x5c{left:154.323732pt;}
.x46{left:155.591196pt;}
.x5d{left:156.494128pt;}
.x10{left:158.432000pt;}
.x5e{left:167.351479pt;}
.x27{left:170.488000pt;}
.x5f{left:173.868038pt;}
.x60{left:176.038434pt;}
.x44{left:179.014670pt;}
.x26{left:183.273333pt;}
.x24{left:185.985853pt;}
.x61{left:186.895785pt;}
.x62{left:204.269695pt;}
.x1f{left:209.372456pt;}
.x6{left:213.025333pt;}
.x1b{left:233.808985pt;}
.x1c{left:239.068291pt;}
.x41{left:242.428906pt;}
.x30{left:247.733333pt;}
.x42{left:252.872592pt;}
.x2a{left:255.344000pt;}
.x39{left:270.066667pt;}
.x34{left:275.841333pt;}
.x35{left:280.748000pt;}
.x2f{left:285.130667pt;}
.x9{left:289.829333pt;}
.x14{left:292.736529pt;}
.x33{left:295.766667pt;}
.x13{left:310.129419pt;}
.x65{left:311.039999pt;}
.x4{left:312.440000pt;}
.x28{left:322.366667pt;}
.x1d{left:323.811495pt;}
.x2b{left:332.170667pt;}
.x8{left:336.153333pt;}
.x5{left:340.274667pt;}
.xb{left:344.393333pt;}
.x32{left:346.538667pt;}
.xa{left:347.634667pt;}
.x7{left:366.290667pt;}
.xc{left:369.792000pt;}
.x38{left:383.252000pt;}
.x37{left:390.208000pt;}
.x11{left:393.529333pt;}
.x45{left:399.064000pt;}
.x1a{left:413.741529pt;}
.x43{left:419.150905pt;}
.x19{left:429.522601pt;}
.x3a{left:511.082667pt;}
.x17{left:542.133190pt;}
.x18{left:544.644673pt;}
.x15{left:548.764832pt;}
.x16{left:550.680745pt;}
}




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