
    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_d6635d37e7e5518abd1187ce.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dcf03d959735c38c78cbbd52.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_13fef7b854138e3660ad51a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954000;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_27ba2b1c8deb26ad5748af44.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.383000;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_1766f17b3eb1b7a32fc47b45.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.392000;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_f4a13e3907bb740b0adb8fe7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073000;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_c56b12b4703a2cb4b5db0ea0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740000;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_cc8af5de03d2c32aa916f9e9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938000;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_fa5e7b67c827e667ce641850.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_dd97cb033b643faa56dc9875.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.509000;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_8ff394d3b7516c8ffefbe97c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_9c8e9d36d86e0f6b0096dd05.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.485000;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_83715085ac0cde09513d4f3c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959000;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_b7b7c520724e189cf13a155a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.887000;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_28ddfa6a1a912f02b0bf29f6.woff2')format("woff");}.fff{font-family:fff;line-height:0.734000;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_e4baa1d536101d31aef711c7.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_656d93f75fbd5dc1ce91d1d9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.400000;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_54ed919e6bf51b2e738f8004.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.050000;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_61734df841382f8db234f331.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.706000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7a84f854462f2b49d952ef08.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.652000;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_23f7edeb19ef29fea4ccdf4f.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_bc64d8d7d28652d008a2da5a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.748000;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_03c7323b8122bbadb75de951.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.544000;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_486b062a823da3eed61ec4af.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.714000;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;}
