
    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_65a069b334de41017a6b079d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_990985cdb5226fb1d58c22a5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_870753d3bf0e3c1b851b393e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.115723;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_8acedefec9dcaace60e4cfc6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_2a231f53cc553c14e2fbde71.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4d6baeab96b41a5aa864b18c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937012;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_b3a29be3f1f0ed4c8908fcdf.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_f252231fcc313dfe56d5beb9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_5d0089a58c4b51de0bf72ed3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_b2c8e822e19c954445a642a9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.970703;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_67dbcfdf24d13fda6b5c2379.woff')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_47921e742bd1d9adb9fe574a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.940430;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_d310b125ff0ad2b5bfaa854b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.940430;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_e5e6b030187f66adebde43e9.woff')format("woff");}.ffe{font-family:ffe;line-height:1.401855;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_d9140ee324b2afd500081992.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8f255796c07134bca4b85ff0.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_360220d641c531449fd4b56f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.783691;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_7e2681c844254ef7e2a2371a.woff')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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_bd989146faeabd70156388e4.woff')format("woff");}.ff13{font-family:ff13;line-height:0.995117;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_b1bb4ca94de2a8449e652d39.woff')format("woff");}.ff14{font-family:ff14;line-height:0.980957;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_42f6fb3c567f0a53383b6411.woff')format("woff");}.ff15{font-family:ff15;line-height:0.933594;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_d73d055b91c0ee7959c03ca6.woff')format("woff");}.ff16{font-family:ff16;line-height:0.933594;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_0033332fc6b485ae33b512b0.woff')format("woff");}.ff17{font-family:ff17;line-height:0.733887;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_0300db0b99baed92c5f078dc.woff')format("woff");}.ff18{font-family:ff18;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{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);}
.mc{transform:matrix(0.215612,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.215612,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.215612,0.000000,-0.079050,0.237173,0,0);}
.m4{transform:matrix(0.216549,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.216549,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.216549,0.000000,-0.079050,0.237173,0,0);}
.m1{transform:matrix(0.221003,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.221003,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.221003,0.000000,-0.079050,0.237173,0,0);}
.m3{transform:matrix(0.224691,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.224691,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.224691,0.000000,-0.079050,0.237173,0,0);}
.mb{transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m8{transform:matrix(0.238637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238637,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.241073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241073,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);}
.m5{transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.md{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:-116.640000px;}
.v6{vertical-align:-93.600000px;}
.v5{vertical-align:-92.280000px;}
.vb{vertical-align:-90.900000px;}
.v9{vertical-align:-89.280000px;}
.v7{vertical-align:-87.840000px;}
.v1{vertical-align:-84.960000px;}
.v4{vertical-align:-83.520000px;}
.vc{vertical-align:-82.260000px;}
.v1b{vertical-align:-80.760000px;}
.v8{vertical-align:-79.200000px;}
.vf{vertical-align:-77.736000px;}
.v1c{vertical-align:-75.060000px;}
.vd{vertical-align:-61.920000px;}
.ve{vertical-align:-60.480000px;}
.v18{vertical-align:-41.760000px;}
.v1a{vertical-align:-27.360000px;}
.v17{vertical-align:-21.600000px;}
.v11{vertical-align:-5.760000px;}
.v12{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:18.720000px;}
.v10{vertical-align:24.480000px;}
.v3{vertical-align:27.540000px;}
.v13{vertical-align:36.000000px;}
.v16{vertical-align:41.760000px;}
.v19{vertical-align:75.060000px;}
.v14{vertical-align:79.200000px;}
.v15{vertical-align:89.400000px;}
.ls39{letter-spacing:-2.736000px;}
.ls78{letter-spacing:-2.052000px;}
.ls8e{letter-spacing:-1.746000px;}
.ls3b{letter-spacing:-1.728000px;}
.lsf{letter-spacing:-1.584000px;}
.ls30{letter-spacing:-1.440000px;}
.ls74{letter-spacing:-1.368000px;}
.ls33{letter-spacing:-1.296000px;}
.ls2f{letter-spacing:-1.254000px;}
.ls67{letter-spacing:-1.152000px;}
.ls7a{letter-spacing:-1.134000px;}
.ls6f{letter-spacing:-1.080000px;}
.ls64{letter-spacing:-0.972000px;}
.ls6{letter-spacing:-0.961323px;}
.ls63{letter-spacing:-0.954000px;}
.ls31{letter-spacing:-0.942000px;}
.ls24{letter-spacing:-0.936000px;}
.ls84{letter-spacing:-0.828000px;}
.ls2e{letter-spacing:-0.810000px;}
.ls25{letter-spacing:-0.792000px;}
.ls6d{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.648000px;}
.ls5c{letter-spacing:-0.612000px;}
.ls65{letter-spacing:-0.564600px;}
.ls57{letter-spacing:-0.507000px;}
.ls3c{letter-spacing:-0.504000px;}
.ls58{letter-spacing:-0.466800px;}
.ls4a{letter-spacing:-0.463800px;}
.ls8b{letter-spacing:-0.457800px;}
.ls73{letter-spacing:-0.432000px;}
.ls48{letter-spacing:-0.423600px;}
.ls8a{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.288000px;}
.ls6c{letter-spacing:-0.216000px;}
.ls5b{letter-spacing:-0.152400px;}
.ls10{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.025920px;}
.ls62{letter-spacing:-0.020160px;}
.ls11{letter-spacing:-0.017280px;}
.ls55{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.008640px;}
.ls56{letter-spacing:0.034560px;}
.ls72{letter-spacing:0.072000px;}
.ls85{letter-spacing:0.080400px;}
.ls1a{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.178800px;}
.ls49{letter-spacing:0.204480px;}
.ls47{letter-spacing:0.213120px;}
.ls6e{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.288000px;}
.ls79{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.359737px;}
.ls2{letter-spacing:0.432000px;}
.ls83{letter-spacing:0.457800px;}
.ls53{letter-spacing:0.466800px;}
.ls41{letter-spacing:0.504000px;}
.ls2c{letter-spacing:0.507000px;}
.ls38{letter-spacing:0.574560px;}
.ls42{letter-spacing:0.576000px;}
.ls77{letter-spacing:0.612000px;}
.ls2d{letter-spacing:0.630000px;}
.lse{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.720000px;}
.ls52{letter-spacing:0.792000px;}
.ls66{letter-spacing:0.828000px;}
.ls89{letter-spacing:0.840000px;}
.ls5f{letter-spacing:0.864000px;}
.ls69{letter-spacing:0.900000px;}
.ls32{letter-spacing:1.152000px;}
.ls0{letter-spacing:1.319036px;}
.ls6b{letter-spacing:1.385064px;}
.ls3a{letter-spacing:1.440000px;}
.ls46{letter-spacing:1.455840px;}
.ls4{letter-spacing:1.467282px;}
.ls23{letter-spacing:1.584000px;}
.ls86{letter-spacing:1.590000px;}
.ls87{letter-spacing:1.745280px;}
.ls40{letter-spacing:1.944000px;}
.ls8{letter-spacing:2.160000px;}
.ls5{letter-spacing:3.092677px;}
.ls8c{letter-spacing:3.600000px;}
.ls7f{letter-spacing:8.040000px;}
.ls3e{letter-spacing:10.224000px;}
.ls81{letter-spacing:10.800000px;}
.ls7c{letter-spacing:13.265280px;}
.ls7d{letter-spacing:13.680000px;}
.ls2b{letter-spacing:15.120000px;}
.ls4b{letter-spacing:18.000000px;}
.ls44{letter-spacing:19.440000px;}
.ls6a{letter-spacing:20.880000px;}
.ls5d{letter-spacing:25.200000px;}
.ls68{letter-spacing:26.640000px;}
.ls3f{letter-spacing:29.520000px;}
.ls43{letter-spacing:30.396000px;}
.ls5a{letter-spacing:33.840000px;}
.ls88{letter-spacing:36.305280px;}
.ls1d{letter-spacing:36.720000px;}
.ls76{letter-spacing:37.745280px;}
.ls1c{letter-spacing:40.680000px;}
.ls1e{letter-spacing:43.560000px;}
.ls1f{letter-spacing:45.000000px;}
.ls20{letter-spacing:47.880000px;}
.ls1b{letter-spacing:50.400000px;}
.ls19{letter-spacing:51.840000px;}
.ls7e{letter-spacing:52.157280px;}
.ls82{letter-spacing:52.200000px;}
.ls18{letter-spacing:53.280000px;}
.ls7{letter-spacing:53.640000px;}
.ls21{letter-spacing:54.000000px;}
.ls22{letter-spacing:56.880000px;}
.ls15{letter-spacing:57.960000px;}
.ls9{letter-spacing:58.320000px;}
.ls8d{letter-spacing:59.345280px;}
.ls80{letter-spacing:59.357280px;}
.ls4c{letter-spacing:59.760000px;}
.ls75{letter-spacing:60.480000px;}
.ls27{letter-spacing:61.920000px;}
.ls71{letter-spacing:62.640000px;}
.ls29{letter-spacing:64.080000px;}
.ls2a{letter-spacing:65.160000px;}
.ls13{letter-spacing:67.680000px;}
.ls17{letter-spacing:70.560000px;}
.ls16{letter-spacing:79.560000px;}
.ls60{letter-spacing:87.984000px;}
.ls14{letter-spacing:89.280000px;}
.ls7b{letter-spacing:96.797280px;}
.ls37{letter-spacing:105.276000px;}
.ls3d{letter-spacing:106.704000px;}
.ls45{letter-spacing:125.832000px;}
.ls28{letter-spacing:147.600000px;}
.ls70{letter-spacing:165.024000px;}
.ls4e{letter-spacing:174.971520px;}
.ls50{letter-spacing:175.091520px;}
.ls51{letter-spacing:175.151520px;}
.ls4f{letter-spacing:176.531520px;}
.ls4d{letter-spacing:210.384000px;}
.ls36{letter-spacing:213.984000px;}
.ls61{letter-spacing:306.156000px;}
.ls59{letter-spacing:391.476000px;}
.ls26{letter-spacing:401.196000px;}
.ls5e{letter-spacing:1310.280000px;}
.ls54{letter-spacing:2820.336000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws29{word-spacing:-72.000000px;}
.ws4b{word-spacing:-66.240000px;}
.ws15{word-spacing:-54.720000px;}
.ws4{word-spacing:-48.384000px;}
.ws5{word-spacing:-47.952000px;}
.ws1{word-spacing:-43.023496px;}
.ws0{word-spacing:-41.398101px;}
.ws2{word-spacing:-40.290556px;}
.ws3{word-spacing:-35.964000px;}
.ws6{word-spacing:-33.914962px;}
.ws3d{word-spacing:-21.117479px;}
.ws8{word-spacing:-21.058800px;}
.ws26{word-spacing:-19.944000px;}
.ws13{word-spacing:-19.584000px;}
.ws32{word-spacing:-19.474560px;}
.ws24{word-spacing:-19.448640px;}
.ws22{word-spacing:-19.440000px;}
.ws31{word-spacing:-19.431360px;}
.wsf{word-spacing:-19.422720px;}
.ws11{word-spacing:-19.414080px;}
.ws1e{word-spacing:-19.152000px;}
.ws30{word-spacing:-18.792000px;}
.ws41{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.648000px;}
.ws28{word-spacing:-18.576000px;}
.ws27{word-spacing:-18.504000px;}
.ws40{word-spacing:-18.432000px;}
.ws9{word-spacing:-18.288000px;}
.ws42{word-spacing:-18.216000px;}
.ws4f{word-spacing:-18.150000px;}
.ws12{word-spacing:-18.144000px;}
.ws44{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.wse{word-spacing:-17.856000px;}
.ws3e{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws45{word-spacing:-17.568000px;}
.ws25{word-spacing:-17.496000px;}
.ws3b{word-spacing:-17.388000px;}
.ws20{word-spacing:-17.352000px;}
.ws3f{word-spacing:-17.280000px;}
.ws14{word-spacing:-17.208000px;}
.ws47{word-spacing:-17.172000px;}
.ws4c{word-spacing:-17.017800px;}
.ws43{word-spacing:-16.920000px;}
.ws49{word-spacing:-16.865400px;}
.ws3c{word-spacing:-16.848000px;}
.ws1f{word-spacing:-16.704000px;}
.ws4e{word-spacing:-16.640400px;}
.ws46{word-spacing:-16.632000px;}
.ws2e{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.416000px;}
.ws36{word-spacing:-16.407600px;}
.ws23{word-spacing:-16.272000px;}
.ws50{word-spacing:-16.254600px;}
.ws51{word-spacing:-16.102200px;}
.ws3a{word-spacing:-15.995400px;}
.ws37{word-spacing:-15.948000px;}
.ws4d{word-spacing:-15.732000px;}
.ws18{word-spacing:-15.627000px;}
.ws35{word-spacing:-15.586800px;}
.ws4a{word-spacing:-15.426000px;}
.ws21{word-spacing:-15.264000px;}
.ws17{word-spacing:-15.120000px;}
.ws38{word-spacing:-15.099840px;}
.ws52{word-spacing:-14.814000px;}
.ws34{word-spacing:-14.653200px;}
.ws33{word-spacing:-14.613000px;}
.ws48{word-spacing:-14.508000px;}
.ws2d{word-spacing:-14.506440px;}
.ws19{word-spacing:-14.310000px;}
.ws39{word-spacing:-14.166000px;}
.ws16{word-spacing:-13.680000px;}
.ws2f{word-spacing:-13.668480px;}
.ws2c{word-spacing:-13.244880px;}
.ws1a{word-spacing:-12.870000px;}
.ws1d{word-spacing:-12.738000px;}
.ws10{word-spacing:-12.600000px;}
.ws1b{word-spacing:-12.426000px;}
.ws1c{word-spacing:-12.240000px;}
.ws2b{word-spacing:-11.880000px;}
.ws2a{word-spacing:-11.088000px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-33.659523px;}
._4a{margin-left:-11.271840px;}
._49{margin-left:-8.026560px;}
._48{margin-left:-5.442720px;}
._21{margin-left:-4.020480px;}
._e{margin-left:-2.868480px;}
._1{margin-left:-1.503360px;}
._0{width:1.419840px;}
._2{width:3.342720px;}
._1b{width:4.359840px;}
._17{width:5.435040px;}
._4{width:6.693313px;}
._25{width:7.802015px;}
._f{width:8.835360px;}
._16{width:9.931200px;}
._1d{width:11.295360px;}
._1c{width:12.536640px;}
._14{width:13.614720px;}
._10{width:14.627040px;}
._13{width:15.843360px;}
._29{width:16.899840px;}
._47{width:17.942880px;}
._20{width:19.044960px;}
._15{width:20.340960px;}
._2d{width:21.500640px;}
._2e{width:22.551840px;}
._1f{width:23.724000px;}
._1e{width:24.987360px;}
._27{width:26.876160px;}
._31{width:28.190400px;}
._2f{width:29.493600px;}
._30{width:30.746400px;}
._2c{width:32.335680px;}
._39{width:33.394560px;}
._28{width:34.464000px;}
._4b{width:35.557494px;}
._3{width:36.651786px;}
._37{width:38.316000px;}
._38{width:39.709440px;}
._22{width:41.714400px;}
._9{width:42.984000px;}
._2a{width:43.988160px;}
._2b{width:45.275040px;}
._12{width:52.487520px;}
._26{width:54.260160px;}
._11{width:56.580000px;}
._24{width:62.261280px;}
._23{width:63.264000px;}
._8{width:77.222400px;}
._32{width:90.959520px;}
._18{width:108.023520px;}
._42{width:109.424640px;}
._b{width:139.634880px;}
._4c{width:150.447360px;}
._4d{width:151.553760px;}
._44{width:172.203360px;}
._3e{width:177.960000px;}
._3a{width:184.532880px;}
._3b{width:198.840000px;}
._34{width:215.566080px;}
._40{width:216.900000px;}
._3c{width:222.660000px;}
._3d{width:242.760000px;}
._a{width:256.859520px;}
._3f{width:327.000000px;}
._35{width:360.124320px;}
._41{width:432.836160px;}
._43{width:450.339360px;}
._36{width:575.181600px;}
._45{width:769.956000px;}
._6{width:777.876000px;}
._46{width:790.863840px;}
._7{width:799.828800px;}
._c{width:837.096000px;}
._33{width:849.360000px;}
._d{width:860.734080px;}
._19{width:870.216000px;}
._1a{width:894.490080px;}
.fc6{color:rgb(4,98,193);}
.fc5{color:transparent;}
.fc4{color:rgb(34,31,31);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(46,83,149);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:11.520000px;}
.fs1a{font-size:30.240000px;}
.fs16{font-size:33.120000px;}
.fs11{font-size:36.000000px;}
.fs1b{font-size:38.880000px;}
.fs13{font-size:41.760000px;}
.fs14{font-size:44.640000px;}
.fs15{font-size:47.520000px;}
.fsb{font-size:50.400000px;}
.fs10{font-size:54.720000px;}
.fs2{font-size:57.600000px;}
.fs1{font-size:60.480000px;}
.fs12{font-size:63.360000px;}
.fs8{font-size:63.750880px;}
.fsc{font-size:66.240000px;}
.fs17{font-size:69.120000px;}
.fs9{font-size:72.000000px;}
.fsd{font-size:74.880000px;}
.fs5{font-size:77.760000px;}
.fs1c{font-size:78.929661px;}
.fs0{font-size:83.520000px;}
.fsa{font-size:90.720000px;}
.fsf{font-size:96.480000px;}
.fs7{font-size:104.733589px;}
.fs4{font-size:108.000000px;}
.fse{font-size:113.760000px;}
.fs19{font-size:116.640000px;}
.fs3{font-size:119.912370px;}
.fs6{font-size:144.000000px;}
.y213{bottom:-14.400000px;}
.y0{bottom:0.000000px;}
.y1ae{bottom:1.440000px;}
.y156{bottom:2.880000px;}
.y15d{bottom:2.925000px;}
.y216{bottom:3.240000px;}
.y154{bottom:3.600000px;}
.y165{bottom:3.960000px;}
.y23a{bottom:4.320000px;}
.y1e7{bottom:4.680000px;}
.y11a{bottom:5.040000px;}
.y11e{bottom:5.070000px;}
.y1e4{bottom:5.085000px;}
.y59{bottom:5.400000px;}
.y1e6{bottom:6.480000px;}
.y167{bottom:9.360000px;}
.y168{bottom:9.720000px;}
.y206{bottom:10.440000px;}
.y207{bottom:10.800000px;}
.y20b{bottom:11.160000px;}
.y209{bottom:11.190000px;}
.y152{bottom:11.520000px;}
.y131{bottom:12.240000px;}
.y99{bottom:13.320000px;}
.y9e{bottom:13.680000px;}
.ya3{bottom:14.085000px;}
.y94{bottom:14.400000px;}
.y16a{bottom:15.840000px;}
.y16b{bottom:16.560000px;}
.y164{bottom:16.920000px;}
.y210{bottom:17.280000px;}
.y86{bottom:18.000000px;}
.y79{bottom:18.360000px;}
.y63{bottom:18.720000px;}
.y84{bottom:18.750000px;}
.y69{bottom:19.080000px;}
.y5e{bottom:19.125000px;}
.y25b{bottom:22.365000px;}
.y163{bottom:22.680000px;}
.y238{bottom:22.725000px;}
.y259{bottom:23.040000px;}
.y5c{bottom:23.760000px;}
.y211{bottom:24.120000px;}
.ya7{bottom:24.480000px;}
.y1ac{bottom:25.560000px;}
.y1a6{bottom:27.720000px;}
.y1a2{bottom:27.765000px;}
.y77{bottom:29.520000px;}
.ya5{bottom:32.040000px;}
.y15b{bottom:32.400000px;}
.y98{bottom:34.200000px;}
.y9d{bottom:34.560000px;}
.ya2{bottom:34.605000px;}
.y93{bottom:34.950000px;}
.y78{bottom:40.320000px;}
.y62{bottom:40.680000px;}
.y83{bottom:40.710000px;}
.y68{bottom:41.040000px;}
.y75{bottom:41.400000px;}
.ya6{bottom:45.360000px;}
.y1a1{bottom:51.885000px;}
.y1a5{bottom:52.200000px;}
.y97{bottom:54.720000px;}
.y9c{bottom:54.750000px;}
.ya1{bottom:55.125000px;}
.y92{bottom:55.470000px;}
.y96{bottom:56.880000px;}
.y9b{bottom:56.910000px;}
.y15a{bottom:58.320000px;}
.y60{bottom:61.920000px;}
.y81{bottom:61.950000px;}
.y88{bottom:61.965000px;}
.y82{bottom:62.310000px;}
.y7e{bottom:62.325000px;}
.y61{bottom:62.640000px;}
.y7f{bottom:62.685000px;}
.y67{bottom:63.000000px;}
.y6f{bottom:63.360000px;}
.y8f{bottom:63.405000px;}
.y5a{bottom:69.156000px;}
.y91{bottom:69.510000px;}
.ya0{bottom:69.525000px;}
.y58{bottom:71.676000px;}
.y7b{bottom:75.240000px;}
.y65{bottom:75.270000px;}
.y2db{bottom:75.276000px;}
.y8d{bottom:75.285000px;}
.y159{bottom:84.240000px;}
.y72{bottom:84.270000px;}
.y6c{bottom:84.285000px;}
.y7c{bottom:84.600000px;}
.y66{bottom:84.630000px;}
.y8e{bottom:84.645000px;}
.y74{bottom:85.350000px;}
.y6e{bottom:85.365000px;}
.y236{bottom:98.310000px;}
.y6b{bottom:105.885000px;}
.y71{bottom:106.230000px;}
.y6d{bottom:106.965000px;}
.y73{bottom:107.310000px;}
.yd7{bottom:113.796000px;}
.y2ac{bottom:115.596000px;}
.y150{bottom:118.476000px;}
.y2ca{bottom:118.836000px;}
.y1f2{bottom:120.636000px;}
.y19f{bottom:120.996000px;}
.y285{bottom:124.236000px;}
.y2fb{bottom:128.196000px;}
.y25c{bottom:128.916000px;}
.y204{bottom:129.636000px;}
.y235{bottom:131.790000px;}
.y2ab{bottom:136.116000px;}
.y14f{bottom:139.356000px;}
.y2d{bottom:141.156000px;}
.y19e{bottom:141.516000px;}
.y284{bottom:145.116000px;}
.y342{bottom:146.916000px;}
.y31d{bottom:147.636000px;}
.y87{bottom:152.310000px;}
.yd6{bottom:153.750000px;}
.y12f{bottom:155.910000px;}
.y2aa{bottom:156.990000px;}
.y2c9{bottom:160.230000px;}
.y10a{bottom:161.670000px;}
.y1f1{bottom:162.030000px;}
.y19d{bottom:162.390000px;}
.y283{bottom:165.630000px;}
.y341{bottom:165.990000px;}
.y31c{bottom:166.710000px;}
.y234{bottom:173.235000px;}
.y25a{bottom:174.990000px;}
.y12e{bottom:176.430000px;}
.y2a9{bottom:177.510000px;}
.y2b{bottom:178.950000px;}
.y2fa{bottom:179.670000px;}
.y2c8{bottom:180.750000px;}
.y19c{bottom:182.910000px;}
.y340{bottom:185.070000px;}
.y31b{bottom:185.790000px;}
.y282{bottom:186.510000px;}
.y2c{bottom:188.670000px;}
.y57{bottom:189.030000px;}
.y109{bottom:191.550000px;}
.y15c{bottom:191.910000px;}
.yd5{bottom:192.990000px;}
.y12d{bottom:197.355000px;}
.y2a8{bottom:198.435000px;}
.y2f9{bottom:198.795000px;}
.y2c7{bottom:201.315000px;}
.y158{bottom:203.835000px;}
.y31a{bottom:204.555000px;}
.y281{bottom:207.075000px;}
.y19b{bottom:208.875000px;}
.y1c5{bottom:210.675000px;}
.y108{bottom:212.115000px;}
.y258{bottom:212.835000px;}
.y1f0{bottom:213.555000px;}
.y12c{bottom:217.875000px;}
.y2a7{bottom:218.955000px;}
.y2a{bottom:220.755000px;}
.y2c6{bottom:222.195000px;}
.y319{bottom:223.635000px;}
.yd4{bottom:225.435000px;}
.y280{bottom:227.595000px;}
.y1c4{bottom:231.195000px;}
.y33f{bottom:231.915000px;}
.y85{bottom:232.275000px;}
.y107{bottom:232.995000px;}
.y1ef{bottom:235.155000px;}
.y2f8{bottom:236.595000px;}
.y2a6{bottom:239.835000px;}
.yd3{bottom:241.275000px;}
.y56{bottom:242.355000px;}
.y2c5{bottom:242.715000px;}
.y12b{bottom:247.395000px;}
.y33e{bottom:250.635000px;}
.y1c3{bottom:252.075000px;}
.y106{bottom:253.515000px;}
.y358{bottom:254.235000px;}
.y1ee{bottom:255.675000px;}
.yd2{bottom:257.115000px;}
.y27f{bottom:257.475000px;}
.y19a{bottom:259.275000px;}
.y2a5{bottom:260.355000px;}
.y55{bottom:263.595000px;}
.y12a{bottom:267.555000px;}
.y33d{bottom:269.715000px;}
.y157{bottom:270.795000px;}
.yd1{bottom:272.595000px;}
.y357{bottom:273.315000px;}
.y231{bottom:273.675000px;}
.y29{bottom:274.035000px;}
.y2f7{bottom:274.755000px;}
.y1ed{bottom:276.555000px;}
.y27e{bottom:278.355000px;}
.y155{bottom:280.515000px;}
.y2a4{bottom:281.235000px;}
.y318{bottom:282.315000px;}
.y105{bottom:282.675000px;}
.y2c4{bottom:284.115000px;}
.y54{bottom:284.475000px;}
.yd0{bottom:288.075000px;}
.y33c{bottom:288.795000px;}
.yfb{bottom:291.675000px;}
.y1c2{bottom:293.475000px;}
.y1ab{bottom:293.835000px;}
.y230{bottom:294.555000px;}
.y129{bottom:296.355000px;}
.y1ec{bottom:297.075000px;}
.y27d{bottom:298.875000px;}
.y28{bottom:301.035000px;}
.y2a3{bottom:301.755000px;}
.y153{bottom:302.115000px;}
.y199{bottom:302.835000px;}
.ycf{bottom:303.555000px;}
.y53{bottom:305.355000px;}
.y33b{bottom:307.515000px;}
.y317{bottom:308.595000px;}
.y356{bottom:310.755000px;}
.y80{bottom:311.835000px;}
.y104{bottom:312.195000px;}
.y2f6{bottom:312.555000px;}
.y1c1{bottom:313.995000px;}
.y22f{bottom:315.075000px;}
.y1eb{bottom:317.955000px;}
.yce{bottom:319.035000px;}
.y27c{bottom:319.755000px;}
.y27{bottom:322.305000px;}
.y2a2{bottom:322.665000px;}
.y198{bottom:325.185000px;}
.y2c3{bottom:325.545000px;}
.y52{bottom:325.905000px;}
.y33a{bottom:326.625000px;}
.y128{bottom:326.985000px;}
.y316{bottom:327.705000px;}
.y355{bottom:329.505000px;}
.y257{bottom:330.945000px;}
.y2f5{bottom:331.665000px;}
.yfa{bottom:332.025000px;}
.ycd{bottom:334.545000px;}
.y1c0{bottom:334.905000px;}
.y22e{bottom:335.985000px;}
.y1a4{bottom:336.345000px;}
.y103{bottom:342.825000px;}
.y2a1{bottom:343.185000px;}
.y26{bottom:343.545000px;}
.y1aa{bottom:345.345000px;}
.y2c2{bottom:345.705000px;}
.y315{bottom:346.065000px;}
.y51{bottom:346.785000px;}
.y197{bottom:347.505000px;}
.y127{bottom:347.865000px;}
.y27b{bottom:348.585000px;}
.ycc{bottom:350.025000px;}
.y256{bottom:350.745000px;}
.y1bf{bottom:355.425000px;}
.y14e{bottom:356.505000px;}
.y1a9{bottom:359.385000px;}
.y102{bottom:363.345000px;}
.y2a0{bottom:364.065000px;}
.y25{bottom:364.425000px;}
.ycb{bottom:365.505000px;}
.y2c1{bottom:366.225000px;}
.y50{bottom:367.305000px;}
.y354{bottom:367.665000px;}
.y126{bottom:368.385000px;}
.y196{bottom:370.185000px;}
.y255{bottom:371.625000px;}
.y1ad{bottom:373.065000px;}
.y14d{bottom:373.785000px;}
.y314{bottom:374.505000px;}
.y1be{bottom:376.305000px;}
.y22d{bottom:377.385000px;}
.y1ea{bottom:377.745000px;}
.y17f{bottom:378.105000px;}
.y27a{bottom:378.825000px;}
.y1a8{bottom:380.625000px;}
.ya4{bottom:380.985000px;}
.yca{bottom:381.345000px;}
.y339{bottom:383.505000px;}
.y101{bottom:384.225000px;}
.y24{bottom:385.665000px;}
.y2c0{bottom:386.745000px;}
.y4f{bottom:388.185000px;}
.y125{bottom:388.905000px;}
.y7d{bottom:391.425000px;}
.y1e9{bottom:392.145000px;}
.y195{bottom:392.505000px;}
.y29f{bottom:393.585000px;}
.y14c{bottom:394.665000px;}
.yc9{bottom:396.825000px;}
.y22c{bottom:397.905000px;}
.y17e{bottom:398.625000px;}
.y279{bottom:398.985000px;}
.y1a7{bottom:402.225000px;}
.y338{bottom:403.665000px;}
.y100{bottom:404.745000px;}
.y353{bottom:405.825000px;}
.y23{bottom:406.905000px;}
.y2bf{bottom:407.625000px;}
.y4e{bottom:408.705000px;}
.y124{bottom:409.785000px;}
.y1e8{bottom:410.865000px;}
.y2f4{bottom:411.585000px;}
.yc8{bottom:412.305000px;}
.y313{bottom:412.665000px;}
.y254{bottom:413.025000px;}
.y29e{bottom:414.465000px;}
.y194{bottom:414.825000px;}
.y14b{bottom:415.185000px;}
.y1bd{bottom:417.705000px;}
.y278{bottom:419.145000px;}
.y17d{bottom:419.505000px;}
.yf9{bottom:420.225000px;}
.y337{bottom:422.745000px;}
.y22b{bottom:423.465000px;}
.y352{bottom:424.905000px;}
.yff{bottom:425.625000px;}
.y1e5{bottom:426.345000px;}
.yc7{bottom:427.785000px;}
.y22{bottom:428.145000px;}
.y4d{bottom:429.585000px;}
.y123{bottom:430.305000px;}
.y2f3{bottom:431.385000px;}
.y1a0{bottom:433.185000px;}
.y253{bottom:433.545000px;}
.y29d{bottom:434.985000px;}
.y14a{bottom:435.705000px;}
.y22a{bottom:436.065000px;}
.y193{bottom:437.505000px;}
.y1bc{bottom:438.225000px;}
.yf8{bottom:439.305000px;}
.y277{bottom:439.665000px;}
.y17c{bottom:440.025000px;}
.y336{bottom:441.465000px;}
.y9f{bottom:443.265000px;}
.y351{bottom:443.625000px;}
.y1e3{bottom:445.065000px;}
.yfe{bottom:446.190000px;}
.y21{bottom:449.070000px;}
.y4c{bottom:450.150000px;}
.y312{bottom:450.510000px;}
.y252{bottom:454.470000px;}
.y229{bottom:454.830000px;}
.y29c{bottom:455.910000px;}
.y1bb{bottom:459.150000px;}
.yf7{bottom:459.870000px;}
.y122{bottom:460.230000px;}
.y335{bottom:460.590000px;}
.y17b{bottom:460.950000px;}
.y350{bottom:462.750000px;}
.y149{bottom:464.910000px;}
.y1e2{bottom:468.870000px;}
.y2f2{bottom:469.230000px;}
.y20{bottom:470.310000px;}
.y4b{bottom:470.670000px;}
.y7a{bottom:471.390000px;}
.y228{bottom:472.110000px;}
.yc6{bottom:474.630000px;}
.y251{bottom:474.990000px;}
.yfd{bottom:475.710000px;}
.y29b{bottom:476.430000px;}
.y334{bottom:479.310000px;}
.y1ba{bottom:479.670000px;}
.y276{bottom:480.030000px;}
.yf6{bottom:480.750000px;}
.y17a{bottom:481.470000px;}
.y34f{bottom:481.830000px;}
.y192{bottom:482.190000px;}
.y2f1{bottom:488.670000px;}
.y2be{bottom:489.030000px;}
.y1f{bottom:491.550000px;}
.y203{bottom:493.710000px;}
.y1a3{bottom:494.790000px;}
.y250{bottom:495.870000px;}
.y29a{bottom:497.310000px;}
.y275{bottom:500.190000px;}
.y1b9{bottom:500.550000px;}
.yf5{bottom:501.270000px;}
.y121{bottom:501.630000px;}
.y179{bottom:501.990000px;}
.yfc{bottom:503.430000px;}
.y191{bottom:504.510000px;}
.y333{bottom:507.750000px;}
.y202{bottom:509.550000px;}
.y1e1{bottom:510.630000px;}
.y1e{bottom:512.790000px;}
.yc5{bottom:513.150000px;}
.y148{bottom:514.590000px;}
.y24f{bottom:516.390000px;}
.y299{bottom:517.830000px;}
.y2f0{bottom:519.270000px;}
.y274{bottom:520.350000px;}
.y1b8{bottom:521.070000px;}
.yf4{bottom:522.150000px;}
.y332{bottom:526.470000px;}
.y190{bottom:527.190000px;}
.y2bd{bottom:528.270000px;}
.y120{bottom:529.710000px;}
.y201{bottom:530.070000px;}
.y1e0{bottom:531.150000px;}
.y178{bottom:531.870000px;}
.y1d{bottom:533.670000px;}
.y9a{bottom:535.830000px;}
.y311{bottom:536.550000px;}
.y34e{bottom:538.350000px;}
.y4a{bottom:539.070000px;}
.y1b7{bottom:541.950000px;}
.yf3{bottom:543.030000px;}
.yc4{bottom:544.110000px;}
.y331{bottom:545.190000px;}
.y24e{bottom:545.550000px;}
.y2bc{bottom:547.350000px;}
.y2ef{bottom:547.710000px;}
.y18f{bottom:549.150000px;}
.y11f{bottom:549.510000px;}
.y273{bottom:549.870000px;}
.y200{bottom:550.950000px;}
.y1df{bottom:552.030000px;}
.y177{bottom:552.390000px;}
.y147{bottom:553.830000px;}
.y1c{bottom:554.910000px;}
.y310{bottom:555.630000px;}
.y298{bottom:558.150000px;}
.yc3{bottom:559.590000px;}
.y1b6{bottom:562.470000px;}
.yf2{bottom:564.990000px;}
.y2ee{bottom:566.430000px;}
.y34d{bottom:566.790000px;}
.y2bb{bottom:567.870000px;}
.y49{bottom:568.590000px;}
.y11d{bottom:569.670000px;}
.y18e{bottom:570.030000px;}
.y272{bottom:570.390000px;}
.y1ff{bottom:571.470000px;}
.y1de{bottom:572.580000px;}
.y176{bottom:573.300000px;}
.y76{bottom:573.660000px;}
.yc2{bottom:575.100000px;}
.y30f{bottom:575.820000px;}
.y1b{bottom:576.180000px;}
.y1b5{bottom:583.380000px;}
.y2ed{bottom:585.540000px;}
.yf1{bottom:585.900000px;}
.y46{bottom:587.700000px;}
.y2ba{bottom:588.780000px;}
.y11c{bottom:589.860000px;}
.y18d{bottom:590.580000px;}
.yc1{bottom:590.940000px;}
.y1fe{bottom:592.380000px;}
.y1dd{bottom:593.460000px;}
.y175{bottom:593.820000px;}
.y146{bottom:594.540000px;}
.y24d{bottom:595.980000px;}
.y1a{bottom:597.420000px;}
.y1b4{bottom:603.900000px;}
.y2ec{bottom:604.620000px;}
.yc0{bottom:606.420000px;}
.y95{bottom:607.500000px;}
.y45{bottom:608.220000px;}
.y2b9{bottom:609.300000px;}
.y11b{bottom:610.020000px;}
.y271{bottom:610.740000px;}
.y330{bottom:611.100000px;}
.y1fd{bottom:612.900000px;}
.y1dc{bottom:613.980000px;}
.y174{bottom:614.700000px;}
.y297{bottom:616.140000px;}
.y24c{bottom:617.940000px;}
.y19{bottom:618.300000px;}
.y151{bottom:621.180000px;}
.ybf{bottom:621.900000px;}
.y34c{bottom:623.340000px;}
.y1b3{bottom:624.780000px;}
.yf0{bottom:627.300000px;}
.y48{bottom:628.740000px;}
.y44{bottom:629.100000px;}
.y2b8{bottom:630.180000px;}
.y70{bottom:630.900000px;}
.y119{bottom:631.980000px;}
.y2eb{bottom:632.340000px;}
.y1fc{bottom:633.780000px;}
.y173{bottom:635.220000px;}
.y296{bottom:636.660000px;}
.ybe{bottom:637.380000px;}
.y24b{bottom:638.460000px;}
.y32f{bottom:639.180000px;}
.y18{bottom:639.540000px;}
.y18c{bottom:640.620000px;}
.y1db{bottom:642.780000px;}
.y1b2{bottom:645.300000px;}
.y2da{bottom:646.020000px;}
.yef{bottom:647.820000px;}
.y47{bottom:649.260000px;}
.y43{bottom:649.620000px;}
.y2b7{bottom:650.700000px;}
.y270{bottom:651.420000px;}
.ybd{bottom:652.860000px;}
.y1fb{bottom:654.300000px;}
.y172{bottom:656.100000px;}
.y145{bottom:656.460000px;}
.y118{bottom:657.540000px;}
.y32e{bottom:657.900000px;}
.y24a{bottom:658.980000px;}
.y17{bottom:660.780000px;}
.y18b{bottom:662.220000px;}
.y1b1{bottom:665.820000px;}
.y2d9{bottom:666.540000px;}
.ybc{bottom:668.340000px;}
.yee{bottom:668.700000px;}
.y117{bottom:670.140000px;}
.y42{bottom:670.500000px;}
.y30e{bottom:671.220000px;}
.y26f{bottom:671.580000px;}
.y144{bottom:673.740000px;}
.y1fa{bottom:675.180000px;}
.y32d{bottom:676.980000px;}
.y295{bottom:678.060000px;}
.y90{bottom:679.140000px;}
.y249{bottom:679.860000px;}
.y16{bottom:682.020000px;}
.y18a{bottom:682.740000px;}
.ybb{bottom:683.820000px;}
.y171{bottom:684.900000px;}
.y2d8{bottom:687.420000px;}
.yed{bottom:689.220000px;}
.y34b{bottom:689.580000px;}
.y41{bottom:691.020000px;}
.y26e{bottom:691.740000px;}
.y2b6{bottom:692.100000px;}
.y143{bottom:694.620000px;}
.y1f9{bottom:695.700000px;}
.y32c{bottom:696.060000px;}
.y1da{bottom:696.420000px;}
.y1b0{bottom:697.140000px;}
.y294{bottom:698.970000px;}
.yba{bottom:699.330000px;}
.y116{bottom:699.690000px;}
.y248{bottom:700.410000px;}
.y15{bottom:702.930000px;}
.y189{bottom:703.290000px;}
.y2d7{bottom:707.970000px;}
.yec{bottom:709.770000px;}
.y40{bottom:711.930000px;}
.y2b5{bottom:712.650000px;}
.yb9{bottom:714.810000px;}
.y142{bottom:715.170000px;}
.y170{bottom:715.530000px;}
.y1f8{bottom:716.250000px;}
.y2ea{bottom:717.330000px;}
.y1d9{bottom:718.410000px;}
.y30d{bottom:718.770000px;}
.y1af{bottom:719.490000px;}
.y115{bottom:720.210000px;}
.y247{bottom:721.290000px;}
.y14{bottom:724.170000px;}
.y2d6{bottom:728.850000px;}
.yb8{bottom:730.650000px;}
.y3f{bottom:732.450000px;}
.y2b4{bottom:733.530000px;}
.y32b{bottom:735.330000px;}
.y16f{bottom:736.050000px;}
.y2e9{bottom:736.410000px;}
.y30c{bottom:737.130000px;}
.y1d8{bottom:739.290000px;}
.yeb{bottom:740.010000px;}
.y293{bottom:740.370000px;}
.y114{bottom:741.090000px;}
.y246{bottom:741.810000px;}
.y227{bottom:743.610000px;}
.y141{bottom:744.690000px;}
.y13{bottom:745.410000px;}
.yb7{bottom:746.130000px;}
.y2d5{bottom:749.370000px;}
.y26d{bottom:752.610000px;}
.y3e{bottom:753.330000px;}
.y2b3{bottom:754.050000px;}
.y6a{bottom:755.490000px;}
.y16e{bottom:756.930000px;}
.y1d7{bottom:759.810000px;}
.yea{bottom:760.530000px;}
.y226{bottom:760.890000px;}
.yb6{bottom:761.610000px;}
.y245{bottom:762.690000px;}
.y188{bottom:763.050000px;}
.y30b{bottom:765.570000px;}
.y212{bottom:769.170000px;}
.y12{bottom:769.530000px;}
.y2d4{bottom:770.250000px;}
.y8c{bottom:771.690000px;}
.y26c{bottom:772.770000px;}
.y3d{bottom:773.850000px;}
.y20f{bottom:774.210000px;}
.y2b2{bottom:774.930000px;}
.y16d{bottom:777.450000px;}
.y225{bottom:778.890000px;}
.y1d6{bottom:780.330000px;}
.ye9{bottom:781.410000px;}
.y292{bottom:781.770000px;}
.y113{bottom:782.850000px;}
.y244{bottom:783.210000px;}
.y187{bottom:783.570000px;}
.y30a{bottom:784.650000px;}
.y2d3{bottom:790.770000px;}
.yb5{bottom:792.570000px;}
.y26b{bottom:792.930000px;}
.y32a{bottom:793.290000px;}
.y140{bottom:794.370000px;}
.y3c{bottom:794.730000px;}
.y2b1{bottom:795.450000px;}
.y224{bottom:799.410000px;}
.y1d5{bottom:801.210000px;}
.ye8{bottom:801.930000px;}
.y291{bottom:802.290000px;}
.y1f7{bottom:803.370000px;}
.y309{bottom:803.730000px;}
.y243{bottom:804.090000px;}
.y112{bottom:804.450000px;}
.y16c{bottom:805.890000px;}
.y11{bottom:808.770000px;}
.y2d2{bottom:811.650000px;}
.y329{bottom:812.370000px;}
.y13f{bottom:812.730000px;}
.y20e{bottom:813.450000px;}
.y3b{bottom:815.250000px;}
.y2b0{bottom:816.330000px;}
.y13d{bottom:820.650000px;}
.y2e8{bottom:821.370000px;}
.y1d4{bottom:821.730000px;}
.ye7{bottom:822.810000px;}
.y242{bottom:824.610000px;}
.y111{bottom:825.015000px;}
.y169{bottom:826.455000px;}
.y223{bottom:828.975000px;}
.y13e{bottom:830.415000px;}
.y308{bottom:831.495000px;}
.yb4{bottom:831.855000px;}
.y290{bottom:832.215000px;}
.y26a{bottom:833.655000px;}
.y3a{bottom:836.175000px;}
.y2e7{bottom:840.135000px;}
.y34a{bottom:840.495000px;}
.y1d3{bottom:842.655000px;}
.ye6{bottom:843.375000px;}
.y241{bottom:845.535000px;}
.y186{bottom:845.895000px;}
.y20d{bottom:846.255000px;}
.y13c{bottom:846.615000px;}
.y10{bottom:846.975000px;}
.yb3{bottom:849.855000px;}
.y328{bottom:850.575000px;}
.y28f{bottom:853.095000px;}
.y130{bottom:855.615000px;}
.y2af{bottom:856.335000px;}
.y39{bottom:856.695000px;}
.y2e6{bottom:859.215000px;}
.y307{bottom:859.935000px;}
.y269{bottom:862.815000px;}
.y1d2{bottom:863.175000px;}
.ye5{bottom:864.255000px;}
.y166{bottom:865.695000px;}
.yb2{bottom:867.135000px;}
.y1f6{bottom:868.935000px;}
.y327{bottom:869.295000px;}
.y222{bottom:870.375000px;}
.y28e{bottom:873.615000px;}
.y8b{bottom:873.975000px;}
.y185{bottom:875.415000px;}
.y38{bottom:877.575000px;}
.y2e5{bottom:878.295000px;}
.y20c{bottom:878.655000px;}
.y64{bottom:879.735000px;}
.y268{bottom:883.335000px;}
.y1d1{bottom:884.055000px;}
.ye4{bottom:884.775000px;}
.y306{bottom:887.655000px;}
.y13b{bottom:888.015000px;}
.y110{bottom:890.535000px;}
.y221{bottom:891.255000px;}
.y162{bottom:893.055000px;}
.y28d{bottom:894.495000px;}
.yf{bottom:895.575000px;}
.y240{bottom:895.935000px;}
.y184{bottom:896.295000px;}
.y326{bottom:897.375000px;}
.y37{bottom:898.095000px;}
.yb1{bottom:899.535000px;}
.y1f5{bottom:901.695000px;}
.y267{bottom:904.215000px;}
.y1d0{bottom:904.575000px;}
.ye3{bottom:905.655000px;}
.y2e4{bottom:906.015000px;}
.y305{bottom:906.375000px;}
.y13a{bottom:908.535000px;}
.y20a{bottom:911.055000px;}
.y220{bottom:911.775000px;}
.y2ae{bottom:914.655000px;}
.y28c{bottom:915.015000px;}
.y325{bottom:916.455000px;}
.y183{bottom:916.815000px;}
.y36{bottom:918.975000px;}
.ye{bottom:921.495000px;}
.y266{bottom:925.095000px;}
.y1cf{bottom:925.455000px;}
.ye2{bottom:926.175000px;}
.y21f{bottom:932.655000px;}
.y1f4{bottom:934.455000px;}
.yb0{bottom:935.175000px;}
.y324{bottom:935.535000px;}
.y28b{bottom:935.895000px;}
.y182{bottom:936.615000px;}
.y139{bottom:937.695000px;}
.y35{bottom:939.495000px;}
.y208{bottom:943.455000px;}
.y2e3{bottom:944.175000px;}
.y304{bottom:944.535000px;}
.y265{bottom:945.615000px;}
.y1ce{bottom:945.975000px;}
.ye1{bottom:947.055000px;}
.y161{bottom:949.575000px;}
.yd{bottom:951.015000px;}
.y23f{bottom:952.125000px;}
.y181{bottom:952.485000px;}
.y21e{bottom:953.205000px;}
.y323{bottom:954.285000px;}
.y2ad{bottom:956.085000px;}
.y2d1{bottom:956.445000px;}
.yaf{bottom:959.325000px;}
.y34{bottom:960.405000px;}
.y2e2{bottom:962.925000px;}
.y303{bottom:963.285000px;}
.y28a{bottom:965.445000px;}
.y264{bottom:966.525000px;}
.y1cd{bottom:966.885000px;}
.y138{bottom:967.245000px;}
.yc{bottom:967.605000px;}
.y23e{bottom:970.845000px;}
.y349{bottom:971.925000px;}
.y322{bottom:973.005000px;}
.y21d{bottom:974.085000px;}
.y205{bottom:975.885000px;}
.y8a{bottom:976.245000px;}
.ye0{bottom:976.605000px;}
.y2d0{bottom:977.325000px;}
.y160{bottom:979.485000px;}
.y33{bottom:980.925000px;}
.y5f{bottom:982.005000px;}
.yae{bottom:983.445000px;}
.yb{bottom:984.885000px;}
.y263{bottom:987.045000px;}
.y1cc{bottom:987.405000px;}
.y137{bottom:987.765000px;}
.y10f{bottom:988.485000px;}
.y23d{bottom:989.565000px;}
.y2e1{bottom:991.005000px;}
.y289{bottom:991.725000px;}
.y21c{bottom:994.605000px;}
.ydf{bottom:997.485000px;}
.y2cf{bottom:997.845000px;}
.y1f3{bottom:998.925000px;}
.y15f{bottom:1000.005000px;}
.y348{bottom:1000.365000px;}
.y321{bottom:1001.445000px;}
.ya{bottom:1002.165000px;}
.y262{bottom:1007.925000px;}
.y1cb{bottom:1008.285000px;}
.y136{bottom:1008.645000px;}
.y10e{bottom:1009.005000px;}
.y2e0{bottom:1010.085000px;}
.y302{bottom:1010.445000px;}
.y32{bottom:1013.685000px;}
.y21b{bottom:1015.485000px;}
.yde{bottom:1018.005000px;}
.y2ce{bottom:1018.725000px;}
.y9{bottom:1019.085000px;}
.y347{bottom:1019.445000px;}
.y320{bottom:1020.165000px;}
.yad{bottom:1025.565000px;}
.y23c{bottom:1027.005000px;}
.y261{bottom:1028.445000px;}
.y15e{bottom:1028.805000px;}
.y135{bottom:1029.165000px;}
.y301{bottom:1029.525000px;}
.y10d{bottom:1029.885000px;}
.y288{bottom:1030.965000px;}
.y215{bottom:1036.005000px;}
.y8{bottom:1036.365000px;}
.y1ca{bottom:1037.085000px;}
.y346{bottom:1038.165000px;}
.ydd{bottom:1038.885000px;}
.y2cd{bottom:1039.245000px;}
.y23b{bottom:1045.725000px;}
.y214{bottom:1046.445000px;}
.y31{bottom:1046.805000px;}
.y2df{bottom:1048.245000px;}
.y260{bottom:1049.325000px;}
.yac{bottom:1049.685000px;}
.y134{bottom:1050.045000px;}
.y10c{bottom:1050.405000px;}
.y7{bottom:1053.645000px;}
.y345{bottom:1057.245000px;}
.y31f{bottom:1058.325000px;}
.ydc{bottom:1059.405000px;}
.y2cc{bottom:1060.125000px;}
.y5d{bottom:1061.565000px;}
.y287{bottom:1063.725000px;}
.y237{bottom:1064.445000px;}
.y21a{bottom:1065.885000px;}
.y300{bottom:1067.325000px;}
.y1c9{bottom:1068.045000px;}
.y25f{bottom:1069.845000px;}
.y6{bottom:1070.925000px;}
.y10b{bottom:1071.285000px;}
.y30{bottom:1076.325000px;}
.y31e{bottom:1077.045000px;}
.y89{bottom:1078.170000px;}
.ydb{bottom:1080.330000px;}
.y239{bottom:1083.930000px;}
.y2de{bottom:1085.730000px;}
.y2ff{bottom:1086.450000px;}
.y219{bottom:1086.810000px;}
.y5{bottom:1088.250000px;}
.y1c8{bottom:1090.410000px;}
.y25e{bottom:1090.770000px;}
.y133{bottom:1091.850000px;}
.y344{bottom:1095.450000px;}
.yab{bottom:1096.530000px;}
.y2cb{bottom:1100.130000px;}
.y5b{bottom:1100.490000px;}
.yda{bottom:1100.850000px;}
.y233{bottom:1101.930000px;}
.y2dd{bottom:1104.090000px;}
.y2fe{bottom:1105.170000px;}
.y2f{bottom:1105.890000px;}
.y4{bottom:1106.970000px;}
.y218{bottom:1107.330000px;}
.y25d{bottom:1111.290000px;}
.y1c7{bottom:1112.370000px;}
.y132{bottom:1112.730000px;}
.yaa{bottom:1114.170000px;}
.yd9{bottom:1121.730000px;}
.y2dc{bottom:1123.170000px;}
.y343{bottom:1123.530000px;}
.y2fd{bottom:1124.250000px;}
.y217{bottom:1127.850000px;}
.y286{bottom:1129.290000px;}
.ya9{bottom:1129.650000px;}
.y232{bottom:1130.370000px;}
.y3{bottom:1131.090000px;}
.y180{bottom:1131.810000px;}
.y2e{bottom:1139.010000px;}
.y1c6{bottom:1141.530000px;}
.yd8{bottom:1142.250000px;}
.y2fc{bottom:1142.970000px;}
.ya8{bottom:1145.130000px;}
.y2{bottom:1155.210000px;}
.y1{bottom:1179.330000px;}
.h43{height:14.760000px;}
.h45{height:14.796000px;}
.h41{height:15.120000px;}
.h6c{height:16.560000px;}
.h6e{height:17.280000px;}
.h6d{height:18.036000px;}
.h65{height:18.360000px;}
.h59{height:18.396000px;}
.h5a{height:18.720000px;}
.h71{height:19.080000px;}
.h11{height:19.800000px;}
.h35{height:20.160000px;}
.h37{height:20.196000px;}
.h36{height:20.520000px;}
.h69{height:24.840000px;}
.h60{height:25.560000px;}
.h73{height:25.596000px;}
.h4b{height:25.920000px;}
.h3f{height:28.080000px;}
.h38{height:28.800000px;}
.h67{height:29.678906px;}
.h62{height:32.400000px;}
.h61{height:32.436000px;}
.h46{height:32.505469px;}
.h74{height:32.760000px;}
.h63{height:32.796000px;}
.h34{height:35.332031px;}
.h6b{height:36.036000px;}
.h47{height:37.800000px;}
.h52{height:37.836000px;}
.h70{height:38.158594px;}
.h15{height:38.196000px;}
.h66{height:38.880000px;}
.h4d{height:39.240000px;}
.h6f{height:39.600000px;}
.h30{height:40.959844px;}
.h5c{height:40.985156px;}
.h3b{height:42.475781px;}
.h32{height:43.811719px;}
.h76{height:44.766562px;}
.h4a{height:44.860781px;}
.h42{height:45.921094px;}
.h5f{height:46.638281px;}
.h53{height:48.608438px;}
.h55{height:48.608469px;}
.h2e{height:48.761719px;}
.h2c{height:49.440234px;}
.h56{height:49.464844px;}
.h12{height:50.294531px;}
.h75{height:50.871094px;}
.h33{height:52.662656px;}
.h72{height:53.454805px;}
.h27{height:53.677969px;}
.h3d{height:53.704687px;}
.h28{height:54.034453px;}
.h7{height:54.750938px;}
.h2f{height:55.641797px;}
.h13{height:56.520000px;}
.h3e{height:56.531250px;}
.hb{height:57.711978px;}
.h4{height:58.050000px;}
.h29{height:59.328281px;}
.he{height:59.357813px;}
.h3a{height:60.679688px;}
.h3{height:60.952500px;}
.h26{height:61.560000px;}
.h2b{height:62.153438px;}
.h2d{height:62.184375px;}
.h77{height:63.855000px;}
.h2a{height:64.978594px;}
.h48{height:65.010937px;}
.h4c{height:66.757500px;}
.h4f{height:67.837500px;}
.h78{height:68.084282px;}
.h79{height:68.956875px;}
.h8{height:70.394063px;}
.h18{height:70.628906px;}
.hd{height:70.664062px;}
.h24{height:70.920000px;}
.h25{height:70.956000px;}
.hc{height:72.562500px;}
.h17{height:73.490625px;}
.h58{height:73.998281px;}
.h39{height:74.004654px;}
.h31{height:74.953125px;}
.h40{height:75.251250px;}
.h1c{height:76.317188px;}
.h10{height:78.367500px;}
.h16{height:78.840000px;}
.h20{height:78.876000px;}
.h1f{height:79.236000px;}
.h49{height:80.860781px;}
.h2{height:84.172500px;}
.h51{height:87.480000px;}
.h50{height:87.516000px;}
.hf{height:91.428750px;}
.h22{height:91.836000px;}
.h23{height:94.689844px;}
.ha{height:94.812536px;}
.h44{height:96.480000px;}
.h6{height:97.769531px;}
.h3c{height:98.024063px;}
.h5b{height:101.117813px;}
.h21{height:101.160000px;}
.h19{height:101.196000px;}
.h1e{height:101.556000px;}
.h5d{height:106.770938px;}
.h5{height:108.553483px;}
.h54{height:111.276000px;}
.h1a{height:111.649219px;}
.h5e{height:114.475781px;}
.h1b{height:123.516000px;}
.h1d{height:123.876000px;}
.h9{height:130.359375px;}
.h14{height:141.257812px;}
.h68{height:141.817500px;}
.h4e{height:151.762500px;}
.h57{height:161.962500px;}
.h6a{height:189.435000px;}
.h64{height:232.275000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:18.000000px;}
.w3{width:25.920000px;}
.w3f{width:28.080000px;}
.w40{width:34.200000px;}
.we{width:38.916000px;}
.w1b{width:39.276000px;}
.w35{width:40.716000px;}
.wf{width:46.080000px;}
.w11{width:46.476000px;}
.w1a{width:46.800000px;}
.w19{width:46.836000px;}
.w18{width:47.196000px;}
.w34{width:49.320000px;}
.w30{width:49.716000px;}
.w32{width:51.480000px;}
.w33{width:51.876000px;}
.w5{width:52.236000px;}
.w10{width:60.516000px;}
.w2e{width:62.280000px;}
.w31{width:62.316000px;}
.w1e{width:67.716000px;}
.w20{width:68.436000px;}
.w22{width:73.080000px;}
.w36{width:74.880000px;}
.w2b{width:79.596000px;}
.w2f{width:81.036000px;}
.w21{width:81.756000px;}
.w2a{width:83.196000px;}
.w3c{width:86.796000px;}
.w12{width:87.876000px;}
.w1f{width:90.036000px;}
.w3e{width:91.476000px;}
.w15{width:92.556000px;}
.w7{width:95.076000px;}
.w14{width:98.316000px;}
.w17{width:99.036000px;}
.w3d{width:104.076000px;}
.w23{width:104.436000px;}
.w2c{width:123.876000px;}
.w16{width:125.352000px;}
.wa{width:127.152000px;}
.w27{width:142.992000px;}
.w38{width:148.392000px;}
.w39{width:148.716000px;}
.w3b{width:149.472000px;}
.w8{width:150.195000px;}
.w37{width:151.995000px;}
.w28{width:169.275000px;}
.w25{width:171.075000px;}
.wd{width:176.835000px;}
.wc{width:192.705000px;}
.wb{width:194.115000px;}
.w26{width:198.075000px;}
.w9{width:209.955000px;}
.w13{width:212.505000px;}
.w3a{width:222.225000px;}
.w1c{width:419.940000px;}
.w24{width:510.330000px;}
.w6{width:552.450000px;}
.w2d{width:599.610000px;}
.w29{width:683.925000px;}
.w4{width:701.205000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x74{left:1.080000px;}
.x16{left:4.680000px;}
.x1a{left:7.920000px;}
.x64{left:9.720000px;}
.x2d{left:10.800000px;}
.x84{left:11.880000px;}
.x29{left:12.960000px;}
.x18{left:14.760000px;}
.x89{left:15.840000px;}
.x1e{left:17.280000px;}
.x6f{left:18.360000px;}
.x2b{left:20.550000px;}
.x1c{left:21.600000px;}
.x6e{left:22.680000px;}
.x7d{left:23.790000px;}
.x66{left:25.560000px;}
.x1d{left:27.000000px;}
.x8b{left:28.080000px;}
.x87{left:29.190000px;}
.x48{left:30.960000px;}
.x7e{left:32.070000px;}
.x88{left:33.150000px;}
.x99{left:34.230000px;}
.x8a{left:35.280000px;}
.x3d{left:36.360000px;}
.x4b{left:38.160000px;}
.x90{left:39.285000px;}
.x35{left:40.365000px;}
.x57{left:45.750000px;}
.x91{left:47.205000px;}
.x4c{left:50.445000px;}
.x2f{left:52.230000px;}
.x49{left:54.405000px;}
.x73{left:56.550000px;}
.x93{left:61.605000px;}
.x94{left:66.240000px;}
.x92{left:70.200000px;}
.x26{left:74.915987px;}
.x8c{left:79.595987px;}
.x32{left:85.710000px;}
.x5{left:87.155987px;}
.x30{left:89.670000px;}
.x63{left:97.596000px;}
.x5f{left:99.755987px;}
.x31{left:101.205000px;}
.x11{left:104.075987px;}
.x2e{left:105.165000px;}
.x13{left:106.235987px;}
.x9b{left:108.395987px;}
.x8d{left:111.276000px;}
.x12{left:114.515987px;}
.x77{left:119.555987px;}
.x8{left:122.435987px;}
.x23{left:127.835987px;}
.x42{left:131.831987px;}
.x36{left:133.631987px;}
.x9e{left:138.671987px;}
.x9f{left:142.631987px;}
.x25{left:144.791987px;}
.x4f{left:146.591987px;}
.x9c{left:148.751987px;}
.x21{left:151.274987px;}
.x9d{left:153.074987px;}
.x33{left:158.474987px;}
.x19{left:159.915000px;}
.x37{left:162.794987px;}
.x65{left:165.315000px;}
.x45{left:169.275000px;}
.x20{left:172.874987px;}
.x62{left:173.954987px;}
.x5e{left:175.395000px;}
.x6{left:176.474987px;}
.x3{left:177.554987px;}
.x39{left:180.074987px;}
.x5d{left:185.835000px;}
.x60{left:187.634987px;}
.x55{left:196.635000px;}
.x43{left:200.235000px;}
.x3a{left:204.194987px;}
.x78{left:209.234987px;}
.x7c{left:211.035000px;}
.x38{left:219.674987px;}
.x96{left:242.744987px;}
.x17{left:252.474000px;}
.x67{left:255.345000px;}
.xc{left:261.104987px;}
.x3b{left:262.904987px;}
.x28{left:264.705000px;}
.x1{left:267.224987px;}
.x27{left:271.904987px;}
.x52{left:276.944987px;}
.x5c{left:279.825000px;}
.x7b{left:283.788000px;}
.x44{left:288.105000px;}
.x53{left:290.264987px;}
.xd{left:292.064987px;}
.x7f{left:293.505000px;}
.x4d{left:294.944987px;}
.x34{left:299.265000px;}
.x54{left:300.344987px;}
.x71{left:303.945000px;}
.x1f{left:307.904987px;}
.x9{left:314.429987px;}
.xe{left:320.909987px;}
.x68{left:323.790000px;}
.x7a{left:324.869987px;}
.xf{left:330.269987px;}
.x75{left:337.470000px;}
.x80{left:344.670000px;}
.x3e{left:346.110000px;}
.x10{left:357.269987px;}
.x3c{left:358.350000px;}
.xa{left:359.789987px;}
.xb{left:370.229987px;}
.x22{left:375.629987px;}
.x41{left:382.110000px;}
.x5b{left:387.870000px;}
.x7{left:388.949987px;}
.x4{left:397.589987px;}
.x69{left:405.540000px;}
.x2{left:408.779987px;}
.x8e{left:411.660000px;}
.x4a{left:413.460000px;}
.x97{left:423.540000px;}
.x50{left:438.299987px;}
.x3f{left:440.820000px;}
.x72{left:446.940000px;}
.x81{left:461.340000px;}
.x5a{left:471.420000px;}
.x14{left:473.219987px;}
.x2a{left:474.660000px;}
.x6a{left:478.620000px;}
.x58{left:480.780000px;}
.x46{left:502.050000px;}
.x82{left:515.010000px;}
.x61{left:520.409987px;}
.x98{left:527.610000px;}
.x6b{left:546.330000px;}
.x79{left:549.209987px;}
.x8f{left:560.370000px;}
.x4e{left:561.449987px;}
.x83{left:565.770000px;}
.x51{left:575.849987px;}
.x59{left:598.935000px;}
.x47{left:600.375000px;}
.x2c{left:601.815000px;}
.x85{left:607.935000px;}
.x70{left:616.215000px;}
.x76{left:627.015000px;}
.x56{left:628.095000px;}
.x6c{left:641.415000px;}
.x95{left:642.494987px;}
.x40{left:643.575000px;}
.x86{left:671.685000px;}
.x1b{left:713.085000px;}
.x6d{left:747.645000px;}
.x24{left:757.409987px;}
.x9a{left:760.650000px;}
.x15{left:765.690000px;}
@media print{
.v2{vertical-align:-103.680000pt;}
.v6{vertical-align:-83.200000pt;}
.v5{vertical-align:-82.026667pt;}
.vb{vertical-align:-80.800000pt;}
.v9{vertical-align:-79.360000pt;}
.v7{vertical-align:-78.080000pt;}
.v1{vertical-align:-75.520000pt;}
.v4{vertical-align:-74.240000pt;}
.vc{vertical-align:-73.120000pt;}
.v1b{vertical-align:-71.786667pt;}
.v8{vertical-align:-70.400000pt;}
.vf{vertical-align:-69.098667pt;}
.v1c{vertical-align:-66.720000pt;}
.vd{vertical-align:-55.040000pt;}
.ve{vertical-align:-53.760000pt;}
.v18{vertical-align:-37.120000pt;}
.v1a{vertical-align:-24.320000pt;}
.v17{vertical-align:-19.200000pt;}
.v11{vertical-align:-5.120000pt;}
.v12{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:16.640000pt;}
.v10{vertical-align:21.760000pt;}
.v3{vertical-align:24.480000pt;}
.v13{vertical-align:32.000000pt;}
.v16{vertical-align:37.120000pt;}
.v19{vertical-align:66.720000pt;}
.v14{vertical-align:70.400000pt;}
.v15{vertical-align:79.466667pt;}
.ls39{letter-spacing:-2.432000pt;}
.ls78{letter-spacing:-1.824000pt;}
.ls8e{letter-spacing:-1.552000pt;}
.ls3b{letter-spacing:-1.536000pt;}
.lsf{letter-spacing:-1.408000pt;}
.ls30{letter-spacing:-1.280000pt;}
.ls74{letter-spacing:-1.216000pt;}
.ls33{letter-spacing:-1.152000pt;}
.ls2f{letter-spacing:-1.114667pt;}
.ls67{letter-spacing:-1.024000pt;}
.ls7a{letter-spacing:-1.008000pt;}
.ls6f{letter-spacing:-0.960000pt;}
.ls64{letter-spacing:-0.864000pt;}
.ls6{letter-spacing:-0.854509pt;}
.ls63{letter-spacing:-0.848000pt;}
.ls31{letter-spacing:-0.837333pt;}
.ls24{letter-spacing:-0.832000pt;}
.ls84{letter-spacing:-0.736000pt;}
.ls2e{letter-spacing:-0.720000pt;}
.ls25{letter-spacing:-0.704000pt;}
.ls6d{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.576000pt;}
.ls5c{letter-spacing:-0.544000pt;}
.ls65{letter-spacing:-0.501867pt;}
.ls57{letter-spacing:-0.450667pt;}
.ls3c{letter-spacing:-0.448000pt;}
.ls58{letter-spacing:-0.414933pt;}
.ls4a{letter-spacing:-0.412267pt;}
.ls8b{letter-spacing:-0.406933pt;}
.ls73{letter-spacing:-0.384000pt;}
.ls48{letter-spacing:-0.376533pt;}
.ls8a{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls6c{letter-spacing:-0.192000pt;}
.ls5b{letter-spacing:-0.135467pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.023040pt;}
.ls62{letter-spacing:-0.017920pt;}
.ls11{letter-spacing:-0.015360pt;}
.ls55{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.007680pt;}
.ls56{letter-spacing:0.030720pt;}
.ls72{letter-spacing:0.064000pt;}
.ls85{letter-spacing:0.071467pt;}
.ls1a{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.158933pt;}
.ls49{letter-spacing:0.181760pt;}
.ls47{letter-spacing:0.189440pt;}
.ls6e{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.256000pt;}
.ls79{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.319766pt;}
.ls2{letter-spacing:0.384000pt;}
.ls83{letter-spacing:0.406933pt;}
.ls53{letter-spacing:0.414933pt;}
.ls41{letter-spacing:0.448000pt;}
.ls2c{letter-spacing:0.450667pt;}
.ls38{letter-spacing:0.510720pt;}
.ls42{letter-spacing:0.512000pt;}
.ls77{letter-spacing:0.544000pt;}
.ls2d{letter-spacing:0.560000pt;}
.lse{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls52{letter-spacing:0.704000pt;}
.ls66{letter-spacing:0.736000pt;}
.ls89{letter-spacing:0.746667pt;}
.ls5f{letter-spacing:0.768000pt;}
.ls69{letter-spacing:0.800000pt;}
.ls32{letter-spacing:1.024000pt;}
.ls0{letter-spacing:1.172477pt;}
.ls6b{letter-spacing:1.231168pt;}
.ls3a{letter-spacing:1.280000pt;}
.ls46{letter-spacing:1.294080pt;}
.ls4{letter-spacing:1.304251pt;}
.ls23{letter-spacing:1.408000pt;}
.ls86{letter-spacing:1.413333pt;}
.ls87{letter-spacing:1.551360pt;}
.ls40{letter-spacing:1.728000pt;}
.ls8{letter-spacing:1.920000pt;}
.ls5{letter-spacing:2.749046pt;}
.ls8c{letter-spacing:3.200000pt;}
.ls7f{letter-spacing:7.146667pt;}
.ls3e{letter-spacing:9.088000pt;}
.ls81{letter-spacing:9.600000pt;}
.ls7c{letter-spacing:11.791360pt;}
.ls7d{letter-spacing:12.160000pt;}
.ls2b{letter-spacing:13.440000pt;}
.ls4b{letter-spacing:16.000000pt;}
.ls44{letter-spacing:17.280000pt;}
.ls6a{letter-spacing:18.560000pt;}
.ls5d{letter-spacing:22.400000pt;}
.ls68{letter-spacing:23.680000pt;}
.ls3f{letter-spacing:26.240000pt;}
.ls43{letter-spacing:27.018667pt;}
.ls5a{letter-spacing:30.080000pt;}
.ls88{letter-spacing:32.271360pt;}
.ls1d{letter-spacing:32.640000pt;}
.ls76{letter-spacing:33.551360pt;}
.ls1c{letter-spacing:36.160000pt;}
.ls1e{letter-spacing:38.720000pt;}
.ls1f{letter-spacing:40.000000pt;}
.ls20{letter-spacing:42.560000pt;}
.ls1b{letter-spacing:44.800000pt;}
.ls19{letter-spacing:46.080000pt;}
.ls7e{letter-spacing:46.362027pt;}
.ls82{letter-spacing:46.400000pt;}
.ls18{letter-spacing:47.360000pt;}
.ls7{letter-spacing:47.680000pt;}
.ls21{letter-spacing:48.000000pt;}
.ls22{letter-spacing:50.560000pt;}
.ls15{letter-spacing:51.520000pt;}
.ls9{letter-spacing:51.840000pt;}
.ls8d{letter-spacing:52.751360pt;}
.ls80{letter-spacing:52.762027pt;}
.ls4c{letter-spacing:53.120000pt;}
.ls75{letter-spacing:53.760000pt;}
.ls27{letter-spacing:55.040000pt;}
.ls71{letter-spacing:55.680000pt;}
.ls29{letter-spacing:56.960000pt;}
.ls2a{letter-spacing:57.920000pt;}
.ls13{letter-spacing:60.160000pt;}
.ls17{letter-spacing:62.720000pt;}
.ls16{letter-spacing:70.720000pt;}
.ls60{letter-spacing:78.208000pt;}
.ls14{letter-spacing:79.360000pt;}
.ls7b{letter-spacing:86.042027pt;}
.ls37{letter-spacing:93.578667pt;}
.ls3d{letter-spacing:94.848000pt;}
.ls45{letter-spacing:111.850667pt;}
.ls28{letter-spacing:131.200000pt;}
.ls70{letter-spacing:146.688000pt;}
.ls4e{letter-spacing:155.530240pt;}
.ls50{letter-spacing:155.636907pt;}
.ls51{letter-spacing:155.690240pt;}
.ls4f{letter-spacing:156.916907pt;}
.ls4d{letter-spacing:187.008000pt;}
.ls36{letter-spacing:190.208000pt;}
.ls61{letter-spacing:272.138667pt;}
.ls59{letter-spacing:347.978667pt;}
.ls26{letter-spacing:356.618667pt;}
.ls5e{letter-spacing:1164.693333pt;}
.ls54{letter-spacing:2506.965333pt;}
.ws29{word-spacing:-64.000000pt;}
.ws4b{word-spacing:-58.880000pt;}
.ws15{word-spacing:-48.640000pt;}
.ws4{word-spacing:-43.008000pt;}
.ws5{word-spacing:-42.624000pt;}
.ws1{word-spacing:-38.243107pt;}
.ws0{word-spacing:-36.798312pt;}
.ws2{word-spacing:-35.813828pt;}
.ws3{word-spacing:-31.968000pt;}
.ws6{word-spacing:-30.146633pt;}
.ws3d{word-spacing:-18.771092pt;}
.ws8{word-spacing:-18.718933pt;}
.ws26{word-spacing:-17.728000pt;}
.ws13{word-spacing:-17.408000pt;}
.ws32{word-spacing:-17.310720pt;}
.ws24{word-spacing:-17.287680pt;}
.ws22{word-spacing:-17.280000pt;}
.ws31{word-spacing:-17.272320pt;}
.wsf{word-spacing:-17.264640pt;}
.ws11{word-spacing:-17.256960pt;}
.ws1e{word-spacing:-17.024000pt;}
.ws30{word-spacing:-16.704000pt;}
.ws41{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.576000pt;}
.ws28{word-spacing:-16.512000pt;}
.ws27{word-spacing:-16.448000pt;}
.ws40{word-spacing:-16.384000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws42{word-spacing:-16.192000pt;}
.ws4f{word-spacing:-16.133333pt;}
.ws12{word-spacing:-16.128000pt;}
.ws44{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.872000pt;}
.ws3e{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws45{word-spacing:-15.616000pt;}
.ws25{word-spacing:-15.552000pt;}
.ws3b{word-spacing:-15.456000pt;}
.ws20{word-spacing:-15.424000pt;}
.ws3f{word-spacing:-15.360000pt;}
.ws14{word-spacing:-15.296000pt;}
.ws47{word-spacing:-15.264000pt;}
.ws4c{word-spacing:-15.126933pt;}
.ws43{word-spacing:-15.040000pt;}
.ws49{word-spacing:-14.991467pt;}
.ws3c{word-spacing:-14.976000pt;}
.ws1f{word-spacing:-14.848000pt;}
.ws4e{word-spacing:-14.791467pt;}
.ws46{word-spacing:-14.784000pt;}
.ws2e{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.592000pt;}
.ws36{word-spacing:-14.584533pt;}
.ws23{word-spacing:-14.464000pt;}
.ws50{word-spacing:-14.448533pt;}
.ws51{word-spacing:-14.313067pt;}
.ws3a{word-spacing:-14.218133pt;}
.ws37{word-spacing:-14.176000pt;}
.ws4d{word-spacing:-13.984000pt;}
.ws18{word-spacing:-13.890667pt;}
.ws35{word-spacing:-13.854933pt;}
.ws4a{word-spacing:-13.712000pt;}
.ws21{word-spacing:-13.568000pt;}
.ws17{word-spacing:-13.440000pt;}
.ws38{word-spacing:-13.422080pt;}
.ws52{word-spacing:-13.168000pt;}
.ws34{word-spacing:-13.025067pt;}
.ws33{word-spacing:-12.989333pt;}
.ws48{word-spacing:-12.896000pt;}
.ws2d{word-spacing:-12.894613pt;}
.ws19{word-spacing:-12.720000pt;}
.ws39{word-spacing:-12.592000pt;}
.ws16{word-spacing:-12.160000pt;}
.ws2f{word-spacing:-12.149760pt;}
.ws2c{word-spacing:-11.773227pt;}
.ws1a{word-spacing:-11.440000pt;}
.ws1d{word-spacing:-11.322667pt;}
.ws10{word-spacing:-11.200000pt;}
.ws1b{word-spacing:-11.045333pt;}
.ws1c{word-spacing:-10.880000pt;}
.ws2b{word-spacing:-10.560000pt;}
.ws2a{word-spacing:-9.856000pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-29.919576pt;}
._4a{margin-left:-10.019413pt;}
._49{margin-left:-7.134720pt;}
._48{margin-left:-4.837973pt;}
._21{margin-left:-3.573760pt;}
._e{margin-left:-2.549760pt;}
._1{margin-left:-1.336320pt;}
._0{width:1.262080pt;}
._2{width:2.971307pt;}
._1b{width:3.875413pt;}
._17{width:4.831147pt;}
._4{width:5.949611pt;}
._25{width:6.935124pt;}
._f{width:7.853653pt;}
._16{width:8.827733pt;}
._1d{width:10.040320pt;}
._1c{width:11.143680pt;}
._14{width:12.101973pt;}
._10{width:13.001813pt;}
._13{width:14.082987pt;}
._29{width:15.022080pt;}
._47{width:15.949227pt;}
._20{width:16.928853pt;}
._15{width:18.080853pt;}
._2d{width:19.111680pt;}
._2e{width:20.046080pt;}
._1f{width:21.088000pt;}
._1e{width:22.210987pt;}
._27{width:23.889920pt;}
._31{width:25.058133pt;}
._2f{width:26.216533pt;}
._30{width:27.330133pt;}
._2c{width:28.742827pt;}
._39{width:29.684053pt;}
._28{width:30.634667pt;}
._4b{width:31.606661pt;}
._3{width:32.579365pt;}
._37{width:34.058667pt;}
._38{width:35.297280pt;}
._22{width:37.079467pt;}
._9{width:38.208000pt;}
._2a{width:39.100587pt;}
._2b{width:40.244480pt;}
._12{width:46.655573pt;}
._26{width:48.231253pt;}
._11{width:50.293333pt;}
._24{width:55.343360pt;}
._23{width:56.234667pt;}
._8{width:68.642133pt;}
._32{width:80.852907pt;}
._18{width:96.020907pt;}
._42{width:97.266347pt;}
._b{width:124.119893pt;}
._4c{width:133.730987pt;}
._4d{width:134.714453pt;}
._44{width:153.069653pt;}
._3e{width:158.186667pt;}
._3a{width:164.029227pt;}
._3b{width:176.746667pt;}
._34{width:191.614293pt;}
._40{width:192.800000pt;}
._3c{width:197.920000pt;}
._3d{width:215.786667pt;}
._a{width:228.319573pt;}
._3f{width:290.666667pt;}
._35{width:320.110507pt;}
._41{width:384.743253pt;}
._43{width:400.301653pt;}
._36{width:511.272533pt;}
._45{width:684.405333pt;}
._6{width:691.445333pt;}
._46{width:702.990080pt;}
._7{width:710.958933pt;}
._c{width:744.085333pt;}
._33{width:754.986667pt;}
._d{width:765.096960pt;}
._19{width:773.525333pt;}
._1a{width:795.102293pt;}
.fs18{font-size:10.240000pt;}
.fs1a{font-size:26.880000pt;}
.fs16{font-size:29.440000pt;}
.fs11{font-size:32.000000pt;}
.fs1b{font-size:34.560000pt;}
.fs13{font-size:37.120000pt;}
.fs14{font-size:39.680000pt;}
.fs15{font-size:42.240000pt;}
.fsb{font-size:44.800000pt;}
.fs10{font-size:48.640000pt;}
.fs2{font-size:51.200000pt;}
.fs1{font-size:53.760000pt;}
.fs12{font-size:56.320000pt;}
.fs8{font-size:56.667449pt;}
.fsc{font-size:58.880000pt;}
.fs17{font-size:61.440000pt;}
.fs9{font-size:64.000000pt;}
.fsd{font-size:66.560000pt;}
.fs5{font-size:69.120000pt;}
.fs1c{font-size:70.159699pt;}
.fs0{font-size:74.240000pt;}
.fsa{font-size:80.640000pt;}
.fsf{font-size:85.760000pt;}
.fs7{font-size:93.096523pt;}
.fs4{font-size:96.000000pt;}
.fse{font-size:101.120000pt;}
.fs19{font-size:103.680000pt;}
.fs3{font-size:106.588773pt;}
.fs6{font-size:128.000000pt;}
.y213{bottom:-12.800000pt;}
.y0{bottom:0.000000pt;}
.y1ae{bottom:1.280000pt;}
.y156{bottom:2.560000pt;}
.y15d{bottom:2.600000pt;}
.y216{bottom:2.880000pt;}
.y154{bottom:3.200000pt;}
.y165{bottom:3.520000pt;}
.y23a{bottom:3.840000pt;}
.y1e7{bottom:4.160000pt;}
.y11a{bottom:4.480000pt;}
.y11e{bottom:4.506667pt;}
.y1e4{bottom:4.520000pt;}
.y59{bottom:4.800000pt;}
.y1e6{bottom:5.760000pt;}
.y167{bottom:8.320000pt;}
.y168{bottom:8.640000pt;}
.y206{bottom:9.280000pt;}
.y207{bottom:9.600000pt;}
.y20b{bottom:9.920000pt;}
.y209{bottom:9.946667pt;}
.y152{bottom:10.240000pt;}
.y131{bottom:10.880000pt;}
.y99{bottom:11.840000pt;}
.y9e{bottom:12.160000pt;}
.ya3{bottom:12.520000pt;}
.y94{bottom:12.800000pt;}
.y16a{bottom:14.080000pt;}
.y16b{bottom:14.720000pt;}
.y164{bottom:15.040000pt;}
.y210{bottom:15.360000pt;}
.y86{bottom:16.000000pt;}
.y79{bottom:16.320000pt;}
.y63{bottom:16.640000pt;}
.y84{bottom:16.666667pt;}
.y69{bottom:16.960000pt;}
.y5e{bottom:17.000000pt;}
.y25b{bottom:19.880000pt;}
.y163{bottom:20.160000pt;}
.y238{bottom:20.200000pt;}
.y259{bottom:20.480000pt;}
.y5c{bottom:21.120000pt;}
.y211{bottom:21.440000pt;}
.ya7{bottom:21.760000pt;}
.y1ac{bottom:22.720000pt;}
.y1a6{bottom:24.640000pt;}
.y1a2{bottom:24.680000pt;}
.y77{bottom:26.240000pt;}
.ya5{bottom:28.480000pt;}
.y15b{bottom:28.800000pt;}
.y98{bottom:30.400000pt;}
.y9d{bottom:30.720000pt;}
.ya2{bottom:30.760000pt;}
.y93{bottom:31.066667pt;}
.y78{bottom:35.840000pt;}
.y62{bottom:36.160000pt;}
.y83{bottom:36.186667pt;}
.y68{bottom:36.480000pt;}
.y75{bottom:36.800000pt;}
.ya6{bottom:40.320000pt;}
.y1a1{bottom:46.120000pt;}
.y1a5{bottom:46.400000pt;}
.y97{bottom:48.640000pt;}
.y9c{bottom:48.666667pt;}
.ya1{bottom:49.000000pt;}
.y92{bottom:49.306667pt;}
.y96{bottom:50.560000pt;}
.y9b{bottom:50.586667pt;}
.y15a{bottom:51.840000pt;}
.y60{bottom:55.040000pt;}
.y81{bottom:55.066667pt;}
.y88{bottom:55.080000pt;}
.y82{bottom:55.386667pt;}
.y7e{bottom:55.400000pt;}
.y61{bottom:55.680000pt;}
.y7f{bottom:55.720000pt;}
.y67{bottom:56.000000pt;}
.y6f{bottom:56.320000pt;}
.y8f{bottom:56.360000pt;}
.y5a{bottom:61.472000pt;}
.y91{bottom:61.786667pt;}
.ya0{bottom:61.800000pt;}
.y58{bottom:63.712000pt;}
.y7b{bottom:66.880000pt;}
.y65{bottom:66.906667pt;}
.y2db{bottom:66.912000pt;}
.y8d{bottom:66.920000pt;}
.y159{bottom:74.880000pt;}
.y72{bottom:74.906667pt;}
.y6c{bottom:74.920000pt;}
.y7c{bottom:75.200000pt;}
.y66{bottom:75.226667pt;}
.y8e{bottom:75.240000pt;}
.y74{bottom:75.866667pt;}
.y6e{bottom:75.880000pt;}
.y236{bottom:87.386667pt;}
.y6b{bottom:94.120000pt;}
.y71{bottom:94.426667pt;}
.y6d{bottom:95.080000pt;}
.y73{bottom:95.386667pt;}
.yd7{bottom:101.152000pt;}
.y2ac{bottom:102.752000pt;}
.y150{bottom:105.312000pt;}
.y2ca{bottom:105.632000pt;}
.y1f2{bottom:107.232000pt;}
.y19f{bottom:107.552000pt;}
.y285{bottom:110.432000pt;}
.y2fb{bottom:113.952000pt;}
.y25c{bottom:114.592000pt;}
.y204{bottom:115.232000pt;}
.y235{bottom:117.146667pt;}
.y2ab{bottom:120.992000pt;}
.y14f{bottom:123.872000pt;}
.y2d{bottom:125.472000pt;}
.y19e{bottom:125.792000pt;}
.y284{bottom:128.992000pt;}
.y342{bottom:130.592000pt;}
.y31d{bottom:131.232000pt;}
.y87{bottom:135.386667pt;}
.yd6{bottom:136.666667pt;}
.y12f{bottom:138.586667pt;}
.y2aa{bottom:139.546667pt;}
.y2c9{bottom:142.426667pt;}
.y10a{bottom:143.706667pt;}
.y1f1{bottom:144.026667pt;}
.y19d{bottom:144.346667pt;}
.y283{bottom:147.226667pt;}
.y341{bottom:147.546667pt;}
.y31c{bottom:148.186667pt;}
.y234{bottom:153.986667pt;}
.y25a{bottom:155.546667pt;}
.y12e{bottom:156.826667pt;}
.y2a9{bottom:157.786667pt;}
.y2b{bottom:159.066667pt;}
.y2fa{bottom:159.706667pt;}
.y2c8{bottom:160.666667pt;}
.y19c{bottom:162.586667pt;}
.y340{bottom:164.506667pt;}
.y31b{bottom:165.146667pt;}
.y282{bottom:165.786667pt;}
.y2c{bottom:167.706667pt;}
.y57{bottom:168.026667pt;}
.y109{bottom:170.266667pt;}
.y15c{bottom:170.586667pt;}
.yd5{bottom:171.546667pt;}
.y12d{bottom:175.426667pt;}
.y2a8{bottom:176.386667pt;}
.y2f9{bottom:176.706667pt;}
.y2c7{bottom:178.946667pt;}
.y158{bottom:181.186667pt;}
.y31a{bottom:181.826667pt;}
.y281{bottom:184.066667pt;}
.y19b{bottom:185.666667pt;}
.y1c5{bottom:187.266667pt;}
.y108{bottom:188.546667pt;}
.y258{bottom:189.186667pt;}
.y1f0{bottom:189.826667pt;}
.y12c{bottom:193.666667pt;}
.y2a7{bottom:194.626667pt;}
.y2a{bottom:196.226667pt;}
.y2c6{bottom:197.506667pt;}
.y319{bottom:198.786667pt;}
.yd4{bottom:200.386667pt;}
.y280{bottom:202.306667pt;}
.y1c4{bottom:205.506667pt;}
.y33f{bottom:206.146667pt;}
.y85{bottom:206.466667pt;}
.y107{bottom:207.106667pt;}
.y1ef{bottom:209.026667pt;}
.y2f8{bottom:210.306667pt;}
.y2a6{bottom:213.186667pt;}
.yd3{bottom:214.466667pt;}
.y56{bottom:215.426667pt;}
.y2c5{bottom:215.746667pt;}
.y12b{bottom:219.906667pt;}
.y33e{bottom:222.786667pt;}
.y1c3{bottom:224.066667pt;}
.y106{bottom:225.346667pt;}
.y358{bottom:225.986667pt;}
.y1ee{bottom:227.266667pt;}
.yd2{bottom:228.546667pt;}
.y27f{bottom:228.866667pt;}
.y19a{bottom:230.466667pt;}
.y2a5{bottom:231.426667pt;}
.y55{bottom:234.306667pt;}
.y12a{bottom:237.826667pt;}
.y33d{bottom:239.746667pt;}
.y157{bottom:240.706667pt;}
.yd1{bottom:242.306667pt;}
.y357{bottom:242.946667pt;}
.y231{bottom:243.266667pt;}
.y29{bottom:243.586667pt;}
.y2f7{bottom:244.226667pt;}
.y1ed{bottom:245.826667pt;}
.y27e{bottom:247.426667pt;}
.y155{bottom:249.346667pt;}
.y2a4{bottom:249.986667pt;}
.y318{bottom:250.946667pt;}
.y105{bottom:251.266667pt;}
.y2c4{bottom:252.546667pt;}
.y54{bottom:252.866667pt;}
.yd0{bottom:256.066667pt;}
.y33c{bottom:256.706667pt;}
.yfb{bottom:259.266667pt;}
.y1c2{bottom:260.866667pt;}
.y1ab{bottom:261.186667pt;}
.y230{bottom:261.826667pt;}
.y129{bottom:263.426667pt;}
.y1ec{bottom:264.066667pt;}
.y27d{bottom:265.666667pt;}
.y28{bottom:267.586667pt;}
.y2a3{bottom:268.226667pt;}
.y153{bottom:268.546667pt;}
.y199{bottom:269.186667pt;}
.ycf{bottom:269.826667pt;}
.y53{bottom:271.426667pt;}
.y33b{bottom:273.346667pt;}
.y317{bottom:274.306667pt;}
.y356{bottom:276.226667pt;}
.y80{bottom:277.186667pt;}
.y104{bottom:277.506667pt;}
.y2f6{bottom:277.826667pt;}
.y1c1{bottom:279.106667pt;}
.y22f{bottom:280.066667pt;}
.y1eb{bottom:282.626667pt;}
.yce{bottom:283.586667pt;}
.y27c{bottom:284.226667pt;}
.y27{bottom:286.493333pt;}
.y2a2{bottom:286.813333pt;}
.y198{bottom:289.053333pt;}
.y2c3{bottom:289.373333pt;}
.y52{bottom:289.693333pt;}
.y33a{bottom:290.333333pt;}
.y128{bottom:290.653333pt;}
.y316{bottom:291.293333pt;}
.y355{bottom:292.893333pt;}
.y257{bottom:294.173333pt;}
.y2f5{bottom:294.813333pt;}
.yfa{bottom:295.133333pt;}
.ycd{bottom:297.373333pt;}
.y1c0{bottom:297.693333pt;}
.y22e{bottom:298.653333pt;}
.y1a4{bottom:298.973333pt;}
.y103{bottom:304.733333pt;}
.y2a1{bottom:305.053333pt;}
.y26{bottom:305.373333pt;}
.y1aa{bottom:306.973333pt;}
.y2c2{bottom:307.293333pt;}
.y315{bottom:307.613333pt;}
.y51{bottom:308.253333pt;}
.y197{bottom:308.893333pt;}
.y127{bottom:309.213333pt;}
.y27b{bottom:309.853333pt;}
.ycc{bottom:311.133333pt;}
.y256{bottom:311.773333pt;}
.y1bf{bottom:315.933333pt;}
.y14e{bottom:316.893333pt;}
.y1a9{bottom:319.453333pt;}
.y102{bottom:322.973333pt;}
.y2a0{bottom:323.613333pt;}
.y25{bottom:323.933333pt;}
.ycb{bottom:324.893333pt;}
.y2c1{bottom:325.533333pt;}
.y50{bottom:326.493333pt;}
.y354{bottom:326.813333pt;}
.y126{bottom:327.453333pt;}
.y196{bottom:329.053333pt;}
.y255{bottom:330.333333pt;}
.y1ad{bottom:331.613333pt;}
.y14d{bottom:332.253333pt;}
.y314{bottom:332.893333pt;}
.y1be{bottom:334.493333pt;}
.y22d{bottom:335.453333pt;}
.y1ea{bottom:335.773333pt;}
.y17f{bottom:336.093333pt;}
.y27a{bottom:336.733333pt;}
.y1a8{bottom:338.333333pt;}
.ya4{bottom:338.653333pt;}
.yca{bottom:338.973333pt;}
.y339{bottom:340.893333pt;}
.y101{bottom:341.533333pt;}
.y24{bottom:342.813333pt;}
.y2c0{bottom:343.773333pt;}
.y4f{bottom:345.053333pt;}
.y125{bottom:345.693333pt;}
.y7d{bottom:347.933333pt;}
.y1e9{bottom:348.573333pt;}
.y195{bottom:348.893333pt;}
.y29f{bottom:349.853333pt;}
.y14c{bottom:350.813333pt;}
.yc9{bottom:352.733333pt;}
.y22c{bottom:353.693333pt;}
.y17e{bottom:354.333333pt;}
.y279{bottom:354.653333pt;}
.y1a7{bottom:357.533333pt;}
.y338{bottom:358.813333pt;}
.y100{bottom:359.773333pt;}
.y353{bottom:360.733333pt;}
.y23{bottom:361.693333pt;}
.y2bf{bottom:362.333333pt;}
.y4e{bottom:363.293333pt;}
.y124{bottom:364.253333pt;}
.y1e8{bottom:365.213333pt;}
.y2f4{bottom:365.853333pt;}
.yc8{bottom:366.493333pt;}
.y313{bottom:366.813333pt;}
.y254{bottom:367.133333pt;}
.y29e{bottom:368.413333pt;}
.y194{bottom:368.733333pt;}
.y14b{bottom:369.053333pt;}
.y1bd{bottom:371.293333pt;}
.y278{bottom:372.573333pt;}
.y17d{bottom:372.893333pt;}
.yf9{bottom:373.533333pt;}
.y337{bottom:375.773333pt;}
.y22b{bottom:376.413333pt;}
.y352{bottom:377.693333pt;}
.yff{bottom:378.333333pt;}
.y1e5{bottom:378.973333pt;}
.yc7{bottom:380.253333pt;}
.y22{bottom:380.573333pt;}
.y4d{bottom:381.853333pt;}
.y123{bottom:382.493333pt;}
.y2f3{bottom:383.453333pt;}
.y1a0{bottom:385.053333pt;}
.y253{bottom:385.373333pt;}
.y29d{bottom:386.653333pt;}
.y14a{bottom:387.293333pt;}
.y22a{bottom:387.613333pt;}
.y193{bottom:388.893333pt;}
.y1bc{bottom:389.533333pt;}
.yf8{bottom:390.493333pt;}
.y277{bottom:390.813333pt;}
.y17c{bottom:391.133333pt;}
.y336{bottom:392.413333pt;}
.y9f{bottom:394.013333pt;}
.y351{bottom:394.333333pt;}
.y1e3{bottom:395.613333pt;}
.yfe{bottom:396.613333pt;}
.y21{bottom:399.173333pt;}
.y4c{bottom:400.133333pt;}
.y312{bottom:400.453333pt;}
.y252{bottom:403.973333pt;}
.y229{bottom:404.293333pt;}
.y29c{bottom:405.253333pt;}
.y1bb{bottom:408.133333pt;}
.yf7{bottom:408.773333pt;}
.y122{bottom:409.093333pt;}
.y335{bottom:409.413333pt;}
.y17b{bottom:409.733333pt;}
.y350{bottom:411.333333pt;}
.y149{bottom:413.253333pt;}
.y1e2{bottom:416.773333pt;}
.y2f2{bottom:417.093333pt;}
.y20{bottom:418.053333pt;}
.y4b{bottom:418.373333pt;}
.y7a{bottom:419.013333pt;}
.y228{bottom:419.653333pt;}
.yc6{bottom:421.893333pt;}
.y251{bottom:422.213333pt;}
.yfd{bottom:422.853333pt;}
.y29b{bottom:423.493333pt;}
.y334{bottom:426.053333pt;}
.y1ba{bottom:426.373333pt;}
.y276{bottom:426.693333pt;}
.yf6{bottom:427.333333pt;}
.y17a{bottom:427.973333pt;}
.y34f{bottom:428.293333pt;}
.y192{bottom:428.613333pt;}
.y2f1{bottom:434.373333pt;}
.y2be{bottom:434.693333pt;}
.y1f{bottom:436.933333pt;}
.y203{bottom:438.853333pt;}
.y1a3{bottom:439.813333pt;}
.y250{bottom:440.773333pt;}
.y29a{bottom:442.053333pt;}
.y275{bottom:444.613333pt;}
.y1b9{bottom:444.933333pt;}
.yf5{bottom:445.573333pt;}
.y121{bottom:445.893333pt;}
.y179{bottom:446.213333pt;}
.yfc{bottom:447.493333pt;}
.y191{bottom:448.453333pt;}
.y333{bottom:451.333333pt;}
.y202{bottom:452.933333pt;}
.y1e1{bottom:453.893333pt;}
.y1e{bottom:455.813333pt;}
.yc5{bottom:456.133333pt;}
.y148{bottom:457.413333pt;}
.y24f{bottom:459.013333pt;}
.y299{bottom:460.293333pt;}
.y2f0{bottom:461.573333pt;}
.y274{bottom:462.533333pt;}
.y1b8{bottom:463.173333pt;}
.yf4{bottom:464.133333pt;}
.y332{bottom:467.973333pt;}
.y190{bottom:468.613333pt;}
.y2bd{bottom:469.573333pt;}
.y120{bottom:470.853333pt;}
.y201{bottom:471.173333pt;}
.y1e0{bottom:472.133333pt;}
.y178{bottom:472.773333pt;}
.y1d{bottom:474.373333pt;}
.y9a{bottom:476.293333pt;}
.y311{bottom:476.933333pt;}
.y34e{bottom:478.533333pt;}
.y4a{bottom:479.173333pt;}
.y1b7{bottom:481.733333pt;}
.yf3{bottom:482.693333pt;}
.yc4{bottom:483.653333pt;}
.y331{bottom:484.613333pt;}
.y24e{bottom:484.933333pt;}
.y2bc{bottom:486.533333pt;}
.y2ef{bottom:486.853333pt;}
.y18f{bottom:488.133333pt;}
.y11f{bottom:488.453333pt;}
.y273{bottom:488.773333pt;}
.y200{bottom:489.733333pt;}
.y1df{bottom:490.693333pt;}
.y177{bottom:491.013333pt;}
.y147{bottom:492.293333pt;}
.y1c{bottom:493.253333pt;}
.y310{bottom:493.893333pt;}
.y298{bottom:496.133333pt;}
.yc3{bottom:497.413333pt;}
.y1b6{bottom:499.973333pt;}
.yf2{bottom:502.213333pt;}
.y2ee{bottom:503.493333pt;}
.y34d{bottom:503.813333pt;}
.y2bb{bottom:504.773333pt;}
.y49{bottom:505.413333pt;}
.y11d{bottom:506.373333pt;}
.y18e{bottom:506.693333pt;}
.y272{bottom:507.013333pt;}
.y1ff{bottom:507.973333pt;}
.y1de{bottom:508.960000pt;}
.y176{bottom:509.600000pt;}
.y76{bottom:509.920000pt;}
.yc2{bottom:511.200000pt;}
.y30f{bottom:511.840000pt;}
.y1b{bottom:512.160000pt;}
.y1b5{bottom:518.560000pt;}
.y2ed{bottom:520.480000pt;}
.yf1{bottom:520.800000pt;}
.y46{bottom:522.400000pt;}
.y2ba{bottom:523.360000pt;}
.y11c{bottom:524.320000pt;}
.y18d{bottom:524.960000pt;}
.yc1{bottom:525.280000pt;}
.y1fe{bottom:526.560000pt;}
.y1dd{bottom:527.520000pt;}
.y175{bottom:527.840000pt;}
.y146{bottom:528.480000pt;}
.y24d{bottom:529.760000pt;}
.y1a{bottom:531.040000pt;}
.y1b4{bottom:536.800000pt;}
.y2ec{bottom:537.440000pt;}
.yc0{bottom:539.040000pt;}
.y95{bottom:540.000000pt;}
.y45{bottom:540.640000pt;}
.y2b9{bottom:541.600000pt;}
.y11b{bottom:542.240000pt;}
.y271{bottom:542.880000pt;}
.y330{bottom:543.200000pt;}
.y1fd{bottom:544.800000pt;}
.y1dc{bottom:545.760000pt;}
.y174{bottom:546.400000pt;}
.y297{bottom:547.680000pt;}
.y24c{bottom:549.280000pt;}
.y19{bottom:549.600000pt;}
.y151{bottom:552.160000pt;}
.ybf{bottom:552.800000pt;}
.y34c{bottom:554.080000pt;}
.y1b3{bottom:555.360000pt;}
.yf0{bottom:557.600000pt;}
.y48{bottom:558.880000pt;}
.y44{bottom:559.200000pt;}
.y2b8{bottom:560.160000pt;}
.y70{bottom:560.800000pt;}
.y119{bottom:561.760000pt;}
.y2eb{bottom:562.080000pt;}
.y1fc{bottom:563.360000pt;}
.y173{bottom:564.640000pt;}
.y296{bottom:565.920000pt;}
.ybe{bottom:566.560000pt;}
.y24b{bottom:567.520000pt;}
.y32f{bottom:568.160000pt;}
.y18{bottom:568.480000pt;}
.y18c{bottom:569.440000pt;}
.y1db{bottom:571.360000pt;}
.y1b2{bottom:573.600000pt;}
.y2da{bottom:574.240000pt;}
.yef{bottom:575.840000pt;}
.y47{bottom:577.120000pt;}
.y43{bottom:577.440000pt;}
.y2b7{bottom:578.400000pt;}
.y270{bottom:579.040000pt;}
.ybd{bottom:580.320000pt;}
.y1fb{bottom:581.600000pt;}
.y172{bottom:583.200000pt;}
.y145{bottom:583.520000pt;}
.y118{bottom:584.480000pt;}
.y32e{bottom:584.800000pt;}
.y24a{bottom:585.760000pt;}
.y17{bottom:587.360000pt;}
.y18b{bottom:588.640000pt;}
.y1b1{bottom:591.840000pt;}
.y2d9{bottom:592.480000pt;}
.ybc{bottom:594.080000pt;}
.yee{bottom:594.400000pt;}
.y117{bottom:595.680000pt;}
.y42{bottom:596.000000pt;}
.y30e{bottom:596.640000pt;}
.y26f{bottom:596.960000pt;}
.y144{bottom:598.880000pt;}
.y1fa{bottom:600.160000pt;}
.y32d{bottom:601.760000pt;}
.y295{bottom:602.720000pt;}
.y90{bottom:603.680000pt;}
.y249{bottom:604.320000pt;}
.y16{bottom:606.240000pt;}
.y18a{bottom:606.880000pt;}
.ybb{bottom:607.840000pt;}
.y171{bottom:608.800000pt;}
.y2d8{bottom:611.040000pt;}
.yed{bottom:612.640000pt;}
.y34b{bottom:612.960000pt;}
.y41{bottom:614.240000pt;}
.y26e{bottom:614.880000pt;}
.y2b6{bottom:615.200000pt;}
.y143{bottom:617.440000pt;}
.y1f9{bottom:618.400000pt;}
.y32c{bottom:618.720000pt;}
.y1da{bottom:619.040000pt;}
.y1b0{bottom:619.680000pt;}
.y294{bottom:621.306667pt;}
.yba{bottom:621.626667pt;}
.y116{bottom:621.946667pt;}
.y248{bottom:622.586667pt;}
.y15{bottom:624.826667pt;}
.y189{bottom:625.146667pt;}
.y2d7{bottom:629.306667pt;}
.yec{bottom:630.906667pt;}
.y40{bottom:632.826667pt;}
.y2b5{bottom:633.466667pt;}
.yb9{bottom:635.386667pt;}
.y142{bottom:635.706667pt;}
.y170{bottom:636.026667pt;}
.y1f8{bottom:636.666667pt;}
.y2ea{bottom:637.626667pt;}
.y1d9{bottom:638.586667pt;}
.y30d{bottom:638.906667pt;}
.y1af{bottom:639.546667pt;}
.y115{bottom:640.186667pt;}
.y247{bottom:641.146667pt;}
.y14{bottom:643.706667pt;}
.y2d6{bottom:647.866667pt;}
.yb8{bottom:649.466667pt;}
.y3f{bottom:651.066667pt;}
.y2b4{bottom:652.026667pt;}
.y32b{bottom:653.626667pt;}
.y16f{bottom:654.266667pt;}
.y2e9{bottom:654.586667pt;}
.y30c{bottom:655.226667pt;}
.y1d8{bottom:657.146667pt;}
.yeb{bottom:657.786667pt;}
.y293{bottom:658.106667pt;}
.y114{bottom:658.746667pt;}
.y246{bottom:659.386667pt;}
.y227{bottom:660.986667pt;}
.y141{bottom:661.946667pt;}
.y13{bottom:662.586667pt;}
.yb7{bottom:663.226667pt;}
.y2d5{bottom:666.106667pt;}
.y26d{bottom:668.986667pt;}
.y3e{bottom:669.626667pt;}
.y2b3{bottom:670.266667pt;}
.y6a{bottom:671.546667pt;}
.y16e{bottom:672.826667pt;}
.y1d7{bottom:675.386667pt;}
.yea{bottom:676.026667pt;}
.y226{bottom:676.346667pt;}
.yb6{bottom:676.986667pt;}
.y245{bottom:677.946667pt;}
.y188{bottom:678.266667pt;}
.y30b{bottom:680.506667pt;}
.y212{bottom:683.706667pt;}
.y12{bottom:684.026667pt;}
.y2d4{bottom:684.666667pt;}
.y8c{bottom:685.946667pt;}
.y26c{bottom:686.906667pt;}
.y3d{bottom:687.866667pt;}
.y20f{bottom:688.186667pt;}
.y2b2{bottom:688.826667pt;}
.y16d{bottom:691.066667pt;}
.y225{bottom:692.346667pt;}
.y1d6{bottom:693.626667pt;}
.ye9{bottom:694.586667pt;}
.y292{bottom:694.906667pt;}
.y113{bottom:695.866667pt;}
.y244{bottom:696.186667pt;}
.y187{bottom:696.506667pt;}
.y30a{bottom:697.466667pt;}
.y2d3{bottom:702.906667pt;}
.yb5{bottom:704.506667pt;}
.y26b{bottom:704.826667pt;}
.y32a{bottom:705.146667pt;}
.y140{bottom:706.106667pt;}
.y3c{bottom:706.426667pt;}
.y2b1{bottom:707.066667pt;}
.y224{bottom:710.586667pt;}
.y1d5{bottom:712.186667pt;}
.ye8{bottom:712.826667pt;}
.y291{bottom:713.146667pt;}
.y1f7{bottom:714.106667pt;}
.y309{bottom:714.426667pt;}
.y243{bottom:714.746667pt;}
.y112{bottom:715.066667pt;}
.y16c{bottom:716.346667pt;}
.y11{bottom:718.906667pt;}
.y2d2{bottom:721.466667pt;}
.y329{bottom:722.106667pt;}
.y13f{bottom:722.426667pt;}
.y20e{bottom:723.066667pt;}
.y3b{bottom:724.666667pt;}
.y2b0{bottom:725.626667pt;}
.y13d{bottom:729.466667pt;}
.y2e8{bottom:730.106667pt;}
.y1d4{bottom:730.426667pt;}
.ye7{bottom:731.386667pt;}
.y242{bottom:732.986667pt;}
.y111{bottom:733.346667pt;}
.y169{bottom:734.626667pt;}
.y223{bottom:736.866667pt;}
.y13e{bottom:738.146667pt;}
.y308{bottom:739.106667pt;}
.yb4{bottom:739.426667pt;}
.y290{bottom:739.746667pt;}
.y26a{bottom:741.026667pt;}
.y3a{bottom:743.266667pt;}
.y2e7{bottom:746.786667pt;}
.y34a{bottom:747.106667pt;}
.y1d3{bottom:749.026667pt;}
.ye6{bottom:749.666667pt;}
.y241{bottom:751.586667pt;}
.y186{bottom:751.906667pt;}
.y20d{bottom:752.226667pt;}
.y13c{bottom:752.546667pt;}
.y10{bottom:752.866667pt;}
.yb3{bottom:755.426667pt;}
.y328{bottom:756.066667pt;}
.y28f{bottom:758.306667pt;}
.y130{bottom:760.546667pt;}
.y2af{bottom:761.186667pt;}
.y39{bottom:761.506667pt;}
.y2e6{bottom:763.746667pt;}
.y307{bottom:764.386667pt;}
.y269{bottom:766.946667pt;}
.y1d2{bottom:767.266667pt;}
.ye5{bottom:768.226667pt;}
.y166{bottom:769.506667pt;}
.yb2{bottom:770.786667pt;}
.y1f6{bottom:772.386667pt;}
.y327{bottom:772.706667pt;}
.y222{bottom:773.666667pt;}
.y28e{bottom:776.546667pt;}
.y8b{bottom:776.866667pt;}
.y185{bottom:778.146667pt;}
.y38{bottom:780.066667pt;}
.y2e5{bottom:780.706667pt;}
.y20c{bottom:781.026667pt;}
.y64{bottom:781.986667pt;}
.y268{bottom:785.186667pt;}
.y1d1{bottom:785.826667pt;}
.ye4{bottom:786.466667pt;}
.y306{bottom:789.026667pt;}
.y13b{bottom:789.346667pt;}
.y110{bottom:791.586667pt;}
.y221{bottom:792.226667pt;}
.y162{bottom:793.826667pt;}
.y28d{bottom:795.106667pt;}
.yf{bottom:796.066667pt;}
.y240{bottom:796.386667pt;}
.y184{bottom:796.706667pt;}
.y326{bottom:797.666667pt;}
.y37{bottom:798.306667pt;}
.yb1{bottom:799.586667pt;}
.y1f5{bottom:801.506667pt;}
.y267{bottom:803.746667pt;}
.y1d0{bottom:804.066667pt;}
.ye3{bottom:805.026667pt;}
.y2e4{bottom:805.346667pt;}
.y305{bottom:805.666667pt;}
.y13a{bottom:807.586667pt;}
.y20a{bottom:809.826667pt;}
.y220{bottom:810.466667pt;}
.y2ae{bottom:813.026667pt;}
.y28c{bottom:813.346667pt;}
.y325{bottom:814.626667pt;}
.y183{bottom:814.946667pt;}
.y36{bottom:816.866667pt;}
.ye{bottom:819.106667pt;}
.y266{bottom:822.306667pt;}
.y1cf{bottom:822.626667pt;}
.ye2{bottom:823.266667pt;}
.y21f{bottom:829.026667pt;}
.y1f4{bottom:830.626667pt;}
.yb0{bottom:831.266667pt;}
.y324{bottom:831.586667pt;}
.y28b{bottom:831.906667pt;}
.y182{bottom:832.546667pt;}
.y139{bottom:833.506667pt;}
.y35{bottom:835.106667pt;}
.y208{bottom:838.626667pt;}
.y2e3{bottom:839.266667pt;}
.y304{bottom:839.586667pt;}
.y265{bottom:840.546667pt;}
.y1ce{bottom:840.866667pt;}
.ye1{bottom:841.826667pt;}
.y161{bottom:844.066667pt;}
.yd{bottom:845.346667pt;}
.y23f{bottom:846.333333pt;}
.y181{bottom:846.653333pt;}
.y21e{bottom:847.293333pt;}
.y323{bottom:848.253333pt;}
.y2ad{bottom:849.853333pt;}
.y2d1{bottom:850.173333pt;}
.yaf{bottom:852.733333pt;}
.y34{bottom:853.693333pt;}
.y2e2{bottom:855.933333pt;}
.y303{bottom:856.253333pt;}
.y28a{bottom:858.173333pt;}
.y264{bottom:859.133333pt;}
.y1cd{bottom:859.453333pt;}
.y138{bottom:859.773333pt;}
.yc{bottom:860.093333pt;}
.y23e{bottom:862.973333pt;}
.y349{bottom:863.933333pt;}
.y322{bottom:864.893333pt;}
.y21d{bottom:865.853333pt;}
.y205{bottom:867.453333pt;}
.y8a{bottom:867.773333pt;}
.ye0{bottom:868.093333pt;}
.y2d0{bottom:868.733333pt;}
.y160{bottom:870.653333pt;}
.y33{bottom:871.933333pt;}
.y5f{bottom:872.893333pt;}
.yae{bottom:874.173333pt;}
.yb{bottom:875.453333pt;}
.y263{bottom:877.373333pt;}
.y1cc{bottom:877.693333pt;}
.y137{bottom:878.013333pt;}
.y10f{bottom:878.653333pt;}
.y23d{bottom:879.613333pt;}
.y2e1{bottom:880.893333pt;}
.y289{bottom:881.533333pt;}
.y21c{bottom:884.093333pt;}
.ydf{bottom:886.653333pt;}
.y2cf{bottom:886.973333pt;}
.y1f3{bottom:887.933333pt;}
.y15f{bottom:888.893333pt;}
.y348{bottom:889.213333pt;}
.y321{bottom:890.173333pt;}
.ya{bottom:890.813333pt;}
.y262{bottom:895.933333pt;}
.y1cb{bottom:896.253333pt;}
.y136{bottom:896.573333pt;}
.y10e{bottom:896.893333pt;}
.y2e0{bottom:897.853333pt;}
.y302{bottom:898.173333pt;}
.y32{bottom:901.053333pt;}
.y21b{bottom:902.653333pt;}
.yde{bottom:904.893333pt;}
.y2ce{bottom:905.533333pt;}
.y9{bottom:905.853333pt;}
.y347{bottom:906.173333pt;}
.y320{bottom:906.813333pt;}
.yad{bottom:911.613333pt;}
.y23c{bottom:912.893333pt;}
.y261{bottom:914.173333pt;}
.y15e{bottom:914.493333pt;}
.y135{bottom:914.813333pt;}
.y301{bottom:915.133333pt;}
.y10d{bottom:915.453333pt;}
.y288{bottom:916.413333pt;}
.y215{bottom:920.893333pt;}
.y8{bottom:921.213333pt;}
.y1ca{bottom:921.853333pt;}
.y346{bottom:922.813333pt;}
.ydd{bottom:923.453333pt;}
.y2cd{bottom:923.773333pt;}
.y23b{bottom:929.533333pt;}
.y214{bottom:930.173333pt;}
.y31{bottom:930.493333pt;}
.y2df{bottom:931.773333pt;}
.y260{bottom:932.733333pt;}
.yac{bottom:933.053333pt;}
.y134{bottom:933.373333pt;}
.y10c{bottom:933.693333pt;}
.y7{bottom:936.573333pt;}
.y345{bottom:939.773333pt;}
.y31f{bottom:940.733333pt;}
.ydc{bottom:941.693333pt;}
.y2cc{bottom:942.333333pt;}
.y5d{bottom:943.613333pt;}
.y287{bottom:945.533333pt;}
.y237{bottom:946.173333pt;}
.y21a{bottom:947.453333pt;}
.y300{bottom:948.733333pt;}
.y1c9{bottom:949.373333pt;}
.y25f{bottom:950.973333pt;}
.y6{bottom:951.933333pt;}
.y10b{bottom:952.253333pt;}
.y30{bottom:956.733333pt;}
.y31e{bottom:957.373333pt;}
.y89{bottom:958.373333pt;}
.ydb{bottom:960.293333pt;}
.y239{bottom:963.493333pt;}
.y2de{bottom:965.093333pt;}
.y2ff{bottom:965.733333pt;}
.y219{bottom:966.053333pt;}
.y5{bottom:967.333333pt;}
.y1c8{bottom:969.253333pt;}
.y25e{bottom:969.573333pt;}
.y133{bottom:970.533333pt;}
.y344{bottom:973.733333pt;}
.yab{bottom:974.693333pt;}
.y2cb{bottom:977.893333pt;}
.y5b{bottom:978.213333pt;}
.yda{bottom:978.533333pt;}
.y233{bottom:979.493333pt;}
.y2dd{bottom:981.413333pt;}
.y2fe{bottom:982.373333pt;}
.y2f{bottom:983.013333pt;}
.y4{bottom:983.973333pt;}
.y218{bottom:984.293333pt;}
.y25d{bottom:987.813333pt;}
.y1c7{bottom:988.773333pt;}
.y132{bottom:989.093333pt;}
.yaa{bottom:990.373333pt;}
.yd9{bottom:997.093333pt;}
.y2dc{bottom:998.373333pt;}
.y343{bottom:998.693333pt;}
.y2fd{bottom:999.333333pt;}
.y217{bottom:1002.533333pt;}
.y286{bottom:1003.813333pt;}
.ya9{bottom:1004.133333pt;}
.y232{bottom:1004.773333pt;}
.y3{bottom:1005.413333pt;}
.y180{bottom:1006.053333pt;}
.y2e{bottom:1012.453333pt;}
.y1c6{bottom:1014.693333pt;}
.yd8{bottom:1015.333333pt;}
.y2fc{bottom:1015.973333pt;}
.ya8{bottom:1017.893333pt;}
.y2{bottom:1026.853333pt;}
.y1{bottom:1048.293333pt;}
.h43{height:13.120000pt;}
.h45{height:13.152000pt;}
.h41{height:13.440000pt;}
.h6c{height:14.720000pt;}
.h6e{height:15.360000pt;}
.h6d{height:16.032000pt;}
.h65{height:16.320000pt;}
.h59{height:16.352000pt;}
.h5a{height:16.640000pt;}
.h71{height:16.960000pt;}
.h11{height:17.600000pt;}
.h35{height:17.920000pt;}
.h37{height:17.952000pt;}
.h36{height:18.240000pt;}
.h69{height:22.080000pt;}
.h60{height:22.720000pt;}
.h73{height:22.752000pt;}
.h4b{height:23.040000pt;}
.h3f{height:24.960000pt;}
.h38{height:25.600000pt;}
.h67{height:26.381250pt;}
.h62{height:28.800000pt;}
.h61{height:28.832000pt;}
.h46{height:28.893750pt;}
.h74{height:29.120000pt;}
.h63{height:29.152000pt;}
.h34{height:31.406250pt;}
.h6b{height:32.032000pt;}
.h47{height:33.600000pt;}
.h52{height:33.632000pt;}
.h70{height:33.918750pt;}
.h15{height:33.952000pt;}
.h66{height:34.560000pt;}
.h4d{height:34.880000pt;}
.h6f{height:35.200000pt;}
.h30{height:36.408750pt;}
.h5c{height:36.431250pt;}
.h3b{height:37.756250pt;}
.h32{height:38.943750pt;}
.h76{height:39.792500pt;}
.h4a{height:39.876250pt;}
.h42{height:40.818750pt;}
.h5f{height:41.456250pt;}
.h53{height:43.207500pt;}
.h55{height:43.207528pt;}
.h2e{height:43.343750pt;}
.h2c{height:43.946875pt;}
.h56{height:43.968750pt;}
.h12{height:44.706250pt;}
.h75{height:45.218750pt;}
.h33{height:46.811250pt;}
.h72{height:47.515382pt;}
.h27{height:47.713750pt;}
.h3d{height:47.737500pt;}
.h28{height:48.030625pt;}
.h7{height:48.667500pt;}
.h2f{height:49.459375pt;}
.h13{height:50.240000pt;}
.h3e{height:50.250000pt;}
.hb{height:51.299536pt;}
.h4{height:51.600000pt;}
.h29{height:52.736250pt;}
.he{height:52.762500pt;}
.h3a{height:53.937500pt;}
.h3{height:54.180000pt;}
.h26{height:54.720000pt;}
.h2b{height:55.247500pt;}
.h2d{height:55.275000pt;}
.h77{height:56.760000pt;}
.h2a{height:57.758750pt;}
.h48{height:57.787500pt;}
.h4c{height:59.340000pt;}
.h4f{height:60.300000pt;}
.h78{height:60.519362pt;}
.h79{height:61.295000pt;}
.h8{height:62.572500pt;}
.h18{height:62.781250pt;}
.hd{height:62.812500pt;}
.h24{height:63.040000pt;}
.h25{height:63.072000pt;}
.hc{height:64.500000pt;}
.h17{height:65.325000pt;}
.h58{height:65.776250pt;}
.h39{height:65.781915pt;}
.h31{height:66.625000pt;}
.h40{height:66.890000pt;}
.h1c{height:67.837500pt;}
.h10{height:69.660000pt;}
.h16{height:70.080000pt;}
.h20{height:70.112000pt;}
.h1f{height:70.432000pt;}
.h49{height:71.876250pt;}
.h2{height:74.820000pt;}
.h51{height:77.760000pt;}
.h50{height:77.792000pt;}
.hf{height:81.270000pt;}
.h22{height:81.632000pt;}
.h23{height:84.168750pt;}
.ha{height:84.277810pt;}
.h44{height:85.760000pt;}
.h6{height:86.906250pt;}
.h3c{height:87.132500pt;}
.h5b{height:89.882500pt;}
.h21{height:89.920000pt;}
.h19{height:89.952000pt;}
.h1e{height:90.272000pt;}
.h5d{height:94.907500pt;}
.h5{height:96.491985pt;}
.h54{height:98.912000pt;}
.h1a{height:99.243750pt;}
.h5e{height:101.756250pt;}
.h1b{height:109.792000pt;}
.h1d{height:110.112000pt;}
.h9{height:115.875000pt;}
.h14{height:125.562500pt;}
.h68{height:126.060000pt;}
.h4e{height:134.900000pt;}
.h57{height:143.966667pt;}
.h6a{height:168.386667pt;}
.h64{height:206.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:16.000000pt;}
.w3{width:23.040000pt;}
.w3f{width:24.960000pt;}
.w40{width:30.400000pt;}
.we{width:34.592000pt;}
.w1b{width:34.912000pt;}
.w35{width:36.192000pt;}
.wf{width:40.960000pt;}
.w11{width:41.312000pt;}
.w1a{width:41.600000pt;}
.w19{width:41.632000pt;}
.w18{width:41.952000pt;}
.w34{width:43.840000pt;}
.w30{width:44.192000pt;}
.w32{width:45.760000pt;}
.w33{width:46.112000pt;}
.w5{width:46.432000pt;}
.w10{width:53.792000pt;}
.w2e{width:55.360000pt;}
.w31{width:55.392000pt;}
.w1e{width:60.192000pt;}
.w20{width:60.832000pt;}
.w22{width:64.960000pt;}
.w36{width:66.560000pt;}
.w2b{width:70.752000pt;}
.w2f{width:72.032000pt;}
.w21{width:72.672000pt;}
.w2a{width:73.952000pt;}
.w3c{width:77.152000pt;}
.w12{width:78.112000pt;}
.w1f{width:80.032000pt;}
.w3e{width:81.312000pt;}
.w15{width:82.272000pt;}
.w7{width:84.512000pt;}
.w14{width:87.392000pt;}
.w17{width:88.032000pt;}
.w3d{width:92.512000pt;}
.w23{width:92.832000pt;}
.w2c{width:110.112000pt;}
.w16{width:111.424000pt;}
.wa{width:113.024000pt;}
.w27{width:127.104000pt;}
.w38{width:131.904000pt;}
.w39{width:132.192000pt;}
.w3b{width:132.864000pt;}
.w8{width:133.506667pt;}
.w37{width:135.106667pt;}
.w28{width:150.466667pt;}
.w25{width:152.066667pt;}
.wd{width:157.186667pt;}
.wc{width:171.293333pt;}
.wb{width:172.546667pt;}
.w26{width:176.066667pt;}
.w9{width:186.626667pt;}
.w13{width:188.893333pt;}
.w3a{width:197.533333pt;}
.w1c{width:373.280000pt;}
.w24{width:453.626667pt;}
.w6{width:491.066667pt;}
.w2d{width:532.986667pt;}
.w29{width:607.933333pt;}
.w4{width:623.293333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x74{left:0.960000pt;}
.x16{left:4.160000pt;}
.x1a{left:7.040000pt;}
.x64{left:8.640000pt;}
.x2d{left:9.600000pt;}
.x84{left:10.560000pt;}
.x29{left:11.520000pt;}
.x18{left:13.120000pt;}
.x89{left:14.080000pt;}
.x1e{left:15.360000pt;}
.x6f{left:16.320000pt;}
.x2b{left:18.266667pt;}
.x1c{left:19.200000pt;}
.x6e{left:20.160000pt;}
.x7d{left:21.146667pt;}
.x66{left:22.720000pt;}
.x1d{left:24.000000pt;}
.x8b{left:24.960000pt;}
.x87{left:25.946667pt;}
.x48{left:27.520000pt;}
.x7e{left:28.506667pt;}
.x88{left:29.466667pt;}
.x99{left:30.426667pt;}
.x8a{left:31.360000pt;}
.x3d{left:32.320000pt;}
.x4b{left:33.920000pt;}
.x90{left:34.920000pt;}
.x35{left:35.880000pt;}
.x57{left:40.666667pt;}
.x91{left:41.960000pt;}
.x4c{left:44.840000pt;}
.x2f{left:46.426667pt;}
.x49{left:48.360000pt;}
.x73{left:50.266667pt;}
.x93{left:54.760000pt;}
.x94{left:58.880000pt;}
.x92{left:62.400000pt;}
.x26{left:66.591988pt;}
.x8c{left:70.751988pt;}
.x32{left:76.186667pt;}
.x5{left:77.471988pt;}
.x30{left:79.706667pt;}
.x63{left:86.752000pt;}
.x5f{left:88.671988pt;}
.x31{left:89.960000pt;}
.x11{left:92.511988pt;}
.x2e{left:93.480000pt;}
.x13{left:94.431988pt;}
.x9b{left:96.351988pt;}
.x8d{left:98.912000pt;}
.x12{left:101.791988pt;}
.x77{left:106.271988pt;}
.x8{left:108.831988pt;}
.x23{left:113.631988pt;}
.x42{left:117.183988pt;}
.x36{left:118.783988pt;}
.x9e{left:123.263988pt;}
.x9f{left:126.783988pt;}
.x25{left:128.703988pt;}
.x4f{left:130.303988pt;}
.x9c{left:132.223988pt;}
.x21{left:134.466655pt;}
.x9d{left:136.066655pt;}
.x33{left:140.866655pt;}
.x19{left:142.146667pt;}
.x37{left:144.706655pt;}
.x65{left:146.946667pt;}
.x45{left:150.466667pt;}
.x20{left:153.666655pt;}
.x62{left:154.626655pt;}
.x5e{left:155.906667pt;}
.x6{left:156.866655pt;}
.x3{left:157.826655pt;}
.x39{left:160.066655pt;}
.x5d{left:165.186667pt;}
.x60{left:166.786655pt;}
.x55{left:174.786667pt;}
.x43{left:177.986667pt;}
.x3a{left:181.506655pt;}
.x78{left:185.986655pt;}
.x7c{left:187.586667pt;}
.x38{left:195.266655pt;}
.x96{left:215.773322pt;}
.x17{left:224.421333pt;}
.x67{left:226.973333pt;}
.xc{left:232.093322pt;}
.x3b{left:233.693322pt;}
.x28{left:235.293333pt;}
.x1{left:237.533322pt;}
.x27{left:241.693322pt;}
.x52{left:246.173322pt;}
.x5c{left:248.733333pt;}
.x7b{left:252.256000pt;}
.x44{left:256.093333pt;}
.x53{left:258.013322pt;}
.xd{left:259.613322pt;}
.x7f{left:260.893333pt;}
.x4d{left:262.173322pt;}
.x34{left:266.013333pt;}
.x54{left:266.973322pt;}
.x71{left:270.173333pt;}
.x1f{left:273.693322pt;}
.x9{left:279.493322pt;}
.xe{left:285.253322pt;}
.x68{left:287.813333pt;}
.x7a{left:288.773322pt;}
.xf{left:293.573322pt;}
.x75{left:299.973333pt;}
.x80{left:306.373333pt;}
.x3e{left:307.653333pt;}
.x10{left:317.573322pt;}
.x3c{left:318.533333pt;}
.xa{left:319.813322pt;}
.xb{left:329.093322pt;}
.x22{left:333.893322pt;}
.x41{left:339.653333pt;}
.x5b{left:344.773333pt;}
.x7{left:345.733322pt;}
.x4{left:353.413322pt;}
.x69{left:360.480000pt;}
.x2{left:363.359988pt;}
.x8e{left:365.920000pt;}
.x4a{left:367.520000pt;}
.x97{left:376.480000pt;}
.x50{left:389.599988pt;}
.x3f{left:391.840000pt;}
.x72{left:397.280000pt;}
.x81{left:410.080000pt;}
.x5a{left:419.040000pt;}
.x14{left:420.639988pt;}
.x2a{left:421.920000pt;}
.x6a{left:425.440000pt;}
.x58{left:427.360000pt;}
.x46{left:446.266667pt;}
.x82{left:457.786667pt;}
.x61{left:462.586655pt;}
.x98{left:468.986667pt;}
.x6b{left:485.626667pt;}
.x79{left:488.186655pt;}
.x8f{left:498.106667pt;}
.x4e{left:499.066655pt;}
.x83{left:502.906667pt;}
.x51{left:511.866655pt;}
.x59{left:532.386667pt;}
.x47{left:533.666667pt;}
.x2c{left:534.946667pt;}
.x85{left:540.386667pt;}
.x70{left:547.746667pt;}
.x76{left:557.346667pt;}
.x56{left:558.306667pt;}
.x6c{left:570.146667pt;}
.x95{left:571.106655pt;}
.x40{left:572.066667pt;}
.x86{left:597.053333pt;}
.x1b{left:633.853333pt;}
.x6d{left:664.573333pt;}
.x24{left:673.253322pt;}
.x9a{left:676.133333pt;}
.x15{left:680.613333pt;}
}




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