
    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_696225a073e0d5f30dda542b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_3d555f8425a9f6fec3aa5bbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_d7103478c3222bd0be5ba151.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960449;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_de7c5df8c0e1f66db3db5747.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_f6514d3374704f73e15efb47.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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_4349d6bbeab213f19e33e945.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_411dee6852e0c39d3b5e5899.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_b6a9cf6a54f5bce45b6a458a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_f13eb09748a62aace1d5e7d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_2b7e3f56c4637358aa14e833.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.983398;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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_96d9a6ca54b749268144bd71.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0b7cbb58a66803784e9010b9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690918;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;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fe5e71cf1fab45971bc8a595.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.653000;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;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff15;src:url('chunks/assets/font_f95cfc1768d9b3b00617c43d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.431000;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;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff18;src:url('chunks/assets/font_6078e0513105c8d5e3e54ba0.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_abbd8af6e30d75718c8c223d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_cb20d72a58dc98817a295bfd.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_9ffc3c228c7325cb4246e598.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_7176c9937cd05f95b76c6c27.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_5100a099a3cde5471938c8e0.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.714046;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:ff20;src:url('chunks/assets/font_440808f6b5e1c92352ed1390.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_c64923e3e45e42d5c3800785.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_5fdda2f8a4a04a23c203f3e0.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.850000;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:ff23;src:url('chunks/assets/font_f8ac6ee6233e115e6f68f8b5.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.056000;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:ff24;src:url('chunks/assets/font_69cfecefc99f8a1552f6b384.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff25{font-family:sans-serif;visibility:hidden;}
.ff26{font-family:sans-serif;visibility:hidden;}
.ff27{font-family:sans-serif;visibility:hidden;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v11{vertical-align:-24.678000px;}
.v13{vertical-align:-14.946000px;}
.v14{vertical-align:-12.120000px;}
.vb{vertical-align:-10.128000px;}
.v2{vertical-align:-8.964000px;}
.v5{vertical-align:-7.554000px;}
.va{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:2.988000px;}
.v10{vertical-align:5.814000px;}
.v7{vertical-align:9.168000px;}
.vf{vertical-align:12.060000px;}
.ve{vertical-align:13.470000px;}
.vc{vertical-align:14.634000px;}
.v6{vertical-align:18.132000px;}
.v16{vertical-align:19.392000px;}
.v1{vertical-align:21.000000px;}
.vd{vertical-align:23.532000px;}
.v8{vertical-align:24.678000px;}
.v1c{vertical-align:26.898000px;}
.v15{vertical-align:28.992000px;}
.v4{vertical-align:31.470000px;}
.v1a{vertical-align:32.478000px;}
.v17{vertical-align:33.534000px;}
.v1b{vertical-align:35.862000px;}
.v18{vertical-align:38.556000px;}
.v3{vertical-align:40.440000px;}
.v19{vertical-align:41.448000px;}
.v9{vertical-align:140.478000px;}
.lse{letter-spacing:-0.714000px;}
.ls16{letter-spacing:-0.642000px;}
.ls14{letter-spacing:-0.630000px;}
.ls1e{letter-spacing:-0.546000px;}
.ls20{letter-spacing:-0.534000px;}
.ls1d{letter-spacing:-0.498000px;}
.ls5{letter-spacing:-0.462000px;}
.lsf{letter-spacing:-0.282000px;}
.lsd{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.150000px;}
.ls13{letter-spacing:-0.132000px;}
.ls21{letter-spacing:-0.120000px;}
.ls18{letter-spacing:-0.114000px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000300px;}
.lsc9{letter-spacing:0.000312px;}
.ls2b{letter-spacing:0.000538px;}
.ls5e{letter-spacing:0.000544px;}
.ls74{letter-spacing:0.000564px;}
.ls77{letter-spacing:0.000648px;}
.ls59{letter-spacing:0.000993px;}
.lsc3{letter-spacing:0.001120px;}
.ls6c{letter-spacing:0.001202px;}
.lsaa{letter-spacing:0.001409px;}
.lsb8{letter-spacing:0.001481px;}
.ls25{letter-spacing:0.002015px;}
.ls29{letter-spacing:0.002338px;}
.ls53{letter-spacing:0.002800px;}
.ls50{letter-spacing:0.002823px;}
.ls7c{letter-spacing:0.002826px;}
.ls5b{letter-spacing:0.002854px;}
.ls62{letter-spacing:0.003031px;}
.ls57{letter-spacing:0.003106px;}
.lsc0{letter-spacing:0.003172px;}
.ls79{letter-spacing:0.003194px;}
.ls4a{letter-spacing:0.003269px;}
.ls2f{letter-spacing:0.003333px;}
.lsbe{letter-spacing:0.003413px;}
.lsa7{letter-spacing:0.003772px;}
.ls7e{letter-spacing:0.003779px;}
.ls69{letter-spacing:0.004038px;}
.ls71{letter-spacing:0.004059px;}
.ls4d{letter-spacing:0.004200px;}
.lsc5{letter-spacing:0.004379px;}
.ls6e{letter-spacing:0.004546px;}
.ls67{letter-spacing:0.004851px;}
.ls24{letter-spacing:0.004893px;}
.ls6f{letter-spacing:0.005250px;}
.ls98{letter-spacing:0.006993px;}
.ls10{letter-spacing:0.042000px;}
.ls1a{letter-spacing:0.168000px;}
.ls60{letter-spacing:0.221549px;}
.ls11{letter-spacing:0.270000px;}
.ls1f{letter-spacing:0.354000px;}
.ls1b{letter-spacing:0.384000px;}
.ls7{letter-spacing:0.390000px;}
.ls2{letter-spacing:0.552000px;}
.ls8{letter-spacing:0.636000px;}
.lsc{letter-spacing:0.678000px;}
.ls4{letter-spacing:0.756000px;}
.ls1{letter-spacing:0.804000px;}
.ls0{letter-spacing:0.822000px;}
.ls17{letter-spacing:1.320000px;}
.ls15{letter-spacing:1.368000px;}
.ls6d{letter-spacing:1.394351px;}
.ls7d{letter-spacing:1.400351px;}
.lsbd{letter-spacing:1.496282px;}
.lsc7{letter-spacing:1.659172px;}
.lsbf{letter-spacing:1.936641px;}
.ls6a{letter-spacing:2.035295px;}
.lsd7{letter-spacing:2.138023px;}
.lsc1{letter-spacing:2.144023px;}
.lsa6{letter-spacing:2.932010px;}
.ls7f{letter-spacing:2.984525px;}
.ls3c{letter-spacing:2.985954px;}
.ls68{letter-spacing:2.986363px;}
.lscb{letter-spacing:2.986851px;}
.ls73{letter-spacing:2.988247px;}
.lsc2{letter-spacing:2.988615px;}
.lsc4{letter-spacing:2.989140px;}
.ls30{letter-spacing:2.989202px;}
.ls75{letter-spacing:2.990525px;}
.ls3a{letter-spacing:2.991954px;}
.ls6b{letter-spacing:2.992363px;}
.ls27{letter-spacing:2.995202px;}
.ls61{letter-spacing:2.996207px;}
.ls37{letter-spacing:3.002207px;}
.ls9a{letter-spacing:3.247481px;}
.ls97{letter-spacing:3.253481px;}
.lsae{letter-spacing:3.441652px;}
.ls42{letter-spacing:3.443602px;}
.lsa2{letter-spacing:3.449602px;}
.ls31{letter-spacing:4.276379px;}
.lscc{letter-spacing:4.278579px;}
.ls87{letter-spacing:4.282379px;}
.lsab{letter-spacing:4.382351px;}
.lse2{letter-spacing:4.484282px;}
.lsdf{letter-spacing:4.490282px;}
.ls72{letter-spacing:4.503077px;}
.ls85{letter-spacing:4.685915px;}
.lsd3{letter-spacing:4.688646px;}
.ls26{letter-spacing:4.691915px;}
.lsd4{letter-spacing:4.694646px;}
.ls94{letter-spacing:4.854544px;}
.lsac{letter-spacing:5.019751px;}
.ls49{letter-spacing:5.023295px;}
.ls5f{letter-spacing:5.273276px;}
.ls52{letter-spacing:5.279276px;}
.ls99{letter-spacing:5.974363px;}
.lsbb{letter-spacing:5.980363px;}
.lsbc{letter-spacing:6.235481px;}
.lse0{letter-spacing:6.241481px;}
.lsba{letter-spacing:6.764108px;}
.ls56{letter-spacing:7.170564px;}
.ls70{letter-spacing:8.180220px;}
.ls8e{letter-spacing:8.298065px;}
.ls41{letter-spacing:8.304065px;}
.ls5c{letter-spacing:9.419732px;}
.ls54{letter-spacing:9.425732px;}
.ls82{letter-spacing:9.956338px;}
.ls5d{letter-spacing:9.962338px;}
.lscf{letter-spacing:10.152538px;}
.ls40{letter-spacing:12.496893px;}
.lsce{letter-spacing:13.150851px;}
.ls84{letter-spacing:13.270183px;}
.ls91{letter-spacing:13.276287px;}
.lsb4{letter-spacing:13.278300px;}
.ls2e{letter-spacing:13.278538px;}
.ls2d{letter-spacing:13.280338px;}
.ls3b{letter-spacing:13.281269px;}
.ls7b{letter-spacing:13.282200px;}
.ls90{letter-spacing:13.282287px;}
.ls92{letter-spacing:13.284300px;}
.ls39{letter-spacing:13.284538px;}
.ls33{letter-spacing:13.286338px;}
.ls3d{letter-spacing:13.287269px;}
.lsa0{letter-spacing:13.288200px;}
.ls12{letter-spacing:14.130000px;}
.ls83{letter-spacing:16.268234px;}
.ls46{letter-spacing:16.268525px;}
.ls2c{letter-spacing:16.270851px;}
.lsd0{letter-spacing:16.273202px;}
.ls63{letter-spacing:16.274525px;}
.ls48{letter-spacing:16.275954px;}
.ls35{letter-spacing:16.276851px;}
.lsde{letter-spacing:16.598338px;}
.lsc8{letter-spacing:16.599269px;}
.lsb7{letter-spacing:16.600200px;}
.lse1{letter-spacing:16.601607px;}
.ls4c{letter-spacing:16.602538px;}
.ls7a{letter-spacing:16.603084px;}
.lsda{letter-spacing:16.604338px;}
.ls9f{letter-spacing:16.604400px;}
.lsc6{letter-spacing:16.605269px;}
.lsb6{letter-spacing:16.606200px;}
.lsb9{letter-spacing:16.608538px;}
.lsa1{letter-spacing:16.617617px;}
.ls47{letter-spacing:17.562579px;}
.ls23{letter-spacing:17.932680px;}
.ls8f{letter-spacing:17.969915px;}
.ls96{letter-spacing:17.975915px;}
.lsca{letter-spacing:18.269781px;}
.ls3e{letter-spacing:18.307295px;}
.ls55{letter-spacing:18.488823px;}
.lsd9{letter-spacing:18.746023px;}
.lsdb{letter-spacing:18.752023px;}
.ls32{letter-spacing:19.198010px;}
.ls43{letter-spacing:19.586525px;}
.ls2a{letter-spacing:19.591202px;}
.ls38{letter-spacing:19.592525px;}
.ls3f{letter-spacing:19.593954px;}
.ls4b{letter-spacing:19.594851px;}
.ls4e{letter-spacing:19.597202px;}
.ls9e{letter-spacing:19.598207px;}
.lsb2{letter-spacing:19.604207px;}
.ls9c{letter-spacing:19.905275px;}
.lsdd{letter-spacing:19.965050px;}
.lsb3{letter-spacing:20.045602px;}
.ls44{letter-spacing:20.048108px;}
.lsa3{letter-spacing:20.049652px;}
.lsa5{letter-spacing:20.226564px;}
.ls58{letter-spacing:20.408854px;}
.lsd2{letter-spacing:20.450338px;}
.lsaf{letter-spacing:20.454538px;}
.lsd1{letter-spacing:20.456338px;}
.ls9b{letter-spacing:20.622582px;}
.lscd{letter-spacing:20.880579px;}
.lsad{letter-spacing:21.287915px;}
.ls88{letter-spacing:21.293915px;}
.ls5a{letter-spacing:21.456544px;}
.ls45{letter-spacing:21.587139px;}
.ls36{letter-spacing:21.631295px;}
.ls51{letter-spacing:22.703732px;}
.ls65{letter-spacing:22.709732px;}
.ls81{letter-spacing:22.892400px;}
.lsb5{letter-spacing:23.119690px;}
.lsb1{letter-spacing:23.366108px;}
.ls8a{letter-spacing:23.470200px;}
.ls8b{letter-spacing:23.472538px;}
.ls8c{letter-spacing:23.474338px;}
.lsd6{letter-spacing:24.419607px;}
.lsa9{letter-spacing:24.716351px;}
.lsa8{letter-spacing:24.737250px;}
.ls4f{letter-spacing:24.905139px;}
.ls80{letter-spacing:25.880525px;}
.lsd5{letter-spacing:26.564023px;}
.ls78{letter-spacing:28.316525px;}
.ls22{letter-spacing:29.887800px;}
.lsd8{letter-spacing:38.438282px;}
.lsdc{letter-spacing:38.444282px;}
.lsb0{letter-spacing:48.836351px;}
.ls1c{letter-spacing:59.802000px;}
.ls8d{letter-spacing:61.089269px;}
.ls95{letter-spacing:61.090200px;}
.ls9d{letter-spacing:64.070525px;}
.ls93{letter-spacing:67.327481px;}
.ls89{letter-spacing:70.256525px;}
.ls86{letter-spacing:86.858525px;}
.ls64{letter-spacing:89.856538px;}
.ls66{letter-spacing:92.472538px;}
.ls34{letter-spacing:97.206538px;}
.lsa4{letter-spacing:159.486538px;}
.ls76{letter-spacing:185.664538px;}
.lsb{letter-spacing:1029.648000px;}
.lsa{letter-spacing:1071.678000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-66.000000px;}
.ws7d{word-spacing:-59.775600px;}
.ws83{word-spacing:-47.654765px;}
.ws59{word-spacing:-38.937826px;}
.wsb5{word-spacing:-33.223278px;}
.ws0{word-spacing:-32.544000px;}
.ws6d{word-spacing:-31.633157px;}
.ws8c{word-spacing:-29.875845px;}
.ws7b{word-spacing:-29.015076px;}
.wsfa{word-spacing:-28.996032px;}
.wsf3{word-spacing:-28.990032px;}
.wsef{word-spacing:-28.981342px;}
.wsab{word-spacing:-28.979371px;}
.wsa8{word-spacing:-28.970839px;}
.ws5f{word-spacing:-28.955301px;}
.ws6b{word-spacing:-26.443709px;}
.wseb{word-spacing:-25.667643px;}
.wsb6{word-spacing:-25.660629px;}
.wsb4{word-spacing:-25.655354px;}
.wsae{word-spacing:-25.607867px;}
.ws7a{word-spacing:-24.477075px;}
.wsb2{word-spacing:-22.366821px;}
.wse8{word-spacing:-22.355417px;}
.wsb9{word-spacing:-22.354967px;}
.ws88{word-spacing:-22.349820px;}
.wse9{word-spacing:-22.343724px;}
.wsba{word-spacing:-22.341707px;}
.wsf6{word-spacing:-22.336752px;}
.wsa6{word-spacing:-22.320209px;}
.wsc5{word-spacing:-22.313359px;}
.wsbf{word-spacing:-22.312216px;}
.wsf0{word-spacing:-22.311066px;}
.wsf8{word-spacing:-22.307045px;}
.wsc0{word-spacing:-22.306216px;}
.wsf4{word-spacing:-22.305735px;}
.ws7c{word-spacing:-21.869289px;}
.wse7{word-spacing:-21.135724px;}
.wsea{word-spacing:-21.129724px;}
.ws14{word-spacing:-19.710000px;}
.wsec{word-spacing:-18.940271px;}
.ws41{word-spacing:-17.932680px;}
.ws12{word-spacing:-17.628000px;}
.ws1c{word-spacing:-17.082000px;}
.ws5a{word-spacing:-16.605662px;}
.ws16{word-spacing:-16.236000px;}
.wsc6{word-spacing:-15.920831px;}
.ws3{word-spacing:-15.738000px;}
.ws6c{word-spacing:-15.365779px;}
.ws6{word-spacing:-15.306000px;}
.ws18{word-spacing:-15.084000px;}
.ws2{word-spacing:-14.916000px;}
.ws4{word-spacing:-14.826000px;}
.ws13{word-spacing:-14.784000px;}
.ws17{word-spacing:-14.766000px;}
.wsb{word-spacing:-14.736000px;}
.ws1b{word-spacing:-14.634000px;}
.ws1{word-spacing:-14.454000px;}
.ws19{word-spacing:-14.418000px;}
.ws1d{word-spacing:-14.382000px;}
.ws15{word-spacing:-14.274000px;}
.wsc{word-spacing:-14.202000px;}
.wsa{word-spacing:-13.560000px;}
.ws81{word-spacing:-13.531962px;}
.ws11{word-spacing:-12.882000px;}
.ws10{word-spacing:-12.246000px;}
.wsf{word-spacing:-12.204000px;}
.ws91{word-spacing:-12.055068px;}
.wsf9{word-spacing:-12.049068px;}
.ws67{word-spacing:-12.047998px;}
.ws8f{word-spacing:-12.046834px;}
.ws70{word-spacing:-12.043448px;}
.ws69{word-spacing:-12.042539px;}
.ws82{word-spacing:-12.038806px;}
.ws71{word-spacing:-12.037448px;}
.wse{word-spacing:-12.024000px;}
.wsd{word-spacing:-11.922000px;}
.ws7{word-spacing:-10.848000px;}
.ws8{word-spacing:-10.812000px;}
.ws5{word-spacing:-9.492000px;}
.wsd8{word-spacing:-6.623136px;}
.ws84{word-spacing:-6.359572px;}
.ws8d{word-spacing:-3.335478px;}
.ws64{word-spacing:-3.326193px;}
.wsbc{word-spacing:-3.323854px;}
.ws6a{word-spacing:-3.322923px;}
.ws61{word-spacing:-3.320193px;}
.wsb7{word-spacing:-0.047820px;}
.ws79{word-spacing:-0.029888px;}
.wsf5{word-spacing:-0.018594px;}
.wsbe{word-spacing:-0.017333px;}
.ws8e{word-spacing:-0.016402px;}
.ws80{word-spacing:-0.015471px;}
.wsb3{word-spacing:-0.004985px;}
.ws9{word-spacing:0.000000px;}
.wsbb{word-spacing:0.001015px;}
.ws62{word-spacing:0.011955px;}
.ws26{word-spacing:1.912819px;}
.ws24{word-spacing:1.972595px;}
.wsaa{word-spacing:5.936070px;}
.wsf7{word-spacing:5.942070px;}
.wsad{word-spacing:5.948738px;}
.ws86{word-spacing:8.739193px;}
.ws77{word-spacing:10.700005px;}
.ws74{word-spacing:13.070005px;}
.ws97{word-spacing:13.808164px;}
.ws92{word-spacing:13.867939px;}
.ws98{word-spacing:13.987490px;}
.ws76{word-spacing:13.994005px;}
.ws101{word-spacing:14.107042px;}
.ws78{word-spacing:14.150005px;}
.ws4d{word-spacing:14.525471px;}
.wsa9{word-spacing:14.585246px;}
.ws99{word-spacing:14.764573px;}
.ws75{word-spacing:14.822005px;}
.ws3c{word-spacing:14.884124px;}
.wsa2{word-spacing:15.063451px;}
.ws36{word-spacing:15.422105px;}
.ws4e{word-spacing:15.541656px;}
.ws9d{word-spacing:15.900310px;}
.ws9e{word-spacing:15.960085px;}
.ws9f{word-spacing:16.139412px;}
.ws90{word-spacing:16.258963px;}
.ws3b{word-spacing:16.318739px;}
.wse0{word-spacing:16.378514px;}
.ws102{word-spacing:16.438290px;}
.ws4c{word-spacing:16.498066px;}
.ws100{word-spacing:16.617617px;}
.ws4b{word-spacing:16.677392px;}
.ws9b{word-spacing:16.737168px;}
.wsee{word-spacing:16.796944px;}
.wsca{word-spacing:16.916495px;}
.ws27{word-spacing:16.928492px;}
.ws72{word-spacing:17.036046px;}
.ws57{word-spacing:17.215373px;}
.ws33{word-spacing:17.275148px;}
.ws50{word-spacing:17.334924px;}
.ws45{word-spacing:17.693578px;}
.wsd2{word-spacing:17.753353px;}
.ws73{word-spacing:17.872904px;}
.ws3d{word-spacing:17.932680px;}
.ws2b{word-spacing:18.052231px;}
.wsd7{word-spacing:18.112007px;}
.wsd6{word-spacing:18.231558px;}
.wse2{word-spacing:18.291334px;}
.ws3a{word-spacing:18.351109px;}
.ws20{word-spacing:18.363110px;}
.ws32{word-spacing:18.410885px;}
.wsd5{word-spacing:18.530436px;}
.wsc9{word-spacing:18.590212px;}
.wsc3{word-spacing:18.769538px;}
.wsd1{word-spacing:18.948865px;}
.ws103{word-spacing:19.008641px;}
.ws48{word-spacing:19.068416px;}
.ws37{word-spacing:19.128192px;}
.ws53{word-spacing:19.247743px;}
.ws31{word-spacing:19.307519px;}
.ws54{word-spacing:19.367294px;}
.wsd0{word-spacing:19.427070px;}
.ws6e{word-spacing:19.486846px;}
.ws51{word-spacing:19.546621px;}
.wsc8{word-spacing:19.606397px;}
.ws39{word-spacing:19.666172px;}
.ws66{word-spacing:19.785724px;}
.ws1f{word-spacing:19.905275px;}
.ws42{word-spacing:19.965050px;}
.wsa0{word-spacing:20.144377px;}
.ws55{word-spacing:20.263928px;}
.ws56{word-spacing:20.323704px;}
.wsb1{word-spacing:20.443255px;}
.wsb0{word-spacing:20.503031px;}
.wscb{word-spacing:20.562806px;}
.ws4a{word-spacing:20.622582px;}
.wscd{word-spacing:20.742133px;}
.ws47{word-spacing:20.801909px;}
.wsf1{word-spacing:20.861684px;}
.wsce{word-spacing:20.981236px;}
.ws46{word-spacing:21.100787px;}
.ws8a{word-spacing:21.160562px;}
.ws2c{word-spacing:21.220338px;}
.ws6f{word-spacing:21.280114px;}
.wsa1{word-spacing:21.339889px;}
.ws2a{word-spacing:21.399665px;}
.wse4{word-spacing:21.578992px;}
.ws9c{word-spacing:21.638767px;}
.ws34{word-spacing:21.698543px;}
.wsaf{word-spacing:21.818094px;}
.wsa3{word-spacing:21.937645px;}
.wsd4{word-spacing:22.057196px;}
.ws2e{word-spacing:22.116972px;}
.wsa5{word-spacing:22.152837px;}
.ws7f{word-spacing:22.176748px;}
.ws7e{word-spacing:22.356074px;}
.ws49{word-spacing:22.475626px;}
.ws3f{word-spacing:22.595177px;}
.wse3{word-spacing:22.654952px;}
.ws5e{word-spacing:22.714728px;}
.ws22{word-spacing:22.894055px;}
.ws65{word-spacing:22.953830px;}
.ws5b{word-spacing:23.013606px;}
.wsc2{word-spacing:23.073382px;}
.wsf2{word-spacing:23.192933px;}
.ws29{word-spacing:23.312484px;}
.ws95{word-spacing:23.372260px;}
.ws5c{word-spacing:23.432035px;}
.ws5d{word-spacing:23.491811px;}
.wsd3{word-spacing:23.611362px;}
.ws89{word-spacing:23.671138px;}
.ws30{word-spacing:23.790689px;}
.ws4f{word-spacing:23.850464px;}
.ws93{word-spacing:23.910240px;}
.ws9a{word-spacing:24.029791px;}
.ws52{word-spacing:24.209118px;}
.wse6{word-spacing:24.268894px;}
.ws8b{word-spacing:24.328669px;}
.wse5{word-spacing:24.388445px;}
.ws35{word-spacing:24.507996px;}
.wscf{word-spacing:24.627547px;}
.wse1{word-spacing:24.866650px;}
.ws63{word-spacing:24.926425px;}
.wsdd{word-spacing:24.986201px;}
.wsda{word-spacing:25.105752px;}
.ws85{word-spacing:25.165528px;}
.wsa7{word-spacing:25.344854px;}
.wsdc{word-spacing:25.404630px;}
.wsc7{word-spacing:25.464406px;}
.ws38{word-spacing:25.643732px;}
.wsed{word-spacing:25.823059px;}
.ws58{word-spacing:25.882835px;}
.ws68{word-spacing:25.942610px;}
.wsdb{word-spacing:26.121937px;}
.wsdf{word-spacing:26.301264px;}
.ws94{word-spacing:26.361040px;}
.wsde{word-spacing:26.600142px;}
.ws3e{word-spacing:26.659918px;}
.ws2d{word-spacing:26.719693px;}
.ws87{word-spacing:27.138122px;}
.wsfe{word-spacing:27.257674px;}
.ws1e{word-spacing:27.286472px;}
.ws40{word-spacing:27.676103px;}
.wsfd{word-spacing:28.094532px;}
.wscc{word-spacing:28.154308px;}
.wsd9{word-spacing:28.572737px;}
.wsbd{word-spacing:28.668378px;}
.ws96{word-spacing:28.692288px;}
.ws43{word-spacing:28.811839px;}
.wsfb{word-spacing:28.991166px;}
.wsfc{word-spacing:29.050942px;}
.ws2f{word-spacing:29.170493px;}
.wsc1{word-spacing:29.290044px;}
.wsc4{word-spacing:29.469371px;}
.ws25{word-spacing:29.887800px;}
.ws104{word-spacing:31.202863px;}
.wsa4{word-spacing:31.382190px;}
.ws23{word-spacing:31.800619px;}
.wsff{word-spacing:32.449048px;}
.ws44{word-spacing:33.115682px;}
.ws28{word-spacing:34.370970px;}
.ws60{word-spacing:34.849175px;}
.wsb8{word-spacing:51.287465px;}
.ws21{word-spacing:55.292430px;}
.wsac{word-spacing:62.764380px;}
._28{margin-left:-30.007351px;}
._38{margin-left:-17.932680px;}
._3e{margin-left:-16.651435px;}
._3b{margin-left:-13.252996px;}
._18{margin-left:-11.940000px;}
._1b{margin-left:-10.614000px;}
._16{margin-left:-9.606000px;}
._17{margin-left:-7.848000px;}
._19{margin-left:-6.384000px;}
._3a{margin-left:-5.079431px;}
._15{margin-left:-4.062000px;}
._1a{margin-left:-2.598000px;}
._0{margin-left:-1.386000px;}
._1{width:1.188000px;}
._2{width:2.730000px;}
._1c{width:3.762000px;}
._8{width:4.950000px;}
._7{width:6.138000px;}
._4{width:7.656000px;}
._1d{width:9.396000px;}
._6{width:10.428000px;}
._1e{width:11.940000px;}
._11{width:13.728000px;}
._40{width:15.031325px;}
._5{width:16.260000px;}
._12{width:17.766000px;}
._3{width:19.602000px;}
._13{width:20.922000px;}
._1f{width:22.308000px;}
._20{width:23.484000px;}
._b{width:24.552000px;}
._c{width:25.806000px;}
._29{width:27.113225px;}
._39{width:28.122181px;}
._10{width:29.172000px;}
._f{width:30.228000px;}
._e{width:31.944000px;}
._d{width:33.264000px;}
._35{width:34.370970px;}
._37{width:35.474580px;}
._2c{width:37.294033px;}
._3c{width:38.412534px;}
._34{width:41.213038px;}
._2f{width:43.104892px;}
._9{width:44.814000px;}
._a{width:47.022000px;}
._27{width:48.724626px;}
._3f{width:52.679994px;}
._33{width:54.204228px;}
._23{width:55.292430px;}
._26{width:61.090663px;}
._3d{width:62.824156px;}
._14{width:66.414000px;}
._2e{width:79.915040px;}
._2b{width:80.995938px;}
._36{width:151.789074px;}
._25{width:475.325938px;}
._21{width:849.414000px;}
._24{width:897.936614px;}
._2d{width:1483.259290px;}
._30{width:1541.511846px;}
._2a{width:1603.839124px;}
._31{width:1870.695247px;}
._22{width:2067.322062px;}
._32{width:2089.314887px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(83,129,53);}
.fc3{color:transparent;}
.fc2{color:rgb(20,120,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(50,35,0);}
.fs11{font-size:29.887800px;}
.fsf{font-size:35.865600px;}
.fs1{font-size:36.000000px;}
.fs4{font-size:39.000000px;}
.fse{font-size:41.842800px;}
.fs3{font-size:42.000000px;}
.fs10{font-size:47.820600px;}
.fs6{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fsd{font-size:59.775600px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fsb{font-size:81.000000px;}
.fsc{font-size:86.077200px;}
.fsa{font-size:90.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y66{bottom:3.375000px;}
.y4{bottom:6.750000px;}
.y39{bottom:7.485000px;}
.y10{bottom:7.500000px;}
.yd{bottom:7.875000px;}
.y3d{bottom:7.890000px;}
.y45{bottom:7.905000px;}
.y69{bottom:9.000000px;}
.y56{bottom:9.735000px;}
.y52{bottom:9.750000px;}
.y5f{bottom:9.765000px;}
.y58{bottom:9.780000px;}
.y34{bottom:31.155000px;}
.y27{bottom:31.500000px;}
.y68{bottom:32.625000px;}
.y33{bottom:54.780000px;}
.y26{bottom:55.125000px;}
.y67{bottom:56.250000px;}
.y5{bottom:59.662500px;}
.y2f{bottom:60.787500px;}
.y3{bottom:75.412500px;}
.y32{bottom:78.405000px;}
.y25{bottom:78.750000px;}
.y31{bottom:102.030000px;}
.y24{bottom:102.375000px;}
.y2c{bottom:113.287500px;}
.y88{bottom:114.037500px;}
.y2b{bottom:117.787500px;}
.y23{bottom:125.670000px;}
.yab{bottom:127.912500px;}
.y2a{bottom:133.162500px;}
.yc9{bottom:135.037500px;}
.y29{bottom:137.662500px;}
.y60{bottom:139.912500px;}
.y22{bottom:149.295000px;}
.y87{bottom:151.530000px;}
.y28{bottom:151.905000px;}
.yc8{bottom:155.280000px;}
.y5e{bottom:157.155000px;}
.yea{bottom:158.655000px;}
.y159{bottom:169.009500px;}
.y126{bottom:169.011000px;}
.yaa{bottom:169.155000px;}
.y21{bottom:172.920000px;}
.ye9{bottom:177.075000px;}
.y5d{bottom:181.200000px;}
.y1f{bottom:183.450000px;}
.y20{bottom:196.545000px;}
.yc7{bottom:196.950000px;}
.y5c{bottom:205.200000px;}
.y139{bottom:213.841500px;}
.y108{bottom:213.843000px;}
.y2a1{bottom:216.048000px;}
.ye8{bottom:216.450000px;}
.ya9{bottom:217.200000px;}
.y1d6{bottom:221.911500px;}
.y86{bottom:227.325000px;}
.y107{bottom:228.040500px;}
.y2d6{bottom:228.061500px;}
.y308{bottom:229.131000px;}
.y5b{bottom:229.200000px;}
.y20f{bottom:231.376500px;}
.y106{bottom:232.258500px;}
.y25c{bottom:233.106000px;}
.ye7{bottom:234.825000px;}
.y158{bottom:235.477500px;}
.y289{bottom:237.850500px;}
.y1f5{bottom:239.298000px;}
.y125{bottom:240.741000px;}
.y175{bottom:242.214000px;}
.y2a0{bottom:242.947500px;}
.y2be{bottom:244.519500px;}
.y2e9{bottom:251.308500px;}
.y5a{bottom:253.200000px;}
.y307{bottom:256.030500px;}
.y270{bottom:256.465500px;}
.y1d5{bottom:257.890500px;}
.y20e{bottom:258.276000px;}
.yc6{bottom:258.450000px;}
.y2d5{bottom:259.444500px;}
.y25b{bottom:260.005500px;}
.ya8{bottom:261.450000px;}
.y288{bottom:264.750000px;}
.y1f4{bottom:266.197500px;}
.y157{bottom:267.070500px;}
.y138{bottom:267.640500px;}
.y85{bottom:268.200000px;}
.y29f{bottom:269.847000px;}
.y31c{bottom:270.004500px;}
.y344{bottom:271.089000px;}
.y59{bottom:277.200000px;}
.y156{bottom:277.321500px;}
.y2e8{bottom:278.208000px;}
.y124{bottom:278.338500px;}
.y1d3{bottom:281.163000px;}
.y306{bottom:282.930000px;}
.y105{bottom:284.008500px;}
.y174{bottom:284.056500px;}
.y26f{bottom:284.859000px;}
.y20d{bottom:285.175500px;}
.y2d4{bottom:286.344000px;}
.y25a{bottom:286.905000px;}
.y2d3{bottom:290.826000px;}
.y287{bottom:291.648000px;}
.ye6{bottom:292.200000px;}
.y1f3{bottom:293.097000px;}
.y137{bottom:294.540000px;}
.y29e{bottom:296.746500px;}
.y31b{bottom:296.904000px;}
.y1d4{bottom:298.348500px;}
.y57{bottom:301.200000px;}
.ya7{bottom:302.745000px;}
.y2e7{bottom:305.107500px;}
.yc5{bottom:306.120000px;}
.y2bd{bottom:308.733000px;}
.y84{bottom:309.870000px;}
.ye5{bottom:310.605000px;}
.y172{bottom:310.956000px;}
.y305{bottom:311.323500px;}
.y155{bottom:311.689500px;}
.y26e{bottom:311.758500px;}
.y20c{bottom:312.075000px;}
.y1d2{bottom:312.546000px;}
.y259{bottom:313.804500px;}
.y173{bottom:314.733000px;}
.y104{bottom:316.881000px;}
.y2d2{bottom:317.727000px;}
.y286{bottom:318.547500px;}
.y1f2{bottom:319.996500px;}
.y123{bottom:320.419500px;}
.y136{bottom:321.438000px;}
.y2d1{bottom:322.209000px;}
.ya6{bottom:322.995000px;}
.y29d{bottom:323.644500px;}
.y31a{bottom:323.803500px;}
.y55{bottom:325.245000px;}
.y83{bottom:330.120000px;}
.y191{bottom:331.941000px;}
.y192{bottom:333.585000px;}
.y343{bottom:334.305000px;}
.y1d1{bottom:334.327500px;}
.y304{bottom:335.382000px;}
.y2e6{bottom:336.489000px;}
.y171{bottom:337.855500px;}
.y26d{bottom:338.658000px;}
.y2bc{bottom:340.114500px;}
.y20b{bottom:340.468500px;}
.y154{bottom:343.072500px;}
.y285{bottom:345.447000px;}
.yc4{bottom:345.495000px;}
.y1f1{bottom:346.894500px;}
.y122{bottom:347.319000px;}
.y135{bottom:348.337500px;}
.y54{bottom:349.245000px;}
.y103{bottom:349.753500px;}
.ye4{bottom:349.995000px;}
.y82{bottom:350.370000px;}
.y29c{bottom:350.544000px;}
.y319{bottom:350.703000px;}
.y342{bottom:352.237500px;}
.y2d0{bottom:353.592000px;}
.y303{bottom:362.281500px;}
.ya5{bottom:363.870000px;}
.y170{bottom:364.753500px;}
.y1cf{bottom:365.029500px;}
.y26c{bottom:365.556000px;}
.y1d0{bottom:366.673500px;}
.y20a{bottom:367.366500px;}
.y2e5{bottom:367.872000px;}
.ye3{bottom:368.355000px;}
.y341{bottom:370.170000px;}
.y81{bottom:370.245000px;}
.y23b{bottom:370.440000px;}
.y134{bottom:372.205500px;}
.y190{bottom:372.630000px;}
.y53{bottom:373.245000px;}
.y1f0{bottom:373.794000px;}
.y121{bottom:374.217000px;}
.y133{bottom:375.237000px;}
.y102{bottom:376.653000px;}
.y29b{bottom:377.443500px;}
.y318{bottom:377.601000px;}
.y2bb{bottom:381.207000px;}
.y223{bottom:384.472500px;}
.y258{bottom:384.847500px;}
.y152{bottom:384.915000px;}
.y2cf{bottom:384.973500px;}
.yc3{bottom:386.745000px;}
.y284{bottom:387.289500px;}
.y340{bottom:388.104000px;}
.y153{bottom:388.693500px;}
.y302{bottom:389.179500px;}
.y80{bottom:390.495000px;}
.y26b{bottom:392.455500px;}
.y1ce{bottom:393.573000px;}
.y209{bottom:394.266000px;}
.y51{bottom:397.245000px;}
.y23a{bottom:397.339500px;}
.y1ef{bottom:400.693500px;}
.y120{bottom:401.116500px;}
.y16f{bottom:402.064500px;}
.y29a{bottom:404.343000px;}
.y1e{bottom:404.370000px;}
.y317{bottom:404.500500px;}
.ya4{bottom:405.120000px;}
.y132{bottom:405.570000px;}
.y33f{bottom:406.036500px;}
.y16e{bottom:406.597500px;}
.ye2{bottom:407.370000px;}
.yc2{bottom:407.745000px;}
.y2ba{bottom:408.106500px;}
.y101{bottom:409.527000px;}
.y7f{bottom:410.745000px;}
.y222{bottom:411.370500px;}
.y18f{bottom:411.675000px;}
.y257{bottom:411.747000px;}
.y151{bottom:411.814500px;}
.y2e4{bottom:412.704000px;}
.y131{bottom:414.640500px;}
.y301{bottom:416.079000px;}
.y2ce{bottom:416.356500px;}
.y130{bottom:417.474000px;}
.y283{bottom:418.672500px;}
.y26a{bottom:419.355000px;}
.y1cd{bottom:420.472500px;}
.y1d{bottom:420.870000px;}
.y208{bottom:421.165500px;}
.y33e{bottom:423.969000px;}
.y239{bottom:424.239000px;}
.y12d{bottom:425.572500px;}
.ye1{bottom:425.745000px;}
.ya3{bottom:426.120000px;}
.y1ee{bottom:427.593000px;}
.yc1{bottom:427.620000px;}
.y11f{bottom:428.016000px;}
.y50{bottom:430.245000px;}
.y7e{bottom:430.620000px;}
.y16d{bottom:433.446000px;}
.y12f{bottom:435.412500px;}
.y299{bottom:435.724500px;}
.y100{bottom:436.425000px;}
.y16c{bottom:437.979000px;}
.y12e{bottom:438.246000px;}
.y221{bottom:438.270000px;}
.y256{bottom:438.646500px;}
.y150{bottom:438.714000px;}
.y2e3{bottom:439.603500px;}
.y269{bottom:439.977000px;}
.y300{bottom:442.978500px;}
.y18e{bottom:443.058000px;}
.y2cd{bottom:444.691500px;}
.y1c{bottom:445.275000px;}
.y2b9{bottom:446.359500px;}
.y33d{bottom:446.599500px;}
.ya2{bottom:447.150000px;}
.y1cc{bottom:447.370500px;}
.yc0{bottom:448.650000px;}
.y207{bottom:449.559000px;}
.y282{bottom:450.054000px;}
.y2cc{bottom:453.657000px;}
.y1ed{bottom:454.491000px;}
.y11e{bottom:454.915500px;}
.y4f{bottom:456.900000px;}
.yff{bottom:463.324500px;}
.y33c{bottom:464.533500px;}
.y255{bottom:465.544500px;}
.y14e{bottom:465.613500px;}
.y268{bottom:466.876500px;}
.ye0{bottom:467.025000px;}
.y18d{bottom:467.865000px;}
.ya1{bottom:468.150000px;}
.ybf{bottom:468.900000px;}
.y14f{bottom:469.390500px;}
.y1b{bottom:469.650000px;}
.y2ff{bottom:469.878000px;}
.y298{bottom:471.591000px;}
.y1cb{bottom:474.270000px;}
.y2e1{bottom:475.318500px;}
.y316{bottom:475.543500px;}
.y7d{bottom:476.400000px;}
.y206{bottom:476.458500px;}
.y329{bottom:476.824500px;}
.y18b{bottom:478.116000px;}
.y4e{bottom:479.400000px;}
.y16a{bottom:479.823000px;}
.y1ec{bottom:481.390500px;}
.y281{bottom:481.437000px;}
.y11d{bottom:481.813500px;}
.y16b{bottom:483.600000px;}
.y2b8{bottom:484.914000px;}
.y18c{bottom:488.226000px;}
.yfe{bottom:490.224000px;}
.y254{bottom:492.444000px;}
.y14d{bottom:492.511500px;}
.ydf{bottom:493.650000px;}
.y12c{bottom:493.657500px;}
.y267{bottom:493.776000px;}
.y238{bottom:495.282000px;}
.y2cb{bottom:495.501000px;}
.y2fe{bottom:498.271500px;}
.y297{bottom:498.489000px;}
.y4d{bottom:498.525000px;}
.y1a{bottom:501.900000px;}
.y2e0{bottom:502.219500px;}
.y315{bottom:502.443000px;}
.y205{bottom:503.356500px;}
.y33b{bottom:503.661000px;}
.y328{bottom:503.724000px;}
.y7c{bottom:504.525000px;}
.y2df{bottom:506.701500px;}
.y169{bottom:506.722500px;}
.y1eb{bottom:508.290000px;}
.y11c{bottom:508.713000px;}
.y220{bottom:509.334000px;}
.ya0{bottom:510.150000px;}
.y1ca{bottom:510.249000px;}
.ybe{bottom:510.900000px;}
.y189{bottom:512.650500px;}
.y280{bottom:512.818500px;}
.y18a{bottom:515.220000px;}
.y4c{bottom:518.025000px;}
.y19{bottom:518.400000px;}
.y14c{bottom:519.411000px;}
.y12b{bottom:520.557000px;}
.y266{bottom:520.675500px;}
.y253{bottom:520.837500px;}
.y237{bottom:522.181500px;}
.y2ca{bottom:522.400500px;}
.yfd{bottom:523.096500px;}
.y2b7{bottom:523.468500px;}
.y296{bottom:525.388500px;}
.y2fd{bottom:526.665000px;}
.y314{bottom:529.342500px;}
.y204{bottom:530.256000px;}
.y327{bottom:530.623500px;}
.ybd{bottom:531.150000px;}
.yde{bottom:533.025000px;}
.y2de{bottom:533.601000px;}
.y7b{bottom:534.150000px;}
.y1ea{bottom:535.189500px;}
.y11b{bottom:535.612500px;}
.y21f{bottom:536.233500px;}
.y1c4{bottom:536.550000px;}
.y2dd{bottom:538.084500px;}
.y4b{bottom:539.775000px;}
.y1c6{bottom:542.122500px;}
.y18{bottom:542.400000px;}
.y27f{bottom:544.201500px;}
.y1c1{bottom:545.724000px;}
.y14a{bottom:546.310500px;}
.y12a{bottom:547.456500px;}
.y252{bottom:547.737000px;}
.y168{bottom:548.565000px;}
.y265{bottom:549.069000px;}
.y236{bottom:549.081000px;}
.yfc{bottom:549.996000px;}
.y14b{bottom:550.087500px;}
.y1c5{bottom:551.343000px;}
.y9f{bottom:551.400000px;}
.y34b{bottom:551.887500px;}
.y1b3{bottom:552.108000px;}
.y295{bottom:552.288000px;}
.y2fc{bottom:553.564500px;}
.y1c3{bottom:553.569000px;}
.y1b8{bottom:553.978500px;}
.y1c2{bottom:555.661500px;}
.y313{bottom:556.242000px;}
.y1b2{bottom:556.591500px;}
.y203{bottom:557.155500px;}
.y326{bottom:557.523000px;}
.y1c7{bottom:559.131000px;}
.y1b1{bottom:561.073500px;}
.y2b6{bottom:561.721500px;}
.y1e9{bottom:562.087500px;}
.y1ba{bottom:562.270500px;}
.y11a{bottom:562.512000px;}
.y7a{bottom:563.070000px;}
.y21e{bottom:563.133000px;}
.y2c9{bottom:564.243000px;}
.y1b7{bottom:565.015500px;}
.y1be{bottom:565.258500px;}
.y1b0{bottom:565.557000px;}
.y4a{bottom:566.445000px;}
.y17{bottom:566.820000px;}
.y2dc{bottom:569.466000px;}
.y1c0{bottom:570.832500px;}
.ybc{bottom:572.070000px;}
.y9e{bottom:572.445000px;}
.y27e{bottom:572.536500px;}
.y149{bottom:573.210000px;}
.y2e2{bottom:574.069500px;}
.y129{bottom:574.354500px;}
.y1bb{bottom:574.432500px;}
.y251{bottom:574.636500px;}
.y33a{bottom:574.705500px;}
.y1aa{bottom:575.271000px;}
.y264{bottom:575.967000px;}
.yfb{bottom:576.895500px;}
.y235{bottom:577.474500px;}
.y188{bottom:578.595000px;}
.y34a{bottom:578.787000px;}
.y167{bottom:579.948000px;}
.y1bf{bottom:580.051500px;}
.y2fb{bottom:580.462500px;}
.y27d{bottom:582.175500px;}
.y1c8{bottom:582.277500px;}
.y1bd{bottom:582.279000px;}
.y49{bottom:582.945000px;}
.y312{bottom:583.140000px;}
.y202{bottom:584.055000px;}
.y1bc{bottom:584.370000px;}
.y325{bottom:584.421000px;}
.ydd{bottom:588.570000px;}
.y2b5{bottom:588.621000px;}
.y1e8{bottom:588.987000px;}
.y1c9{bottom:589.168500px;}
.y1b9{bottom:589.170000px;}
.y119{bottom:589.410000px;}
.y294{bottom:591.142500px;}
.y16{bottom:591.195000px;}
.y21d{bottom:591.526500px;}
.y79{bottom:592.320000px;}
.y1af{bottom:592.456500px;}
.y9d{bottom:593.445000px;}
.y1b5{bottom:594.231000px;}
.y2c8{bottom:595.626000px;}
.y250{bottom:596.382000px;}
.y1ae{bottom:596.940000px;}
.y148{bottom:600.108000px;}
.y1b6{bottom:600.363000px;}
.y2db{bottom:600.849000px;}
.y1ad{bottom:601.423500px;}
.y24f{bottom:601.534500px;}
.y339{bottom:601.603500px;}
.y263{bottom:602.866500px;}
.y234{bottom:604.374000px;}
.y187{bottom:605.494500px;}
.y349{bottom:605.686500px;}
.y1ac{bottom:605.907000px;}
.y48{bottom:607.320000px;}
.y2fa{bottom:607.362000px;}
.y1b4{bottom:607.611000px;}
.yfa{bottom:609.768000px;}
.y311{bottom:610.039500px;}
.ydc{bottom:610.320000px;}
.y201{bottom:610.953000px;}
.y2f2{bottom:612.234000px;}
.y9c{bottom:613.695000px;}
.y2b4{bottom:615.520500px;}
.y128{bottom:615.541500px;}
.y1e7{bottom:615.886500px;}
.y118{bottom:616.309500px;}
.y21c{bottom:618.426000px;}
.y1ab{bottom:619.356000px;}
.ybb{bottom:620.445000px;}
.y78{bottom:621.570000px;}
.y15{bottom:623.445000px;}
.y27c{bottom:624.019500px;}
.y185{bottom:624.568500px;}
.y147{bottom:627.007500px;}
.y24e{bottom:628.434000px;}
.y338{bottom:628.503000px;}
.y262{bottom:629.766000px;}
.y293{bottom:629.997000px;}
.y233{bottom:631.272000px;}
.y200{bottom:631.344000px;}
.ydb{bottom:632.070000px;}
.y2da{bottom:632.230500px;}
.y348{bottom:632.584500px;}
.y2f9{bottom:634.261500px;}
.yf9{bottom:636.667500px;}
.y310{bottom:636.939000px;}
.y2f1{bottom:639.133500px;}
.y14{bottom:639.945000px;}
.y47{bottom:640.695000px;}
.y2b3{bottom:642.418500px;}
.y1e6{bottom:642.786000px;}
.y117{bottom:643.209000px;}
.y184{bottom:644.929500px;}
.y21b{bottom:645.324000px;}
.y352{bottom:646.434000px;}
.y166{bottom:648.690000px;}
.y24d{bottom:648.757500px;}
.y261{bottom:650.388000px;}
.y77{bottom:650.820000px;}
.y27b{bottom:650.917500px;}
.y24c{bottom:652.293000px;}
.yda{bottom:653.820000px;}
.y146{bottom:653.907000px;}
.y337{bottom:655.402500px;}
.y9b{bottom:655.695000px;}
.y324{bottom:656.377500px;}
.y292{bottom:656.895000px;}
.y24a{bottom:659.283000px;}
.y347{bottom:659.484000px;}
.y232{bottom:659.665500px;}
.y1a9{bottom:660.432000px;}
.y2d9{bottom:660.565500px;}
.y2f8{bottom:661.161000px;}
.y183{bottom:662.115000px;}
.yf8{bottom:663.567000px;}
.y30f{bottom:663.838500px;}
.y13{bottom:664.320000px;}
.y2f0{bottom:666.031500px;}
.y24b{bottom:666.531000px;}
.y46{bottom:668.445000px;}
.y2b2{bottom:669.318000px;}
.y2d8{bottom:669.532500px;}
.y1e5{bottom:669.684000px;}
.y116{bottom:670.108500px;}
.y351{bottom:673.333500px;}
.y21a{bottom:673.717500px;}
.yd9{bottom:675.570000px;}
.y165{bottom:675.588000px;}
.y9a{bottom:675.945000px;}
.y260{bottom:677.287500px;}
.y27a{bottom:677.817000px;}
.y76{bottom:680.070000px;}
.y336{bottom:682.302000px;}
.y182{bottom:682.474500px;}
.y323{bottom:683.277000px;}
.y145{bottom:685.288500px;}
.y249{bottom:686.182500px;}
.y346{bottom:686.383500px;}
.y231{bottom:686.565000px;}
.y1a8{bottom:687.330000px;}
.y44{bottom:687.945000px;}
.y2f7{bottom:688.059000px;}
.y12{bottom:688.725000px;}
.yf7{bottom:690.465000px;}
.y30e{bottom:690.736500px;}
.y2ef{bottom:692.931000px;}
.y291{bottom:695.749500px;}
.y1e4{bottom:696.583500px;}
.y115{bottom:697.006500px;}
.y1ff{bottom:697.243500px;}
.yd8{bottom:697.350000px;}
.y181{bottom:699.661500px;}
.y2b1{bottom:700.159500px;}
.y219{bottom:700.617000px;}
.y164{bottom:702.487500px;}
.y25f{bottom:704.187000px;}
.y279{bottom:704.716500px;}
.y127{bottom:705.292500px;}
.yba{bottom:705.600000px;}
.y2d7{bottom:707.704500px;}
.y335{bottom:709.200000px;}
.y75{bottom:709.350000px;}
.y322{bottom:710.176500px;}
.y2af{bottom:710.410500px;}
.y186{bottom:711.709500px;}
.y350{bottom:712.188000px;}
.y43{bottom:712.350000px;}
.y248{bottom:713.082000px;}
.y11{bottom:713.100000px;}
.y230{bottom:713.464500px;}
.y1a7{bottom:714.229500px;}
.y2f6{bottom:714.958500px;}
.y2b0{bottom:716.238000px;}
.y144{bottom:716.671500px;}
.y99{bottom:716.850000px;}
.y30d{bottom:717.636000px;}
.y2ee{bottom:719.830500px;}
.y180{bottom:720.021000px;}
.y2c7{bottom:722.649000px;}
.yf6{bottom:723.339000px;}
.y1e3{bottom:723.483000px;}
.y114{bottom:723.906000px;}
.y1fe{bottom:724.143000px;}
.yb9{bottom:725.850000px;}
.y218{bottom:727.516500px;}
.y163{bottom:729.387000px;}
.y25e{bottom:731.086500px;}
.yd7{bottom:731.100000px;}
.y278{bottom:731.616000px;}
.y290{bottom:734.604000px;}
.y30c{bottom:735.123000px;}
.y345{bottom:735.474000px;}
.y42{bottom:736.725000px;}
.y321{bottom:737.076000px;}
.y98{bottom:737.100000px;}
.y17f{bottom:737.206500px;}
.yf{bottom:737.475000px;}
.y334{bottom:737.593500px;}
.y74{bottom:738.600000px;}
.y34f{bottom:739.087500px;}
.y247{bottom:739.980000px;}
.y1a6{bottom:741.129000px;}
.y22f{bottom:741.858000px;}
.y2ae{bottom:745.030500px;}
.y2ed{bottom:746.730000px;}
.yb8{bottom:746.850000px;}
.y25d{bottom:748.572000px;}
.y2c6{bottom:749.548500px;}
.y1e2{bottom:750.382500px;}
.y113{bottom:750.805500px;}
.y1fd{bottom:751.042500px;}
.y217{bottom:755.910000px;}
.yf5{bottom:756.211500px;}
.y162{bottom:756.286500px;}
.y97{bottom:757.350000px;}
.y17e{bottom:757.567500px;}
.y41{bottom:761.100000px;}
.ye{bottom:761.475000px;}
.y143{bottom:761.503500px;}
.y2f5{bottom:762.480000px;}
.y320{bottom:763.974000px;}
.y333{bottom:764.493000px;}
.y246{bottom:766.879500px;}
.yb7{bottom:767.100000px;}
.y1a5{bottom:767.440500px;}
.y73{bottom:767.850000px;}
.y22e{bottom:768.757500px;}
.y277{bottom:770.469000px;}
.y1a4{bottom:772.594500px;}
.y28f{bottom:773.458500px;}
.y2ec{bottom:773.628000px;}
.y17d{bottom:774.753000px;}
.y2ad{bottom:776.413500px;}
.y2c5{bottom:776.446500px;}
.y1a0{bottom:777.256500px;}
.y1e1{bottom:777.280500px;}
.y96{bottom:777.600000px;}
.y112{bottom:777.705000px;}
.y34e{bottom:779.436000px;}
.y19f{bottom:781.740000px;}
.y216{bottom:782.809500px;}
.yc{bottom:785.850000px;}
.y31f{bottom:787.164000px;}
.yb6{bottom:788.100000px;}
.y142{bottom:788.403000px;}
.yf4{bottom:789.084000px;}
.y2f4{bottom:789.379500px;}
.y1fc{bottom:789.897000px;}
.y31e{bottom:790.873500px;}
.y332{bottom:791.392500px;}
.y19c{bottom:791.452500px;}
.y244{bottom:793.779000px;}
.y40{bottom:794.475000px;}
.y17c{bottom:795.114000px;}
.y22d{bottom:795.655500px;}
.yd6{bottom:796.725000px;}
.y72{bottom:797.100000px;}
.y276{bottom:797.368500px;}
.y161{bottom:798.129000px;}
.y95{bottom:798.225000px;}
.y1a2{bottom:798.450000px;}
.y245{bottom:798.553500px;}
.y2eb{bottom:800.527500px;}
.y30b{bottom:801.852000px;}
.y2ac{bottom:803.461500px;}
.y111{bottom:804.603000px;}
.y1a3{bottom:804.873000px;}
.y28e{bottom:806.335500px;}
.yb5{bottom:808.350000px;}
.y19e{bottom:808.639500px;}
.y215{bottom:809.707500px;}
.y34d{bottom:810.819000px;}
.y1df{bottom:811.503000px;}
.y1a1{bottom:812.121000px;}
.y19d{bottom:813.121500px;}
.y1e0{bottom:813.147000px;}
.y2aa{bottom:813.712500px;}
.y141{bottom:815.301000px;}
.y22c{bottom:816.279000px;}
.y31d{bottom:817.773000px;}
.yb{bottom:818.130000px;}
.y2c4{bottom:818.290500px;}
.y2ab{bottom:819.540000px;}
.y331{bottom:819.786000px;}
.y243{bottom:820.678500px;}
.y3f{bottom:821.130000px;}
.y2c3{bottom:822.067500px;}
.y160{bottom:822.936000px;}
.y71{bottom:826.380000px;}
.y2ea{bottom:827.427000px;}
.y15f{bottom:827.469000px;}
.y1fb{bottom:828.751500px;}
.y110{bottom:831.502500px;}
.y17b{bottom:834.715500px;}
.y275{bottom:836.223000px;}
.y214{bottom:836.607000px;}
.y3e{bottom:837.630000px;}
.y15e{bottom:837.720000px;}
.yd5{bottom:838.005000px;}
.y28d{bottom:839.212500px;}
.y19b{bottom:841.777500px;}
.y140{bottom:842.200500px;}
.y2a9{bottom:843.168000px;}
.y22b{bottom:843.178500px;}
.y2f3{bottom:844.672500px;}
.y94{bottom:845.130000px;}
.y330{bottom:846.685500px;}
.y242{bottom:847.576500px;}
.y2c2{bottom:849.672000px;}
.yb4{bottom:850.005000px;}
.ya{bottom:851.130000px;}
.y2a7{bottom:853.419000px;}
.y2c1{bottom:853.450500px;}
.y70{bottom:855.645000px;}
.y30a{bottom:855.649500px;}
.y10f{bottom:858.402000px;}
.y2a8{bottom:859.248000px;}
.yd4{bottom:859.380000px;}
.y17a{bottom:861.613500px;}
.y3c{bottom:862.005000px;}
.y213{bottom:863.506500px;}
.y1de{bottom:866.944500px;}
.y1fa{bottom:867.606000px;}
.y199{bottom:867.997500px;}
.y13f{bottom:869.100000px;}
.yb3{bottom:870.255000px;}
.y22a{bottom:871.572000px;}
.y15d{bottom:872.088000px;}
.y93{bottom:872.880000px;}
.y32f{bottom:873.583500px;}
.y241{bottom:874.476000px;}
.y274{bottom:875.077500px;}
.yd3{bottom:880.380000px;}
.y2c0{bottom:881.055000px;}
.y34c{bottom:882.549000px;}
.y2bf{bottom:884.832000px;}
.y6f{bottom:884.880000px;}
.y10e{bottom:885.301500px;}
.y3b{bottom:886.380000px;}
.y309{bottom:887.032500px;}
.y179{bottom:888.513000px;}
.y212{bottom:890.406000px;}
.yb2{bottom:890.505000px;}
.y1dd{bottom:893.844000px;}
.y2a6{bottom:894.511500px;}
.y198{bottom:895.045500px;}
.y13e{bottom:895.999500px;}
.y229{bottom:898.470000px;}
.y32e{bottom:900.483000px;}
.y240{bottom:901.375500px;}
.yd2{bottom:901.380000px;}
.yf3{bottom:901.548000px;}
.y273{bottom:901.977000px;}
.y9{bottom:902.505000px;}
.y15c{bottom:903.471000px;}
.y197{bottom:905.296500px;}
.yf2{bottom:905.766000px;}
.y1f9{bottom:906.459000px;}
.y92{bottom:909.630000px;}
.y3a{bottom:910.755000px;}
.y28c{bottom:910.942500px;}
.y10d{bottom:912.199500px;}
.y6e{bottom:914.130000px;}
.y2a5{bottom:916.878000px;}
.y211{bottom:917.304000px;}
.y178{bottom:918.217500px;}
.y2a4{bottom:921.411000px;}
.y13d{bottom:922.897500px;}
.y228{bottom:925.369500px;}
.y1db{bottom:925.863000px;}
.y32d{bottom:927.382500px;}
.y23f{bottom:928.275000px;}
.y272{bottom:928.875000px;}
.y1da{bottom:929.557500px;}
.yf0{bottom:930.688500px;}
.y91{bottom:931.380000px;}
.yb1{bottom:931.755000px;}
.y196{bottom:934.003500px;}
.y15b{bottom:934.854000px;}
.y38{bottom:935.145000px;}
.yf1{bottom:936.111000px;}
.y210{bottom:937.696500px;}
.y28b{bottom:937.842000px;}
.y10c{bottom:939.099000px;}
.y19a{bottom:940.728000px;}
.y8{bottom:941.130000px;}
.yd1{bottom:943.005000px;}
.y6d{bottom:943.380000px;}
.y195{bottom:944.253000px;}
.y1f8{bottom:945.313500px;}
.y13c{bottom:949.797000px;}
.y227{bottom:952.269000px;}
.y177{bottom:952.404000px;}
.y7{bottom:953.175000px;}
.y32c{bottom:954.282000px;}
.y23e{bottom:955.173000px;}
.y2a3{bottom:957.970500px;}
.y1d9{bottom:960.939000px;}
.y2a2{bottom:962.503500px;}
.y1dc{bottom:962.583000px;}
.y28a{bottom:964.741500px;}
.y10b{bottom:965.998500px;}
.y271{bottom:967.729500px;}
.y6c{bottom:968.175000px;}
.y37{bottom:968.550000px;}
.y1f7{bottom:972.213000px;}
.y90{bottom:974.925000px;}
.yef{bottom:975.520500px;}
.y13b{bottom:976.696500px;}
.y194{bottom:978.789000px;}
.y226{bottom:979.168500px;}
.yb0{bottom:979.800000px;}
.y32b{bottom:981.180000px;}
.y23d{bottom:982.072500px;}
.yd0{bottom:984.300000px;}
.y1d8{bottom:988.627500px;}
.y6b{bottom:991.425000px;}
.y176{bottom:991.449000px;}
.y1d7{bottom:992.322000px;}
.y10a{bottom:992.898000px;}
.y8f{bottom:996.675000px;}
.y1f6{bottom:999.112500px;}
.yee{bottom:1002.418500px;}
.y13a{bottom:1003.596000px;}
.y6a{bottom:1004.175000px;}
.y36{bottom:1005.300000px;}
.y225{bottom:1006.066500px;}
.y15a{bottom:1007.373000px;}
.y32a{bottom:1008.079500px;}
.y23c{bottom:1008.972000px;}
.y193{bottom:1010.170500px;}
.y65{bottom:1012.800000px;}
.y8e{bottom:1018.425000px;}
.y35{bottom:1021.800000px;}
.yaf{bottom:1023.300000px;}
.ycf{bottom:1025.550000px;}
.y224{bottom:1026.457500px;}
.yed{bottom:1029.318000px;}
.y109{bottom:1030.494000px;}
.y8d{bottom:1040.175000px;}
.yce{bottom:1045.800000px;}
.y30{bottom:1046.175000px;}
.y8c{bottom:1061.925000px;}
.yae{bottom:1064.925000px;}
.ycd{bottom:1066.800000px;}
.y6{bottom:1078.080000px;}
.y8b{bottom:1083.705000px;}
.ycc{bottom:1087.080000px;}
.y64{bottom:1090.080000px;}
.y2{bottom:1095.330000px;}
.y63{bottom:1103.205000px;}
.y8a{bottom:1105.455000px;}
.yad{bottom:1106.205000px;}
.ycb{bottom:1108.080000px;}
.yec{bottom:1116.705000px;}
.y62{bottom:1118.205000px;}
.y89{bottom:1127.205000px;}
.yca{bottom:1127.955000px;}
.yeb{bottom:1143.330000px;}
.yac{bottom:1148.205000px;}
.y61{bottom:1148.955000px;}
.y2e{bottom:1170.705000px;}
.y2d{bottom:1186.455000px;}
.y1{bottom:1193.205000px;}
.h38{height:0.000000px;}
.h2d{height:2.391024px;}
.h21{height:16.677504px;}
.h2b{height:21.399665px;}
.h37{height:22.415850px;}
.h2{height:22.500000px;}
.hc{height:22.537500px;}
.h6{height:23.250000px;}
.h10{height:23.272500px;}
.h7{height:23.610000px;}
.h5{height:23.625000px;}
.h8{height:23.662500px;}
.h1e{height:24.143296px;}
.h3a{height:31.211850px;}
.h36{height:31.382100px;}
.h1f{height:34.072320px;}
.h39{height:34.475850px;}
.h13{height:35.806641px;}
.h34{height:35.885850px;}
.h3{height:36.861328px;}
.h2f{height:37.049850px;}
.ha{height:38.790527px;}
.h1d{height:39.750660px;}
.h2e{height:40.451850px;}
.h33{height:40.457850px;}
.h27{height:41.758762px;}
.h3f{height:41.807850px;}
.h22{height:44.831700px;}
.h20{height:45.429570px;}
.h25{height:48.821296px;}
.h17{height:49.992188px;}
.h32{height:53.072100px;}
.h35{height:53.078100px;}
.h12{height:53.709961px;}
.h19{height:54.856934px;}
.h30{height:54.914100px;}
.h40{height:55.949850px;}
.h26{height:56.060100px;}
.h3b{height:56.066100px;}
.h1c{height:56.786820px;}
.h41{height:58.892100px;}
.h3c{height:59.609700px;}
.hb{height:59.677734px;}
.h46{height:59.945700px;}
.h43{height:60.374100px;}
.h16{height:62.765625px;}
.h24{height:62.963700px;}
.h2a{height:63.161850px;}
.h42{height:63.929700px;}
.h44{height:65.441700px;}
.h31{height:65.447700px;}
.h1{height:65.645508px;}
.h11{height:67.579102px;}
.h3d{height:70.838100px;}
.hd{height:71.613281px;}
.h14{height:73.162500px;}
.h3e{height:73.742100px;}
.hf{height:79.866211px;}
.h49{height:80.693700px;}
.h4a{height:80.699700px;}
.h1b{height:81.773340px;}
.h45{height:83.387700px;}
.h23{height:85.271700px;}
.h29{height:85.829700px;}
.h28{height:85.835700px;}
.h48{height:86.273700px;}
.h47{height:86.279700px;}
.h15{height:92.153320px;}
.h18{height:99.984375px;}
.he{height:117.787500px;}
.h2c{height:142.869024px;}
.h4{height:147.445312px;}
.h9{height:212.295000px;}
.h1a{height:1188.000000px;}
.h0{height:1263.000000px;}
.we{width:79.912500px;}
.wf{width:100.537500px;}
.w12{width:128.287500px;}
.wb{width:159.075000px;}
.w8{width:160.950000px;}
.w5{width:221.700000px;}
.w4{width:243.450000px;}
.w3{width:243.495000px;}
.wc{width:252.480000px;}
.w10{width:256.995000px;}
.w9{width:273.105000px;}
.w11{width:289.995000px;}
.wa{width:294.120000px;}
.wd{width:316.620000px;}
.w14{width:363.525000px;}
.w15{width:366.900000px;}
.w6{width:498.975000px;}
.w13{width:563.520000px;}
.w7{width:892.874973px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.w16{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:7.875000px;}
.x3{left:81.037500px;}
.x16{left:82.537500px;}
.xf{left:85.912487px;}
.xa{left:90.412487px;}
.x1a{left:97.537487px;}
.x1b{left:108.037487px;}
.x5{left:121.920000px;}
.x1c{left:135.074987px;}
.x25{left:137.701500px;}
.xcc{left:139.707000px;}
.x23{left:142.507500px;}
.x35{left:145.587000px;}
.xe0{left:147.073500px;}
.x24{left:149.253000px;}
.x95{left:151.695000px;}
.x27{left:154.084500px;}
.x47{left:156.789000px;}
.x26{left:160.111500px;}
.x13{left:162.450000px;}
.x36{left:165.652500px;}
.x55{left:167.376000px;}
.x5f{left:171.321000px;}
.x7d{left:173.617500px;}
.x5e{left:175.266000px;}
.x37{left:177.237000px;}
.x6a{left:178.372500px;}
.x56{left:179.620500px;}
.x5a{left:182.107500px;}
.xbd{left:183.126000px;}
.xf8{left:185.634000px;}
.x70{left:187.509000px;}
.x60{left:188.760000px;}
.x110{left:190.596000px;}
.xeb{left:191.860500px;}
.x6b{left:194.560500px;}
.x5b{left:199.173000px;}
.x39{left:201.034500px;}
.xdf{left:205.102500px;}
.xd2{left:206.656500px;}
.xec{left:207.921000px;}
.x17{left:212.325000px;}
.x96{left:213.331500px;}
.x71{left:216.570000px;}
.xe8{left:217.879500px;}
.x97{left:220.980000px;}
.x9a{left:223.572000px;}
.x1d{left:224.818500px;}
.x103{left:227.479500px;}
.xbf{left:228.859500px;}
.xc0{left:230.793000px;}
.x112{left:232.263000px;}
.x9b{left:235.329000px;}
.x111{left:237.084000px;}
.x9e{left:238.555500px;}
.xfc{left:239.820000px;}
.x11{left:241.620000px;}
.x7{left:244.230000px;}
.x10a{left:245.377500px;}
.xe3{left:246.390000px;}
.xc3{left:247.947000px;}
.x1e{left:249.427500px;}
.x6c{left:250.627500px;}
.x29{left:252.577500px;}
.x38{left:253.869000px;}
.x46{left:255.460500px;}
.xb0{left:256.819500px;}
.x72{left:257.958000px;}
.x7e{left:259.615500px;}
.xea{left:260.659500px;}
.xf5{left:262.474500px;}
.x14{left:263.745000px;}
.xd3{left:265.962000px;}
.xe2{left:268.384500px;}
.x77{left:269.782500px;}
.x3a{left:271.291500px;}
.xcd{left:273.592500px;}
.xd4{left:275.505000px;}
.x9f{left:277.866000px;}
.x9d{left:281.092500px;}
.xbb{left:282.891000px;}
.x9c{left:284.487000px;}
.xac{left:285.717000px;}
.x3b{left:287.271000px;}
.xb4{left:288.402000px;}
.x42{left:290.236500px;}
.xe7{left:294.663000px;}
.xe{left:297.119987px;}
.x102{left:298.440000px;}
.xbe{left:299.883000px;}
.x65{left:300.978000px;}
.x43{left:302.563500px;}
.xd{left:304.245000px;}
.xe4{left:307.114500px;}
.xf6{left:308.772000px;}
.xb5{left:310.749000px;}
.x113{left:311.878500px;}
.x6e{left:314.862000px;}
.xd5{left:315.973500px;}
.xcb{left:317.952000px;}
.x18{left:320.782500px;}
.x4f{left:323.187000px;}
.x4{left:324.525000px;}
.x85{left:326.526000px;}
.xb3{left:328.824000px;}
.x10e{left:330.411000px;}
.x4c{left:331.923000px;}
.x50{left:334.936500px;}
.xba{left:338.202000px;}
.xfb{left:339.874500px;}
.x6f{left:340.974000px;}
.xc1{left:343.179000px;}
.xde{left:344.902500px;}
.x91{left:347.784000px;}
.x48{left:350.340000px;}
.xb{left:351.524987px;}
.x10f{left:352.579500px;}
.x89{left:354.061500px;}
.xc9{left:355.686000px;}
.x8f{left:357.226500px;}
.xaf{left:359.131500px;}
.x1f{left:360.268500px;}
.xfe{left:361.729500px;}
.xff{left:364.159500px;}
.x61{left:365.662500px;}
.x2c{left:367.666500px;}
.xb6{left:369.049500px;}
.x7b{left:371.614500px;}
.x49{left:374.821500px;}
.x80{left:378.037500px;}
.x82{left:379.219500px;}
.xad{left:381.192000px;}
.x67{left:383.952000px;}
.x81{left:385.093500px;}
.x8a{left:386.307000px;}
.x87{left:389.094000px;}
.x57{left:390.130500px;}
.x88{left:391.917000px;}
.xcf{left:393.201000px;}
.xc6{left:394.905000px;}
.xe9{left:396.624000px;}
.xfa{left:397.642500px;}
.x7c{left:399.073500px;}
.x10c{left:400.572000px;}
.x62{left:407.650500px;}
.xf4{left:408.814500px;}
.xb1{left:410.514000px;}
.x2a{left:411.679500px;}
.xa0{left:412.842000px;}
.xc2{left:414.730500px;}
.xf0{left:418.989000px;}
.x3e{left:422.811000px;}
.x10d{left:424.194000px;}
.xc8{left:426.279000px;}
.xc4{left:427.446000px;}
.xa1{left:429.579000px;}
.x58{left:431.832000px;}
.xa6{left:433.081500px;}
.x20{left:434.803500px;}
.x3c{left:435.925500px;}
.x3f{left:438.147000px;}
.x6d{left:439.432500px;}
.x69{left:440.586000px;}
.xf1{left:441.826500px;}
.x66{left:443.478000px;}
.x19{left:444.570000px;}
.x8{left:446.444987px;}
.x63{left:447.735000px;}
.x21{left:449.517000px;}
.x3d{left:451.906500px;}
.x10b{left:453.553500px;}
.x28{left:455.265000px;}
.x64{left:456.453000px;}
.x8d{left:458.365500px;}
.x8b{left:460.011000px;}
.xfd{left:461.782500px;}
.x2f{left:463.119000px;}
.x2d{left:466.006500px;}
.x30{left:469.821000px;}
.x2e{left:472.710000px;}
.xa4{left:475.342500px;}
.xa3{left:478.737000px;}
.xa2{left:482.473500px;}
.xb8{left:483.921000px;}
.x94{left:487.636500px;}
.xd1{left:489.028500px;}
.xb7{left:490.293000px;}
.x7f{left:492.081000px;}
.x12{left:494.850000px;}
.xe1{left:496.350000px;}
.xa5{left:498.523500px;}
.x31{left:501.019500px;}
.x2b{left:502.168500px;}
.xed{left:508.651500px;}
.x8e{left:512.605500px;}
.x8c{left:514.249500px;}
.xdb{left:515.940000px;}
.x10{left:517.350000px;}
.x15{left:521.475000px;}
.x59{left:524.260500px;}
.x104{left:531.390000px;}
.xc5{left:534.976500px;}
.x32{left:536.014500px;}
.xa7{left:541.054500px;}
.x86{left:543.732000px;}
.x33{left:546.183000px;}
.xf2{left:547.456500px;}
.xae{left:548.571000px;}
.x22{left:551.028000px;}
.xee{left:552.628500px;}
.x90{left:555.034500px;}
.xc7{left:558.957000px;}
.x109{left:561.007500px;}
.xe5{left:565.339500px;}
.x6{left:567.975000px;}
.xd0{left:571.311000px;}
.xca{left:575.308500px;}
.xdc{left:576.693000px;}
.xb9{left:579.054000px;}
.x5c{left:580.068000px;}
.xe6{left:583.519500px;}
.x9{left:588.269987px;}
.xef{left:598.068000px;}
.xaa{left:599.244000px;}
.xdd{left:600.441000px;}
.x83{left:602.724000px;}
.xa8{left:603.771000px;}
.x92{left:604.962000px;}
.x1{left:606.254987px;}
.x108{left:609.367500px;}
.x68{left:612.870000px;}
.x73{left:614.242500px;}
.xf9{left:615.909000px;}
.x84{left:618.349500px;}
.x74{left:625.108500px;}
.xd9{left:626.914500px;}
.x98{left:628.674000px;}
.x100{left:630.736500px;}
.x99{left:639.463500px;}
.x107{left:642.114000px;}
.x5d{left:644.809500px;}
.xd8{left:647.200500px;}
.x105{left:650.359500px;}
.xbc{left:651.405000px;}
.xb2{left:657.030000px;}
.xab{left:659.191500px;}
.x75{left:670.002000px;}
.x4a{left:671.865000px;}
.xd7{left:676.234500px;}
.xf7{left:683.193000px;}
.x4e{left:689.950500px;}
.x4d{left:693.894000px;}
.x51{left:701.965500px;}
.x40{left:704.274000px;}
.x4b{left:706.602000px;}
.x101{left:709.174500px;}
.x79{left:713.620500px;}
.x53{left:715.293000px;}
.x41{left:716.359500px;}
.x78{left:717.564000px;}
.x2{left:724.424987px;}
.x93{left:725.785500px;}
.x52{left:727.909500px;}
.xce{left:728.938500px;}
.x7a{left:730.153500px;}
.xda{left:732.573000px;}
.x106{left:736.639500px;}
.xd6{left:738.621000px;}
.xa9{left:742.117500px;}
.xf3{left:746.461500px;}
.x34{left:749.587500px;}
.x44{left:752.386500px;}
.x54{left:753.733500px;}
.x45{left:763.594500px;}
.x76{left:770.256000px;}
.x114{left:776.148000px;}
@media print{
.v11{vertical-align:-21.936000pt;}
.v13{vertical-align:-13.285333pt;}
.v14{vertical-align:-10.773333pt;}
.vb{vertical-align:-9.002667pt;}
.v2{vertical-align:-7.968000pt;}
.v5{vertical-align:-6.714667pt;}
.va{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:2.656000pt;}
.v10{vertical-align:5.168000pt;}
.v7{vertical-align:8.149333pt;}
.vf{vertical-align:10.720000pt;}
.ve{vertical-align:11.973333pt;}
.vc{vertical-align:13.008000pt;}
.v6{vertical-align:16.117333pt;}
.v16{vertical-align:17.237333pt;}
.v1{vertical-align:18.666667pt;}
.vd{vertical-align:20.917333pt;}
.v8{vertical-align:21.936000pt;}
.v1c{vertical-align:23.909333pt;}
.v15{vertical-align:25.770667pt;}
.v4{vertical-align:27.973333pt;}
.v1a{vertical-align:28.869333pt;}
.v17{vertical-align:29.808000pt;}
.v1b{vertical-align:31.877333pt;}
.v18{vertical-align:34.272000pt;}
.v3{vertical-align:35.946667pt;}
.v19{vertical-align:36.842667pt;}
.v9{vertical-align:124.869333pt;}
.lse{letter-spacing:-0.634667pt;}
.ls16{letter-spacing:-0.570667pt;}
.ls14{letter-spacing:-0.560000pt;}
.ls1e{letter-spacing:-0.485333pt;}
.ls20{letter-spacing:-0.474667pt;}
.ls1d{letter-spacing:-0.442667pt;}
.ls5{letter-spacing:-0.410667pt;}
.lsf{letter-spacing:-0.250667pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.133333pt;}
.ls13{letter-spacing:-0.117333pt;}
.ls21{letter-spacing:-0.106667pt;}
.ls18{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000267pt;}
.lsc9{letter-spacing:0.000277pt;}
.ls2b{letter-spacing:0.000479pt;}
.ls5e{letter-spacing:0.000483pt;}
.ls74{letter-spacing:0.000501pt;}
.ls77{letter-spacing:0.000576pt;}
.ls59{letter-spacing:0.000882pt;}
.lsc3{letter-spacing:0.000996pt;}
.ls6c{letter-spacing:0.001069pt;}
.lsaa{letter-spacing:0.001253pt;}
.lsb8{letter-spacing:0.001316pt;}
.ls25{letter-spacing:0.001791pt;}
.ls29{letter-spacing:0.002079pt;}
.ls53{letter-spacing:0.002489pt;}
.ls50{letter-spacing:0.002509pt;}
.ls7c{letter-spacing:0.002512pt;}
.ls5b{letter-spacing:0.002537pt;}
.ls62{letter-spacing:0.002694pt;}
.ls57{letter-spacing:0.002761pt;}
.lsc0{letter-spacing:0.002820pt;}
.ls79{letter-spacing:0.002839pt;}
.ls4a{letter-spacing:0.002906pt;}
.ls2f{letter-spacing:0.002963pt;}
.lsbe{letter-spacing:0.003033pt;}
.lsa7{letter-spacing:0.003353pt;}
.ls7e{letter-spacing:0.003359pt;}
.ls69{letter-spacing:0.003590pt;}
.ls71{letter-spacing:0.003608pt;}
.ls4d{letter-spacing:0.003733pt;}
.lsc5{letter-spacing:0.003892pt;}
.ls6e{letter-spacing:0.004041pt;}
.ls67{letter-spacing:0.004312pt;}
.ls24{letter-spacing:0.004349pt;}
.ls6f{letter-spacing:0.004667pt;}
.ls98{letter-spacing:0.006216pt;}
.ls10{letter-spacing:0.037333pt;}
.ls1a{letter-spacing:0.149333pt;}
.ls60{letter-spacing:0.196932pt;}
.ls11{letter-spacing:0.240000pt;}
.ls1f{letter-spacing:0.314667pt;}
.ls1b{letter-spacing:0.341333pt;}
.ls7{letter-spacing:0.346667pt;}
.ls2{letter-spacing:0.490667pt;}
.ls8{letter-spacing:0.565333pt;}
.lsc{letter-spacing:0.602667pt;}
.ls4{letter-spacing:0.672000pt;}
.ls1{letter-spacing:0.714667pt;}
.ls0{letter-spacing:0.730667pt;}
.ls17{letter-spacing:1.173333pt;}
.ls15{letter-spacing:1.216000pt;}
.ls6d{letter-spacing:1.239423pt;}
.ls7d{letter-spacing:1.244757pt;}
.lsbd{letter-spacing:1.330028pt;}
.lsc7{letter-spacing:1.474820pt;}
.lsbf{letter-spacing:1.721458pt;}
.ls6a{letter-spacing:1.809151pt;}
.lsd7{letter-spacing:1.900465pt;}
.lsc1{letter-spacing:1.905799pt;}
.lsa6{letter-spacing:2.606231pt;}
.ls7f{letter-spacing:2.652911pt;}
.ls3c{letter-spacing:2.654181pt;}
.ls68{letter-spacing:2.654545pt;}
.lscb{letter-spacing:2.654978pt;}
.ls73{letter-spacing:2.656220pt;}
.lsc2{letter-spacing:2.656546pt;}
.lsc4{letter-spacing:2.657014pt;}
.ls30{letter-spacing:2.657069pt;}
.ls75{letter-spacing:2.658245pt;}
.ls3a{letter-spacing:2.659514pt;}
.ls6b{letter-spacing:2.659879pt;}
.ls27{letter-spacing:2.662402pt;}
.ls61{letter-spacing:2.663295pt;}
.ls37{letter-spacing:2.668629pt;}
.ls9a{letter-spacing:2.886649pt;}
.ls97{letter-spacing:2.891983pt;}
.lsae{letter-spacing:3.059246pt;}
.ls42{letter-spacing:3.060980pt;}
.lsa2{letter-spacing:3.066313pt;}
.ls31{letter-spacing:3.801225pt;}
.lscc{letter-spacing:3.803181pt;}
.ls87{letter-spacing:3.806559pt;}
.lsab{letter-spacing:3.895423pt;}
.lse2{letter-spacing:3.986028pt;}
.lsdf{letter-spacing:3.991361pt;}
.ls72{letter-spacing:4.002735pt;}
.ls85{letter-spacing:4.165258pt;}
.lsd3{letter-spacing:4.167686pt;}
.ls26{letter-spacing:4.170591pt;}
.lsd4{letter-spacing:4.173019pt;}
.ls94{letter-spacing:4.315150pt;}
.lsac{letter-spacing:4.462001pt;}
.ls49{letter-spacing:4.465151pt;}
.ls5f{letter-spacing:4.687356pt;}
.ls52{letter-spacing:4.692690pt;}
.ls99{letter-spacing:5.310545pt;}
.lsbb{letter-spacing:5.315879pt;}
.lsbc{letter-spacing:5.542649pt;}
.lse0{letter-spacing:5.547983pt;}
.lsba{letter-spacing:6.012540pt;}
.ls56{letter-spacing:6.373835pt;}
.ls70{letter-spacing:7.271307pt;}
.ls8e{letter-spacing:7.376058pt;}
.ls41{letter-spacing:7.381391pt;}
.ls5c{letter-spacing:8.373095pt;}
.ls54{letter-spacing:8.378428pt;}
.ls82{letter-spacing:8.850079pt;}
.ls5d{letter-spacing:8.855412pt;}
.lscf{letter-spacing:9.024479pt;}
.ls40{letter-spacing:11.108349pt;}
.lsce{letter-spacing:11.689645pt;}
.ls84{letter-spacing:11.795718pt;}
.ls91{letter-spacing:11.801144pt;}
.lsb4{letter-spacing:11.802933pt;}
.ls2e{letter-spacing:11.803145pt;}
.ls2d{letter-spacing:11.804745pt;}
.ls3b{letter-spacing:11.805573pt;}
.ls7b{letter-spacing:11.806400pt;}
.ls90{letter-spacing:11.806477pt;}
.ls92{letter-spacing:11.808267pt;}
.ls39{letter-spacing:11.808479pt;}
.ls33{letter-spacing:11.810079pt;}
.ls3d{letter-spacing:11.810906pt;}
.lsa0{letter-spacing:11.811733pt;}
.ls12{letter-spacing:12.560000pt;}
.ls83{letter-spacing:14.460653pt;}
.ls46{letter-spacing:14.460911pt;}
.ls2c{letter-spacing:14.462978pt;}
.lsd0{letter-spacing:14.465069pt;}
.ls63{letter-spacing:14.466245pt;}
.ls48{letter-spacing:14.467514pt;}
.ls35{letter-spacing:14.468312pt;}
.lsde{letter-spacing:14.754079pt;}
.lsc8{letter-spacing:14.754906pt;}
.lsb7{letter-spacing:14.755733pt;}
.lse1{letter-spacing:14.756984pt;}
.ls4c{letter-spacing:14.757812pt;}
.ls7a{letter-spacing:14.758297pt;}
.lsda{letter-spacing:14.759412pt;}
.ls9f{letter-spacing:14.759467pt;}
.lsc6{letter-spacing:14.760239pt;}
.lsb6{letter-spacing:14.761067pt;}
.lsb9{letter-spacing:14.763145pt;}
.lsa1{letter-spacing:14.771215pt;}
.ls47{letter-spacing:15.611181pt;}
.ls23{letter-spacing:15.940160pt;}
.ls8f{letter-spacing:15.973258pt;}
.ls96{letter-spacing:15.978591pt;}
.lsca{letter-spacing:16.239805pt;}
.ls3e{letter-spacing:16.273151pt;}
.ls55{letter-spacing:16.434509pt;}
.lsd9{letter-spacing:16.663132pt;}
.lsdb{letter-spacing:16.668465pt;}
.ls32{letter-spacing:17.064897pt;}
.ls43{letter-spacing:17.410245pt;}
.ls2a{letter-spacing:17.414402pt;}
.ls38{letter-spacing:17.415578pt;}
.ls3f{letter-spacing:17.416848pt;}
.ls4b{letter-spacing:17.417645pt;}
.ls4e{letter-spacing:17.419735pt;}
.ls9e{letter-spacing:17.420629pt;}
.lsb2{letter-spacing:17.425962pt;}
.ls9c{letter-spacing:17.693578pt;}
.lsdd{letter-spacing:17.746711pt;}
.lsb3{letter-spacing:17.818313pt;}
.ls44{letter-spacing:17.820540pt;}
.lsa3{letter-spacing:17.821913pt;}
.lsa5{letter-spacing:17.979168pt;}
.ls58{letter-spacing:18.141203pt;}
.lsd2{letter-spacing:18.178079pt;}
.lsaf{letter-spacing:18.181812pt;}
.lsd1{letter-spacing:18.183412pt;}
.ls9b{letter-spacing:18.331184pt;}
.lscd{letter-spacing:18.560515pt;}
.lsad{letter-spacing:18.922591pt;}
.ls88{letter-spacing:18.927925pt;}
.ls5a{letter-spacing:19.072483pt;}
.ls45{letter-spacing:19.188568pt;}
.ls36{letter-spacing:19.227818pt;}
.ls51{letter-spacing:20.181095pt;}
.ls65{letter-spacing:20.186428pt;}
.ls81{letter-spacing:20.348800pt;}
.lsb5{letter-spacing:20.550836pt;}
.lsb1{letter-spacing:20.769873pt;}
.ls8a{letter-spacing:20.862400pt;}
.ls8b{letter-spacing:20.864479pt;}
.ls8c{letter-spacing:20.866079pt;}
.lsd6{letter-spacing:21.706318pt;}
.lsa9{letter-spacing:21.970090pt;}
.lsa8{letter-spacing:21.988667pt;}
.ls4f{letter-spacing:22.137902pt;}
.ls80{letter-spacing:23.004911pt;}
.lsd5{letter-spacing:23.612465pt;}
.ls78{letter-spacing:25.170245pt;}
.ls22{letter-spacing:26.566933pt;}
.lsd8{letter-spacing:34.167361pt;}
.lsdc{letter-spacing:34.172695pt;}
.lsb0{letter-spacing:43.410090pt;}
.ls1c{letter-spacing:53.157333pt;}
.ls8d{letter-spacing:54.301573pt;}
.ls95{letter-spacing:54.302400pt;}
.ls9d{letter-spacing:56.951578pt;}
.ls93{letter-spacing:59.846649pt;}
.ls89{letter-spacing:62.450245pt;}
.ls86{letter-spacing:77.207578pt;}
.ls64{letter-spacing:79.872479pt;}
.ls66{letter-spacing:82.197812pt;}
.ls34{letter-spacing:86.405812pt;}
.lsa4{letter-spacing:141.765812pt;}
.ls76{letter-spacing:165.035145pt;}
.lsb{letter-spacing:915.242667pt;}
.lsa{letter-spacing:952.602667pt;}
.ws1a{word-spacing:-58.666667pt;}
.ws7d{word-spacing:-53.133867pt;}
.ws83{word-spacing:-42.359791pt;}
.ws59{word-spacing:-34.611401pt;}
.wsb5{word-spacing:-29.531803pt;}
.ws0{word-spacing:-28.928000pt;}
.ws6d{word-spacing:-28.118362pt;}
.ws8c{word-spacing:-26.556307pt;}
.ws7b{word-spacing:-25.791179pt;}
.wsfa{word-spacing:-25.774251pt;}
.wsf3{word-spacing:-25.768917pt;}
.wsef{word-spacing:-25.761193pt;}
.wsab{word-spacing:-25.759441pt;}
.wsa8{word-spacing:-25.751857pt;}
.ws5f{word-spacing:-25.738045pt;}
.ws6b{word-spacing:-23.505519pt;}
.wseb{word-spacing:-22.815682pt;}
.wsb6{word-spacing:-22.809448pt;}
.wsb4{word-spacing:-22.804759pt;}
.wsae{word-spacing:-22.762548pt;}
.ws7a{word-spacing:-21.757400pt;}
.wsb2{word-spacing:-19.881619pt;}
.wse8{word-spacing:-19.871481pt;}
.wsb9{word-spacing:-19.871082pt;}
.ws88{word-spacing:-19.866507pt;}
.wse9{word-spacing:-19.861088pt;}
.wsba{word-spacing:-19.859295pt;}
.wsf6{word-spacing:-19.854891pt;}
.wsa6{word-spacing:-19.840186pt;}
.wsc5{word-spacing:-19.834097pt;}
.wsbf{word-spacing:-19.833081pt;}
.wsf0{word-spacing:-19.832059pt;}
.wsf8{word-spacing:-19.828485pt;}
.wsc0{word-spacing:-19.827748pt;}
.wsf4{word-spacing:-19.827320pt;}
.ws7c{word-spacing:-19.439368pt;}
.wse7{word-spacing:-18.787310pt;}
.wsea{word-spacing:-18.781977pt;}
.ws14{word-spacing:-17.520000pt;}
.wsec{word-spacing:-16.835796pt;}
.ws41{word-spacing:-15.940160pt;}
.ws12{word-spacing:-15.669333pt;}
.ws1c{word-spacing:-15.184000pt;}
.ws5a{word-spacing:-14.760588pt;}
.ws16{word-spacing:-14.432000pt;}
.wsc6{word-spacing:-14.151850pt;}
.ws3{word-spacing:-13.989333pt;}
.ws6c{word-spacing:-13.658470pt;}
.ws6{word-spacing:-13.605333pt;}
.ws18{word-spacing:-13.408000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws4{word-spacing:-13.178667pt;}
.ws13{word-spacing:-13.141333pt;}
.ws17{word-spacing:-13.125333pt;}
.wsb{word-spacing:-13.098667pt;}
.ws1b{word-spacing:-13.008000pt;}
.ws1{word-spacing:-12.848000pt;}
.ws19{word-spacing:-12.816000pt;}
.ws1d{word-spacing:-12.784000pt;}
.ws15{word-spacing:-12.688000pt;}
.wsc{word-spacing:-12.624000pt;}
.wsa{word-spacing:-12.053333pt;}
.ws81{word-spacing:-12.028410pt;}
.ws11{word-spacing:-11.450667pt;}
.ws10{word-spacing:-10.885333pt;}
.wsf{word-spacing:-10.848000pt;}
.ws91{word-spacing:-10.715616pt;}
.wsf9{word-spacing:-10.710283pt;}
.ws67{word-spacing:-10.709331pt;}
.ws8f{word-spacing:-10.708297pt;}
.ws70{word-spacing:-10.705287pt;}
.ws69{word-spacing:-10.704479pt;}
.ws82{word-spacing:-10.701161pt;}
.ws71{word-spacing:-10.699954pt;}
.wse{word-spacing:-10.688000pt;}
.wsd{word-spacing:-10.597333pt;}
.ws7{word-spacing:-9.642667pt;}
.ws8{word-spacing:-9.610667pt;}
.ws5{word-spacing:-8.437333pt;}
.wsd8{word-spacing:-5.887232pt;}
.ws84{word-spacing:-5.652953pt;}
.ws8d{word-spacing:-2.964870pt;}
.ws64{word-spacing:-2.956616pt;}
.wsbc{word-spacing:-2.954537pt;}
.ws6a{word-spacing:-2.953710pt;}
.ws61{word-spacing:-2.951282pt;}
.wsb7{word-spacing:-0.042507pt;}
.ws79{word-spacing:-0.026567pt;}
.wsf5{word-spacing:-0.016528pt;}
.wsbe{word-spacing:-0.015407pt;}
.ws8e{word-spacing:-0.014579pt;}
.ws80{word-spacing:-0.013752pt;}
.wsb3{word-spacing:-0.004431pt;}
.ws9{word-spacing:0.000000pt;}
.wsbb{word-spacing:0.000902pt;}
.ws62{word-spacing:0.010627pt;}
.ws26{word-spacing:1.700284pt;}
.ws24{word-spacing:1.753418pt;}
.wsaa{word-spacing:5.276507pt;}
.wsf7{word-spacing:5.281840pt;}
.wsad{word-spacing:5.287767pt;}
.ws86{word-spacing:7.768171pt;}
.ws77{word-spacing:9.511116pt;}
.ws74{word-spacing:11.617782pt;}
.ws97{word-spacing:12.273923pt;}
.ws92{word-spacing:12.327057pt;}
.ws98{word-spacing:12.433325pt;}
.ws76{word-spacing:12.439116pt;}
.ws101{word-spacing:12.539593pt;}
.ws78{word-spacing:12.577782pt;}
.ws4d{word-spacing:12.911530pt;}
.wsa9{word-spacing:12.964663pt;}
.ws99{word-spacing:13.124065pt;}
.ws75{word-spacing:13.175116pt;}
.ws3c{word-spacing:13.230333pt;}
.wsa2{word-spacing:13.389734pt;}
.ws36{word-spacing:13.708538pt;}
.ws4e{word-spacing:13.814805pt;}
.ws9d{word-spacing:14.133609pt;}
.ws9e{word-spacing:14.186742pt;}
.ws9f{word-spacing:14.346144pt;}
.ws90{word-spacing:14.452412pt;}
.ws3b{word-spacing:14.505546pt;}
.wse0{word-spacing:14.558679pt;}
.ws102{word-spacing:14.611813pt;}
.ws4c{word-spacing:14.664947pt;}
.ws100{word-spacing:14.771215pt;}
.ws4b{word-spacing:14.824349pt;}
.ws9b{word-spacing:14.877483pt;}
.wsee{word-spacing:14.930617pt;}
.wsca{word-spacing:15.036884pt;}
.ws27{word-spacing:15.047549pt;}
.ws72{word-spacing:15.143152pt;}
.ws57{word-spacing:15.302554pt;}
.ws33{word-spacing:15.355687pt;}
.ws50{word-spacing:15.408821pt;}
.ws45{word-spacing:15.727625pt;}
.wsd2{word-spacing:15.780758pt;}
.ws73{word-spacing:15.887026pt;}
.ws3d{word-spacing:15.940160pt;}
.ws2b{word-spacing:16.046428pt;}
.wsd7{word-spacing:16.099562pt;}
.wsd6{word-spacing:16.205829pt;}
.wse2{word-spacing:16.258963pt;}
.ws3a{word-spacing:16.312097pt;}
.ws20{word-spacing:16.322765pt;}
.ws32{word-spacing:16.365231pt;}
.wsd5{word-spacing:16.471499pt;}
.wsc9{word-spacing:16.524633pt;}
.wsc3{word-spacing:16.684034pt;}
.wsd1{word-spacing:16.843436pt;}
.ws103{word-spacing:16.896570pt;}
.ws48{word-spacing:16.949703pt;}
.ws37{word-spacing:17.002837pt;}
.ws53{word-spacing:17.109105pt;}
.ws31{word-spacing:17.162239pt;}
.ws54{word-spacing:17.215373pt;}
.wsd0{word-spacing:17.268507pt;}
.ws6e{word-spacing:17.321641pt;}
.ws51{word-spacing:17.374774pt;}
.wsc8{word-spacing:17.427908pt;}
.ws39{word-spacing:17.481042pt;}
.ws66{word-spacing:17.587310pt;}
.ws1f{word-spacing:17.693578pt;}
.ws42{word-spacing:17.746711pt;}
.wsa0{word-spacing:17.906113pt;}
.ws55{word-spacing:18.012381pt;}
.ws56{word-spacing:18.065515pt;}
.wsb1{word-spacing:18.171782pt;}
.wsb0{word-spacing:18.224916pt;}
.wscb{word-spacing:18.278050pt;}
.ws4a{word-spacing:18.331184pt;}
.wscd{word-spacing:18.437452pt;}
.ws47{word-spacing:18.490586pt;}
.wsf1{word-spacing:18.543719pt;}
.wsce{word-spacing:18.649987pt;}
.ws46{word-spacing:18.756255pt;}
.ws8a{word-spacing:18.809389pt;}
.ws2c{word-spacing:18.862523pt;}
.ws6f{word-spacing:18.915657pt;}
.wsa1{word-spacing:18.968790pt;}
.ws2a{word-spacing:19.021924pt;}
.wse4{word-spacing:19.181326pt;}
.ws9c{word-spacing:19.234460pt;}
.ws34{word-spacing:19.287594pt;}
.wsaf{word-spacing:19.393861pt;}
.wsa3{word-spacing:19.500129pt;}
.wsd4{word-spacing:19.606397pt;}
.ws2e{word-spacing:19.659531pt;}
.wsa5{word-spacing:19.691411pt;}
.ws7f{word-spacing:19.712665pt;}
.ws7e{word-spacing:19.872066pt;}
.ws49{word-spacing:19.978334pt;}
.ws3f{word-spacing:20.084602pt;}
.wse3{word-spacing:20.137735pt;}
.ws5e{word-spacing:20.190869pt;}
.ws22{word-spacing:20.350271pt;}
.ws65{word-spacing:20.403405pt;}
.ws5b{word-spacing:20.456539pt;}
.wsc2{word-spacing:20.509673pt;}
.wsf2{word-spacing:20.615940pt;}
.ws29{word-spacing:20.722208pt;}
.ws95{word-spacing:20.775342pt;}
.ws5c{word-spacing:20.828476pt;}
.ws5d{word-spacing:20.881610pt;}
.wsd3{word-spacing:20.987877pt;}
.ws89{word-spacing:21.041011pt;}
.ws30{word-spacing:21.147279pt;}
.ws4f{word-spacing:21.200413pt;}
.ws93{word-spacing:21.253547pt;}
.ws9a{word-spacing:21.359814pt;}
.ws52{word-spacing:21.519216pt;}
.wse6{word-spacing:21.572350pt;}
.ws8b{word-spacing:21.625484pt;}
.wse5{word-spacing:21.678618pt;}
.ws35{word-spacing:21.784885pt;}
.wscf{word-spacing:21.891153pt;}
.wse1{word-spacing:22.103689pt;}
.ws63{word-spacing:22.156822pt;}
.wsdd{word-spacing:22.209956pt;}
.wsda{word-spacing:22.316224pt;}
.ws85{word-spacing:22.369358pt;}
.wsa7{word-spacing:22.528759pt;}
.wsdc{word-spacing:22.581893pt;}
.wsc7{word-spacing:22.635027pt;}
.ws38{word-spacing:22.794429pt;}
.wsed{word-spacing:22.953830pt;}
.ws58{word-spacing:23.006964pt;}
.ws68{word-spacing:23.060098pt;}
.wsdb{word-spacing:23.219500pt;}
.wsdf{word-spacing:23.378901pt;}
.ws94{word-spacing:23.432035pt;}
.wsde{word-spacing:23.644571pt;}
.ws3e{word-spacing:23.697705pt;}
.ws2d{word-spacing:23.750838pt;}
.ws87{word-spacing:24.122775pt;}
.wsfe{word-spacing:24.229043pt;}
.ws1e{word-spacing:24.254642pt;}
.ws40{word-spacing:24.600980pt;}
.wsfd{word-spacing:24.972917pt;}
.wscc{word-spacing:25.026051pt;}
.wsd9{word-spacing:25.397988pt;}
.wsbd{word-spacing:25.483002pt;}
.ws96{word-spacing:25.504256pt;}
.ws43{word-spacing:25.610524pt;}
.wsfb{word-spacing:25.769925pt;}
.wsfc{word-spacing:25.823059pt;}
.ws2f{word-spacing:25.929327pt;}
.wsc1{word-spacing:26.035595pt;}
.wsc4{word-spacing:26.194996pt;}
.ws25{word-spacing:26.566933pt;}
.ws104{word-spacing:27.735878pt;}
.wsa4{word-spacing:27.895280pt;}
.ws23{word-spacing:28.267217pt;}
.wsff{word-spacing:28.843598pt;}
.ws44{word-spacing:29.436162pt;}
.ws28{word-spacing:30.551973pt;}
.ws60{word-spacing:30.977044pt;}
.wsb8{word-spacing:45.588858pt;}
.ws21{word-spacing:49.148827pt;}
.wsac{word-spacing:55.790560pt;}
._28{margin-left:-26.673201pt;}
._38{margin-left:-15.940160pt;}
._3e{margin-left:-14.801276pt;}
._3b{margin-left:-11.780441pt;}
._18{margin-left:-10.613333pt;}
._1b{margin-left:-9.434667pt;}
._16{margin-left:-8.538667pt;}
._17{margin-left:-6.976000pt;}
._19{margin-left:-5.674667pt;}
._3a{margin-left:-4.515050pt;}
._15{margin-left:-3.610667pt;}
._1a{margin-left:-2.309333pt;}
._0{margin-left:-1.232000pt;}
._1{width:1.056000pt;}
._2{width:2.426667pt;}
._1c{width:3.344000pt;}
._8{width:4.400000pt;}
._7{width:5.456000pt;}
._4{width:6.805333pt;}
._1d{width:8.352000pt;}
._6{width:9.269333pt;}
._1e{width:10.613333pt;}
._11{width:12.202667pt;}
._40{width:13.361178pt;}
._5{width:14.453333pt;}
._12{width:15.792000pt;}
._3{width:17.424000pt;}
._13{width:18.597333pt;}
._1f{width:19.829333pt;}
._20{width:20.874667pt;}
._b{width:21.824000pt;}
._c{width:22.938667pt;}
._29{width:24.100644pt;}
._39{width:24.997494pt;}
._10{width:25.930667pt;}
._f{width:26.869333pt;}
._e{width:28.394667pt;}
._d{width:29.568000pt;}
._35{width:30.551973pt;}
._37{width:31.532960pt;}
._2c{width:33.150252pt;}
._3c{width:34.144475pt;}
._34{width:36.633811pt;}
._2f{width:38.315459pt;}
._9{width:39.834667pt;}
._a{width:41.797333pt;}
._27{width:43.310779pt;}
._3f{width:46.826661pt;}
._33{width:48.181536pt;}
._23{width:49.148827pt;}
._26{width:54.302812pt;}
._3d{width:55.843694pt;}
._14{width:59.034667pt;}
._2e{width:71.035591pt;}
._2b{width:71.996389pt;}
._36{width:134.923621pt;}
._25{width:422.511945pt;}
._21{width:755.034667pt;}
._24{width:798.165879pt;}
._2d{width:1318.452702pt;}
._30{width:1370.232752pt;}
._2a{width:1425.634777pt;}
._31{width:1662.840220pt;}
._22{width:1837.619611pt;}
._32{width:1857.168789pt;}
.fs11{font-size:26.566933pt;}
.fsf{font-size:31.880533pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:34.666667pt;}
.fse{font-size:37.193600pt;}
.fs3{font-size:37.333333pt;}
.fs10{font-size:42.507200pt;}
.fs6{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fsd{font-size:53.133867pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fsb{font-size:72.000000pt;}
.fsc{font-size:76.513067pt;}
.fsa{font-size:80.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:3.000000pt;}
.y4{bottom:6.000000pt;}
.y39{bottom:6.653333pt;}
.y10{bottom:6.666667pt;}
.yd{bottom:7.000000pt;}
.y3d{bottom:7.013333pt;}
.y45{bottom:7.026667pt;}
.y69{bottom:8.000000pt;}
.y56{bottom:8.653333pt;}
.y52{bottom:8.666667pt;}
.y5f{bottom:8.680000pt;}
.y58{bottom:8.693333pt;}
.y34{bottom:27.693333pt;}
.y27{bottom:28.000000pt;}
.y68{bottom:29.000000pt;}
.y33{bottom:48.693333pt;}
.y26{bottom:49.000000pt;}
.y67{bottom:50.000000pt;}
.y5{bottom:53.033333pt;}
.y2f{bottom:54.033333pt;}
.y3{bottom:67.033333pt;}
.y32{bottom:69.693333pt;}
.y25{bottom:70.000000pt;}
.y31{bottom:90.693333pt;}
.y24{bottom:91.000000pt;}
.y2c{bottom:100.700000pt;}
.y88{bottom:101.366667pt;}
.y2b{bottom:104.700000pt;}
.y23{bottom:111.706667pt;}
.yab{bottom:113.700000pt;}
.y2a{bottom:118.366667pt;}
.yc9{bottom:120.033333pt;}
.y29{bottom:122.366667pt;}
.y60{bottom:124.366667pt;}
.y22{bottom:132.706667pt;}
.y87{bottom:134.693333pt;}
.y28{bottom:135.026667pt;}
.yc8{bottom:138.026667pt;}
.y5e{bottom:139.693333pt;}
.yea{bottom:141.026667pt;}
.y159{bottom:150.230667pt;}
.y126{bottom:150.232000pt;}
.yaa{bottom:150.360000pt;}
.y21{bottom:153.706667pt;}
.ye9{bottom:157.400000pt;}
.y5d{bottom:161.066667pt;}
.y1f{bottom:163.066667pt;}
.y20{bottom:174.706667pt;}
.yc7{bottom:175.066667pt;}
.y5c{bottom:182.400000pt;}
.y139{bottom:190.081333pt;}
.y108{bottom:190.082667pt;}
.y2a1{bottom:192.042667pt;}
.ye8{bottom:192.400000pt;}
.ya9{bottom:193.066667pt;}
.y1d6{bottom:197.254667pt;}
.y86{bottom:202.066667pt;}
.y107{bottom:202.702667pt;}
.y2d6{bottom:202.721333pt;}
.y308{bottom:203.672000pt;}
.y5b{bottom:203.733333pt;}
.y20f{bottom:205.668000pt;}
.y106{bottom:206.452000pt;}
.y25c{bottom:207.205333pt;}
.ye7{bottom:208.733333pt;}
.y158{bottom:209.313333pt;}
.y289{bottom:211.422667pt;}
.y1f5{bottom:212.709333pt;}
.y125{bottom:213.992000pt;}
.y175{bottom:215.301333pt;}
.y2a0{bottom:215.953333pt;}
.y2be{bottom:217.350667pt;}
.y2e9{bottom:223.385333pt;}
.y5a{bottom:225.066667pt;}
.y307{bottom:227.582667pt;}
.y270{bottom:227.969333pt;}
.y1d5{bottom:229.236000pt;}
.y20e{bottom:229.578667pt;}
.yc6{bottom:229.733333pt;}
.y2d5{bottom:230.617333pt;}
.y25b{bottom:231.116000pt;}
.ya8{bottom:232.400000pt;}
.y288{bottom:235.333333pt;}
.y1f4{bottom:236.620000pt;}
.y157{bottom:237.396000pt;}
.y138{bottom:237.902667pt;}
.y85{bottom:238.400000pt;}
.y29f{bottom:239.864000pt;}
.y31c{bottom:240.004000pt;}
.y344{bottom:240.968000pt;}
.y59{bottom:246.400000pt;}
.y156{bottom:246.508000pt;}
.y2e8{bottom:247.296000pt;}
.y124{bottom:247.412000pt;}
.y1d3{bottom:249.922667pt;}
.y306{bottom:251.493333pt;}
.y105{bottom:252.452000pt;}
.y174{bottom:252.494667pt;}
.y26f{bottom:253.208000pt;}
.y20d{bottom:253.489333pt;}
.y2d4{bottom:254.528000pt;}
.y25a{bottom:255.026667pt;}
.y2d3{bottom:258.512000pt;}
.y287{bottom:259.242667pt;}
.ye6{bottom:259.733333pt;}
.y1f3{bottom:260.530667pt;}
.y137{bottom:261.813333pt;}
.y29e{bottom:263.774667pt;}
.y31b{bottom:263.914667pt;}
.y1d4{bottom:265.198667pt;}
.y57{bottom:267.733333pt;}
.ya7{bottom:269.106667pt;}
.y2e7{bottom:271.206667pt;}
.yc5{bottom:272.106667pt;}
.y2bd{bottom:274.429333pt;}
.y84{bottom:275.440000pt;}
.ye5{bottom:276.093333pt;}
.y172{bottom:276.405333pt;}
.y305{bottom:276.732000pt;}
.y155{bottom:277.057333pt;}
.y26e{bottom:277.118667pt;}
.y20c{bottom:277.400000pt;}
.y1d2{bottom:277.818667pt;}
.y259{bottom:278.937333pt;}
.y173{bottom:279.762667pt;}
.y104{bottom:281.672000pt;}
.y2d2{bottom:282.424000pt;}
.y286{bottom:283.153333pt;}
.y1f2{bottom:284.441333pt;}
.y123{bottom:284.817333pt;}
.y136{bottom:285.722667pt;}
.y2d1{bottom:286.408000pt;}
.ya6{bottom:287.106667pt;}
.y29d{bottom:287.684000pt;}
.y31a{bottom:287.825333pt;}
.y55{bottom:289.106667pt;}
.y83{bottom:293.440000pt;}
.y191{bottom:295.058667pt;}
.y192{bottom:296.520000pt;}
.y343{bottom:297.160000pt;}
.y1d1{bottom:297.180000pt;}
.y304{bottom:298.117333pt;}
.y2e6{bottom:299.101333pt;}
.y171{bottom:300.316000pt;}
.y26d{bottom:301.029333pt;}
.y2bc{bottom:302.324000pt;}
.y20b{bottom:302.638667pt;}
.y154{bottom:304.953333pt;}
.y285{bottom:307.064000pt;}
.yc4{bottom:307.106667pt;}
.y1f1{bottom:308.350667pt;}
.y122{bottom:308.728000pt;}
.y135{bottom:309.633333pt;}
.y54{bottom:310.440000pt;}
.y103{bottom:310.892000pt;}
.ye4{bottom:311.106667pt;}
.y82{bottom:311.440000pt;}
.y29c{bottom:311.594667pt;}
.y319{bottom:311.736000pt;}
.y342{bottom:313.100000pt;}
.y2d0{bottom:314.304000pt;}
.y303{bottom:322.028000pt;}
.ya5{bottom:323.440000pt;}
.y170{bottom:324.225333pt;}
.y1cf{bottom:324.470667pt;}
.y26c{bottom:324.938667pt;}
.y1d0{bottom:325.932000pt;}
.y20a{bottom:326.548000pt;}
.y2e5{bottom:326.997333pt;}
.ye3{bottom:327.426667pt;}
.y341{bottom:329.040000pt;}
.y81{bottom:329.106667pt;}
.y23b{bottom:329.280000pt;}
.y134{bottom:330.849333pt;}
.y190{bottom:331.226667pt;}
.y53{bottom:331.773333pt;}
.y1f0{bottom:332.261333pt;}
.y121{bottom:332.637333pt;}
.y133{bottom:333.544000pt;}
.y102{bottom:334.802667pt;}
.y29b{bottom:335.505333pt;}
.y318{bottom:335.645333pt;}
.y2bb{bottom:338.850667pt;}
.y223{bottom:341.753333pt;}
.y258{bottom:342.086667pt;}
.y152{bottom:342.146667pt;}
.y2cf{bottom:342.198667pt;}
.yc3{bottom:343.773333pt;}
.y284{bottom:344.257333pt;}
.y340{bottom:344.981333pt;}
.y153{bottom:345.505333pt;}
.y302{bottom:345.937333pt;}
.y80{bottom:347.106667pt;}
.y26b{bottom:348.849333pt;}
.y1ce{bottom:349.842667pt;}
.y209{bottom:350.458667pt;}
.y51{bottom:353.106667pt;}
.y23a{bottom:353.190667pt;}
.y1ef{bottom:356.172000pt;}
.y120{bottom:356.548000pt;}
.y16f{bottom:357.390667pt;}
.y29a{bottom:359.416000pt;}
.y1e{bottom:359.440000pt;}
.y317{bottom:359.556000pt;}
.ya4{bottom:360.106667pt;}
.y132{bottom:360.506667pt;}
.y33f{bottom:360.921333pt;}
.y16e{bottom:361.420000pt;}
.ye2{bottom:362.106667pt;}
.yc2{bottom:362.440000pt;}
.y2ba{bottom:362.761333pt;}
.y101{bottom:364.024000pt;}
.y7f{bottom:365.106667pt;}
.y222{bottom:365.662667pt;}
.y18f{bottom:365.933333pt;}
.y257{bottom:365.997333pt;}
.y151{bottom:366.057333pt;}
.y2e4{bottom:366.848000pt;}
.y131{bottom:368.569333pt;}
.y301{bottom:369.848000pt;}
.y2ce{bottom:370.094667pt;}
.y130{bottom:371.088000pt;}
.y283{bottom:372.153333pt;}
.y26a{bottom:372.760000pt;}
.y1cd{bottom:373.753333pt;}
.y1d{bottom:374.106667pt;}
.y208{bottom:374.369333pt;}
.y33e{bottom:376.861333pt;}
.y239{bottom:377.101333pt;}
.y12d{bottom:378.286667pt;}
.ye1{bottom:378.440000pt;}
.ya3{bottom:378.773333pt;}
.y1ee{bottom:380.082667pt;}
.yc1{bottom:380.106667pt;}
.y11f{bottom:380.458667pt;}
.y50{bottom:382.440000pt;}
.y7e{bottom:382.773333pt;}
.y16d{bottom:385.285333pt;}
.y12f{bottom:387.033333pt;}
.y299{bottom:387.310667pt;}
.y100{bottom:387.933333pt;}
.y16c{bottom:389.314667pt;}
.y12e{bottom:389.552000pt;}
.y221{bottom:389.573333pt;}
.y256{bottom:389.908000pt;}
.y150{bottom:389.968000pt;}
.y2e3{bottom:390.758667pt;}
.y269{bottom:391.090667pt;}
.y300{bottom:393.758667pt;}
.y18e{bottom:393.829333pt;}
.y2cd{bottom:395.281333pt;}
.y1c{bottom:395.800000pt;}
.y2b9{bottom:396.764000pt;}
.y33d{bottom:396.977333pt;}
.ya2{bottom:397.466667pt;}
.y1cc{bottom:397.662667pt;}
.yc0{bottom:398.800000pt;}
.y207{bottom:399.608000pt;}
.y282{bottom:400.048000pt;}
.y2cc{bottom:403.250667pt;}
.y1ed{bottom:403.992000pt;}
.y11e{bottom:404.369333pt;}
.y4f{bottom:406.133333pt;}
.yff{bottom:411.844000pt;}
.y33c{bottom:412.918667pt;}
.y255{bottom:413.817333pt;}
.y14e{bottom:413.878667pt;}
.y268{bottom:415.001333pt;}
.ye0{bottom:415.133333pt;}
.y18d{bottom:415.880000pt;}
.ya1{bottom:416.133333pt;}
.ybf{bottom:416.800000pt;}
.y14f{bottom:417.236000pt;}
.y1b{bottom:417.466667pt;}
.y2ff{bottom:417.669333pt;}
.y298{bottom:419.192000pt;}
.y1cb{bottom:421.573333pt;}
.y2e1{bottom:422.505333pt;}
.y316{bottom:422.705333pt;}
.y7d{bottom:423.466667pt;}
.y206{bottom:423.518667pt;}
.y329{bottom:423.844000pt;}
.y18b{bottom:424.992000pt;}
.y4e{bottom:426.133333pt;}
.y16a{bottom:426.509333pt;}
.y1ec{bottom:427.902667pt;}
.y281{bottom:427.944000pt;}
.y11d{bottom:428.278667pt;}
.y16b{bottom:429.866667pt;}
.y2b8{bottom:431.034667pt;}
.y18c{bottom:433.978667pt;}
.yfe{bottom:435.754667pt;}
.y254{bottom:437.728000pt;}
.y14d{bottom:437.788000pt;}
.ydf{bottom:438.800000pt;}
.y12c{bottom:438.806667pt;}
.y267{bottom:438.912000pt;}
.y238{bottom:440.250667pt;}
.y2cb{bottom:440.445333pt;}
.y2fe{bottom:442.908000pt;}
.y297{bottom:443.101333pt;}
.y4d{bottom:443.133333pt;}
.y1a{bottom:446.133333pt;}
.y2e0{bottom:446.417333pt;}
.y315{bottom:446.616000pt;}
.y205{bottom:447.428000pt;}
.y33b{bottom:447.698667pt;}
.y328{bottom:447.754667pt;}
.y7c{bottom:448.466667pt;}
.y2df{bottom:450.401333pt;}
.y169{bottom:450.420000pt;}
.y1eb{bottom:451.813333pt;}
.y11c{bottom:452.189333pt;}
.y220{bottom:452.741333pt;}
.ya0{bottom:453.466667pt;}
.y1ca{bottom:453.554667pt;}
.ybe{bottom:454.133333pt;}
.y189{bottom:455.689333pt;}
.y280{bottom:455.838667pt;}
.y18a{bottom:457.973333pt;}
.y4c{bottom:460.466667pt;}
.y19{bottom:460.800000pt;}
.y14c{bottom:461.698667pt;}
.y12b{bottom:462.717333pt;}
.y266{bottom:462.822667pt;}
.y253{bottom:462.966667pt;}
.y237{bottom:464.161333pt;}
.y2ca{bottom:464.356000pt;}
.yfd{bottom:464.974667pt;}
.y2b7{bottom:465.305333pt;}
.y296{bottom:467.012000pt;}
.y2fd{bottom:468.146667pt;}
.y314{bottom:470.526667pt;}
.y204{bottom:471.338667pt;}
.y327{bottom:471.665333pt;}
.ybd{bottom:472.133333pt;}
.yde{bottom:473.800000pt;}
.y2de{bottom:474.312000pt;}
.y7b{bottom:474.800000pt;}
.y1ea{bottom:475.724000pt;}
.y11b{bottom:476.100000pt;}
.y21f{bottom:476.652000pt;}
.y1c4{bottom:476.933333pt;}
.y2dd{bottom:478.297333pt;}
.y4b{bottom:479.800000pt;}
.y1c6{bottom:481.886667pt;}
.y18{bottom:482.133333pt;}
.y27f{bottom:483.734667pt;}
.y1c1{bottom:485.088000pt;}
.y14a{bottom:485.609333pt;}
.y12a{bottom:486.628000pt;}
.y252{bottom:486.877333pt;}
.y168{bottom:487.613333pt;}
.y265{bottom:488.061333pt;}
.y236{bottom:488.072000pt;}
.yfc{bottom:488.885333pt;}
.y14b{bottom:488.966667pt;}
.y1c5{bottom:490.082667pt;}
.y9f{bottom:490.133333pt;}
.y34b{bottom:490.566667pt;}
.y1b3{bottom:490.762667pt;}
.y295{bottom:490.922667pt;}
.y2fc{bottom:492.057333pt;}
.y1c3{bottom:492.061333pt;}
.y1b8{bottom:492.425333pt;}
.y1c2{bottom:493.921333pt;}
.y313{bottom:494.437333pt;}
.y1b2{bottom:494.748000pt;}
.y203{bottom:495.249333pt;}
.y326{bottom:495.576000pt;}
.y1c7{bottom:497.005333pt;}
.y1b1{bottom:498.732000pt;}
.y2b6{bottom:499.308000pt;}
.y1e9{bottom:499.633333pt;}
.y1ba{bottom:499.796000pt;}
.y11a{bottom:500.010667pt;}
.y7a{bottom:500.506667pt;}
.y21e{bottom:500.562667pt;}
.y2c9{bottom:501.549333pt;}
.y1b7{bottom:502.236000pt;}
.y1be{bottom:502.452000pt;}
.y1b0{bottom:502.717333pt;}
.y4a{bottom:503.506667pt;}
.y17{bottom:503.840000pt;}
.y2dc{bottom:506.192000pt;}
.y1c0{bottom:507.406667pt;}
.ybc{bottom:508.506667pt;}
.y9e{bottom:508.840000pt;}
.y27e{bottom:508.921333pt;}
.y149{bottom:509.520000pt;}
.y2e2{bottom:510.284000pt;}
.y129{bottom:510.537333pt;}
.y1bb{bottom:510.606667pt;}
.y251{bottom:510.788000pt;}
.y33a{bottom:510.849333pt;}
.y1aa{bottom:511.352000pt;}
.y264{bottom:511.970667pt;}
.yfb{bottom:512.796000pt;}
.y235{bottom:513.310667pt;}
.y188{bottom:514.306667pt;}
.y34a{bottom:514.477333pt;}
.y167{bottom:515.509333pt;}
.y1bf{bottom:515.601333pt;}
.y2fb{bottom:515.966667pt;}
.y27d{bottom:517.489333pt;}
.y1c8{bottom:517.580000pt;}
.y1bd{bottom:517.581333pt;}
.y49{bottom:518.173333pt;}
.y312{bottom:518.346667pt;}
.y202{bottom:519.160000pt;}
.y1bc{bottom:519.440000pt;}
.y325{bottom:519.485333pt;}
.ydd{bottom:523.173333pt;}
.y2b5{bottom:523.218667pt;}
.y1e8{bottom:523.544000pt;}
.y1c9{bottom:523.705333pt;}
.y1b9{bottom:523.706667pt;}
.y119{bottom:523.920000pt;}
.y294{bottom:525.460000pt;}
.y16{bottom:525.506667pt;}
.y21d{bottom:525.801333pt;}
.y79{bottom:526.506667pt;}
.y1af{bottom:526.628000pt;}
.y9d{bottom:527.506667pt;}
.y1b5{bottom:528.205333pt;}
.y2c8{bottom:529.445333pt;}
.y250{bottom:530.117333pt;}
.y1ae{bottom:530.613333pt;}
.y148{bottom:533.429333pt;}
.y1b6{bottom:533.656000pt;}
.y2db{bottom:534.088000pt;}
.y1ad{bottom:534.598667pt;}
.y24f{bottom:534.697333pt;}
.y339{bottom:534.758667pt;}
.y263{bottom:535.881333pt;}
.y234{bottom:537.221333pt;}
.y187{bottom:538.217333pt;}
.y349{bottom:538.388000pt;}
.y1ac{bottom:538.584000pt;}
.y48{bottom:539.840000pt;}
.y2fa{bottom:539.877333pt;}
.y1b4{bottom:540.098667pt;}
.yfa{bottom:542.016000pt;}
.y311{bottom:542.257333pt;}
.ydc{bottom:542.506667pt;}
.y201{bottom:543.069333pt;}
.y2f2{bottom:544.208000pt;}
.y9c{bottom:545.506667pt;}
.y2b4{bottom:547.129333pt;}
.y128{bottom:547.148000pt;}
.y1e7{bottom:547.454667pt;}
.y118{bottom:547.830667pt;}
.y21c{bottom:549.712000pt;}
.y1ab{bottom:550.538667pt;}
.ybb{bottom:551.506667pt;}
.y78{bottom:552.506667pt;}
.y15{bottom:554.173333pt;}
.y27c{bottom:554.684000pt;}
.y185{bottom:555.172000pt;}
.y147{bottom:557.340000pt;}
.y24e{bottom:558.608000pt;}
.y338{bottom:558.669333pt;}
.y262{bottom:559.792000pt;}
.y293{bottom:559.997333pt;}
.y233{bottom:561.130667pt;}
.y200{bottom:561.194667pt;}
.ydb{bottom:561.840000pt;}
.y2da{bottom:561.982667pt;}
.y348{bottom:562.297333pt;}
.y2f9{bottom:563.788000pt;}
.yf9{bottom:565.926667pt;}
.y310{bottom:566.168000pt;}
.y2f1{bottom:568.118667pt;}
.y14{bottom:568.840000pt;}
.y47{bottom:569.506667pt;}
.y2b3{bottom:571.038667pt;}
.y1e6{bottom:571.365333pt;}
.y117{bottom:571.741333pt;}
.y184{bottom:573.270667pt;}
.y21b{bottom:573.621333pt;}
.y352{bottom:574.608000pt;}
.y166{bottom:576.613333pt;}
.y24d{bottom:576.673333pt;}
.y261{bottom:578.122667pt;}
.y77{bottom:578.506667pt;}
.y27b{bottom:578.593333pt;}
.y24c{bottom:579.816000pt;}
.yda{bottom:581.173333pt;}
.y146{bottom:581.250667pt;}
.y337{bottom:582.580000pt;}
.y9b{bottom:582.840000pt;}
.y324{bottom:583.446667pt;}
.y292{bottom:583.906667pt;}
.y24a{bottom:586.029333pt;}
.y347{bottom:586.208000pt;}
.y232{bottom:586.369333pt;}
.y1a9{bottom:587.050667pt;}
.y2d9{bottom:587.169333pt;}
.y2f8{bottom:587.698667pt;}
.y183{bottom:588.546667pt;}
.yf8{bottom:589.837333pt;}
.y30f{bottom:590.078667pt;}
.y13{bottom:590.506667pt;}
.y2f0{bottom:592.028000pt;}
.y24b{bottom:592.472000pt;}
.y46{bottom:594.173333pt;}
.y2b2{bottom:594.949333pt;}
.y2d8{bottom:595.140000pt;}
.y1e5{bottom:595.274667pt;}
.y116{bottom:595.652000pt;}
.y351{bottom:598.518667pt;}
.y21a{bottom:598.860000pt;}
.yd9{bottom:600.506667pt;}
.y165{bottom:600.522667pt;}
.y9a{bottom:600.840000pt;}
.y260{bottom:602.033333pt;}
.y27a{bottom:602.504000pt;}
.y76{bottom:604.506667pt;}
.y336{bottom:606.490667pt;}
.y182{bottom:606.644000pt;}
.y323{bottom:607.357333pt;}
.y145{bottom:609.145333pt;}
.y249{bottom:609.940000pt;}
.y346{bottom:610.118667pt;}
.y231{bottom:610.280000pt;}
.y1a8{bottom:610.960000pt;}
.y44{bottom:611.506667pt;}
.y2f7{bottom:611.608000pt;}
.y12{bottom:612.200000pt;}
.yf7{bottom:613.746667pt;}
.y30e{bottom:613.988000pt;}
.y2ef{bottom:615.938667pt;}
.y291{bottom:618.444000pt;}
.y1e4{bottom:619.185333pt;}
.y115{bottom:619.561333pt;}
.y1ff{bottom:619.772000pt;}
.yd8{bottom:619.866667pt;}
.y181{bottom:621.921333pt;}
.y2b1{bottom:622.364000pt;}
.y219{bottom:622.770667pt;}
.y164{bottom:624.433333pt;}
.y25f{bottom:625.944000pt;}
.y279{bottom:626.414667pt;}
.y127{bottom:626.926667pt;}
.yba{bottom:627.200000pt;}
.y2d7{bottom:629.070667pt;}
.y335{bottom:630.400000pt;}
.y75{bottom:630.533333pt;}
.y322{bottom:631.268000pt;}
.y2af{bottom:631.476000pt;}
.y186{bottom:632.630667pt;}
.y350{bottom:633.056000pt;}
.y43{bottom:633.200000pt;}
.y248{bottom:633.850667pt;}
.y11{bottom:633.866667pt;}
.y230{bottom:634.190667pt;}
.y1a7{bottom:634.870667pt;}
.y2f6{bottom:635.518667pt;}
.y2b0{bottom:636.656000pt;}
.y144{bottom:637.041333pt;}
.y99{bottom:637.200000pt;}
.y30d{bottom:637.898667pt;}
.y2ee{bottom:639.849333pt;}
.y180{bottom:640.018667pt;}
.y2c7{bottom:642.354667pt;}
.yf6{bottom:642.968000pt;}
.y1e3{bottom:643.096000pt;}
.y114{bottom:643.472000pt;}
.y1fe{bottom:643.682667pt;}
.yb9{bottom:645.200000pt;}
.y218{bottom:646.681333pt;}
.y163{bottom:648.344000pt;}
.y25e{bottom:649.854667pt;}
.yd7{bottom:649.866667pt;}
.y278{bottom:650.325333pt;}
.y290{bottom:652.981333pt;}
.y30c{bottom:653.442667pt;}
.y345{bottom:653.754667pt;}
.y42{bottom:654.866667pt;}
.y321{bottom:655.178667pt;}
.y98{bottom:655.200000pt;}
.y17f{bottom:655.294667pt;}
.yf{bottom:655.533333pt;}
.y334{bottom:655.638667pt;}
.y74{bottom:656.533333pt;}
.y34f{bottom:656.966667pt;}
.y247{bottom:657.760000pt;}
.y1a6{bottom:658.781333pt;}
.y22f{bottom:659.429333pt;}
.y2ae{bottom:662.249333pt;}
.y2ed{bottom:663.760000pt;}
.yb8{bottom:663.866667pt;}
.y25d{bottom:665.397333pt;}
.y2c6{bottom:666.265333pt;}
.y1e2{bottom:667.006667pt;}
.y113{bottom:667.382667pt;}
.y1fd{bottom:667.593333pt;}
.y217{bottom:671.920000pt;}
.yf5{bottom:672.188000pt;}
.y162{bottom:672.254667pt;}
.y97{bottom:673.200000pt;}
.y17e{bottom:673.393333pt;}
.y41{bottom:676.533333pt;}
.ye{bottom:676.866667pt;}
.y143{bottom:676.892000pt;}
.y2f5{bottom:677.760000pt;}
.y320{bottom:679.088000pt;}
.y333{bottom:679.549333pt;}
.y246{bottom:681.670667pt;}
.yb7{bottom:681.866667pt;}
.y1a5{bottom:682.169333pt;}
.y73{bottom:682.533333pt;}
.y22e{bottom:683.340000pt;}
.y277{bottom:684.861333pt;}
.y1a4{bottom:686.750667pt;}
.y28f{bottom:687.518667pt;}
.y2ec{bottom:687.669333pt;}
.y17d{bottom:688.669333pt;}
.y2ad{bottom:690.145333pt;}
.y2c5{bottom:690.174667pt;}
.y1a0{bottom:690.894667pt;}
.y1e1{bottom:690.916000pt;}
.y96{bottom:691.200000pt;}
.y112{bottom:691.293333pt;}
.y34e{bottom:692.832000pt;}
.y19f{bottom:694.880000pt;}
.y216{bottom:695.830667pt;}
.yc{bottom:698.533333pt;}
.y31f{bottom:699.701333pt;}
.yb6{bottom:700.533333pt;}
.y142{bottom:700.802667pt;}
.yf4{bottom:701.408000pt;}
.y2f4{bottom:701.670667pt;}
.y1fc{bottom:702.130667pt;}
.y31e{bottom:702.998667pt;}
.y332{bottom:703.460000pt;}
.y19c{bottom:703.513333pt;}
.y244{bottom:705.581333pt;}
.y40{bottom:706.200000pt;}
.y17c{bottom:706.768000pt;}
.y22d{bottom:707.249333pt;}
.yd6{bottom:708.200000pt;}
.y72{bottom:708.533333pt;}
.y276{bottom:708.772000pt;}
.y161{bottom:709.448000pt;}
.y95{bottom:709.533333pt;}
.y1a2{bottom:709.733333pt;}
.y245{bottom:709.825333pt;}
.y2eb{bottom:711.580000pt;}
.y30b{bottom:712.757333pt;}
.y2ac{bottom:714.188000pt;}
.y111{bottom:715.202667pt;}
.y1a3{bottom:715.442667pt;}
.y28e{bottom:716.742667pt;}
.yb5{bottom:718.533333pt;}
.y19e{bottom:718.790667pt;}
.y215{bottom:719.740000pt;}
.y34d{bottom:720.728000pt;}
.y1df{bottom:721.336000pt;}
.y1a1{bottom:721.885333pt;}
.y19d{bottom:722.774667pt;}
.y1e0{bottom:722.797333pt;}
.y2aa{bottom:723.300000pt;}
.y141{bottom:724.712000pt;}
.y22c{bottom:725.581333pt;}
.y31d{bottom:726.909333pt;}
.yb{bottom:727.226667pt;}
.y2c4{bottom:727.369333pt;}
.y2ab{bottom:728.480000pt;}
.y331{bottom:728.698667pt;}
.y243{bottom:729.492000pt;}
.y3f{bottom:729.893333pt;}
.y2c3{bottom:730.726667pt;}
.y160{bottom:731.498667pt;}
.y71{bottom:734.560000pt;}
.y2ea{bottom:735.490667pt;}
.y15f{bottom:735.528000pt;}
.y1fb{bottom:736.668000pt;}
.y110{bottom:739.113333pt;}
.y17b{bottom:741.969333pt;}
.y275{bottom:743.309333pt;}
.y214{bottom:743.650667pt;}
.y3e{bottom:744.560000pt;}
.y15e{bottom:744.640000pt;}
.yd5{bottom:744.893333pt;}
.y28d{bottom:745.966667pt;}
.y19b{bottom:748.246667pt;}
.y140{bottom:748.622667pt;}
.y2a9{bottom:749.482667pt;}
.y22b{bottom:749.492000pt;}
.y2f3{bottom:750.820000pt;}
.y94{bottom:751.226667pt;}
.y330{bottom:752.609333pt;}
.y242{bottom:753.401333pt;}
.y2c2{bottom:755.264000pt;}
.yb4{bottom:755.560000pt;}
.ya{bottom:756.560000pt;}
.y2a7{bottom:758.594667pt;}
.y2c1{bottom:758.622667pt;}
.y70{bottom:760.573333pt;}
.y30a{bottom:760.577333pt;}
.y10f{bottom:763.024000pt;}
.y2a8{bottom:763.776000pt;}
.yd4{bottom:763.893333pt;}
.y17a{bottom:765.878667pt;}
.y3c{bottom:766.226667pt;}
.y213{bottom:767.561333pt;}
.y1de{bottom:770.617333pt;}
.y1fa{bottom:771.205333pt;}
.y199{bottom:771.553333pt;}
.y13f{bottom:772.533333pt;}
.yb3{bottom:773.560000pt;}
.y22a{bottom:774.730667pt;}
.y15d{bottom:775.189333pt;}
.y93{bottom:775.893333pt;}
.y32f{bottom:776.518667pt;}
.y241{bottom:777.312000pt;}
.y274{bottom:777.846667pt;}
.yd3{bottom:782.560000pt;}
.y2c0{bottom:783.160000pt;}
.y34c{bottom:784.488000pt;}
.y2bf{bottom:786.517333pt;}
.y6f{bottom:786.560000pt;}
.y10e{bottom:786.934667pt;}
.y3b{bottom:787.893333pt;}
.y309{bottom:788.473333pt;}
.y179{bottom:789.789333pt;}
.y212{bottom:791.472000pt;}
.yb2{bottom:791.560000pt;}
.y1dd{bottom:794.528000pt;}
.y2a6{bottom:795.121333pt;}
.y198{bottom:795.596000pt;}
.y13e{bottom:796.444000pt;}
.y229{bottom:798.640000pt;}
.y32e{bottom:800.429333pt;}
.y240{bottom:801.222667pt;}
.yd2{bottom:801.226667pt;}
.yf3{bottom:801.376000pt;}
.y273{bottom:801.757333pt;}
.y9{bottom:802.226667pt;}
.y15c{bottom:803.085333pt;}
.y197{bottom:804.708000pt;}
.yf2{bottom:805.125333pt;}
.y1f9{bottom:805.741333pt;}
.y92{bottom:808.560000pt;}
.y3a{bottom:809.560000pt;}
.y28c{bottom:809.726667pt;}
.y10d{bottom:810.844000pt;}
.y6e{bottom:812.560000pt;}
.y2a5{bottom:815.002667pt;}
.y211{bottom:815.381333pt;}
.y178{bottom:816.193333pt;}
.y2a4{bottom:819.032000pt;}
.y13d{bottom:820.353333pt;}
.y228{bottom:822.550667pt;}
.y1db{bottom:822.989333pt;}
.y32d{bottom:824.340000pt;}
.y23f{bottom:825.133333pt;}
.y272{bottom:825.666667pt;}
.y1da{bottom:826.273333pt;}
.yf0{bottom:827.278667pt;}
.y91{bottom:827.893333pt;}
.yb1{bottom:828.226667pt;}
.y196{bottom:830.225333pt;}
.y15b{bottom:830.981333pt;}
.y38{bottom:831.240000pt;}
.yf1{bottom:832.098667pt;}
.y210{bottom:833.508000pt;}
.y28b{bottom:833.637333pt;}
.y10c{bottom:834.754667pt;}
.y19a{bottom:836.202667pt;}
.y8{bottom:836.560000pt;}
.yd1{bottom:838.226667pt;}
.y6d{bottom:838.560000pt;}
.y195{bottom:839.336000pt;}
.y1f8{bottom:840.278667pt;}
.y13c{bottom:844.264000pt;}
.y227{bottom:846.461333pt;}
.y177{bottom:846.581333pt;}
.y7{bottom:847.266667pt;}
.y32c{bottom:848.250667pt;}
.y23e{bottom:849.042667pt;}
.y2a3{bottom:851.529333pt;}
.y1d9{bottom:854.168000pt;}
.y2a2{bottom:855.558667pt;}
.y1dc{bottom:855.629333pt;}
.y28a{bottom:857.548000pt;}
.y10b{bottom:858.665333pt;}
.y271{bottom:860.204000pt;}
.y6c{bottom:860.600000pt;}
.y37{bottom:860.933333pt;}
.y1f7{bottom:864.189333pt;}
.y90{bottom:866.600000pt;}
.yef{bottom:867.129333pt;}
.y13b{bottom:868.174667pt;}
.y194{bottom:870.034667pt;}
.y226{bottom:870.372000pt;}
.yb0{bottom:870.933333pt;}
.y32b{bottom:872.160000pt;}
.y23d{bottom:872.953333pt;}
.yd0{bottom:874.933333pt;}
.y1d8{bottom:878.780000pt;}
.y6b{bottom:881.266667pt;}
.y176{bottom:881.288000pt;}
.y1d7{bottom:882.064000pt;}
.y10a{bottom:882.576000pt;}
.y8f{bottom:885.933333pt;}
.y1f6{bottom:888.100000pt;}
.yee{bottom:891.038667pt;}
.y13a{bottom:892.085333pt;}
.y6a{bottom:892.600000pt;}
.y36{bottom:893.600000pt;}
.y225{bottom:894.281333pt;}
.y15a{bottom:895.442667pt;}
.y32a{bottom:896.070667pt;}
.y23c{bottom:896.864000pt;}
.y193{bottom:897.929333pt;}
.y65{bottom:900.266667pt;}
.y8e{bottom:905.266667pt;}
.y35{bottom:908.266667pt;}
.yaf{bottom:909.600000pt;}
.ycf{bottom:911.600000pt;}
.y224{bottom:912.406667pt;}
.yed{bottom:914.949333pt;}
.y109{bottom:915.994667pt;}
.y8d{bottom:924.600000pt;}
.yce{bottom:929.600000pt;}
.y30{bottom:929.933333pt;}
.y8c{bottom:943.933333pt;}
.yae{bottom:946.600000pt;}
.ycd{bottom:948.266667pt;}
.y6{bottom:958.293333pt;}
.y8b{bottom:963.293333pt;}
.ycc{bottom:966.293333pt;}
.y64{bottom:968.960000pt;}
.y2{bottom:973.626667pt;}
.y63{bottom:980.626667pt;}
.y8a{bottom:982.626667pt;}
.yad{bottom:983.293333pt;}
.ycb{bottom:984.960000pt;}
.yec{bottom:992.626667pt;}
.y62{bottom:993.960000pt;}
.y89{bottom:1001.960000pt;}
.yca{bottom:1002.626667pt;}
.yeb{bottom:1016.293333pt;}
.yac{bottom:1020.626667pt;}
.y61{bottom:1021.293333pt;}
.y2e{bottom:1040.626667pt;}
.y2d{bottom:1054.626667pt;}
.y1{bottom:1060.626667pt;}
.h38{height:0.000000pt;}
.h2d{height:2.125355pt;}
.h21{height:14.824448pt;}
.h2b{height:19.021924pt;}
.h37{height:19.925200pt;}
.h2{height:20.000000pt;}
.hc{height:20.033333pt;}
.h6{height:20.666667pt;}
.h10{height:20.686667pt;}
.h7{height:20.986667pt;}
.h5{height:21.000000pt;}
.h8{height:21.033333pt;}
.h1e{height:21.460707pt;}
.h3a{height:27.743867pt;}
.h36{height:27.895200pt;}
.h1f{height:30.286507pt;}
.h39{height:30.645200pt;}
.h13{height:31.828125pt;}
.h34{height:31.898533pt;}
.h3{height:32.765625pt;}
.h2f{height:32.933200pt;}
.ha{height:34.480469pt;}
.h1d{height:35.333920pt;}
.h2e{height:35.957200pt;}
.h33{height:35.962533pt;}
.h27{height:37.118900pt;}
.h3f{height:37.162533pt;}
.h22{height:39.850400pt;}
.h20{height:40.381840pt;}
.h25{height:43.396707pt;}
.h17{height:44.437500pt;}
.h32{height:47.175200pt;}
.h35{height:47.180533pt;}
.h12{height:47.742188pt;}
.h19{height:48.761719pt;}
.h30{height:48.812533pt;}
.h40{height:49.733200pt;}
.h26{height:49.831200pt;}
.h3b{height:49.836533pt;}
.h1c{height:50.477173pt;}
.h41{height:52.348533pt;}
.h3c{height:52.986400pt;}
.hb{height:53.046875pt;}
.h46{height:53.285067pt;}
.h43{height:53.665867pt;}
.h16{height:55.791667pt;}
.h24{height:55.967733pt;}
.h2a{height:56.143867pt;}
.h42{height:56.826400pt;}
.h44{height:58.170400pt;}
.h31{height:58.175733pt;}
.h1{height:58.351562pt;}
.h11{height:60.070312pt;}
.h3d{height:62.967200pt;}
.hd{height:63.656250pt;}
.h14{height:65.033333pt;}
.h3e{height:65.548533pt;}
.hf{height:70.992188pt;}
.h49{height:71.727733pt;}
.h4a{height:71.733067pt;}
.h1b{height:72.687413pt;}
.h45{height:74.122400pt;}
.h23{height:75.797067pt;}
.h29{height:76.293067pt;}
.h28{height:76.298400pt;}
.h48{height:76.687733pt;}
.h47{height:76.693067pt;}
.h15{height:81.914062pt;}
.h18{height:88.875000pt;}
.he{height:104.700000pt;}
.h2c{height:126.994688pt;}
.h4{height:131.062500pt;}
.h9{height:188.706667pt;}
.h1a{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.we{width:71.033333pt;}
.wf{width:89.366667pt;}
.w12{width:114.033333pt;}
.wb{width:141.400000pt;}
.w8{width:143.066667pt;}
.w5{width:197.066667pt;}
.w4{width:216.400000pt;}
.w3{width:216.440000pt;}
.wc{width:224.426667pt;}
.w10{width:228.440000pt;}
.w9{width:242.760000pt;}
.w11{width:257.773333pt;}
.wa{width:261.440000pt;}
.wd{width:281.440000pt;}
.w14{width:323.133333pt;}
.w15{width:326.133333pt;}
.w6{width:443.533333pt;}
.w13{width:500.906667pt;}
.w7{width:793.666643pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.w16{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.000000pt;}
.x3{left:72.033333pt;}
.x16{left:73.366667pt;}
.xf{left:76.366655pt;}
.xa{left:80.366655pt;}
.x1a{left:86.699988pt;}
.x1b{left:96.033322pt;}
.x5{left:108.373333pt;}
.x1c{left:120.066655pt;}
.x25{left:122.401333pt;}
.xcc{left:124.184000pt;}
.x23{left:126.673333pt;}
.x35{left:129.410667pt;}
.xe0{left:130.732000pt;}
.x24{left:132.669333pt;}
.x95{left:134.840000pt;}
.x27{left:136.964000pt;}
.x47{left:139.368000pt;}
.x26{left:142.321333pt;}
.x13{left:144.400000pt;}
.x36{left:147.246667pt;}
.x55{left:148.778667pt;}
.x5f{left:152.285333pt;}
.x7d{left:154.326667pt;}
.x5e{left:155.792000pt;}
.x37{left:157.544000pt;}
.x6a{left:158.553333pt;}
.x56{left:159.662667pt;}
.x5a{left:161.873333pt;}
.xbd{left:162.778667pt;}
.xf8{left:165.008000pt;}
.x70{left:166.674667pt;}
.x60{left:167.786667pt;}
.x110{left:169.418667pt;}
.xeb{left:170.542667pt;}
.x6b{left:172.942667pt;}
.x5b{left:177.042667pt;}
.x39{left:178.697333pt;}
.xdf{left:182.313333pt;}
.xd2{left:183.694667pt;}
.xec{left:184.818667pt;}
.x17{left:188.733333pt;}
.x96{left:189.628000pt;}
.x71{left:192.506667pt;}
.xe8{left:193.670667pt;}
.x97{left:196.426667pt;}
.x9a{left:198.730667pt;}
.x1d{left:199.838667pt;}
.x103{left:202.204000pt;}
.xbf{left:203.430667pt;}
.xc0{left:205.149333pt;}
.x112{left:206.456000pt;}
.x9b{left:209.181333pt;}
.x111{left:210.741333pt;}
.x9e{left:212.049333pt;}
.xfc{left:213.173333pt;}
.x11{left:214.773333pt;}
.x7{left:217.093333pt;}
.x10a{left:218.113333pt;}
.xe3{left:219.013333pt;}
.xc3{left:220.397333pt;}
.x1e{left:221.713333pt;}
.x6c{left:222.780000pt;}
.x29{left:224.513333pt;}
.x38{left:225.661333pt;}
.x46{left:227.076000pt;}
.xb0{left:228.284000pt;}
.x72{left:229.296000pt;}
.x7e{left:230.769333pt;}
.xea{left:231.697333pt;}
.xf5{left:233.310667pt;}
.x14{left:234.440000pt;}
.xd3{left:236.410667pt;}
.xe2{left:238.564000pt;}
.x77{left:239.806667pt;}
.x3a{left:241.148000pt;}
.xcd{left:243.193333pt;}
.xd4{left:244.893333pt;}
.x9f{left:246.992000pt;}
.x9d{left:249.860000pt;}
.xbb{left:251.458667pt;}
.x9c{left:252.877333pt;}
.xac{left:253.970667pt;}
.x3b{left:255.352000pt;}
.xb4{left:256.357333pt;}
.x42{left:257.988000pt;}
.xe7{left:261.922667pt;}
.xe{left:264.106655pt;}
.x102{left:265.280000pt;}
.xbe{left:266.562667pt;}
.x65{left:267.536000pt;}
.x43{left:268.945333pt;}
.xd{left:270.440000pt;}
.xe4{left:272.990667pt;}
.xf6{left:274.464000pt;}
.xb5{left:276.221333pt;}
.x113{left:277.225333pt;}
.x6e{left:279.877333pt;}
.xd5{left:280.865333pt;}
.xcb{left:282.624000pt;}
.x18{left:285.140000pt;}
.x4f{left:287.277333pt;}
.x4{left:288.466667pt;}
.x85{left:290.245333pt;}
.xb3{left:292.288000pt;}
.x10e{left:293.698667pt;}
.x4c{left:295.042667pt;}
.x50{left:297.721333pt;}
.xba{left:300.624000pt;}
.xfb{left:302.110667pt;}
.x6f{left:303.088000pt;}
.xc1{left:305.048000pt;}
.xde{left:306.580000pt;}
.x91{left:309.141333pt;}
.x48{left:311.413333pt;}
.xb{left:312.466655pt;}
.x10f{left:313.404000pt;}
.x89{left:314.721333pt;}
.xc9{left:316.165333pt;}
.x8f{left:317.534667pt;}
.xaf{left:319.228000pt;}
.x1f{left:320.238667pt;}
.xfe{left:321.537333pt;}
.xff{left:323.697333pt;}
.x61{left:325.033333pt;}
.x2c{left:326.814667pt;}
.xb6{left:328.044000pt;}
.x7b{left:330.324000pt;}
.x49{left:333.174667pt;}
.x80{left:336.033333pt;}
.x82{left:337.084000pt;}
.xad{left:338.837333pt;}
.x67{left:341.290667pt;}
.x81{left:342.305333pt;}
.x8a{left:343.384000pt;}
.x87{left:345.861333pt;}
.x57{left:346.782667pt;}
.x88{left:348.370667pt;}
.xcf{left:349.512000pt;}
.xc6{left:351.026667pt;}
.xe9{left:352.554667pt;}
.xfa{left:353.460000pt;}
.x7c{left:354.732000pt;}
.x10c{left:356.064000pt;}
.x62{left:362.356000pt;}
.xf4{left:363.390667pt;}
.xb1{left:364.901333pt;}
.x2a{left:365.937333pt;}
.xa0{left:366.970667pt;}
.xc2{left:368.649333pt;}
.xf0{left:372.434667pt;}
.x3e{left:375.832000pt;}
.x10d{left:377.061333pt;}
.xc8{left:378.914667pt;}
.xc4{left:379.952000pt;}
.xa1{left:381.848000pt;}
.x58{left:383.850667pt;}
.xa6{left:384.961333pt;}
.x20{left:386.492000pt;}
.x3c{left:387.489333pt;}
.x3f{left:389.464000pt;}
.x6d{left:390.606667pt;}
.x69{left:391.632000pt;}
.xf1{left:392.734667pt;}
.x66{left:394.202667pt;}
.x19{left:395.173333pt;}
.x8{left:396.839988pt;}
.x63{left:397.986667pt;}
.x21{left:399.570667pt;}
.x3d{left:401.694667pt;}
.x10b{left:403.158667pt;}
.x28{left:404.680000pt;}
.x64{left:405.736000pt;}
.x8d{left:407.436000pt;}
.x8b{left:408.898667pt;}
.xfd{left:410.473333pt;}
.x2f{left:411.661333pt;}
.x2d{left:414.228000pt;}
.x30{left:417.618667pt;}
.x2e{left:420.186667pt;}
.xa4{left:422.526667pt;}
.xa3{left:425.544000pt;}
.xa2{left:428.865333pt;}
.xb8{left:430.152000pt;}
.x94{left:433.454667pt;}
.xd1{left:434.692000pt;}
.xb7{left:435.816000pt;}
.x7f{left:437.405333pt;}
.x12{left:439.866667pt;}
.xe1{left:441.200000pt;}
.xa5{left:443.132000pt;}
.x31{left:445.350667pt;}
.x2b{left:446.372000pt;}
.xed{left:452.134667pt;}
.x8e{left:455.649333pt;}
.x8c{left:457.110667pt;}
.xdb{left:458.613333pt;}
.x10{left:459.866667pt;}
.x15{left:463.533333pt;}
.x59{left:466.009333pt;}
.x104{left:472.346667pt;}
.xc5{left:475.534667pt;}
.x32{left:476.457333pt;}
.xa7{left:480.937333pt;}
.x86{left:483.317333pt;}
.x33{left:485.496000pt;}
.xf2{left:486.628000pt;}
.xae{left:487.618667pt;}
.x22{left:489.802667pt;}
.xee{left:491.225333pt;}
.x90{left:493.364000pt;}
.xc7{left:496.850667pt;}
.x109{left:498.673333pt;}
.xe5{left:502.524000pt;}
.x6{left:504.866667pt;}
.xd0{left:507.832000pt;}
.xca{left:511.385333pt;}
.xdc{left:512.616000pt;}
.xb9{left:514.714667pt;}
.x5c{left:515.616000pt;}
.xe6{left:518.684000pt;}
.x9{left:522.906655pt;}
.xef{left:531.616000pt;}
.xaa{left:532.661333pt;}
.xdd{left:533.725333pt;}
.x83{left:535.754667pt;}
.xa8{left:536.685333pt;}
.x92{left:537.744000pt;}
.x1{left:538.893322pt;}
.x108{left:541.660000pt;}
.x68{left:544.773333pt;}
.x73{left:545.993333pt;}
.xf9{left:547.474667pt;}
.x84{left:549.644000pt;}
.x74{left:555.652000pt;}
.xd9{left:557.257333pt;}
.x98{left:558.821333pt;}
.x100{left:560.654667pt;}
.x99{left:568.412000pt;}
.x107{left:570.768000pt;}
.x5d{left:573.164000pt;}
.xd8{left:575.289333pt;}
.x105{left:578.097333pt;}
.xbc{left:579.026667pt;}
.xb2{left:584.026667pt;}
.xab{left:585.948000pt;}
.x75{left:595.557333pt;}
.x4a{left:597.213333pt;}
.xd7{left:601.097333pt;}
.xf7{left:607.282667pt;}
.x4e{left:613.289333pt;}
.x4d{left:616.794667pt;}
.x51{left:623.969333pt;}
.x40{left:626.021333pt;}
.x4b{left:628.090667pt;}
.x101{left:630.377333pt;}
.x79{left:634.329333pt;}
.x53{left:635.816000pt;}
.x41{left:636.764000pt;}
.x78{left:637.834667pt;}
.x2{left:643.933322pt;}
.x93{left:645.142667pt;}
.x52{left:647.030667pt;}
.xce{left:647.945333pt;}
.x7a{left:649.025333pt;}
.xda{left:651.176000pt;}
.x106{left:654.790667pt;}
.xd6{left:656.552000pt;}
.xa9{left:659.660000pt;}
.xf3{left:663.521333pt;}
.x34{left:666.300000pt;}
.x44{left:668.788000pt;}
.x54{left:669.985333pt;}
.x45{left:678.750667pt;}
.x76{left:684.672000pt;}
.x114{left:689.909333pt;}
}




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