
    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_d66f8141fcb26765d02b9fa5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_8d707cdf90be51f0db33032c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_969a0b43e590ba991415d623.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_c7d22d33c7972cb194518af8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.126000;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_ef2d33ce342d015c7fe50342.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239000;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_2673428247dd812513e182a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931000;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_b1f3f51a3a254dd2420339e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.328000;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_facc728b908bf1bb9636d86c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7a315fefcf27e5ed2e097e11.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677246;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_5296b9e08e42c8840a4eb706.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.653000;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_87e1154af745a4f964184261.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.438000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_67a4cdf3df7dcf83eb86b9c8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.706000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_30ee8cc3f15ddbbe8de89cb4.woff2')format("woff");}.fff{font-family:fff;line-height:1.230000;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:ff10;src:url('chunks/assets/font_3166c3278702dcf4b1f0e485.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.607000;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:-20.400011px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.399780px;}
.v1{vertical-align:24.000000px;}
.ls38{letter-spacing:-0.765000px;}
.ls46{letter-spacing:-0.663000px;}
.ls2e{letter-spacing:-0.420000px;}
.ls78{letter-spacing:-0.408000px;}
.ls19{letter-spacing:-0.360000px;}
.ls76{letter-spacing:-0.357000px;}
.ls74{letter-spacing:-0.306000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls73{letter-spacing:-0.255000px;}
.ls1a{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.180000px;}
.ls75{letter-spacing:-0.153000px;}
.ls18{letter-spacing:-0.120000px;}
.ls77{letter-spacing:-0.102000px;}
.ls17{letter-spacing:-0.060000px;}
.ls59{letter-spacing:-0.051000px;}
.ls15{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000039px;}
.ls30{letter-spacing:0.049808px;}
.ls5e{letter-spacing:0.051000px;}
.lse{letter-spacing:0.060000px;}
.ls56{letter-spacing:0.102000px;}
.ls2b{letter-spacing:0.120000px;}
.ls51{letter-spacing:0.127500px;}
.ls1f{letter-spacing:0.150000px;}
.ls53{letter-spacing:0.153000px;}
.ls6e{letter-spacing:0.178500px;}
.ls14{letter-spacing:0.178791px;}
.ls9{letter-spacing:0.180000px;}
.ls5a{letter-spacing:0.204000px;}
.ls2c{letter-spacing:0.209290px;}
.ls31{letter-spacing:0.210000px;}
.ls35{letter-spacing:0.239992px;}
.ls1{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.255000px;}
.ls24{letter-spacing:0.270000px;}
.ls58{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls72{letter-spacing:0.306000px;}
.ls4{letter-spacing:0.330000px;}
.ls42{letter-spacing:0.337790px;}
.ls45{letter-spacing:0.354000px;}
.ls71{letter-spacing:0.357000px;}
.ls22{letter-spacing:0.360000px;}
.ls48{letter-spacing:0.384000px;}
.ls65{letter-spacing:0.408000px;}
.ls1c{letter-spacing:0.420000px;}
.ls54{letter-spacing:0.459000px;}
.ls26{letter-spacing:0.461989px;}
.lsf{letter-spacing:0.480000px;}
.ls41{letter-spacing:0.484191px;}
.ls4d{letter-spacing:0.510000px;}
.ls5{letter-spacing:0.540000px;}
.ls44{letter-spacing:0.545983px;}
.ls55{letter-spacing:0.561000px;}
.ls20{letter-spacing:0.570000px;}
.ls21{letter-spacing:0.600000px;}
.ls52{letter-spacing:0.612000px;}
.ls43{letter-spacing:0.629989px;}
.ls29{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.660000px;}
.ls64{letter-spacing:0.663000px;}
.ls6c{letter-spacing:0.688500px;}
.ls11{letter-spacing:0.690000px;}
.ls62{letter-spacing:0.714000px;}
.ls10{letter-spacing:0.720000px;}
.ls57{letter-spacing:0.739500px;}
.ls61{letter-spacing:0.765000px;}
.ls12{letter-spacing:0.780000px;}
.ls27{letter-spacing:0.804000px;}
.ls28{letter-spacing:0.810000px;}
.ls47{letter-spacing:0.828000px;}
.lsa{letter-spacing:0.840000px;}
.ls5f{letter-spacing:0.867000px;}
.ls4c{letter-spacing:0.882000px;}
.lsc{letter-spacing:0.900000px;}
.ls6d{letter-spacing:0.918000px;}
.ls4b{letter-spacing:0.930000px;}
.ls8{letter-spacing:0.960000px;}
.ls60{letter-spacing:0.969000px;}
.ls2d{letter-spacing:0.990000px;}
.ls2a{letter-spacing:1.020000px;}
.ls5c{letter-spacing:1.045500px;}
.ls23{letter-spacing:1.050000px;}
.ls6f{letter-spacing:1.071000px;}
.ls6{letter-spacing:1.080000px;}
.ls3f{letter-spacing:1.109973px;}
.ls69{letter-spacing:1.122000px;}
.ls7{letter-spacing:1.140000px;}
.ls67{letter-spacing:1.173000px;}
.ls1d{letter-spacing:1.200000px;}
.ls6b{letter-spacing:1.224000px;}
.ls25{letter-spacing:1.230000px;}
.ls3d{letter-spacing:1.260000px;}
.ls1e{letter-spacing:1.320000px;}
.ls63{letter-spacing:1.326000px;}
.ls40{letter-spacing:1.380000px;}
.ls70{letter-spacing:1.397386px;}
.ls6a{letter-spacing:1.428000px;}
.ls49{letter-spacing:1.440000px;}
.ls5b{letter-spacing:1.479000px;}
.ls36{letter-spacing:1.494000px;}
.ls3a{letter-spacing:1.499994px;}
.lsd{letter-spacing:1.500000px;}
.ls68{letter-spacing:1.530000px;}
.ls39{letter-spacing:1.560000px;}
.ls66{letter-spacing:1.581000px;}
.ls4e{letter-spacing:1.620000px;}
.ls4f{letter-spacing:1.632000px;}
.ls3c{letter-spacing:1.740000px;}
.ls3e{letter-spacing:1.800000px;}
.ls3b{letter-spacing:1.974000px;}
.ls2f{letter-spacing:1.980000px;}
.ls50{letter-spacing:2.091000px;}
.ls4a{letter-spacing:2.100000px;}
.lsb{letter-spacing:2.340000px;}
.ls5d{letter-spacing:2.473500px;}
.ls34{letter-spacing:2.570207px;}
.ls0{letter-spacing:3.990000px;}
.ls33{letter-spacing:16.684169px;}
.ls32{letter-spacing:21.305324px;}
.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;}
}
.ws2{word-spacing:-16.416000px;}
.ws72{word-spacing:-16.260000px;}
.ws77{word-spacing:-15.960000px;}
.ws76{word-spacing:-15.930000px;}
.wsa{word-spacing:-15.690000px;}
.ws75{word-spacing:-15.300000px;}
.ws9a{word-spacing:-15.223500px;}
.ws2e{word-spacing:-15.180000px;}
.ws2f{word-spacing:-15.150000px;}
.ws9{word-spacing:-15.000000px;}
.ws8d{word-spacing:-14.832000px;}
.ws8{word-spacing:-14.820000px;}
.ws7{word-spacing:-14.544000px;}
.wsbb{word-spacing:-13.056000px;}
.ws97{word-spacing:-13.005000px;}
.ws56{word-spacing:-12.750000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws6{word-spacing:-11.520000px;}
.ws8c{word-spacing:-11.424000px;}
.ws73{word-spacing:-11.382000px;}
.ws74{word-spacing:-10.710000px;}
.ws53{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.ws55{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws5f{word-spacing:-7.500000px;}
.ws8b{word-spacing:-6.375000px;}
.wsb{word-spacing:-1.890000px;}
.wse{word-spacing:-1.500000px;}
.ws6c{word-spacing:-1.440000px;}
.ws14{word-spacing:-1.380000px;}
.wsbe{word-spacing:-1.326000px;}
.ws61{word-spacing:-1.320000px;}
.ws94{word-spacing:-1.275000px;}
.ws92{word-spacing:-1.260000px;}
.ws5d{word-spacing:-1.200000px;}
.wsb6{word-spacing:-1.173000px;}
.ws1b{word-spacing:-1.140000px;}
.ws44{word-spacing:-1.080000px;}
.ws45{word-spacing:-1.020000px;}
.ws1e{word-spacing:-0.960000px;}
.wsb8{word-spacing:-0.918000px;}
.ws1f{word-spacing:-0.900000px;}
.wsa1{word-spacing:-0.867000px;}
.ws32{word-spacing:-0.840000px;}
.ws7a{word-spacing:-0.780000px;}
.ws15{word-spacing:-0.720000px;}
.wsab{word-spacing:-0.714000px;}
.wsc1{word-spacing:-0.663000px;}
.ws3b{word-spacing:-0.660000px;}
.ws2c{word-spacing:-0.612000px;}
.ws11{word-spacing:-0.600000px;}
.wsd{word-spacing:-0.570000px;}
.wsaa{word-spacing:-0.561000px;}
.ws38{word-spacing:-0.540000px;}
.ws7e{word-spacing:-0.480000px;}
.ws30{word-spacing:-0.420000px;}
.wsb5{word-spacing:-0.408000px;}
.ws12{word-spacing:-0.360000px;}
.ws33{word-spacing:-0.300000px;}
.wsa0{word-spacing:-0.255000px;}
.ws23{word-spacing:-0.240000px;}
.ws27{word-spacing:-0.180000px;}
.wsb4{word-spacing:-0.153000px;}
.ws83{word-spacing:-0.120000px;}
.wsb9{word-spacing:-0.102000px;}
.ws28{word-spacing:-0.060000px;}
.ws9e{word-spacing:-0.051000px;}
.ws52{word-spacing:-0.042010px;}
.wsc{word-spacing:0.000000px;}
.ws41{word-spacing:0.060000px;}
.ws19{word-spacing:0.120000px;}
.ws26{word-spacing:0.180000px;}
.ws18{word-spacing:0.240000px;}
.ws8f{word-spacing:0.300000px;}
.wsbc{word-spacing:0.357000px;}
.ws17{word-spacing:0.360000px;}
.ws22{word-spacing:0.420000px;}
.ws98{word-spacing:0.459000px;}
.ws13{word-spacing:0.480000px;}
.ws6f{word-spacing:0.510000px;}
.ws2a{word-spacing:0.540000px;}
.wsf{word-spacing:0.600000px;}
.ws46{word-spacing:0.660000px;}
.ws42{word-spacing:0.720000px;}
.ws43{word-spacing:0.780000px;}
.wsba{word-spacing:0.816000px;}
.ws5e{word-spacing:0.840000px;}
.ws35{word-spacing:0.900000px;}
.ws9f{word-spacing:0.918000px;}
.ws4d{word-spacing:0.960000px;}
.ws96{word-spacing:0.969000px;}
.ws47{word-spacing:1.020000px;}
.wsb2{word-spacing:1.071000px;}
.ws48{word-spacing:1.080000px;}
.ws5b{word-spacing:1.140000px;}
.ws63{word-spacing:1.260000px;}
.ws95{word-spacing:1.275000px;}
.ws64{word-spacing:1.326000px;}
.wsa8{word-spacing:1.377000px;}
.ws40{word-spacing:1.380000px;}
.ws5a{word-spacing:1.440000px;}
.ws10{word-spacing:1.500000px;}
.wsac{word-spacing:1.530000px;}
.ws84{word-spacing:1.560000px;}
.ws36{word-spacing:1.620000px;}
.wsa5{word-spacing:1.632000px;}
.ws2b{word-spacing:1.680000px;}
.ws99{word-spacing:1.734000px;}
.ws7f{word-spacing:1.740000px;}
.ws4c{word-spacing:1.800000px;}
.wsa4{word-spacing:1.836000px;}
.ws59{word-spacing:1.860000px;}
.wsa7{word-spacing:1.887000px;}
.ws39{word-spacing:1.920000px;}
.ws20{word-spacing:1.980000px;}
.ws31{word-spacing:2.040000px;}
.ws3c{word-spacing:2.100000px;}
.ws24{word-spacing:2.160000px;}
.ws62{word-spacing:2.220000px;}
.ws80{word-spacing:2.280000px;}
.wsa2{word-spacing:2.295000px;}
.ws65{word-spacing:2.340000px;}
.wsc0{word-spacing:2.346000px;}
.ws4b{word-spacing:2.400000px;}
.wsbd{word-spacing:2.448000px;}
.ws3f{word-spacing:2.460000px;}
.ws1c{word-spacing:2.520000px;}
.ws4e{word-spacing:2.580000px;}
.wsb7{word-spacing:2.601000px;}
.ws29{word-spacing:2.640000px;}
.ws1d{word-spacing:2.700000px;}
.ws5c{word-spacing:2.760000px;}
.wsa3{word-spacing:2.805000px;}
.ws6d{word-spacing:2.820000px;}
.wsc3{word-spacing:2.856000px;}
.ws4f{word-spacing:2.880000px;}
.ws16{word-spacing:3.000000px;}
.ws8e{word-spacing:3.060000px;}
.ws50{word-spacing:3.120000px;}
.wsc2{word-spacing:3.162000px;}
.ws85{word-spacing:3.180000px;}
.ws60{word-spacing:3.240000px;}
.ws9c{word-spacing:3.264000px;}
.ws3e{word-spacing:3.300000px;}
.wsbf{word-spacing:3.315000px;}
.ws3d{word-spacing:3.420000px;}
.ws1a{word-spacing:3.540000px;}
.ws49{word-spacing:3.600000px;}
.wsaf{word-spacing:3.621000px;}
.ws3a{word-spacing:3.660000px;}
.ws34{word-spacing:3.840000px;}
.wsad{word-spacing:3.876000px;}
.ws4a{word-spacing:3.900000px;}
.ws90{word-spacing:4.020000px;}
.wsb1{word-spacing:4.029000px;}
.ws7d{word-spacing:4.140000px;}
.ws71{word-spacing:4.182000px;}
.ws37{word-spacing:4.200000px;}
.wsb3{word-spacing:4.233000px;}
.ws58{word-spacing:4.320000px;}
.ws79{word-spacing:4.500000px;}
.ws6b{word-spacing:4.620000px;}
.ws6e{word-spacing:4.680000px;}
.wsa6{word-spacing:4.692000px;}
.ws7b{word-spacing:4.920000px;}
.ws82{word-spacing:4.980000px;}
.ws69{word-spacing:5.040000px;}
.ws6a{word-spacing:5.100000px;}
.wsb0{word-spacing:5.202000px;}
.ws81{word-spacing:5.220000px;}
.ws25{word-spacing:5.280000px;}
.ws9b{word-spacing:5.355000px;}
.ws86{word-spacing:5.520000px;}
.ws70{word-spacing:5.661000px;}
.ws89{word-spacing:5.763000px;}
.wsae{word-spacing:5.814000px;}
.ws91{word-spacing:5.940000px;}
.wsa9{word-spacing:6.120000px;}
.ws87{word-spacing:6.579000px;}
.ws57{word-spacing:7.740000px;}
.ws7c{word-spacing:8.100000px;}
.ws93{word-spacing:8.670000px;}
.ws21{word-spacing:9.540000px;}
.ws88{word-spacing:10.302000px;}
.ws9d{word-spacing:10.455000px;}
.wsc4{word-spacing:13.668000px;}
.ws51{word-spacing:16.624147px;}
.wsc5{word-spacing:17.799000px;}
.ws8a{word-spacing:29.478000px;}
.ws54{word-spacing:63.648000px;}
.ws2d{word-spacing:72.267000px;}
.ws78{word-spacing:81.243000px;}
.ws66{word-spacing:142.953000px;}
.ws68{word-spacing:162.690000px;}
.ws67{word-spacing:221.391000px;}
._6{margin-left:-16.575000px;}
._d{margin-left:-13.680000px;}
._12{margin-left:-12.189000px;}
._1f{margin-left:-11.070000px;}
._1e{margin-left:-9.480000px;}
._b{margin-left:-8.460000px;}
._3{margin-left:-6.304716px;}
._1{margin-left:-4.622700px;}
._4{margin-left:-2.784000px;}
._0{margin-left:-1.632000px;}
._2{width:1.228800px;}
._5{width:3.115200px;}
._20{width:4.676700px;}
._e{width:5.892000px;}
._a{width:7.170000px;}
._c{width:8.947188px;}
._f{width:10.436400px;}
._33{width:11.883000px;}
._10{width:15.477900px;}
._7{width:18.360000px;}
._2e{width:35.511299px;}
._8{width:54.621000px;}
._2a{width:68.390993px;}
._27{width:72.114000px;}
._11{width:75.276000px;}
._26{width:80.375993px;}
._29{width:93.125993px;}
._24{width:97.614000px;}
._25{width:100.470000px;}
._2c{width:105.875993px;}
._13{width:107.457000px;}
._31{width:137.955000px;}
._30{width:144.431989px;}
._28{width:163.914000px;}
._2f{width:168.453000px;}
._32{width:171.258000px;}
._16{width:182.784000px;}
._17{width:196.146000px;}
._18{width:221.543993px;}
._2b{width:232.050000px;}
._14{width:233.529000px;}
._15{width:249.492000px;}
._1a{width:252.857991px;}
._1b{width:255.663000px;}
._2d{width:281.418000px;}
._1d{width:309.365991px;}
._1c{width:334.866000px;}
._19{width:360.366000px;}
._23{width:511.122000px;}
._22{width:629.901000px;}
._21{width:782.964261px;}
._9{width:2244.153067px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fsa{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:60.014997px;}
.fsb{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yac{bottom:0.268948px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.yab{bottom:102.201004px;}
.y33{bottom:112.938300px;}
.y69{bottom:113.415344px;}
.y199{bottom:113.423100px;}
.y134{bottom:113.718996px;}
.y83{bottom:114.432289px;}
.y193{bottom:114.729275px;}
.y1d0{bottom:114.735260px;}
.yd0{bottom:114.874809px;}
.y2e{bottom:122.461349px;}
.y198{bottom:128.417100px;}
.y133{bottom:128.712996px;}
.y68{bottom:132.165344px;}
.y32{bottom:133.032303px;}
.y82{bottom:133.182289px;}
.y192{bottom:133.479275px;}
.y1cf{bottom:133.485260px;}
.ycf{bottom:133.624809px;}
.yaa{bottom:133.624969px;}
.y1de{bottom:140.429550px;}
.y2d{bottom:141.211349px;}
.y132{bottom:143.706996px;}
.y67{bottom:150.915344px;}
.y81{bottom:151.932289px;}
.y191{bottom:152.229275px;}
.y1ce{bottom:152.235260px;}
.yce{bottom:152.374809px;}
.ya9{bottom:152.374969px;}
.y1dd{bottom:155.423550px;}
.y1ab{bottom:157.108804px;}
.y31{bottom:158.033404px;}
.y2c{bottom:159.961349px;}
.y66{bottom:169.665344px;}
.y80{bottom:170.682289px;}
.y190{bottom:170.979275px;}
.y1cd{bottom:170.985260px;}
.ycd{bottom:171.124809px;}
.ya8{bottom:171.124969px;}
.y13b{bottom:172.127843px;}
.y30{bottom:173.027404px;}
.y1aa{bottom:175.902304px;}
.y2b{bottom:178.711349px;}
.y65{bottom:188.415344px;}
.y1dc{bottom:189.173550px;}
.y7f{bottom:189.432289px;}
.y18f{bottom:189.729275px;}
.y1cc{bottom:189.735260px;}
.ycc{bottom:189.874809px;}
.ya7{bottom:189.874969px;}
.y13a{bottom:190.921343px;}
.y21b{bottom:191.584823px;}
.y1a9{bottom:194.619304px;}
.y2a{bottom:197.461349px;}
.y2f{bottom:203.844154px;}
.y21a{bottom:206.578823px;}
.y64{bottom:207.165344px;}
.y7e{bottom:208.182289px;}
.y18e{bottom:208.479275px;}
.y1cb{bottom:208.485260px;}
.ycb{bottom:208.624809px;}
.ya6{bottom:208.624969px;}
.y139{bottom:209.638343px;}
.y131{bottom:215.438496px;}
.y29{bottom:216.211349px;}
.y219{bottom:221.572823px;}
.y19c{bottom:222.656554px;}
.y19f{bottom:222.669304px;}
.y1a2{bottom:222.682054px;}
.y1a5{bottom:222.694804px;}
.y1a8{bottom:222.707554px;}
.y63{bottom:225.915344px;}
.y7d{bottom:226.932289px;}
.y18d{bottom:227.229275px;}
.y1ca{bottom:227.235260px;}
.ya5{bottom:227.374969px;}
.y138{bottom:228.355343px;}
.y130{bottom:230.432496px;}
.y28{bottom:234.961349px;}
.y218{bottom:236.566823px;}
.y19b{bottom:237.650554px;}
.y19e{bottom:237.663304px;}
.y1a1{bottom:237.676054px;}
.y1a4{bottom:237.688804px;}
.y1a7{bottom:237.701554px;}
.y62{bottom:244.665344px;}
.y12f{bottom:245.426496px;}
.y7c{bottom:245.682289px;}
.y18c{bottom:245.979275px;}
.y1c9{bottom:245.985260px;}
.yca{bottom:246.124809px;}
.ya4{bottom:246.124969px;}
.y137{bottom:247.072343px;}
.y1db{bottom:249.869688px;}
.y253{bottom:251.063540px;}
.y217{bottom:251.560823px;}
.y19a{bottom:252.644554px;}
.y19d{bottom:252.657304px;}
.y1a0{bottom:252.670054px;}
.y1a3{bottom:252.682804px;}
.y1a6{bottom:252.695554px;}
.y26{bottom:253.711349px;}
.y12e{bottom:260.420496px;}
.y61{bottom:263.415344px;}
.y7b{bottom:264.432289px;}
.y18b{bottom:264.729275px;}
.y1c8{bottom:264.735260px;}
.y1da{bottom:264.863688px;}
.ya3{bottom:264.874969px;}
.y252{bottom:266.057540px;}
.y216{bottom:266.554823px;}
.y25{bottom:272.461349px;}
.y136{bottom:275.160593px;}
.y12d{bottom:275.414496px;}
.y197{bottom:278.153100px;}
.y1d9{bottom:279.857688px;}
.y215{bottom:281.548823px;}
.y60{bottom:282.165344px;}
.y7a{bottom:283.182312px;}
.y18a{bottom:283.479275px;}
.y1c7{bottom:283.485260px;}
.yc9{bottom:283.624809px;}
.ya2{bottom:283.624969px;}
.y12c{bottom:290.408496px;}
.y24{bottom:291.211349px;}
.y196{bottom:293.147100px;}
.y1d8{bottom:294.851688px;}
.y214{bottom:296.542823px;}
.y251{bottom:296.899790px;}
.y135{bottom:299.576843px;}
.y5f{bottom:300.915344px;}
.y79{bottom:301.932312px;}
.y189{bottom:302.229275px;}
.y1c6{bottom:302.235260px;}
.ya1{bottom:302.374969px;}
.y12b{bottom:305.402496px;}
.y195{bottom:308.141100px;}
.y1d7{bottom:309.845688px;}
.y23{bottom:309.961349px;}
.y213{bottom:311.536823px;}
.y250{bottom:311.893790px;}
.y5e{bottom:319.665344px;}
.y78{bottom:320.682312px;}
.y188{bottom:320.979275px;}
.y1c5{bottom:320.985260px;}
.ya0{bottom:321.124969px;}
.y194{bottom:323.135100px;}
.y1d6{bottom:324.839688px;}
.y212{bottom:326.530823px;}
.y24f{bottom:326.887790px;}
.y22{bottom:328.711349px;}
.y5d{bottom:338.415344px;}
.y77{bottom:339.432312px;}
.y187{bottom:339.729275px;}
.y1c4{bottom:339.735260px;}
.yc8{bottom:339.874786px;}
.y9f{bottom:339.874969px;}
.y211{bottom:341.524823px;}
.y24e{bottom:341.881790px;}
.y21{bottom:347.461349px;}
.y210{bottom:356.518823px;}
.y24d{bottom:356.875790px;}
.y5c{bottom:357.165344px;}
.y76{bottom:358.182312px;}
.y186{bottom:358.479275px;}
.y1c3{bottom:358.485260px;}
.y1d5{bottom:358.550688px;}
.yc7{bottom:358.624786px;}
.y9e{bottom:358.624969px;}
.y20{bottom:366.211349px;}
.y20f{bottom:371.512823px;}
.y24c{bottom:371.869790px;}
.y1d4{bottom:373.544688px;}
.y5b{bottom:375.915344px;}
.y15e{bottom:376.044296px;}
.y10d{bottom:376.183823px;}
.y75{bottom:376.932312px;}
.y185{bottom:377.229275px;}
.y1c2{bottom:377.235260px;}
.y128{bottom:377.235306px;}
.yc6{bottom:377.374786px;}
.y9d{bottom:377.374969px;}
.y1f{bottom:384.961349px;}
.y20e{bottom:386.506823px;}
.y24b{bottom:386.863790px;}
.y1d3{bottom:388.538688px;}
.y5a{bottom:394.665344px;}
.y15d{bottom:394.794296px;}
.y10c{bottom:394.933823px;}
.y74{bottom:395.682312px;}
.y184{bottom:395.979275px;}
.y1c1{bottom:395.985260px;}
.y127{bottom:395.985306px;}
.yc5{bottom:396.124786px;}
.y9c{bottom:396.124969px;}
.y20d{bottom:401.500823px;}
.y24a{bottom:401.857790px;}
.y1d2{bottom:403.532688px;}
.y1e{bottom:403.711349px;}
.y59{bottom:413.415344px;}
.y15c{bottom:413.544296px;}
.y10b{bottom:413.683823px;}
.y73{bottom:414.432312px;}
.y183{bottom:414.729275px;}
.y1c0{bottom:414.735260px;}
.y126{bottom:414.735306px;}
.yc4{bottom:414.874786px;}
.y9b{bottom:414.874969px;}
.y20c{bottom:416.494823px;}
.y249{bottom:416.851790px;}
.y1d1{bottom:418.526688px;}
.y1d{bottom:422.461349px;}
.y20b{bottom:431.488823px;}
.y248{bottom:431.845790px;}
.y58{bottom:432.165344px;}
.y15b{bottom:432.294296px;}
.y10a{bottom:432.433823px;}
.y72{bottom:433.182312px;}
.y182{bottom:433.479275px;}
.y1bf{bottom:433.485260px;}
.y125{bottom:433.485306px;}
.yc3{bottom:433.624786px;}
.y9a{bottom:433.624969px;}
.y1c{bottom:441.211349px;}
.y20a{bottom:446.482823px;}
.y247{bottom:446.839790px;}
.y57{bottom:450.915344px;}
.y15a{bottom:451.044296px;}
.y109{bottom:451.183823px;}
.y71{bottom:451.932312px;}
.y181{bottom:452.229275px;}
.y1be{bottom:452.235260px;}
.y124{bottom:452.235306px;}
.yc2{bottom:452.374786px;}
.y99{bottom:452.374969px;}
.y1b{bottom:459.961349px;}
.y209{bottom:461.476823px;}
.y246{bottom:461.833790px;}
.y56{bottom:469.665344px;}
.y159{bottom:469.794296px;}
.y108{bottom:469.933823px;}
.y70{bottom:470.682312px;}
.y180{bottom:470.979275px;}
.y1bd{bottom:470.985260px;}
.y123{bottom:470.985306px;}
.yc1{bottom:471.124786px;}
.y98{bottom:471.124969px;}
.y208{bottom:476.470823px;}
.y245{bottom:476.827790px;}
.y1a{bottom:478.711349px;}
.y55{bottom:488.415344px;}
.y158{bottom:488.544296px;}
.y107{bottom:488.683823px;}
.y6f{bottom:489.432312px;}
.y17f{bottom:489.729275px;}
.y1bc{bottom:489.735260px;}
.y122{bottom:489.735306px;}
.yc0{bottom:489.874786px;}
.y97{bottom:489.874969px;}
.y207{bottom:491.464823px;}
.y244{bottom:491.821790px;}
.y27{bottom:497.461349px;}
.y206{bottom:506.458823px;}
.y243{bottom:506.815790px;}
.y54{bottom:507.165344px;}
.y157{bottom:507.294296px;}
.y106{bottom:507.433823px;}
.y6e{bottom:508.182312px;}
.y17e{bottom:508.479275px;}
.y1bb{bottom:508.485260px;}
.y121{bottom:508.485306px;}
.ybf{bottom:508.624786px;}
.y96{bottom:508.624969px;}
.y19{bottom:516.211349px;}
.y205{bottom:521.452823px;}
.y242{bottom:521.809790px;}
.y53{bottom:525.915344px;}
.y156{bottom:526.044296px;}
.y105{bottom:526.183823px;}
.y6d{bottom:526.932312px;}
.y17d{bottom:527.229275px;}
.y1ba{bottom:527.235260px;}
.y120{bottom:527.235306px;}
.ybe{bottom:527.374786px;}
.y95{bottom:527.374969px;}
.y204{bottom:536.446823px;}
.y241{bottom:536.803790px;}
.y52{bottom:544.665344px;}
.y155{bottom:544.794296px;}
.y104{bottom:544.933823px;}
.y6c{bottom:545.682312px;}
.y17c{bottom:545.979275px;}
.y1b9{bottom:545.985260px;}
.y11f{bottom:545.985306px;}
.ybd{bottom:546.124786px;}
.y94{bottom:546.124969px;}
.y203{bottom:551.440823px;}
.y240{bottom:551.797790px;}
.y51{bottom:563.415344px;}
.y154{bottom:563.544296px;}
.y103{bottom:563.683823px;}
.y6b{bottom:564.432312px;}
.y17b{bottom:564.729275px;}
.y1b8{bottom:564.735260px;}
.y11e{bottom:564.735306px;}
.ybc{bottom:564.874786px;}
.y93{bottom:564.874969px;}
.y202{bottom:566.434823px;}
.y23f{bottom:566.791790px;}
.y18{bottom:572.461395px;}
.y201{bottom:581.428823px;}
.y23e{bottom:581.785790px;}
.y50{bottom:582.165344px;}
.y153{bottom:582.294296px;}
.y102{bottom:582.433823px;}
.y17a{bottom:583.479275px;}
.y1b7{bottom:583.485260px;}
.y11d{bottom:583.485306px;}
.ybb{bottom:583.624786px;}
.y92{bottom:583.624969px;}
.y200{bottom:596.422823px;}
.y23d{bottom:596.779790px;}
.y4f{bottom:600.915344px;}
.y152{bottom:601.044296px;}
.y101{bottom:601.183823px;}
.y6a{bottom:601.932312px;}
.y179{bottom:602.229275px;}
.y1b6{bottom:602.235260px;}
.y11c{bottom:602.235306px;}
.yba{bottom:602.374786px;}
.y91{bottom:602.374969px;}
.y17{bottom:609.961395px;}
.y1ff{bottom:611.416823px;}
.y23c{bottom:611.773790px;}
.yfa{bottom:618.493790px;}
.y4e{bottom:619.665344px;}
.y151{bottom:619.794296px;}
.y100{bottom:619.933823px;}
.y178{bottom:620.979275px;}
.y1b5{bottom:620.985260px;}
.y11b{bottom:620.985306px;}
.yb9{bottom:621.124786px;}
.y90{bottom:621.124969px;}
.y1fe{bottom:626.410823px;}
.y23b{bottom:626.767790px;}
.y16{bottom:628.711395px;}
.yf9{bottom:633.487790px;}
.y4d{bottom:638.415344px;}
.y150{bottom:638.544296px;}
.yff{bottom:638.683823px;}
.y177{bottom:639.729275px;}
.y1b4{bottom:639.735260px;}
.y11a{bottom:639.735306px;}
.yb8{bottom:639.874786px;}
.y8f{bottom:639.874969px;}
.y1fd{bottom:641.404823px;}
.y23a{bottom:641.761790px;}
.y15{bottom:647.461395px;}
.yf8{bottom:648.481790px;}
.y1fc{bottom:656.398823px;}
.y239{bottom:656.755790px;}
.y4c{bottom:657.165344px;}
.yfe{bottom:657.433823px;}
.y176{bottom:658.479275px;}
.y1b3{bottom:658.485260px;}
.y119{bottom:658.485306px;}
.yb7{bottom:658.624786px;}
.y8e{bottom:658.624969px;}
.yf7{bottom:663.475790px;}
.y14{bottom:666.211395px;}
.y1fb{bottom:671.392823px;}
.y238{bottom:671.749790px;}
.y4b{bottom:675.915344px;}
.y14f{bottom:676.044296px;}
.yfd{bottom:676.183823px;}
.y175{bottom:677.229275px;}
.y1b2{bottom:677.235260px;}
.y118{bottom:677.235306px;}
.yb6{bottom:677.374786px;}
.y8d{bottom:677.374969px;}
.yf6{bottom:678.469790px;}
.y13{bottom:684.961395px;}
.y1fa{bottom:686.386823px;}
.y237{bottom:686.743790px;}
.yf5{bottom:693.463790px;}
.y4a{bottom:694.665344px;}
.yfc{bottom:694.933823px;}
.y174{bottom:695.979275px;}
.y1b1{bottom:695.985260px;}
.y117{bottom:695.985306px;}
.yb5{bottom:696.124786px;}
.y8c{bottom:696.124969px;}
.y1f9{bottom:701.380823px;}
.y236{bottom:701.737790px;}
.y12{bottom:703.711395px;}
.yf4{bottom:708.457790px;}
.y49{bottom:713.415344px;}
.y173{bottom:714.729275px;}
.y1b0{bottom:714.735260px;}
.y116{bottom:714.735306px;}
.yb4{bottom:714.874786px;}
.y8b{bottom:714.874969px;}
.y1f8{bottom:716.374823px;}
.y235{bottom:716.731790px;}
.y11{bottom:722.461395px;}
.yf3{bottom:723.451790px;}
.y1f7{bottom:731.368823px;}
.y234{bottom:731.725790px;}
.y48{bottom:732.165344px;}
.y14e{bottom:732.294342px;}
.yfb{bottom:732.433823px;}
.y172{bottom:733.479275px;}
.y1af{bottom:733.485260px;}
.y115{bottom:733.485306px;}
.yb3{bottom:733.624786px;}
.y8a{bottom:733.624969px;}
.yf2{bottom:738.445790px;}
.y10{bottom:741.211395px;}
.y1f6{bottom:746.362823px;}
.y233{bottom:746.719790px;}
.y47{bottom:750.915344px;}
.y14d{bottom:751.044342px;}
.y171{bottom:752.229275px;}
.y1ae{bottom:752.235260px;}
.yb2{bottom:752.374786px;}
.y89{bottom:752.374969px;}
.yf1{bottom:753.439790px;}
.yf{bottom:759.961395px;}
.y1f5{bottom:761.356823px;}
.y232{bottom:761.713790px;}
.yf0{bottom:768.433790px;}
.y46{bottom:769.665344px;}
.y14c{bottom:769.794342px;}
.y170{bottom:770.979275px;}
.y114{bottom:770.985260px;}
.yb1{bottom:771.124786px;}
.y88{bottom:771.124969px;}
.y1f4{bottom:776.350823px;}
.y231{bottom:776.707790px;}
.ye{bottom:778.711395px;}
.yef{bottom:783.427790px;}
.y45{bottom:788.415344px;}
.y14b{bottom:788.544342px;}
.y16f{bottom:789.729275px;}
.y1ad{bottom:789.735260px;}
.yb0{bottom:789.874786px;}
.y87{bottom:789.874969px;}
.y12a{bottom:790.756763px;}
.y1f3{bottom:791.344823px;}
.y230{bottom:791.701790px;}
.yd{bottom:797.461395px;}
.yee{bottom:798.421790px;}
.y129{bottom:805.750763px;}
.y1f2{bottom:806.338823px;}
.y22f{bottom:806.695790px;}
.y44{bottom:807.165344px;}
.y14a{bottom:807.294342px;}
.y16e{bottom:808.479275px;}
.y1ac{bottom:808.485260px;}
.yaf{bottom:808.624786px;}
.y86{bottom:808.624969px;}
.yed{bottom:813.415790px;}
.yc{bottom:816.211395px;}
.y1f1{bottom:821.332823px;}
.y22e{bottom:821.689790px;}
.y43{bottom:825.915344px;}
.y149{bottom:826.044342px;}
.y16d{bottom:827.229275px;}
.y113{bottom:827.235260px;}
.yae{bottom:827.374786px;}
.y85{bottom:827.374969px;}
.yec{bottom:828.409790px;}
.yb{bottom:834.961395px;}
.y1f0{bottom:836.326823px;}
.y22d{bottom:836.683790px;}
.y42{bottom:844.665344px;}
.y148{bottom:844.794342px;}
.y16c{bottom:845.979275px;}
.y112{bottom:845.985260px;}
.yad{bottom:846.124786px;}
.y84{bottom:846.124969px;}
.y1ef{bottom:851.320823px;}
.y22c{bottom:851.677790px;}
.y41{bottom:863.415344px;}
.y147{bottom:863.544342px;}
.y16b{bottom:864.729275px;}
.y111{bottom:864.735260px;}
.y1ee{bottom:866.314823px;}
.y22b{bottom:866.671790px;}
.ya{bottom:879.144153px;}
.y1ed{bottom:881.308823px;}
.y22a{bottom:881.665790px;}
.y40{bottom:882.165344px;}
.y146{bottom:882.294342px;}
.y16a{bottom:883.479275px;}
.y110{bottom:883.485260px;}
.y9{bottom:894.138153px;}
.y1ec{bottom:896.302823px;}
.y229{bottom:896.659790px;}
.ye0{bottom:897.862524px;}
.y3f{bottom:900.915344px;}
.y145{bottom:901.044342px;}
.y169{bottom:902.229275px;}
.ye9{bottom:902.235260px;}
.y1eb{bottom:911.296823px;}
.y228{bottom:911.653790px;}
.ydf{bottom:916.656024px;}
.y3e{bottom:919.665344px;}
.y144{bottom:919.794342px;}
.y168{bottom:920.979275px;}
.ye8{bottom:920.985260px;}
.y1ea{bottom:926.290823px;}
.y227{bottom:926.647790px;}
.yde{bottom:935.373024px;}
.y8{bottom:936.738190px;}
.y3d{bottom:938.415344px;}
.y143{bottom:938.544342px;}
.y167{bottom:939.729275px;}
.yeb{bottom:939.735260px;}
.y1e9{bottom:941.284823px;}
.y226{bottom:941.641790px;}
.ydd{bottom:954.090024px;}
.y1e8{bottom:956.278823px;}
.y225{bottom:956.635790px;}
.y3c{bottom:957.165344px;}
.y142{bottom:957.294342px;}
.y166{bottom:958.479275px;}
.ye7{bottom:958.485260px;}
.y1e7{bottom:971.272823px;}
.y224{bottom:971.629790px;}
.ydc{bottom:972.807024px;}
.y3b{bottom:975.915344px;}
.y141{bottom:976.044342px;}
.y165{bottom:977.229275px;}
.yea{bottom:977.235260px;}
.y7{bottom:981.424622px;}
.y1e6{bottom:986.266823px;}
.y223{bottom:986.623790px;}
.ydb{bottom:991.524024px;}
.y3a{bottom:994.665344px;}
.y140{bottom:994.794342px;}
.y164{bottom:995.979275px;}
.ye6{bottom:995.985260px;}
.y1e5{bottom:1001.260823px;}
.y222{bottom:1001.617790px;}
.y6{bottom:1008.424622px;}
.y39{bottom:1013.415344px;}
.y13f{bottom:1013.544342px;}
.y163{bottom:1014.729275px;}
.ye5{bottom:1014.735260px;}
.y1e4{bottom:1016.254823px;}
.y221{bottom:1016.611790px;}
.yda{bottom:1019.618274px;}
.yd5{bottom:1019.624274px;}
.y1e3{bottom:1031.248823px;}
.y220{bottom:1031.605790px;}
.y38{bottom:1032.165344px;}
.y13e{bottom:1032.294342px;}
.y162{bottom:1033.479275px;}
.ye4{bottom:1033.485260px;}
.yd9{bottom:1034.612274px;}
.yd4{bottom:1034.618274px;}
.yd7{bottom:1034.631024px;}
.y1e2{bottom:1046.242823px;}
.y21f{bottom:1046.599790px;}
.yd8{bottom:1049.606274px;}
.yd3{bottom:1049.612274px;}
.yd6{bottom:1049.625024px;}
.y37{bottom:1050.915344px;}
.y13d{bottom:1051.044342px;}
.y161{bottom:1052.229275px;}
.ye3{bottom:1052.235260px;}
.y1e1{bottom:1061.236823px;}
.y21e{bottom:1061.593790px;}
.y36{bottom:1069.665344px;}
.y160{bottom:1070.979275px;}
.y10f{bottom:1070.983818px;}
.ye2{bottom:1070.985260px;}
.yd2{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y1e0{bottom:1076.230823px;}
.y21d{bottom:1076.587790px;}
.y35{bottom:1088.415344px;}
.y13c{bottom:1088.544342px;}
.y15f{bottom:1089.729275px;}
.y10e{bottom:1089.733818px;}
.ye1{bottom:1089.735260px;}
.yd1{bottom:1090.102844px;}
.y1df{bottom:1091.224823px;}
.y21c{bottom:1091.581790px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y34{bottom:1127.482361px;}
.h12{height:13.500000px;}
.hf{height:25.454099px;}
.hd{height:36.363000px;}
.he{height:36.855469px;}
.h2{height:42.048000px;}
.h9{height:42.780000px;}
.h4{height:44.676000px;}
.h17{height:45.778879px;}
.h18{height:45.829879px;}
.h16{height:45.853879px;}
.h15{height:49.113000px;}
.h1a{height:52.173000px;}
.h13{height:52.762580px;}
.h19{height:53.805000px;}
.h10{height:53.945908px;}
.h11{height:53.946000px;}
.h3{height:54.862258px;}
.h5{height:55.404000px;}
.ha{height:57.780000px;}
.h8{height:59.340000px;}
.hc{height:61.380000px;}
.h14{height:64.680000px;}
.h7{height:64.824000px;}
.hb{height:71.208000px;}
.h6{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:143.805004px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa{left:-1.176596px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x8{left:78.746400px;}
.x4{left:85.181849px;}
.x9{left:93.545412px;}
.x7{left:97.796100px;}
.x18{left:102.048152px;}
.x13{left:127.777652px;}
.x14{left:211.698149px;}
.x11{left:267.874652px;}
.x15{left:283.008899px;}
.xb{left:287.473660px;}
.xc{left:349.030660px;}
.x16{left:365.310149px;}
.xd{left:420.300000px;}
.x5{left:459.215389px;}
.x6{left:476.225389px;}
.x17{left:484.725290px;}
.xe{left:493.918500px;}
.x12{left:506.664734px;}
.xf{left:666.987000px;}
.x1{left:728.220612px;}
.x10{left:740.988000px;}
.x2{left:755.489868px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.133138pt;}
.v1{vertical-align:21.333333pt;}
.ls38{letter-spacing:-0.680000pt;}
.ls46{letter-spacing:-0.589333pt;}
.ls2e{letter-spacing:-0.373333pt;}
.ls78{letter-spacing:-0.362667pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls76{letter-spacing:-0.317333pt;}
.ls74{letter-spacing:-0.272000pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls73{letter-spacing:-0.226667pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls75{letter-spacing:-0.136000pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls77{letter-spacing:-0.090667pt;}
.ls17{letter-spacing:-0.053333pt;}
.ls59{letter-spacing:-0.045333pt;}
.ls15{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000035pt;}
.ls30{letter-spacing:0.044274pt;}
.ls5e{letter-spacing:0.045333pt;}
.lse{letter-spacing:0.053333pt;}
.ls56{letter-spacing:0.090667pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls51{letter-spacing:0.113333pt;}
.ls1f{letter-spacing:0.133333pt;}
.ls53{letter-spacing:0.136000pt;}
.ls6e{letter-spacing:0.158667pt;}
.ls14{letter-spacing:0.158926pt;}
.ls9{letter-spacing:0.160000pt;}
.ls5a{letter-spacing:0.181333pt;}
.ls2c{letter-spacing:0.186035pt;}
.ls31{letter-spacing:0.186667pt;}
.ls35{letter-spacing:0.213326pt;}
.ls1{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.226667pt;}
.ls24{letter-spacing:0.240000pt;}
.ls58{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls72{letter-spacing:0.272000pt;}
.ls4{letter-spacing:0.293333pt;}
.ls42{letter-spacing:0.300258pt;}
.ls45{letter-spacing:0.314667pt;}
.ls71{letter-spacing:0.317333pt;}
.ls22{letter-spacing:0.320000pt;}
.ls48{letter-spacing:0.341333pt;}
.ls65{letter-spacing:0.362667pt;}
.ls1c{letter-spacing:0.373333pt;}
.ls54{letter-spacing:0.408000pt;}
.ls26{letter-spacing:0.410657pt;}
.lsf{letter-spacing:0.426667pt;}
.ls41{letter-spacing:0.430392pt;}
.ls4d{letter-spacing:0.453333pt;}
.ls5{letter-spacing:0.480000pt;}
.ls44{letter-spacing:0.485318pt;}
.ls55{letter-spacing:0.498667pt;}
.ls20{letter-spacing:0.506667pt;}
.ls21{letter-spacing:0.533333pt;}
.ls52{letter-spacing:0.544000pt;}
.ls43{letter-spacing:0.559990pt;}
.ls29{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.586667pt;}
.ls64{letter-spacing:0.589333pt;}
.ls6c{letter-spacing:0.612000pt;}
.ls11{letter-spacing:0.613333pt;}
.ls62{letter-spacing:0.634667pt;}
.ls10{letter-spacing:0.640000pt;}
.ls57{letter-spacing:0.657333pt;}
.ls61{letter-spacing:0.680000pt;}
.ls12{letter-spacing:0.693333pt;}
.ls27{letter-spacing:0.714667pt;}
.ls28{letter-spacing:0.720000pt;}
.ls47{letter-spacing:0.736000pt;}
.lsa{letter-spacing:0.746667pt;}
.ls5f{letter-spacing:0.770667pt;}
.ls4c{letter-spacing:0.784000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls6d{letter-spacing:0.816000pt;}
.ls4b{letter-spacing:0.826667pt;}
.ls8{letter-spacing:0.853333pt;}
.ls60{letter-spacing:0.861333pt;}
.ls2d{letter-spacing:0.880000pt;}
.ls2a{letter-spacing:0.906667pt;}
.ls5c{letter-spacing:0.929333pt;}
.ls23{letter-spacing:0.933333pt;}
.ls6f{letter-spacing:0.952000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls3f{letter-spacing:0.986643pt;}
.ls69{letter-spacing:0.997333pt;}
.ls7{letter-spacing:1.013333pt;}
.ls67{letter-spacing:1.042667pt;}
.ls1d{letter-spacing:1.066667pt;}
.ls6b{letter-spacing:1.088000pt;}
.ls25{letter-spacing:1.093333pt;}
.ls3d{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:1.173333pt;}
.ls63{letter-spacing:1.178667pt;}
.ls40{letter-spacing:1.226667pt;}
.ls70{letter-spacing:1.242121pt;}
.ls6a{letter-spacing:1.269333pt;}
.ls49{letter-spacing:1.280000pt;}
.ls5b{letter-spacing:1.314667pt;}
.ls36{letter-spacing:1.328000pt;}
.ls3a{letter-spacing:1.333328pt;}
.lsd{letter-spacing:1.333333pt;}
.ls68{letter-spacing:1.360000pt;}
.ls39{letter-spacing:1.386667pt;}
.ls66{letter-spacing:1.405333pt;}
.ls4e{letter-spacing:1.440000pt;}
.ls4f{letter-spacing:1.450667pt;}
.ls3c{letter-spacing:1.546667pt;}
.ls3e{letter-spacing:1.600000pt;}
.ls3b{letter-spacing:1.754667pt;}
.ls2f{letter-spacing:1.760000pt;}
.ls50{letter-spacing:1.858667pt;}
.ls4a{letter-spacing:1.866667pt;}
.lsb{letter-spacing:2.080000pt;}
.ls5d{letter-spacing:2.198667pt;}
.ls34{letter-spacing:2.284628pt;}
.ls0{letter-spacing:3.546667pt;}
.ls33{letter-spacing:14.830373pt;}
.ls32{letter-spacing:18.938066pt;}
.ws2{word-spacing:-14.592000pt;}
.ws72{word-spacing:-14.453333pt;}
.ws77{word-spacing:-14.186667pt;}
.ws76{word-spacing:-14.160000pt;}
.wsa{word-spacing:-13.946667pt;}
.ws75{word-spacing:-13.600000pt;}
.ws9a{word-spacing:-13.532000pt;}
.ws2e{word-spacing:-13.493333pt;}
.ws2f{word-spacing:-13.466667pt;}
.ws9{word-spacing:-13.333333pt;}
.ws8d{word-spacing:-13.184000pt;}
.ws8{word-spacing:-13.173333pt;}
.ws7{word-spacing:-12.928000pt;}
.wsbb{word-spacing:-11.605333pt;}
.ws97{word-spacing:-11.560000pt;}
.ws56{word-spacing:-11.333333pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws8c{word-spacing:-10.154667pt;}
.ws73{word-spacing:-10.117333pt;}
.ws74{word-spacing:-9.520000pt;}
.ws53{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws55{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws5f{word-spacing:-6.666667pt;}
.ws8b{word-spacing:-5.666667pt;}
.wsb{word-spacing:-1.680000pt;}
.wse{word-spacing:-1.333333pt;}
.ws6c{word-spacing:-1.280000pt;}
.ws14{word-spacing:-1.226667pt;}
.wsbe{word-spacing:-1.178667pt;}
.ws61{word-spacing:-1.173333pt;}
.ws94{word-spacing:-1.133333pt;}
.ws92{word-spacing:-1.120000pt;}
.ws5d{word-spacing:-1.066667pt;}
.wsb6{word-spacing:-1.042667pt;}
.ws1b{word-spacing:-1.013333pt;}
.ws44{word-spacing:-0.960000pt;}
.ws45{word-spacing:-0.906667pt;}
.ws1e{word-spacing:-0.853333pt;}
.wsb8{word-spacing:-0.816000pt;}
.ws1f{word-spacing:-0.800000pt;}
.wsa1{word-spacing:-0.770667pt;}
.ws32{word-spacing:-0.746667pt;}
.ws7a{word-spacing:-0.693333pt;}
.ws15{word-spacing:-0.640000pt;}
.wsab{word-spacing:-0.634667pt;}
.wsc1{word-spacing:-0.589333pt;}
.ws3b{word-spacing:-0.586667pt;}
.ws2c{word-spacing:-0.544000pt;}
.ws11{word-spacing:-0.533333pt;}
.wsd{word-spacing:-0.506667pt;}
.wsaa{word-spacing:-0.498667pt;}
.ws38{word-spacing:-0.480000pt;}
.ws7e{word-spacing:-0.426667pt;}
.ws30{word-spacing:-0.373333pt;}
.wsb5{word-spacing:-0.362667pt;}
.ws12{word-spacing:-0.320000pt;}
.ws33{word-spacing:-0.266667pt;}
.wsa0{word-spacing:-0.226667pt;}
.ws23{word-spacing:-0.213333pt;}
.ws27{word-spacing:-0.160000pt;}
.wsb4{word-spacing:-0.136000pt;}
.ws83{word-spacing:-0.106667pt;}
.wsb9{word-spacing:-0.090667pt;}
.ws28{word-spacing:-0.053333pt;}
.ws9e{word-spacing:-0.045333pt;}
.ws52{word-spacing:-0.037342pt;}
.wsc{word-spacing:0.000000pt;}
.ws41{word-spacing:0.053333pt;}
.ws19{word-spacing:0.106667pt;}
.ws26{word-spacing:0.160000pt;}
.ws18{word-spacing:0.213333pt;}
.ws8f{word-spacing:0.266667pt;}
.wsbc{word-spacing:0.317333pt;}
.ws17{word-spacing:0.320000pt;}
.ws22{word-spacing:0.373333pt;}
.ws98{word-spacing:0.408000pt;}
.ws13{word-spacing:0.426667pt;}
.ws6f{word-spacing:0.453333pt;}
.ws2a{word-spacing:0.480000pt;}
.wsf{word-spacing:0.533333pt;}
.ws46{word-spacing:0.586667pt;}
.ws42{word-spacing:0.640000pt;}
.ws43{word-spacing:0.693333pt;}
.wsba{word-spacing:0.725333pt;}
.ws5e{word-spacing:0.746667pt;}
.ws35{word-spacing:0.800000pt;}
.ws9f{word-spacing:0.816000pt;}
.ws4d{word-spacing:0.853333pt;}
.ws96{word-spacing:0.861333pt;}
.ws47{word-spacing:0.906667pt;}
.wsb2{word-spacing:0.952000pt;}
.ws48{word-spacing:0.960000pt;}
.ws5b{word-spacing:1.013333pt;}
.ws63{word-spacing:1.120000pt;}
.ws95{word-spacing:1.133333pt;}
.ws64{word-spacing:1.178667pt;}
.wsa8{word-spacing:1.224000pt;}
.ws40{word-spacing:1.226667pt;}
.ws5a{word-spacing:1.280000pt;}
.ws10{word-spacing:1.333333pt;}
.wsac{word-spacing:1.360000pt;}
.ws84{word-spacing:1.386667pt;}
.ws36{word-spacing:1.440000pt;}
.wsa5{word-spacing:1.450667pt;}
.ws2b{word-spacing:1.493333pt;}
.ws99{word-spacing:1.541333pt;}
.ws7f{word-spacing:1.546667pt;}
.ws4c{word-spacing:1.600000pt;}
.wsa4{word-spacing:1.632000pt;}
.ws59{word-spacing:1.653333pt;}
.wsa7{word-spacing:1.677333pt;}
.ws39{word-spacing:1.706667pt;}
.ws20{word-spacing:1.760000pt;}
.ws31{word-spacing:1.813333pt;}
.ws3c{word-spacing:1.866667pt;}
.ws24{word-spacing:1.920000pt;}
.ws62{word-spacing:1.973333pt;}
.ws80{word-spacing:2.026667pt;}
.wsa2{word-spacing:2.040000pt;}
.ws65{word-spacing:2.080000pt;}
.wsc0{word-spacing:2.085333pt;}
.ws4b{word-spacing:2.133333pt;}
.wsbd{word-spacing:2.176000pt;}
.ws3f{word-spacing:2.186667pt;}
.ws1c{word-spacing:2.240000pt;}
.ws4e{word-spacing:2.293333pt;}
.wsb7{word-spacing:2.312000pt;}
.ws29{word-spacing:2.346667pt;}
.ws1d{word-spacing:2.400000pt;}
.ws5c{word-spacing:2.453333pt;}
.wsa3{word-spacing:2.493333pt;}
.ws6d{word-spacing:2.506667pt;}
.wsc3{word-spacing:2.538667pt;}
.ws4f{word-spacing:2.560000pt;}
.ws16{word-spacing:2.666667pt;}
.ws8e{word-spacing:2.720000pt;}
.ws50{word-spacing:2.773333pt;}
.wsc2{word-spacing:2.810667pt;}
.ws85{word-spacing:2.826667pt;}
.ws60{word-spacing:2.880000pt;}
.ws9c{word-spacing:2.901333pt;}
.ws3e{word-spacing:2.933333pt;}
.wsbf{word-spacing:2.946667pt;}
.ws3d{word-spacing:3.040000pt;}
.ws1a{word-spacing:3.146667pt;}
.ws49{word-spacing:3.200000pt;}
.wsaf{word-spacing:3.218667pt;}
.ws3a{word-spacing:3.253333pt;}
.ws34{word-spacing:3.413333pt;}
.wsad{word-spacing:3.445333pt;}
.ws4a{word-spacing:3.466667pt;}
.ws90{word-spacing:3.573333pt;}
.wsb1{word-spacing:3.581333pt;}
.ws7d{word-spacing:3.680000pt;}
.ws71{word-spacing:3.717333pt;}
.ws37{word-spacing:3.733333pt;}
.wsb3{word-spacing:3.762667pt;}
.ws58{word-spacing:3.840000pt;}
.ws79{word-spacing:4.000000pt;}
.ws6b{word-spacing:4.106667pt;}
.ws6e{word-spacing:4.160000pt;}
.wsa6{word-spacing:4.170667pt;}
.ws7b{word-spacing:4.373333pt;}
.ws82{word-spacing:4.426667pt;}
.ws69{word-spacing:4.480000pt;}
.ws6a{word-spacing:4.533333pt;}
.wsb0{word-spacing:4.624000pt;}
.ws81{word-spacing:4.640000pt;}
.ws25{word-spacing:4.693333pt;}
.ws9b{word-spacing:4.760000pt;}
.ws86{word-spacing:4.906667pt;}
.ws70{word-spacing:5.032000pt;}
.ws89{word-spacing:5.122667pt;}
.wsae{word-spacing:5.168000pt;}
.ws91{word-spacing:5.280000pt;}
.wsa9{word-spacing:5.440000pt;}
.ws87{word-spacing:5.848000pt;}
.ws57{word-spacing:6.880000pt;}
.ws7c{word-spacing:7.200000pt;}
.ws93{word-spacing:7.706667pt;}
.ws21{word-spacing:8.480000pt;}
.ws88{word-spacing:9.157333pt;}
.ws9d{word-spacing:9.293333pt;}
.wsc4{word-spacing:12.149333pt;}
.ws51{word-spacing:14.777019pt;}
.wsc5{word-spacing:15.821333pt;}
.ws8a{word-spacing:26.202667pt;}
.ws54{word-spacing:56.576000pt;}
.ws2d{word-spacing:64.237333pt;}
.ws78{word-spacing:72.216000pt;}
.ws66{word-spacing:127.069333pt;}
.ws68{word-spacing:144.613333pt;}
.ws67{word-spacing:196.792000pt;}
._6{margin-left:-14.733333pt;}
._d{margin-left:-12.160000pt;}
._12{margin-left:-10.834667pt;}
._1f{margin-left:-9.840000pt;}
._1e{margin-left:-8.426667pt;}
._b{margin-left:-7.520000pt;}
._3{margin-left:-5.604192pt;}
._1{margin-left:-4.109067pt;}
._4{margin-left:-2.474667pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.092267pt;}
._5{width:2.769067pt;}
._20{width:4.157067pt;}
._e{width:5.237333pt;}
._a{width:6.373334pt;}
._c{width:7.953056pt;}
._f{width:9.276800pt;}
._33{width:10.562667pt;}
._10{width:13.758133pt;}
._7{width:16.320000pt;}
._2e{width:31.565599pt;}
._8{width:48.552000pt;}
._2a{width:60.791994pt;}
._27{width:64.101333pt;}
._11{width:66.912000pt;}
._26{width:71.445327pt;}
._29{width:82.778661pt;}
._24{width:86.768000pt;}
._25{width:89.306667pt;}
._2c{width:94.111994pt;}
._13{width:95.517333pt;}
._31{width:122.626667pt;}
._30{width:128.383990pt;}
._28{width:145.701333pt;}
._2f{width:149.736000pt;}
._32{width:152.229333pt;}
._16{width:162.474667pt;}
._17{width:174.352000pt;}
._18{width:196.927994pt;}
._2b{width:206.266667pt;}
._14{width:207.581333pt;}
._15{width:221.770667pt;}
._1a{width:224.762659pt;}
._1b{width:227.256000pt;}
._2d{width:250.149333pt;}
._1d{width:274.991992pt;}
._1c{width:297.658667pt;}
._19{width:320.325333pt;}
._23{width:454.330667pt;}
._22{width:559.912000pt;}
._21{width:695.968232pt;}
._9{width:1994.802726pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fsa{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:53.346664pt;}
.fsb{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:0.239065pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.yab{bottom:90.845337pt;}
.y33{bottom:100.389600pt;}
.y69{bottom:100.813639pt;}
.y199{bottom:100.820533pt;}
.y134{bottom:101.083552pt;}
.y83{bottom:101.717590pt;}
.y193{bottom:101.981578pt;}
.y1d0{bottom:101.986898pt;}
.yd0{bottom:102.110942pt;}
.y2e{bottom:108.854533pt;}
.y198{bottom:114.148533pt;}
.y133{bottom:114.411552pt;}
.y68{bottom:117.480306pt;}
.y32{bottom:118.250936pt;}
.y82{bottom:118.384257pt;}
.y192{bottom:118.648244pt;}
.y1cf{bottom:118.653564pt;}
.ycf{bottom:118.777608pt;}
.yaa{bottom:118.777751pt;}
.y1de{bottom:124.826266pt;}
.y2d{bottom:125.521200pt;}
.y132{bottom:127.739552pt;}
.y67{bottom:134.146973pt;}
.y81{bottom:135.050924pt;}
.y191{bottom:135.314911pt;}
.y1ce{bottom:135.320231pt;}
.yce{bottom:135.444275pt;}
.ya9{bottom:135.444417pt;}
.y1dd{bottom:138.154266pt;}
.y1ab{bottom:139.652270pt;}
.y31{bottom:140.474137pt;}
.y2c{bottom:142.187866pt;}
.y66{bottom:150.813639pt;}
.y80{bottom:151.717590pt;}
.y190{bottom:151.981578pt;}
.y1cd{bottom:151.986898pt;}
.ycd{bottom:152.110942pt;}
.ya8{bottom:152.111084pt;}
.y13b{bottom:153.002527pt;}
.y30{bottom:153.802137pt;}
.y1aa{bottom:156.357604pt;}
.y2b{bottom:158.854533pt;}
.y65{bottom:167.480306pt;}
.y1dc{bottom:168.154266pt;}
.y7f{bottom:168.384257pt;}
.y18f{bottom:168.648244pt;}
.y1cc{bottom:168.653564pt;}
.ycc{bottom:168.777608pt;}
.ya7{bottom:168.777751pt;}
.y13a{bottom:169.707861pt;}
.y21b{bottom:170.297620pt;}
.y1a9{bottom:172.994937pt;}
.y2a{bottom:175.521200pt;}
.y2f{bottom:181.194804pt;}
.y21a{bottom:183.625620pt;}
.y64{bottom:184.146973pt;}
.y7e{bottom:185.050924pt;}
.y18e{bottom:185.314911pt;}
.y1cb{bottom:185.320231pt;}
.ycb{bottom:185.444275pt;}
.ya6{bottom:185.444417pt;}
.y139{bottom:186.345194pt;}
.y131{bottom:191.500885pt;}
.y29{bottom:192.187866pt;}
.y219{bottom:196.953620pt;}
.y19c{bottom:197.916937pt;}
.y19f{bottom:197.928270pt;}
.y1a2{bottom:197.939604pt;}
.y1a5{bottom:197.950937pt;}
.y1a8{bottom:197.962270pt;}
.y63{bottom:200.813639pt;}
.y7d{bottom:201.717590pt;}
.y18d{bottom:201.981578pt;}
.y1ca{bottom:201.986898pt;}
.ya5{bottom:202.111084pt;}
.y138{bottom:202.982527pt;}
.y130{bottom:204.828885pt;}
.y28{bottom:208.854533pt;}
.y218{bottom:210.281620pt;}
.y19b{bottom:211.244937pt;}
.y19e{bottom:211.256270pt;}
.y1a1{bottom:211.267604pt;}
.y1a4{bottom:211.278937pt;}
.y1a7{bottom:211.290270pt;}
.y62{bottom:217.480306pt;}
.y12f{bottom:218.156885pt;}
.y7c{bottom:218.384257pt;}
.y18c{bottom:218.648244pt;}
.y1c9{bottom:218.653564pt;}
.yca{bottom:218.777608pt;}
.ya4{bottom:218.777751pt;}
.y137{bottom:219.619861pt;}
.y1db{bottom:222.106389pt;}
.y253{bottom:223.167591pt;}
.y217{bottom:223.609620pt;}
.y19a{bottom:224.572937pt;}
.y19d{bottom:224.584270pt;}
.y1a0{bottom:224.595604pt;}
.y1a3{bottom:224.606937pt;}
.y1a6{bottom:224.618270pt;}
.y26{bottom:225.521200pt;}
.y12e{bottom:231.484885pt;}
.y61{bottom:234.146973pt;}
.y7b{bottom:235.050924pt;}
.y18b{bottom:235.314911pt;}
.y1c8{bottom:235.320231pt;}
.y1da{bottom:235.434389pt;}
.ya3{bottom:235.444417pt;}
.y252{bottom:236.495591pt;}
.y216{bottom:236.937620pt;}
.y25{bottom:242.187866pt;}
.y136{bottom:244.587194pt;}
.y12d{bottom:244.812885pt;}
.y197{bottom:247.247200pt;}
.y1d9{bottom:248.762389pt;}
.y215{bottom:250.265620pt;}
.y60{bottom:250.813639pt;}
.y7a{bottom:251.717611pt;}
.y18a{bottom:251.981578pt;}
.y1c7{bottom:251.986898pt;}
.yc9{bottom:252.110942pt;}
.ya2{bottom:252.111084pt;}
.y12c{bottom:258.140885pt;}
.y24{bottom:258.854533pt;}
.y196{bottom:260.575200pt;}
.y1d8{bottom:262.090389pt;}
.y214{bottom:263.593620pt;}
.y251{bottom:263.910925pt;}
.y135{bottom:266.290527pt;}
.y5f{bottom:267.480306pt;}
.y79{bottom:268.384277pt;}
.y189{bottom:268.648244pt;}
.y1c6{bottom:268.653564pt;}
.ya1{bottom:268.777751pt;}
.y12b{bottom:271.468885pt;}
.y195{bottom:273.903200pt;}
.y1d7{bottom:275.418389pt;}
.y23{bottom:275.521200pt;}
.y213{bottom:276.921620pt;}
.y250{bottom:277.238925pt;}
.y5e{bottom:284.146973pt;}
.y78{bottom:285.050944pt;}
.y188{bottom:285.314911pt;}
.y1c5{bottom:285.320231pt;}
.ya0{bottom:285.444417pt;}
.y194{bottom:287.231200pt;}
.y1d6{bottom:288.746389pt;}
.y212{bottom:290.249620pt;}
.y24f{bottom:290.566925pt;}
.y22{bottom:292.187866pt;}
.y5d{bottom:300.813639pt;}
.y77{bottom:301.717611pt;}
.y187{bottom:301.981578pt;}
.y1c4{bottom:301.986898pt;}
.yc8{bottom:302.110921pt;}
.y9f{bottom:302.111084pt;}
.y211{bottom:303.577620pt;}
.y24e{bottom:303.894925pt;}
.y21{bottom:308.854533pt;}
.y210{bottom:316.905620pt;}
.y24d{bottom:317.222925pt;}
.y5c{bottom:317.480306pt;}
.y76{bottom:318.384277pt;}
.y186{bottom:318.648244pt;}
.y1c3{bottom:318.653564pt;}
.y1d5{bottom:318.711722pt;}
.yc7{bottom:318.777588pt;}
.y9e{bottom:318.777751pt;}
.y20{bottom:325.521200pt;}
.y20f{bottom:330.233620pt;}
.y24c{bottom:330.550925pt;}
.y1d4{bottom:332.039722pt;}
.y5b{bottom:334.146973pt;}
.y15e{bottom:334.261597pt;}
.y10d{bottom:334.385620pt;}
.y75{bottom:335.050944pt;}
.y185{bottom:335.314911pt;}
.y1c2{bottom:335.320231pt;}
.y128{bottom:335.320272pt;}
.yc6{bottom:335.444255pt;}
.y9d{bottom:335.444417pt;}
.y1f{bottom:342.187866pt;}
.y20e{bottom:343.561620pt;}
.y24b{bottom:343.878925pt;}
.y1d3{bottom:345.367722pt;}
.y5a{bottom:350.813639pt;}
.y15d{bottom:350.928263pt;}
.y10c{bottom:351.052287pt;}
.y74{bottom:351.717611pt;}
.y184{bottom:351.981578pt;}
.y1c1{bottom:351.986898pt;}
.y127{bottom:351.986938pt;}
.yc5{bottom:352.110921pt;}
.y9c{bottom:352.111084pt;}
.y20d{bottom:356.889620pt;}
.y24a{bottom:357.206925pt;}
.y1d2{bottom:358.695722pt;}
.y1e{bottom:358.854533pt;}
.y59{bottom:367.480306pt;}
.y15c{bottom:367.594930pt;}
.y10b{bottom:367.718953pt;}
.y73{bottom:368.384277pt;}
.y183{bottom:368.648244pt;}
.y1c0{bottom:368.653564pt;}
.y126{bottom:368.653605pt;}
.yc4{bottom:368.777588pt;}
.y9b{bottom:368.777751pt;}
.y20c{bottom:370.217620pt;}
.y249{bottom:370.534925pt;}
.y1d1{bottom:372.023722pt;}
.y1d{bottom:375.521200pt;}
.y20b{bottom:383.545620pt;}
.y248{bottom:383.862925pt;}
.y58{bottom:384.146973pt;}
.y15b{bottom:384.261597pt;}
.y10a{bottom:384.385620pt;}
.y72{bottom:385.050944pt;}
.y182{bottom:385.314911pt;}
.y1bf{bottom:385.320231pt;}
.y125{bottom:385.320272pt;}
.yc3{bottom:385.444255pt;}
.y9a{bottom:385.444417pt;}
.y1c{bottom:392.187866pt;}
.y20a{bottom:396.873620pt;}
.y247{bottom:397.190925pt;}
.y57{bottom:400.813639pt;}
.y15a{bottom:400.928263pt;}
.y109{bottom:401.052287pt;}
.y71{bottom:401.717611pt;}
.y181{bottom:401.981578pt;}
.y1be{bottom:401.986898pt;}
.y124{bottom:401.986938pt;}
.yc2{bottom:402.110921pt;}
.y99{bottom:402.111084pt;}
.y1b{bottom:408.854533pt;}
.y209{bottom:410.201620pt;}
.y246{bottom:410.518925pt;}
.y56{bottom:417.480306pt;}
.y159{bottom:417.594930pt;}
.y108{bottom:417.718953pt;}
.y70{bottom:418.384277pt;}
.y180{bottom:418.648244pt;}
.y1bd{bottom:418.653564pt;}
.y123{bottom:418.653605pt;}
.yc1{bottom:418.777588pt;}
.y98{bottom:418.777751pt;}
.y208{bottom:423.529620pt;}
.y245{bottom:423.846925pt;}
.y1a{bottom:425.521200pt;}
.y55{bottom:434.146973pt;}
.y158{bottom:434.261597pt;}
.y107{bottom:434.385620pt;}
.y6f{bottom:435.050944pt;}
.y17f{bottom:435.314911pt;}
.y1bc{bottom:435.320231pt;}
.y122{bottom:435.320272pt;}
.yc0{bottom:435.444255pt;}
.y97{bottom:435.444417pt;}
.y207{bottom:436.857620pt;}
.y244{bottom:437.174925pt;}
.y27{bottom:442.187866pt;}
.y206{bottom:450.185620pt;}
.y243{bottom:450.502925pt;}
.y54{bottom:450.813639pt;}
.y157{bottom:450.928263pt;}
.y106{bottom:451.052287pt;}
.y6e{bottom:451.717611pt;}
.y17e{bottom:451.981578pt;}
.y1bb{bottom:451.986898pt;}
.y121{bottom:451.986938pt;}
.ybf{bottom:452.110921pt;}
.y96{bottom:452.111084pt;}
.y19{bottom:458.854533pt;}
.y205{bottom:463.513620pt;}
.y242{bottom:463.830925pt;}
.y53{bottom:467.480306pt;}
.y156{bottom:467.594930pt;}
.y105{bottom:467.718953pt;}
.y6d{bottom:468.384277pt;}
.y17d{bottom:468.648244pt;}
.y1ba{bottom:468.653564pt;}
.y120{bottom:468.653605pt;}
.ybe{bottom:468.777588pt;}
.y95{bottom:468.777751pt;}
.y204{bottom:476.841620pt;}
.y241{bottom:477.158925pt;}
.y52{bottom:484.146973pt;}
.y155{bottom:484.261597pt;}
.y104{bottom:484.385620pt;}
.y6c{bottom:485.050944pt;}
.y17c{bottom:485.314911pt;}
.y1b9{bottom:485.320231pt;}
.y11f{bottom:485.320272pt;}
.ybd{bottom:485.444255pt;}
.y94{bottom:485.444417pt;}
.y203{bottom:490.169620pt;}
.y240{bottom:490.486925pt;}
.y51{bottom:500.813639pt;}
.y154{bottom:500.928263pt;}
.y103{bottom:501.052287pt;}
.y6b{bottom:501.717611pt;}
.y17b{bottom:501.981578pt;}
.y1b8{bottom:501.986898pt;}
.y11e{bottom:501.986938pt;}
.ybc{bottom:502.110921pt;}
.y93{bottom:502.111084pt;}
.y202{bottom:503.497620pt;}
.y23f{bottom:503.814925pt;}
.y18{bottom:508.854574pt;}
.y201{bottom:516.825620pt;}
.y23e{bottom:517.142925pt;}
.y50{bottom:517.480306pt;}
.y153{bottom:517.594930pt;}
.y102{bottom:517.718953pt;}
.y17a{bottom:518.648244pt;}
.y1b7{bottom:518.653564pt;}
.y11d{bottom:518.653605pt;}
.ybb{bottom:518.777588pt;}
.y92{bottom:518.777751pt;}
.y200{bottom:530.153620pt;}
.y23d{bottom:530.470925pt;}
.y4f{bottom:534.146973pt;}
.y152{bottom:534.261597pt;}
.y101{bottom:534.385620pt;}
.y6a{bottom:535.050944pt;}
.y179{bottom:535.314911pt;}
.y1b6{bottom:535.320231pt;}
.y11c{bottom:535.320272pt;}
.yba{bottom:535.444255pt;}
.y91{bottom:535.444417pt;}
.y17{bottom:542.187907pt;}
.y1ff{bottom:543.481620pt;}
.y23c{bottom:543.798925pt;}
.yfa{bottom:549.772258pt;}
.y4e{bottom:550.813639pt;}
.y151{bottom:550.928263pt;}
.y100{bottom:551.052287pt;}
.y178{bottom:551.981578pt;}
.y1b5{bottom:551.986898pt;}
.y11b{bottom:551.986938pt;}
.yb9{bottom:552.110921pt;}
.y90{bottom:552.111084pt;}
.y1fe{bottom:556.809620pt;}
.y23b{bottom:557.126925pt;}
.y16{bottom:558.854574pt;}
.yf9{bottom:563.100258pt;}
.y4d{bottom:567.480306pt;}
.y150{bottom:567.594930pt;}
.yff{bottom:567.718953pt;}
.y177{bottom:568.648244pt;}
.y1b4{bottom:568.653564pt;}
.y11a{bottom:568.653605pt;}
.yb8{bottom:568.777588pt;}
.y8f{bottom:568.777751pt;}
.y1fd{bottom:570.137620pt;}
.y23a{bottom:570.454925pt;}
.y15{bottom:575.521240pt;}
.yf8{bottom:576.428258pt;}
.y1fc{bottom:583.465620pt;}
.y239{bottom:583.782925pt;}
.y4c{bottom:584.146973pt;}
.yfe{bottom:584.385620pt;}
.y176{bottom:585.314911pt;}
.y1b3{bottom:585.320231pt;}
.y119{bottom:585.320272pt;}
.yb7{bottom:585.444255pt;}
.y8e{bottom:585.444417pt;}
.yf7{bottom:589.756258pt;}
.y14{bottom:592.187907pt;}
.y1fb{bottom:596.793620pt;}
.y238{bottom:597.110925pt;}
.y4b{bottom:600.813639pt;}
.y14f{bottom:600.928263pt;}
.yfd{bottom:601.052287pt;}
.y175{bottom:601.981578pt;}
.y1b2{bottom:601.986898pt;}
.y118{bottom:601.986938pt;}
.yb6{bottom:602.110921pt;}
.y8d{bottom:602.111084pt;}
.yf6{bottom:603.084258pt;}
.y13{bottom:608.854574pt;}
.y1fa{bottom:610.121620pt;}
.y237{bottom:610.438925pt;}
.yf5{bottom:616.412258pt;}
.y4a{bottom:617.480306pt;}
.yfc{bottom:617.718953pt;}
.y174{bottom:618.648244pt;}
.y1b1{bottom:618.653564pt;}
.y117{bottom:618.653605pt;}
.yb5{bottom:618.777588pt;}
.y8c{bottom:618.777751pt;}
.y1f9{bottom:623.449620pt;}
.y236{bottom:623.766925pt;}
.y12{bottom:625.521240pt;}
.yf4{bottom:629.740258pt;}
.y49{bottom:634.146973pt;}
.y173{bottom:635.314911pt;}
.y1b0{bottom:635.320231pt;}
.y116{bottom:635.320272pt;}
.yb4{bottom:635.444255pt;}
.y8b{bottom:635.444417pt;}
.y1f8{bottom:636.777620pt;}
.y235{bottom:637.094925pt;}
.y11{bottom:642.187907pt;}
.yf3{bottom:643.068258pt;}
.y1f7{bottom:650.105620pt;}
.y234{bottom:650.422925pt;}
.y48{bottom:650.813639pt;}
.y14e{bottom:650.928304pt;}
.yfb{bottom:651.052287pt;}
.y172{bottom:651.981578pt;}
.y1af{bottom:651.986898pt;}
.y115{bottom:651.986938pt;}
.yb3{bottom:652.110921pt;}
.y8a{bottom:652.111084pt;}
.yf2{bottom:656.396258pt;}
.y10{bottom:658.854574pt;}
.y1f6{bottom:663.433620pt;}
.y233{bottom:663.750925pt;}
.y47{bottom:667.480306pt;}
.y14d{bottom:667.594971pt;}
.y171{bottom:668.648244pt;}
.y1ae{bottom:668.653564pt;}
.yb2{bottom:668.777588pt;}
.y89{bottom:668.777751pt;}
.yf1{bottom:669.724258pt;}
.yf{bottom:675.521240pt;}
.y1f5{bottom:676.761620pt;}
.y232{bottom:677.078925pt;}
.yf0{bottom:683.052258pt;}
.y46{bottom:684.146973pt;}
.y14c{bottom:684.261637pt;}
.y170{bottom:685.314911pt;}
.y114{bottom:685.320231pt;}
.yb1{bottom:685.444255pt;}
.y88{bottom:685.444417pt;}
.y1f4{bottom:690.089620pt;}
.y231{bottom:690.406925pt;}
.ye{bottom:692.187907pt;}
.yef{bottom:696.380258pt;}
.y45{bottom:700.813639pt;}
.y14b{bottom:700.928304pt;}
.y16f{bottom:701.981578pt;}
.y1ad{bottom:701.986898pt;}
.yb0{bottom:702.110921pt;}
.y87{bottom:702.111084pt;}
.y12a{bottom:702.894900pt;}
.y1f3{bottom:703.417620pt;}
.y230{bottom:703.734925pt;}
.yd{bottom:708.854574pt;}
.yee{bottom:709.708258pt;}
.y129{bottom:716.222900pt;}
.y1f2{bottom:716.745620pt;}
.y22f{bottom:717.062925pt;}
.y44{bottom:717.480306pt;}
.y14a{bottom:717.594971pt;}
.y16e{bottom:718.648244pt;}
.y1ac{bottom:718.653564pt;}
.yaf{bottom:718.777588pt;}
.y86{bottom:718.777751pt;}
.yed{bottom:723.036258pt;}
.yc{bottom:725.521240pt;}
.y1f1{bottom:730.073620pt;}
.y22e{bottom:730.390925pt;}
.y43{bottom:734.146973pt;}
.y149{bottom:734.261637pt;}
.y16d{bottom:735.314911pt;}
.y113{bottom:735.320231pt;}
.yae{bottom:735.444255pt;}
.y85{bottom:735.444417pt;}
.yec{bottom:736.364258pt;}
.yb{bottom:742.187907pt;}
.y1f0{bottom:743.401620pt;}
.y22d{bottom:743.718925pt;}
.y42{bottom:750.813639pt;}
.y148{bottom:750.928304pt;}
.y16c{bottom:751.981578pt;}
.y112{bottom:751.986898pt;}
.yad{bottom:752.110921pt;}
.y84{bottom:752.111084pt;}
.y1ef{bottom:756.729620pt;}
.y22c{bottom:757.046925pt;}
.y41{bottom:767.480306pt;}
.y147{bottom:767.594971pt;}
.y16b{bottom:768.648244pt;}
.y111{bottom:768.653564pt;}
.y1ee{bottom:770.057620pt;}
.y22b{bottom:770.374925pt;}
.ya{bottom:781.461469pt;}
.y1ed{bottom:783.385620pt;}
.y22a{bottom:783.702925pt;}
.y40{bottom:784.146973pt;}
.y146{bottom:784.261637pt;}
.y16a{bottom:785.314911pt;}
.y110{bottom:785.320231pt;}
.y9{bottom:794.789469pt;}
.y1ec{bottom:796.713620pt;}
.y229{bottom:797.030925pt;}
.ye0{bottom:798.100021pt;}
.y3f{bottom:800.813639pt;}
.y145{bottom:800.928304pt;}
.y169{bottom:801.981578pt;}
.ye9{bottom:801.986898pt;}
.y1eb{bottom:810.041620pt;}
.y228{bottom:810.358925pt;}
.ydf{bottom:814.805355pt;}
.y3e{bottom:817.480306pt;}
.y144{bottom:817.594971pt;}
.y168{bottom:818.648244pt;}
.ye8{bottom:818.653564pt;}
.y1ea{bottom:823.369620pt;}
.y227{bottom:823.686925pt;}
.yde{bottom:831.442688pt;}
.y8{bottom:832.656169pt;}
.y3d{bottom:834.146973pt;}
.y143{bottom:834.261637pt;}
.y167{bottom:835.314911pt;}
.yeb{bottom:835.320231pt;}
.y1e9{bottom:836.697620pt;}
.y226{bottom:837.014925pt;}
.ydd{bottom:848.080021pt;}
.y1e8{bottom:850.025620pt;}
.y225{bottom:850.342925pt;}
.y3c{bottom:850.813639pt;}
.y142{bottom:850.928304pt;}
.y166{bottom:851.981578pt;}
.ye7{bottom:851.986898pt;}
.y1e7{bottom:863.353620pt;}
.y224{bottom:863.670925pt;}
.ydc{bottom:864.717355pt;}
.y3b{bottom:867.480306pt;}
.y141{bottom:867.594971pt;}
.y165{bottom:868.648244pt;}
.yea{bottom:868.653564pt;}
.y7{bottom:872.377441pt;}
.y1e6{bottom:876.681620pt;}
.y223{bottom:876.998925pt;}
.ydb{bottom:881.354688pt;}
.y3a{bottom:884.146973pt;}
.y140{bottom:884.261637pt;}
.y164{bottom:885.314911pt;}
.ye6{bottom:885.320231pt;}
.y1e5{bottom:890.009620pt;}
.y222{bottom:890.326925pt;}
.y6{bottom:896.377441pt;}
.y39{bottom:900.813639pt;}
.y13f{bottom:900.928304pt;}
.y163{bottom:901.981578pt;}
.ye5{bottom:901.986898pt;}
.y1e4{bottom:903.337620pt;}
.y221{bottom:903.654925pt;}
.yda{bottom:906.327355pt;}
.yd5{bottom:906.332688pt;}
.y1e3{bottom:916.665620pt;}
.y220{bottom:916.982925pt;}
.y38{bottom:917.480306pt;}
.y13e{bottom:917.594971pt;}
.y162{bottom:918.648244pt;}
.ye4{bottom:918.653564pt;}
.yd9{bottom:919.655355pt;}
.yd4{bottom:919.660688pt;}
.yd7{bottom:919.672021pt;}
.y1e2{bottom:929.993620pt;}
.y21f{bottom:930.310925pt;}
.yd8{bottom:932.983355pt;}
.yd3{bottom:932.988688pt;}
.yd6{bottom:933.000021pt;}
.y37{bottom:934.146973pt;}
.y13d{bottom:934.261637pt;}
.y161{bottom:935.314911pt;}
.ye3{bottom:935.320231pt;}
.y1e1{bottom:943.321620pt;}
.y21e{bottom:943.638925pt;}
.y36{bottom:950.813639pt;}
.y160{bottom:951.981578pt;}
.y10f{bottom:951.985616pt;}
.ye2{bottom:951.986898pt;}
.yd2{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y1e0{bottom:956.649620pt;}
.y21d{bottom:956.966925pt;}
.y35{bottom:967.480306pt;}
.y13c{bottom:967.594971pt;}
.y15f{bottom:968.648244pt;}
.y10e{bottom:968.652283pt;}
.ye1{bottom:968.653564pt;}
.yd1{bottom:968.980306pt;}
.y1df{bottom:969.977620pt;}
.y21c{bottom:970.294925pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y34{bottom:1002.206543pt;}
.h12{height:12.000000pt;}
.hf{height:22.625866pt;}
.hd{height:32.322667pt;}
.he{height:32.760417pt;}
.h2{height:37.376000pt;}
.h9{height:38.026667pt;}
.h4{height:39.712000pt;}
.h17{height:40.692337pt;}
.h18{height:40.737671pt;}
.h16{height:40.759004pt;}
.h15{height:43.656000pt;}
.h1a{height:46.376000pt;}
.h13{height:46.900071pt;}
.h19{height:47.826667pt;}
.h10{height:47.951919pt;}
.h11{height:47.952000pt;}
.h3{height:48.766452pt;}
.h5{height:49.248000pt;}
.ha{height:51.360000pt;}
.h8{height:52.746667pt;}
.hc{height:54.560000pt;}
.h14{height:57.493333pt;}
.h7{height:57.621333pt;}
.hb{height:63.296000pt;}
.h6{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:127.826670pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa{left:-1.045863pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x8{left:69.996800pt;}
.x4{left:75.717199pt;}
.x9{left:83.151477pt;}
.x7{left:86.929867pt;}
.x18{left:90.709469pt;}
.x13{left:113.580135pt;}
.x14{left:188.176133pt;}
.x11{left:238.110802pt;}
.x15{left:251.563466pt;}
.xb{left:255.532142pt;}
.xc{left:310.249476pt;}
.x16{left:324.720133pt;}
.xd{left:373.600000pt;}
.x5{left:408.191457pt;}
.x6{left:423.311457pt;}
.x17{left:430.866924pt;}
.xe{left:439.038667pt;}
.x12{left:450.368652pt;}
.xf{left:592.877333pt;}
.x1{left:647.307210pt;}
.x10{left:658.656000pt;}
.x2{left:671.546549pt;}
}




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