
    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_cbfcdea5cfe5865b6323ee4c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_72703a1776de48dad691f17f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_1273975ed972aa3296e71ccb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cde1b6a247c8b3eb7ae56def.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930176;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_d2cfd89f9cce2106c7a4beb6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.726074;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_73b9cc2e198bbc05f8f9917c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.092285;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_7eacc0cef37819ea27085d10.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.737000;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_00321bbd9dac19e7074bf8d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_8abb37c8bf7339de5003c132.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4bff93fa99e99abcda771d24.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.726074;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_2a8075b8263715c886ccd6b0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.092285;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_a3249d957bb5d9fb3446d8bd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8abb37c8bf7339de5003c132.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b917bdbbaad850c047c31a44.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e4b8f96d5870daba99ec2cc4.woff2')format("woff");}.fff{font-family:fff;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ec1ac5a245902bf654b74a9f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.677734;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_d35b00e56f5884be2b4b454d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.051758;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_98353fd593a9c5936a1b18ce.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.049805;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_31d86846fdbbee0c2bcef2cf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.919000;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_7533d42056a9f9cb4c2c9bb1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_b917bdbbaad850c047c31a44.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b917bdbbaad850c047c31a44.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_966c4c41ff42893e67498450.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.671387;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_6d7291d7472b882d074a0e5b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_330c18e2cbab1fea405c070b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.918457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_93c21980f0a08f84d90583cc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_74b626ab05c04deb1ef95dcb.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_8fc958946a7084e4fb1e8d26.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-15.000000px;}
