
    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_537047baaebf784ba1267c62.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.695312;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_f88fbd56fabc1417776ed684.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_ce6a3146c258ee9f65be5c3c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_33a94e0e3ab10d8de24727f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_6e41fa26ce0d698e2f66b5d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_cf7128850bff7e0f91eb327f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_629c93feaf08296a4793b915.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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_2ffd2313e9fa773f7ca22276.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.831055;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_41bc27a37ed026247ab344cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922852;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_a12926c207225281a226b5d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_cca93aaad6e3800e921731a4.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.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.214744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214744,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.227565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227565,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,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);}
.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);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls93{letter-spacing:-6.480000px;}
.ls94{letter-spacing:-2.880000px;}
.lsa1{letter-spacing:-1.800000px;}
.lsa0{letter-spacing:-1.656000px;}
.lsa2{letter-spacing:-1.512000px;}
.ls9f{letter-spacing:-1.440000px;}
.ls92{letter-spacing:-1.368000px;}
.lsa7{letter-spacing:-1.296000px;}
.lsa3{letter-spacing:-1.152000px;}
.ls69{letter-spacing:-1.080000px;}
.ls49{letter-spacing:-1.059840px;}
.ls91{letter-spacing:-0.936000px;}
.ls88{letter-spacing:-0.927360px;}
.ls44{letter-spacing:-0.794880px;}
.ls6d{letter-spacing:-0.792000px;}
.ls24{letter-spacing:-0.720000px;}
.ls4f{letter-spacing:-0.662400px;}
.ls25{letter-spacing:-0.648000px;}
.ls17{letter-spacing:-0.596160px;}
.ls48{letter-spacing:-0.576000px;}
.ls33{letter-spacing:-0.432000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.331200px;}
.ls67{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.287280px;}
.ls1c{letter-spacing:-0.264960px;}
.ls6{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.198720px;}
.ls37{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.132480px;}
.ls51{letter-spacing:-0.125280px;}
.ls1e{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.066240px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.066240px;}
.ls7{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.132480px;}
.ls4{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.145728px;}
.ls2b{letter-spacing:0.174240px;}
.ls8{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.230400px;}
.ls1b{letter-spacing:0.264960px;}
.ls5{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.331200px;}
.ls1{letter-spacing:0.360000px;}
.ls61{letter-spacing:0.367200px;}
.ls2{letter-spacing:0.720000px;}
.ls62{letter-spacing:0.728640px;}
.ls3b{letter-spacing:0.792000px;}
.lsb{letter-spacing:0.861120px;}
.ls50{letter-spacing:1.440000px;}
.ls3a{letter-spacing:2.160000px;}
.ls53{letter-spacing:2.185920px;}
.ls2e{letter-spacing:2.880000px;}
.ls78{letter-spacing:2.894400px;}
.lsa5{letter-spacing:3.168000px;}
.ls43{letter-spacing:3.576960px;}
.ls26{letter-spacing:3.600000px;}
.ls4e{letter-spacing:4.305600px;}
.ls21{letter-spacing:4.320000px;}
.lsa6{letter-spacing:4.392000px;}
.ls66{letter-spacing:5.034240px;}
.ls52{letter-spacing:5.040000px;}
.ls36{letter-spacing:5.752800px;}
.ls32{letter-spacing:5.760000px;}
.ls6a{letter-spacing:6.472800px;}
.ls6c{letter-spacing:6.480000px;}
.ls77{letter-spacing:6.491520px;}
.ls2f{letter-spacing:7.200000px;}
.ls72{letter-spacing:7.220160px;}
.ls6e{letter-spacing:7.912800px;}
.ls46{letter-spacing:7.920000px;}
.ls86{letter-spacing:7.948800px;}
.ls35{letter-spacing:8.632800px;}
.ls9{letter-spacing:8.640000px;}
.ls4a{letter-spacing:9.352800px;}
.ls3e{letter-spacing:9.360000px;}
.ls3c{letter-spacing:10.080000px;}
.ls7b{letter-spacing:10.785600px;}
.ls3f{letter-spacing:10.800000px;}
.ls57{letter-spacing:11.520000px;}
.ls89{letter-spacing:11.525760px;}
.ls39{letter-spacing:12.240000px;}
.ls79{letter-spacing:12.254400px;}
.ls85{letter-spacing:12.960000px;}
.ls47{letter-spacing:12.983040px;}
.ls2a{letter-spacing:13.680000px;}
.ls63{letter-spacing:14.374080px;}
.ls22{letter-spacing:14.400000px;}
.ls73{letter-spacing:15.102720px;}
.ls2d{letter-spacing:15.120000px;}
.ls64{letter-spacing:15.264000px;}
.ls28{letter-spacing:15.840000px;}
.ls40{letter-spacing:16.560000px;}
.ls7c{letter-spacing:16.704000px;}
.ls95{letter-spacing:17.280000px;}
.ls7a{letter-spacing:17.288640px;}
.ls76{letter-spacing:18.000000px;}
.ls68{letter-spacing:18.017280px;}
.ls75{letter-spacing:18.720000px;}
.ls7e{letter-spacing:18.745920px;}
.ls6b{letter-spacing:19.408320px;}
.ls29{letter-spacing:19.440000px;}
.ls23{letter-spacing:20.160000px;}
.ls5d{letter-spacing:20.304000px;}
.ls34{letter-spacing:20.880000px;}
.ls99{letter-spacing:21.600000px;}
.ls55{letter-spacing:21.744000px;}
.ls9b{letter-spacing:22.320000px;}
.ls84{letter-spacing:22.464000px;}
.ls59{letter-spacing:23.040000px;}
.ls9a{letter-spacing:23.760000px;}
.ls3{letter-spacing:24.480000px;}
.ls7f{letter-spacing:25.200000px;}
.ls96{letter-spacing:25.920000px;}
.ls97{letter-spacing:27.360000px;}
.ls45{letter-spacing:28.080000px;}
.ls80{letter-spacing:28.224000px;}
.ls81{letter-spacing:28.800000px;}
.ls87{letter-spacing:28.944000px;}
.ls83{letter-spacing:29.520000px;}
.ls58{letter-spacing:29.664000px;}
.ls7d{letter-spacing:30.240000px;}
.ls5b{letter-spacing:30.384000px;}
.ls5c{letter-spacing:30.960000px;}
.ls3d{letter-spacing:31.824000px;}
.lsa4{letter-spacing:32.400000px;}
.ls8f{letter-spacing:33.120000px;}
.ls82{letter-spacing:34.577280px;}
.ls56{letter-spacing:34.704000px;}
.ls98{letter-spacing:35.280000px;}
.ls27{letter-spacing:35.424000px;}
.ls38{letter-spacing:36.000000px;}
.ls8a{letter-spacing:36.144000px;}
.ls90{letter-spacing:36.864000px;}
.ls5e{letter-spacing:39.600000px;}
.ls8c{letter-spacing:39.744000px;}
.ls20{letter-spacing:40.464000px;}
.ls71{letter-spacing:41.904000px;}
.ls6f{letter-spacing:42.624000px;}
.ls54{letter-spacing:43.920000px;}
.ls41{letter-spacing:44.064000px;}
.ls4c{letter-spacing:47.520000px;}
.ls5a{letter-spacing:47.664000px;}
.ls8b{letter-spacing:49.104000px;}
.ls70{letter-spacing:50.400000px;}
.ls9c{letter-spacing:51.120000px;}
.ls9e{letter-spacing:51.840000px;}
.ls9d{letter-spacing:52.560000px;}
.ls8d{letter-spacing:55.584000px;}
.ls4d{letter-spacing:65.664000px;}
.lsc{letter-spacing:68.558400px;}
.ls74{letter-spacing:69.984000px;}
.lsa{letter-spacing:73.592640px;}
.ls5f{letter-spacing:80.784000px;}
.lse{letter-spacing:86.575680px;}
.ls4b{letter-spacing:90.864000px;}
.lsd{letter-spacing:91.609920px;}
.ls65{letter-spacing:93.024000px;}
.ls30{letter-spacing:95.904000px;}
.ls11{letter-spacing:105.255360px;}
.ls42{letter-spacing:105.984000px;}
.lsf{letter-spacing:109.560960px;}
.ls13{letter-spacing:113.204160px;}
.ls12{letter-spacing:116.781120px;}
.ls8e{letter-spacing:141.264000px;}
.ls60{letter-spacing:195.984000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-108.360000px;}
.ws0{word-spacing:-33.120000px;}
.ws137{word-spacing:-23.040000px;}
.ws139{word-spacing:-22.392000px;}
.ws20{word-spacing:-21.354480px;}
.ws138{word-spacing:-21.168000px;}
.ws4{word-spacing:-18.288000px;}
.ws2e{word-spacing:-18.216000px;}
.ws5a{word-spacing:-18.144000px;}
.ws30{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws2d{word-spacing:-17.928000px;}
.ws65{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.wse9{word-spacing:-17.712000px;}
.ws2f{word-spacing:-17.640000px;}
.ws11d{word-spacing:-17.568000px;}
.ws95{word-spacing:-17.424000px;}
.ws4a{word-spacing:-17.352000px;}
.ws100{word-spacing:-17.280000px;}
.ws131{word-spacing:-17.208000px;}
.ws130{word-spacing:-17.064000px;}
.ws12f{word-spacing:-16.920000px;}
.ws136{word-spacing:-16.848000px;}
.ws13a{word-spacing:-16.704000px;}
.ws9e{word-spacing:-16.692480px;}
.ws12d{word-spacing:-16.632000px;}
.ws22{word-spacing:-16.626240px;}
.ws9f{word-spacing:-16.560000px;}
.ws24{word-spacing:-16.493760px;}
.ws135{word-spacing:-16.488000px;}
.ws117{word-spacing:-16.361280px;}
.ws133{word-spacing:-16.344000px;}
.ws9d{word-spacing:-16.295040px;}
.ws21{word-spacing:-16.228800px;}
.ws134{word-spacing:-16.200000px;}
.ws23{word-spacing:-15.963840px;}
.ws120{word-spacing:-15.632640px;}
.ws25{word-spacing:-15.235200px;}
.ws12e{word-spacing:-11.520000px;}
.ws49{word-spacing:-10.440000px;}
.wsaa{word-spacing:-10.314720px;}
.ws4b{word-spacing:-8.786880px;}
.ws59{word-spacing:-1.059840px;}
.ws4f{word-spacing:-1.008000px;}
.ws31{word-spacing:-0.792000px;}
.wsc2{word-spacing:-0.720000px;}
.ws64{word-spacing:-0.662400px;}
.wsff{word-spacing:-0.529920px;}
.ws143{word-spacing:-0.360000px;}
.wsa8{word-spacing:-0.331200px;}
.wsc{word-spacing:-0.288000px;}
.ws16{word-spacing:-0.216000px;}
.ws6{word-spacing:-0.144000px;}
.ws2c{word-spacing:-0.132480px;}
.ws9{word-spacing:-0.072000px;}
.ws2b{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
.ws28{word-spacing:0.066240px;}
.ws34{word-spacing:0.072000px;}
.ws26{word-spacing:0.132480px;}
.ws6e{word-spacing:0.144000px;}
.ws27{word-spacing:0.198720px;}
.ws33{word-spacing:0.216000px;}
.ws2a{word-spacing:0.264960px;}
.ws110{word-spacing:0.288000px;}
.ws29{word-spacing:0.331200px;}
.ws55{word-spacing:0.360000px;}
.ws7{word-spacing:0.432000px;}
.ws38{word-spacing:0.648000px;}
.wsa9{word-spacing:0.662400px;}
.ws8{word-spacing:0.720000px;}
.ws72{word-spacing:0.792000px;}
.ws94{word-spacing:0.794880px;}
.wscf{word-spacing:0.864000px;}
.wsbc{word-spacing:0.927360px;}
.ws132{word-spacing:0.936000px;}
.ws9b{word-spacing:1.059840px;}
.wsed{word-spacing:1.080000px;}
.ws1d{word-spacing:1.152000px;}
.ws3e{word-spacing:1.368000px;}
.ws8d{word-spacing:1.440000px;}
.wsde{word-spacing:1.512000px;}
.wsb4{word-spacing:1.523520px;}
.ws79{word-spacing:1.584000px;}
.wsd3{word-spacing:1.656000px;}
.ws13b{word-spacing:1.800000px;}
.ws11{word-spacing:1.872000px;}
.ws76{word-spacing:2.088000px;}
.wsb7{word-spacing:2.119680px;}
.ws17{word-spacing:2.160000px;}
.wsbe{word-spacing:2.232000px;}
.wsc7{word-spacing:2.252160px;}
.wsbd{word-spacing:2.304000px;}
.ws7a{word-spacing:2.376000px;}
.wsf3{word-spacing:2.384640px;}
.wsb6{word-spacing:2.450880px;}
.ws12{word-spacing:2.592000px;}
.ws60{word-spacing:2.808000px;}
.ws92{word-spacing:2.848320px;}
.ws45{word-spacing:2.880000px;}
.ws128{word-spacing:2.952000px;}
.wsfe{word-spacing:2.980800px;}
.ws4d{word-spacing:3.312000px;}
.ws11b{word-spacing:3.510720px;}
.ws6d{word-spacing:3.528000px;}
.ws4c{word-spacing:3.600000px;}
.ws93{word-spacing:3.643200px;}
.ws7c{word-spacing:3.672000px;}
.ws90{word-spacing:3.744000px;}
.ws107{word-spacing:3.775680px;}
.ws35{word-spacing:4.032000px;}
.ws11a{word-spacing:4.173120px;}
.ws119{word-spacing:4.239360px;}
.ws74{word-spacing:4.248000px;}
.ws36{word-spacing:4.320000px;}
.wsa6{word-spacing:4.371840px;}
.ws73{word-spacing:4.392000px;}
.ws11f{word-spacing:4.464000px;}
.wsc8{word-spacing:4.570560px;}
.ws114{word-spacing:4.608000px;}
.wseb{word-spacing:4.703040px;}
.ws13{word-spacing:4.752000px;}
.ws85{word-spacing:4.968000px;}
.ws58{word-spacing:5.040000px;}
.wsbb{word-spacing:5.100480px;}
.wsc6{word-spacing:5.112000px;}
.wsea{word-spacing:5.232960px;}
.ws63{word-spacing:5.472000px;}
.ws32{word-spacing:5.688000px;}
.ws10f{word-spacing:5.696640px;}
.ws5f{word-spacing:5.760000px;}
.wse1{word-spacing:5.832000px;}
.ws1a{word-spacing:6.192000px;}
.ws10d{word-spacing:6.359040px;}
.ws84{word-spacing:6.408000px;}
.wsfd{word-spacing:6.425280px;}
.ws5c{word-spacing:6.480000px;}
.wsd9{word-spacing:6.552000px;}
.ws10b{word-spacing:6.557760px;}
.wsb3{word-spacing:6.690240px;}
.ws10e{word-spacing:6.822720px;}
.ws10{word-spacing:6.912000px;}
.ws62{word-spacing:7.128000px;}
.wsb2{word-spacing:7.153920px;}
.ws7e{word-spacing:7.200000px;}
.wsfb{word-spacing:7.286400px;}
.ws69{word-spacing:7.344000px;}
.wsfc{word-spacing:7.418880px;}
.wsd{word-spacing:7.632000px;}
.ws98{word-spacing:7.848000px;}
.ws124{word-spacing:7.882560px;}
.ws5b{word-spacing:7.920000px;}
.ws3f{word-spacing:7.992000px;}
.wsb0{word-spacing:8.015040px;}
.wsb1{word-spacing:8.147520px;}
.ws1f{word-spacing:8.352000px;}
.wsab{word-spacing:8.544960px;}
.ws1e{word-spacing:8.568000px;}
.ws42{word-spacing:8.640000px;}
.ws144{word-spacing:8.712000px;}
.ws80{word-spacing:8.784000px;}
.ws4e{word-spacing:9.072000px;}
.ws78{word-spacing:9.288000px;}
.ws52{word-spacing:9.360000px;}
.ws87{word-spacing:9.504000px;}
.ws113{word-spacing:9.648000px;}
.ws19{word-spacing:9.792000px;}
.ws6f{word-spacing:10.008000px;}
.ws18{word-spacing:10.080000px;}
.ws70{word-spacing:10.152000px;}
.ws71{word-spacing:10.224000px;}
.wsb5{word-spacing:10.267200px;}
.ws89{word-spacing:10.512000px;}
.ws88{word-spacing:10.728000px;}
.ws41{word-spacing:10.800000px;}
.ws141{word-spacing:10.872000px;}
.ws140{word-spacing:11.160000px;}
.ws44{word-spacing:11.232000px;}
.wscb{word-spacing:11.448000px;}
.wscc{word-spacing:11.520000px;}
.wsc3{word-spacing:11.592000px;}
.ws122{word-spacing:11.724480px;}
.ws6c{word-spacing:11.952000px;}
.ws54{word-spacing:12.168000px;}
.ws53{word-spacing:12.240000px;}
.wsc4{word-spacing:12.312000px;}
.wsb8{word-spacing:12.320640px;}
.ws6a{word-spacing:12.384000px;}
.wsb9{word-spacing:12.453120px;}
.ws6b{word-spacing:12.456000px;}
.ws9a{word-spacing:12.651840px;}
.ws37{word-spacing:12.672000px;}
.ws81{word-spacing:12.888000px;}
.ws61{word-spacing:12.960000px;}
.ws99{word-spacing:13.181760px;}
.wsf{word-spacing:13.392000px;}
.ws121{word-spacing:13.608000px;}
.wsa3{word-spacing:13.645440px;}
.wse{word-spacing:13.680000px;}
.ws115{word-spacing:13.752000px;}
.wsba{word-spacing:13.777920px;}
.wsa4{word-spacing:13.910400px;}
.wse7{word-spacing:14.042880px;}
.ws50{word-spacing:14.112000px;}
.ws123{word-spacing:14.307840px;}
.wsd0{word-spacing:14.328000px;}
.ws40{word-spacing:14.400000px;}
.wsef{word-spacing:14.440320px;}
.wsf4{word-spacing:14.472000px;}
.wse8{word-spacing:14.572800px;}
.wse6{word-spacing:14.639040px;}
.ws77{word-spacing:14.832000px;}
.ws105{word-spacing:15.036480px;}
.ws96{word-spacing:15.048000px;}
.ws5e{word-spacing:15.120000px;}
.wsaf{word-spacing:15.168960px;}
.wsf6{word-spacing:15.192000px;}
.ws3c{word-spacing:15.552000px;}
.ws146{word-spacing:15.768000px;}
.ws3d{word-spacing:15.840000px;}
.ws8f{word-spacing:16.272000px;}
.ws109{word-spacing:16.488000px;}
.ws7f{word-spacing:16.560000px;}
.ws102{word-spacing:16.776000px;}
.ws48{word-spacing:16.992000px;}
.ws8a{word-spacing:17.280000px;}
.ws10c{word-spacing:17.354880px;}
.ws13d{word-spacing:17.496000px;}
.ws8b{word-spacing:17.712000px;}
.ws51{word-spacing:18.000000px;}
.wsee{word-spacing:18.083520px;}
.ws1c{word-spacing:18.432000px;}
.wsc1{word-spacing:18.648000px;}
.ws111{word-spacing:18.679680px;}
.ws1b{word-spacing:18.720000px;}
.wsc0{word-spacing:18.792000px;}
.wsae{word-spacing:18.944640px;}
.ws56{word-spacing:19.152000px;}
.ws104{word-spacing:19.368000px;}
.ws57{word-spacing:19.440000px;}
.wsf2{word-spacing:19.673280px;}
.wsa{word-spacing:19.872000px;}
.wsb{word-spacing:20.160000px;}
.ws13c{word-spacing:20.232000px;}
.ws67{word-spacing:20.592000px;}
.ws68{word-spacing:20.808000px;}
.ws66{word-spacing:20.880000px;}
.ws129{word-spacing:21.240000px;}
.ws3a{word-spacing:21.312000px;}
.ws3b{word-spacing:21.528000px;}
.ws39{word-spacing:21.600000px;}
.wsce{word-spacing:22.032000px;}
.wscd{word-spacing:22.320000px;}
.wsd1{word-spacing:22.752000px;}
.ws9c{word-spacing:23.040000px;}
.ws12b{word-spacing:23.112000px;}
.ws106{word-spacing:23.472000px;}
.ws108{word-spacing:23.688000px;}
.wsa7{word-spacing:23.713920px;}
.ws83{word-spacing:23.760000px;}
.wsd2{word-spacing:23.832000px;}
.ws15{word-spacing:24.192000px;}
.ws14{word-spacing:24.408000px;}
.ws82{word-spacing:24.480000px;}
.wsa0{word-spacing:24.912000px;}
.ws7d{word-spacing:25.200000px;}
.ws127{word-spacing:25.272000px;}
.ws11e{word-spacing:25.344000px;}
.ws116{word-spacing:25.632000px;}
.ws8c{word-spacing:25.920000px;}
.ws13e{word-spacing:26.280000px;}
.wsd4{word-spacing:26.352000px;}
.ws47{word-spacing:26.640000px;}
.ws13f{word-spacing:26.712000px;}
.wsf1{word-spacing:26.856000px;}
.ws46{word-spacing:27.072000px;}
.ws103{word-spacing:27.360000px;}
.wsa1{word-spacing:27.792000px;}
.ws97{word-spacing:28.080000px;}
.wsbf{word-spacing:28.512000px;}
.wsf5{word-spacing:28.584000px;}
.wse2{word-spacing:28.800000px;}
.ws5d{word-spacing:29.232000px;}
.ws10a{word-spacing:29.520000px;}
.ws145{word-spacing:29.592000px;}
.wsa5{word-spacing:29.609280px;}
.wsdd{word-spacing:29.952000px;}
.ws8e{word-spacing:30.240000px;}
.wsdc{word-spacing:30.672000px;}
.wsda{word-spacing:30.888000px;}
.ws12a{word-spacing:30.960000px;}
.wsdb{word-spacing:31.032000px;}
.ws126{word-spacing:31.392000px;}
.ws7b{word-spacing:31.680000px;}
.wsac{word-spacing:32.457600px;}
.ws12c{word-spacing:32.832000px;}
.wsec{word-spacing:33.048000px;}
.wsd8{word-spacing:33.120000px;}
.wsad{word-spacing:33.186240px;}
.ws11c{word-spacing:33.768000px;}
.wsdf{word-spacing:33.840000px;}
.wsd7{word-spacing:33.912000px;}
.wsd6{word-spacing:33.984000px;}
.ws43{word-spacing:34.560000px;}
.ws118{word-spacing:34.643520px;}
.wsca{word-spacing:35.280000px;}
.ws75{word-spacing:36.000000px;}
.wsf0{word-spacing:36.432000px;}
.wsfa{word-spacing:36.720000px;}
.ws142{word-spacing:38.088000px;}
.wse0{word-spacing:39.312000px;}
.wsd5{word-spacing:39.600000px;}
.wse3{word-spacing:40.320000px;}
.wsf9{word-spacing:40.752000px;}
.wse4{word-spacing:40.968000px;}
.ws91{word-spacing:41.040000px;}
.ws112{word-spacing:41.760000px;}
.wse5{word-spacing:43.128000px;}
.wsc9{word-spacing:43.632000px;}
.ws86{word-spacing:45.072000px;}
.ws125{word-spacing:46.800000px;}
.wsa2{word-spacing:47.520000px;}
.wsf8{word-spacing:50.112000px;}
.wsf7{word-spacing:50.400000px;}
.wsc5{word-spacing:51.120000px;}
.ws101{word-spacing:66.816000px;}
._21{margin-left:-27.161280px;}
._8{margin-left:-14.837760px;}
._6{margin-left:-13.242240px;}
._9{margin-left:-11.996640px;}
._5{margin-left:-10.876320px;}
._24{margin-left:-9.540000px;}
._1a{margin-left:-7.971840px;}
._7{margin-left:-6.697440px;}
._a{margin-left:-5.425920px;}
._4{margin-left:-3.987360px;}
._3{margin-left:-2.324160px;}
._0{margin-left:-1.192320px;}
._1{width:1.404000px;}
._e{width:3.280320px;}
._10{width:5.008320px;}
._b{width:6.264000px;}
._1b{width:7.704000px;}
._11{width:8.712000px;}
._13{width:10.372320px;}
._c{width:11.914560px;}
._12{width:12.961440px;}
._18{width:14.616000px;}
._f{width:15.949440px;}
._23{width:19.084320px;}
._2{width:20.180160px;}
._d{width:21.888000px;}
._27{width:23.080320px;}
._20{width:24.120000px;}
._1c{width:25.596000px;}
._19{width:27.036000px;}
._1e{width:28.287360px;}
._1f{width:29.520000px;}
._17{width:31.487040px;}
._1d{width:34.992000px;}
._22{width:36.216000px;}
._16{width:39.384000px;}
._25{width:41.728320px;}
._26{width:42.732000px;}
._15{width:44.424000px;}
._14{width:47.456640px;}
._28{width:51.708960px;}
._29{width:53.064000px;}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.y150{bottom:57.754800px;}
.y175{bottom:57.769200px;}
.y148{bottom:57.776400px;}
.yea{bottom:57.783600px;}
.y45{bottom:57.786480px;}
.ybb{bottom:57.790800px;}
.y14f{bottom:77.908320px;}
.y174{bottom:77.922720px;}
.y147{bottom:77.929920px;}
.ye9{bottom:77.937120px;}
.y44{bottom:77.940000px;}
.yba{bottom:77.944320px;}
.y9c{bottom:110.340000px;}
.y14e{bottom:110.664000px;}
.y173{bottom:110.678400px;}
.y12d{bottom:110.685600px;}
.ye8{bottom:110.692800px;}
.yb9{bottom:114.480000px;}
.y13e{bottom:114.660000px;}
.y83{bottom:115.560000px;}
.y68{bottom:117.360000px;}
.y1df{bottom:122.220000px;}
.y15e{bottom:127.440000px;}
.y1a0{bottom:127.980000px;}
.y9b{bottom:128.887200px;}
.y14d{bottom:129.211200px;}
.y172{bottom:129.225600px;}
.y11a{bottom:129.232800px;}
.ybc{bottom:129.600000px;}
.ye7{bottom:133.020000px;}
.y139{bottom:138.780000px;}
.y43{bottom:140.757120px;}
.y1bc{bottom:141.120000px;}
.y1de{bottom:144.000000px;}
.y130{bottom:145.080000px;}
.y82{bottom:145.800000px;}
.y15f{bottom:147.600000px;}
.y14c{bottom:147.758400px;}
.y176{bottom:147.765600px;}
.y140{bottom:147.772800px;}
.y71{bottom:148.140000px;}
.yf7{bottom:151.560000px;}
.y9a{bottom:155.160000px;}
.y19f{bottom:157.680000px;}
.y157{bottom:157.860000px;}
.ye{bottom:159.150000px;}
.y67{bottom:159.660000px;}
.y2c{bottom:164.160000px;}
.y14b{bottom:166.305600px;}
.y144{bottom:166.312800px;}
.y9d{bottom:166.500000px;}
.yf8{bottom:166.680000px;}
.y138{bottom:169.200000px;}
.ye6{bottom:169.920000px;}
.y13f{bottom:170.100000px;}
.y1bb{bottom:171.540000px;}
.y12f{bottom:175.500000px;}
.y81{bottom:176.220000px;}
.y1dd{bottom:177.840000px;}
.yb8{bottom:181.800000px;}
.y154{bottom:184.845600px;}
.y14a{bottom:184.852800px;}
.y160{bottom:185.040000px;}
.y141{bottom:185.220000px;}
.y13d{bottom:187.560000px;}
.y42{bottom:188.100000px;}
.y99{bottom:188.280000px;}
.y143{bottom:188.640000px;}
.y70{bottom:190.440000px;}
.yd0{bottom:193.860000px;}
.y2b{bottom:194.580000px;}
.y137{bottom:199.440000px;}
.y1dc{bottom:199.800000px;}
.ye5{bottom:200.160000px;}
.y180{bottom:201.420000px;}
.y1ba{bottom:201.780000px;}
.y66{bottom:202.140000px;}
.yf6{bottom:202.304160px;}
.y153{bottom:203.392800px;}
.y145{bottom:203.760000px;}
.y12c{bottom:205.920000px;}
.y80{bottom:206.640000px;}
.y149{bottom:207.180000px;}
.y171{bottom:207.360000px;}
.y119{bottom:208.440000px;}
.yb7{bottom:212.220000px;}
.y19e{bottom:217.260000px;}
.y13c{bottom:217.800000px;}
.yd{bottom:217.875000px;}
.y98{bottom:218.700000px;}
.y151{bottom:222.300000px;}
.ycf{bottom:224.280000px;}
.y2a{bottom:225.000000px;}
.y152{bottom:225.720000px;}
.y136{bottom:229.860000px;}
.yf5{bottom:230.207760px;}
.yee{bottom:230.580000px;}
.y17f{bottom:231.300000px;}
.y1b9{bottom:232.200000px;}
.y41{bottom:232.920000px;}
.y1db{bottom:233.640000px;}
.y65{bottom:235.793520px;}
.y12b{bottom:236.160000px;}
.y7f{bottom:237.060000px;}
.y170{bottom:237.780000px;}
.y118{bottom:238.860000px;}
.y155{bottom:240.840000px;}
.ye4{bottom:242.640000px;}
.y19d{bottom:247.140000px;}
.y13b{bottom:248.220000px;}
.yc8{bottom:248.940000px;}
.yb6{bottom:254.700000px;}
.y1da{bottom:255.420000px;}
.yf4{bottom:258.111360px;}
.y135{bottom:260.280000px;}
.y97{bottom:261.000000px;}
.y1b8{bottom:262.620000px;}
.y64{bottom:265.137840px;}
.y12a{bottom:266.580000px;}
.y29{bottom:267.300000px;}
.y16f{bottom:268.200000px;}
.y117{bottom:269.100000px;}
.ye3{bottom:273.060000px;}
.y40{bottom:275.220000px;}
.yc{bottom:276.555000px;}
.y19c{bottom:276.840000px;}
.y13a{bottom:278.640000px;}
.yc7{bottom:279.360000px;}
.yb5{bottom:284.940000px;}
.yf3{bottom:285.832800px;}
.y1d9{bottom:289.260000px;}
.y134{bottom:290.700000px;}
.y96{bottom:291.420000px;}
.y1b7{bottom:293.040000px;}
.y63{bottom:294.217200px;}
.yce{bottom:297.000000px;}
.y28{bottom:297.720000px;}
.y146{bottom:303.300000px;}
.y19b{bottom:306.720000px;}
.y129{bottom:309.060000px;}
.yb{bottom:309.315000px;}
.yc6{bottom:309.780000px;}
.y16e{bottom:310.500000px;}
.y1d8{bottom:311.220000px;}
.y116{bottom:311.580000px;}
.yf2{bottom:313.736400px;}
.yb4{bottom:315.360000px;}
.y3f{bottom:317.700000px;}
.y133{bottom:320.940000px;}
.y95{bottom:321.660000px;}
.y1b6{bottom:323.280000px;}
.y62{bottom:323.379360px;}
.ycd{bottom:327.420000px;}
.y27{bottom:328.140000px;}
.y1d7{bottom:333.000000px;}
.ydc{bottom:333.720000px;}
.y19a{bottom:336.420000px;}
.y128{bottom:339.300000px;}
.y156{bottom:340.200000px;}
.yf1{bottom:341.640000px;}
.y115{bottom:341.820000px;}
.yb3{bottom:345.780000px;}
.y132{bottom:351.360000px;}
.y94{bottom:352.080000px;}
.y61{bottom:352.723680px;}
.y16d{bottom:352.800000px;}
.y1b5{bottom:353.700000px;}
.ycc{bottom:357.660000px;}
.y26{bottom:358.560000px;}
.y3e{bottom:360.000000px;}
.ydb{bottom:364.140000px;}
.y199{bottom:366.120000px;}
.y1d6{bottom:366.840000px;}
.ya{bottom:368.025000px;}
.y127{bottom:369.720000px;}
.yf0{bottom:370.440000px;}
.y114{bottom:372.240000px;}
.yb2{bottom:376.200000px;}
.y131{bottom:381.780000px;}
.y60{bottom:381.885840px;}
.y93{bottom:382.500000px;}
.y16c{bottom:383.220000px;}
.y1b4{bottom:384.120000px;}
.ycb{bottom:388.080000px;}
.y25{bottom:388.800000px;}
.yda{bottom:394.560000px;}
.y198{bottom:396.000000px;}
.y17c{bottom:400.140000px;}
.y15c{bottom:400.860000px;}
.y3d{bottom:402.300000px;}
.y113{bottom:402.660000px;}
.y5f{bottom:403.297920px;}
.yb1{bottom:406.440000px;}
.y1d5{bottom:410.580000px;}
.y126{bottom:412.200000px;}
.y92{bottom:412.920000px;}
.y16b{bottom:413.640000px;}
.y1b3{bottom:414.540000px;}
.yca{bottom:418.500000px;}
.y24{bottom:419.220000px;}
.yd9{bottom:424.800000px;}
.y197{bottom:425.700000px;}
.y9{bottom:426.705000px;}
.y17b{bottom:430.560000px;}
.y5e{bottom:431.201520px;}
.y15b{bottom:431.280000px;}
.y112{bottom:433.080000px;}
.ye2{bottom:436.860000px;}
.y125{bottom:442.440000px;}
.y91{bottom:443.160000px;}
.y16a{bottom:444.060000px;}
.y1d4{bottom:444.420000px;}
.y3c{bottom:444.780000px;}
.yb0{bottom:448.920000px;}
.y23{bottom:449.640000px;}
.yed{bottom:455.220000px;}
.y196{bottom:455.580000px;}
.y5d{bottom:460.363680px;}
.y17a{bottom:460.800000px;}
.y17e{bottom:461.700000px;}
.y1d3{bottom:466.200000px;}
.yd8{bottom:467.280000px;}
.y124{bottom:472.860000px;}
.y90{bottom:473.580000px;}
.y111{bottom:474.228720px;}
.y1b2{bottom:475.200000px;}
.yaf{bottom:479.160000px;}
.y22{bottom:480.060000px;}
.y195{bottom:485.460000px;}
.yec{bottom:485.640000px;}
.y8{bottom:485.790000px;}
.y169{bottom:486.360000px;}
.y3b{bottom:487.080000px;}
.y5c{bottom:489.708000px;}
.y179{bottom:491.220000px;}
.y17d{bottom:491.940000px;}
.yd7{bottom:497.700000px;}
.y1d2{bottom:500.040000px;}
.y110{bottom:502.132320px;}
.y123{bottom:503.280000px;}
.y8f{bottom:504.000000px;}
.y1b1{bottom:505.620000px;}
.y12e{bottom:509.580000px;}
.y7e{bottom:510.300000px;}
.y194{bottom:515.340000px;}
.yeb{bottom:516.060000px;}
.y168{bottom:516.780000px;}
.y5b{bottom:518.870160px;}
.yae{bottom:521.640000px;}
.y1d1{bottom:522.000000px;}
.y21{bottom:522.360000px;}
.yd6{bottom:527.940000px;}
.y3a{bottom:529.560000px;}
.y10f{bottom:529.853760px;}
.y122{bottom:533.700000px;}
.yc5{bottom:534.420000px;}
.y1b0{bottom:536.040000px;}
.ye1{bottom:540.000000px;}
.y7d{bottom:540.720000px;}
.y1d0{bottom:543.780000px;}
.y7{bottom:544.470000px;}
.y193{bottom:545.220000px;}
.y8e{bottom:546.300000px;}
.y167{bottom:547.200000px;}
.y5a{bottom:548.214480px;}
.yad{bottom:552.060000px;}
.y10e{bottom:557.757360px;}
.yd5{bottom:558.360000px;}
.y121{bottom:563.940000px;}
.y20{bottom:564.660000px;}
.y1af{bottom:566.280000px;}
.ye0{bottom:570.420000px;}
.y39{bottom:571.860000px;}
.y192{bottom:574.920000px;}
.y8d{bottom:576.720000px;}
.y59{bottom:577.376640px;}
.y1cf{bottom:577.620000px;}
.yac{bottom:582.300000px;}
.y7c{bottom:583.200000px;}
.y10d{bottom:585.660960px;}
.yd4{bottom:588.780000px;}
.y166{bottom:589.500000px;}
.y120{bottom:594.360000px;}
.y1f{bottom:595.080000px;}
.y1ae{bottom:596.700000px;}
.y1ce{bottom:599.580000px;}
.ydf{bottom:600.660000px;}
.y6{bottom:603.180000px;}
.y191{bottom:604.620000px;}
.y58{bottom:606.720960px;}
.yc4{bottom:607.140000px;}
.yab{bottom:612.720000px;}
.y7b{bottom:613.440000px;}
.y10c{bottom:613.564560px;}
.y38{bottom:614.160000px;}
.y8c{bottom:619.200000px;}
.y165{bottom:619.920000px;}
.y1cd{bottom:621.360000px;}
.y11f{bottom:624.780000px;}
.y15a{bottom:625.500000px;}
.y1ad{bottom:627.120000px;}
.yef{bottom:631.080000px;}
.y190{bottom:634.500000px;}
.y57{bottom:635.883120px;}
.y5{bottom:635.940000px;}
.y1e{bottom:637.560000px;}
.y10b{bottom:641.286000px;}
.yaa{bottom:643.140000px;}
.y7a{bottom:643.860000px;}
.y8b{bottom:649.440000px;}
.y11e{bottom:655.200000px;}
.y159{bottom:655.920000px;}
.y37{bottom:656.640000px;}
.y56{bottom:657.129600px;}
.y1ac{bottom:657.540000px;}
.yd3{bottom:661.500000px;}
.y164{bottom:662.220000px;}
.y18f{bottom:664.200000px;}
.y1d{bottom:667.800000px;}
.y10a{bottom:669.189600px;}
.ya9{bottom:673.560000px;}
.y1cc{bottom:677.160000px;}
.y8a{bottom:679.860000px;}
.y55{bottom:685.215360px;}
.y11d{bottom:685.440000px;}
.y79{bottom:686.160000px;}
.y1ab{bottom:687.780000px;}
.yd2{bottom:691.920000px;}
.y18e{bottom:694.260000px;}
.y4{bottom:696.780000px;}
.y109{bottom:697.093200px;}
.y142{bottom:698.220000px;}
.y36{bottom:698.940000px;}
.ya8{bottom:703.800000px;}
.y163{bottom:704.700000px;}
.y1c{bottom:710.280000px;}
.y1cb{bottom:711.000000px;}
.y54{bottom:714.377520px;}
.y11c{bottom:715.860000px;}
.y78{bottom:716.580000px;}
.y1aa{bottom:718.200000px;}
.yc3{bottom:722.160000px;}
.y18d{bottom:723.960000px;}
.y108{bottom:724.814640px;}
.y158{bottom:728.640000px;}
.y1ca{bottom:732.780000px;}
.ya7{bottom:734.220000px;}
.y3{bottom:737.130000px;}
.y1b{bottom:740.700000px;}
.y35{bottom:741.420000px;}
.y53{bottom:743.721840px;}
.y11b{bottom:746.280000px;}
.y77{bottom:747.000000px;}
.y1a9{bottom:748.620000px;}
.yc2{bottom:752.580000px;}
.y107{bottom:752.718240px;}
.y18c{bottom:753.840000px;}
.y178{bottom:759.060000px;}
.ya6{bottom:764.640000px;}
.y1c9{bottom:766.620000px;}
.y1a{bottom:770.940000px;}
.y6f{bottom:771.660000px;}
.y52{bottom:772.884000px;}
.yc9{bottom:776.700000px;}
.y76{bottom:777.420000px;}
.y1a8{bottom:779.040000px;}
.y106{bottom:780.621840px;}
.yc1{bottom:783.000000px;}
.y18b{bottom:783.540000px;}
.y34{bottom:783.720000px;}
.y1e9{bottom:786.060000px;}
.y1c8{bottom:788.580000px;}
.y177{bottom:789.300000px;}
.y51{bottom:794.130480px;}
.yde{bottom:795.060000px;}
.y2{bottom:795.090000px;}
.y19{bottom:801.360000px;}
.y6e{bottom:802.080000px;}
.ya5{bottom:806.940000px;}
.y162{bottom:807.660000px;}
.y105{bottom:808.343280px;}
.y1a7{bottom:809.280000px;}
.y1c7{bottom:810.360000px;}
.y1{bottom:812.010000px;}
.yc0{bottom:813.420000px;}
.y1e8{bottom:816.480000px;}
.y75{bottom:819.720000px;}
.y50{bottom:822.216240px;}
.ydd{bottom:825.300000px;}
.y33{bottom:826.200000px;}
.y89{bottom:831.780000px;}
.y104{bottom:836.246880px;}
.ya4{bottom:837.360000px;}
.y1a6{bottom:839.700000px;}
.y18a{bottom:843.120000px;}
.y18{bottom:843.660000px;}
.y1c6{bottom:844.200000px;}
.y6d{bottom:844.560000px;}
.y74{bottom:850.140000px;}
.y4f{bottom:851.378400px;}
.ybf{bottom:855.720000px;}
.y1e7{bottom:858.960000px;}
.y88{bottom:862.200000px;}
.y103{bottom:864.150480px;}
.y1c5{bottom:866.160000px;}
.ya3{bottom:867.780000px;}
.y32{bottom:868.500000px;}
.y1a5{bottom:870.120000px;}
.y189{bottom:873.000000px;}
.y17{bottom:874.080000px;}
.y73{bottom:880.560000px;}
.y4e{bottom:880.722720px;}
.ybe{bottom:886.140000px;}
.y6c{bottom:886.860000px;}
.y1c4{bottom:887.940000px;}
.y102{bottom:891.871920px;}
.y15d{bottom:892.440000px;}
.ya2{bottom:898.200000px;}
.y1a4{bottom:900.540000px;}
.y1e6{bottom:901.260000px;}
.y188{bottom:902.700000px;}
.y16{bottom:904.500000px;}
.y4d{bottom:909.884880px;}
.y31{bottom:910.800000px;}
.ybd{bottom:916.560000px;}
.y101{bottom:919.775520px;}
.y1c3{bottom:921.780000px;}
.y161{bottom:922.860000px;}
.ya1{bottom:928.440000px;}
.y6b{bottom:929.160000px;}
.y1a3{bottom:930.780000px;}
.y187{bottom:932.400000px;}
.y15{bottom:934.920000px;}
.y4c{bottom:939.047040px;}
.y72{bottom:941.220000px;}
.y1c2{bottom:943.560000px;}
.yd1{bottom:946.800000px;}
.y100{bottom:947.679120px;}
.y30{bottom:953.280000px;}
.ya0{bottom:958.860000px;}
.y1a2{bottom:961.200000px;}
.y186{bottom:962.280000px;}
.y14{bottom:965.160000px;}
.y1c1{bottom:965.520000px;}
.y4b{bottom:968.391360px;}
.y6a{bottom:971.640000px;}
.yff{bottom:975.400560px;}
.y87{bottom:977.220000px;}
.y1e5{bottom:986.040000px;}
.y9f{bottom:989.280000px;}
.y1a1{bottom:991.620000px;}
.y185{bottom:992.160000px;}
.y13{bottom:995.580000px;}
.y4a{bottom:997.553520px;}
.y1c0{bottom:999.360000px;}
.yfe{bottom:1003.304160px;}
.y86{bottom:1007.640000px;}
.y69{bottom:1013.940000px;}
.y9e{bottom:1019.700000px;}
.y1e4{bottom:1019.880000px;}
.y1bf{bottom:1021.140000px;}
.y184{bottom:1022.040000px;}
.y12{bottom:1026.000000px;}
.y49{bottom:1026.897840px;}
.yfd{bottom:1031.207760px;}
.y2f{bottom:1038.060000px;}
.y1e3{bottom:1041.660000px;}
.y85{bottom:1049.940000px;}
.y183{bottom:1051.740000px;}
.y1be{bottom:1054.980000px;}
.y48{bottom:1056.060000px;}
.y11{bottom:1056.420000px;}
.yfc{bottom:1059.111360px;}
.y1e2{bottom:1063.620000px;}
.y2e{bottom:1068.300000px;}
.y1bd{bottom:1076.940000px;}
.y84{bottom:1080.360000px;}
.y47{bottom:1080.540000px;}
.y182{bottom:1081.620000px;}
.yfb{bottom:1086.832800px;}
.y1e1{bottom:1097.460000px;}
.y10{bottom:1098.720000px;}
.y2d{bottom:1110.780000px;}
.y181{bottom:1111.320000px;}
.yfa{bottom:1114.736400px;}
.y1e0{bottom:1119.240000px;}
.y46{bottom:1138.860000px;}
.yf{bottom:1141.200000px;}
.yf9{bottom:1142.640000px;}
.h10{height:25.913672px;}
.h12{height:39.830273px;}
.h13{height:40.317187px;}
.h9{height:44.149219px;}
.he{height:47.988281px;}
.h2{height:48.761719px;}
.h11{height:55.437187px;}
.hc{height:55.501875px;}
.h6{height:60.257812px;}
.h7{height:60.328125px;}
.h14{height:65.188931px;}
.hf{height:65.189531px;}
.h3{height:65.884219px;}
.h8{height:70.583906px;}
.hd{height:75.093750px;}
.hb{height:78.973945px;}
.h5{height:90.492188px;}
.h4{height:111.003750px;}
.ha{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.w5{width:892.965000px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:127.620000px;}
.xa{left:128.951987px;}
.x5{left:137.591987px;}
.x11{left:144.180000px;}
.x13{left:154.620000px;}
.x12{left:160.590960px;}
.xb{left:180.434987px;}
.x14{left:181.620000px;}
.x26{left:184.860000px;}
.x1c{left:189.720000px;}
.x27{left:191.880000px;}
.x1b{left:196.740000px;}
.x15{left:207.720000px;}
.x9{left:210.674987px;}
.x3{left:214.304987px;}
.x19{left:234.720000px;}
.x6{left:247.424987px;}
.x1a{left:261.720000px;}
.x41{left:276.120000px;}
.x42{left:286.020000px;}
.x20{left:288.540000px;}
.x21{left:289.620000px;}
.x24{left:302.220000px;}
.x8{left:304.709987px;}
.x18{left:309.780000px;}
.x3c{left:311.220000px;}
.x57{left:312.840000px;}
.x58{left:319.140000px;}
.x3d{left:321.480000px;}
.x2b{left:326.880000px;}
.x25{left:329.220000px;}
.xd{left:334.949987px;}
.xe{left:337.109987px;}
.x59{left:339.300000px;}
.x3e{left:342.180000px;}
.x22{left:343.620000px;}
.x5a{left:348.480000px;}
.x4c{left:349.560000px;}
.x3f{left:350.640000px;}
.x40{left:355.860000px;}
.x17{left:356.940000px;}
.x4d{left:358.920000px;}
.x4{left:361.229987px;}
.x32{left:362.340000px;}
.xc{left:363.749987px;}
.x28{left:368.640000px;}
.x1e{left:370.620000px;}
.x5b{left:376.740000px;}
.x4e{left:383.400000px;}
.x43{left:389.700000px;}
.x5c{left:390.960000px;}
.x4f{left:394.740000px;}
.x44{left:401.220000px;}
.x52{left:410.040000px;}
.x1d{left:419.220000px;}
.x33{left:424.260000px;}
.x50{left:427.500000px;}
.x45{left:433.080000px;}
.x51{left:437.760000px;}
.x2c{left:439.380000px;}
.x7{left:446.939987px;}
.x2d{left:449.280000px;}
.x1f{left:451.620000px;}
.x53{left:459.540000px;}
.x46{left:461.160000px;}
.x23{left:469.440000px;}
.x29{left:471.060000px;}
.x5d{left:478.800000px;}
.x2a{left:482.940000px;}
.x54{left:484.740000px;}
.x5e{left:491.760000px;}
.x55{left:493.200000px;}
.x34{left:499.140000px;}
.x47{left:504.900000px;}
.x35{left:510.660000px;}
.x48{left:515.340000px;}
.x2e{left:520.560000px;}
.x2f{left:533.880000px;}
.x5f{left:548.280000px;}
.x30{left:557.100000px;}
.x36{left:559.440000px;}
.x31{left:565.380000px;}
.x37{left:571.680000px;}
.x49{left:573.300000px;}
.x4a{left:587.160000px;}
.x38{left:593.820000px;}
.x39{left:601.740000px;}
.x56{left:635.040000px;}
.x3a{left:644.580000px;}
.x3b{left:656.100000px;}
.x1{left:666.644987px;}
.x4b{left:684.720000px;}
.x2{left:717.764987px;}
.x16{left:748.620000px;}
.x10{left:757.080000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls93{letter-spacing:-5.760000pt;}
.ls94{letter-spacing:-2.560000pt;}
.lsa1{letter-spacing:-1.600000pt;}
.lsa0{letter-spacing:-1.472000pt;}
.lsa2{letter-spacing:-1.344000pt;}
.ls9f{letter-spacing:-1.280000pt;}
.ls92{letter-spacing:-1.216000pt;}
.lsa7{letter-spacing:-1.152000pt;}
.lsa3{letter-spacing:-1.024000pt;}
.ls69{letter-spacing:-0.960000pt;}
.ls49{letter-spacing:-0.942080pt;}
.ls91{letter-spacing:-0.832000pt;}
.ls88{letter-spacing:-0.824320pt;}
.ls44{letter-spacing:-0.706560pt;}
.ls6d{letter-spacing:-0.704000pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls4f{letter-spacing:-0.588800pt;}
.ls25{letter-spacing:-0.576000pt;}
.ls17{letter-spacing:-0.529920pt;}
.ls48{letter-spacing:-0.512000pt;}
.ls33{letter-spacing:-0.384000pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.294400pt;}
.ls67{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.255360pt;}
.ls1c{letter-spacing:-0.235520pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.176640pt;}
.ls37{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.117760pt;}
.ls51{letter-spacing:-0.111360pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.058880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.058880pt;}
.ls7{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.117760pt;}
.ls4{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.129536pt;}
.ls2b{letter-spacing:0.154880pt;}
.ls8{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.204800pt;}
.ls1b{letter-spacing:0.235520pt;}
.ls5{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.294400pt;}
.ls1{letter-spacing:0.320000pt;}
.ls61{letter-spacing:0.326400pt;}
.ls2{letter-spacing:0.640000pt;}
.ls62{letter-spacing:0.647680pt;}
.ls3b{letter-spacing:0.704000pt;}
.lsb{letter-spacing:0.765440pt;}
.ls50{letter-spacing:1.280000pt;}
.ls3a{letter-spacing:1.920000pt;}
.ls53{letter-spacing:1.943040pt;}
.ls2e{letter-spacing:2.560000pt;}
.ls78{letter-spacing:2.572800pt;}
.lsa5{letter-spacing:2.816000pt;}
.ls43{letter-spacing:3.179520pt;}
.ls26{letter-spacing:3.200000pt;}
.ls4e{letter-spacing:3.827200pt;}
.ls21{letter-spacing:3.840000pt;}
.lsa6{letter-spacing:3.904000pt;}
.ls66{letter-spacing:4.474880pt;}
.ls52{letter-spacing:4.480000pt;}
.ls36{letter-spacing:5.113600pt;}
.ls32{letter-spacing:5.120000pt;}
.ls6a{letter-spacing:5.753600pt;}
.ls6c{letter-spacing:5.760000pt;}
.ls77{letter-spacing:5.770240pt;}
.ls2f{letter-spacing:6.400000pt;}
.ls72{letter-spacing:6.417920pt;}
.ls6e{letter-spacing:7.033600pt;}
.ls46{letter-spacing:7.040000pt;}
.ls86{letter-spacing:7.065600pt;}
.ls35{letter-spacing:7.673600pt;}
.ls9{letter-spacing:7.680000pt;}
.ls4a{letter-spacing:8.313600pt;}
.ls3e{letter-spacing:8.320000pt;}
.ls3c{letter-spacing:8.960000pt;}
.ls7b{letter-spacing:9.587200pt;}
.ls3f{letter-spacing:9.600000pt;}
.ls57{letter-spacing:10.240000pt;}
.ls89{letter-spacing:10.245120pt;}
.ls39{letter-spacing:10.880000pt;}
.ls79{letter-spacing:10.892800pt;}
.ls85{letter-spacing:11.520000pt;}
.ls47{letter-spacing:11.540480pt;}
.ls2a{letter-spacing:12.160000pt;}
.ls63{letter-spacing:12.776960pt;}
.ls22{letter-spacing:12.800000pt;}
.ls73{letter-spacing:13.424640pt;}
.ls2d{letter-spacing:13.440000pt;}
.ls64{letter-spacing:13.568000pt;}
.ls28{letter-spacing:14.080000pt;}
.ls40{letter-spacing:14.720000pt;}
.ls7c{letter-spacing:14.848000pt;}
.ls95{letter-spacing:15.360000pt;}
.ls7a{letter-spacing:15.367680pt;}
.ls76{letter-spacing:16.000000pt;}
.ls68{letter-spacing:16.015360pt;}
.ls75{letter-spacing:16.640000pt;}
.ls7e{letter-spacing:16.663040pt;}
.ls6b{letter-spacing:17.251840pt;}
.ls29{letter-spacing:17.280000pt;}
.ls23{letter-spacing:17.920000pt;}
.ls5d{letter-spacing:18.048000pt;}
.ls34{letter-spacing:18.560000pt;}
.ls99{letter-spacing:19.200000pt;}
.ls55{letter-spacing:19.328000pt;}
.ls9b{letter-spacing:19.840000pt;}
.ls84{letter-spacing:19.968000pt;}
.ls59{letter-spacing:20.480000pt;}
.ls9a{letter-spacing:21.120000pt;}
.ls3{letter-spacing:21.760000pt;}
.ls7f{letter-spacing:22.400000pt;}
.ls96{letter-spacing:23.040000pt;}
.ls97{letter-spacing:24.320000pt;}
.ls45{letter-spacing:24.960000pt;}
.ls80{letter-spacing:25.088000pt;}
.ls81{letter-spacing:25.600000pt;}
.ls87{letter-spacing:25.728000pt;}
.ls83{letter-spacing:26.240000pt;}
.ls58{letter-spacing:26.368000pt;}
.ls7d{letter-spacing:26.880000pt;}
.ls5b{letter-spacing:27.008000pt;}
.ls5c{letter-spacing:27.520000pt;}
.ls3d{letter-spacing:28.288000pt;}
.lsa4{letter-spacing:28.800000pt;}
.ls8f{letter-spacing:29.440000pt;}
.ls82{letter-spacing:30.735360pt;}
.ls56{letter-spacing:30.848000pt;}
.ls98{letter-spacing:31.360000pt;}
.ls27{letter-spacing:31.488000pt;}
.ls38{letter-spacing:32.000000pt;}
.ls8a{letter-spacing:32.128000pt;}
.ls90{letter-spacing:32.768000pt;}
.ls5e{letter-spacing:35.200000pt;}
.ls8c{letter-spacing:35.328000pt;}
.ls20{letter-spacing:35.968000pt;}
.ls71{letter-spacing:37.248000pt;}
.ls6f{letter-spacing:37.888000pt;}
.ls54{letter-spacing:39.040000pt;}
.ls41{letter-spacing:39.168000pt;}
.ls4c{letter-spacing:42.240000pt;}
.ls5a{letter-spacing:42.368000pt;}
.ls8b{letter-spacing:43.648000pt;}
.ls70{letter-spacing:44.800000pt;}
.ls9c{letter-spacing:45.440000pt;}
.ls9e{letter-spacing:46.080000pt;}
.ls9d{letter-spacing:46.720000pt;}
.ls8d{letter-spacing:49.408000pt;}
.ls4d{letter-spacing:58.368000pt;}
.lsc{letter-spacing:60.940800pt;}
.ls74{letter-spacing:62.208000pt;}
.lsa{letter-spacing:65.415680pt;}
.ls5f{letter-spacing:71.808000pt;}
.lse{letter-spacing:76.956160pt;}
.ls4b{letter-spacing:80.768000pt;}
.lsd{letter-spacing:81.431040pt;}
.ls65{letter-spacing:82.688000pt;}
.ls30{letter-spacing:85.248000pt;}
.ls11{letter-spacing:93.560320pt;}
.ls42{letter-spacing:94.208000pt;}
.lsf{letter-spacing:97.387520pt;}
.ls13{letter-spacing:100.625920pt;}
.ls12{letter-spacing:103.805440pt;}
.ls8e{letter-spacing:125.568000pt;}
.ls60{letter-spacing:174.208000pt;}
.ws1{word-spacing:-96.320000pt;}
.ws0{word-spacing:-29.440000pt;}
.ws137{word-spacing:-20.480000pt;}
.ws139{word-spacing:-19.904000pt;}
.ws20{word-spacing:-18.981760pt;}
.ws138{word-spacing:-18.816000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws2e{word-spacing:-16.192000pt;}
.ws5a{word-spacing:-16.128000pt;}
.ws30{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws2d{word-spacing:-15.936000pt;}
.ws65{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.wse9{word-spacing:-15.744000pt;}
.ws2f{word-spacing:-15.680000pt;}
.ws11d{word-spacing:-15.616000pt;}
.ws95{word-spacing:-15.488000pt;}
.ws4a{word-spacing:-15.424000pt;}
.ws100{word-spacing:-15.360000pt;}
.ws131{word-spacing:-15.296000pt;}
.ws130{word-spacing:-15.168000pt;}
.ws12f{word-spacing:-15.040000pt;}
.ws136{word-spacing:-14.976000pt;}
.ws13a{word-spacing:-14.848000pt;}
.ws9e{word-spacing:-14.837760pt;}
.ws12d{word-spacing:-14.784000pt;}
.ws22{word-spacing:-14.778880pt;}
.ws9f{word-spacing:-14.720000pt;}
.ws24{word-spacing:-14.661120pt;}
.ws135{word-spacing:-14.656000pt;}
.ws117{word-spacing:-14.543360pt;}
.ws133{word-spacing:-14.528000pt;}
.ws9d{word-spacing:-14.484480pt;}
.ws21{word-spacing:-14.425600pt;}
.ws134{word-spacing:-14.400000pt;}
.ws23{word-spacing:-14.190080pt;}
.ws120{word-spacing:-13.895680pt;}
.ws25{word-spacing:-13.542400pt;}
.ws12e{word-spacing:-10.240000pt;}
.ws49{word-spacing:-9.280000pt;}
.wsaa{word-spacing:-9.168640pt;}
.ws4b{word-spacing:-7.810560pt;}
.ws59{word-spacing:-0.942080pt;}
.ws4f{word-spacing:-0.896000pt;}
.ws31{word-spacing:-0.704000pt;}
.wsc2{word-spacing:-0.640000pt;}
.ws64{word-spacing:-0.588800pt;}
.wsff{word-spacing:-0.471040pt;}
.ws143{word-spacing:-0.320000pt;}
.wsa8{word-spacing:-0.294400pt;}
.wsc{word-spacing:-0.256000pt;}
.ws16{word-spacing:-0.192000pt;}
.ws6{word-spacing:-0.128000pt;}
.ws2c{word-spacing:-0.117760pt;}
.ws9{word-spacing:-0.064000pt;}
.ws2b{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
.ws28{word-spacing:0.058880pt;}
.ws34{word-spacing:0.064000pt;}
.ws26{word-spacing:0.117760pt;}
.ws6e{word-spacing:0.128000pt;}
.ws27{word-spacing:0.176640pt;}
.ws33{word-spacing:0.192000pt;}
.ws2a{word-spacing:0.235520pt;}
.ws110{word-spacing:0.256000pt;}
.ws29{word-spacing:0.294400pt;}
.ws55{word-spacing:0.320000pt;}
.ws7{word-spacing:0.384000pt;}
.ws38{word-spacing:0.576000pt;}
.wsa9{word-spacing:0.588800pt;}
.ws8{word-spacing:0.640000pt;}
.ws72{word-spacing:0.704000pt;}
.ws94{word-spacing:0.706560pt;}
.wscf{word-spacing:0.768000pt;}
.wsbc{word-spacing:0.824320pt;}
.ws132{word-spacing:0.832000pt;}
.ws9b{word-spacing:0.942080pt;}
.wsed{word-spacing:0.960000pt;}
.ws1d{word-spacing:1.024000pt;}
.ws3e{word-spacing:1.216000pt;}
.ws8d{word-spacing:1.280000pt;}
.wsde{word-spacing:1.344000pt;}
.wsb4{word-spacing:1.354240pt;}
.ws79{word-spacing:1.408000pt;}
.wsd3{word-spacing:1.472000pt;}
.ws13b{word-spacing:1.600000pt;}
.ws11{word-spacing:1.664000pt;}
.ws76{word-spacing:1.856000pt;}
.wsb7{word-spacing:1.884160pt;}
.ws17{word-spacing:1.920000pt;}
.wsbe{word-spacing:1.984000pt;}
.wsc7{word-spacing:2.001920pt;}
.wsbd{word-spacing:2.048000pt;}
.ws7a{word-spacing:2.112000pt;}
.wsf3{word-spacing:2.119680pt;}
.wsb6{word-spacing:2.178560pt;}
.ws12{word-spacing:2.304000pt;}
.ws60{word-spacing:2.496000pt;}
.ws92{word-spacing:2.531840pt;}
.ws45{word-spacing:2.560000pt;}
.ws128{word-spacing:2.624000pt;}
.wsfe{word-spacing:2.649600pt;}
.ws4d{word-spacing:2.944000pt;}
.ws11b{word-spacing:3.120640pt;}
.ws6d{word-spacing:3.136000pt;}
.ws4c{word-spacing:3.200000pt;}
.ws93{word-spacing:3.238400pt;}
.ws7c{word-spacing:3.264000pt;}
.ws90{word-spacing:3.328000pt;}
.ws107{word-spacing:3.356160pt;}
.ws35{word-spacing:3.584000pt;}
.ws11a{word-spacing:3.709440pt;}
.ws119{word-spacing:3.768320pt;}
.ws74{word-spacing:3.776000pt;}
.ws36{word-spacing:3.840000pt;}
.wsa6{word-spacing:3.886080pt;}
.ws73{word-spacing:3.904000pt;}
.ws11f{word-spacing:3.968000pt;}
.wsc8{word-spacing:4.062720pt;}
.ws114{word-spacing:4.096000pt;}
.wseb{word-spacing:4.180480pt;}
.ws13{word-spacing:4.224000pt;}
.ws85{word-spacing:4.416000pt;}
.ws58{word-spacing:4.480000pt;}
.wsbb{word-spacing:4.533760pt;}
.wsc6{word-spacing:4.544000pt;}
.wsea{word-spacing:4.651520pt;}
.ws63{word-spacing:4.864000pt;}
.ws32{word-spacing:5.056000pt;}
.ws10f{word-spacing:5.063680pt;}
.ws5f{word-spacing:5.120000pt;}
.wse1{word-spacing:5.184000pt;}
.ws1a{word-spacing:5.504000pt;}
.ws10d{word-spacing:5.652480pt;}
.ws84{word-spacing:5.696000pt;}
.wsfd{word-spacing:5.711360pt;}
.ws5c{word-spacing:5.760000pt;}
.wsd9{word-spacing:5.824000pt;}
.ws10b{word-spacing:5.829120pt;}
.wsb3{word-spacing:5.946880pt;}
.ws10e{word-spacing:6.064640pt;}
.ws10{word-spacing:6.144000pt;}
.ws62{word-spacing:6.336000pt;}
.wsb2{word-spacing:6.359040pt;}
.ws7e{word-spacing:6.400000pt;}
.wsfb{word-spacing:6.476800pt;}
.ws69{word-spacing:6.528000pt;}
.wsfc{word-spacing:6.594560pt;}
.wsd{word-spacing:6.784000pt;}
.ws98{word-spacing:6.976000pt;}
.ws124{word-spacing:7.006720pt;}
.ws5b{word-spacing:7.040000pt;}
.ws3f{word-spacing:7.104000pt;}
.wsb0{word-spacing:7.124480pt;}
.wsb1{word-spacing:7.242240pt;}
.ws1f{word-spacing:7.424000pt;}
.wsab{word-spacing:7.595520pt;}
.ws1e{word-spacing:7.616000pt;}
.ws42{word-spacing:7.680000pt;}
.ws144{word-spacing:7.744000pt;}
.ws80{word-spacing:7.808000pt;}
.ws4e{word-spacing:8.064000pt;}
.ws78{word-spacing:8.256000pt;}
.ws52{word-spacing:8.320000pt;}
.ws87{word-spacing:8.448000pt;}
.ws113{word-spacing:8.576000pt;}
.ws19{word-spacing:8.704000pt;}
.ws6f{word-spacing:8.896000pt;}
.ws18{word-spacing:8.960000pt;}
.ws70{word-spacing:9.024000pt;}
.ws71{word-spacing:9.088000pt;}
.wsb5{word-spacing:9.126400pt;}
.ws89{word-spacing:9.344000pt;}
.ws88{word-spacing:9.536000pt;}
.ws41{word-spacing:9.600000pt;}
.ws141{word-spacing:9.664000pt;}
.ws140{word-spacing:9.920000pt;}
.ws44{word-spacing:9.984000pt;}
.wscb{word-spacing:10.176000pt;}
.wscc{word-spacing:10.240000pt;}
.wsc3{word-spacing:10.304000pt;}
.ws122{word-spacing:10.421760pt;}
.ws6c{word-spacing:10.624000pt;}
.ws54{word-spacing:10.816000pt;}
.ws53{word-spacing:10.880000pt;}
.wsc4{word-spacing:10.944000pt;}
.wsb8{word-spacing:10.951680pt;}
.ws6a{word-spacing:11.008000pt;}
.wsb9{word-spacing:11.069440pt;}
.ws6b{word-spacing:11.072000pt;}
.ws9a{word-spacing:11.246080pt;}
.ws37{word-spacing:11.264000pt;}
.ws81{word-spacing:11.456000pt;}
.ws61{word-spacing:11.520000pt;}
.ws99{word-spacing:11.717120pt;}
.wsf{word-spacing:11.904000pt;}
.ws121{word-spacing:12.096000pt;}
.wsa3{word-spacing:12.129280pt;}
.wse{word-spacing:12.160000pt;}
.ws115{word-spacing:12.224000pt;}
.wsba{word-spacing:12.247040pt;}
.wsa4{word-spacing:12.364800pt;}
.wse7{word-spacing:12.482560pt;}
.ws50{word-spacing:12.544000pt;}
.ws123{word-spacing:12.718080pt;}
.wsd0{word-spacing:12.736000pt;}
.ws40{word-spacing:12.800000pt;}
.wsef{word-spacing:12.835840pt;}
.wsf4{word-spacing:12.864000pt;}
.wse8{word-spacing:12.953600pt;}
.wse6{word-spacing:13.012480pt;}
.ws77{word-spacing:13.184000pt;}
.ws105{word-spacing:13.365760pt;}
.ws96{word-spacing:13.376000pt;}
.ws5e{word-spacing:13.440000pt;}
.wsaf{word-spacing:13.483520pt;}
.wsf6{word-spacing:13.504000pt;}
.ws3c{word-spacing:13.824000pt;}
.ws146{word-spacing:14.016000pt;}
.ws3d{word-spacing:14.080000pt;}
.ws8f{word-spacing:14.464000pt;}
.ws109{word-spacing:14.656000pt;}
.ws7f{word-spacing:14.720000pt;}
.ws102{word-spacing:14.912000pt;}
.ws48{word-spacing:15.104000pt;}
.ws8a{word-spacing:15.360000pt;}
.ws10c{word-spacing:15.426560pt;}
.ws13d{word-spacing:15.552000pt;}
.ws8b{word-spacing:15.744000pt;}
.ws51{word-spacing:16.000000pt;}
.wsee{word-spacing:16.074240pt;}
.ws1c{word-spacing:16.384000pt;}
.wsc1{word-spacing:16.576000pt;}
.ws111{word-spacing:16.604160pt;}
.ws1b{word-spacing:16.640000pt;}
.wsc0{word-spacing:16.704000pt;}
.wsae{word-spacing:16.839680pt;}
.ws56{word-spacing:17.024000pt;}
.ws104{word-spacing:17.216000pt;}
.ws57{word-spacing:17.280000pt;}
.wsf2{word-spacing:17.487360pt;}
.wsa{word-spacing:17.664000pt;}
.wsb{word-spacing:17.920000pt;}
.ws13c{word-spacing:17.984000pt;}
.ws67{word-spacing:18.304000pt;}
.ws68{word-spacing:18.496000pt;}
.ws66{word-spacing:18.560000pt;}
.ws129{word-spacing:18.880000pt;}
.ws3a{word-spacing:18.944000pt;}
.ws3b{word-spacing:19.136000pt;}
.ws39{word-spacing:19.200000pt;}
.wsce{word-spacing:19.584000pt;}
.wscd{word-spacing:19.840000pt;}
.wsd1{word-spacing:20.224000pt;}
.ws9c{word-spacing:20.480000pt;}
.ws12b{word-spacing:20.544000pt;}
.ws106{word-spacing:20.864000pt;}
.ws108{word-spacing:21.056000pt;}
.wsa7{word-spacing:21.079040pt;}
.ws83{word-spacing:21.120000pt;}
.wsd2{word-spacing:21.184000pt;}
.ws15{word-spacing:21.504000pt;}
.ws14{word-spacing:21.696000pt;}
.ws82{word-spacing:21.760000pt;}
.wsa0{word-spacing:22.144000pt;}
.ws7d{word-spacing:22.400000pt;}
.ws127{word-spacing:22.464000pt;}
.ws11e{word-spacing:22.528000pt;}
.ws116{word-spacing:22.784000pt;}
.ws8c{word-spacing:23.040000pt;}
.ws13e{word-spacing:23.360000pt;}
.wsd4{word-spacing:23.424000pt;}
.ws47{word-spacing:23.680000pt;}
.ws13f{word-spacing:23.744000pt;}
.wsf1{word-spacing:23.872000pt;}
.ws46{word-spacing:24.064000pt;}
.ws103{word-spacing:24.320000pt;}
.wsa1{word-spacing:24.704000pt;}
.ws97{word-spacing:24.960000pt;}
.wsbf{word-spacing:25.344000pt;}
.wsf5{word-spacing:25.408000pt;}
.wse2{word-spacing:25.600000pt;}
.ws5d{word-spacing:25.984000pt;}
.ws10a{word-spacing:26.240000pt;}
.ws145{word-spacing:26.304000pt;}
.wsa5{word-spacing:26.319360pt;}
.wsdd{word-spacing:26.624000pt;}
.ws8e{word-spacing:26.880000pt;}
.wsdc{word-spacing:27.264000pt;}
.wsda{word-spacing:27.456000pt;}
.ws12a{word-spacing:27.520000pt;}
.wsdb{word-spacing:27.584000pt;}
.ws126{word-spacing:27.904000pt;}
.ws7b{word-spacing:28.160000pt;}
.wsac{word-spacing:28.851200pt;}
.ws12c{word-spacing:29.184000pt;}
.wsec{word-spacing:29.376000pt;}
.wsd8{word-spacing:29.440000pt;}
.wsad{word-spacing:29.498880pt;}
.ws11c{word-spacing:30.016000pt;}
.wsdf{word-spacing:30.080000pt;}
.wsd7{word-spacing:30.144000pt;}
.wsd6{word-spacing:30.208000pt;}
.ws43{word-spacing:30.720000pt;}
.ws118{word-spacing:30.794240pt;}
.wsca{word-spacing:31.360000pt;}
.ws75{word-spacing:32.000000pt;}
.wsf0{word-spacing:32.384000pt;}
.wsfa{word-spacing:32.640000pt;}
.ws142{word-spacing:33.856000pt;}
.wse0{word-spacing:34.944000pt;}
.wsd5{word-spacing:35.200000pt;}
.wse3{word-spacing:35.840000pt;}
.wsf9{word-spacing:36.224000pt;}
.wse4{word-spacing:36.416000pt;}
.ws91{word-spacing:36.480000pt;}
.ws112{word-spacing:37.120000pt;}
.wse5{word-spacing:38.336000pt;}
.wsc9{word-spacing:38.784000pt;}
.ws86{word-spacing:40.064000pt;}
.ws125{word-spacing:41.600000pt;}
.wsa2{word-spacing:42.240000pt;}
.wsf8{word-spacing:44.544000pt;}
.wsf7{word-spacing:44.800000pt;}
.wsc5{word-spacing:45.440000pt;}
.ws101{word-spacing:59.392000pt;}
._21{margin-left:-24.143360pt;}
._8{margin-left:-13.189120pt;}
._6{margin-left:-11.770880pt;}
._9{margin-left:-10.663680pt;}
._5{margin-left:-9.667840pt;}
._24{margin-left:-8.480000pt;}
._1a{margin-left:-7.086080pt;}
._7{margin-left:-5.953280pt;}
._a{margin-left:-4.823040pt;}
._4{margin-left:-3.544320pt;}
._3{margin-left:-2.065920pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.248000pt;}
._e{width:2.915840pt;}
._10{width:4.451840pt;}
._b{width:5.568000pt;}
._1b{width:6.848000pt;}
._11{width:7.744000pt;}
._13{width:9.219840pt;}
._c{width:10.590720pt;}
._12{width:11.521280pt;}
._18{width:12.992000pt;}
._f{width:14.177280pt;}
._23{width:16.963840pt;}
._2{width:17.937920pt;}
._d{width:19.456000pt;}
._27{width:20.515840pt;}
._20{width:21.440000pt;}
._1c{width:22.752000pt;}
._19{width:24.032000pt;}
._1e{width:25.144320pt;}
._1f{width:26.240000pt;}
._17{width:27.988480pt;}
._1d{width:31.104000pt;}
._22{width:32.192000pt;}
._16{width:35.008000pt;}
._25{width:37.091840pt;}
._26{width:37.984000pt;}
._15{width:39.488000pt;}
._14{width:42.183680pt;}
._28{width:45.963520pt;}
._29{width:47.168000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.y150{bottom:51.337600pt;}
.y175{bottom:51.350400pt;}
.y148{bottom:51.356800pt;}
.yea{bottom:51.363200pt;}
.y45{bottom:51.365760pt;}
.ybb{bottom:51.369600pt;}
.y14f{bottom:69.251840pt;}
.y174{bottom:69.264640pt;}
.y147{bottom:69.271040pt;}
.ye9{bottom:69.277440pt;}
.y44{bottom:69.280000pt;}
.yba{bottom:69.283840pt;}
.y9c{bottom:98.080000pt;}
.y14e{bottom:98.368000pt;}
.y173{bottom:98.380800pt;}
.y12d{bottom:98.387200pt;}
.ye8{bottom:98.393600pt;}
.yb9{bottom:101.760000pt;}
.y13e{bottom:101.920000pt;}
.y83{bottom:102.720000pt;}
.y68{bottom:104.320000pt;}
.y1df{bottom:108.640000pt;}
.y15e{bottom:113.280000pt;}
.y1a0{bottom:113.760000pt;}
.y9b{bottom:114.566400pt;}
.y14d{bottom:114.854400pt;}
.y172{bottom:114.867200pt;}
.y11a{bottom:114.873600pt;}
.ybc{bottom:115.200000pt;}
.ye7{bottom:118.240000pt;}
.y139{bottom:123.360000pt;}
.y43{bottom:125.117440pt;}
.y1bc{bottom:125.440000pt;}
.y1de{bottom:128.000000pt;}
.y130{bottom:128.960000pt;}
.y82{bottom:129.600000pt;}
.y15f{bottom:131.200000pt;}
.y14c{bottom:131.340800pt;}
.y176{bottom:131.347200pt;}
.y140{bottom:131.353600pt;}
.y71{bottom:131.680000pt;}
.yf7{bottom:134.720000pt;}
.y9a{bottom:137.920000pt;}
.y19f{bottom:140.160000pt;}
.y157{bottom:140.320000pt;}
.ye{bottom:141.466667pt;}
.y67{bottom:141.920000pt;}
.y2c{bottom:145.920000pt;}
.y14b{bottom:147.827200pt;}
.y144{bottom:147.833600pt;}
.y9d{bottom:148.000000pt;}
.yf8{bottom:148.160000pt;}
.y138{bottom:150.400000pt;}
.ye6{bottom:151.040000pt;}
.y13f{bottom:151.200000pt;}
.y1bb{bottom:152.480000pt;}
.y12f{bottom:156.000000pt;}
.y81{bottom:156.640000pt;}
.y1dd{bottom:158.080000pt;}
.yb8{bottom:161.600000pt;}
.y154{bottom:164.307200pt;}
.y14a{bottom:164.313600pt;}
.y160{bottom:164.480000pt;}
.y141{bottom:164.640000pt;}
.y13d{bottom:166.720000pt;}
.y42{bottom:167.200000pt;}
.y99{bottom:167.360000pt;}
.y143{bottom:167.680000pt;}
.y70{bottom:169.280000pt;}
.yd0{bottom:172.320000pt;}
.y2b{bottom:172.960000pt;}
.y137{bottom:177.280000pt;}
.y1dc{bottom:177.600000pt;}
.ye5{bottom:177.920000pt;}
.y180{bottom:179.040000pt;}
.y1ba{bottom:179.360000pt;}
.y66{bottom:179.680000pt;}
.yf6{bottom:179.825920pt;}
.y153{bottom:180.793600pt;}
.y145{bottom:181.120000pt;}
.y12c{bottom:183.040000pt;}
.y80{bottom:183.680000pt;}
.y149{bottom:184.160000pt;}
.y171{bottom:184.320000pt;}
.y119{bottom:185.280000pt;}
.yb7{bottom:188.640000pt;}
.y19e{bottom:193.120000pt;}
.y13c{bottom:193.600000pt;}
.yd{bottom:193.666667pt;}
.y98{bottom:194.400000pt;}
.y151{bottom:197.600000pt;}
.ycf{bottom:199.360000pt;}
.y2a{bottom:200.000000pt;}
.y152{bottom:200.640000pt;}
.y136{bottom:204.320000pt;}
.yf5{bottom:204.629120pt;}
.yee{bottom:204.960000pt;}
.y17f{bottom:205.600000pt;}
.y1b9{bottom:206.400000pt;}
.y41{bottom:207.040000pt;}
.y1db{bottom:207.680000pt;}
.y65{bottom:209.594240pt;}
.y12b{bottom:209.920000pt;}
.y7f{bottom:210.720000pt;}
.y170{bottom:211.360000pt;}
.y118{bottom:212.320000pt;}
.y155{bottom:214.080000pt;}
.ye4{bottom:215.680000pt;}
.y19d{bottom:219.680000pt;}
.y13b{bottom:220.640000pt;}
.yc8{bottom:221.280000pt;}
.yb6{bottom:226.400000pt;}
.y1da{bottom:227.040000pt;}
.yf4{bottom:229.432320pt;}
.y135{bottom:231.360000pt;}
.y97{bottom:232.000000pt;}
.y1b8{bottom:233.440000pt;}
.y64{bottom:235.678080pt;}
.y12a{bottom:236.960000pt;}
.y29{bottom:237.600000pt;}
.y16f{bottom:238.400000pt;}
.y117{bottom:239.200000pt;}
.ye3{bottom:242.720000pt;}
.y40{bottom:244.640000pt;}
.yc{bottom:245.826667pt;}
.y19c{bottom:246.080000pt;}
.y13a{bottom:247.680000pt;}
.yc7{bottom:248.320000pt;}
.yb5{bottom:253.280000pt;}
.yf3{bottom:254.073600pt;}
.y1d9{bottom:257.120000pt;}
.y134{bottom:258.400000pt;}
.y96{bottom:259.040000pt;}
.y1b7{bottom:260.480000pt;}
.y63{bottom:261.526400pt;}
.yce{bottom:264.000000pt;}
.y28{bottom:264.640000pt;}
.y146{bottom:269.600000pt;}
.y19b{bottom:272.640000pt;}
.y129{bottom:274.720000pt;}
.yb{bottom:274.946667pt;}
.yc6{bottom:275.360000pt;}
.y16e{bottom:276.000000pt;}
.y1d8{bottom:276.640000pt;}
.y116{bottom:276.960000pt;}
.yf2{bottom:278.876800pt;}
.yb4{bottom:280.320000pt;}
.y3f{bottom:282.400000pt;}
.y133{bottom:285.280000pt;}
.y95{bottom:285.920000pt;}
.y1b6{bottom:287.360000pt;}
.y62{bottom:287.448320pt;}
.ycd{bottom:291.040000pt;}
.y27{bottom:291.680000pt;}
.y1d7{bottom:296.000000pt;}
.ydc{bottom:296.640000pt;}
.y19a{bottom:299.040000pt;}
.y128{bottom:301.600000pt;}
.y156{bottom:302.400000pt;}
.yf1{bottom:303.680000pt;}
.y115{bottom:303.840000pt;}
.yb3{bottom:307.360000pt;}
.y132{bottom:312.320000pt;}
.y94{bottom:312.960000pt;}
.y61{bottom:313.532160pt;}
.y16d{bottom:313.600000pt;}
.y1b5{bottom:314.400000pt;}
.ycc{bottom:317.920000pt;}
.y26{bottom:318.720000pt;}
.y3e{bottom:320.000000pt;}
.ydb{bottom:323.680000pt;}
.y199{bottom:325.440000pt;}
.y1d6{bottom:326.080000pt;}
.ya{bottom:327.133333pt;}
.y127{bottom:328.640000pt;}
.yf0{bottom:329.280000pt;}
.y114{bottom:330.880000pt;}
.yb2{bottom:334.400000pt;}
.y131{bottom:339.360000pt;}
.y60{bottom:339.454080pt;}
.y93{bottom:340.000000pt;}
.y16c{bottom:340.640000pt;}
.y1b4{bottom:341.440000pt;}
.ycb{bottom:344.960000pt;}
.y25{bottom:345.600000pt;}
.yda{bottom:350.720000pt;}
.y198{bottom:352.000000pt;}
.y17c{bottom:355.680000pt;}
.y15c{bottom:356.320000pt;}
.y3d{bottom:357.600000pt;}
.y113{bottom:357.920000pt;}
.y5f{bottom:358.487040pt;}
.yb1{bottom:361.280000pt;}
.y1d5{bottom:364.960000pt;}
.y126{bottom:366.400000pt;}
.y92{bottom:367.040000pt;}
.y16b{bottom:367.680000pt;}
.y1b3{bottom:368.480000pt;}
.yca{bottom:372.000000pt;}
.y24{bottom:372.640000pt;}
.yd9{bottom:377.600000pt;}
.y197{bottom:378.400000pt;}
.y9{bottom:379.293333pt;}
.y17b{bottom:382.720000pt;}
.y5e{bottom:383.290240pt;}
.y15b{bottom:383.360000pt;}
.y112{bottom:384.960000pt;}
.ye2{bottom:388.320000pt;}
.y125{bottom:393.280000pt;}
.y91{bottom:393.920000pt;}
.y16a{bottom:394.720000pt;}
.y1d4{bottom:395.040000pt;}
.y3c{bottom:395.360000pt;}
.yb0{bottom:399.040000pt;}
.y23{bottom:399.680000pt;}
.yed{bottom:404.640000pt;}
.y196{bottom:404.960000pt;}
.y5d{bottom:409.212160pt;}
.y17a{bottom:409.600000pt;}
.y17e{bottom:410.400000pt;}
.y1d3{bottom:414.400000pt;}
.yd8{bottom:415.360000pt;}
.y124{bottom:420.320000pt;}
.y90{bottom:420.960000pt;}
.y111{bottom:421.536640pt;}
.y1b2{bottom:422.400000pt;}
.yaf{bottom:425.920000pt;}
.y22{bottom:426.720000pt;}
.y195{bottom:431.520000pt;}
.yec{bottom:431.680000pt;}
.y8{bottom:431.813333pt;}
.y169{bottom:432.320000pt;}
.y3b{bottom:432.960000pt;}
.y5c{bottom:435.296000pt;}
.y179{bottom:436.640000pt;}
.y17d{bottom:437.280000pt;}
.yd7{bottom:442.400000pt;}
.y1d2{bottom:444.480000pt;}
.y110{bottom:446.339840pt;}
.y123{bottom:447.360000pt;}
.y8f{bottom:448.000000pt;}
.y1b1{bottom:449.440000pt;}
.y12e{bottom:452.960000pt;}
.y7e{bottom:453.600000pt;}
.y194{bottom:458.080000pt;}
.yeb{bottom:458.720000pt;}
.y168{bottom:459.360000pt;}
.y5b{bottom:461.217920pt;}
.yae{bottom:463.680000pt;}
.y1d1{bottom:464.000000pt;}
.y21{bottom:464.320000pt;}
.yd6{bottom:469.280000pt;}
.y3a{bottom:470.720000pt;}
.y10f{bottom:470.981120pt;}
.y122{bottom:474.400000pt;}
.yc5{bottom:475.040000pt;}
.y1b0{bottom:476.480000pt;}
.ye1{bottom:480.000000pt;}
.y7d{bottom:480.640000pt;}
.y1d0{bottom:483.360000pt;}
.y7{bottom:483.973333pt;}
.y193{bottom:484.640000pt;}
.y8e{bottom:485.600000pt;}
.y167{bottom:486.400000pt;}
.y5a{bottom:487.301760pt;}
.yad{bottom:490.720000pt;}
.y10e{bottom:495.784320pt;}
.yd5{bottom:496.320000pt;}
.y121{bottom:501.280000pt;}
.y20{bottom:501.920000pt;}
.y1af{bottom:503.360000pt;}
.ye0{bottom:507.040000pt;}
.y39{bottom:508.320000pt;}
.y192{bottom:511.040000pt;}
.y8d{bottom:512.640000pt;}
.y59{bottom:513.223680pt;}
.y1cf{bottom:513.440000pt;}
.yac{bottom:517.600000pt;}
.y7c{bottom:518.400000pt;}
.y10d{bottom:520.587520pt;}
.yd4{bottom:523.360000pt;}
.y166{bottom:524.000000pt;}
.y120{bottom:528.320000pt;}
.y1f{bottom:528.960000pt;}
.y1ae{bottom:530.400000pt;}
.y1ce{bottom:532.960000pt;}
.ydf{bottom:533.920000pt;}
.y6{bottom:536.160000pt;}
.y191{bottom:537.440000pt;}
.y58{bottom:539.307520pt;}
.yc4{bottom:539.680000pt;}
.yab{bottom:544.640000pt;}
.y7b{bottom:545.280000pt;}
.y10c{bottom:545.390720pt;}
.y38{bottom:545.920000pt;}
.y8c{bottom:550.400000pt;}
.y165{bottom:551.040000pt;}
.y1cd{bottom:552.320000pt;}
.y11f{bottom:555.360000pt;}
.y15a{bottom:556.000000pt;}
.y1ad{bottom:557.440000pt;}
.yef{bottom:560.960000pt;}
.y190{bottom:564.000000pt;}
.y57{bottom:565.229440pt;}
.y5{bottom:565.280000pt;}
.y1e{bottom:566.720000pt;}
.y10b{bottom:570.032000pt;}
.yaa{bottom:571.680000pt;}
.y7a{bottom:572.320000pt;}
.y8b{bottom:577.280000pt;}
.y11e{bottom:582.400000pt;}
.y159{bottom:583.040000pt;}
.y37{bottom:583.680000pt;}
.y56{bottom:584.115200pt;}
.y1ac{bottom:584.480000pt;}
.yd3{bottom:588.000000pt;}
.y164{bottom:588.640000pt;}
.y18f{bottom:590.400000pt;}
.y1d{bottom:593.600000pt;}
.y10a{bottom:594.835200pt;}
.ya9{bottom:598.720000pt;}
.y1cc{bottom:601.920000pt;}
.y8a{bottom:604.320000pt;}
.y55{bottom:609.080320pt;}
.y11d{bottom:609.280000pt;}
.y79{bottom:609.920000pt;}
.y1ab{bottom:611.360000pt;}
.yd2{bottom:615.040000pt;}
.y18e{bottom:617.120000pt;}
.y4{bottom:619.360000pt;}
.y109{bottom:619.638400pt;}
.y142{bottom:620.640000pt;}
.y36{bottom:621.280000pt;}
.ya8{bottom:625.600000pt;}
.y163{bottom:626.400000pt;}
.y1c{bottom:631.360000pt;}
.y1cb{bottom:632.000000pt;}
.y54{bottom:635.002240pt;}
.y11c{bottom:636.320000pt;}
.y78{bottom:636.960000pt;}
.y1aa{bottom:638.400000pt;}
.yc3{bottom:641.920000pt;}
.y18d{bottom:643.520000pt;}
.y108{bottom:644.279680pt;}
.y158{bottom:647.680000pt;}
.y1ca{bottom:651.360000pt;}
.ya7{bottom:652.640000pt;}
.y3{bottom:655.226667pt;}
.y1b{bottom:658.400000pt;}
.y35{bottom:659.040000pt;}
.y53{bottom:661.086080pt;}
.y11b{bottom:663.360000pt;}
.y77{bottom:664.000000pt;}
.y1a9{bottom:665.440000pt;}
.yc2{bottom:668.960000pt;}
.y107{bottom:669.082880pt;}
.y18c{bottom:670.080000pt;}
.y178{bottom:674.720000pt;}
.ya6{bottom:679.680000pt;}
.y1c9{bottom:681.440000pt;}
.y1a{bottom:685.280000pt;}
.y6f{bottom:685.920000pt;}
.y52{bottom:687.008000pt;}
.yc9{bottom:690.400000pt;}
.y76{bottom:691.040000pt;}
.y1a8{bottom:692.480000pt;}
.y106{bottom:693.886080pt;}
.yc1{bottom:696.000000pt;}
.y18b{bottom:696.480000pt;}
.y34{bottom:696.640000pt;}
.y1e9{bottom:698.720000pt;}
.y1c8{bottom:700.960000pt;}
.y177{bottom:701.600000pt;}
.y51{bottom:705.893760pt;}
.yde{bottom:706.720000pt;}
.y2{bottom:706.746667pt;}
.y19{bottom:712.320000pt;}
.y6e{bottom:712.960000pt;}
.ya5{bottom:717.280000pt;}
.y162{bottom:717.920000pt;}
.y105{bottom:718.527360pt;}
.y1a7{bottom:719.360000pt;}
.y1c7{bottom:720.320000pt;}
.y1{bottom:721.786667pt;}
.yc0{bottom:723.040000pt;}
.y1e8{bottom:725.760000pt;}
.y75{bottom:728.640000pt;}
.y50{bottom:730.858880pt;}
.ydd{bottom:733.600000pt;}
.y33{bottom:734.400000pt;}
.y89{bottom:739.360000pt;}
.y104{bottom:743.330560pt;}
.ya4{bottom:744.320000pt;}
.y1a6{bottom:746.400000pt;}
.y18a{bottom:749.440000pt;}
.y18{bottom:749.920000pt;}
.y1c6{bottom:750.400000pt;}
.y6d{bottom:750.720000pt;}
.y74{bottom:755.680000pt;}
.y4f{bottom:756.780800pt;}
.ybf{bottom:760.640000pt;}
.y1e7{bottom:763.520000pt;}
.y88{bottom:766.400000pt;}
.y103{bottom:768.133760pt;}
.y1c5{bottom:769.920000pt;}
.ya3{bottom:771.360000pt;}
.y32{bottom:772.000000pt;}
.y1a5{bottom:773.440000pt;}
.y189{bottom:776.000000pt;}
.y17{bottom:776.960000pt;}
.y73{bottom:782.720000pt;}
.y4e{bottom:782.864640pt;}
.ybe{bottom:787.680000pt;}
.y6c{bottom:788.320000pt;}
.y1c4{bottom:789.280000pt;}
.y102{bottom:792.775040pt;}
.y15d{bottom:793.280000pt;}
.ya2{bottom:798.400000pt;}
.y1a4{bottom:800.480000pt;}
.y1e6{bottom:801.120000pt;}
.y188{bottom:802.400000pt;}
.y16{bottom:804.000000pt;}
.y4d{bottom:808.786560pt;}
.y31{bottom:809.600000pt;}
.ybd{bottom:814.720000pt;}
.y101{bottom:817.578240pt;}
.y1c3{bottom:819.360000pt;}
.y161{bottom:820.320000pt;}
.ya1{bottom:825.280000pt;}
.y6b{bottom:825.920000pt;}
.y1a3{bottom:827.360000pt;}
.y187{bottom:828.800000pt;}
.y15{bottom:831.040000pt;}
.y4c{bottom:834.708480pt;}
.y72{bottom:836.640000pt;}
.y1c2{bottom:838.720000pt;}
.yd1{bottom:841.600000pt;}
.y100{bottom:842.381440pt;}
.y30{bottom:847.360000pt;}
.ya0{bottom:852.320000pt;}
.y1a2{bottom:854.400000pt;}
.y186{bottom:855.360000pt;}
.y14{bottom:857.920000pt;}
.y1c1{bottom:858.240000pt;}
.y4b{bottom:860.792320pt;}
.y6a{bottom:863.680000pt;}
.yff{bottom:867.022720pt;}
.y87{bottom:868.640000pt;}
.y1e5{bottom:876.480000pt;}
.y9f{bottom:879.360000pt;}
.y1a1{bottom:881.440000pt;}
.y185{bottom:881.920000pt;}
.y13{bottom:884.960000pt;}
.y4a{bottom:886.714240pt;}
.y1c0{bottom:888.320000pt;}
.yfe{bottom:891.825920pt;}
.y86{bottom:895.680000pt;}
.y69{bottom:901.280000pt;}
.y9e{bottom:906.400000pt;}
.y1e4{bottom:906.560000pt;}
.y1bf{bottom:907.680000pt;}
.y184{bottom:908.480000pt;}
.y12{bottom:912.000000pt;}
.y49{bottom:912.798080pt;}
.yfd{bottom:916.629120pt;}
.y2f{bottom:922.720000pt;}
.y1e3{bottom:925.920000pt;}
.y85{bottom:933.280000pt;}
.y183{bottom:934.880000pt;}
.y1be{bottom:937.760000pt;}
.y48{bottom:938.720000pt;}
.y11{bottom:939.040000pt;}
.yfc{bottom:941.432320pt;}
.y1e2{bottom:945.440000pt;}
.y2e{bottom:949.600000pt;}
.y1bd{bottom:957.280000pt;}
.y84{bottom:960.320000pt;}
.y47{bottom:960.480000pt;}
.y182{bottom:961.440000pt;}
.yfb{bottom:966.073600pt;}
.y1e1{bottom:975.520000pt;}
.y10{bottom:976.640000pt;}
.y2d{bottom:987.360000pt;}
.y181{bottom:987.840000pt;}
.yfa{bottom:990.876800pt;}
.y1e0{bottom:994.880000pt;}
.y46{bottom:1012.320000pt;}
.yf{bottom:1014.400000pt;}
.yf9{bottom:1015.680000pt;}
.h10{height:23.034375pt;}
.h12{height:35.404688pt;}
.h13{height:35.837500pt;}
.h9{height:39.243750pt;}
.he{height:42.656250pt;}
.h2{height:43.343750pt;}
.h11{height:49.277500pt;}
.hc{height:49.335000pt;}
.h6{height:53.562500pt;}
.h7{height:53.625000pt;}
.h14{height:57.945717pt;}
.hf{height:57.946250pt;}
.h3{height:58.563750pt;}
.h8{height:62.741250pt;}
.hd{height:66.750000pt;}
.hb{height:70.199062pt;}
.h5{height:80.437500pt;}
.h4{height:98.670000pt;}
.ha{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.w5{width:793.746667pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:113.440000pt;}
.xa{left:114.623988pt;}
.x5{left:122.303988pt;}
.x11{left:128.160000pt;}
.x13{left:137.440000pt;}
.x12{left:142.747520pt;}
.xb{left:160.386655pt;}
.x14{left:161.440000pt;}
.x26{left:164.320000pt;}
.x1c{left:168.640000pt;}
.x27{left:170.560000pt;}
.x1b{left:174.880000pt;}
.x15{left:184.640000pt;}
.x9{left:187.266655pt;}
.x3{left:190.493322pt;}
.x19{left:208.640000pt;}
.x6{left:219.933322pt;}
.x1a{left:232.640000pt;}
.x41{left:245.440000pt;}
.x42{left:254.240000pt;}
.x20{left:256.480000pt;}
.x21{left:257.440000pt;}
.x24{left:268.640000pt;}
.x8{left:270.853322pt;}
.x18{left:275.360000pt;}
.x3c{left:276.640000pt;}
.x57{left:278.080000pt;}
.x58{left:283.680000pt;}
.x3d{left:285.760000pt;}
.x2b{left:290.560000pt;}
.x25{left:292.640000pt;}
.xd{left:297.733322pt;}
.xe{left:299.653322pt;}
.x59{left:301.600000pt;}
.x3e{left:304.160000pt;}
.x22{left:305.440000pt;}
.x5a{left:309.760000pt;}
.x4c{left:310.720000pt;}
.x3f{left:311.680000pt;}
.x40{left:316.320000pt;}
.x17{left:317.280000pt;}
.x4d{left:319.040000pt;}
.x4{left:321.093322pt;}
.x32{left:322.080000pt;}
.xc{left:323.333322pt;}
.x28{left:327.680000pt;}
.x1e{left:329.440000pt;}
.x5b{left:334.880000pt;}
.x4e{left:340.800000pt;}
.x43{left:346.400000pt;}
.x5c{left:347.520000pt;}
.x4f{left:350.880000pt;}
.x44{left:356.640000pt;}
.x52{left:364.480000pt;}
.x1d{left:372.640000pt;}
.x33{left:377.120000pt;}
.x50{left:380.000000pt;}
.x45{left:384.960000pt;}
.x51{left:389.120000pt;}
.x2c{left:390.560000pt;}
.x7{left:397.279988pt;}
.x2d{left:399.360000pt;}
.x1f{left:401.440000pt;}
.x53{left:408.480000pt;}
.x46{left:409.920000pt;}
.x23{left:417.280000pt;}
.x29{left:418.720000pt;}
.x5d{left:425.600000pt;}
.x2a{left:429.280000pt;}
.x54{left:430.880000pt;}
.x5e{left:437.120000pt;}
.x55{left:438.400000pt;}
.x34{left:443.680000pt;}
.x47{left:448.800000pt;}
.x35{left:453.920000pt;}
.x48{left:458.080000pt;}
.x2e{left:462.720000pt;}
.x2f{left:474.560000pt;}
.x5f{left:487.360000pt;}
.x30{left:495.200000pt;}
.x36{left:497.280000pt;}
.x31{left:502.560000pt;}
.x37{left:508.160000pt;}
.x49{left:509.600000pt;}
.x4a{left:521.920000pt;}
.x38{left:527.840000pt;}
.x39{left:534.880000pt;}
.x56{left:564.480000pt;}
.x3a{left:572.960000pt;}
.x3b{left:583.200000pt;}
.x1{left:592.573322pt;}
.x4b{left:608.640000pt;}
.x2{left:638.013322pt;}
.x16{left:665.440000pt;}
.x10{left:672.960000pt;}
}




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