
    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_a74d8bd106e272f4bd68c684.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_cc12eb41aaa7472c73552195.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_358dab033a7a713c448c5bc9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6e4554dd04908db7fe5332c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_202ece3f939eb654da76b613.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ddaba3f5adb2ab96dee0267b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9e66cb1798d1090427d49697.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_a299dd6bc46353c4f224686c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_a7e3d0a2ca7ffedad9b6b937.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_cd2312cc1ffbbfd7839fac9a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.125488;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_94ff2a8511f10f0505fc7ffb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_5aa24ac19561ea8c69fb1c57.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.722656;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_afdc2d29492c7187f16674ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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;}
.m8{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250254,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250254,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.259260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259260,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.289773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289773,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-67.246509px;}
.vb{vertical-align:-37.435104px;}
.v5{vertical-align:-27.360000px;}
.v6{vertical-align:-16.097256px;}
.va{vertical-align:-12.359547px;}
.v7{vertical-align:-10.493280px;}
.v1{vertical-align:-9.360000px;}
.v2{vertical-align:-5.760000px;}
.vc{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:2.880000px;}
.v3{vertical-align:5.760000px;}
.v9{vertical-align:18.985200px;}
.v4{vertical-align:27.360000px;}
.ls6b{letter-spacing:-2.160000px;}
.ls69{letter-spacing:-1.728000px;}
.ls32{letter-spacing:-1.656000px;}
.ls33{letter-spacing:-1.512000px;}
.ls1f{letter-spacing:-1.440000px;}
.ls31{letter-spacing:-1.224000px;}
.ls2d{letter-spacing:-1.008000px;}
.lsf{letter-spacing:-0.936000px;}
.ls30{letter-spacing:-0.864000px;}
.ls2c{letter-spacing:-0.792000px;}
.ls2b{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.504000px;}
.ls7d{letter-spacing:-0.432000px;}
.ls5f{letter-spacing:-0.402528px;}
.ls38{letter-spacing:-0.360000px;}
.ls60{letter-spacing:-0.359634px;}
.ls52{letter-spacing:-0.346237px;}
.ls65{letter-spacing:-0.345024px;}
.ls48{letter-spacing:-0.344999px;}
.ls44{letter-spacing:-0.344941px;}
.ls7e{letter-spacing:-0.337680px;}
.ls64{letter-spacing:-0.326479px;}
.ls77{letter-spacing:-0.289440px;}
.ls8{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.240480px;}
.lse{letter-spacing:-0.216000px;}
.ls66{letter-spacing:-0.215780px;}
.ls7{letter-spacing:-0.144000px;}
.ls71{letter-spacing:-0.115124px;}
.ls5e{letter-spacing:-0.115008px;}
.ls47{letter-spacing:-0.115000px;}
.ls43{letter-spacing:-0.114980px;}
.ls21{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.045360px;}
.ls16{letter-spacing:0.072000px;}
.ls45{letter-spacing:0.114980px;}
.ls3f{letter-spacing:0.115000px;}
.ls6{letter-spacing:0.120240px;}
.lsb{letter-spacing:0.144000px;}
.ls6c{letter-spacing:0.144720px;}
.ls6a{letter-spacing:0.152640px;}
.ls18{letter-spacing:0.181440px;}
.lsa{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.240480px;}
.ls26{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.360720px;}
.ls20{letter-spacing:0.385920px;}
.ls54{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.504000px;}
.ls79{letter-spacing:0.576000px;}
.ls1{letter-spacing:0.720000px;}
.ls80{letter-spacing:0.727200px;}
.ls7f{letter-spacing:0.792000px;}
.ls81{letter-spacing:0.864000px;}
.ls72{letter-spacing:0.901440px;}
.ls4f{letter-spacing:1.080000px;}
.ls73{letter-spacing:1.224000px;}
.ls15{letter-spacing:1.440000px;}
.ls37{letter-spacing:1.584000px;}
.ls55{letter-spacing:2.098791px;}
.ls1d{letter-spacing:2.160000px;}
.ls17{letter-spacing:2.880000px;}
.ls5c{letter-spacing:3.240000px;}
.ls40{letter-spacing:3.380306px;}
.ls36{letter-spacing:3.600000px;}
.ls5d{letter-spacing:3.960000px;}
.ls74{letter-spacing:4.320000px;}
.ls1c{letter-spacing:5.040000px;}
.ls25{letter-spacing:5.760000px;}
.ls1b{letter-spacing:6.480000px;}
.ls2a{letter-spacing:7.200000px;}
.ls35{letter-spacing:7.344000px;}
.ls24{letter-spacing:7.920000px;}
.ls34{letter-spacing:8.085600px;}
.ls23{letter-spacing:8.640000px;}
.ls1a{letter-spacing:9.360000px;}
.ls14{letter-spacing:10.080000px;}
.ls29{letter-spacing:10.800000px;}
.ls10{letter-spacing:10.944000px;}
.ls1e{letter-spacing:11.520000px;}
.ls76{letter-spacing:12.240000px;}
.lsc{letter-spacing:12.960000px;}
.ls28{letter-spacing:13.680000px;}
.ls27{letter-spacing:14.400000px;}
.ls13{letter-spacing:15.120000px;}
.ls19{letter-spacing:15.840000px;}
.ls78{letter-spacing:16.560000px;}
.ls3a{letter-spacing:17.280000px;}
.ls75{letter-spacing:18.000000px;}
.ls12{letter-spacing:18.720000px;}
.ls7c{letter-spacing:19.440000px;}
.ls2e{letter-spacing:20.160000px;}
.ls6e{letter-spacing:20.880000px;}
.ls6f{letter-spacing:21.600000px;}
.ls22{letter-spacing:22.320000px;}
.ls7a{letter-spacing:23.040000px;}
.ls7b{letter-spacing:23.760000px;}
.ls67{letter-spacing:26.258207px;}
.ls51{letter-spacing:26.277409px;}
.ls68{letter-spacing:26.279328px;}
.ls39{letter-spacing:30.384000px;}
.ls62{letter-spacing:53.708736px;}
.ls61{letter-spacing:58.206470px;}
.ls4b{letter-spacing:87.528344px;}
.ls57{letter-spacing:88.254184px;}
.ls63{letter-spacing:94.191552px;}
.ls6d{letter-spacing:122.549924px;}
.ls58{letter-spacing:125.728046px;}
.ls53{letter-spacing:146.597580px;}
.ls4a{letter-spacing:148.818029px;}
.ls46{letter-spacing:151.586280px;}
.ls3e{letter-spacing:169.221911px;}
.ls49{letter-spacing:178.796600px;}
.ls4e{letter-spacing:185.935680px;}
.ls3c{letter-spacing:199.372320px;}
.ls56{letter-spacing:223.173024px;}
.ls41{letter-spacing:311.131976px;}
.ls5b{letter-spacing:322.560000px;}
.ls5a{letter-spacing:343.440000px;}
.ls59{letter-spacing:349.920000px;}
.ls70{letter-spacing:391.020025px;}
.ls4c{letter-spacing:706.320000px;}
.ls4d{letter-spacing:730.800000px;}
.ls42{letter-spacing:751.680000px;}
.ls3d{letter-spacing:790.560000px;}
.ls3b{letter-spacing:829.440000px;}
.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;}
}
.wsc8{word-spacing:-391.020025px;}
.ws92{word-spacing:-225.562500px;}
.ws7c{word-spacing:-196.776950px;}
.ws89{word-spacing:-151.586280px;}
.ws8b{word-spacing:-148.818029px;}
.ws91{word-spacing:-121.767660px;}
.wsa0{word-spacing:-108.567552px;}
.wsa2{word-spacing:-84.470834px;}
.ws80{word-spacing:-78.343981px;}
.wsd9{word-spacing:-72.000000px;}
.wsb5{word-spacing:-58.206470px;}
.wsb6{word-spacing:-53.708736px;}
.wsd1{word-spacing:-39.528000px;}
.ws0{word-spacing:-30.300480px;}
.ws2{word-spacing:-30.060000px;}
.ws94{word-spacing:-26.277409px;}
.wsb8{word-spacing:-26.258207px;}
.ws6e{word-spacing:-19.584000px;}
.ws1{word-spacing:-19.440000px;}
.wsfa{word-spacing:-18.864000px;}
.wsf6{word-spacing:-18.792000px;}
.ws93{word-spacing:-18.720000px;}
.wse1{word-spacing:-18.576000px;}
.wsbe{word-spacing:-18.432000px;}
.wsb2{word-spacing:-18.288000px;}
.ws39{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.wse8{word-spacing:-18.072000px;}
.ws90{word-spacing:-18.045000px;}
.ws6{word-spacing:-18.000000px;}
.ws4b{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws6f{word-spacing:-17.640000px;}
.wse9{word-spacing:-17.568000px;}
.ws5{word-spacing:-17.496000px;}
.ws5c{word-spacing:-17.424000px;}
.ws4a{word-spacing:-17.280000px;}
.ws4c{word-spacing:-17.208000px;}
.ws5b{word-spacing:-17.136000px;}
.ws11{word-spacing:-17.064000px;}
.ws4d{word-spacing:-16.992000px;}
.ws6b{word-spacing:-16.776000px;}
.ws70{word-spacing:-16.560000px;}
.ws6d{word-spacing:-16.488000px;}
.ws6c{word-spacing:-16.344000px;}
.wsbd{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.240000px;}
.ws7a{word-spacing:-14.029951px;}
.ws76{word-spacing:-14.027609px;}
.ws3a{word-spacing:-12.445920px;}
.ws20{word-spacing:-12.060000px;}
.wsf0{word-spacing:-11.722320px;}
.wsa4{word-spacing:-11.333471px;}
.wsda{word-spacing:-10.612800px;}
.ws9a{word-spacing:-4.464000px;}
.ws99{word-spacing:-4.320000px;}
.wsdf{word-spacing:-4.032000px;}
.wscd{word-spacing:-3.744000px;}
.ws48{word-spacing:-3.600000px;}
.ws47{word-spacing:-3.312000px;}
.wsdd{word-spacing:-3.024000px;}
.ws2b{word-spacing:-2.880000px;}
.wsf2{word-spacing:-2.664000px;}
.ws2a{word-spacing:-2.592000px;}
.wse4{word-spacing:-2.376000px;}
.ws5f{word-spacing:-2.304000px;}
.ws15{word-spacing:-2.160000px;}
.wsec{word-spacing:-2.016000px;}
.ws22{word-spacing:-1.872000px;}
.ws64{word-spacing:-1.584000px;}
.ws5d{word-spacing:-1.440000px;}
.wsc3{word-spacing:-1.368000px;}
.ws5e{word-spacing:-1.152000px;}
.ws46{word-spacing:-0.864000px;}
.wsf9{word-spacing:-0.792000px;}
.ws34{word-spacing:-0.720000px;}
.wsc{word-spacing:-0.601200px;}
.wsdc{word-spacing:-0.576000px;}
.ws96{word-spacing:-0.504000px;}
.ws43{word-spacing:-0.432000px;}
.wsce{word-spacing:-0.385920px;}
.wscf{word-spacing:-0.288000px;}
.wsa{word-spacing:-0.240480px;}
.wsf{word-spacing:-0.216000px;}
.wsc5{word-spacing:-0.144720px;}
.ws31{word-spacing:-0.144000px;}
.wsb{word-spacing:-0.120240px;}
.ws8a{word-spacing:-0.115000px;}
.ws88{word-spacing:-0.114980px;}
.wsd7{word-spacing:-0.072000px;}
.ws9{word-spacing:0.000000px;}
.ws49{word-spacing:0.072000px;}
.ws8c{word-spacing:0.115000px;}
.wsb3{word-spacing:0.115008px;}
.wse{word-spacing:0.144000px;}
.wsb7{word-spacing:0.215780px;}
.ws24{word-spacing:0.216000px;}
.wsd{word-spacing:0.288000px;}
.wsdb{word-spacing:0.289440px;}
.wsb4{word-spacing:0.359634px;}
.ws54{word-spacing:0.504000px;}
.wsb9{word-spacing:0.576000px;}
.ws38{word-spacing:0.720000px;}
.wsfb{word-spacing:0.792000px;}
.wsd2{word-spacing:0.936000px;}
.ws60{word-spacing:1.008000px;}
.ws2e{word-spacing:1.296000px;}
.ws59{word-spacing:1.368000px;}
.ws1e{word-spacing:1.440000px;}
.ws58{word-spacing:1.656000px;}
.ws2f{word-spacing:1.728000px;}
.ws85{word-spacing:1.944000px;}
.ws44{word-spacing:2.016000px;}
.ws19{word-spacing:2.160000px;}
.ws98{word-spacing:2.304000px;}
.wsd3{word-spacing:2.376000px;}
.ws1a{word-spacing:2.448000px;}
.ws97{word-spacing:2.664000px;}
.ws2c{word-spacing:2.736000px;}
.wsf1{word-spacing:2.808000px;}
.ws2d{word-spacing:2.880000px;}
.ws81{word-spacing:3.096000px;}
.ws37{word-spacing:3.168000px;}
.ws4e{word-spacing:3.384000px;}
.ws72{word-spacing:3.456000px;}
.ws45{word-spacing:3.600000px;}
.ws4f{word-spacing:3.888000px;}
.wsbc{word-spacing:4.104000px;}
.ws50{word-spacing:4.176000px;}
.ws3b{word-spacing:4.320000px;}
.wsed{word-spacing:4.464000px;}
.wsd4{word-spacing:4.536000px;}
.ws3c{word-spacing:4.608000px;}
.ws40{word-spacing:4.896000px;}
.ws41{word-spacing:5.040000px;}
.ws71{word-spacing:5.328000px;}
.ws63{word-spacing:5.616000px;}
.wse0{word-spacing:5.688000px;}
.ws57{word-spacing:5.760000px;}
.ws61{word-spacing:5.832000px;}
.ws62{word-spacing:5.904000px;}
.wscb{word-spacing:5.976000px;}
.ws16{word-spacing:6.048000px;}
.wsc2{word-spacing:6.336000px;}
.ws1b{word-spacing:6.480000px;}
.ws3d{word-spacing:6.768000px;}
.wsf7{word-spacing:7.056000px;}
.ws69{word-spacing:7.200000px;}
.ws86{word-spacing:7.344000px;}
.ws87{word-spacing:7.488000px;}
.ws6a{word-spacing:7.776000px;}
.ws1c{word-spacing:7.920000px;}
.wsea{word-spacing:8.136000px;}
.ws1d{word-spacing:8.208000px;}
.ws53{word-spacing:8.496000px;}
.ws30{word-spacing:8.640000px;}
.ws35{word-spacing:8.856000px;}
.ws52{word-spacing:8.928000px;}
.ws42{word-spacing:9.360000px;}
.ws36{word-spacing:9.504000px;}
.wsbb{word-spacing:9.648000px;}
.ws25{word-spacing:9.864000px;}
.ws26{word-spacing:10.080000px;}
.wseb{word-spacing:10.368000px;}
.wse5{word-spacing:10.584000px;}
.ws28{word-spacing:10.728000px;}
.ws27{word-spacing:10.800000px;}
.wsc1{word-spacing:11.088000px;}
.wse3{word-spacing:11.376000px;}
.ws12{word-spacing:11.520000px;}
.wse2{word-spacing:11.736000px;}
.ws29{word-spacing:12.240000px;}
.ws56{word-spacing:12.528000px;}
.ws18{word-spacing:12.960000px;}
.ws17{word-spacing:13.248000px;}
.ws3f{word-spacing:13.536000px;}
.wsd6{word-spacing:13.608000px;}
.ws3e{word-spacing:13.680000px;}
.ws95{word-spacing:13.968000px;}
.wsd0{word-spacing:14.400000px;}
.wsf5{word-spacing:14.976000px;}
.ws23{word-spacing:15.120000px;}
.wsf3{word-spacing:15.264000px;}
.wsee{word-spacing:15.336000px;}
.wsef{word-spacing:15.408000px;}
.ws33{word-spacing:15.840000px;}
.wsae{word-spacing:16.061254px;}
.ws32{word-spacing:16.128000px;}
.wsf8{word-spacing:16.416000px;}
.ws1f{word-spacing:16.560000px;}
.wsde{word-spacing:16.848000px;}
.ws13{word-spacing:17.280000px;}
.ws14{word-spacing:17.568000px;}
.wsc4{word-spacing:18.000000px;}
.wsd8{word-spacing:18.288000px;}
.ws83{word-spacing:18.576000px;}
.ws21{word-spacing:18.720000px;}
.ws82{word-spacing:19.008000px;}
.ws84{word-spacing:19.440000px;}
.ws68{word-spacing:20.160000px;}
.wscc{word-spacing:20.448000px;}
.ws65{word-spacing:20.736000px;}
.ws67{word-spacing:20.880000px;}
.wsca{word-spacing:21.168000px;}
.ws55{word-spacing:21.600000px;}
.ws66{word-spacing:22.320000px;}
.ws51{word-spacing:22.608000px;}
.wsf4{word-spacing:22.896000px;}
.wse6{word-spacing:23.040000px;}
.wse7{word-spacing:23.328000px;}
.wsba{word-spacing:24.480000px;}
.wsd5{word-spacing:25.920000px;}
.wsc9{word-spacing:26.640000px;}
.wsc0{word-spacing:27.360000px;}
.wsbf{word-spacing:28.080000px;}
.ws5a{word-spacing:34.560000px;}
.ws7f{word-spacing:48.564331px;}
.ws8f{word-spacing:58.701289px;}
.ws9f{word-spacing:67.632770px;}
.wsa1{word-spacing:69.373399px;}
.ws8d{word-spacing:72.334748px;}
.wsa9{word-spacing:83.607712px;}
.wsb0{word-spacing:83.794722px;}
.ws74{word-spacing:99.113105px;}
.wsaf{word-spacing:105.473460px;}
.wsa8{word-spacing:106.034489px;}
.wsc6{word-spacing:109.183981px;}
.wsaa{word-spacing:110.680960px;}
.wsac{word-spacing:126.278784px;}
.ws79{word-spacing:126.292561px;}
.wsa3{word-spacing:133.532104px;}
.ws73{word-spacing:137.447570px;}
.wsb1{word-spacing:147.953428px;}
.ws8e{word-spacing:154.754962px;}
.ws78{word-spacing:164.633427px;}
.wsc7{word-spacing:198.704714px;}
.wsa6{word-spacing:206.634874px;}
.ws75{word-spacing:225.901992px;}
.ws7b{word-spacing:264.119581px;}
.ws7e{word-spacing:282.151519px;}
.wsa7{word-spacing:289.222118px;}
.ws9d{word-spacing:294.431981px;}
.ws9e{word-spacing:300.665414px;}
.wsad{word-spacing:307.968422px;}
.ws9c{word-spacing:313.563562px;}
.ws77{word-spacing:328.700610px;}
.ws7d{word-spacing:377.659271px;}
.wsa5{word-spacing:519.663648px;}
.wsab{word-spacing:523.401408px;}
.ws9b{word-spacing:565.724352px;}
._15{margin-left:-667.953909px;}
._16{margin-left:-462.385080px;}
._2a{margin-left:-427.867200px;}
._2f{margin-left:-347.400000px;}
._32{margin-left:-341.992800px;}
._25{margin-left:-5.544000px;}
._9{margin-left:-3.534192px;}
._f{margin-left:-2.452032px;}
._1{margin-left:-1.363968px;}
._0{width:1.034064px;}
._2{width:2.088000px;}
._34{width:3.168000px;}
._8{width:4.239936px;}
._5{width:6.259968px;}
._6{width:8.064000px;}
._7{width:9.549936px;}
._37{width:10.754064px;}
._3{width:12.024000px;}
._d{width:13.603968px;}
._b{width:14.851872px;}
._c{width:15.986160px;}
._36{width:19.224000px;}
._e{width:20.880000px;}
._a{width:22.203360px;}
._26{width:24.336000px;}
._29{width:33.501600px;}
._31{width:41.155684px;}
._27{width:42.357600px;}
._2e{width:46.526400px;}
._1a{width:55.887124px;}
._2d{width:75.729600px;}
._12{width:78.674819px;}
._35{width:83.520000px;}
._1c{width:85.729553px;}
._11{width:89.780188px;}
._28{width:105.746400px;}
._1b{width:106.962344px;}
._13{width:112.879098px;}
._10{width:114.355602px;}
._14{width:142.926716px;}
._1e{width:162.751974px;}
._1f{width:440.175869px;}
._17{width:451.584662px;}
._22{width:458.887670px;}
._2c{width:482.946858px;}
._21{width:485.002412px;}
._1d{width:496.366847px;}
._20{width:498.459917px;}
._24{width:503.703380px;}
._19{width:521.253520px;}
._23{width:535.703614px;}
._30{width:742.320000px;}
._33{width:772.560000px;}
._18{width:778.370252px;}
._2b{width:805.680000px;}
._4{width:846.343584px;}
.fc3{color:rgb(0,0,102);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:46.636800px;}
.fsd{font-size:46.639800px;}
.fsa{font-size:46.804200px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:57.490200px;}
.fs8{font-size:57.499800px;}
.fse{font-size:57.504000px;}
.fs11{font-size:57.562200px;}
.fsb{font-size:57.706200px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:71.910000px;}
.fs9{font-size:71.921400px;}
.fsf{font-size:71.926800px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:72.180000px;}
.fs2{font-size:77.760000px;}
.fs10{font-size:107.889600px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.183397px;}
.y7c{bottom:3.183778px;}
.y67{bottom:3.183928px;}
.y82{bottom:3.524400px;}
.ya6{bottom:3.930366px;}
.ybb{bottom:3.930606px;}
.yd2{bottom:3.932316px;}
.y9f{bottom:3.936336px;}
.ycb{bottom:3.937536px;}
.yb5{bottom:3.938586px;}
.y52{bottom:3.943204px;}
.yef{bottom:4.269301px;}
.y74{bottom:6.925215px;}
.y6b{bottom:6.925515px;}
.y5e{bottom:6.950765px;}
.y83{bottom:7.283700px;}
.y55{bottom:8.659538px;}
.yab{bottom:8.659661px;}
.ya8{bottom:8.660862px;}
.ybd{bottom:8.661308px;}
.ya3{bottom:8.661312px;}
.yd6{bottom:8.661911px;}
.ycf{bottom:8.662662px;}
.yd4{bottom:8.662962px;}
.yc0{bottom:8.663861px;}
.yb8{bottom:8.670769px;}
.yf0{bottom:9.000150px;}
.y61{bottom:11.657323px;}
.y77{bottom:11.660166px;}
.y7f{bottom:11.660316px;}
.y6e{bottom:11.660766px;}
.y9a{bottom:17.001328px;}
.yc6{bottom:17.001779px;}
.yb0{bottom:17.002559px;}
.yee{bottom:17.062500px;}
.y1{bottom:18.720000px;}
.yc{bottom:19.260000px;}
.y59{bottom:19.995964px;}
.y7b{bottom:19.996344px;}
.y66{bottom:19.996494px;}
.yb4{bottom:20.731494px;}
.y51{bottom:20.744715px;}
.y9e{bottom:20.747880px;}
.yca{bottom:20.748630px;}
.y73{bottom:23.729532px;}
.y6a{bottom:23.729832px;}
.y5d{bottom:23.755082px;}
.y113{bottom:23.760000px;}
.y162{bottom:24.840000px;}
.y40{bottom:25.020000px;}
.y110{bottom:25.380000px;}
.y53{bottom:25.468500px;}
.yaa{bottom:25.472550px;}
.ya2{bottom:25.474201px;}
.yd5{bottom:25.474800px;}
.yce{bottom:25.475551px;}
.ybf{bottom:25.476750px;}
.yb7{bottom:25.483658px;}
.y116{bottom:26.100000px;}
.y118{bottom:26.280000px;}
.y125{bottom:28.440000px;}
.y5f{bottom:28.468950px;}
.y76{bottom:28.471793px;}
.y7e{bottom:28.471943px;}
.y6d{bottom:28.472393px;}
.y122{bottom:29.160000px;}
.y13d{bottom:29.340000px;}
.y124{bottom:29.700000px;}
.y129{bottom:30.420000px;}
.yc5{bottom:32.218013px;}
.y9d{bottom:32.219928px;}
.yc9{bottom:32.220678px;}
.yb3{bottom:32.390430px;}
.y50{bottom:32.400853px;}
.y7a{bottom:35.211600px;}
.y65{bottom:35.211750px;}
.y99{bottom:35.307450px;}
.yc4{bottom:35.307900px;}
.yaf{bottom:35.448600px;}
.ya1{bottom:36.946526px;}
.ycd{bottom:36.947876px;}
.y54{bottom:37.117920px;}
.yb6{bottom:37.135800px;}
.y58{bottom:37.974450px;}
.y72{bottom:38.952604px;}
.y69{bottom:38.952904px;}
.yac{bottom:39.942000px;}
.yd7{bottom:39.944550px;}
.yc1{bottom:40.087200px;}
.y5c{bottom:41.723769px;}
.y9c{bottom:45.000192px;}
.yc8{bottom:45.000942px;}
.y4f{bottom:45.178050px;}
.yb2{bottom:45.185070px;}
.y75{bottom:46.308300px;}
.y7d{bottom:46.308450px;}
.y6c{bottom:46.308900px;}
.ya7{bottom:46.404450px;}
.ya0{bottom:46.404900px;}
.ycc{bottom:46.406250px;}
.yd3{bottom:46.406550px;}
.y60{bottom:46.449300px;}
.ybc{bottom:46.548750px;}
.y71{bottom:54.362550px;}
.y68{bottom:54.362850px;}
.y9b{bottom:54.459600px;}
.yc7{bottom:54.460350px;}
.y5b{bottom:54.503100px;}
.yb1{bottom:54.601350px;}
.ya4{bottom:55.301850px;}
.yd0{bottom:55.303650px;}
.yb9{bottom:55.445700px;}
.ya9{bottom:59.047650px;}
.ya5{bottom:59.047950px;}
.yd1{bottom:59.049900px;}
.yba{bottom:59.191950px;}
.ybe{bottom:59.192250px;}
.y3d{bottom:66.420000px;}
.y144{bottom:114.480000px;}
.ye8{bottom:116.460000px;}
.y96{bottom:121.860000px;}
.y186{bottom:125.100000px;}
.y64{bottom:134.565000px;}
.y33{bottom:144.900000px;}
.y13a{bottom:147.960000px;}
.ye7{bottom:157.860000px;}
.y195{bottom:161.100000px;}
.y143{bottom:161.280000px;}
.y4b{bottom:162.540000px;}
.y63{bottom:163.080000px;}
.y95{bottom:163.260000px;}
.y185{bottom:166.500000px;}
.y101{bottom:171.360000px;}
.y120{bottom:172.980000px;}
.y3a{bottom:184.140000px;}
.yeb{bottom:185.220000px;}
.y32{bottom:186.300000px;}
.y139{bottom:190.620000px;}
.y16c{bottom:194.940000px;}
.ye6{bottom:199.260000px;}
.y194{bottom:202.500000px;}
.y4a{bottom:203.940000px;}
.y94{bottom:204.660000px;}
.y142{bottom:208.080000px;}
.y100{bottom:212.760000px;}
.y11f{bottom:215.640000px;}
.y62{bottom:223.020000px;}
.y158{bottom:224.820000px;}
.y39{bottom:225.540000px;}
.y184{bottom:225.900000px;}
.yea{bottom:226.620000px;}
.y31{bottom:227.700000px;}
.y138{bottom:233.460000px;}
.y16b{bottom:236.340000px;}
.ye5{bottom:240.660000px;}
.y193{bottom:243.900000px;}
.y49{bottom:245.340000px;}
.y93{bottom:246.060000px;}
.yff{bottom:254.160000px;}
.y141{bottom:254.880000px;}
.y11e{bottom:258.120000px;}
.y57{bottom:260.040000px;}
.y183{bottom:267.300000px;}
.y38{bottom:267.660000px;}
.ye9{bottom:268.020000px;}
.y30{bottom:269.100000px;}
.y137{bottom:276.120000px;}
.y16a{bottom:277.740000px;}
.ye4{bottom:282.060000px;}
.y165{bottom:285.300000px;}
.y48{bottom:286.740000px;}
.y92{bottom:287.460000px;}
.y56{bottom:288.540000px;}
.yfe{bottom:295.560000px;}
.y11d{bottom:300.600000px;}
.y140{bottom:301.680000px;}
.y182{bottom:308.700000px;}
.y4c{bottom:309.060000px;}
.y37{bottom:309.420000px;}
.y2f{bottom:310.500000px;}
.y157{bottom:310.680000px;}
.y169{bottom:319.140000px;}
.ye3{bottom:323.460000px;}
.y164{bottom:326.700000px;}
.y47{bottom:328.140000px;}
.y91{bottom:328.860000px;}
.y175{bottom:331.380000px;}
.y136{bottom:332.640000px;}
.yfd{bottom:336.960000px;}
.y16e{bottom:341.280000px;}
.y11c{bottom:343.080000px;}
.y192{bottom:344.700000px;}
.y13f{bottom:348.480000px;}
.y4e{bottom:349.665000px;}
.y135{bottom:349.740000px;}
.y36{bottom:350.820000px;}
.y2e{bottom:351.900000px;}
.y156{bottom:352.080000px;}
.y168{bottom:361.980000px;}
.ye2{bottom:364.860000px;}
.y163{bottom:368.100000px;}
.y46{bottom:369.540000px;}
.y90{bottom:370.260000px;}
.y4d{bottom:375.300000px;}
.yfc{bottom:378.360000px;}
.y16d{bottom:382.680000px;}
.y11b{bottom:385.740000px;}
.y191{bottom:386.100000px;}
.y35{bottom:392.220000px;}
.y2d{bottom:393.300000px;}
.y155{bottom:393.480000px;}
.y13e{bottom:395.280000px;}
.y134{bottom:396.540000px;}
.y167{bottom:404.640000px;}
.ye1{bottom:406.260000px;}
.y161{bottom:409.500000px;}
.y45{bottom:410.940000px;}
.y8f{bottom:411.660000px;}
.yfb{bottom:419.760000px;}
.y190{bottom:427.500000px;}
.y11a{bottom:428.220000px;}
.y34{bottom:434.340000px;}
.y2c{bottom:434.700000px;}
.y154{bottom:434.880000px;}
.y166{bottom:441.720000px;}
.y13c{bottom:442.080000px;}
.y133{bottom:443.340000px;}
.y14d{bottom:446.220000px;}
.ye0{bottom:447.660000px;}
.y160{bottom:450.720000px;}
.y181{bottom:450.900000px;}
.y44{bottom:452.340000px;}
.y8e{bottom:453.060000px;}
.yfa{bottom:461.160000px;}
.y196{bottom:468.900000px;}
.y119{bottom:470.700000px;}
.y2b{bottom:476.100000px;}
.y153{bottom:476.280000px;}
.y18e{bottom:486.900000px;}
.y14c{bottom:487.620000px;}
.y174{bottom:488.880000px;}
.ydf{bottom:489.060000px;}
.y132{bottom:490.140000px;}
.y15f{bottom:492.120000px;}
.y43{bottom:493.740000px;}
.y8d{bottom:494.460000px;}
.yf9{bottom:502.560000px;}
.y180{bottom:510.300000px;}
.y117{bottom:513.180000px;}
.y2a{bottom:517.500000px;}
.y152{bottom:517.680000px;}
.y18d{bottom:528.300000px;}
.y13b{bottom:529.020000px;}
.yde{bottom:530.460000px;}
.y1b{bottom:531.900000px;}
.y15e{bottom:533.520000px;}
.y42{bottom:535.140000px;}
.y173{bottom:535.680000px;}
.y8c{bottom:535.860000px;}
.y131{bottom:536.940000px;}
.yf8{bottom:538.200000px;}
.y8{bottom:550.260000px;}
.y17f{bottom:551.700000px;}
.y115{bottom:555.840000px;}
.y29{bottom:558.900000px;}
.y151{bottom:563.580000px;}
.y18c{bottom:569.700000px;}
.y14b{bottom:570.420000px;}
.ydd{bottom:571.860000px;}
.y1a{bottom:573.300000px;}
.y15d{bottom:574.920000px;}
.y41{bottom:576.540000px;}
.y8b{bottom:577.260000px;}
.yf7{bottom:579.600000px;}
.y172{bottom:582.480000px;}
.y130{bottom:583.740000px;}
.y10d{bottom:585.360000px;}
.y150{bottom:594.900000px;}
.y114{bottom:598.320000px;}
.y28{bottom:600.300000px;}
.y17e{bottom:611.100000px;}
.y14a{bottom:611.820000px;}
.ydc{bottom:613.260000px;}
.y19{bottom:614.700000px;}
.yf6{bottom:616.860000px;}
.y15b{bottom:617.580000px;}
.y3f{bottom:617.940000px;}
.y8a{bottom:618.660000px;}
.y14f{bottom:625.860000px;}
.y10c{bottom:626.760000px;}
.y18b{bottom:629.100000px;}
.y171{bottom:629.280000px;}
.y12f{bottom:630.540000px;}
.y112{bottom:640.800000px;}
.y15c{bottom:641.160000px;}
.y27{bottom:641.700000px;}
.y17d{bottom:652.500000px;}
.y149{bottom:653.220000px;}
.ydb{bottom:654.660000px;}
.y18{bottom:656.100000px;}
.y14e{bottom:657.180000px;}
.y15a{bottom:659.700000px;}
.y3c{bottom:660.060000px;}
.y7{bottom:663.120000px;}
.y10b{bottom:668.160000px;}
.y18a{bottom:670.500000px;}
.y170{bottom:676.080000px;}
.y12e{bottom:677.340000px;}
.y26{bottom:683.100000px;}
.y10f{bottom:683.280000px;}
.y3e{bottom:685.080000px;}
.y148{bottom:694.620000px;}
.yda{bottom:696.060000px;}
.y17{bottom:697.500000px;}
.y89{bottom:701.460000px;}
.y111{bottom:707.220000px;}
.y10a{bottom:709.560000px;}
.y17c{bottom:711.900000px;}
.y12d{bottom:724.140000px;}
.y25{bottom:724.500000px;}
.y159{bottom:727.200000px;}
.y147{bottom:736.020000px;}
.yd9{bottom:737.460000px;}
.y16{bottom:738.900000px;}
.y88{bottom:742.860000px;}
.y16f{bottom:747.900000px;}
.y109{bottom:750.960000px;}
.y17b{bottom:753.300000px;}
.y24{bottom:765.900000px;}
.y10e{bottom:767.340000px;}
.y3b{bottom:768.600000px;}
.y12c{bottom:770.940000px;}
.y189{bottom:771.300000px;}
.y146{bottom:777.240000px;}
.y6{bottom:778.860000px;}
.y15{bottom:780.300000px;}
.y87{bottom:784.260000px;}
.y108{bottom:792.360000px;}
.y17a{bottom:794.700000px;}
.y23{bottom:807.300000px;}
.y188{bottom:812.700000px;}
.y12b{bottom:817.740000px;}
.y5{bottom:820.260000px;}
.y14{bottom:821.700000px;}
.y86{bottom:825.660000px;}
.y107{bottom:833.760000px;}
.y22{bottom:848.700000px;}
.y179{bottom:854.100000px;}
.yd8{bottom:855.900000px;}
.y13{bottom:863.100000px;}
.y12a{bottom:864.540000px;}
.y85{bottom:867.060000px;}
.y106{bottom:875.160000px;}
.y4{bottom:879.660000px;}
.y21{bottom:890.100000px;}
.yc3{bottom:892.890000px;}
.y178{bottom:895.500000px;}
.y12{bottom:904.500000px;}
.y84{bottom:908.460000px;}
.y128{bottom:911.340000px;}
.y187{bottom:913.500000px;}
.y105{bottom:916.560000px;}
.yc2{bottom:918.540000px;}
.y20{bottom:931.500000px;}
.y81{bottom:945.240000px;}
.y11{bottom:945.900000px;}
.y177{bottom:954.900000px;}
.y3{bottom:955.092420px;}
.y80{bottom:957.420000px;}
.y104{bottom:957.960000px;}
.y127{bottom:958.140000px;}
.y1f{bottom:972.900000px;}
.yae{bottom:987.240000px;}
.y10{bottom:987.300000px;}
.y79{bottom:996.240000px;}
.y176{bottom:996.300000px;}
.y103{bottom:999.360000px;}
.y123{bottom:1004.940000px;}
.yad{bottom:1012.860000px;}
.yf5{bottom:1013.040000px;}
.y1e{bottom:1014.300000px;}
.y2{bottom:1024.020000px;}
.y78{bottom:1024.740000px;}
.yf{bottom:1028.700000px;}
.y126{bottom:1031.940000px;}
.y18f{bottom:1037.700000px;}
.yf4{bottom:1039.590000px;}
.y102{bottom:1040.760000px;}
.yf3{bottom:1048.680000px;}
.y121{bottom:1051.740000px;}
.y1d{bottom:1055.700000px;}
.ye{bottom:1070.100000px;}
.y98{bottom:1081.365000px;}
.yf2{bottom:1081.515000px;}
.y145{bottom:1082.160000px;}
.y70{bottom:1085.865000px;}
.yf1{bottom:1090.620000px;}
.y1c{bottom:1097.100000px;}
.y97{bottom:1107.000000px;}
.y6f{bottom:1114.380000px;}
.yed{bottom:1123.290000px;}
.yec{bottom:1132.380000px;}
.yd{bottom:1138.500000px;}
.yb{bottom:1173.742050px;}
.ya{bottom:1191.742050px;}
.y9{bottom:1209.742500px;}
.h1b{height:30.073500px;}
.h2a{height:31.500000px;}
.h2d{height:31.501500px;}
.h24{height:32.383689px;}
.h15{height:32.404378px;}
.h1f{height:32.406463px;}
.h1c{height:32.520692px;}
.he{height:33.494766px;}
.h2f{height:33.518320px;}
.h2{height:35.640000px;}
.h25{height:39.927094px;}
.h10{height:39.945583px;}
.h16{height:39.952254px;}
.h20{height:39.955172px;}
.h2b{height:39.995611px;}
.h3b{height:41.221500px;}
.hd{height:41.398500px;}
.hc{height:41.400000px;}
.h6{height:41.689453px;}
.h2e{height:41.761500px;}
.h32{height:42.478500px;}
.h30{height:42.480000px;}
.h31{height:42.660000px;}
.h33{height:45.540000px;}
.h35{height:45.541500px;}
.h38{height:45.718500px;}
.h39{height:45.720000px;}
.h34{height:46.080000px;}
.h36{height:46.798500px;}
.h37{height:46.800000px;}
.h3c{height:47.988281px;}
.h12{height:49.929697px;}
.h18{height:49.937613px;}
.h22{height:49.941362px;}
.h11{height:49.964810px;}
.h17{height:49.972731px;}
.h21{height:49.976483px;}
.h23{height:49.979436px;}
.h29{height:49.980636px;}
.h5{height:49.992188px;}
.h3{height:50.027344px;}
.h3a{height:52.031250px;}
.h26{height:52.309547px;}
.h8{height:53.296875px;}
.hf{height:59.925000px;}
.h7{height:60.878320px;}
.h13{height:65.414224px;}
.h19{height:65.424594px;}
.h27{height:65.429506px;}
.h2c{height:65.496094px;}
.h1a{height:68.923500px;}
.h14{height:68.925000px;}
.h1e{height:73.425000px;}
.h4{height:81.490781px;}
.hb{height:82.801500px;}
.h1d{height:84.645034px;}
.h28{height:98.143713px;}
.h9{height:892.980000px;}
.ha{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w24{width:1.620000px;}
.w2{width:9.000000px;}
.w20{width:13.318500px;}
.wc{width:18.001500px;}
.w30{width:21.240000px;}
.w32{width:21.418500px;}
.w1f{width:77.220000px;}
.w5{width:79.740000px;}
.w6{width:82.978500px;}
.w22{width:84.960000px;}
.w36{width:84.961500px;}
.w37{width:93.420000px;}
.w2b{width:95.580000px;}
.w34{width:95.760000px;}
.w35{width:95.761500px;}
.w2a{width:106.380000px;}
.w2d{width:116.820000px;}
.w1d{width:116.998500px;}
.w2c{width:117.000000px;}
.w23{width:118.080000px;}
.wb{width:127.440000px;}
.w27{width:127.620000px;}
.w1e{width:127.621500px;}
.w21{width:132.660000px;}
.w2e{width:148.860000px;}
.w19{width:150.300000px;}
.w1b{width:150.301500px;}
.w1c{width:150.478500px;}
.w25{width:167.400000px;}
.w26{width:167.580000px;}
.w12{width:171.000000px;}
.w7{width:177.480000px;}
.w9{width:180.718500px;}
.w8{width:180.720000px;}
.wd{width:185.925000px;}
.w18{width:196.498500px;}
.w16{width:198.000000px;}
.we{width:205.500000px;}
.w17{width:211.498500px;}
.wa{width:212.760000px;}
.wf{width:225.000000px;}
.w10{width:234.001500px;}
.w11{width:235.500000px;}
.w31{width:276.300000px;}
.w2f{width:276.480000px;}
.w33{width:284.580000px;}
.w29{width:350.820000px;}
.w13{width:425.851500px;}
.w14{width:428.925000px;}
.w15{width:439.500000px;}
.w28{width:563.400000px;}
.w1a{width:601.560000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w3{width:1262.880000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x39{left:3.009150px;}
.xb{left:4.320000px;}
.x13{left:6.660000px;}
.xd{left:9.900000px;}
.xf{left:11.340000px;}
.x36{left:12.880156px;}
.x1e{left:17.382579px;}
.x32{left:23.902549px;}
.x75{left:29.700000px;}
.x99{left:32.400000px;}
.x46{left:34.025756px;}
.x9c{left:35.280000px;}
.x3b{left:36.759150px;}
.x27{left:38.336510px;}
.x93{left:43.020000px;}
.x23{left:44.051378px;}
.x42{left:46.222050px;}
.x4e{left:47.566297px;}
.x2e{left:50.861250px;}
.x3a{left:52.797150px;}
.x5c{left:57.174344px;}
.x21{left:60.064970px;}
.x37{left:62.671459px;}
.x2d{left:66.899250px;}
.x7{left:68.860500px;}
.x1d{left:69.959206px;}
.x1c{left:72.908100px;}
.x2a{left:76.784537px;}
.x29{left:79.734600px;}
.x22{left:85.182919px;}
.x70{left:86.197649px;}
.x6e{left:93.378533px;}
.x1f{left:95.075154px;}
.x26{left:97.734300px;}
.x4c{left:99.572576px;}
.x2b{left:104.673423px;}
.x5{left:108.180000px;}
.x5b{left:109.197881px;}
.x65{left:113.482350px;}
.x38{left:114.609150px;}
.x16{left:118.620000px;}
.x41{left:121.408050px;}
.x8{left:123.120000px;}
.x8b{left:124.560000px;}
.x28{left:125.618230px;}
.x2{left:127.260000px;}
.x9{left:129.240000px;}
.x6{left:131.220000px;}
.xa7{left:132.480000px;}
.x35{left:134.336398px;}
.x64{left:136.356831px;}
.x34{left:137.531100px;}
.x47{left:140.015550px;}
.x40{left:141.134998px;}
.xa9{left:143.100000px;}
.x3f{left:144.329700px;}
.x31{left:145.359300px;}
.x5a{left:149.133942px;}
.xa8{left:150.480000px;}
.x17{left:153.000000px;}
.x20{left:156.452400px;}
.x45{left:157.968600px;}
.x72{left:165.240000px;}
.x33{left:169.123085px;}
.x2c{left:175.547250px;}
.x3e{left:178.594227px;}
.xc{left:187.740000px;}
.x77{left:200.340000px;}
.x4{left:206.820000px;}
.x3{left:216.003420px;}
.x8d{left:223.380000px;}
.x54{left:227.967150px;}
.x7f{left:235.620000px;}
.x5e{left:237.615000px;}
.x61{left:239.340000px;}
.x58{left:244.740000px;}
.x4a{left:246.165000px;}
.x94{left:256.860000px;}
.x74{left:258.300000px;}
.x98{left:265.860000px;}
.x8e{left:267.840000px;}
.xe{left:270.720000px;}
.x10{left:282.060000px;}
.x4d{left:284.759250px;}
.x87{left:286.020000px;}
.x52{left:291.093107px;}
.x56{left:294.318900px;}
.x5d{left:297.879732px;}
.x50{left:303.081000px;}
.x4f{left:306.923400px;}
.x53{left:312.406050px;}
.x84{left:315.000000px;}
.x66{left:316.500300px;}
.x67{left:321.984900px;}
.x51{left:334.427222px;}
.x44{left:341.340000px;}
.x55{left:344.044509px;}
.x4b{left:345.159600px;}
.x30{left:346.590000px;}
.x59{left:347.704800px;}
.x3d{left:348.913500px;}
.x5f{left:350.851180px;}
.x6d{left:353.415000px;}
.x62{left:354.750000px;}
.x25{left:356.340000px;}
.x6b{left:360.090000px;}
.x8a{left:362.520000px;}
.x63{left:363.702271px;}
.x1b{left:366.240000px;}
.x7c{left:408.600000px;}
.x49{left:411.390000px;}
.x6a{left:421.740000px;}
.x9a{left:437.580000px;}
.x80{left:440.460000px;}
.x9b{left:446.580000px;}
.x11{left:448.200000px;}
.x76{left:449.460000px;}
.xa6{left:451.800000px;}
.x81{left:453.780000px;}
.x8f{left:469.800000px;}
.x78{left:519.480000px;}
.x85{left:533.160000px;}
.x18{left:537.840000px;}
.x19{left:544.140000px;}
.x24{left:552.060000px;}
.x95{left:554.580000px;}
.x6c{left:558.000000px;}
.x7d{left:559.080000px;}
.x2f{left:561.780000px;}
.x9d{left:563.580000px;}
.x6f{left:564.840000px;}
.x3c{left:571.500000px;}
.x48{left:576.720000px;}
.x43{left:582.840000px;}
.x82{left:586.440000px;}
.x90{left:595.440000px;}
.x69{left:602.460000px;}
.x88{left:621.000000px;}
.x12{left:628.920000px;}
.x9e{left:650.340000px;}
.x89{left:658.980000px;}
.x57{left:671.940000px;}
.x60{left:673.560000px;}
.x68{left:678.780000px;}
.x71{left:682.740000px;}
.x91{left:692.820000px;}
.x7e{left:709.380000px;}
.x92{left:712.440000px;}
.x9f{left:735.300000px;}
.xa0{left:744.300000px;}
.x86{left:750.780000px;}
.x1a{left:766.980000px;}
.x1{left:775.980000px;}
.x83{left:789.480000px;}
.x14{left:809.640000px;}
.x96{left:830.880000px;}
.x97{left:852.300000px;}
.x79{left:859.860000px;}
.xa1{left:861.300000px;}
.xa2{left:947.880000px;}
.xa3{left:956.880000px;}
.x7a{left:1010.160000px;}
.x8c{left:1015.740000px;}
.x15{left:1022.400000px;}
.x7b{left:1033.740000px;}
.xa4{left:1043.460000px;}
.xa5{left:1052.460000px;}
.x73{left:1136.880000px;}
.xa{left:1145.880000px;}
@media print{
.v8{vertical-align:-59.774675pt;}
.vb{vertical-align:-33.275648pt;}
.v5{vertical-align:-24.320000pt;}
.v6{vertical-align:-14.308672pt;}
.va{vertical-align:-10.986264pt;}
.v7{vertical-align:-9.327360pt;}
.v1{vertical-align:-8.320000pt;}
.v2{vertical-align:-5.120000pt;}
.vc{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:2.560000pt;}
.v3{vertical-align:5.120000pt;}
.v9{vertical-align:16.875733pt;}
.v4{vertical-align:24.320000pt;}
.ls6b{letter-spacing:-1.920000pt;}
.ls69{letter-spacing:-1.536000pt;}
.ls32{letter-spacing:-1.472000pt;}
.ls33{letter-spacing:-1.344000pt;}
.ls1f{letter-spacing:-1.280000pt;}
.ls31{letter-spacing:-1.088000pt;}
.ls2d{letter-spacing:-0.896000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls30{letter-spacing:-0.768000pt;}
.ls2c{letter-spacing:-0.704000pt;}
.ls2b{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls7d{letter-spacing:-0.384000pt;}
.ls5f{letter-spacing:-0.357803pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls60{letter-spacing:-0.319675pt;}
.ls52{letter-spacing:-0.307766pt;}
.ls65{letter-spacing:-0.306688pt;}
.ls48{letter-spacing:-0.306666pt;}
.ls44{letter-spacing:-0.306614pt;}
.ls7e{letter-spacing:-0.300160pt;}
.ls64{letter-spacing:-0.290203pt;}
.ls77{letter-spacing:-0.257280pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.213760pt;}
.lse{letter-spacing:-0.192000pt;}
.ls66{letter-spacing:-0.191805pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls71{letter-spacing:-0.102333pt;}
.ls5e{letter-spacing:-0.102229pt;}
.ls47{letter-spacing:-0.102222pt;}
.ls43{letter-spacing:-0.102205pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.040320pt;}
.ls16{letter-spacing:0.064000pt;}
.ls45{letter-spacing:0.102205pt;}
.ls3f{letter-spacing:0.102222pt;}
.ls6{letter-spacing:0.106880pt;}
.lsb{letter-spacing:0.128000pt;}
.ls6c{letter-spacing:0.128640pt;}
.ls6a{letter-spacing:0.135680pt;}
.ls18{letter-spacing:0.161280pt;}
.lsa{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.213760pt;}
.ls26{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.320640pt;}
.ls20{letter-spacing:0.343040pt;}
.ls54{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls79{letter-spacing:0.512000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls80{letter-spacing:0.646400pt;}
.ls7f{letter-spacing:0.704000pt;}
.ls81{letter-spacing:0.768000pt;}
.ls72{letter-spacing:0.801280pt;}
.ls4f{letter-spacing:0.960000pt;}
.ls73{letter-spacing:1.088000pt;}
.ls15{letter-spacing:1.280000pt;}
.ls37{letter-spacing:1.408000pt;}
.ls55{letter-spacing:1.865592pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls17{letter-spacing:2.560000pt;}
.ls5c{letter-spacing:2.880000pt;}
.ls40{letter-spacing:3.004716pt;}
.ls36{letter-spacing:3.200000pt;}
.ls5d{letter-spacing:3.520000pt;}
.ls74{letter-spacing:3.840000pt;}
.ls1c{letter-spacing:4.480000pt;}
.ls25{letter-spacing:5.120000pt;}
.ls1b{letter-spacing:5.760000pt;}
.ls2a{letter-spacing:6.400000pt;}
.ls35{letter-spacing:6.528000pt;}
.ls24{letter-spacing:7.040000pt;}
.ls34{letter-spacing:7.187200pt;}
.ls23{letter-spacing:7.680000pt;}
.ls1a{letter-spacing:8.320000pt;}
.ls14{letter-spacing:8.960000pt;}
.ls29{letter-spacing:9.600000pt;}
.ls10{letter-spacing:9.728000pt;}
.ls1e{letter-spacing:10.240000pt;}
.ls76{letter-spacing:10.880000pt;}
.lsc{letter-spacing:11.520000pt;}
.ls28{letter-spacing:12.160000pt;}
.ls27{letter-spacing:12.800000pt;}
.ls13{letter-spacing:13.440000pt;}
.ls19{letter-spacing:14.080000pt;}
.ls78{letter-spacing:14.720000pt;}
.ls3a{letter-spacing:15.360000pt;}
.ls75{letter-spacing:16.000000pt;}
.ls12{letter-spacing:16.640000pt;}
.ls7c{letter-spacing:17.280000pt;}
.ls2e{letter-spacing:17.920000pt;}
.ls6e{letter-spacing:18.560000pt;}
.ls6f{letter-spacing:19.200000pt;}
.ls22{letter-spacing:19.840000pt;}
.ls7a{letter-spacing:20.480000pt;}
.ls7b{letter-spacing:21.120000pt;}
.ls67{letter-spacing:23.340629pt;}
.ls51{letter-spacing:23.357697pt;}
.ls68{letter-spacing:23.359403pt;}
.ls39{letter-spacing:27.008000pt;}
.ls62{letter-spacing:47.741099pt;}
.ls61{letter-spacing:51.739085pt;}
.ls4b{letter-spacing:77.802972pt;}
.ls57{letter-spacing:78.448163pt;}
.ls63{letter-spacing:83.725824pt;}
.ls6d{letter-spacing:108.933266pt;}
.ls58{letter-spacing:111.758263pt;}
.ls53{letter-spacing:130.308960pt;}
.ls4a{letter-spacing:132.282692pt;}
.ls46{letter-spacing:134.743360pt;}
.ls3e{letter-spacing:150.419477pt;}
.ls49{letter-spacing:158.930311pt;}
.ls4e{letter-spacing:165.276160pt;}
.ls3c{letter-spacing:177.219840pt;}
.ls56{letter-spacing:198.376021pt;}
.ls41{letter-spacing:276.561757pt;}
.ls5b{letter-spacing:286.720000pt;}
.ls5a{letter-spacing:305.280000pt;}
.ls59{letter-spacing:311.040000pt;}
.ls70{letter-spacing:347.573355pt;}
.ls4c{letter-spacing:627.840000pt;}
.ls4d{letter-spacing:649.600000pt;}
.ls42{letter-spacing:668.160000pt;}
.ls3d{letter-spacing:702.720000pt;}
.ls3b{letter-spacing:737.280000pt;}
.wsc8{word-spacing:-347.573355pt;}
.ws92{word-spacing:-200.500000pt;}
.ws7c{word-spacing:-174.912845pt;}
.ws89{word-spacing:-134.743360pt;}
.ws8b{word-spacing:-132.282692pt;}
.ws91{word-spacing:-108.237920pt;}
.wsa0{word-spacing:-96.504491pt;}
.wsa2{word-spacing:-75.085186pt;}
.ws80{word-spacing:-69.639094pt;}
.wsd9{word-spacing:-64.000000pt;}
.wsb5{word-spacing:-51.739085pt;}
.wsb6{word-spacing:-47.741099pt;}
.wsd1{word-spacing:-35.136000pt;}
.ws0{word-spacing:-26.933760pt;}
.ws2{word-spacing:-26.720000pt;}
.ws94{word-spacing:-23.357697pt;}
.wsb8{word-spacing:-23.340629pt;}
.ws6e{word-spacing:-17.408000pt;}
.ws1{word-spacing:-17.280000pt;}
.wsfa{word-spacing:-16.768000pt;}
.wsf6{word-spacing:-16.704000pt;}
.ws93{word-spacing:-16.640000pt;}
.wse1{word-spacing:-16.512000pt;}
.wsbe{word-spacing:-16.384000pt;}
.wsb2{word-spacing:-16.256000pt;}
.ws39{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.wse8{word-spacing:-16.064000pt;}
.ws90{word-spacing:-16.040000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws4b{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws6f{word-spacing:-15.680000pt;}
.wse9{word-spacing:-15.616000pt;}
.ws5{word-spacing:-15.552000pt;}
.ws5c{word-spacing:-15.488000pt;}
.ws4a{word-spacing:-15.360000pt;}
.ws4c{word-spacing:-15.296000pt;}
.ws5b{word-spacing:-15.232000pt;}
.ws11{word-spacing:-15.168000pt;}
.ws4d{word-spacing:-15.104000pt;}
.ws6b{word-spacing:-14.912000pt;}
.ws70{word-spacing:-14.720000pt;}
.ws6d{word-spacing:-14.656000pt;}
.ws6c{word-spacing:-14.528000pt;}
.wsbd{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.546667pt;}
.ws7a{word-spacing:-12.471068pt;}
.ws76{word-spacing:-12.468986pt;}
.ws3a{word-spacing:-11.063040pt;}
.ws20{word-spacing:-10.720000pt;}
.wsf0{word-spacing:-10.419840pt;}
.wsa4{word-spacing:-10.074197pt;}
.wsda{word-spacing:-9.433600pt;}
.ws9a{word-spacing:-3.968000pt;}
.ws99{word-spacing:-3.840000pt;}
.wsdf{word-spacing:-3.584000pt;}
.wscd{word-spacing:-3.328000pt;}
.ws48{word-spacing:-3.200000pt;}
.ws47{word-spacing:-2.944000pt;}
.wsdd{word-spacing:-2.688000pt;}
.ws2b{word-spacing:-2.560000pt;}
.wsf2{word-spacing:-2.368000pt;}
.ws2a{word-spacing:-2.304000pt;}
.wse4{word-spacing:-2.112000pt;}
.ws5f{word-spacing:-2.048000pt;}
.ws15{word-spacing:-1.920000pt;}
.wsec{word-spacing:-1.792000pt;}
.ws22{word-spacing:-1.664000pt;}
.ws64{word-spacing:-1.408000pt;}
.ws5d{word-spacing:-1.280000pt;}
.wsc3{word-spacing:-1.216000pt;}
.ws5e{word-spacing:-1.024000pt;}
.ws46{word-spacing:-0.768000pt;}
.wsf9{word-spacing:-0.704000pt;}
.ws34{word-spacing:-0.640000pt;}
.wsc{word-spacing:-0.534400pt;}
.wsdc{word-spacing:-0.512000pt;}
.ws96{word-spacing:-0.448000pt;}
.ws43{word-spacing:-0.384000pt;}
.wsce{word-spacing:-0.343040pt;}
.wscf{word-spacing:-0.256000pt;}
.wsa{word-spacing:-0.213760pt;}
.wsf{word-spacing:-0.192000pt;}
.wsc5{word-spacing:-0.128640pt;}
.ws31{word-spacing:-0.128000pt;}
.wsb{word-spacing:-0.106880pt;}
.ws8a{word-spacing:-0.102222pt;}
.ws88{word-spacing:-0.102205pt;}
.wsd7{word-spacing:-0.064000pt;}
.ws9{word-spacing:0.000000pt;}
.ws49{word-spacing:0.064000pt;}
.ws8c{word-spacing:0.102222pt;}
.wsb3{word-spacing:0.102229pt;}
.wse{word-spacing:0.128000pt;}
.wsb7{word-spacing:0.191805pt;}
.ws24{word-spacing:0.192000pt;}
.wsd{word-spacing:0.256000pt;}
.wsdb{word-spacing:0.257280pt;}
.wsb4{word-spacing:0.319675pt;}
.ws54{word-spacing:0.448000pt;}
.wsb9{word-spacing:0.512000pt;}
.ws38{word-spacing:0.640000pt;}
.wsfb{word-spacing:0.704000pt;}
.wsd2{word-spacing:0.832000pt;}
.ws60{word-spacing:0.896000pt;}
.ws2e{word-spacing:1.152000pt;}
.ws59{word-spacing:1.216000pt;}
.ws1e{word-spacing:1.280000pt;}
.ws58{word-spacing:1.472000pt;}
.ws2f{word-spacing:1.536000pt;}
.ws85{word-spacing:1.728000pt;}
.ws44{word-spacing:1.792000pt;}
.ws19{word-spacing:1.920000pt;}
.ws98{word-spacing:2.048000pt;}
.wsd3{word-spacing:2.112000pt;}
.ws1a{word-spacing:2.176000pt;}
.ws97{word-spacing:2.368000pt;}
.ws2c{word-spacing:2.432000pt;}
.wsf1{word-spacing:2.496000pt;}
.ws2d{word-spacing:2.560000pt;}
.ws81{word-spacing:2.752000pt;}
.ws37{word-spacing:2.816000pt;}
.ws4e{word-spacing:3.008000pt;}
.ws72{word-spacing:3.072000pt;}
.ws45{word-spacing:3.200000pt;}
.ws4f{word-spacing:3.456000pt;}
.wsbc{word-spacing:3.648000pt;}
.ws50{word-spacing:3.712000pt;}
.ws3b{word-spacing:3.840000pt;}
.wsed{word-spacing:3.968000pt;}
.wsd4{word-spacing:4.032000pt;}
.ws3c{word-spacing:4.096000pt;}
.ws40{word-spacing:4.352000pt;}
.ws41{word-spacing:4.480000pt;}
.ws71{word-spacing:4.736000pt;}
.ws63{word-spacing:4.992000pt;}
.wse0{word-spacing:5.056000pt;}
.ws57{word-spacing:5.120000pt;}
.ws61{word-spacing:5.184000pt;}
.ws62{word-spacing:5.248000pt;}
.wscb{word-spacing:5.312000pt;}
.ws16{word-spacing:5.376000pt;}
.wsc2{word-spacing:5.632000pt;}
.ws1b{word-spacing:5.760000pt;}
.ws3d{word-spacing:6.016000pt;}
.wsf7{word-spacing:6.272000pt;}
.ws69{word-spacing:6.400000pt;}
.ws86{word-spacing:6.528000pt;}
.ws87{word-spacing:6.656000pt;}
.ws6a{word-spacing:6.912000pt;}
.ws1c{word-spacing:7.040000pt;}
.wsea{word-spacing:7.232000pt;}
.ws1d{word-spacing:7.296000pt;}
.ws53{word-spacing:7.552000pt;}
.ws30{word-spacing:7.680000pt;}
.ws35{word-spacing:7.872000pt;}
.ws52{word-spacing:7.936000pt;}
.ws42{word-spacing:8.320000pt;}
.ws36{word-spacing:8.448000pt;}
.wsbb{word-spacing:8.576000pt;}
.ws25{word-spacing:8.768000pt;}
.ws26{word-spacing:8.960000pt;}
.wseb{word-spacing:9.216000pt;}
.wse5{word-spacing:9.408000pt;}
.ws28{word-spacing:9.536000pt;}
.ws27{word-spacing:9.600000pt;}
.wsc1{word-spacing:9.856000pt;}
.wse3{word-spacing:10.112000pt;}
.ws12{word-spacing:10.240000pt;}
.wse2{word-spacing:10.432000pt;}
.ws29{word-spacing:10.880000pt;}
.ws56{word-spacing:11.136000pt;}
.ws18{word-spacing:11.520000pt;}
.ws17{word-spacing:11.776000pt;}
.ws3f{word-spacing:12.032000pt;}
.wsd6{word-spacing:12.096000pt;}
.ws3e{word-spacing:12.160000pt;}
.ws95{word-spacing:12.416000pt;}
.wsd0{word-spacing:12.800000pt;}
.wsf5{word-spacing:13.312000pt;}
.ws23{word-spacing:13.440000pt;}
.wsf3{word-spacing:13.568000pt;}
.wsee{word-spacing:13.632000pt;}
.wsef{word-spacing:13.696000pt;}
.ws33{word-spacing:14.080000pt;}
.wsae{word-spacing:14.276671pt;}
.ws32{word-spacing:14.336000pt;}
.wsf8{word-spacing:14.592000pt;}
.ws1f{word-spacing:14.720000pt;}
.wsde{word-spacing:14.976000pt;}
.ws13{word-spacing:15.360000pt;}
.ws14{word-spacing:15.616000pt;}
.wsc4{word-spacing:16.000000pt;}
.wsd8{word-spacing:16.256000pt;}
.ws83{word-spacing:16.512000pt;}
.ws21{word-spacing:16.640000pt;}
.ws82{word-spacing:16.896000pt;}
.ws84{word-spacing:17.280000pt;}
.ws68{word-spacing:17.920000pt;}
.wscc{word-spacing:18.176000pt;}
.ws65{word-spacing:18.432000pt;}
.ws67{word-spacing:18.560000pt;}
.wsca{word-spacing:18.816000pt;}
.ws55{word-spacing:19.200000pt;}
.ws66{word-spacing:19.840000pt;}
.ws51{word-spacing:20.096000pt;}
.wsf4{word-spacing:20.352000pt;}
.wse6{word-spacing:20.480000pt;}
.wse7{word-spacing:20.736000pt;}
.wsba{word-spacing:21.760000pt;}
.wsd5{word-spacing:23.040000pt;}
.wsc9{word-spacing:23.680000pt;}
.wsc0{word-spacing:24.320000pt;}
.wsbf{word-spacing:24.960000pt;}
.ws5a{word-spacing:30.720000pt;}
.ws7f{word-spacing:43.168294pt;}
.ws8f{word-spacing:52.178924pt;}
.ws9f{word-spacing:60.118018pt;}
.wsa1{word-spacing:61.665243pt;}
.ws8d{word-spacing:64.297554pt;}
.wsa9{word-spacing:74.317967pt;}
.wsb0{word-spacing:74.484197pt;}
.ws74{word-spacing:88.100538pt;}
.wsaf{word-spacing:93.754186pt;}
.wsa8{word-spacing:94.252879pt;}
.wsc6{word-spacing:97.052428pt;}
.wsaa{word-spacing:98.383075pt;}
.wsac{word-spacing:112.247808pt;}
.ws79{word-spacing:112.260054pt;}
.wsa3{word-spacing:118.695204pt;}
.ws73{word-spacing:122.175618pt;}
.wsb1{word-spacing:131.514158pt;}
.ws8e{word-spacing:137.559966pt;}
.ws78{word-spacing:146.340824pt;}
.wsc7{word-spacing:176.626413pt;}
.wsa6{word-spacing:183.675443pt;}
.ws75{word-spacing:200.801771pt;}
.ws7b{word-spacing:234.772961pt;}
.ws7e{word-spacing:250.801350pt;}
.wsa7{word-spacing:257.086327pt;}
.ws9d{word-spacing:261.717316pt;}
.ws9e{word-spacing:267.258146pt;}
.wsad{word-spacing:273.749709pt;}
.ws9c{word-spacing:278.723166pt;}
.ws77{word-spacing:292.178320pt;}
.ws7d{word-spacing:335.697130pt;}
.wsa5{word-spacing:461.923243pt;}
.wsab{word-spacing:465.245696pt;}
.ws9b{word-spacing:502.866091pt;}
._15{margin-left:-593.736808pt;}
._16{margin-left:-411.008960pt;}
._2a{margin-left:-380.326400pt;}
._2f{margin-left:-308.800000pt;}
._32{margin-left:-303.993600pt;}
._25{margin-left:-4.928000pt;}
._9{margin-left:-3.141504pt;}
._f{margin-left:-2.179584pt;}
._1{margin-left:-1.212416pt;}
._0{width:0.919168pt;}
._2{width:1.856000pt;}
._34{width:2.816000pt;}
._8{width:3.768832pt;}
._5{width:5.564416pt;}
._6{width:7.168000pt;}
._7{width:8.488832pt;}
._37{width:9.559168pt;}
._3{width:10.688000pt;}
._d{width:12.092416pt;}
._b{width:13.201664pt;}
._c{width:14.209920pt;}
._36{width:17.088000pt;}
._e{width:18.560000pt;}
._a{width:19.736320pt;}
._26{width:21.632000pt;}
._29{width:29.779200pt;}
._31{width:36.582830pt;}
._27{width:37.651200pt;}
._2e{width:41.356800pt;}
._1a{width:49.677443pt;}
._2d{width:67.315200pt;}
._12{width:69.933173pt;}
._35{width:74.240000pt;}
._1c{width:76.204047pt;}
._11{width:79.804611pt;}
._28{width:93.996800pt;}
._1b{width:95.077639pt;}
._13{width:100.336976pt;}
._10{width:101.649424pt;}
._14{width:127.045970pt;}
._1e{width:144.668422pt;}
._1f{width:391.267439pt;}
._17{width:401.408589pt;}
._22{width:407.900151pt;}
._2c{width:429.286096pt;}
._21{width:431.113255pt;}
._1d{width:441.214975pt;}
._20{width:443.075481pt;}
._24{width:447.736338pt;}
._19{width:463.336462pt;}
._23{width:476.180990pt;}
._30{width:659.840000pt;}
._33{width:686.720000pt;}
._18{width:691.884668pt;}
._2b{width:716.160000pt;}
._4{width:752.305408pt;}
.fs7{font-size:41.454933pt;}
.fsd{font-size:41.457600pt;}
.fsa{font-size:41.603733pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:51.102400pt;}
.fs8{font-size:51.110933pt;}
.fse{font-size:51.114667pt;}
.fs11{font-size:51.166400pt;}
.fsb{font-size:51.294400pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:63.920000pt;}
.fs9{font-size:63.930133pt;}
.fsf{font-size:63.934933pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:64.160000pt;}
.fs2{font-size:69.120000pt;}
.fs10{font-size:95.901867pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:2.829686pt;}
.y7c{bottom:2.830025pt;}
.y67{bottom:2.830158pt;}
.y82{bottom:3.132800pt;}
.ya6{bottom:3.493659pt;}
.ybb{bottom:3.493872pt;}
.yd2{bottom:3.495392pt;}
.y9f{bottom:3.498965pt;}
.ycb{bottom:3.500032pt;}
.yb5{bottom:3.500965pt;}
.y52{bottom:3.505070pt;}
.yef{bottom:3.794934pt;}
.y74{bottom:6.155747pt;}
.y6b{bottom:6.156013pt;}
.y5e{bottom:6.178458pt;}
.y83{bottom:6.474400pt;}
.y55{bottom:7.697367pt;}
.yab{bottom:7.697476pt;}
.ya8{bottom:7.698544pt;}
.ybd{bottom:7.698941pt;}
.ya3{bottom:7.698944pt;}
.yd6{bottom:7.699476pt;}
.ycf{bottom:7.700144pt;}
.yd4{bottom:7.700410pt;}
.yc0{bottom:7.701209pt;}
.yb8{bottom:7.707350pt;}
.yf0{bottom:8.000133pt;}
.y61{bottom:10.362065pt;}
.y77{bottom:10.364592pt;}
.y7f{bottom:10.364725pt;}
.y6e{bottom:10.365125pt;}
.y9a{bottom:15.112292pt;}
.yc6{bottom:15.112692pt;}
.yb0{bottom:15.113386pt;}
.yee{bottom:15.166667pt;}
.y1{bottom:16.640000pt;}
.yc{bottom:17.120000pt;}
.y59{bottom:17.774190pt;}
.y7b{bottom:17.774528pt;}
.y66{bottom:17.774661pt;}
.yb4{bottom:18.427995pt;}
.y51{bottom:18.439747pt;}
.y9e{bottom:18.442560pt;}
.yca{bottom:18.443227pt;}
.y73{bottom:21.092917pt;}
.y6a{bottom:21.093184pt;}
.y5d{bottom:21.115628pt;}
.y113{bottom:21.120000pt;}
.y162{bottom:22.080000pt;}
.y40{bottom:22.240000pt;}
.y110{bottom:22.560000pt;}
.y53{bottom:22.638667pt;}
.yaa{bottom:22.642267pt;}
.ya2{bottom:22.643734pt;}
.yd5{bottom:22.644267pt;}
.yce{bottom:22.644934pt;}
.ybf{bottom:22.646000pt;}
.yb7{bottom:22.652141pt;}
.y116{bottom:23.200000pt;}
.y118{bottom:23.360000pt;}
.y125{bottom:25.280000pt;}
.y5f{bottom:25.305733pt;}
.y76{bottom:25.308260pt;}
.y7e{bottom:25.308394pt;}
.y6d{bottom:25.308794pt;}
.y122{bottom:25.920000pt;}
.y13d{bottom:26.080000pt;}
.y124{bottom:26.400000pt;}
.y129{bottom:27.040000pt;}
.yc5{bottom:28.638234pt;}
.y9d{bottom:28.639936pt;}
.yc9{bottom:28.640603pt;}
.yb3{bottom:28.791493pt;}
.y50{bottom:28.800758pt;}
.y7a{bottom:31.299200pt;}
.y65{bottom:31.299333pt;}
.y99{bottom:31.384400pt;}
.yc4{bottom:31.384800pt;}
.yaf{bottom:31.509867pt;}
.ya1{bottom:32.841356pt;}
.ycd{bottom:32.842556pt;}
.y54{bottom:32.993707pt;}
.yb6{bottom:33.009600pt;}
.y58{bottom:33.755067pt;}
.y72{bottom:34.624537pt;}
.y69{bottom:34.624803pt;}
.yac{bottom:35.504000pt;}
.yd7{bottom:35.506267pt;}
.yc1{bottom:35.633067pt;}
.y5c{bottom:37.087795pt;}
.y9c{bottom:40.000171pt;}
.yc8{bottom:40.000837pt;}
.y4f{bottom:40.158267pt;}
.yb2{bottom:40.164507pt;}
.y75{bottom:41.162933pt;}
.y7d{bottom:41.163067pt;}
.y6c{bottom:41.163467pt;}
.ya7{bottom:41.248400pt;}
.ya0{bottom:41.248800pt;}
.ycc{bottom:41.250000pt;}
.yd3{bottom:41.250267pt;}
.y60{bottom:41.288267pt;}
.ybc{bottom:41.376667pt;}
.y71{bottom:48.322267pt;}
.y68{bottom:48.322533pt;}
.y9b{bottom:48.408533pt;}
.yc7{bottom:48.409200pt;}
.y5b{bottom:48.447200pt;}
.yb1{bottom:48.534533pt;}
.ya4{bottom:49.157200pt;}
.yd0{bottom:49.158800pt;}
.yb9{bottom:49.285067pt;}
.ya9{bottom:52.486800pt;}
.ya5{bottom:52.487067pt;}
.yd1{bottom:52.488800pt;}
.yba{bottom:52.615067pt;}
.ybe{bottom:52.615333pt;}
.y3d{bottom:59.040000pt;}
.y144{bottom:101.760000pt;}
.ye8{bottom:103.520000pt;}
.y96{bottom:108.320000pt;}
.y186{bottom:111.200000pt;}
.y64{bottom:119.613333pt;}
.y33{bottom:128.800000pt;}
.y13a{bottom:131.520000pt;}
.ye7{bottom:140.320000pt;}
.y195{bottom:143.200000pt;}
.y143{bottom:143.360000pt;}
.y4b{bottom:144.480000pt;}
.y63{bottom:144.960000pt;}
.y95{bottom:145.120000pt;}
.y185{bottom:148.000000pt;}
.y101{bottom:152.320000pt;}
.y120{bottom:153.760000pt;}
.y3a{bottom:163.680000pt;}
.yeb{bottom:164.640000pt;}
.y32{bottom:165.600000pt;}
.y139{bottom:169.440000pt;}
.y16c{bottom:173.280000pt;}
.ye6{bottom:177.120000pt;}
.y194{bottom:180.000000pt;}
.y4a{bottom:181.280000pt;}
.y94{bottom:181.920000pt;}
.y142{bottom:184.960000pt;}
.y100{bottom:189.120000pt;}
.y11f{bottom:191.680000pt;}
.y62{bottom:198.240000pt;}
.y158{bottom:199.840000pt;}
.y39{bottom:200.480000pt;}
.y184{bottom:200.800000pt;}
.yea{bottom:201.440000pt;}
.y31{bottom:202.400000pt;}
.y138{bottom:207.520000pt;}
.y16b{bottom:210.080000pt;}
.ye5{bottom:213.920000pt;}
.y193{bottom:216.800000pt;}
.y49{bottom:218.080000pt;}
.y93{bottom:218.720000pt;}
.yff{bottom:225.920000pt;}
.y141{bottom:226.560000pt;}
.y11e{bottom:229.440000pt;}
.y57{bottom:231.146667pt;}
.y183{bottom:237.600000pt;}
.y38{bottom:237.920000pt;}
.ye9{bottom:238.240000pt;}
.y30{bottom:239.200000pt;}
.y137{bottom:245.440000pt;}
.y16a{bottom:246.880000pt;}
.ye4{bottom:250.720000pt;}
.y165{bottom:253.600000pt;}
.y48{bottom:254.880000pt;}
.y92{bottom:255.520000pt;}
.y56{bottom:256.480000pt;}
.yfe{bottom:262.720000pt;}
.y11d{bottom:267.200000pt;}
.y140{bottom:268.160000pt;}
.y182{bottom:274.400000pt;}
.y4c{bottom:274.720000pt;}
.y37{bottom:275.040000pt;}
.y2f{bottom:276.000000pt;}
.y157{bottom:276.160000pt;}
.y169{bottom:283.680000pt;}
.ye3{bottom:287.520000pt;}
.y164{bottom:290.400000pt;}
.y47{bottom:291.680000pt;}
.y91{bottom:292.320000pt;}
.y175{bottom:294.560000pt;}
.y136{bottom:295.680000pt;}
.yfd{bottom:299.520000pt;}
.y16e{bottom:303.360000pt;}
.y11c{bottom:304.960000pt;}
.y192{bottom:306.400000pt;}
.y13f{bottom:309.760000pt;}
.y4e{bottom:310.813333pt;}
.y135{bottom:310.880000pt;}
.y36{bottom:311.840000pt;}
.y2e{bottom:312.800000pt;}
.y156{bottom:312.960000pt;}
.y168{bottom:321.760000pt;}
.ye2{bottom:324.320000pt;}
.y163{bottom:327.200000pt;}
.y46{bottom:328.480000pt;}
.y90{bottom:329.120000pt;}
.y4d{bottom:333.600000pt;}
.yfc{bottom:336.320000pt;}
.y16d{bottom:340.160000pt;}
.y11b{bottom:342.880000pt;}
.y191{bottom:343.200000pt;}
.y35{bottom:348.640000pt;}
.y2d{bottom:349.600000pt;}
.y155{bottom:349.760000pt;}
.y13e{bottom:351.360000pt;}
.y134{bottom:352.480000pt;}
.y167{bottom:359.680000pt;}
.ye1{bottom:361.120000pt;}
.y161{bottom:364.000000pt;}
.y45{bottom:365.280000pt;}
.y8f{bottom:365.920000pt;}
.yfb{bottom:373.120000pt;}
.y190{bottom:380.000000pt;}
.y11a{bottom:380.640000pt;}
.y34{bottom:386.080000pt;}
.y2c{bottom:386.400000pt;}
.y154{bottom:386.560000pt;}
.y166{bottom:392.640000pt;}
.y13c{bottom:392.960000pt;}
.y133{bottom:394.080000pt;}
.y14d{bottom:396.640000pt;}
.ye0{bottom:397.920000pt;}
.y160{bottom:400.640000pt;}
.y181{bottom:400.800000pt;}
.y44{bottom:402.080000pt;}
.y8e{bottom:402.720000pt;}
.yfa{bottom:409.920000pt;}
.y196{bottom:416.800000pt;}
.y119{bottom:418.400000pt;}
.y2b{bottom:423.200000pt;}
.y153{bottom:423.360000pt;}
.y18e{bottom:432.800000pt;}
.y14c{bottom:433.440000pt;}
.y174{bottom:434.560000pt;}
.ydf{bottom:434.720000pt;}
.y132{bottom:435.680000pt;}
.y15f{bottom:437.440000pt;}
.y43{bottom:438.880000pt;}
.y8d{bottom:439.520000pt;}
.yf9{bottom:446.720000pt;}
.y180{bottom:453.600000pt;}
.y117{bottom:456.160000pt;}
.y2a{bottom:460.000000pt;}
.y152{bottom:460.160000pt;}
.y18d{bottom:469.600000pt;}
.y13b{bottom:470.240000pt;}
.yde{bottom:471.520000pt;}
.y1b{bottom:472.800000pt;}
.y15e{bottom:474.240000pt;}
.y42{bottom:475.680000pt;}
.y173{bottom:476.160000pt;}
.y8c{bottom:476.320000pt;}
.y131{bottom:477.280000pt;}
.yf8{bottom:478.400000pt;}
.y8{bottom:489.120000pt;}
.y17f{bottom:490.400000pt;}
.y115{bottom:494.080000pt;}
.y29{bottom:496.800000pt;}
.y151{bottom:500.960000pt;}
.y18c{bottom:506.400000pt;}
.y14b{bottom:507.040000pt;}
.ydd{bottom:508.320000pt;}
.y1a{bottom:509.600000pt;}
.y15d{bottom:511.040000pt;}
.y41{bottom:512.480000pt;}
.y8b{bottom:513.120000pt;}
.yf7{bottom:515.200000pt;}
.y172{bottom:517.760000pt;}
.y130{bottom:518.880000pt;}
.y10d{bottom:520.320000pt;}
.y150{bottom:528.800000pt;}
.y114{bottom:531.840000pt;}
.y28{bottom:533.600000pt;}
.y17e{bottom:543.200000pt;}
.y14a{bottom:543.840000pt;}
.ydc{bottom:545.120000pt;}
.y19{bottom:546.400000pt;}
.yf6{bottom:548.320000pt;}
.y15b{bottom:548.960000pt;}
.y3f{bottom:549.280000pt;}
.y8a{bottom:549.920000pt;}
.y14f{bottom:556.320000pt;}
.y10c{bottom:557.120000pt;}
.y18b{bottom:559.200000pt;}
.y171{bottom:559.360000pt;}
.y12f{bottom:560.480000pt;}
.y112{bottom:569.600000pt;}
.y15c{bottom:569.920000pt;}
.y27{bottom:570.400000pt;}
.y17d{bottom:580.000000pt;}
.y149{bottom:580.640000pt;}
.ydb{bottom:581.920000pt;}
.y18{bottom:583.200000pt;}
.y14e{bottom:584.160000pt;}
.y15a{bottom:586.400000pt;}
.y3c{bottom:586.720000pt;}
.y7{bottom:589.440000pt;}
.y10b{bottom:593.920000pt;}
.y18a{bottom:596.000000pt;}
.y170{bottom:600.960000pt;}
.y12e{bottom:602.080000pt;}
.y26{bottom:607.200000pt;}
.y10f{bottom:607.360000pt;}
.y3e{bottom:608.960000pt;}
.y148{bottom:617.440000pt;}
.yda{bottom:618.720000pt;}
.y17{bottom:620.000000pt;}
.y89{bottom:623.520000pt;}
.y111{bottom:628.640000pt;}
.y10a{bottom:630.720000pt;}
.y17c{bottom:632.800000pt;}
.y12d{bottom:643.680000pt;}
.y25{bottom:644.000000pt;}
.y159{bottom:646.400000pt;}
.y147{bottom:654.240000pt;}
.yd9{bottom:655.520000pt;}
.y16{bottom:656.800000pt;}
.y88{bottom:660.320000pt;}
.y16f{bottom:664.800000pt;}
.y109{bottom:667.520000pt;}
.y17b{bottom:669.600000pt;}
.y24{bottom:680.800000pt;}
.y10e{bottom:682.080000pt;}
.y3b{bottom:683.200000pt;}
.y12c{bottom:685.280000pt;}
.y189{bottom:685.600000pt;}
.y146{bottom:690.880000pt;}
.y6{bottom:692.320000pt;}
.y15{bottom:693.600000pt;}
.y87{bottom:697.120000pt;}
.y108{bottom:704.320000pt;}
.y17a{bottom:706.400000pt;}
.y23{bottom:717.600000pt;}
.y188{bottom:722.400000pt;}
.y12b{bottom:726.880000pt;}
.y5{bottom:729.120000pt;}
.y14{bottom:730.400000pt;}
.y86{bottom:733.920000pt;}
.y107{bottom:741.120000pt;}
.y22{bottom:754.400000pt;}
.y179{bottom:759.200000pt;}
.yd8{bottom:760.800000pt;}
.y13{bottom:767.200000pt;}
.y12a{bottom:768.480000pt;}
.y85{bottom:770.720000pt;}
.y106{bottom:777.920000pt;}
.y4{bottom:781.920000pt;}
.y21{bottom:791.200000pt;}
.yc3{bottom:793.680000pt;}
.y178{bottom:796.000000pt;}
.y12{bottom:804.000000pt;}
.y84{bottom:807.520000pt;}
.y128{bottom:810.080000pt;}
.y187{bottom:812.000000pt;}
.y105{bottom:814.720000pt;}
.yc2{bottom:816.480000pt;}
.y20{bottom:828.000000pt;}
.y81{bottom:840.213333pt;}
.y11{bottom:840.800000pt;}
.y177{bottom:848.800000pt;}
.y3{bottom:848.971040pt;}
.y80{bottom:851.040000pt;}
.y104{bottom:851.520000pt;}
.y127{bottom:851.680000pt;}
.y1f{bottom:864.800000pt;}
.yae{bottom:877.546667pt;}
.y10{bottom:877.600000pt;}
.y79{bottom:885.546667pt;}
.y176{bottom:885.600000pt;}
.y103{bottom:888.320000pt;}
.y123{bottom:893.280000pt;}
.yad{bottom:900.320000pt;}
.yf5{bottom:900.480000pt;}
.y1e{bottom:901.600000pt;}
.y2{bottom:910.240000pt;}
.y78{bottom:910.880000pt;}
.yf{bottom:914.400000pt;}
.y126{bottom:917.280000pt;}
.y18f{bottom:922.400000pt;}
.yf4{bottom:924.080000pt;}
.y102{bottom:925.120000pt;}
.yf3{bottom:932.160000pt;}
.y121{bottom:934.880000pt;}
.y1d{bottom:938.400000pt;}
.ye{bottom:951.200000pt;}
.y98{bottom:961.213333pt;}
.yf2{bottom:961.346667pt;}
.y145{bottom:961.920000pt;}
.y70{bottom:965.213333pt;}
.yf1{bottom:969.440000pt;}
.y1c{bottom:975.200000pt;}
.y97{bottom:984.000000pt;}
.y6f{bottom:990.560000pt;}
.yed{bottom:998.480000pt;}
.yec{bottom:1006.560000pt;}
.yd{bottom:1012.000000pt;}
.yb{bottom:1043.326267pt;}
.ya{bottom:1059.326267pt;}
.y9{bottom:1075.326667pt;}
.h1b{height:26.732000pt;}
.h2a{height:28.000000pt;}
.h2d{height:28.001333pt;}
.h24{height:28.785502pt;}
.h15{height:28.803892pt;}
.h1f{height:28.805745pt;}
.h1c{height:28.907282pt;}
.he{height:29.773125pt;}
.h2f{height:29.794062pt;}
.h2{height:31.680000pt;}
.h25{height:35.490750pt;}
.h10{height:35.507185pt;}
.h16{height:35.513114pt;}
.h20{height:35.515708pt;}
.h2b{height:35.551654pt;}
.h3b{height:36.641333pt;}
.hd{height:36.798667pt;}
.hc{height:36.800000pt;}
.h6{height:37.057292pt;}
.h2e{height:37.121333pt;}
.h32{height:37.758667pt;}
.h30{height:37.760000pt;}
.h31{height:37.920000pt;}
.h33{height:40.480000pt;}
.h35{height:40.481333pt;}
.h38{height:40.638667pt;}
.h39{height:40.640000pt;}
.h34{height:40.960000pt;}
.h36{height:41.598667pt;}
.h37{height:41.600000pt;}
.h3c{height:42.656250pt;}
.h12{height:44.381953pt;}
.h18{height:44.388989pt;}
.h22{height:44.392322pt;}
.h11{height:44.413164pt;}
.h17{height:44.420205pt;}
.h21{height:44.423540pt;}
.h23{height:44.426165pt;}
.h29{height:44.427232pt;}
.h5{height:44.437500pt;}
.h3{height:44.468750pt;}
.h3a{height:46.250000pt;}
.h26{height:46.497375pt;}
.h8{height:47.375000pt;}
.hf{height:53.266667pt;}
.h7{height:54.114062pt;}
.h13{height:58.145977pt;}
.h19{height:58.155195pt;}
.h27{height:58.159561pt;}
.h2c{height:58.218750pt;}
.h1a{height:61.265333pt;}
.h14{height:61.266667pt;}
.h1e{height:65.266667pt;}
.h4{height:72.436250pt;}
.hb{height:73.601333pt;}
.h1d{height:75.240030pt;}
.h28{height:87.238856pt;}
.h9{height:793.760000pt;}
.ha{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w24{width:1.440000pt;}
.w2{width:8.000000pt;}
.w20{width:11.838667pt;}
.wc{width:16.001333pt;}
.w30{width:18.880000pt;}
.w32{width:19.038667pt;}
.w1f{width:68.640000pt;}
.w5{width:70.880000pt;}
.w6{width:73.758667pt;}
.w22{width:75.520000pt;}
.w36{width:75.521333pt;}
.w37{width:83.040000pt;}
.w2b{width:84.960000pt;}
.w34{width:85.120000pt;}
.w35{width:85.121333pt;}
.w2a{width:94.560000pt;}
.w2d{width:103.840000pt;}
.w1d{width:103.998667pt;}
.w2c{width:104.000000pt;}
.w23{width:104.960000pt;}
.wb{width:113.280000pt;}
.w27{width:113.440000pt;}
.w1e{width:113.441333pt;}
.w21{width:117.920000pt;}
.w2e{width:132.320000pt;}
.w19{width:133.600000pt;}
.w1b{width:133.601333pt;}
.w1c{width:133.758667pt;}
.w25{width:148.800000pt;}
.w26{width:148.960000pt;}
.w12{width:152.000000pt;}
.w7{width:157.760000pt;}
.w9{width:160.638667pt;}
.w8{width:160.640000pt;}
.wd{width:165.266667pt;}
.w18{width:174.665333pt;}
.w16{width:176.000000pt;}
.we{width:182.666667pt;}
.w17{width:187.998667pt;}
.wa{width:189.120000pt;}
.wf{width:200.000000pt;}
.w10{width:208.001333pt;}
.w11{width:209.333333pt;}
.w31{width:245.600000pt;}
.w2f{width:245.760000pt;}
.w33{width:252.960000pt;}
.w29{width:311.840000pt;}
.w13{width:378.534667pt;}
.w14{width:381.266667pt;}
.w15{width:390.666667pt;}
.w28{width:500.800000pt;}
.w1a{width:534.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w3{width:1122.560000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x39{left:2.674800pt;}
.xb{left:3.840000pt;}
.x13{left:5.920000pt;}
.xd{left:8.800000pt;}
.xf{left:10.080000pt;}
.x36{left:11.449027pt;}
.x1e{left:15.451181pt;}
.x32{left:21.246710pt;}
.x75{left:26.400000pt;}
.x99{left:28.800000pt;}
.x46{left:30.245116pt;}
.x9c{left:31.360000pt;}
.x3b{left:32.674800pt;}
.x27{left:34.076898pt;}
.x93{left:38.240000pt;}
.x23{left:39.156781pt;}
.x42{left:41.086267pt;}
.x4e{left:42.281153pt;}
.x2e{left:45.210000pt;}
.x3a{left:46.930800pt;}
.x5c{left:50.821639pt;}
.x21{left:53.391085pt;}
.x37{left:55.707963pt;}
.x2d{left:59.466000pt;}
.x7{left:61.209333pt;}
.x1d{left:62.185961pt;}
.x1c{left:64.807200pt;}
.x2a{left:68.252922pt;}
.x29{left:70.875200pt;}
.x22{left:75.718150pt;}
.x70{left:76.620132pt;}
.x6e{left:83.003140pt;}
.x1f{left:84.511248pt;}
.x26{left:86.874933pt;}
.x4c{left:88.508957pt;}
.x2b{left:93.043043pt;}
.x5{left:96.160000pt;}
.x5b{left:97.064783pt;}
.x65{left:100.873200pt;}
.x38{left:101.874800pt;}
.x16{left:105.440000pt;}
.x41{left:107.918267pt;}
.x8{left:109.440000pt;}
.x8b{left:110.720000pt;}
.x28{left:111.660649pt;}
.x2{left:113.120000pt;}
.x9{left:114.880000pt;}
.x6{left:116.640000pt;}
.xa7{left:117.760000pt;}
.x35{left:119.410131pt;}
.x64{left:121.206072pt;}
.x34{left:122.249867pt;}
.x47{left:124.458267pt;}
.x40{left:125.453331pt;}
.xa9{left:127.200000pt;}
.x3f{left:128.293067pt;}
.x31{left:129.208267pt;}
.x5a{left:132.563504pt;}
.xa8{left:133.760000pt;}
.x17{left:136.000000pt;}
.x20{left:139.068800pt;}
.x45{left:140.416533pt;}
.x72{left:146.880000pt;}
.x33{left:150.331631pt;}
.x2c{left:156.042000pt;}
.x3e{left:158.750424pt;}
.xc{left:166.880000pt;}
.x77{left:178.080000pt;}
.x4{left:183.840000pt;}
.x3{left:192.003040pt;}
.x8d{left:198.560000pt;}
.x54{left:202.637467pt;}
.x7f{left:209.440000pt;}
.x5e{left:211.213333pt;}
.x61{left:212.746667pt;}
.x58{left:217.546667pt;}
.x4a{left:218.813333pt;}
.x94{left:228.320000pt;}
.x74{left:229.600000pt;}
.x98{left:236.320000pt;}
.x8e{left:238.080000pt;}
.xe{left:240.640000pt;}
.x10{left:250.720000pt;}
.x4d{left:253.119333pt;}
.x87{left:254.240000pt;}
.x52{left:258.749429pt;}
.x56{left:261.616800pt;}
.x5d{left:264.781984pt;}
.x50{left:269.405333pt;}
.x4f{left:272.820800pt;}
.x53{left:277.694267pt;}
.x84{left:280.000000pt;}
.x66{left:281.333600pt;}
.x67{left:286.208800pt;}
.x51{left:297.268642pt;}
.x44{left:303.413333pt;}
.x55{left:305.817341pt;}
.x4b{left:306.808533pt;}
.x30{left:308.080000pt;}
.x59{left:309.070933pt;}
.x3d{left:310.145333pt;}
.x5f{left:311.867716pt;}
.x6d{left:314.146667pt;}
.x62{left:315.333333pt;}
.x25{left:316.746667pt;}
.x6b{left:320.080000pt;}
.x8a{left:322.240000pt;}
.x63{left:323.290907pt;}
.x1b{left:325.546667pt;}
.x7c{left:363.200000pt;}
.x49{left:365.680000pt;}
.x6a{left:374.880000pt;}
.x9a{left:388.960000pt;}
.x80{left:391.520000pt;}
.x9b{left:396.960000pt;}
.x11{left:398.400000pt;}
.x76{left:399.520000pt;}
.xa6{left:401.600000pt;}
.x81{left:403.360000pt;}
.x8f{left:417.600000pt;}
.x78{left:461.760000pt;}
.x85{left:473.920000pt;}
.x18{left:478.080000pt;}
.x19{left:483.680000pt;}
.x24{left:490.720000pt;}
.x95{left:492.960000pt;}
.x6c{left:496.000000pt;}
.x7d{left:496.960000pt;}
.x2f{left:499.360000pt;}
.x9d{left:500.960000pt;}
.x6f{left:502.080000pt;}
.x3c{left:508.000000pt;}
.x48{left:512.640000pt;}
.x43{left:518.080000pt;}
.x82{left:521.280000pt;}
.x90{left:529.280000pt;}
.x69{left:535.520000pt;}
.x88{left:552.000000pt;}
.x12{left:559.040000pt;}
.x9e{left:578.080000pt;}
.x89{left:585.760000pt;}
.x57{left:597.280000pt;}
.x60{left:598.720000pt;}
.x68{left:603.360000pt;}
.x71{left:606.880000pt;}
.x91{left:615.840000pt;}
.x7e{left:630.560000pt;}
.x92{left:633.280000pt;}
.x9f{left:653.600000pt;}
.xa0{left:661.600000pt;}
.x86{left:667.360000pt;}
.x1a{left:681.760000pt;}
.x1{left:689.760000pt;}
.x83{left:701.760000pt;}
.x14{left:719.680000pt;}
.x96{left:738.560000pt;}
.x97{left:757.600000pt;}
.x79{left:764.320000pt;}
.xa1{left:765.600000pt;}
.xa2{left:842.560000pt;}
.xa3{left:850.560000pt;}
.x7a{left:897.920000pt;}
.x8c{left:902.880000pt;}
.x15{left:908.800000pt;}
.x7b{left:918.880000pt;}
.xa4{left:927.520000pt;}
.xa5{left:935.520000pt;}
.x73{left:1010.560000pt;}
.xa{left:1018.560000pt;}
}




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