
    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_f0a89fec0be71e25a283b36a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952500;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_1a36b0eb5005e4ded21a05d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.884500;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_3ff12ff5daaffe59d7f5dc53.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cee3a2a659b4b9ecd790456a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_134f30b78f90404ec1a450f8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_10e8248d7b58d9f44f65f016.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918500;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_ad60563dde7c6f62f3ed580d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8e435e9692f3e61da7e38b98.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.856934;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_322cb0a88b98629f539f9051.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_324c3b53dddf67211c6b2bd5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891602;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_50bdce1ac044074da2cb6973.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.736816;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_fb73391265e4383a1b7e7907.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.826172;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_d940f8083c827366b8b1cfce.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.738500;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_f90b4479a4116365f5f7f88d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.723000;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_3edad5b58777c1d1e17b3115.woff2')format("woff");}.fff{font-family:fff;line-height:0.910500;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_7905974fcbd4802a371e3ef9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.903500;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_943a7d6f76e6fe63d19f4067.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.927734;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_64f780aa1ad32874331c4cfd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.925293;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_bbc4768af70719ba503cd453.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6a7742ef1dca692021062f3e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922363;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_54dbf72830e92e8a240dc98d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_5e919dff2ec82f621226e8d2.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.922363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.951600px;}
.v1{vertical-align:19.980000px;}
.v5{vertical-align:36.000000px;}
.v4{vertical-align:156.000000px;}
.ls25{letter-spacing:-8.052000px;}
.ls2c{letter-spacing:-4.752000px;}
.ls2b{letter-spacing:-4.488000px;}
.ls27{letter-spacing:-3.960000px;}
.ls3{letter-spacing:-3.456000px;}
.ls29{letter-spacing:-3.432000px;}
.ls22{letter-spacing:-2.970000px;}
.ls20{letter-spacing:-2.772000px;}
.ls12{letter-spacing:-1.998000px;}
.ls1e{letter-spacing:-1.914000px;}
.ls31{letter-spacing:-1.674000px;}
.ls2e{letter-spacing:-1.620000px;}
.ls19{letter-spacing:-1.458000px;}
.ls1f{letter-spacing:-1.386000px;}
.ls13{letter-spacing:-1.320000px;}
.ls11{letter-spacing:-1.080000px;}
.ls28{letter-spacing:-1.056000px;}
.ls33{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.864000px;}
.ls15{letter-spacing:-0.858000px;}
.ls36{letter-spacing:-0.810000px;}
.lsa{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.726000px;}
.lsc{letter-spacing:-0.660000px;}
.lsf{letter-spacing:-0.648000px;}
.ls2f{letter-spacing:-0.600000px;}
.ls18{letter-spacing:-0.594000px;}
.ls30{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.528000px;}
.lsd{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.462000px;}
.ls1d{letter-spacing:-0.396000px;}
.ls2d{letter-spacing:-0.330000px;}
.ls8{letter-spacing:-0.270000px;}
.ls26{letter-spacing:-0.264000px;}
.lse{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.132000px;}
.ls23{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.072000px;}
.ls35{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.378000px;}
.ls24{letter-spacing:0.396000px;}
.ls5{letter-spacing:0.420000px;}
.ls34{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.660000px;}
.ls1c{letter-spacing:0.792000px;}
.ls32{letter-spacing:0.918000px;}
.ls1b{letter-spacing:0.990000px;}
.ls1{letter-spacing:1.056000px;}
.ls21{letter-spacing:1.254000px;}
.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;}
}
.ws11{word-spacing:-66.012540px;}
.wsf{word-spacing:-48.000000px;}
.ws0{word-spacing:-16.848000px;}
.ws52{word-spacing:-16.200000px;}
.ws7e{word-spacing:-15.768000px;}
.wseb{word-spacing:-15.576000px;}
.wsbd{word-spacing:-15.336000px;}
.wsca{word-spacing:-15.312000px;}
.ws7c{word-spacing:-15.192000px;}
.wsee{word-spacing:-15.180000px;}
.ws48{word-spacing:-15.048000px;}
.ws10{word-spacing:-14.976000px;}
.wse8{word-spacing:-14.916000px;}
.ws7d{word-spacing:-14.520000px;}
.wsea{word-spacing:-14.256000px;}
.wsfd{word-spacing:-14.190000px;}
.wsbf{word-spacing:-14.058000px;}
.wsbe{word-spacing:-13.992000px;}
.ws4{word-spacing:-13.980000px;}
.wsc0{word-spacing:-13.926000px;}
.ws2{word-spacing:-13.800000px;}
.wscc{word-spacing:-13.794000px;}
.wsc9{word-spacing:-13.728000px;}
.wscf{word-spacing:-13.662000px;}
.ws3{word-spacing:-13.560000px;}
.wsec{word-spacing:-13.464000px;}
.ws54{word-spacing:-13.200000px;}
.wscb{word-spacing:-13.134000px;}
.ws5{word-spacing:-12.582000px;}
.ws10d{word-spacing:-12.312000px;}
.ws6{word-spacing:-11.934000px;}
.wscd{word-spacing:-11.748000px;}
.wsce{word-spacing:-11.550000px;}
.wsed{word-spacing:-11.088000px;}
.wsfb{word-spacing:-8.580000px;}
.ws1{word-spacing:-7.905480px;}
.wsdb{word-spacing:-7.128000px;}
.wsba{word-spacing:-6.402000px;}
.wsd2{word-spacing:-5.940000px;}
.wsf8{word-spacing:-5.676000px;}
.wsd3{word-spacing:-5.214000px;}
.wsc4{word-spacing:-5.148000px;}
.ws9f{word-spacing:-5.082000px;}
.ws24{word-spacing:-5.016000px;}
.ws20{word-spacing:-4.950000px;}
.ws5f{word-spacing:-4.884000px;}
.wsf4{word-spacing:-3.960000px;}
.ws42{word-spacing:-3.894000px;}
.ws89{word-spacing:-3.762000px;}
.ws105{word-spacing:-3.564000px;}
.wsf9{word-spacing:-3.432000px;}
.wsab{word-spacing:-3.366000px;}
.ws41{word-spacing:-3.234000px;}
.ws2a{word-spacing:-3.168000px;}
.wsa2{word-spacing:-3.102000px;}
.wsc6{word-spacing:-3.036000px;}
.wsfc{word-spacing:-2.970000px;}
.ws94{word-spacing:-2.904000px;}
.wsa7{word-spacing:-2.838000px;}
.ws7f{word-spacing:-2.772000px;}
.wse5{word-spacing:-2.574000px;}
.ws9b{word-spacing:-2.508000px;}
.ws40{word-spacing:-2.442000px;}
.wsb7{word-spacing:-2.376000px;}
.ws69{word-spacing:-2.178000px;}
.wsa9{word-spacing:-1.980000px;}
.ws6b{word-spacing:-1.914000px;}
.ws72{word-spacing:-1.848000px;}
.ws49{word-spacing:-1.782000px;}
.ws92{word-spacing:-1.650000px;}
.wsd5{word-spacing:-1.452000px;}
.wsd8{word-spacing:-1.386000px;}
.ws7b{word-spacing:-1.254000px;}
.ws12{word-spacing:-1.122000px;}
.ws27{word-spacing:-0.990000px;}
.ws6c{word-spacing:-0.924000px;}
.ws10a{word-spacing:-0.918000px;}
.wsf5{word-spacing:-0.858000px;}
.ws107{word-spacing:-0.726000px;}
.ws79{word-spacing:-0.660000px;}
.ws3f{word-spacing:-0.594000px;}
.ws8{word-spacing:-0.576000px;}
.ws9{word-spacing:-0.480000px;}
.ws6a{word-spacing:-0.462000px;}
.ws98{word-spacing:-0.432000px;}
.ws80{word-spacing:-0.330000px;}
.wsd{word-spacing:-0.324000px;}
.ws3d{word-spacing:-0.264000px;}
.ws2b{word-spacing:-0.198000px;}
.ws73{word-spacing:-0.132000px;}
.wsa3{word-spacing:-0.066000px;}
.wse{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws10c{word-spacing:0.054000px;}
.ws2c{word-spacing:0.066000px;}
.wsef{word-spacing:0.108000px;}
.ws15{word-spacing:0.132000px;}
.ws101{word-spacing:0.198000px;}
.ws67{word-spacing:0.216000px;}
.wsf2{word-spacing:0.264000px;}
.ws62{word-spacing:0.330000px;}
.ws3a{word-spacing:0.396000px;}
.wsdf{word-spacing:0.462000px;}
.wsb{word-spacing:0.480000px;}
.ws60{word-spacing:0.504000px;}
.wse4{word-spacing:0.528000px;}
.ws108{word-spacing:0.540000px;}
.ws71{word-spacing:0.594000px;}
.wsc1{word-spacing:0.648000px;}
.ws5a{word-spacing:0.660000px;}
.wsa8{word-spacing:0.726000px;}
.ws5d{word-spacing:0.792000px;}
.wsa0{word-spacing:0.858000px;}
.ws3b{word-spacing:0.864000px;}
.ws9c{word-spacing:0.924000px;}
.ws10b{word-spacing:0.936000px;}
.wsd6{word-spacing:0.990000px;}
.ws23{word-spacing:1.056000px;}
.ws99{word-spacing:1.080000px;}
.ws63{word-spacing:1.122000px;}
.ws34{word-spacing:1.188000px;}
.wsb6{word-spacing:1.320000px;}
.ws4d{word-spacing:1.386000px;}
.wsd4{word-spacing:1.452000px;}
.wsd0{word-spacing:1.458000px;}
.wsad{word-spacing:1.518000px;}
.ws47{word-spacing:1.584000px;}
.ws106{word-spacing:1.620000px;}
.wsc7{word-spacing:1.650000px;}
.ws109{word-spacing:1.674000px;}
.ws5e{word-spacing:1.716000px;}
.ws28{word-spacing:1.782000px;}
.ws95{word-spacing:1.848000px;}
.ws74{word-spacing:1.914000px;}
.wsa6{word-spacing:1.998000px;}
.ws88{word-spacing:2.046000px;}
.wsa5{word-spacing:2.112000px;}
.ws25{word-spacing:2.178000px;}
.ws84{word-spacing:2.244000px;}
.ws29{word-spacing:2.310000px;}
.wsb1{word-spacing:2.376000px;}
.ws26{word-spacing:2.442000px;}
.wsc3{word-spacing:2.508000px;}
.wsae{word-spacing:2.574000px;}
.ws4e{word-spacing:2.640000px;}
.ws2f{word-spacing:2.706000px;}
.ws58{word-spacing:2.772000px;}
.wsb2{word-spacing:2.838000px;}
.ws59{word-spacing:2.970000px;}
.ws2d{word-spacing:3.036000px;}
.ws22{word-spacing:3.102000px;}
.ws8f{word-spacing:3.168000px;}
.ws35{word-spacing:3.234000px;}
.ws2e{word-spacing:3.366000px;}
.ws61{word-spacing:3.432000px;}
.wsa{word-spacing:3.456000px;}
.ws1c{word-spacing:3.564000px;}
.ws8a{word-spacing:3.630000px;}
.ws9a{word-spacing:3.762000px;}
.wsaf{word-spacing:3.828000px;}
.wse9{word-spacing:3.887400px;}
.ws31{word-spacing:3.894000px;}
.ws1e{word-spacing:3.960000px;}
.ws3e{word-spacing:4.092000px;}
.wsf3{word-spacing:4.158000px;}
.ws33{word-spacing:4.224000px;}
.ws85{word-spacing:4.290000px;}
.ws82{word-spacing:4.356000px;}
.ws4a{word-spacing:4.422000px;}
.ws102{word-spacing:4.488000px;}
.ws43{word-spacing:4.554000px;}
.wsb9{word-spacing:4.620000px;}
.ws104{word-spacing:4.752000px;}
.ws9d{word-spacing:4.818000px;}
.ws5b{word-spacing:4.884000px;}
.ws56{word-spacing:4.950000px;}
.ws14{word-spacing:5.016000px;}
.ws97{word-spacing:5.148000px;}
.ws75{word-spacing:5.280000px;}
.wsa4{word-spacing:5.412000px;}
.wsc8{word-spacing:5.478000px;}
.ws55{word-spacing:5.544000px;}
.wsfe{word-spacing:5.610000px;}
.ws30{word-spacing:5.676000px;}
.ws39{word-spacing:5.742000px;}
.ws17{word-spacing:5.808000px;}
.ws83{word-spacing:5.874000px;}
.ws78{word-spacing:5.940000px;}
.ws37{word-spacing:6.072000px;}
.ws19{word-spacing:6.138000px;}
.ws8e{word-spacing:6.204000px;}
.ws57{word-spacing:6.336000px;}
.ws5c{word-spacing:6.402000px;}
.ws1d{word-spacing:6.468000px;}
.wsa1{word-spacing:6.534000px;}
.wsb3{word-spacing:6.864000px;}
.ws50{word-spacing:7.194000px;}
.ws96{word-spacing:7.392000px;}
.wse3{word-spacing:7.590000px;}
.ws21{word-spacing:7.920000px;}
.ws7a{word-spacing:8.118000px;}
.ws81{word-spacing:8.382000px;}
.ws91{word-spacing:8.514000px;}
.ws45{word-spacing:8.580000px;}
.wsb5{word-spacing:8.646000px;}
.wsf1{word-spacing:8.712000px;}
.ws65{word-spacing:9.108000px;}
.wsd9{word-spacing:9.438000px;}
.wsb8{word-spacing:9.504000px;}
.ws51{word-spacing:9.570000px;}
.ws103{word-spacing:9.900000px;}
.wsb4{word-spacing:10.362000px;}
.wsc2{word-spacing:10.428000px;}
.wsc{word-spacing:10.440000px;}
.ws4c{word-spacing:10.626000px;}
.ws46{word-spacing:10.692000px;}
.ws8d{word-spacing:10.758000px;}
.wsda{word-spacing:10.956000px;}
.wsff{word-spacing:11.220000px;}
.ws4b{word-spacing:11.352000px;}
.wsf6{word-spacing:11.484000px;}
.wsbc{word-spacing:11.550000px;}
.wsf7{word-spacing:11.880000px;}
.wse2{word-spacing:11.946000px;}
.ws66{word-spacing:12.012000px;}
.wsfa{word-spacing:12.078000px;}
.wsb0{word-spacing:12.144000px;}
.ws68{word-spacing:12.210000px;}
.ws16{word-spacing:12.342000px;}
.wse0{word-spacing:12.474000px;}
.ws100{word-spacing:12.540000px;}
.wse1{word-spacing:12.606000px;}
.ws1f{word-spacing:12.738000px;}
.ws86{word-spacing:12.804000px;}
.ws1a{word-spacing:13.134000px;}
.ws64{word-spacing:13.332000px;}
.ws36{word-spacing:13.398000px;}
.ws44{word-spacing:13.464000px;}
.wsbb{word-spacing:13.530000px;}
.wsac{word-spacing:14.058000px;}
.ws87{word-spacing:14.190000px;}
.ws18{word-spacing:14.916000px;}
.ws38{word-spacing:15.378000px;}
.ws4f{word-spacing:15.576000px;}
.wsdd{word-spacing:16.038000px;}
.ws8b{word-spacing:16.170000px;}
.wsdc{word-spacing:16.236000px;}
.wsde{word-spacing:16.500000px;}
.wsd1{word-spacing:16.566000px;}
.ws9e{word-spacing:17.358000px;}
.ws32{word-spacing:17.556000px;}
.wsf0{word-spacing:17.886000px;}
.ws13{word-spacing:17.952000px;}
.ws8c{word-spacing:18.480000px;}
.ws90{word-spacing:18.810000px;}
.ws77{word-spacing:19.734000px;}
.wsc5{word-spacing:20.064000px;}
.wsaa{word-spacing:20.328000px;}
.ws1b{word-spacing:20.724000px;}
.ws93{word-spacing:22.110000px;}
.wsd7{word-spacing:23.232000px;}
.wse6{word-spacing:23.892000px;}
.wse7{word-spacing:24.618000px;}
.ws3c{word-spacing:26.664000px;}
.ws76{word-spacing:27.984000px;}
.ws70{word-spacing:184.539000px;}
.ws6e{word-spacing:626.739000px;}
.ws6d{word-spacing:641.139000px;}
.ws6f{word-spacing:753.519000px;}
.ws53{word-spacing:1009.472400px;}
._2a{margin-left:-22.543800px;}
._29{margin-left:-8.979600px;}
._10{margin-left:-7.461600px;}
._d{margin-left:-6.402000px;}
._9{margin-left:-4.830000px;}
._e{margin-left:-3.781800px;}
._3{margin-left:-2.676000px;}
._0{margin-left:-1.320000px;}
._1{width:1.132800px;}
._2{width:2.908800px;}
._5{width:3.962400px;}
._4{width:4.980000px;}
._11{width:6.365400px;}
._c{width:8.200800px;}
._6{width:10.127400px;}
._7{width:11.287200px;}
._a{width:12.939102px;}
._8{width:14.778000px;}
._f{width:16.360800px;}
._26{width:17.375400px;}
._14{width:20.552400px;}
._1d{width:21.637800px;}
._12{width:22.941600px;}
._13{width:24.598200px;}
._28{width:25.735200px;}
._27{width:26.825400px;}
._15{width:28.242000px;}
._2b{width:62.104200px;}
._25{width:63.114000px;}
._b{width:78.228000px;}
._1b{width:123.399000px;}
._1a{width:137.799000px;}
._21{width:146.117400px;}
._2e{width:162.872400px;}
._2d{width:167.336400px;}
._1e{width:169.836600px;}
._2c{width:213.566400px;}
._1c{width:250.179000px;}
._17{width:293.451600px;}
._23{width:351.639600px;}
._22{width:366.039600px;}
._20{width:425.979600px;}
._24{width:478.419600px;}
._18{width:487.023000px;}
._1f{width:633.168600px;}
._19{width:849.859800px;}
._16{width:930.240000px;}
.fcb{color:rgb(74,178,88);}
.fca{color:rgb(54,170,69);}
.fc9{color:rgb(79,76,77);}
.fc8{color:rgb(94,187,106);}
.fc7{color:rgb(35,31,32);}
.fc6{color:rgb(92,92,92);}
.fc5{color:rgb(53,49,50);}
.fc4{color:rgb(155,155,155);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(203,203,203);}
.fc1{color:rgb(57,53,54);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:216.000000px;}
.fs8{font-size:300.057000px;}
.y0{bottom:0.000000px;}
.y22{bottom:75.144750px;}
.y322{bottom:75.214050px;}
.y3{bottom:80.526900px;}
.y2{bottom:93.058800px;}
.y1{bottom:94.585050px;}
.y114{bottom:99.574200px;}
.y9d{bottom:103.587000px;}
.y21d{bottom:111.016050px;}
.yc8{bottom:111.872250px;}
.y1d2{bottom:117.087000px;}
.y142{bottom:117.420300px;}
.y113{bottom:119.074200px;}
.y4f{bottom:119.499000px;}
.y21{bottom:121.424700px;}
.y191{bottom:122.165850px;}
.y9c{bottom:123.087000px;}
.y2af{bottom:123.338250px;}
.y7b{bottom:124.587000px;}
.y1ea{bottom:125.697300px;}
.y249{bottom:126.332550px;}
.y2ae{bottom:129.005700px;}
.y20c{bottom:130.516050px;}
.y1af{bottom:130.587000px;}
.yc7{bottom:131.372250px;}
.y20{bottom:136.424850px;}
.y1d1{bottom:136.587000px;}
.y141{bottom:136.920300px;}
.y112{bottom:138.574200px;}
.y4e{bottom:138.999000px;}
.yeb{bottom:139.587000px;}
.y2d3{bottom:139.681500px;}
.y190{bottom:141.665850px;}
.y9b{bottom:142.587000px;}
.y7a{bottom:144.087000px;}
.y248{bottom:144.332550px;}
.y1e9{bottom:145.197300px;}
.y31a{bottom:145.356300px;}
.y2ad{bottom:147.005700px;}
.y20b{bottom:150.016050px;}
.y1ae{bottom:150.087000px;}
.yc6{bottom:150.872250px;}
.y166{bottom:151.374600px;}
.y1d0{bottom:156.087000px;}
.y140{bottom:156.420300px;}
.y2d2{bottom:157.681500px;}
.y111{bottom:158.074200px;}
.y4d{bottom:158.499000px;}
.yea{bottom:159.087000px;}
.y18f{bottom:161.165850px;}
.y247{bottom:162.332550px;}
.y79{bottom:163.587000px;}
.y1e8{bottom:164.697300px;}
.y319{bottom:169.023900px;}
.y20a{bottom:169.516050px;}
.y1ad{bottom:169.587000px;}
.yc5{bottom:170.372250px;}
.y2ac{bottom:170.673300px;}
.y165{bottom:170.874600px;}
.y9a{bottom:171.087000px;}
.y1cf{bottom:175.587000px;}
.y2d1{bottom:175.681500px;}
.y2ab{bottom:176.340750px;}
.y1f{bottom:177.324150px;}
.y110{bottom:177.574200px;}
.y4c{bottom:177.999000px;}
.ye9{bottom:178.587000px;}
.y246{bottom:180.332550px;}
.y18e{bottom:180.665850px;}
.y21c{bottom:182.271900px;}
.y78{bottom:183.087000px;}
.y1e7{bottom:184.197300px;}
.y13f{bottom:184.920300px;}
.y318{bottom:187.023900px;}
.yc4{bottom:189.872250px;}
.y164{bottom:190.374600px;}
.y1e{bottom:192.324150px;}
.y2d0{bottom:193.681500px;}
.y2aa{bottom:194.340750px;}
.y1ac{bottom:195.087000px;}
.y4b{bottom:197.499000px;}
.ye8{bottom:198.087000px;}
.y245{bottom:198.332550px;}
.y18d{bottom:200.165850px;}
.y1ce{bottom:201.087000px;}
.y209{bottom:201.771900px;}
.y77{bottom:202.587000px;}
.y10f{bottom:203.074200px;}
.y13e{bottom:204.420300px;}
.y1d{bottom:207.324150px;}
.y2cf{bottom:211.681500px;}
.y99{bottom:213.087000px;}
.y1ab{bottom:214.587000px;}
.y244{bottom:216.332550px;}
.y1e6{bottom:216.453150px;}
.y4a{bottom:216.999000px;}
.y317{bottom:217.023900px;}
.ye7{bottom:217.587000px;}
.y2f2{bottom:217.724100px;}
.y2a9{bottom:218.008200px;}
.y163{bottom:218.874600px;}
.y18c{bottom:219.665850px;}
.y1cd{bottom:220.587000px;}
.y208{bottom:221.271900px;}
.y1c{bottom:222.324150px;}
.ycc{bottom:222.375000px;}
.y10e{bottom:222.574200px;}
.y13d{bottom:223.920300px;}
.yc3{bottom:224.559750px;}
.y76{bottom:228.087000px;}
.y2ce{bottom:229.681500px;}
.y1aa{bottom:234.087000px;}
.y243{bottom:234.332550px;}
.y316{bottom:235.023900px;}
.y2f1{bottom:235.724100px;}
.y1e5{bottom:235.953150px;}
.y49{bottom:236.499000px;}
.ye6{bottom:237.087000px;}
.ycb{bottom:237.375000px;}
.y162{bottom:238.374600px;}
.y18b{bottom:239.165850px;}
.y272{bottom:240.000000px;}
.y1cc{bottom:240.087000px;}
.y207{bottom:240.771900px;}
.y2a8{bottom:241.675650px;}
.y10d{bottom:242.074200px;}
.yc1{bottom:242.559750px;}
.y98{bottom:243.087000px;}
.y13c{bottom:243.420300px;}
.y75{bottom:247.587000px;}
.yca{bottom:252.375000px;}
.y315{bottom:253.023900px;}
.y2cd{bottom:253.349100px;}
.y21b{bottom:253.527900px;}
.y2f0{bottom:253.724100px;}
.y48{bottom:255.999000px;}
.ye5{bottom:256.587000px;}
.y161{bottom:257.874600px;}
.y271{bottom:258.000000px;}
.y242{bottom:258.561000px;}
.y18a{bottom:258.665850px;}
.y1cb{bottom:259.587000px;}
.y206{bottom:260.272050px;}
.yc2{bottom:260.559750px;}
.y10c{bottom:261.574200px;}
.y1a9{bottom:262.587000px;}
.y2a7{bottom:265.343100px;}
.y1b{bottom:265.824150px;}
.y74{bottom:267.087000px;}
.yc9{bottom:267.375000px;}
.y1e4{bottom:268.209150px;}
.y314{bottom:271.023900px;}
.y2ef{bottom:271.724100px;}
.y13b{bottom:271.920300px;}
.y21a{bottom:273.027900px;}
.y97{bottom:273.087000px;}
.y47{bottom:275.499000px;}
.y270{bottom:276.000000px;}
.y2cc{bottom:277.016550px;}
.y189{bottom:278.165850px;}
.y1ca{bottom:279.087000px;}
.y1a8{bottom:282.087000px;}
.y241{bottom:282.228450px;}
.y160{bottom:283.374600px;}
.yc0{bottom:284.227200px;}
.ye4{bottom:285.087000px;}
.y73{bottom:286.587000px;}
.y10b{bottom:287.074200px;}
.y1e3{bottom:287.709150px;}
.y2a6{bottom:289.010700px;}
.y313{bottom:289.023900px;}
.y2ee{bottom:289.724100px;}
.y13a{bottom:291.420300px;}
.y205{bottom:292.527900px;}
.y26f{bottom:294.000000px;}
.y46{bottom:294.999000px;}
.y2cb{bottom:295.016550px;}
.y1c9{bottom:298.587000px;}
.y240{bottom:300.228450px;}
.y1a7{bottom:301.587000px;}
.ybe{bottom:302.227200px;}
.y15f{bottom:302.874600px;}
.y1a{bottom:303.076200px;}
.y96{bottom:303.087000px;}
.y188{bottom:303.665850px;}
.y72{bottom:306.087000px;}
.y10a{bottom:306.574200px;}
.y312{bottom:307.023900px;}
.y139{bottom:310.920300px;}
.y26e{bottom:312.000000px;}
.y204{bottom:312.027900px;}
.y2a5{bottom:312.678150px;}
.y2ca{bottom:313.016550px;}
.y2ed{bottom:313.391550px;}
.y1e2{bottom:316.587000px;}
.y1c8{bottom:318.087000px;}
.y23f{bottom:318.228450px;}
.y19{bottom:319.576200px;}
.ybf{bottom:320.227200px;}
.y45{bottom:320.499000px;}
.y1a6{bottom:321.087000px;}
.y15e{bottom:322.374600px;}
.y187{bottom:323.165850px;}
.ye3{bottom:324.087000px;}
.y219{bottom:324.783900px;}
.y311{bottom:325.023900px;}
.y71{bottom:325.587000px;}
.y109{bottom:326.074200px;}
.y26d{bottom:330.000000px;}
.y138{bottom:330.420300px;}
.y2c9{bottom:331.016550px;}
.y203{bottom:331.527900px;}
.y95{bottom:333.087000px;}
.y18{bottom:336.076200px;}
.y23e{bottom:336.228450px;}
.y2a4{bottom:336.345600px;}
.y2ec{bottom:337.059000px;}
.y1c7{bottom:337.587000px;}
.y44{bottom:339.999000px;}
.y15d{bottom:341.874600px;}
.y310{bottom:343.023900px;}
.ye2{bottom:343.587000px;}
.ybd{bottom:343.894650px;}
.y218{bottom:344.283900px;}
.y70{bottom:345.087000px;}
.y108{bottom:345.574200px;}
.y26c{bottom:348.000000px;}
.y2c8{bottom:349.016550px;}
.y17{bottom:352.576200px;}
.y1a5{bottom:352.587000px;}
.y23d{bottom:354.228450px;}
.y186{bottom:354.665850px;}
.y2eb{bottom:355.059000px;}
.y1c6{bottom:357.087000px;}
.y137{bottom:358.920300px;}
.y43{bottom:359.499000px;}
.y2a3{bottom:360.013050px;}
.y30f{bottom:361.023900px;}
.y15c{bottom:361.374600px;}
.ybc{bottom:361.894650px;}
.y94{bottom:363.087000px;}
.y202{bottom:363.783900px;}
.y6f{bottom:364.587000px;}
.y107{bottom:365.074200px;}
.y2a2{bottom:365.680500px;}
.y26b{bottom:366.000000px;}
.y16{bottom:369.076200px;}
.yb8{bottom:370.894650px;}
.y1a4{bottom:372.087000px;}
.y23c{bottom:372.228450px;}
.y2c7{bottom:372.684000px;}
.y2ea{bottom:373.059000px;}
.y42{bottom:378.999000px;}
.ybb{bottom:379.894650px;}
.ye1{bottom:382.587000px;}
.y201{bottom:383.283900px;}
.y2a1{bottom:383.680500px;}
.y26a{bottom:384.000000px;}
.y6e{bottom:384.087000px;}
.y15{bottom:385.576200px;}
.y1c5{bottom:385.587000px;}
.y185{bottom:386.165850px;}
.yb7{bottom:388.894650px;}
.y15b{bottom:389.874600px;}
.y23b{bottom:390.228450px;}
.y30e{bottom:391.023900px;}
.y2e9{bottom:391.059000px;}
.y1a3{bottom:391.587000px;}
.y136{bottom:391.920300px;}
.y93{bottom:393.087000px;}
.y217{bottom:396.039750px;}
.y2c6{bottom:396.351450px;}
.yba{bottom:397.894650px;}
.y41{bottom:398.499000px;}
.y106{bottom:399.761700px;}
.y11a{bottom:399.953700px;}
.y269{bottom:402.000000px;}
.ye0{bottom:402.087000px;}
.y200{bottom:402.783900px;}
.y6d{bottom:403.587000px;}
.y184{bottom:405.665850px;}
.y2a0{bottom:407.348100px;}
.y30d{bottom:409.023900px;}
.y2e8{bottom:409.059000px;}
.y14{bottom:409.328100px;}
.y135{bottom:411.420300px;}
.y23a{bottom:413.895900px;}
.y2c5{bottom:414.351450px;}
.y119{bottom:414.953700px;}
.y216{bottom:415.539750px;}
.yb9{bottom:415.894650px;}
.y40{bottom:417.999000px;}
.y268{bottom:420.000000px;}
.y1a2{bottom:420.087000px;}
.ydf{bottom:421.587000px;}
.y6c{bottom:423.087000px;}
.y105{bottom:423.429150px;}
.y1c4{bottom:424.587000px;}
.y30c{bottom:427.023900px;}
.y2e7{bottom:427.059000px;}
.y15a{bottom:428.874600px;}
.y118{bottom:429.953700px;}
.y134{bottom:430.920300px;}
.y29f{bottom:431.015550px;}
.y1e1{bottom:432.087000px;}
.y2c4{bottom:432.351450px;}
.y1ff{bottom:435.039750px;}
.y3f{bottom:437.499000px;}
.y239{bottom:437.563350px;}
.y4{bottom:439.500000px;}
.yb6{bottom:439.562100px;}
.y1a1{bottom:439.587000px;}
.y183{bottom:440.165850px;}
.yde{bottom:441.087000px;}
.y6b{bottom:442.587000px;}
.y267{bottom:444.061500px;}
.y1c3{bottom:444.087000px;}
.y30b{bottom:445.023900px;}
.y2e6{bottom:445.059000px;}
.y13{bottom:445.328100px;}
.y104{bottom:447.096750px;}
.y159{bottom:448.374600px;}
.yb3{bottom:448.562100px;}
.y2c3{bottom:450.351450px;}
.y1e0{bottom:451.587000px;}
.y92{bottom:453.087000px;}
.y1fe{bottom:454.539750px;}
.y29e{bottom:454.683000px;}
.y238{bottom:455.563350px;}
.y3e{bottom:456.999000px;}
.yb5{bottom:457.562100px;}
.y1a0{bottom:459.087000px;}
.ydd{bottom:460.587000px;}
.y6a{bottom:462.087000px;}
.y133{bottom:462.420300px;}
.y30a{bottom:463.023900px;}
.y12{bottom:463.328100px;}
.y1c2{bottom:463.587000px;}
.yb2{bottom:466.562100px;}
.y182{bottom:467.165850px;}
.y215{bottom:467.295600px;}
.y266{bottom:467.728950px;}
.y158{bottom:467.874600px;}
.y2c2{bottom:468.351450px;}
.y2e5{bottom:468.726450px;}
.y103{bottom:470.764200px;}
.y1df{bottom:471.087000px;}
.y29d{bottom:472.683000px;}
.y237{bottom:473.563350px;}
.yb4{bottom:475.562100px;}
.y19f{bottom:478.587000px;}
.y102{bottom:479.764200px;}
.y91{bottom:480.087000px;}
.y132{bottom:480.420300px;}
.y69{bottom:481.587000px;}
.y1c1{bottom:483.087000px;}
.y3d{bottom:485.499000px;}
.y265{bottom:485.728950px;}
.y181{bottom:486.665850px;}
.y1fd{bottom:486.795600px;}
.y157{bottom:487.374600px;}
.ydc{bottom:489.087000px;}
.y1de{bottom:490.587000px;}
.y29c{bottom:490.683000px;}
.y236{bottom:491.563350px;}
.y2c1{bottom:492.018900px;}
.y2e4{bottom:492.393900px;}
.y309{bottom:492.878850px;}
.y19e{bottom:498.087000px;}
.yb1{bottom:499.229700px;}
.y90{bottom:499.587000px;}
.y11{bottom:500.580000px;}
.y68{bottom:501.087000px;}
.y1c0{bottom:502.587000px;}
.y264{bottom:503.728950px;}
.y1fc{bottom:506.295600px;}
.y156{bottom:506.874600px;}
.yae{bottom:508.229700px;}
.y29b{bottom:508.683000px;}
.y235{bottom:509.563350px;}
.y1dd{bottom:510.087000px;}
.y2e3{bottom:510.393900px;}
.y131{bottom:510.420300px;}
.y101{bottom:512.431650px;}
.y2c0{bottom:515.686500px;}
.y10{bottom:517.080000px;}
.yb0{bottom:517.229700px;}
.y180{bottom:518.165850px;}
.y8f{bottom:519.087000px;}
.y67{bottom:520.587000px;}
.y263{bottom:521.728950px;}
.ydb{bottom:522.087000px;}
.y3c{bottom:524.499000px;}
.y1fb{bottom:525.795600px;}
.yad{bottom:526.229700px;}
.y155{bottom:526.374600px;}
.y19d{bottom:526.587000px;}
.y29a{bottom:526.683000px;}
.y234{bottom:527.563350px;}
.y2e2{bottom:528.393900px;}
.y130{bottom:528.420300px;}
.y1bf{bottom:531.087000px;}
.yf{bottom:533.580000px;}
.y2bf{bottom:533.686500px;}
.yaf{bottom:535.229700px;}
.y1dc{bottom:535.587000px;}
.y17f{bottom:537.665850px;}
.y214{bottom:538.551600px;}
.y8e{bottom:538.587000px;}
.y262{bottom:539.728950px;}
.y66{bottom:540.087000px;}
.y308{bottom:541.066350px;}
.yda{bottom:541.587000px;}
.y100{bottom:542.286600px;}
.y3b{bottom:543.999000px;}
.y299{bottom:544.683000px;}
.y233{bottom:545.563350px;}
.y154{bottom:545.874600px;}
.y2e1{bottom:546.393900px;}
.y12f{bottom:546.420300px;}
.ye{bottom:550.080000px;}
.y1be{bottom:550.587000px;}
.y2be{bottom:551.686500px;}
.y1db{bottom:555.087000px;}
.y261{bottom:557.728950px;}
.y1fa{bottom:558.051600px;}
.y8d{bottom:558.087000px;}
.yac{bottom:558.897150px;}
.y19c{bottom:559.587000px;}
.yd9{bottom:561.087000px;}
.yff{bottom:561.786600px;}
.y298{bottom:562.683000px;}
.y3a{bottom:563.499000px;}
.y232{bottom:563.563350px;}
.y2e0{bottom:564.393900px;}
.y307{bottom:565.066350px;}
.y153{bottom:565.374600px;}
.yd{bottom:566.580000px;}
.y65{bottom:568.587000px;}
.y17e{bottom:569.165850px;}
.y2bd{bottom:569.686500px;}
.y1bd{bottom:570.087000px;}
.y12e{bottom:573.420300px;}
.y1da{bottom:574.587000px;}
.y260{bottom:575.728950px;}
.yaa{bottom:576.897150px;}
.y1f9{bottom:577.551600px;}
.y19b{bottom:579.087000px;}
.yd8{bottom:580.587000px;}
.y297{bottom:580.683000px;}
.y2df{bottom:582.393900px;}
.y39{bottom:582.999000px;}
.y306{bottom:583.066350px;}
.yc{bottom:583.080000px;}
.y8c{bottom:583.587000px;}
.y152{bottom:584.874600px;}
.y231{bottom:587.230800px;}
.y2bc{bottom:587.686500px;}
.y17d{bottom:588.665850px;}
.y64{bottom:589.587000px;}
.yfe{bottom:590.286600px;}
.y12d{bottom:592.920300px;}
.y25f{bottom:593.728950px;}
.y1d9{bottom:594.087000px;}
.ya9{bottom:594.897150px;}
.y1f8{bottom:597.051600px;}
.y19a{bottom:598.587000px;}
.y296{bottom:598.683000px;}
.y285{bottom:599.396400px;}
.yb{bottom:599.580000px;}
.yd7{bottom:600.087000px;}
.y38{bottom:602.499000px;}
.y8b{bottom:603.087000px;}
.y2bb{bottom:605.686500px;}
.y2de{bottom:606.061500px;}
.y305{bottom:607.066350px;}
.y213{bottom:609.807450px;}
.y230{bottom:610.898400px;}
.y25e{bottom:611.728950px;}
.y12c{bottom:612.420300px;}
.yab{bottom:612.897150px;}
.y1d8{bottom:613.587000px;}
.y1f7{bottom:616.551600px;}
.y295{bottom:616.683000px;}
.y284{bottom:617.396400px;}
.y199{bottom:618.087000px;}
.y168{bottom:618.091500px;}
.y151{bottom:619.562100px;}
.yd6{bottom:619.587000px;}
.y37{bottom:621.999000px;}
.y8a{bottom:622.587000px;}
.y17c{bottom:623.165850px;}
.ya{bottom:623.332050px;}
.y304{bottom:625.066350px;}
.y63{bottom:628.587000px;}
.y22f{bottom:628.898400px;}
.yfd{bottom:629.286600px;}
.y212{bottom:629.307450px;}
.y2ba{bottom:629.353950px;}
.y2dd{bottom:629.728950px;}
.y12b{bottom:631.920300px;}
.y1d7{bottom:633.087000px;}
.y167{bottom:633.091500px;}
.y294{bottom:634.683000px;}
.y25d{bottom:635.396400px;}
.ya8{bottom:636.564600px;}
.y198{bottom:637.587000px;}
.yd5{bottom:639.087000px;}
.y283{bottom:641.063850px;}
.y36{bottom:641.499000px;}
.y89{bottom:642.087000px;}
.y303{bottom:643.066350px;}
.y150{bottom:643.229550px;}
.y1bc{bottom:643.587000px;}
.y22e{bottom:646.898400px;}
.y2b9{bottom:647.353950px;}
.y2dc{bottom:647.728950px;}
.y62{bottom:648.087000px;}
.yfc{bottom:648.786600px;}
.y1f6{bottom:648.807450px;}
.y17b{bottom:650.165850px;}
.y12a{bottom:651.420300px;}
.y293{bottom:658.350450px;}
.y1d6{bottom:658.587000px;}
.y25c{bottom:659.063850px;}
.ya7{bottom:660.232050px;}
.y35{bottom:660.999000px;}
.y302{bottom:661.066350px;}
.y21e{bottom:661.563300px;}
.y88{bottom:661.587000px;}
.y197{bottom:663.087000px;}
.yd4{bottom:664.587000px;}
.y282{bottom:664.731300px;}
.y22d{bottom:664.898400px;}
.y2db{bottom:665.728950px;}
.y14f{bottom:666.897000px;}
.y61{bottom:667.587000px;}
.yfb{bottom:668.286600px;}
.y1f5{bottom:668.307450px;}
.y17a{bottom:669.665850px;}
.y129{bottom:670.920300px;}
.y2b8{bottom:671.021400px;}
.y25b{bottom:677.063850px;}
.y1d5{bottom:678.087000px;}
.y301{bottom:679.066350px;}
.y34{bottom:680.499000px;}
.y211{bottom:681.063300px;}
.y87{bottom:681.087000px;}
.y196{bottom:682.587000px;}
.y281{bottom:682.731300px;}
.y22c{bottom:682.898400px;}
.y2da{bottom:683.728950px;}
.yd3{bottom:684.087000px;}
.y60{bottom:687.087000px;}
.yfa{bottom:687.786600px;}
.y292{bottom:688.205400px;}
.y2b7{bottom:689.021400px;}
.y179{bottom:689.165850px;}
.ya6{bottom:690.087000px;}
.y128{bottom:690.420300px;}
.y14e{bottom:690.564450px;}
.y25a{bottom:695.063850px;}
.y300{bottom:697.066350px;}
.y1d4{bottom:697.587000px;}
.y33{bottom:699.999000px;}
.y1f4{bottom:700.563300px;}
.y86{bottom:700.587000px;}
.y280{bottom:700.731300px;}
.y22b{bottom:700.898400px;}
.y2d9{bottom:701.728950px;}
.y1bb{bottom:702.087000px;}
.yd2{bottom:703.587000px;}
.y5f{bottom:706.587000px;}
.y2b6{bottom:707.021400px;}
.yf9{bottom:707.286600px;}
.y178{bottom:708.665850px;}
.ya5{bottom:709.587000px;}
.y259{bottom:713.063850px;}
.y195{bottom:714.087000px;}
.y14d{bottom:714.232050px;}
.y1d3{bottom:717.087000px;}
.y27f{bottom:718.731300px;}
.y22a{bottom:718.898400px;}
.y32{bottom:719.499000px;}
.y2d8{bottom:719.728950px;}
.y210{bottom:720.063300px;}
.y85{bottom:720.087000px;}
.y2ff{bottom:721.066350px;}
.y1ba{bottom:721.587000px;}
.y127{bottom:721.920300px;}
.yd1{bottom:723.087000px;}
.y5e{bottom:726.087000px;}
.yf8{bottom:726.786600px;}
.y177{bottom:728.165850px;}
.ya4{bottom:729.087000px;}
.y258{bottom:731.063850px;}
.y1f3{bottom:732.819300px;}
.y194{bottom:733.587000px;}
.y291{bottom:736.392900px;}
.y27e{bottom:736.731300px;}
.y2b5{bottom:736.876350px;}
.y2fe{bottom:739.066350px;}
.y84{bottom:739.587000px;}
.y31{bottom:741.999000px;}
.yd0{bottom:742.587000px;}
.y2d7{bottom:743.396400px;}
.y14c{bottom:744.087000px;}
.y5d{bottom:745.587000px;}
.yf7{bottom:746.286600px;}
.y1b9{bottom:747.087000px;}
.ya3{bottom:748.587000px;}
.y229{bottom:748.753350px;}
.y257{bottom:749.063850px;}
.y126{bottom:751.920300px;}
.y1f2{bottom:752.319300px;}
.y176{bottom:753.665850px;}
.y27d{bottom:754.731300px;}
.y2fd{bottom:757.066350px;}
.y290{bottom:760.060500px;}
.y30{bottom:761.499000px;}
.y14b{bottom:763.587000px;}
.y83{bottom:765.087000px;}
.yf6{bottom:765.786600px;}
.y1b8{bottom:766.587000px;}
.y256{bottom:767.063850px;}
.ya2{bottom:768.087000px;}
.y125{bottom:769.920300px;}
.y5c{bottom:771.087000px;}
.y321{bottom:771.395400px;}
.y1f1{bottom:771.819150px;}
.y27c{bottom:772.731300px;}
.y175{bottom:773.165850px;}
.y2fc{bottom:775.066350px;}
.y28f{bottom:778.060500px;}
.y2f{bottom:780.999000px;}
.y14a{bottom:783.087000px;}
.y82{bottom:784.587000px;}
.y2b4{bottom:785.063850px;}
.yf5{bottom:785.286600px;}
.y1b7{bottom:786.087000px;}
.ya1{bottom:787.587000px;}
.y228{bottom:787.753350px;}
.y5b{bottom:790.587000px;}
.y255{bottom:790.731300px;}
.y20f{bottom:791.319150px;}
.y174{bottom:792.665850px;}
.y320{bottom:795.062850px;}
.y193{bottom:795.087000px;}
.y124{bottom:796.920300px;}
.y2fb{bottom:799.066350px;}
.y2e{bottom:800.499000px;}
.y28e{bottom:801.727950px;}
.y149{bottom:802.587000px;}
.y2b3{bottom:803.063850px;}
.y1f0{bottom:804.075150px;}
.y81{bottom:804.087000px;}
.ya0{bottom:807.087000px;}
.y227{bottom:807.253350px;}
.y27b{bottom:808.731300px;}
.y117{bottom:809.170350px;}
.y5a{bottom:810.087000px;}
.y173{bottom:812.165850px;}
.y31f{bottom:813.062850px;}
.y254{bottom:814.398900px;}
.y1b6{bottom:814.587000px;}
.y123{bottom:816.420300px;}
.y2fa{bottom:817.066350px;}
.yf4{bottom:819.974100px;}
.y2d{bottom:819.999000px;}
.y2b2{bottom:821.063850px;}
.y1ef{bottom:823.575150px;}
.y80{bottom:823.587000px;}
.y116{bottom:824.170350px;}
.y28d{bottom:825.395400px;}
.y9f{bottom:826.587000px;}
.y27a{bottom:826.731300px;}
.y226{bottom:826.753350px;}
.y59{bottom:829.587000px;}
.y148{bottom:831.087000px;}
.y172{bottom:831.665850px;}
.y253{bottom:832.398900px;}
.y1b5{bottom:834.087000px;}
.y2f9{bottom:835.066350px;}
.y122{bottom:835.920300px;}
.y31e{bottom:836.730450px;}
.y2d6{bottom:839.063850px;}
.y115{bottom:839.170350px;}
.y2c{bottom:839.499000px;}
.y9{bottom:842.332050px;}
.y1ee{bottom:843.075150px;}
.y7f{bottom:843.087000px;}
.y28c{bottom:843.395400px;}
.yf3{bottom:843.641550px;}
.y2b1{bottom:844.731300px;}
.ycf{bottom:846.087000px;}
.y225{bottom:846.253350px;}
.y58{bottom:849.087000px;}
.y252{bottom:850.398900px;}
.y171{bottom:851.165850px;}
.y2f8{bottom:853.066350px;}
.y1b4{bottom:853.587000px;}
.y31d{bottom:854.730450px;}
.y9e{bottom:855.087000px;}
.y121{bottom:855.420300px;}
.y2d5{bottom:857.063850px;}
.y2b{bottom:858.999000px;}
.y20e{bottom:862.575150px;}
.y7e{bottom:862.587000px;}
.y2b0{bottom:862.731300px;}
.yce{bottom:865.587000px;}
.y224{bottom:865.753350px;}
.y28b{bottom:867.062850px;}
.yf2{bottom:867.309150px;}
.y251{bottom:868.398900px;}
.y57{bottom:868.587000px;}
.y147{bottom:870.087000px;}
.y170{bottom:870.665850px;}
.y2f7{bottom:871.066350px;}
.y31c{bottom:872.730450px;}
.y1b3{bottom:873.087000px;}
.y279{bottom:874.066350px;}
.y120{bottom:874.920300px;}
.y1ed{bottom:875.331150px;}
.y8{bottom:878.332050px;}
.y2a{bottom:878.499000px;}
.y192{bottom:880.587000px;}
.y2d4{bottom:880.731300px;}
.y7d{bottom:882.087000px;}
.y223{bottom:885.253350px;}
.y250{bottom:886.398900px;}
.y56{bottom:888.087000px;}
.y146{bottom:889.587000px;}
.y16f{bottom:890.165850px;}
.y28a{bottom:890.730450px;}
.yf1{bottom:890.976600px;}
.y278{bottom:892.066350px;}
.y1b2{bottom:892.587000px;}
.ycd{bottom:894.087000px;}
.y1ec{bottom:894.831150px;}
.y2f6{bottom:895.066350px;}
.y31b{bottom:896.397900px;}
.y29{bottom:897.999000px;}
.y7{bottom:899.332050px;}
.y7c{bottom:901.587000px;}
.y11f{bottom:903.420300px;}
.y24f{bottom:904.398900px;}
.y222{bottom:904.753350px;}
.y55{bottom:907.587000px;}
.y16e{bottom:909.665850px;}
.y277{bottom:910.066350px;}
.y1b1{bottom:912.087000px;}
.y2f5{bottom:913.066350px;}
.y1eb{bottom:914.331150px;}
.y289{bottom:914.397900px;}
.yf0{bottom:914.644050px;}
.y27{bottom:917.499000px;}
.y145{bottom:918.087000px;}
.y24e{bottom:922.398900px;}
.y54{bottom:927.087000px;}
.y276{bottom:928.066350px;}
.y2f4{bottom:931.066350px;}
.y20d{bottom:933.831150px;}
.y16d{bottom:935.165850px;}
.y11e{bottom:936.420300px;}
.y28{bottom:936.999000px;}
.y144{bottom:937.587000px;}
.y288{bottom:938.065350px;}
.y24d{bottom:940.398900px;}
.y1b0{bottom:940.587000px;}
.y6{bottom:944.332050px;}
.yef{bottom:944.499000px;}
.y221{bottom:945.253350px;}
.y275{bottom:946.066350px;}
.y53{bottom:946.587000px;}
.y16c{bottom:954.665850px;}
.y2f3{bottom:955.066350px;}
.y11d{bottom:955.920300px;}
.y287{bottom:956.065350px;}
.y143{bottom:957.087000px;}
.y24c{bottom:958.398900px;}
.yee{bottom:963.999000px;}
.y274{bottom:964.066350px;}
.y52{bottom:966.087000px;}
.y5{bottom:971.332050px;}
.y220{bottom:972.253350px;}
.y286{bottom:974.065350px;}
.y16b{bottom:974.165850px;}
.y11c{bottom:975.420300px;}
.y24b{bottom:976.398900px;}
.y273{bottom:982.066350px;}
.yed{bottom:983.499000px;}
.y51{bottom:985.587000px;}
.y16a{bottom:993.665850px;}
.y26{bottom:993.999000px;}
.y21f{bottom:999.253350px;}
.y24a{bottom:1000.066350px;}
.y11b{bottom:1003.920300px;}
.y50{bottom:1005.087000px;}
.yec{bottom:1011.999000px;}
.y169{bottom:1013.165850px;}
.y25{bottom:1067.752650px;}
.y24{bottom:1082.752650px;}
.y23{bottom:1096.252650px;}
.hc{height:22.458595px;}
.hf{height:34.920000px;}
.h2{height:35.352000px;}
.he{height:35.568000px;}
.h17{height:36.914062px;}
.hb{height:38.522461px;}
.ha{height:39.287109px;}
.h7{height:40.781250px;}
.h8{height:41.015625px;}
.h1{height:42.390000px;}
.h16{height:42.421875px;}
.h15{height:42.568359px;}
.h9{height:42.802734px;}
.h14{height:43.212891px;}
.h6{height:43.926270px;}
.hd{height:46.341600px;}
.h1a{height:46.470703px;}
.h13{height:46.664062px;}
.h12{height:46.825195px;}
.h19{height:47.534180px;}
.h10{height:51.855469px;}
.h5{height:53.028000px;}
.h4{height:69.140625px;}
.h18{height:78.568359px;}
.h3{height:159.084000px;}
.h11{height:212.882237px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1f{left:33.000000px;}
.x12{left:34.973850px;}
.x1c{left:36.443850px;}
.x17{left:37.617150px;}
.x1a{left:43.596000px;}
.x18{left:50.036100px;}
.x1b{left:54.551550px;}
.x10{left:77.517300px;}
.x11{left:88.459650px;}
.x19{left:96.079800px;}
.x1{left:100.116600px;}
.x4{left:170.969550px;}
.x5{left:199.500000px;}
.xa{left:204.471300px;}
.xe{left:210.750000px;}
.x15{left:213.084300px;}
.x22{left:225.750000px;}
.x1e{left:230.194200px;}
.x25{left:234.939000px;}
.xb{left:240.293550px;}
.x26{left:242.520300px;}
.x2c{left:243.972450px;}
.xc{left:246.991050px;}
.x34{left:258.972450px;}
.x20{left:261.750000px;}
.x1d{left:264.750000px;}
.x2d{left:271.580850px;}
.x2e{left:278.447250px;}
.x21{left:279.750000px;}
.x29{left:291.472650px;}
.x35{left:297.384150px;}
.x2b{left:306.322050px;}
.x16{left:311.849100px;}
.x27{left:323.017200px;}
.x31{left:329.969550px;}
.x32{left:333.946500px;}
.x30{left:335.206350px;}
.x3{left:342.010650px;}
.xd{left:343.925550px;}
.x14{left:367.078050px;}
.x13{left:399.341250px;}
.x33{left:402.131400px;}
.x7{left:409.913700px;}
.x2f{left:427.403550px;}
.x2{left:451.074300px;}
.x2a{left:471.261750px;}
.x28{left:481.094250px;}
.x24{left:491.824200px;}
.x23{left:496.115700px;}
.xf{left:526.125000px;}
.x9{left:566.054700px;}
.x6{left:620.640900px;}
.x8{left:710.497050px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.512533pt;}
.v1{vertical-align:17.760000pt;}
.v5{vertical-align:32.000000pt;}
.v4{vertical-align:138.666667pt;}
.ls25{letter-spacing:-7.157333pt;}
.ls2c{letter-spacing:-4.224000pt;}
.ls2b{letter-spacing:-3.989333pt;}
.ls27{letter-spacing:-3.520000pt;}
.ls3{letter-spacing:-3.072000pt;}
.ls29{letter-spacing:-3.050667pt;}
.ls22{letter-spacing:-2.640000pt;}
.ls20{letter-spacing:-2.464000pt;}
.ls12{letter-spacing:-1.776000pt;}
.ls1e{letter-spacing:-1.701333pt;}
.ls31{letter-spacing:-1.488000pt;}
.ls2e{letter-spacing:-1.440000pt;}
.ls19{letter-spacing:-1.296000pt;}
.ls1f{letter-spacing:-1.232000pt;}
.ls13{letter-spacing:-1.173333pt;}
.ls11{letter-spacing:-0.960000pt;}
.ls28{letter-spacing:-0.938667pt;}
.ls33{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.768000pt;}
.ls15{letter-spacing:-0.762667pt;}
.ls36{letter-spacing:-0.720000pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.645333pt;}
.lsc{letter-spacing:-0.586667pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls2f{letter-spacing:-0.533333pt;}
.ls18{letter-spacing:-0.528000pt;}
.ls30{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.469333pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.410667pt;}
.ls1d{letter-spacing:-0.352000pt;}
.ls2d{letter-spacing:-0.293333pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls26{letter-spacing:-0.234667pt;}
.lse{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.117333pt;}
.ls23{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls35{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.336000pt;}
.ls24{letter-spacing:0.352000pt;}
.ls5{letter-spacing:0.373333pt;}
.ls34{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.586667pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls32{letter-spacing:0.816000pt;}
.ls1b{letter-spacing:0.880000pt;}
.ls1{letter-spacing:0.938667pt;}
.ls21{letter-spacing:1.114667pt;}
.ws11{word-spacing:-58.677813pt;}
.wsf{word-spacing:-42.666667pt;}
.ws0{word-spacing:-14.976000pt;}
.ws52{word-spacing:-14.400000pt;}
.ws7e{word-spacing:-14.016000pt;}
.wseb{word-spacing:-13.845333pt;}
.wsbd{word-spacing:-13.632000pt;}
.wsca{word-spacing:-13.610667pt;}
.ws7c{word-spacing:-13.504000pt;}
.wsee{word-spacing:-13.493333pt;}
.ws48{word-spacing:-13.376000pt;}
.ws10{word-spacing:-13.312000pt;}
.wse8{word-spacing:-13.258667pt;}
.ws7d{word-spacing:-12.906667pt;}
.wsea{word-spacing:-12.672000pt;}
.wsfd{word-spacing:-12.613333pt;}
.wsbf{word-spacing:-12.496000pt;}
.wsbe{word-spacing:-12.437333pt;}
.ws4{word-spacing:-12.426667pt;}
.wsc0{word-spacing:-12.378667pt;}
.ws2{word-spacing:-12.266667pt;}
.wscc{word-spacing:-12.261333pt;}
.wsc9{word-spacing:-12.202667pt;}
.wscf{word-spacing:-12.144000pt;}
.ws3{word-spacing:-12.053333pt;}
.wsec{word-spacing:-11.968000pt;}
.ws54{word-spacing:-11.733333pt;}
.wscb{word-spacing:-11.674667pt;}
.ws5{word-spacing:-11.184000pt;}
.ws10d{word-spacing:-10.944000pt;}
.ws6{word-spacing:-10.608000pt;}
.wscd{word-spacing:-10.442667pt;}
.wsce{word-spacing:-10.266667pt;}
.wsed{word-spacing:-9.856000pt;}
.wsfb{word-spacing:-7.626667pt;}
.ws1{word-spacing:-7.027093pt;}
.wsdb{word-spacing:-6.336000pt;}
.wsba{word-spacing:-5.690667pt;}
.wsd2{word-spacing:-5.280000pt;}
.wsf8{word-spacing:-5.045333pt;}
.wsd3{word-spacing:-4.634667pt;}
.wsc4{word-spacing:-4.576000pt;}
.ws9f{word-spacing:-4.517333pt;}
.ws24{word-spacing:-4.458667pt;}
.ws20{word-spacing:-4.400000pt;}
.ws5f{word-spacing:-4.341333pt;}
.wsf4{word-spacing:-3.520000pt;}
.ws42{word-spacing:-3.461333pt;}
.ws89{word-spacing:-3.344000pt;}
.ws105{word-spacing:-3.168000pt;}
.wsf9{word-spacing:-3.050667pt;}
.wsab{word-spacing:-2.992000pt;}
.ws41{word-spacing:-2.874667pt;}
.ws2a{word-spacing:-2.816000pt;}
.wsa2{word-spacing:-2.757333pt;}
.wsc6{word-spacing:-2.698667pt;}
.wsfc{word-spacing:-2.640000pt;}
.ws94{word-spacing:-2.581333pt;}
.wsa7{word-spacing:-2.522667pt;}
.ws7f{word-spacing:-2.464000pt;}
.wse5{word-spacing:-2.288000pt;}
.ws9b{word-spacing:-2.229333pt;}
.ws40{word-spacing:-2.170667pt;}
.wsb7{word-spacing:-2.112000pt;}
.ws69{word-spacing:-1.936000pt;}
.wsa9{word-spacing:-1.760000pt;}
.ws6b{word-spacing:-1.701333pt;}
.ws72{word-spacing:-1.642667pt;}
.ws49{word-spacing:-1.584000pt;}
.ws92{word-spacing:-1.466667pt;}
.wsd5{word-spacing:-1.290667pt;}
.wsd8{word-spacing:-1.232000pt;}
.ws7b{word-spacing:-1.114667pt;}
.ws12{word-spacing:-0.997333pt;}
.ws27{word-spacing:-0.880000pt;}
.ws6c{word-spacing:-0.821333pt;}
.ws10a{word-spacing:-0.816000pt;}
.wsf5{word-spacing:-0.762667pt;}
.ws107{word-spacing:-0.645333pt;}
.ws79{word-spacing:-0.586667pt;}
.ws3f{word-spacing:-0.528000pt;}
.ws8{word-spacing:-0.512000pt;}
.ws9{word-spacing:-0.426667pt;}
.ws6a{word-spacing:-0.410667pt;}
.ws98{word-spacing:-0.384000pt;}
.ws80{word-spacing:-0.293333pt;}
.wsd{word-spacing:-0.288000pt;}
.ws3d{word-spacing:-0.234667pt;}
.ws2b{word-spacing:-0.176000pt;}
.ws73{word-spacing:-0.117333pt;}
.wsa3{word-spacing:-0.058667pt;}
.wse{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws10c{word-spacing:0.048000pt;}
.ws2c{word-spacing:0.058667pt;}
.wsef{word-spacing:0.096000pt;}
.ws15{word-spacing:0.117333pt;}
.ws101{word-spacing:0.176000pt;}
.ws67{word-spacing:0.192000pt;}
.wsf2{word-spacing:0.234667pt;}
.ws62{word-spacing:0.293333pt;}
.ws3a{word-spacing:0.352000pt;}
.wsdf{word-spacing:0.410667pt;}
.wsb{word-spacing:0.426667pt;}
.ws60{word-spacing:0.448000pt;}
.wse4{word-spacing:0.469333pt;}
.ws108{word-spacing:0.480000pt;}
.ws71{word-spacing:0.528000pt;}
.wsc1{word-spacing:0.576000pt;}
.ws5a{word-spacing:0.586667pt;}
.wsa8{word-spacing:0.645333pt;}
.ws5d{word-spacing:0.704000pt;}
.wsa0{word-spacing:0.762667pt;}
.ws3b{word-spacing:0.768000pt;}
.ws9c{word-spacing:0.821333pt;}
.ws10b{word-spacing:0.832000pt;}
.wsd6{word-spacing:0.880000pt;}
.ws23{word-spacing:0.938667pt;}
.ws99{word-spacing:0.960000pt;}
.ws63{word-spacing:0.997333pt;}
.ws34{word-spacing:1.056000pt;}
.wsb6{word-spacing:1.173333pt;}
.ws4d{word-spacing:1.232000pt;}
.wsd4{word-spacing:1.290667pt;}
.wsd0{word-spacing:1.296000pt;}
.wsad{word-spacing:1.349333pt;}
.ws47{word-spacing:1.408000pt;}
.ws106{word-spacing:1.440000pt;}
.wsc7{word-spacing:1.466667pt;}
.ws109{word-spacing:1.488000pt;}
.ws5e{word-spacing:1.525333pt;}
.ws28{word-spacing:1.584000pt;}
.ws95{word-spacing:1.642667pt;}
.ws74{word-spacing:1.701333pt;}
.wsa6{word-spacing:1.776000pt;}
.ws88{word-spacing:1.818667pt;}
.wsa5{word-spacing:1.877333pt;}
.ws25{word-spacing:1.936000pt;}
.ws84{word-spacing:1.994667pt;}
.ws29{word-spacing:2.053333pt;}
.wsb1{word-spacing:2.112000pt;}
.ws26{word-spacing:2.170667pt;}
.wsc3{word-spacing:2.229333pt;}
.wsae{word-spacing:2.288000pt;}
.ws4e{word-spacing:2.346667pt;}
.ws2f{word-spacing:2.405333pt;}
.ws58{word-spacing:2.464000pt;}
.wsb2{word-spacing:2.522667pt;}
.ws59{word-spacing:2.640000pt;}
.ws2d{word-spacing:2.698667pt;}
.ws22{word-spacing:2.757333pt;}
.ws8f{word-spacing:2.816000pt;}
.ws35{word-spacing:2.874667pt;}
.ws2e{word-spacing:2.992000pt;}
.ws61{word-spacing:3.050667pt;}
.wsa{word-spacing:3.072000pt;}
.ws1c{word-spacing:3.168000pt;}
.ws8a{word-spacing:3.226667pt;}
.ws9a{word-spacing:3.344000pt;}
.wsaf{word-spacing:3.402667pt;}
.wse9{word-spacing:3.455467pt;}
.ws31{word-spacing:3.461333pt;}
.ws1e{word-spacing:3.520000pt;}
.ws3e{word-spacing:3.637333pt;}
.wsf3{word-spacing:3.696000pt;}
.ws33{word-spacing:3.754667pt;}
.ws85{word-spacing:3.813333pt;}
.ws82{word-spacing:3.872000pt;}
.ws4a{word-spacing:3.930667pt;}
.ws102{word-spacing:3.989333pt;}
.ws43{word-spacing:4.048000pt;}
.wsb9{word-spacing:4.106667pt;}
.ws104{word-spacing:4.224000pt;}
.ws9d{word-spacing:4.282667pt;}
.ws5b{word-spacing:4.341333pt;}
.ws56{word-spacing:4.400000pt;}
.ws14{word-spacing:4.458667pt;}
.ws97{word-spacing:4.576000pt;}
.ws75{word-spacing:4.693333pt;}
.wsa4{word-spacing:4.810667pt;}
.wsc8{word-spacing:4.869333pt;}
.ws55{word-spacing:4.928000pt;}
.wsfe{word-spacing:4.986667pt;}
.ws30{word-spacing:5.045333pt;}
.ws39{word-spacing:5.104000pt;}
.ws17{word-spacing:5.162667pt;}
.ws83{word-spacing:5.221333pt;}
.ws78{word-spacing:5.280000pt;}
.ws37{word-spacing:5.397333pt;}
.ws19{word-spacing:5.456000pt;}
.ws8e{word-spacing:5.514667pt;}
.ws57{word-spacing:5.632000pt;}
.ws5c{word-spacing:5.690667pt;}
.ws1d{word-spacing:5.749333pt;}
.wsa1{word-spacing:5.808000pt;}
.wsb3{word-spacing:6.101333pt;}
.ws50{word-spacing:6.394667pt;}
.ws96{word-spacing:6.570667pt;}
.wse3{word-spacing:6.746667pt;}
.ws21{word-spacing:7.040000pt;}
.ws7a{word-spacing:7.216000pt;}
.ws81{word-spacing:7.450667pt;}
.ws91{word-spacing:7.568000pt;}
.ws45{word-spacing:7.626667pt;}
.wsb5{word-spacing:7.685333pt;}
.wsf1{word-spacing:7.744000pt;}
.ws65{word-spacing:8.096000pt;}
.wsd9{word-spacing:8.389333pt;}
.wsb8{word-spacing:8.448000pt;}
.ws51{word-spacing:8.506667pt;}
.ws103{word-spacing:8.800000pt;}
.wsb4{word-spacing:9.210667pt;}
.wsc2{word-spacing:9.269333pt;}
.wsc{word-spacing:9.280000pt;}
.ws4c{word-spacing:9.445333pt;}
.ws46{word-spacing:9.504000pt;}
.ws8d{word-spacing:9.562667pt;}
.wsda{word-spacing:9.738667pt;}
.wsff{word-spacing:9.973333pt;}
.ws4b{word-spacing:10.090667pt;}
.wsf6{word-spacing:10.208000pt;}
.wsbc{word-spacing:10.266667pt;}
.wsf7{word-spacing:10.560000pt;}
.wse2{word-spacing:10.618667pt;}
.ws66{word-spacing:10.677333pt;}
.wsfa{word-spacing:10.736000pt;}
.wsb0{word-spacing:10.794667pt;}
.ws68{word-spacing:10.853333pt;}
.ws16{word-spacing:10.970667pt;}
.wse0{word-spacing:11.088000pt;}
.ws100{word-spacing:11.146667pt;}
.wse1{word-spacing:11.205333pt;}
.ws1f{word-spacing:11.322667pt;}
.ws86{word-spacing:11.381333pt;}
.ws1a{word-spacing:11.674667pt;}
.ws64{word-spacing:11.850667pt;}
.ws36{word-spacing:11.909333pt;}
.ws44{word-spacing:11.968000pt;}
.wsbb{word-spacing:12.026667pt;}
.wsac{word-spacing:12.496000pt;}
.ws87{word-spacing:12.613333pt;}
.ws18{word-spacing:13.258667pt;}
.ws38{word-spacing:13.669333pt;}
.ws4f{word-spacing:13.845333pt;}
.wsdd{word-spacing:14.256000pt;}
.ws8b{word-spacing:14.373333pt;}
.wsdc{word-spacing:14.432000pt;}
.wsde{word-spacing:14.666667pt;}
.wsd1{word-spacing:14.725333pt;}
.ws9e{word-spacing:15.429333pt;}
.ws32{word-spacing:15.605333pt;}
.wsf0{word-spacing:15.898667pt;}
.ws13{word-spacing:15.957333pt;}
.ws8c{word-spacing:16.426667pt;}
.ws90{word-spacing:16.720000pt;}
.ws77{word-spacing:17.541333pt;}
.wsc5{word-spacing:17.834667pt;}
.wsaa{word-spacing:18.069333pt;}
.ws1b{word-spacing:18.421333pt;}
.ws93{word-spacing:19.653333pt;}
.wsd7{word-spacing:20.650667pt;}
.wse6{word-spacing:21.237333pt;}
.wse7{word-spacing:21.882667pt;}
.ws3c{word-spacing:23.701333pt;}
.ws76{word-spacing:24.874667pt;}
.ws70{word-spacing:164.034667pt;}
.ws6e{word-spacing:557.101333pt;}
.ws6d{word-spacing:569.901333pt;}
.ws6f{word-spacing:669.794667pt;}
.ws53{word-spacing:897.308800pt;}
._2a{margin-left:-20.038933pt;}
._29{margin-left:-7.981867pt;}
._10{margin-left:-6.632533pt;}
._d{margin-left:-5.690667pt;}
._9{margin-left:-4.293333pt;}
._e{margin-left:-3.361600pt;}
._3{margin-left:-2.378667pt;}
._0{margin-left:-1.173333pt;}
._1{width:1.006933pt;}
._2{width:2.585600pt;}
._5{width:3.522133pt;}
._4{width:4.426667pt;}
._11{width:5.658133pt;}
._c{width:7.289600pt;}
._6{width:9.002133pt;}
._7{width:10.033067pt;}
._a{width:11.501424pt;}
._8{width:13.136000pt;}
._f{width:14.542933pt;}
._26{width:15.444800pt;}
._14{width:18.268800pt;}
._1d{width:19.233600pt;}
._12{width:20.392533pt;}
._13{width:21.865067pt;}
._28{width:22.875733pt;}
._27{width:23.844800pt;}
._15{width:25.104000pt;}
._2b{width:55.203733pt;}
._25{width:56.101333pt;}
._b{width:69.536000pt;}
._1b{width:109.688000pt;}
._1a{width:122.488000pt;}
._21{width:129.882133pt;}
._2e{width:144.775467pt;}
._2d{width:148.743467pt;}
._1e{width:150.965867pt;}
._2c{width:189.836800pt;}
._1c{width:222.381333pt;}
._17{width:260.845867pt;}
._23{width:312.568533pt;}
._22{width:325.368533pt;}
._20{width:378.648533pt;}
._24{width:425.261867pt;}
._18{width:432.909333pt;}
._1f{width:562.816533pt;}
._19{width:755.430933pt;}
._16{width:826.880000pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:192.000000pt;}
.fs8{font-size:266.717333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:66.795333pt;}
.y322{bottom:66.856933pt;}
.y3{bottom:71.579467pt;}
.y2{bottom:82.718933pt;}
.y1{bottom:84.075600pt;}
.y114{bottom:88.510400pt;}
.y9d{bottom:92.077333pt;}
.y21d{bottom:98.680933pt;}
.yc8{bottom:99.442000pt;}
.y1d2{bottom:104.077333pt;}
.y142{bottom:104.373600pt;}
.y113{bottom:105.843733pt;}
.y4f{bottom:106.221333pt;}
.y21{bottom:107.933067pt;}
.y191{bottom:108.591867pt;}
.y9c{bottom:109.410667pt;}
.y2af{bottom:109.634000pt;}
.y7b{bottom:110.744000pt;}
.y1ea{bottom:111.730933pt;}
.y249{bottom:112.295600pt;}
.y2ae{bottom:114.671733pt;}
.y20c{bottom:116.014267pt;}
.y1af{bottom:116.077333pt;}
.yc7{bottom:116.775333pt;}
.y20{bottom:121.266533pt;}
.y1d1{bottom:121.410667pt;}
.y141{bottom:121.706933pt;}
.y112{bottom:123.177067pt;}
.y4e{bottom:123.554667pt;}
.yeb{bottom:124.077333pt;}
.y2d3{bottom:124.161333pt;}
.y190{bottom:125.925200pt;}
.y9b{bottom:126.744000pt;}
.y7a{bottom:128.077333pt;}
.y248{bottom:128.295600pt;}
.y1e9{bottom:129.064267pt;}
.y31a{bottom:129.205600pt;}
.y2ad{bottom:130.671733pt;}
.y20b{bottom:133.347600pt;}
.y1ae{bottom:133.410667pt;}
.yc6{bottom:134.108667pt;}
.y166{bottom:134.555200pt;}
.y1d0{bottom:138.744000pt;}
.y140{bottom:139.040267pt;}
.y2d2{bottom:140.161333pt;}
.y111{bottom:140.510400pt;}
.y4d{bottom:140.888000pt;}
.yea{bottom:141.410667pt;}
.y18f{bottom:143.258533pt;}
.y247{bottom:144.295600pt;}
.y79{bottom:145.410667pt;}
.y1e8{bottom:146.397600pt;}
.y319{bottom:150.243467pt;}
.y20a{bottom:150.680933pt;}
.y1ad{bottom:150.744000pt;}
.yc5{bottom:151.442000pt;}
.y2ac{bottom:151.709600pt;}
.y165{bottom:151.888533pt;}
.y9a{bottom:152.077333pt;}
.y1cf{bottom:156.077333pt;}
.y2d1{bottom:156.161333pt;}
.y2ab{bottom:156.747333pt;}
.y1f{bottom:157.621467pt;}
.y110{bottom:157.843733pt;}
.y4c{bottom:158.221333pt;}
.ye9{bottom:158.744000pt;}
.y246{bottom:160.295600pt;}
.y18e{bottom:160.591867pt;}
.y21c{bottom:162.019467pt;}
.y78{bottom:162.744000pt;}
.y1e7{bottom:163.730933pt;}
.y13f{bottom:164.373600pt;}
.y318{bottom:166.243467pt;}
.yc4{bottom:168.775333pt;}
.y164{bottom:169.221867pt;}
.y1e{bottom:170.954800pt;}
.y2d0{bottom:172.161333pt;}
.y2aa{bottom:172.747333pt;}
.y1ac{bottom:173.410667pt;}
.y4b{bottom:175.554667pt;}
.ye8{bottom:176.077333pt;}
.y245{bottom:176.295600pt;}
.y18d{bottom:177.925200pt;}
.y1ce{bottom:178.744000pt;}
.y209{bottom:179.352800pt;}
.y77{bottom:180.077333pt;}
.y10f{bottom:180.510400pt;}
.y13e{bottom:181.706933pt;}
.y1d{bottom:184.288133pt;}
.y2cf{bottom:188.161333pt;}
.y99{bottom:189.410667pt;}
.y1ab{bottom:190.744000pt;}
.y244{bottom:192.295600pt;}
.y1e6{bottom:192.402800pt;}
.y4a{bottom:192.888000pt;}
.y317{bottom:192.910133pt;}
.ye7{bottom:193.410667pt;}
.y2f2{bottom:193.532533pt;}
.y2a9{bottom:193.785067pt;}
.y163{bottom:194.555200pt;}
.y18c{bottom:195.258533pt;}
.y1cd{bottom:196.077333pt;}
.y208{bottom:196.686133pt;}
.y1c{bottom:197.621467pt;}
.ycc{bottom:197.666667pt;}
.y10e{bottom:197.843733pt;}
.y13d{bottom:199.040267pt;}
.yc3{bottom:199.608667pt;}
.y76{bottom:202.744000pt;}
.y2ce{bottom:204.161333pt;}
.y1aa{bottom:208.077333pt;}
.y243{bottom:208.295600pt;}
.y316{bottom:208.910133pt;}
.y2f1{bottom:209.532533pt;}
.y1e5{bottom:209.736133pt;}
.y49{bottom:210.221333pt;}
.ye6{bottom:210.744000pt;}
.ycb{bottom:211.000000pt;}
.y162{bottom:211.888533pt;}
.y18b{bottom:212.591867pt;}
.y272{bottom:213.333333pt;}
.y1cc{bottom:213.410667pt;}
.y207{bottom:214.019467pt;}
.y2a8{bottom:214.822800pt;}
.y10d{bottom:215.177067pt;}
.yc1{bottom:215.608667pt;}
.y98{bottom:216.077333pt;}
.y13c{bottom:216.373600pt;}
.y75{bottom:220.077333pt;}
.yca{bottom:224.333333pt;}
.y315{bottom:224.910133pt;}
.y2cd{bottom:225.199200pt;}
.y21b{bottom:225.358133pt;}
.y2f0{bottom:225.532533pt;}
.y48{bottom:227.554667pt;}
.ye5{bottom:228.077333pt;}
.y161{bottom:229.221867pt;}
.y271{bottom:229.333333pt;}
.y242{bottom:229.832000pt;}
.y18a{bottom:229.925200pt;}
.y1cb{bottom:230.744000pt;}
.y206{bottom:231.352933pt;}
.yc2{bottom:231.608667pt;}
.y10c{bottom:232.510400pt;}
.y1a9{bottom:233.410667pt;}
.y2a7{bottom:235.860533pt;}
.y1b{bottom:236.288133pt;}
.y74{bottom:237.410667pt;}
.yc9{bottom:237.666667pt;}
.y1e4{bottom:238.408133pt;}
.y314{bottom:240.910133pt;}
.y2ef{bottom:241.532533pt;}
.y13b{bottom:241.706933pt;}
.y21a{bottom:242.691467pt;}
.y97{bottom:242.744000pt;}
.y47{bottom:244.888000pt;}
.y270{bottom:245.333333pt;}
.y2cc{bottom:246.236933pt;}
.y189{bottom:247.258533pt;}
.y1ca{bottom:248.077333pt;}
.y1a8{bottom:250.744000pt;}
.y241{bottom:250.869733pt;}
.y160{bottom:251.888533pt;}
.yc0{bottom:252.646400pt;}
.ye4{bottom:253.410667pt;}
.y73{bottom:254.744000pt;}
.y10b{bottom:255.177067pt;}
.y1e3{bottom:255.741467pt;}
.y2a6{bottom:256.898400pt;}
.y313{bottom:256.910133pt;}
.y2ee{bottom:257.532533pt;}
.y13a{bottom:259.040267pt;}
.y205{bottom:260.024800pt;}
.y26f{bottom:261.333333pt;}
.y46{bottom:262.221333pt;}
.y2cb{bottom:262.236933pt;}
.y1c9{bottom:265.410667pt;}
.y240{bottom:266.869733pt;}
.y1a7{bottom:268.077333pt;}
.ybe{bottom:268.646400pt;}
.y15f{bottom:269.221867pt;}
.y1a{bottom:269.401067pt;}
.y96{bottom:269.410667pt;}
.y188{bottom:269.925200pt;}
.y72{bottom:272.077333pt;}
.y10a{bottom:272.510400pt;}
.y312{bottom:272.910133pt;}
.y139{bottom:276.373600pt;}
.y26e{bottom:277.333333pt;}
.y204{bottom:277.358133pt;}
.y2a5{bottom:277.936133pt;}
.y2ca{bottom:278.236933pt;}
.y2ed{bottom:278.570267pt;}
.y1e2{bottom:281.410667pt;}
.y1c8{bottom:282.744000pt;}
.y23f{bottom:282.869733pt;}
.y19{bottom:284.067733pt;}
.ybf{bottom:284.646400pt;}
.y45{bottom:284.888000pt;}
.y1a6{bottom:285.410667pt;}
.y15e{bottom:286.555200pt;}
.y187{bottom:287.258533pt;}
.ye3{bottom:288.077333pt;}
.y219{bottom:288.696800pt;}
.y311{bottom:288.910133pt;}
.y71{bottom:289.410667pt;}
.y109{bottom:289.843733pt;}
.y26d{bottom:293.333333pt;}
.y138{bottom:293.706933pt;}
.y2c9{bottom:294.236933pt;}
.y203{bottom:294.691467pt;}
.y95{bottom:296.077333pt;}
.y18{bottom:298.734400pt;}
.y23e{bottom:298.869733pt;}
.y2a4{bottom:298.973867pt;}
.y2ec{bottom:299.608000pt;}
.y1c7{bottom:300.077333pt;}
.y44{bottom:302.221333pt;}
.y15d{bottom:303.888533pt;}
.y310{bottom:304.910133pt;}
.ye2{bottom:305.410667pt;}
.ybd{bottom:305.684133pt;}
.y218{bottom:306.030133pt;}
.y70{bottom:306.744000pt;}
.y108{bottom:307.177067pt;}
.y26c{bottom:309.333333pt;}
.y2c8{bottom:310.236933pt;}
.y17{bottom:313.401067pt;}
.y1a5{bottom:313.410667pt;}
.y23d{bottom:314.869733pt;}
.y186{bottom:315.258533pt;}
.y2eb{bottom:315.608000pt;}
.y1c6{bottom:317.410667pt;}
.y137{bottom:319.040267pt;}
.y43{bottom:319.554667pt;}
.y2a3{bottom:320.011600pt;}
.y30f{bottom:320.910133pt;}
.y15c{bottom:321.221867pt;}
.ybc{bottom:321.684133pt;}
.y94{bottom:322.744000pt;}
.y202{bottom:323.363467pt;}
.y6f{bottom:324.077333pt;}
.y107{bottom:324.510400pt;}
.y2a2{bottom:325.049333pt;}
.y26b{bottom:325.333333pt;}
.y16{bottom:328.067733pt;}
.yb8{bottom:329.684133pt;}
.y1a4{bottom:330.744000pt;}
.y23c{bottom:330.869733pt;}
.y2c7{bottom:331.274667pt;}
.y2ea{bottom:331.608000pt;}
.y42{bottom:336.888000pt;}
.ybb{bottom:337.684133pt;}
.ye1{bottom:340.077333pt;}
.y201{bottom:340.696800pt;}
.y2a1{bottom:341.049333pt;}
.y26a{bottom:341.333333pt;}
.y6e{bottom:341.410667pt;}
.y15{bottom:342.734400pt;}
.y1c5{bottom:342.744000pt;}
.y185{bottom:343.258533pt;}
.yb7{bottom:345.684133pt;}
.y15b{bottom:346.555200pt;}
.y23b{bottom:346.869733pt;}
.y30e{bottom:347.576800pt;}
.y2e9{bottom:347.608000pt;}
.y1a3{bottom:348.077333pt;}
.y136{bottom:348.373600pt;}
.y93{bottom:349.410667pt;}
.y217{bottom:352.035333pt;}
.y2c6{bottom:352.312400pt;}
.yba{bottom:353.684133pt;}
.y41{bottom:354.221333pt;}
.y106{bottom:355.343733pt;}
.y11a{bottom:355.514400pt;}
.y269{bottom:357.333333pt;}
.ye0{bottom:357.410667pt;}
.y200{bottom:358.030133pt;}
.y6d{bottom:358.744000pt;}
.y184{bottom:360.591867pt;}
.y2a0{bottom:362.087200pt;}
.y30d{bottom:363.576800pt;}
.y2e8{bottom:363.608000pt;}
.y14{bottom:363.847200pt;}
.y135{bottom:365.706933pt;}
.y23a{bottom:367.907467pt;}
.y2c5{bottom:368.312400pt;}
.y119{bottom:368.847733pt;}
.y216{bottom:369.368667pt;}
.yb9{bottom:369.684133pt;}
.y40{bottom:371.554667pt;}
.y268{bottom:373.333333pt;}
.y1a2{bottom:373.410667pt;}
.ydf{bottom:374.744000pt;}
.y6c{bottom:376.077333pt;}
.y105{bottom:376.381467pt;}
.y1c4{bottom:377.410667pt;}
.y30c{bottom:379.576800pt;}
.y2e7{bottom:379.608000pt;}
.y15a{bottom:381.221867pt;}
.y118{bottom:382.181067pt;}
.y134{bottom:383.040267pt;}
.y29f{bottom:383.124933pt;}
.y1e1{bottom:384.077333pt;}
.y2c4{bottom:384.312400pt;}
.y1ff{bottom:386.702000pt;}
.y3f{bottom:388.888000pt;}
.y239{bottom:388.945200pt;}
.y4{bottom:390.666667pt;}
.yb6{bottom:390.721867pt;}
.y1a1{bottom:390.744000pt;}
.y183{bottom:391.258533pt;}
.yde{bottom:392.077333pt;}
.y6b{bottom:393.410667pt;}
.y267{bottom:394.721333pt;}
.y1c3{bottom:394.744000pt;}
.y30b{bottom:395.576800pt;}
.y2e6{bottom:395.608000pt;}
.y13{bottom:395.847200pt;}
.y104{bottom:397.419333pt;}
.y159{bottom:398.555200pt;}
.yb3{bottom:398.721867pt;}
.y2c3{bottom:400.312400pt;}
.y1e0{bottom:401.410667pt;}
.y92{bottom:402.744000pt;}
.y1fe{bottom:404.035333pt;}
.y29e{bottom:404.162667pt;}
.y238{bottom:404.945200pt;}
.y3e{bottom:406.221333pt;}
.yb5{bottom:406.721867pt;}
.y1a0{bottom:408.077333pt;}
.ydd{bottom:409.410667pt;}
.y6a{bottom:410.744000pt;}
.y133{bottom:411.040267pt;}
.y30a{bottom:411.576800pt;}
.y12{bottom:411.847200pt;}
.y1c2{bottom:412.077333pt;}
.yb2{bottom:414.721867pt;}
.y182{bottom:415.258533pt;}
.y215{bottom:415.373867pt;}
.y266{bottom:415.759067pt;}
.y158{bottom:415.888533pt;}
.y2c2{bottom:416.312400pt;}
.y2e5{bottom:416.645733pt;}
.y103{bottom:418.457067pt;}
.y1df{bottom:418.744000pt;}
.y29d{bottom:420.162667pt;}
.y237{bottom:420.945200pt;}
.yb4{bottom:422.721867pt;}
.y19f{bottom:425.410667pt;}
.y102{bottom:426.457067pt;}
.y91{bottom:426.744000pt;}
.y132{bottom:427.040267pt;}
.y69{bottom:428.077333pt;}
.y1c1{bottom:429.410667pt;}
.y3d{bottom:431.554667pt;}
.y265{bottom:431.759067pt;}
.y181{bottom:432.591867pt;}
.y1fd{bottom:432.707200pt;}
.y157{bottom:433.221867pt;}
.ydc{bottom:434.744000pt;}
.y1de{bottom:436.077333pt;}
.y29c{bottom:436.162667pt;}
.y236{bottom:436.945200pt;}
.y2c1{bottom:437.350133pt;}
.y2e4{bottom:437.683467pt;}
.y309{bottom:438.114533pt;}
.y19e{bottom:442.744000pt;}
.yb1{bottom:443.759733pt;}
.y90{bottom:444.077333pt;}
.y11{bottom:444.960000pt;}
.y68{bottom:445.410667pt;}
.y1c0{bottom:446.744000pt;}
.y264{bottom:447.759067pt;}
.y1fc{bottom:450.040533pt;}
.y156{bottom:450.555200pt;}
.yae{bottom:451.759733pt;}
.y29b{bottom:452.162667pt;}
.y235{bottom:452.945200pt;}
.y1dd{bottom:453.410667pt;}
.y2e3{bottom:453.683467pt;}
.y131{bottom:453.706933pt;}
.y101{bottom:455.494800pt;}
.y2c0{bottom:458.388000pt;}
.y10{bottom:459.626667pt;}
.yb0{bottom:459.759733pt;}
.y180{bottom:460.591867pt;}
.y8f{bottom:461.410667pt;}
.y67{bottom:462.744000pt;}
.y263{bottom:463.759067pt;}
.ydb{bottom:464.077333pt;}
.y3c{bottom:466.221333pt;}
.y1fb{bottom:467.373867pt;}
.yad{bottom:467.759733pt;}
.y155{bottom:467.888533pt;}
.y19d{bottom:468.077333pt;}
.y29a{bottom:468.162667pt;}
.y234{bottom:468.945200pt;}
.y2e2{bottom:469.683467pt;}
.y130{bottom:469.706933pt;}
.y1bf{bottom:472.077333pt;}
.yf{bottom:474.293333pt;}
.y2bf{bottom:474.388000pt;}
.yaf{bottom:475.759733pt;}
.y1dc{bottom:476.077333pt;}
.y17f{bottom:477.925200pt;}
.y214{bottom:478.712533pt;}
.y8e{bottom:478.744000pt;}
.y262{bottom:479.759067pt;}
.y66{bottom:480.077333pt;}
.y308{bottom:480.947867pt;}
.yda{bottom:481.410667pt;}
.y100{bottom:482.032533pt;}
.y3b{bottom:483.554667pt;}
.y299{bottom:484.162667pt;}
.y233{bottom:484.945200pt;}
.y154{bottom:485.221867pt;}
.y2e1{bottom:485.683467pt;}
.y12f{bottom:485.706933pt;}
.ye{bottom:488.960000pt;}
.y1be{bottom:489.410667pt;}
.y2be{bottom:490.388000pt;}
.y1db{bottom:493.410667pt;}
.y261{bottom:495.759067pt;}
.y1fa{bottom:496.045867pt;}
.y8d{bottom:496.077333pt;}
.yac{bottom:496.797467pt;}
.y19c{bottom:497.410667pt;}
.yd9{bottom:498.744000pt;}
.yff{bottom:499.365867pt;}
.y298{bottom:500.162667pt;}
.y3a{bottom:500.888000pt;}
.y232{bottom:500.945200pt;}
.y2e0{bottom:501.683467pt;}
.y307{bottom:502.281200pt;}
.y153{bottom:502.555200pt;}
.yd{bottom:503.626667pt;}
.y65{bottom:505.410667pt;}
.y17e{bottom:505.925200pt;}
.y2bd{bottom:506.388000pt;}
.y1bd{bottom:506.744000pt;}
.y12e{bottom:509.706933pt;}
.y1da{bottom:510.744000pt;}
.y260{bottom:511.759067pt;}
.yaa{bottom:512.797467pt;}
.y1f9{bottom:513.379200pt;}
.y19b{bottom:514.744000pt;}
.yd8{bottom:516.077333pt;}
.y297{bottom:516.162667pt;}
.y2df{bottom:517.683467pt;}
.y39{bottom:518.221333pt;}
.y306{bottom:518.281200pt;}
.yc{bottom:518.293333pt;}
.y8c{bottom:518.744000pt;}
.y152{bottom:519.888533pt;}
.y231{bottom:521.982933pt;}
.y2bc{bottom:522.388000pt;}
.y17d{bottom:523.258533pt;}
.y64{bottom:524.077333pt;}
.yfe{bottom:524.699200pt;}
.y12d{bottom:527.040267pt;}
.y25f{bottom:527.759067pt;}
.y1d9{bottom:528.077333pt;}
.ya9{bottom:528.797467pt;}
.y1f8{bottom:530.712533pt;}
.y19a{bottom:532.077333pt;}
.y296{bottom:532.162667pt;}
.y285{bottom:532.796800pt;}
.yb{bottom:532.960000pt;}
.yd7{bottom:533.410667pt;}
.y38{bottom:535.554667pt;}
.y8b{bottom:536.077333pt;}
.y2bb{bottom:538.388000pt;}
.y2de{bottom:538.721333pt;}
.y305{bottom:539.614533pt;}
.y213{bottom:542.051067pt;}
.y230{bottom:543.020800pt;}
.y25e{bottom:543.759067pt;}
.y12c{bottom:544.373600pt;}
.yab{bottom:544.797467pt;}
.y1d8{bottom:545.410667pt;}
.y1f7{bottom:548.045867pt;}
.y295{bottom:548.162667pt;}
.y284{bottom:548.796800pt;}
.y199{bottom:549.410667pt;}
.y168{bottom:549.414667pt;}
.y151{bottom:550.721867pt;}
.yd6{bottom:550.744000pt;}
.y37{bottom:552.888000pt;}
.y8a{bottom:553.410667pt;}
.y17c{bottom:553.925200pt;}
.ya{bottom:554.072933pt;}
.y304{bottom:555.614533pt;}
.y63{bottom:558.744000pt;}
.y22f{bottom:559.020800pt;}
.yfd{bottom:559.365867pt;}
.y212{bottom:559.384400pt;}
.y2ba{bottom:559.425733pt;}
.y2dd{bottom:559.759067pt;}
.y12b{bottom:561.706933pt;}
.y1d7{bottom:562.744000pt;}
.y167{bottom:562.748000pt;}
.y294{bottom:564.162667pt;}
.y25d{bottom:564.796800pt;}
.ya8{bottom:565.835200pt;}
.y198{bottom:566.744000pt;}
.yd5{bottom:568.077333pt;}
.y283{bottom:569.834533pt;}
.y36{bottom:570.221333pt;}
.y89{bottom:570.744000pt;}
.y303{bottom:571.614533pt;}
.y150{bottom:571.759600pt;}
.y1bc{bottom:572.077333pt;}
.y22e{bottom:575.020800pt;}
.y2b9{bottom:575.425733pt;}
.y2dc{bottom:575.759067pt;}
.y62{bottom:576.077333pt;}
.yfc{bottom:576.699200pt;}
.y1f6{bottom:576.717733pt;}
.y17b{bottom:577.925200pt;}
.y12a{bottom:579.040267pt;}
.y293{bottom:585.200400pt;}
.y1d6{bottom:585.410667pt;}
.y25c{bottom:585.834533pt;}
.ya7{bottom:586.872933pt;}
.y35{bottom:587.554667pt;}
.y302{bottom:587.614533pt;}
.y21e{bottom:588.056267pt;}
.y88{bottom:588.077333pt;}
.y197{bottom:589.410667pt;}
.yd4{bottom:590.744000pt;}
.y282{bottom:590.872267pt;}
.y22d{bottom:591.020800pt;}
.y2db{bottom:591.759067pt;}
.y14f{bottom:592.797333pt;}
.y61{bottom:593.410667pt;}
.yfb{bottom:594.032533pt;}
.y1f5{bottom:594.051067pt;}
.y17a{bottom:595.258533pt;}
.y129{bottom:596.373600pt;}
.y2b8{bottom:596.463467pt;}
.y25b{bottom:601.834533pt;}
.y1d5{bottom:602.744000pt;}
.y301{bottom:603.614533pt;}
.y34{bottom:604.888000pt;}
.y211{bottom:605.389600pt;}
.y87{bottom:605.410667pt;}
.y196{bottom:606.744000pt;}
.y281{bottom:606.872267pt;}
.y22c{bottom:607.020800pt;}
.y2da{bottom:607.759067pt;}
.yd3{bottom:608.077333pt;}
.y60{bottom:610.744000pt;}
.yfa{bottom:611.365867pt;}
.y292{bottom:611.738133pt;}
.y2b7{bottom:612.463467pt;}
.y179{bottom:612.591867pt;}
.ya6{bottom:613.410667pt;}
.y128{bottom:613.706933pt;}
.y14e{bottom:613.835067pt;}
.y25a{bottom:617.834533pt;}
.y300{bottom:619.614533pt;}
.y1d4{bottom:620.077333pt;}
.y33{bottom:622.221333pt;}
.y1f4{bottom:622.722933pt;}
.y86{bottom:622.744000pt;}
.y280{bottom:622.872267pt;}
.y22b{bottom:623.020800pt;}
.y2d9{bottom:623.759067pt;}
.y1bb{bottom:624.077333pt;}
.yd2{bottom:625.410667pt;}
.y5f{bottom:628.077333pt;}
.y2b6{bottom:628.463467pt;}
.yf9{bottom:628.699200pt;}
.y178{bottom:629.925200pt;}
.ya5{bottom:630.744000pt;}
.y259{bottom:633.834533pt;}
.y195{bottom:634.744000pt;}
.y14d{bottom:634.872933pt;}
.y1d3{bottom:637.410667pt;}
.y27f{bottom:638.872267pt;}
.y22a{bottom:639.020800pt;}
.y32{bottom:639.554667pt;}
.y2d8{bottom:639.759067pt;}
.y210{bottom:640.056267pt;}
.y85{bottom:640.077333pt;}
.y2ff{bottom:640.947867pt;}
.y1ba{bottom:641.410667pt;}
.y127{bottom:641.706933pt;}
.yd1{bottom:642.744000pt;}
.y5e{bottom:645.410667pt;}
.yf8{bottom:646.032533pt;}
.y177{bottom:647.258533pt;}
.ya4{bottom:648.077333pt;}
.y258{bottom:649.834533pt;}
.y1f3{bottom:651.394933pt;}
.y194{bottom:652.077333pt;}
.y291{bottom:654.571467pt;}
.y27e{bottom:654.872267pt;}
.y2b5{bottom:655.001200pt;}
.y2fe{bottom:656.947867pt;}
.y84{bottom:657.410667pt;}
.y31{bottom:659.554667pt;}
.yd0{bottom:660.077333pt;}
.y2d7{bottom:660.796800pt;}
.y14c{bottom:661.410667pt;}
.y5d{bottom:662.744000pt;}
.yf7{bottom:663.365867pt;}
.y1b9{bottom:664.077333pt;}
.ya3{bottom:665.410667pt;}
.y229{bottom:665.558533pt;}
.y257{bottom:665.834533pt;}
.y126{bottom:668.373600pt;}
.y1f2{bottom:668.728267pt;}
.y176{bottom:669.925200pt;}
.y27d{bottom:670.872267pt;}
.y2fd{bottom:672.947867pt;}
.y290{bottom:675.609333pt;}
.y30{bottom:676.888000pt;}
.y14b{bottom:678.744000pt;}
.y83{bottom:680.077333pt;}
.yf6{bottom:680.699200pt;}
.y1b8{bottom:681.410667pt;}
.y256{bottom:681.834533pt;}
.ya2{bottom:682.744000pt;}
.y125{bottom:684.373600pt;}
.y5c{bottom:685.410667pt;}
.y321{bottom:685.684800pt;}
.y1f1{bottom:686.061467pt;}
.y27c{bottom:686.872267pt;}
.y175{bottom:687.258533pt;}
.y2fc{bottom:688.947867pt;}
.y28f{bottom:691.609333pt;}
.y2f{bottom:694.221333pt;}
.y14a{bottom:696.077333pt;}
.y82{bottom:697.410667pt;}
.y2b4{bottom:697.834533pt;}
.yf5{bottom:698.032533pt;}
.y1b7{bottom:698.744000pt;}
.ya1{bottom:700.077333pt;}
.y228{bottom:700.225200pt;}
.y5b{bottom:702.744000pt;}
.y255{bottom:702.872267pt;}
.y20f{bottom:703.394800pt;}
.y174{bottom:704.591867pt;}
.y320{bottom:706.722533pt;}
.y193{bottom:706.744000pt;}
.y124{bottom:708.373600pt;}
.y2fb{bottom:710.281200pt;}
.y2e{bottom:711.554667pt;}
.y28e{bottom:712.647067pt;}
.y149{bottom:713.410667pt;}
.y2b3{bottom:713.834533pt;}
.y1f0{bottom:714.733467pt;}
.y81{bottom:714.744000pt;}
.ya0{bottom:717.410667pt;}
.y227{bottom:717.558533pt;}
.y27b{bottom:718.872267pt;}
.y117{bottom:719.262533pt;}
.y5a{bottom:720.077333pt;}
.y173{bottom:721.925200pt;}
.y31f{bottom:722.722533pt;}
.y254{bottom:723.910133pt;}
.y1b6{bottom:724.077333pt;}
.y123{bottom:725.706933pt;}
.y2fa{bottom:726.281200pt;}
.yf4{bottom:728.865867pt;}
.y2d{bottom:728.888000pt;}
.y2b2{bottom:729.834533pt;}
.y1ef{bottom:732.066800pt;}
.y80{bottom:732.077333pt;}
.y116{bottom:732.595867pt;}
.y28d{bottom:733.684800pt;}
.y9f{bottom:734.744000pt;}
.y27a{bottom:734.872267pt;}
.y226{bottom:734.891867pt;}
.y59{bottom:737.410667pt;}
.y148{bottom:738.744000pt;}
.y172{bottom:739.258533pt;}
.y253{bottom:739.910133pt;}
.y1b5{bottom:741.410667pt;}
.y2f9{bottom:742.281200pt;}
.y122{bottom:743.040267pt;}
.y31e{bottom:743.760400pt;}
.y2d6{bottom:745.834533pt;}
.y115{bottom:745.929200pt;}
.y2c{bottom:746.221333pt;}
.y9{bottom:748.739600pt;}
.y1ee{bottom:749.400133pt;}
.y7f{bottom:749.410667pt;}
.y28c{bottom:749.684800pt;}
.yf3{bottom:749.903600pt;}
.y2b1{bottom:750.872267pt;}
.ycf{bottom:752.077333pt;}
.y225{bottom:752.225200pt;}
.y58{bottom:754.744000pt;}
.y252{bottom:755.910133pt;}
.y171{bottom:756.591867pt;}
.y2f8{bottom:758.281200pt;}
.y1b4{bottom:758.744000pt;}
.y31d{bottom:759.760400pt;}
.y9e{bottom:760.077333pt;}
.y121{bottom:760.373600pt;}
.y2d5{bottom:761.834533pt;}
.y2b{bottom:763.554667pt;}
.y20e{bottom:766.733467pt;}
.y7e{bottom:766.744000pt;}
.y2b0{bottom:766.872267pt;}
.yce{bottom:769.410667pt;}
.y224{bottom:769.558533pt;}
.y28b{bottom:770.722533pt;}
.yf2{bottom:770.941467pt;}
.y251{bottom:771.910133pt;}
.y57{bottom:772.077333pt;}
.y147{bottom:773.410667pt;}
.y170{bottom:773.925200pt;}
.y2f7{bottom:774.281200pt;}
.y31c{bottom:775.760400pt;}
.y1b3{bottom:776.077333pt;}
.y279{bottom:776.947867pt;}
.y120{bottom:777.706933pt;}
.y1ed{bottom:778.072133pt;}
.y8{bottom:780.739600pt;}
.y2a{bottom:780.888000pt;}
.y192{bottom:782.744000pt;}
.y2d4{bottom:782.872267pt;}
.y7d{bottom:784.077333pt;}
.y223{bottom:786.891867pt;}
.y250{bottom:787.910133pt;}
.y56{bottom:789.410667pt;}
.y146{bottom:790.744000pt;}
.y16f{bottom:791.258533pt;}
.y28a{bottom:791.760400pt;}
.yf1{bottom:791.979200pt;}
.y278{bottom:792.947867pt;}
.y1b2{bottom:793.410667pt;}
.ycd{bottom:794.744000pt;}
.y1ec{bottom:795.405467pt;}
.y2f6{bottom:795.614533pt;}
.y31b{bottom:796.798133pt;}
.y29{bottom:798.221333pt;}
.y7{bottom:799.406267pt;}
.y7c{bottom:801.410667pt;}
.y11f{bottom:803.040267pt;}
.y24f{bottom:803.910133pt;}
.y222{bottom:804.225200pt;}
.y55{bottom:806.744000pt;}
.y16e{bottom:808.591867pt;}
.y277{bottom:808.947867pt;}
.y1b1{bottom:810.744000pt;}
.y2f5{bottom:811.614533pt;}
.y1eb{bottom:812.738800pt;}
.y289{bottom:812.798133pt;}
.yf0{bottom:813.016933pt;}
.y27{bottom:815.554667pt;}
.y145{bottom:816.077333pt;}
.y24e{bottom:819.910133pt;}
.y54{bottom:824.077333pt;}
.y276{bottom:824.947867pt;}
.y2f4{bottom:827.614533pt;}
.y20d{bottom:830.072133pt;}
.y16d{bottom:831.258533pt;}
.y11e{bottom:832.373600pt;}
.y28{bottom:832.888000pt;}
.y144{bottom:833.410667pt;}
.y288{bottom:833.835867pt;}
.y24d{bottom:835.910133pt;}
.y1b0{bottom:836.077333pt;}
.y6{bottom:839.406267pt;}
.yef{bottom:839.554667pt;}
.y221{bottom:840.225200pt;}
.y275{bottom:840.947867pt;}
.y53{bottom:841.410667pt;}
.y16c{bottom:848.591867pt;}
.y2f3{bottom:848.947867pt;}
.y11d{bottom:849.706933pt;}
.y287{bottom:849.835867pt;}
.y143{bottom:850.744000pt;}
.y24c{bottom:851.910133pt;}
.yee{bottom:856.888000pt;}
.y274{bottom:856.947867pt;}
.y52{bottom:858.744000pt;}
.y5{bottom:863.406267pt;}
.y220{bottom:864.225200pt;}
.y286{bottom:865.835867pt;}
.y16b{bottom:865.925200pt;}
.y11c{bottom:867.040267pt;}
.y24b{bottom:867.910133pt;}
.y273{bottom:872.947867pt;}
.yed{bottom:874.221333pt;}
.y51{bottom:876.077333pt;}
.y16a{bottom:883.258533pt;}
.y26{bottom:883.554667pt;}
.y21f{bottom:888.225200pt;}
.y24a{bottom:888.947867pt;}
.y11b{bottom:892.373600pt;}
.y50{bottom:893.410667pt;}
.yec{bottom:899.554667pt;}
.y169{bottom:900.591867pt;}
.y25{bottom:949.113467pt;}
.y24{bottom:962.446800pt;}
.y23{bottom:974.446800pt;}
.hc{height:19.963195pt;}
.hf{height:31.040000pt;}
.h2{height:31.424000pt;}
.he{height:31.616000pt;}
.h17{height:32.812500pt;}
.hb{height:34.242188pt;}
.ha{height:34.921875pt;}
.h7{height:36.250000pt;}
.h8{height:36.458333pt;}
.h1{height:37.680000pt;}
.h16{height:37.708333pt;}
.h15{height:37.838542pt;}
.h9{height:38.046875pt;}
.h14{height:38.411458pt;}
.h6{height:39.045573pt;}
.hd{height:41.192533pt;}
.h1a{height:41.307292pt;}
.h13{height:41.479167pt;}
.h12{height:41.622396pt;}
.h19{height:42.252604pt;}
.h10{height:46.093750pt;}
.h5{height:47.136000pt;}
.h4{height:61.458333pt;}
.h18{height:69.838542pt;}
.h3{height:141.408000pt;}
.h11{height:189.228655pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:29.333333pt;}
.x12{left:31.087867pt;}
.x1c{left:32.394533pt;}
.x17{left:33.437467pt;}
.x1a{left:38.752000pt;}
.x18{left:44.476533pt;}
.x1b{left:48.490267pt;}
.x10{left:68.904267pt;}
.x11{left:78.630800pt;}
.x19{left:85.404267pt;}
.x1{left:88.992533pt;}
.x4{left:151.972933pt;}
.x5{left:177.333333pt;}
.xa{left:181.752267pt;}
.xe{left:187.333333pt;}
.x15{left:189.408267pt;}
.x22{left:200.666667pt;}
.x1e{left:204.617067pt;}
.x25{left:208.834667pt;}
.xb{left:213.594267pt;}
.x26{left:215.573600pt;}
.x2c{left:216.864400pt;}
.xc{left:219.547600pt;}
.x34{left:230.197733pt;}
.x20{left:232.666667pt;}
.x1d{left:235.333333pt;}
.x2d{left:241.405200pt;}
.x2e{left:247.508667pt;}
.x21{left:248.666667pt;}
.x29{left:259.086800pt;}
.x35{left:264.341467pt;}
.x2b{left:272.286267pt;}
.x16{left:277.199200pt;}
.x27{left:287.126400pt;}
.x31{left:293.306267pt;}
.x32{left:296.841333pt;}
.x30{left:297.961200pt;}
.x3{left:304.009467pt;}
.xd{left:305.711600pt;}
.x14{left:326.291600pt;}
.x13{left:354.970000pt;}
.x33{left:357.450133pt;}
.x7{left:364.367733pt;}
.x2f{left:379.914267pt;}
.x2{left:400.954933pt;}
.x2a{left:418.899333pt;}
.x28{left:427.639333pt;}
.x24{left:437.177067pt;}
.x23{left:440.991733pt;}
.xf{left:467.666667pt;}
.x9{left:503.159733pt;}
.x6{left:551.680800pt;}
.x8{left:631.552933pt;}
}




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