
    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_9896ce7604e6d40dddfef4c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_bb68d1675995121606631794.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_5e3e040b69d3477b77518629.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_716d51e496b0bda0eb1a2b15.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_b48ae8b2dd85ed605f995442.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686000;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_b564355648a9cd23ebad9eb4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.683000;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_5f4e2fbac97f6a0b26366c78.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.429000;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_ba38783e2763152e4885e5c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4638b765477129edf20984b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ce856c8e51276312d81370c3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.887000;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_9d114036e0d1634455b31aea.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3b01252ee64d14ceee1c7fed.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.872000;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_cda7605afb6700ca7fd956ff.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_05003235cff9209c5176d922.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_361f3f4c787bb1684c66bc96.woff2')format("woff");}.fff{font-family:fff;line-height:0.728000;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;}
.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);}
.vc{vertical-align:-16.877340px;}
.v5{vertical-align:-14.777340px;}
.v1{vertical-align:-8.969520px;}
.v9{vertical-align:-5.976564px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.934360px;}
.va{vertical-align:21.689040px;}
.vb{vertical-align:24.684360px;}
.v8{vertical-align:30.180462px;}
.v7{vertical-align:36.154680px;}
.v2{vertical-align:40.434360px;}
.v4{vertical-align:56.149230px;}
.v3{vertical-align:62.130480px;}
.ls1{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.001206px;}
.ls0{letter-spacing:0.004623px;}
.ls1d{letter-spacing:0.013836px;}
.ls10{letter-spacing:0.018576px;}
.ls18{letter-spacing:0.030834px;}
.ls16{letter-spacing:0.032742px;}
.ls13{letter-spacing:0.032972px;}
.ls15{letter-spacing:0.033174px;}
.ls2f{letter-spacing:0.033242px;}
.ls20{letter-spacing:0.037922px;}
.ls14{letter-spacing:0.038706px;}
.ls1f{letter-spacing:0.045299px;}
.ls12{letter-spacing:0.049979px;}
.lsb{letter-spacing:0.050047px;}
.lsf{letter-spacing:0.052387px;}
.ls9{letter-spacing:0.057067px;}
.ls3d{letter-spacing:0.841217px;}
.ls22{letter-spacing:1.705673px;}
.ls8{letter-spacing:1.708013px;}
.ls43{letter-spacing:2.371580px;}
.ls3e{letter-spacing:2.371729px;}
.ls17{letter-spacing:2.450198px;}
.ls3c{letter-spacing:2.451514px;}
.ls3{letter-spacing:2.456194px;}
.ls41{letter-spacing:2.655607px;}
.ls4{letter-spacing:2.982952px;}
.ls2b{letter-spacing:2.987220px;}
.ls6{letter-spacing:2.987495px;}
.ls3b{letter-spacing:2.988137px;}
.ls2c{letter-spacing:2.989860px;}
.ls7{letter-spacing:2.989972px;}
.ls5{letter-spacing:2.990845px;}
.ls11{letter-spacing:2.991629px;}
.ls2a{letter-spacing:2.992106px;}
.ls1e{letter-spacing:2.996309px;}
.ls32{letter-spacing:3.006287px;}
.ls24{letter-spacing:3.010967px;}
.ls27{letter-spacing:4.293496px;}
.lsa{letter-spacing:6.539233px;}
.ls23{letter-spacing:6.541573px;}
.lsc{letter-spacing:6.546313px;}
.ls36{letter-spacing:8.303329px;}
.lse{letter-spacing:8.304545px;}
.ls42{letter-spacing:11.840970px;}
.ls3f{letter-spacing:12.897990px;}
.ls30{letter-spacing:13.281720px;}
.ls39{letter-spacing:13.288740px;}
.ls34{letter-spacing:13.327019px;}
.ls31{letter-spacing:13.331699px;}
.ls3a{letter-spacing:13.334039px;}
.ls2d{letter-spacing:13.757520px;}
.ls2e{letter-spacing:13.800359px;}
.ls46{letter-spacing:15.194850px;}
.ls26{letter-spacing:15.914887px;}
.ls44{letter-spacing:16.387830px;}
.ls29{letter-spacing:16.605000px;}
.ls28{letter-spacing:16.653187px;}
.ls45{letter-spacing:18.075330px;}
.ls1b{letter-spacing:19.871554px;}
.ls40{letter-spacing:21.794850px;}
.ls1a{letter-spacing:22.833809px;}
.ls38{letter-spacing:23.819759px;}
.ls1c{letter-spacing:26.383993px;}
.ls37{letter-spacing:29.891820px;}
.ls25{letter-spacing:34.214887px;}
.ls2{letter-spacing:35.875962px;}
.lsd{letter-spacing:36.394567px;}
.ls33{letter-spacing:107.063159px;}
.ls35{letter-spacing:111.000359px;}
.ls21{letter-spacing:446.597203px;}
.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;}
}
.ws12b{word-spacing:-29.887800px;}
.ws1a6{word-spacing:-28.692360px;}
.ws56{word-spacing:-23.910300px;}
.ws149{word-spacing:-21.578573px;}
.ws14b{word-spacing:-21.572775px;}
.ws14a{word-spacing:-21.554603px;}
.wsd2{word-spacing:-16.617796px;}
.wsc{word-spacing:-13.449600px;}
.ws14d{word-spacing:-13.266985px;}
.wsc8{word-spacing:-13.215907px;}
.wsba{word-spacing:-12.414541px;}
.ws14c{word-spacing:-12.069015px;}
.wsc9{word-spacing:-7.951889px;}
.ws19c{word-spacing:-2.409986px;}
.ws1dc{word-spacing:-2.409837px;}
.ws1{word-spacing:-0.065753px;}
.ws8{word-spacing:-0.059776px;}
.ws28{word-spacing:-0.047821px;}
.ws19a{word-spacing:-0.038257px;}
.ws57{word-spacing:0.000000px;}
.ws24{word-spacing:5.757290px;}
.ws1d0{word-spacing:6.695458px;}
.ws200{word-spacing:7.938793px;}
.ws2{word-spacing:10.914144px;}
.ws1b6{word-spacing:11.668657px;}
.ws1bf{word-spacing:11.763676px;}
.ws1be{word-spacing:11.764011px;}
.ws1bd{word-spacing:11.764776px;}
.ws1c2{word-spacing:12.336711px;}
.ws1e3{word-spacing:12.385488px;}
.ws1e2{word-spacing:12.386635px;}
.ws1a0{word-spacing:12.719180px;}
.ws1b5{word-spacing:12.720423px;}
.ws1b4{word-spacing:12.755583px;}
.ws1a3{word-spacing:12.815108px;}
.ws1a1{word-spacing:12.816208px;}
.ws1a2{word-spacing:12.863263px;}
.ws196{word-spacing:13.006151px;}
.ws22{word-spacing:13.071989px;}
.ws1e7{word-spacing:13.437254px;}
.ws1d3{word-spacing:13.532465px;}
.ws1d4{word-spacing:13.581385px;}
.ws168{word-spacing:13.688074px;}
.ws1d{word-spacing:13.826888px;}
.ws1f8{word-spacing:14.059496px;}
.ws1f9{word-spacing:14.106360px;}
.ws179{word-spacing:14.107580px;}
.ws1e4{word-spacing:14.201905px;}
.ws1e5{word-spacing:14.249343px;}
.ws180{word-spacing:14.286010px;}
.ws129{word-spacing:14.345486px;}
.ws19f{word-spacing:14.440960px;}
.ws32{word-spacing:14.585127px;}
.ws1c5{word-spacing:14.585809px;}
.ws1c6{word-spacing:14.586239px;}
.ws16a{word-spacing:14.603388px;}
.ws181{word-spacing:14.603514px;}
.ws169{word-spacing:14.604267px;}
.ws5b{word-spacing:14.644006px;}
.wsdb{word-spacing:14.763557px;}
.wsac{word-spacing:14.763856px;}
.wsa4{word-spacing:14.942884px;}
.ws1f7{word-spacing:14.967130px;}
.ws1ed{word-spacing:14.968565px;}
.ws1ee{word-spacing:14.968900px;}
.ws21{word-spacing:15.062745px;}
.wsa6{word-spacing:15.123645px;}
.ws1ef{word-spacing:15.157983px;}
.ws1f1{word-spacing:15.159608px;}
.ws1f0{word-spacing:15.160182px;}
.ws161{word-spacing:15.242001px;}
.ws6a{word-spacing:15.242120px;}
.wsa8{word-spacing:15.242300px;}
.ws167{word-spacing:15.242838px;}
.ws1fb{word-spacing:15.301683px;}
.ws141{word-spacing:15.355729px;}
.ws142{word-spacing:15.361373px;}
.ws1a9{word-spacing:15.444954px;}
.ws1c{word-spacing:15.600890px;}
.ws11{word-spacing:15.708003px;}
.wsfd{word-spacing:15.778571px;}
.ws195{word-spacing:15.780041px;}
.wsff{word-spacing:15.781057px;}
.wsfe{word-spacing:15.797608px;}
.ws65{word-spacing:15.840534px;}
.ws204{word-spacing:15.923064px;}
.ws124{word-spacing:16.080473px;}
.wsf2{word-spacing:16.138396px;}
.ws178{word-spacing:16.138456px;}
.wsfc{word-spacing:16.139292px;}
.wsce{word-spacing:16.259023px;}
.ws1da{word-spacing:16.305820px;}
.ws1df{word-spacing:16.306442px;}
.ws1e1{word-spacing:16.306825px;}
.ws1db{word-spacing:16.307733px;}
.ws1e0{word-spacing:16.355506px;}
.ws1dd{word-spacing:16.355793px;}
.ws2f{word-spacing:16.437274px;}
.ws107{word-spacing:16.556945px;}
.ws1d8{word-spacing:16.590763px;}
.ws1d9{word-spacing:16.594274px;}
.wsaa{word-spacing:16.676376px;}
.ws1fa{word-spacing:16.685644px;}
.ws1d5{word-spacing:16.688044px;}
.ws16e{word-spacing:16.688146px;}
.wsb7{word-spacing:16.688242px;}
.wsf6{word-spacing:16.688481px;}
.ws39{word-spacing:16.688768px;}
.ws156{word-spacing:16.688911px;}
.ws1a4{word-spacing:16.689102px;}
.ws1a5{word-spacing:16.689198px;}
.ws1c7{word-spacing:16.689485px;}
.ws1eb{word-spacing:16.689915px;}
.ws10d{word-spacing:16.690346px;}
.ws1bc{word-spacing:16.690489px;}
.ws1f6{word-spacing:16.690529px;}
.ws1b2{word-spacing:16.691879px;}
.ws1aa{word-spacing:16.692329px;}
.ws1c0{word-spacing:16.737832px;}
.ws1c1{word-spacing:16.785270px;}
.ws49{word-spacing:16.795748px;}
.ws1c4{word-spacing:16.832182px;}
.ws1c3{word-spacing:16.832851px;}
.ws3f{word-spacing:16.855823px;}
.ws1a8{word-spacing:17.024038px;}
.ws1a7{word-spacing:17.024373px;}
.wsec{word-spacing:17.034970px;}
.ws153{word-spacing:17.154641px;}
.ws6b{word-spacing:17.214237px;}
.ws100{word-spacing:17.214715px;}
.ws206{word-spacing:17.215081px;}
.ws205{word-spacing:17.215368px;}
.ws20a{word-spacing:17.262806px;}
.ws20b{word-spacing:17.310292px;}
.wsbb{word-spacing:17.334087px;}
.ws72{word-spacing:17.334446px;}
.wsb9{word-spacing:17.363036px;}
.ws6d{word-spacing:17.454535px;}
.ws1b3{word-spacing:17.693048px;}
.wse{word-spacing:17.700534px;}
.ws1fc{word-spacing:17.741251px;}
.wse9{word-spacing:17.752158px;}
.ws31{word-spacing:17.752337px;}
.ws123{word-spacing:17.753891px;}
.ws103{word-spacing:17.819366px;}
.ws186{word-spacing:17.821873px;}
.wsa2{word-spacing:17.834300px;}
.ws157{word-spacing:17.836462px;}
.ws185{word-spacing:17.836701px;}
.wsa3{word-spacing:17.861797px;}
.ws69{word-spacing:17.866743px;}
.wsf4{word-spacing:17.931903px;}
.ws1ea{word-spacing:17.980020px;}
.wsbf{word-spacing:17.991320px;}
.ws108{word-spacing:17.991619px;}
.ws1e8{word-spacing:18.027314px;}
.ws1e9{word-spacing:18.028940px;}
.ws3b{word-spacing:18.051574px;}
.ws19{word-spacing:18.075671px;}
.wsdc{word-spacing:18.112485px;}
.ws12{word-spacing:18.130168px;}
.ws19d{word-spacing:18.170728px;}
.wsd9{word-spacing:18.352006px;}
.ws128{word-spacing:18.411901px;}
.wsb6{word-spacing:18.531153px;}
.ws11b{word-spacing:18.649330px;}
.ws1e6{word-spacing:18.697472px;}
.ws155{word-spacing:18.708687px;}
.ws139{word-spacing:18.708806px;}
.wsf0{word-spacing:18.710600px;}
.ws5{word-spacing:18.774566px;}
.wsb{word-spacing:18.774727px;}
.ws4{word-spacing:18.775911px;}
.ws75{word-spacing:18.828238px;}
.ws1b{word-spacing:18.882109px;}
.ws199{word-spacing:18.888946px;}
.ws19b{word-spacing:18.889233px;}
.ws130{word-spacing:18.948327px;}
.ws121{word-spacing:18.949822px;}
.ws67{word-spacing:19.128790px;}
.ws25{word-spacing:19.152930px;}
.ws7b{word-spacing:19.246847px;}
.ws48{word-spacing:19.306622px;}
.ws1b7{word-spacing:19.318518px;}
.wsae{word-spacing:19.366996px;}
.ws7f{word-spacing:19.426771px;}
.ws3c{word-spacing:19.427907px;}
.ws8c{word-spacing:19.486846px;}
.ws98{word-spacing:19.487384px;}
.ws9a{word-spacing:19.487563px;}
.wsd7{word-spacing:19.547040px;}
.ws4b{word-spacing:19.547458px;}
.ws145{word-spacing:19.604782px;}
.ws146{word-spacing:19.606397px;}
.wsc5{word-spacing:19.665156px;}
.wsc2{word-spacing:19.667189px;}
.ws165{word-spacing:19.725290px;}
.wscb{word-spacing:19.726247px;}
.wsca{word-spacing:19.773034px;}
.wscc{word-spacing:19.775058px;}
.wscd{word-spacing:19.786381px;}
.ws188{word-spacing:19.904139px;}
.ws52{word-spacing:19.906052px;}
.ws17e{word-spacing:19.964512px;}
.ws118{word-spacing:19.964931px;}
.ws30{word-spacing:20.023690px;}
.ws13d{word-spacing:20.084004px;}
.wsa5{word-spacing:20.084602px;}
.ws193{word-spacing:20.084661px;}
.ws23{word-spacing:20.119687px;}
.ws26{word-spacing:20.120010px;}
.ws166{word-spacing:20.143361px;}
.wsdd{word-spacing:20.144497px;}
.ws15e{word-spacing:20.144796px;}
.ws198{word-spacing:20.179193px;}
.ws197{word-spacing:20.179337px;}
.ws176{word-spacing:20.204571px;}
.wsf5{word-spacing:20.263630px;}
.ws2c{word-spacing:20.263928px;}
.ws4e{word-spacing:20.322927px;}
.wsde{word-spacing:20.323226px;}
.wsc1{word-spacing:20.382583px;}
.ws96{word-spacing:20.442478px;}
.wse5{word-spacing:20.443076px;}
.ws12f{word-spacing:20.443136px;}
.ws5a{word-spacing:20.443255px;}
.ws1de{word-spacing:20.466882px;}
.ws11e{word-spacing:20.502851px;}
.ws120{word-spacing:20.503389px;}
.ws187{word-spacing:20.563703px;}
.ws79{word-spacing:20.681521px;}
.ws3d{word-spacing:20.682118px;}
.ws46{word-spacing:20.740997px;}
.ws10b{word-spacing:20.801191px;}
.ws1b0{word-spacing:20.801292px;}
.ws1b1{word-spacing:20.802487px;}
.ws8d{word-spacing:20.860549px;}
.ws5d{word-spacing:20.860608px;}
.ws43{word-spacing:20.860668px;}
.ws58{word-spacing:20.860728px;}
.ws80{word-spacing:20.860788px;}
.ws85{word-spacing:20.860848px;}
.wsa7{word-spacing:20.860967px;}
.ws68{word-spacing:20.861027px;}
.ws40{word-spacing:20.861146px;}
.wsbe{word-spacing:20.861206px;}
.ws33{word-spacing:20.861266px;}
.ws88{word-spacing:20.861445px;}
.ws143{word-spacing:20.861505px;}
.ws4c{word-spacing:20.861684px;}
.ws117{word-spacing:20.861864px;}
.ws104{word-spacing:20.862103px;}
.ws6{word-spacing:20.862163px;}
.wsa1{word-spacing:20.862282px;}
.ws18f{word-spacing:20.862342px;}
.ws61{word-spacing:20.862461px;}
.ws7{word-spacing:20.862880px;}
.ws1fd{word-spacing:20.896789px;}
.ws1fe{word-spacing:20.897124px;}
.ws66{word-spacing:20.920504px;}
.ws71{word-spacing:20.920623px;}
.ws1a{word-spacing:20.980623px;}
.ws126{word-spacing:20.980937px;}
.ws1cb{word-spacing:20.993243px;}
.ws1ca{word-spacing:20.993339px;}
.wsdf{word-spacing:21.040115px;}
.ws84{word-spacing:21.040413px;}
.wsf7{word-spacing:21.279755px;}
.ws17d{word-spacing:21.280114px;}
.ws137{word-spacing:21.338813px;}
.wsab{word-spacing:21.338933px;}
.ws20d{word-spacing:21.376669px;}
.ws20c{word-spacing:21.389171px;}
.ws4a{word-spacing:21.399605px;}
.wsc0{word-spacing:21.458364px;}
.ws12c{word-spacing:21.458424px;}
.ws12a{word-spacing:21.474903px;}
.ws1e{word-spacing:21.519091px;}
.ws1cc{word-spacing:21.568143px;}
.ws1cd{word-spacing:21.614576px;}
.wsb2{word-spacing:21.638349px;}
.ws207{word-spacing:21.662062px;}
.ws122{word-spacing:21.699021px;}
.ws208{word-spacing:21.709500px;}
.ws1ac{word-spacing:21.710887px;}
.ws1ab{word-spacing:21.711174px;}
.ws1ad{word-spacing:21.711270px;}
.wsf1{word-spacing:21.757422px;}
.ws42{word-spacing:21.997241px;}
.wse0{word-spacing:22.056120px;}
.ws1d1{word-spacing:22.140747px;}
.ws209{word-spacing:22.141320px;}
.ws1d2{word-spacing:22.141655px;}
.ws2d{word-spacing:22.175612px;}
.ws164{word-spacing:22.296359px;}
.ws101{word-spacing:22.355656px;}
.ws102{word-spacing:22.356194px;}
.ws1ce{word-spacing:22.379371px;}
.ws4f{word-spacing:22.414714px;}
.ws1cf{word-spacing:22.428292px;}
.ws5f{word-spacing:22.474849px;}
.ws1d6{word-spacing:22.522785px;}
.ws17f{word-spacing:22.595177px;}
.wsd{word-spacing:22.595489px;}
.ws4d{word-spacing:22.714130px;}
.ws10f{word-spacing:22.774504px;}
.wse7{word-spacing:22.833383px;}
.wsd4{word-spacing:22.894354px;}
.ws3{word-spacing:22.948134px;}
.ws9{word-spacing:22.948265px;}
.wsa{word-spacing:22.948726px;}
.ws15{word-spacing:22.971056px;}
.wsc4{word-spacing:23.132799px;}
.ws16{word-spacing:23.188025px;}
.ws106{word-spacing:23.192395px;}
.ws53{word-spacing:23.251752px;}
.ws177{word-spacing:23.252948px;}
.ws1f{word-spacing:23.295837px;}
.ws131{word-spacing:23.313142px;}
.wsc7{word-spacing:23.372260px;}
.wsd3{word-spacing:23.372439px;}
.ws127{word-spacing:23.373336px;}
.ws78{word-spacing:23.431019px;}
.wsb5{word-spacing:23.671855px;}
.ws44{word-spacing:23.790091px;}
.ws15a{word-spacing:23.850584px;}
.ws16b{word-spacing:23.856964px;}
.ws12d{word-spacing:23.909164px;}
.ws1c8{word-spacing:23.957164px;}
.ws1c9{word-spacing:23.958647px;}
.wsd8{word-spacing:23.968940px;}
.ws1d7{word-spacing:24.052805px;}
.ws18b{word-spacing:24.088491px;}
.ws11c{word-spacing:24.089328px;}
.ws1ec{word-spacing:24.101009px;}
.ws13c{word-spacing:24.148386px;}
.ws134{word-spacing:24.209297px;}
.wsaf{word-spacing:24.268057px;}
.wsed{word-spacing:24.268356px;}
.ws1ae{word-spacing:24.292339px;}
.ws1af{word-spacing:24.293056px;}
.ws151{word-spacing:24.327952px;}
.ws12e{word-spacing:24.328849px;}
.ws7c{word-spacing:24.387429px;}
.ws77{word-spacing:24.387488px;}
.ws9e{word-spacing:24.388146px;}
.ws150{word-spacing:24.448101px;}
.wsad{word-spacing:24.448220px;}
.ws189{word-spacing:24.509012px;}
.ws201{word-spacing:24.531681px;}
.ws83{word-spacing:24.626352px;}
.wsa9{word-spacing:24.627248px;}
.ws20{word-spacing:24.638914px;}
.wsf3{word-spacing:24.686247px;}
.ws87{word-spacing:24.687323px;}
.ws8f{word-spacing:24.687562px;}
.ws3e{word-spacing:24.688160px;}
.ws15c{word-spacing:24.746202px;}
.ws38{word-spacing:24.806336px;}
.ws13f{word-spacing:24.865633px;}
.ws19e{word-spacing:24.865899px;}
.wsd6{word-spacing:25.045438px;}
.ws154{word-spacing:25.104616px;}
.ws14f{word-spacing:25.104796px;}
.ws160{word-spacing:25.106529px;}
.ws2a{word-spacing:25.164691px;}
.ws1ba{word-spacing:25.200309px;}
.ws1bb{word-spacing:25.201695px;}
.ws1f4{word-spacing:25.248559px;}
.ws1f5{word-spacing:25.297767px;}
.ws140{word-spacing:25.344137px;}
.ws1ff{word-spacing:25.344679px;}
.ws125{word-spacing:25.405347px;}
.ws94{word-spacing:25.465123px;}
.ws15b{word-spacing:25.524301px;}
.wse4{word-spacing:25.642656px;}
.wsb3{word-spacing:25.643254px;}
.wsc6{word-spacing:25.763104px;}
.ws37{word-spacing:25.822103px;}
.wse8{word-spacing:25.883193px;}
.wsa0{word-spacing:25.883492px;}
.ws15f{word-spacing:26.001848px;}
.ws174{word-spacing:26.061325px;}
.ws9c{word-spacing:26.061624px;}
.ws133{word-spacing:26.241190px;}
.wsb8{word-spacing:26.241249px;}
.ws1f2{word-spacing:26.253462px;}
.ws47{word-spacing:26.300367px;}
.ws1f3{word-spacing:26.302382px;}
.ws191{word-spacing:26.359904px;}
.ws82{word-spacing:26.361040px;}
.ws2e{word-spacing:26.361159px;}
.wsf8{word-spacing:26.419919px;}
.ws7a{word-spacing:26.420217px;}
.ws135{word-spacing:26.539231px;}
.ws116{word-spacing:26.539290px;}
.ws17c{word-spacing:26.540008px;}
.ws89{word-spacing:26.541203px;}
.ws13b{word-spacing:26.600979px;}
.ws172{word-spacing:26.659858px;}
.ws2b{word-spacing:26.838109px;}
.ws97{word-spacing:27.077331px;}
.ws59{word-spacing:27.136927px;}
.ws3a{word-spacing:27.139139px;}
.ws1b8{word-spacing:27.154491px;}
.ws1b9{word-spacing:27.161049px;}
.ws14{word-spacing:27.167546px;}
.ws35{word-spacing:27.257674px;}
.ws99{word-spacing:27.258391px;}
.ws11d{word-spacing:27.316971px;}
.wse2{word-spacing:27.437120px;}
.ws136{word-spacing:27.556910px;}
.ws18{word-spacing:27.652055px;}
.ws105{word-spacing:27.734743px;}
.ws138{word-spacing:27.796551px;}
.ws60{word-spacing:27.855908px;}
.ws144{word-spacing:27.907800px;}
.ws7d{word-spacing:27.914488px;}
.wsb0{word-spacing:27.916102px;}
.ws95{word-spacing:27.975280px;}
.ws86{word-spacing:28.093934px;}
.wsef{word-spacing:28.094353px;}
.ws11a{word-spacing:28.095130px;}
.ws10{word-spacing:28.135971px;}
.ws11f{word-spacing:28.154009px;}
.wseb{word-spacing:28.214621px;}
.ws36{word-spacing:28.214801px;}
.ws64{word-spacing:28.332678px;}
.ws9f{word-spacing:28.392633px;}
.ws6e{word-spacing:28.452827px;}
.wsc3{word-spacing:28.572378px;}
.ws8a{word-spacing:28.572916px;}
.wsb1{word-spacing:28.693364px;}
.ws15d{word-spacing:28.812019px;}
.ws115{word-spacing:28.812317px;}
.ws55{word-spacing:28.871196px;}
.ws7e{word-spacing:28.990449px;}
.ws10a{word-spacing:29.050643px;}
.ws5c{word-spacing:29.110717px;}
.wse3{word-spacing:29.290403px;}
.ws17b{word-spacing:29.348744px;}
.ws119{word-spacing:29.349461px;}
.ws13{word-spacing:29.426595px;}
.ws112{word-spacing:29.588085px;}
.ws9d{word-spacing:29.707636px;}
.ws62{word-spacing:29.707816px;}
.ws175{word-spacing:29.707875px;}
.ws41{word-spacing:29.767651px;}
.ws17{word-spacing:29.803507px;}
.wse1{word-spacing:29.827427px;}
.wsda{word-spacing:29.829220px;}
.wsb4{word-spacing:29.887920px;}
.wscf{word-spacing:29.947097px;}
.ws6c{word-spacing:30.126125px;}
.ws202{word-spacing:30.221711px;}
.ws203{word-spacing:30.221998px;}
.wsd1{word-spacing:30.305273px;}
.ws114{word-spacing:30.366184px;}
.wsea{word-spacing:30.366662px;}
.ws73{word-spacing:30.544853px;}
.ws18d{word-spacing:30.665301px;}
.ws173{word-spacing:30.844030px;}
.ws74{word-spacing:31.082415px;}
.ws13e{word-spacing:31.142848px;}
.ws194{word-spacing:31.202505px;}
.ws113{word-spacing:31.383087px;}
.wsee{word-spacing:31.383266px;}
.ws10c{word-spacing:31.502160px;}
.ws92{word-spacing:31.560919px;}
.ws110{word-spacing:31.562413px;}
.ws45{word-spacing:31.919214px;}
.ws162{word-spacing:32.100573px;}
.wsd5{word-spacing:32.217793px;}
.ws76{word-spacing:32.217913px;}
.ws50{word-spacing:32.220124px;}
.ws18e{word-spacing:32.337942px;}
.ws109{word-spacing:32.457314px;}
.ws27{word-spacing:32.815848px;}
.wse6{word-spacing:32.816027px;}
.ws10e{word-spacing:32.876341px;}
.ws158{word-spacing:33.176355px;}
.ws91{word-spacing:33.234636px;}
.ws51{word-spacing:33.295308px;}
.ws163{word-spacing:33.473140px;}
.ws190{word-spacing:33.473858px;}
.ws81{word-spacing:33.474336px;}
.ws13a{word-spacing:33.474515px;}
.ws6f{word-spacing:33.712721px;}
.wsf9{word-spacing:34.071434px;}
.wsfb{word-spacing:34.071972px;}
.wsfa{word-spacing:34.104208px;}
.ws132{word-spacing:34.130851px;}
.ws18c{word-spacing:34.131150px;}
.ws111{word-spacing:34.729982px;}
.wsd0{word-spacing:34.968009px;}
.ws159{word-spacing:35.087082px;}
.ws90{word-spacing:35.087381px;}
.ws17a{word-spacing:35.267843px;}
.ws8b{word-spacing:35.387394px;}
.ws8e{word-spacing:35.447768px;}
.wsf{word-spacing:35.452500px;}
.ws63{word-spacing:35.625720px;}
.ws34{word-spacing:35.806182px;}
.ws54{word-spacing:35.864942px;}
.ws29{word-spacing:35.925195px;}
.wsbc{word-spacing:36.277530px;}
.wsbd{word-spacing:36.283132px;}
.ws93{word-spacing:36.522354px;}
.ws148{word-spacing:36.880947px;}
.ws147{word-spacing:36.892974px;}
.ws152{word-spacing:37.359750px;}
.ws18a{word-spacing:38.555441px;}
.ws5e{word-spacing:40.048815px;}
.ws70{word-spacing:44.891177px;}
.ws0{word-spacing:50.067307px;}
.ws192{word-spacing:55.171803px;}
.ws9b{word-spacing:55.172460px;}
.ws182{word-spacing:71.683558px;}
.ws16f{word-spacing:105.541021px;}
.ws184{word-spacing:106.880548px;}
.ws16d{word-spacing:113.908191px;}
.ws183{word-spacing:114.147294px;}
.ws171{word-spacing:115.243829px;}
.ws16c{word-spacing:115.246488px;}
.ws170{word-spacing:138.058948px;}
.ws14e{word-spacing:239.384987px;}
._d{margin-left:-3092.501395px;}
._5{margin-left:-32.877029px;}
._6{margin-left:-23.737043px;}
._30{margin-left:-17.675876px;}
._2{margin-left:-6.575537px;}
._7{margin-left:-4.699608px;}
._0{margin-left:-3.584809px;}
._1{margin-left:-2.151482px;}
._9{margin-left:-1.074903px;}
._b{width:2.007647px;}
._8{width:3.969480px;}
._3{width:5.495073px;}
._31{width:6.783097px;}
._1e{width:13.001396px;}
._2d{width:14.063683px;}
._2f{width:15.109052px;}
._1b{width:16.509738px;}
._1a{width:17.987115px;}
._a{width:19.153071px;}
._f{width:21.519982px;}
._4{width:23.014085px;}
._17{width:24.925798px;}
._2e{width:26.084873px;}
._e{width:28.197773px;}
._10{width:29.887083px;}
._20{width:31.137942px;}
._18{width:33.957801px;}
._c{width:37.001727px;}
._12{width:40.407887px;}
._16{width:41.843578px;}
._19{width:45.968393px;}
._1f{width:49.075521px;}
._13{width:50.809798px;}
._11{width:58.197375px;}
._2c{width:59.776228px;}
._23{width:71.775851px;}
._22{width:72.783910px;}
._14{width:104.890333px;}
._26{width:106.927340px;}
._27{width:113.935180px;}
._15{width:115.317733px;}
._29{width:123.664072px;}
._2b{width:130.837640px;}
._21{width:138.583142px;}
._2a{width:149.009288px;}
._24{width:153.647110px;}
._25{width:164.644088px;}
._28{width:173.779582px;}
._1c{width:392.251464px;}
._1d{width:433.503393px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs8{font-size:38.256600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.yda{bottom:105.611700px;}
.y86{bottom:113.329200px;}
.y50{bottom:113.329500px;}
.y13e{bottom:113.329950px;}
.y198{bottom:113.330850px;}
.y16c{bottom:113.331570px;}
.yfa{bottom:113.332014px;}
.yd9{bottom:115.862441px;}
.y11b{bottom:117.553200px;}
.y1d0{bottom:118.267200px;}
.y85{bottom:131.261250px;}
.y4f{bottom:131.262150px;}
.y13d{bottom:131.262600px;}
.yf9{bottom:131.264664px;}
.y197{bottom:131.264700px;}
.y16b{bottom:131.265420px;}
.y1cf{bottom:131.717985px;}
.y32{bottom:136.648590px;}
.y11a{bottom:139.096350px;}
.y1ce{bottom:145.167015px;}
.y84{bottom:149.193300px;}
.yba{bottom:149.194800px;}
.y4e{bottom:149.196000px;}
.y13c{bottom:149.196450px;}
.y196{bottom:149.197350px;}
.y16a{bottom:149.198070px;}
.yf8{bottom:149.198514px;}
.y31{bottom:154.580640px;}
.y119{bottom:157.029000px;}
.y1cd{bottom:158.615445px;}
.yd8{bottom:159.727541px;}
.yb9{bottom:167.127450px;}
.y83{bottom:167.127750px;}
.y4d{bottom:167.128650px;}
.y13b{bottom:167.129100px;}
.y195{bottom:167.130000px;}
.yf7{bottom:167.130564px;}
.y169{bottom:167.130720px;}
.y1cc{bottom:172.066230px;}
.y30{bottom:172.512690px;}
.y118{bottom:174.962850px;}
.yd7{bottom:177.659591px;}
.y82{bottom:185.060400px;}
.yb8{bottom:185.061900px;}
.yf6{bottom:185.062614px;}
.y194{bottom:185.062650px;}
.y168{bottom:185.063370px;}
.y1cb{bottom:185.515260px;}
.y4c{bottom:187.192950px;}
.y13a{bottom:190.137750px;}
.y2f{bottom:190.444740px;}
.y117{bottom:192.894900px;}
.yd6{bottom:195.594041px;}
.y1ca{bottom:198.964290px;}
.yb7{bottom:202.993950px;}
.yf5{bottom:202.994664px;}
.y193{bottom:202.995300px;}
.y167{bottom:202.996020px;}
.y81{bottom:203.758800px;}
.y4b{bottom:205.125000px;}
.y2e{bottom:208.379190px;}
.y116{bottom:210.826950px;}
.y1c9{bottom:212.414490px;}
.yd5{bottom:213.526691px;}
.y139{bottom:219.052050px;}
.yb6{bottom:220.926600px;}
.yf4{bottom:220.926714px;}
.y192{bottom:220.927950px;}
.y166{bottom:220.928670px;}
.y80{bottom:221.691450px;}
.y4a{bottom:223.059450px;}
.y1c8{bottom:225.863520px;}
.y2d{bottom:226.311840px;}
.y115{bottom:228.759000px;}
.yd4{bottom:231.458741px;}
.y138{bottom:236.985900px;}
.yf3{bottom:238.858764px;}
.y191{bottom:238.862400px;}
.y165{bottom:238.863120px;}
.yb5{bottom:239.052600px;}
.y1c7{bottom:239.314305px;}
.y7f{bottom:239.624100px;}
.y49{bottom:240.992100px;}
.y2c{bottom:244.942890px;}
.y114{bottom:246.691050px;}
.yd3{bottom:250.528691px;}
.y1c6{bottom:252.763335px;}
.y137{bottom:254.917950px;}
.yf2{bottom:256.793214px;}
.y190{bottom:256.795050px;}
.yb4{bottom:256.984650px;}
.y7e{bottom:257.556750px;}
.y48{bottom:258.924750px;}
.y2b{bottom:262.875540px;}
.y113{bottom:264.625500px;}
.y1c5{bottom:266.212365px;}
.yd2{bottom:268.462541px;}
.y164{bottom:269.445000px;}
.y136{bottom:272.850600px;}
.yf1{bottom:274.725864px;}
.y18f{bottom:274.727700px;}
.yb3{bottom:274.916700px;}
.y7d{bottom:275.489400px;}
.y47{bottom:276.857400px;}
.y1c4{bottom:279.662565px;}
.y163{bottom:279.695970px;}
.y2a{bottom:280.808190px;}
.y112{bottom:282.558150px;}
.y135{bottom:290.888100px;}
.yf0{bottom:292.658514px;}
.y18e{bottom:292.660350px;}
.yb2{bottom:292.848750px;}
.y1c3{bottom:293.111595px;}
.y7c{bottom:294.188400px;}
.y46{bottom:296.922900px;}
.yd0{bottom:296.986590px;}
.y29{bottom:298.742040px;}
.y111{bottom:300.490200px;}
.y1c2{bottom:306.560625px;}
.y134{bottom:308.820150px;}
.yef{bottom:310.591164px;}
.y18d{bottom:310.593000px;}
.yb1{bottom:310.780800px;}
.y7b{bottom:312.121050px;}
.ycf{bottom:312.678000px;}
.yce{bottom:314.487600px;}
.yd1{bottom:314.488541px;}
.y45{bottom:314.855550px;}
.y28{bottom:316.674090px;}
.y1c1{bottom:320.011410px;}
.y110{bottom:322.885350px;}
.y133{bottom:326.754600px;}
.yee{bottom:328.523814px;}
.yb0{bottom:328.715250px;}
.y7a{bottom:330.053700px;}
.y44{bottom:332.788200px;}
.y1c0{bottom:333.460440px;}
.y162{bottom:334.405500px;}
.y27{bottom:334.606140px;}
.y161{bottom:344.656320px;}
.y132{bottom:344.687250px;}
.y10f{bottom:345.278700px;}
.yaf{bottom:346.647300px;}
.y1bf{bottom:346.910640px;}
.y18c{bottom:348.115500px;}
.y79{bottom:348.752700px;}
.y43{bottom:350.720850px;}
.yed{bottom:351.070164px;}
.y26{bottom:352.538190px;}
.ycd{bottom:358.649100px;}
.y208{bottom:359.907660px;}
.y1be{bottom:360.359670px;}
.y131{bottom:362.619900px;}
.yae{bottom:364.579350px;}
.y18b{bottom:366.646500px;}
.y78{bottom:366.685350px;}
.y42{bottom:368.653500px;}
.y25{bottom:370.470240px;}
.y10e{bottom:371.827500px;}
.y207{bottom:373.358445px;}
.y1bd{bottom:373.808700px;}
.ycc{bottom:376.581750px;}
.yec{bottom:378.527814px;}
.y130{bottom:380.552550px;}
.yad{bottom:382.512000px;}
.y77{bottom:384.618000px;}
.y18a{bottom:385.176000px;}
.y41{bottom:386.587350px;}
.y206{bottom:386.807475px;}
.y1bc{bottom:387.259485px;}
.y24{bottom:388.402290px;}
.ycb{bottom:394.514400px;}
.yeb{bottom:396.367314px;}
.y12f{bottom:398.485200px;}
.y10d{bottom:398.512200px;}
.y160{bottom:399.199500px;}
.y205{bottom:400.258260px;}
.y1bb{bottom:400.708515px;}
.y76{bottom:402.551850px;}
.y189{bottom:403.707000px;}
.y40{bottom:404.520000px;}
.yac{bottom:405.828150px;}
.y23{bottom:406.336740px;}
.y15f{bottom:409.449750px;}
.yca{bottom:412.447050px;}
.y204{bottom:413.706690px;}
.y1ba{bottom:414.157545px;}
.yea{bottom:414.299964px;}
.y12e{bottom:416.419050px;}
.y75{bottom:420.484500px;}
.y3f{bottom:422.452650px;}
.y22{bottom:424.269390px;}
.y10c{bottom:425.441850px;}
.y203{bottom:427.155720px;}
.y1b9{bottom:427.607745px;}
.y188{bottom:428.589000px;}
.yc9{bottom:430.379700px;}
.ye9{bottom:432.233814px;}
.y12d{bottom:434.351700px;}
.yab{bottom:435.488850px;}
.y74{bottom:438.417150px;}
.y3e{bottom:440.385300px;}
.y202{bottom:440.606505px;}
.y1b8{bottom:441.056775px;}
.yc8{bottom:448.313550px;}
.ye8{bottom:450.166464px;}
.y21{bottom:451.104090px;}
.y10b{bottom:452.125500px;}
.y187{bottom:452.178870px;}
.y12c{bottom:452.284350px;}
.yaa{bottom:453.423300px;}
.y201{bottom:454.055535px;}
.y1b7{bottom:454.507560px;}
.y73{bottom:457.116150px;}
.y3d{bottom:460.450800px;}
.y15e{bottom:461.600550px;}
.y186{bottom:464.133750px;}
.yc7{bottom:466.246200px;}
.y200{bottom:467.504565px;}
.y1b6{bottom:467.956590px;}
.ye7{bottom:468.099114px;}
.y12b{bottom:470.217000px;}
.ya9{bottom:471.355350px;}
.y72{bottom:475.048800px;}
.y3c{bottom:478.383450px;}
.y10a{bottom:479.054550px;}
.y15d{bottom:479.533200px;}
.y185{bottom:479.771250px;}
.y1ff{bottom:480.954765px;}
.y1b5{bottom:481.405620px;}
.yc6{bottom:484.178850px;}
.ye6{bottom:486.031764px;}
.y12a{bottom:488.149650px;}
.y20{bottom:489.222240px;}
.ya8{bottom:489.288000px;}
.y71{bottom:492.981450px;}
.y1fe{bottom:494.403795px;}
.y1b4{bottom:494.855820px;}
.y3b{bottom:496.316100px;}
.y109{bottom:496.742850px;}
.y15c{bottom:497.465250px;}
.yc5{bottom:502.111500px;}
.ye5{bottom:503.963814px;}
.y1f{bottom:504.164820px;}
.y129{bottom:506.082300px;}
.y184{bottom:506.841600px;}
.y1fd{bottom:507.852825px;}
.y1b3{bottom:508.304850px;}
.y70{bottom:510.914100px;}
.ya7{bottom:513.087000px;}
.y108{bottom:514.675500px;}
.y15b{bottom:515.397900px;}
.y3a{bottom:516.379800px;}
.y1e{bottom:519.808770px;}
.yc4{bottom:520.044150px;}
.y1fc{bottom:521.303610px;}
.y128{bottom:524.016750px;}
.y183{bottom:524.774250px;}
.y1b2{bottom:526.462500px;}
.ye4{bottom:526.510764px;}
.y6f{bottom:528.846750px;}
.ya6{bottom:531.019650px;}
.y107{bottom:532.608150px;}
.y15a{bottom:533.332350px;}
.y39{bottom:534.314250px;}
.y1fb{bottom:534.752640px;}
.y1d{bottom:534.753105px;}
.yc3{bottom:537.976800px;}
.y127{bottom:541.948800px;}
.y182{bottom:542.706900px;}
.y6e{bottom:546.779400px;}
.y1fa{bottom:548.202840px;}
.y1c{bottom:549.696270px;}
.y1b1{bottom:549.722400px;}
.y106{bottom:550.542000px;}
.y159{bottom:551.264400px;}
.y38{bottom:552.246900px;}
.ye3{bottom:553.967814px;}
.y126{bottom:559.986300px;}
.y181{bottom:560.639550px;}
.ya5{bottom:560.680350px;}
.y1f9{bottom:561.651870px;}
.yc2{bottom:564.598800px;}
.y1b{bottom:564.640605px;}
.y6d{bottom:564.713250px;}
.y1b0{bottom:567.655050px;}
.y105{bottom:568.474650px;}
.y158{bottom:569.197050px;}
.y37{bottom:570.179550px;}
.ye2{bottom:571.902264px;}
.y1f8{bottom:575.100900px;}
.y125{bottom:577.918950px;}
.y180{bottom:578.572200px;}
.ya4{bottom:578.614800px;}
.y1a{bottom:579.584940px;}
.y6c{bottom:582.645900px;}
.y1af{bottom:585.589500px;}
.y104{bottom:586.406700px;}
.y36{bottom:588.112200px;}
.y1f7{bottom:588.551685px;}
.ye1{bottom:589.834914px;}
.y157{bottom:593.630700px;}
.y19{bottom:594.528105px;}
.y124{bottom:595.851600px;}
.y17f{bottom:596.506050px;}
.ya3{bottom:596.547450px;}
.y6b{bottom:600.578550px;}
.y1f6{bottom:602.000715px;}
.yc1{bottom:602.284500px;}
.y1ae{bottom:603.521550px;}
.y103{bottom:604.339350px;}
.y35{bottom:606.044850px;}
.ye0{bottom:607.767564px;}
.y18{bottom:609.473025px;}
.y156{bottom:611.562750px;}
.y123{bottom:613.785450px;}
.y17e{bottom:614.438700px;}
.ya2{bottom:614.480100px;}
.y1f5{bottom:615.449745px;}
.y6a{bottom:618.511200px;}
.yc0{bottom:620.218350px;}
.y1ad{bottom:621.453600px;}
.y34{bottom:623.977500px;}
.y17{bottom:624.417945px;}
.ydf{bottom:625.700214px;}
.y1f4{bottom:628.899945px;}
.y155{bottom:629.496600px;}
.y122{bottom:631.718100px;}
.y17d{bottom:632.371350px;}
.ya1{bottom:632.412750px;}
.y102{bottom:637.006500px;}
.y69{bottom:637.210200px;}
.ybf{bottom:638.151000px;}
.y16{bottom:639.360525px;}
.y1ac{bottom:639.385650px;}
.y1f3{bottom:642.348975px;}
.yde{bottom:643.632864px;}
.y121{bottom:649.650750px;}
.y17c{bottom:650.304000px;}
.ya0{bottom:650.345400px;}
.y15{bottom:654.305445px;}
.y68{bottom:655.142850px;}
.y1f2{bottom:655.799760px;}
.ybe{bottom:656.083650px;}
.y1ab{bottom:657.317700px;}
.y154{bottom:657.959100px;}
.ydd{bottom:661.472364px;}
.y120{bottom:667.583400px;}
.y17b{bottom:668.236650px;}
.y9f{bottom:668.278050px;}
.y14{bottom:669.248025px;}
.y1f1{bottom:669.248790px;}
.y67{bottom:673.075500px;}
.y1aa{bottom:675.249750px;}
.ydc{bottom:679.405014px;}
.ybd{bottom:679.405650px;}
.y33{bottom:679.426500px;}
.y1f0{bottom:682.697820px;}
.y13{bottom:684.192360px;}
.y11f{bottom:685.516050px;}
.y17a{bottom:686.170500px;}
.y9e{bottom:686.404050px;}
.y1a9{bottom:690.335250px;}
.y66{bottom:691.007550px;}
.y1ef{bottom:696.148020px;}
.ydb{bottom:697.337664px;}
.ybc{bottom:697.338300px;}
.y12{bottom:699.136695px;}
.y153{bottom:700.121400px;}
.y11e{bottom:703.450500px;}
.y179{bottom:704.103150px;}
.y9d{bottom:704.337900px;}
.y1ee{bottom:709.597050px;}
.y11{bottom:714.079860px;}
.y152{bottom:718.053450px;}
.y65{bottom:718.243050px;}
.y1a8{bottom:718.355400px;}
.y11d{bottom:721.382550px;}
.y9c{bottom:722.270550px;}
.y178{bottom:722.637000px;}
.y1ed{bottom:723.046080px;}
.y10{bottom:729.024195px;}
.y151{bottom:735.987900px;}
.y1a7{bottom:736.289250px;}
.y1ec{bottom:736.496865px;}
.y9b{bottom:740.203200px;}
.y177{bottom:740.569650px;}
.yf{bottom:743.968530px;}
.ybb{bottom:747.102000px;}
.y1eb{bottom:749.945895px;}
.y64{bottom:752.773500px;}
.y150{bottom:753.920550px;}
.y1a6{bottom:754.221900px;}
.y9a{bottom:758.135850px;}
.y176{bottom:758.502300px;}
.ye{bottom:758.911695px;}
.y1ea{bottom:763.396095px;}
.y63{bottom:770.706150px;}
.y11c{bottom:771.427500px;}
.y14f{bottom:771.853200px;}
.y1a5{bottom:772.154550px;}
.yd{bottom:773.856615px;}
.y99{bottom:776.261850px;}
.y175{bottom:776.434950px;}
.y1e9{bottom:776.845125px;}
.y62{bottom:788.638800px;}
.yc{bottom:788.801535px;}
.y14e{bottom:789.785850px;}
.y1a4{bottom:790.087200px;}
.y1e8{bottom:790.294155px;}
.y98{bottom:794.194500px;}
.y174{bottom:794.369400px;}
.yb{bottom:803.744115px;}
.y1e7{bottom:803.744940px;}
.y61{bottom:806.571450px;}
.y14d{bottom:807.718500px;}
.y1a3{bottom:808.019850px;}
.y97{bottom:812.127150px;}
.y173{bottom:812.302050px;}
.y1e6{bottom:817.193970px;}
.ya{bottom:818.688450px;}
.y60{bottom:824.505300px;}
.y14c{bottom:825.651150px;}
.y1a2{bottom:825.952500px;}
.y96{bottom:830.059800px;}
.y172{bottom:830.234700px;}
.y1e5{bottom:830.643000px;}
.y9{bottom:833.632785px;}
.y5f{bottom:842.437950px;}
.y14b{bottom:843.585000px;}
.y1a1{bottom:843.886350px;}
.y1e4{bottom:844.093200px;}
.y95{bottom:847.993650px;}
.y171{bottom:848.167350px;}
.y8{bottom:848.575950px;}
.y1e3{bottom:857.542230px;}
.y5e{bottom:860.370600px;}
.y1a0{bottom:861.819000px;}
.y14a{bottom:863.181150px;}
.y94{bottom:865.926300px;}
.y170{bottom:866.100000px;}
.y1e2{bottom:870.993015px;}
.y5d{bottom:878.303250px;}
.y149{bottom:881.113800px;}
.y93{bottom:883.858950px;}
.y16f{bottom:884.032650px;}
.y1e1{bottom:884.442045px;}
.y19f{bottom:884.458500px;}
.y5c{bottom:896.235900px;}
.y1e0{bottom:897.891075px;}
.y148{bottom:899.046450px;}
.y92{bottom:901.791600px;}
.y16e{bottom:910.282650px;}
.y1df{bottom:911.341275px;}
.y5b{bottom:914.168550px;}
.y147{bottom:916.980300px;}
.y7{bottom:918.042300px;}
.y91{bottom:919.723650px;}
.y1de{bottom:924.790305px;}
.y19e{bottom:930.463500px;}
.y5a{bottom:932.102400px;}
.y146{bottom:934.912350px;}
.y6{bottom:936.533850px;}
.y90{bottom:937.849650px;}
.y1dd{bottom:938.239335px;}
.y19d{bottom:948.994500px;}
.y59{bottom:950.035050px;}
.y1dc{bottom:951.690120px;}
.y145{bottom:952.845000px;}
.y5{bottom:955.027800px;}
.y8f{bottom:955.782300px;}
.y16d{bottom:961.650000px;}
.y1db{bottom:965.139150px;}
.y19c{bottom:970.513500px;}
.y144{bottom:972.441150px;}
.y58{bottom:972.572550px;}
.y4{bottom:973.521150px;}
.y8e{bottom:973.908300px;}
.y101{bottom:974.103450px;}
.y1da{bottom:978.587580px;}
.y143{bottom:990.373200px;}
.y57{bottom:991.271550px;}
.y8d{bottom:991.842750px;}
.y100{bottom:992.037300px;}
.y1d9{bottom:992.038365px;}
.y3{bottom:992.234850px;}
.y19b{bottom:992.775720px;}
.y19a{bottom:1004.730600px;}
.y1d8{bottom:1005.487395px;}
.y142{bottom:1008.307650px;}
.y56{bottom:1009.204200px;}
.y8c{bottom:1009.774800px;}
.yff{bottom:1009.969950px;}
.y1d7{bottom:1018.937595px;}
.y199{bottom:1020.369300px;}
.y141{bottom:1026.239700px;}
.y55{bottom:1027.136850px;}
.y8b{bottom:1027.706850px;}
.yfe{bottom:1027.902600px;}
.y1d6{bottom:1032.386625px;}
.y2{bottom:1039.309650px;}
.y140{bottom:1044.171750px;}
.y54{bottom:1045.070700px;}
.y8a{bottom:1045.639500px;}
.yfd{bottom:1045.835250px;}
.y1d5{bottom:1045.835655px;}
.y1d4{bottom:1059.286440px;}
.y13f{bottom:1062.104400px;}
.y53{bottom:1063.003350px;}
.y89{bottom:1063.765500px;}
.yfc{bottom:1063.767900px;}
.y1d3{bottom:1072.735470px;}
.y52{bottom:1080.936000px;}
.y1{bottom:1081.152000px;}
.y88{bottom:1081.697550px;}
.yfb{bottom:1081.700550px;}
.y1d2{bottom:1086.184500px;}
.y87{bottom:1099.630200px;}
.y1d1{bottom:1099.634700px;}
.y51{bottom:1099.635000px;}
.hd{height:13.801292px;}
.h16{height:24.675533px;}
.h1c{height:28.787846px;}
.h1f{height:32.804932px;}
.h9{height:32.900573px;}
.h1d{height:33.091855px;}
.h1e{height:33.134948px;}
.h20{height:33.141979px;}
.h4{height:36.905702px;}
.h8{height:37.228493px;}
.h7{height:37.605082px;}
.ha{height:41.006062px;}
.h6{height:41.125613px;}
.h13{height:41.364715px;}
.h5{height:41.425613px;}
.hf{height:42.141798px;}
.hb{height:44.831700px;}
.h3{height:45.238339px;}
.h2{height:45.568808px;}
.h12{height:49.891087px;}
.h17{height:49.895827px;}
.h15{height:50.476886px;}
.h14{height:52.886407px;}
.he{height:64.733312px;}
.h11{height:82.129469px;}
.h19{height:82.129493px;}
.h1a{height:82.580838px;}
.h18{height:82.583178px;}
.h1b{height:85.270860px;}
.h10{height:85.273080px;}
.hc{height:90.709112px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:73.445956px;}
.x22{left:85.400760px;}
.x13{left:88.390306px;}
.x1{left:100.904850px;}
.x18{left:103.478985px;}
.x8{left:111.016260px;}
.x38{left:113.286405px;}
.x39{left:117.938342px;}
.x35{left:133.567350px;}
.x7{left:136.076760px;}
.x26{left:143.222835px;}
.x31{left:149.157300px;}
.x21{left:173.713590px;}
.x34{left:176.679000px;}
.x33{left:182.656500px;}
.x23{left:185.050980px;}
.x32{left:187.690500px;}
.x36{left:188.858970px;}
.x24{left:195.805215px;}
.x19{left:197.317485px;}
.x3{left:198.544200px;}
.x15{left:203.429791px;}
.xa{left:206.821073px;}
.x20{left:209.691135px;}
.x6{left:212.182410px;}
.x4{left:216.067176px;}
.x37{left:219.897000px;}
.x2{left:225.696000px;}
.x27{left:239.269500px;}
.x25{left:259.816500px;}
.x1c{left:266.500500px;}
.x1f{left:269.233500px;}
.x5{left:272.056410px;}
.x1d{left:282.274500px;}
.x9{left:376.882073px;}
.x1e{left:432.608430px;}
.x16{left:467.967000px;}
.x2a{left:472.429500px;}
.x10{left:477.785736px;}
.x17{left:482.909580px;}
.x1a{left:497.422710px;}
.x2e{left:499.810500px;}
.xf{left:502.845636px;}
.x30{left:505.512000px;}
.x3a{left:507.809972px;}
.x2d{left:511.489500px;}
.x2f{left:514.431000px;}
.x2c{left:516.523500px;}
.x28{left:559.148850px;}
.x2b{left:563.761350px;}
.x12{left:569.069806px;}
.xb{left:570.590573px;}
.xe{left:578.950086px;}
.x1b{left:599.378160px;}
.x29{left:636.322500px;}
.xc{left:643.592502px;}
.x3b{left:656.725720px;}
.xd{left:697.739586px;}
.x11{left:743.651806px;}
@media print{
.vc{vertical-align:-15.002080pt;}
.v5{vertical-align:-13.135413pt;}
.v1{vertical-align:-7.972907pt;}
.v9{vertical-align:-5.312501pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.941653pt;}
.va{vertical-align:19.279147pt;}
.vb{vertical-align:21.941653pt;}
.v8{vertical-align:26.827077pt;}
.v7{vertical-align:32.137493pt;}
.v2{vertical-align:35.941653pt;}
.v4{vertical-align:49.910427pt;}
.v3{vertical-align:55.227093pt;}
.ls1{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.001072pt;}
.ls0{letter-spacing:0.004109pt;}
.ls1d{letter-spacing:0.012299pt;}
.ls10{letter-spacing:0.016512pt;}
.ls18{letter-spacing:0.027408pt;}
.ls16{letter-spacing:0.029104pt;}
.ls13{letter-spacing:0.029309pt;}
.ls15{letter-spacing:0.029488pt;}
.ls2f{letter-spacing:0.029549pt;}
.ls20{letter-spacing:0.033709pt;}
.ls14{letter-spacing:0.034405pt;}
.ls1f{letter-spacing:0.040266pt;}
.ls12{letter-spacing:0.044426pt;}
.lsb{letter-spacing:0.044486pt;}
.lsf{letter-spacing:0.046566pt;}
.ls9{letter-spacing:0.050726pt;}
.ls3d{letter-spacing:0.747748pt;}
.ls22{letter-spacing:1.516154pt;}
.ls8{letter-spacing:1.518234pt;}
.ls43{letter-spacing:2.108071pt;}
.ls3e{letter-spacing:2.108204pt;}
.ls17{letter-spacing:2.177954pt;}
.ls3c{letter-spacing:2.179123pt;}
.ls3{letter-spacing:2.183283pt;}
.ls41{letter-spacing:2.360539pt;}
.ls4{letter-spacing:2.651513pt;}
.ls2b{letter-spacing:2.655307pt;}
.ls6{letter-spacing:2.655551pt;}
.ls3b{letter-spacing:2.656122pt;}
.ls2c{letter-spacing:2.657653pt;}
.ls7{letter-spacing:2.657753pt;}
.ls5{letter-spacing:2.658529pt;}
.ls11{letter-spacing:2.659226pt;}
.ls2a{letter-spacing:2.659650pt;}
.ls1e{letter-spacing:2.663386pt;}
.ls32{letter-spacing:2.672255pt;}
.ls24{letter-spacing:2.676415pt;}
.ls27{letter-spacing:3.816441pt;}
.lsa{letter-spacing:5.812652pt;}
.ls23{letter-spacing:5.814732pt;}
.lsc{letter-spacing:5.818945pt;}
.ls36{letter-spacing:7.380737pt;}
.lse{letter-spacing:7.381818pt;}
.ls42{letter-spacing:10.525307pt;}
.ls3f{letter-spacing:11.464880pt;}
.ls30{letter-spacing:11.805973pt;}
.ls39{letter-spacing:11.812213pt;}
.ls34{letter-spacing:11.846239pt;}
.ls31{letter-spacing:11.850399pt;}
.ls3a{letter-spacing:11.852479pt;}
.ls2d{letter-spacing:12.228907pt;}
.ls2e{letter-spacing:12.266986pt;}
.ls46{letter-spacing:13.506533pt;}
.ls26{letter-spacing:14.146566pt;}
.ls44{letter-spacing:14.566960pt;}
.ls29{letter-spacing:14.760000pt;}
.ls28{letter-spacing:14.802833pt;}
.ls45{letter-spacing:16.066960pt;}
.ls1b{letter-spacing:17.663603pt;}
.ls40{letter-spacing:19.373200pt;}
.ls1a{letter-spacing:20.296719pt;}
.ls38{letter-spacing:21.173119pt;}
.ls1c{letter-spacing:23.452438pt;}
.ls37{letter-spacing:26.570507pt;}
.ls25{letter-spacing:30.413233pt;}
.ls2{letter-spacing:31.889744pt;}
.lsd{letter-spacing:32.350726pt;}
.ls33{letter-spacing:95.167252pt;}
.ls35{letter-spacing:98.666986pt;}
.ls21{letter-spacing:396.975291pt;}
.ws12b{word-spacing:-26.566933pt;}
.ws1a6{word-spacing:-25.504320pt;}
.ws56{word-spacing:-21.253600pt;}
.ws149{word-spacing:-19.180954pt;}
.ws14b{word-spacing:-19.175800pt;}
.ws14a{word-spacing:-19.159647pt;}
.wsd2{word-spacing:-14.771374pt;}
.wsc{word-spacing:-11.955200pt;}
.ws14d{word-spacing:-11.792876pt;}
.wsc8{word-spacing:-11.747473pt;}
.wsba{word-spacing:-11.035148pt;}
.ws14c{word-spacing:-10.728014pt;}
.wsc9{word-spacing:-7.068346pt;}
.ws19c{word-spacing:-2.142210pt;}
.ws1dc{word-spacing:-2.142077pt;}
.ws1{word-spacing:-0.058447pt;}
.ws8{word-spacing:-0.053134pt;}
.ws28{word-spacing:-0.042507pt;}
.ws19a{word-spacing:-0.034006pt;}
.ws57{word-spacing:0.000000pt;}
.ws24{word-spacing:5.117591pt;}
.ws1d0{word-spacing:5.951518pt;}
.ws200{word-spacing:7.056705pt;}
.ws2{word-spacing:9.701461pt;}
.ws1b6{word-spacing:10.372139pt;}
.ws1bf{word-spacing:10.456601pt;}
.ws1be{word-spacing:10.456899pt;}
.ws1bd{word-spacing:10.457579pt;}
.ws1c2{word-spacing:10.965965pt;}
.ws1e3{word-spacing:11.009322pt;}
.ws1e2{word-spacing:11.010342pt;}
.ws1a0{word-spacing:11.305938pt;}
.ws1b5{word-spacing:11.307043pt;}
.ws1b4{word-spacing:11.338296pt;}
.ws1a3{word-spacing:11.391207pt;}
.ws1a1{word-spacing:11.392185pt;}
.ws1a2{word-spacing:11.434012pt;}
.ws196{word-spacing:11.561023pt;}
.ws22{word-spacing:11.619546pt;}
.ws1e7{word-spacing:11.944226pt;}
.ws1d3{word-spacing:12.028857pt;}
.ws1d4{word-spacing:12.072342pt;}
.ws168{word-spacing:12.167177pt;}
.ws1d{word-spacing:12.290567pt;}
.ws1f8{word-spacing:12.497329pt;}
.ws1f9{word-spacing:12.538986pt;}
.ws179{word-spacing:12.540071pt;}
.ws1e4{word-spacing:12.623916pt;}
.ws1e5{word-spacing:12.666083pt;}
.ws180{word-spacing:12.698675pt;}
.ws129{word-spacing:12.751544pt;}
.ws19f{word-spacing:12.836409pt;}
.ws32{word-spacing:12.964557pt;}
.ws1c5{word-spacing:12.965164pt;}
.ws1c6{word-spacing:12.965546pt;}
.ws16a{word-spacing:12.980790pt;}
.ws181{word-spacing:12.980901pt;}
.ws169{word-spacing:12.981571pt;}
.ws5b{word-spacing:13.016894pt;}
.wsdb{word-spacing:13.123162pt;}
.wsac{word-spacing:13.123427pt;}
.wsa4{word-spacing:13.282563pt;}
.ws1f7{word-spacing:13.304116pt;}
.ws1ed{word-spacing:13.305391pt;}
.ws1ee{word-spacing:13.305689pt;}
.ws21{word-spacing:13.389107pt;}
.wsa6{word-spacing:13.443240pt;}
.ws1ef{word-spacing:13.473762pt;}
.ws1f1{word-spacing:13.475207pt;}
.ws1f0{word-spacing:13.475718pt;}
.ws161{word-spacing:13.548445pt;}
.ws6a{word-spacing:13.548552pt;}
.wsa8{word-spacing:13.548711pt;}
.ws167{word-spacing:13.549189pt;}
.ws1fb{word-spacing:13.601496pt;}
.ws141{word-spacing:13.649537pt;}
.ws142{word-spacing:13.654554pt;}
.ws1a9{word-spacing:13.728848pt;}
.ws1c{word-spacing:13.867458pt;}
.ws11{word-spacing:13.962669pt;}
.wsfd{word-spacing:14.025397pt;}
.ws195{word-spacing:14.026703pt;}
.wsff{word-spacing:14.027606pt;}
.wsfe{word-spacing:14.042318pt;}
.ws65{word-spacing:14.080475pt;}
.ws204{word-spacing:14.153835pt;}
.ws124{word-spacing:14.293754pt;}
.wsf2{word-spacing:14.345241pt;}
.ws178{word-spacing:14.345294pt;}
.wsfc{word-spacing:14.346038pt;}
.wsce{word-spacing:14.452465pt;}
.ws1da{word-spacing:14.494063pt;}
.ws1df{word-spacing:14.494615pt;}
.ws1e1{word-spacing:14.494955pt;}
.ws1db{word-spacing:14.495763pt;}
.ws1e0{word-spacing:14.538228pt;}
.ws1dd{word-spacing:14.538483pt;}
.ws2f{word-spacing:14.610910pt;}
.ws107{word-spacing:14.717284pt;}
.ws1d8{word-spacing:14.747345pt;}
.ws1d9{word-spacing:14.750466pt;}
.wsaa{word-spacing:14.823446pt;}
.ws1fa{word-spacing:14.831683pt;}
.ws1d5{word-spacing:14.833817pt;}
.ws16e{word-spacing:14.833908pt;}
.wsb7{word-spacing:14.833993pt;}
.wsf6{word-spacing:14.834205pt;}
.ws39{word-spacing:14.834460pt;}
.ws156{word-spacing:14.834588pt;}
.ws1a4{word-spacing:14.834758pt;}
.ws1a5{word-spacing:14.834843pt;}
.ws1c7{word-spacing:14.835098pt;}
.ws1eb{word-spacing:14.835480pt;}
.ws10d{word-spacing:14.835863pt;}
.ws1bc{word-spacing:14.835990pt;}
.ws1f6{word-spacing:14.836026pt;}
.ws1b2{word-spacing:14.837226pt;}
.ws1aa{word-spacing:14.837626pt;}
.ws1c0{word-spacing:14.878073pt;}
.ws1c1{word-spacing:14.920240pt;}
.ws49{word-spacing:14.929554pt;}
.ws1c4{word-spacing:14.961939pt;}
.ws1c3{word-spacing:14.962534pt;}
.ws3f{word-spacing:14.982953pt;}
.ws1a8{word-spacing:15.132478pt;}
.ws1a7{word-spacing:15.132776pt;}
.wsec{word-spacing:15.142196pt;}
.ws153{word-spacing:15.248570pt;}
.ws6b{word-spacing:15.301544pt;}
.ws100{word-spacing:15.301969pt;}
.ws206{word-spacing:15.302294pt;}
.ws205{word-spacing:15.302549pt;}
.ws20a{word-spacing:15.344717pt;}
.ws20b{word-spacing:15.386926pt;}
.wsbb{word-spacing:15.408077pt;}
.ws72{word-spacing:15.408396pt;}
.wsb9{word-spacing:15.433810pt;}
.ws6d{word-spacing:15.515142pt;}
.ws1b3{word-spacing:15.727154pt;}
.wse{word-spacing:15.733808pt;}
.ws1fc{word-spacing:15.770001pt;}
.wse9{word-spacing:15.779696pt;}
.ws31{word-spacing:15.779855pt;}
.ws123{word-spacing:15.781237pt;}
.ws103{word-spacing:15.839436pt;}
.ws186{word-spacing:15.841665pt;}
.wsa2{word-spacing:15.852711pt;}
.ws157{word-spacing:15.854633pt;}
.ws185{word-spacing:15.854846pt;}
.wsa3{word-spacing:15.877153pt;}
.ws69{word-spacing:15.881549pt;}
.wsf4{word-spacing:15.939469pt;}
.ws1ea{word-spacing:15.982240pt;}
.wsbf{word-spacing:15.992284pt;}
.ws108{word-spacing:15.992550pt;}
.ws1e8{word-spacing:16.024279pt;}
.ws1e9{word-spacing:16.025724pt;}
.ws3b{word-spacing:16.045843pt;}
.ws19{word-spacing:16.067263pt;}
.wsdc{word-spacing:16.099987pt;}
.ws12{word-spacing:16.115705pt;}
.ws19d{word-spacing:16.151758pt;}
.wsd9{word-spacing:16.312894pt;}
.ws128{word-spacing:16.366134pt;}
.wsb6{word-spacing:16.472136pt;}
.ws11b{word-spacing:16.577182pt;}
.ws1e6{word-spacing:16.619975pt;}
.ws155{word-spacing:16.629944pt;}
.ws139{word-spacing:16.630050pt;}
.wsf0{word-spacing:16.631644pt;}
.ws5{word-spacing:16.688503pt;}
.wsb{word-spacing:16.688646pt;}
.ws4{word-spacing:16.689698pt;}
.ws75{word-spacing:16.736212pt;}
.ws1b{word-spacing:16.784097pt;}
.ws199{word-spacing:16.790174pt;}
.ws19b{word-spacing:16.790429pt;}
.ws130{word-spacing:16.842958pt;}
.ws121{word-spacing:16.844286pt;}
.ws67{word-spacing:17.003369pt;}
.ws25{word-spacing:17.024826pt;}
.ws7b{word-spacing:17.108308pt;}
.ws48{word-spacing:17.161442pt;}
.ws1b7{word-spacing:17.172016pt;}
.wsae{word-spacing:17.215107pt;}
.ws7f{word-spacing:17.268241pt;}
.ws3c{word-spacing:17.269251pt;}
.ws8c{word-spacing:17.321641pt;}
.ws98{word-spacing:17.322119pt;}
.ws9a{word-spacing:17.322278pt;}
.wsd7{word-spacing:17.375146pt;}
.ws4b{word-spacing:17.375518pt;}
.ws145{word-spacing:17.426473pt;}
.ws146{word-spacing:17.427908pt;}
.wsc5{word-spacing:17.480139pt;}
.wsc2{word-spacing:17.481945pt;}
.ws165{word-spacing:17.533592pt;}
.wscb{word-spacing:17.534442pt;}
.wsca{word-spacing:17.576030pt;}
.wscc{word-spacing:17.577829pt;}
.wscd{word-spacing:17.587894pt;}
.ws188{word-spacing:17.692568pt;}
.ws52{word-spacing:17.694268pt;}
.ws17e{word-spacing:17.746233pt;}
.ws118{word-spacing:17.746605pt;}
.ws30{word-spacing:17.798836pt;}
.ws13d{word-spacing:17.852448pt;}
.wsa5{word-spacing:17.852979pt;}
.ws193{word-spacing:17.853032pt;}
.ws23{word-spacing:17.884166pt;}
.ws26{word-spacing:17.884453pt;}
.ws166{word-spacing:17.905210pt;}
.wsdd{word-spacing:17.906219pt;}
.ws15e{word-spacing:17.906485pt;}
.ws198{word-spacing:17.937061pt;}
.ws197{word-spacing:17.937188pt;}
.ws176{word-spacing:17.959619pt;}
.wsf5{word-spacing:18.012115pt;}
.ws2c{word-spacing:18.012381pt;}
.ws4e{word-spacing:18.064824pt;}
.wsde{word-spacing:18.065090pt;}
.wsc1{word-spacing:18.117852pt;}
.ws96{word-spacing:18.171092pt;}
.wse5{word-spacing:18.171623pt;}
.ws12f{word-spacing:18.171676pt;}
.ws5a{word-spacing:18.171782pt;}
.ws1de{word-spacing:18.192784pt;}
.ws11e{word-spacing:18.224757pt;}
.ws120{word-spacing:18.225235pt;}
.ws187{word-spacing:18.278847pt;}
.ws79{word-spacing:18.383574pt;}
.ws3d{word-spacing:18.384105pt;}
.ws46{word-spacing:18.436442pt;}
.ws10b{word-spacing:18.489948pt;}
.ws1b0{word-spacing:18.490037pt;}
.ws1b1{word-spacing:18.491100pt;}
.ws8d{word-spacing:18.542710pt;}
.ws5d{word-spacing:18.542763pt;}
.ws43{word-spacing:18.542816pt;}
.ws58{word-spacing:18.542869pt;}
.ws80{word-spacing:18.542922pt;}
.ws85{word-spacing:18.542976pt;}
.wsa7{word-spacing:18.543082pt;}
.ws68{word-spacing:18.543135pt;}
.ws40{word-spacing:18.543241pt;}
.wsbe{word-spacing:18.543294pt;}
.ws33{word-spacing:18.543348pt;}
.ws88{word-spacing:18.543507pt;}
.ws143{word-spacing:18.543560pt;}
.ws4c{word-spacing:18.543719pt;}
.ws117{word-spacing:18.543879pt;}
.ws104{word-spacing:18.544091pt;}
.ws6{word-spacing:18.544145pt;}
.wsa1{word-spacing:18.544251pt;}
.ws18f{word-spacing:18.544304pt;}
.ws61{word-spacing:18.544410pt;}
.ws7{word-spacing:18.544782pt;}
.ws1fd{word-spacing:18.574924pt;}
.ws1fe{word-spacing:18.575221pt;}
.ws66{word-spacing:18.596003pt;}
.ws71{word-spacing:18.596109pt;}
.ws1a{word-spacing:18.649443pt;}
.ws126{word-spacing:18.649722pt;}
.ws1cb{word-spacing:18.660661pt;}
.ws1ca{word-spacing:18.660746pt;}
.wsdf{word-spacing:18.702324pt;}
.ws84{word-spacing:18.702590pt;}
.wsf7{word-spacing:18.915338pt;}
.ws17d{word-spacing:18.915657pt;}
.ws137{word-spacing:18.967834pt;}
.wsab{word-spacing:18.967940pt;}
.ws20d{word-spacing:19.001484pt;}
.ws20c{word-spacing:19.012596pt;}
.ws4a{word-spacing:19.021871pt;}
.wsc0{word-spacing:19.074102pt;}
.ws12c{word-spacing:19.074155pt;}
.ws12a{word-spacing:19.088803pt;}
.ws1e{word-spacing:19.128081pt;}
.ws1cc{word-spacing:19.171682pt;}
.ws1cd{word-spacing:19.212957pt;}
.wsb2{word-spacing:19.234088pt;}
.ws207{word-spacing:19.255166pt;}
.ws122{word-spacing:19.288019pt;}
.ws208{word-spacing:19.297334pt;}
.ws1ac{word-spacing:19.298566pt;}
.ws1ab{word-spacing:19.298821pt;}
.ws1ad{word-spacing:19.298906pt;}
.wsf1{word-spacing:19.339930pt;}
.ws42{word-spacing:19.553104pt;}
.wse0{word-spacing:19.605440pt;}
.ws1d1{word-spacing:19.680664pt;}
.ws209{word-spacing:19.681174pt;}
.ws1d2{word-spacing:19.681471pt;}
.ws2d{word-spacing:19.711655pt;}
.ws164{word-spacing:19.818985pt;}
.ws101{word-spacing:19.871694pt;}
.ws102{word-spacing:19.872172pt;}
.ws1ce{word-spacing:19.892774pt;}
.ws4f{word-spacing:19.924190pt;}
.ws1cf{word-spacing:19.936259pt;}
.ws5f{word-spacing:19.977643pt;}
.ws1d6{word-spacing:20.020254pt;}
.ws17f{word-spacing:20.084602pt;}
.wsd{word-spacing:20.084879pt;}
.ws4d{word-spacing:20.190338pt;}
.ws10f{word-spacing:20.244003pt;}
.wse7{word-spacing:20.296340pt;}
.wsd4{word-spacing:20.350537pt;}
.ws3{word-spacing:20.398341pt;}
.ws9{word-spacing:20.398458pt;}
.wsa{word-spacing:20.398867pt;}
.ws15{word-spacing:20.418716pt;}
.wsc4{word-spacing:20.562488pt;}
.ws16{word-spacing:20.611578pt;}
.ws106{word-spacing:20.615462pt;}
.ws53{word-spacing:20.668224pt;}
.ws177{word-spacing:20.669287pt;}
.ws1f{word-spacing:20.707411pt;}
.ws131{word-spacing:20.722792pt;}
.wsc7{word-spacing:20.775342pt;}
.wsd3{word-spacing:20.775501pt;}
.ws127{word-spacing:20.776298pt;}
.ws78{word-spacing:20.827572pt;}
.wsb5{word-spacing:21.041649pt;}
.ws44{word-spacing:21.146748pt;}
.ws15a{word-spacing:21.200519pt;}
.ws16b{word-spacing:21.206190pt;}
.ws12d{word-spacing:21.252590pt;}
.ws1c8{word-spacing:21.295257pt;}
.ws1c9{word-spacing:21.296575pt;}
.wsd8{word-spacing:21.305724pt;}
.ws1d7{word-spacing:21.380271pt;}
.ws18b{word-spacing:21.411992pt;}
.ws11c{word-spacing:21.412736pt;}
.ws1ec{word-spacing:21.423119pt;}
.ws13c{word-spacing:21.465232pt;}
.ws134{word-spacing:21.519375pt;}
.wsaf{word-spacing:21.571606pt;}
.wsed{word-spacing:21.571872pt;}
.ws1ae{word-spacing:21.593190pt;}
.ws1af{word-spacing:21.593828pt;}
.ws151{word-spacing:21.624846pt;}
.ws12e{word-spacing:21.625643pt;}
.ws7c{word-spacing:21.677714pt;}
.ws77{word-spacing:21.677767pt;}
.ws9e{word-spacing:21.678352pt;}
.ws150{word-spacing:21.731645pt;}
.wsad{word-spacing:21.731751pt;}
.ws189{word-spacing:21.785789pt;}
.ws201{word-spacing:21.805939pt;}
.ws83{word-spacing:21.890090pt;}
.wsa9{word-spacing:21.890887pt;}
.ws20{word-spacing:21.901257pt;}
.wsf3{word-spacing:21.943331pt;}
.ws87{word-spacing:21.944287pt;}
.ws8f{word-spacing:21.944499pt;}
.ws3e{word-spacing:21.945031pt;}
.ws15c{word-spacing:21.996624pt;}
.ws38{word-spacing:22.050076pt;}
.ws13f{word-spacing:22.102785pt;}
.ws19e{word-spacing:22.103021pt;}
.wsd6{word-spacing:22.262612pt;}
.ws154{word-spacing:22.315214pt;}
.ws14f{word-spacing:22.315374pt;}
.ws160{word-spacing:22.316915pt;}
.ws2a{word-spacing:22.368614pt;}
.ws1ba{word-spacing:22.400274pt;}
.ws1bb{word-spacing:22.401507pt;}
.ws1f4{word-spacing:22.443164pt;}
.ws1f5{word-spacing:22.486904pt;}
.ws140{word-spacing:22.528122pt;}
.ws1ff{word-spacing:22.528603pt;}
.ws125{word-spacing:22.582531pt;}
.ws94{word-spacing:22.635665pt;}
.ws15b{word-spacing:22.688267pt;}
.wse4{word-spacing:22.793472pt;}
.wsb3{word-spacing:22.794004pt;}
.wsc6{word-spacing:22.900537pt;}
.ws37{word-spacing:22.952980pt;}
.wse8{word-spacing:23.007283pt;}
.wsa0{word-spacing:23.007549pt;}
.ws15f{word-spacing:23.112754pt;}
.ws174{word-spacing:23.165622pt;}
.ws9c{word-spacing:23.165888pt;}
.ws133{word-spacing:23.325502pt;}
.wsb8{word-spacing:23.325555pt;}
.ws1f2{word-spacing:23.336410pt;}
.ws47{word-spacing:23.378104pt;}
.ws1f3{word-spacing:23.379895pt;}
.ws191{word-spacing:23.431026pt;}
.ws82{word-spacing:23.432035pt;}
.ws2e{word-spacing:23.432141pt;}
.wsf8{word-spacing:23.484372pt;}
.ws7a{word-spacing:23.484638pt;}
.ws135{word-spacing:23.590427pt;}
.ws116{word-spacing:23.590480pt;}
.ws17c{word-spacing:23.591118pt;}
.ws89{word-spacing:23.592181pt;}
.ws13b{word-spacing:23.645315pt;}
.ws172{word-spacing:23.697651pt;}
.ws2b{word-spacing:23.856097pt;}
.ws97{word-spacing:24.068738pt;}
.ws59{word-spacing:24.121713pt;}
.ws3a{word-spacing:24.123679pt;}
.ws1b8{word-spacing:24.137325pt;}
.ws1b9{word-spacing:24.143154pt;}
.ws14{word-spacing:24.148930pt;}
.ws35{word-spacing:24.229043pt;}
.ws99{word-spacing:24.229681pt;}
.ws11d{word-spacing:24.281752pt;}
.wse2{word-spacing:24.388551pt;}
.ws136{word-spacing:24.495031pt;}
.ws18{word-spacing:24.579604pt;}
.ws105{word-spacing:24.653105pt;}
.ws138{word-spacing:24.708045pt;}
.ws60{word-spacing:24.760807pt;}
.ws144{word-spacing:24.806933pt;}
.ws7d{word-spacing:24.812878pt;}
.wsb0{word-spacing:24.814313pt;}
.ws95{word-spacing:24.866915pt;}
.ws86{word-spacing:24.972386pt;}
.wsef{word-spacing:24.972758pt;}
.ws11a{word-spacing:24.973449pt;}
.ws10{word-spacing:25.009752pt;}
.ws11f{word-spacing:25.025786pt;}
.wseb{word-spacing:25.079663pt;}
.ws36{word-spacing:25.079823pt;}
.ws64{word-spacing:25.184603pt;}
.ws9f{word-spacing:25.237896pt;}
.ws6e{word-spacing:25.291402pt;}
.wsc3{word-spacing:25.397669pt;}
.ws8a{word-spacing:25.398148pt;}
.wsb1{word-spacing:25.505212pt;}
.ws15d{word-spacing:25.610683pt;}
.ws115{word-spacing:25.610949pt;}
.ws55{word-spacing:25.663286pt;}
.ws7e{word-spacing:25.769288pt;}
.ws10a{word-spacing:25.822794pt;}
.ws5c{word-spacing:25.876193pt;}
.wse3{word-spacing:26.035913pt;}
.ws17b{word-spacing:26.087772pt;}
.ws119{word-spacing:26.088410pt;}
.ws13{word-spacing:26.156973pt;}
.ws112{word-spacing:26.300520pt;}
.ws9d{word-spacing:26.406788pt;}
.ws62{word-spacing:26.406947pt;}
.ws175{word-spacing:26.407000pt;}
.ws41{word-spacing:26.460134pt;}
.ws17{word-spacing:26.492006pt;}
.wse1{word-spacing:26.513268pt;}
.wsda{word-spacing:26.514862pt;}
.wsb4{word-spacing:26.567040pt;}
.wscf{word-spacing:26.619642pt;}
.ws6c{word-spacing:26.778778pt;}
.ws202{word-spacing:26.863743pt;}
.ws203{word-spacing:26.863998pt;}
.wsd1{word-spacing:26.938020pt;}
.ws114{word-spacing:26.992164pt;}
.wsea{word-spacing:26.992589pt;}
.ws73{word-spacing:27.150981pt;}
.ws18d{word-spacing:27.258046pt;}
.ws173{word-spacing:27.416916pt;}
.ws74{word-spacing:27.628814pt;}
.ws13e{word-spacing:27.682532pt;}
.ws194{word-spacing:27.735560pt;}
.ws113{word-spacing:27.896077pt;}
.wsee{word-spacing:27.896236pt;}
.ws10c{word-spacing:28.001920pt;}
.ws92{word-spacing:28.054150pt;}
.ws110{word-spacing:28.055479pt;}
.ws45{word-spacing:28.372635pt;}
.ws162{word-spacing:28.533843pt;}
.wsd5{word-spacing:28.638038pt;}
.ws76{word-spacing:28.638145pt;}
.ws50{word-spacing:28.640111pt;}
.ws18e{word-spacing:28.744837pt;}
.ws109{word-spacing:28.850946pt;}
.ws27{word-spacing:29.169643pt;}
.wse6{word-spacing:29.169802pt;}
.ws10e{word-spacing:29.223414pt;}
.ws158{word-spacing:29.490093pt;}
.ws91{word-spacing:29.541899pt;}
.ws51{word-spacing:29.595829pt;}
.ws163{word-spacing:29.753903pt;}
.ws190{word-spacing:29.754540pt;}
.ws81{word-spacing:29.754965pt;}
.ws13a{word-spacing:29.755125pt;}
.ws6f{word-spacing:29.966863pt;}
.wsf9{word-spacing:30.285720pt;}
.wsfb{word-spacing:30.286198pt;}
.wsfa{word-spacing:30.314851pt;}
.ws132{word-spacing:30.338535pt;}
.ws18c{word-spacing:30.338800pt;}
.ws111{word-spacing:30.871095pt;}
.wsd0{word-spacing:31.082674pt;}
.ws159{word-spacing:31.188517pt;}
.ws90{word-spacing:31.188783pt;}
.ws17a{word-spacing:31.349194pt;}
.ws8b{word-spacing:31.455462pt;}
.ws8e{word-spacing:31.509127pt;}
.wsf{word-spacing:31.513333pt;}
.ws63{word-spacing:31.667306pt;}
.ws34{word-spacing:31.827717pt;}
.ws54{word-spacing:31.879948pt;}
.ws29{word-spacing:31.933507pt;}
.wsbc{word-spacing:32.246693pt;}
.wsbd{word-spacing:32.251673pt;}
.ws93{word-spacing:32.464314pt;}
.ws148{word-spacing:32.783064pt;}
.ws147{word-spacing:32.793755pt;}
.ws152{word-spacing:33.208667pt;}
.ws18a{word-spacing:34.271503pt;}
.ws5e{word-spacing:35.598947pt;}
.ws70{word-spacing:39.903268pt;}
.ws0{word-spacing:44.504273pt;}
.ws192{word-spacing:49.041603pt;}
.ws9b{word-spacing:49.042187pt;}
.ws182{word-spacing:63.718718pt;}
.ws16f{word-spacing:93.814241pt;}
.ws184{word-spacing:95.004931pt;}
.ws16d{word-spacing:101.251725pt;}
.ws183{word-spacing:101.464261pt;}
.ws171{word-spacing:102.438959pt;}
.ws16c{word-spacing:102.441323pt;}
.ws170{word-spacing:122.719065pt;}
.ws14e{word-spacing:212.786655pt;}
._d{margin-left:-2748.890129pt;}
._5{margin-left:-29.224026pt;}
._6{margin-left:-21.099594pt;}
._30{margin-left:-15.711890pt;}
._2{margin-left:-5.844922pt;}
._7{margin-left:-4.177430pt;}
._0{margin-left:-3.186497pt;}
._1{margin-left:-1.912429pt;}
._9{margin-left:-0.955469pt;}
._b{width:1.784575pt;}
._8{width:3.528427pt;}
._3{width:4.884509pt;}
._31{width:6.029420pt;}
._1e{width:11.556797pt;}
._2d{width:12.501051pt;}
._2f{width:13.430269pt;}
._1b{width:14.675323pt;}
._1a{width:15.988547pt;}
._a{width:17.024952pt;}
._f{width:19.128873pt;}
._4{width:20.456964pt;}
._17{width:22.156264pt;}
._2e{width:23.186554pt;}
._e{width:25.064687pt;}
._10{width:26.566296pt;}
._20{width:27.678171pt;}
._18{width:30.184712pt;}
._c{width:32.890424pt;}
._12{width:35.918122pt;}
._16{width:37.194291pt;}
._19{width:40.860794pt;}
._1f{width:43.622685pt;}
._13{width:45.164265pt;}
._11{width:51.731000pt;}
._2c{width:53.134425pt;}
._23{width:63.800757pt;}
._22{width:64.696809pt;}
._14{width:93.235852pt;}
._26{width:95.046524pt;}
._27{width:101.275715pt;}
._15{width:102.504652pt;}
._29{width:109.923619pt;}
._2b{width:116.300124pt;}
._21{width:123.185015pt;}
._2a{width:132.452701pt;}
._24{width:136.575209pt;}
._25{width:146.350301pt;}
._28{width:154.470740pt;}
._1c{width:348.667968pt;}
._1d{width:385.336349pt;}
.fs6{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs8{font-size:34.005867pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:93.877067pt;}
.y86{bottom:100.737067pt;}
.y50{bottom:100.737333pt;}
.y13e{bottom:100.737733pt;}
.y198{bottom:100.738533pt;}
.y16c{bottom:100.739173pt;}
.yfa{bottom:100.739568pt;}
.yd9{bottom:102.988836pt;}
.y11b{bottom:104.491733pt;}
.y1d0{bottom:105.126400pt;}
.y85{bottom:116.676667pt;}
.y4f{bottom:116.677467pt;}
.y13d{bottom:116.677867pt;}
.yf9{bottom:116.679701pt;}
.y197{bottom:116.679733pt;}
.y16b{bottom:116.680373pt;}
.y1cf{bottom:117.082653pt;}
.y32{bottom:121.465413pt;}
.y11a{bottom:123.641200pt;}
.y1ce{bottom:129.037347pt;}
.y84{bottom:132.616267pt;}
.yba{bottom:132.617600pt;}
.y4e{bottom:132.618667pt;}
.y13c{bottom:132.619067pt;}
.y196{bottom:132.619867pt;}
.y16a{bottom:132.620507pt;}
.yf8{bottom:132.620901pt;}
.y31{bottom:137.405013pt;}
.y119{bottom:139.581333pt;}
.y1cd{bottom:140.991507pt;}
.yd8{bottom:141.980036pt;}
.yb9{bottom:148.557733pt;}
.y83{bottom:148.558000pt;}
.y4d{bottom:148.558800pt;}
.y13b{bottom:148.559200pt;}
.y195{bottom:148.560000pt;}
.yf7{bottom:148.560501pt;}
.y169{bottom:148.560640pt;}
.y1cc{bottom:152.947760pt;}
.y30{bottom:153.344613pt;}
.y118{bottom:155.522533pt;}
.yd7{bottom:157.919636pt;}
.y82{bottom:164.498133pt;}
.yb8{bottom:164.499467pt;}
.yf6{bottom:164.500101pt;}
.y194{bottom:164.500133pt;}
.y168{bottom:164.500773pt;}
.y1cb{bottom:164.902453pt;}
.y4c{bottom:166.393733pt;}
.y13a{bottom:169.011333pt;}
.y2f{bottom:169.284213pt;}
.y117{bottom:171.462133pt;}
.yd6{bottom:173.861369pt;}
.y1ca{bottom:176.857147pt;}
.yb7{bottom:180.439067pt;}
.yf5{bottom:180.439701pt;}
.y193{bottom:180.440267pt;}
.y167{bottom:180.440907pt;}
.y81{bottom:181.118933pt;}
.y4b{bottom:182.333333pt;}
.y2e{bottom:185.225947pt;}
.y116{bottom:187.401733pt;}
.y1c9{bottom:188.812880pt;}
.yd5{bottom:189.801503pt;}
.y139{bottom:194.712933pt;}
.yb6{bottom:196.379200pt;}
.yf4{bottom:196.379301pt;}
.y192{bottom:196.380400pt;}
.y166{bottom:196.381040pt;}
.y80{bottom:197.059067pt;}
.y4a{bottom:198.275067pt;}
.y1c8{bottom:200.767573pt;}
.y2d{bottom:201.166080pt;}
.y115{bottom:203.341333pt;}
.yd4{bottom:205.741103pt;}
.y138{bottom:210.654133pt;}
.yf3{bottom:212.318901pt;}
.y191{bottom:212.322133pt;}
.y165{bottom:212.322773pt;}
.yb5{bottom:212.491200pt;}
.y1c7{bottom:212.723827pt;}
.y7f{bottom:212.999200pt;}
.y49{bottom:214.215200pt;}
.y2c{bottom:217.727013pt;}
.y114{bottom:219.280933pt;}
.yd3{bottom:222.692169pt;}
.y1c6{bottom:224.678520pt;}
.y137{bottom:226.593733pt;}
.yf2{bottom:228.260635pt;}
.y190{bottom:228.262267pt;}
.yb4{bottom:228.430800pt;}
.y7e{bottom:228.939333pt;}
.y48{bottom:230.155333pt;}
.y2b{bottom:233.667147pt;}
.y113{bottom:235.222667pt;}
.y1c5{bottom:236.633213pt;}
.yd2{bottom:238.633369pt;}
.y164{bottom:239.506667pt;}
.y136{bottom:242.533867pt;}
.yf1{bottom:244.200768pt;}
.y18f{bottom:244.202400pt;}
.yb3{bottom:244.370400pt;}
.y7d{bottom:244.879467pt;}
.y47{bottom:246.095467pt;}
.y1c4{bottom:248.588947pt;}
.y163{bottom:248.618640pt;}
.y2a{bottom:249.607280pt;}
.y112{bottom:251.162800pt;}
.y135{bottom:258.567200pt;}
.yf0{bottom:260.140901pt;}
.y18e{bottom:260.142533pt;}
.yb2{bottom:260.310000pt;}
.y1c3{bottom:260.543640pt;}
.y7c{bottom:261.500800pt;}
.y46{bottom:263.931467pt;}
.yd0{bottom:263.988080pt;}
.y29{bottom:265.548480pt;}
.y111{bottom:267.102400pt;}
.y1c2{bottom:272.498333pt;}
.y134{bottom:274.506800pt;}
.yef{bottom:276.081035pt;}
.y18d{bottom:276.082667pt;}
.yb1{bottom:276.249600pt;}
.y7b{bottom:277.440933pt;}
.ycf{bottom:277.936000pt;}
.yce{bottom:279.544533pt;}
.yd1{bottom:279.545369pt;}
.y45{bottom:279.871600pt;}
.y28{bottom:281.488080pt;}
.y1c1{bottom:284.454587pt;}
.y110{bottom:287.009200pt;}
.y133{bottom:290.448533pt;}
.yee{bottom:292.021168pt;}
.yb0{bottom:292.191333pt;}
.y7a{bottom:293.381067pt;}
.y44{bottom:295.811733pt;}
.y1c0{bottom:296.409280pt;}
.y162{bottom:297.249333pt;}
.y27{bottom:297.427680pt;}
.y161{bottom:306.361173pt;}
.y132{bottom:306.388667pt;}
.y10f{bottom:306.914400pt;}
.yaf{bottom:308.130933pt;}
.y1bf{bottom:308.365013pt;}
.y18c{bottom:309.436000pt;}
.y79{bottom:310.002400pt;}
.y43{bottom:311.751867pt;}
.yed{bottom:312.062368pt;}
.y26{bottom:313.367280pt;}
.ycd{bottom:318.799200pt;}
.y208{bottom:319.917920pt;}
.y1be{bottom:320.319707pt;}
.y131{bottom:322.328800pt;}
.yae{bottom:324.070533pt;}
.y18b{bottom:325.908000pt;}
.y78{bottom:325.942533pt;}
.y42{bottom:327.692000pt;}
.y25{bottom:329.306880pt;}
.y10e{bottom:330.513333pt;}
.y207{bottom:331.874173pt;}
.y1bd{bottom:332.274400pt;}
.ycc{bottom:334.739333pt;}
.yec{bottom:336.469168pt;}
.y130{bottom:338.268933pt;}
.yad{bottom:340.010667pt;}
.y77{bottom:341.882667pt;}
.y18a{bottom:342.378667pt;}
.y41{bottom:343.633200pt;}
.y206{bottom:343.828867pt;}
.y1bc{bottom:344.230653pt;}
.y24{bottom:345.246480pt;}
.ycb{bottom:350.679467pt;}
.yeb{bottom:352.326501pt;}
.y12f{bottom:354.209067pt;}
.y10d{bottom:354.233067pt;}
.y160{bottom:354.844000pt;}
.y205{bottom:355.785120pt;}
.y1bb{bottom:356.185347pt;}
.y76{bottom:357.823867pt;}
.y189{bottom:358.850667pt;}
.y40{bottom:359.573333pt;}
.yac{bottom:360.736133pt;}
.y23{bottom:361.188213pt;}
.y15f{bottom:363.955333pt;}
.yca{bottom:366.619600pt;}
.y204{bottom:367.739280pt;}
.y1ba{bottom:368.140040pt;}
.yea{bottom:368.266635pt;}
.y12e{bottom:370.150267pt;}
.y75{bottom:373.764000pt;}
.y3f{bottom:375.513467pt;}
.y22{bottom:377.128347pt;}
.y10c{bottom:378.170533pt;}
.y203{bottom:379.693973pt;}
.y1b9{bottom:380.095773pt;}
.y188{bottom:380.968000pt;}
.yc9{bottom:382.559733pt;}
.ye9{bottom:384.207835pt;}
.y12d{bottom:386.090400pt;}
.yab{bottom:387.101200pt;}
.y74{bottom:389.704133pt;}
.y3e{bottom:391.453600pt;}
.y202{bottom:391.650227pt;}
.y1b8{bottom:392.050467pt;}
.yc8{bottom:398.500933pt;}
.ye8{bottom:400.147968pt;}
.y21{bottom:400.981413pt;}
.y10b{bottom:401.889333pt;}
.y187{bottom:401.936773pt;}
.y12c{bottom:402.030533pt;}
.yaa{bottom:403.042933pt;}
.y201{bottom:403.604920pt;}
.y1b7{bottom:404.006720pt;}
.y73{bottom:406.325467pt;}
.y3d{bottom:409.289600pt;}
.y15e{bottom:410.311600pt;}
.y186{bottom:412.563333pt;}
.yc7{bottom:414.441067pt;}
.y200{bottom:415.559613pt;}
.y1b6{bottom:415.961413pt;}
.ye7{bottom:416.088101pt;}
.y12b{bottom:417.970667pt;}
.ya9{bottom:418.982533pt;}
.y72{bottom:422.265600pt;}
.y3c{bottom:425.229733pt;}
.y10a{bottom:425.826267pt;}
.y15d{bottom:426.251733pt;}
.y185{bottom:426.463333pt;}
.y1ff{bottom:427.515347pt;}
.y1b5{bottom:427.916107pt;}
.yc6{bottom:430.381200pt;}
.ye6{bottom:432.028235pt;}
.y12a{bottom:433.910800pt;}
.y20{bottom:434.864213pt;}
.ya8{bottom:434.922667pt;}
.y71{bottom:438.205733pt;}
.y1fe{bottom:439.470040pt;}
.y1b4{bottom:439.871840pt;}
.y3b{bottom:441.169867pt;}
.y109{bottom:441.549200pt;}
.y15c{bottom:442.191333pt;}
.yc5{bottom:446.321333pt;}
.ye5{bottom:447.967835pt;}
.y1f{bottom:448.146507pt;}
.y129{bottom:449.850933pt;}
.y184{bottom:450.525867pt;}
.y1fd{bottom:451.424733pt;}
.y1b3{bottom:451.826533pt;}
.y70{bottom:454.145867pt;}
.ya7{bottom:456.077333pt;}
.y108{bottom:457.489333pt;}
.y15b{bottom:458.131467pt;}
.y3a{bottom:459.004267pt;}
.y1e{bottom:462.052240pt;}
.yc4{bottom:462.261467pt;}
.y1fc{bottom:463.380987pt;}
.y128{bottom:465.792667pt;}
.y183{bottom:466.466000pt;}
.y1b2{bottom:467.966667pt;}
.ye4{bottom:468.009568pt;}
.y6f{bottom:470.086000pt;}
.ya6{bottom:472.017467pt;}
.y107{bottom:473.429467pt;}
.y15a{bottom:474.073200pt;}
.y39{bottom:474.946000pt;}
.y1fb{bottom:475.335680pt;}
.y1d{bottom:475.336093pt;}
.yc3{bottom:478.201600pt;}
.y127{bottom:481.732267pt;}
.y182{bottom:482.406133pt;}
.y6e{bottom:486.026133pt;}
.y1fa{bottom:487.291413pt;}
.y1c{bottom:488.618907pt;}
.y1b1{bottom:488.642133pt;}
.y106{bottom:489.370667pt;}
.y159{bottom:490.012800pt;}
.y38{bottom:490.886133pt;}
.ye3{bottom:492.415835pt;}
.y126{bottom:497.765600pt;}
.y181{bottom:498.346267pt;}
.ya5{bottom:498.382533pt;}
.y1f9{bottom:499.246107pt;}
.yc2{bottom:501.865600pt;}
.y1b{bottom:501.902760pt;}
.y6d{bottom:501.967333pt;}
.y1b0{bottom:504.582267pt;}
.y105{bottom:505.310800pt;}
.y158{bottom:505.952933pt;}
.y37{bottom:506.826267pt;}
.ye2{bottom:508.357568pt;}
.y1f8{bottom:511.200800pt;}
.y125{bottom:513.705733pt;}
.y180{bottom:514.286400pt;}
.ya4{bottom:514.324267pt;}
.y1a{bottom:515.186613pt;}
.y6c{bottom:517.907467pt;}
.y1af{bottom:520.524000pt;}
.y104{bottom:521.250400pt;}
.y36{bottom:522.766400pt;}
.y1f7{bottom:523.157053pt;}
.ye1{bottom:524.297701pt;}
.y157{bottom:527.671733pt;}
.y19{bottom:528.469427pt;}
.y124{bottom:529.645867pt;}
.y17f{bottom:530.227600pt;}
.ya3{bottom:530.264400pt;}
.y6b{bottom:533.847600pt;}
.y1f6{bottom:535.111747pt;}
.yc1{bottom:535.364000pt;}
.y1ae{bottom:536.463600pt;}
.y103{bottom:537.190533pt;}
.y35{bottom:538.706533pt;}
.ye0{bottom:540.237835pt;}
.y18{bottom:541.753800pt;}
.y156{bottom:543.611333pt;}
.y123{bottom:545.587067pt;}
.y17e{bottom:546.167733pt;}
.ya2{bottom:546.204533pt;}
.y1f5{bottom:547.066440pt;}
.y6a{bottom:549.787733pt;}
.yc0{bottom:551.305200pt;}
.y1ad{bottom:552.403200pt;}
.y34{bottom:554.646667pt;}
.y17{bottom:555.038173pt;}
.ydf{bottom:556.177968pt;}
.y1f4{bottom:559.022173pt;}
.y155{bottom:559.552533pt;}
.y122{bottom:561.527200pt;}
.y17d{bottom:562.107867pt;}
.ya1{bottom:562.144667pt;}
.y102{bottom:566.228000pt;}
.y69{bottom:566.409067pt;}
.ybf{bottom:567.245333pt;}
.y16{bottom:568.320467pt;}
.y1ac{bottom:568.342800pt;}
.y1f3{bottom:570.976867pt;}
.yde{bottom:572.118101pt;}
.y121{bottom:577.467333pt;}
.y17c{bottom:578.048000pt;}
.ya0{bottom:578.084800pt;}
.y15{bottom:581.604840pt;}
.y68{bottom:582.349200pt;}
.y1f2{bottom:582.933120pt;}
.ybe{bottom:583.185467pt;}
.y1ab{bottom:584.282400pt;}
.y154{bottom:584.852533pt;}
.ydd{bottom:587.975435pt;}
.y120{bottom:593.407467pt;}
.y17b{bottom:593.988133pt;}
.y9f{bottom:594.024933pt;}
.y14{bottom:594.887133pt;}
.y1f1{bottom:594.887813pt;}
.y67{bottom:598.289333pt;}
.y1aa{bottom:600.222000pt;}
.ydc{bottom:603.915568pt;}
.ybd{bottom:603.916133pt;}
.y33{bottom:603.934667pt;}
.y1f0{bottom:606.842507pt;}
.y13{bottom:608.170987pt;}
.y11f{bottom:609.347600pt;}
.y17a{bottom:609.929333pt;}
.y9e{bottom:610.136933pt;}
.y1a9{bottom:613.631333pt;}
.y66{bottom:614.228933pt;}
.y1ef{bottom:618.798240pt;}
.ydb{bottom:619.855701pt;}
.ybc{bottom:619.856267pt;}
.y12{bottom:621.454840pt;}
.y153{bottom:622.330133pt;}
.y11e{bottom:625.289333pt;}
.y179{bottom:625.869467pt;}
.y9d{bottom:626.078133pt;}
.y1ee{bottom:630.752933pt;}
.y11{bottom:634.737653pt;}
.y152{bottom:638.269733pt;}
.y65{bottom:638.438267pt;}
.y1a8{bottom:638.538133pt;}
.y11d{bottom:641.228933pt;}
.y9c{bottom:642.018267pt;}
.y178{bottom:642.344000pt;}
.y1ed{bottom:642.707627pt;}
.y10{bottom:648.021507pt;}
.y151{bottom:654.211467pt;}
.y1a7{bottom:654.479333pt;}
.y1ec{bottom:654.663880pt;}
.y9b{bottom:657.958400pt;}
.y177{bottom:658.284133pt;}
.yf{bottom:661.305360pt;}
.ybb{bottom:664.090667pt;}
.y1eb{bottom:666.618573pt;}
.y64{bottom:669.132000pt;}
.y150{bottom:670.151600pt;}
.y1a6{bottom:670.419467pt;}
.y9a{bottom:673.898533pt;}
.y176{bottom:674.224267pt;}
.ye{bottom:674.588173pt;}
.y1ea{bottom:678.574307pt;}
.y63{bottom:685.072133pt;}
.y11c{bottom:685.713333pt;}
.y14f{bottom:686.091733pt;}
.y1a5{bottom:686.359600pt;}
.yd{bottom:687.872547pt;}
.y99{bottom:690.010533pt;}
.y175{bottom:690.164400pt;}
.y1e9{bottom:690.529000pt;}
.y62{bottom:701.012267pt;}
.yc{bottom:701.156920pt;}
.y14e{bottom:702.031867pt;}
.y1a4{bottom:702.299733pt;}
.y1e8{bottom:702.483693pt;}
.y98{bottom:705.950667pt;}
.y174{bottom:706.106133pt;}
.yb{bottom:714.439213pt;}
.y1e7{bottom:714.439947pt;}
.y61{bottom:716.952400pt;}
.y14d{bottom:717.972000pt;}
.y1a3{bottom:718.239867pt;}
.y97{bottom:721.890800pt;}
.y173{bottom:722.046267pt;}
.y1e6{bottom:726.394640pt;}
.ya{bottom:727.723067pt;}
.y60{bottom:732.893600pt;}
.y14c{bottom:733.912133pt;}
.y1a2{bottom:734.180000pt;}
.y96{bottom:737.830933pt;}
.y172{bottom:737.986400pt;}
.y1e5{bottom:738.349333pt;}
.y9{bottom:741.006920pt;}
.y5f{bottom:748.833733pt;}
.y14b{bottom:749.853333pt;}
.y1a1{bottom:750.121200pt;}
.y1e4{bottom:750.305067pt;}
.y95{bottom:753.772133pt;}
.y171{bottom:753.926533pt;}
.y8{bottom:754.289733pt;}
.y1e3{bottom:762.259760pt;}
.y5e{bottom:764.773867pt;}
.y1a0{bottom:766.061333pt;}
.y14a{bottom:767.272133pt;}
.y94{bottom:769.712267pt;}
.y170{bottom:769.866667pt;}
.y1e2{bottom:774.216013pt;}
.y5d{bottom:780.714000pt;}
.y149{bottom:783.212267pt;}
.y93{bottom:785.652400pt;}
.y16f{bottom:785.806800pt;}
.y1e1{bottom:786.170707pt;}
.y19f{bottom:786.185333pt;}
.y5c{bottom:796.654133pt;}
.y1e0{bottom:798.125400pt;}
.y148{bottom:799.152400pt;}
.y92{bottom:801.592533pt;}
.y16e{bottom:809.140133pt;}
.y1df{bottom:810.081133pt;}
.y5b{bottom:812.594267pt;}
.y147{bottom:815.093600pt;}
.y7{bottom:816.037600pt;}
.y91{bottom:817.532133pt;}
.y1de{bottom:822.035827pt;}
.y19e{bottom:827.078667pt;}
.y5a{bottom:828.535467pt;}
.y146{bottom:831.033200pt;}
.y6{bottom:832.474533pt;}
.y90{bottom:833.644133pt;}
.y1dd{bottom:833.990520pt;}
.y19d{bottom:843.550667pt;}
.y59{bottom:844.475600pt;}
.y1dc{bottom:845.946773pt;}
.y145{bottom:846.973333pt;}
.y5{bottom:848.913600pt;}
.y8f{bottom:849.584267pt;}
.y16d{bottom:854.800000pt;}
.y1db{bottom:857.901467pt;}
.y19c{bottom:862.678667pt;}
.y144{bottom:864.392133pt;}
.y58{bottom:864.508933pt;}
.y4{bottom:865.352133pt;}
.y8e{bottom:865.696267pt;}
.y101{bottom:865.869733pt;}
.y1da{bottom:869.855627pt;}
.y143{bottom:880.331733pt;}
.y57{bottom:881.130267pt;}
.y8d{bottom:881.638000pt;}
.y100{bottom:881.810933pt;}
.y1d9{bottom:881.811880pt;}
.y3{bottom:881.986533pt;}
.y19b{bottom:882.467307pt;}
.y19a{bottom:893.093867pt;}
.y1d8{bottom:893.766573pt;}
.y142{bottom:896.273467pt;}
.y56{bottom:897.070400pt;}
.y8c{bottom:897.577600pt;}
.yff{bottom:897.751067pt;}
.y1d7{bottom:905.722307pt;}
.y199{bottom:906.994933pt;}
.y141{bottom:912.213067pt;}
.y55{bottom:913.010533pt;}
.y8b{bottom:913.517200pt;}
.yfe{bottom:913.691200pt;}
.y1d6{bottom:917.677000pt;}
.y2{bottom:923.830800pt;}
.y140{bottom:928.152667pt;}
.y54{bottom:928.951733pt;}
.y8a{bottom:929.457333pt;}
.yfd{bottom:929.631333pt;}
.y1d5{bottom:929.631693pt;}
.y1d4{bottom:941.587947pt;}
.y13f{bottom:944.092800pt;}
.y53{bottom:944.891867pt;}
.y89{bottom:945.569333pt;}
.yfc{bottom:945.571467pt;}
.y1d3{bottom:953.542640pt;}
.y52{bottom:960.832000pt;}
.y1{bottom:961.024000pt;}
.y88{bottom:961.508933pt;}
.yfb{bottom:961.511600pt;}
.y1d2{bottom:965.497333pt;}
.y87{bottom:977.449067pt;}
.y1d1{bottom:977.453067pt;}
.y51{bottom:977.453333pt;}
.hd{height:12.267815pt;}
.h16{height:21.933807pt;}
.h1c{height:25.589197pt;}
.h1f{height:29.159939pt;}
.h9{height:29.244954pt;}
.h1d{height:29.414982pt;}
.h1e{height:29.453287pt;}
.h20{height:29.459537pt;}
.h4{height:32.805069pt;}
.h8{height:33.091994pt;}
.h7{height:33.426739pt;}
.ha{height:36.449833pt;}
.h6{height:36.556100pt;}
.h13{height:36.768636pt;}
.h5{height:36.822767pt;}
.hf{height:37.459376pt;}
.hb{height:39.850400pt;}
.h3{height:40.211857pt;}
.h2{height:40.505607pt;}
.h12{height:44.347633pt;}
.h17{height:44.351846pt;}
.h15{height:44.868343pt;}
.h14{height:47.010140pt;}
.he{height:57.540722pt;}
.h11{height:73.003972pt;}
.h19{height:73.003994pt;}
.h1a{height:73.405189pt;}
.h18{height:73.407269pt;}
.h1b{height:75.796320pt;}
.h10{height:75.798293pt;}
.hc{height:80.630322pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:65.285295pt;}
.x22{left:75.911787pt;}
.x13{left:78.569161pt;}
.x1{left:89.693200pt;}
.x18{left:91.981320pt;}
.x8{left:98.681120pt;}
.x38{left:100.699027pt;}
.x39{left:104.834081pt;}
.x35{left:118.726533pt;}
.x7{left:120.957120pt;}
.x26{left:127.309187pt;}
.x31{left:132.584267pt;}
.x21{left:154.412080pt;}
.x34{left:157.048000pt;}
.x33{left:162.361333pt;}
.x23{left:164.489760pt;}
.x32{left:166.836000pt;}
.x36{left:167.874640pt;}
.x24{left:174.049080pt;}
.x19{left:175.393320pt;}
.x3{left:176.483733pt;}
.x15{left:180.826481pt;}
.xa{left:183.840953pt;}
.x20{left:186.392120pt;}
.x6{left:188.606587pt;}
.x4{left:192.059712pt;}
.x37{left:195.464000pt;}
.x2{left:200.618667pt;}
.x27{left:212.684000pt;}
.x25{left:230.948000pt;}
.x1c{left:236.889333pt;}
.x1f{left:239.318667pt;}
.x5{left:241.827920pt;}
.x1d{left:250.910667pt;}
.x9{left:335.006287pt;}
.x1e{left:384.540827pt;}
.x16{left:415.970667pt;}
.x2a{left:419.937333pt;}
.x10{left:424.698432pt;}
.x17{left:429.252960pt;}
.x1a{left:442.153520pt;}
.x2e{left:444.276000pt;}
.xf{left:446.973899pt;}
.x30{left:449.344000pt;}
.x3a{left:451.386641pt;}
.x2d{left:454.657333pt;}
.x2f{left:457.272000pt;}
.x2c{left:459.132000pt;}
.x28{left:497.021200pt;}
.x2b{left:501.121200pt;}
.x12{left:505.839828pt;}
.xb{left:507.191620pt;}
.xe{left:514.622299pt;}
.x1b{left:532.780587pt;}
.x29{left:565.620000pt;}
.xc{left:572.082224pt;}
.x3b{left:583.756196pt;}
.xd{left:620.212965pt;}
.x11{left:661.023828pt;}
}




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