
    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_d5bc58f3f0d2b44843350c3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_56d5c8fe8f8eed1faf3379b4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_296c1cd4762473ad70967f4a.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_1ce785d93b6ed9f4bd63847e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6097f3c3e1b2d7f2c0d1b61a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.728027;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_1642061b2d9809e4d03385c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.891113;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_41a6b6c13389c7949eed51c7.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,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:-27.360000px;}
.v7{vertical-align:-18.000000px;}
.v3{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v6{vertical-align:18.000000px;}
.v1{vertical-align:27.360000px;}
.ls1f{letter-spacing:-1.656000px;}
.ls48{letter-spacing:-1.512000px;}
.ls16{letter-spacing:-1.440000px;}
.ls3f{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.936000px;}
.ls8a{letter-spacing:-0.916560px;}
.ls4b{letter-spacing:-0.911394px;}
.ls5a{letter-spacing:-0.864000px;}
.ls85{letter-spacing:-0.820080px;}
.ls89{letter-spacing:-0.810000px;}
.ls25{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.720000px;}
.ls59{letter-spacing:-0.702000px;}
.ls40{letter-spacing:-0.648000px;}
.ls57{letter-spacing:-0.594000px;}
.ls29{letter-spacing:-0.576000px;}
.ls58{letter-spacing:-0.540000px;}
.ls3a{letter-spacing:-0.530640px;}
.ls28{letter-spacing:-0.504000px;}
.ls56{letter-spacing:-0.486000px;}
.ls84{letter-spacing:-0.434160px;}
.lsa{letter-spacing:-0.432000px;}
.ls55{letter-spacing:-0.378000px;}
.ls4c{letter-spacing:-0.358560px;}
.ls82{letter-spacing:-0.337680px;}
.ls9{letter-spacing:-0.288000px;}
.ls83{letter-spacing:-0.241200px;}
.ls14{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls54{letter-spacing:-0.108000px;}
.ls4a{letter-spacing:-0.082854px;}
.ls18{letter-spacing:-0.072000px;}
.ls53{letter-spacing:-0.059760px;}
.ls4{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.072000px;}
.ls38{letter-spacing:0.079200px;}
.ls52{letter-spacing:0.108000px;}
.ls49{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.144000px;}
.ls88{letter-spacing:0.144720px;}
.ls70{letter-spacing:0.162000px;}
.ls4e{letter-spacing:0.179280px;}
.ls4f{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.192960px;}
.ls45{letter-spacing:0.216000px;}
.ls80{letter-spacing:0.241200px;}
.ls1e{letter-spacing:0.288000px;}
.ls5b{letter-spacing:0.289440px;}
.ls1{letter-spacing:0.337680px;}
.ls86{letter-spacing:0.342000px;}
.ls4d{letter-spacing:0.358560px;}
.ls2{letter-spacing:0.360000px;}
.ls50{letter-spacing:0.378000px;}
.ls3d{letter-spacing:0.385920px;}
.ls20{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.576000px;}
.ls35{letter-spacing:0.648000px;}
.ls2b{letter-spacing:0.720000px;}
.ls46{letter-spacing:0.792000px;}
.ls24{letter-spacing:1.440000px;}
.ls22{letter-spacing:2.160000px;}
.ls36{letter-spacing:2.363760px;}
.ls34{letter-spacing:2.880000px;}
.ls1d{letter-spacing:3.600000px;}
.ls3c{letter-spacing:3.762720px;}
.ls30{letter-spacing:4.320000px;}
.ls87{letter-spacing:4.486320px;}
.ls26{letter-spacing:5.040000px;}
.ls81{letter-spacing:5.209920px;}
.lsd{letter-spacing:5.760000px;}
.ls19{letter-spacing:6.480000px;}
.ls12{letter-spacing:7.200000px;}
.ls10{letter-spacing:7.920000px;}
.ls1a{letter-spacing:8.640000px;}
.lsc{letter-spacing:9.360000px;}
.ls37{letter-spacing:9.551520px;}
.ls13{letter-spacing:10.080000px;}
.ls3e{letter-spacing:10.792800px;}
.ls1b{letter-spacing:10.800000px;}
.ls39{letter-spacing:11.520000px;}
.ls3b{letter-spacing:11.722320px;}
.ls11{letter-spacing:12.240000px;}
.ls31{letter-spacing:12.960000px;}
.ls1c{letter-spacing:13.680000px;}
.lsf{letter-spacing:14.400000px;}
.ls2a{letter-spacing:15.120000px;}
.ls2f{letter-spacing:15.840000px;}
.ls43{letter-spacing:16.560000px;}
.ls32{letter-spacing:17.280000px;}
.ls33{letter-spacing:18.000000px;}
.ls2e{letter-spacing:18.720000px;}
.lsb{letter-spacing:19.440000px;}
.ls21{letter-spacing:20.160000px;}
.ls2d{letter-spacing:21.600000px;}
.lse{letter-spacing:22.320000px;}
.ls44{letter-spacing:23.040000px;}
.ls23{letter-spacing:23.760000px;}
.ls2c{letter-spacing:23.767200px;}
.ls27{letter-spacing:25.200000px;}
.ls42{letter-spacing:32.400000px;}
.ls41{letter-spacing:33.120000px;}
.ls47{letter-spacing:52.560000px;}
.ls5c{letter-spacing:234.900000px;}
.ls6d{letter-spacing:248.562000px;}
.ls5e{letter-spacing:275.238000px;}
.ls7f{letter-spacing:275.940000px;}
.ls7e{letter-spacing:316.278000px;}
.ls7d{letter-spacing:329.940000px;}
.ls6b{letter-spacing:365.202000px;}
.ls73{letter-spacing:367.362000px;}
.ls72{letter-spacing:407.700000px;}
.ls6a{letter-spacing:412.020000px;}
.ls71{letter-spacing:421.362000px;}
.ls69{letter-spacing:425.682000px;}
.ls60{letter-spacing:456.678000px;}
.ls79{letter-spacing:468.882000px;}
.ls7c{letter-spacing:502.038000px;}
.ls5f{letter-spacing:504.198000px;}
.ls76{letter-spacing:508.518000px;}
.ls78{letter-spacing:509.922000px;}
.ls5d{letter-spacing:517.158000px;}
.ls77{letter-spacing:522.882000px;}
.ls7b{letter-spacing:543.078000px;}
.ls75{letter-spacing:548.802000px;}
.ls7a{letter-spacing:556.038000px;}
.ls66{letter-spacing:558.900000px;}
.ls74{letter-spacing:562.518000px;}
.ls68{letter-spacing:592.002000px;}
.ls63{letter-spacing:597.780000px;}
.ls65{letter-spacing:605.718000px;}
.ls64{letter-spacing:619.380000px;}
.ls6f{letter-spacing:623.700000px;}
.ls62{letter-spacing:644.598000px;}
.ls67{letter-spacing:652.482000px;}
.ls61{letter-spacing:658.260000px;}
.ls6c{letter-spacing:664.740000px;}
.ls6e{letter-spacing:677.700000px;}
.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;}
}
.wsaa{word-spacing:-18.792000px;}
.ws1{word-spacing:-18.576000px;}
.ws84{word-spacing:-18.504000px;}
.ws38{word-spacing:-18.432000px;}
.ws36{word-spacing:-18.288000px;}
.wsac{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.072000px;}
.wsb{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.ws61{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.wsad{word-spacing:-17.568000px;}
.ws59{word-spacing:-17.496000px;}
.ws9e{word-spacing:-17.424000px;}
.wsd{word-spacing:-17.280000px;}
.ws4a{word-spacing:-17.208000px;}
.ws0{word-spacing:-17.064000px;}
.ws49{word-spacing:-16.560000px;}
.ws37{word-spacing:-16.344000px;}
.wsc0{word-spacing:-15.059520px;}
.wsbd{word-spacing:-14.940000px;}
.wsc3{word-spacing:-13.878000px;}
.wsee{word-spacing:-13.716000px;}
.wsc7{word-spacing:-13.608000px;}
.wsc9{word-spacing:-13.500000px;}
.wsc5{word-spacing:-13.392000px;}
.wsc8{word-spacing:-13.284000px;}
.wsc2{word-spacing:-13.122000px;}
.wscc{word-spacing:-13.014000px;}
.wsca{word-spacing:-12.960000px;}
.wsc4{word-spacing:-12.906000px;}
.wscb{word-spacing:-12.798000px;}
.wsef{word-spacing:-12.690000px;}
.wsdd{word-spacing:-12.636000px;}
.ws93{word-spacing:-12.445920px;}
.wse8{word-spacing:-12.349440px;}
.ws3{word-spacing:-12.252960px;}
.ws2{word-spacing:-12.060000px;}
.wsf3{word-spacing:-11.818800px;}
.wsf0{word-spacing:-11.722320px;}
.wsf1{word-spacing:-11.625840px;}
.ws83{word-spacing:-11.529360px;}
.wsf2{word-spacing:-11.143440px;}
.wsc1{word-spacing:-9.000000px;}
.wsc6{word-spacing:-8.280000px;}
.wsf4{word-spacing:-7.560000px;}
.wsd7{word-spacing:-0.918000px;}
.ws8a{word-spacing:-0.720000px;}
.wsda{word-spacing:-0.648000px;}
.ws95{word-spacing:-0.504000px;}
.wse3{word-spacing:-0.478080px;}
.wsde{word-spacing:-0.378000px;}
.wsdb{word-spacing:-0.324000px;}
.wse1{word-spacing:-0.289440px;}
.wsd5{word-spacing:-0.216000px;}
.wsfb{word-spacing:-0.192960px;}
.wsbf{word-spacing:-0.179280px;}
.wse6{word-spacing:-0.162000px;}
.ws7{word-spacing:-0.144000px;}
.wsdc{word-spacing:-0.108000px;}
.wsfa{word-spacing:-0.096480px;}
.wsff{word-spacing:-0.048240px;}
.ws4{word-spacing:0.000000px;}
.ws100{word-spacing:0.048240px;}
.wsd8{word-spacing:0.054000px;}
.wsbb{word-spacing:0.059760px;}
.ws68{word-spacing:0.072000px;}
.wsbc{word-spacing:0.082854px;}
.wsd9{word-spacing:0.108000px;}
.ws5{word-spacing:0.144000px;}
.wsd1{word-spacing:0.162000px;}
.ws8f{word-spacing:0.192960px;}
.ws1e{word-spacing:0.216000px;}
.wse4{word-spacing:0.239040px;}
.wsd0{word-spacing:0.270000px;}
.ws8{word-spacing:0.288000px;}
.wsd3{word-spacing:0.378000px;}
.ws9{word-spacing:0.432000px;}
.wseb{word-spacing:0.434160px;}
.ws101{word-spacing:0.482400px;}
.wse0{word-spacing:0.530640px;}
.wsbe{word-spacing:0.537840px;}
.wsd2{word-spacing:0.540000px;}
.ws5a{word-spacing:0.576000px;}
.wsd6{word-spacing:0.594000px;}
.ws98{word-spacing:0.648000px;}
.wse7{word-spacing:0.702000px;}
.ws6{word-spacing:0.720000px;}
.wse2{word-spacing:0.723600px;}
.wse5{word-spacing:0.864000px;}
.wsba{word-spacing:0.869967px;}
.ws67{word-spacing:0.936000px;}
.ws3d{word-spacing:1.008000px;}
.wsed{word-spacing:1.013040px;}
.wsf5{word-spacing:1.026000px;}
.ws3a{word-spacing:1.296000px;}
.ws55{word-spacing:1.368000px;}
.wsd4{word-spacing:1.404000px;}
.ws27{word-spacing:1.440000px;}
.ws89{word-spacing:1.584000px;}
.ws7a{word-spacing:1.656000px;}
.ws39{word-spacing:1.728000px;}
.wsf6{word-spacing:1.977840px;}
.ws58{word-spacing:2.016000px;}
.wsf7{word-spacing:2.074320px;}
.ws8e{word-spacing:2.088000px;}
.ws20{word-spacing:2.160000px;}
.ws75{word-spacing:2.304000px;}
.ws22{word-spacing:2.376000px;}
.ws2f{word-spacing:2.448000px;}
.ws40{word-spacing:2.736000px;}
.wsf9{word-spacing:2.797920px;}
.ws3f{word-spacing:2.880000px;}
.wsf8{word-spacing:2.894400px;}
.ws21{word-spacing:3.168000px;}
.ws46{word-spacing:3.456000px;}
.ws3b{word-spacing:3.600000px;}
.ws50{word-spacing:3.888000px;}
.wsfc{word-spacing:4.100400px;}
.ws7f{word-spacing:4.176000px;}
.ws5c{word-spacing:4.320000px;}
.ws8d{word-spacing:4.536000px;}
.wscd{word-spacing:4.541760px;}
.ws74{word-spacing:4.608000px;}
.wsfd{word-spacing:4.727520px;}
.wsdf{word-spacing:4.824000px;}
.ws2e{word-spacing:4.896000px;}
.wsfe{word-spacing:5.016960px;}
.ws2d{word-spacing:5.040000px;}
.wsce{word-spacing:5.079600px;}
.ws5b{word-spacing:5.328000px;}
.wsea{word-spacing:5.451120px;}
.wse9{word-spacing:5.547600px;}
.wscf{word-spacing:5.557680px;}
.ws15{word-spacing:5.616000px;}
.wsec{word-spacing:5.740560px;}
.ws14{word-spacing:5.760000px;}
.wsb6{word-spacing:5.976000px;}
.ws48{word-spacing:6.048000px;}
.ws47{word-spacing:6.336000px;}
.ws33{word-spacing:6.480000px;}
.ws34{word-spacing:6.696000px;}
.ws35{word-spacing:6.768000px;}
.ws2b{word-spacing:7.056000px;}
.ws1f{word-spacing:7.200000px;}
.wsb5{word-spacing:7.344000px;}
.wsa7{word-spacing:7.416000px;}
.ws1d{word-spacing:7.488000px;}
.ws3c{word-spacing:7.920000px;}
.ws80{word-spacing:8.136000px;}
.ws42{word-spacing:8.208000px;}
.ws71{word-spacing:8.496000px;}
.ws31{word-spacing:8.640000px;}
.ws32{word-spacing:8.928000px;}
.ws6f{word-spacing:9.216000px;}
.ws2c{word-spacing:9.360000px;}
.ws13{word-spacing:9.648000px;}
.ws30{word-spacing:10.080000px;}
.ws5e{word-spacing:10.368000px;}
.ws94{word-spacing:10.656000px;}
.ws41{word-spacing:10.800000px;}
.ws77{word-spacing:11.016000px;}
.ws70{word-spacing:11.088000px;}
.wsa6{word-spacing:11.376000px;}
.ws53{word-spacing:11.520000px;}
.ws96{word-spacing:11.722320px;}
.ws92{word-spacing:11.808000px;}
.ws3e{word-spacing:12.096000px;}
.ws88{word-spacing:12.168000px;}
.ws25{word-spacing:12.240000px;}
.ws24{word-spacing:12.528000px;}
.wsb1{word-spacing:12.960000px;}
.ws7d{word-spacing:13.248000px;}
.ws44{word-spacing:13.536000px;}
.ws43{word-spacing:13.680000px;}
.wsb8{word-spacing:13.896000px;}
.ws45{word-spacing:13.968000px;}
.wsa8{word-spacing:14.256000px;}
.ws1b{word-spacing:14.400000px;}
.wsae{word-spacing:14.544000px;}
.ws1c{word-spacing:14.688000px;}
.ws8b{word-spacing:14.976000px;}
.ws4b{word-spacing:15.120000px;}
.ws7e{word-spacing:15.336000px;}
.ws57{word-spacing:15.408000px;}
.ws5d{word-spacing:15.696000px;}
.ws56{word-spacing:15.840000px;}
.wsa5{word-spacing:15.984000px;}
.ws6c{word-spacing:16.128000px;}
.wsa1{word-spacing:16.560000px;}
.ws8c{word-spacing:16.848000px;}
.ws97{word-spacing:17.280000px;}
.wsb9{word-spacing:17.352000px;}
.ws82{word-spacing:17.496000px;}
.ws81{word-spacing:17.568000px;}
.ws9c{word-spacing:17.856000px;}
.ws79{word-spacing:18.000000px;}
.ws78{word-spacing:18.288000px;}
.ws6a{word-spacing:18.576000px;}
.ws6b{word-spacing:18.720000px;}
.ws91{word-spacing:18.936000px;}
.ws90{word-spacing:19.008000px;}
.ws54{word-spacing:19.296000px;}
.ws11{word-spacing:19.440000px;}
.ws99{word-spacing:19.728000px;}
.ws62{word-spacing:20.160000px;}
.ws4e{word-spacing:20.448000px;}
.ws65{word-spacing:20.880000px;}
.ws66{word-spacing:21.096000px;}
.ws4f{word-spacing:21.168000px;}
.ws73{word-spacing:21.456000px;}
.ws63{word-spacing:21.600000px;}
.ws64{word-spacing:21.888000px;}
.ws16{word-spacing:22.320000px;}
.ws19{word-spacing:22.536000px;}
.ws17{word-spacing:22.608000px;}
.ws18{word-spacing:22.896000px;}
.wsa3{word-spacing:23.040000px;}
.wsa2{word-spacing:23.328000px;}
.ws72{word-spacing:23.616000px;}
.ws52{word-spacing:23.760000px;}
.wsa4{word-spacing:23.976000px;}
.ws51{word-spacing:24.048000px;}
.ws76{word-spacing:24.336000px;}
.ws23{word-spacing:24.480000px;}
.ws69{word-spacing:24.768000px;}
.ws60{word-spacing:25.056000px;}
.ws12{word-spacing:25.200000px;}
.ws5f{word-spacing:25.488000px;}
.ws9d{word-spacing:26.208000px;}
.ws1a{word-spacing:26.640000px;}
.ws6d{word-spacing:27.216000px;}
.ws6e{word-spacing:27.360000px;}
.ws29{word-spacing:28.368000px;}
.ws2a{word-spacing:28.800000px;}
.ws7b{word-spacing:30.528000px;}
.ws7c{word-spacing:31.248000px;}
.wsb7{word-spacing:31.680000px;}
.ws9f{word-spacing:32.256000px;}
.wsa0{word-spacing:32.400000px;}
.wsb2{word-spacing:33.840000px;}
.ws87{word-spacing:35.856000px;}
.ws86{word-spacing:36.000000px;}
.ws85{word-spacing:36.288000px;}
.ws9b{word-spacing:38.016000px;}
.ws9a{word-spacing:38.160000px;}
.ws4c{word-spacing:38.880000px;}
.ws4d{word-spacing:39.168000px;}
.wsab{word-spacing:39.600000px;}
.wsb0{word-spacing:43.056000px;}
.wsaf{word-spacing:43.920000px;}
.ws28{word-spacing:46.080000px;}
.ws26{word-spacing:46.296000px;}
.wsa9{word-spacing:52.560000px;}
.wsb4{word-spacing:59.040000px;}
.wsb3{word-spacing:59.760000px;}
._8f{margin-left:-2861.992800px;}
._9e{margin-left:-2845.584000px;}
._87{margin-left:-2838.312000px;}
._7f{margin-left:-2828.880000px;}
._7c{margin-left:-2825.208000px;}
._69{margin-left:-2820.247200px;}
._51{margin-left:-2815.344000px;}
._45{margin-left:-2812.608000px;}
._66{margin-left:-2811.024000px;}
._40{margin-left:-2809.375200px;}
._4b{margin-left:-2807.856000px;}
._3c{margin-left:-2806.200000px;}
._3b{margin-left:-2805.192000px;}
._41{margin-left:-2803.608000px;}
._5b{margin-left:-2801.736000px;}
._43{margin-left:-2800.584000px;}
._3e{margin-left:-2799.504000px;}
._52{margin-left:-2797.704000px;}
._47{margin-left:-2796.624000px;}
._3a{margin-left:-2795.040000px;}
._42{margin-left:-2794.032000px;}
._3d{margin-left:-2792.520000px;}
._5c{margin-left:-2790.864000px;}
._4a{margin-left:-2789.712000px;}
._2d{margin-left:-2788.344000px;}
._67{margin-left:-2787.336000px;}
._46{margin-left:-2785.968000px;}
._38{margin-left:-2784.456000px;}
._c6{margin-left:-2781.642960px;}
._ba{margin-left:-2779.020000px;}
._14{margin-left:-2774.304000px;}
._1a{margin-left:-2771.424000px;}
._2a{margin-left:-2769.832800px;}
._48{margin-left:-2767.248000px;}
._78{margin-left:-2765.952000px;}
._2c{margin-left:-2764.368000px;}
._10{margin-left:-2762.928000px;}
._1b{margin-left:-2761.704000px;}
._35{margin-left:-2760.336000px;}
._20{margin-left:-2759.328000px;}
._21{margin-left:-2758.176000px;}
._12{margin-left:-2756.520000px;}
._1d{margin-left:-2755.512000px;}
._1f{margin-left:-2753.856000px;}
._26{margin-left:-2752.560000px;}
._13{margin-left:-2750.472000px;}
._19{margin-left:-2748.960000px;}
._d{margin-left:-2740.104000px;}
._c{margin-left:-2735.352000px;}
._3{margin-left:-2733.264000px;}
._ad{margin-left:-2724.192000px;}
._8{margin-left:-2722.248000px;}
._a{margin-left:-2718.864000px;}
._6{margin-left:-2712.960000px;}
._ae{margin-left:-2686.824000px;}
._5e{margin-left:-2664.028800px;}
._7a{margin-left:-2662.344000px;}
._9f{margin-left:-2626.560000px;}
._24{margin-left:-2609.280000px;}
._c7{margin-left:-2607.405120px;}
._7e{margin-left:-2589.912000px;}
._6d{margin-left:-2525.040000px;}
._8c{margin-left:-2467.944000px;}
._98{margin-left:-2459.592000px;}
._76{margin-left:-2454.624000px;}
._93{margin-left:-2441.736000px;}
._a4{margin-left:-2417.760000px;}
._c5{margin-left:-2406.499200px;}
._58{margin-left:-2395.944000px;}
._b9{margin-left:-2376.540000px;}
._8b{margin-left:-2348.712000px;}
._74{margin-left:-2311.992000px;}
._82{margin-left:-2301.840000px;}
._88{margin-left:-2248.056000px;}
._96{margin-left:-2244.888000px;}
._a6{margin-left:-2236.680000px;}
._56{margin-left:-2202.768000px;}
._b3{margin-left:-2191.968000px;}
._2{margin-left:-2152.728000px;}
._9c{margin-left:-2138.904000px;}
._85{margin-left:-2108.952000px;}
._b0{margin-left:-2100.456000px;}
._b6{margin-left:-2087.784000px;}
._bc{margin-left:-2083.344480px;}
._aa{margin-left:-2048.040000px;}
._a1{margin-left:-1999.512000px;}
._90{margin-left:-1995.984000px;}
._5d{margin-left:-1937.320560px;}
._ac{margin-left:-1928.952000px;}
._ab{margin-left:-1910.808000px;}
._28{margin-left:-1893.024000px;}
._7d{margin-left:-1891.584000px;}
._73{margin-left:-1876.824000px;}
._8d{margin-left:-1847.736000px;}
._92{margin-left:-1813.824000px;}
._79{margin-left:-1805.760000px;}
._99{margin-left:-1787.688000px;}
._e{margin-left:-1785.456000px;}
._22{margin-left:-1772.712000px;}
._94{margin-left:-1756.728000px;}
._91{margin-left:-1741.752000px;}
._83{margin-left:-1712.880000px;}
._4d{margin-left:-1664.280000px;}
._97{margin-left:-1655.928000px;}
._61{margin-left:-1591.920000px;}
._62{margin-left:-1588.104000px;}
._37{margin-left:-1509.912000px;}
._77{margin-left:-1504.872000px;}
._b5{margin-left:-1503.864000px;}
._7b{margin-left:-1496.880000px;}
._c4{margin-left:-1489.440240px;}
._9d{margin-left:-1469.808000px;}
._80{margin-left:-1429.560000px;}
._a2{margin-left:-1417.896000px;}
._9a{margin-left:-1399.824000px;}
._a0{margin-left:-1393.920000px;}
._6f{margin-left:-1391.544000px;}
._81{margin-left:-1377.792000px;}
._75{margin-left:-1375.704000px;}
._36{margin-left:-1355.544000px;}
._b7{margin-left:-1291.112640px;}
._9b{margin-left:-1283.760000px;}
._6a{margin-left:-1268.856000px;}
._60{margin-left:-1180.008000px;}
._bf{margin-left:-1178.195040px;}
._86{margin-left:-1113.984000px;}
._30{margin-left:-1103.904000px;}
._89{margin-left:-1073.880000px;}
._a9{margin-left:-1072.800000px;}
._b1{margin-left:-1057.896000px;}
._5a{margin-left:-961.056000px;}
._a8{margin-left:-956.808000px;}
._55{margin-left:-949.968000px;}
._4c{margin-left:-927.144000px;}
._4f{margin-left:-901.512000px;}
._a5{margin-left:-885.888000px;}
._70{margin-left:-870.264000px;}
._6c{margin-left:-846.072000px;}
._b2{margin-left:-817.920000px;}
._af{margin-left:-797.976000px;}
._b4{margin-left:-769.896000px;}
._a7{margin-left:-767.880000px;}
._53{margin-left:-718.488000px;}
._5f{margin-left:-694.008000px;}
._6e{margin-left:-678.096000px;}
._34{margin-left:-673.992000px;}
._25{margin-left:-662.472000px;}
._33{margin-left:-641.952000px;}
._63{margin-left:-630.792000px;}
._3f{margin-left:-619.632000px;}
._49{margin-left:-613.368000px;}
._50{margin-left:-589.320000px;}
._31{margin-left:-559.944000px;}
._32{margin-left:-537.120000px;}
._54{margin-left:-529.128000px;}
._a3{margin-left:-493.920000px;}
._4e{margin-left:-446.400000px;}
._23{margin-left:-410.400000px;}
._b8{margin-left:-400.860000px;}
._59{margin-left:-234.000000px;}
._bb{margin-left:-230.940000px;}
._be{margin-left:-228.060000px;}
._8e{margin-left:-59.407200px;}
._71{margin-left:-20.160000px;}
._68{margin-left:-17.560800px;}
._29{margin-left:-3.391200px;}
._27{margin-left:-2.304000px;}
._0{margin-left:-1.008000px;}
._1{width:1.152000px;}
._17{width:2.592000px;}
._1e{width:4.392000px;}
._9{width:5.832000px;}
._2b{width:6.984000px;}
._11{width:7.992000px;}
._7{width:9.648000px;}
._39{width:10.872000px;}
._15{width:12.168000px;}
._95{width:13.824000px;}
._f{width:15.120000px;}
._84{width:16.632000px;}
._64{width:19.080000px;}
._2e{width:20.304000px;}
._2f{width:21.528000px;}
._b{width:22.824000px;}
._4{width:24.624000px;}
._5{width:25.992000px;}
._44{width:27.576000px;}
._1c{width:28.584000px;}
._6b{width:32.616000px;}
._8a{width:33.624000px;}
._57{width:35.424000px;}
._65{width:38.088000px;}
._16{width:45.792000px;}
._18{width:46.944000px;}
._72{width:52.920000px;}
._bd{width:85.210200px;}
._c2{width:275.994000px;}
._c3{width:639.774000px;}
._c1{width:713.232000px;}
._c0{width:747.036000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(64,85,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs4{font-size:41.427000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.yd6{bottom:-79.920000px;}
.yd5{bottom:-64.440000px;}
.yd4{bottom:-48.960000px;}
.yd3{bottom:-33.300000px;}
.yc7{bottom:-18.540000px;}
.yd2{bottom:-17.820000px;}
.y62{bottom:-11.880000px;}
.yf2{bottom:-8.820000px;}
.yf0{bottom:-7.920000px;}
.yc6{bottom:-3.060000px;}
.yd1{bottom:-2.340000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:2.880000px;}
.y121{bottom:3.239850px;}
.y64{bottom:3.240000px;}
.y115{bottom:3.420000px;}
.y66{bottom:3.600000px;}
.y61{bottom:3.780000px;}
.y67{bottom:3.960000px;}
.y2{bottom:4.320000px;}
.y76{bottom:4.500000px;}
.y6c{bottom:4.680000px;}
.y69{bottom:4.860000px;}
.y119{bottom:5.040000px;}
.y11f{bottom:5.220000px;}
.y10e{bottom:5.760000px;}
.y110{bottom:6.120000px;}
.y112{bottom:6.840000px;}
.y114{bottom:7.020000px;}
.y94{bottom:9.000000px;}
.y87{bottom:9.180000px;}
.yc9{bottom:12.060000px;}
.ycc{bottom:12.240000px;}
.yc5{bottom:12.420000px;}
.ycb{bottom:12.600000px;}
.yd0{bottom:13.140000px;}
.yda{bottom:13.320000px;}
.y1{bottom:53.100000px;}
.y2a{bottom:57.420000px;}
.y25{bottom:57.600000px;}
.y5a{bottom:113.856900px;}
.yb9{bottom:115.740000px;}
.y147{bottom:118.620000px;}
.yf4{bottom:121.680000px;}
.y108{bottom:131.220000px;}
.yb7{bottom:132.660000px;}
.yb8{bottom:136.800000px;}
.yf3{bottom:142.920000px;}
.y43{bottom:144.900000px;}
.y146{bottom:146.340000px;}
.yb6{bottom:149.760000px;}
.y107{bottom:151.074000px;}
.y59{bottom:156.181800px;}
.y24{bottom:166.140000px;}
.yb5{bottom:166.680000px;}
.y145{bottom:173.880000px;}
.y106{bottom:176.629500px;}
.y55{bottom:177.300000px;}
.y5d{bottom:177.660000px;}
.yb4{bottom:183.780000px;}
.y42{bottom:186.300000px;}
.yb3{bottom:200.880000px;}
.y144{bottom:201.420000px;}
.y105{bottom:202.185000px;}
.y23{bottom:207.540000px;}
.y5c{bottom:208.440000px;}
.yb1{bottom:217.800000px;}
.y54{bottom:218.700000px;}
.yb2{bottom:221.940000px;}
.y104{bottom:227.565000px;}
.y41{bottom:227.700000px;}
.y143{bottom:229.140000px;}
.yb0{bottom:234.900000px;}
.y142{bottom:240.660000px;}
.y22{bottom:248.940000px;}
.yaf{bottom:251.820000px;}
.y103{bottom:253.120500px;}
.y141{bottom:259.740000px;}
.y53{bottom:260.100000px;}
.yae{bottom:268.920000px;}
.y40{bottom:269.100000px;}
.y102{bottom:278.676000px;}
.y140{bottom:278.820000px;}
.yac{bottom:290.160000px;}
.y21{bottom:290.340000px;}
.yad{bottom:294.300000px;}
.y13f{bottom:298.080000px;}
.y52{bottom:301.500000px;}
.y101{bottom:304.056000px;}
.yab{bottom:307.260000px;}
.y3f{bottom:310.500000px;}
.y13e{bottom:317.160000px;}
.ya9{bottom:324.180000px;}
.yaa{bottom:328.320000px;}
.y100{bottom:329.611500px;}
.y20{bottom:331.740000px;}
.y13d{bottom:336.240000px;}
.ya7{bottom:341.280000px;}
.y51{bottom:342.900000px;}
.ya8{bottom:345.420000px;}
.y3e{bottom:351.900000px;}
.yff{bottom:355.167000px;}
.y13c{bottom:355.320000px;}
.ya5{bottom:358.380000px;}
.ya6{bottom:362.340000px;}
.y1f{bottom:373.140000px;}
.y13b{bottom:374.580000px;}
.ya3{bottom:375.300000px;}
.ya4{bottom:379.440000px;}
.yfe{bottom:380.547000px;}
.y50{bottom:384.300000px;}
.ya2{bottom:392.400000px;}
.y3d{bottom:393.300000px;}
.y13a{bottom:393.660000px;}
.yfd{bottom:406.102500px;}
.ya1{bottom:409.320000px;}
.y139{bottom:412.740000px;}
.y1e{bottom:414.540000px;}
.y4f{bottom:425.700000px;}
.y9f{bottom:426.420000px;}
.ya0{bottom:430.560000px;}
.yfc{bottom:431.658000px;}
.y138{bottom:431.820000px;}
.y3c{bottom:434.700000px;}
.y9e{bottom:443.520000px;}
.y137{bottom:451.080000px;}
.y1d{bottom:455.940000px;}
.yfb{bottom:457.038000px;}
.y9c{bottom:460.440000px;}
.y4e{bottom:467.100000px;}
.y9d{bottom:468.720000px;}
.y136{bottom:470.160000px;}
.y45{bottom:475.740000px;}
.y3b{bottom:476.100000px;}
.yf5{bottom:480.240000px;}
.y9a{bottom:481.680000px;}
.yfa{bottom:482.593500px;}
.y9b{bottom:485.820000px;}
.y135{bottom:489.240000px;}
.y47{bottom:496.800000px;}
.y1c{bottom:497.340000px;}
.y98{bottom:498.780000px;}
.y99{bottom:502.920000px;}
.yf9{bottom:508.149000px;}
.y134{bottom:508.320000px;}
.y4d{bottom:508.500000px;}
.y96{bottom:515.880000px;}
.y3a{bottom:517.500000px;}
.y97{bottom:519.840000px;}
.y133{bottom:527.580000px;}
.y95{bottom:532.800000px;}
.yf8{bottom:533.529000px;}
.y46{bottom:538.200000px;}
.y1b{bottom:538.740000px;}
.y132{bottom:546.660000px;}
.y4c{bottom:549.900000px;}
.y39{bottom:558.900000px;}
.yf7{bottom:559.084500px;}
.y131{bottom:565.740000px;}
.y92{bottom:571.140000px;}
.y93{bottom:575.280000px;}
.y1a{bottom:580.140000px;}
.yf6{bottom:584.640000px;}
.y130{bottom:584.820000px;}
.y91{bottom:588.240000px;}
.y4b{bottom:591.300000px;}
.y38{bottom:600.300000px;}
.yf1{bottom:601.920000px;}
.y12f{bottom:604.080000px;}
.y8f{bottom:605.160000px;}
.yef{bottom:606.060000px;}
.y90{bottom:609.300000px;}
.yee{bottom:610.380000px;}
.yed{bottom:618.664500px;}
.y19{bottom:621.540000px;}
.y8d{bottom:622.260000px;}
.y12e{bottom:623.160000px;}
.y8e{bottom:626.220000px;}
.y4a{bottom:632.700000px;}
.y8b{bottom:639.180000px;}
.y37{bottom:641.700000px;}
.y12d{bottom:642.240000px;}
.y8c{bottom:643.320000px;}
.yec{bottom:644.220000px;}
.y89{bottom:656.280000px;}
.y8a{bottom:660.420000px;}
.y12c{bottom:661.320000px;}
.y18{bottom:662.940000px;}
.yeb{bottom:669.600000px;}
.y88{bottom:673.380000px;}
.y49{bottom:674.100000px;}
.y12b{bottom:680.580000px;}
.y36{bottom:683.100000px;}
.yea{bottom:686.880000px;}
.y86{bottom:690.300000px;}
.ye9{bottom:695.164500px;}
.y12a{bottom:699.660000px;}
.y17{bottom:704.340000px;}
.y84{bottom:711.720000px;}
.y48{bottom:715.500000px;}
.y85{bottom:715.680000px;}
.y129{bottom:718.740000px;}
.ye8{bottom:720.720000px;}
.y35{bottom:724.500000px;}
.y83{bottom:728.640000px;}
.y128{bottom:737.820000px;}
.y16{bottom:745.740000px;}
.y58{bottom:745.815000px;}
.y5b{bottom:745.920000px;}
.ye7{bottom:746.100000px;}
.y127{bottom:757.080000px;}
.y82{bottom:762.660000px;}
.ye6{bottom:763.380000px;}
.y34{bottom:765.900000px;}
.ye5{bottom:771.664500px;}
.y126{bottom:776.160000px;}
.ycd{bottom:776.340000px;}
.y81{bottom:779.760000px;}
.y15{bottom:787.140000px;}
.y9{bottom:792.000000px;}
.y125{bottom:795.240000px;}
.y7f{bottom:796.680000px;}
.ye4{bottom:797.220000px;}
.y80{bottom:800.820000px;}
.y33{bottom:807.300000px;}
.y7d{bottom:813.780000px;}
.y124{bottom:814.320000px;}
.y7e{bottom:817.920000px;}
.ye3{bottom:822.600000px;}
.y14{bottom:828.540000px;}
.y7b{bottom:830.880000px;}
.y8{bottom:833.400000px;}
.y123{bottom:833.580000px;}
.y7c{bottom:834.840000px;}
.ye2{bottom:839.880000px;}
.y7a{bottom:847.800000px;}
.ye1{bottom:848.164500px;}
.y32{bottom:848.700000px;}
.y122{bottom:852.660000px;}
.y79{bottom:864.900000px;}
.y13{bottom:869.940000px;}
.y120{bottom:871.740000px;}
.ye0{bottom:873.720000px;}
.y7{bottom:881.640000px;}
.y77{bottom:881.820000px;}
.y78{bottom:885.960000px;}
.y31{bottom:890.100000px;}
.y11e{bottom:890.820000px;}
.y75{bottom:898.920000px;}
.ydf{bottom:899.100000px;}
.y11d{bottom:910.080000px;}
.y12{bottom:911.340000px;}
.y73{bottom:915.660000px;}
.y6{bottom:916.200000px;}
.yde{bottom:916.380000px;}
.y74{bottom:919.620000px;}
.ydd{bottom:924.664500px;}
.y11c{bottom:929.160000px;}
.y30{bottom:931.500000px;}
.y71{bottom:932.580000px;}
.y72{bottom:936.720000px;}
.y11b{bottom:948.240000px;}
.y70{bottom:949.680000px;}
.ydc{bottom:950.220000px;}
.y11{bottom:952.740000px;}
.y5{bottom:964.440000px;}
.y6e{bottom:966.780000px;}
.y11a{bottom:967.320000px;}
.y6f{bottom:970.740000px;}
.y2f{bottom:972.900000px;}
.y29{bottom:973.440000px;}
.ydb{bottom:975.600000px;}
.y6d{bottom:983.700000px;}
.y118{bottom:986.580000px;}
.yd9{bottom:992.880000px;}
.y10{bottom:994.140000px;}
.y6b{bottom:1000.800000px;}
.yd8{bottom:1001.160000px;}
.yc3{bottom:1002.960000px;}
.y117{bottom:1005.660000px;}
.y2e{bottom:1014.300000px;}
.y28{bottom:1014.840000px;}
.y68{bottom:1017.720000px;}
.ycf{bottom:1018.440000px;}
.y6a{bottom:1021.860000px;}
.y116{bottom:1024.740000px;}
.yd7{bottom:1026.720000px;}
.yc2{bottom:1030.680000px;}
.y65{bottom:1034.820000px;}
.yf{bottom:1035.540000px;}
.y4{bottom:1040.400000px;}
.y113{bottom:1043.820000px;}
.yce{bottom:1051.740000px;}
.y63{bottom:1051.920000px;}
.y2d{bottom:1055.700000px;}
.y27{bottom:1056.240000px;}
.yc1{bottom:1058.220000px;}
.y111{bottom:1063.080000px;}
.y5f{bottom:1063.620000px;}
.y60{bottom:1068.840000px;}
.yca{bottom:1069.380000px;}
.yc0{bottom:1069.740000px;}
.ye{bottom:1076.940000px;}
.y10f{bottom:1082.160000px;}
.ybe{bottom:1086.840000px;}
.yc8{bottom:1089.720000px;}
.ybf{bottom:1090.800000px;}
.yc4{bottom:1094.940000px;}
.y2c{bottom:1097.100000px;}
.yd{bottom:1097.280000px;}
.y26{bottom:1097.640000px;}
.y10b{bottom:1101.240000px;}
.y3{bottom:1102.140000px;}
.ybd{bottom:1103.760000px;}
.y57{bottom:1106.280000px;}
.y5e{bottom:1106.640000px;}
.y10d{bottom:1108.620000px;}
.y10a{bottom:1116.540000px;}
.ybc{bottom:1120.860000px;}
.yba{bottom:1137.780000px;}
.y2b{bottom:1138.140000px;}
.y44{bottom:1138.500000px;}
.y56{bottom:1141.200000px;}
.ybb{bottom:1141.920000px;}
.y109{bottom:1144.080000px;}
.yc{bottom:1163.068500px;}
.yb{bottom:1202.217000px;}
.ya{bottom:1220.217000px;}
.h1e{height:3.420000px;}
.h1d{height:4.320000px;}
.hc{height:16.200000px;}
.hb{height:16.381500px;}
.h13{height:16.740000px;}
.h12{height:16.920000px;}
.h10{height:16.921500px;}
.he{height:17.098500px;}
.h11{height:17.100000px;}
.h20{height:18.360000px;}
.h23{height:19.080000px;}
.h25{height:19.081500px;}
.h26{height:19.258500px;}
.h24{height:19.260000px;}
.h2{height:20.701500px;}
.h17{height:21.240000px;}
.h16{height:21.241500px;}
.h15{height:21.420000px;}
.h21{height:24.398438px;}
.h18{height:24.658500px;}
.h19{height:24.840000px;}
.h1a{height:25.380000px;}
.h1b{height:25.560000px;}
.h1c{height:25.561500px;}
.h9{height:29.654288px;}
.hf{height:31.587891px;}
.ha{height:36.597656px;}
.h14{height:37.494141px;}
.h6{height:42.327773px;}
.h7{height:43.681641px;}
.hd{height:47.381836px;}
.h4{height:48.796875px;}
.h22{height:49.587891px;}
.h3{height:63.175781px;}
.h5{height:69.687773px;}
.h8{height:340.048500px;}
.h1f{height:459.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:8.998500px;}
.w16{width:10.980000px;}
.w7{width:16.558500px;}
.w3{width:18.000000px;}
.we{width:23.578500px;}
.wb{width:23.580000px;}
.wc{width:39.960000px;}
.wa{width:46.620000px;}
.wd{width:46.621500px;}
.w17{width:54.360000px;}
.wf{width:57.961500px;}
.w15{width:63.900000px;}
.w14{width:63.901500px;}
.w6{width:110.160000px;}
.w8{width:116.821500px;}
.w11{width:125.460000px;}
.w10{width:128.700000px;}
.w12{width:175.500000px;}
.w5{width:243.540000px;}
.w13{width:271.438500px;}
.w9{width:331.920000px;}
.w4{width:392.625000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5e{left:5.400000px;}
.x19{left:8.100000px;}
.x1f{left:11.700000px;}
.x17{left:14.940000px;}
.x1b{left:17.640000px;}
.x21{left:19.800000px;}
.x4f{left:21.780000px;}
.x1d{left:23.220000px;}
.x4d{left:24.300000px;}
.x51{left:26.100000px;}
.x50{left:27.900000px;}
.x27{left:31.680000px;}
.x55{left:35.100000px;}
.x5b{left:37.080000px;}
.x33{left:38.520000px;}
.x58{left:52.920000px;}
.x9{left:59.269500px;}
.xa{left:60.843000px;}
.x56{left:62.460000px;}
.x57{left:64.260000px;}
.x15{left:88.920000px;}
.xb{left:91.620000px;}
.x32{left:116.100000px;}
.x48{left:121.320000px;}
.x16{left:122.760000px;}
.x47{left:124.380000px;}
.x30{left:126.180000px;}
.x4{left:127.980000px;}
.x43{left:130.320000px;}
.x2e{left:134.820000px;}
.x41{left:139.320000px;}
.x11{left:141.640650px;}
.x26{left:144.900000px;}
.x46{left:146.880000px;}
.x4a{left:152.820000px;}
.x45{left:155.880000px;}
.x1c{left:158.760000px;}
.x24{left:161.100000px;}
.x3{left:163.440000px;}
.xf{left:168.120000px;}
.xe{left:170.100000px;}
.x37{left:173.160000px;}
.x3e{left:174.600000px;}
.xc{left:180.720000px;}
.x3a{left:182.160000px;}
.x2c{left:185.040000px;}
.x7{left:191.700000px;}
.x6{left:193.320000px;}
.x2{left:197.640000px;}
.x35{left:200.880000px;}
.x4b{left:202.680000px;}
.x2a{left:235.800000px;}
.x52{left:240.480000px;}
.x3c{left:257.400000px;}
.x53{left:260.640000px;}
.x31{left:262.260000px;}
.x3f{left:268.200000px;}
.x10{left:271.515000px;}
.x2f{left:274.680000px;}
.x42{left:276.300000px;}
.x2d{left:280.980000px;}
.x40{left:285.480000px;}
.x25{left:293.400000px;}
.x49{left:301.320000px;}
.x44{left:304.200000px;}
.x28{left:307.080000px;}
.x23{left:317.700000px;}
.x36{left:319.140000px;}
.x3d{left:320.580000px;}
.x8{left:328.500000px;}
.x39{left:330.480000px;}
.x2b{left:341.460000px;}
.x34{left:346.860000px;}
.x38{left:349.920000px;}
.x5{left:352.080000px;}
.x29{left:383.940000px;}
.x59{left:393.840000px;}
.x3b{left:405.720000px;}
.x4c{left:436.140000px;}
.x5a{left:457.740000px;}
.x54{left:471.420000px;}
.x14{left:490.680000px;}
.x5c{left:521.460000px;}
.x1e{left:537.300000px;}
.x20{left:560.880000px;}
.x4e{left:564.840000px;}
.x5d{left:585.360000px;}
.x5f{left:596.340000px;}
.x18{left:600.840000px;}
.x1a{left:617.400000px;}
.x12{left:664.020000px;}
.x22{left:687.600000px;}
.xd{left:747.360000px;}
.x1{left:756.360000px;}
.x13{left:764.640000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v7{vertical-align:-16.000000pt;}
.v3{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v6{vertical-align:16.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls1f{letter-spacing:-1.472000pt;}
.ls48{letter-spacing:-1.344000pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls3f{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.832000pt;}
.ls8a{letter-spacing:-0.814720pt;}
.ls4b{letter-spacing:-0.810128pt;}
.ls5a{letter-spacing:-0.768000pt;}
.ls85{letter-spacing:-0.728960pt;}
.ls89{letter-spacing:-0.720000pt;}
.ls25{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls59{letter-spacing:-0.624000pt;}
.ls40{letter-spacing:-0.576000pt;}
.ls57{letter-spacing:-0.528000pt;}
.ls29{letter-spacing:-0.512000pt;}
.ls58{letter-spacing:-0.480000pt;}
.ls3a{letter-spacing:-0.471680pt;}
.ls28{letter-spacing:-0.448000pt;}
.ls56{letter-spacing:-0.432000pt;}
.ls84{letter-spacing:-0.385920pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls55{letter-spacing:-0.336000pt;}
.ls4c{letter-spacing:-0.318720pt;}
.ls82{letter-spacing:-0.300160pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls83{letter-spacing:-0.214400pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls54{letter-spacing:-0.096000pt;}
.ls4a{letter-spacing:-0.073648pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls53{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.064000pt;}
.ls38{letter-spacing:0.070400pt;}
.ls52{letter-spacing:0.096000pt;}
.ls49{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.128000pt;}
.ls88{letter-spacing:0.128640pt;}
.ls70{letter-spacing:0.144000pt;}
.ls4e{letter-spacing:0.159360pt;}
.ls4f{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.171520pt;}
.ls45{letter-spacing:0.192000pt;}
.ls80{letter-spacing:0.214400pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls5b{letter-spacing:0.257280pt;}
.ls1{letter-spacing:0.300160pt;}
.ls86{letter-spacing:0.304000pt;}
.ls4d{letter-spacing:0.318720pt;}
.ls2{letter-spacing:0.320000pt;}
.ls50{letter-spacing:0.336000pt;}
.ls3d{letter-spacing:0.343040pt;}
.ls20{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.512000pt;}
.ls35{letter-spacing:0.576000pt;}
.ls2b{letter-spacing:0.640000pt;}
.ls46{letter-spacing:0.704000pt;}
.ls24{letter-spacing:1.280000pt;}
.ls22{letter-spacing:1.920000pt;}
.ls36{letter-spacing:2.101120pt;}
.ls34{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls3c{letter-spacing:3.344640pt;}
.ls30{letter-spacing:3.840000pt;}
.ls87{letter-spacing:3.987840pt;}
.ls26{letter-spacing:4.480000pt;}
.ls81{letter-spacing:4.631040pt;}
.lsd{letter-spacing:5.120000pt;}
.ls19{letter-spacing:5.760000pt;}
.ls12{letter-spacing:6.400000pt;}
.ls10{letter-spacing:7.040000pt;}
.ls1a{letter-spacing:7.680000pt;}
.lsc{letter-spacing:8.320000pt;}
.ls37{letter-spacing:8.490240pt;}
.ls13{letter-spacing:8.960000pt;}
.ls3e{letter-spacing:9.593600pt;}
.ls1b{letter-spacing:9.600000pt;}
.ls39{letter-spacing:10.240000pt;}
.ls3b{letter-spacing:10.419840pt;}
.ls11{letter-spacing:10.880000pt;}
.ls31{letter-spacing:11.520000pt;}
.ls1c{letter-spacing:12.160000pt;}
.lsf{letter-spacing:12.800000pt;}
.ls2a{letter-spacing:13.440000pt;}
.ls2f{letter-spacing:14.080000pt;}
.ls43{letter-spacing:14.720000pt;}
.ls32{letter-spacing:15.360000pt;}
.ls33{letter-spacing:16.000000pt;}
.ls2e{letter-spacing:16.640000pt;}
.lsb{letter-spacing:17.280000pt;}
.ls21{letter-spacing:17.920000pt;}
.ls2d{letter-spacing:19.200000pt;}
.lse{letter-spacing:19.840000pt;}
.ls44{letter-spacing:20.480000pt;}
.ls23{letter-spacing:21.120000pt;}
.ls2c{letter-spacing:21.126400pt;}
.ls27{letter-spacing:22.400000pt;}
.ls42{letter-spacing:28.800000pt;}
.ls41{letter-spacing:29.440000pt;}
.ls47{letter-spacing:46.720000pt;}
.ls5c{letter-spacing:208.800000pt;}
.ls6d{letter-spacing:220.944000pt;}
.ls5e{letter-spacing:244.656000pt;}
.ls7f{letter-spacing:245.280000pt;}
.ls7e{letter-spacing:281.136000pt;}
.ls7d{letter-spacing:293.280000pt;}
.ls6b{letter-spacing:324.624000pt;}
.ls73{letter-spacing:326.544000pt;}
.ls72{letter-spacing:362.400000pt;}
.ls6a{letter-spacing:366.240000pt;}
.ls71{letter-spacing:374.544000pt;}
.ls69{letter-spacing:378.384000pt;}
.ls60{letter-spacing:405.936000pt;}
.ls79{letter-spacing:416.784000pt;}
.ls7c{letter-spacing:446.256000pt;}
.ls5f{letter-spacing:448.176000pt;}
.ls76{letter-spacing:452.016000pt;}
.ls78{letter-spacing:453.264000pt;}
.ls5d{letter-spacing:459.696000pt;}
.ls77{letter-spacing:464.784000pt;}
.ls7b{letter-spacing:482.736000pt;}
.ls75{letter-spacing:487.824000pt;}
.ls7a{letter-spacing:494.256000pt;}
.ls66{letter-spacing:496.800000pt;}
.ls74{letter-spacing:500.016000pt;}
.ls68{letter-spacing:526.224000pt;}
.ls63{letter-spacing:531.360000pt;}
.ls65{letter-spacing:538.416000pt;}
.ls64{letter-spacing:550.560000pt;}
.ls6f{letter-spacing:554.400000pt;}
.ls62{letter-spacing:572.976000pt;}
.ls67{letter-spacing:579.984000pt;}
.ls61{letter-spacing:585.120000pt;}
.ls6c{letter-spacing:590.880000pt;}
.ls6e{letter-spacing:602.400000pt;}
.wsaa{word-spacing:-16.704000pt;}
.ws1{word-spacing:-16.512000pt;}
.ws84{word-spacing:-16.448000pt;}
.ws38{word-spacing:-16.384000pt;}
.ws36{word-spacing:-16.256000pt;}
.wsac{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.064000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.ws61{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.wsad{word-spacing:-15.616000pt;}
.ws59{word-spacing:-15.552000pt;}
.ws9e{word-spacing:-15.488000pt;}
.wsd{word-spacing:-15.360000pt;}
.ws4a{word-spacing:-15.296000pt;}
.ws0{word-spacing:-15.168000pt;}
.ws49{word-spacing:-14.720000pt;}
.ws37{word-spacing:-14.528000pt;}
.wsc0{word-spacing:-13.386240pt;}
.wsbd{word-spacing:-13.280000pt;}
.wsc3{word-spacing:-12.336000pt;}
.wsee{word-spacing:-12.192000pt;}
.wsc7{word-spacing:-12.096000pt;}
.wsc9{word-spacing:-12.000000pt;}
.wsc5{word-spacing:-11.904000pt;}
.wsc8{word-spacing:-11.808000pt;}
.wsc2{word-spacing:-11.664000pt;}
.wscc{word-spacing:-11.568000pt;}
.wsca{word-spacing:-11.520000pt;}
.wsc4{word-spacing:-11.472000pt;}
.wscb{word-spacing:-11.376000pt;}
.wsef{word-spacing:-11.280000pt;}
.wsdd{word-spacing:-11.232000pt;}
.ws93{word-spacing:-11.063040pt;}
.wse8{word-spacing:-10.977280pt;}
.ws3{word-spacing:-10.891520pt;}
.ws2{word-spacing:-10.720000pt;}
.wsf3{word-spacing:-10.505600pt;}
.wsf0{word-spacing:-10.419840pt;}
.wsf1{word-spacing:-10.334080pt;}
.ws83{word-spacing:-10.248320pt;}
.wsf2{word-spacing:-9.905280pt;}
.wsc1{word-spacing:-8.000000pt;}
.wsc6{word-spacing:-7.360000pt;}
.wsf4{word-spacing:-6.720000pt;}
.wsd7{word-spacing:-0.816000pt;}
.ws8a{word-spacing:-0.640000pt;}
.wsda{word-spacing:-0.576000pt;}
.ws95{word-spacing:-0.448000pt;}
.wse3{word-spacing:-0.424960pt;}
.wsde{word-spacing:-0.336000pt;}
.wsdb{word-spacing:-0.288000pt;}
.wse1{word-spacing:-0.257280pt;}
.wsd5{word-spacing:-0.192000pt;}
.wsfb{word-spacing:-0.171520pt;}
.wsbf{word-spacing:-0.159360pt;}
.wse6{word-spacing:-0.144000pt;}
.ws7{word-spacing:-0.128000pt;}
.wsdc{word-spacing:-0.096000pt;}
.wsfa{word-spacing:-0.085760pt;}
.wsff{word-spacing:-0.042880pt;}
.ws4{word-spacing:0.000000pt;}
.ws100{word-spacing:0.042880pt;}
.wsd8{word-spacing:0.048000pt;}
.wsbb{word-spacing:0.053120pt;}
.ws68{word-spacing:0.064000pt;}
.wsbc{word-spacing:0.073648pt;}
.wsd9{word-spacing:0.096000pt;}
.ws5{word-spacing:0.128000pt;}
.wsd1{word-spacing:0.144000pt;}
.ws8f{word-spacing:0.171520pt;}
.ws1e{word-spacing:0.192000pt;}
.wse4{word-spacing:0.212480pt;}
.wsd0{word-spacing:0.240000pt;}
.ws8{word-spacing:0.256000pt;}
.wsd3{word-spacing:0.336000pt;}
.ws9{word-spacing:0.384000pt;}
.wseb{word-spacing:0.385920pt;}
.ws101{word-spacing:0.428800pt;}
.wse0{word-spacing:0.471680pt;}
.wsbe{word-spacing:0.478080pt;}
.wsd2{word-spacing:0.480000pt;}
.ws5a{word-spacing:0.512000pt;}
.wsd6{word-spacing:0.528000pt;}
.ws98{word-spacing:0.576000pt;}
.wse7{word-spacing:0.624000pt;}
.ws6{word-spacing:0.640000pt;}
.wse2{word-spacing:0.643200pt;}
.wse5{word-spacing:0.768000pt;}
.wsba{word-spacing:0.773304pt;}
.ws67{word-spacing:0.832000pt;}
.ws3d{word-spacing:0.896000pt;}
.wsed{word-spacing:0.900480pt;}
.wsf5{word-spacing:0.912000pt;}
.ws3a{word-spacing:1.152000pt;}
.ws55{word-spacing:1.216000pt;}
.wsd4{word-spacing:1.248000pt;}
.ws27{word-spacing:1.280000pt;}
.ws89{word-spacing:1.408000pt;}
.ws7a{word-spacing:1.472000pt;}
.ws39{word-spacing:1.536000pt;}
.wsf6{word-spacing:1.758080pt;}
.ws58{word-spacing:1.792000pt;}
.wsf7{word-spacing:1.843840pt;}
.ws8e{word-spacing:1.856000pt;}
.ws20{word-spacing:1.920000pt;}
.ws75{word-spacing:2.048000pt;}
.ws22{word-spacing:2.112000pt;}
.ws2f{word-spacing:2.176000pt;}
.ws40{word-spacing:2.432000pt;}
.wsf9{word-spacing:2.487040pt;}
.ws3f{word-spacing:2.560000pt;}
.wsf8{word-spacing:2.572800pt;}
.ws21{word-spacing:2.816000pt;}
.ws46{word-spacing:3.072000pt;}
.ws3b{word-spacing:3.200000pt;}
.ws50{word-spacing:3.456000pt;}
.wsfc{word-spacing:3.644800pt;}
.ws7f{word-spacing:3.712000pt;}
.ws5c{word-spacing:3.840000pt;}
.ws8d{word-spacing:4.032000pt;}
.wscd{word-spacing:4.037120pt;}
.ws74{word-spacing:4.096000pt;}
.wsfd{word-spacing:4.202240pt;}
.wsdf{word-spacing:4.288000pt;}
.ws2e{word-spacing:4.352000pt;}
.wsfe{word-spacing:4.459520pt;}
.ws2d{word-spacing:4.480000pt;}
.wsce{word-spacing:4.515200pt;}
.ws5b{word-spacing:4.736000pt;}
.wsea{word-spacing:4.845440pt;}
.wse9{word-spacing:4.931200pt;}
.wscf{word-spacing:4.940160pt;}
.ws15{word-spacing:4.992000pt;}
.wsec{word-spacing:5.102720pt;}
.ws14{word-spacing:5.120000pt;}
.wsb6{word-spacing:5.312000pt;}
.ws48{word-spacing:5.376000pt;}
.ws47{word-spacing:5.632000pt;}
.ws33{word-spacing:5.760000pt;}
.ws34{word-spacing:5.952000pt;}
.ws35{word-spacing:6.016000pt;}
.ws2b{word-spacing:6.272000pt;}
.ws1f{word-spacing:6.400000pt;}
.wsb5{word-spacing:6.528000pt;}
.wsa7{word-spacing:6.592000pt;}
.ws1d{word-spacing:6.656000pt;}
.ws3c{word-spacing:7.040000pt;}
.ws80{word-spacing:7.232000pt;}
.ws42{word-spacing:7.296000pt;}
.ws71{word-spacing:7.552000pt;}
.ws31{word-spacing:7.680000pt;}
.ws32{word-spacing:7.936000pt;}
.ws6f{word-spacing:8.192000pt;}
.ws2c{word-spacing:8.320000pt;}
.ws13{word-spacing:8.576000pt;}
.ws30{word-spacing:8.960000pt;}
.ws5e{word-spacing:9.216000pt;}
.ws94{word-spacing:9.472000pt;}
.ws41{word-spacing:9.600000pt;}
.ws77{word-spacing:9.792000pt;}
.ws70{word-spacing:9.856000pt;}
.wsa6{word-spacing:10.112000pt;}
.ws53{word-spacing:10.240000pt;}
.ws96{word-spacing:10.419840pt;}
.ws92{word-spacing:10.496000pt;}
.ws3e{word-spacing:10.752000pt;}
.ws88{word-spacing:10.816000pt;}
.ws25{word-spacing:10.880000pt;}
.ws24{word-spacing:11.136000pt;}
.wsb1{word-spacing:11.520000pt;}
.ws7d{word-spacing:11.776000pt;}
.ws44{word-spacing:12.032000pt;}
.ws43{word-spacing:12.160000pt;}
.wsb8{word-spacing:12.352000pt;}
.ws45{word-spacing:12.416000pt;}
.wsa8{word-spacing:12.672000pt;}
.ws1b{word-spacing:12.800000pt;}
.wsae{word-spacing:12.928000pt;}
.ws1c{word-spacing:13.056000pt;}
.ws8b{word-spacing:13.312000pt;}
.ws4b{word-spacing:13.440000pt;}
.ws7e{word-spacing:13.632000pt;}
.ws57{word-spacing:13.696000pt;}
.ws5d{word-spacing:13.952000pt;}
.ws56{word-spacing:14.080000pt;}
.wsa5{word-spacing:14.208000pt;}
.ws6c{word-spacing:14.336000pt;}
.wsa1{word-spacing:14.720000pt;}
.ws8c{word-spacing:14.976000pt;}
.ws97{word-spacing:15.360000pt;}
.wsb9{word-spacing:15.424000pt;}
.ws82{word-spacing:15.552000pt;}
.ws81{word-spacing:15.616000pt;}
.ws9c{word-spacing:15.872000pt;}
.ws79{word-spacing:16.000000pt;}
.ws78{word-spacing:16.256000pt;}
.ws6a{word-spacing:16.512000pt;}
.ws6b{word-spacing:16.640000pt;}
.ws91{word-spacing:16.832000pt;}
.ws90{word-spacing:16.896000pt;}
.ws54{word-spacing:17.152000pt;}
.ws11{word-spacing:17.280000pt;}
.ws99{word-spacing:17.536000pt;}
.ws62{word-spacing:17.920000pt;}
.ws4e{word-spacing:18.176000pt;}
.ws65{word-spacing:18.560000pt;}
.ws66{word-spacing:18.752000pt;}
.ws4f{word-spacing:18.816000pt;}
.ws73{word-spacing:19.072000pt;}
.ws63{word-spacing:19.200000pt;}
.ws64{word-spacing:19.456000pt;}
.ws16{word-spacing:19.840000pt;}
.ws19{word-spacing:20.032000pt;}
.ws17{word-spacing:20.096000pt;}
.ws18{word-spacing:20.352000pt;}
.wsa3{word-spacing:20.480000pt;}
.wsa2{word-spacing:20.736000pt;}
.ws72{word-spacing:20.992000pt;}
.ws52{word-spacing:21.120000pt;}
.wsa4{word-spacing:21.312000pt;}
.ws51{word-spacing:21.376000pt;}
.ws76{word-spacing:21.632000pt;}
.ws23{word-spacing:21.760000pt;}
.ws69{word-spacing:22.016000pt;}
.ws60{word-spacing:22.272000pt;}
.ws12{word-spacing:22.400000pt;}
.ws5f{word-spacing:22.656000pt;}
.ws9d{word-spacing:23.296000pt;}
.ws1a{word-spacing:23.680000pt;}
.ws6d{word-spacing:24.192000pt;}
.ws6e{word-spacing:24.320000pt;}
.ws29{word-spacing:25.216000pt;}
.ws2a{word-spacing:25.600000pt;}
.ws7b{word-spacing:27.136000pt;}
.ws7c{word-spacing:27.776000pt;}
.wsb7{word-spacing:28.160000pt;}
.ws9f{word-spacing:28.672000pt;}
.wsa0{word-spacing:28.800000pt;}
.wsb2{word-spacing:30.080000pt;}
.ws87{word-spacing:31.872000pt;}
.ws86{word-spacing:32.000000pt;}
.ws85{word-spacing:32.256000pt;}
.ws9b{word-spacing:33.792000pt;}
.ws9a{word-spacing:33.920000pt;}
.ws4c{word-spacing:34.560000pt;}
.ws4d{word-spacing:34.816000pt;}
.wsab{word-spacing:35.200000pt;}
.wsb0{word-spacing:38.272000pt;}
.wsaf{word-spacing:39.040000pt;}
.ws28{word-spacing:40.960000pt;}
.ws26{word-spacing:41.152000pt;}
.wsa9{word-spacing:46.720000pt;}
.wsb4{word-spacing:52.480000pt;}
.wsb3{word-spacing:53.120000pt;}
._8f{margin-left:-2543.993600pt;}
._9e{margin-left:-2529.408000pt;}
._87{margin-left:-2522.944000pt;}
._7f{margin-left:-2514.560000pt;}
._7c{margin-left:-2511.296000pt;}
._69{margin-left:-2506.886400pt;}
._51{margin-left:-2502.528000pt;}
._45{margin-left:-2500.096000pt;}
._66{margin-left:-2498.688000pt;}
._40{margin-left:-2497.222400pt;}
._4b{margin-left:-2495.872000pt;}
._3c{margin-left:-2494.400000pt;}
._3b{margin-left:-2493.504000pt;}
._41{margin-left:-2492.096000pt;}
._5b{margin-left:-2490.432000pt;}
._43{margin-left:-2489.408000pt;}
._3e{margin-left:-2488.448000pt;}
._52{margin-left:-2486.848000pt;}
._47{margin-left:-2485.888000pt;}
._3a{margin-left:-2484.480000pt;}
._42{margin-left:-2483.584000pt;}
._3d{margin-left:-2482.240000pt;}
._5c{margin-left:-2480.768000pt;}
._4a{margin-left:-2479.744000pt;}
._2d{margin-left:-2478.528000pt;}
._67{margin-left:-2477.632000pt;}
._46{margin-left:-2476.416000pt;}
._38{margin-left:-2475.072000pt;}
._c6{margin-left:-2472.571520pt;}
._ba{margin-left:-2470.240000pt;}
._14{margin-left:-2466.048000pt;}
._1a{margin-left:-2463.488000pt;}
._2a{margin-left:-2462.073600pt;}
._48{margin-left:-2459.776000pt;}
._78{margin-left:-2458.624000pt;}
._2c{margin-left:-2457.216000pt;}
._10{margin-left:-2455.936000pt;}
._1b{margin-left:-2454.848000pt;}
._35{margin-left:-2453.632000pt;}
._20{margin-left:-2452.736000pt;}
._21{margin-left:-2451.712000pt;}
._12{margin-left:-2450.240000pt;}
._1d{margin-left:-2449.344000pt;}
._1f{margin-left:-2447.872000pt;}
._26{margin-left:-2446.720000pt;}
._13{margin-left:-2444.864000pt;}
._19{margin-left:-2443.520000pt;}
._d{margin-left:-2435.648000pt;}
._c{margin-left:-2431.424000pt;}
._3{margin-left:-2429.568000pt;}
._ad{margin-left:-2421.504000pt;}
._8{margin-left:-2419.776000pt;}
._a{margin-left:-2416.768000pt;}
._6{margin-left:-2411.520000pt;}
._ae{margin-left:-2388.288000pt;}
._5e{margin-left:-2368.025600pt;}
._7a{margin-left:-2366.528000pt;}
._9f{margin-left:-2334.720000pt;}
._24{margin-left:-2319.360000pt;}
._c7{margin-left:-2317.693440pt;}
._7e{margin-left:-2302.144000pt;}
._6d{margin-left:-2244.480000pt;}
._8c{margin-left:-2193.728000pt;}
._98{margin-left:-2186.304000pt;}
._76{margin-left:-2181.888000pt;}
._93{margin-left:-2170.432000pt;}
._a4{margin-left:-2149.120000pt;}
._c5{margin-left:-2139.110400pt;}
._58{margin-left:-2129.728000pt;}
._b9{margin-left:-2112.480000pt;}
._8b{margin-left:-2087.744000pt;}
._74{margin-left:-2055.104000pt;}
._82{margin-left:-2046.080000pt;}
._88{margin-left:-1998.272000pt;}
._96{margin-left:-1995.456000pt;}
._a6{margin-left:-1988.160000pt;}
._56{margin-left:-1958.016000pt;}
._b3{margin-left:-1948.416000pt;}
._2{margin-left:-1913.536000pt;}
._9c{margin-left:-1901.248000pt;}
._85{margin-left:-1874.624000pt;}
._b0{margin-left:-1867.072000pt;}
._b6{margin-left:-1855.808000pt;}
._bc{margin-left:-1851.861760pt;}
._aa{margin-left:-1820.480000pt;}
._a1{margin-left:-1777.344000pt;}
._90{margin-left:-1774.208000pt;}
._5d{margin-left:-1722.062720pt;}
._ac{margin-left:-1714.624000pt;}
._ab{margin-left:-1698.496000pt;}
._28{margin-left:-1682.688000pt;}
._7d{margin-left:-1681.408000pt;}
._73{margin-left:-1668.288000pt;}
._8d{margin-left:-1642.432000pt;}
._92{margin-left:-1612.288000pt;}
._79{margin-left:-1605.120000pt;}
._99{margin-left:-1589.056000pt;}
._e{margin-left:-1587.072000pt;}
._22{margin-left:-1575.744000pt;}
._94{margin-left:-1561.536000pt;}
._91{margin-left:-1548.224000pt;}
._83{margin-left:-1522.560000pt;}
._4d{margin-left:-1479.360000pt;}
._97{margin-left:-1471.936000pt;}
._61{margin-left:-1415.040000pt;}
._62{margin-left:-1411.648000pt;}
._37{margin-left:-1342.144000pt;}
._77{margin-left:-1337.664000pt;}
._b5{margin-left:-1336.768000pt;}
._7b{margin-left:-1330.560000pt;}
._c4{margin-left:-1323.946880pt;}
._9d{margin-left:-1306.496000pt;}
._80{margin-left:-1270.720000pt;}
._a2{margin-left:-1260.352000pt;}
._9a{margin-left:-1244.288000pt;}
._a0{margin-left:-1239.040000pt;}
._6f{margin-left:-1236.928000pt;}
._81{margin-left:-1224.704000pt;}
._75{margin-left:-1222.848000pt;}
._36{margin-left:-1204.928000pt;}
._b7{margin-left:-1147.655680pt;}
._9b{margin-left:-1141.120000pt;}
._6a{margin-left:-1127.872000pt;}
._60{margin-left:-1048.896000pt;}
._bf{margin-left:-1047.284480pt;}
._86{margin-left:-990.208000pt;}
._30{margin-left:-981.248000pt;}
._89{margin-left:-954.560000pt;}
._a9{margin-left:-953.600000pt;}
._b1{margin-left:-940.352000pt;}
._5a{margin-left:-854.272000pt;}
._a8{margin-left:-850.496000pt;}
._55{margin-left:-844.416000pt;}
._4c{margin-left:-824.128000pt;}
._4f{margin-left:-801.344000pt;}
._a5{margin-left:-787.456000pt;}
._70{margin-left:-773.568000pt;}
._6c{margin-left:-752.064000pt;}
._b2{margin-left:-727.040000pt;}
._af{margin-left:-709.312000pt;}
._b4{margin-left:-684.352000pt;}
._a7{margin-left:-682.560000pt;}
._53{margin-left:-638.656000pt;}
._5f{margin-left:-616.896000pt;}
._6e{margin-left:-602.752000pt;}
._34{margin-left:-599.104000pt;}
._25{margin-left:-588.864000pt;}
._33{margin-left:-570.624000pt;}
._63{margin-left:-560.704000pt;}
._3f{margin-left:-550.784000pt;}
._49{margin-left:-545.216000pt;}
._50{margin-left:-523.840000pt;}
._31{margin-left:-497.728000pt;}
._32{margin-left:-477.440000pt;}
._54{margin-left:-470.336000pt;}
._a3{margin-left:-439.040000pt;}
._4e{margin-left:-396.800000pt;}
._23{margin-left:-364.800000pt;}
._b8{margin-left:-356.320000pt;}
._59{margin-left:-208.000000pt;}
._bb{margin-left:-205.280000pt;}
._be{margin-left:-202.720000pt;}
._8e{margin-left:-52.806400pt;}
._71{margin-left:-17.920000pt;}
._68{margin-left:-15.609600pt;}
._29{margin-left:-3.014400pt;}
._27{margin-left:-2.048000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.024000pt;}
._17{width:2.304000pt;}
._1e{width:3.904000pt;}
._9{width:5.184000pt;}
._2b{width:6.208000pt;}
._11{width:7.104000pt;}
._7{width:8.576000pt;}
._39{width:9.664000pt;}
._15{width:10.816000pt;}
._95{width:12.288000pt;}
._f{width:13.440000pt;}
._84{width:14.784000pt;}
._64{width:16.960000pt;}
._2e{width:18.048000pt;}
._2f{width:19.136000pt;}
._b{width:20.288000pt;}
._4{width:21.888000pt;}
._5{width:23.104000pt;}
._44{width:24.512000pt;}
._1c{width:25.408000pt;}
._6b{width:28.992000pt;}
._8a{width:29.888000pt;}
._57{width:31.488000pt;}
._65{width:33.856000pt;}
._16{width:40.704000pt;}
._18{width:41.728000pt;}
._72{width:47.040000pt;}
._bd{width:75.742400pt;}
._c2{width:245.328000pt;}
._c3{width:568.688000pt;}
._c1{width:633.984000pt;}
._c0{width:664.032000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:36.824000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.yd6{bottom:-71.040000pt;}
.yd5{bottom:-57.280000pt;}
.yd4{bottom:-43.520000pt;}
.yd3{bottom:-29.600000pt;}
.yc7{bottom:-16.480000pt;}
.yd2{bottom:-15.840000pt;}
.y62{bottom:-10.560000pt;}
.yf2{bottom:-7.840000pt;}
.yf0{bottom:-7.040000pt;}
.yc6{bottom:-2.720000pt;}
.yd1{bottom:-2.080000pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:2.560000pt;}
.y121{bottom:2.879867pt;}
.y64{bottom:2.880000pt;}
.y115{bottom:3.040000pt;}
.y66{bottom:3.200000pt;}
.y61{bottom:3.360000pt;}
.y67{bottom:3.520000pt;}
.y2{bottom:3.840000pt;}
.y76{bottom:4.000000pt;}
.y6c{bottom:4.160000pt;}
.y69{bottom:4.320000pt;}
.y119{bottom:4.480000pt;}
.y11f{bottom:4.640000pt;}
.y10e{bottom:5.120000pt;}
.y110{bottom:5.440000pt;}
.y112{bottom:6.080000pt;}
.y114{bottom:6.240000pt;}
.y94{bottom:8.000000pt;}
.y87{bottom:8.160000pt;}
.yc9{bottom:10.720000pt;}
.ycc{bottom:10.880000pt;}
.yc5{bottom:11.040000pt;}
.ycb{bottom:11.200000pt;}
.yd0{bottom:11.680000pt;}
.yda{bottom:11.840000pt;}
.y1{bottom:47.200000pt;}
.y2a{bottom:51.040000pt;}
.y25{bottom:51.200000pt;}
.y5a{bottom:101.206133pt;}
.yb9{bottom:102.880000pt;}
.y147{bottom:105.440000pt;}
.yf4{bottom:108.160000pt;}
.y108{bottom:116.640000pt;}
.yb7{bottom:117.920000pt;}
.yb8{bottom:121.600000pt;}
.yf3{bottom:127.040000pt;}
.y43{bottom:128.800000pt;}
.y146{bottom:130.080000pt;}
.yb6{bottom:133.120000pt;}
.y107{bottom:134.288000pt;}
.y59{bottom:138.828267pt;}
.y24{bottom:147.680000pt;}
.yb5{bottom:148.160000pt;}
.y145{bottom:154.560000pt;}
.y106{bottom:157.004000pt;}
.y55{bottom:157.600000pt;}
.y5d{bottom:157.920000pt;}
.yb4{bottom:163.360000pt;}
.y42{bottom:165.600000pt;}
.yb3{bottom:178.560000pt;}
.y144{bottom:179.040000pt;}
.y105{bottom:179.720000pt;}
.y23{bottom:184.480000pt;}
.y5c{bottom:185.280000pt;}
.yb1{bottom:193.600000pt;}
.y54{bottom:194.400000pt;}
.yb2{bottom:197.280000pt;}
.y104{bottom:202.280000pt;}
.y41{bottom:202.400000pt;}
.y143{bottom:203.680000pt;}
.yb0{bottom:208.800000pt;}
.y142{bottom:213.920000pt;}
.y22{bottom:221.280000pt;}
.yaf{bottom:223.840000pt;}
.y103{bottom:224.996000pt;}
.y141{bottom:230.880000pt;}
.y53{bottom:231.200000pt;}
.yae{bottom:239.040000pt;}
.y40{bottom:239.200000pt;}
.y102{bottom:247.712000pt;}
.y140{bottom:247.840000pt;}
.yac{bottom:257.920000pt;}
.y21{bottom:258.080000pt;}
.yad{bottom:261.600000pt;}
.y13f{bottom:264.960000pt;}
.y52{bottom:268.000000pt;}
.y101{bottom:270.272000pt;}
.yab{bottom:273.120000pt;}
.y3f{bottom:276.000000pt;}
.y13e{bottom:281.920000pt;}
.ya9{bottom:288.160000pt;}
.yaa{bottom:291.840000pt;}
.y100{bottom:292.988000pt;}
.y20{bottom:294.880000pt;}
.y13d{bottom:298.880000pt;}
.ya7{bottom:303.360000pt;}
.y51{bottom:304.800000pt;}
.ya8{bottom:307.040000pt;}
.y3e{bottom:312.800000pt;}
.yff{bottom:315.704000pt;}
.y13c{bottom:315.840000pt;}
.ya5{bottom:318.560000pt;}
.ya6{bottom:322.080000pt;}
.y1f{bottom:331.680000pt;}
.y13b{bottom:332.960000pt;}
.ya3{bottom:333.600000pt;}
.ya4{bottom:337.280000pt;}
.yfe{bottom:338.264000pt;}
.y50{bottom:341.600000pt;}
.ya2{bottom:348.800000pt;}
.y3d{bottom:349.600000pt;}
.y13a{bottom:349.920000pt;}
.yfd{bottom:360.980000pt;}
.ya1{bottom:363.840000pt;}
.y139{bottom:366.880000pt;}
.y1e{bottom:368.480000pt;}
.y4f{bottom:378.400000pt;}
.y9f{bottom:379.040000pt;}
.ya0{bottom:382.720000pt;}
.yfc{bottom:383.696000pt;}
.y138{bottom:383.840000pt;}
.y3c{bottom:386.400000pt;}
.y9e{bottom:394.240000pt;}
.y137{bottom:400.960000pt;}
.y1d{bottom:405.280000pt;}
.yfb{bottom:406.256000pt;}
.y9c{bottom:409.280000pt;}
.y4e{bottom:415.200000pt;}
.y9d{bottom:416.640000pt;}
.y136{bottom:417.920000pt;}
.y45{bottom:422.880000pt;}
.y3b{bottom:423.200000pt;}
.yf5{bottom:426.880000pt;}
.y9a{bottom:428.160000pt;}
.yfa{bottom:428.972000pt;}
.y9b{bottom:431.840000pt;}
.y135{bottom:434.880000pt;}
.y47{bottom:441.600000pt;}
.y1c{bottom:442.080000pt;}
.y98{bottom:443.360000pt;}
.y99{bottom:447.040000pt;}
.yf9{bottom:451.688000pt;}
.y134{bottom:451.840000pt;}
.y4d{bottom:452.000000pt;}
.y96{bottom:458.560000pt;}
.y3a{bottom:460.000000pt;}
.y97{bottom:462.080000pt;}
.y133{bottom:468.960000pt;}
.y95{bottom:473.600000pt;}
.yf8{bottom:474.248000pt;}
.y46{bottom:478.400000pt;}
.y1b{bottom:478.880000pt;}
.y132{bottom:485.920000pt;}
.y4c{bottom:488.800000pt;}
.y39{bottom:496.800000pt;}
.yf7{bottom:496.964000pt;}
.y131{bottom:502.880000pt;}
.y92{bottom:507.680000pt;}
.y93{bottom:511.360000pt;}
.y1a{bottom:515.680000pt;}
.yf6{bottom:519.680000pt;}
.y130{bottom:519.840000pt;}
.y91{bottom:522.880000pt;}
.y4b{bottom:525.600000pt;}
.y38{bottom:533.600000pt;}
.yf1{bottom:535.040000pt;}
.y12f{bottom:536.960000pt;}
.y8f{bottom:537.920000pt;}
.yef{bottom:538.720000pt;}
.y90{bottom:541.600000pt;}
.yee{bottom:542.560000pt;}
.yed{bottom:549.924000pt;}
.y19{bottom:552.480000pt;}
.y8d{bottom:553.120000pt;}
.y12e{bottom:553.920000pt;}
.y8e{bottom:556.640000pt;}
.y4a{bottom:562.400000pt;}
.y8b{bottom:568.160000pt;}
.y37{bottom:570.400000pt;}
.y12d{bottom:570.880000pt;}
.y8c{bottom:571.840000pt;}
.yec{bottom:572.640000pt;}
.y89{bottom:583.360000pt;}
.y8a{bottom:587.040000pt;}
.y12c{bottom:587.840000pt;}
.y18{bottom:589.280000pt;}
.yeb{bottom:595.200000pt;}
.y88{bottom:598.560000pt;}
.y49{bottom:599.200000pt;}
.y12b{bottom:604.960000pt;}
.y36{bottom:607.200000pt;}
.yea{bottom:610.560000pt;}
.y86{bottom:613.600000pt;}
.ye9{bottom:617.924000pt;}
.y12a{bottom:621.920000pt;}
.y17{bottom:626.080000pt;}
.y84{bottom:632.640000pt;}
.y48{bottom:636.000000pt;}
.y85{bottom:636.160000pt;}
.y129{bottom:638.880000pt;}
.ye8{bottom:640.640000pt;}
.y35{bottom:644.000000pt;}
.y83{bottom:647.680000pt;}
.y128{bottom:655.840000pt;}
.y16{bottom:662.880000pt;}
.y58{bottom:662.946667pt;}
.y5b{bottom:663.040000pt;}
.ye7{bottom:663.200000pt;}
.y127{bottom:672.960000pt;}
.y82{bottom:677.920000pt;}
.ye6{bottom:678.560000pt;}
.y34{bottom:680.800000pt;}
.ye5{bottom:685.924000pt;}
.y126{bottom:689.920000pt;}
.ycd{bottom:690.080000pt;}
.y81{bottom:693.120000pt;}
.y15{bottom:699.680000pt;}
.y9{bottom:704.000000pt;}
.y125{bottom:706.880000pt;}
.y7f{bottom:708.160000pt;}
.ye4{bottom:708.640000pt;}
.y80{bottom:711.840000pt;}
.y33{bottom:717.600000pt;}
.y7d{bottom:723.360000pt;}
.y124{bottom:723.840000pt;}
.y7e{bottom:727.040000pt;}
.ye3{bottom:731.200000pt;}
.y14{bottom:736.480000pt;}
.y7b{bottom:738.560000pt;}
.y8{bottom:740.800000pt;}
.y123{bottom:740.960000pt;}
.y7c{bottom:742.080000pt;}
.ye2{bottom:746.560000pt;}
.y7a{bottom:753.600000pt;}
.ye1{bottom:753.924000pt;}
.y32{bottom:754.400000pt;}
.y122{bottom:757.920000pt;}
.y79{bottom:768.800000pt;}
.y13{bottom:773.280000pt;}
.y120{bottom:774.880000pt;}
.ye0{bottom:776.640000pt;}
.y7{bottom:783.680000pt;}
.y77{bottom:783.840000pt;}
.y78{bottom:787.520000pt;}
.y31{bottom:791.200000pt;}
.y11e{bottom:791.840000pt;}
.y75{bottom:799.040000pt;}
.ydf{bottom:799.200000pt;}
.y11d{bottom:808.960000pt;}
.y12{bottom:810.080000pt;}
.y73{bottom:813.920000pt;}
.y6{bottom:814.400000pt;}
.yde{bottom:814.560000pt;}
.y74{bottom:817.440000pt;}
.ydd{bottom:821.924000pt;}
.y11c{bottom:825.920000pt;}
.y30{bottom:828.000000pt;}
.y71{bottom:828.960000pt;}
.y72{bottom:832.640000pt;}
.y11b{bottom:842.880000pt;}
.y70{bottom:844.160000pt;}
.ydc{bottom:844.640000pt;}
.y11{bottom:846.880000pt;}
.y5{bottom:857.280000pt;}
.y6e{bottom:859.360000pt;}
.y11a{bottom:859.840000pt;}
.y6f{bottom:862.880000pt;}
.y2f{bottom:864.800000pt;}
.y29{bottom:865.280000pt;}
.ydb{bottom:867.200000pt;}
.y6d{bottom:874.400000pt;}
.y118{bottom:876.960000pt;}
.yd9{bottom:882.560000pt;}
.y10{bottom:883.680000pt;}
.y6b{bottom:889.600000pt;}
.yd8{bottom:889.920000pt;}
.yc3{bottom:891.520000pt;}
.y117{bottom:893.920000pt;}
.y2e{bottom:901.600000pt;}
.y28{bottom:902.080000pt;}
.y68{bottom:904.640000pt;}
.ycf{bottom:905.280000pt;}
.y6a{bottom:908.320000pt;}
.y116{bottom:910.880000pt;}
.yd7{bottom:912.640000pt;}
.yc2{bottom:916.160000pt;}
.y65{bottom:919.840000pt;}
.yf{bottom:920.480000pt;}
.y4{bottom:924.800000pt;}
.y113{bottom:927.840000pt;}
.yce{bottom:934.880000pt;}
.y63{bottom:935.040000pt;}
.y2d{bottom:938.400000pt;}
.y27{bottom:938.880000pt;}
.yc1{bottom:940.640000pt;}
.y111{bottom:944.960000pt;}
.y5f{bottom:945.440000pt;}
.y60{bottom:950.080000pt;}
.yca{bottom:950.560000pt;}
.yc0{bottom:950.880000pt;}
.ye{bottom:957.280000pt;}
.y10f{bottom:961.920000pt;}
.ybe{bottom:966.080000pt;}
.yc8{bottom:968.640000pt;}
.ybf{bottom:969.600000pt;}
.yc4{bottom:973.280000pt;}
.y2c{bottom:975.200000pt;}
.yd{bottom:975.360000pt;}
.y26{bottom:975.680000pt;}
.y10b{bottom:978.880000pt;}
.y3{bottom:979.680000pt;}
.ybd{bottom:981.120000pt;}
.y57{bottom:983.360000pt;}
.y5e{bottom:983.680000pt;}
.y10d{bottom:985.440000pt;}
.y10a{bottom:992.480000pt;}
.ybc{bottom:996.320000pt;}
.yba{bottom:1011.360000pt;}
.y2b{bottom:1011.680000pt;}
.y44{bottom:1012.000000pt;}
.y56{bottom:1014.400000pt;}
.ybb{bottom:1015.040000pt;}
.y109{bottom:1016.960000pt;}
.yc{bottom:1033.838667pt;}
.yb{bottom:1068.637333pt;}
.ya{bottom:1084.637333pt;}
.h1e{height:3.040000pt;}
.h1d{height:3.840000pt;}
.hc{height:14.400000pt;}
.hb{height:14.561333pt;}
.h13{height:14.880000pt;}
.h12{height:15.040000pt;}
.h10{height:15.041333pt;}
.he{height:15.198667pt;}
.h11{height:15.200000pt;}
.h20{height:16.320000pt;}
.h23{height:16.960000pt;}
.h25{height:16.961333pt;}
.h26{height:17.118667pt;}
.h24{height:17.120000pt;}
.h2{height:18.401333pt;}
.h17{height:18.880000pt;}
.h16{height:18.881333pt;}
.h15{height:19.040000pt;}
.h21{height:21.687500pt;}
.h18{height:21.918667pt;}
.h19{height:22.080000pt;}
.h1a{height:22.560000pt;}
.h1b{height:22.720000pt;}
.h1c{height:22.721333pt;}
.h9{height:26.359367pt;}
.hf{height:28.078125pt;}
.ha{height:32.531250pt;}
.h14{height:33.328125pt;}
.h6{height:37.624687pt;}
.h7{height:38.828125pt;}
.hd{height:42.117188pt;}
.h4{height:43.375000pt;}
.h22{height:44.078125pt;}
.h3{height:56.156250pt;}
.h5{height:61.944687pt;}
.h8{height:302.265333pt;}
.h1f{height:408.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:7.998667pt;}
.w16{width:9.760000pt;}
.w7{width:14.718667pt;}
.w3{width:16.000000pt;}
.we{width:20.958667pt;}
.wb{width:20.960000pt;}
.wc{width:35.520000pt;}
.wa{width:41.440000pt;}
.wd{width:41.441333pt;}
.w17{width:48.320000pt;}
.wf{width:51.521333pt;}
.w15{width:56.800000pt;}
.w14{width:56.801333pt;}
.w6{width:97.920000pt;}
.w8{width:103.841333pt;}
.w11{width:111.520000pt;}
.w10{width:114.400000pt;}
.w12{width:156.000000pt;}
.w5{width:216.480000pt;}
.w13{width:241.278667pt;}
.w9{width:295.040000pt;}
.w4{width:349.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:4.800000pt;}
.x19{left:7.200000pt;}
.x1f{left:10.400000pt;}
.x17{left:13.280000pt;}
.x1b{left:15.680000pt;}
.x21{left:17.600000pt;}
.x4f{left:19.360000pt;}
.x1d{left:20.640000pt;}
.x4d{left:21.600000pt;}
.x51{left:23.200000pt;}
.x50{left:24.800000pt;}
.x27{left:28.160000pt;}
.x55{left:31.200000pt;}
.x5b{left:32.960000pt;}
.x33{left:34.240000pt;}
.x58{left:47.040000pt;}
.x9{left:52.684000pt;}
.xa{left:54.082667pt;}
.x56{left:55.520000pt;}
.x57{left:57.120000pt;}
.x15{left:79.040000pt;}
.xb{left:81.440000pt;}
.x32{left:103.200000pt;}
.x48{left:107.840000pt;}
.x16{left:109.120000pt;}
.x47{left:110.560000pt;}
.x30{left:112.160000pt;}
.x4{left:113.760000pt;}
.x43{left:115.840000pt;}
.x2e{left:119.840000pt;}
.x41{left:123.840000pt;}
.x11{left:125.902800pt;}
.x26{left:128.800000pt;}
.x46{left:130.560000pt;}
.x4a{left:135.840000pt;}
.x45{left:138.560000pt;}
.x1c{left:141.120000pt;}
.x24{left:143.200000pt;}
.x3{left:145.280000pt;}
.xf{left:149.440000pt;}
.xe{left:151.200000pt;}
.x37{left:153.920000pt;}
.x3e{left:155.200000pt;}
.xc{left:160.640000pt;}
.x3a{left:161.920000pt;}
.x2c{left:164.480000pt;}
.x7{left:170.400000pt;}
.x6{left:171.840000pt;}
.x2{left:175.680000pt;}
.x35{left:178.560000pt;}
.x4b{left:180.160000pt;}
.x2a{left:209.600000pt;}
.x52{left:213.760000pt;}
.x3c{left:228.800000pt;}
.x53{left:231.680000pt;}
.x31{left:233.120000pt;}
.x3f{left:238.400000pt;}
.x10{left:241.346667pt;}
.x2f{left:244.160000pt;}
.x42{left:245.600000pt;}
.x2d{left:249.760000pt;}
.x40{left:253.760000pt;}
.x25{left:260.800000pt;}
.x49{left:267.840000pt;}
.x44{left:270.400000pt;}
.x28{left:272.960000pt;}
.x23{left:282.400000pt;}
.x36{left:283.680000pt;}
.x3d{left:284.960000pt;}
.x8{left:292.000000pt;}
.x39{left:293.760000pt;}
.x2b{left:303.520000pt;}
.x34{left:308.320000pt;}
.x38{left:311.040000pt;}
.x5{left:312.960000pt;}
.x29{left:341.280000pt;}
.x59{left:350.080000pt;}
.x3b{left:360.640000pt;}
.x4c{left:387.680000pt;}
.x5a{left:406.880000pt;}
.x54{left:419.040000pt;}
.x14{left:436.160000pt;}
.x5c{left:463.520000pt;}
.x1e{left:477.600000pt;}
.x20{left:498.560000pt;}
.x4e{left:502.080000pt;}
.x5d{left:520.320000pt;}
.x5f{left:530.080000pt;}
.x18{left:534.080000pt;}
.x1a{left:548.800000pt;}
.x12{left:590.240000pt;}
.x22{left:611.200000pt;}
.xd{left:664.320000pt;}
.x1{left:672.320000pt;}
.x13{left:679.680000pt;}
}




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