
    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_7e30cf6e76d3921983d657cb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_d680707d11b292f1dc43345d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_54ab78fa441a61057e695ae6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_26bfc2ff081121b48ff1bf69.woff')format("woff");}.ff4{font-family:ff4;line-height:1.095215;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_f3c8a0a14926594b1db6eae0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b2cf83dc70696a8293baaa7f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_5962c8cfc27840b62a7de4d1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d472f8a5c1cd036cc2bb6c67.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f8637bd0bf8185f33d36e385.woff')format("woff");}.ff9{font-family:ff9;line-height:0.959961;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_5e6bf6d092f21d640f2c902c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ff30595f6aea05cd47234e82.woff')format("woff");}.ffb{font-family:ffb;line-height:0.904297;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-23.760000px;}
.v7{vertical-align:-20.880000px;}
.v8{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.v4{vertical-align:5.760000px;}
.v3{vertical-align:15.120000px;}
.v5{vertical-align:23.578560px;}
.v2{vertical-align:55.440000px;}
.ls7e{letter-spacing:-1.656000px;}
.ls80{letter-spacing:-1.589760px;}
.ls6e{letter-spacing:-1.523520px;}
.ls9d{letter-spacing:-1.391040px;}
.ls7f{letter-spacing:-1.324800px;}
.ls5a{letter-spacing:-1.258560px;}
.ls9a{letter-spacing:-1.059840px;}
.ls90{letter-spacing:-0.993600px;}
.ls7d{letter-spacing:-0.927360px;}
.ls5b{letter-spacing:-0.861120px;}
.ls41{letter-spacing:-0.820080px;}
.ls4c{letter-spacing:-0.794880px;}
.ls4d{letter-spacing:-0.728640px;}
.ls5f{letter-spacing:-0.680400px;}
.ls4f{letter-spacing:-0.662400px;}
.ls73{letter-spacing:-0.635040px;}
.ls24{letter-spacing:-0.596160px;}
.lsf{letter-spacing:-0.589680px;}
.ls3e{letter-spacing:-0.578880px;}
.ls3d{letter-spacing:-0.530640px;}
.ls23{letter-spacing:-0.529920px;}
.ls1a{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.463680px;}
.ls8f{letter-spacing:-0.421200px;}
.ls49{letter-spacing:-0.397440px;}
.ls74{letter-spacing:-0.362880px;}
.ls21{letter-spacing:-0.360000px;}
.ls39{letter-spacing:-0.358560px;}
.ls32{letter-spacing:-0.336960px;}
.ls4e{letter-spacing:-0.331200px;}
.ls2{letter-spacing:-0.324000px;}
.ls5d{letter-spacing:-0.317520px;}
.ls6d{letter-spacing:-0.292320px;}
.ls40{letter-spacing:-0.289440px;}
.ls6f{letter-spacing:-0.276480px;}
.ls72{letter-spacing:-0.272160px;}
.ls15{letter-spacing:-0.264960px;}
.ls10{letter-spacing:-0.252720px;}
.ls36{letter-spacing:-0.241200px;}
.ls95{letter-spacing:-0.239040px;}
.ls60{letter-spacing:-0.226800px;}
.ls14{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.198720px;}
.ls3c{letter-spacing:-0.192960px;}
.ls33{letter-spacing:-0.179280px;}
.ls5e{letter-spacing:-0.136080px;}
.ls4a{letter-spacing:-0.132480px;}
.ls34{letter-spacing:-0.119520px;}
.ls5c{letter-spacing:-0.090720px;}
.lse{letter-spacing:-0.084240px;}
.ls1f{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.066240px;}
.ls35{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.025200px;}
.ls46{letter-spacing:0.033120px;}
.ls57{letter-spacing:0.045360px;}
.ls7a{letter-spacing:0.052992px;}
.ls37{letter-spacing:0.059760px;}
.ls26{letter-spacing:0.064080px;}
.ls17{letter-spacing:0.066240px;}
.ls18{letter-spacing:0.072000px;}
.ls61{letter-spacing:0.090720px;}
.ls3b{letter-spacing:0.096480px;}
.ls30{letter-spacing:0.100800px;}
.ls1{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.132480px;}
.ls56{letter-spacing:0.149760px;}
.ls97{letter-spacing:0.158976px;}
.ls3{letter-spacing:0.168480px;}
.ls59{letter-spacing:0.174240px;}
.ls54{letter-spacing:0.178848px;}
.ls29{letter-spacing:0.179280px;}
.ls31{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.192960px;}
.ls4b{letter-spacing:0.198720px;}
.ls98{letter-spacing:0.205344px;}
.lsb{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.239040px;}
.ls3f{letter-spacing:0.241200px;}
.ls93{letter-spacing:0.251712px;}
.ls44{letter-spacing:0.264960px;}
.ls71{letter-spacing:0.272160px;}
.ls7{letter-spacing:0.288000px;}
.ls92{letter-spacing:0.298800px;}
.ls1d{letter-spacing:0.302400px;}
.ls2b{letter-spacing:0.314640px;}
.ls7c{letter-spacing:0.331200px;}
.ls8a{letter-spacing:0.336960px;}
.ls2d{letter-spacing:0.357120px;}
.ls94{letter-spacing:0.358560px;}
.ls20{letter-spacing:0.360000px;}
.ls8c{letter-spacing:0.397440px;}
.ls2e{letter-spacing:0.418320px;}
.ls70{letter-spacing:0.529920px;}
.ls42{letter-spacing:0.537840px;}
.ls6c{letter-spacing:0.544320px;}
.ls38{letter-spacing:0.657360px;}
.ls85{letter-spacing:0.861120px;}
.ls8d{letter-spacing:0.887616px;}
.ls4{letter-spacing:0.894240px;}
.ls27{letter-spacing:0.896400px;}
.ls5{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.152000px;}
.ls12{letter-spacing:1.170000px;}
.ls6b{letter-spacing:1.270080px;}
.ls9c{letter-spacing:1.589760px;}
.ls13{letter-spacing:1.620000px;}
.ls6a{letter-spacing:2.309760px;}
.ls51{letter-spacing:2.318400px;}
.ls69{letter-spacing:2.721600px;}
.ls88{letter-spacing:3.047040px;}
.ls52{letter-spacing:3.245760px;}
.ls58{letter-spacing:3.447360px;}
.ls78{letter-spacing:4.438080px;}
.ls68{letter-spacing:4.469760px;}
.ls55{letter-spacing:4.590432px;}
.ls63{letter-spacing:5.146848px;}
.ls87{letter-spacing:5.166720px;}
.ls99{letter-spacing:5.206464px;}
.ls96{letter-spacing:5.895360px;}
.ls1e{letter-spacing:6.624000px;}
.ls8e{letter-spacing:7.352640px;}
.ls79{letter-spacing:8.081280px;}
.ls64{letter-spacing:8.737056px;}
.ls65{letter-spacing:8.809920px;}
.ls89{letter-spacing:9.538560px;}
.ls50{letter-spacing:10.200960px;}
.ls48{letter-spacing:10.929600px;}
.ls9b{letter-spacing:11.658240px;}
.ls62{letter-spacing:12.353760px;}
.ls66{letter-spacing:13.055904px;}
.ls91{letter-spacing:13.115520px;}
.ls67{letter-spacing:13.829760px;}
.ls53{letter-spacing:13.844160px;}
.ls76{letter-spacing:14.572800px;}
.ls83{letter-spacing:15.963840px;}
.ls84{letter-spacing:16.076448px;}
.ls82{letter-spacing:17.288640px;}
.ls81{letter-spacing:17.421120px;}
.ls7b{letter-spacing:22.455360px;}
.ls8b{letter-spacing:36.299520px;}
.ls75{letter-spacing:39.214080px;}
.ls2f{letter-spacing:56.309760px;}
.ls77{letter-spacing:59.351040px;}
.ls86{letter-spacing:60.079680px;}
.ls28{letter-spacing:61.349760px;}
.ls47{letter-spacing:64.016640px;}
.ls6{letter-spacing:81.576000px;}
.ls25{letter-spacing:86.549760px;}
.ls9{letter-spacing:93.381120px;}
.ls45{letter-spacing:117.509760px;}
.ls43{letter-spacing:150.629760px;}
.ls8{letter-spacing:151.672320px;}
.lsc{letter-spacing:218.655360px;}
.lsa{letter-spacing:662.184000px;}
.lsd{letter-spacing:806.688000px;}
.ls1c{letter-spacing:968.688000px;}
.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;}
}
.wsc1{word-spacing:-66.240000px;}
.ws69{word-spacing:-59.760000px;}
.wsfd{word-spacing:-23.755680px;}
.wsfb{word-spacing:-23.334480px;}
.ws5e{word-spacing:-23.081760px;}
.wsfc{word-spacing:-22.997520px;}
.ws1b{word-spacing:-19.728000px;}
.ws7{word-spacing:-19.038240px;}
.ws4{word-spacing:-18.954000px;}
.ws6{word-spacing:-18.785520px;}
.ws5{word-spacing:-18.448560px;}
.ws9{word-spacing:-18.282240px;}
.ws8{word-spacing:-16.488000px;}
.wsb{word-spacing:-16.344000px;}
.wsa{word-spacing:-16.056000px;}
.wsc{word-spacing:-15.768000px;}
.wsa5{word-spacing:-15.344640px;}
.ws109{word-spacing:-15.301440px;}
.ws5f{word-spacing:-15.235200px;}
.ws66{word-spacing:-15.168960px;}
.ws62{word-spacing:-15.102720px;}
.ws65{word-spacing:-15.036480px;}
.ws1c{word-spacing:-14.970240px;}
.ws76{word-spacing:-14.904000px;}
.ws64{word-spacing:-14.837760px;}
.ws60{word-spacing:-14.771520px;}
.ws61{word-spacing:-14.705280px;}
.ws6a{word-spacing:-14.639040px;}
.ws63{word-spacing:-14.572800px;}
.wsd{word-spacing:-14.506560px;}
.ws1d{word-spacing:-14.440320px;}
.wsfe{word-spacing:-14.374080px;}
.ws75{word-spacing:-14.307840px;}
.ws68{word-spacing:-14.241600px;}
.ws67{word-spacing:-14.175360px;}
.ws3d{word-spacing:-14.163120px;}
.ws7b{word-spacing:-14.109120px;}
.ws48{word-spacing:-14.043600px;}
.ws115{word-spacing:-14.042880px;}
.ws45{word-spacing:-13.744800px;}
.ws3a{word-spacing:-13.505760px;}
.ws3b{word-spacing:-13.446000px;}
.ws3c{word-spacing:-13.386240px;}
.ws44{word-spacing:-13.326480px;}
.ws3e{word-spacing:-13.147200px;}
.ws40{word-spacing:-11.095200px;}
.ws3f{word-spacing:-10.998720px;}
.ws41{word-spacing:-10.902240px;}
.ws42{word-spacing:-10.709280px;}
.ws47{word-spacing:-10.661040px;}
.wsa7{word-spacing:-10.523520px;}
.ws43{word-spacing:-10.323360px;}
.ws7d{word-spacing:-10.296720px;}
.ws7c{word-spacing:-10.251360px;}
.wsa6{word-spacing:-10.160640px;}
.ws46{word-spacing:-10.082160px;}
.ws80{word-spacing:-10.024560px;}
.wsa9{word-spacing:-9.888480px;}
.ws7e{word-spacing:-9.570960px;}
.ws7a{word-spacing:-9.437760px;}
.wsa4{word-spacing:-9.145440px;}
.ws7f{word-spacing:-8.786880px;}
.wsa8{word-spacing:-8.514720px;}
.ws81{word-spacing:-6.834240px;}
.wsc9{word-spacing:-3.775680px;}
.ws23{word-spacing:-3.576960px;}
.ws24{word-spacing:-3.378240px;}
.wsb4{word-spacing:-3.245760px;}
.wsf8{word-spacing:-2.848320px;}
.ws2d{word-spacing:-2.649600px;}
.ws92{word-spacing:-2.517120px;}
.ws2c{word-spacing:-2.450880px;}
.wsca{word-spacing:-2.318400px;}
.ws20{word-spacing:-2.232000px;}
.ws9f{word-spacing:-2.222640px;}
.ws9e{word-spacing:-2.177280px;}
.ws83{word-spacing:-2.119680px;}
.ws1e{word-spacing:-1.944000px;}
.wsd7{word-spacing:-1.920960px;}
.wsb0{word-spacing:-1.788480px;}
.ws2b{word-spacing:-1.722240px;}
.ws99{word-spacing:-1.542240px;}
.wsb9{word-spacing:-1.391040px;}
.ws9a{word-spacing:-1.315440px;}
.ws1f{word-spacing:-1.224000px;}
.ws32{word-spacing:-1.192320px;}
.wsf{word-spacing:-1.170000px;}
.wsb1{word-spacing:-1.059840px;}
.ws53{word-spacing:-1.013040px;}
.ws33{word-spacing:-0.993600px;}
.ws1a{word-spacing:-0.927360px;}
.ws54{word-spacing:-0.916560px;}
.wsf4{word-spacing:-0.861120px;}
.wsbd{word-spacing:-0.816480px;}
.ws22{word-spacing:-0.792000px;}
.ws77{word-spacing:-0.728640px;}
.ws58{word-spacing:-0.627120px;}
.ws6d{word-spacing:-0.596160px;}
.ws31{word-spacing:-0.529920px;}
.ws50{word-spacing:-0.478080px;}
.ws14{word-spacing:-0.397440px;}
.ws10{word-spacing:-0.360000px;}
.ws15{word-spacing:-0.331200px;}
.ws113{word-spacing:-0.298800px;}
.ws56{word-spacing:-0.289440px;}
.ws79{word-spacing:-0.264960px;}
.ws5a{word-spacing:-0.241200px;}
.ws98{word-spacing:-0.226800px;}
.ws19{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.198720px;}
.ws52{word-spacing:-0.192960px;}
.ws111{word-spacing:-0.179280px;}
.ws18{word-spacing:-0.132480px;}
.ws112{word-spacing:-0.119520px;}
.ws9b{word-spacing:-0.090720px;}
.wse{word-spacing:-0.084240px;}
.ws78{word-spacing:-0.066240px;}
.ws4f{word-spacing:-0.059760px;}
.ws9c{word-spacing:-0.045360px;}
.ws0{word-spacing:0.000000px;}
.ws2a{word-spacing:0.066240px;}
.ws12{word-spacing:0.072000px;}
.ws82{word-spacing:0.084240px;}
.ws55{word-spacing:0.096480px;}
.ws4b{word-spacing:0.119520px;}
.ws90{word-spacing:0.132480px;}
.ws9d{word-spacing:0.136080px;}
.ws4e{word-spacing:0.144720px;}
.ws51{word-spacing:0.179280px;}
.ws28{word-spacing:0.198720px;}
.ws17{word-spacing:0.216000px;}
.ws4c{word-spacing:0.239040px;}
.ws5d{word-spacing:0.241200px;}
.ws29{word-spacing:0.264960px;}
.ws5c{word-spacing:0.289440px;}
.ws4d{word-spacing:0.298800px;}
.ws8d{word-spacing:0.331200px;}
.ws11e{word-spacing:0.336960px;}
.ws4a{word-spacing:0.358560px;}
.ws13{word-spacing:0.397440px;}
.ws114{word-spacing:0.418320px;}
.ws3{word-spacing:0.432000px;}
.wsee{word-spacing:0.463680px;}
.ws11{word-spacing:0.504000px;}
.ws110{word-spacing:0.529920px;}
.ws57{word-spacing:0.530640px;}
.ws59{word-spacing:0.537840px;}
.ws39{word-spacing:0.596160px;}
.wsa0{word-spacing:0.635040px;}
.wscd{word-spacing:0.662400px;}
.ws49{word-spacing:0.673920px;}
.wsf3{word-spacing:0.728640px;}
.wsd4{word-spacing:0.794880px;}
.wsa1{word-spacing:0.861840px;}
.wse3{word-spacing:0.927360px;}
.ws106{word-spacing:0.993600px;}
.ws91{word-spacing:1.059840px;}
.wsf2{word-spacing:1.126080px;}
.ws5b{word-spacing:1.254960px;}
.ws88{word-spacing:1.258560px;}
.wsda{word-spacing:1.324800px;}
.wsc0{word-spacing:1.360800px;}
.ws120{word-spacing:1.391040px;}
.wsef{word-spacing:1.457280px;}
.wsbf{word-spacing:1.496880px;}
.wsac{word-spacing:1.523520px;}
.wsbe{word-spacing:1.587600px;}
.wse6{word-spacing:1.589760px;}
.ws35{word-spacing:1.656000px;}
.ws8c{word-spacing:1.788480px;}
.ws36{word-spacing:1.854720px;}
.wsbc{word-spacing:2.086560px;}
.wsd9{word-spacing:2.119680px;}
.ws74{word-spacing:2.185920px;}
.wscc{word-spacing:2.384640px;}
.ws8f{word-spacing:2.517120px;}
.wsd8{word-spacing:2.583360px;}
.wsc8{word-spacing:2.715840px;}
.wsbb{word-spacing:2.812320px;}
.ws108{word-spacing:2.848320px;}
.ws107{word-spacing:2.914560px;}
.wsf6{word-spacing:3.113280px;}
.ws97{word-spacing:3.245760px;}
.wsf5{word-spacing:3.312000px;}
.wscb{word-spacing:3.444480px;}
.wsa2{word-spacing:3.538080px;}
.wsa3{word-spacing:3.583440px;}
.wsd6{word-spacing:3.643200px;}
.wsc6{word-spacing:3.709440px;}
.ws30{word-spacing:3.841920px;}
.wsb3{word-spacing:3.908160px;}
.ws85{word-spacing:3.974400px;}
.ws105{word-spacing:4.040640px;}
.wsc5{word-spacing:4.173120px;}
.ws11a{word-spacing:4.305600px;}
.ws2f{word-spacing:4.504320px;}
.wsce{word-spacing:4.570560px;}
.ws94{word-spacing:4.636800px;}
.ws2e{word-spacing:4.703040px;}
.ws21{word-spacing:4.968000px;}
.wsf1{word-spacing:5.034240px;}
.ws70{word-spacing:5.232960px;}
.wsab{word-spacing:5.299200px;}
.ws87{word-spacing:5.365440px;}
.ws10b{word-spacing:5.431680px;}
.ws25{word-spacing:5.961600px;}
.ws84{word-spacing:6.094080px;}
.wsf0{word-spacing:6.160320px;}
.wsad{word-spacing:6.220800px;}
.ws26{word-spacing:6.491520px;}
.ws27{word-spacing:6.690240px;}
.wsc4{word-spacing:6.822720px;}
.ws10f{word-spacing:6.888960px;}
.ws2{word-spacing:7.128000px;}
.ws10c{word-spacing:7.220160px;}
.ws104{word-spacing:7.418880px;}
.ws10d{word-spacing:7.551360px;}
.ws10e{word-spacing:7.617600px;}
.wse0{word-spacing:7.882560px;}
.ws11b{word-spacing:7.948800px;}
.wsdf{word-spacing:8.147520px;}
.ws8e{word-spacing:8.280000px;}
.wsff{word-spacing:8.346240px;}
.ws100{word-spacing:8.478720px;}
.wscf{word-spacing:8.677440px;}
.wsd1{word-spacing:8.876160px;}
.wsaf{word-spacing:9.008640px;}
.wsd0{word-spacing:9.074880px;}
.ws38{word-spacing:9.604800px;}
.ws119{word-spacing:9.671040px;}
.ws86{word-spacing:9.737280px;}
.ws37{word-spacing:9.803520px;}
.wsd2{word-spacing:10.068480px;}
.wsd3{word-spacing:10.267200px;}
.ws96{word-spacing:10.399680px;}
.ws103{word-spacing:10.465920px;}
.ws102{word-spacing:10.797120px;}
.wsf7{word-spacing:10.995840px;}
.ws8b{word-spacing:11.128320px;}
.ws6e{word-spacing:11.194560px;}
.wsba{word-spacing:11.430720px;}
.wsd5{word-spacing:11.658240px;}
.ws89{word-spacing:11.724480px;}
.ws8a{word-spacing:11.856960px;}
.ws6f{word-spacing:11.923200px;}
.ws117{word-spacing:12.254400px;}
.wsaa{word-spacing:12.585600px;}
.ws10a{word-spacing:12.651840px;}
.ws11d{word-spacing:12.916800px;}
.wsb2{word-spacing:13.049280px;}
.ws34{word-spacing:13.181760px;}
.ws93{word-spacing:13.314240px;}
.wsae{word-spacing:13.478400px;}
.wsc2{word-spacing:13.976640px;}
.ws95{word-spacing:14.042880px;}
.wsde{word-spacing:14.440320px;}
.wsdc{word-spacing:14.639040px;}
.wsc3{word-spacing:14.771520px;}
.wsdd{word-spacing:14.837760px;}
.ws11f{word-spacing:15.367680px;}
.wsc7{word-spacing:15.500160px;}
.wseb{word-spacing:16.030080px;}
.wsea{word-spacing:16.228800px;}
.wse8{word-spacing:16.361280px;}
.wsdb{word-spacing:16.758720px;}
.ws118{word-spacing:16.957440px;}
.ws101{word-spacing:17.288640px;}
.wse7{word-spacing:17.487360px;}
.wse9{word-spacing:17.686080px;}
.wsb5{word-spacing:18.348480px;}
.ws116{word-spacing:18.745920px;}
.ws6b{word-spacing:20.401920px;}
.ws6c{word-spacing:20.600640px;}
.wsec{word-spacing:21.594240px;}
.wse1{word-spacing:21.792960px;}
.wsed{word-spacing:21.859200px;}
.wsb7{word-spacing:22.389120px;}
.wse2{word-spacing:22.521600px;}
.wsb6{word-spacing:22.654080px;}
.ws11c{word-spacing:24.707520px;}
.wsfa{word-spacing:25.237440px;}
.wsf9{word-spacing:25.634880px;}
.wse4{word-spacing:26.827200px;}
.wse5{word-spacing:27.025920px;}
.ws71{word-spacing:34.511040px;}
.ws73{word-spacing:34.577280px;}
.ws72{word-spacing:35.239680px;}
.wsb8{word-spacing:37.094400px;}
.ws1{word-spacing:39.528000px;}
._10{margin-left:-12.698640px;}
._12{margin-left:-9.769680px;}
._11{margin-left:-8.215200px;}
._f{margin-left:-7.132320px;}
._2{margin-left:-5.756400px;}
._3{margin-left:-3.744000px;}
._5{margin-left:-2.217600px;}
._0{margin-left:-1.155600px;}
._1{width:1.296000px;}
._4{width:2.628000px;}
._15{width:4.236480px;}
._20{width:5.296176px;}
._1f{width:6.511680px;}
._16{width:8.530560px;}
._1a{width:10.399680px;}
._18{width:11.504160px;}
._17{width:13.645440px;}
._1e{width:16.649280px;}
._19{width:18.414720px;}
._14{width:20.054160px;}
._1c{width:21.529728px;}
._1b{width:22.720320px;}
._1d{width:26.735760px;}
._c{width:95.976000px;}
._e{width:145.735200px;}
._13{width:190.401840px;}
._9{width:201.355920px;}
._6{width:437.728320px;}
._8{width:471.479040px;}
._7{width:500.028480px;}
._a{width:577.814400px;}
._b{width:673.992000px;}
._d{width:848.998080px;}
.fc9{color:rgb(92,0,201);}
.fc8{color:rgb(119,29,135);}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(61,0,135);}
.fc4{color:rgb(30,73,125);}
.fc3{color:rgb(160,39,181);}
.fc5{color:transparent;}
.fc1{color:rgb(255,0,186);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:30.240000px;}
.fsc{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fsb{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fse{font-size:69.120000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fs9{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs5{font-size:216.000000px;}
.fs3{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.960000px;}
.y2{bottom:8.460000px;}
.y1d{bottom:8.820000px;}
.ya6{bottom:8.999850px;}
.ya9{bottom:9.000000px;}
.y40{bottom:9.180000px;}
.yb6{bottom:29.160000px;}
.y1c{bottom:33.120000px;}
.y6{bottom:46.080000px;}
.y1b{bottom:46.620000px;}
.ybe{bottom:49.320000px;}
.y5{bottom:69.480000px;}
.y15{bottom:75.779850px;}
.y139{bottom:88.203780px;}
.y1d8{bottom:95.064480px;}
.y18f{bottom:97.084800px;}
.y1bd{bottom:101.886480px;}
.y3f{bottom:107.460000px;}
.y138{bottom:109.260000px;}
.y3e{bottom:115.200000px;}
.y1d7{bottom:115.218000px;}
.y18e{bottom:118.149120px;}
.y227{bottom:118.303920px;}
.y165{bottom:121.320000px;}
.y1bc{bottom:122.040000px;}
.y137{bottom:126.002880px;}
.y106{bottom:127.800000px;}
.y202{bottom:133.380000px;}
.y136{bottom:136.980000px;}
.y226{bottom:138.457440px;}
.y1d6{bottom:139.875840px;}
.y164{bottom:141.491520px;}
.y18d{bottom:143.535600px;}
.y105{bottom:144.723960px;}
.y1bb{bottom:147.420000px;}
.y3d{bottom:153.540000px;}
.y225{bottom:158.445360px;}
.y135{bottom:159.120000px;}
.y104{bottom:161.460000px;}
.y163{bottom:161.479440px;}
.y201{bottom:161.820000px;}
.y18c{bottom:163.689120px;}
.y1d5{bottom:164.533680px;}
.y1ba{bottom:167.588640px;}
.y134{bottom:175.325580px;}
.y103{bottom:176.576760px;}
.y224{bottom:178.598880px;}
.y162{bottom:181.632960px;}
.y18b{bottom:183.842640px;}
.y1d4{bottom:184.687200px;}
.y3c{bottom:187.562160px;}
.y1b9{bottom:187.742160px;}
.y133{bottom:193.320000px;}
.y102{bottom:196.380000px;}
.y200{bottom:196.624080px;}
.y223{bottom:198.752400px;}
.y161{bottom:201.786480px;}
.y1d3{bottom:204.840720px;}
.y132{bottom:206.825580px;}
.y18a{bottom:208.500480px;}
.y3b{bottom:212.220000px;}
.y1b8{bottom:212.400000px;}
.y101{bottom:212.574240px;}
.y222{bottom:218.905920px;}
.y1ff{bottom:221.099760px;}
.y160{bottom:221.940000px;}
.y131{bottom:224.820000px;}
.y1d2{bottom:224.828640px;}
.y100{bottom:230.580000px;}
.y189{bottom:233.158320px;}
.y1b7{bottom:237.165840px;}
.y221{bottom:239.059440px;}
.y85{bottom:240.128640px;}
.y1fe{bottom:241.253280px;}
.y3a{bottom:244.980000px;}
.y1d1{bottom:244.982160px;}
.y130{bottom:245.520000px;}
.y15f{bottom:246.620160px;}
.yff{bottom:251.280000px;}
.y188{bottom:253.311840px;}
.y1b6{bottom:257.319360px;}
.y12f{bottom:259.025580px;}
.y220{bottom:259.212960px;}
.y1fd{bottom:261.406800px;}
.y84{bottom:264.604320px;}
.yfe{bottom:264.785580px;}
.y1d0{bottom:269.640000px;}
.y38{bottom:270.000000px;}
.y15e{bottom:271.278000px;}
.y187{bottom:273.465360px;}
.y12e{bottom:277.020000px;}
.y1b5{bottom:277.472880px;}
.y39{bottom:277.920000px;}
.y21f{bottom:279.366480px;}
.y1fc{bottom:282.471120px;}
.yfd{bottom:282.780000px;}
.y15d{bottom:291.431520px;}
.y12d{bottom:292.680000px;}
.y83{bottom:293.220000px;}
.y186{bottom:293.618880px;}
.y1cf{bottom:293.758740px;}
.y1b4{bottom:297.626400px;}
.y36{bottom:299.160000px;}
.y21e{bottom:299.520000px;}
.y1fb{bottom:302.624640px;}
.yfc{bottom:304.380000px;}
.y37{bottom:307.080000px;}
.y15c{bottom:311.585040px;}
.y1ce{bottom:312.120000px;}
.y185{bottom:313.772400px;}
.y1b3{bottom:317.779920px;}
.y82{bottom:320.580000px;}
.y1fa{bottom:322.778160px;}
.yfb{bottom:327.420000px;}
.y63{bottom:327.546720px;}
.y33{bottom:328.320000px;}
.y1cd{bottom:330.837840px;}
.y15b{bottom:331.738560px;}
.y35{bottom:336.060000px;}
.y1b2{bottom:337.933440px;}
.y184{bottom:338.430240px;}
.y21d{bottom:339.840000px;}
.y81{bottom:343.440000px;}
.y1f9{bottom:343.842480px;}
.y62{bottom:347.700240px;}
.y15a{bottom:351.892080px;}
.yd6{bottom:360.362160px;}
.y1b1{bottom:362.409120px;}
.y183{bottom:362.905920px;}
.y1f8{bottom:363.996000px;}
.yfa{bottom:364.159440px;}
.y32{bottom:366.300000px;}
.y61{bottom:367.853760px;}
.y12c{bottom:369.360000px;}
.y80{bottom:370.620000px;}
.y159{bottom:371.880000px;}
.y182{bottom:383.059440px;}
.y1f7{bottom:384.149520px;}
.yf9{bottom:384.312960px;}
.yd5{bottom:385.020000px;}
.y1b0{bottom:387.066960px;}
.y60{bottom:388.007280px;}
.y12b{bottom:389.526480px;}
.ya4{bottom:393.485040px;}
.y21c{bottom:396.002160px;}
.y7f{bottom:397.980000px;}
.y31{bottom:398.520000px;}
.y181{bottom:403.212960px;}
.yf8{bottom:404.466480px;}
.y1f6{bottom:405.031680px;}
.yd3{bottom:406.260000px;}
.y1af{bottom:407.220480px;}
.y5f{bottom:408.160800px;}
.y12a{bottom:409.680000px;}
.y158{bottom:412.560000px;}
.ya3{bottom:413.638560px;}
.yd4{bottom:415.260000px;}
.y21b{bottom:420.477840px;}
.y7e{bottom:420.840000px;}
.y180{bottom:423.366480px;}
.yf7{bottom:424.625040px;}
.y1f5{bottom:425.185200px;}
.y1ae{bottom:427.374000px;}
.y5e{bottom:428.314320px;}
.y129{bottom:429.840000px;}
.ya2{bottom:433.626480px;}
.y30{bottom:435.960000px;}
.yd1{bottom:436.500000px;}
.y21a{bottom:440.631360px;}
.y7d{bottom:443.520000px;}
.yf6{bottom:444.778560px;}
.yd2{bottom:445.500000px;}
.y1f4{bottom:446.249520px;}
.y1ad{bottom:447.527520px;}
.y5d{bottom:448.467840px;}
.y128{bottom:450.030960px;}
.ya1{bottom:453.780000px;}
.y219{bottom:460.784880px;}
.yf5{bottom:464.932080px;}
.y1f3{bottom:466.403040px;}
.y157{bottom:466.560000px;}
.ycf{bottom:466.740000px;}
.y1ac{bottom:467.681040px;}
.y5c{bottom:468.455760px;}
.y127{bottom:470.018880px;}
.y2f{bottom:470.880000px;}
.yd0{bottom:475.740000px;}
.ya0{bottom:478.440000px;}
.y17f{bottom:484.020000px;}
.yf4{bottom:484.965360px;}
.y218{bottom:485.260560px;}
.y1f2{bottom:487.467360px;}
.y1ab{bottom:487.834560px;}
.y5b{bottom:488.609280px;}
.y156{bottom:488.880000px;}
.y126{bottom:490.172400px;}
.ycd{bottom:497.160000px;}
.y2e{bottom:497.520000px;}
.y7c{bottom:498.240000px;}
.y9f{bottom:503.100000px;}
.yf3{bottom:505.118880px;}
.yce{bottom:505.980000px;}
.y1f1{bottom:507.620880px;}
.y1aa{bottom:507.988080px;}
.y5a{bottom:508.762800px;}
.y155{bottom:509.040000px;}
.y217{bottom:509.918400px;}
.y2b{bottom:509.940000px;}
.y125{bottom:510.325920px;}
.y7b{bottom:521.100000px;}
.y2d{bottom:523.980000px;}
.yf2{bottom:525.272400px;}
.ycb{bottom:527.400000px;}
.y9e{bottom:527.766480px;}
.y1f0{bottom:528.503040px;}
.y59{bottom:528.916320px;}
.y154{bottom:529.200000px;}
.y216{bottom:530.071920px;}
.y124{bottom:530.479440px;}
.y1a9{bottom:532.645920px;}
.ycc{bottom:536.400000px;}
.y17e{bottom:538.070400px;}
.y7a{bottom:543.780000px;}
.yf1{bottom:545.425920px;}
.y9d{bottom:547.920000px;}
.y1ef{bottom:548.656560px;}
.y58{bottom:549.069840px;}
.y153{bottom:549.360000px;}
.y215{bottom:550.225440px;}
.y2c{bottom:550.440000px;}
.y123{bottom:550.632960px;}
.y1a8{bottom:557.121600px;}
.yc9{bottom:557.640000px;}
.y17d{bottom:558.223920px;}
.yf0{bottom:565.579440px;}
.yca{bottom:566.640000px;}
.y1ee{bottom:568.810080px;}
.y57{bottom:569.223360px;}
.y152{bottom:569.520000px;}
.y214{bottom:570.378960px;}
.y122{bottom:570.786480px;}
.y79{bottom:571.140000px;}
.y9c{bottom:572.580000px;}
.y1a7{bottom:577.275120px;}
.y17c{bottom:578.377440px;}
.y2a{bottom:581.400000px;}
.yef{bottom:585.732960px;}
.yc7{bottom:587.880000px;}
.y56{bottom:589.376880px;}
.y151{bottom:589.680000px;}
.y213{bottom:590.532480px;}
.y121{bottom:590.940000px;}
.y29{bottom:594.000000px;}
.y1ed{bottom:594.362160px;}
.yc8{bottom:596.880000px;}
.y9b{bottom:597.245040px;}
.y1a6{bottom:597.428640px;}
.y78{bottom:598.500000px;}
.y17b{bottom:598.530960px;}
.yee{bottom:605.886480px;}
.y55{bottom:609.530400px;}
.y212{bottom:610.686000px;}
.y120{bottom:611.100000px;}
.y150{bottom:612.060480px;}
.y9a{bottom:617.398560px;}
.y1a5{bottom:617.582160px;}
.yc5{bottom:618.120000px;}
.y17a{bottom:618.684480px;}
.y1ec{bottom:619.020000px;}
.y77{bottom:621.180000px;}
.yed{bottom:626.051520px;}
.yc6{bottom:627.120000px;}
.y54{bottom:629.683920px;}
.y211{bottom:630.839520px;}
.y11f{bottom:633.420000px;}
.y14f{bottom:635.095440px;}
.y99{bottom:637.552080px;}
.y179{bottom:638.838000px;}
.y28{bottom:641.340000px;}
.y1a4{bottom:642.240000px;}
.y1eb{bottom:643.680000px;}
.y76{bottom:644.040000px;}
.yec{bottom:646.205040px;}
.yc2{bottom:648.360000px;}
.y53{bottom:649.837440px;}
.y11e{bottom:653.580000px;}
.y210{bottom:655.497360px;}
.yc4{bottom:657.360000px;}
.y98{bottom:657.540000px;}
.y178{bottom:658.991520px;}
.y14e{bottom:659.223360px;}
.y1ea{bottom:663.840000px;}
.yeb{bottom:666.358560px;}
.y1a3{bottom:666.919440px;}
.y52{bottom:669.825360px;}
.y75{bottom:671.400000px;}
.y11d{bottom:673.740000px;}
.yc3{bottom:677.520000px;}
.y27{bottom:678.960000px;}
.y177{bottom:679.145040px;}
.y20f{bottom:679.973040px;}
.y97{bottom:682.243200px;}
.y14d{bottom:682.440480px;}
.yea{bottom:686.346480px;}
.y1a2{bottom:687.072960px;}
.y1e9{bottom:688.363920px;}
.y51{bottom:689.978880px;}
.y11c{bottom:693.900000px;}
.y74{bottom:698.760000px;}
.y176{bottom:699.298560px;}
.y20e{bottom:700.126560px;}
.y14c{bottom:706.386240px;}
.ye9{bottom:706.512960px;}
.y96{bottom:706.901040px;}
.y1a1{bottom:707.226480px;}
.yc1{bottom:707.760000px;}
.y1e8{bottom:708.517440px;}
.y50{bottom:710.132400px;}
.y11b{bottom:714.060000px;}
.y26{bottom:716.400000px;}
.y175{bottom:719.286480px;}
.y20d{bottom:720.280080px;}
.y73{bottom:721.440000px;}
.ye8{bottom:726.666480px;}
.y14{bottom:727.200000px;}
.y1a0{bottom:727.380000px;}
.yc0{bottom:727.920000px;}
.y1e7{bottom:728.670960px;}
.y4f{bottom:730.285920px;}
.y14b{bottom:730.514160px;}
.y95{bottom:731.558880px;}
.y11a{bottom:734.220000px;}
.y17{bottom:737.100000px;}
.y174{bottom:739.440000px;}
.y20c{bottom:740.433600px;}
.y72{bottom:744.300000px;}
.ye7{bottom:746.832960px;}
.y19f{bottom:747.540720px;}
.ybf{bottom:748.080000px;}
.y4e{bottom:750.439440px;}
.y25{bottom:750.964320px;}
.y1e6{bottom:753.328800px;}
.y119{bottom:754.380000px;}
.y14a{bottom:754.459920px;}
.y94{bottom:756.216720px;}
.y20b{bottom:760.587120px;}
.ye6{bottom:766.986480px;}
.y71{bottom:767.160000px;}
.y19e{bottom:767.694240px;}
.y173{bottom:767.880000px;}
.ybc{bottom:769.320000px;}
.y16{bottom:770.040000px;}
.y4d{bottom:770.592960px;}
.y118{bottom:774.360000px;}
.y24{bottom:775.622160px;}
.y1e5{bottom:777.986640px;}
.ybd{bottom:778.320000px;}
.y149{bottom:778.587840px;}
.y20a{bottom:780.740640px;}
.y93{bottom:780.874560px;}
.ye5{bottom:787.164480px;}
.y19d{bottom:787.682160px;}
.y70{bottom:790.020000px;}
.y4c{bottom:790.746480px;}
.y117{bottom:794.520000px;}
.y1e4{bottom:798.140160px;}
.y148{bottom:798.741360px;}
.yb9{bottom:799.560000px;}
.y23{bottom:800.280000px;}
.y172{bottom:802.639440px;}
.y13{bottom:802.979850px;}
.y209{bottom:805.398480px;}
.y92{bottom:805.532400px;}
.ye4{bottom:807.318000px;}
.ybb{bottom:808.560000px;}
.y4b{bottom:810.900000px;}
.y19c{bottom:812.340000px;}
.y116{bottom:814.680000px;}
.y6f{bottom:817.200000px;}
.y1e3{bottom:818.293680px;}
.y147{bottom:818.894880px;}
.y171{bottom:822.792960px;}
.y1cc{bottom:823.680000px;}
.y22{bottom:825.300000px;}
.y91{bottom:825.685920px;}
.ye3{bottom:827.471520px;}
.yba{bottom:828.720000px;}
.y208{bottom:830.056320px;}
.y115{bottom:835.020000px;}
.y1e2{bottom:838.447200px;}
.y146{bottom:839.048400px;}
.y19b{bottom:840.780000px;}
.y170{bottom:842.946480px;}
.y6e{bottom:844.560000px;}
.ye2{bottom:847.625040px;}
.y1cb{bottom:848.346480px;}
.yb5{bottom:849.960000px;}
.y207{bottom:850.209840px;}
.y90{bottom:850.343760px;}
.y4a{bottom:851.400000px;}
.y21{bottom:851.760000px;}
.y19{bottom:856.080000px;}
.y114{bottom:857.332080px;}
.y1e1{bottom:858.600720px;}
.yb8{bottom:858.960000px;}
.y145{bottom:859.201920px;}
.y16f{bottom:863.100000px;}
.y12{bottom:863.305920px;}
.y6d{bottom:867.420000px;}
.ye1{bottom:867.778560px;}
.y1ca{bottom:868.500000px;}
.y206{bottom:870.363360px;}
.y8f{bottom:874.819440px;}
.y19a{bottom:875.548800px;}
.y113{bottom:877.350240px;}
.y1e0{bottom:878.754240px;}
.yb7{bottom:879.120000px;}
.y144{bottom:879.355440px;}
.ye0{bottom:887.766480px;}
.y11{bottom:887.963760px;}
.y1c9{bottom:888.706080px;}
.y205{bottom:890.351280px;}
.y16e{bottom:891.360000px;}
.y6c{bottom:894.600000px;}
.y112{bottom:897.503760px;}
.y1df{bottom:898.742160px;}
.y143{bottom:899.343360px;}
.y8e{bottom:899.477280px;}
.y199{bottom:900.206640px;}
.yb3{bottom:900.360000px;}
.y49{bottom:904.140180px;}
.ydf{bottom:907.965360px;}
.y1c8{bottom:908.859600px;}
.yb4{bottom:909.360000px;}
.y204{bottom:910.504800px;}
.y10{bottom:912.439440px;}
.y111{bottom:917.657280px;}
.y142{bottom:919.496880px;}
.y198{bottom:920.360160px;}
.y6b{bottom:921.960000px;}
.y48{bottom:923.400000px;}
.y8d{bottom:924.135120px;}
.y20{bottom:924.300000px;}
.y16d{bottom:926.154000px;}
.yde{bottom:928.118880px;}
.y1c7{bottom:929.013120px;}
.y203{bottom:930.658320px;}
.yb1{bottom:930.780000px;}
.y18{bottom:933.660000px;}
.yf{bottom:937.097280px;}
.y110{bottom:937.810800px;}
.y141{bottom:939.650400px;}
.yb2{bottom:939.780000px;}
.y197{bottom:940.513680px;}
.y1de{bottom:948.068640px;}
.ydd{bottom:948.272400px;}
.y8c{bottom:948.792960px;}
.y1c6{bottom:949.001040px;}
.y6a{bottom:949.320000px;}
.y16c{bottom:950.811840px;}
.y47{bottom:952.380000px;}
.y10f{bottom:957.964320px;}
.y140{bottom:959.803920px;}
.y196{bottom:960.667200px;}
.yaf{bottom:961.020000px;}
.ye{bottom:961.755120px;}
.y1dd{bottom:968.222160px;}
.ydc{bottom:968.425920px;}
.yb0{bottom:970.020000px;}
.y16b{bottom:970.965360px;}
.y8b{bottom:973.450800px;}
.y1c5{bottom:973.658880px;}
.y46{bottom:974.520000px;}
.y69{bottom:976.680000px;}
.y10e{bottom:978.295680px;}
.y13f{bottom:979.957440px;}
.y195{bottom:980.655120px;}
.yd{bottom:986.412960px;}
.ydb{bottom:988.579440px;}
.y16a{bottom:991.118880px;}
.yad{bottom:991.260000px;}
.y1dc{bottom:992.880000px;}
.y45{bottom:996.479850px;}
.y8a{bottom:998.108640px;}
.y1c4{bottom:998.316720px;}
.y10d{bottom:999.357840px;}
.y13e{bottom:1000.110960px;}
.yae{bottom:1000.260000px;}
.y68{bottom:1003.860000px;}
.y194{bottom:1005.312960px;}
.yda{bottom:1008.732960px;}
.yc{bottom:1011.070800px;}
.y169{bottom:1011.272400px;}
.y1c3{bottom:1018.470240px;}
.y10c{bottom:1020.259440px;}
.y13d{bottom:1020.264480px;}
.y1db{bottom:1021.320000px;}
.yab{bottom:1021.500000px;}
.y1f{bottom:1022.760000px;}
.y89{bottom:1022.766480px;}
.y193{bottom:1025.466480px;}
.yd9{bottom:1028.886480px;}
.yac{bottom:1030.500000px;}
.y44{bottom:1030.860000px;}
.y67{bottom:1031.220000px;}
.y168{bottom:1031.425920px;}
.yb{bottom:1035.728640px;}
.y1c2{bottom:1038.623760px;}
.y10b{bottom:1040.412960px;}
.y13c{bottom:1040.418000px;}
.y192{bottom:1045.620000px;}
.y88{bottom:1047.424320px;}
.yd8{bottom:1049.040000px;}
.y167{bottom:1051.579440px;}
.ya8{bottom:1051.740000px;}
.y1da{bottom:1056.083760px;}
.y66{bottom:1058.580000px;}
.y1c1{bottom:1058.777280px;}
.ya{bottom:1060.386480px;}
.y10a{bottom:1060.566480px;}
.y13b{bottom:1060.571520px;}
.yaa{bottom:1060.740000px;}
.y43{bottom:1067.046480px;}
.y87{bottom:1072.082160px;}
.y166{bottom:1076.055120px;}
.y1c0{bottom:1078.930800px;}
.y1d9{bottom:1080.559440px;}
.y109{bottom:1080.712080px;}
.y13a{bottom:1080.725040px;}
.ya5{bottom:1081.980000px;}
.y9{bottom:1085.044320px;}
.y191{bottom:1086.120000px;}
.yd7{bottom:1086.660000px;}
.y65{bottom:1089.540000px;}
.ya7{bottom:1090.979850px;}
.y42{bottom:1091.704320px;}
.y228{bottom:1096.208640px;}
.y86{bottom:1096.740000px;}
.y1bf{bottom:1099.084320px;}
.y108{bottom:1100.712960px;}
.y8{bottom:1109.702160px;}
.y41{bottom:1116.362160px;}
.y1be{bottom:1119.966480px;}
.y107{bottom:1120.866480px;}
.y7{bottom:1134.360000px;}
.y64{bottom:1137.240000px;}
.y190{bottom:1140.120000px;}
.y1e{bottom:1141.020000px;}
.y4{bottom:1162.800000px;}
.y1{bottom:1181.700000px;}
.y1a{bottom:1184.580000px;}
.y3{bottom:1190.160000px;}
.h26{height:25.168711px;}
.h2{height:27.360000px;}
.h19{height:28.978500px;}
.h11{height:28.980000px;}
.ha{height:29.160000px;}
.h24{height:32.064609px;}
.h21{height:34.439766px;}
.h14{height:35.025820px;}
.h22{height:37.408711px;}
.h30{height:39.003398px;}
.h1b{height:47.545312px;}
.h5{height:48.095156px;}
.h32{height:48.224531px;}
.h3{height:49.284492px;}
.h25{height:49.297452px;}
.h17{height:49.320000px;}
.h2a{height:49.612500px;}
.h29{height:49.621140px;}
.h2e{height:51.555848px;}
.h2f{height:51.653767px;}
.h2d{height:51.679688px;}
.hc{height:52.277344px;}
.h1a{height:52.417969px;}
.h1c{height:53.552779px;}
.h2b{height:53.613259px;}
.h1d{height:53.636299px;}
.h28{height:53.656459px;}
.h1e{height:53.682379px;}
.h1f{height:53.688139px;}
.h20{height:53.714059px;}
.h2c{height:53.734219px;}
.h27{height:53.765899px;}
.h31{height:54.613474px;}
.h4{height:54.628594px;}
.h23{height:54.651634px;}
.h10{height:56.957344px;}
.hf{height:59.378906px;}
.h9{height:61.164492px;}
.h15{height:61.329023px;}
.h13{height:61.910156px;}
.hd{height:62.258906px;}
.h16{height:63.824414px;}
.hb{height:65.346680px;}
.h18{height:69.480000px;}
.h12{height:74.498906px;}
.h6{height:89.068359px;}
.h7{height:106.020000px;}
.he{height:114.818906px;}
.h8{height:209.109375px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:8.458500px;}
.w9{width:16.740000px;}
.w6{width:205.740000px;}
.w3{width:241.020000px;}
.w2{width:241.021500px;}
.w8{width:359.640000px;}
.w7{width:359.820000px;}
.w4{width:892.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:9.540000px;}
.x7{left:11.340000px;}
.xf{left:79.740000px;}
.x1{left:84.960000px;}
.x1c{left:86.220000px;}
.x17{left:90.540000px;}
.x15{left:93.060000px;}
.x14{left:94.500000px;}
.x3a{left:95.580000px;}
.x19{left:101.520000px;}
.x33{left:103.140000px;}
.x2f{left:107.460000px;}
.x25{left:109.440000px;}
.x1b{left:111.960000px;}
.x1f{left:113.940000px;}
.x27{left:116.280000px;}
.x1a{left:117.900000px;}
.x22{left:128.700000px;}
.x35{left:133.740000px;}
.x18{left:138.960000px;}
.xc{left:151.740000px;}
.x3b{left:165.960000px;}
.x6{left:192.960000px;}
.x4{left:241.560000px;}
.x1d{left:244.440000px;}
.xb{left:246.420000px;}
.x10{left:249.840000px;}
.xa{left:285.840000px;}
.xd{left:295.380000px;}
.x13{left:298.800000px;}
.x12{left:300.240000px;}
.xe{left:311.757840px;}
.x2c{left:355.140000px;}
.x8{left:376.380000px;}
.x2{left:446.400000px;}
.x2b{left:491.760000px;}
.x16{left:496.260000px;}
.x1e{left:507.600000px;}
.x36{left:511.920000px;}
.x31{left:531.900000px;}
.x26{left:542.340000px;}
.x29{left:558.180000px;}
.x3{left:567.000000px;}
.x24{left:569.700000px;}
.x38{left:578.340000px;}
.x37{left:581.400000px;}
.x20{left:586.620000px;}
.x9{left:592.200000px;}
.x28{left:594.180000px;}
.x34{left:597.240000px;}
.x32{left:600.660000px;}
.x39{left:605.160000px;}
.x2d{left:612.180000px;}
.x30{left:625.860000px;}
.x21{left:627.660000px;}
.x2a{left:678.600000px;}
.x23{left:690.660000px;}
.x3d{left:702.002160px;}
.x2e{left:747.000000px;}
.x3c{left:791.280000px;}
.x5{left:799.560000px;}
@media print{
.v6{vertical-align:-21.120000pt;}
.v7{vertical-align:-18.560000pt;}
.v8{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.v4{vertical-align:5.120000pt;}
.v3{vertical-align:13.440000pt;}
.v5{vertical-align:20.958720pt;}
.v2{vertical-align:49.280000pt;}
.ls7e{letter-spacing:-1.472000pt;}
.ls80{letter-spacing:-1.413120pt;}
.ls6e{letter-spacing:-1.354240pt;}
.ls9d{letter-spacing:-1.236480pt;}
.ls7f{letter-spacing:-1.177600pt;}
.ls5a{letter-spacing:-1.118720pt;}
.ls9a{letter-spacing:-0.942080pt;}
.ls90{letter-spacing:-0.883200pt;}
.ls7d{letter-spacing:-0.824320pt;}
.ls5b{letter-spacing:-0.765440pt;}
.ls41{letter-spacing:-0.728960pt;}
.ls4c{letter-spacing:-0.706560pt;}
.ls4d{letter-spacing:-0.647680pt;}
.ls5f{letter-spacing:-0.604800pt;}
.ls4f{letter-spacing:-0.588800pt;}
.ls73{letter-spacing:-0.564480pt;}
.ls24{letter-spacing:-0.529920pt;}
.lsf{letter-spacing:-0.524160pt;}
.ls3e{letter-spacing:-0.514560pt;}
.ls3d{letter-spacing:-0.471680pt;}
.ls23{letter-spacing:-0.471040pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.412160pt;}
.ls8f{letter-spacing:-0.374400pt;}
.ls49{letter-spacing:-0.353280pt;}
.ls74{letter-spacing:-0.322560pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls39{letter-spacing:-0.318720pt;}
.ls32{letter-spacing:-0.299520pt;}
.ls4e{letter-spacing:-0.294400pt;}
.ls2{letter-spacing:-0.288000pt;}
.ls5d{letter-spacing:-0.282240pt;}
.ls6d{letter-spacing:-0.259840pt;}
.ls40{letter-spacing:-0.257280pt;}
.ls6f{letter-spacing:-0.245760pt;}
.ls72{letter-spacing:-0.241920pt;}
.ls15{letter-spacing:-0.235520pt;}
.ls10{letter-spacing:-0.224640pt;}
.ls36{letter-spacing:-0.214400pt;}
.ls95{letter-spacing:-0.212480pt;}
.ls60{letter-spacing:-0.201600pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.176640pt;}
.ls3c{letter-spacing:-0.171520pt;}
.ls33{letter-spacing:-0.159360pt;}
.ls5e{letter-spacing:-0.120960pt;}
.ls4a{letter-spacing:-0.117760pt;}
.ls34{letter-spacing:-0.106240pt;}
.ls5c{letter-spacing:-0.080640pt;}
.lse{letter-spacing:-0.074880pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.058880pt;}
.ls35{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.022400pt;}
.ls46{letter-spacing:0.029440pt;}
.ls57{letter-spacing:0.040320pt;}
.ls7a{letter-spacing:0.047104pt;}
.ls37{letter-spacing:0.053120pt;}
.ls26{letter-spacing:0.056960pt;}
.ls17{letter-spacing:0.058880pt;}
.ls18{letter-spacing:0.064000pt;}
.ls61{letter-spacing:0.080640pt;}
.ls3b{letter-spacing:0.085760pt;}
.ls30{letter-spacing:0.089600pt;}
.ls1{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.117760pt;}
.ls56{letter-spacing:0.133120pt;}
.ls97{letter-spacing:0.141312pt;}
.ls3{letter-spacing:0.149760pt;}
.ls59{letter-spacing:0.154880pt;}
.ls54{letter-spacing:0.158976pt;}
.ls29{letter-spacing:0.159360pt;}
.ls31{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.171520pt;}
.ls4b{letter-spacing:0.176640pt;}
.ls98{letter-spacing:0.182528pt;}
.lsb{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.212480pt;}
.ls3f{letter-spacing:0.214400pt;}
.ls93{letter-spacing:0.223744pt;}
.ls44{letter-spacing:0.235520pt;}
.ls71{letter-spacing:0.241920pt;}
.ls7{letter-spacing:0.256000pt;}
.ls92{letter-spacing:0.265600pt;}
.ls1d{letter-spacing:0.268800pt;}
.ls2b{letter-spacing:0.279680pt;}
.ls7c{letter-spacing:0.294400pt;}
.ls8a{letter-spacing:0.299520pt;}
.ls2d{letter-spacing:0.317440pt;}
.ls94{letter-spacing:0.318720pt;}
.ls20{letter-spacing:0.320000pt;}
.ls8c{letter-spacing:0.353280pt;}
.ls2e{letter-spacing:0.371840pt;}
.ls70{letter-spacing:0.471040pt;}
.ls42{letter-spacing:0.478080pt;}
.ls6c{letter-spacing:0.483840pt;}
.ls38{letter-spacing:0.584320pt;}
.ls85{letter-spacing:0.765440pt;}
.ls8d{letter-spacing:0.788992pt;}
.ls4{letter-spacing:0.794880pt;}
.ls27{letter-spacing:0.796800pt;}
.ls5{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.024000pt;}
.ls12{letter-spacing:1.040000pt;}
.ls6b{letter-spacing:1.128960pt;}
.ls9c{letter-spacing:1.413120pt;}
.ls13{letter-spacing:1.440000pt;}
.ls6a{letter-spacing:2.053120pt;}
.ls51{letter-spacing:2.060800pt;}
.ls69{letter-spacing:2.419200pt;}
.ls88{letter-spacing:2.708480pt;}
.ls52{letter-spacing:2.885120pt;}
.ls58{letter-spacing:3.064320pt;}
.ls78{letter-spacing:3.944960pt;}
.ls68{letter-spacing:3.973120pt;}
.ls55{letter-spacing:4.080384pt;}
.ls63{letter-spacing:4.574976pt;}
.ls87{letter-spacing:4.592640pt;}
.ls99{letter-spacing:4.627968pt;}
.ls96{letter-spacing:5.240320pt;}
.ls1e{letter-spacing:5.888000pt;}
.ls8e{letter-spacing:6.535680pt;}
.ls79{letter-spacing:7.183360pt;}
.ls64{letter-spacing:7.766272pt;}
.ls65{letter-spacing:7.831040pt;}
.ls89{letter-spacing:8.478720pt;}
.ls50{letter-spacing:9.067520pt;}
.ls48{letter-spacing:9.715200pt;}
.ls9b{letter-spacing:10.362880pt;}
.ls62{letter-spacing:10.981120pt;}
.ls66{letter-spacing:11.605248pt;}
.ls91{letter-spacing:11.658240pt;}
.ls67{letter-spacing:12.293120pt;}
.ls53{letter-spacing:12.305920pt;}
.ls76{letter-spacing:12.953600pt;}
.ls83{letter-spacing:14.190080pt;}
.ls84{letter-spacing:14.290176pt;}
.ls82{letter-spacing:15.367680pt;}
.ls81{letter-spacing:15.485440pt;}
.ls7b{letter-spacing:19.960320pt;}
.ls8b{letter-spacing:32.266240pt;}
.ls75{letter-spacing:34.856960pt;}
.ls2f{letter-spacing:50.053120pt;}
.ls77{letter-spacing:52.756480pt;}
.ls86{letter-spacing:53.404160pt;}
.ls28{letter-spacing:54.533120pt;}
.ls47{letter-spacing:56.903680pt;}
.ls6{letter-spacing:72.512000pt;}
.ls25{letter-spacing:76.933120pt;}
.ls9{letter-spacing:83.005440pt;}
.ls45{letter-spacing:104.453120pt;}
.ls43{letter-spacing:133.893120pt;}
.ls8{letter-spacing:134.819840pt;}
.lsc{letter-spacing:194.360320pt;}
.lsa{letter-spacing:588.608000pt;}
.lsd{letter-spacing:717.056000pt;}
.ls1c{letter-spacing:861.056000pt;}
.wsc1{word-spacing:-58.880000pt;}
.ws69{word-spacing:-53.120000pt;}
.wsfd{word-spacing:-21.116160pt;}
.wsfb{word-spacing:-20.741760pt;}
.ws5e{word-spacing:-20.517120pt;}
.wsfc{word-spacing:-20.442240pt;}
.ws1b{word-spacing:-17.536000pt;}
.ws7{word-spacing:-16.922880pt;}
.ws4{word-spacing:-16.848000pt;}
.ws6{word-spacing:-16.698240pt;}
.ws5{word-spacing:-16.398720pt;}
.ws9{word-spacing:-16.250880pt;}
.ws8{word-spacing:-14.656000pt;}
.wsb{word-spacing:-14.528000pt;}
.wsa{word-spacing:-14.272000pt;}
.wsc{word-spacing:-14.016000pt;}
.wsa5{word-spacing:-13.639680pt;}
.ws109{word-spacing:-13.601280pt;}
.ws5f{word-spacing:-13.542400pt;}
.ws66{word-spacing:-13.483520pt;}
.ws62{word-spacing:-13.424640pt;}
.ws65{word-spacing:-13.365760pt;}
.ws1c{word-spacing:-13.306880pt;}
.ws76{word-spacing:-13.248000pt;}
.ws64{word-spacing:-13.189120pt;}
.ws60{word-spacing:-13.130240pt;}
.ws61{word-spacing:-13.071360pt;}
.ws6a{word-spacing:-13.012480pt;}
.ws63{word-spacing:-12.953600pt;}
.wsd{word-spacing:-12.894720pt;}
.ws1d{word-spacing:-12.835840pt;}
.wsfe{word-spacing:-12.776960pt;}
.ws75{word-spacing:-12.718080pt;}
.ws68{word-spacing:-12.659200pt;}
.ws67{word-spacing:-12.600320pt;}
.ws3d{word-spacing:-12.589440pt;}
.ws7b{word-spacing:-12.541440pt;}
.ws48{word-spacing:-12.483200pt;}
.ws115{word-spacing:-12.482560pt;}
.ws45{word-spacing:-12.217600pt;}
.ws3a{word-spacing:-12.005120pt;}
.ws3b{word-spacing:-11.952000pt;}
.ws3c{word-spacing:-11.898880pt;}
.ws44{word-spacing:-11.845760pt;}
.ws3e{word-spacing:-11.686400pt;}
.ws40{word-spacing:-9.862400pt;}
.ws3f{word-spacing:-9.776640pt;}
.ws41{word-spacing:-9.690880pt;}
.ws42{word-spacing:-9.519360pt;}
.ws47{word-spacing:-9.476480pt;}
.wsa7{word-spacing:-9.354240pt;}
.ws43{word-spacing:-9.176320pt;}
.ws7d{word-spacing:-9.152640pt;}
.ws7c{word-spacing:-9.112320pt;}
.wsa6{word-spacing:-9.031680pt;}
.ws46{word-spacing:-8.961920pt;}
.ws80{word-spacing:-8.910720pt;}
.wsa9{word-spacing:-8.789760pt;}
.ws7e{word-spacing:-8.507520pt;}
.ws7a{word-spacing:-8.389120pt;}
.wsa4{word-spacing:-8.129280pt;}
.ws7f{word-spacing:-7.810560pt;}
.wsa8{word-spacing:-7.568640pt;}
.ws81{word-spacing:-6.074880pt;}
.wsc9{word-spacing:-3.356160pt;}
.ws23{word-spacing:-3.179520pt;}
.ws24{word-spacing:-3.002880pt;}
.wsb4{word-spacing:-2.885120pt;}
.wsf8{word-spacing:-2.531840pt;}
.ws2d{word-spacing:-2.355200pt;}
.ws92{word-spacing:-2.237440pt;}
.ws2c{word-spacing:-2.178560pt;}
.wsca{word-spacing:-2.060800pt;}
.ws20{word-spacing:-1.984000pt;}
.ws9f{word-spacing:-1.975680pt;}
.ws9e{word-spacing:-1.935360pt;}
.ws83{word-spacing:-1.884160pt;}
.ws1e{word-spacing:-1.728000pt;}
.wsd7{word-spacing:-1.707520pt;}
.wsb0{word-spacing:-1.589760pt;}
.ws2b{word-spacing:-1.530880pt;}
.ws99{word-spacing:-1.370880pt;}
.wsb9{word-spacing:-1.236480pt;}
.ws9a{word-spacing:-1.169280pt;}
.ws1f{word-spacing:-1.088000pt;}
.ws32{word-spacing:-1.059840pt;}
.wsf{word-spacing:-1.040000pt;}
.wsb1{word-spacing:-0.942080pt;}
.ws53{word-spacing:-0.900480pt;}
.ws33{word-spacing:-0.883200pt;}
.ws1a{word-spacing:-0.824320pt;}
.ws54{word-spacing:-0.814720pt;}
.wsf4{word-spacing:-0.765440pt;}
.wsbd{word-spacing:-0.725760pt;}
.ws22{word-spacing:-0.704000pt;}
.ws77{word-spacing:-0.647680pt;}
.ws58{word-spacing:-0.557440pt;}
.ws6d{word-spacing:-0.529920pt;}
.ws31{word-spacing:-0.471040pt;}
.ws50{word-spacing:-0.424960pt;}
.ws14{word-spacing:-0.353280pt;}
.ws10{word-spacing:-0.320000pt;}
.ws15{word-spacing:-0.294400pt;}
.ws113{word-spacing:-0.265600pt;}
.ws56{word-spacing:-0.257280pt;}
.ws79{word-spacing:-0.235520pt;}
.ws5a{word-spacing:-0.214400pt;}
.ws98{word-spacing:-0.201600pt;}
.ws19{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.176640pt;}
.ws52{word-spacing:-0.171520pt;}
.ws111{word-spacing:-0.159360pt;}
.ws18{word-spacing:-0.117760pt;}
.ws112{word-spacing:-0.106240pt;}
.ws9b{word-spacing:-0.080640pt;}
.wse{word-spacing:-0.074880pt;}
.ws78{word-spacing:-0.058880pt;}
.ws4f{word-spacing:-0.053120pt;}
.ws9c{word-spacing:-0.040320pt;}
.ws0{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.058880pt;}
.ws12{word-spacing:0.064000pt;}
.ws82{word-spacing:0.074880pt;}
.ws55{word-spacing:0.085760pt;}
.ws4b{word-spacing:0.106240pt;}
.ws90{word-spacing:0.117760pt;}
.ws9d{word-spacing:0.120960pt;}
.ws4e{word-spacing:0.128640pt;}
.ws51{word-spacing:0.159360pt;}
.ws28{word-spacing:0.176640pt;}
.ws17{word-spacing:0.192000pt;}
.ws4c{word-spacing:0.212480pt;}
.ws5d{word-spacing:0.214400pt;}
.ws29{word-spacing:0.235520pt;}
.ws5c{word-spacing:0.257280pt;}
.ws4d{word-spacing:0.265600pt;}
.ws8d{word-spacing:0.294400pt;}
.ws11e{word-spacing:0.299520pt;}
.ws4a{word-spacing:0.318720pt;}
.ws13{word-spacing:0.353280pt;}
.ws114{word-spacing:0.371840pt;}
.ws3{word-spacing:0.384000pt;}
.wsee{word-spacing:0.412160pt;}
.ws11{word-spacing:0.448000pt;}
.ws110{word-spacing:0.471040pt;}
.ws57{word-spacing:0.471680pt;}
.ws59{word-spacing:0.478080pt;}
.ws39{word-spacing:0.529920pt;}
.wsa0{word-spacing:0.564480pt;}
.wscd{word-spacing:0.588800pt;}
.ws49{word-spacing:0.599040pt;}
.wsf3{word-spacing:0.647680pt;}
.wsd4{word-spacing:0.706560pt;}
.wsa1{word-spacing:0.766080pt;}
.wse3{word-spacing:0.824320pt;}
.ws106{word-spacing:0.883200pt;}
.ws91{word-spacing:0.942080pt;}
.wsf2{word-spacing:1.000960pt;}
.ws5b{word-spacing:1.115520pt;}
.ws88{word-spacing:1.118720pt;}
.wsda{word-spacing:1.177600pt;}
.wsc0{word-spacing:1.209600pt;}
.ws120{word-spacing:1.236480pt;}
.wsef{word-spacing:1.295360pt;}
.wsbf{word-spacing:1.330560pt;}
.wsac{word-spacing:1.354240pt;}
.wsbe{word-spacing:1.411200pt;}
.wse6{word-spacing:1.413120pt;}
.ws35{word-spacing:1.472000pt;}
.ws8c{word-spacing:1.589760pt;}
.ws36{word-spacing:1.648640pt;}
.wsbc{word-spacing:1.854720pt;}
.wsd9{word-spacing:1.884160pt;}
.ws74{word-spacing:1.943040pt;}
.wscc{word-spacing:2.119680pt;}
.ws8f{word-spacing:2.237440pt;}
.wsd8{word-spacing:2.296320pt;}
.wsc8{word-spacing:2.414080pt;}
.wsbb{word-spacing:2.499840pt;}
.ws108{word-spacing:2.531840pt;}
.ws107{word-spacing:2.590720pt;}
.wsf6{word-spacing:2.767360pt;}
.ws97{word-spacing:2.885120pt;}
.wsf5{word-spacing:2.944000pt;}
.wscb{word-spacing:3.061760pt;}
.wsa2{word-spacing:3.144960pt;}
.wsa3{word-spacing:3.185280pt;}
.wsd6{word-spacing:3.238400pt;}
.wsc6{word-spacing:3.297280pt;}
.ws30{word-spacing:3.415040pt;}
.wsb3{word-spacing:3.473920pt;}
.ws85{word-spacing:3.532800pt;}
.ws105{word-spacing:3.591680pt;}
.wsc5{word-spacing:3.709440pt;}
.ws11a{word-spacing:3.827200pt;}
.ws2f{word-spacing:4.003840pt;}
.wsce{word-spacing:4.062720pt;}
.ws94{word-spacing:4.121600pt;}
.ws2e{word-spacing:4.180480pt;}
.ws21{word-spacing:4.416000pt;}
.wsf1{word-spacing:4.474880pt;}
.ws70{word-spacing:4.651520pt;}
.wsab{word-spacing:4.710400pt;}
.ws87{word-spacing:4.769280pt;}
.ws10b{word-spacing:4.828160pt;}
.ws25{word-spacing:5.299200pt;}
.ws84{word-spacing:5.416960pt;}
.wsf0{word-spacing:5.475840pt;}
.wsad{word-spacing:5.529600pt;}
.ws26{word-spacing:5.770240pt;}
.ws27{word-spacing:5.946880pt;}
.wsc4{word-spacing:6.064640pt;}
.ws10f{word-spacing:6.123520pt;}
.ws2{word-spacing:6.336000pt;}
.ws10c{word-spacing:6.417920pt;}
.ws104{word-spacing:6.594560pt;}
.ws10d{word-spacing:6.712320pt;}
.ws10e{word-spacing:6.771200pt;}
.wse0{word-spacing:7.006720pt;}
.ws11b{word-spacing:7.065600pt;}
.wsdf{word-spacing:7.242240pt;}
.ws8e{word-spacing:7.360000pt;}
.wsff{word-spacing:7.418880pt;}
.ws100{word-spacing:7.536640pt;}
.wscf{word-spacing:7.713280pt;}
.wsd1{word-spacing:7.889920pt;}
.wsaf{word-spacing:8.007680pt;}
.wsd0{word-spacing:8.066560pt;}
.ws38{word-spacing:8.537600pt;}
.ws119{word-spacing:8.596480pt;}
.ws86{word-spacing:8.655360pt;}
.ws37{word-spacing:8.714240pt;}
.wsd2{word-spacing:8.949760pt;}
.wsd3{word-spacing:9.126400pt;}
.ws96{word-spacing:9.244160pt;}
.ws103{word-spacing:9.303040pt;}
.ws102{word-spacing:9.597440pt;}
.wsf7{word-spacing:9.774080pt;}
.ws8b{word-spacing:9.891840pt;}
.ws6e{word-spacing:9.950720pt;}
.wsba{word-spacing:10.160640pt;}
.wsd5{word-spacing:10.362880pt;}
.ws89{word-spacing:10.421760pt;}
.ws8a{word-spacing:10.539520pt;}
.ws6f{word-spacing:10.598400pt;}
.ws117{word-spacing:10.892800pt;}
.wsaa{word-spacing:11.187200pt;}
.ws10a{word-spacing:11.246080pt;}
.ws11d{word-spacing:11.481600pt;}
.wsb2{word-spacing:11.599360pt;}
.ws34{word-spacing:11.717120pt;}
.ws93{word-spacing:11.834880pt;}
.wsae{word-spacing:11.980800pt;}
.wsc2{word-spacing:12.423680pt;}
.ws95{word-spacing:12.482560pt;}
.wsde{word-spacing:12.835840pt;}
.wsdc{word-spacing:13.012480pt;}
.wsc3{word-spacing:13.130240pt;}
.wsdd{word-spacing:13.189120pt;}
.ws11f{word-spacing:13.660160pt;}
.wsc7{word-spacing:13.777920pt;}
.wseb{word-spacing:14.248960pt;}
.wsea{word-spacing:14.425600pt;}
.wse8{word-spacing:14.543360pt;}
.wsdb{word-spacing:14.896640pt;}
.ws118{word-spacing:15.073280pt;}
.ws101{word-spacing:15.367680pt;}
.wse7{word-spacing:15.544320pt;}
.wse9{word-spacing:15.720960pt;}
.wsb5{word-spacing:16.309760pt;}
.ws116{word-spacing:16.663040pt;}
.ws6b{word-spacing:18.135040pt;}
.ws6c{word-spacing:18.311680pt;}
.wsec{word-spacing:19.194880pt;}
.wse1{word-spacing:19.371520pt;}
.wsed{word-spacing:19.430400pt;}
.wsb7{word-spacing:19.901440pt;}
.wse2{word-spacing:20.019200pt;}
.wsb6{word-spacing:20.136960pt;}
.ws11c{word-spacing:21.962240pt;}
.wsfa{word-spacing:22.433280pt;}
.wsf9{word-spacing:22.786560pt;}
.wse4{word-spacing:23.846400pt;}
.wse5{word-spacing:24.023040pt;}
.ws71{word-spacing:30.676480pt;}
.ws73{word-spacing:30.735360pt;}
.ws72{word-spacing:31.324160pt;}
.wsb8{word-spacing:32.972800pt;}
.ws1{word-spacing:35.136000pt;}
._10{margin-left:-11.287680pt;}
._12{margin-left:-8.684160pt;}
._11{margin-left:-7.302400pt;}
._f{margin-left:-6.339840pt;}
._2{margin-left:-5.116800pt;}
._3{margin-left:-3.328000pt;}
._5{margin-left:-1.971200pt;}
._0{margin-left:-1.027200pt;}
._1{width:1.152000pt;}
._4{width:2.336000pt;}
._15{width:3.765760pt;}
._20{width:4.707712pt;}
._1f{width:5.788160pt;}
._16{width:7.582720pt;}
._1a{width:9.244160pt;}
._18{width:10.225920pt;}
._17{width:12.129280pt;}
._1e{width:14.799360pt;}
._19{width:16.368640pt;}
._14{width:17.825920pt;}
._1c{width:19.137536pt;}
._1b{width:20.195840pt;}
._1d{width:23.765120pt;}
._c{width:85.312000pt;}
._e{width:129.542400pt;}
._13{width:169.246080pt;}
._9{width:178.983040pt;}
._6{width:389.091840pt;}
._8{width:419.092480pt;}
._7{width:444.469760pt;}
._a{width:513.612800pt;}
._b{width:599.104000pt;}
._d{width:754.664960pt;}
.fsd{font-size:26.880000pt;}
.fsc{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fsb{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fse{font-size:61.440000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fs9{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs5{font-size:192.000000pt;}
.fs3{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.520000pt;}
.y2{bottom:7.520000pt;}
.y1d{bottom:7.840000pt;}
.ya6{bottom:7.999867pt;}
.ya9{bottom:8.000000pt;}
.y40{bottom:8.160000pt;}
.yb6{bottom:25.920000pt;}
.y1c{bottom:29.440000pt;}
.y6{bottom:40.960000pt;}
.y1b{bottom:41.440000pt;}
.ybe{bottom:43.840000pt;}
.y5{bottom:61.760000pt;}
.y15{bottom:67.359867pt;}
.y139{bottom:78.403360pt;}
.y1d8{bottom:84.501760pt;}
.y18f{bottom:86.297600pt;}
.y1bd{bottom:90.565760pt;}
.y3f{bottom:95.520000pt;}
.y138{bottom:97.120000pt;}
.y3e{bottom:102.400000pt;}
.y1d7{bottom:102.416000pt;}
.y18e{bottom:105.021440pt;}
.y227{bottom:105.159040pt;}
.y165{bottom:107.840000pt;}
.y1bc{bottom:108.480000pt;}
.y137{bottom:112.002560pt;}
.y106{bottom:113.600000pt;}
.y202{bottom:118.560000pt;}
.y136{bottom:121.760000pt;}
.y226{bottom:123.073280pt;}
.y1d6{bottom:124.334080pt;}
.y164{bottom:125.770240pt;}
.y18d{bottom:127.587200pt;}
.y105{bottom:128.643520pt;}
.y1bb{bottom:131.040000pt;}
.y3d{bottom:136.480000pt;}
.y225{bottom:140.840320pt;}
.y135{bottom:141.440000pt;}
.y104{bottom:143.520000pt;}
.y163{bottom:143.537280pt;}
.y201{bottom:143.840000pt;}
.y18c{bottom:145.501440pt;}
.y1d5{bottom:146.252160pt;}
.y1ba{bottom:148.967680pt;}
.y134{bottom:155.844960pt;}
.y103{bottom:156.957120pt;}
.y224{bottom:158.754560pt;}
.y162{bottom:161.451520pt;}
.y18b{bottom:163.415680pt;}
.y1d4{bottom:164.166400pt;}
.y3c{bottom:166.721920pt;}
.y1b9{bottom:166.881920pt;}
.y133{bottom:171.840000pt;}
.y102{bottom:174.560000pt;}
.y200{bottom:174.776960pt;}
.y223{bottom:176.668800pt;}
.y161{bottom:179.365760pt;}
.y1d3{bottom:182.080640pt;}
.y132{bottom:183.844960pt;}
.y18a{bottom:185.333760pt;}
.y3b{bottom:188.640000pt;}
.y1b8{bottom:188.800000pt;}
.y101{bottom:188.954880pt;}
.y222{bottom:194.583040pt;}
.y1ff{bottom:196.533120pt;}
.y160{bottom:197.280000pt;}
.y131{bottom:199.840000pt;}
.y1d2{bottom:199.847680pt;}
.y100{bottom:204.960000pt;}
.y189{bottom:207.251840pt;}
.y1b7{bottom:210.814080pt;}
.y221{bottom:212.497280pt;}
.y85{bottom:213.447680pt;}
.y1fe{bottom:214.447360pt;}
.y3a{bottom:217.760000pt;}
.y1d1{bottom:217.761920pt;}
.y130{bottom:218.240000pt;}
.y15f{bottom:219.217920pt;}
.yff{bottom:223.360000pt;}
.y188{bottom:225.166080pt;}
.y1b6{bottom:228.728320pt;}
.y12f{bottom:230.244960pt;}
.y220{bottom:230.411520pt;}
.y1fd{bottom:232.361600pt;}
.y84{bottom:235.203840pt;}
.yfe{bottom:235.364960pt;}
.y1d0{bottom:239.680000pt;}
.y38{bottom:240.000000pt;}
.y15e{bottom:241.136000pt;}
.y187{bottom:243.080320pt;}
.y12e{bottom:246.240000pt;}
.y1b5{bottom:246.642560pt;}
.y39{bottom:247.040000pt;}
.y21f{bottom:248.325760pt;}
.y1fc{bottom:251.085440pt;}
.yfd{bottom:251.360000pt;}
.y15d{bottom:259.050240pt;}
.y12d{bottom:260.160000pt;}
.y83{bottom:260.640000pt;}
.y186{bottom:260.994560pt;}
.y1cf{bottom:261.118880pt;}
.y1b4{bottom:264.556800pt;}
.y36{bottom:265.920000pt;}
.y21e{bottom:266.240000pt;}
.y1fb{bottom:268.999680pt;}
.yfc{bottom:270.560000pt;}
.y37{bottom:272.960000pt;}
.y15c{bottom:276.964480pt;}
.y1ce{bottom:277.440000pt;}
.y185{bottom:278.908800pt;}
.y1b3{bottom:282.471040pt;}
.y82{bottom:284.960000pt;}
.y1fa{bottom:286.913920pt;}
.yfb{bottom:291.040000pt;}
.y63{bottom:291.152640pt;}
.y33{bottom:291.840000pt;}
.y1cd{bottom:294.078080pt;}
.y15b{bottom:294.878720pt;}
.y35{bottom:298.720000pt;}
.y1b2{bottom:300.385280pt;}
.y184{bottom:300.826880pt;}
.y21d{bottom:302.080000pt;}
.y81{bottom:305.280000pt;}
.y1f9{bottom:305.637760pt;}
.y62{bottom:309.066880pt;}
.y15a{bottom:312.792960pt;}
.yd6{bottom:320.321920pt;}
.y1b1{bottom:322.141440pt;}
.y183{bottom:322.583040pt;}
.y1f8{bottom:323.552000pt;}
.yfa{bottom:323.697280pt;}
.y32{bottom:325.600000pt;}
.y61{bottom:326.981120pt;}
.y12c{bottom:328.320000pt;}
.y80{bottom:329.440000pt;}
.y159{bottom:330.560000pt;}
.y182{bottom:340.497280pt;}
.y1f7{bottom:341.466240pt;}
.yf9{bottom:341.611520pt;}
.yd5{bottom:342.240000pt;}
.y1b0{bottom:344.059520pt;}
.y60{bottom:344.895360pt;}
.y12b{bottom:346.245760pt;}
.ya4{bottom:349.764480pt;}
.y21c{bottom:352.001920pt;}
.y7f{bottom:353.760000pt;}
.y31{bottom:354.240000pt;}
.y181{bottom:358.411520pt;}
.yf8{bottom:359.525760pt;}
.y1f6{bottom:360.028160pt;}
.yd3{bottom:361.120000pt;}
.y1af{bottom:361.973760pt;}
.y5f{bottom:362.809600pt;}
.y12a{bottom:364.160000pt;}
.y158{bottom:366.720000pt;}
.ya3{bottom:367.678720pt;}
.yd4{bottom:369.120000pt;}
.y21b{bottom:373.758080pt;}
.y7e{bottom:374.080000pt;}
.y180{bottom:376.325760pt;}
.yf7{bottom:377.444480pt;}
.y1f5{bottom:377.942400pt;}
.y1ae{bottom:379.888000pt;}
.y5e{bottom:380.723840pt;}
.y129{bottom:382.080000pt;}
.ya2{bottom:385.445760pt;}
.y30{bottom:387.520000pt;}
.yd1{bottom:388.000000pt;}
.y21a{bottom:391.672320pt;}
.y7d{bottom:394.240000pt;}
.yf6{bottom:395.358720pt;}
.yd2{bottom:396.000000pt;}
.y1f4{bottom:396.666240pt;}
.y1ad{bottom:397.802240pt;}
.y5d{bottom:398.638080pt;}
.y128{bottom:400.027520pt;}
.ya1{bottom:403.360000pt;}
.y219{bottom:409.586560pt;}
.yf5{bottom:413.272960pt;}
.y1f3{bottom:414.580480pt;}
.y157{bottom:414.720000pt;}
.ycf{bottom:414.880000pt;}
.y1ac{bottom:415.716480pt;}
.y5c{bottom:416.405120pt;}
.y127{bottom:417.794560pt;}
.y2f{bottom:418.560000pt;}
.yd0{bottom:422.880000pt;}
.ya0{bottom:425.280000pt;}
.y17f{bottom:430.240000pt;}
.yf4{bottom:431.080320pt;}
.y218{bottom:431.342720pt;}
.y1f2{bottom:433.304320pt;}
.y1ab{bottom:433.630720pt;}
.y5b{bottom:434.319360pt;}
.y156{bottom:434.560000pt;}
.y126{bottom:435.708800pt;}
.ycd{bottom:441.920000pt;}
.y2e{bottom:442.240000pt;}
.y7c{bottom:442.880000pt;}
.y9f{bottom:447.200000pt;}
.yf3{bottom:448.994560pt;}
.yce{bottom:449.760000pt;}
.y1f1{bottom:451.218560pt;}
.y1aa{bottom:451.544960pt;}
.y5a{bottom:452.233600pt;}
.y155{bottom:452.480000pt;}
.y217{bottom:453.260800pt;}
.y2b{bottom:453.280000pt;}
.y125{bottom:453.623040pt;}
.y7b{bottom:463.200000pt;}
.y2d{bottom:465.760000pt;}
.yf2{bottom:466.908800pt;}
.ycb{bottom:468.800000pt;}
.y9e{bottom:469.125760pt;}
.y1f0{bottom:469.780480pt;}
.y59{bottom:470.147840pt;}
.y154{bottom:470.400000pt;}
.y216{bottom:471.175040pt;}
.y124{bottom:471.537280pt;}
.y1a9{bottom:473.463040pt;}
.ycc{bottom:476.800000pt;}
.y17e{bottom:478.284800pt;}
.y7a{bottom:483.360000pt;}
.yf1{bottom:484.823040pt;}
.y9d{bottom:487.040000pt;}
.y1ef{bottom:487.694720pt;}
.y58{bottom:488.062080pt;}
.y153{bottom:488.320000pt;}
.y215{bottom:489.089280pt;}
.y2c{bottom:489.280000pt;}
.y123{bottom:489.451520pt;}
.y1a8{bottom:495.219200pt;}
.yc9{bottom:495.680000pt;}
.y17d{bottom:496.199040pt;}
.yf0{bottom:502.737280pt;}
.yca{bottom:503.680000pt;}
.y1ee{bottom:505.608960pt;}
.y57{bottom:505.976320pt;}
.y152{bottom:506.240000pt;}
.y214{bottom:507.003520pt;}
.y122{bottom:507.365760pt;}
.y79{bottom:507.680000pt;}
.y9c{bottom:508.960000pt;}
.y1a7{bottom:513.133440pt;}
.y17c{bottom:514.113280pt;}
.y2a{bottom:516.800000pt;}
.yef{bottom:520.651520pt;}
.yc7{bottom:522.560000pt;}
.y56{bottom:523.890560pt;}
.y151{bottom:524.160000pt;}
.y213{bottom:524.917760pt;}
.y121{bottom:525.280000pt;}
.y29{bottom:528.000000pt;}
.y1ed{bottom:528.321920pt;}
.yc8{bottom:530.560000pt;}
.y9b{bottom:530.884480pt;}
.y1a6{bottom:531.047680pt;}
.y78{bottom:532.000000pt;}
.y17b{bottom:532.027520pt;}
.yee{bottom:538.565760pt;}
.y55{bottom:541.804800pt;}
.y212{bottom:542.832000pt;}
.y120{bottom:543.200000pt;}
.y150{bottom:544.053760pt;}
.y9a{bottom:548.798720pt;}
.y1a5{bottom:548.961920pt;}
.yc5{bottom:549.440000pt;}
.y17a{bottom:549.941760pt;}
.y1ec{bottom:550.240000pt;}
.y77{bottom:552.160000pt;}
.yed{bottom:556.490240pt;}
.yc6{bottom:557.440000pt;}
.y54{bottom:559.719040pt;}
.y211{bottom:560.746240pt;}
.y11f{bottom:563.040000pt;}
.y14f{bottom:564.529280pt;}
.y99{bottom:566.712960pt;}
.y179{bottom:567.856000pt;}
.y28{bottom:570.080000pt;}
.y1a4{bottom:570.880000pt;}
.y1eb{bottom:572.160000pt;}
.y76{bottom:572.480000pt;}
.yec{bottom:574.404480pt;}
.yc2{bottom:576.320000pt;}
.y53{bottom:577.633280pt;}
.y11e{bottom:580.960000pt;}
.y210{bottom:582.664320pt;}
.yc4{bottom:584.320000pt;}
.y98{bottom:584.480000pt;}
.y178{bottom:585.770240pt;}
.y14e{bottom:585.976320pt;}
.y1ea{bottom:590.080000pt;}
.yeb{bottom:592.318720pt;}
.y1a3{bottom:592.817280pt;}
.y52{bottom:595.400320pt;}
.y75{bottom:596.800000pt;}
.y11d{bottom:598.880000pt;}
.yc3{bottom:602.240000pt;}
.y27{bottom:603.520000pt;}
.y177{bottom:603.684480pt;}
.y20f{bottom:604.420480pt;}
.y97{bottom:606.438400pt;}
.y14d{bottom:606.613760pt;}
.yea{bottom:610.085760pt;}
.y1a2{bottom:610.731520pt;}
.y1e9{bottom:611.879040pt;}
.y51{bottom:613.314560pt;}
.y11c{bottom:616.800000pt;}
.y74{bottom:621.120000pt;}
.y176{bottom:621.598720pt;}
.y20e{bottom:622.334720pt;}
.y14c{bottom:627.898880pt;}
.ye9{bottom:628.011520pt;}
.y96{bottom:628.356480pt;}
.y1a1{bottom:628.645760pt;}
.yc1{bottom:629.120000pt;}
.y1e8{bottom:629.793280pt;}
.y50{bottom:631.228800pt;}
.y11b{bottom:634.720000pt;}
.y26{bottom:636.800000pt;}
.y175{bottom:639.365760pt;}
.y20d{bottom:640.248960pt;}
.y73{bottom:641.280000pt;}
.ye8{bottom:645.925760pt;}
.y14{bottom:646.400000pt;}
.y1a0{bottom:646.560000pt;}
.yc0{bottom:647.040000pt;}
.y1e7{bottom:647.707520pt;}
.y4f{bottom:649.143040pt;}
.y14b{bottom:649.345920pt;}
.y95{bottom:650.274560pt;}
.y11a{bottom:652.640000pt;}
.y17{bottom:655.200000pt;}
.y174{bottom:657.280000pt;}
.y20c{bottom:658.163200pt;}
.y72{bottom:661.600000pt;}
.ye7{bottom:663.851520pt;}
.y19f{bottom:664.480640pt;}
.ybf{bottom:664.960000pt;}
.y4e{bottom:667.057280pt;}
.y25{bottom:667.523840pt;}
.y1e6{bottom:669.625600pt;}
.y119{bottom:670.560000pt;}
.y14a{bottom:670.631040pt;}
.y94{bottom:672.192640pt;}
.y20b{bottom:676.077440pt;}
.ye6{bottom:681.765760pt;}
.y71{bottom:681.920000pt;}
.y19e{bottom:682.394880pt;}
.y173{bottom:682.560000pt;}
.ybc{bottom:683.840000pt;}
.y16{bottom:684.480000pt;}
.y4d{bottom:684.971520pt;}
.y118{bottom:688.320000pt;}
.y24{bottom:689.441920pt;}
.y1e5{bottom:691.543680pt;}
.ybd{bottom:691.840000pt;}
.y149{bottom:692.078080pt;}
.y20a{bottom:693.991680pt;}
.y93{bottom:694.110720pt;}
.ye5{bottom:699.701760pt;}
.y19d{bottom:700.161920pt;}
.y70{bottom:702.240000pt;}
.y4c{bottom:702.885760pt;}
.y117{bottom:706.240000pt;}
.y1e4{bottom:709.457920pt;}
.y148{bottom:709.992320pt;}
.yb9{bottom:710.720000pt;}
.y23{bottom:711.360000pt;}
.y172{bottom:713.457280pt;}
.y13{bottom:713.759867pt;}
.y209{bottom:715.909760pt;}
.y92{bottom:716.028800pt;}
.ye4{bottom:717.616000pt;}
.ybb{bottom:718.720000pt;}
.y4b{bottom:720.800000pt;}
.y19c{bottom:722.080000pt;}
.y116{bottom:724.160000pt;}
.y6f{bottom:726.400000pt;}
.y1e3{bottom:727.372160pt;}
.y147{bottom:727.906560pt;}
.y171{bottom:731.371520pt;}
.y1cc{bottom:732.160000pt;}
.y22{bottom:733.600000pt;}
.y91{bottom:733.943040pt;}
.ye3{bottom:735.530240pt;}
.yba{bottom:736.640000pt;}
.y208{bottom:737.827840pt;}
.y115{bottom:742.240000pt;}
.y1e2{bottom:745.286400pt;}
.y146{bottom:745.820800pt;}
.y19b{bottom:747.360000pt;}
.y170{bottom:749.285760pt;}
.y6e{bottom:750.720000pt;}
.ye2{bottom:753.444480pt;}
.y1cb{bottom:754.085760pt;}
.yb5{bottom:755.520000pt;}
.y207{bottom:755.742080pt;}
.y90{bottom:755.861120pt;}
.y4a{bottom:756.800000pt;}
.y21{bottom:757.120000pt;}
.y19{bottom:760.960000pt;}
.y114{bottom:762.072960pt;}
.y1e1{bottom:763.200640pt;}
.yb8{bottom:763.520000pt;}
.y145{bottom:763.735040pt;}
.y16f{bottom:767.200000pt;}
.y12{bottom:767.383040pt;}
.y6d{bottom:771.040000pt;}
.ye1{bottom:771.358720pt;}
.y1ca{bottom:772.000000pt;}
.y206{bottom:773.656320pt;}
.y8f{bottom:777.617280pt;}
.y19a{bottom:778.265600pt;}
.y113{bottom:779.866880pt;}
.y1e0{bottom:781.114880pt;}
.yb7{bottom:781.440000pt;}
.y144{bottom:781.649280pt;}
.ye0{bottom:789.125760pt;}
.y11{bottom:789.301120pt;}
.y1c9{bottom:789.960960pt;}
.y205{bottom:791.423360pt;}
.y16e{bottom:792.320000pt;}
.y6c{bottom:795.200000pt;}
.y112{bottom:797.781120pt;}
.y1df{bottom:798.881920pt;}
.y143{bottom:799.416320pt;}
.y8e{bottom:799.535360pt;}
.y199{bottom:800.183680pt;}
.yb3{bottom:800.320000pt;}
.y49{bottom:803.680160pt;}
.ydf{bottom:807.080320pt;}
.y1c8{bottom:807.875200pt;}
.yb4{bottom:808.320000pt;}
.y204{bottom:809.337600pt;}
.y10{bottom:811.057280pt;}
.y111{bottom:815.695360pt;}
.y142{bottom:817.330560pt;}
.y198{bottom:818.097920pt;}
.y6b{bottom:819.520000pt;}
.y48{bottom:820.800000pt;}
.y8d{bottom:821.453440pt;}
.y20{bottom:821.600000pt;}
.y16d{bottom:823.248000pt;}
.yde{bottom:824.994560pt;}
.y1c7{bottom:825.789440pt;}
.y203{bottom:827.251840pt;}
.yb1{bottom:827.360000pt;}
.y18{bottom:829.920000pt;}
.yf{bottom:832.975360pt;}
.y110{bottom:833.609600pt;}
.y141{bottom:835.244800pt;}
.yb2{bottom:835.360000pt;}
.y197{bottom:836.012160pt;}
.y1de{bottom:842.727680pt;}
.ydd{bottom:842.908800pt;}
.y8c{bottom:843.371520pt;}
.y1c6{bottom:843.556480pt;}
.y6a{bottom:843.840000pt;}
.y16c{bottom:845.166080pt;}
.y47{bottom:846.560000pt;}
.y10f{bottom:851.523840pt;}
.y140{bottom:853.159040pt;}
.y196{bottom:853.926400pt;}
.yaf{bottom:854.240000pt;}
.ye{bottom:854.893440pt;}
.y1dd{bottom:860.641920pt;}
.ydc{bottom:860.823040pt;}
.yb0{bottom:862.240000pt;}
.y16b{bottom:863.080320pt;}
.y8b{bottom:865.289600pt;}
.y1c5{bottom:865.474560pt;}
.y46{bottom:866.240000pt;}
.y69{bottom:868.160000pt;}
.y10e{bottom:869.596160pt;}
.y13f{bottom:871.073280pt;}
.y195{bottom:871.693440pt;}
.yd{bottom:876.811520pt;}
.ydb{bottom:878.737280pt;}
.y16a{bottom:880.994560pt;}
.yad{bottom:881.120000pt;}
.y1dc{bottom:882.560000pt;}
.y45{bottom:885.759867pt;}
.y8a{bottom:887.207680pt;}
.y1c4{bottom:887.392640pt;}
.y10d{bottom:888.318080pt;}
.y13e{bottom:888.987520pt;}
.yae{bottom:889.120000pt;}
.y68{bottom:892.320000pt;}
.y194{bottom:893.611520pt;}
.yda{bottom:896.651520pt;}
.yc{bottom:898.729600pt;}
.y169{bottom:898.908800pt;}
.y1c3{bottom:905.306880pt;}
.y10c{bottom:906.897280pt;}
.y13d{bottom:906.901760pt;}
.y1db{bottom:907.840000pt;}
.yab{bottom:908.000000pt;}
.y1f{bottom:909.120000pt;}
.y89{bottom:909.125760pt;}
.y193{bottom:911.525760pt;}
.yd9{bottom:914.565760pt;}
.yac{bottom:916.000000pt;}
.y44{bottom:916.320000pt;}
.y67{bottom:916.640000pt;}
.y168{bottom:916.823040pt;}
.yb{bottom:920.647680pt;}
.y1c2{bottom:923.221120pt;}
.y10b{bottom:924.811520pt;}
.y13c{bottom:924.816000pt;}
.y192{bottom:929.440000pt;}
.y88{bottom:931.043840pt;}
.yd8{bottom:932.480000pt;}
.y167{bottom:934.737280pt;}
.ya8{bottom:934.880000pt;}
.y1da{bottom:938.741120pt;}
.y66{bottom:940.960000pt;}
.y1c1{bottom:941.135360pt;}
.ya{bottom:942.565760pt;}
.y10a{bottom:942.725760pt;}
.y13b{bottom:942.730240pt;}
.yaa{bottom:942.880000pt;}
.y43{bottom:948.485760pt;}
.y87{bottom:952.961920pt;}
.y166{bottom:956.493440pt;}
.y1c0{bottom:959.049600pt;}
.y1d9{bottom:960.497280pt;}
.y109{bottom:960.632960pt;}
.y13a{bottom:960.644480pt;}
.ya5{bottom:961.760000pt;}
.y9{bottom:964.483840pt;}
.y191{bottom:965.440000pt;}
.yd7{bottom:965.920000pt;}
.y65{bottom:968.480000pt;}
.ya7{bottom:969.759867pt;}
.y42{bottom:970.403840pt;}
.y228{bottom:974.407680pt;}
.y86{bottom:974.880000pt;}
.y1bf{bottom:976.963840pt;}
.y108{bottom:978.411520pt;}
.y8{bottom:986.401920pt;}
.y41{bottom:992.321920pt;}
.y1be{bottom:995.525760pt;}
.y107{bottom:996.325760pt;}
.y7{bottom:1008.320000pt;}
.y64{bottom:1010.880000pt;}
.y190{bottom:1013.440000pt;}
.y1e{bottom:1014.240000pt;}
.y4{bottom:1033.600000pt;}
.y1{bottom:1050.400000pt;}
.y1a{bottom:1052.960000pt;}
.y3{bottom:1057.920000pt;}
.h26{height:22.372187pt;}
.h2{height:24.320000pt;}
.h19{height:25.758667pt;}
.h11{height:25.760000pt;}
.ha{height:25.920000pt;}
.h24{height:28.501875pt;}
.h21{height:30.613125pt;}
.h14{height:31.134062pt;}
.h22{height:33.252187pt;}
.h30{height:34.669687pt;}
.h1b{height:42.262500pt;}
.h5{height:42.751250pt;}
.h32{height:42.866250pt;}
.h3{height:43.808438pt;}
.h25{height:43.819957pt;}
.h17{height:43.840000pt;}
.h2a{height:44.100000pt;}
.h29{height:44.107680pt;}
.h2e{height:45.827420pt;}
.h2f{height:45.914460pt;}
.h2d{height:45.937500pt;}
.hc{height:46.468750pt;}
.h1a{height:46.593750pt;}
.h1c{height:47.602470pt;}
.h2b{height:47.656230pt;}
.h1d{height:47.676710pt;}
.h28{height:47.694630pt;}
.h1e{height:47.717670pt;}
.h1f{height:47.722790pt;}
.h20{height:47.745830pt;}
.h2c{height:47.763750pt;}
.h27{height:47.791910pt;}
.h31{height:48.545310pt;}
.h4{height:48.558750pt;}
.h23{height:48.579230pt;}
.h10{height:50.628750pt;}
.hf{height:52.781250pt;}
.h9{height:54.368437pt;}
.h15{height:54.514687pt;}
.h13{height:55.031250pt;}
.hd{height:55.341250pt;}
.h16{height:56.732813pt;}
.hb{height:58.085938pt;}
.h18{height:61.760000pt;}
.h12{height:66.221250pt;}
.h6{height:79.171875pt;}
.h7{height:94.240000pt;}
.he{height:102.061250pt;}
.h8{height:185.875000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:7.518667pt;}
.w9{width:14.880000pt;}
.w6{width:182.880000pt;}
.w3{width:214.240000pt;}
.w2{width:214.241333pt;}
.w8{width:319.680000pt;}
.w7{width:319.840000pt;}
.w4{width:793.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:8.480000pt;}
.x7{left:10.080000pt;}
.xf{left:70.880000pt;}
.x1{left:75.520000pt;}
.x1c{left:76.640000pt;}
.x17{left:80.480000pt;}
.x15{left:82.720000pt;}
.x14{left:84.000000pt;}
.x3a{left:84.960000pt;}
.x19{left:90.240000pt;}
.x33{left:91.680000pt;}
.x2f{left:95.520000pt;}
.x25{left:97.280000pt;}
.x1b{left:99.520000pt;}
.x1f{left:101.280000pt;}
.x27{left:103.360000pt;}
.x1a{left:104.800000pt;}
.x22{left:114.400000pt;}
.x35{left:118.880000pt;}
.x18{left:123.520000pt;}
.xc{left:134.880000pt;}
.x3b{left:147.520000pt;}
.x6{left:171.520000pt;}
.x4{left:214.720000pt;}
.x1d{left:217.280000pt;}
.xb{left:219.040000pt;}
.x10{left:222.080000pt;}
.xa{left:254.080000pt;}
.xd{left:262.560000pt;}
.x13{left:265.600000pt;}
.x12{left:266.880000pt;}
.xe{left:277.118080pt;}
.x2c{left:315.680000pt;}
.x8{left:334.560000pt;}
.x2{left:396.800000pt;}
.x2b{left:437.120000pt;}
.x16{left:441.120000pt;}
.x1e{left:451.200000pt;}
.x36{left:455.040000pt;}
.x31{left:472.800000pt;}
.x26{left:482.080000pt;}
.x29{left:496.160000pt;}
.x3{left:504.000000pt;}
.x24{left:506.400000pt;}
.x38{left:514.080000pt;}
.x37{left:516.800000pt;}
.x20{left:521.440000pt;}
.x9{left:526.400000pt;}
.x28{left:528.160000pt;}
.x34{left:530.880000pt;}
.x32{left:533.920000pt;}
.x39{left:537.920000pt;}
.x2d{left:544.160000pt;}
.x30{left:556.320000pt;}
.x21{left:557.920000pt;}
.x2a{left:603.200000pt;}
.x23{left:613.920000pt;}
.x3d{left:624.001920pt;}
.x2e{left:664.000000pt;}
.x3c{left:703.360000pt;}
.x5{left:710.720000pt;}
}




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