.v2{vertical-align:-3.528000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.516600px;}
.v4{vertical-align:19.800000px;}
.ls13{letter-spacing:-1.287600px;}
.ls1d{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.765000px;}
.lse{letter-spacing:-0.600000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.594000px;}
.ls3{letter-spacing:0.630000px;}
.ls1e{letter-spacing:0.648000px;}
.ls1c{letter-spacing:0.810000px;}
.ls18{letter-spacing:0.888000px;}
.ls16{letter-spacing:1.150200px;}
.ls8{letter-spacing:1.380000px;}
.ls17{letter-spacing:1.473600px;}
.ls5{letter-spacing:1.890000px;}
.ls10{letter-spacing:2.268600px;}
.lsd{letter-spacing:2.340000px;}
.ls4{letter-spacing:2.394000px;}
.ls2{letter-spacing:2.550000px;}
.ls15{letter-spacing:3.247200px;}
.lsc{letter-spacing:3.744000px;}
.ls7{letter-spacing:4.032000px;}
.lsa{letter-spacing:4.800000px;}
.ls9{letter-spacing:5.040000px;}
.ls1{letter-spacing:5.522760px;}
.ls12{letter-spacing:10.784400px;}
.ls6{letter-spacing:14.269500px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-71.795880px;}
.ws18{word-spacing:-25.440000px;}
.ws8d{word-spacing:-17.628000px;}
.ws19{word-spacing:-15.900000px;}
.ws1d{word-spacing:-15.000000px;}
.ws8e{word-spacing:-14.700000px;}
.ws14f{word-spacing:-14.520000px;}
.ws74{word-spacing:-14.400000px;}
.ws1aa{word-spacing:-14.310000px;}
.ws1bb{word-spacing:-14.148000px;}
.ws133{word-spacing:-14.100000px;}
.ws15b{word-spacing:-14.094000px;}
.ws15a{word-spacing:-14.040000px;}
.ws15c{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.165671px;}
.wse3{word-spacing:-10.848000px;}
.ws1e{word-spacing:-9.492000px;}
.ws5e{word-spacing:-8.700000px;}
.ws128{word-spacing:-7.412400px;}
.ws76{word-spacing:-7.380000px;}
.ws145{word-spacing:-6.480000px;}
.ws12a{word-spacing:-6.180000px;}
.wsdd{word-spacing:-6.120000px;}
.ws6a{word-spacing:-5.760000px;}
.ws12b{word-spacing:-5.640000px;}
.wsb0{word-spacing:-5.580000px;}
.ws14{word-spacing:-5.522760px;}
.wsa5{word-spacing:-5.220000px;}
.ws81{word-spacing:-5.160000px;}
.ws13a{word-spacing:-5.100000px;}
.ws15{word-spacing:-5.040000px;}
.wsa6{word-spacing:-4.980000px;}
.ws142{word-spacing:-4.920000px;}
.ws17{word-spacing:-4.800000px;}
.ws8a{word-spacing:-4.740000px;}
.wsab{word-spacing:-4.620000px;}
.wsf3{word-spacing:-4.560000px;}
.ws102{word-spacing:-4.500000px;}
.ws148{word-spacing:-4.440000px;}
.ws146{word-spacing:-4.380000px;}
.ws9c{word-spacing:-4.320000px;}
.ws1c2{word-spacing:-4.266000px;}
.wsb8{word-spacing:-4.260000px;}
.ws14a{word-spacing:-4.200000px;}
.ws92{word-spacing:-4.140000px;}
.ws113{word-spacing:-4.080000px;}
.ws15f{word-spacing:-4.050000px;}
.wsdb{word-spacing:-4.020000px;}
.ws188{word-spacing:-3.996000px;}
.wsfa{word-spacing:-3.960000px;}
.ws15e{word-spacing:-3.942000px;}
.ws7c{word-spacing:-3.900000px;}
.ws89{word-spacing:-3.840000px;}
.ws164{word-spacing:-3.834000px;}
.ws10d{word-spacing:-3.780000px;}
.wsc4{word-spacing:-3.720000px;}
.ws96{word-spacing:-3.660000px;}
.ws1c0{word-spacing:-3.618000px;}
.ws112{word-spacing:-3.600000px;}
.ws11e{word-spacing:-3.540000px;}
.wsc5{word-spacing:-3.480000px;}
.ws1a1{word-spacing:-3.456000px;}
.wsac{word-spacing:-3.420000px;}
.ws1c7{word-spacing:-3.402000px;}
.wsc2{word-spacing:-3.360000px;}
.ws91{word-spacing:-3.300000px;}
.ws1ab{word-spacing:-3.294000px;}
.ws147{word-spacing:-3.240000px;}
.ws1ba{word-spacing:-3.186000px;}
.ws90{word-spacing:-3.180000px;}
.ws1b0{word-spacing:-3.132000px;}
.wsd1{word-spacing:-3.120000px;}
.ws177{word-spacing:-3.078000px;}
.ws31{word-spacing:-3.060000px;}
.ws3b{word-spacing:-3.024000px;}
.ws108{word-spacing:-3.000000px;}
.wse5{word-spacing:-2.940000px;}
.ws161{word-spacing:-2.916000px;}
.wsc3{word-spacing:-2.880000px;}
.ws66{word-spacing:-2.820000px;}
.ws18b{word-spacing:-2.808000px;}
.ws6d{word-spacing:-2.760000px;}
.wse7{word-spacing:-2.700000px;}
.ws30{word-spacing:-2.580000px;}
.ws1b4{word-spacing:-2.538000px;}
.ws1c{word-spacing:-2.520000px;}
.ws1c3{word-spacing:-2.484000px;}
.ws109{word-spacing:-2.460000px;}
.ws163{word-spacing:-2.430000px;}
.ws61{word-spacing:-2.400000px;}
.ws194{word-spacing:-2.376000px;}
.ws138{word-spacing:-2.340000px;}
.ws153{word-spacing:-2.322000px;}
.ws84{word-spacing:-2.280000px;}
.wsa8{word-spacing:-2.220000px;}
.ws34{word-spacing:-2.160000px;}
.ws1b7{word-spacing:-2.106000px;}
.ws100{word-spacing:-2.100000px;}
.ws1ad{word-spacing:-2.052000px;}
.ws11a{word-spacing:-2.040000px;}
.wsed{word-spacing:-2.016000px;}
.ws181{word-spacing:-1.998000px;}
.ws6f{word-spacing:-1.980000px;}
.ws186{word-spacing:-1.944000px;}
.ws35{word-spacing:-1.920000px;}
.wsd{word-spacing:-1.890000px;}
.ws127{word-spacing:-1.860000px;}
.ws1b2{word-spacing:-1.836000px;}
.wsde{word-spacing:-1.800000px;}
.ws17a{word-spacing:-1.782000px;}
.ws9b{word-spacing:-1.740000px;}
.ws38{word-spacing:-1.728000px;}
.ws78{word-spacing:-1.680000px;}
.ws154{word-spacing:-1.674000px;}
.ws77{word-spacing:-1.620000px;}
.wsbb{word-spacing:-1.560000px;}
.ws1b{word-spacing:-1.500000px;}
.ws1b1{word-spacing:-1.458000px;}
.wsca{word-spacing:-1.440000px;}
.ws162{word-spacing:-1.404000px;}
.wsb4{word-spacing:-1.380000px;}
.ws3d{word-spacing:-1.350000px;}
.ws2f{word-spacing:-1.320000px;}
.ws12e{word-spacing:-1.296000px;}
.ws29{word-spacing:-1.260000px;}
.wsfb{word-spacing:-1.242000px;}
.wsf7{word-spacing:-1.200000px;}
.ws18e{word-spacing:-1.188000px;}
.ws131{word-spacing:-1.140000px;}
.ws182{word-spacing:-1.134000px;}
.ws58{word-spacing:-1.080000px;}
.ws1bc{word-spacing:-1.026000px;}
.wsbf{word-spacing:-1.020000px;}
.ws12d{word-spacing:-0.972000px;}
.ws87{word-spacing:-0.960000px;}
.ws1ac{word-spacing:-0.918000px;}
.wse2{word-spacing:-0.900000px;}
.ws17b{word-spacing:-0.864000px;}
.ws67{word-spacing:-0.840000px;}
.ws73{word-spacing:-0.816000px;}
.ws26{word-spacing:-0.780000px;}
.ws19c{word-spacing:-0.756000px;}
.ws4b{word-spacing:-0.720000px;}
.ws1c9{word-spacing:-0.702000px;}
.ws86{word-spacing:-0.660000px;}
.ws3{word-spacing:-0.630000px;}
.ws49{word-spacing:-0.600000px;}
.ws16b{word-spacing:-0.594000px;}
.ws4e{word-spacing:-0.540000px;}
.ws1af{word-spacing:-0.486000px;}
.ws47{word-spacing:-0.480000px;}
.ws1c5{word-spacing:-0.432000px;}
.ws88{word-spacing:-0.420000px;}
.ws126{word-spacing:-0.378000px;}
.wsa2{word-spacing:-0.360000px;}
.ws132{word-spacing:-0.300000px;}
.ws1a3{word-spacing:-0.270000px;}
.ws48{word-spacing:-0.240000px;}
.ws18d{word-spacing:-0.216000px;}
.wsc8{word-spacing:-0.180000px;}
.ws1ae{word-spacing:-0.162000px;}
.ws69{word-spacing:-0.120000px;}
.ws192{word-spacing:-0.108000px;}
.ws33{word-spacing:-0.060000px;}
.ws18c{word-spacing:-0.054000px;}
.ws5f{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.wse1{word-spacing:0.060000px;}
.ws85{word-spacing:0.120000px;}
.ws193{word-spacing:0.162000px;}
.wsb2{word-spacing:0.180000px;}
.ws9{word-spacing:0.189000px;}
.ws2e{word-spacing:0.240000px;}
.ws176{word-spacing:0.270000px;}
.ws1f{word-spacing:0.288000px;}
.ws97{word-spacing:0.300000px;}
.wse8{word-spacing:0.360000px;}
.ws80{word-spacing:0.420000px;}
.ws23{word-spacing:0.480000px;}
.ws12f{word-spacing:0.486000px;}
.ws60{word-spacing:0.540000px;}
.ws1a6{word-spacing:0.594000px;}
.ws6c{word-spacing:0.600000px;}
.ws19d{word-spacing:0.648000px;}
.ws10f{word-spacing:0.660000px;}
.ws1c1{word-spacing:0.702000px;}
.wsbc{word-spacing:0.720000px;}
.ws72{word-spacing:0.780000px;}
.ws1c8{word-spacing:0.810000px;}
.ws13{word-spacing:0.819000px;}
.ws71{word-spacing:0.840000px;}
.ws185{word-spacing:0.864000px;}
.ws50{word-spacing:0.900000px;}
.wsae{word-spacing:0.960000px;}
.wse4{word-spacing:1.020000px;}
.ws1c4{word-spacing:1.026000px;}
.wsf5{word-spacing:1.080000px;}
.ws1a{word-spacing:1.104000px;}
.ws2c{word-spacing:1.140000px;}
.ws1a8{word-spacing:1.188000px;}
.ws103{word-spacing:1.200000px;}
.ws198{word-spacing:1.242000px;}
.wsb5{word-spacing:1.260000px;}
.ws19b{word-spacing:1.296000px;}
.ws42{word-spacing:1.380000px;}
.ws189{word-spacing:1.404000px;}
.ws16{word-spacing:1.440000px;}
.ws27{word-spacing:1.500000px;}
.ws160{word-spacing:1.512000px;}
.ws99{word-spacing:1.560000px;}
.ws4c{word-spacing:1.620000px;}
.ws20{word-spacing:1.656000px;}
.wsdc{word-spacing:1.680000px;}
.wsad{word-spacing:1.740000px;}
.wsa{word-spacing:1.764000px;}
.ws187{word-spacing:1.782000px;}
.ws22{word-spacing:1.794000px;}
.ws41{word-spacing:1.800000px;}
.ws46{word-spacing:1.860000px;}
.ws129{word-spacing:1.920000px;}
.ws184{word-spacing:1.944000px;}
.ws7a{word-spacing:1.980000px;}
.ws105{word-spacing:2.040000px;}
.ws191{word-spacing:2.052000px;}
.wsc7{word-spacing:2.100000px;}
.ws11d{word-spacing:2.160000px;}
.ws21{word-spacing:2.208000px;}
.wsda{word-spacing:2.220000px;}
.ws16f{word-spacing:2.268000px;}
.ws79{word-spacing:2.280000px;}
.ws120{word-spacing:2.340000px;}
.ws16d{word-spacing:2.376000px;}
.ws45{word-spacing:2.400000px;}
.ws1b6{word-spacing:2.430000px;}
.ws64{word-spacing:2.460000px;}
.ws36{word-spacing:2.484000px;}
.ws7d{word-spacing:2.520000px;}
.ws171{word-spacing:2.538000px;}
.ws8c{word-spacing:2.580000px;}
.ws19f{word-spacing:2.592000px;}
.wsb7{word-spacing:2.640000px;}
.ws1a7{word-spacing:2.646000px;}
.wsa1{word-spacing:2.700000px;}
.ws13b{word-spacing:2.760000px;}
.wsfd{word-spacing:2.820000px;}
.ws178{word-spacing:2.862000px;}
.ws63{word-spacing:2.880000px;}
.wsbd{word-spacing:2.940000px;}
.ws9f{word-spacing:3.000000px;}
.ws173{word-spacing:3.024000px;}
.wsf4{word-spacing:3.060000px;}
.ws3a{word-spacing:3.078000px;}
.ws9d{word-spacing:3.120000px;}
.wsa4{word-spacing:3.180000px;}
.ws122{word-spacing:3.186000px;}
.wsaa{word-spacing:3.240000px;}
.ws11{word-spacing:3.276000px;}
.ws24{word-spacing:3.300000px;}
.ws12{word-spacing:3.339000px;}
.ws18a{word-spacing:3.348000px;}
.ws110{word-spacing:3.360000px;}
.ws3c{word-spacing:3.456000px;}
.ws8f{word-spacing:3.480000px;}
.ws1b8{word-spacing:3.510000px;}
.ws62{word-spacing:3.540000px;}
.ws125{word-spacing:3.564000px;}
.ws98{word-spacing:3.600000px;}
.ws37{word-spacing:3.618000px;}
.ws140{word-spacing:3.660000px;}
.ws95{word-spacing:3.720000px;}
.ws1a4{word-spacing:3.726000px;}
.wsc1{word-spacing:3.780000px;}
.ws39{word-spacing:3.834000px;}
.ws7f{word-spacing:3.840000px;}
.ws104{word-spacing:3.900000px;}
.ws195{word-spacing:3.942000px;}
.ws93{word-spacing:3.960000px;}
.wsa3{word-spacing:4.020000px;}
.wsd4{word-spacing:4.080000px;}
.ws6{word-spacing:4.095000px;}
.ws17d{word-spacing:4.104000px;}
.ws119{word-spacing:4.140000px;}
.ws17f{word-spacing:4.158000px;}
.wscf{word-spacing:4.200000px;}
.ws169{word-spacing:4.212000px;}
.ws10b{word-spacing:4.260000px;}
.ws1b9{word-spacing:4.266000px;}
.ws106{word-spacing:4.320000px;}
.ws10e{word-spacing:4.380000px;}
.wsd5{word-spacing:4.440000px;}
.ws124{word-spacing:4.482000px;}
.wsc6{word-spacing:4.500000px;}
.wsb9{word-spacing:4.560000px;}
.ws167{word-spacing:4.590000px;}
.wsa9{word-spacing:4.620000px;}
.wsd0{word-spacing:4.680000px;}
.wsd9{word-spacing:4.740000px;}
.ws5a{word-spacing:4.800000px;}
.ws151{word-spacing:4.806000px;}
.wsb6{word-spacing:4.860000px;}
.ws82{word-spacing:4.920000px;}
.wsd8{word-spacing:4.980000px;}
.ws101{word-spacing:5.100000px;}
.ws114{word-spacing:5.160000px;}
.ws75{word-spacing:5.220000px;}
.ws18f{word-spacing:5.238000px;}
.ws70{word-spacing:5.280000px;}
.ws170{word-spacing:5.292000px;}
.ws9a{word-spacing:5.340000px;}
.ws4a{word-spacing:5.400000px;}
.ws1bf{word-spacing:5.454000px;}
.wse0{word-spacing:5.460000px;}
.ws19e{word-spacing:5.508000px;}
.ws28{word-spacing:5.520000px;}
.wsb3{word-spacing:5.580000px;}
.ws180{word-spacing:5.616000px;}
.ws10c{word-spacing:5.640000px;}
.wsf8{word-spacing:5.700000px;}
.ws197{word-spacing:5.724000px;}
.ws9e{word-spacing:5.760000px;}
.ws19a{word-spacing:5.778000px;}
.ws32{word-spacing:5.820000px;}
.ws55{word-spacing:5.880000px;}
.wsd2{word-spacing:5.940000px;}
.ws59{word-spacing:6.000000px;}
.ws123{word-spacing:6.048000px;}
.ws52{word-spacing:6.060000px;}
.ws1b3{word-spacing:6.102000px;}
.wsd7{word-spacing:6.120000px;}
.ws16c{word-spacing:6.156000px;}
.ws83{word-spacing:6.180000px;}
.wsaf{word-spacing:6.240000px;}
.ws4d{word-spacing:6.300000px;}
.ws130{word-spacing:6.318000px;}
.ws155{word-spacing:6.360000px;}
.ws183{word-spacing:6.372000px;}
.wsf1{word-spacing:6.420000px;}
.ws17c{word-spacing:6.426000px;}
.ws2b{word-spacing:6.480000px;}
.ws199{word-spacing:6.534000px;}
.ws65{word-spacing:6.540000px;}
.ws7b{word-spacing:6.600000px;}
.ws25{word-spacing:6.660000px;}
.ws172{word-spacing:6.696000px;}
.ws8b{word-spacing:6.720000px;}
.ws5b{word-spacing:6.780000px;}
.wsb{word-spacing:6.804000px;}
.ws144{word-spacing:6.840000px;}
.ws5c{word-spacing:6.900000px;}
.wsee{word-spacing:6.960000px;}
.ws2a{word-spacing:7.020000px;}
.wsbe{word-spacing:7.080000px;}
.ws53{word-spacing:7.140000px;}
.wsce{word-spacing:7.200000px;}
.wsef{word-spacing:7.260000px;}
.ws1b5{word-spacing:7.290000px;}
.ws6e{word-spacing:7.320000px;}
.ws12c{word-spacing:7.380000px;}
.ws13d{word-spacing:7.440000px;}
.wse6{word-spacing:7.500000px;}
.ws3f{word-spacing:7.560000px;}
.wsea{word-spacing:7.680000px;}
.ws107{word-spacing:7.740000px;}
.ws1bd{word-spacing:7.776000px;}
.wsba{word-spacing:7.800000px;}
.wsd6{word-spacing:7.860000px;}
.ws1c6{word-spacing:7.884000px;}
.ws4f{word-spacing:7.920000px;}
.wsff{word-spacing:7.980000px;}
.ws51{word-spacing:8.040000px;}
.ws1a2{word-spacing:8.046000px;}
.ws7{word-spacing:8.064000px;}
.ws14e{word-spacing:8.160000px;}
.ws94{word-spacing:8.220000px;}
.wscb{word-spacing:8.280000px;}
.ws56{word-spacing:8.340000px;}
.wseb{word-spacing:8.400000px;}
.ws116{word-spacing:8.460000px;}
.ws5{word-spacing:8.505000px;}
.ws136{word-spacing:8.580000px;}
.ws134{word-spacing:8.700000px;}
.ws168{word-spacing:8.748000px;}
.ws13c{word-spacing:8.760000px;}
.ws17e{word-spacing:8.802000px;}
.ws139{word-spacing:8.820000px;}
.wsec{word-spacing:8.880000px;}
.ws165{word-spacing:8.910000px;}
.wscc{word-spacing:8.940000px;}
.wsdf{word-spacing:9.060000px;}
.ws1a5{word-spacing:9.072000px;}
.ws135{word-spacing:9.120000px;}
.ws14d{word-spacing:9.300000px;}
.ws157{word-spacing:9.420000px;}
.ws10a{word-spacing:9.480000px;}
.wscd{word-spacing:9.540000px;}
.ws68{word-spacing:9.600000px;}
.wsc9{word-spacing:9.660000px;}
.wsc{word-spacing:9.702000px;}
.wsc0{word-spacing:9.720000px;}
.ws159{word-spacing:9.780000px;}
.wsa0{word-spacing:9.840000px;}
.ws7e{word-spacing:9.900000px;}
.ws16a{word-spacing:9.936000px;}
.ws10{word-spacing:9.954000px;}
.ws11f{word-spacing:9.960000px;}
.ws121{word-spacing:10.044000px;}
.ws4{word-spacing:10.080000px;}
.ws14b{word-spacing:10.140000px;}
.ws152{word-spacing:10.206000px;}
.ws1be{word-spacing:10.260000px;}
.ws13e{word-spacing:10.380000px;}
.ws14c{word-spacing:10.416000px;}
.wsfc{word-spacing:10.560000px;}
.ws6b{word-spacing:10.800000px;}
.ws158{word-spacing:10.980000px;}
.ws11b{word-spacing:11.100000px;}
.wse9{word-spacing:11.160000px;}
.ws166{word-spacing:11.286000px;}
.wsf2{word-spacing:11.460000px;}
.ws5d{word-spacing:11.520000px;}
.ws40{word-spacing:11.580000px;}
.ws2d{word-spacing:11.640000px;}
.ws118{word-spacing:11.820000px;}
.ws137{word-spacing:11.880000px;}
.ws149{word-spacing:11.940000px;}
.wse{word-spacing:12.096000px;}
.ws115{word-spacing:12.120000px;}
.ws44{word-spacing:12.240000px;}
.ws13f{word-spacing:12.300000px;}
.wsf{word-spacing:12.348000px;}
.wsf9{word-spacing:12.360000px;}
.wsd3{word-spacing:12.600000px;}
.wsa7{word-spacing:12.960000px;}
.ws1a9{word-spacing:13.014000px;}
.ws117{word-spacing:13.080000px;}
.ws150{word-spacing:13.140000px;}
.ws174{word-spacing:13.230000px;}
.ws43{word-spacing:13.500000px;}
.wsf0{word-spacing:13.560000px;}
.ws3e{word-spacing:13.740000px;}
.ws190{word-spacing:14.148000px;}
.wsfe{word-spacing:14.160000px;}
.ws143{word-spacing:14.400000px;}
.ws111{word-spacing:14.700000px;}
.ws11c{word-spacing:15.480000px;}
.ws175{word-spacing:15.930000px;}
.ws54{word-spacing:16.200000px;}
.ws15d{word-spacing:16.470000px;}
.ws156{word-spacing:16.920000px;}
.ws8{word-spacing:17.010000px;}
.ws1a0{word-spacing:17.118000px;}
.wsf6{word-spacing:17.700000px;}
.ws16e{word-spacing:17.874000px;}
.wsb1{word-spacing:17.940000px;}
.ws57{word-spacing:18.060000px;}
.ws179{word-spacing:20.250000px;}
.ws141{word-spacing:25.680000px;}
.ws196{word-spacing:27.648000px;}
._1b{margin-left:-1870.858800px;}
._d{margin-left:-496.260000px;}
._18{margin-left:-317.160000px;}
._16{margin-left:-299.880000px;}
._f{margin-left:-260.208000px;}
._28{margin-left:-24.540000px;}
._2e{margin-left:-22.554000px;}
._25{margin-left:-21.078032px;}
._24{margin-left:-19.913400px;}
._1a{margin-left:-17.880000px;}
._26{margin-left:-15.180000px;}
._27{margin-left:-12.540000px;}
._1f{margin-left:-10.836300px;}
._10{margin-left:-7.046400px;}
._1c{margin-left:-6.012300px;}
._a{margin-left:-4.942870px;}
._9{margin-left:-3.396497px;}
._c{margin-left:-1.883700px;}
._5{width:1.479954px;}
._8{width:3.196701px;}
._23{width:4.507200px;}
._3{width:5.860618px;}
._6{width:6.926185px;}
._22{width:8.448000px;}
._b{width:10.395000px;}
._2{width:12.017226px;}
._20{width:13.804800px;}
._21{width:14.943900px;}
._1e{width:16.872000px;}
._29{width:18.187200px;}
._2d{width:19.824354px;}
._4{width:21.044946px;}
._1{width:25.396011px;}
._2c{width:28.093800px;}
._2b{width:29.121600px;}
._7{width:40.550740px;}
._2a{width:42.512400px;}
._1d{width:66.864000px;}
._14{width:147.213970px;}
._15{width:436.320000px;}
._13{width:580.260000px;}
._0{width:736.281343px;}
._12{width:1040.400000px;}
._11{width:1083.600000px;}
._19{width:1762.005600px;}
._17{width:1779.285600px;}
._e{width:4294.839600px;}
.fc7{color:rgb(68,65,65);}
.fc6{color:transparent;}
.fc2{color:rgb(65,160,17);}
.fc5{color:rgb(79,76,77);}
.fc4{color:rgb(90,87,88);}
.fc1{color:rgb(255,101,0);}
.fc8{color:rgb(100,100,100);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.599080px;}
.fs3{font-size:33.827520px;}
.fs16{font-size:34.800000px;}
.fsf{font-size:36.000000px;}
.fs6{font-size:37.210272px;}
.fs7{font-size:38.055960px;}
.fs11{font-size:42.000000px;}
.fs2{font-size:42.284400px;}
.fs1{font-size:46.512840px;}
.fs5{font-size:47.358528px;}
.fs12{font-size:48.000000px;}
.fs10{font-size:51.000000px;}
.fs15{font-size:54.000000px;}
.fs0{font-size:59.198160px;}
.fse{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fsc{font-size:69.000000px;}
.fsd{font-size:72.000000px;}
.fs14{font-size:78.000000px;}
.fs13{font-size:96.000000px;}
.fs9{font-size:102.000000px;}
.fs8{font-size:276.138000px;}
.y73{bottom:-25.015500px;}
.y31{bottom:-22.507500px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.267570px;}
.y5d{bottom:1.240500px;}
.y2f{bottom:25.179900px;}
.yc4{bottom:25.687200px;}
.y5e{bottom:25.753800px;}
.y74{bottom:26.927700px;}
.y97{bottom:31.246200px;}
.y1c{bottom:45.085742px;}
.y5c{bottom:49.424850px;}
.yd4{bottom:56.516100px;}
.y1b{bottom:57.073369px;}
.yfa{bottom:60.536850px;}
.y172{bottom:63.817950px;}
.y5b{bottom:65.171100px;}
.y1cf{bottom:66.265800px;}
.y13b{bottom:68.211150px;}
.yc3{bottom:68.225850px;}
.y1a0{bottom:68.572050px;}
.y1a{bottom:69.060996px;}
.y164{bottom:69.784950px;}
.yd3{bottom:70.916100px;}
.yf9{bottom:78.536850px;}
.y19{bottom:81.048624px;}
.y171{bottom:81.817950px;}
.y1ce{bottom:82.765800px;}
.y19f{bottom:85.072050px;}
.yd2{bottom:85.316100px;}
.y13a{bottom:86.211150px;}
.yc2{bottom:86.225850px;}
.y163{bottom:87.784950px;}
.y18{bottom:91.292020px;}
.yf8{bottom:96.536850px;}
.y5a{bottom:96.676350px;}
.y96{bottom:97.827450px;}
.y1cd{bottom:99.265800px;}
.yd1{bottom:99.716100px;}
.y170{bottom:99.817950px;}
.y19e{bottom:101.572050px;}
.y139{bottom:104.211150px;}
.yc1{bottom:104.225850px;}
.y17{bottom:110.700559px;}
.y59{bottom:112.422600px;}
.y95{bottom:114.027450px;}
.yd0{bottom:114.116100px;}
.yf7{bottom:114.536850px;}
.y162{bottom:114.714000px;}
.y1cc{bottom:115.765800px;}
.y16f{bottom:117.817950px;}
.y19d{bottom:118.072050px;}
.y138{bottom:122.211150px;}
.yc0{bottom:122.225850px;}
.y58{bottom:128.168850px;}
.ycf{bottom:128.516100px;}
.y94{bottom:130.227450px;}
.y1cb{bottom:132.265800px;}
.yf6{bottom:132.536850px;}
.y15e{bottom:134.017950px;}
.y19c{bottom:134.572050px;}
.y16e{bottom:135.817950px;}
.y161{bottom:137.214000px;}
.y137{bottom:140.211150px;}
.ybf{bottom:140.225850px;}
.y150{bottom:141.877050px;}
.yce{bottom:142.916100px;}
.y57{bottom:143.915100px;}
.y105{bottom:145.524150px;}
.y93{bottom:146.427450px;}
.y1ca{bottom:148.765800px;}
.yf5{bottom:150.536850px;}
.y19b{bottom:151.072050px;}
.y15d{bottom:152.017950px;}
.y16d{bottom:153.817950px;}
.ycd{bottom:157.316100px;}
.y136{bottom:158.211150px;}
.ybe{bottom:158.225850px;}
.y56{bottom:159.661350px;}
.y160{bottom:159.714000px;}
.y14f{bottom:159.877050px;}
.y104{bottom:159.924150px;}
.y92{bottom:162.627450px;}
.y1c9{bottom:165.265800px;}
.y16{bottom:167.086807px;}
.y19a{bottom:167.572050px;}
.yf4{bottom:168.536850px;}
.y15c{bottom:170.017950px;}
.ycc{bottom:171.716100px;}
.y16c{bottom:171.817950px;}
.y103{bottom:174.324150px;}
.y55{bottom:175.407600px;}
.y15{bottom:176.072242px;}
.y135{bottom:176.211150px;}
.ybd{bottom:176.225850px;}
.y14e{bottom:177.877050px;}
.y91{bottom:178.827450px;}
.y1c8{bottom:181.765800px;}
.y15f{bottom:182.214000px;}
.y199{bottom:184.072050px;}
.y14{bottom:184.317700px;}
.ycb{bottom:186.116100px;}
.yf3{bottom:186.536850px;}
.y15b{bottom:188.017950px;}
.y102{bottom:188.724150px;}
.y54{bottom:191.153850px;}
.y13{bottom:191.802038px;}
.y134{bottom:194.211150px;}
.ybc{bottom:194.225850px;}
.y90{bottom:195.027450px;}
.y14d{bottom:195.877050px;}
.y1c7{bottom:198.265800px;}
.y16b{bottom:198.321900px;}
.y12{bottom:199.296948px;}
.yca{bottom:200.516100px;}
.y198{bottom:200.572050px;}
.y101{bottom:203.124150px;}
.yf2{bottom:204.536850px;}
.y15a{bottom:206.017950px;}
.y11{bottom:206.791858px;}
.y8f{bottom:211.227450px;}
.y133{bottom:212.211150px;}
.ybb{bottom:212.225850px;}
.y14c{bottom:213.877050px;}
.y10{bottom:214.276197px;}
.y16a{bottom:214.521900px;}
.y1c6{bottom:214.765800px;}
.yc9{bottom:214.916100px;}
.y197{bottom:217.072050px;}
.y100{bottom:217.524150px;}
.yf{bottom:221.771107px;}
.yf1{bottom:222.536850px;}
.y53{bottom:222.659100px;}
.y159{bottom:224.017950px;}
.yc8{bottom:229.316100px;}
.y132{bottom:230.211150px;}
.yba{bottom:230.225850px;}
.y169{bottom:230.721900px;}
.y1c5{bottom:231.265800px;}
.y14b{bottom:231.877050px;}
.yff{bottom:231.924150px;}
.y196{bottom:233.572050px;}
.y8e{bottom:235.931400px;}
.ye{bottom:237.183771px;}
.y52{bottom:238.405350px;}
.yf0{bottom:240.536850px;}
.y158{bottom:242.017950px;}
.yc7{bottom:243.716100px;}
.yfe{bottom:246.324150px;}
.y168{bottom:246.921900px;}
.y1c4{bottom:247.765800px;}
.y131{bottom:248.211150px;}
.yb9{bottom:248.225850px;}
.y195{bottom:250.072050px;}
.y8d{bottom:253.931400px;}
.y51{bottom:254.151600px;}
.y118{bottom:254.270250px;}
.yc6{bottom:258.116100px;}
.y14a{bottom:258.381000px;}
.yef{bottom:258.536850px;}
.y157{bottom:260.017950px;}
.yfd{bottom:260.724150px;}
.y167{bottom:263.121900px;}
.y1c3{bottom:264.265800px;}
.y130{bottom:266.211150px;}
.yb8{bottom:266.225850px;}
.y194{bottom:266.572050px;}
.y50{bottom:269.897850px;}
.y8c{bottom:271.931400px;}
.y117{bottom:272.270250px;}
.yc5{bottom:272.516100px;}
.y149{bottom:274.581000px;}
.yfc{bottom:275.124150px;}
.yee{bottom:276.536850px;}
.y166{bottom:279.321900px;}
.y1c2{bottom:280.765800px;}
.y193{bottom:283.072050px;}
.y12f{bottom:284.211150px;}
.yb7{bottom:284.225850px;}
.y156{bottom:286.521900px;}
.y2d{bottom:287.234250px;}
.yfb{bottom:289.524150px;}
.y8b{bottom:289.931400px;}
.y116{bottom:290.270250px;}
.y148{bottom:290.781000px;}
.yed{bottom:294.536850px;}
.y165{bottom:295.521900px;}
.y1c1{bottom:297.265800px;}
.y192{bottom:299.572050px;}
.y4f{bottom:301.403100px;}
.y12e{bottom:302.211150px;}
.yb6{bottom:302.225850px;}
.y155{bottom:302.721900px;}
.y147{bottom:306.981000px;}
.y8a{bottom:307.931400px;}
.y115{bottom:308.270250px;}
.yec{bottom:312.536850px;}
.y1c0{bottom:313.765800px;}
.y2c{bottom:314.690850px;}
.y191{bottom:316.072050px;}
.y4e{bottom:317.149350px;}
.y154{bottom:318.921900px;}
.y12d{bottom:320.211150px;}
.yb5{bottom:320.225850px;}
.y146{bottom:323.181000px;}
.y89{bottom:325.931400px;}
.y114{bottom:326.270250px;}
.y1bf{bottom:330.265800px;}
.yeb{bottom:330.536850px;}
.y190{bottom:332.572050px;}
.y4d{bottom:332.895600px;}
.y153{bottom:335.121900px;}
.y12c{bottom:338.211150px;}
.yb4{bottom:338.225850px;}
.y145{bottom:339.381000px;}
.y2b{bottom:341.686350px;}
.y88{bottom:343.931400px;}
.y113{bottom:344.270250px;}
.y1be{bottom:346.765800px;}
.yea{bottom:348.536850px;}
.y4c{bottom:348.641850px;}
.y18f{bottom:349.072050px;}
.y152{bottom:351.321900px;}
.y144{bottom:355.581000px;}
.yd{bottom:356.098075px;}
.y12b{bottom:356.211150px;}
.yb3{bottom:356.225850px;}
.y30{bottom:357.560700px;}
.y72{bottom:358.122300px;}
.y87{bottom:361.931400px;}
.y112{bottom:362.270250px;}
.y1bd{bottom:363.265800px;}
.y18e{bottom:365.572050px;}
.ye9{bottom:366.536850px;}
.y151{bottom:367.521900px;}
.y2a{bottom:368.681850px;}
.y12a{bottom:374.211150px;}
.yb2{bottom:374.225850px;}
.y71{bottom:376.122300px;}
.y1bc{bottom:379.765800px;}
.y86{bottom:379.931400px;}
.y4b{bottom:380.147100px;}
.y111{bottom:380.270250px;}
.y143{bottom:380.284950px;}
.y18d{bottom:382.072050px;}
.ye8{bottom:384.536850px;}
.y129{bottom:392.211150px;}
.yb1{bottom:392.225850px;}
.y70{bottom:394.122300px;}
.y29{bottom:395.677350px;}
.y4a{bottom:395.893350px;}
.y1bb{bottom:396.265800px;}
.y85{bottom:397.931400px;}
.y142{bottom:398.284950px;}
.y18c{bottom:398.572050px;}
.ye7{bottom:402.536850px;}
.y110{bottom:407.199300px;}
.y128{bottom:410.211150px;}
.yb0{bottom:410.225850px;}
.y49{bottom:411.639600px;}
.y1ba{bottom:412.765800px;}
.y18b{bottom:415.072050px;}
.y84{bottom:415.931400px;}
.y141{bottom:416.284950px;}
.ye6{bottom:420.536850px;}
.y28{bottom:422.672850px;}
.y48{bottom:427.385850px;}
.y127{bottom:428.211150px;}
.yaf{bottom:428.225850px;}
.y1b9{bottom:429.265800px;}
.y10f{bottom:429.699300px;}
.y6f{bottom:430.122300px;}
.y18a{bottom:431.572050px;}
.y83{bottom:433.931400px;}
.y140{bottom:434.284950px;}
.ye5{bottom:438.536850px;}
.y47{bottom:443.132100px;}
.y1b8{bottom:445.765800px;}
.y126{bottom:446.211150px;}
.yae{bottom:446.225850px;}
.y189{bottom:448.072050px;}
.y6e{bottom:448.122300px;}
.y27{bottom:449.668350px;}
.y82{bottom:451.931250px;}
.y13f{bottom:452.284950px;}
.ye4{bottom:456.536850px;}
.y46{bottom:458.878350px;}
.y1b7{bottom:462.265800px;}
.y125{bottom:464.211150px;}
.yad{bottom:464.225850px;}
.y188{bottom:464.572050px;}
.y6d{bottom:466.122300px;}
.y81{bottom:469.931250px;}
.ye3{bottom:474.536850px;}
.y45{bottom:474.624600px;}
.y26{bottom:476.663850px;}
.y1b6{bottom:478.765800px;}
.y13e{bottom:479.214000px;}
.y187{bottom:481.072050px;}
.y124{bottom:482.211150px;}
.yac{bottom:482.225850px;}
.y119{bottom:484.117950px;}
.y80{bottom:487.931250px;}
.y44{bottom:490.370850px;}
.ye2{bottom:492.536850px;}
.y1b5{bottom:495.265800px;}
.y186{bottom:497.572050px;}
.y123{bottom:500.211150px;}
.yab{bottom:500.225850px;}
.y13d{bottom:501.714000px;}
.y6c{bottom:502.122300px;}
.y25{bottom:503.659350px;}
.y7f{bottom:505.931250px;}
.y43{bottom:506.117100px;}
.ye1{bottom:510.536850px;}
.y1b4{bottom:511.765800px;}
.y185{bottom:514.072050px;}
.yc{bottom:515.224843px;}
.y122{bottom:518.211150px;}
.yaa{bottom:518.225850px;}
.y6b{bottom:520.122300px;}
.y42{bottom:521.863350px;}
.y7e{bottom:523.931250px;}
.y13c{bottom:524.214000px;}
.y1b3{bottom:528.265800px;}
.ye0{bottom:528.536850px;}
.y184{bottom:530.572050px;}
.y24{bottom:530.654850px;}
.y121{bottom:536.211150px;}
.ya9{bottom:536.225850px;}
.y6a{bottom:538.122300px;}
.yb{bottom:538.333268px;}
.y7d{bottom:541.931250px;}
.y1b2{bottom:544.765800px;}
.ydf{bottom:546.536850px;}
.y183{bottom:547.072050px;}
.ya{bottom:550.320895px;}
.y41{bottom:553.368600px;}
.y120{bottom:554.211150px;}
.ya8{bottom:554.225850px;}
.y69{bottom:556.122300px;}
.y23{bottom:557.650350px;}
.y7c{bottom:559.931250px;}
.y1b1{bottom:561.265800px;}
.y182{bottom:563.572050px;}
.yde{bottom:564.536850px;}
.y40{bottom:569.114850px;}
.y11f{bottom:572.211150px;}
.ya7{bottom:572.225850px;}
.y9{bottom:573.661884px;}
.y1b0{bottom:577.765800px;}
.y7b{bottom:577.931250px;}
.y181{bottom:580.072050px;}
.ydd{bottom:582.536850px;}
.y22{bottom:584.645850px;}
.y3f{bottom:584.861100px;}
.y8{bottom:585.649511px;}
.y11e{bottom:590.211150px;}
.ya6{bottom:590.225850px;}
.y68{bottom:592.122300px;}
.y1af{bottom:594.265800px;}
.y180{bottom:596.572050px;}
.y7{bottom:597.637138px;}
.ydc{bottom:600.536850px;}
.y3e{bottom:600.607350px;}
.y7a{bottom:604.860450px;}
.y11d{bottom:608.211150px;}
.ya5{bottom:608.225850px;}
.y6{bottom:609.624766px;}
.y67{bottom:610.122300px;}
.y1ae{bottom:610.765800px;}
.y21{bottom:611.641350px;}
.y17f{bottom:613.072050px;}
.y3d{bottom:616.353600px;}
.ydb{bottom:618.536850px;}
.y11c{bottom:626.211150px;}
.ya4{bottom:626.225850px;}
.y1ad{bottom:627.265800px;}
.y79{bottom:627.360450px;}
.y66{bottom:628.122300px;}
.y17e{bottom:629.572050px;}
.y3c{bottom:632.099850px;}
.yda{bottom:636.536850px;}
.y20{bottom:638.636850px;}
.y1ac{bottom:643.765800px;}
.y11b{bottom:644.211150px;}
.ya3{bottom:644.225850px;}
.y17d{bottom:646.072050px;}
.yd9{bottom:654.536850px;}
.y1ab{bottom:660.265800px;}
.y11a{bottom:662.211150px;}
.ya2{bottom:662.225850px;}
.y17c{bottom:662.572050px;}
.y3b{bottom:663.605100px;}
.y65{bottom:664.122300px;}
.y5{bottom:665.482458px;}
.yd8{bottom:672.536850px;}
.y1aa{bottom:676.765800px;}
.y17b{bottom:679.072050px;}
.y3a{bottom:679.351350px;}
.y10e{bottom:680.211150px;}
.ya1{bottom:680.225850px;}
.y64{bottom:682.122300px;}
.y4{bottom:683.263049px;}
.y78{bottom:683.876250px;}
.y1a9{bottom:693.265800px;}
.y39{bottom:695.097600px;}
.y17a{bottom:695.572050px;}
.y10d{bottom:698.211150px;}
.ya0{bottom:698.225850px;}
.yd7{bottom:699.466050px;}
.y63{bottom:700.122300px;}
.y3{bottom:704.236111px;}
.y1a8{bottom:709.765800px;}
.y77{bottom:710.126250px;}
.y179{bottom:712.072050px;}
.y10c{bottom:716.211150px;}
.y9f{bottom:716.225850px;}
.y62{bottom:718.122300px;}
.y2e{bottom:719.100750px;}
.yd6{bottom:721.966050px;}
.y2{bottom:725.219744px;}
.y1a7{bottom:726.265800px;}
.y38{bottom:726.602850px;}
.y178{bottom:728.572050px;}
.y10b{bottom:734.211150px;}
.y9e{bottom:734.225850px;}
.y61{bottom:736.122300px;}
.y76{bottom:736.376250px;}
.y37{bottom:742.349100px;}
.y1a6{bottom:742.765800px;}
.yd5{bottom:744.466050px;}
.y177{bottom:745.072050px;}
.y10a{bottom:752.211150px;}
.y9d{bottom:752.225850px;}
.y36{bottom:758.095350px;}
.y1a5{bottom:759.265800px;}
.y176{bottom:761.572050px;}
.y109{bottom:770.211150px;}
.y9c{bottom:770.225850px;}
.y1a4{bottom:775.765800px;}
.y175{bottom:778.072050px;}
.y75{bottom:780.626250px;}
.y108{bottom:788.211150px;}
.y9b{bottom:788.225850px;}
.y35{bottom:789.600600px;}
.y1a3{bottom:792.265800px;}
.y174{bottom:794.572050px;}
.y34{bottom:805.346850px;}
.y107{bottom:806.211150px;}
.y9a{bottom:806.225850px;}
.y1a2{bottom:808.765800px;}
.y1f{bottom:811.244100px;}
.y60{bottom:816.626250px;}
.y173{bottom:820.001250px;}
.y33{bottom:821.093100px;}
.y106{bottom:824.211150px;}
.y99{bottom:824.225850px;}
.y1a1{bottom:825.265800px;}
.y32{bottom:836.839350px;}
.y1e{bottom:845.745600px;}
.y5f{bottom:855.602550px;}
.y98{bottom:855.602700px;}
.y1d{bottom:866.543700px;}
.h9{height:21.932918px;}
.h7{height:25.066192px;}
.h8{height:25.133847px;}
.h15{height:25.910156px;}
.hc{height:28.199466px;}
.h22{height:28.584000px;}
.h6{height:31.332740px;}
.ha{height:31.417309px;}
.h1c{height:33.304688px;}
.h5{height:34.466014px;}
.hb{height:35.092669px;}
.h16{height:36.432129px;}
.h18{height:36.706055px;}
.h2a{height:37.942383px;}
.h1d{height:38.062500px;}
.h29{height:42.820312px;}
.h3{height:43.865837px;}
.h4{height:43.984233px;}
.h17{height:44.774414px;}
.h27{height:45.035156px;}
.h28{height:45.140625px;}
.h1f{height:47.578125px;}
.h13{height:47.784000px;}
.h14{height:49.627441px;}
.h21{height:50.039062px;}
.h20{height:50.156250px;}
.h11{height:55.309570px;}
.h23{height:57.093750px;}
.h26{height:57.544922px;}
.h25{height:61.851562px;}
.h1e{height:63.984375px;}
.h12{height:70.826170px;}
.h10{height:73.362305px;}
.h24{height:76.125000px;}
.hf{height:198.609021px;}
.h2{height:889.970338px;}
.h1{height:890.250000px;}
.h0{height:890.505000px;}
.hd{height:892.897500px;}
.h1b{height:892.914000px;}
.he{height:893.250000px;}
.h19{height:895.393500px;}
.h1a{height:895.500000px;}
.w1{width:629.250000px;}
.w3{width:629.275500px;}
.w2{width:629.276441px;}
.w0{width:629.280000px;}
.w6{width:629.290500px;}
.w5{width:631.500000px;}
.w4{width:631.771500px;}
.xb{left:-640.491150px;}
.xa{left:-8.790750px;}
.x0{left:0.000000px;}
.xf{left:1.240500px;}
.xe{left:14.992350px;}
.x12{left:16.240350px;}
.x3{left:32.960690px;}
.x1{left:38.954504px;}
.xd{left:43.089900px;}
.xc{left:44.224650px;}
.x7{left:66.864900px;}
.x6{left:68.430450px;}
.x19{left:76.535400px;}
.x13{left:77.775900px;}
.x11{left:86.748600px;}
.x14{left:91.699650px;}
.x15{left:103.287600px;}
.x2{left:104.875883px;}
.x18{left:111.791550px;}
.x1f{left:123.531150px;}
.x22{left:127.266450px;}
.x23{left:135.607350px;}
.x1e{left:138.824250px;}
.x24{left:187.678500px;}
.x20{left:200.539050px;}
.x1c{left:271.420050px;}
.x1b{left:306.721050px;}
.x4{left:308.644407px;}
.x1d{left:312.768450px;}
.x21{left:314.606100px;}
.x10{left:360.833850px;}
.x16{left:380.307150px;}
.x9{left:469.252350px;}
.x1a{left:471.822450px;}
.x17{left:541.832250px;}
.x8{left:554.519400px;}
.x5{left:577.642050px;}
@media print{
.v3{vertical-align:-13.333333pt;}
.v2{vertical-align:-3.136000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.792533pt;}
.v4{vertical-align:17.600000pt;}
.ls13{letter-spacing:-1.144533pt;}
.ls1d{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.680000pt;}
.lse{letter-spacing:-0.533333pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.528000pt;}
.ls3{letter-spacing:0.560000pt;}
.ls1e{letter-spacing:0.576000pt;}
.ls1c{letter-spacing:0.720000pt;}
.ls18{letter-spacing:0.789333pt;}
.ls16{letter-spacing:1.022400pt;}
.ls8{letter-spacing:1.226667pt;}
.ls17{letter-spacing:1.309867pt;}
.ls5{letter-spacing:1.680000pt;}
.ls10{letter-spacing:2.016533pt;}
.lsd{letter-spacing:2.080000pt;}
.ls4{letter-spacing:2.128000pt;}
.ls2{letter-spacing:2.266667pt;}
.ls15{letter-spacing:2.886400pt;}
.lsc{letter-spacing:3.328000pt;}
.ls7{letter-spacing:3.584000pt;}
.lsa{letter-spacing:4.266667pt;}
.ls9{letter-spacing:4.480000pt;}
.ls1{letter-spacing:4.909120pt;}
.ls12{letter-spacing:9.586133pt;}
.ls6{letter-spacing:12.684000pt;}
.ws2{word-spacing:-63.818560pt;}
.ws18{word-spacing:-22.613333pt;}
.ws8d{word-spacing:-15.669333pt;}
.ws19{word-spacing:-14.133333pt;}
.ws1d{word-spacing:-13.333333pt;}
.ws8e{word-spacing:-13.066667pt;}
.ws14f{word-spacing:-12.906667pt;}
.ws74{word-spacing:-12.800000pt;}
.ws1aa{word-spacing:-12.720000pt;}
.ws1bb{word-spacing:-12.576000pt;}
.ws133{word-spacing:-12.533333pt;}
.ws15b{word-spacing:-12.528000pt;}
.ws15a{word-spacing:-12.480000pt;}
.ws15c{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.702818pt;}
.wse3{word-spacing:-9.642667pt;}
.ws1e{word-spacing:-8.437333pt;}
.ws5e{word-spacing:-7.733333pt;}
.ws128{word-spacing:-6.588800pt;}
.ws76{word-spacing:-6.560000pt;}
.ws145{word-spacing:-5.760000pt;}
.ws12a{word-spacing:-5.493333pt;}
.wsdd{word-spacing:-5.440000pt;}
.ws6a{word-spacing:-5.120000pt;}
.ws12b{word-spacing:-5.013333pt;}
.wsb0{word-spacing:-4.960000pt;}
.ws14{word-spacing:-4.909120pt;}
.wsa5{word-spacing:-4.640000pt;}
.ws81{word-spacing:-4.586667pt;}
.ws13a{word-spacing:-4.533333pt;}
.ws15{word-spacing:-4.480000pt;}
.wsa6{word-spacing:-4.426667pt;}
.ws142{word-spacing:-4.373333pt;}
.ws17{word-spacing:-4.266667pt;}
.ws8a{word-spacing:-4.213333pt;}
.wsab{word-spacing:-4.106667pt;}
.wsf3{word-spacing:-4.053333pt;}
.ws102{word-spacing:-4.000000pt;}
.ws148{word-spacing:-3.946667pt;}
.ws146{word-spacing:-3.893333pt;}
.ws9c{word-spacing:-3.840000pt;}
.ws1c2{word-spacing:-3.792000pt;}
.wsb8{word-spacing:-3.786667pt;}
.ws14a{word-spacing:-3.733333pt;}
.ws92{word-spacing:-3.680000pt;}
.ws113{word-spacing:-3.626667pt;}
.ws15f{word-spacing:-3.600000pt;}
.wsdb{word-spacing:-3.573333pt;}
.ws188{word-spacing:-3.552000pt;}
.wsfa{word-spacing:-3.520000pt;}
.ws15e{word-spacing:-3.504000pt;}
.ws7c{word-spacing:-3.466667pt;}
.ws89{word-spacing:-3.413333pt;}
.ws164{word-spacing:-3.408000pt;}
.ws10d{word-spacing:-3.360000pt;}
.wsc4{word-spacing:-3.306667pt;}
.ws96{word-spacing:-3.253333pt;}
.ws1c0{word-spacing:-3.216000pt;}
.ws112{word-spacing:-3.200000pt;}
.ws11e{word-spacing:-3.146667pt;}
.wsc5{word-spacing:-3.093333pt;}
.ws1a1{word-spacing:-3.072000pt;}
.wsac{word-spacing:-3.040000pt;}
.ws1c7{word-spacing:-3.024000pt;}
.wsc2{word-spacing:-2.986667pt;}
.ws91{word-spacing:-2.933333pt;}
.ws1ab{word-spacing:-2.928000pt;}
.ws147{word-spacing:-2.880000pt;}
.ws1ba{word-spacing:-2.832000pt;}
.ws90{word-spacing:-2.826667pt;}
.ws1b0{word-spacing:-2.784000pt;}
.wsd1{word-spacing:-2.773333pt;}
.ws177{word-spacing:-2.736000pt;}
.ws31{word-spacing:-2.720000pt;}
.ws3b{word-spacing:-2.688000pt;}
.ws108{word-spacing:-2.666667pt;}
.wse5{word-spacing:-2.613333pt;}
.ws161{word-spacing:-2.592000pt;}
.wsc3{word-spacing:-2.560000pt;}
.ws66{word-spacing:-2.506667pt;}
.ws18b{word-spacing:-2.496000pt;}
.ws6d{word-spacing:-2.453333pt;}
.wse7{word-spacing:-2.400000pt;}
.ws30{word-spacing:-2.293333pt;}
.ws1b4{word-spacing:-2.256000pt;}
.ws1c{word-spacing:-2.240000pt;}
.ws1c3{word-spacing:-2.208000pt;}
.ws109{word-spacing:-2.186667pt;}
.ws163{word-spacing:-2.160000pt;}
.ws61{word-spacing:-2.133333pt;}
.ws194{word-spacing:-2.112000pt;}
.ws138{word-spacing:-2.080000pt;}
.ws153{word-spacing:-2.064000pt;}
.ws84{word-spacing:-2.026667pt;}
.wsa8{word-spacing:-1.973333pt;}
.ws34{word-spacing:-1.920000pt;}
.ws1b7{word-spacing:-1.872000pt;}
.ws100{word-spacing:-1.866667pt;}
.ws1ad{word-spacing:-1.824000pt;}
.ws11a{word-spacing:-1.813333pt;}
.wsed{word-spacing:-1.792000pt;}
.ws181{word-spacing:-1.776000pt;}
.ws6f{word-spacing:-1.760000pt;}
.ws186{word-spacing:-1.728000pt;}
.ws35{word-spacing:-1.706667pt;}
.wsd{word-spacing:-1.680000pt;}
.ws127{word-spacing:-1.653333pt;}
.ws1b2{word-spacing:-1.632000pt;}
.wsde{word-spacing:-1.600000pt;}
.ws17a{word-spacing:-1.584000pt;}
.ws9b{word-spacing:-1.546667pt;}
.ws38{word-spacing:-1.536000pt;}
.ws78{word-spacing:-1.493333pt;}
.ws154{word-spacing:-1.488000pt;}
.ws77{word-spacing:-1.440000pt;}
.wsbb{word-spacing:-1.386667pt;}
.ws1b{word-spacing:-1.333333pt;}
.ws1b1{word-spacing:-1.296000pt;}
.wsca{word-spacing:-1.280000pt;}
.ws162{word-spacing:-1.248000pt;}
.wsb4{word-spacing:-1.226667pt;}
.ws3d{word-spacing:-1.200000pt;}
.ws2f{word-spacing:-1.173333pt;}
.ws12e{word-spacing:-1.152000pt;}
.ws29{word-spacing:-1.120000pt;}
.wsfb{word-spacing:-1.104000pt;}
.wsf7{word-spacing:-1.066667pt;}
.ws18e{word-spacing:-1.056000pt;}
.ws131{word-spacing:-1.013333pt;}
.ws182{word-spacing:-1.008000pt;}
.ws58{word-spacing:-0.960000pt;}
.ws1bc{word-spacing:-0.912000pt;}
.wsbf{word-spacing:-0.906667pt;}
.ws12d{word-spacing:-0.864000pt;}
.ws87{word-spacing:-0.853333pt;}
.ws1ac{word-spacing:-0.816000pt;}
.wse2{word-spacing:-0.800000pt;}
.ws17b{word-spacing:-0.768000pt;}
.ws67{word-spacing:-0.746667pt;}
.ws73{word-spacing:-0.725333pt;}
.ws26{word-spacing:-0.693333pt;}
.ws19c{word-spacing:-0.672000pt;}
.ws4b{word-spacing:-0.640000pt;}
.ws1c9{word-spacing:-0.624000pt;}
.ws86{word-spacing:-0.586667pt;}
.ws3{word-spacing:-0.560000pt;}
.ws49{word-spacing:-0.533333pt;}
.ws16b{word-spacing:-0.528000pt;}
.ws4e{word-spacing:-0.480000pt;}
.ws1af{word-spacing:-0.432000pt;}
.ws47{word-spacing:-0.426667pt;}
.ws1c5{word-spacing:-0.384000pt;}
.ws88{word-spacing:-0.373333pt;}
.ws126{word-spacing:-0.336000pt;}
.wsa2{word-spacing:-0.320000pt;}
.ws132{word-spacing:-0.266667pt;}
.ws1a3{word-spacing:-0.240000pt;}
.ws48{word-spacing:-0.213333pt;}
.ws18d{word-spacing:-0.192000pt;}
.wsc8{word-spacing:-0.160000pt;}
.ws1ae{word-spacing:-0.144000pt;}
.ws69{word-spacing:-0.106667pt;}
.ws192{word-spacing:-0.096000pt;}
.ws33{word-spacing:-0.053333pt;}
.ws18c{word-spacing:-0.048000pt;}
.ws5f{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.wse1{word-spacing:0.053333pt;}
.ws85{word-spacing:0.106667pt;}
.ws193{word-spacing:0.144000pt;}
.wsb2{word-spacing:0.160000pt;}
.ws9{word-spacing:0.168000pt;}
.ws2e{word-spacing:0.213333pt;}
.ws176{word-spacing:0.240000pt;}
.ws1f{word-spacing:0.256000pt;}
.ws97{word-spacing:0.266667pt;}
.wse8{word-spacing:0.320000pt;}
.ws80{word-spacing:0.373333pt;}
.ws23{word-spacing:0.426667pt;}
.ws12f{word-spacing:0.432000pt;}
.ws60{word-spacing:0.480000pt;}
.ws1a6{word-spacing:0.528000pt;}
.ws6c{word-spacing:0.533333pt;}
.ws19d{word-spacing:0.576000pt;}
.ws10f{word-spacing:0.586667pt;}
.ws1c1{word-spacing:0.624000pt;}
.wsbc{word-spacing:0.640000pt;}
.ws72{word-spacing:0.693333pt;}
.ws1c8{word-spacing:0.720000pt;}
.ws13{word-spacing:0.728000pt;}
.ws71{word-spacing:0.746667pt;}
.ws185{word-spacing:0.768000pt;}
.ws50{word-spacing:0.800000pt;}
.wsae{word-spacing:0.853333pt;}
.wse4{word-spacing:0.906667pt;}
.ws1c4{word-spacing:0.912000pt;}
.wsf5{word-spacing:0.960000pt;}
.ws1a{word-spacing:0.981333pt;}
.ws2c{word-spacing:1.013333pt;}
.ws1a8{word-spacing:1.056000pt;}
.ws103{word-spacing:1.066667pt;}
.ws198{word-spacing:1.104000pt;}
.wsb5{word-spacing:1.120000pt;}
.ws19b{word-spacing:1.152000pt;}
.ws42{word-spacing:1.226667pt;}
.ws189{word-spacing:1.248000pt;}
.ws16{word-spacing:1.280000pt;}
.ws27{word-spacing:1.333333pt;}
.ws160{word-spacing:1.344000pt;}
.ws99{word-spacing:1.386667pt;}
.ws4c{word-spacing:1.440000pt;}
.ws20{word-spacing:1.472000pt;}
.wsdc{word-spacing:1.493333pt;}
.wsad{word-spacing:1.546667pt;}
.wsa{word-spacing:1.568000pt;}
.ws187{word-spacing:1.584000pt;}
.ws22{word-spacing:1.594667pt;}
.ws41{word-spacing:1.600000pt;}
.ws46{word-spacing:1.653333pt;}
.ws129{word-spacing:1.706667pt;}
.ws184{word-spacing:1.728000pt;}
.ws7a{word-spacing:1.760000pt;}
.ws105{word-spacing:1.813333pt;}
.ws191{word-spacing:1.824000pt;}
.wsc7{word-spacing:1.866667pt;}
.ws11d{word-spacing:1.920000pt;}
.ws21{word-spacing:1.962667pt;}
.wsda{word-spacing:1.973333pt;}
.ws16f{word-spacing:2.016000pt;}
.ws79{word-spacing:2.026667pt;}
.ws120{word-spacing:2.080000pt;}
.ws16d{word-spacing:2.112000pt;}
.ws45{word-spacing:2.133333pt;}
.ws1b6{word-spacing:2.160000pt;}
.ws64{word-spacing:2.186667pt;}
.ws36{word-spacing:2.208000pt;}
.ws7d{word-spacing:2.240000pt;}
.ws171{word-spacing:2.256000pt;}
.ws8c{word-spacing:2.293333pt;}
.ws19f{word-spacing:2.304000pt;}
.wsb7{word-spacing:2.346667pt;}
.ws1a7{word-spacing:2.352000pt;}
.wsa1{word-spacing:2.400000pt;}
.ws13b{word-spacing:2.453333pt;}
.wsfd{word-spacing:2.506667pt;}
.ws178{word-spacing:2.544000pt;}
.ws63{word-spacing:2.560000pt;}
.wsbd{word-spacing:2.613333pt;}
.ws9f{word-spacing:2.666667pt;}
.ws173{word-spacing:2.688000pt;}
.wsf4{word-spacing:2.720000pt;}
.ws3a{word-spacing:2.736000pt;}
.ws9d{word-spacing:2.773333pt;}
.wsa4{word-spacing:2.826667pt;}
.ws122{word-spacing:2.832000pt;}
.wsaa{word-spacing:2.880000pt;}
.ws11{word-spacing:2.912000pt;}
.ws24{word-spacing:2.933333pt;}
.ws12{word-spacing:2.968000pt;}
.ws18a{word-spacing:2.976000pt;}
.ws110{word-spacing:2.986667pt;}
.ws3c{word-spacing:3.072000pt;}
.ws8f{word-spacing:3.093333pt;}
.ws1b8{word-spacing:3.120000pt;}
.ws62{word-spacing:3.146667pt;}
.ws125{word-spacing:3.168000pt;}
.ws98{word-spacing:3.200000pt;}
.ws37{word-spacing:3.216000pt;}
.ws140{word-spacing:3.253333pt;}
.ws95{word-spacing:3.306667pt;}
.ws1a4{word-spacing:3.312000pt;}
.wsc1{word-spacing:3.360000pt;}
.ws39{word-spacing:3.408000pt;}
.ws7f{word-spacing:3.413333pt;}
.ws104{word-spacing:3.466667pt;}
.ws195{word-spacing:3.504000pt;}
.ws93{word-spacing:3.520000pt;}
.wsa3{word-spacing:3.573333pt;}
.wsd4{word-spacing:3.626667pt;}
.ws6{word-spacing:3.640000pt;}
.ws17d{word-spacing:3.648000pt;}
.ws119{word-spacing:3.680000pt;}
.ws17f{word-spacing:3.696000pt;}
.wscf{word-spacing:3.733333pt;}
.ws169{word-spacing:3.744000pt;}
.ws10b{word-spacing:3.786667pt;}
.ws1b9{word-spacing:3.792000pt;}
.ws106{word-spacing:3.840000pt;}
.ws10e{word-spacing:3.893333pt;}
.wsd5{word-spacing:3.946667pt;}
.ws124{word-spacing:3.984000pt;}
.wsc6{word-spacing:4.000000pt;}
.wsb9{word-spacing:4.053333pt;}
.ws167{word-spacing:4.080000pt;}
.wsa9{word-spacing:4.106667pt;}
.wsd0{word-spacing:4.160000pt;}
.wsd9{word-spacing:4.213333pt;}
.ws5a{word-spacing:4.266667pt;}
.ws151{word-spacing:4.272000pt;}
.wsb6{word-spacing:4.320000pt;}
.ws82{word-spacing:4.373333pt;}
.wsd8{word-spacing:4.426667pt;}
.ws101{word-spacing:4.533333pt;}
.ws114{word-spacing:4.586667pt;}
.ws75{word-spacing:4.640000pt;}
.ws18f{word-spacing:4.656000pt;}
.ws70{word-spacing:4.693333pt;}
.ws170{word-spacing:4.704000pt;}
.ws9a{word-spacing:4.746667pt;}
.ws4a{word-spacing:4.800000pt;}
.ws1bf{word-spacing:4.848000pt;}
.wse0{word-spacing:4.853333pt;}
.ws19e{word-spacing:4.896000pt;}
.ws28{word-spacing:4.906667pt;}
.wsb3{word-spacing:4.960000pt;}
.ws180{word-spacing:4.992000pt;}
.ws10c{word-spacing:5.013333pt;}
.wsf8{word-spacing:5.066667pt;}
.ws197{word-spacing:5.088000pt;}
.ws9e{word-spacing:5.120000pt;}
.ws19a{word-spacing:5.136000pt;}
.ws32{word-spacing:5.173333pt;}
.ws55{word-spacing:5.226667pt;}
.wsd2{word-spacing:5.280000pt;}
.ws59{word-spacing:5.333333pt;}
.ws123{word-spacing:5.376000pt;}
.ws52{word-spacing:5.386667pt;}
.ws1b3{word-spacing:5.424000pt;}
.wsd7{word-spacing:5.440000pt;}
.ws16c{word-spacing:5.472000pt;}
.ws83{word-spacing:5.493333pt;}
.wsaf{word-spacing:5.546667pt;}
.ws4d{word-spacing:5.600000pt;}
.ws130{word-spacing:5.616000pt;}
.ws155{word-spacing:5.653333pt;}
.ws183{word-spacing:5.664000pt;}
.wsf1{word-spacing:5.706667pt;}
.ws17c{word-spacing:5.712000pt;}
.ws2b{word-spacing:5.760000pt;}
.ws199{word-spacing:5.808000pt;}
.ws65{word-spacing:5.813333pt;}
.ws7b{word-spacing:5.866667pt;}
.ws25{word-spacing:5.920000pt;}
.ws172{word-spacing:5.952000pt;}
.ws8b{word-spacing:5.973333pt;}
.ws5b{word-spacing:6.026667pt;}
.wsb{word-spacing:6.048000pt;}
.ws144{word-spacing:6.080000pt;}
.ws5c{word-spacing:6.133333pt;}
.wsee{word-spacing:6.186667pt;}
.ws2a{word-spacing:6.240000pt;}
.wsbe{word-spacing:6.293333pt;}
.ws53{word-spacing:6.346667pt;}
.wsce{word-spacing:6.400000pt;}
.wsef{word-spacing:6.453333pt;}
.ws1b5{word-spacing:6.480000pt;}
.ws6e{word-spacing:6.506667pt;}
.ws12c{word-spacing:6.560000pt;}
.ws13d{word-spacing:6.613333pt;}
.wse6{word-spacing:6.666667pt;}
.ws3f{word-spacing:6.720000pt;}
.wsea{word-spacing:6.826667pt;}
.ws107{word-spacing:6.880000pt;}
.ws1bd{word-spacing:6.912000pt;}
.wsba{word-spacing:6.933333pt;}
.wsd6{word-spacing:6.986667pt;}
.ws1c6{word-spacing:7.008000pt;}
.ws4f{word-spacing:7.040000pt;}
.wsff{word-spacing:7.093333pt;}
.ws51{word-spacing:7.146667pt;}
.ws1a2{word-spacing:7.152000pt;}
.ws7{word-spacing:7.168000pt;}
.ws14e{word-spacing:7.253333pt;}
.ws94{word-spacing:7.306667pt;}
.wscb{word-spacing:7.360000pt;}
.ws56{word-spacing:7.413333pt;}
.wseb{word-spacing:7.466667pt;}
.ws116{word-spacing:7.520000pt;}
.ws5{word-spacing:7.560000pt;}
.ws136{word-spacing:7.626667pt;}
.ws134{word-spacing:7.733333pt;}
.ws168{word-spacing:7.776000pt;}
.ws13c{word-spacing:7.786667pt;}
.ws17e{word-spacing:7.824000pt;}
.ws139{word-spacing:7.840000pt;}
.wsec{word-spacing:7.893333pt;}
.ws165{word-spacing:7.920000pt;}
.wscc{word-spacing:7.946667pt;}
.wsdf{word-spacing:8.053333pt;}
.ws1a5{word-spacing:8.064000pt;}
.ws135{word-spacing:8.106667pt;}
.ws14d{word-spacing:8.266667pt;}
.ws157{word-spacing:8.373333pt;}
.ws10a{word-spacing:8.426667pt;}
.wscd{word-spacing:8.480000pt;}
.ws68{word-spacing:8.533333pt;}
.wsc9{word-spacing:8.586667pt;}
.wsc{word-spacing:8.624000pt;}
.wsc0{word-spacing:8.640000pt;}
.ws159{word-spacing:8.693333pt;}
.wsa0{word-spacing:8.746667pt;}
.ws7e{word-spacing:8.800000pt;}
.ws16a{word-spacing:8.832000pt;}
.ws10{word-spacing:8.848000pt;}
.ws11f{word-spacing:8.853333pt;}
.ws121{word-spacing:8.928000pt;}
.ws4{word-spacing:8.960000pt;}
.ws14b{word-spacing:9.013333pt;}
.ws152{word-spacing:9.072000pt;}
.ws1be{word-spacing:9.120000pt;}
.ws13e{word-spacing:9.226667pt;}
.ws14c{word-spacing:9.258667pt;}
.wsfc{word-spacing:9.386667pt;}
.ws6b{word-spacing:9.600000pt;}
.ws158{word-spacing:9.760000pt;}
.ws11b{word-spacing:9.866667pt;}
.wse9{word-spacing:9.920000pt;}
.ws166{word-spacing:10.032000pt;}
.wsf2{word-spacing:10.186667pt;}
.ws5d{word-spacing:10.240000pt;}
.ws40{word-spacing:10.293333pt;}
.ws2d{word-spacing:10.346667pt;}
.ws118{word-spacing:10.506667pt;}
.ws137{word-spacing:10.560000pt;}
.ws149{word-spacing:10.613333pt;}
.wse{word-spacing:10.752000pt;}
.ws115{word-spacing:10.773333pt;}
.ws44{word-spacing:10.880000pt;}
.ws13f{word-spacing:10.933333pt;}
.wsf{word-spacing:10.976000pt;}
.wsf9{word-spacing:10.986667pt;}
.wsd3{word-spacing:11.200000pt;}
.wsa7{word-spacing:11.520000pt;}
.ws1a9{word-spacing:11.568000pt;}
.ws117{word-spacing:11.626667pt;}
.ws150{word-spacing:11.680000pt;}
.ws174{word-spacing:11.760000pt;}
.ws43{word-spacing:12.000000pt;}
.wsf0{word-spacing:12.053333pt;}
.ws3e{word-spacing:12.213333pt;}
.ws190{word-spacing:12.576000pt;}
.wsfe{word-spacing:12.586667pt;}
.ws143{word-spacing:12.800000pt;}
.ws111{word-spacing:13.066667pt;}
.ws11c{word-spacing:13.760000pt;}
.ws175{word-spacing:14.160000pt;}
.ws54{word-spacing:14.400000pt;}
.ws15d{word-spacing:14.640000pt;}
.ws156{word-spacing:15.040000pt;}
.ws8{word-spacing:15.120000pt;}
.ws1a0{word-spacing:15.216000pt;}
.wsf6{word-spacing:15.733333pt;}
.ws16e{word-spacing:15.888000pt;}
.wsb1{word-spacing:15.946667pt;}
.ws57{word-spacing:16.053333pt;}
.ws179{word-spacing:18.000000pt;}
.ws141{word-spacing:22.826667pt;}
.ws196{word-spacing:24.576000pt;}
._1b{margin-left:-1662.985600pt;}
._d{margin-left:-441.120000pt;}
._18{margin-left:-281.920000pt;}
._16{margin-left:-266.560000pt;}
._f{margin-left:-231.296000pt;}
._28{margin-left:-21.813333pt;}
._2e{margin-left:-20.048000pt;}
._25{margin-left:-18.736029pt;}
._24{margin-left:-17.700800pt;}
._1a{margin-left:-15.893333pt;}
._26{margin-left:-13.493333pt;}
._27{margin-left:-11.146667pt;}
._1f{margin-left:-9.632267pt;}
._10{margin-left:-6.263467pt;}
._1c{margin-left:-5.344267pt;}
._a{margin-left:-4.393662pt;}
._9{margin-left:-3.019109pt;}
._c{margin-left:-1.674400pt;}
._5{width:1.315515pt;}
._8{width:2.841512pt;}
._23{width:4.006400pt;}
._3{width:5.209438pt;}
._6{width:6.156609pt;}
._22{width:7.509333pt;}
._b{width:9.240000pt;}
._2{width:10.681979pt;}
._20{width:12.270933pt;}
._21{width:13.283467pt;}
._1e{width:14.997333pt;}
._29{width:16.166400pt;}
._2d{width:17.621648pt;}
._4{width:18.706619pt;}
._1{width:22.574232pt;}
._2c{width:24.972267pt;}
._2b{width:25.885867pt;}
._7{width:36.045102pt;}
._2a{width:37.788800pt;}
._1d{width:59.434667pt;}
._14{width:130.856862pt;}
._15{width:387.840000pt;}
._13{width:515.786667pt;}
._0{width:654.472305pt;}
._12{width:924.800000pt;}
._11{width:963.200000pt;}
._19{width:1566.227200pt;}
._17{width:1581.587200pt;}
._e{width:3817.635200pt;}
.fs4{font-size:26.310293pt;}
.fs3{font-size:30.068907pt;}
.fs16{font-size:30.933333pt;}
.fsf{font-size:32.000000pt;}
.fs6{font-size:33.075797pt;}
.fs7{font-size:33.827520pt;}
.fs11{font-size:37.333333pt;}
.fs2{font-size:37.586133pt;}
.fs1{font-size:41.344747pt;}
.fs5{font-size:42.096469pt;}
.fs12{font-size:42.666667pt;}
.fs10{font-size:45.333333pt;}
.fs15{font-size:48.000000pt;}
.fs0{font-size:52.620587pt;}
.fse{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fsc{font-size:61.333333pt;}
.fsd{font-size:64.000000pt;}
.fs14{font-size:69.333333pt;}
.fs13{font-size:85.333333pt;}
.fs9{font-size:90.666667pt;}
.fs8{font-size:245.456000pt;}
.y73{bottom:-22.236000pt;}
.y31{bottom:-20.006667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.237840pt;}
.y5d{bottom:1.102667pt;}
.y2f{bottom:22.382133pt;}
.yc4{bottom:22.833067pt;}
.y5e{bottom:22.892267pt;}
.y74{bottom:23.935733pt;}
.y97{bottom:27.774400pt;}
.y1c{bottom:40.076215pt;}
.y5c{bottom:43.933200pt;}
.yd4{bottom:50.236533pt;}
.y1b{bottom:50.731883pt;}
.yfa{bottom:53.810533pt;}
.y172{bottom:56.727067pt;}
.y5b{bottom:57.929867pt;}
.y1cf{bottom:58.902933pt;}
.y13b{bottom:60.632133pt;}
.yc3{bottom:60.645200pt;}
.y1a0{bottom:60.952933pt;}
.y1a{bottom:61.387552pt;}
.y164{bottom:62.031067pt;}
.yd3{bottom:63.036533pt;}
.yf9{bottom:69.810533pt;}
.y19{bottom:72.043221pt;}
.y171{bottom:72.727067pt;}
.y1ce{bottom:73.569600pt;}
.y19f{bottom:75.619600pt;}
.yd2{bottom:75.836533pt;}
.y13a{bottom:76.632133pt;}
.yc2{bottom:76.645200pt;}
.y163{bottom:78.031067pt;}
.y18{bottom:81.148462pt;}
.yf8{bottom:85.810533pt;}
.y5a{bottom:85.934533pt;}
.y96{bottom:86.957733pt;}
.y1cd{bottom:88.236267pt;}
.yd1{bottom:88.636533pt;}
.y170{bottom:88.727067pt;}
.y19e{bottom:90.286267pt;}
.y139{bottom:92.632133pt;}
.yc1{bottom:92.645200pt;}
.y17{bottom:98.400497pt;}
.y59{bottom:99.931200pt;}
.y95{bottom:101.357733pt;}
.yd0{bottom:101.436533pt;}
.yf7{bottom:101.810533pt;}
.y162{bottom:101.968000pt;}
.y1cc{bottom:102.902933pt;}
.y16f{bottom:104.727067pt;}
.y19d{bottom:104.952933pt;}
.y138{bottom:108.632133pt;}
.yc0{bottom:108.645200pt;}
.y58{bottom:113.927867pt;}
.ycf{bottom:114.236533pt;}
.y94{bottom:115.757733pt;}
.y1cb{bottom:117.569600pt;}
.yf6{bottom:117.810533pt;}
.y15e{bottom:119.127067pt;}
.y19c{bottom:119.619600pt;}
.y16e{bottom:120.727067pt;}
.y161{bottom:121.968000pt;}
.y137{bottom:124.632133pt;}
.ybf{bottom:124.645200pt;}
.y150{bottom:126.112933pt;}
.yce{bottom:127.036533pt;}
.y57{bottom:127.924533pt;}
.y105{bottom:129.354800pt;}
.y93{bottom:130.157733pt;}
.y1ca{bottom:132.236267pt;}
.yf5{bottom:133.810533pt;}
.y19b{bottom:134.286267pt;}
.y15d{bottom:135.127067pt;}
.y16d{bottom:136.727067pt;}
.ycd{bottom:139.836533pt;}
.y136{bottom:140.632133pt;}
.ybe{bottom:140.645200pt;}
.y56{bottom:141.921200pt;}
.y160{bottom:141.968000pt;}
.y14f{bottom:142.112933pt;}
.y104{bottom:142.154800pt;}
.y92{bottom:144.557733pt;}
.y1c9{bottom:146.902933pt;}
.y16{bottom:148.521606pt;}
.y19a{bottom:148.952933pt;}
.yf4{bottom:149.810533pt;}
.y15c{bottom:151.127067pt;}
.ycc{bottom:152.636533pt;}
.y16c{bottom:152.727067pt;}
.y103{bottom:154.954800pt;}
.y55{bottom:155.917867pt;}
.y15{bottom:156.508659pt;}
.y135{bottom:156.632133pt;}
.ybd{bottom:156.645200pt;}
.y14e{bottom:158.112933pt;}
.y91{bottom:158.957733pt;}
.y1c8{bottom:161.569600pt;}
.y15f{bottom:161.968000pt;}
.y199{bottom:163.619600pt;}
.y14{bottom:163.837955pt;}
.ycb{bottom:165.436533pt;}
.yf3{bottom:165.810533pt;}
.y15b{bottom:167.127067pt;}
.y102{bottom:167.754800pt;}
.y54{bottom:169.914533pt;}
.y13{bottom:170.490701pt;}
.y134{bottom:172.632133pt;}
.ybc{bottom:172.645200pt;}
.y90{bottom:173.357733pt;}
.y14d{bottom:174.112933pt;}
.y1c7{bottom:176.236267pt;}
.y16b{bottom:176.286133pt;}
.y12{bottom:177.152843pt;}
.yca{bottom:178.236533pt;}
.y198{bottom:178.286267pt;}
.y101{bottom:180.554800pt;}
.yf2{bottom:181.810533pt;}
.y15a{bottom:183.127067pt;}
.y11{bottom:183.814985pt;}
.y8f{bottom:187.757733pt;}
.y133{bottom:188.632133pt;}
.ybb{bottom:188.645200pt;}
.y14c{bottom:190.112933pt;}
.y10{bottom:190.467731pt;}
.y16a{bottom:190.686133pt;}
.y1c6{bottom:190.902933pt;}
.yc9{bottom:191.036533pt;}
.y197{bottom:192.952933pt;}
.y100{bottom:193.354800pt;}
.yf{bottom:197.129873pt;}
.yf1{bottom:197.810533pt;}
.y53{bottom:197.919200pt;}
.y159{bottom:199.127067pt;}
.yc8{bottom:203.836533pt;}
.y132{bottom:204.632133pt;}
.yba{bottom:204.645200pt;}
.y169{bottom:205.086133pt;}
.y1c5{bottom:205.569600pt;}
.y14b{bottom:206.112933pt;}
.yff{bottom:206.154800pt;}
.y196{bottom:207.619600pt;}
.y8e{bottom:209.716800pt;}
.ye{bottom:210.830018pt;}
.y52{bottom:211.915867pt;}
.yf0{bottom:213.810533pt;}
.y158{bottom:215.127067pt;}
.yc7{bottom:216.636533pt;}
.yfe{bottom:218.954800pt;}
.y168{bottom:219.486133pt;}
.y1c4{bottom:220.236267pt;}
.y131{bottom:220.632133pt;}
.yb9{bottom:220.645200pt;}
.y195{bottom:222.286267pt;}
.y8d{bottom:225.716800pt;}
.y51{bottom:225.912533pt;}
.y118{bottom:226.018000pt;}
.yc6{bottom:229.436533pt;}
.y14a{bottom:229.672000pt;}
.yef{bottom:229.810533pt;}
.y157{bottom:231.127067pt;}
.yfd{bottom:231.754800pt;}
.y167{bottom:233.886133pt;}
.y1c3{bottom:234.902933pt;}
.y130{bottom:236.632133pt;}
.yb8{bottom:236.645200pt;}
.y194{bottom:236.952933pt;}
.y50{bottom:239.909200pt;}
.y8c{bottom:241.716800pt;}
.y117{bottom:242.018000pt;}
.yc5{bottom:242.236533pt;}
.y149{bottom:244.072000pt;}
.yfc{bottom:244.554800pt;}
.yee{bottom:245.810533pt;}
.y166{bottom:248.286133pt;}
.y1c2{bottom:249.569600pt;}
.y193{bottom:251.619600pt;}
.y12f{bottom:252.632133pt;}
.yb7{bottom:252.645200pt;}
.y156{bottom:254.686133pt;}
.y2d{bottom:255.319333pt;}
.yfb{bottom:257.354800pt;}
.y8b{bottom:257.716800pt;}
.y116{bottom:258.018000pt;}
.y148{bottom:258.472000pt;}
.yed{bottom:261.810533pt;}
.y165{bottom:262.686133pt;}
.y1c1{bottom:264.236267pt;}
.y192{bottom:266.286267pt;}
.y4f{bottom:267.913867pt;}
.y12e{bottom:268.632133pt;}
.yb6{bottom:268.645200pt;}
.y155{bottom:269.086133pt;}
.y147{bottom:272.872000pt;}
.y8a{bottom:273.716800pt;}
.y115{bottom:274.018000pt;}
.yec{bottom:277.810533pt;}
.y1c0{bottom:278.902933pt;}
.y2c{bottom:279.725200pt;}
.y191{bottom:280.952933pt;}
.y4e{bottom:281.910533pt;}
.y154{bottom:283.486133pt;}
.y12d{bottom:284.632133pt;}
.yb5{bottom:284.645200pt;}
.y146{bottom:287.272000pt;}
.y89{bottom:289.716800pt;}
.y114{bottom:290.018000pt;}
.y1bf{bottom:293.569600pt;}
.yeb{bottom:293.810533pt;}
.y190{bottom:295.619600pt;}
.y4d{bottom:295.907200pt;}
.y153{bottom:297.886133pt;}
.y12c{bottom:300.632133pt;}
.yb4{bottom:300.645200pt;}
.y145{bottom:301.672000pt;}
.y2b{bottom:303.721200pt;}
.y88{bottom:305.716800pt;}
.y113{bottom:306.018000pt;}
.y1be{bottom:308.236267pt;}
.yea{bottom:309.810533pt;}
.y4c{bottom:309.903867pt;}
.y18f{bottom:310.286267pt;}
.y152{bottom:312.286133pt;}
.y144{bottom:316.072000pt;}
.yd{bottom:316.531622pt;}
.y12b{bottom:316.632133pt;}
.yb3{bottom:316.645200pt;}
.y30{bottom:317.831733pt;}
.y72{bottom:318.330933pt;}
.y87{bottom:321.716800pt;}
.y112{bottom:322.018000pt;}
.y1bd{bottom:322.902933pt;}
.y18e{bottom:324.952933pt;}
.ye9{bottom:325.810533pt;}
.y151{bottom:326.686133pt;}
.y2a{bottom:327.717200pt;}
.y12a{bottom:332.632133pt;}
.yb2{bottom:332.645200pt;}
.y71{bottom:334.330933pt;}
.y1bc{bottom:337.569600pt;}
.y86{bottom:337.716800pt;}
.y4b{bottom:337.908533pt;}
.y111{bottom:338.018000pt;}
.y143{bottom:338.031067pt;}
.y18d{bottom:339.619600pt;}
.ye8{bottom:341.810533pt;}
.y129{bottom:348.632133pt;}
.yb1{bottom:348.645200pt;}
.y70{bottom:350.330933pt;}
.y29{bottom:351.713200pt;}
.y4a{bottom:351.905200pt;}
.y1bb{bottom:352.236267pt;}
.y85{bottom:353.716800pt;}
.y142{bottom:354.031067pt;}
.y18c{bottom:354.286267pt;}
.ye7{bottom:357.810533pt;}
.y110{bottom:361.954933pt;}
.y128{bottom:364.632133pt;}
.yb0{bottom:364.645200pt;}
.y49{bottom:365.901867pt;}
.y1ba{bottom:366.902933pt;}
.y18b{bottom:368.952933pt;}
.y84{bottom:369.716800pt;}
.y141{bottom:370.031067pt;}
.ye6{bottom:373.810533pt;}
.y28{bottom:375.709200pt;}
.y48{bottom:379.898533pt;}
.y127{bottom:380.632133pt;}
.yaf{bottom:380.645200pt;}
.y1b9{bottom:381.569600pt;}
.y10f{bottom:381.954933pt;}
.y6f{bottom:382.330933pt;}
.y18a{bottom:383.619600pt;}
.y83{bottom:385.716800pt;}
.y140{bottom:386.031067pt;}
.ye5{bottom:389.810533pt;}
.y47{bottom:393.895200pt;}
.y1b8{bottom:396.236267pt;}
.y126{bottom:396.632133pt;}
.yae{bottom:396.645200pt;}
.y189{bottom:398.286267pt;}
.y6e{bottom:398.330933pt;}
.y27{bottom:399.705200pt;}
.y82{bottom:401.716667pt;}
.y13f{bottom:402.031067pt;}
.ye4{bottom:405.810533pt;}
.y46{bottom:407.891867pt;}
.y1b7{bottom:410.902933pt;}
.y125{bottom:412.632133pt;}
.yad{bottom:412.645200pt;}
.y188{bottom:412.952933pt;}
.y6d{bottom:414.330933pt;}
.y81{bottom:417.716667pt;}
.ye3{bottom:421.810533pt;}
.y45{bottom:421.888533pt;}
.y26{bottom:423.701200pt;}
.y1b6{bottom:425.569600pt;}
.y13e{bottom:425.968000pt;}
.y187{bottom:427.619600pt;}
.y124{bottom:428.632133pt;}
.yac{bottom:428.645200pt;}
.y119{bottom:430.327067pt;}
.y80{bottom:433.716667pt;}
.y44{bottom:435.885200pt;}
.ye2{bottom:437.810533pt;}
.y1b5{bottom:440.236267pt;}
.y186{bottom:442.286267pt;}
.y123{bottom:444.632133pt;}
.yab{bottom:444.645200pt;}
.y13d{bottom:445.968000pt;}
.y6c{bottom:446.330933pt;}
.y25{bottom:447.697200pt;}
.y7f{bottom:449.716667pt;}
.y43{bottom:449.881867pt;}
.ye1{bottom:453.810533pt;}
.y1b4{bottom:454.902933pt;}
.y185{bottom:456.952933pt;}
.yc{bottom:457.977638pt;}
.y122{bottom:460.632133pt;}
.yaa{bottom:460.645200pt;}
.y6b{bottom:462.330933pt;}
.y42{bottom:463.878533pt;}
.y7e{bottom:465.716667pt;}
.y13c{bottom:465.968000pt;}
.y1b3{bottom:469.569600pt;}
.ye0{bottom:469.810533pt;}
.y184{bottom:471.619600pt;}
.y24{bottom:471.693200pt;}
.y121{bottom:476.632133pt;}
.ya9{bottom:476.645200pt;}
.y6a{bottom:478.330933pt;}
.yb{bottom:478.518460pt;}
.y7d{bottom:481.716667pt;}
.y1b2{bottom:484.236267pt;}
.ydf{bottom:485.810533pt;}
.y183{bottom:486.286267pt;}
.ya{bottom:489.174129pt;}
.y41{bottom:491.883200pt;}
.y120{bottom:492.632133pt;}
.ya8{bottom:492.645200pt;}
.y69{bottom:494.330933pt;}
.y23{bottom:495.689200pt;}
.y7c{bottom:497.716667pt;}
.y1b1{bottom:498.902933pt;}
.y182{bottom:500.952933pt;}
.yde{bottom:501.810533pt;}
.y40{bottom:505.879867pt;}
.y11f{bottom:508.632133pt;}
.ya7{bottom:508.645200pt;}
.y9{bottom:509.921674pt;}
.y1b0{bottom:513.569600pt;}
.y7b{bottom:513.716667pt;}
.y181{bottom:515.619600pt;}
.ydd{bottom:517.810533pt;}
.y22{bottom:519.685200pt;}
.y3f{bottom:519.876533pt;}
.y8{bottom:520.577343pt;}
.y11e{bottom:524.632133pt;}
.ya6{bottom:524.645200pt;}
.y68{bottom:526.330933pt;}
.y1af{bottom:528.236267pt;}
.y180{bottom:530.286267pt;}
.y7{bottom:531.233012pt;}
.ydc{bottom:533.810533pt;}
.y3e{bottom:533.873200pt;}
.y7a{bottom:537.653733pt;}
.y11d{bottom:540.632133pt;}
.ya5{bottom:540.645200pt;}
.y6{bottom:541.888681pt;}
.y67{bottom:542.330933pt;}
.y1ae{bottom:542.902933pt;}
.y21{bottom:543.681200pt;}
.y17f{bottom:544.952933pt;}
.y3d{bottom:547.869867pt;}
.ydb{bottom:549.810533pt;}
.y11c{bottom:556.632133pt;}
.ya4{bottom:556.645200pt;}
.y1ad{bottom:557.569600pt;}
.y79{bottom:557.653733pt;}
.y66{bottom:558.330933pt;}
.y17e{bottom:559.619600pt;}
.y3c{bottom:561.866533pt;}
.yda{bottom:565.810533pt;}
.y20{bottom:567.677200pt;}
.y1ac{bottom:572.236267pt;}
.y11b{bottom:572.632133pt;}
.ya3{bottom:572.645200pt;}
.y17d{bottom:574.286267pt;}
.yd9{bottom:581.810533pt;}
.y1ab{bottom:586.902933pt;}
.y11a{bottom:588.632133pt;}
.ya2{bottom:588.645200pt;}
.y17c{bottom:588.952933pt;}
.y3b{bottom:589.871200pt;}
.y65{bottom:590.330933pt;}
.y5{bottom:591.539963pt;}
.yd8{bottom:597.810533pt;}
.y1aa{bottom:601.569600pt;}
.y17b{bottom:603.619600pt;}
.y3a{bottom:603.867867pt;}
.y10e{bottom:604.632133pt;}
.ya1{bottom:604.645200pt;}
.y64{bottom:606.330933pt;}
.y4{bottom:607.344932pt;}
.y78{bottom:607.890000pt;}
.y1a9{bottom:616.236267pt;}
.y39{bottom:617.864533pt;}
.y17a{bottom:618.286267pt;}
.y10d{bottom:620.632133pt;}
.ya0{bottom:620.645200pt;}
.yd7{bottom:621.747600pt;}
.y63{bottom:622.330933pt;}
.y3{bottom:625.987654pt;}
.y1a8{bottom:630.902933pt;}
.y77{bottom:631.223333pt;}
.y179{bottom:632.952933pt;}
.y10c{bottom:636.632133pt;}
.y9f{bottom:636.645200pt;}
.y62{bottom:638.330933pt;}
.y2e{bottom:639.200667pt;}
.yd6{bottom:641.747600pt;}
.y2{bottom:644.639773pt;}
.y1a7{bottom:645.569600pt;}
.y38{bottom:645.869200pt;}
.y178{bottom:647.619600pt;}
.y10b{bottom:652.632133pt;}
.y9e{bottom:652.645200pt;}
.y61{bottom:654.330933pt;}
.y76{bottom:654.556667pt;}
.y37{bottom:659.865867pt;}
.y1a6{bottom:660.236267pt;}
.yd5{bottom:661.747600pt;}
.y177{bottom:662.286267pt;}
.y10a{bottom:668.632133pt;}
.y9d{bottom:668.645200pt;}
.y36{bottom:673.862533pt;}
.y1a5{bottom:674.902933pt;}
.y176{bottom:676.952933pt;}
.y109{bottom:684.632133pt;}
.y9c{bottom:684.645200pt;}
.y1a4{bottom:689.569600pt;}
.y175{bottom:691.619600pt;}
.y75{bottom:693.890000pt;}
.y108{bottom:700.632133pt;}
.y9b{bottom:700.645200pt;}
.y35{bottom:701.867200pt;}
.y1a3{bottom:704.236267pt;}
.y174{bottom:706.286267pt;}
.y34{bottom:715.863867pt;}
.y107{bottom:716.632133pt;}
.y9a{bottom:716.645200pt;}
.y1a2{bottom:718.902933pt;}
.y1f{bottom:721.105867pt;}
.y60{bottom:725.890000pt;}
.y173{bottom:728.890000pt;}
.y33{bottom:729.860533pt;}
.y106{bottom:732.632133pt;}
.y99{bottom:732.645200pt;}
.y1a1{bottom:733.569600pt;}
.y32{bottom:743.857200pt;}
.y1e{bottom:751.773867pt;}
.y5f{bottom:760.535600pt;}
.y98{bottom:760.535733pt;}
.y1d{bottom:770.261067pt;}
.h9{height:19.495927pt;}
.h7{height:22.281060pt;}
.h8{height:22.341198pt;}
.h15{height:23.031250pt;}
.hc{height:25.066192pt;}
.h22{height:25.408000pt;}
.h6{height:27.851325pt;}
.ha{height:27.926497pt;}
.h1c{height:29.604167pt;}
.h5{height:30.636457pt;}
.hb{height:31.193484pt;}
.h16{height:32.384115pt;}
.h18{height:32.627604pt;}
.h2a{height:33.726562pt;}
.h1d{height:33.833333pt;}
.h29{height:38.062500pt;}
.h3{height:38.991855pt;}
.h4{height:39.097096pt;}
.h17{height:39.799479pt;}
.h27{height:40.031250pt;}
.h28{height:40.125000pt;}
.h1f{height:42.291667pt;}
.h13{height:42.474667pt;}
.h14{height:44.113281pt;}
.h21{height:44.479167pt;}
.h20{height:44.583333pt;}
.h11{height:49.164062pt;}
.h23{height:50.750000pt;}
.h26{height:51.151042pt;}
.h25{height:54.979167pt;}
.h1e{height:56.875000pt;}
.h12{height:62.956596pt;}
.h10{height:65.210938pt;}
.h24{height:67.666667pt;}
.hf{height:176.541352pt;}
.h2{height:791.084745pt;}
.h1{height:791.333333pt;}
.h0{height:791.560000pt;}
.hd{height:793.686667pt;}
.h1b{height:793.701333pt;}
.he{height:794.000000pt;}
.h19{height:795.905333pt;}
.h1a{height:796.000000pt;}
.w1{width:559.333333pt;}
.w3{width:559.356000pt;}
.w2{width:559.356836pt;}
.w0{width:559.360000pt;}
.w6{width:559.369333pt;}
.w5{width:561.333333pt;}
.w4{width:561.574667pt;}
.xb{left:-569.325467pt;}
.xa{left:-7.814000pt;}
.x0{left:0.000000pt;}
.xf{left:1.102667pt;}
.xe{left:13.326533pt;}
.x12{left:14.435867pt;}
.x3{left:29.298391pt;}
.x1{left:34.626225pt;}
.xd{left:38.302133pt;}
.xc{left:39.310800pt;}
.x7{left:59.435467pt;}
.x6{left:60.827067pt;}
.x19{left:68.031467pt;}
.x13{left:69.134133pt;}
.x11{left:77.109867pt;}
.x14{left:81.510800pt;}
.x15{left:91.811200pt;}
.x2{left:93.223007pt;}
.x18{left:99.370267pt;}
.x1f{left:109.805467pt;}
.x22{left:113.125733pt;}
.x23{left:120.539867pt;}
.x1e{left:123.399333pt;}
.x24{left:166.825333pt;}
.x20{left:178.256933pt;}
.x1c{left:241.262267pt;}
.x1b{left:272.640933pt;}
.x4{left:274.350584pt;}
.x1d{left:278.016400pt;}
.x21{left:279.649867pt;}
.x10{left:320.741200pt;}
.x16{left:338.050800pt;}
.x9{left:417.113200pt;}
.x1a{left:419.397733pt;}
.x17{left:481.628667pt;}
.x8{left:492.906133pt;}
.x5{left:513.459600pt;}
}




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