
    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_d67ea7d43bc0a67f5577a211.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_e450588b0fb0483e35862ade.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_53efb546ab6f11fb3fd254c5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_0cdf81c328a6fdd421bbbc0e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.902344;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_806bff7bdf03892e3f2e083b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_1c30c9300501e81276d7168a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_34cf84bbf0ef7d5385288db8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_45c19c0930c1de6b5b208a15.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082031;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_340d1fc216534caa9fe549d2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.902344;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_12d34990cfd5786fa7bbd27c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_e5ca07a705d60dd9ad8b0a70.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_12d41721064a18358e637aa5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.678711;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_6cee5b7e7f5de0eed645fce2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.678711;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{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);}
.v3{vertical-align:-22.200000px;}
.v4{vertical-align:-14.280000px;}
.v5{vertical-align:-13.152000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v2{vertical-align:26.640000px;}
.ls41{letter-spacing:-7.056000px;}
.ls4f{letter-spacing:-4.356000px;}
.ls40{letter-spacing:-2.808000px;}
.ls53{letter-spacing:-2.574000px;}
.ls3b{letter-spacing:-2.232000px;}
.ls39{letter-spacing:-2.088000px;}
.ls30{letter-spacing:-2.016000px;}
.ls32{letter-spacing:-1.944000px;}
.ls38{letter-spacing:-1.656000px;}
.ls5a{letter-spacing:-1.122000px;}
.ls34{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-1.008000px;}
.ls24{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.720000px;}
.ls5b{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.648000px;}
.ls5c{letter-spacing:-0.594000px;}
.ls3e{letter-spacing:-0.576000px;}
.ls51{letter-spacing:-0.528000px;}
.ls46{letter-spacing:-0.504000px;}
.ls4e{letter-spacing:-0.462000px;}
.ls3f{letter-spacing:-0.432000px;}
.ls56{letter-spacing:-0.396000px;}
.ls11{letter-spacing:-0.360000px;}
.ls50{letter-spacing:-0.330000px;}
.ls6a{letter-spacing:-0.315000px;}
.ls13{letter-spacing:-0.288000px;}
.ls65{letter-spacing:-0.264000px;}
.ls22{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.198000px;}
.ls12{letter-spacing:-0.144000px;}
.ls54{letter-spacing:-0.132000px;}
.ls69{letter-spacing:-0.126000px;}
.ls16{letter-spacing:-0.072000px;}
.ls4d{letter-spacing:-0.066000px;}
.ls25{letter-spacing:-0.057000px;}
.lsb{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.011400px;}
.ls1f{letter-spacing:0.014400px;}
.ls42{letter-spacing:0.021600px;}
.ls66{letter-spacing:0.063000px;}
.ls23{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.102600px;}
.ls67{letter-spacing:0.126000px;}
.ls5f{letter-spacing:0.132000px;}
.lse{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.198000px;}
.ls19{letter-spacing:0.216000px;}
.ls48{letter-spacing:0.264000px;}
.ls18{letter-spacing:0.288000px;}
.ls4a{letter-spacing:0.330000px;}
.ls1c{letter-spacing:0.352800px;}
.ls1b{letter-spacing:0.360000px;}
.ls63{letter-spacing:0.396000px;}
.ls21{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.462000px;}
.ls1d{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.528000px;}
.lsd{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.648000px;}
.ls43{letter-spacing:0.720000px;}
.ls60{letter-spacing:0.726000px;}
.ls64{letter-spacing:0.792000px;}
.ls61{letter-spacing:0.858000px;}
.ls29{letter-spacing:1.008000px;}
.ls31{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.584000px;}
.ls26{letter-spacing:1.728000px;}
.ls45{letter-spacing:1.800000px;}
.ls2e{letter-spacing:2.088000px;}
.ls1{letter-spacing:3.408000px;}
.ls2c{letter-spacing:3.420000px;}
.ls2{letter-spacing:3.456000px;}
.ls1a{letter-spacing:3.600000px;}
.ls37{letter-spacing:3.672000px;}
.ls2b{letter-spacing:3.902400px;}
.ls0{letter-spacing:4.200000px;}
.ls44{letter-spacing:4.464000px;}
.ls68{letter-spacing:4.536000px;}
.ls1e{letter-spacing:4.716000px;}
.ls3a{letter-spacing:5.112000px;}
.ls3c{letter-spacing:5.328000px;}
.ls6{letter-spacing:6.000000px;}
.ls3d{letter-spacing:6.264000px;}
.ls62{letter-spacing:6.360000px;}
.ls3{letter-spacing:6.600000px;}
.ls7{letter-spacing:7.200000px;}
.ls2d{letter-spacing:7.272000px;}
.ls35{letter-spacing:10.152000px;}
.ls4{letter-spacing:10.200000px;}
.ls36{letter-spacing:10.224000px;}
.lsf{letter-spacing:10.296000px;}
.ls47{letter-spacing:10.428000px;}
.ls55{letter-spacing:10.560000px;}
.ls33{letter-spacing:10.728000px;}
.ls4c{letter-spacing:10.824000px;}
.ls57{letter-spacing:10.890000px;}
.ls4b{letter-spacing:10.956000px;}
.ls58{letter-spacing:11.022000px;}
.ls52{letter-spacing:11.220000px;}
.ls49{letter-spacing:11.286000px;}
.ls59{letter-spacing:11.616000px;}
.ls5d{letter-spacing:11.682000px;}
.ls28{letter-spacing:12.240000px;}
.ls5{letter-spacing:17.442000px;}
.ls5e{letter-spacing:19.800000px;}
.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;}
}
.ws73{word-spacing:-38.346000px;}
.ws2{word-spacing:-27.432000px;}
.ws72{word-spacing:-24.984000px;}
.ws52{word-spacing:-22.860000px;}
.ws2f{word-spacing:-21.672000px;}
.ws22{word-spacing:-20.592000px;}
.ws28{word-spacing:-20.232000px;}
.ws3b{word-spacing:-20.160000px;}
.ws7b{word-spacing:-19.800000px;}
.ws55{word-spacing:-18.876000px;}
.ws39{word-spacing:-18.576000px;}
.ws68{word-spacing:-18.546000px;}
.ws4c{word-spacing:-18.360000px;}
.ws2e{word-spacing:-18.216000px;}
.ws32{word-spacing:-18.144000px;}
.ws53{word-spacing:-18.084000px;}
.ws1a{word-spacing:-18.000000px;}
.ws34{word-spacing:-17.928000px;}
.ws38{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws3a{word-spacing:-17.712000px;}
.ws35{word-spacing:-17.640000px;}
.ws30{word-spacing:-17.424000px;}
.ws44{word-spacing:-17.352000px;}
.ws45{word-spacing:-17.208000px;}
.ws7e{word-spacing:-17.028000px;}
.ws31{word-spacing:-16.920000px;}
.ws0{word-spacing:-16.860000px;}
.ws33{word-spacing:-16.704000px;}
.ws3{word-spacing:-16.302000px;}
.ws79{word-spacing:-16.170000px;}
.ws56{word-spacing:-15.972000px;}
.ws7a{word-spacing:-15.774000px;}
.ws7f{word-spacing:-15.561000px;}
.ws1b{word-spacing:-14.079000px;}
.wsf{word-spacing:-12.139200px;}
.ws70{word-spacing:-11.682000px;}
.ws6f{word-spacing:-11.616000px;}
.ws60{word-spacing:-11.286000px;}
.ws5e{word-spacing:-11.220000px;}
.ws6a{word-spacing:-11.022000px;}
.ws61{word-spacing:-10.956000px;}
.ws69{word-spacing:-10.890000px;}
.ws64{word-spacing:-10.824000px;}
.ws37{word-spacing:-10.728000px;}
.ws66{word-spacing:-10.560000px;}
.ws5c{word-spacing:-10.428000px;}
.ws6c{word-spacing:-10.296000px;}
.ws3e{word-spacing:-10.224000px;}
.ws8{word-spacing:-10.200000px;}
.ws3d{word-spacing:-10.152000px;}
.ws23{word-spacing:-7.200000px;}
.ws7{word-spacing:-6.600000px;}
.ws77{word-spacing:-6.360000px;}
.ws9{word-spacing:-6.000000px;}
.ws43{word-spacing:-5.328000px;}
.ws41{word-spacing:-5.112000px;}
.ws4e{word-spacing:-4.464000px;}
.ws4{word-spacing:-4.200000px;}
.ws3f{word-spacing:-3.672000px;}
.ws1e{word-spacing:-3.600000px;}
.ws4f{word-spacing:-1.800000px;}
.ws2a{word-spacing:-1.728000px;}
.ws2c{word-spacing:-1.584000px;}
.ws2b{word-spacing:-1.008000px;}
.ws76{word-spacing:-0.858000px;}
.ws7c{word-spacing:-0.792000px;}
.ws75{word-spacing:-0.726000px;}
.ws50{word-spacing:-0.720000px;}
.ws19{word-spacing:-0.648000px;}
.ws14{word-spacing:-0.576000px;}
.wsb{word-spacing:-0.528000px;}
.ws20{word-spacing:-0.504000px;}
.wsc{word-spacing:-0.462000px;}
.ws24{word-spacing:-0.432000px;}
.ws78{word-spacing:-0.396000px;}
.ws1f{word-spacing:-0.360000px;}
.ws5b{word-spacing:-0.330000px;}
.ws1c{word-spacing:-0.288000px;}
.ws5f{word-spacing:-0.264000px;}
.ws1d{word-spacing:-0.216000px;}
.wsa{word-spacing:-0.198000px;}
.ws18{word-spacing:-0.144000px;}
.ws74{word-spacing:-0.132000px;}
.ws82{word-spacing:-0.126000px;}
.ws1{word-spacing:-0.102000px;}
.ws21{word-spacing:-0.072000px;}
.ws81{word-spacing:-0.063000px;}
.ws54{word-spacing:-0.039600px;}
.ws5{word-spacing:0.000000px;}
.ws27{word-spacing:0.057000px;}
.ws57{word-spacing:0.066000px;}
.ws16{word-spacing:0.072000px;}
.ws80{word-spacing:0.126000px;}
.ws65{word-spacing:0.132000px;}
.ws11{word-spacing:0.144000px;}
.wsd{word-spacing:0.198000px;}
.ws25{word-spacing:0.216000px;}
.ws7d{word-spacing:0.264000px;}
.ws12{word-spacing:0.288000px;}
.ws83{word-spacing:0.315000px;}
.ws5a{word-spacing:0.330000px;}
.ws10{word-spacing:0.360000px;}
.ws67{word-spacing:0.396000px;}
.ws48{word-spacing:0.432000px;}
.ws59{word-spacing:0.462000px;}
.ws51{word-spacing:0.504000px;}
.ws5d{word-spacing:0.528000px;}
.ws47{word-spacing:0.576000px;}
.ws6e{word-spacing:0.594000px;}
.ws17{word-spacing:0.648000px;}
.ws6d{word-spacing:0.660000px;}
.ws15{word-spacing:0.720000px;}
.ws29{word-spacing:0.792000px;}
.ws26{word-spacing:0.864000px;}
.ws13{word-spacing:1.008000px;}
.ws6b{word-spacing:1.122000px;}
.ws36{word-spacing:1.944000px;}
.ws40{word-spacing:2.088000px;}
.ws42{word-spacing:2.232000px;}
.ws63{word-spacing:2.574000px;}
.ws49{word-spacing:2.808000px;}
.ws6{word-spacing:3.360000px;}
.ws4b{word-spacing:3.456000px;}
.ws71{word-spacing:3.894000px;}
.ws62{word-spacing:4.092000px;}
.ws4d{word-spacing:4.176000px;}
.ws58{word-spacing:4.356000px;}
.ws3c{word-spacing:4.464000px;}
.ws46{word-spacing:6.048000px;}
.ws4a{word-spacing:7.056000px;}
.ws2d{word-spacing:7.128000px;}
._18{margin-left:-20.355000px;}
._14{margin-left:-14.384000px;}
._16{margin-left:-12.426200px;}
._c{margin-left:-10.855800px;}
._e{margin-left:-9.486000px;}
._11{margin-left:-8.040000px;}
._6{margin-left:-6.600000px;}
._9{margin-left:-5.266800px;}
._0{margin-left:-4.221000px;}
._2{margin-left:-2.536800px;}
._7{margin-left:-1.326600px;}
._4{width:1.464000px;}
._5{width:2.796000px;}
._3{width:4.000000px;}
._a{width:5.060000px;}
._1{width:6.329400px;}
._10{width:7.458000px;}
._f{width:8.945400px;}
._d{width:10.200000px;}
._8{width:11.259600px;}
._13{width:12.276000px;}
._17{width:14.355600px;}
._15{width:15.573600px;}
._b{width:17.401200px;}
._1a{width:19.800000px;}
._19{width:20.847600px;}
._12{width:56.923200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(29,29,29);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs9{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:63.934500px;}
.y3{bottom:76.339350px;}
.y1{bottom:78.334500px;}
.yaa{bottom:140.298450px;}
.ycd{bottom:140.311950px;}
.y1c6{bottom:140.313450px;}
.y1e6{bottom:142.042350px;}
.y24e{bottom:142.749450px;}
.y207{bottom:142.918500px;}
.y16f{bottom:142.932300px;}
.y22a{bottom:143.307300px;}
.y190{bottom:143.454300px;}
.y308{bottom:144.512700px;}
.y84{bottom:144.522300px;}
.y2b5{bottom:144.707850px;}
.y14e{bottom:144.894300px;}
.y1a3{bottom:144.930300px;}
.y10b{bottom:145.254300px;}
.y272{bottom:145.255950px;}
.ye8{bottom:145.410300px;}
.y295{bottom:145.857300px;}
.y43{bottom:145.864950px;}
.y23{bottom:146.233200px;}
.y2df{bottom:146.296950px;}
.ya9{bottom:156.799950px;}
.ycc{bottom:156.813450px;}
.y229{bottom:161.461800px;}
.y64{bottom:162.364950px;}
.y206{bottom:162.570000px;}
.y1e5{bottom:162.598350px;}
.y307{bottom:162.656700px;}
.y271{bottom:163.255950px;}
.y24d{bottom:164.496450px;}
.y2de{bottom:164.598450px;}
.y16e{bottom:164.676300px;}
.y18f{bottom:165.198300px;}
.y22{bottom:165.439200px;}
.y294{bottom:166.102800px;}
.y83{bottom:166.572300px;}
.y14d{bottom:166.638300px;}
.y1a2{bottom:166.674300px;}
.ye7{bottom:167.316300px;}
.y10a{bottom:167.610300px;}
.y2b4{bottom:167.657850px;}
.ya8{bottom:173.301450px;}
.ycb{bottom:178.864950px;}
.y306{bottom:180.800700px;}
.y270{bottom:181.255950px;}
.y205{bottom:182.221500px;}
.y2dd{bottom:182.899950px;}
.y1e4{bottom:183.154350px;}
.y42{bottom:184.007850px;}
.y21{bottom:184.645200px;}
.y24c{bottom:186.243450px;}
.y16d{bottom:186.420300px;}
.y12a{bottom:186.936300px;}
.y18e{bottom:186.942300px;}
.y293{bottom:187.849800px;}
.y14c{bottom:188.382300px;}
.y1a1{bottom:188.418300px;}
.y82{bottom:188.622300px;}
.ye6{bottom:189.222300px;}
.ya7{bottom:189.802950px;}
.y109{bottom:189.966300px;}
.y228{bottom:190.369800px;}
.y2b3{bottom:190.607850px;}
.y63{bottom:197.814300px;}
.y1c5{bottom:198.444300px;}
.y305{bottom:198.944700px;}
.y26f{bottom:199.255950px;}
.y2dc{bottom:201.201450px;}
.y204{bottom:201.873000px;}
.y1e3{bottom:203.710350px;}
.y20{bottom:203.851200px;}
.ya6{bottom:206.304450px;}
.y41{bottom:206.507850px;}
.y24b{bottom:207.990450px;}
.y16c{bottom:208.164300px;}
.y129{bottom:208.680300px;}
.y18d{bottom:208.686300px;}
.y292{bottom:209.596800px;}
.y14b{bottom:210.126300px;}
.y1a0{bottom:210.162300px;}
.y81{bottom:210.672300px;}
.y227{bottom:210.912300px;}
.ye5{bottom:211.128300px;}
.y108{bottom:212.322300px;}
.y2b2{bottom:213.557850px;}
.yca{bottom:216.858300px;}
.y304{bottom:217.088700px;}
.y2db{bottom:219.502950px;}
.y62{bottom:219.864300px;}
.y1c4{bottom:221.088300px;}
.y203{bottom:221.524500px;}
.ya5{bottom:222.805950px;}
.y1f{bottom:223.057200px;}
.y1e2{bottom:225.310350px;}
.y40{bottom:229.007850px;}
.y24a{bottom:229.737450px;}
.y16b{bottom:229.908300px;}
.y128{bottom:230.424300px;}
.y18c{bottom:230.430300px;}
.y291{bottom:231.343800px;}
.y226{bottom:231.454800px;}
.y14a{bottom:231.870300px;}
.y19f{bottom:231.906300px;}
.y80{bottom:232.722300px;}
.ye4{bottom:233.034300px;}
.y107{bottom:234.678300px;}
.y303{bottom:235.232700px;}
.y2b1{bottom:236.507850px;}
.y2da{bottom:237.804450px;}
.yc9{bottom:238.602300px;}
.ya4{bottom:239.307450px;}
.y202{bottom:241.176000px;}
.y61{bottom:241.914300px;}
.y26e{bottom:242.011800px;}
.y1e{bottom:242.263200px;}
.y1c3{bottom:243.732300px;}
.y1e1{bottom:246.910350px;}
.y249{bottom:251.484450px;}
.y3f{bottom:251.507850px;}
.y16a{bottom:251.652300px;}
.y225{bottom:251.997300px;}
.y127{bottom:252.168300px;}
.y18b{bottom:252.174300px;}
.y290{bottom:253.239300px;}
.y302{bottom:253.376700px;}
.y149{bottom:253.614300px;}
.y19e{bottom:253.650300px;}
.y7f{bottom:254.772300px;}
.ye3{bottom:254.940300px;}
.ya3{bottom:255.808950px;}
.y2d9{bottom:256.105950px;}
.y106{bottom:257.034300px;}
.y2b0{bottom:259.457850px;}
.yc8{bottom:260.346300px;}
.y201{bottom:260.827500px;}
.y1d{bottom:261.469200px;}
.y26d{bottom:261.811800px;}
.y60{bottom:263.964300px;}
.y1c2{bottom:265.332300px;}
.y1e0{bottom:268.510350px;}
.y301{bottom:271.520700px;}
.ya2{bottom:272.310450px;}
.y224{bottom:272.539800px;}
.y248{bottom:273.231450px;}
.y169{bottom:273.396300px;}
.y126{bottom:273.912300px;}
.y18a{bottom:273.918300px;}
.y3e{bottom:274.007850px;}
.y2d8{bottom:274.407450px;}
.y28f{bottom:275.134800px;}
.y148{bottom:275.358300px;}
.y19d{bottom:275.394300px;}
.y7e{bottom:276.822300px;}
.ye2{bottom:276.846300px;}
.y105{bottom:279.390300px;}
.y200{bottom:280.479000px;}
.y1c{bottom:280.675200px;}
.yc7{bottom:282.090300px;}
.y2af{bottom:282.407850px;}
.y5f{bottom:286.014300px;}
.y1c1{bottom:286.932300px;}
.ya1{bottom:288.811950px;}
.y300{bottom:289.664700px;}
.y1df{bottom:290.110350px;}
.y2d7{bottom:292.708950px;}
.y223{bottom:293.082300px;}
.y247{bottom:294.978450px;}
.y168{bottom:295.140300px;}
.y125{bottom:295.656300px;}
.y189{bottom:295.662300px;}
.y3d{bottom:296.507850px;}
.y28e{bottom:297.030300px;}
.y147{bottom:297.102300px;}
.y19c{bottom:297.138300px;}
.ye1{bottom:298.752300px;}
.y7d{bottom:298.872300px;}
.y1b{bottom:299.881200px;}
.y1ff{bottom:300.130500px;}
.y104{bottom:301.746300px;}
.y26c{bottom:303.031800px;}
.yc6{bottom:303.834300px;}
.ya0{bottom:305.313450px;}
.y2ae{bottom:305.357850px;}
.y2ff{bottom:307.808700px;}
.y5e{bottom:308.064300px;}
.y1c0{bottom:308.532300px;}
.y2d6{bottom:311.010450px;}
.y1de{bottom:311.710350px;}
.y222{bottom:313.624800px;}
.y246{bottom:316.725450px;}
.y167{bottom:316.884300px;}
.y124{bottom:317.400300px;}
.y188{bottom:317.406300px;}
.y146{bottom:318.846300px;}
.y19b{bottom:318.882300px;}
.y28d{bottom:318.925800px;}
.y3c{bottom:319.007850px;}
.y1fe{bottom:319.782000px;}
.ye0{bottom:320.658300px;}
.y7c{bottom:320.922300px;}
.y26b{bottom:323.887800px;}
.y103{bottom:324.102300px;}
.yc5{bottom:325.578300px;}
.y2fe{bottom:325.952700px;}
.y9f{bottom:327.364950px;}
.y1a{bottom:327.585000px;}
.y2d5{bottom:329.311950px;}
.y5d{bottom:330.114300px;}
.y1bf{bottom:330.132300px;}
.y1dd{bottom:333.310350px;}
.y221{bottom:334.167300px;}
.y245{bottom:338.472450px;}
.y166{bottom:338.628300px;}
.y123{bottom:339.144300px;}
.y187{bottom:339.150300px;}
.y1fd{bottom:339.433500px;}
.y145{bottom:340.590300px;}
.y19a{bottom:340.626300px;}
.y28c{bottom:340.821300px;}
.y3b{bottom:341.507850px;}
.ydf{bottom:342.564300px;}
.y7b{bottom:342.972300px;}
.y2fd{bottom:344.096700px;}
.y2ad{bottom:344.507850px;}
.y26a{bottom:344.743800px;}
.y102{bottom:346.458300px;}
.yc4{bottom:347.322300px;}
.y2d4{bottom:347.613450px;}
.y1be{bottom:351.732300px;}
.y5c{bottom:352.164300px;}
.y220{bottom:354.709800px;}
.y1dc{bottom:354.910350px;}
.y1fc{bottom:359.085000px;}
.y244{bottom:360.219450px;}
.y165{bottom:360.372300px;}
.y122{bottom:360.888300px;}
.y186{bottom:360.894300px;}
.y2fc{bottom:362.240700px;}
.y144{bottom:362.334300px;}
.y199{bottom:362.370300px;}
.y28b{bottom:362.716800px;}
.y3a{bottom:364.007850px;}
.yde{bottom:364.470300px;}
.y7a{bottom:364.878300px;}
.y269{bottom:365.599800px;}
.y2d3{bottom:365.914950px;}
.y9e{bottom:366.114300px;}
.y101{bottom:368.814300px;}
.yc3{bottom:369.066300px;}
.y1bd{bottom:373.332300px;}
.y5b{bottom:374.214300px;}
.y21f{bottom:375.252300px;}
.y1db{bottom:376.510350px;}
.y19{bottom:378.041100px;}
.y1fb{bottom:378.736500px;}
.y2fb{bottom:380.384700px;}
.y243{bottom:381.966450px;}
.y164{bottom:382.116300px;}
.y121{bottom:382.632300px;}
.y185{bottom:382.638300px;}
.y143{bottom:384.078300px;}
.y198{bottom:384.114300px;}
.y2d2{bottom:384.216450px;}
.y28a{bottom:384.612300px;}
.ydd{bottom:386.214300px;}
.y268{bottom:386.455800px;}
.y39{bottom:386.507850px;}
.y79{bottom:386.784300px;}
.y9d{bottom:387.714300px;}
.yc2{bottom:390.810300px;}
.y100{bottom:391.170300px;}
.y1bc{bottom:394.932300px;}
.y21e{bottom:395.497800px;}
.y5a{bottom:396.264300px;}
.y18{bottom:397.247100px;}
.y1da{bottom:398.110350px;}
.y1fa{bottom:398.388000px;}
.y2fa{bottom:398.528700px;}
.y2d1{bottom:402.517950px;}
.y242{bottom:403.713450px;}
.y163{bottom:403.860300px;}
.y120{bottom:404.376300px;}
.y184{bottom:404.382300px;}
.y142{bottom:405.822300px;}
.y197{bottom:405.858300px;}
.y289{bottom:406.507800px;}
.y267{bottom:407.311800px;}
.y78{bottom:408.690300px;}
.y38{bottom:409.007850px;}
.y9c{bottom:409.314300px;}
.y2ac{bottom:410.307300px;}
.yc1{bottom:412.554300px;}
.yff{bottom:413.526300px;}
.y21d{bottom:415.743300px;}
.y17{bottom:416.453100px;}
.y1bb{bottom:416.532300px;}
.y2f9{bottom:416.672700px;}
.y1f9{bottom:418.039500px;}
.y59{bottom:418.314300px;}
.y1d9{bottom:419.710350px;}
.y2d0{bottom:420.819450px;}
.ydc{bottom:423.108300px;}
.y241{bottom:425.460450px;}
.y162{bottom:425.604300px;}
.y11f{bottom:426.120300px;}
.y183{bottom:426.126300px;}
.y141{bottom:427.566300px;}
.y196{bottom:427.602300px;}
.y266{bottom:428.167800px;}
.y288{bottom:428.403300px;}
.y77{bottom:430.596300px;}
.y9b{bottom:430.914300px;}
.y2ab{bottom:431.311800px;}
.y37{bottom:431.507850px;}
.yc0{bottom:434.298300px;}
.y2f8{bottom:434.816700px;}
.y16{bottom:435.659100px;}
.yfe{bottom:435.882300px;}
.y21c{bottom:436.285800px;}
.y1f8{bottom:437.691000px;}
.y1ba{bottom:438.132300px;}
.y2cf{bottom:439.120950px;}
.y58{bottom:440.364300px;}
.y1d8{bottom:441.310350px;}
.y240{bottom:447.207450px;}
.y161{bottom:447.348300px;}
.y182{bottom:447.870300px;}
.y11e{bottom:447.948300px;}
.y265{bottom:449.023800px;}
.y140{bottom:449.310300px;}
.y195{bottom:449.346300px;}
.y287{bottom:450.298800px;}
.y76{bottom:452.502300px;}
.y9a{bottom:452.514300px;}
.y2f7{bottom:452.960700px;}
.y36{bottom:454.007850px;}
.y15{bottom:454.865100px;}
.ybf{bottom:456.042300px;}
.y21b{bottom:456.828300px;}
.y1f7{bottom:457.342500px;}
.y2ce{bottom:457.422450px;}
.yfd{bottom:458.238300px;}
.y1b9{bottom:459.732300px;}
.y57{bottom:462.414300px;}
.y1d7{bottom:462.910350px;}
.ydb{bottom:466.758300px;}
.y23f{bottom:468.954450px;}
.y160{bottom:469.092300px;}
.y181{bottom:469.614300px;}
.y11d{bottom:469.692300px;}
.y264{bottom:469.879800px;}
.y13f{bottom:471.054300px;}
.y194{bottom:471.090300px;}
.y2f6{bottom:471.104700px;}
.y286{bottom:472.194300px;}
.y14{bottom:474.071100px;}
.y99{bottom:474.114300px;}
.y75{bottom:474.408300px;}
.y2aa{bottom:475.143300px;}
.y2cd{bottom:475.723950px;}
.y35{bottom:476.507850px;}
.y1f6{bottom:476.994000px;}
.y21a{bottom:477.370800px;}
.ybe{bottom:477.786300px;}
.yfc{bottom:480.594300px;}
.y1b8{bottom:481.332300px;}
.y56{bottom:484.464300px;}
.y1d6{bottom:484.510350px;}
.yda{bottom:488.664300px;}
.y2f5{bottom:489.248700px;}
.y23e{bottom:490.701450px;}
.y263{bottom:490.735800px;}
.y15f{bottom:490.836300px;}
.y11c{bottom:491.436300px;}
.y13e{bottom:492.798300px;}
.y193{bottom:492.834300px;}
.y13{bottom:493.277100px;}
.y2cc{bottom:494.025450px;}
.y285{bottom:494.089800px;}
.y98{bottom:495.714300px;}
.y74{bottom:496.284300px;}
.y2a9{bottom:496.444800px;}
.y1f5{bottom:496.645500px;}
.y219{bottom:497.913300px;}
.y34{bottom:499.007850px;}
.ybd{bottom:499.530300px;}
.y1b7{bottom:502.932300px;}
.yfb{bottom:502.950300px;}
.y1d5{bottom:506.110350px;}
.y55{bottom:506.514300px;}
.y2f4{bottom:507.392700px;}
.y262{bottom:511.591800px;}
.y2cb{bottom:512.326950px;}
.y23d{bottom:512.448450px;}
.y12{bottom:512.483100px;}
.y15e{bottom:512.580300px;}
.y11b{bottom:513.180300px;}
.y13d{bottom:514.542300px;}
.y192{bottom:514.578300px;}
.y284{bottom:515.985300px;}
.y1f4{bottom:516.297000px;}
.y97{bottom:517.314300px;}
.y2a8{bottom:517.746300px;}
.y73{bottom:518.190300px;}
.y218{bottom:518.455800px;}
.ybc{bottom:521.274300px;}
.y33{bottom:521.507850px;}
.y1b6{bottom:524.532300px;}
.yfa{bottom:525.306300px;}
.y2f3{bottom:525.536700px;}
.y1d4{bottom:527.710350px;}
.y54{bottom:528.564300px;}
.y2ca{bottom:530.628450px;}
.y11{bottom:531.689100px;}
.y261{bottom:532.447800px;}
.y23c{bottom:534.195450px;}
.y15d{bottom:534.324300px;}
.y11a{bottom:534.924300px;}
.y1f3{bottom:535.948500px;}
.y13c{bottom:536.286300px;}
.y191{bottom:536.322300px;}
.y283{bottom:537.880800px;}
.y217{bottom:538.701300px;}
.y96{bottom:538.914300px;}
.y2a7{bottom:539.047800px;}
.y72{bottom:540.096300px;}
.ybb{bottom:543.018300px;}
.y2f2{bottom:543.538950px;}
.y32{bottom:544.007850px;}
.y1b5{bottom:546.132300px;}
.yf9{bottom:547.662300px;}
.y2c9{bottom:548.929950px;}
.y1d3{bottom:549.310350px;}
.y53{bottom:550.614300px;}
.y260{bottom:553.303800px;}
.yd9{bottom:554.304300px;}
.y23b{bottom:555.942450px;}
.y15c{bottom:556.068300px;}
.y119{bottom:556.668300px;}
.y13b{bottom:558.030300px;}
.y180{bottom:558.066300px;}
.y216{bottom:559.243800px;}
.y10{bottom:559.392900px;}
.y282{bottom:559.776300px;}
.y2a6{bottom:560.349300px;}
.y95{bottom:560.514300px;}
.y2f1{bottom:561.541200px;}
.y71{bottom:562.002300px;}
.y1f2{bottom:564.102450px;}
.yba{bottom:564.762300px;}
.y31{bottom:566.507850px;}
.y2c8{bottom:567.231450px;}
.y1b4{bottom:567.732300px;}
.yf8{bottom:570.018300px;}
.y1d2{bottom:570.910350px;}
.y52{bottom:572.664300px;}
.y25f{bottom:574.159800px;}
.yd8{bottom:576.210300px;}
.y23a{bottom:577.689450px;}
.y15b{bottom:577.812300px;}
.y118{bottom:578.412300px;}
.y2f0{bottom:579.543450px;}
.y31a{bottom:579.548850px;}
.y13a{bottom:579.774300px;}
.y215{bottom:579.786300px;}
.y17f{bottom:579.810300px;}
.y281{bottom:581.671800px;}
.y2a5{bottom:582.096300px;}
.y94{bottom:582.114300px;}
.y70{bottom:583.908300px;}
.y2c7{bottom:585.532950px;}
.yb9{bottom:586.506300px;}
.y30{bottom:589.007850px;}
.y1b3{bottom:589.332300px;}
.yf7{bottom:592.374300px;}
.y1d1{bottom:592.510350px;}
.y51{bottom:594.714300px;}
.y25e{bottom:595.015800px;}
.y2ef{bottom:597.545700px;}
.y319{bottom:597.548850px;}
.yd7{bottom:598.116300px;}
.y239{bottom:599.436450px;}
.y15a{bottom:599.556300px;}
.y117{bottom:600.156300px;}
.y214{bottom:600.328800px;}
.y139{bottom:601.518300px;}
.y17e{bottom:601.554300px;}
.y280{bottom:603.567300px;}
.y93{bottom:603.714300px;}
.y2c6{bottom:603.834450px;}
.y2a4{bottom:603.843300px;}
.y6f{bottom:605.814300px;}
.yb8{bottom:608.250300px;}
.y1b2{bottom:610.932300px;}
.y2f{bottom:611.507850px;}
.y1f1{bottom:611.591400px;}
.y1d0{bottom:614.110350px;}
.yf6{bottom:614.730300px;}
.y2ee{bottom:615.547950px;}
.y318{bottom:615.548850px;}
.y25d{bottom:615.871800px;}
.y50{bottom:616.764300px;}
.yd6{bottom:620.022300px;}
.y213{bottom:620.871300px;}
.y238{bottom:621.183450px;}
.y159{bottom:621.300300px;}
.yf{bottom:621.486900px;}
.y116{bottom:621.900300px;}
.y2c5{bottom:622.135950px;}
.y138{bottom:623.262300px;}
.y17d{bottom:623.298300px;}
.y92{bottom:625.314300px;}
.y2a3{bottom:625.590300px;}
.y27f{bottom:626.073300px;}
.yb7{bottom:629.994300px;}
.y1f0{bottom:631.094400px;}
.y1b1{bottom:632.532300px;}
.y317{bottom:633.548850px;}
.y2ed{bottom:633.550200px;}
.y2e{bottom:634.007850px;}
.y1cf{bottom:635.710350px;}
.y25c{bottom:636.727800px;}
.yf5{bottom:637.086300px;}
.y4f{bottom:638.814300px;}
.y2c4{bottom:640.437450px;}
.ye{bottom:640.692900px;}
.y212{bottom:641.413800px;}
.yd5{bottom:641.928300px;}
.y237{bottom:642.930450px;}
.y6e{bottom:643.020300px;}
.y158{bottom:643.044300px;}
.y115{bottom:643.644300px;}
.y137{bottom:645.006300px;}
.y17c{bottom:645.042300px;}
.y91{bottom:646.914300px;}
.y27e{bottom:647.077800px;}
.y2a2{bottom:647.337300px;}
.y1ef{bottom:650.597400px;}
.y2ec{bottom:651.552450px;}
.yb6{bottom:651.738300px;}
.y1b0{bottom:654.132300px;}
.y2d{bottom:656.507850px;}
.y1ce{bottom:657.310350px;}
.y25b{bottom:657.583800px;}
.y2c3{bottom:658.738950px;}
.yf4{bottom:659.442300px;}
.y4e{bottom:660.864300px;}
.y211{bottom:661.956300px;}
.yd4{bottom:663.834300px;}
.y316{bottom:664.279950px;}
.y236{bottom:664.677450px;}
.y157{bottom:664.788300px;}
.y114{bottom:665.388300px;}
.y136{bottom:666.750300px;}
.y17b{bottom:666.786300px;}
.y27d{bottom:668.082300px;}
.y90{bottom:668.514300px;}
.y2a1{bottom:669.084300px;}
.y2eb{bottom:669.554700px;}
.y1ee{bottom:670.100400px;}
.yb5{bottom:673.482300px;}
.y1af{bottom:675.732300px;}
.y2c2{bottom:677.040450px;}
.y25a{bottom:678.439800px;}
.y1cd{bottom:678.910350px;}
.y2c{bottom:679.007850px;}
.yd{bottom:680.928900px;}
.yf3{bottom:681.798300px;}
.y210{bottom:682.201800px;}
.y4d{bottom:682.914300px;}
.yd3{bottom:685.740300px;}
.y235{bottom:686.424450px;}
.y156{bottom:686.532300px;}
.y6d{bottom:686.814300px;}
.y113{bottom:687.132300px;}
.y135{bottom:688.494300px;}
.y17a{bottom:688.530300px;}
.y27c{bottom:689.086800px;}
.y1ed{bottom:689.603400px;}
.y8f{bottom:690.114300px;}
.y2a0{bottom:690.831300px;}
.y315{bottom:695.039700px;}
.yb4{bottom:695.226300px;}
.y2c1{bottom:695.341950px;}
.y1ae{bottom:697.332300px;}
.y259{bottom:699.295800px;}
.y1cc{bottom:700.510350px;}
.y2b{bottom:701.507850px;}
.y2ea{bottom:702.554700px;}
.y20f{bottom:702.744300px;}
.yf2{bottom:704.154300px;}
.y4c{bottom:704.964300px;}
.yd2{bottom:707.646300px;}
.y234{bottom:708.171450px;}
.y155{bottom:708.276300px;}
.y112{bottom:708.876300px;}
.y1ec{bottom:709.094400px;}
.y27b{bottom:710.091300px;}
.y134{bottom:710.238300px;}
.y179{bottom:710.274300px;}
.yc{bottom:710.916900px;}
.y8e{bottom:711.714300px;}
.y29f{bottom:712.578300px;}
.y314{bottom:713.041950px;}
.y2c0{bottom:713.643450px;}
.yb3{bottom:716.970300px;}
.y1ad{bottom:718.932300px;}
.y258{bottom:720.151800px;}
.y1cb{bottom:722.110350px;}
.y20e{bottom:723.286800px;}
.y2a{bottom:724.007850px;}
.yf1{bottom:726.510300px;}
.y4b{bottom:727.014300px;}
.y1eb{bottom:728.597400px;}
.yd1{bottom:729.552300px;}
.y233{bottom:729.918450px;}
.y154{bottom:730.020300px;}
.y111{bottom:730.620300px;}
.y313{bottom:731.044200px;}
.y27a{bottom:731.095800px;}
.y2bf{bottom:731.944950px;}
.y133{bottom:731.982300px;}
.y178{bottom:732.018300px;}
.y8d{bottom:733.314300px;}
.y29e{bottom:734.325300px;}
.yb2{bottom:738.756300px;}
.y1ac{bottom:740.532300px;}
.yb{bottom:740.904900px;}
.y257{bottom:741.007800px;}
.y20d{bottom:743.829300px;}
.y29{bottom:746.507850px;}
.y1ea{bottom:748.100400px;}
.yf0{bottom:748.866300px;}
.y312{bottom:749.046450px;}
.y2be{bottom:750.246450px;}
.yd0{bottom:751.458300px;}
.y232{bottom:751.665450px;}
.y153{bottom:751.764300px;}
.y279{bottom:752.100300px;}
.y1ca{bottom:752.214300px;}
.y110{bottom:752.364300px;}
.y6c{bottom:752.466300px;}
.y132{bottom:753.726300px;}
.y177{bottom:753.762300px;}
.y2e9{bottom:754.133700px;}
.y8c{bottom:754.914300px;}
.y29d{bottom:756.072300px;}
.yb1{bottom:760.500300px;}
.y1ab{bottom:761.826300px;}
.y256{bottom:761.863800px;}
.y20c{bottom:764.371800px;}
.y4a{bottom:764.514300px;}
.y311{bottom:767.048700px;}
.y1e9{bottom:767.603400px;}
.y2bd{bottom:768.547950px;}
.y28{bottom:769.007850px;}
.ya{bottom:770.892900px;}
.yef{bottom:771.222300px;}
.y278{bottom:773.104800px;}
.ycf{bottom:773.364300px;}
.y231{bottom:773.412450px;}
.y6b{bottom:774.372300px;}
.y131{bottom:775.470300px;}
.y176{bottom:775.506300px;}
.y8b{bottom:776.514300px;}
.y29c{bottom:777.819300px;}
.yb0{bottom:782.244300px;}
.y255{bottom:782.719800px;}
.y1aa{bottom:783.120300px;}
.y2e8{bottom:784.893450px;}
.y20b{bottom:784.914300px;}
.y310{bottom:785.050950px;}
.y2bc{bottom:786.849450px;}
.y1e8{bottom:787.106400px;}
.y152{bottom:788.964300px;}
.y10f{bottom:789.264300px;}
.yee{bottom:793.578300px;}
.y277{bottom:794.109300px;}
.y230{bottom:795.159450px;}
.yce{bottom:795.414300px;}
.y6a{bottom:796.278300px;}
.y130{bottom:797.214300px;}
.y175{bottom:797.250300px;}
.y8a{bottom:798.114300px;}
.y29b{bottom:799.417800px;}
.y27{bottom:800.011800px;}
.y2e7{bottom:802.895700px;}
.y30f{bottom:803.053200px;}
.y254{bottom:803.575800px;}
.yaf{bottom:803.988300px;}
.y1a9{bottom:804.378300px;}
.y2bb{bottom:805.150950px;}
.y20a{bottom:805.456800px;}
.y1e7{bottom:815.110350px;}
.yed{bottom:815.934300px;}
.y49{bottom:817.464300px;}
.y1c9{bottom:817.608300px;}
.y69{bottom:818.184300px;}
.y12f{bottom:818.958300px;}
.y174{bottom:818.994300px;}
.y89{bottom:819.714300px;}
.y2e6{bottom:820.897950px;}
.y29a{bottom:821.016300px;}
.y30e{bottom:821.055450px;}
.y2ba{bottom:823.452450px;}
.y253{bottom:824.431800px;}
.y1a8{bottom:824.934300px;}
.y9{bottom:825.556950px;}
.yae{bottom:825.732300px;}
.y209{bottom:825.999300px;}
.y276{bottom:830.109300px;}
.y22f{bottom:831.609300px;}
.yec{bottom:838.290300px;}
.y2e5{bottom:838.900200px;}
.y30d{bottom:839.057700px;}
.y48{bottom:839.514300px;}
.y68{bottom:840.090300px;}
.y10e{bottom:840.432300px;}
.y12e{bottom:840.702300px;}
.y151{bottom:840.720300px;}
.y173{bottom:840.738300px;}
.y88{bottom:841.314300px;}
.y2b9{bottom:841.753950px;}
.y299{bottom:842.614800px;}
.y8{bottom:842.956950px;}
.y252{bottom:845.287800px;}
.y1a7{bottom:845.490300px;}
.y208{bottom:846.541800px;}
.yad{bottom:847.476300px;}
.y2e4{bottom:856.902450px;}
.y30c{bottom:857.059950px;}
.y2b8{bottom:860.055450px;}
.y7{bottom:860.356950px;}
.yeb{bottom:860.646300px;}
.y1c8{bottom:861.420300px;}
.y47{bottom:861.564300px;}
.y67{bottom:861.996300px;}
.y10d{bottom:862.176300px;}
.y150{bottom:862.320300px;}
.y172{bottom:862.482300px;}
.y12d{bottom:862.752300px;}
.y87{bottom:862.914300px;}
.y298{bottom:864.213300px;}
.y275{bottom:864.909300px;}
.y22e{bottom:865.821450px;}
.y1a6{bottom:866.046300px;}
.y251{bottom:866.143800px;}
.y26{bottom:867.084300px;}
.yac{bottom:869.220300px;}
.y2e3{bottom:874.904700px;}
.y30b{bottom:875.062200px;}
.y6{bottom:877.756950px;}
.y2b7{bottom:878.356950px;}
.yea{bottom:883.002300px;}
.y1c7{bottom:883.326300px;}
.y46{bottom:883.614300px;}
.y66{bottom:883.902300px;}
.y10c{bottom:883.920300px;}
.y171{bottom:884.226300px;}
.y86{bottom:884.514300px;}
.y12c{bottom:884.802300px;}
.y297{bottom:885.811800px;}
.y274{bottom:886.509300px;}
.y1a5{bottom:886.602300px;}
.y250{bottom:886.999800px;}
.y22d{bottom:887.115450px;}
.y25{bottom:887.626800px;}
.yab{bottom:890.964300px;}
.y2e2{bottom:892.906950px;}
.y30a{bottom:893.064450px;}
.y2b6{bottom:896.658450px;}
.ye9{bottom:905.358300px;}
.y14f{bottom:905.520300px;}
.y45{bottom:905.664300px;}
.y65{bottom:905.808300px;}
.y170{bottom:905.970300px;}
.y85{bottom:906.114300px;}
.y12b{bottom:906.258300px;}
.y1a4{bottom:907.158300px;}
.y296{bottom:907.261800px;}
.y24f{bottom:907.855800px;}
.y273{bottom:908.109300px;}
.y24{bottom:908.169300px;}
.y22c{bottom:908.409450px;}
.y2e1{bottom:910.909200px;}
.y309{bottom:911.066700px;}
.y5{bottom:911.311950px;}
.y44{bottom:927.714300px;}
.y4{bottom:928.711800px;}
.y2e0{bottom:929.210700px;}
.y22b{bottom:929.709450px;}
.h9{height:30.568359px;}
.h7{height:38.645086px;}
.h2{height:40.757812px;}
.hb{height:48.399902px;}
.h3{height:50.947266px;}
.h10{height:53.494629px;}
.h4{height:56.041992px;}
.hf{height:56.089992px;}
.h6{height:61.136719px;}
.ha{height:61.256719px;}
.hd{height:62.986031px;}
.hc{height:63.154031px;}
.h8{height:63.322031px;}
.he{height:63.466031px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:76.535400px;}
.x5{left:97.797900px;}
.x8{left:119.055150px;}
.xa{left:140.307150px;}
.x7{left:143.170350px;}
.xe{left:166.230150px;}
.xd{left:180.539250px;}
.x1{left:236.201400px;}
.x6{left:239.896800px;}
.x2{left:261.622800px;}
.xc{left:508.755750px;}
.xb{left:517.719000px;}
.x9{left:610.039350px;}
.x3{left:617.539350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v4{vertical-align:-12.693333pt;}
.v5{vertical-align:-11.690667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v2{vertical-align:23.680000pt;}
.ls41{letter-spacing:-6.272000pt;}
.ls4f{letter-spacing:-3.872000pt;}
.ls40{letter-spacing:-2.496000pt;}
.ls53{letter-spacing:-2.288000pt;}
.ls3b{letter-spacing:-1.984000pt;}
.ls39{letter-spacing:-1.856000pt;}
.ls30{letter-spacing:-1.792000pt;}
.ls32{letter-spacing:-1.728000pt;}
.ls38{letter-spacing:-1.472000pt;}
.ls5a{letter-spacing:-0.997333pt;}
.ls34{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.896000pt;}
.ls24{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls5b{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls5c{letter-spacing:-0.528000pt;}
.ls3e{letter-spacing:-0.512000pt;}
.ls51{letter-spacing:-0.469333pt;}
.ls46{letter-spacing:-0.448000pt;}
.ls4e{letter-spacing:-0.410667pt;}
.ls3f{letter-spacing:-0.384000pt;}
.ls56{letter-spacing:-0.352000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls50{letter-spacing:-0.293333pt;}
.ls6a{letter-spacing:-0.280000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls65{letter-spacing:-0.234667pt;}
.ls22{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.176000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls54{letter-spacing:-0.117333pt;}
.ls69{letter-spacing:-0.112000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls4d{letter-spacing:-0.058667pt;}
.ls25{letter-spacing:-0.050667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.010133pt;}
.ls1f{letter-spacing:0.012800pt;}
.ls42{letter-spacing:0.019200pt;}
.ls66{letter-spacing:0.056000pt;}
.ls23{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.091200pt;}
.ls67{letter-spacing:0.112000pt;}
.ls5f{letter-spacing:0.117333pt;}
.lse{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.176000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls48{letter-spacing:0.234667pt;}
.ls18{letter-spacing:0.256000pt;}
.ls4a{letter-spacing:0.293333pt;}
.ls1c{letter-spacing:0.313600pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls63{letter-spacing:0.352000pt;}
.ls21{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.410667pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.469333pt;}
.lsd{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.576000pt;}
.ls43{letter-spacing:0.640000pt;}
.ls60{letter-spacing:0.645333pt;}
.ls64{letter-spacing:0.704000pt;}
.ls61{letter-spacing:0.762667pt;}
.ls29{letter-spacing:0.896000pt;}
.ls31{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.408000pt;}
.ls26{letter-spacing:1.536000pt;}
.ls45{letter-spacing:1.600000pt;}
.ls2e{letter-spacing:1.856000pt;}
.ls1{letter-spacing:3.029333pt;}
.ls2c{letter-spacing:3.040000pt;}
.ls2{letter-spacing:3.072000pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls37{letter-spacing:3.264000pt;}
.ls2b{letter-spacing:3.468800pt;}
.ls0{letter-spacing:3.733333pt;}
.ls44{letter-spacing:3.968000pt;}
.ls68{letter-spacing:4.032000pt;}
.ls1e{letter-spacing:4.192000pt;}
.ls3a{letter-spacing:4.544000pt;}
.ls3c{letter-spacing:4.736000pt;}
.ls6{letter-spacing:5.333333pt;}
.ls3d{letter-spacing:5.568000pt;}
.ls62{letter-spacing:5.653333pt;}
.ls3{letter-spacing:5.866667pt;}
.ls7{letter-spacing:6.400000pt;}
.ls2d{letter-spacing:6.464000pt;}
.ls35{letter-spacing:9.024000pt;}
.ls4{letter-spacing:9.066667pt;}
.ls36{letter-spacing:9.088000pt;}
.lsf{letter-spacing:9.152000pt;}
.ls47{letter-spacing:9.269333pt;}
.ls55{letter-spacing:9.386667pt;}
.ls33{letter-spacing:9.536000pt;}
.ls4c{letter-spacing:9.621333pt;}
.ls57{letter-spacing:9.680000pt;}
.ls4b{letter-spacing:9.738667pt;}
.ls58{letter-spacing:9.797333pt;}
.ls52{letter-spacing:9.973333pt;}
.ls49{letter-spacing:10.032000pt;}
.ls59{letter-spacing:10.325333pt;}
.ls5d{letter-spacing:10.384000pt;}
.ls28{letter-spacing:10.880000pt;}
.ls5{letter-spacing:15.504000pt;}
.ls5e{letter-spacing:17.600000pt;}
.ws73{word-spacing:-34.085333pt;}
.ws2{word-spacing:-24.384000pt;}
.ws72{word-spacing:-22.208000pt;}
.ws52{word-spacing:-20.320000pt;}
.ws2f{word-spacing:-19.264000pt;}
.ws22{word-spacing:-18.304000pt;}
.ws28{word-spacing:-17.984000pt;}
.ws3b{word-spacing:-17.920000pt;}
.ws7b{word-spacing:-17.600000pt;}
.ws55{word-spacing:-16.778667pt;}
.ws39{word-spacing:-16.512000pt;}
.ws68{word-spacing:-16.485333pt;}
.ws4c{word-spacing:-16.320000pt;}
.ws2e{word-spacing:-16.192000pt;}
.ws32{word-spacing:-16.128000pt;}
.ws53{word-spacing:-16.074667pt;}
.ws1a{word-spacing:-16.000000pt;}
.ws34{word-spacing:-15.936000pt;}
.ws38{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws3a{word-spacing:-15.744000pt;}
.ws35{word-spacing:-15.680000pt;}
.ws30{word-spacing:-15.488000pt;}
.ws44{word-spacing:-15.424000pt;}
.ws45{word-spacing:-15.296000pt;}
.ws7e{word-spacing:-15.136000pt;}
.ws31{word-spacing:-15.040000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws33{word-spacing:-14.848000pt;}
.ws3{word-spacing:-14.490667pt;}
.ws79{word-spacing:-14.373333pt;}
.ws56{word-spacing:-14.197333pt;}
.ws7a{word-spacing:-14.021333pt;}
.ws7f{word-spacing:-13.832000pt;}
.ws1b{word-spacing:-12.514667pt;}
.wsf{word-spacing:-10.790400pt;}
.ws70{word-spacing:-10.384000pt;}
.ws6f{word-spacing:-10.325333pt;}
.ws60{word-spacing:-10.032000pt;}
.ws5e{word-spacing:-9.973333pt;}
.ws6a{word-spacing:-9.797333pt;}
.ws61{word-spacing:-9.738667pt;}
.ws69{word-spacing:-9.680000pt;}
.ws64{word-spacing:-9.621333pt;}
.ws37{word-spacing:-9.536000pt;}
.ws66{word-spacing:-9.386667pt;}
.ws5c{word-spacing:-9.269333pt;}
.ws6c{word-spacing:-9.152000pt;}
.ws3e{word-spacing:-9.088000pt;}
.ws8{word-spacing:-9.066667pt;}
.ws3d{word-spacing:-9.024000pt;}
.ws23{word-spacing:-6.400000pt;}
.ws7{word-spacing:-5.866667pt;}
.ws77{word-spacing:-5.653333pt;}
.ws9{word-spacing:-5.333333pt;}
.ws43{word-spacing:-4.736000pt;}
.ws41{word-spacing:-4.544000pt;}
.ws4e{word-spacing:-3.968000pt;}
.ws4{word-spacing:-3.733333pt;}
.ws3f{word-spacing:-3.264000pt;}
.ws1e{word-spacing:-3.200000pt;}
.ws4f{word-spacing:-1.600000pt;}
.ws2a{word-spacing:-1.536000pt;}
.ws2c{word-spacing:-1.408000pt;}
.ws2b{word-spacing:-0.896000pt;}
.ws76{word-spacing:-0.762667pt;}
.ws7c{word-spacing:-0.704000pt;}
.ws75{word-spacing:-0.645333pt;}
.ws50{word-spacing:-0.640000pt;}
.ws19{word-spacing:-0.576000pt;}
.ws14{word-spacing:-0.512000pt;}
.wsb{word-spacing:-0.469333pt;}
.ws20{word-spacing:-0.448000pt;}
.wsc{word-spacing:-0.410667pt;}
.ws24{word-spacing:-0.384000pt;}
.ws78{word-spacing:-0.352000pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws5b{word-spacing:-0.293333pt;}
.ws1c{word-spacing:-0.256000pt;}
.ws5f{word-spacing:-0.234667pt;}
.ws1d{word-spacing:-0.192000pt;}
.wsa{word-spacing:-0.176000pt;}
.ws18{word-spacing:-0.128000pt;}
.ws74{word-spacing:-0.117333pt;}
.ws82{word-spacing:-0.112000pt;}
.ws1{word-spacing:-0.090667pt;}
.ws21{word-spacing:-0.064000pt;}
.ws81{word-spacing:-0.056000pt;}
.ws54{word-spacing:-0.035200pt;}
.ws5{word-spacing:0.000000pt;}
.ws27{word-spacing:0.050667pt;}
.ws57{word-spacing:0.058667pt;}
.ws16{word-spacing:0.064000pt;}
.ws80{word-spacing:0.112000pt;}
.ws65{word-spacing:0.117333pt;}
.ws11{word-spacing:0.128000pt;}
.wsd{word-spacing:0.176000pt;}
.ws25{word-spacing:0.192000pt;}
.ws7d{word-spacing:0.234667pt;}
.ws12{word-spacing:0.256000pt;}
.ws83{word-spacing:0.280000pt;}
.ws5a{word-spacing:0.293333pt;}
.ws10{word-spacing:0.320000pt;}
.ws67{word-spacing:0.352000pt;}
.ws48{word-spacing:0.384000pt;}
.ws59{word-spacing:0.410667pt;}
.ws51{word-spacing:0.448000pt;}
.ws5d{word-spacing:0.469333pt;}
.ws47{word-spacing:0.512000pt;}
.ws6e{word-spacing:0.528000pt;}
.ws17{word-spacing:0.576000pt;}
.ws6d{word-spacing:0.586667pt;}
.ws15{word-spacing:0.640000pt;}
.ws29{word-spacing:0.704000pt;}
.ws26{word-spacing:0.768000pt;}
.ws13{word-spacing:0.896000pt;}
.ws6b{word-spacing:0.997333pt;}
.ws36{word-spacing:1.728000pt;}
.ws40{word-spacing:1.856000pt;}
.ws42{word-spacing:1.984000pt;}
.ws63{word-spacing:2.288000pt;}
.ws49{word-spacing:2.496000pt;}
.ws6{word-spacing:2.986667pt;}
.ws4b{word-spacing:3.072000pt;}
.ws71{word-spacing:3.461333pt;}
.ws62{word-spacing:3.637333pt;}
.ws4d{word-spacing:3.712000pt;}
.ws58{word-spacing:3.872000pt;}
.ws3c{word-spacing:3.968000pt;}
.ws46{word-spacing:5.376000pt;}
.ws4a{word-spacing:6.272000pt;}
.ws2d{word-spacing:6.336000pt;}
._18{margin-left:-18.093333pt;}
._14{margin-left:-12.785778pt;}
._16{margin-left:-11.045511pt;}
._c{margin-left:-9.649600pt;}
._e{margin-left:-8.432000pt;}
._11{margin-left:-7.146667pt;}
._6{margin-left:-5.866667pt;}
._9{margin-left:-4.681600pt;}
._0{margin-left:-3.752000pt;}
._2{margin-left:-2.254933pt;}
._7{margin-left:-1.179200pt;}
._4{width:1.301333pt;}
._5{width:2.485333pt;}
._3{width:3.555556pt;}
._a{width:4.497778pt;}
._1{width:5.626133pt;}
._10{width:6.629333pt;}
._f{width:7.951467pt;}
._d{width:9.066667pt;}
._8{width:10.008533pt;}
._13{width:10.912000pt;}
._17{width:12.760533pt;}
._15{width:13.843200pt;}
._b{width:15.467733pt;}
._1a{width:17.600000pt;}
._19{width:18.531200pt;}
._12{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:56.830667pt;}
.y3{bottom:67.857200pt;}
.y1{bottom:69.630667pt;}
.yaa{bottom:124.709733pt;}
.ycd{bottom:124.721733pt;}
.y1c6{bottom:124.723067pt;}
.y1e6{bottom:126.259867pt;}
.y24e{bottom:126.888400pt;}
.y207{bottom:127.038667pt;}
.y16f{bottom:127.050933pt;}
.y22a{bottom:127.384267pt;}
.y190{bottom:127.514933pt;}
.y308{bottom:128.455733pt;}
.y84{bottom:128.464267pt;}
.y2b5{bottom:128.629200pt;}
.y14e{bottom:128.794933pt;}
.y1a3{bottom:128.826933pt;}
.y10b{bottom:129.114933pt;}
.y272{bottom:129.116400pt;}
.ye8{bottom:129.253600pt;}
.y295{bottom:129.650933pt;}
.y43{bottom:129.657733pt;}
.y23{bottom:129.985067pt;}
.y2df{bottom:130.041733pt;}
.ya9{bottom:139.377733pt;}
.ycc{bottom:139.389733pt;}
.y229{bottom:143.521600pt;}
.y64{bottom:144.324400pt;}
.y206{bottom:144.506667pt;}
.y1e5{bottom:144.531867pt;}
.y307{bottom:144.583733pt;}
.y271{bottom:145.116400pt;}
.y24d{bottom:146.219067pt;}
.y2de{bottom:146.309733pt;}
.y16e{bottom:146.378933pt;}
.y18f{bottom:146.842933pt;}
.y22{bottom:147.057067pt;}
.y294{bottom:147.646933pt;}
.y83{bottom:148.064267pt;}
.y14d{bottom:148.122933pt;}
.y1a2{bottom:148.154933pt;}
.ye7{bottom:148.725600pt;}
.y10a{bottom:148.986933pt;}
.y2b4{bottom:149.029200pt;}
.ya8{bottom:154.045733pt;}
.ycb{bottom:158.991067pt;}
.y306{bottom:160.711733pt;}
.y270{bottom:161.116400pt;}
.y205{bottom:161.974667pt;}
.y2dd{bottom:162.577733pt;}
.y1e4{bottom:162.803867pt;}
.y42{bottom:163.562533pt;}
.y21{bottom:164.129067pt;}
.y24c{bottom:165.549733pt;}
.y16d{bottom:165.706933pt;}
.y12a{bottom:166.165600pt;}
.y18e{bottom:166.170933pt;}
.y293{bottom:166.977600pt;}
.y14c{bottom:167.450933pt;}
.y1a1{bottom:167.482933pt;}
.y82{bottom:167.664267pt;}
.ye6{bottom:168.197600pt;}
.ya7{bottom:168.713733pt;}
.y109{bottom:168.858933pt;}
.y228{bottom:169.217600pt;}
.y2b3{bottom:169.429200pt;}
.y63{bottom:175.834933pt;}
.y1c5{bottom:176.394933pt;}
.y305{bottom:176.839733pt;}
.y26f{bottom:177.116400pt;}
.y2dc{bottom:178.845733pt;}
.y204{bottom:179.442667pt;}
.y1e3{bottom:181.075867pt;}
.y20{bottom:181.201067pt;}
.ya6{bottom:183.381733pt;}
.y41{bottom:183.562533pt;}
.y24b{bottom:184.880400pt;}
.y16c{bottom:185.034933pt;}
.y129{bottom:185.493600pt;}
.y18d{bottom:185.498933pt;}
.y292{bottom:186.308267pt;}
.y14b{bottom:186.778933pt;}
.y1a0{bottom:186.810933pt;}
.y81{bottom:187.264267pt;}
.y227{bottom:187.477600pt;}
.ye5{bottom:187.669600pt;}
.y108{bottom:188.730933pt;}
.y2b2{bottom:189.829200pt;}
.yca{bottom:192.762933pt;}
.y304{bottom:192.967733pt;}
.y2db{bottom:195.113733pt;}
.y62{bottom:195.434933pt;}
.y1c4{bottom:196.522933pt;}
.y203{bottom:196.910667pt;}
.ya5{bottom:198.049733pt;}
.y1f{bottom:198.273067pt;}
.y1e2{bottom:200.275867pt;}
.y40{bottom:203.562533pt;}
.y24a{bottom:204.211067pt;}
.y16b{bottom:204.362933pt;}
.y128{bottom:204.821600pt;}
.y18c{bottom:204.826933pt;}
.y291{bottom:205.638933pt;}
.y226{bottom:205.737600pt;}
.y14a{bottom:206.106933pt;}
.y19f{bottom:206.138933pt;}
.y80{bottom:206.864267pt;}
.ye4{bottom:207.141600pt;}
.y107{bottom:208.602933pt;}
.y303{bottom:209.095733pt;}
.y2b1{bottom:210.229200pt;}
.y2da{bottom:211.381733pt;}
.yc9{bottom:212.090933pt;}
.ya4{bottom:212.717733pt;}
.y202{bottom:214.378667pt;}
.y61{bottom:215.034933pt;}
.y26e{bottom:215.121600pt;}
.y1e{bottom:215.345067pt;}
.y1c3{bottom:216.650933pt;}
.y1e1{bottom:219.475867pt;}
.y249{bottom:223.541733pt;}
.y3f{bottom:223.562533pt;}
.y16a{bottom:223.690933pt;}
.y225{bottom:223.997600pt;}
.y127{bottom:224.149600pt;}
.y18b{bottom:224.154933pt;}
.y290{bottom:225.101600pt;}
.y302{bottom:225.223733pt;}
.y149{bottom:225.434933pt;}
.y19e{bottom:225.466933pt;}
.y7f{bottom:226.464267pt;}
.ye3{bottom:226.613600pt;}
.ya3{bottom:227.385733pt;}
.y2d9{bottom:227.649733pt;}
.y106{bottom:228.474933pt;}
.y2b0{bottom:230.629200pt;}
.yc8{bottom:231.418933pt;}
.y201{bottom:231.846667pt;}
.y1d{bottom:232.417067pt;}
.y26d{bottom:232.721600pt;}
.y60{bottom:234.634933pt;}
.y1c2{bottom:235.850933pt;}
.y1e0{bottom:238.675867pt;}
.y301{bottom:241.351733pt;}
.ya2{bottom:242.053733pt;}
.y224{bottom:242.257600pt;}
.y248{bottom:242.872400pt;}
.y169{bottom:243.018933pt;}
.y126{bottom:243.477600pt;}
.y18a{bottom:243.482933pt;}
.y3e{bottom:243.562533pt;}
.y2d8{bottom:243.917733pt;}
.y28f{bottom:244.564267pt;}
.y148{bottom:244.762933pt;}
.y19d{bottom:244.794933pt;}
.y7e{bottom:246.064267pt;}
.ye2{bottom:246.085600pt;}
.y105{bottom:248.346933pt;}
.y200{bottom:249.314667pt;}
.y1c{bottom:249.489067pt;}
.yc7{bottom:250.746933pt;}
.y2af{bottom:251.029200pt;}
.y5f{bottom:254.234933pt;}
.y1c1{bottom:255.050933pt;}
.ya1{bottom:256.721733pt;}
.y300{bottom:257.479733pt;}
.y1df{bottom:257.875867pt;}
.y2d7{bottom:260.185733pt;}
.y223{bottom:260.517600pt;}
.y247{bottom:262.203067pt;}
.y168{bottom:262.346933pt;}
.y125{bottom:262.805600pt;}
.y189{bottom:262.810933pt;}
.y3d{bottom:263.562533pt;}
.y28e{bottom:264.026933pt;}
.y147{bottom:264.090933pt;}
.y19c{bottom:264.122933pt;}
.ye1{bottom:265.557600pt;}
.y7d{bottom:265.664267pt;}
.y1b{bottom:266.561067pt;}
.y1ff{bottom:266.782667pt;}
.y104{bottom:268.218933pt;}
.y26c{bottom:269.361600pt;}
.yc6{bottom:270.074933pt;}
.ya0{bottom:271.389733pt;}
.y2ae{bottom:271.429200pt;}
.y2ff{bottom:273.607733pt;}
.y5e{bottom:273.834933pt;}
.y1c0{bottom:274.250933pt;}
.y2d6{bottom:276.453733pt;}
.y1de{bottom:277.075867pt;}
.y222{bottom:278.777600pt;}
.y246{bottom:281.533733pt;}
.y167{bottom:281.674933pt;}
.y124{bottom:282.133600pt;}
.y188{bottom:282.138933pt;}
.y146{bottom:283.418933pt;}
.y19b{bottom:283.450933pt;}
.y28d{bottom:283.489600pt;}
.y3c{bottom:283.562533pt;}
.y1fe{bottom:284.250667pt;}
.ye0{bottom:285.029600pt;}
.y7c{bottom:285.264267pt;}
.y26b{bottom:287.900267pt;}
.y103{bottom:288.090933pt;}
.yc5{bottom:289.402933pt;}
.y2fe{bottom:289.735733pt;}
.y9f{bottom:290.991067pt;}
.y1a{bottom:291.186667pt;}
.y2d5{bottom:292.721733pt;}
.y5d{bottom:293.434933pt;}
.y1bf{bottom:293.450933pt;}
.y1dd{bottom:296.275867pt;}
.y221{bottom:297.037600pt;}
.y245{bottom:300.864400pt;}
.y166{bottom:301.002933pt;}
.y123{bottom:301.461600pt;}
.y187{bottom:301.466933pt;}
.y1fd{bottom:301.718667pt;}
.y145{bottom:302.746933pt;}
.y19a{bottom:302.778933pt;}
.y28c{bottom:302.952267pt;}
.y3b{bottom:303.562533pt;}
.ydf{bottom:304.501600pt;}
.y7b{bottom:304.864267pt;}
.y2fd{bottom:305.863733pt;}
.y2ad{bottom:306.229200pt;}
.y26a{bottom:306.438933pt;}
.y102{bottom:307.962933pt;}
.yc4{bottom:308.730933pt;}
.y2d4{bottom:308.989733pt;}
.y1be{bottom:312.650933pt;}
.y5c{bottom:313.034933pt;}
.y220{bottom:315.297600pt;}
.y1dc{bottom:315.475867pt;}
.y1fc{bottom:319.186667pt;}
.y244{bottom:320.195067pt;}
.y165{bottom:320.330933pt;}
.y122{bottom:320.789600pt;}
.y186{bottom:320.794933pt;}
.y2fc{bottom:321.991733pt;}
.y144{bottom:322.074933pt;}
.y199{bottom:322.106933pt;}
.y28b{bottom:322.414933pt;}
.y3a{bottom:323.562533pt;}
.yde{bottom:323.973600pt;}
.y7a{bottom:324.336267pt;}
.y269{bottom:324.977600pt;}
.y2d3{bottom:325.257733pt;}
.y9e{bottom:325.434933pt;}
.y101{bottom:327.834933pt;}
.yc3{bottom:328.058933pt;}
.y1bd{bottom:331.850933pt;}
.y5b{bottom:332.634933pt;}
.y21f{bottom:333.557600pt;}
.y1db{bottom:334.675867pt;}
.y19{bottom:336.036533pt;}
.y1fb{bottom:336.654667pt;}
.y2fb{bottom:338.119733pt;}
.y243{bottom:339.525733pt;}
.y164{bottom:339.658933pt;}
.y121{bottom:340.117600pt;}
.y185{bottom:340.122933pt;}
.y143{bottom:341.402933pt;}
.y198{bottom:341.434933pt;}
.y2d2{bottom:341.525733pt;}
.y28a{bottom:341.877600pt;}
.ydd{bottom:343.301600pt;}
.y268{bottom:343.516267pt;}
.y39{bottom:343.562533pt;}
.y79{bottom:343.808267pt;}
.y9d{bottom:344.634933pt;}
.yc2{bottom:347.386933pt;}
.y100{bottom:347.706933pt;}
.y1bc{bottom:351.050933pt;}
.y21e{bottom:351.553600pt;}
.y5a{bottom:352.234933pt;}
.y18{bottom:353.108533pt;}
.y1da{bottom:353.875867pt;}
.y1fa{bottom:354.122667pt;}
.y2fa{bottom:354.247733pt;}
.y2d1{bottom:357.793733pt;}
.y242{bottom:358.856400pt;}
.y163{bottom:358.986933pt;}
.y120{bottom:359.445600pt;}
.y184{bottom:359.450933pt;}
.y142{bottom:360.730933pt;}
.y197{bottom:360.762933pt;}
.y289{bottom:361.340267pt;}
.y267{bottom:362.054933pt;}
.y78{bottom:363.280267pt;}
.y38{bottom:363.562533pt;}
.y9c{bottom:363.834933pt;}
.y2ac{bottom:364.717600pt;}
.yc1{bottom:366.714933pt;}
.yff{bottom:367.578933pt;}
.y21d{bottom:369.549600pt;}
.y17{bottom:370.180533pt;}
.y1bb{bottom:370.250933pt;}
.y2f9{bottom:370.375733pt;}
.y1f9{bottom:371.590667pt;}
.y59{bottom:371.834933pt;}
.y1d9{bottom:373.075867pt;}
.y2d0{bottom:374.061733pt;}
.ydc{bottom:376.096267pt;}
.y241{bottom:378.187067pt;}
.y162{bottom:378.314933pt;}
.y11f{bottom:378.773600pt;}
.y183{bottom:378.778933pt;}
.y141{bottom:380.058933pt;}
.y196{bottom:380.090933pt;}
.y266{bottom:380.593600pt;}
.y288{bottom:380.802933pt;}
.y77{bottom:382.752267pt;}
.y9b{bottom:383.034933pt;}
.y2ab{bottom:383.388267pt;}
.y37{bottom:383.562533pt;}
.yc0{bottom:386.042933pt;}
.y2f8{bottom:386.503733pt;}
.y16{bottom:387.252533pt;}
.yfe{bottom:387.450933pt;}
.y21c{bottom:387.809600pt;}
.y1f8{bottom:389.058667pt;}
.y1ba{bottom:389.450933pt;}
.y2cf{bottom:390.329733pt;}
.y58{bottom:391.434933pt;}
.y1d8{bottom:392.275867pt;}
.y240{bottom:397.517733pt;}
.y161{bottom:397.642933pt;}
.y182{bottom:398.106933pt;}
.y11e{bottom:398.176267pt;}
.y265{bottom:399.132267pt;}
.y140{bottom:399.386933pt;}
.y195{bottom:399.418933pt;}
.y287{bottom:400.265600pt;}
.y76{bottom:402.224267pt;}
.y9a{bottom:402.234933pt;}
.y2f7{bottom:402.631733pt;}
.y36{bottom:403.562533pt;}
.y15{bottom:404.324533pt;}
.ybf{bottom:405.370933pt;}
.y21b{bottom:406.069600pt;}
.y1f7{bottom:406.526667pt;}
.y2ce{bottom:406.597733pt;}
.yfd{bottom:407.322933pt;}
.y1b9{bottom:408.650933pt;}
.y57{bottom:411.034933pt;}
.y1d7{bottom:411.475867pt;}
.ydb{bottom:414.896267pt;}
.y23f{bottom:416.848400pt;}
.y160{bottom:416.970933pt;}
.y181{bottom:417.434933pt;}
.y11d{bottom:417.504267pt;}
.y264{bottom:417.670933pt;}
.y13f{bottom:418.714933pt;}
.y194{bottom:418.746933pt;}
.y2f6{bottom:418.759733pt;}
.y286{bottom:419.728267pt;}
.y14{bottom:421.396533pt;}
.y99{bottom:421.434933pt;}
.y75{bottom:421.696267pt;}
.y2aa{bottom:422.349600pt;}
.y2cd{bottom:422.865733pt;}
.y35{bottom:423.562533pt;}
.y1f6{bottom:423.994667pt;}
.y21a{bottom:424.329600pt;}
.ybe{bottom:424.698933pt;}
.yfc{bottom:427.194933pt;}
.y1b8{bottom:427.850933pt;}
.y56{bottom:430.634933pt;}
.y1d6{bottom:430.675867pt;}
.yda{bottom:434.368267pt;}
.y2f5{bottom:434.887733pt;}
.y23e{bottom:436.179067pt;}
.y263{bottom:436.209600pt;}
.y15f{bottom:436.298933pt;}
.y11c{bottom:436.832267pt;}
.y13e{bottom:438.042933pt;}
.y193{bottom:438.074933pt;}
.y13{bottom:438.468533pt;}
.y2cc{bottom:439.133733pt;}
.y285{bottom:439.190933pt;}
.y98{bottom:440.634933pt;}
.y74{bottom:441.141600pt;}
.y2a9{bottom:441.284267pt;}
.y1f5{bottom:441.462667pt;}
.y219{bottom:442.589600pt;}
.y34{bottom:443.562533pt;}
.ybd{bottom:444.026933pt;}
.y1b7{bottom:447.050933pt;}
.yfb{bottom:447.066933pt;}
.y1d5{bottom:449.875867pt;}
.y55{bottom:450.234933pt;}
.y2f4{bottom:451.015733pt;}
.y262{bottom:454.748267pt;}
.y2cb{bottom:455.401733pt;}
.y23d{bottom:455.509733pt;}
.y12{bottom:455.540533pt;}
.y15e{bottom:455.626933pt;}
.y11b{bottom:456.160267pt;}
.y13d{bottom:457.370933pt;}
.y192{bottom:457.402933pt;}
.y284{bottom:458.653600pt;}
.y1f4{bottom:458.930667pt;}
.y97{bottom:459.834933pt;}
.y2a8{bottom:460.218933pt;}
.y73{bottom:460.613600pt;}
.y218{bottom:460.849600pt;}
.ybc{bottom:463.354933pt;}
.y33{bottom:463.562533pt;}
.y1b6{bottom:466.250933pt;}
.yfa{bottom:466.938933pt;}
.y2f3{bottom:467.143733pt;}
.y1d4{bottom:469.075867pt;}
.y54{bottom:469.834933pt;}
.y2ca{bottom:471.669733pt;}
.y11{bottom:472.612533pt;}
.y261{bottom:473.286933pt;}
.y23c{bottom:474.840400pt;}
.y15d{bottom:474.954933pt;}
.y11a{bottom:475.488267pt;}
.y1f3{bottom:476.398667pt;}
.y13c{bottom:476.698933pt;}
.y191{bottom:476.730933pt;}
.y283{bottom:478.116267pt;}
.y217{bottom:478.845600pt;}
.y96{bottom:479.034933pt;}
.y2a7{bottom:479.153600pt;}
.y72{bottom:480.085600pt;}
.ybb{bottom:482.682933pt;}
.y2f2{bottom:483.145733pt;}
.y32{bottom:483.562533pt;}
.y1b5{bottom:485.450933pt;}
.yf9{bottom:486.810933pt;}
.y2c9{bottom:487.937733pt;}
.y1d3{bottom:488.275867pt;}
.y53{bottom:489.434933pt;}
.y260{bottom:491.825600pt;}
.yd9{bottom:492.714933pt;}
.y23b{bottom:494.171067pt;}
.y15c{bottom:494.282933pt;}
.y119{bottom:494.816267pt;}
.y13b{bottom:496.026933pt;}
.y180{bottom:496.058933pt;}
.y216{bottom:497.105600pt;}
.y10{bottom:497.238133pt;}
.y282{bottom:497.578933pt;}
.y2a6{bottom:498.088267pt;}
.y95{bottom:498.234933pt;}
.y2f1{bottom:499.147733pt;}
.y71{bottom:499.557600pt;}
.y1f2{bottom:501.424400pt;}
.yba{bottom:502.010933pt;}
.y31{bottom:503.562533pt;}
.y2c8{bottom:504.205733pt;}
.y1b4{bottom:504.650933pt;}
.yf8{bottom:506.682933pt;}
.y1d2{bottom:507.475867pt;}
.y52{bottom:509.034933pt;}
.y25f{bottom:510.364267pt;}
.yd8{bottom:512.186933pt;}
.y23a{bottom:513.501733pt;}
.y15b{bottom:513.610933pt;}
.y118{bottom:514.144267pt;}
.y2f0{bottom:515.149733pt;}
.y31a{bottom:515.154533pt;}
.y13a{bottom:515.354933pt;}
.y215{bottom:515.365600pt;}
.y17f{bottom:515.386933pt;}
.y281{bottom:517.041600pt;}
.y2a5{bottom:517.418933pt;}
.y94{bottom:517.434933pt;}
.y70{bottom:519.029600pt;}
.y2c7{bottom:520.473733pt;}
.yb9{bottom:521.338933pt;}
.y30{bottom:523.562533pt;}
.y1b3{bottom:523.850933pt;}
.yf7{bottom:526.554933pt;}
.y1d1{bottom:526.675867pt;}
.y51{bottom:528.634933pt;}
.y25e{bottom:528.902933pt;}
.y2ef{bottom:531.151733pt;}
.y319{bottom:531.154533pt;}
.yd7{bottom:531.658933pt;}
.y239{bottom:532.832400pt;}
.y15a{bottom:532.938933pt;}
.y117{bottom:533.472267pt;}
.y214{bottom:533.625600pt;}
.y139{bottom:534.682933pt;}
.y17e{bottom:534.714933pt;}
.y280{bottom:536.504267pt;}
.y93{bottom:536.634933pt;}
.y2c6{bottom:536.741733pt;}
.y2a4{bottom:536.749600pt;}
.y6f{bottom:538.501600pt;}
.yb8{bottom:540.666933pt;}
.y1b2{bottom:543.050933pt;}
.y2f{bottom:543.562533pt;}
.y1f1{bottom:543.636800pt;}
.y1d0{bottom:545.875867pt;}
.yf6{bottom:546.426933pt;}
.y2ee{bottom:547.153733pt;}
.y318{bottom:547.154533pt;}
.y25d{bottom:547.441600pt;}
.y50{bottom:548.234933pt;}
.yd6{bottom:551.130933pt;}
.y213{bottom:551.885600pt;}
.y238{bottom:552.163067pt;}
.y159{bottom:552.266933pt;}
.yf{bottom:552.432800pt;}
.y116{bottom:552.800267pt;}
.y2c5{bottom:553.009733pt;}
.y138{bottom:554.010933pt;}
.y17d{bottom:554.042933pt;}
.y92{bottom:555.834933pt;}
.y2a3{bottom:556.080267pt;}
.y27f{bottom:556.509600pt;}
.yb7{bottom:559.994933pt;}
.y1f0{bottom:560.972800pt;}
.y1b1{bottom:562.250933pt;}
.y317{bottom:563.154533pt;}
.y2ed{bottom:563.155733pt;}
.y2e{bottom:563.562533pt;}
.y1cf{bottom:565.075867pt;}
.y25c{bottom:565.980267pt;}
.yf5{bottom:566.298933pt;}
.y4f{bottom:567.834933pt;}
.y2c4{bottom:569.277733pt;}
.ye{bottom:569.504800pt;}
.y212{bottom:570.145600pt;}
.yd5{bottom:570.602933pt;}
.y237{bottom:571.493733pt;}
.y6e{bottom:571.573600pt;}
.y158{bottom:571.594933pt;}
.y115{bottom:572.128267pt;}
.y137{bottom:573.338933pt;}
.y17c{bottom:573.370933pt;}
.y91{bottom:575.034933pt;}
.y27e{bottom:575.180267pt;}
.y2a2{bottom:575.410933pt;}
.y1ef{bottom:578.308800pt;}
.y2ec{bottom:579.157733pt;}
.yb6{bottom:579.322933pt;}
.y1b0{bottom:581.450933pt;}
.y2d{bottom:583.562533pt;}
.y1ce{bottom:584.275867pt;}
.y25b{bottom:584.518933pt;}
.y2c3{bottom:585.545733pt;}
.yf4{bottom:586.170933pt;}
.y4e{bottom:587.434933pt;}
.y211{bottom:588.405600pt;}
.yd4{bottom:590.074933pt;}
.y316{bottom:590.471067pt;}
.y236{bottom:590.824400pt;}
.y157{bottom:590.922933pt;}
.y114{bottom:591.456267pt;}
.y136{bottom:592.666933pt;}
.y17b{bottom:592.698933pt;}
.y27d{bottom:593.850933pt;}
.y90{bottom:594.234933pt;}
.y2a1{bottom:594.741600pt;}
.y2eb{bottom:595.159733pt;}
.y1ee{bottom:595.644800pt;}
.yb5{bottom:598.650933pt;}
.y1af{bottom:600.650933pt;}
.y2c2{bottom:601.813733pt;}
.y25a{bottom:603.057600pt;}
.y1cd{bottom:603.475867pt;}
.y2c{bottom:603.562533pt;}
.yd{bottom:605.270133pt;}
.yf3{bottom:606.042933pt;}
.y210{bottom:606.401600pt;}
.y4d{bottom:607.034933pt;}
.yd3{bottom:609.546933pt;}
.y235{bottom:610.155067pt;}
.y156{bottom:610.250933pt;}
.y6d{bottom:610.501600pt;}
.y113{bottom:610.784267pt;}
.y135{bottom:611.994933pt;}
.y17a{bottom:612.026933pt;}
.y27c{bottom:612.521600pt;}
.y1ed{bottom:612.980800pt;}
.y8f{bottom:613.434933pt;}
.y2a0{bottom:614.072267pt;}
.y315{bottom:617.813067pt;}
.yb4{bottom:617.978933pt;}
.y2c1{bottom:618.081733pt;}
.y1ae{bottom:619.850933pt;}
.y259{bottom:621.596267pt;}
.y1cc{bottom:622.675867pt;}
.y2b{bottom:623.562533pt;}
.y2ea{bottom:624.493067pt;}
.y20f{bottom:624.661600pt;}
.yf2{bottom:625.914933pt;}
.y4c{bottom:626.634933pt;}
.yd2{bottom:629.018933pt;}
.y234{bottom:629.485733pt;}
.y155{bottom:629.578933pt;}
.y112{bottom:630.112267pt;}
.y1ec{bottom:630.306133pt;}
.y27b{bottom:631.192267pt;}
.y134{bottom:631.322933pt;}
.y179{bottom:631.354933pt;}
.yc{bottom:631.926133pt;}
.y8e{bottom:632.634933pt;}
.y29f{bottom:633.402933pt;}
.y314{bottom:633.815067pt;}
.y2c0{bottom:634.349733pt;}
.yb3{bottom:637.306933pt;}
.y1ad{bottom:639.050933pt;}
.y258{bottom:640.134933pt;}
.y1cb{bottom:641.875867pt;}
.y20e{bottom:642.921600pt;}
.y2a{bottom:643.562533pt;}
.yf1{bottom:645.786933pt;}
.y4b{bottom:646.234933pt;}
.y1eb{bottom:647.642133pt;}
.yd1{bottom:648.490933pt;}
.y233{bottom:648.816400pt;}
.y154{bottom:648.906933pt;}
.y111{bottom:649.440267pt;}
.y313{bottom:649.817067pt;}
.y27a{bottom:649.862933pt;}
.y2bf{bottom:650.617733pt;}
.y133{bottom:650.650933pt;}
.y178{bottom:650.682933pt;}
.y8d{bottom:651.834933pt;}
.y29e{bottom:652.733600pt;}
.yb2{bottom:656.672267pt;}
.y1ac{bottom:658.250933pt;}
.yb{bottom:658.582133pt;}
.y257{bottom:658.673600pt;}
.y20d{bottom:661.181600pt;}
.y29{bottom:663.562533pt;}
.y1ea{bottom:664.978133pt;}
.yf0{bottom:665.658933pt;}
.y312{bottom:665.819067pt;}
.y2be{bottom:666.885733pt;}
.yd0{bottom:667.962933pt;}
.y232{bottom:668.147067pt;}
.y153{bottom:668.234933pt;}
.y279{bottom:668.533600pt;}
.y1ca{bottom:668.634933pt;}
.y110{bottom:668.768267pt;}
.y6c{bottom:668.858933pt;}
.y132{bottom:669.978933pt;}
.y177{bottom:670.010933pt;}
.y2e9{bottom:670.341067pt;}
.y8c{bottom:671.034933pt;}
.y29d{bottom:672.064267pt;}
.yb1{bottom:676.000267pt;}
.y1ab{bottom:677.178933pt;}
.y256{bottom:677.212267pt;}
.y20c{bottom:679.441600pt;}
.y4a{bottom:679.568267pt;}
.y311{bottom:681.821067pt;}
.y1e9{bottom:682.314133pt;}
.y2bd{bottom:683.153733pt;}
.y28{bottom:683.562533pt;}
.ya{bottom:685.238133pt;}
.yef{bottom:685.530933pt;}
.y278{bottom:687.204267pt;}
.ycf{bottom:687.434933pt;}
.y231{bottom:687.477733pt;}
.y6b{bottom:688.330933pt;}
.y131{bottom:689.306933pt;}
.y176{bottom:689.338933pt;}
.y8b{bottom:690.234933pt;}
.y29c{bottom:691.394933pt;}
.yb0{bottom:695.328267pt;}
.y255{bottom:695.750933pt;}
.y1aa{bottom:696.106933pt;}
.y2e8{bottom:697.683067pt;}
.y20b{bottom:697.701600pt;}
.y310{bottom:697.823067pt;}
.y2bc{bottom:699.421733pt;}
.y1e8{bottom:699.650133pt;}
.y152{bottom:701.301600pt;}
.y10f{bottom:701.568267pt;}
.yee{bottom:705.402933pt;}
.y277{bottom:705.874933pt;}
.y230{bottom:706.808400pt;}
.yce{bottom:707.034933pt;}
.y6a{bottom:707.802933pt;}
.y130{bottom:708.634933pt;}
.y175{bottom:708.666933pt;}
.y8a{bottom:709.434933pt;}
.y29b{bottom:710.593600pt;}
.y27{bottom:711.121600pt;}
.y2e7{bottom:713.685067pt;}
.y30f{bottom:713.825067pt;}
.y254{bottom:714.289600pt;}
.yaf{bottom:714.656267pt;}
.y1a9{bottom:715.002933pt;}
.y2bb{bottom:715.689733pt;}
.y20a{bottom:715.961600pt;}
.y1e7{bottom:724.542533pt;}
.yed{bottom:725.274933pt;}
.y49{bottom:726.634933pt;}
.y1c9{bottom:726.762933pt;}
.y69{bottom:727.274933pt;}
.y12f{bottom:727.962933pt;}
.y174{bottom:727.994933pt;}
.y89{bottom:728.634933pt;}
.y2e6{bottom:729.687067pt;}
.y29a{bottom:729.792267pt;}
.y30e{bottom:729.827067pt;}
.y2ba{bottom:731.957733pt;}
.y253{bottom:732.828267pt;}
.y1a8{bottom:733.274933pt;}
.y9{bottom:733.828400pt;}
.yae{bottom:733.984267pt;}
.y209{bottom:734.221600pt;}
.y276{bottom:737.874933pt;}
.y22f{bottom:739.208267pt;}
.yec{bottom:745.146933pt;}
.y2e5{bottom:745.689067pt;}
.y30d{bottom:745.829067pt;}
.y48{bottom:746.234933pt;}
.y68{bottom:746.746933pt;}
.y10e{bottom:747.050933pt;}
.y12e{bottom:747.290933pt;}
.y151{bottom:747.306933pt;}
.y173{bottom:747.322933pt;}
.y88{bottom:747.834933pt;}
.y2b9{bottom:748.225733pt;}
.y299{bottom:748.990933pt;}
.y8{bottom:749.295067pt;}
.y252{bottom:751.366933pt;}
.y1a7{bottom:751.546933pt;}
.y208{bottom:752.481600pt;}
.yad{bottom:753.312267pt;}
.y2e4{bottom:761.691067pt;}
.y30c{bottom:761.831067pt;}
.y2b8{bottom:764.493733pt;}
.y7{bottom:764.761733pt;}
.yeb{bottom:765.018933pt;}
.y1c8{bottom:765.706933pt;}
.y47{bottom:765.834933pt;}
.y67{bottom:766.218933pt;}
.y10d{bottom:766.378933pt;}
.y150{bottom:766.506933pt;}
.y172{bottom:766.650933pt;}
.y12d{bottom:766.890933pt;}
.y87{bottom:767.034933pt;}
.y298{bottom:768.189600pt;}
.y275{bottom:768.808267pt;}
.y22e{bottom:769.619067pt;}
.y1a6{bottom:769.818933pt;}
.y251{bottom:769.905600pt;}
.y26{bottom:770.741600pt;}
.yac{bottom:772.640267pt;}
.y2e3{bottom:777.693067pt;}
.y30b{bottom:777.833067pt;}
.y6{bottom:780.228400pt;}
.y2b7{bottom:780.761733pt;}
.yea{bottom:784.890933pt;}
.y1c7{bottom:785.178933pt;}
.y46{bottom:785.434933pt;}
.y66{bottom:785.690933pt;}
.y10c{bottom:785.706933pt;}
.y171{bottom:785.978933pt;}
.y86{bottom:786.234933pt;}
.y12c{bottom:786.490933pt;}
.y297{bottom:787.388267pt;}
.y274{bottom:788.008267pt;}
.y1a5{bottom:788.090933pt;}
.y250{bottom:788.444267pt;}
.y22d{bottom:788.547067pt;}
.y25{bottom:789.001600pt;}
.yab{bottom:791.968267pt;}
.y2e2{bottom:793.695067pt;}
.y30a{bottom:793.835067pt;}
.y2b6{bottom:797.029733pt;}
.ye9{bottom:804.762933pt;}
.y14f{bottom:804.906933pt;}
.y45{bottom:805.034933pt;}
.y65{bottom:805.162933pt;}
.y170{bottom:805.306933pt;}
.y85{bottom:805.434933pt;}
.y12b{bottom:805.562933pt;}
.y1a4{bottom:806.362933pt;}
.y296{bottom:806.454933pt;}
.y24f{bottom:806.982933pt;}
.y273{bottom:807.208267pt;}
.y24{bottom:807.261600pt;}
.y22c{bottom:807.475067pt;}
.y2e1{bottom:809.697067pt;}
.y309{bottom:809.837067pt;}
.y5{bottom:810.055067pt;}
.y44{bottom:824.634933pt;}
.y4{bottom:825.521600pt;}
.y2e0{bottom:825.965067pt;}
.y22b{bottom:826.408400pt;}
.h9{height:27.171875pt;}
.h7{height:34.351188pt;}
.h2{height:36.229167pt;}
.hb{height:43.022135pt;}
.h3{height:45.286458pt;}
.h10{height:47.550781pt;}
.h4{height:49.815104pt;}
.hf{height:49.857771pt;}
.h6{height:54.343750pt;}
.ha{height:54.450417pt;}
.hd{height:55.987583pt;}
.hc{height:56.136917pt;}
.h8{height:56.286250pt;}
.he{height:56.414250pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:68.031467pt;}
.x5{left:86.931467pt;}
.x8{left:105.826800pt;}
.xa{left:124.717467pt;}
.x7{left:127.262533pt;}
.xe{left:147.760133pt;}
.xd{left:160.479333pt;}
.x1{left:209.956800pt;}
.x6{left:213.241600pt;}
.x2{left:232.553600pt;}
.xc{left:452.227333pt;}
.xb{left:460.194667pt;}
.x9{left:542.257200pt;}
.x3{left:548.923867pt;}
}




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