
    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_65145ff41288a94868517c97.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_6e700ded4bf76d27a805b57a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.925293;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_4ac20ba23fd9be0b2fa7ec5b.woff2')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_8824a2faf33b40b6f77e54a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_ae21a90b710bb09f8ba782e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730957;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_6339e027cf0663545113b39f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_acc661f82640a364882632d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926758;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_235f3d65e888df7396eec9e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8f8cc97d3d85a502d2ec7ab6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091309;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_88e9a2052a9d9e7f8731572a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a90f93d0e7237a08931910e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bf414476e8d43522eaf33ef5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3efb5959b639ace269772281.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682129;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);}
.v2{vertical-align:-15.442200px;}
.v3{vertical-align:-4.054800px;}
.v5{vertical-align:-2.352000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.620000px;}
.v7{vertical-align:2.940000px;}
.v6{vertical-align:15.956400px;}
.v4{vertical-align:19.945200px;}
.v1{vertical-align:21.619200px;}
.ls69{letter-spacing:-7.740000px;}
.ls6a{letter-spacing:-6.360000px;}
.ls42{letter-spacing:-6.192000px;}
.ls68{letter-spacing:-3.180000px;}
.ls4a{letter-spacing:-1.440000px;}
.ls34{letter-spacing:-0.960000px;}
.lsf{letter-spacing:-0.780000px;}
.ls48{letter-spacing:-0.540000px;}
.ls49{letter-spacing:-0.360000px;}
.ls5f{letter-spacing:-0.300000px;}
.ls32{letter-spacing:-0.240000px;}
.ls3c{letter-spacing:-0.180000px;}
.ls2a{letter-spacing:-0.120000px;}
.ls8a{letter-spacing:-0.096000px;}
.ls10{letter-spacing:-0.060000px;}
.ls3f{letter-spacing:-0.036000px;}
.lse{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004200px;}
.ls1{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls5c{letter-spacing:0.048000px;}
.ls15{letter-spacing:0.060000px;}
.ls44{letter-spacing:0.072000px;}
.ls5d{letter-spacing:0.096000px;}
.ls2f{letter-spacing:0.120000px;}
.ls50{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls7c{letter-spacing:0.192000px;}
.lsb{letter-spacing:0.240000px;}
.ls36{letter-spacing:0.252000px;}
.ls72{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.300000px;}
.ls71{letter-spacing:0.336000px;}
.ls21{letter-spacing:0.360000px;}
.ls75{letter-spacing:0.384000px;}
.ls28{letter-spacing:0.420000px;}
.ls3b{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.480000px;}
.ls78{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.540000px;}
.ls57{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.600000px;}
.ls77{letter-spacing:0.624000px;}
.lsa{letter-spacing:0.660000px;}
.ls40{letter-spacing:0.672000px;}
.ls35{letter-spacing:0.720000px;}
.ls6e{letter-spacing:0.768000px;}
.ls2d{letter-spacing:0.780000px;}
.ls18{letter-spacing:0.840000px;}
.ls6d{letter-spacing:0.864000px;}
.ls17{letter-spacing:0.900000px;}
.ls70{letter-spacing:0.912000px;}
.ls1f{letter-spacing:0.960000px;}
.ls3d{letter-spacing:0.972000px;}
.ls85{letter-spacing:1.008000px;}
.ls12{letter-spacing:1.020000px;}
.ls25{letter-spacing:1.080000px;}
.ls7e{letter-spacing:1.104000px;}
.ls5{letter-spacing:1.140000px;}
.ls5b{letter-spacing:1.152000px;}
.ls46{letter-spacing:1.200000px;}
.ls5e{letter-spacing:1.224000px;}
.ls65{letter-spacing:1.231800px;}
.ls6c{letter-spacing:1.248000px;}
.ls1d{letter-spacing:1.260000px;}
.ls7d{letter-spacing:1.296000px;}
.ls39{letter-spacing:1.320000px;}
.ls3e{letter-spacing:1.332000px;}
.ls89{letter-spacing:1.344000px;}
.ls22{letter-spacing:1.380000px;}
.ls73{letter-spacing:1.392000px;}
.ls20{letter-spacing:1.440000px;}
.ls83{letter-spacing:1.488000px;}
.ls1e{letter-spacing:1.500000px;}
.ls84{letter-spacing:1.536000px;}
.ls8{letter-spacing:1.560000px;}
.ls74{letter-spacing:1.584000px;}
.ls38{letter-spacing:1.620000px;}
.ls76{letter-spacing:1.632000px;}
.ls7{letter-spacing:1.680000px;}
.ls33{letter-spacing:1.740000px;}
.ls7f{letter-spacing:1.776000px;}
.ls45{letter-spacing:1.800000px;}
.ls82{letter-spacing:1.824000px;}
.ls11{letter-spacing:1.860000px;}
.ls64{letter-spacing:1.895400px;}
.ls62{letter-spacing:1.920000px;}
.ls88{letter-spacing:1.968000px;}
.ls27{letter-spacing:1.980000px;}
.ls23{letter-spacing:2.040000px;}
.ls8b{letter-spacing:2.064000px;}
.ls1b{letter-spacing:2.100000px;}
.ls6f{letter-spacing:2.112000px;}
.ls3a{letter-spacing:2.160000px;}
.ls56{letter-spacing:2.196000px;}
.ls16{letter-spacing:2.220000px;}
.ls2c{letter-spacing:2.280000px;}
.ls86{letter-spacing:2.304000px;}
.ls4{letter-spacing:2.340000px;}
.ls37{letter-spacing:2.400000px;}
.ls14{letter-spacing:2.460000px;}
.lsd{letter-spacing:2.520000px;}
.ls31{letter-spacing:2.580000px;}
.ls79{letter-spacing:2.592000px;}
.ls24{letter-spacing:2.640000px;}
.ls63{letter-spacing:2.700000px;}
.ls51{letter-spacing:2.760000px;}
.ls7a{letter-spacing:2.784000px;}
.ls66{letter-spacing:2.820000px;}
.ls58{letter-spacing:2.880000px;}
.ls3{letter-spacing:2.940000px;}
.ls80{letter-spacing:2.976000px;}
.ls2e{letter-spacing:3.000000px;}
.ls67{letter-spacing:3.060000px;}
.ls2b{letter-spacing:3.120000px;}
.ls19{letter-spacing:3.180000px;}
.ls81{letter-spacing:3.216000px;}
.ls59{letter-spacing:3.240000px;}
.ls6{letter-spacing:3.300000px;}
.ls1c{letter-spacing:3.480000px;}
.ls30{letter-spacing:3.600000px;}
.ls53{letter-spacing:3.660000px;}
.ls7b{letter-spacing:3.744000px;}
.ls61{letter-spacing:3.780000px;}
.ls4c{letter-spacing:3.840000px;}
.ls52{letter-spacing:3.900000px;}
.ls87{letter-spacing:4.032000px;}
.ls4d{letter-spacing:4.140000px;}
.ls29{letter-spacing:4.260000px;}
.ls4e{letter-spacing:4.560000px;}
.ls60{letter-spacing:4.680000px;}
.ls6b{letter-spacing:5.100000px;}
.ls5a{letter-spacing:6.000000px;}
.ls43{letter-spacing:6.660000px;}
.ls4f{letter-spacing:7.620000px;}
.ls4b{letter-spacing:15.840000px;}
.ls54{letter-spacing:245.426400px;}
.ls41{letter-spacing:381.120000px;}
.ls55{letter-spacing:521.424000px;}
.ls47{letter-spacing:626.304000px;}
.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;}
}
.ws59{word-spacing:-393.120000px;}
.wsc1{word-spacing:-60.000000px;}
.ws8e{word-spacing:-48.000000px;}
.ws8d{word-spacing:-17.640000px;}
.wsc3{word-spacing:-17.400000px;}
.ws1{word-spacing:-16.680000px;}
.ws2{word-spacing:-16.620000px;}
.wsc0{word-spacing:-16.560000px;}
.wsbf{word-spacing:-16.440000px;}
.wsbe{word-spacing:-16.260000px;}
.ws97{word-spacing:-16.140000px;}
.ws3a{word-spacing:-15.720000px;}
.wsc2{word-spacing:-15.600000px;}
.wsd6{word-spacing:-15.216000px;}
.ws3b{word-spacing:-15.180000px;}
.ws37{word-spacing:-15.120000px;}
.wsae{word-spacing:-14.940000px;}
.ws39{word-spacing:-14.820000px;}
.ws7f{word-spacing:-14.460000px;}
.wsf6{word-spacing:-14.304000px;}
.wsd2{word-spacing:-13.584000px;}
.wsd{word-spacing:-13.344000px;}
.wsd5{word-spacing:-13.296000px;}
.wsd4{word-spacing:-12.912000px;}
.wsd1{word-spacing:-12.768000px;}
.wsd8{word-spacing:-12.720000px;}
.wsd3{word-spacing:-12.624000px;}
.wsf7{word-spacing:-12.576000px;}
.wsd7{word-spacing:-12.528000px;}
.wsb0{word-spacing:-12.480000px;}
.wsaf{word-spacing:-12.240000px;}
.wsb1{word-spacing:-12.048000px;}
.ws4d{word-spacing:-12.000000px;}
.ws98{word-spacing:-11.196000px;}
.ws0{word-spacing:-10.508400px;}
.ws3d{word-spacing:-10.332000px;}
.wsad{word-spacing:-10.224000px;}
.ws3c{word-spacing:-9.972000px;}
.ws99{word-spacing:-9.576000px;}
.ws38{word-spacing:-9.432000px;}
.ws36{word-spacing:-9.252000px;}
.ws80{word-spacing:-9.072000px;}
.wsc{word-spacing:-9.000000px;}
.ws3e{word-spacing:-8.964000px;}
.ws8f{word-spacing:-7.920000px;}
.ws5d{word-spacing:-5.808000px;}
.wsc5{word-spacing:-4.680000px;}
.ws91{word-spacing:-4.560000px;}
.ws28{word-spacing:-4.260000px;}
.wsfc{word-spacing:-4.032000px;}
.wsaa{word-spacing:-3.660000px;}
.ws32{word-spacing:-3.600000px;}
.wsb2{word-spacing:-3.480000px;}
.wsb8{word-spacing:-3.240000px;}
.wsef{word-spacing:-3.216000px;}
.ws25{word-spacing:-3.180000px;}
.ws1b{word-spacing:-3.120000px;}
.ws94{word-spacing:-3.060000px;}
.ws2e{word-spacing:-3.000000px;}
.wsf4{word-spacing:-2.976000px;}
.ws41{word-spacing:-2.940000px;}
.ws4{word-spacing:-2.886000px;}
.wse7{word-spacing:-2.784000px;}
.wsa7{word-spacing:-2.760000px;}
.wsda{word-spacing:-2.700000px;}
.ws95{word-spacing:-2.640000px;}
.wse6{word-spacing:-2.592000px;}
.ws33{word-spacing:-2.580000px;}
.wsa{word-spacing:-2.520000px;}
.ws10{word-spacing:-2.460000px;}
.ws43{word-spacing:-2.400000px;}
.ws2b{word-spacing:-2.340000px;}
.wsfb{word-spacing:-2.304000px;}
.ws22{word-spacing:-2.280000px;}
.ws46{word-spacing:-2.220000px;}
.wsc8{word-spacing:-2.160000px;}
.wsdd{word-spacing:-2.112000px;}
.wscd{word-spacing:-2.100000px;}
.ws100{word-spacing:-2.064000px;}
.ws1e{word-spacing:-2.040000px;}
.wsc7{word-spacing:-1.980000px;}
.wsfe{word-spacing:-1.968000px;}
.wsc6{word-spacing:-1.920000px;}
.ws1d{word-spacing:-1.860000px;}
.ws88{word-spacing:-1.800000px;}
.ws2d{word-spacing:-1.740000px;}
.ws7{word-spacing:-1.680000px;}
.wsee{word-spacing:-1.632000px;}
.ws44{word-spacing:-1.620000px;}
.wse0{word-spacing:-1.584000px;}
.ws1f{word-spacing:-1.560000px;}
.wsf5{word-spacing:-1.536000px;}
.ws1c{word-spacing:-1.500000px;}
.wsf2{word-spacing:-1.488000px;}
.ws18{word-spacing:-1.440000px;}
.wse8{word-spacing:-1.392000px;}
.ws47{word-spacing:-1.380000px;}
.ws101{word-spacing:-1.344000px;}
.ws29{word-spacing:-1.320000px;}
.wsec{word-spacing:-1.296000px;}
.ws16{word-spacing:-1.260000px;}
.wsf1{word-spacing:-1.248000px;}
.ws8a{word-spacing:-1.200000px;}
.wsba{word-spacing:-1.152000px;}
.wsa8{word-spacing:-1.140000px;}
.wsed{word-spacing:-1.104000px;}
.ws20{word-spacing:-1.080000px;}
.ws24{word-spacing:-1.020000px;}
.wsf9{word-spacing:-1.008000px;}
.ws42{word-spacing:-0.960000px;}
.wse5{word-spacing:-0.912000px;}
.ws21{word-spacing:-0.900000px;}
.wsdb{word-spacing:-0.864000px;}
.ws92{word-spacing:-0.840000px;}
.ws2a{word-spacing:-0.780000px;}
.wsdc{word-spacing:-0.768000px;}
.ws3f{word-spacing:-0.720000px;}
.wsea{word-spacing:-0.672000px;}
.ws8{word-spacing:-0.660000px;}
.wse4{word-spacing:-0.624000px;}
.ws8b{word-spacing:-0.600000px;}
.wsfd{word-spacing:-0.576000px;}
.wsf0{word-spacing:-0.528000px;}
.ws27{word-spacing:-0.480000px;}
.wse3{word-spacing:-0.432000px;}
.ws26{word-spacing:-0.420000px;}
.wse1{word-spacing:-0.384000px;}
.ws34{word-spacing:-0.360000px;}
.wsde{word-spacing:-0.336000px;}
.ws40{word-spacing:-0.300000px;}
.wsdf{word-spacing:-0.288000px;}
.ws15{word-spacing:-0.240000px;}
.wseb{word-spacing:-0.192000px;}
.wsf{word-spacing:-0.180000px;}
.ws96{word-spacing:-0.144000px;}
.ws30{word-spacing:-0.120000px;}
.wsbc{word-spacing:-0.096000px;}
.ws12{word-spacing:-0.060000px;}
.wse2{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws14{word-spacing:0.060000px;}
.wsf8{word-spacing:0.096000px;}
.wsb{word-spacing:0.120000px;}
.ws5b{word-spacing:0.144000px;}
.ws45{word-spacing:0.180000px;}
.ws2c{word-spacing:0.240000px;}
.ws89{word-spacing:0.360000px;}
.ws87{word-spacing:0.540000px;}
.wsb9{word-spacing:0.672000px;}
.wsfa{word-spacing:0.912000px;}
.ws2f{word-spacing:0.960000px;}
.ws11{word-spacing:1.020000px;}
.wsac{word-spacing:1.080000px;}
.wsd0{word-spacing:1.260000px;}
.ws23{word-spacing:1.440000px;}
.ws8c{word-spacing:1.776000px;}
.wsab{word-spacing:1.800000px;}
.wsb4{word-spacing:2.100000px;}
.wscf{word-spacing:2.220000px;}
.wsbd{word-spacing:2.256000px;}
.ws1a{word-spacing:2.460000px;}
.wsff{word-spacing:2.496000px;}
.wse{word-spacing:2.520000px;}
.ws90{word-spacing:2.580000px;}
.wsa9{word-spacing:2.760000px;}
.ws19{word-spacing:2.820000px;}
.wsb6{word-spacing:3.060000px;}
.wscc{word-spacing:3.240000px;}
.ws35{word-spacing:3.264000px;}
.ws49{word-spacing:3.420000px;}
.wsd9{word-spacing:3.480000px;}
.ws48{word-spacing:3.600000px;}
.wsc9{word-spacing:3.720000px;}
.wsf3{word-spacing:3.744000px;}
.ws31{word-spacing:3.780000px;}
.wse9{word-spacing:3.792000px;}
.ws4c{word-spacing:3.936000px;}
.wsbb{word-spacing:3.984000px;}
.wsb5{word-spacing:4.020000px;}
.ws13{word-spacing:4.200000px;}
.ws17{word-spacing:4.260000px;}
.ws93{word-spacing:4.320000px;}
.wsb3{word-spacing:4.380000px;}
.ws9{word-spacing:4.440000px;}
.wsb7{word-spacing:4.500000px;}
.wsa6{word-spacing:4.560000px;}
.wscb{word-spacing:4.860000px;}
.ws6{word-spacing:4.920000px;}
.ws5{word-spacing:4.980000px;}
.ws4a{word-spacing:5.220000px;}
.wsce{word-spacing:6.360000px;}
.ws4b{word-spacing:7.020000px;}
.wsca{word-spacing:7.740000px;}
.wsc4{word-spacing:9.360000px;}
.wsa3{word-spacing:215.616000px;}
.ws9d{word-spacing:266.160000px;}
.ws9c{word-spacing:278.160000px;}
.ws9a{word-spacing:279.648000px;}
.wsa4{word-spacing:305.184000px;}
.ws6d{word-spacing:319.824000px;}
.ws7e{word-spacing:319.872000px;}
.ws9e{word-spacing:323.184000px;}
.wsa5{word-spacing:329.184000px;}
.ws9f{word-spacing:329.280000px;}
.ws63{word-spacing:330.336000px;}
.ws6b{word-spacing:337.200000px;}
.ws76{word-spacing:339.840000px;}
.ws50{word-spacing:341.184000px;}
.ws7d{word-spacing:342.480000px;}
.ws53{word-spacing:342.528000px;}
.ws5e{word-spacing:343.392000px;}
.ws7c{word-spacing:343.824000px;}
.ws77{word-spacing:343.872000px;}
.ws62{word-spacing:344.736000px;}
.ws7b{word-spacing:345.168000px;}
.wsa0{word-spacing:345.264000px;}
.ws4f{word-spacing:346.080000px;}
.ws56{word-spacing:347.856000px;}
.ws74{word-spacing:348.720000px;}
.ws5a{word-spacing:349.152000px;}
.ws65{word-spacing:349.200000px;}
.ws66{word-spacing:350.064000px;}
.ws5c{word-spacing:350.496000px;}
.ws6e{word-spacing:351.792000px;}
.ws54{word-spacing:351.840000px;}
.ws72{word-spacing:352.704000px;}
.ws58{word-spacing:353.184000px;}
.ws64{word-spacing:355.584000px;}
.ws69{word-spacing:355.824000px;}
.ws71{word-spacing:357.120000px;}
.ws70{word-spacing:357.168000px;}
.ws6f{word-spacing:358.464000px;}
.ws51{word-spacing:369.120000px;}
.ws9b{word-spacing:373.436400px;}
.wsa2{word-spacing:401.280000px;}
.wsa1{word-spacing:403.056000px;}
.ws83{word-spacing:560.304000px;}
.ws82{word-spacing:572.304000px;}
.ws84{word-spacing:573.216000px;}
.ws86{word-spacing:584.304000px;}
.ws85{word-spacing:602.304000px;}
.ws55{word-spacing:749.376000px;}
.ws6a{word-spacing:750.720000px;}
.ws6c{word-spacing:752.928000px;}
.ws7a{word-spacing:753.360000px;}
.ws4e{word-spacing:756.048000px;}
.ws57{word-spacing:757.344000px;}
.ws61{word-spacing:758.688000px;}
.ws75{word-spacing:759.552000px;}
.ws78{word-spacing:760.032000px;}
.ws79{word-spacing:760.896000px;}
.ws60{word-spacing:761.328000px;}
.ws5f{word-spacing:762.672000px;}
.ws73{word-spacing:769.296000px;}
.ws67{word-spacing:777.312000px;}
.ws81{word-spacing:1092.432000px;}
.ws68{word-spacing:1165.536000px;}
.ws52{word-spacing:1168.176000px;}
._c{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._1e{margin-left:-381.120000px;}
._74{margin-left:-8.580000px;}
._d{margin-left:-7.020000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.250400px;}
._9{width:1.290000px;}
._5{width:2.310000px;}
._a{width:3.360000px;}
._8{width:4.380000px;}
._6{width:5.580000px;}
._4{width:6.660000px;}
._7{width:8.340000px;}
._b{width:9.780000px;}
._12{width:22.512000px;}
._11{width:36.960000px;}
._5c{width:188.984400px;}
._13{width:271.062000px;}
._5a{width:278.160000px;}
._5e{width:279.606000px;}
._6b{width:302.496000px;}
._4c{width:309.072000px;}
._46{width:310.512000px;}
._6f{width:317.184000px;}
._4a{width:333.168000px;}
._57{width:334.272000px;}
._65{width:341.280000px;}
._62{width:343.542000px;}
._5f{width:355.206000px;}
._64{width:357.264000px;}
._6d{width:359.184000px;}
._63{width:364.605600px;}
._2a{width:381.120000px;}
._69{width:413.280000px;}
._26{width:445.068000px;}
._10{width:471.552000px;}
._71{width:509.136000px;}
._59{width:540.976800px;}
._3a{width:545.726400px;}
._68{width:552.152400px;}
._4b{width:601.790400px;}
._1f{width:611.328000px;}
._48{width:615.312000px;}
._3d{width:628.374000px;}
._47{width:635.376000px;}
._44{width:645.750000px;}
._43{width:646.998000px;}
._3e{width:648.768000px;}
._67{width:660.000000px;}
._17{width:663.416400px;}
._3b{width:669.560400px;}
._27{width:670.848000px;}
._3c{width:677.568000px;}
._3f{width:680.454000px;}
._35{width:682.572000px;}
._32{width:686.502000px;}
._19{width:690.000000px;}
._29{width:704.736000px;}
._24{width:707.376000px;}
._66{width:709.392000px;}
._4d{width:717.744000px;}
._2d{width:720.344400px;}
._4f{width:731.040000px;}
._51{width:732.384000px;}
._55{width:750.348000px;}
._33{width:760.704000px;}
._22{width:763.692000px;}
._1d{width:770.016000px;}
._60{width:772.182000px;}
._21{width:779.726400px;}
._4e{width:785.712000px;}
._42{width:790.128000px;}
._1b{width:794.072400px;}
._1c{width:799.014000px;}
._50{width:808.416000px;}
._40{width:814.080000px;}
._52{width:815.760000px;}
._28{width:825.936000px;}
._18{width:831.408000px;}
._70{width:834.432000px;}
._14{width:840.876000px;}
._36{width:845.582400px;}
._2c{width:852.720000px;}
._2e{width:855.368400px;}
._15{width:858.000000px;}
._23{width:861.598800px;}
._2f{width:867.360000px;}
._38{width:870.008400px;}
._16{width:873.606000px;}
._30{width:875.328000px;}
._1a{width:879.360000px;}
._f{width:881.424000px;}
._31{width:885.984000px;}
._39{width:889.118400px;}
._25{width:894.404400px;}
._20{width:898.380000px;}
._41{width:900.876000px;}
._54{width:917.712000px;}
._37{width:938.226600px;}
._56{width:950.984400px;}
._2b{width:954.048000px;}
._5b{width:959.188800px;}
._53{width:961.728000px;}
._45{width:976.704000px;}
._49{width:1026.048000px;}
._34{width:1045.968000px;}
._6e{width:1104.960000px;}
._5d{width:1271.190000px;}
._61{width:1311.702000px;}
._58{width:1402.512000px;}
._6c{width:1514.208000px;}
._6a{width:1642.848000px;}
._73{width:1976.688000px;}
._72{width:2202.624000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fsb{font-size:28.800000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.y1de{bottom:80.263500px;}
.y123{bottom:83.013300px;}
.y92{bottom:83.035200px;}
.y15e{bottom:83.047200px;}
.y173{bottom:83.628600px;}
.y63{bottom:83.770350px;}
.yb6{bottom:83.912100px;}
.y71{bottom:83.920350px;}
.yb9{bottom:84.298950px;}
.y133{bottom:85.456500px;}
.y19d{bottom:86.121900px;}
.y20{bottom:88.026750px;}
.y155{bottom:92.666700px;}
.y1dd{bottom:95.263500px;}
.ycb{bottom:97.027200px;}
.y91{bottom:98.779200px;}
.y15d{bottom:98.791200px;}
.y122{bottom:99.261300px;}
.yb8{bottom:100.042950px;}
.y19c{bottom:101.121900px;}
.y132{bottom:101.200500px;}
.yff{bottom:101.484600px;}
.y172{bottom:101.628600px;}
.y62{bottom:101.770350px;}
.yb5{bottom:101.912100px;}
.y70{bottom:101.920350px;}
.y1f{bottom:103.023000px;}
.y154{bottom:108.914700px;}
.y1dc{bottom:110.263500px;}
.yca{bottom:114.127200px;}
.y15c{bottom:114.535200px;}
.y121{bottom:115.509300px;}
.yb7{bottom:115.786950px;}
.y19b{bottom:116.121900px;}
.y131{bottom:116.944500px;}
.y171{bottom:119.628600px;}
.y61{bottom:119.770350px;}
.yb4{bottom:119.912100px;}
.y6f{bottom:119.920350px;}
.y153{bottom:125.162700px;}
.y1db{bottom:125.263500px;}
.yfe{bottom:126.996600px;}
.y15b{bottom:130.303200px;}
.y19a{bottom:131.121900px;}
.yc9{bottom:131.227200px;}
.y120{bottom:131.757300px;}
.y130{bottom:132.688500px;}
.y170{bottom:137.223600px;}
.y60{bottom:137.770350px;}
.yb3{bottom:137.912100px;}
.y6e{bottom:137.920350px;}
.y1da{bottom:140.263500px;}
.y152{bottom:141.410700px;}
.yfd{bottom:144.096600px;}
.y15a{bottom:146.047200px;}
.y199{bottom:146.121900px;}
.y11f{bottom:148.005300px;}
.yc8{bottom:148.327200px;}
.y1d9{bottom:155.263500px;}
.y5f{bottom:155.770350px;}
.yb2{bottom:155.912100px;}
.y6d{bottom:155.920350px;}
.y151{bottom:157.658700px;}
.y198{bottom:161.121900px;}
.yfc{bottom:161.196600px;}
.y159{bottom:161.791200px;}
.y11e{bottom:164.253300px;}
.yc7{bottom:165.427200px;}
.y28{bottom:168.067800px;}
.y1d8{bottom:170.263500px;}
.y16f{bottom:173.628600px;}
.y5e{bottom:173.770350px;}
.y150{bottom:173.906700px;}
.yb1{bottom:173.912100px;}
.y6c{bottom:173.920350px;}
.y197{bottom:176.121900px;}
.y158{bottom:177.535200px;}
.yfb{bottom:178.296600px;}
.y11d{bottom:180.501300px;}
.yc6{bottom:182.527200px;}
.y1d7{bottom:185.263500px;}
.y27{bottom:186.067800px;}
.y160{bottom:191.035350px;}
.y196{bottom:191.121900px;}
.y16e{bottom:191.628600px;}
.y5d{bottom:191.770350px;}
.yb0{bottom:191.912100px;}
.y6b{bottom:191.920350px;}
.y157{bottom:193.279200px;}
.yfa{bottom:195.396600px;}
.y11c{bottom:196.749300px;}
.yc5{bottom:199.627200px;}
.y1d6{bottom:200.263500px;}
.y26{bottom:204.067800px;}
.y14f{bottom:205.418700px;}
.y195{bottom:206.121900px;}
.y97{bottom:209.515350px;}
.y16d{bottom:209.628600px;}
.y5c{bottom:209.770350px;}
.yaf{bottom:209.912100px;}
.y6a{bottom:209.920350px;}
.yf9{bottom:212.496600px;}
.y11b{bottom:212.997300px;}
.y1d5{bottom:215.263500px;}
.yc4{bottom:216.727200px;}
.y194{bottom:221.121900px;}
.y25{bottom:222.067800px;}
.y16c{bottom:227.628600px;}
.y5b{bottom:227.770350px;}
.yae{bottom:227.912100px;}
.y69{bottom:227.920350px;}
.y11a{bottom:229.245300px;}
.yf8{bottom:229.596600px;}
.y1d4{bottom:230.263500px;}
.yc3{bottom:233.827200px;}
.y193{bottom:236.121900px;}
.y24{bottom:240.067800px;}
.y14e{bottom:240.313800px;}
.y1d3{bottom:245.263500px;}
.y119{bottom:245.493300px;}
.y16b{bottom:245.628600px;}
.y5a{bottom:245.770350px;}
.yad{bottom:245.912100px;}
.y68{bottom:245.920350px;}
.yf7{bottom:246.696600px;}
.yc2{bottom:250.927200px;}
.y192{bottom:251.121900px;}
.y23{bottom:258.067800px;}
.y1d2{bottom:260.263500px;}
.y118{bottom:261.741300px;}
.y16a{bottom:263.628600px;}
.y59{bottom:263.770350px;}
.yf6{bottom:263.796600px;}
.yac{bottom:263.912100px;}
.y67{bottom:263.920350px;}
.y191{bottom:266.121900px;}
.yc1{bottom:268.027200px;}
.y1d1{bottom:275.263500px;}
.y22{bottom:276.067800px;}
.yf5{bottom:280.896600px;}
.y190{bottom:281.121900px;}
.y169{bottom:281.628600px;}
.y58{bottom:281.770350px;}
.yab{bottom:281.912100px;}
.yc0{bottom:285.127200px;}
.y14d{bottom:286.426350px;}
.y1d0{bottom:290.263500px;}
.y117{bottom:290.745300px;}
.y2a{bottom:294.067800px;}
.y18f{bottom:296.121900px;}
.yf4{bottom:297.996600px;}
.y66{bottom:299.515350px;}
.y168{bottom:299.628600px;}
.y57{bottom:299.770350px;}
.yaa{bottom:299.912100px;}
.y14c{bottom:302.926350px;}
.y1cf{bottom:305.263500px;}
.y18e{bottom:311.121900px;}
.y21{bottom:311.662800px;}
.y29{bottom:312.067800px;}
.ybf{bottom:314.131200px;}
.yf3{bottom:315.096600px;}
.y167{bottom:317.628600px;}
.y56{bottom:317.770350px;}
.ya9{bottom:317.912100px;}
.y116{bottom:319.749300px;}
.y1ce{bottom:320.263500px;}
.y18d{bottom:326.121900px;}
.y14b{bottom:328.438350px;}
.yf2{bottom:332.196600px;}
.y1cd{bottom:335.263500px;}
.y166{bottom:335.628600px;}
.y55{bottom:335.770350px;}
.ya8{bottom:335.912100px;}
.y18c{bottom:341.121900px;}
.ybe{bottom:343.135200px;}
.y14a{bottom:344.686350px;}
.yf1{bottom:349.296600px;}
.y1cc{bottom:350.263500px;}
.y115{bottom:352.140450px;}
.y165{bottom:353.628600px;}
.y54{bottom:353.770350px;}
.ya7{bottom:353.912100px;}
.y18b{bottom:356.121900px;}
.y149{bottom:360.934350px;}
.y1cb{bottom:365.263500px;}
.yf0{bottom:366.396600px;}
.y18a{bottom:371.121900px;}
.y164{bottom:371.628600px;}
.y53{bottom:371.770350px;}
.ya6{bottom:371.912100px;}
.ybd{bottom:375.526350px;}
.y148{bottom:377.182350px;}
.y1ca{bottom:380.263500px;}
.yef{bottom:383.496600px;}
.y189{bottom:386.121900px;}
.y163{bottom:389.628600px;}
.y52{bottom:389.770350px;}
.ya5{bottom:389.912100px;}
.y1e{bottom:390.064200px;}
.y147{bottom:393.430350px;}
.y1c9{bottom:395.263500px;}
.y114{bottom:395.700150px;}
.yee{bottom:400.596600px;}
.y188{bottom:401.121900px;}
.y162{bottom:407.635350px;}
.y51{bottom:407.770350px;}
.ya4{bottom:407.912100px;}
.y146{bottom:409.678350px;}
.y1c8{bottom:410.263500px;}
.y113{bottom:411.444150px;}
.y135{bottom:415.011600px;}
.y187{bottom:416.121900px;}
.y1d{bottom:417.409200px;}
.yed{bottom:417.696600px;}
.ybc{bottom:424.456500px;}
.y1c7{bottom:425.263500px;}
.y50{bottom:425.770350px;}
.ya3{bottom:425.912100px;}
.y186{bottom:431.121900px;}
.yec{bottom:434.796600px;}
.y1c{bottom:435.409200px;}
.ybb{bottom:440.200500px;}
.y1c6{bottom:440.263500px;}
.y145{bottom:441.190350px;}
.y161{bottom:443.230350px;}
.y4f{bottom:443.770350px;}
.ya2{bottom:443.912100px;}
.y185{bottom:446.121900px;}
.yeb{bottom:451.896600px;}
.y1b{bottom:453.409200px;}
.y1c5{bottom:455.263500px;}
.yba{bottom:455.944500px;}
.y184{bottom:461.121900px;}
.y4e{bottom:461.770350px;}
.ya1{bottom:461.912100px;}
.yea{bottom:468.996600px;}
.y1c4{bottom:470.263500px;}
.y1a{bottom:471.409200px;}
.y144{bottom:476.085450px;}
.y183{bottom:476.121900px;}
.y4d{bottom:479.770350px;}
.ya0{bottom:479.920350px;}
.y1c3{bottom:485.263500px;}
.ye9{bottom:486.096600px;}
.y19{bottom:489.409200px;}
.y182{bottom:491.121900px;}
.y4c{bottom:497.770350px;}
.y9f{bottom:497.920350px;}
.y1c2{bottom:500.265900px;}
.ye8{bottom:503.261400px;}
.y181{bottom:506.121900px;}
.y18{bottom:507.409200px;}
.y1c1{bottom:515.265900px;}
.y4b{bottom:515.770350px;}
.y9e{bottom:515.920350px;}
.ye7{bottom:520.361400px;}
.y143{bottom:521.048550px;}
.y180{bottom:521.121900px;}
.y17{bottom:525.409200px;}
.y93{bottom:527.901300px;}
.y1c0{bottom:530.265900px;}
.y4a{bottom:533.770350px;}
.y9d{bottom:533.920350px;}
.y17f{bottom:536.121900px;}
.ye6{bottom:537.461400px;}
.y16{bottom:543.409200px;}
.y1bf{bottom:545.265900px;}
.y142{bottom:546.560550px;}
.y17e{bottom:551.121900px;}
.y49{bottom:551.770350px;}
.y9c{bottom:551.920350px;}
.ye5{bottom:554.561400px;}
.y1be{bottom:560.265900px;}
.y15{bottom:561.409200px;}
.y141{bottom:562.808550px;}
.y17d{bottom:566.121900px;}
.y48{bottom:569.770350px;}
.y9b{bottom:569.920350px;}
.ye4{bottom:571.661400px;}
.y1bd{bottom:575.265900px;}
.y140{bottom:579.056550px;}
.y14{bottom:579.409200px;}
.y17c{bottom:581.121900px;}
.y47{bottom:587.770350px;}
.y9a{bottom:587.920350px;}
.ye3{bottom:588.761400px;}
.y1bc{bottom:590.265900px;}
.y13f{bottom:595.304550px;}
.y17b{bottom:596.121900px;}
.y13{bottom:597.409200px;}
.y1bb{bottom:605.265900px;}
.y46{bottom:605.770350px;}
.ye2{bottom:605.861400px;}
.y99{bottom:605.920350px;}
.y17a{bottom:611.121900px;}
.y13e{bottom:611.556300px;}
.y12{bottom:615.409200px;}
.y1ba{bottom:620.265900px;}
.ye1{bottom:622.961400px;}
.y45{bottom:623.770350px;}
.y90{bottom:623.785350px;}
.y78{bottom:623.920350px;}
.y179{bottom:626.121900px;}
.y13d{bottom:627.804300px;}
.y11{bottom:633.409200px;}
.y1b9{bottom:635.265900px;}
.ye0{bottom:640.061400px;}
.y44{bottom:641.770350px;}
.y8f{bottom:641.785350px;}
.y77{bottom:641.920350px;}
.y1b8{bottom:650.265900px;}
.y10{bottom:651.409200px;}
.ydf{bottom:657.161400px;}
.y178{bottom:659.230350px;}
.y13c{bottom:659.316300px;}
.y43{bottom:659.770350px;}
.y8e{bottom:659.785350px;}
.y76{bottom:659.920350px;}
.y1b7{bottom:665.265900px;}
.yf{bottom:669.409200px;}
.yde{bottom:674.261400px;}
.y42{bottom:677.770350px;}
.y8d{bottom:677.785350px;}
.y75{bottom:677.920350px;}
.y1b6{bottom:680.265900px;}
.ye{bottom:687.409200px;}
.ydd{bottom:691.361400px;}
.y13b{bottom:694.210350px;}
.y1b5{bottom:695.265900px;}
.y41{bottom:695.770350px;}
.y8c{bottom:695.785350px;}
.y74{bottom:695.920350px;}
.y136{bottom:697.443600px;}
.y134{bottom:697.448550px;}
.ydc{bottom:708.461400px;}
.y1b4{bottom:710.265900px;}
.y40{bottom:713.770350px;}
.y8b{bottom:713.785350px;}
.y1b3{bottom:725.265900px;}
.ydb{bottom:725.561400px;}
.y96{bottom:731.365350px;}
.y73{bottom:731.515350px;}
.y3f{bottom:731.770350px;}
.y8a{bottom:731.785350px;}
.y12f{bottom:731.920350px;}
.yd{bottom:732.568500px;}
.y1b2{bottom:740.265900px;}
.yda{bottom:742.661400px;}
.yc{bottom:745.018500px;}
.y98{bottom:749.515350px;}
.y13a{bottom:749.635350px;}
.y3e{bottom:749.770350px;}
.y89{bottom:749.785350px;}
.y12e{bottom:749.920350px;}
.y1b1{bottom:755.265900px;}
.yd9{bottom:759.761400px;}
.y95{bottom:767.230350px;}
.y177{bottom:767.365350px;}
.y139{bottom:767.635350px;}
.y3d{bottom:767.770350px;}
.y88{bottom:767.785350px;}
.y12d{bottom:767.920350px;}
.y1b0{bottom:770.265900px;}
.yd8{bottom:776.861400px;}
.yb{bottom:780.594150px;}
.y1af{bottom:785.265900px;}
.y3c{bottom:785.770350px;}
.y112{bottom:785.777100px;}
.y87{bottom:785.785350px;}
.y103{bottom:785.920350px;}
.yd7{bottom:793.961400px;}
.ya{bottom:794.094150px;}
.y1f0{bottom:800.263500px;}
.y1ae{bottom:800.265900px;}
.y138{bottom:803.230350px;}
.y9{bottom:803.733600px;}
.y3b{bottom:803.770350px;}
.y111{bottom:803.777100px;}
.y86{bottom:803.785350px;}
.y102{bottom:803.920350px;}
.yd6{bottom:811.061400px;}
.y1ef{bottom:815.263500px;}
.y1ad{bottom:815.265900px;}
.y8{bottom:821.094150px;}
.y176{bottom:821.365350px;}
.y3a{bottom:821.770350px;}
.y110{bottom:821.777100px;}
.y85{bottom:821.785350px;}
.y101{bottom:821.920350px;}
.yd5{bottom:828.161400px;}
.y1ee{bottom:830.263500px;}
.y1ac{bottom:830.265900px;}
.y39{bottom:839.770350px;}
.y10f{bottom:839.777100px;}
.y84{bottom:839.785350px;}
.y12c{bottom:839.920350px;}
.yd4{bottom:845.261400px;}
.y1ed{bottom:845.263500px;}
.y1ab{bottom:845.265900px;}
.y7{bottom:851.380950px;}
.y65{bottom:857.365350px;}
.y100{bottom:857.515350px;}
.y38{bottom:857.770350px;}
.y10e{bottom:857.777100px;}
.y83{bottom:857.785350px;}
.y12b{bottom:857.920350px;}
.y1ec{bottom:860.263500px;}
.y1aa{bottom:860.265900px;}
.yd3{bottom:862.361400px;}
.y1eb{bottom:875.263500px;}
.y1a9{bottom:875.265900px;}
.y175{bottom:875.365350px;}
.y37{bottom:875.770350px;}
.y10d{bottom:875.777100px;}
.y82{bottom:875.785350px;}
.y12a{bottom:875.920350px;}
.yd2{bottom:879.461400px;}
.y1ea{bottom:890.263500px;}
.y1a8{bottom:890.265900px;}
.y64{bottom:893.230350px;}
.y36{bottom:893.770350px;}
.y10c{bottom:893.777100px;}
.y81{bottom:893.785350px;}
.y129{bottom:893.920350px;}
.yd1{bottom:896.561400px;}
.y6{bottom:897.543600px;}
.y1e9{bottom:905.263500px;}
.y1a7{bottom:905.265900px;}
.y35{bottom:911.770350px;}
.y10b{bottom:911.777100px;}
.y80{bottom:911.785350px;}
.y128{bottom:911.920350px;}
.yd0{bottom:913.661400px;}
.y1e8{bottom:920.263500px;}
.y1a6{bottom:920.265900px;}
.y34{bottom:929.770350px;}
.y10a{bottom:929.777100px;}
.y7f{bottom:929.785350px;}
.y127{bottom:929.920350px;}
.ycf{bottom:930.761400px;}
.y5{bottom:934.004400px;}
.y1e7{bottom:935.263500px;}
.y1a5{bottom:935.265900px;}
.y33{bottom:947.770350px;}
.y109{bottom:947.777100px;}
.y7e{bottom:947.785350px;}
.yce{bottom:947.861400px;}
.y1e6{bottom:950.263500px;}
.y1a4{bottom:950.265900px;}
.y1e5{bottom:965.263500px;}
.y1a3{bottom:965.265900px;}
.y174{bottom:965.365350px;}
.y126{bottom:965.515350px;}
.y32{bottom:965.770350px;}
.y108{bottom:965.777100px;}
.y7d{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.ycd{bottom:976.493400px;}
.y1e4{bottom:980.263500px;}
.y1a2{bottom:980.265900px;}
.y125{bottom:983.515350px;}
.y31{bottom:983.770350px;}
.y107{bottom:983.777100px;}
.y7c{bottom:983.785350px;}
.y1e3{bottom:995.263500px;}
.y1a1{bottom:995.265900px;}
.y30{bottom:1001.770350px;}
.y106{bottom:1001.777100px;}
.y7b{bottom:1001.785350px;}
.ycc{bottom:1005.497400px;}
.y3{bottom:1006.926000px;}
.y1e2{bottom:1010.263500px;}
.y1a0{bottom:1010.265900px;}
.y2f{bottom:1019.770350px;}
.y105{bottom:1019.777100px;}
.y7a{bottom:1019.785350px;}
.y1e1{bottom:1025.263500px;}
.y19f{bottom:1025.265900px;}
.y2e{bottom:1037.770350px;}
.y104{bottom:1037.777100px;}
.y79{bottom:1037.785350px;}
.y1e0{bottom:1040.263500px;}
.y19e{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y94{bottom:1132.413300px;}
.y72{bottom:1132.418700px;}
.y137{bottom:1132.419600px;}
.y15f{bottom:1132.421700px;}
.y1df{bottom:1132.423500px;}
.y156{bottom:1132.442700px;}
.y124{bottom:1132.473300px;}
.y2c{bottom:1136.089500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hc{height:32.783203px;}
.h7{height:32.805176px;}
.h12{height:33.328125px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.hd{height:41.660156px;}
.h11{height:42.023438px;}
.hb{height:43.681641px;}
.h9{height:43.710938px;}
.ha{height:43.740234px;}
.h14{height:44.941294px;}
.h5{height:49.138634px;}
.he{height:52.529297px;}
.h15{height:54.149297px;}
.h13{height:55.469297px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x16{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x17{left:99.921300px;}
.x23{left:102.047250px;}
.x4{left:106.299300px;}
.xb{left:110.555400px;}
.x21{left:123.307200px;}
.x3{left:125.433150px;}
.x6{left:131.816400px;}
.x1b{left:198.875400px;}
.x15{left:211.116000px;}
.x5{left:212.876400px;}
.x20{left:215.560350px;}
.x1c{left:276.840000px;}
.x19{left:333.433350px;}
.x9{left:455.041500px;}
.xd{left:457.085700px;}
.x1a{left:471.547350px;}
.x11{left:478.352550px;}
.x7{left:480.476400px;}
.x24{left:482.603250px;}
.xc{left:491.105700px;}
.x22{left:503.875200px;}
.x12{left:512.372550px;}
.xe{left:525.275700px;}
.x18{left:533.277300px;}
.x1f{left:570.667200px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x1d{left:721.705350px;}
.xf{left:728.391600px;}
.x1e{left:743.868150px;}
.x14{left:749.646450px;}
.x13{left:768.978450px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v3{vertical-align:-3.604267pt;}
.v5{vertical-align:-2.090667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.440000pt;}
.v7{vertical-align:2.613333pt;}
.v6{vertical-align:14.183467pt;}
.v4{vertical-align:17.729067pt;}
.v1{vertical-align:19.217067pt;}
.ls69{letter-spacing:-6.880000pt;}
.ls6a{letter-spacing:-5.653333pt;}
.ls42{letter-spacing:-5.504000pt;}
.ls68{letter-spacing:-2.826667pt;}
.ls4a{letter-spacing:-1.280000pt;}
.ls34{letter-spacing:-0.853333pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls48{letter-spacing:-0.480000pt;}
.ls49{letter-spacing:-0.320000pt;}
.ls5f{letter-spacing:-0.266667pt;}
.ls32{letter-spacing:-0.213333pt;}
.ls3c{letter-spacing:-0.160000pt;}
.ls2a{letter-spacing:-0.106667pt;}
.ls8a{letter-spacing:-0.085333pt;}
.ls10{letter-spacing:-0.053333pt;}
.ls3f{letter-spacing:-0.032000pt;}
.lse{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003733pt;}
.ls1{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls5c{letter-spacing:0.042667pt;}
.ls15{letter-spacing:0.053333pt;}
.ls44{letter-spacing:0.064000pt;}
.ls5d{letter-spacing:0.085333pt;}
.ls2f{letter-spacing:0.106667pt;}
.ls50{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls7c{letter-spacing:0.170667pt;}
.lsb{letter-spacing:0.213333pt;}
.ls36{letter-spacing:0.224000pt;}
.ls72{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.266667pt;}
.ls71{letter-spacing:0.298667pt;}
.ls21{letter-spacing:0.320000pt;}
.ls75{letter-spacing:0.341333pt;}
.ls28{letter-spacing:0.373333pt;}
.ls3b{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls78{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.480000pt;}
.ls57{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls77{letter-spacing:0.554667pt;}
.lsa{letter-spacing:0.586667pt;}
.ls40{letter-spacing:0.597333pt;}
.ls35{letter-spacing:0.640000pt;}
.ls6e{letter-spacing:0.682667pt;}
.ls2d{letter-spacing:0.693333pt;}
.ls18{letter-spacing:0.746667pt;}
.ls6d{letter-spacing:0.768000pt;}
.ls17{letter-spacing:0.800000pt;}
.ls70{letter-spacing:0.810667pt;}
.ls1f{letter-spacing:0.853333pt;}
.ls3d{letter-spacing:0.864000pt;}
.ls85{letter-spacing:0.896000pt;}
.ls12{letter-spacing:0.906667pt;}
.ls25{letter-spacing:0.960000pt;}
.ls7e{letter-spacing:0.981333pt;}
.ls5{letter-spacing:1.013333pt;}
.ls5b{letter-spacing:1.024000pt;}
.ls46{letter-spacing:1.066667pt;}
.ls5e{letter-spacing:1.088000pt;}
.ls65{letter-spacing:1.094933pt;}
.ls6c{letter-spacing:1.109333pt;}
.ls1d{letter-spacing:1.120000pt;}
.ls7d{letter-spacing:1.152000pt;}
.ls39{letter-spacing:1.173333pt;}
.ls3e{letter-spacing:1.184000pt;}
.ls89{letter-spacing:1.194667pt;}
.ls22{letter-spacing:1.226667pt;}
.ls73{letter-spacing:1.237333pt;}
.ls20{letter-spacing:1.280000pt;}
.ls83{letter-spacing:1.322667pt;}
.ls1e{letter-spacing:1.333333pt;}
.ls84{letter-spacing:1.365333pt;}
.ls8{letter-spacing:1.386667pt;}
.ls74{letter-spacing:1.408000pt;}
.ls38{letter-spacing:1.440000pt;}
.ls76{letter-spacing:1.450667pt;}
.ls7{letter-spacing:1.493333pt;}
.ls33{letter-spacing:1.546667pt;}
.ls7f{letter-spacing:1.578667pt;}
.ls45{letter-spacing:1.600000pt;}
.ls82{letter-spacing:1.621333pt;}
.ls11{letter-spacing:1.653333pt;}
.ls64{letter-spacing:1.684800pt;}
.ls62{letter-spacing:1.706667pt;}
.ls88{letter-spacing:1.749333pt;}
.ls27{letter-spacing:1.760000pt;}
.ls23{letter-spacing:1.813333pt;}
.ls8b{letter-spacing:1.834667pt;}
.ls1b{letter-spacing:1.866667pt;}
.ls6f{letter-spacing:1.877333pt;}
.ls3a{letter-spacing:1.920000pt;}
.ls56{letter-spacing:1.952000pt;}
.ls16{letter-spacing:1.973333pt;}
.ls2c{letter-spacing:2.026667pt;}
.ls86{letter-spacing:2.048000pt;}
.ls4{letter-spacing:2.080000pt;}
.ls37{letter-spacing:2.133333pt;}
.ls14{letter-spacing:2.186667pt;}
.lsd{letter-spacing:2.240000pt;}
.ls31{letter-spacing:2.293333pt;}
.ls79{letter-spacing:2.304000pt;}
.ls24{letter-spacing:2.346667pt;}
.ls63{letter-spacing:2.400000pt;}
.ls51{letter-spacing:2.453333pt;}
.ls7a{letter-spacing:2.474667pt;}
.ls66{letter-spacing:2.506667pt;}
.ls58{letter-spacing:2.560000pt;}
.ls3{letter-spacing:2.613333pt;}
.ls80{letter-spacing:2.645333pt;}
.ls2e{letter-spacing:2.666667pt;}
.ls67{letter-spacing:2.720000pt;}
.ls2b{letter-spacing:2.773333pt;}
.ls19{letter-spacing:2.826667pt;}
.ls81{letter-spacing:2.858667pt;}
.ls59{letter-spacing:2.880000pt;}
.ls6{letter-spacing:2.933333pt;}
.ls1c{letter-spacing:3.093333pt;}
.ls30{letter-spacing:3.200000pt;}
.ls53{letter-spacing:3.253333pt;}
.ls7b{letter-spacing:3.328000pt;}
.ls61{letter-spacing:3.360000pt;}
.ls4c{letter-spacing:3.413333pt;}
.ls52{letter-spacing:3.466667pt;}
.ls87{letter-spacing:3.584000pt;}
.ls4d{letter-spacing:3.680000pt;}
.ls29{letter-spacing:3.786667pt;}
.ls4e{letter-spacing:4.053333pt;}
.ls60{letter-spacing:4.160000pt;}
.ls6b{letter-spacing:4.533333pt;}
.ls5a{letter-spacing:5.333333pt;}
.ls43{letter-spacing:5.920000pt;}
.ls4f{letter-spacing:6.773333pt;}
.ls4b{letter-spacing:14.080000pt;}
.ls54{letter-spacing:218.156800pt;}
.ls41{letter-spacing:338.773333pt;}
.ls55{letter-spacing:463.488000pt;}
.ls47{letter-spacing:556.714667pt;}
.ws59{word-spacing:-349.440000pt;}
.wsc1{word-spacing:-53.333333pt;}
.ws8e{word-spacing:-42.666667pt;}
.ws8d{word-spacing:-15.680000pt;}
.wsc3{word-spacing:-15.466667pt;}
.ws1{word-spacing:-14.826667pt;}
.ws2{word-spacing:-14.773333pt;}
.wsc0{word-spacing:-14.720000pt;}
.wsbf{word-spacing:-14.613333pt;}
.wsbe{word-spacing:-14.453333pt;}
.ws97{word-spacing:-14.346667pt;}
.ws3a{word-spacing:-13.973333pt;}
.wsc2{word-spacing:-13.866667pt;}
.wsd6{word-spacing:-13.525333pt;}
.ws3b{word-spacing:-13.493333pt;}
.ws37{word-spacing:-13.440000pt;}
.wsae{word-spacing:-13.280000pt;}
.ws39{word-spacing:-13.173333pt;}
.ws7f{word-spacing:-12.853333pt;}
.wsf6{word-spacing:-12.714667pt;}
.wsd2{word-spacing:-12.074667pt;}
.wsd{word-spacing:-11.861333pt;}
.wsd5{word-spacing:-11.818667pt;}
.wsd4{word-spacing:-11.477333pt;}
.wsd1{word-spacing:-11.349333pt;}
.wsd8{word-spacing:-11.306667pt;}
.wsd3{word-spacing:-11.221333pt;}
.wsf7{word-spacing:-11.178667pt;}
.wsd7{word-spacing:-11.136000pt;}
.wsb0{word-spacing:-11.093333pt;}
.wsaf{word-spacing:-10.880000pt;}
.wsb1{word-spacing:-10.709333pt;}
.ws4d{word-spacing:-10.666667pt;}
.ws98{word-spacing:-9.952000pt;}
.ws0{word-spacing:-9.340800pt;}
.ws3d{word-spacing:-9.184000pt;}
.wsad{word-spacing:-9.088000pt;}
.ws3c{word-spacing:-8.864000pt;}
.ws99{word-spacing:-8.512000pt;}
.ws38{word-spacing:-8.384000pt;}
.ws36{word-spacing:-8.224000pt;}
.ws80{word-spacing:-8.064000pt;}
.wsc{word-spacing:-8.000000pt;}
.ws3e{word-spacing:-7.968000pt;}
.ws8f{word-spacing:-7.040000pt;}
.ws5d{word-spacing:-5.162667pt;}
.wsc5{word-spacing:-4.160000pt;}
.ws91{word-spacing:-4.053333pt;}
.ws28{word-spacing:-3.786667pt;}
.wsfc{word-spacing:-3.584000pt;}
.wsaa{word-spacing:-3.253333pt;}
.ws32{word-spacing:-3.200000pt;}
.wsb2{word-spacing:-3.093333pt;}
.wsb8{word-spacing:-2.880000pt;}
.wsef{word-spacing:-2.858667pt;}
.ws25{word-spacing:-2.826667pt;}
.ws1b{word-spacing:-2.773333pt;}
.ws94{word-spacing:-2.720000pt;}
.ws2e{word-spacing:-2.666667pt;}
.wsf4{word-spacing:-2.645333pt;}
.ws41{word-spacing:-2.613333pt;}
.ws4{word-spacing:-2.565333pt;}
.wse7{word-spacing:-2.474667pt;}
.wsa7{word-spacing:-2.453333pt;}
.wsda{word-spacing:-2.400000pt;}
.ws95{word-spacing:-2.346667pt;}
.wse6{word-spacing:-2.304000pt;}
.ws33{word-spacing:-2.293333pt;}
.wsa{word-spacing:-2.240000pt;}
.ws10{word-spacing:-2.186667pt;}
.ws43{word-spacing:-2.133333pt;}
.ws2b{word-spacing:-2.080000pt;}
.wsfb{word-spacing:-2.048000pt;}
.ws22{word-spacing:-2.026667pt;}
.ws46{word-spacing:-1.973333pt;}
.wsc8{word-spacing:-1.920000pt;}
.wsdd{word-spacing:-1.877333pt;}
.wscd{word-spacing:-1.866667pt;}
.ws100{word-spacing:-1.834667pt;}
.ws1e{word-spacing:-1.813333pt;}
.wsc7{word-spacing:-1.760000pt;}
.wsfe{word-spacing:-1.749333pt;}
.wsc6{word-spacing:-1.706667pt;}
.ws1d{word-spacing:-1.653333pt;}
.ws88{word-spacing:-1.600000pt;}
.ws2d{word-spacing:-1.546667pt;}
.ws7{word-spacing:-1.493333pt;}
.wsee{word-spacing:-1.450667pt;}
.ws44{word-spacing:-1.440000pt;}
.wse0{word-spacing:-1.408000pt;}
.ws1f{word-spacing:-1.386667pt;}
.wsf5{word-spacing:-1.365333pt;}
.ws1c{word-spacing:-1.333333pt;}
.wsf2{word-spacing:-1.322667pt;}
.ws18{word-spacing:-1.280000pt;}
.wse8{word-spacing:-1.237333pt;}
.ws47{word-spacing:-1.226667pt;}
.ws101{word-spacing:-1.194667pt;}
.ws29{word-spacing:-1.173333pt;}
.wsec{word-spacing:-1.152000pt;}
.ws16{word-spacing:-1.120000pt;}
.wsf1{word-spacing:-1.109333pt;}
.ws8a{word-spacing:-1.066667pt;}
.wsba{word-spacing:-1.024000pt;}
.wsa8{word-spacing:-1.013333pt;}
.wsed{word-spacing:-0.981333pt;}
.ws20{word-spacing:-0.960000pt;}
.ws24{word-spacing:-0.906667pt;}
.wsf9{word-spacing:-0.896000pt;}
.ws42{word-spacing:-0.853333pt;}
.wse5{word-spacing:-0.810667pt;}
.ws21{word-spacing:-0.800000pt;}
.wsdb{word-spacing:-0.768000pt;}
.ws92{word-spacing:-0.746667pt;}
.ws2a{word-spacing:-0.693333pt;}
.wsdc{word-spacing:-0.682667pt;}
.ws3f{word-spacing:-0.640000pt;}
.wsea{word-spacing:-0.597333pt;}
.ws8{word-spacing:-0.586667pt;}
.wse4{word-spacing:-0.554667pt;}
.ws8b{word-spacing:-0.533333pt;}
.wsfd{word-spacing:-0.512000pt;}
.wsf0{word-spacing:-0.469333pt;}
.ws27{word-spacing:-0.426667pt;}
.wse3{word-spacing:-0.384000pt;}
.ws26{word-spacing:-0.373333pt;}
.wse1{word-spacing:-0.341333pt;}
.ws34{word-spacing:-0.320000pt;}
.wsde{word-spacing:-0.298667pt;}
.ws40{word-spacing:-0.266667pt;}
.wsdf{word-spacing:-0.256000pt;}
.ws15{word-spacing:-0.213333pt;}
.wseb{word-spacing:-0.170667pt;}
.wsf{word-spacing:-0.160000pt;}
.ws96{word-spacing:-0.128000pt;}
.ws30{word-spacing:-0.106667pt;}
.wsbc{word-spacing:-0.085333pt;}
.ws12{word-spacing:-0.053333pt;}
.wse2{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws14{word-spacing:0.053333pt;}
.wsf8{word-spacing:0.085333pt;}
.wsb{word-spacing:0.106667pt;}
.ws5b{word-spacing:0.128000pt;}
.ws45{word-spacing:0.160000pt;}
.ws2c{word-spacing:0.213333pt;}
.ws89{word-spacing:0.320000pt;}
.ws87{word-spacing:0.480000pt;}
.wsb9{word-spacing:0.597333pt;}
.wsfa{word-spacing:0.810667pt;}
.ws2f{word-spacing:0.853333pt;}
.ws11{word-spacing:0.906667pt;}
.wsac{word-spacing:0.960000pt;}
.wsd0{word-spacing:1.120000pt;}
.ws23{word-spacing:1.280000pt;}
.ws8c{word-spacing:1.578667pt;}
.wsab{word-spacing:1.600000pt;}
.wsb4{word-spacing:1.866667pt;}
.wscf{word-spacing:1.973333pt;}
.wsbd{word-spacing:2.005333pt;}
.ws1a{word-spacing:2.186667pt;}
.wsff{word-spacing:2.218667pt;}
.wse{word-spacing:2.240000pt;}
.ws90{word-spacing:2.293333pt;}
.wsa9{word-spacing:2.453333pt;}
.ws19{word-spacing:2.506667pt;}
.wsb6{word-spacing:2.720000pt;}
.wscc{word-spacing:2.880000pt;}
.ws35{word-spacing:2.901333pt;}
.ws49{word-spacing:3.040000pt;}
.wsd9{word-spacing:3.093333pt;}
.ws48{word-spacing:3.200000pt;}
.wsc9{word-spacing:3.306667pt;}
.wsf3{word-spacing:3.328000pt;}
.ws31{word-spacing:3.360000pt;}
.wse9{word-spacing:3.370667pt;}
.ws4c{word-spacing:3.498667pt;}
.wsbb{word-spacing:3.541333pt;}
.wsb5{word-spacing:3.573333pt;}
.ws13{word-spacing:3.733333pt;}
.ws17{word-spacing:3.786667pt;}
.ws93{word-spacing:3.840000pt;}
.wsb3{word-spacing:3.893333pt;}
.ws9{word-spacing:3.946667pt;}
.wsb7{word-spacing:4.000000pt;}
.wsa6{word-spacing:4.053333pt;}
.wscb{word-spacing:4.320000pt;}
.ws6{word-spacing:4.373333pt;}
.ws5{word-spacing:4.426667pt;}
.ws4a{word-spacing:4.640000pt;}
.wsce{word-spacing:5.653333pt;}
.ws4b{word-spacing:6.240000pt;}
.wsca{word-spacing:6.880000pt;}
.wsc4{word-spacing:8.320000pt;}
.wsa3{word-spacing:191.658667pt;}
.ws9d{word-spacing:236.586667pt;}
.ws9c{word-spacing:247.253333pt;}
.ws9a{word-spacing:248.576000pt;}
.wsa4{word-spacing:271.274667pt;}
.ws6d{word-spacing:284.288000pt;}
.ws7e{word-spacing:284.330667pt;}
.ws9e{word-spacing:287.274667pt;}
.wsa5{word-spacing:292.608000pt;}
.ws9f{word-spacing:292.693333pt;}
.ws63{word-spacing:293.632000pt;}
.ws6b{word-spacing:299.733333pt;}
.ws76{word-spacing:302.080000pt;}
.ws50{word-spacing:303.274667pt;}
.ws7d{word-spacing:304.426667pt;}
.ws53{word-spacing:304.469333pt;}
.ws5e{word-spacing:305.237333pt;}
.ws7c{word-spacing:305.621333pt;}
.ws77{word-spacing:305.664000pt;}
.ws62{word-spacing:306.432000pt;}
.ws7b{word-spacing:306.816000pt;}
.wsa0{word-spacing:306.901333pt;}
.ws4f{word-spacing:307.626667pt;}
.ws56{word-spacing:309.205333pt;}
.ws74{word-spacing:309.973333pt;}
.ws5a{word-spacing:310.357333pt;}
.ws65{word-spacing:310.400000pt;}
.ws66{word-spacing:311.168000pt;}
.ws5c{word-spacing:311.552000pt;}
.ws6e{word-spacing:312.704000pt;}
.ws54{word-spacing:312.746667pt;}
.ws72{word-spacing:313.514667pt;}
.ws58{word-spacing:313.941333pt;}
.ws64{word-spacing:316.074667pt;}
.ws69{word-spacing:316.288000pt;}
.ws71{word-spacing:317.440000pt;}
.ws70{word-spacing:317.482667pt;}
.ws6f{word-spacing:318.634667pt;}
.ws51{word-spacing:328.106667pt;}
.ws9b{word-spacing:331.943467pt;}
.wsa2{word-spacing:356.693333pt;}
.wsa1{word-spacing:358.272000pt;}
.ws83{word-spacing:498.048000pt;}
.ws82{word-spacing:508.714667pt;}
.ws84{word-spacing:509.525333pt;}
.ws86{word-spacing:519.381333pt;}
.ws85{word-spacing:535.381333pt;}
.ws55{word-spacing:666.112000pt;}
.ws6a{word-spacing:667.306667pt;}
.ws6c{word-spacing:669.269333pt;}
.ws7a{word-spacing:669.653333pt;}
.ws4e{word-spacing:672.042667pt;}
.ws57{word-spacing:673.194667pt;}
.ws61{word-spacing:674.389333pt;}
.ws75{word-spacing:675.157333pt;}
.ws78{word-spacing:675.584000pt;}
.ws79{word-spacing:676.352000pt;}
.ws60{word-spacing:676.736000pt;}
.ws5f{word-spacing:677.930667pt;}
.ws73{word-spacing:683.818667pt;}
.ws67{word-spacing:690.944000pt;}
.ws81{word-spacing:971.050667pt;}
.ws68{word-spacing:1036.032000pt;}
.ws52{word-spacing:1038.378667pt;}
._c{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._1e{margin-left:-338.773333pt;}
._74{margin-left:-7.626667pt;}
._d{margin-left:-6.240000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.111467pt;}
._9{width:1.146667pt;}
._5{width:2.053333pt;}
._a{width:2.986667pt;}
._8{width:3.893333pt;}
._6{width:4.960000pt;}
._4{width:5.920000pt;}
._7{width:7.413333pt;}
._b{width:8.693333pt;}
._12{width:20.010667pt;}
._11{width:32.853333pt;}
._5c{width:167.986133pt;}
._13{width:240.944000pt;}
._5a{width:247.253333pt;}
._5e{width:248.538667pt;}
._6b{width:268.885333pt;}
._4c{width:274.730667pt;}
._46{width:276.010667pt;}
._6f{width:281.941333pt;}
._4a{width:296.149333pt;}
._57{width:297.130667pt;}
._65{width:303.360000pt;}
._62{width:305.370667pt;}
._5f{width:315.738667pt;}
._64{width:317.568000pt;}
._6d{width:319.274667pt;}
._63{width:324.093867pt;}
._2a{width:338.773333pt;}
._69{width:367.360000pt;}
._26{width:395.616000pt;}
._10{width:419.157333pt;}
._71{width:452.565333pt;}
._59{width:480.868267pt;}
._3a{width:485.090133pt;}
._68{width:490.802133pt;}
._4b{width:534.924800pt;}
._1f{width:543.402667pt;}
._48{width:546.944000pt;}
._3d{width:558.554667pt;}
._47{width:564.778667pt;}
._44{width:574.000000pt;}
._43{width:575.109333pt;}
._3e{width:576.682667pt;}
._67{width:586.666667pt;}
._17{width:589.703467pt;}
._3b{width:595.164800pt;}
._27{width:596.309333pt;}
._3c{width:602.282667pt;}
._3f{width:604.848000pt;}
._35{width:606.730667pt;}
._32{width:610.224000pt;}
._19{width:613.333333pt;}
._29{width:626.432000pt;}
._24{width:628.778667pt;}
._66{width:630.570667pt;}
._4d{width:637.994667pt;}
._2d{width:640.306133pt;}
._4f{width:649.813333pt;}
._51{width:651.008000pt;}
._55{width:666.976000pt;}
._33{width:676.181333pt;}
._22{width:678.837333pt;}
._1d{width:684.458667pt;}
._60{width:686.384000pt;}
._21{width:693.090133pt;}
._4e{width:698.410667pt;}
._42{width:702.336000pt;}
._1b{width:705.842133pt;}
._1c{width:710.234667pt;}
._50{width:718.592000pt;}
._40{width:723.626667pt;}
._52{width:725.120000pt;}
._28{width:734.165333pt;}
._18{width:739.029333pt;}
._70{width:741.717333pt;}
._14{width:747.445333pt;}
._36{width:751.628800pt;}
._2c{width:757.973333pt;}
._2e{width:760.327467pt;}
._15{width:762.666667pt;}
._23{width:765.865600pt;}
._2f{width:770.986667pt;}
._38{width:773.340800pt;}
._16{width:776.538667pt;}
._30{width:778.069333pt;}
._1a{width:781.653333pt;}
._f{width:783.488000pt;}
._31{width:787.541333pt;}
._39{width:790.327467pt;}
._25{width:795.026133pt;}
._20{width:798.560000pt;}
._41{width:800.778667pt;}
._54{width:815.744000pt;}
._37{width:833.979200pt;}
._56{width:845.319467pt;}
._2b{width:848.042667pt;}
._5b{width:852.612267pt;}
._53{width:854.869333pt;}
._45{width:868.181333pt;}
._49{width:912.042667pt;}
._34{width:929.749333pt;}
._6e{width:982.186667pt;}
._5d{width:1129.946667pt;}
._61{width:1165.957333pt;}
._58{width:1246.677333pt;}
._6c{width:1345.962667pt;}
._6a{width:1460.309333pt;}
._73{width:1757.056000pt;}
._72{width:1957.888000pt;}
.fs5{font-size:24.000000pt;}
.fsb{font-size:25.600000pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.y1de{bottom:71.345333pt;}
.y123{bottom:73.789600pt;}
.y92{bottom:73.809067pt;}
.y15e{bottom:73.819733pt;}
.y173{bottom:74.336533pt;}
.y63{bottom:74.462533pt;}
.yb6{bottom:74.588533pt;}
.y71{bottom:74.595867pt;}
.yb9{bottom:74.932400pt;}
.y133{bottom:75.961333pt;}
.y19d{bottom:76.552800pt;}
.y20{bottom:78.246000pt;}
.y155{bottom:82.370400pt;}
.y1dd{bottom:84.678667pt;}
.ycb{bottom:86.246400pt;}
.y91{bottom:87.803733pt;}
.y15d{bottom:87.814400pt;}
.y122{bottom:88.232267pt;}
.yb8{bottom:88.927067pt;}
.y19c{bottom:89.886133pt;}
.y132{bottom:89.956000pt;}
.yff{bottom:90.208533pt;}
.y172{bottom:90.336533pt;}
.y62{bottom:90.462533pt;}
.yb5{bottom:90.588533pt;}
.y70{bottom:90.595867pt;}
.y1f{bottom:91.576000pt;}
.y154{bottom:96.813067pt;}
.y1dc{bottom:98.012000pt;}
.yca{bottom:101.446400pt;}
.y15c{bottom:101.809067pt;}
.y121{bottom:102.674933pt;}
.yb7{bottom:102.921733pt;}
.y19b{bottom:103.219467pt;}
.y131{bottom:103.950667pt;}
.y171{bottom:106.336533pt;}
.y61{bottom:106.462533pt;}
.yb4{bottom:106.588533pt;}
.y6f{bottom:106.595867pt;}
.y153{bottom:111.255733pt;}
.y1db{bottom:111.345333pt;}
.yfe{bottom:112.885867pt;}
.y15b{bottom:115.825067pt;}
.y19a{bottom:116.552800pt;}
.yc9{bottom:116.646400pt;}
.y120{bottom:117.117600pt;}
.y130{bottom:117.945333pt;}
.y170{bottom:121.976533pt;}
.y60{bottom:122.462533pt;}
.yb3{bottom:122.588533pt;}
.y6e{bottom:122.595867pt;}
.y1da{bottom:124.678667pt;}
.y152{bottom:125.698400pt;}
.yfd{bottom:128.085867pt;}
.y15a{bottom:129.819733pt;}
.y199{bottom:129.886133pt;}
.y11f{bottom:131.560267pt;}
.yc8{bottom:131.846400pt;}
.y1d9{bottom:138.012000pt;}
.y5f{bottom:138.462533pt;}
.yb2{bottom:138.588533pt;}
.y6d{bottom:138.595867pt;}
.y151{bottom:140.141067pt;}
.y198{bottom:143.219467pt;}
.yfc{bottom:143.285867pt;}
.y159{bottom:143.814400pt;}
.y11e{bottom:146.002933pt;}
.yc7{bottom:147.046400pt;}
.y28{bottom:149.393600pt;}
.y1d8{bottom:151.345333pt;}
.y16f{bottom:154.336533pt;}
.y5e{bottom:154.462533pt;}
.y150{bottom:154.583733pt;}
.yb1{bottom:154.588533pt;}
.y6c{bottom:154.595867pt;}
.y197{bottom:156.552800pt;}
.y158{bottom:157.809067pt;}
.yfb{bottom:158.485867pt;}
.y11d{bottom:160.445600pt;}
.yc6{bottom:162.246400pt;}
.y1d7{bottom:164.678667pt;}
.y27{bottom:165.393600pt;}
.y160{bottom:169.809200pt;}
.y196{bottom:169.886133pt;}
.y16e{bottom:170.336533pt;}
.y5d{bottom:170.462533pt;}
.yb0{bottom:170.588533pt;}
.y6b{bottom:170.595867pt;}
.y157{bottom:171.803733pt;}
.yfa{bottom:173.685867pt;}
.y11c{bottom:174.888267pt;}
.yc5{bottom:177.446400pt;}
.y1d6{bottom:178.012000pt;}
.y26{bottom:181.393600pt;}
.y14f{bottom:182.594400pt;}
.y195{bottom:183.219467pt;}
.y97{bottom:186.235867pt;}
.y16d{bottom:186.336533pt;}
.y5c{bottom:186.462533pt;}
.yaf{bottom:186.588533pt;}
.y6a{bottom:186.595867pt;}
.yf9{bottom:188.885867pt;}
.y11b{bottom:189.330933pt;}
.y1d5{bottom:191.345333pt;}
.yc4{bottom:192.646400pt;}
.y194{bottom:196.552800pt;}
.y25{bottom:197.393600pt;}
.y16c{bottom:202.336533pt;}
.y5b{bottom:202.462533pt;}
.yae{bottom:202.588533pt;}
.y69{bottom:202.595867pt;}
.y11a{bottom:203.773600pt;}
.yf8{bottom:204.085867pt;}
.y1d4{bottom:204.678667pt;}
.yc3{bottom:207.846400pt;}
.y193{bottom:209.886133pt;}
.y24{bottom:213.393600pt;}
.y14e{bottom:213.612267pt;}
.y1d3{bottom:218.012000pt;}
.y119{bottom:218.216267pt;}
.y16b{bottom:218.336533pt;}
.y5a{bottom:218.462533pt;}
.yad{bottom:218.588533pt;}
.y68{bottom:218.595867pt;}
.yf7{bottom:219.285867pt;}
.yc2{bottom:223.046400pt;}
.y192{bottom:223.219467pt;}
.y23{bottom:229.393600pt;}
.y1d2{bottom:231.345333pt;}
.y118{bottom:232.658933pt;}
.y16a{bottom:234.336533pt;}
.y59{bottom:234.462533pt;}
.yf6{bottom:234.485867pt;}
.yac{bottom:234.588533pt;}
.y67{bottom:234.595867pt;}
.y191{bottom:236.552800pt;}
.yc1{bottom:238.246400pt;}
.y1d1{bottom:244.678667pt;}
.y22{bottom:245.393600pt;}
.yf5{bottom:249.685867pt;}
.y190{bottom:249.886133pt;}
.y169{bottom:250.336533pt;}
.y58{bottom:250.462533pt;}
.yab{bottom:250.588533pt;}
.yc0{bottom:253.446400pt;}
.y14d{bottom:254.601200pt;}
.y1d0{bottom:258.012000pt;}
.y117{bottom:258.440267pt;}
.y2a{bottom:261.393600pt;}
.y18f{bottom:263.219467pt;}
.yf4{bottom:264.885867pt;}
.y66{bottom:266.235867pt;}
.y168{bottom:266.336533pt;}
.y57{bottom:266.462533pt;}
.yaa{bottom:266.588533pt;}
.y14c{bottom:269.267867pt;}
.y1cf{bottom:271.345333pt;}
.y18e{bottom:276.552800pt;}
.y21{bottom:277.033600pt;}
.y29{bottom:277.393600pt;}
.ybf{bottom:279.227733pt;}
.yf3{bottom:280.085867pt;}
.y167{bottom:282.336533pt;}
.y56{bottom:282.462533pt;}
.ya9{bottom:282.588533pt;}
.y116{bottom:284.221600pt;}
.y1ce{bottom:284.678667pt;}
.y18d{bottom:289.886133pt;}
.y14b{bottom:291.945200pt;}
.yf2{bottom:295.285867pt;}
.y1cd{bottom:298.012000pt;}
.y166{bottom:298.336533pt;}
.y55{bottom:298.462533pt;}
.ya8{bottom:298.588533pt;}
.y18c{bottom:303.219467pt;}
.ybe{bottom:305.009067pt;}
.y14a{bottom:306.387867pt;}
.yf1{bottom:310.485867pt;}
.y1cc{bottom:311.345333pt;}
.y115{bottom:313.013733pt;}
.y165{bottom:314.336533pt;}
.y54{bottom:314.462533pt;}
.ya7{bottom:314.588533pt;}
.y18b{bottom:316.552800pt;}
.y149{bottom:320.830533pt;}
.y1cb{bottom:324.678667pt;}
.yf0{bottom:325.685867pt;}
.y18a{bottom:329.886133pt;}
.y164{bottom:330.336533pt;}
.y53{bottom:330.462533pt;}
.ya6{bottom:330.588533pt;}
.ybd{bottom:333.801200pt;}
.y148{bottom:335.273200pt;}
.y1ca{bottom:338.012000pt;}
.yef{bottom:340.885867pt;}
.y189{bottom:343.219467pt;}
.y163{bottom:346.336533pt;}
.y52{bottom:346.462533pt;}
.ya5{bottom:346.588533pt;}
.y1e{bottom:346.723733pt;}
.y147{bottom:349.715867pt;}
.y1c9{bottom:351.345333pt;}
.y114{bottom:351.733467pt;}
.yee{bottom:356.085867pt;}
.y188{bottom:356.552800pt;}
.y162{bottom:362.342533pt;}
.y51{bottom:362.462533pt;}
.ya4{bottom:362.588533pt;}
.y146{bottom:364.158533pt;}
.y1c8{bottom:364.678667pt;}
.y113{bottom:365.728133pt;}
.y135{bottom:368.899200pt;}
.y187{bottom:369.886133pt;}
.y1d{bottom:371.030400pt;}
.yed{bottom:371.285867pt;}
.ybc{bottom:377.294667pt;}
.y1c7{bottom:378.012000pt;}
.y50{bottom:378.462533pt;}
.ya3{bottom:378.588533pt;}
.y186{bottom:383.219467pt;}
.yec{bottom:386.485867pt;}
.y1c{bottom:387.030400pt;}
.ybb{bottom:391.289333pt;}
.y1c6{bottom:391.345333pt;}
.y145{bottom:392.169200pt;}
.y161{bottom:393.982533pt;}
.y4f{bottom:394.462533pt;}
.ya2{bottom:394.588533pt;}
.y185{bottom:396.552800pt;}
.yeb{bottom:401.685867pt;}
.y1b{bottom:403.030400pt;}
.y1c5{bottom:404.678667pt;}
.yba{bottom:405.284000pt;}
.y184{bottom:409.886133pt;}
.y4e{bottom:410.462533pt;}
.ya1{bottom:410.588533pt;}
.yea{bottom:416.885867pt;}
.y1c4{bottom:418.012000pt;}
.y1a{bottom:419.030400pt;}
.y144{bottom:423.187067pt;}
.y183{bottom:423.219467pt;}
.y4d{bottom:426.462533pt;}
.ya0{bottom:426.595867pt;}
.y1c3{bottom:431.345333pt;}
.ye9{bottom:432.085867pt;}
.y19{bottom:435.030400pt;}
.y182{bottom:436.552800pt;}
.y4c{bottom:442.462533pt;}
.y9f{bottom:442.595867pt;}
.y1c2{bottom:444.680800pt;}
.ye8{bottom:447.343467pt;}
.y181{bottom:449.886133pt;}
.y18{bottom:451.030400pt;}
.y1c1{bottom:458.014133pt;}
.y4b{bottom:458.462533pt;}
.y9e{bottom:458.595867pt;}
.ye7{bottom:462.543467pt;}
.y143{bottom:463.154267pt;}
.y180{bottom:463.219467pt;}
.y17{bottom:467.030400pt;}
.y93{bottom:469.245600pt;}
.y1c0{bottom:471.347467pt;}
.y4a{bottom:474.462533pt;}
.y9d{bottom:474.595867pt;}
.y17f{bottom:476.552800pt;}
.ye6{bottom:477.743467pt;}
.y16{bottom:483.030400pt;}
.y1bf{bottom:484.680800pt;}
.y142{bottom:485.831600pt;}
.y17e{bottom:489.886133pt;}
.y49{bottom:490.462533pt;}
.y9c{bottom:490.595867pt;}
.ye5{bottom:492.943467pt;}
.y1be{bottom:498.014133pt;}
.y15{bottom:499.030400pt;}
.y141{bottom:500.274267pt;}
.y17d{bottom:503.219467pt;}
.y48{bottom:506.462533pt;}
.y9b{bottom:506.595867pt;}
.ye4{bottom:508.143467pt;}
.y1bd{bottom:511.347467pt;}
.y140{bottom:514.716933pt;}
.y14{bottom:515.030400pt;}
.y17c{bottom:516.552800pt;}
.y47{bottom:522.462533pt;}
.y9a{bottom:522.595867pt;}
.ye3{bottom:523.343467pt;}
.y1bc{bottom:524.680800pt;}
.y13f{bottom:529.159600pt;}
.y17b{bottom:529.886133pt;}
.y13{bottom:531.030400pt;}
.y1bb{bottom:538.014133pt;}
.y46{bottom:538.462533pt;}
.ye2{bottom:538.543467pt;}
.y99{bottom:538.595867pt;}
.y17a{bottom:543.219467pt;}
.y13e{bottom:543.605600pt;}
.y12{bottom:547.030400pt;}
.y1ba{bottom:551.347467pt;}
.ye1{bottom:553.743467pt;}
.y45{bottom:554.462533pt;}
.y90{bottom:554.475867pt;}
.y78{bottom:554.595867pt;}
.y179{bottom:556.552800pt;}
.y13d{bottom:558.048267pt;}
.y11{bottom:563.030400pt;}
.y1b9{bottom:564.680800pt;}
.ye0{bottom:568.943467pt;}
.y44{bottom:570.462533pt;}
.y8f{bottom:570.475867pt;}
.y77{bottom:570.595867pt;}
.y1b8{bottom:578.014133pt;}
.y10{bottom:579.030400pt;}
.ydf{bottom:584.143467pt;}
.y178{bottom:585.982533pt;}
.y13c{bottom:586.058933pt;}
.y43{bottom:586.462533pt;}
.y8e{bottom:586.475867pt;}
.y76{bottom:586.595867pt;}
.y1b7{bottom:591.347467pt;}
.yf{bottom:595.030400pt;}
.yde{bottom:599.343467pt;}
.y42{bottom:602.462533pt;}
.y8d{bottom:602.475867pt;}
.y75{bottom:602.595867pt;}
.y1b6{bottom:604.680800pt;}
.ye{bottom:611.030400pt;}
.ydd{bottom:614.543467pt;}
.y13b{bottom:617.075867pt;}
.y1b5{bottom:618.014133pt;}
.y41{bottom:618.462533pt;}
.y8c{bottom:618.475867pt;}
.y74{bottom:618.595867pt;}
.y136{bottom:619.949867pt;}
.y134{bottom:619.954267pt;}
.ydc{bottom:629.743467pt;}
.y1b4{bottom:631.347467pt;}
.y40{bottom:634.462533pt;}
.y8b{bottom:634.475867pt;}
.y1b3{bottom:644.680800pt;}
.ydb{bottom:644.943467pt;}
.y96{bottom:650.102533pt;}
.y73{bottom:650.235867pt;}
.y3f{bottom:650.462533pt;}
.y8a{bottom:650.475867pt;}
.y12f{bottom:650.595867pt;}
.yd{bottom:651.172000pt;}
.y1b2{bottom:658.014133pt;}
.yda{bottom:660.143467pt;}
.yc{bottom:662.238667pt;}
.y98{bottom:666.235867pt;}
.y13a{bottom:666.342533pt;}
.y3e{bottom:666.462533pt;}
.y89{bottom:666.475867pt;}
.y12e{bottom:666.595867pt;}
.y1b1{bottom:671.347467pt;}
.yd9{bottom:675.343467pt;}
.y95{bottom:681.982533pt;}
.y177{bottom:682.102533pt;}
.y139{bottom:682.342533pt;}
.y3d{bottom:682.462533pt;}
.y88{bottom:682.475867pt;}
.y12d{bottom:682.595867pt;}
.y1b0{bottom:684.680800pt;}
.yd8{bottom:690.543467pt;}
.yb{bottom:693.861467pt;}
.y1af{bottom:698.014133pt;}
.y3c{bottom:698.462533pt;}
.y112{bottom:698.468533pt;}
.y87{bottom:698.475867pt;}
.y103{bottom:698.595867pt;}
.yd7{bottom:705.743467pt;}
.ya{bottom:705.861467pt;}
.y1f0{bottom:711.345333pt;}
.y1ae{bottom:711.347467pt;}
.y138{bottom:713.982533pt;}
.y9{bottom:714.429867pt;}
.y3b{bottom:714.462533pt;}
.y111{bottom:714.468533pt;}
.y86{bottom:714.475867pt;}
.y102{bottom:714.595867pt;}
.yd6{bottom:720.943467pt;}
.y1ef{bottom:724.678667pt;}
.y1ad{bottom:724.680800pt;}
.y8{bottom:729.861467pt;}
.y176{bottom:730.102533pt;}
.y3a{bottom:730.462533pt;}
.y110{bottom:730.468533pt;}
.y85{bottom:730.475867pt;}
.y101{bottom:730.595867pt;}
.yd5{bottom:736.143467pt;}
.y1ee{bottom:738.012000pt;}
.y1ac{bottom:738.014133pt;}
.y39{bottom:746.462533pt;}
.y10f{bottom:746.468533pt;}
.y84{bottom:746.475867pt;}
.y12c{bottom:746.595867pt;}
.yd4{bottom:751.343467pt;}
.y1ed{bottom:751.345333pt;}
.y1ab{bottom:751.347467pt;}
.y7{bottom:756.783067pt;}
.y65{bottom:762.102533pt;}
.y100{bottom:762.235867pt;}
.y38{bottom:762.462533pt;}
.y10e{bottom:762.468533pt;}
.y83{bottom:762.475867pt;}
.y12b{bottom:762.595867pt;}
.y1ec{bottom:764.678667pt;}
.y1aa{bottom:764.680800pt;}
.yd3{bottom:766.543467pt;}
.y1eb{bottom:778.012000pt;}
.y1a9{bottom:778.014133pt;}
.y175{bottom:778.102533pt;}
.y37{bottom:778.462533pt;}
.y10d{bottom:778.468533pt;}
.y82{bottom:778.475867pt;}
.y12a{bottom:778.595867pt;}
.yd2{bottom:781.743467pt;}
.y1ea{bottom:791.345333pt;}
.y1a8{bottom:791.347467pt;}
.y64{bottom:793.982533pt;}
.y36{bottom:794.462533pt;}
.y10c{bottom:794.468533pt;}
.y81{bottom:794.475867pt;}
.y129{bottom:794.595867pt;}
.yd1{bottom:796.943467pt;}
.y6{bottom:797.816533pt;}
.y1e9{bottom:804.678667pt;}
.y1a7{bottom:804.680800pt;}
.y35{bottom:810.462533pt;}
.y10b{bottom:810.468533pt;}
.y80{bottom:810.475867pt;}
.y128{bottom:810.595867pt;}
.yd0{bottom:812.143467pt;}
.y1e8{bottom:818.012000pt;}
.y1a6{bottom:818.014133pt;}
.y34{bottom:826.462533pt;}
.y10a{bottom:826.468533pt;}
.y7f{bottom:826.475867pt;}
.y127{bottom:826.595867pt;}
.ycf{bottom:827.343467pt;}
.y5{bottom:830.226133pt;}
.y1e7{bottom:831.345333pt;}
.y1a5{bottom:831.347467pt;}
.y33{bottom:842.462533pt;}
.y109{bottom:842.468533pt;}
.y7e{bottom:842.475867pt;}
.yce{bottom:842.543467pt;}
.y1e6{bottom:844.678667pt;}
.y1a4{bottom:844.680800pt;}
.y1e5{bottom:858.012000pt;}
.y1a3{bottom:858.014133pt;}
.y174{bottom:858.102533pt;}
.y126{bottom:858.235867pt;}
.y32{bottom:858.462533pt;}
.y108{bottom:858.468533pt;}
.y7d{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.ycd{bottom:867.994133pt;}
.y1e4{bottom:871.345333pt;}
.y1a2{bottom:871.347467pt;}
.y125{bottom:874.235867pt;}
.y31{bottom:874.462533pt;}
.y107{bottom:874.468533pt;}
.y7c{bottom:874.475867pt;}
.y1e3{bottom:884.678667pt;}
.y1a1{bottom:884.680800pt;}
.y30{bottom:890.462533pt;}
.y106{bottom:890.468533pt;}
.y7b{bottom:890.475867pt;}
.ycc{bottom:893.775467pt;}
.y3{bottom:895.045333pt;}
.y1e2{bottom:898.012000pt;}
.y1a0{bottom:898.014133pt;}
.y2f{bottom:906.462533pt;}
.y105{bottom:906.468533pt;}
.y7a{bottom:906.475867pt;}
.y1e1{bottom:911.345333pt;}
.y19f{bottom:911.347467pt;}
.y2e{bottom:922.462533pt;}
.y104{bottom:922.468533pt;}
.y79{bottom:922.475867pt;}
.y1e0{bottom:924.678667pt;}
.y19e{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y94{bottom:1006.589600pt;}
.y72{bottom:1006.594400pt;}
.y137{bottom:1006.595200pt;}
.y15f{bottom:1006.597067pt;}
.y1df{bottom:1006.598667pt;}
.y156{bottom:1006.615733pt;}
.y124{bottom:1006.642933pt;}
.y2c{bottom:1009.857333pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hc{height:29.140625pt;}
.h7{height:29.160156pt;}
.h12{height:29.625000pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.hd{height:37.031250pt;}
.h11{height:37.354167pt;}
.hb{height:38.828125pt;}
.h9{height:38.854167pt;}
.ha{height:38.880208pt;}
.h14{height:39.947817pt;}
.h5{height:43.678785pt;}
.he{height:46.692708pt;}
.h15{height:48.132708pt;}
.h13{height:49.306042pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x16{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x17{left:88.818933pt;}
.x23{left:90.708667pt;}
.x4{left:94.488267pt;}
.xb{left:98.271467pt;}
.x21{left:109.606400pt;}
.x3{left:111.496133pt;}
.x6{left:117.170133pt;}
.x1b{left:176.778133pt;}
.x15{left:187.658667pt;}
.x5{left:189.223467pt;}
.x20{left:191.609200pt;}
.x1c{left:246.080000pt;}
.x19{left:296.385200pt;}
.x9{left:404.481333pt;}
.xd{left:406.298400pt;}
.x1a{left:419.153200pt;}
.x11{left:425.202267pt;}
.x7{left:427.090133pt;}
.x24{left:428.980667pt;}
.xc{left:436.538400pt;}
.x22{left:447.889067pt;}
.x12{left:455.442267pt;}
.xe{left:466.911733pt;}
.x18{left:474.024267pt;}
.x1f{left:507.259733pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1d{left:641.515867pt;}
.xf{left:647.459200pt;}
.x1e{left:661.216133pt;}
.x14{left:666.352400pt;}
.x13{left:683.536400pt;}
}




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