.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);}
.m3{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-14.967000px;}
.v9{vertical-align:-11.905200px;}
.v4{vertical-align:-9.184200px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:3.743953px;}
.v7{vertical-align:5.781383px;}
.v1{vertical-align:12.924129px;}
.v8{vertical-align:14.966400px;}
.v6{vertical-align:20.747783px;}
.v5{vertical-align:21.770586px;}
.v3{vertical-align:40.818600px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012000px;}
.ls20{letter-spacing:0.018782px;}
.ls22{letter-spacing:0.019382px;}
.ls1e{letter-spacing:0.022127px;}
.ls27{letter-spacing:0.030000px;}
.ls7f{letter-spacing:0.038400px;}
.ls12{letter-spacing:0.047995px;}
.ls6b{letter-spacing:0.048959px;}
.ls52{letter-spacing:0.072395px;}
.ls23{letter-spacing:0.080636px;}
.lsa{letter-spacing:0.081599px;}
.ls4f{letter-spacing:0.083992px;}
.ls2e{letter-spacing:0.090001px;}
.ls37{letter-spacing:0.093500px;}
.ls40{letter-spacing:0.094100px;}
.ls39{letter-spacing:0.094459px;}
.ls3b{letter-spacing:0.095059px;}
.ls6a{letter-spacing:0.100798px;}
.ls28{letter-spacing:0.104397px;}
.ls5a{letter-spacing:0.113683px;}
.ls56{letter-spacing:0.114881px;}
.ls30{letter-spacing:0.126001px;}
.ls16{letter-spacing:0.143995px;}
.ls7b{letter-spacing:0.144001px;}
.ls2b{letter-spacing:0.153290px;}
.ls25{letter-spacing:0.161995px;}
.ls79{letter-spacing:0.163174px;}
.ls2f{letter-spacing:0.168002px;}
.ls24{letter-spacing:0.172794px;}
.ls5{letter-spacing:0.174002px;}
.ls4b{letter-spacing:0.176992px;}
.ls9{letter-spacing:0.186002px;}
.ls11{letter-spacing:0.191981px;}
.ls18{letter-spacing:0.194394px;}
.ls60{letter-spacing:0.215640px;}
.ls3e{letter-spacing:0.221620px;}
.ls64{letter-spacing:0.223567px;}
.ls4e{letter-spacing:0.255974px;}
.ls5e{letter-spacing:0.276003px;}
.ls10{letter-spacing:0.360004px;}
.ls69{letter-spacing:0.826543px;}
.ls47{letter-spacing:1.155561px;}
.ls57{letter-spacing:1.184361px;}
.ls17{letter-spacing:1.497550px;}
.ls15{letter-spacing:1.630746px;}
.ls33{letter-spacing:1.969134px;}
.ls44{letter-spacing:2.918294px;}
.ls2d{letter-spacing:2.919779px;}
.ls26{letter-spacing:3.150032px;}
.ls5b{letter-spacing:3.255427px;}
.ls68{letter-spacing:3.758621px;}
.ls75{letter-spacing:3.878666px;}
.ls77{letter-spacing:3.883470px;}
.ls73{letter-spacing:3.887869px;}
.ls32{letter-spacing:3.953103px;}
.ls6d{letter-spacing:4.088782px;}
.ls14{letter-spacing:4.297577px;}
.ls46{letter-spacing:4.301316px;}
.ls49{letter-spacing:4.301838px;}
.ls1b{letter-spacing:4.303009px;}
.ls31{letter-spacing:4.303624px;}
.ls21{letter-spacing:4.557450px;}
.ls1f{letter-spacing:4.691687px;}
.ls55{letter-spacing:9.893400px;}
.ls13{letter-spacing:9.990100px;}
.ls0{letter-spacing:10.243072px;}
.ls71{letter-spacing:10.257472px;}
.lsc{letter-spacing:10.286271px;}
.ls4d{letter-spacing:10.332103px;}
.ls6f{letter-spacing:10.449469px;}
.ls70{letter-spacing:10.454269px;}
.lsb{letter-spacing:10.511869px;}
.ls3{letter-spacing:10.550268px;}
.ls1{letter-spacing:10.579068px;}
.lsd{letter-spacing:10.627067px;}
.ls72{letter-spacing:10.703866px;}
.ls4c{letter-spacing:12.960130px;}
.ls7{letter-spacing:13.098131px;}
.lse{letter-spacing:13.110131px;}
.ls7a{letter-spacing:13.140131px;}
.ls67{letter-spacing:13.200132px;}
.ls7e{letter-spacing:13.230132px;}
.ls5d{letter-spacing:13.248132px;}
.lsf{letter-spacing:13.302133px;}
.ls45{letter-spacing:13.326133px;}
.ls5f{letter-spacing:13.374134px;}
.ls51{letter-spacing:13.392134px;}
.ls7d{letter-spacing:13.434134px;}
.ls1a{letter-spacing:13.440134px;}
.ls6{letter-spacing:13.452135px;}
.ls6c{letter-spacing:13.498371px;}
.ls50{letter-spacing:13.536135px;}
.ls5c{letter-spacing:13.542135px;}
.ls59{letter-spacing:13.668137px;}
.ls6e{letter-spacing:14.091272px;}
.ls19{letter-spacing:16.092185px;}
.ls4a{letter-spacing:16.431785px;}
.ls34{letter-spacing:16.432385px;}
.ls48{letter-spacing:16.435985px;}
.ls2a{letter-spacing:16.728167px;}
.ls54{letter-spacing:17.068338px;}
.ls43{letter-spacing:17.070171px;}
.ls58{letter-spacing:17.482901px;}
.ls1c{letter-spacing:19.493585px;}
.ls53{letter-spacing:20.572083px;}
.ls42{letter-spacing:20.886157px;}
.ls2{letter-spacing:21.131131px;}
.ls3a{letter-spacing:21.224546px;}
.ls61{letter-spacing:21.225146px;}
.ls2c{letter-spacing:21.226381px;}
.ls41{letter-spacing:21.359994px;}
.ls38{letter-spacing:21.698983px;}
.ls29{letter-spacing:21.700240px;}
.ls36{letter-spacing:22.578226px;}
.ls66{letter-spacing:22.920229px;}
.ls65{letter-spacing:25.540200px;}
.ls3f{letter-spacing:25.540800px;}
.ls35{letter-spacing:25.881000px;}
.ls63{letter-spacing:33.120331px;}
.ls62{letter-spacing:36.251283px;}
.ls3d{letter-spacing:47.748477px;}
.ls3c{letter-spacing:50.539694px;}
.ls1d{letter-spacing:111.632538px;}
.ls7c{letter-spacing:267.059062px;}
.ls76{letter-spacing:338.065118px;}
.ls74{letter-spacing:342.270431px;}
.ls78{letter-spacing:359.241909px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsda{word-spacing:-13.494135px;}
.ws9f{word-spacing:-13.434134px;}
.ws88{word-spacing:-13.362134px;}
.ws48{word-spacing:-13.158132px;}
.ws85{word-spacing:-13.020130px;}
.ws21{word-spacing:-10.598268px;}
.ws89{word-spacing:-10.392104px;}
.ws87{word-spacing:-10.050101px;}
.wseb{word-spacing:-0.071999px;}
.ws3d{word-spacing:-0.060001px;}
.ws11{word-spacing:-0.047999px;}
.ws86{word-spacing:-0.039996px;}
.ws8c{word-spacing:-0.035999px;}
.wsbf{word-spacing:-0.031995px;}
.wsb4{word-spacing:-0.028799px;}
.ws38{word-spacing:0.000000px;}
.ws2e{word-spacing:9.657479px;}
.ws36{word-spacing:9.710279px;}
.ws34{word-spacing:9.715079px;}
.ws28{word-spacing:9.739078px;}
.ws26{word-spacing:9.753478px;}
.ws27{word-spacing:9.787078px;}
.ws12e{word-spacing:9.820677px;}
.ws23{word-spacing:9.825477px;}
.ws2f{word-spacing:9.849477px;}
.wsfb{word-spacing:9.854277px;}
.ws10c{word-spacing:9.859077px;}
.ws82{word-spacing:9.863877px;}
.ws2d{word-spacing:9.873477px;}
.ws2b{word-spacing:9.883076px;}
.ws2c{word-spacing:9.892676px;}
.wsfe{word-spacing:9.897476px;}
.ws105{word-spacing:9.902276px;}
.ws29{word-spacing:9.916676px;}
.ws31{word-spacing:9.921476px;}
.ws5c{word-spacing:9.926276px;}
.wsc6{word-spacing:9.931076px;}
.wsc2{word-spacing:9.945476px;}
.wsc3{word-spacing:9.964675px;}
.ws10b{word-spacing:9.969475px;}
.wsb{word-spacing:9.974275px;}
.ws33{word-spacing:9.979075px;}
.ws2a{word-spacing:9.988675px;}
.ws11e{word-spacing:9.992158px;}
.wsfd{word-spacing:9.992234px;}
.ws119{word-spacing:9.992328px;}
.ws101{word-spacing:9.992479px;}
.ws130{word-spacing:9.992782px;}
.ws120{word-spacing:9.992882px;}
.ws128{word-spacing:9.994157px;}
.ws123{word-spacing:10.007875px;}
.ws80{word-spacing:10.017475px;}
.ws10{word-spacing:10.022275px;}
.ws5a{word-spacing:10.031875px;}
.ws5b{word-spacing:10.036675px;}
.ws35{word-spacing:10.041474px;}
.ws9{word-spacing:10.046274px;}
.wsf4{word-spacing:10.051074px;}
.ws11f{word-spacing:10.075074px;}
.wse{word-spacing:10.079874px;}
.ws7e{word-spacing:10.084674px;}
.wsf1{word-spacing:10.089474px;}
.ws12a{word-spacing:10.099074px;}
.wsb6{word-spacing:10.108674px;}
.ws100{word-spacing:10.113474px;}
.wsd{word-spacing:10.123073px;}
.ws107{word-spacing:10.127873px;}
.ws83{word-spacing:10.137473px;}
.ws24{word-spacing:10.147073px;}
.wsf9{word-spacing:10.151873px;}
.wsaf{word-spacing:10.156673px;}
.wsb0{word-spacing:10.161473px;}
.wsc5{word-spacing:10.166273px;}
.ws20{word-spacing:10.175873px;}
.ws22{word-spacing:10.180673px;}
.ws10a{word-spacing:10.190273px;}
.wscd{word-spacing:10.195073px;}
.wscc{word-spacing:10.199873px;}
.ws103{word-spacing:10.204672px;}
.wsa{word-spacing:10.214272px;}
.ws121{word-spacing:10.228672px;}
.wsf2{word-spacing:10.233472px;}
.ws12d{word-spacing:10.238272px;}
.ws132{word-spacing:10.261031px;}
.ws114{word-spacing:10.263472px;}
.ws124{word-spacing:10.266731px;}
.wsc{word-spacing:10.267072px;}
.ws117{word-spacing:10.270250px;}
.wsf8{word-spacing:10.270252px;}
.ws110{word-spacing:10.271872px;}
.ws12b{word-spacing:10.272356px;}
.ws126{word-spacing:10.274269px;}
.ws109{word-spacing:10.276644px;}
.wsf0{word-spacing:10.276672px;}
.ws12f{word-spacing:10.281030px;}
.ws0{word-spacing:10.281471px;}
.ws7f{word-spacing:10.286271px;}
.wsee{word-spacing:10.300671px;}
.ws10f{word-spacing:10.304556px;}
.ws7c{word-spacing:10.305471px;}
.wsf7{word-spacing:10.310271px;}
.ws129{word-spacing:10.315071px;}
.ws111{word-spacing:10.325019px;}
.ws131{word-spacing:10.330266px;}
.ws11d{word-spacing:10.330571px;}
.ws11a{word-spacing:10.331207px;}
.wsfa{word-spacing:10.331253px;}
.ws10d{word-spacing:10.331783px;}
.ws127{word-spacing:10.332303px;}
.ws125{word-spacing:10.332438px;}
.wsef{word-spacing:10.332972px;}
.ws104{word-spacing:10.333303px;}
.wsff{word-spacing:10.334016px;}
.ws11c{word-spacing:10.334048px;}
.ws108{word-spacing:10.334112px;}
.ws122{word-spacing:10.334724px;}
.ws12c{word-spacing:10.334953px;}
.ws134{word-spacing:10.335070px;}
.wsf5{word-spacing:10.335228px;}
.ws115{word-spacing:10.335311px;}
.ws112{word-spacing:10.335939px;}
.ws113{word-spacing:10.338354px;}
.wsfc{word-spacing:10.339071px;}
.ws7d{word-spacing:10.353471px;}
.wsf3{word-spacing:10.363070px;}
.wsb7{word-spacing:10.387070px;}
.ws102{word-spacing:10.391870px;}
.ws30{word-spacing:10.425470px;}
.ws32{word-spacing:10.444669px;}
.ws25{word-spacing:10.463869px;}
.ws37{word-spacing:10.468669px;}
.wsb8{word-spacing:10.497469px;}
.ws11b{word-spacing:10.526268px;}
.wsf6{word-spacing:10.531068px;}
.ws10e{word-spacing:10.535868px;}
.ws116{word-spacing:10.540668px;}
.ws133{word-spacing:10.564668px;}
.ws118{word-spacing:10.569468px;}
.wsf{word-spacing:10.689466px;}
.ws81{word-spacing:10.723066px;}
.ws7{word-spacing:11.685600px;}
.ws8{word-spacing:11.701800px;}
.ws6{word-spacing:11.761200px;}
.ws4{word-spacing:11.809800px;}
.ws5{word-spacing:11.847600px;}
.ws3{word-spacing:11.901600px;}
.ws15{word-spacing:12.260700px;}
.ws3a{word-spacing:12.277800px;}
.ws39{word-spacing:12.351900px;}
.ws16{word-spacing:12.357600px;}
.ws1f{word-spacing:12.420300px;}
.ws4b{word-spacing:12.432124px;}
.ws1e{word-spacing:12.448800px;}
.wse9{word-spacing:12.456125px;}
.ws1d{word-spacing:12.528600px;}
.ws12{word-spacing:12.545700px;}
.ws1c{word-spacing:12.591300px;}
.ws13{word-spacing:12.614100px;}
.ws14{word-spacing:12.631200px;}
.ws1a{word-spacing:12.671100px;}
.wsc7{word-spacing:12.690127px;}
.ws17{word-spacing:12.705300px;}
.wsac{word-spacing:12.726127px;}
.ws19{word-spacing:12.756600px;}
.wsdb{word-spacing:12.768128px;}
.ws18{word-spacing:12.785100px;}
.ws1b{word-spacing:12.790800px;}
.ws93{word-spacing:12.798128px;}
.ws84{word-spacing:12.804128px;}
.wsc9{word-spacing:12.840128px;}
.wse4{word-spacing:12.846128px;}
.ws6c{word-spacing:12.906129px;}
.wsa7{word-spacing:12.924129px;}
.ws45{word-spacing:12.936129px;}
.wse0{word-spacing:12.948129px;}
.ws3c{word-spacing:12.960130px;}
.ws57{word-spacing:12.966130px;}
.wsd8{word-spacing:12.972130px;}
.ws90{word-spacing:12.978130px;}
.wsdd{word-spacing:12.984130px;}
.wsb2{word-spacing:12.990130px;}
.wsca{word-spacing:12.996130px;}
.ws9b{word-spacing:13.002130px;}
.ws68{word-spacing:13.008130px;}
.ws8e{word-spacing:13.014130px;}
.wsd9{word-spacing:13.020130px;}
.ws5d{word-spacing:13.026130px;}
.wscf{word-spacing:13.031837px;}
.ws6a{word-spacing:13.032130px;}
.ws75{word-spacing:13.038130px;}
.ws4c{word-spacing:13.044130px;}
.ws53{word-spacing:13.050131px;}
.wsc8{word-spacing:13.056131px;}
.ws52{word-spacing:13.062131px;}
.ws6b{word-spacing:13.068131px;}
.wsde{word-spacing:13.074131px;}
.ws46{word-spacing:13.080131px;}
.ws65{word-spacing:13.086131px;}
.ws70{word-spacing:13.092131px;}
.ws3b{word-spacing:13.098131px;}
.ws44{word-spacing:13.104131px;}
.wsad{word-spacing:13.106333px;}
.wsae{word-spacing:13.107783px;}
.ws4d{word-spacing:13.110131px;}
.ws8a{word-spacing:13.116131px;}
.wsa3{word-spacing:13.122131px;}
.ws60{word-spacing:13.128131px;}
.ws54{word-spacing:13.134131px;}
.ws49{word-spacing:13.140131px;}
.wsd6{word-spacing:13.146131px;}
.ws3e{word-spacing:13.152132px;}
.ws64{word-spacing:13.164132px;}
.ws56{word-spacing:13.170132px;}
.wsa2{word-spacing:13.176132px;}
.ws42{word-spacing:13.182132px;}
.wsc0{word-spacing:13.188132px;}
.ws69{word-spacing:13.194132px;}
.ws8d{word-spacing:13.200132px;}
.ws73{word-spacing:13.206132px;}
.ws51{word-spacing:13.212132px;}
.ws4f{word-spacing:13.218132px;}
.ws9d{word-spacing:13.224132px;}
.wse3{word-spacing:13.230132px;}
.wse6{word-spacing:13.236132px;}
.ws78{word-spacing:13.242132px;}
.ws91{word-spacing:13.248132px;}
.wsbe{word-spacing:13.254133px;}
.ws62{word-spacing:13.266133px;}
.ws9a{word-spacing:13.272133px;}
.ws9e{word-spacing:13.290133px;}
.ws79{word-spacing:13.296133px;}
.ws6d{word-spacing:13.308133px;}
.ws95{word-spacing:13.314133px;}
.wsab{word-spacing:13.320133px;}
.wsc4{word-spacing:13.338133px;}
.ws43{word-spacing:13.350134px;}
.wsb1{word-spacing:13.356134px;}
.ws47{word-spacing:13.368134px;}
.ws8f{word-spacing:13.374134px;}
.wse7{word-spacing:13.380134px;}
.ws97{word-spacing:13.386134px;}
.ws8b{word-spacing:13.392134px;}
.wse1{word-spacing:13.398134px;}
.ws74{word-spacing:13.410134px;}
.ws96{word-spacing:13.416134px;}
.ws3f{word-spacing:13.422134px;}
.wse5{word-spacing:13.428134px;}
.wscb{word-spacing:13.434134px;}
.ws40{word-spacing:13.440134px;}
.ws4a{word-spacing:13.446134px;}
.wsd7{word-spacing:13.452135px;}
.ws67{word-spacing:13.464135px;}
.wsb3{word-spacing:13.464800px;}
.ws50{word-spacing:13.470135px;}
.wsa0{word-spacing:13.476135px;}
.wsc1{word-spacing:13.482135px;}
.wsea{word-spacing:13.488135px;}
.ws41{word-spacing:13.494135px;}
.ws61{word-spacing:13.500135px;}
.ws59{word-spacing:13.506135px;}
.ws77{word-spacing:13.512135px;}
.ws4e{word-spacing:13.524135px;}
.ws6f{word-spacing:13.536135px;}
.wse2{word-spacing:13.542135px;}
.ws72{word-spacing:13.548135px;}
.wsdc{word-spacing:13.560136px;}
.ws9c{word-spacing:13.566136px;}
.ws7b{word-spacing:13.572136px;}
.wsdf{word-spacing:13.578136px;}
.ws76{word-spacing:13.584136px;}
.ws55{word-spacing:13.602136px;}
.ws58{word-spacing:13.644136px;}
.wse8{word-spacing:13.650136px;}
.ws99{word-spacing:13.662137px;}
.wsa4{word-spacing:13.668137px;}
.wsa1{word-spacing:13.704137px;}
.ws66{word-spacing:13.770138px;}
.ws94{word-spacing:13.866139px;}
.wsec{word-spacing:15.523071px;}
.ws7a{word-spacing:15.530271px;}
.ws6e{word-spacing:15.587870px;}
.ws71{word-spacing:15.616670px;}
.ws98{word-spacing:15.631070px;}
.ws5f{word-spacing:15.652670px;}
.ws63{word-spacing:15.703069px;}
.ws5e{word-spacing:15.731869px;}
.wsa5{word-spacing:15.746269px;}
.wsa6{word-spacing:15.767869px;}
.wsb5{word-spacing:16.161398px;}
.ws92{word-spacing:16.866169px;}
.wsa8{word-spacing:23.814238px;}
.wsaa{word-spacing:23.868239px;}
.ws1{word-spacing:26.136131px;}
.ws2{word-spacing:26.148131px;}
.wsa9{word-spacing:27.126027px;}
.wsed{word-spacing:59.821652px;}
.ws106{word-spacing:59.860052px;}
.wsd4{word-spacing:224.680391px;}
.wsd5{word-spacing:224.872389px;}
.wsd3{word-spacing:224.910789px;}
.wsd1{word-spacing:235.374658px;}
.wsbc{word-spacing:242.632167px;}
.wsba{word-spacing:242.665767px;}
.wsbd{word-spacing:268.935838px;}
.wsbb{word-spacing:269.127836px;}
.wsd2{word-spacing:277.897326px;}
.wsd0{word-spacing:383.942401px;}
.wsb9{word-spacing:441.450482px;}
.wsce{word-spacing:730.133273px;}
._c{margin-left:-12.919736px;}
._8{margin-left:-10.550268px;}
._9{margin-left:-4.574343px;}
._a{margin-left:-2.481569px;}
._3{margin-left:-1.315184px;}
._4{width:1.191300px;}
._2{width:9.393483px;}
._1{width:11.155061px;}
._b{width:12.390124px;}
._5{width:13.896600px;}
._25{width:14.952150px;}
._d{width:15.988600px;}
._e{width:17.514175px;}
._27{width:19.929351px;}
._26{width:21.134136px;}
._0{width:27.456137px;}
._6{width:46.545018px;}
._20{width:225.909176px;}
._23{width:227.795553px;}
._22{width:228.961938px;}
._1d{width:230.291521px;}
._1c{width:250.624067px;}
._1f{width:251.732853px;}
._1e{width:277.647729px;}
._21{width:292.959538px;}
._13{width:295.431507px;}
._1b{width:298.484269px;}
._24{width:302.938613px;}
._15{width:317.372033px;}
._12{width:321.965575px;}
._17{width:348.461244px;}
._14{width:349.790828px;}
._16{width:374.956913px;}
._11{width:385.819177px;}
._19{width:404.351746px;}
._1a{width:434.034574px;}
._10{width:445.741628px;}
._f{width:542.062024px;}
._18{width:1755.875651px;}
._7{width:1782.409720px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:26.663400px;}
.fsd{font-size:28.799400px;}
.fsc{font-size:30.000000px;}
.fse{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fsb{font-size:35.998800px;}
.fs9{font-size:39.996000px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs7{font-size:60.000600px;}
.fs5{font-size:68.999400px;}
.fs8{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y27{bottom:54.000000px;}
.y70{bottom:124.494885px;}
.y9e{bottom:124.496565px;}
.y143{bottom:124.496955px;}
.y236{bottom:124.497210px;}
.y129{bottom:124.497600px;}
.y26{bottom:124.499400px;}
.y44{bottom:124.500712px;}
.y217{bottom:125.075235px;}
.y1e8{bottom:125.091525px;}
.y26f{bottom:130.620722px;}
.y17f{bottom:132.998445px;}
.y1ac{bottom:133.171260px;}
.y164{bottom:137.333503px;}
.y43{bottom:140.998106px;}
.y127{bottom:141.505500px;}
.y18a{bottom:143.460315px;}
.y6f{bottom:143.969580px;}
.y9d{bottom:143.971260px;}
.y128{bottom:143.971650px;}
.y142{bottom:143.971904px;}
.y216{bottom:144.549930px;}
.y1e7{bottom:144.566219px;}
.y26e{bottom:144.907743px;}
.y25{bottom:145.503900px;}
.y17e{bottom:152.557140px;}
.y1ab{bottom:152.729955px;}
.y16f{bottom:152.899020px;}
.y42{bottom:157.495500px;}
.y163{bottom:160.549613px;}
.y189{bottom:162.935010px;}
.y6e{bottom:163.528275px;}
.y141{bottom:163.529311px;}
.y9c{bottom:163.529955px;}
.y235{bottom:163.530600px;}
.y215{bottom:164.108626px;}
.y1e6{bottom:164.124915px;}
.y26d{bottom:164.380950px;}
.y24{bottom:166.508400px;}
.y17d{bottom:172.031835px;}
.y1aa{bottom:172.195470px;}
.y16e{bottom:172.373715px;}
.y41{bottom:173.992894px;}
.y26c{bottom:178.582772px;}
.y162{bottom:179.343778px;}
.y188{bottom:182.493705px;}
.y6d{bottom:183.002970px;}
.yf4{bottom:183.004005px;}
.y9b{bottom:183.004650px;}
.y214{bottom:183.583320px;}
.y1e5{bottom:183.599610px;}
.y23{bottom:187.512900px;}
.y234{bottom:189.042450px;}
.y40{bottom:190.490288px;}
.y17c{bottom:191.506530px;}
.y1a9{bottom:191.670165px;}
.y16d{bottom:191.932411px;}
.y26b{bottom:192.869793px;}
.y161{bottom:198.052744px;}
.y187{bottom:201.967365px;}
.y140{bottom:202.477020px;}
.y6c{bottom:202.477665px;}
.yf3{bottom:202.478700px;}
.y213{bottom:203.058015px;}
.y1e4{bottom:203.074304px;}
.y3f{bottom:206.987681px;}
.y9a{bottom:208.516500px;}
.y22{bottom:208.517400px;}
.y17b{bottom:211.065225px;}
.y1a8{bottom:211.144860px;}
.y16c{bottom:211.407105px;}
.y26a{bottom:212.343150px;}
.y160{bottom:216.846909px;}
.y186{bottom:221.442060px;}
.y13f{bottom:222.035716px;}
.y6b{bottom:222.036361px;}
.y212{bottom:222.616711px;}
.y1e3{bottom:222.631711px;}
.y3e{bottom:223.485075px;}
.y269{bottom:226.630172px;}
.yf2{bottom:227.990550px;}
.y21{bottom:229.521900px;}
.y17a{bottom:230.539920px;}
.y1a7{bottom:230.703555px;}
.y16b{bottom:230.880525px;}
.y15f{bottom:235.555875px;}
.y3d{bottom:239.982469px;}
.y268{bottom:240.831994px;}
.y185{bottom:241.000755px;}
.y13e{bottom:241.510411px;}
.y6a{bottom:241.511055px;}
.y211{bottom:242.091405px;}
.y1e2{bottom:242.106405px;}
.y233{bottom:249.164910px;}
.y99{bottom:249.502635px;}
.y179{bottom:250.014615px;}
.y1a6{bottom:250.178250px;}
.y16a{bottom:250.439220px;}
.y20{bottom:250.526400px;}
.y126{bottom:250.607490px;}
.y15e{bottom:254.350040px;}
.y267{bottom:260.390822px;}
.y184{bottom:260.475450px;}
.y69{bottom:260.982645px;}
.y13d{bottom:260.985105px;}
.yb2{bottom:260.985750px;}
.y2a0{bottom:261.325950px;}
.y210{bottom:261.566100px;}
.y1e1{bottom:261.580710px;}
.y3c{bottom:265.494150px;}
.y232{bottom:268.723605px;}
.y98{bottom:269.061331px;}
.y178{bottom:269.573311px;}
.y1a5{bottom:269.652945px;}
.y169{bottom:269.913915px;}
.y125{bottom:270.082185px;}
.y1f{bottom:271.530900px;}
.y15d{bottom:273.059006px;}
.y266{bottom:274.592644px;}
.y29f{bottom:275.612971px;}
.yf1{bottom:278.499796px;}
.y68{bottom:280.457340px;}
.y13c{bottom:280.458765px;}
.y20f{bottom:281.124796px;}
.y1e0{bottom:281.139405px;}
.y3b{bottom:281.991544px;}
.y183{bottom:285.987300px;}
.yb1{bottom:286.497600px;}
.y231{bottom:288.198300px;}
.y97{bottom:288.536025px;}
.y177{bottom:289.048005px;}
.y1a4{bottom:289.211640px;}
.y168{bottom:289.388610px;}
.y124{bottom:289.640881px;}
.y29e{bottom:289.814793px;}
.y15c{bottom:291.853171px;}
.y1e{bottom:292.535400px;}
.y265{bottom:294.150928px;}
.yf0{bottom:297.974490px;}
.y3a{bottom:298.488938px;}
.y67{bottom:300.016035px;}
.y13b{bottom:300.017461px;}
.y20e{bottom:300.599490px;}
.y1df{bottom:300.612661px;}
.y96{bottom:308.010720px;}
.y264{bottom:308.352872px;}
.y176{bottom:308.521815px;}
.y1a3{bottom:308.686335px;}
.y167{bottom:308.863304px;}
.y123{bottom:309.115575px;}
.y29d{bottom:309.288272px;}
.y15b{bottom:310.562138px;}
.y230{bottom:313.710150px;}
.yef{bottom:317.449185px;}
.y1d{bottom:317.962050px;}
.y66{bottom:319.490730px;}
.y13a{bottom:319.492155px;}
.y20d{bottom:320.074185px;}
.y1de{bottom:320.087355px;}
.y263{bottom:322.639893px;}
.y29c{bottom:323.575293px;}
.y39{bottom:324.000619px;}
.y95{bottom:327.485415px;}
.y175{bottom:327.996510px;}
.y1a2{bottom:328.161030px;}
.y166{bottom:328.421205px;}
.y122{bottom:328.590270px;}
.y15a{bottom:329.356303px;}
.yee{bottom:337.007881px;}
.y65{bottom:338.965425px;}
.y139{bottom:338.966850px;}
.y20c{bottom:339.548880px;}
.y1dd{bottom:339.561810px;}
.y38{bottom:340.498012px;}
.y262{bottom:342.113794px;}
.y29b{bottom:343.048650px;}
.y18e{bottom:344.833819px;}
.y94{bottom:347.044111px;}
.y174{bottom:347.555205px;}
.y1a1{bottom:347.719725px;}
.y165{bottom:347.895900px;}
.y121{bottom:348.064965px;}
.y159{bottom:348.065269px;}
.yb0{bottom:350.185635px;}
.y261{bottom:356.400815px;}
.yed{bottom:356.482575px;}
.y37{bottom:356.995406px;}
.y29a{bottom:357.335672px;}
.y64{bottom:358.524120px;}
.y20b{bottom:359.107576px;}
.y1dc{bottom:359.120505px;}
.y138{bottom:364.478700px;}
.y93{bottom:366.518805px;}
.y158{bottom:366.859434px;}
.y173{bottom:367.029900px;}
.y1a0{bottom:367.194420px;}
.y120{bottom:367.623661px;}
.y18d{bottom:368.049929px;}
.yaf{bottom:369.660330px;}
.y299{bottom:371.537494px;}
.y36{bottom:373.492800px;}
.y260{bottom:375.874172px;}
.yec{bottom:375.957270px;}
.y63{bottom:377.998815px;}
.y20a{bottom:378.582270px;}
.y1db{bottom:378.594555px;}
.y18c{bottom:382.336529px;}
.y22f{bottom:382.927905px;}
.y157{bottom:385.568400px;}
.y92{bottom:385.993500px;}
.y19f{bottom:386.669115px;}
.y11f{bottom:387.098355px;}
.y1c{bottom:388.207050px;}
.yae{bottom:389.219025px;}
.y35{bottom:389.992188px;}
.y25f{bottom:390.161193px;}
.y298{bottom:391.095900px;}
.yeb{bottom:395.431965px;}
.y18b{bottom:396.623550px;}
.y62{bottom:397.473510px;}
.y209{bottom:398.056965px;}
.y1da{bottom:398.069504px;}
.y22e{bottom:402.402600px;}
.y297{bottom:405.297722px;}
.y19e{bottom:406.227811px;}
.y34{bottom:406.489582px;}
.y11e{bottom:406.572419px;}
.y156{bottom:408.103362px;}
.y155{bottom:408.103506px;}
.yad{bottom:408.693720px;}
.y1b{bottom:409.211550px;}
.y25e{bottom:409.634672px;}
.y91{bottom:411.505350px;}
.yea{bottom:414.990661px;}
.y61{bottom:417.032205px;}
.y208{bottom:417.615661px;}
.y1d9{bottom:417.625875px;}
.y137{bottom:419.153895px;}
.y296{bottom:419.584743px;}
.y22d{bottom:421.877295px;}
.y25d{bottom:423.836494px;}
.y19d{bottom:425.702505px;}
.y11d{bottom:426.131115px;}
.yac{bottom:428.168415px;}
.y1a{bottom:430.216050px;}
.y33{bottom:432.001263px;}
.y172{bottom:432.594740px;}
.y154{bottom:432.595200px;}
.ye9{bottom:434.465355px;}
.y182{bottom:436.336069px;}
.y60{bottom:436.505220px;}
.y207{bottom:437.090355px;}
.y1d8{bottom:437.100570px;}
.y136{bottom:438.628589px;}
.y295{bottom:439.058372px;}
.y22c{bottom:441.435990px;}
.y25c{bottom:443.395050px;}
.y19c{bottom:445.177200px;}
.y11c{bottom:445.605810px;}
.yab{bottom:447.643110px;}
.y19{bottom:451.220550px;}
.y90{bottom:452.577720px;}
.y294{bottom:453.345393px;}
.y171{bottom:453.855000px;}
.ye8{bottom:453.940042px;}
.y170{bottom:455.810850px;}
.y5f{bottom:455.979915px;}
.y206{bottom:456.565050px;}
.y1d7{bottom:456.575265px;}
.y32{bottom:457.512944px;}
.y25b{bottom:457.597022px;}
.y135{bottom:458.187285px;}
.y181{bottom:459.552179px;}
.y22b{bottom:460.910685px;}
.y19b{bottom:464.651895px;}
.y11b{bottom:465.080504px;}
.yaa{bottom:467.201805px;}
.y25a{bottom:471.884043px;}
.y150{bottom:471.966961px;}
.y8f{bottom:472.052415px;}
.y18{bottom:472.225050px;}
.y293{bottom:472.818601px;}
.ye7{bottom:473.498738px;}
.y180{bottom:473.839200px;}
.y5e{bottom:475.538611px;}
.y205{bottom:476.123746px;}
.y1d6{bottom:476.133961px;}
.y134{bottom:477.661980px;}
.y22a{bottom:480.385380px;}
.y31{bottom:483.024625px;}
.y19a{bottom:484.210590px;}
.y11a{bottom:484.639200px;}
.ya9{bottom:486.676500px;}
.y292{bottom:487.105622px;}
.y259{bottom:491.357400px;}
.y14f{bottom:491.441655px;}
.y8e{bottom:491.527110px;}
.ye6{bottom:492.973432px;}
.y17{bottom:493.229550px;}
.y5d{bottom:495.013305px;}
.y204{bottom:495.598440px;}
.y1d5{bottom:495.608655px;}
.y133{bottom:497.136675px;}
.y291{bottom:501.307444px;}
.y199{bottom:503.685285px;}
.y258{bottom:505.644000px;}
.ya8{bottom:506.151195px;}
.y30{bottom:508.536306px;}
.y229{bottom:508.873665px;}
.y119{bottom:510.066000px;}
.y14e{bottom:510.916754px;}
.y8d{bottom:511.085805px;}
.y16{bottom:514.234050px;}
.y5c{bottom:514.486080px;}
.ye4{bottom:514.742408px;}
.ye5{bottom:514.743150px;}
.y203{bottom:515.073135px;}
.y1d4{bottom:515.082315px;}
.y132{bottom:516.695370px;}
.y257{bottom:519.845822px;}
.y290{bottom:520.866000px;}
.y198{bottom:523.159980px;}
.y2f{bottom:525.033700px;}
.ya7{bottom:525.709890px;}
.y228{bottom:528.432360px;}
.y14d{bottom:530.473125px;}
.y8c{bottom:530.558175px;}
.y5b{bottom:533.960775px;}
.y256{bottom:534.132843px;}
.y202{bottom:534.631831px;}
.y1d3{bottom:534.641011px;}
.y28f{bottom:535.067822px;}
.y15{bottom:535.238550px;}
.y131{bottom:536.170065px;}
.ye3{bottom:536.512126px;}
.y197{bottom:542.718675px;}
.ya6{bottom:545.184585px;}
.y28e{bottom:549.354843px;}
.y14c{bottom:549.947820px;}
.y8b{bottom:550.032870px;}
.y2e{bottom:550.545381px;}
.y118{bottom:552.241546px;}
.y5a{bottom:553.519470px;}
.y255{bottom:553.606200px;}
.y201{bottom:554.106525px;}
.y1d2{bottom:554.115705px;}
.y130{bottom:555.644760px;}
.ye2{bottom:555.986821px;}
.y14{bottom:556.243050px;}
.y227{bottom:556.920645px;}
.y196{bottom:562.193370px;}
.ya5{bottom:564.659280px;}
.y2d{bottom:567.042775px;}
.y254{bottom:567.892922px;}
.y28d{bottom:568.828200px;}
.y14b{bottom:569.422515px;}
.y8a{bottom:569.507565px;}
.y117{bottom:571.716240px;}
.y59{bottom:572.994165px;}
.y200{bottom:573.581220px;}
.y1d1{bottom:573.589365px;}
.y12f{bottom:575.203455px;}
.ye1{bottom:575.461515px;}
.y226{bottom:576.395340px;}
.y13{bottom:577.247550px;}
.y195{bottom:581.668065px;}
.y253{bottom:582.094744px;}
.y28c{bottom:583.115221px;}
.y2c{bottom:583.540169px;}
.ya4{bottom:584.217975px;}
.y14a{bottom:588.981211px;}
.y89{bottom:589.066261px;}
.y116{bottom:591.190935px;}
.y58{bottom:592.468860px;}
.y1ff{bottom:593.055915px;}
.y1d0{bottom:593.064060px;}
.y12e{bottom:594.678150px;}
.ye0{bottom:595.020211px;}
.y225{bottom:595.870034px;}
.y28b{bottom:597.317043px;}
.y12{bottom:598.252050px;}
.y2b{bottom:600.037562px;}
.y194{bottom:601.226761px;}
.y252{bottom:601.653450px;}
.ya3{bottom:603.692670px;}
.y149{bottom:608.455905px;}
.y88{bottom:608.540955px;}
.y115{bottom:610.749631px;}
.y57{bottom:612.027555px;}
.y1fe{bottom:612.614611px;}
.y1cf{bottom:612.622755px;}
.y12d{bottom:614.152845px;}
.ydf{bottom:614.494906px;}
.y224{bottom:615.428730px;}
.y251{bottom:615.855272px;}
.y2a{bottom:616.534956px;}
.y28a{bottom:616.790400px;}
.y11{bottom:619.256550px;}
.y193{bottom:620.701455px;}
.ya2{bottom:623.167365px;}
.y148{bottom:627.930600px;}
.y87{bottom:628.013984px;}
.y250{bottom:630.142293px;}
.y114{bottom:630.224325px;}
.y289{bottom:631.076072px;}
.y56{bottom:631.498740px;}
.y1fd{bottom:632.089305px;}
.y1ce{bottom:632.095770px;}
.y12c{bottom:633.627539px;}
.y192{bottom:640.176150px;}
.y29{bottom:641.026650px;}
.ya1{bottom:642.642060px;}
.y223{bottom:643.917015px;}
.y10{bottom:644.768400px;}
.y288{bottom:645.363093px;}
.y86{bottom:647.572680px;}
.yde{bottom:648.936104px;}
.y24f{bottom:649.616465px;}
.y113{bottom:649.699020px;}
.y55{bottom:650.973435px;}
.y1fc{bottom:651.564000px;}
.y1cd{bottom:651.570465px;}
.y191{bottom:659.649960px;}
.ya0{bottom:662.200755px;}
.y222{bottom:663.391710px;}
.y287{bottom:664.837650px;}
.y85{bottom:667.047375px;}
.y24e{bottom:669.089822px;}
.y112{bottom:669.173715px;}
.y12b{bottom:669.684473px;}
.y54{bottom:670.532131px;}
.y1fb{bottom:671.122696px;}
.y1cc{bottom:671.129161px;}
.ydd{bottom:676.743382px;}
.y286{bottom:679.039472px;}
.y190{bottom:679.208655px;}
.y9f{bottom:681.675450px;}
.y221{bottom:682.866404px;}
.y24d{bottom:683.376843px;}
.y84{bottom:686.522069px;}
.y111{bottom:688.732411px;}
.y53{bottom:690.006825px;}
.y1fa{bottom:690.597390px;}
.y1cb{bottom:690.603855px;}
.y285{bottom:693.326493px;}
.y153{bottom:696.047286px;}
.y12a{bottom:697.407750px;}
.ydc{bottom:698.513610px;}
.y18f{bottom:698.683350px;}
.y220{bottom:702.425100px;}
.y24c{bottom:702.850051px;}
.y83{bottom:706.080765px;}
.y110{bottom:708.207105px;}
.y52{bottom:709.481520px;}
.y1f9{bottom:710.072085px;}
.y1ca{bottom:710.078160px;}
.y284{bottom:712.799850px;}
.y24b{bottom:717.137072px;}
.y152{bottom:719.263396px;}
.ydb{bottom:722.493953px;}
.y10e{bottom:725.215500px;}
.y82{bottom:725.555460px;}
.yf{bottom:727.001400px;}
.y283{bottom:727.086722px;}
.y10f{bottom:727.681800px;}
.y10d{bottom:727.682054px;}
.y21f{bottom:727.936800px;}
.y51{bottom:728.956215px;}
.y1f8{bottom:729.630781px;}
.y1c9{bottom:729.636855px;}
.y24a{bottom:731.338894px;}
.y151{bottom:734.910000px;}
.yb8{bottom:735.418454px;}
.y282{bottom:741.288544px;}
.yda{bottom:744.263670px;}
.y10b{bottom:744.689550px;}
.y81{bottom:745.030154px;}
.y10a{bottom:747.238425px;}
.y10c{bottom:747.240750px;}
.y50{bottom:748.514911px;}
.y1f7{bottom:749.105475px;}
.y1c8{bottom:749.110905px;}
.y249{bottom:750.897450px;}
.yb7{bottom:758.634563px;}
.y281{bottom:760.847100px;}
.y80{bottom:764.588205px;}
.y248{bottom:765.099394px;}
.y147{bottom:765.694941px;}
.y109{bottom:766.713120px;}
.y4f{bottom:767.989605px;}
.y1f6{bottom:768.580170px;}
.y1c7{bottom:768.583290px;}
.y28{bottom:769.010850px;}
.yb6{bottom:772.921585px;}
.y280{bottom:775.048922px;}
.yd8{bottom:776.494200px;}
.yd5{bottom:781.936595px;}
.y7f{bottom:784.062900px;}
.y247{bottom:784.657950px;}
.y108{bottom:786.187815px;}
.yb5{bottom:787.123407px;}
.y4e{bottom:787.464300px;}
.y1f5{bottom:788.054865px;}
.y21e{bottom:788.055119px;}
.y1c6{bottom:788.057984px;}
.y146{bottom:788.994356px;}
.y27f{bottom:789.335943px;}
.ye{bottom:789.931876px;}
.y1bb{bottom:791.118250px;}
.yd4{bottom:792.224964px;}
.yd9{bottom:792.226650px;}
.yd3{bottom:795.371995px;}
.y246{bottom:798.859922px;}
.yb4{bottom:801.410429px;}
.y145{bottom:803.196179px;}
.y107{bottom:805.746511px;}
.yd6{bottom:806.428200px;}
.y4d{bottom:807.022755px;}
.y1f4{bottom:807.613561px;}
.y21d{bottom:807.613815px;}
.y1c5{bottom:807.616680px;}
.y27e{bottom:808.809151px;}
.y7e{bottom:809.574600px;}
.yd7{bottom:810.339900px;}
.y245{bottom:813.146943px;}
.y1ba{bottom:814.334359px;}
.yb3{bottom:815.697450px;}
.y144{bottom:817.483200px;}
.yd{bottom:819.950700px;}
.y27d{bottom:823.096172px;}
.y106{bottom:825.221205px;}
.y4c{bottom:826.496805px;}
.y1f3{bottom:827.088255px;}
.y21c{bottom:827.088510px;}
.y1c4{bottom:827.091375px;}
.y244{bottom:832.620300px;}
.y1b9{bottom:833.043325px;}
.yd2{bottom:834.150383px;}
.yc{bottom:835.002112px;}
.y27c{bottom:837.297994px;}
.y104{bottom:842.229750px;}
.y105{bottom:844.695900px;}
.y103{bottom:844.696154px;}
.y4b{bottom:845.971500px;}
.y1f2{bottom:846.562950px;}
.y21b{bottom:846.563204px;}
.y1c3{bottom:846.566069px;}
.y243{bottom:846.907171px;}
.yb{bottom:849.968325px;}
.y7d{bottom:850.562565px;}
.y1b8{bottom:851.836291px;}
.yd0{bottom:853.369800px;}
.yd1{bottom:855.836100px;}
.ycf{bottom:855.836332px;}
.y27b{bottom:856.856400px;}
.y242{bottom:861.108993px;}
.y101{bottom:861.703650px;}
.y102{bottom:864.254850px;}
.y100{bottom:864.255388px;}
.ya{bottom:864.935738px;}
.y1f1{bottom:866.121646px;}
.y21a{bottom:866.121900px;}
.y1c2{bottom:866.124765px;}
.y7c{bottom:870.037260px;}
.y1b7{bottom:870.545257px;}
.y27a{bottom:871.058222px;}
.y4a{bottom:871.483200px;}
.ycc{bottom:872.588700px;}
.ycb{bottom:875.139900px;}
.yca{bottom:877.605405px;}
.ycd{bottom:877.606050px;}
.y9{bottom:879.987150px;}
.yff{bottom:880.242654px;}
.y241{bottom:880.582201px;}
.yce{bottom:884.324100px;}
.y279{bottom:885.345243px;}
.yfe{bottom:885.429554px;}
.y1f0{bottom:885.596340px;}
.y219{bottom:885.596595px;}
.y1c1{bottom:885.599460px;}
.y1b6{bottom:889.339422px;}
.y7b{bottom:889.595955px;}
.yc8{bottom:892.147800px;}
.yc6{bottom:894.613950px;}
.y240{bottom:894.869222px;}
.yc5{bottom:897.079710px;}
.yc7{bottom:897.080100px;}
.yfc{bottom:902.607600px;}
.yc9{bottom:903.798150px;}
.y278{bottom:904.818600px;}
.y1ef{bottom:905.071035px;}
.y218{bottom:905.071290px;}
.yfd{bottom:905.073750px;}
.yfb{bottom:905.074154px;}
.y8{bottom:906.944700px;}
.y6{bottom:906.945300px;}
.y1b5{bottom:908.048388px;}
.y7a{bottom:909.070650px;}
.y23f{bottom:909.156243px;}
.y7{bottom:912.982500px;}
.yc4{bottom:916.638405px;}
.y277{bottom:919.105472px;}
.yf9{bottom:922.081650px;}
.y4{bottom:923.442300px;}
.y1ee{bottom:924.629731px;}
.yf8{bottom:924.629985px;}
.y1c0{bottom:924.630525px;}
.yfa{bottom:924.632850px;}
.y1b4{bottom:926.842553px;}
.y23e{bottom:928.629750px;}
.y5{bottom:929.480100px;}
.y276{bottom:933.307294px;}
.yc2{bottom:933.646950px;}
.y79{bottom:934.581525px;}
.yc1{bottom:936.112455px;}
.yc3{bottom:936.113100px;}
.y23d{bottom:942.831572px;}
.y1ed{bottom:944.104425px;}
.yf7{bottom:944.104680px;}
.y1bf{bottom:944.105220px;}
.y1b3{bottom:945.551519px;}
.y275{bottom:952.865850px;}
.ybf{bottom:953.121000px;}
.yc0{bottom:955.587150px;}
.ybe{bottom:955.587554px;}
.y23c{bottom:957.118593px;}
.y3{bottom:960.943762px;}
.y78{bottom:961.539900px;}
.y1ec{bottom:963.579120px;}
.yf6{bottom:963.579375px;}
.y1be{bottom:963.579915px;}
.y1b2{bottom:964.344484px;}
.y274{bottom:967.067822px;}
.y49{bottom:971.150400px;}
.ybd{bottom:975.145215px;}
.y23b{bottom:976.592222px;}
.y273{bottom:981.354843px;}
.y1b1{bottom:983.053450px;}
.y1eb{bottom:983.137816px;}
.yf5{bottom:983.138070px;}
.y1bd{bottom:983.138611px;}
.y23a{bottom:990.879243px;}
.y48{bottom:992.154900px;}
.ybc{bottom:994.619910px;}
.y2{bottom:998.446950px;}
.y272{bottom:1000.828322px;}
.y1b0{bottom:1001.847615px;}
.y1ea{bottom:1002.612511px;}
.y77{bottom:1002.612765px;}
.y1bc{bottom:1002.613305px;}
.y239{bottom:1010.352600px;}
.y47{bottom:1013.073900px;}
.ybb{bottom:1014.094604px;}
.y271{bottom:1015.115343px;}
.y1e9{bottom:1022.087205px;}
.y76{bottom:1022.087460px;}
.y1af{bottom:1024.298135px;}
.y238{bottom:1024.638778px;}
.yba{bottom:1033.653300px;}
.y46{bottom:1034.078400px;}
.y270{bottom:1034.588700px;}
.y1{bottom:1035.949350px;}
.y237{bottom:1038.840600px;}
.y75{bottom:1041.562154px;}
.y73{bottom:1046.574793px;}
.y1ae{bottom:1048.789829px;}
.yb9{bottom:1059.079950px;}
.y45{bottom:1059.590250px;}
.y74{bottom:1061.120850px;}
.y72{bottom:1063.072186px;}
.y1ad{bottom:1063.076850px;}
.y71{bottom:1118.692500px;}
.h21{height:0.000000px;}
.h1b{height:18.984341px;}
.h37{height:23.580315px;}
.h22{height:25.631146px;}
.h4{height:26.528462px;}
.h23{height:26.999100px;}
.h18{height:28.477152px;}
.h1a{height:32.636736px;}
.h34{height:34.271572px;}
.hb{height:34.943563px;}
.h31{height:35.375558px;}
.h33{height:37.054959px;}
.h32{height:37.055537px;}
.h6{height:37.194432px;}
.h1{height:37.199535px;}
.h41{height:37.200133px;}
.h43{height:37.200137px;}
.h42{height:37.200625px;}
.h39{height:37.201221px;}
.h40{height:37.201225px;}
.h2f{height:37.202311px;}
.h5{height:37.908000px;}
.h3{height:39.798000px;}
.h1e{height:41.640416px;}
.h1c{height:42.720427px;}
.h20{height:42.721247px;}
.h19{height:42.840428px;}
.h9{height:44.175000px;}
.h24{height:45.000450px;}
.h30{height:46.578618px;}
.h28{height:48.957073px;}
.h27{height:48.958449px;}
.ha{height:48.960490px;}
.h3e{height:48.961451px;}
.h3d{height:48.962051px;}
.h25{height:48.962079px;}
.h2d{height:48.962199px;}
.h3b{height:48.962651px;}
.h2c{height:48.963012px;}
.hd{height:48.963069px;}
.h35{height:48.963669px;}
.h38{height:48.964030px;}
.h17{height:48.964630px;}
.h12{height:48.965230px;}
.h36{height:48.965591px;}
.h2e{height:48.965648px;}
.h3f{height:48.966248px;}
.h14{height:48.967153px;}
.h10{height:48.967209px;}
.hf{height:48.968170px;}
.h3c{height:48.969732px;}
.h15{height:48.969788px;}
.h11{height:48.972910px;}
.he{height:48.974528px;}
.h2a{height:48.977107px;}
.h16{height:48.985749px;}
.h3a{height:48.997209px;}
.h8{height:50.852558px;}
.hc{height:53.063558px;}
.h26{height:54.228542px;}
.h29{height:54.231510px;}
.h1d{height:54.564546px;}
.h13{height:55.799535px;}
.h7{height:69.215567px;}
.h2b{height:69.708272px;}
.h1f{height:82.465761px;}
.h2{height:86.520433px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:54.000000px;}
.x10{left:71.433000px;}
.xf{left:84.018900px;}
.x1{left:300.018750px;}
.x1e{left:307.162050px;}
.x11{left:317.961929px;}
.x3c{left:323.999850px;}
.x1f{left:326.721150px;}
.x36{left:330.803100px;}
.x61{left:332.673900px;}
.x37{left:338.711700px;}
.x38{left:343.644000px;}
.x62{left:345.599850px;}
.x20{left:350.787300px;}
.x3d{left:359.461350px;}
.x39{left:361.332150px;}
.x3a{left:366.519600px;}
.x58{left:370.091250px;}
.x21{left:374.853450px;}
.x3b{left:376.469100px;}
.x59{left:383.017200px;}
.x22{left:388.459650px;}
.x2{left:390.500700px;}
.x3e{left:393.051750px;}
.x3{left:396.113250px;}
.x64{left:401.725800px;}
.x3f{left:408.273900px;}
.x63{left:410.314800px;}
.x23{left:412.525800px;}
.x6b{left:414.652896px;}
.x41{left:419.243074px;}
.x4c{left:421.029474px;}
.xc{left:426.217200px;}
.xd{left:431.829750px;}
.x65{left:435.486450px;}
.x4a{left:446.965161px;}
.x24{left:449.858100px;}
.x25{left:457.766850px;}
.x26{left:463.294350px;}
.x19{left:482.002950px;}
.x27{left:487.105350px;}
.x4d{left:492.716938px;}
.x4{left:493.823550px;}
.x5{left:499.351050px;}
.x28{left:507.599850px;}
.x1a{left:516.018750px;}
.x70{left:519.502981px;}
.x1b{left:529.199850px;}
.x4b{left:537.364641px;}
.x42{left:538.639200px;}
.x4e{left:540.680100px;}
.x43{left:542.891100px;}
.x1c{left:551.565150px;}
.x29{left:552.670650px;}
.x40{left:555.561873px;}
.x44{left:560.154150px;}
.x1d{left:562.195200px;}
.x45{left:563.980950px;}
.x5a{left:570.188850px;}
.x4f{left:575.631300px;}
.x2a{left:578.267550px;}
.x46{left:581.669100px;}
.x5b{left:583.114800px;}
.x48{left:584.645550px;}
.x47{left:586.516350px;}
.x6{left:591.873900px;}
.x7{left:597.486450px;}
.x50{left:600.888000px;}
.x49{left:603.269100px;}
.x6e{left:607.521150px;}
.x6f{left:615.684900px;}
.x2b{left:617.470800px;}
.x12{left:632.522700px;}
.x6c{left:633.626355px;}
.x51{left:634.648650px;}
.x53{left:652.847100px;}
.x2c{left:654.888000px;}
.x52{left:657.439200px;}
.x2d{left:662.711550px;}
.x8{left:670.195050px;}
.x9{left:675.722700px;}
.x5c{left:683.546250px;}
.x2e{left:689.499000px;}
.x2f{left:694.601400px;}
.x54{left:696.472200px;}
.x30{left:704.636100px;}
.x5d{left:707.272200px;}
.x57{left:708.547800px;}
.x66{left:718.922700px;}
.x13{left:721.984050px;}
.x14{left:730.317900px;}
.x31{left:737.631300px;}
.x5e{left:739.842300px;}
.x55{left:741.543150px;}
.x15{left:747.410850px;}
.x5f{left:752.768250px;}
.x32{left:756.169950px;}
.x16{left:760.506900px;}
.x56{left:764.333700px;}
.x67{left:777.939900px;}
.x33{left:780.321000px;}
.x68{left:794.267550px;}
.x17{left:796.733700px;}
.x34{left:803.366700px;}
.x18{left:807.448650px;}
.xa{left:811.530450px;}
.x60{left:814.251750px;}
.x69{left:815.272200px;}
.xb{left:817.143000px;}
.x6d{left:827.772304px;}
.x35{left:840.103800px;}
.x6a{left:848.777700px;}
@media print{
.v2{vertical-align:-13.304000pt;}
.v9{vertical-align:-10.582400pt;}
.v4{vertical-align:-8.163733pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:3.327958pt;}
.v7{vertical-align:5.139007pt;}
.v1{vertical-align:11.488115pt;}
.v8{vertical-align:13.303467pt;}
.v6{vertical-align:18.442473pt;}
.v5{vertical-align:19.351632pt;}
.v3{vertical-align:36.283200pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.010667pt;}
.ls20{letter-spacing:0.016695pt;}
.ls22{letter-spacing:0.017228pt;}
.ls1e{letter-spacing:0.019669pt;}
.ls27{letter-spacing:0.026667pt;}
.ls7f{letter-spacing:0.034133pt;}
.ls12{letter-spacing:0.042662pt;}
.ls6b{letter-spacing:0.043519pt;}
.ls52{letter-spacing:0.064352pt;}
.ls23{letter-spacing:0.071677pt;}
.lsa{letter-spacing:0.072532pt;}
.ls4f{letter-spacing:0.074659pt;}
.ls2e{letter-spacing:0.080001pt;}
.ls37{letter-spacing:0.083111pt;}
.ls40{letter-spacing:0.083645pt;}
.ls39{letter-spacing:0.083963pt;}
.ls3b{letter-spacing:0.084497pt;}
.ls6a{letter-spacing:0.089598pt;}
.ls28{letter-spacing:0.092797pt;}
.ls5a{letter-spacing:0.101051pt;}
.ls56{letter-spacing:0.102117pt;}
.ls30{letter-spacing:0.112001pt;}
.ls16{letter-spacing:0.127996pt;}
.ls7b{letter-spacing:0.128001pt;}
.ls2b{letter-spacing:0.136258pt;}
.ls25{letter-spacing:0.143995pt;}
.ls79{letter-spacing:0.145044pt;}
.ls2f{letter-spacing:0.149335pt;}
.ls24{letter-spacing:0.153595pt;}
.ls5{letter-spacing:0.154668pt;}
.ls4b{letter-spacing:0.157326pt;}
.ls9{letter-spacing:0.165335pt;}
.ls11{letter-spacing:0.170650pt;}
.ls18{letter-spacing:0.172794pt;}
.ls60{letter-spacing:0.191680pt;}
.ls3e{letter-spacing:0.196996pt;}
.ls64{letter-spacing:0.198726pt;}
.ls4e{letter-spacing:0.227533pt;}
.ls5e{letter-spacing:0.245336pt;}
.ls10{letter-spacing:0.320003pt;}
.ls69{letter-spacing:0.734705pt;}
.ls47{letter-spacing:1.027166pt;}
.ls57{letter-spacing:1.052765pt;}
.ls17{letter-spacing:1.331156pt;}
.ls15{letter-spacing:1.449552pt;}
.ls33{letter-spacing:1.750342pt;}
.ls44{letter-spacing:2.594039pt;}
.ls2d{letter-spacing:2.595359pt;}
.ls26{letter-spacing:2.800028pt;}
.ls5b{letter-spacing:2.893713pt;}
.ls68{letter-spacing:3.340997pt;}
.ls75{letter-spacing:3.447703pt;}
.ls77{letter-spacing:3.451974pt;}
.ls73{letter-spacing:3.455884pt;}
.ls32{letter-spacing:3.513870pt;}
.ls6d{letter-spacing:3.634473pt;}
.ls14{letter-spacing:3.820069pt;}
.ls46{letter-spacing:3.823392pt;}
.ls49{letter-spacing:3.823856pt;}
.ls1b{letter-spacing:3.824897pt;}
.ls31{letter-spacing:3.825443pt;}
.ls21{letter-spacing:4.051067pt;}
.ls1f{letter-spacing:4.170388pt;}
.ls55{letter-spacing:8.794133pt;}
.ls13{letter-spacing:8.880089pt;}
.ls0{letter-spacing:9.104953pt;}
.ls71{letter-spacing:9.117753pt;}
.lsc{letter-spacing:9.143352pt;}
.ls4d{letter-spacing:9.184092pt;}
.ls6f{letter-spacing:9.288417pt;}
.ls70{letter-spacing:9.292684pt;}
.lsb{letter-spacing:9.343883pt;}
.ls3{letter-spacing:9.378016pt;}
.ls1{letter-spacing:9.403616pt;}
.lsd{letter-spacing:9.446282pt;}
.ls72{letter-spacing:9.514548pt;}
.ls4c{letter-spacing:11.520115pt;}
.ls7{letter-spacing:11.642783pt;}
.lse{letter-spacing:11.653450pt;}
.ls7a{letter-spacing:11.680117pt;}
.ls67{letter-spacing:11.733451pt;}
.ls7e{letter-spacing:11.760118pt;}
.ls5d{letter-spacing:11.776118pt;}
.lsf{letter-spacing:11.824118pt;}
.ls45{letter-spacing:11.845452pt;}
.ls5f{letter-spacing:11.888119pt;}
.ls51{letter-spacing:11.904119pt;}
.ls7d{letter-spacing:11.941453pt;}
.ls1a{letter-spacing:11.946786pt;}
.ls6{letter-spacing:11.957453pt;}
.ls6c{letter-spacing:11.998552pt;}
.ls50{letter-spacing:12.032120pt;}
.ls5c{letter-spacing:12.037454pt;}
.ls59{letter-spacing:12.149455pt;}
.ls6e{letter-spacing:12.525575pt;}
.ls19{letter-spacing:14.304164pt;}
.ls4a{letter-spacing:14.606031pt;}
.ls34{letter-spacing:14.606564pt;}
.ls48{letter-spacing:14.609764pt;}
.ls2a{letter-spacing:14.869482pt;}
.ls54{letter-spacing:15.171856pt;}
.ls43{letter-spacing:15.173485pt;}
.ls58{letter-spacing:15.540357pt;}
.ls1c{letter-spacing:17.327631pt;}
.ls53{letter-spacing:18.286296pt;}
.ls42{letter-spacing:18.565473pt;}
.ls2{letter-spacing:18.783228pt;}
.ls3a{letter-spacing:18.866263pt;}
.ls61{letter-spacing:18.866796pt;}
.ls2c{letter-spacing:18.867894pt;}
.ls41{letter-spacing:18.986661pt;}
.ls38{letter-spacing:19.287985pt;}
.ls29{letter-spacing:19.289102pt;}
.ls36{letter-spacing:20.069534pt;}
.ls66{letter-spacing:20.373537pt;}
.ls65{letter-spacing:22.702400pt;}
.ls3f{letter-spacing:22.702933pt;}
.ls35{letter-spacing:23.005333pt;}
.ls63{letter-spacing:29.440294pt;}
.ls62{letter-spacing:32.223363pt;}
.ls3d{letter-spacing:42.443091pt;}
.ls3c{letter-spacing:44.924173pt;}
.ls1d{letter-spacing:99.228923pt;}
.ls7c{letter-spacing:237.385833pt;}
.ls76{letter-spacing:300.502327pt;}
.ls74{letter-spacing:304.240383pt;}
.ls78{letter-spacing:319.326142pt;}
.wsda{word-spacing:-11.994787pt;}
.ws9f{word-spacing:-11.941453pt;}
.ws88{word-spacing:-11.877452pt;}
.ws48{word-spacing:-11.696117pt;}
.ws85{word-spacing:-11.573449pt;}
.ws21{word-spacing:-9.420682pt;}
.ws89{word-spacing:-9.237426pt;}
.ws87{word-spacing:-8.933423pt;}
.wseb{word-spacing:-0.063999pt;}
.ws3d{word-spacing:-0.053334pt;}
.ws11{word-spacing:-0.042666pt;}
.ws86{word-spacing:-0.035552pt;}
.ws8c{word-spacing:-0.031999pt;}
.wsbf{word-spacing:-0.028440pt;}
.wsb4{word-spacing:-0.025599pt;}
.ws38{word-spacing:0.000000pt;}
.ws2e{word-spacing:8.584426pt;}
.ws36{word-spacing:8.631359pt;}
.ws34{word-spacing:8.635625pt;}
.ws28{word-spacing:8.656958pt;}
.ws26{word-spacing:8.669758pt;}
.ws27{word-spacing:8.699625pt;}
.ws12e{word-spacing:8.729491pt;}
.ws23{word-spacing:8.733757pt;}
.ws2f{word-spacing:8.755091pt;}
.wsfb{word-spacing:8.759357pt;}
.ws10c{word-spacing:8.763624pt;}
.ws82{word-spacing:8.767890pt;}
.ws2d{word-spacing:8.776424pt;}
.ws2b{word-spacing:8.784957pt;}
.ws2c{word-spacing:8.793490pt;}
.wsfe{word-spacing:8.797757pt;}
.ws105{word-spacing:8.802023pt;}
.ws29{word-spacing:8.814823pt;}
.ws31{word-spacing:8.819090pt;}
.ws5c{word-spacing:8.823356pt;}
.wsc6{word-spacing:8.827623pt;}
.wsc2{word-spacing:8.840423pt;}
.wsc3{word-spacing:8.857489pt;}
.ws10b{word-spacing:8.861756pt;}
.wsb{word-spacing:8.866023pt;}
.ws33{word-spacing:8.870289pt;}
.ws2a{word-spacing:8.878822pt;}
.ws11e{word-spacing:8.881919pt;}
.wsfd{word-spacing:8.881986pt;}
.ws119{word-spacing:8.882069pt;}
.ws101{word-spacing:8.882204pt;}
.ws130{word-spacing:8.882473pt;}
.ws120{word-spacing:8.882562pt;}
.ws128{word-spacing:8.883695pt;}
.ws123{word-spacing:8.895889pt;}
.ws80{word-spacing:8.904422pt;}
.ws10{word-spacing:8.908689pt;}
.ws5a{word-spacing:8.917222pt;}
.ws5b{word-spacing:8.921488pt;}
.ws35{word-spacing:8.925755pt;}
.ws9{word-spacing:8.930022pt;}
.wsf4{word-spacing:8.934288pt;}
.ws11f{word-spacing:8.955621pt;}
.wse{word-spacing:8.959888pt;}
.ws7e{word-spacing:8.964155pt;}
.wsf1{word-spacing:8.968421pt;}
.ws12a{word-spacing:8.976954pt;}
.wsb6{word-spacing:8.985488pt;}
.ws100{word-spacing:8.989754pt;}
.wsd{word-spacing:8.998288pt;}
.ws107{word-spacing:9.002554pt;}
.ws83{word-spacing:9.011087pt;}
.ws24{word-spacing:9.019621pt;}
.wsf9{word-spacing:9.023887pt;}
.wsaf{word-spacing:9.028154pt;}
.wsb0{word-spacing:9.032420pt;}
.wsc5{word-spacing:9.036687pt;}
.ws20{word-spacing:9.045220pt;}
.ws22{word-spacing:9.049487pt;}
.ws10a{word-spacing:9.058020pt;}
.wscd{word-spacing:9.062287pt;}
.wscc{word-spacing:9.066553pt;}
.ws103{word-spacing:9.070820pt;}
.wsa{word-spacing:9.079353pt;}
.ws121{word-spacing:9.092153pt;}
.wsf2{word-spacing:9.096420pt;}
.ws12d{word-spacing:9.100686pt;}
.ws132{word-spacing:9.120917pt;}
.ws114{word-spacing:9.123087pt;}
.ws124{word-spacing:9.125983pt;}
.wsc{word-spacing:9.126286pt;}
.ws117{word-spacing:9.129111pt;}
.wsf8{word-spacing:9.129113pt;}
.ws110{word-spacing:9.130553pt;}
.ws12b{word-spacing:9.130983pt;}
.ws126{word-spacing:9.132683pt;}
.ws109{word-spacing:9.134795pt;}
.wsf0{word-spacing:9.134819pt;}
.ws12f{word-spacing:9.138694pt;}
.ws0{word-spacing:9.139086pt;}
.ws7f{word-spacing:9.143352pt;}
.wsee{word-spacing:9.156152pt;}
.ws10f{word-spacing:9.159605pt;}
.ws7c{word-spacing:9.160419pt;}
.wsf7{word-spacing:9.164685pt;}
.ws129{word-spacing:9.168952pt;}
.ws111{word-spacing:9.177795pt;}
.ws131{word-spacing:9.182459pt;}
.ws11d{word-spacing:9.182730pt;}
.ws11a{word-spacing:9.183295pt;}
.wsfa{word-spacing:9.183336pt;}
.ws10d{word-spacing:9.183807pt;}
.ws127{word-spacing:9.184269pt;}
.ws125{word-spacing:9.184390pt;}
.wsef{word-spacing:9.184864pt;}
.ws104{word-spacing:9.185158pt;}
.wsff{word-spacing:9.185792pt;}
.ws11c{word-spacing:9.185820pt;}
.ws108{word-spacing:9.185877pt;}
.ws122{word-spacing:9.186421pt;}
.ws12c{word-spacing:9.186625pt;}
.ws134{word-spacing:9.186729pt;}
.wsf5{word-spacing:9.186869pt;}
.ws115{word-spacing:9.186943pt;}
.ws112{word-spacing:9.187501pt;}
.ws113{word-spacing:9.189648pt;}
.wsfc{word-spacing:9.190285pt;}
.ws7d{word-spacing:9.203085pt;}
.wsf3{word-spacing:9.211618pt;}
.wsb7{word-spacing:9.232951pt;}
.ws102{word-spacing:9.237218pt;}
.ws30{word-spacing:9.267084pt;}
.ws32{word-spacing:9.284151pt;}
.ws25{word-spacing:9.301217pt;}
.ws37{word-spacing:9.305484pt;}
.wsb8{word-spacing:9.331083pt;}
.ws11b{word-spacing:9.356683pt;}
.wsf6{word-spacing:9.360950pt;}
.ws10e{word-spacing:9.365216pt;}
.ws116{word-spacing:9.369483pt;}
.ws133{word-spacing:9.390816pt;}
.ws118{word-spacing:9.395083pt;}
.wsf{word-spacing:9.501748pt;}
.ws81{word-spacing:9.531614pt;}
.ws7{word-spacing:10.387200pt;}
.ws8{word-spacing:10.401600pt;}
.ws6{word-spacing:10.454400pt;}
.ws4{word-spacing:10.497600pt;}
.ws5{word-spacing:10.531200pt;}
.ws3{word-spacing:10.579200pt;}
.ws15{word-spacing:10.898400pt;}
.ws3a{word-spacing:10.913600pt;}
.ws39{word-spacing:10.979467pt;}
.ws16{word-spacing:10.984533pt;}
.ws1f{word-spacing:11.040267pt;}
.ws4b{word-spacing:11.050777pt;}
.ws1e{word-spacing:11.065600pt;}
.wse9{word-spacing:11.072111pt;}
.ws1d{word-spacing:11.136533pt;}
.ws12{word-spacing:11.151733pt;}
.ws1c{word-spacing:11.192267pt;}
.ws13{word-spacing:11.212533pt;}
.ws14{word-spacing:11.227733pt;}
.ws1a{word-spacing:11.263200pt;}
.wsc7{word-spacing:11.280113pt;}
.ws17{word-spacing:11.293600pt;}
.wsac{word-spacing:11.312113pt;}
.ws19{word-spacing:11.339200pt;}
.wsdb{word-spacing:11.349447pt;}
.ws18{word-spacing:11.364533pt;}
.ws1b{word-spacing:11.369600pt;}
.ws93{word-spacing:11.376114pt;}
.ws84{word-spacing:11.381447pt;}
.wsc9{word-spacing:11.413447pt;}
.wse4{word-spacing:11.418781pt;}
.ws6c{word-spacing:11.472115pt;}
.wsa7{word-spacing:11.488115pt;}
.ws45{word-spacing:11.498782pt;}
.wse0{word-spacing:11.509448pt;}
.ws3c{word-spacing:11.520115pt;}
.ws57{word-spacing:11.525449pt;}
.wsd8{word-spacing:11.530782pt;}
.ws90{word-spacing:11.536115pt;}
.wsdd{word-spacing:11.541449pt;}
.wsb2{word-spacing:11.546782pt;}
.wsca{word-spacing:11.552116pt;}
.ws9b{word-spacing:11.557449pt;}
.ws68{word-spacing:11.562782pt;}
.ws8e{word-spacing:11.568116pt;}
.wsd9{word-spacing:11.573449pt;}
.ws5d{word-spacing:11.578782pt;}
.wscf{word-spacing:11.583855pt;}
.ws6a{word-spacing:11.584116pt;}
.ws75{word-spacing:11.589449pt;}
.ws4c{word-spacing:11.594783pt;}
.ws53{word-spacing:11.600116pt;}
.wsc8{word-spacing:11.605449pt;}
.ws52{word-spacing:11.610783pt;}
.ws6b{word-spacing:11.616116pt;}
.wsde{word-spacing:11.621450pt;}
.ws46{word-spacing:11.626783pt;}
.ws65{word-spacing:11.632116pt;}
.ws70{word-spacing:11.637450pt;}
.ws3b{word-spacing:11.642783pt;}
.ws44{word-spacing:11.648116pt;}
.wsad{word-spacing:11.650074pt;}
.wsae{word-spacing:11.651363pt;}
.ws4d{word-spacing:11.653450pt;}
.ws8a{word-spacing:11.658783pt;}
.wsa3{word-spacing:11.664117pt;}
.ws60{word-spacing:11.669450pt;}
.ws54{word-spacing:11.674783pt;}
.ws49{word-spacing:11.680117pt;}
.wsd6{word-spacing:11.685450pt;}
.ws3e{word-spacing:11.690784pt;}
.ws64{word-spacing:11.701450pt;}
.ws56{word-spacing:11.706784pt;}
.wsa2{word-spacing:11.712117pt;}
.ws42{word-spacing:11.717451pt;}
.wsc0{word-spacing:11.722784pt;}
.ws69{word-spacing:11.728117pt;}
.ws8d{word-spacing:11.733451pt;}
.ws73{word-spacing:11.738784pt;}
.ws51{word-spacing:11.744117pt;}
.ws4f{word-spacing:11.749451pt;}
.ws9d{word-spacing:11.754784pt;}
.wse3{word-spacing:11.760118pt;}
.wse6{word-spacing:11.765451pt;}
.ws78{word-spacing:11.770784pt;}
.ws91{word-spacing:11.776118pt;}
.wsbe{word-spacing:11.781451pt;}
.ws62{word-spacing:11.792118pt;}
.ws9a{word-spacing:11.797451pt;}
.ws9e{word-spacing:11.813451pt;}
.ws79{word-spacing:11.818785pt;}
.ws6d{word-spacing:11.829452pt;}
.ws95{word-spacing:11.834785pt;}
.wsab{word-spacing:11.840118pt;}
.wsc4{word-spacing:11.856119pt;}
.ws43{word-spacing:11.866785pt;}
.wsb1{word-spacing:11.872119pt;}
.ws47{word-spacing:11.882785pt;}
.ws8f{word-spacing:11.888119pt;}
.wse7{word-spacing:11.893452pt;}
.ws97{word-spacing:11.898786pt;}
.ws8b{word-spacing:11.904119pt;}
.wse1{word-spacing:11.909452pt;}
.ws74{word-spacing:11.920119pt;}
.ws96{word-spacing:11.925453pt;}
.ws3f{word-spacing:11.930786pt;}
.wse5{word-spacing:11.936119pt;}
.wscb{word-spacing:11.941453pt;}
.ws40{word-spacing:11.946786pt;}
.ws4a{word-spacing:11.952120pt;}
.wsd7{word-spacing:11.957453pt;}
.ws67{word-spacing:11.968120pt;}
.wsb3{word-spacing:11.968711pt;}
.ws50{word-spacing:11.973453pt;}
.wsa0{word-spacing:11.978786pt;}
.wsc1{word-spacing:11.984120pt;}
.wsea{word-spacing:11.989453pt;}
.ws41{word-spacing:11.994787pt;}
.ws61{word-spacing:12.000120pt;}
.ws59{word-spacing:12.005453pt;}
.ws77{word-spacing:12.010787pt;}
.ws4e{word-spacing:12.021454pt;}
.ws6f{word-spacing:12.032120pt;}
.wse2{word-spacing:12.037454pt;}
.ws72{word-spacing:12.042787pt;}
.wsdc{word-spacing:12.053454pt;}
.ws9c{word-spacing:12.058787pt;}
.ws7b{word-spacing:12.064121pt;}
.wsdf{word-spacing:12.069454pt;}
.ws76{word-spacing:12.074787pt;}
.ws55{word-spacing:12.090788pt;}
.ws58{word-spacing:12.128121pt;}
.wse8{word-spacing:12.133455pt;}
.ws99{word-spacing:12.144121pt;}
.wsa4{word-spacing:12.149455pt;}
.wsa1{word-spacing:12.181455pt;}
.ws66{word-spacing:12.240122pt;}
.ws94{word-spacing:12.325457pt;}
.wsec{word-spacing:13.798285pt;}
.ws7a{word-spacing:13.804685pt;}
.ws6e{word-spacing:13.855885pt;}
.ws71{word-spacing:13.881484pt;}
.ws98{word-spacing:13.894284pt;}
.ws5f{word-spacing:13.913484pt;}
.ws63{word-spacing:13.958284pt;}
.ws5e{word-spacing:13.983883pt;}
.wsa5{word-spacing:13.996683pt;}
.wsa6{word-spacing:14.015883pt;}
.wsb5{word-spacing:14.365687pt;}
.ws92{word-spacing:14.992150pt;}
.wsa8{word-spacing:21.168212pt;}
.wsaa{word-spacing:21.216212pt;}
.ws1{word-spacing:23.232116pt;}
.ws2{word-spacing:23.242783pt;}
.wsa9{word-spacing:24.112024pt;}
.wsed{word-spacing:53.174802pt;}
.ws106{word-spacing:53.208935pt;}
.wsd4{word-spacing:199.715904pt;}
.wsd5{word-spacing:199.886568pt;}
.wsd3{word-spacing:199.920701pt;}
.wsd1{word-spacing:209.221918pt;}
.wsbc{word-spacing:215.673037pt;}
.wsba{word-spacing:215.702904pt;}
.wsbd{word-spacing:239.054078pt;}
.wsbb{word-spacing:239.224743pt;}
.wsd2{word-spacing:247.019846pt;}
.wsd0{word-spacing:341.282134pt;}
.wsb9{word-spacing:392.400428pt;}
.wsce{word-spacing:649.007354pt;}
._c{margin-left:-11.484210pt;}
._8{margin-left:-9.378016pt;}
._9{margin-left:-4.066083pt;}
._a{margin-left:-2.205839pt;}
._3{margin-left:-1.169052pt;}
._4{width:1.058933pt;}
._2{width:8.349762pt;}
._1{width:9.915609pt;}
._b{width:11.013443pt;}
._5{width:12.352533pt;}
._25{width:13.290800pt;}
._d{width:14.212089pt;}
._e{width:15.568156pt;}
._27{width:17.714979pt;}
._26{width:18.785899pt;}
._0{width:24.405455pt;}
._6{width:41.373349pt;}
._20{width:200.808157pt;}
._23{width:202.484936pt;}
._22{width:203.521723pt;}
._1d{width:204.703575pt;}
._1c{width:222.776949pt;}
._1f{width:223.762536pt;}
._1e{width:246.797982pt;}
._21{width:260.408478pt;}
._13{width:262.605784pt;}
._1b{width:265.319350pt;}
._24{width:269.278767pt;}
._15{width:282.108474pt;}
._12{width:286.191623pt;}
._17{width:309.743328pt;}
._14{width:310.925180pt;}
._16{width:333.295034pt;}
._11{width:342.950380pt;}
._19{width:359.423774pt;}
._1a{width:385.808511pt;}
._10{width:396.214781pt;}
._f{width:481.832910pt;}
._18{width:1560.778357pt;}
._7{width:1584.364195pt;}
.fsa{font-size:23.700800pt;}
.fsd{font-size:25.599467pt;}
.fsc{font-size:26.666667pt;}
.fse{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fsb{font-size:31.998933pt;}
.fs9{font-size:35.552000pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs7{font-size:53.333867pt;}
.fs5{font-size:61.332800pt;}
.fs8{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:48.000000pt;}
.y70{bottom:110.662120pt;}
.y9e{bottom:110.663613pt;}
.y143{bottom:110.663960pt;}
.y236{bottom:110.664186pt;}
.y129{bottom:110.664533pt;}
.y26{bottom:110.666133pt;}
.y44{bottom:110.667300pt;}
.y217{bottom:111.177987pt;}
.y1e8{bottom:111.192466pt;}
.y26f{bottom:116.107308pt;}
.y17f{bottom:118.220840pt;}
.y1ac{bottom:118.374453pt;}
.y164{bottom:122.074225pt;}
.y43{bottom:125.331650pt;}
.y127{bottom:125.782667pt;}
.y18a{bottom:127.520280pt;}
.y6f{bottom:127.972960pt;}
.y9d{bottom:127.974453pt;}
.y128{bottom:127.974800pt;}
.y142{bottom:127.975026pt;}
.y216{bottom:128.488827pt;}
.y1e7{bottom:128.503306pt;}
.y26e{bottom:128.806883pt;}
.y25{bottom:129.336800pt;}
.y17e{bottom:135.606347pt;}
.y1ab{bottom:135.759960pt;}
.y16f{bottom:135.910240pt;}
.y42{bottom:139.996000pt;}
.y163{bottom:142.710767pt;}
.y189{bottom:144.831120pt;}
.y6e{bottom:145.358467pt;}
.y141{bottom:145.359387pt;}
.y9c{bottom:145.359960pt;}
.y235{bottom:145.360533pt;}
.y215{bottom:145.874334pt;}
.y1e6{bottom:145.888813pt;}
.y26d{bottom:146.116400pt;}
.y24{bottom:148.007467pt;}
.y17d{bottom:152.917187pt;}
.y1aa{bottom:153.062640pt;}
.y16e{bottom:153.221080pt;}
.y41{bottom:154.660350pt;}
.y26c{bottom:158.740242pt;}
.y162{bottom:159.416691pt;}
.y188{bottom:162.216627pt;}
.y6d{bottom:162.669307pt;}
.yf4{bottom:162.670227pt;}
.y9b{bottom:162.670800pt;}
.y214{bottom:163.185174pt;}
.y1e5{bottom:163.199653pt;}
.y23{bottom:166.678133pt;}
.y234{bottom:168.037733pt;}
.y40{bottom:169.324700pt;}
.y17c{bottom:170.228027pt;}
.y1a9{bottom:170.373480pt;}
.y16d{bottom:170.606587pt;}
.y26b{bottom:171.439816pt;}
.y161{bottom:176.046884pt;}
.y187{bottom:179.526547pt;}
.y140{bottom:179.979573pt;}
.y6c{bottom:179.980147pt;}
.yf3{bottom:179.981067pt;}
.y213{bottom:180.496013pt;}
.y1e4{bottom:180.510493pt;}
.y3f{bottom:183.989050pt;}
.y9a{bottom:185.348000pt;}
.y22{bottom:185.348800pt;}
.y17b{bottom:187.613534pt;}
.y1a8{bottom:187.684320pt;}
.y16c{bottom:187.917427pt;}
.y26a{bottom:188.749467pt;}
.y160{bottom:192.752808pt;}
.y186{bottom:196.837386pt;}
.y13f{bottom:197.365081pt;}
.y6b{bottom:197.365654pt;}
.y212{bottom:197.881521pt;}
.y1e3{bottom:197.894854pt;}
.y3e{bottom:198.653400pt;}
.y269{bottom:201.449042pt;}
.yf2{bottom:202.658267pt;}
.y21{bottom:204.019467pt;}
.y17a{bottom:204.924373pt;}
.y1a7{bottom:205.069827pt;}
.y16b{bottom:205.227133pt;}
.y15f{bottom:209.383000pt;}
.y3d{bottom:213.317750pt;}
.y268{bottom:214.072884pt;}
.y185{bottom:214.222894pt;}
.y13e{bottom:214.675920pt;}
.y6a{bottom:214.676494pt;}
.y211{bottom:215.192360pt;}
.y1e2{bottom:215.205694pt;}
.y233{bottom:221.479920pt;}
.y99{bottom:221.780120pt;}
.y179{bottom:222.235213pt;}
.y1a6{bottom:222.380667pt;}
.y16a{bottom:222.612640pt;}
.y20{bottom:222.690133pt;}
.y126{bottom:222.762214pt;}
.y15e{bottom:226.088925pt;}
.y267{bottom:231.458508pt;}
.y184{bottom:231.533733pt;}
.y69{bottom:231.984573pt;}
.y13d{bottom:231.986760pt;}
.yb2{bottom:231.987333pt;}
.y2a0{bottom:232.289733pt;}
.y210{bottom:232.503200pt;}
.y1e1{bottom:232.516186pt;}
.y3c{bottom:235.994800pt;}
.y232{bottom:238.865427pt;}
.y98{bottom:239.165627pt;}
.y178{bottom:239.620720pt;}
.y1a5{bottom:239.691506pt;}
.y169{bottom:239.923480pt;}
.y125{bottom:240.073053pt;}
.y1f{bottom:241.360800pt;}
.y15d{bottom:242.719117pt;}
.y266{bottom:244.082351pt;}
.y29f{bottom:244.989308pt;}
.yf1{bottom:247.555374pt;}
.y68{bottom:249.295413pt;}
.y13c{bottom:249.296680pt;}
.y20f{bottom:249.888707pt;}
.y1e0{bottom:249.901694pt;}
.y3b{bottom:250.659150pt;}
.y183{bottom:254.210933pt;}
.yb1{bottom:254.664533pt;}
.y231{bottom:256.176267pt;}
.y97{bottom:256.476467pt;}
.y177{bottom:256.931560pt;}
.y1a4{bottom:257.077014pt;}
.y168{bottom:257.234320pt;}
.y124{bottom:257.458561pt;}
.y29e{bottom:257.613150pt;}
.y15c{bottom:259.425041pt;}
.y1e{bottom:260.031467pt;}
.y265{bottom:261.467491pt;}
.yf0{bottom:264.866214pt;}
.y3a{bottom:265.323500pt;}
.y67{bottom:266.680920pt;}
.y13b{bottom:266.682187pt;}
.y20e{bottom:267.199547pt;}
.y1df{bottom:267.211254pt;}
.y96{bottom:273.787307pt;}
.y264{bottom:274.091442pt;}
.y176{bottom:274.241613pt;}
.y1a3{bottom:274.387853pt;}
.y167{bottom:274.545159pt;}
.y123{bottom:274.769400pt;}
.y29d{bottom:274.922908pt;}
.y15b{bottom:276.055233pt;}
.y230{bottom:278.853467pt;}
.yef{bottom:282.177053pt;}
.y1d{bottom:282.632933pt;}
.y66{bottom:283.991760pt;}
.y13a{bottom:283.993027pt;}
.y20d{bottom:284.510387pt;}
.y1de{bottom:284.522094pt;}
.y263{bottom:286.791016pt;}
.y29c{bottom:287.622483pt;}
.y39{bottom:288.000550pt;}
.y95{bottom:291.098147pt;}
.y175{bottom:291.552453pt;}
.y1a2{bottom:291.698693pt;}
.y166{bottom:291.929960pt;}
.y122{bottom:292.080240pt;}
.y15a{bottom:292.761158pt;}
.yee{bottom:299.562561pt;}
.y65{bottom:301.302600pt;}
.y139{bottom:301.303867pt;}
.y20c{bottom:301.821227pt;}
.y1dd{bottom:301.832720pt;}
.y38{bottom:302.664900pt;}
.y262{bottom:304.101150pt;}
.y29b{bottom:304.932133pt;}
.y18e{bottom:306.518950pt;}
.y94{bottom:308.483654pt;}
.y174{bottom:308.937960pt;}
.y1a1{bottom:309.084200pt;}
.y165{bottom:309.240800pt;}
.y121{bottom:309.391080pt;}
.y159{bottom:309.391350pt;}
.yb0{bottom:311.276120pt;}
.y261{bottom:316.800725pt;}
.yed{bottom:316.873400pt;}
.y37{bottom:317.329250pt;}
.y29a{bottom:317.631708pt;}
.y64{bottom:318.688107pt;}
.y20b{bottom:319.206734pt;}
.y1dc{bottom:319.218227pt;}
.y138{bottom:323.981067pt;}
.y93{bottom:325.794494pt;}
.y158{bottom:326.097275pt;}
.y173{bottom:326.248800pt;}
.y1a0{bottom:326.395040pt;}
.y120{bottom:326.776587pt;}
.y18d{bottom:327.155492pt;}
.yaf{bottom:328.586960pt;}
.y299{bottom:330.255551pt;}
.y36{bottom:331.993600pt;}
.y260{bottom:334.110375pt;}
.yec{bottom:334.184240pt;}
.y63{bottom:335.998947pt;}
.y20a{bottom:336.517574pt;}
.y1db{bottom:336.528494pt;}
.y18c{bottom:339.854692pt;}
.y22f{bottom:340.380360pt;}
.y157{bottom:342.727467pt;}
.y92{bottom:343.105333pt;}
.y19f{bottom:343.705880pt;}
.y11f{bottom:344.087427pt;}
.y1c{bottom:345.072933pt;}
.yae{bottom:345.972467pt;}
.y35{bottom:346.659723pt;}
.y25f{bottom:346.809950pt;}
.y298{bottom:347.640800pt;}
.yeb{bottom:351.495080pt;}
.y18b{bottom:352.554267pt;}
.y62{bottom:353.309786pt;}
.y209{bottom:353.828413pt;}
.y1da{bottom:353.839559pt;}
.y22e{bottom:357.691200pt;}
.y297{bottom:360.264642pt;}
.y19e{bottom:361.091387pt;}
.y34{bottom:361.324073pt;}
.y11e{bottom:361.397706pt;}
.y156{bottom:362.758544pt;}
.y155{bottom:362.758672pt;}
.yad{bottom:363.283307pt;}
.y1b{bottom:363.743600pt;}
.y25e{bottom:364.119708pt;}
.y91{bottom:365.782533pt;}
.yea{bottom:368.880587pt;}
.y61{bottom:370.695294pt;}
.y208{bottom:371.213921pt;}
.y1d9{bottom:371.223000pt;}
.y137{bottom:372.581240pt;}
.y296{bottom:372.964216pt;}
.y22d{bottom:375.002040pt;}
.y25d{bottom:376.743551pt;}
.y19d{bottom:378.402227pt;}
.y11d{bottom:378.783213pt;}
.yac{bottom:380.594147pt;}
.y1a{bottom:382.414267pt;}
.y33{bottom:384.001123pt;}
.y172{bottom:384.528658pt;}
.y154{bottom:384.529067pt;}
.ye9{bottom:386.191427pt;}
.y182{bottom:387.854283pt;}
.y60{bottom:388.004640pt;}
.y207{bottom:388.524760pt;}
.y1d8{bottom:388.533840pt;}
.y136{bottom:389.892080pt;}
.y295{bottom:390.274108pt;}
.y22c{bottom:392.387547pt;}
.y25c{bottom:394.128933pt;}
.y19c{bottom:395.713067pt;}
.y11c{bottom:396.094053pt;}
.yab{bottom:397.904986pt;}
.y19{bottom:401.084933pt;}
.y90{bottom:402.291307pt;}
.y294{bottom:402.973683pt;}
.y171{bottom:403.426667pt;}
.ye8{bottom:403.502260pt;}
.y170{bottom:405.165200pt;}
.y5f{bottom:405.315480pt;}
.y206{bottom:405.835600pt;}
.y1d7{bottom:405.844680pt;}
.y32{bottom:406.678172pt;}
.y25b{bottom:406.752908pt;}
.y135{bottom:407.277587pt;}
.y181{bottom:408.490825pt;}
.y22b{bottom:409.698387pt;}
.y19b{bottom:413.023906pt;}
.y11b{bottom:413.404893pt;}
.yaa{bottom:415.290494pt;}
.y25a{bottom:419.452483pt;}
.y150{bottom:419.526187pt;}
.y8f{bottom:419.602147pt;}
.y18{bottom:419.755600pt;}
.y293{bottom:420.283201pt;}
.ye7{bottom:420.887767pt;}
.y180{bottom:421.190400pt;}
.y5e{bottom:422.700987pt;}
.y205{bottom:423.221107pt;}
.y1d6{bottom:423.230187pt;}
.y134{bottom:424.588426pt;}
.y22a{bottom:427.009226pt;}
.y31{bottom:429.355222pt;}
.y19a{bottom:430.409414pt;}
.y11a{bottom:430.790400pt;}
.ya9{bottom:432.601333pt;}
.y292{bottom:432.982775pt;}
.y259{bottom:436.762133pt;}
.y14f{bottom:436.837027pt;}
.y8e{bottom:436.912986pt;}
.ye6{bottom:438.198606pt;}
.y17{bottom:438.426267pt;}
.y5d{bottom:440.011827pt;}
.y204{bottom:440.531947pt;}
.y1d5{bottom:440.541027pt;}
.y133{bottom:441.899266pt;}
.y291{bottom:445.606617pt;}
.y199{bottom:447.720253pt;}
.y258{bottom:449.461333pt;}
.ya8{bottom:449.912173pt;}
.y30{bottom:452.032272pt;}
.y229{bottom:452.332146pt;}
.y119{bottom:453.392000pt;}
.y14e{bottom:454.148226pt;}
.y8d{bottom:454.298494pt;}
.y16{bottom:457.096933pt;}
.y5c{bottom:457.320960pt;}
.ye4{bottom:457.548807pt;}
.ye5{bottom:457.549467pt;}
.y203{bottom:457.842787pt;}
.y1d4{bottom:457.850947pt;}
.y132{bottom:459.284773pt;}
.y257{bottom:462.085175pt;}
.y290{bottom:462.992000pt;}
.y198{bottom:465.031093pt;}
.y2f{bottom:466.696622pt;}
.ya7{bottom:467.297680pt;}
.y228{bottom:469.717653pt;}
.y14d{bottom:471.531667pt;}
.y8c{bottom:471.607267pt;}
.y5b{bottom:474.631800pt;}
.y256{bottom:474.784750pt;}
.y202{bottom:475.228294pt;}
.y1d3{bottom:475.236454pt;}
.y28f{bottom:475.615841pt;}
.y15{bottom:475.767600pt;}
.y131{bottom:476.595613pt;}
.ye3{bottom:476.899667pt;}
.y197{bottom:482.416600pt;}
.ya6{bottom:484.608520pt;}
.y28e{bottom:488.315416pt;}
.y14c{bottom:488.842507pt;}
.y8b{bottom:488.918107pt;}
.y2e{bottom:489.373672pt;}
.y118{bottom:490.881374pt;}
.y5a{bottom:492.017307pt;}
.y255{bottom:492.094400pt;}
.y201{bottom:492.539134pt;}
.y1d2{bottom:492.547294pt;}
.y130{bottom:493.906453pt;}
.ye2{bottom:494.210507pt;}
.y14{bottom:494.438267pt;}
.y227{bottom:495.040573pt;}
.y196{bottom:499.727440pt;}
.ya5{bottom:501.919360pt;}
.y2d{bottom:504.038022pt;}
.y254{bottom:504.793708pt;}
.y28d{bottom:505.625066pt;}
.y14b{bottom:506.153347pt;}
.y8a{bottom:506.228947pt;}
.y117{bottom:508.192214pt;}
.y59{bottom:509.328147pt;}
.y200{bottom:509.849974pt;}
.y1d1{bottom:509.857213pt;}
.y12f{bottom:511.291960pt;}
.ye1{bottom:511.521347pt;}
.y226{bottom:512.351413pt;}
.y13{bottom:513.108933pt;}
.y195{bottom:517.038280pt;}
.y253{bottom:517.417551pt;}
.y28c{bottom:518.324641pt;}
.y2c{bottom:518.702372pt;}
.ya4{bottom:519.304867pt;}
.y14a{bottom:523.538854pt;}
.y89{bottom:523.614454pt;}
.y116{bottom:525.503053pt;}
.y58{bottom:526.638986pt;}
.y1ff{bottom:527.160813pt;}
.y1d0{bottom:527.168053pt;}
.y12e{bottom:528.602800pt;}
.ye0{bottom:528.906854pt;}
.y225{bottom:529.662253pt;}
.y28b{bottom:530.948483pt;}
.y12{bottom:531.779600pt;}
.y2b{bottom:533.366722pt;}
.y194{bottom:534.423787pt;}
.y252{bottom:534.803066pt;}
.ya3{bottom:536.615707pt;}
.y149{bottom:540.849694pt;}
.y88{bottom:540.925294pt;}
.y115{bottom:542.888561pt;}
.y57{bottom:544.024494pt;}
.y1fe{bottom:544.546321pt;}
.y1cf{bottom:544.553560pt;}
.y12d{bottom:545.913640pt;}
.ydf{bottom:546.217694pt;}
.y224{bottom:547.047760pt;}
.y251{bottom:547.426908pt;}
.y2a{bottom:548.031072pt;}
.y28a{bottom:548.258133pt;}
.y11{bottom:550.450267pt;}
.y193{bottom:551.734627pt;}
.ya2{bottom:553.926547pt;}
.y148{bottom:558.160533pt;}
.y87{bottom:558.234653pt;}
.y250{bottom:560.126483pt;}
.y114{bottom:560.199400pt;}
.y289{bottom:560.956508pt;}
.y56{bottom:561.332214pt;}
.y1fd{bottom:561.857160pt;}
.y1ce{bottom:561.862907pt;}
.y12c{bottom:563.224479pt;}
.y192{bottom:569.045467pt;}
.y29{bottom:569.801467pt;}
.ya1{bottom:571.237386pt;}
.y223{bottom:572.370680pt;}
.y10{bottom:573.127467pt;}
.y288{bottom:573.656083pt;}
.y86{bottom:575.620160pt;}
.yde{bottom:576.832093pt;}
.y24f{bottom:577.436858pt;}
.y113{bottom:577.510240pt;}
.y55{bottom:578.643053pt;}
.y1fc{bottom:579.168000pt;}
.y1cd{bottom:579.173747pt;}
.y191{bottom:586.355520pt;}
.ya0{bottom:588.622894pt;}
.y222{bottom:589.681520pt;}
.y287{bottom:590.966800pt;}
.y85{bottom:592.931000pt;}
.y24e{bottom:594.746508pt;}
.y112{bottom:594.821080pt;}
.y12b{bottom:595.275087pt;}
.y54{bottom:596.028561pt;}
.y1fb{bottom:596.553507pt;}
.y1cc{bottom:596.559254pt;}
.ydd{bottom:601.549673pt;}
.y286{bottom:603.590642pt;}
.y190{bottom:603.741027pt;}
.y9f{bottom:605.933733pt;}
.y221{bottom:606.992359pt;}
.y24d{bottom:607.446083pt;}
.y84{bottom:610.241839pt;}
.y111{bottom:612.206587pt;}
.y53{bottom:613.339400pt;}
.y1fa{bottom:613.864347pt;}
.y1cb{bottom:613.870094pt;}
.y285{bottom:616.290216pt;}
.y153{bottom:618.708698pt;}
.y12a{bottom:619.918000pt;}
.ydc{bottom:620.900987pt;}
.y18f{bottom:621.051867pt;}
.y220{bottom:624.377867pt;}
.y24c{bottom:624.755601pt;}
.y83{bottom:627.627347pt;}
.y110{bottom:629.517427pt;}
.y52{bottom:630.650240pt;}
.y1f9{bottom:631.175187pt;}
.y1ca{bottom:631.180586pt;}
.y284{bottom:633.599867pt;}
.y24b{bottom:637.455175pt;}
.y152{bottom:639.345241pt;}
.ydb{bottom:642.216847pt;}
.y10e{bottom:644.636000pt;}
.y82{bottom:644.938186pt;}
.yf{bottom:646.223467pt;}
.y283{bottom:646.299308pt;}
.y10f{bottom:646.828267pt;}
.y10d{bottom:646.828493pt;}
.y21f{bottom:647.054933pt;}
.y51{bottom:647.961080pt;}
.y1f8{bottom:648.560694pt;}
.y1c9{bottom:648.566094pt;}
.y24a{bottom:650.079017pt;}
.y151{bottom:653.253333pt;}
.yb8{bottom:653.705292pt;}
.y282{bottom:658.923151pt;}
.yda{bottom:661.567707pt;}
.y10b{bottom:661.946267pt;}
.y81{bottom:662.249026pt;}
.y10a{bottom:664.211934pt;}
.y10c{bottom:664.214000pt;}
.y50{bottom:665.346587pt;}
.y1f7{bottom:665.871534pt;}
.y1c8{bottom:665.876360pt;}
.y249{bottom:667.464400pt;}
.yb7{bottom:674.341834pt;}
.y281{bottom:676.308533pt;}
.y80{bottom:679.633960pt;}
.y248{bottom:680.088351pt;}
.y147{bottom:680.617726pt;}
.y109{bottom:681.522773pt;}
.y4f{bottom:682.657427pt;}
.y1f6{bottom:683.182374pt;}
.y1c7{bottom:683.185146pt;}
.y28{bottom:683.565200pt;}
.yb6{bottom:687.041409pt;}
.y280{bottom:688.932375pt;}
.yd8{bottom:690.217067pt;}
.yd5{bottom:695.054751pt;}
.y7f{bottom:696.944800pt;}
.y247{bottom:697.473733pt;}
.y108{bottom:698.833613pt;}
.yb5{bottom:699.665251pt;}
.y4e{bottom:699.968267pt;}
.y1f5{bottom:700.493213pt;}
.y21e{bottom:700.493439pt;}
.y1c6{bottom:700.495986pt;}
.y146{bottom:701.328317pt;}
.y27f{bottom:701.631950pt;}
.ye{bottom:702.161667pt;}
.y1bb{bottom:703.216222pt;}
.yd4{bottom:704.199968pt;}
.yd9{bottom:704.201467pt;}
.yd3{bottom:706.997329pt;}
.y246{bottom:710.097708pt;}
.yb4{bottom:712.364825pt;}
.y145{bottom:713.952159pt;}
.y107{bottom:716.219120pt;}
.yd6{bottom:716.825067pt;}
.y4d{bottom:717.353560pt;}
.y1f4{bottom:717.878720pt;}
.y21d{bottom:717.878947pt;}
.y1c5{bottom:717.881493pt;}
.y27e{bottom:718.941467pt;}
.y7e{bottom:719.621867pt;}
.yd7{bottom:720.302133pt;}
.y245{bottom:722.797283pt;}
.y1ba{bottom:723.852764pt;}
.yb3{bottom:725.064400pt;}
.y144{bottom:726.651733pt;}
.yd{bottom:728.845067pt;}
.y27d{bottom:731.641042pt;}
.y106{bottom:733.529960pt;}
.y4c{bottom:734.663827pt;}
.y1f3{bottom:735.189560pt;}
.y21c{bottom:735.189786pt;}
.y1c4{bottom:735.192333pt;}
.y244{bottom:740.106933pt;}
.y1b9{bottom:740.482956pt;}
.yd2{bottom:741.467007pt;}
.yc{bottom:742.224100pt;}
.y27c{bottom:744.264884pt;}
.y104{bottom:748.648667pt;}
.y105{bottom:750.840800pt;}
.y103{bottom:750.841026pt;}
.y4b{bottom:751.974667pt;}
.y1f2{bottom:752.500400pt;}
.y21b{bottom:752.500626pt;}
.y1c3{bottom:752.503173pt;}
.y243{bottom:752.806374pt;}
.yb{bottom:755.527400pt;}
.y7d{bottom:756.055613pt;}
.y1b8{bottom:757.187814pt;}
.yd0{bottom:758.550933pt;}
.yd1{bottom:760.743200pt;}
.ycf{bottom:760.743406pt;}
.y27b{bottom:761.650133pt;}
.y242{bottom:765.430216pt;}
.y101{bottom:765.958800pt;}
.y102{bottom:768.226533pt;}
.y100{bottom:768.227012pt;}
.ya{bottom:768.831767pt;}
.y1f1{bottom:769.885907pt;}
.y21a{bottom:769.886133pt;}
.y1c2{bottom:769.888680pt;}
.y7c{bottom:773.366453pt;}
.y1b7{bottom:773.818006pt;}
.y27a{bottom:774.273975pt;}
.y4a{bottom:774.651733pt;}
.ycc{bottom:775.634400pt;}
.ycb{bottom:777.902133pt;}
.yca{bottom:780.093694pt;}
.ycd{bottom:780.094267pt;}
.y9{bottom:782.210800pt;}
.yff{bottom:782.437915pt;}
.y241{bottom:782.739734pt;}
.yce{bottom:786.065867pt;}
.y279{bottom:786.973550pt;}
.yfe{bottom:787.048492pt;}
.y1f0{bottom:787.196747pt;}
.y219{bottom:787.196973pt;}
.y1c1{bottom:787.199520pt;}
.y1b6{bottom:790.523930pt;}
.y7b{bottom:790.751960pt;}
.yc8{bottom:793.020267pt;}
.yc6{bottom:795.212400pt;}
.y240{bottom:795.439308pt;}
.yc5{bottom:797.404186pt;}
.yc7{bottom:797.404533pt;}
.yfc{bottom:802.317867pt;}
.yc9{bottom:803.376133pt;}
.y278{bottom:804.283200pt;}
.y1ef{bottom:804.507587pt;}
.y218{bottom:804.507813pt;}
.yfd{bottom:804.510000pt;}
.yfb{bottom:804.510359pt;}
.y8{bottom:806.173067pt;}
.y6{bottom:806.173600pt;}
.y1b5{bottom:807.154123pt;}
.y7a{bottom:808.062800pt;}
.y23f{bottom:808.138883pt;}
.y7{bottom:811.540000pt;}
.yc4{bottom:814.789694pt;}
.y277{bottom:816.982642pt;}
.yf9{bottom:819.628133pt;}
.y4{bottom:820.837600pt;}
.y1ee{bottom:821.893094pt;}
.yf8{bottom:821.893320pt;}
.y1c0{bottom:821.893800pt;}
.yfa{bottom:821.895867pt;}
.y1b4{bottom:823.860047pt;}
.y23e{bottom:825.448666pt;}
.y5{bottom:826.204533pt;}
.y276{bottom:829.606484pt;}
.yc2{bottom:829.908400pt;}
.y79{bottom:830.739133pt;}
.yc1{bottom:832.099960pt;}
.yc3{bottom:832.100533pt;}
.y23d{bottom:838.072508pt;}
.y1ed{bottom:839.203934pt;}
.yf7{bottom:839.204160pt;}
.y1bf{bottom:839.204640pt;}
.y1b3{bottom:840.490239pt;}
.y275{bottom:846.991867pt;}
.ybf{bottom:847.218667pt;}
.yc0{bottom:849.410800pt;}
.ybe{bottom:849.411159pt;}
.y23c{bottom:850.772083pt;}
.y3{bottom:854.172233pt;}
.y78{bottom:854.702133pt;}
.y1ec{bottom:856.514773pt;}
.yf6{bottom:856.515000pt;}
.y1be{bottom:856.515480pt;}
.y1b2{bottom:857.195097pt;}
.y274{bottom:859.615842pt;}
.y49{bottom:863.244800pt;}
.ybd{bottom:866.795747pt;}
.y23b{bottom:868.081975pt;}
.y273{bottom:872.315416pt;}
.y1b1{bottom:873.825289pt;}
.y1eb{bottom:873.900281pt;}
.yf5{bottom:873.900507pt;}
.y1bd{bottom:873.900987pt;}
.y23a{bottom:880.781550pt;}
.y48{bottom:881.915467pt;}
.ybc{bottom:884.106586pt;}
.y2{bottom:887.508400pt;}
.y272{bottom:889.625175pt;}
.y1b0{bottom:890.531214pt;}
.y1ea{bottom:891.211120pt;}
.y77{bottom:891.211347pt;}
.y1bc{bottom:891.211827pt;}
.y239{bottom:898.091200pt;}
.y47{bottom:900.510133pt;}
.ybb{bottom:901.417426pt;}
.y271{bottom:902.324750pt;}
.y1e9{bottom:908.521960pt;}
.y76{bottom:908.522186pt;}
.y1af{bottom:910.487231pt;}
.y238{bottom:910.790024pt;}
.yba{bottom:918.802933pt;}
.y46{bottom:919.180800pt;}
.y270{bottom:919.634400pt;}
.y1{bottom:920.843867pt;}
.y237{bottom:923.413867pt;}
.y75{bottom:925.833026pt;}
.y73{bottom:930.288705pt;}
.y1ae{bottom:932.257625pt;}
.yb9{bottom:941.404400pt;}
.y45{bottom:941.858000pt;}
.y74{bottom:943.218533pt;}
.y72{bottom:944.953055pt;}
.y1ad{bottom:944.957200pt;}
.y71{bottom:994.393333pt;}
.h21{height:0.000000pt;}
.h1b{height:16.874970pt;}
.h37{height:20.960280pt;}
.h22{height:22.783241pt;}
.h4{height:23.580855pt;}
.h23{height:23.999200pt;}
.h18{height:25.313024pt;}
.h1a{height:29.010432pt;}
.h34{height:30.463619pt;}
.hb{height:31.060945pt;}
.h31{height:31.444940pt;}
.h33{height:32.937741pt;}
.h32{height:32.938255pt;}
.h6{height:33.061717pt;}
.h1{height:33.066253pt;}
.h41{height:33.066785pt;}
.h43{height:33.066788pt;}
.h42{height:33.067222pt;}
.h39{height:33.067752pt;}
.h40{height:33.067755pt;}
.h2f{height:33.068720pt;}
.h5{height:33.696000pt;}
.h3{height:35.376000pt;}
.h1e{height:37.013703pt;}
.h1c{height:37.973713pt;}
.h20{height:37.974442pt;}
.h19{height:38.080381pt;}
.h9{height:39.266667pt;}
.h24{height:40.000400pt;}
.h30{height:41.403216pt;}
.h28{height:43.517398pt;}
.h27{height:43.518621pt;}
.ha{height:43.520435pt;}
.h3e{height:43.521290pt;}
.h3d{height:43.521823pt;}
.h25{height:43.521848pt;}
.h2d{height:43.521954pt;}
.h3b{height:43.522356pt;}
.h2c{height:43.522678pt;}
.hd{height:43.522728pt;}
.h35{height:43.523261pt;}
.h38{height:43.523582pt;}
.h17{height:43.524115pt;}
.h12{height:43.524649pt;}
.h36{height:43.524970pt;}
.h2e{height:43.525020pt;}
.h3f{height:43.525553pt;}
.h14{height:43.526358pt;}
.h10{height:43.526408pt;}
.hf{height:43.527262pt;}
.h3c{height:43.528650pt;}
.h15{height:43.528700pt;}
.h11{height:43.531476pt;}
.he{height:43.532914pt;}
.h2a{height:43.535206pt;}
.h16{height:43.542888pt;}
.h3a{height:43.553074pt;}
.h8{height:45.202274pt;}
.hc{height:47.167607pt;}
.h26{height:48.203149pt;}
.h29{height:48.205787pt;}
.h1d{height:48.501818pt;}
.h13{height:49.599587pt;}
.h7{height:61.524949pt;}
.h2b{height:61.962909pt;}
.h1f{height:73.302899pt;}
.h2{height:76.907051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:48.000000pt;}
.x10{left:63.496000pt;}
.xf{left:74.683467pt;}
.x1{left:266.683333pt;}
.x1e{left:273.032933pt;}
.x11{left:282.632826pt;}
.x3c{left:287.999867pt;}
.x1f{left:290.418800pt;}
.x36{left:294.047200pt;}
.x61{left:295.710133pt;}
.x37{left:301.077067pt;}
.x38{left:305.461333pt;}
.x62{left:307.199867pt;}
.x20{left:311.810933pt;}
.x3d{left:319.521200pt;}
.x39{left:321.184133pt;}
.x3a{left:325.795200pt;}
.x58{left:328.970000pt;}
.x21{left:333.203067pt;}
.x3b{left:334.639200pt;}
.x59{left:340.459733pt;}
.x22{left:345.297467pt;}
.x2{left:347.111733pt;}
.x3e{left:349.379333pt;}
.x3{left:352.100667pt;}
.x64{left:357.089600pt;}
.x3f{left:362.910133pt;}
.x63{left:364.724267pt;}
.x23{left:366.689600pt;}
.x6b{left:368.580352pt;}
.x41{left:372.660510pt;}
.x4c{left:374.248421pt;}
.xc{left:378.859733pt;}
.xd{left:383.848667pt;}
.x65{left:387.099067pt;}
.x4a{left:397.302366pt;}
.x24{left:399.873867pt;}
.x25{left:406.903867pt;}
.x26{left:411.817200pt;}
.x19{left:428.447067pt;}
.x27{left:432.982533pt;}
.x4d{left:437.970612pt;}
.x4{left:438.954267pt;}
.x5{left:443.867600pt;}
.x28{left:451.199867pt;}
.x1a{left:458.683333pt;}
.x70{left:461.780428pt;}
.x1b{left:470.399867pt;}
.x4b{left:477.657459pt;}
.x42{left:478.790400pt;}
.x4e{left:480.604533pt;}
.x43{left:482.569867pt;}
.x1c{left:490.280133pt;}
.x29{left:491.262800pt;}
.x40{left:493.832776pt;}
.x44{left:497.914800pt;}
.x1d{left:499.729067pt;}
.x45{left:501.316400pt;}
.x5a{left:506.834533pt;}
.x4f{left:511.672267pt;}
.x2a{left:514.015600pt;}
.x46{left:517.039200pt;}
.x5b{left:518.324267pt;}
.x48{left:519.684933pt;}
.x47{left:521.347867pt;}
.x6{left:526.110133pt;}
.x7{left:531.099067pt;}
.x50{left:534.122667pt;}
.x49{left:536.239200pt;}
.x6e{left:540.018800pt;}
.x6f{left:547.275467pt;}
.x2b{left:548.862933pt;}
.x12{left:562.242400pt;}
.x6c{left:563.223426pt;}
.x51{left:564.132133pt;}
.x53{left:580.308533pt;}
.x2c{left:582.122667pt;}
.x52{left:584.390400pt;}
.x2d{left:589.076933pt;}
.x8{left:595.728933pt;}
.x9{left:600.642400pt;}
.x5c{left:607.596667pt;}
.x2e{left:612.888000pt;}
.x2f{left:617.423467pt;}
.x54{left:619.086400pt;}
.x30{left:626.343200pt;}
.x5d{left:628.686400pt;}
.x57{left:629.820267pt;}
.x66{left:639.042400pt;}
.x13{left:641.763600pt;}
.x14{left:649.171467pt;}
.x31{left:655.672267pt;}
.x5e{left:657.637600pt;}
.x55{left:659.149467pt;}
.x15{left:664.365200pt;}
.x5f{left:669.127333pt;}
.x32{left:672.151067pt;}
.x16{left:676.006133pt;}
.x56{left:679.407733pt;}
.x67{left:691.502133pt;}
.x33{left:693.618667pt;}
.x68{left:706.015600pt;}
.x17{left:708.207733pt;}
.x34{left:714.103733pt;}
.x18{left:717.732133pt;}
.xa{left:721.360400pt;}
.x60{left:723.779333pt;}
.x69{left:724.686400pt;}
.xb{left:726.349333pt;}
.x6d{left:735.797604pt;}
.x35{left:746.758933pt;}
.x6a{left:754.469067pt;}
}




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