
    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_fcc5432cef353aa0022970c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_b0f5f684c77efa09d82eb290.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_a99965f58c3bbd4309c8ad64.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_6cb05060b8a00fe12c86e55a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_56750a04544b3cb22b500f93.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_861f458c2d2da0de2bb8c286.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_5712fdbb264dd5d6f7d246fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969000;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_abace536345c53f6846b5e67.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984000;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_160387017f051c18334d2cbe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.158000;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_591ce7c39d8368cd76e90c3e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.166000;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_c6349ce2d92037197a5a1ee0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.744000;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_02fabe642781f228777150b8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888672;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_f55b03e821fc6fdb19d85ff2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.104000px;}
.v1{vertical-align:19.835400px;}
.ls24{letter-spacing:-0.990000px;}
.ls36{letter-spacing:-0.330000px;}
.ls3a{letter-spacing:-0.198000px;}
.ls37{letter-spacing:-0.066000px;}
.lsd{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.027000px;}
.ls15{letter-spacing:0.033000px;}
.ls33{letter-spacing:0.054000px;}
.ls23{letter-spacing:0.060000px;}
.ls17{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.081000px;}
.ls8{letter-spacing:0.108000px;}
.ls3e{letter-spacing:0.120000px;}
.ls3d{letter-spacing:0.128700px;}
.ls18{letter-spacing:0.132000px;}
.ls2{letter-spacing:0.162000px;}
.ls1c{letter-spacing:0.162600px;}
.ls30{letter-spacing:0.163350px;}
.ls2f{letter-spacing:0.165000px;}
.lsc{letter-spacing:0.189000px;}
.ls29{letter-spacing:0.198000px;}
.ls13{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.231000px;}
.ls22{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.264000px;}
.ls9{letter-spacing:0.270000px;}
.ls3f{letter-spacing:0.297000px;}
.ls20{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.330000px;}
.ls21{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.363000px;}
.ls3c{letter-spacing:0.396000px;}
.ls2e{letter-spacing:0.428400px;}
.ls32{letter-spacing:0.429000px;}
.ls39{letter-spacing:0.462000px;}
.lsa{letter-spacing:0.486000px;}
.ls35{letter-spacing:0.495000px;}
.ls1{letter-spacing:0.513000px;}
.lsf{letter-spacing:0.528000px;}
.ls28{letter-spacing:0.594000px;}
.ls1d{letter-spacing:0.648000px;}
.ls1e{letter-spacing:0.660000px;}
.ls31{letter-spacing:0.726000px;}
.ls11{letter-spacing:0.759000px;}
.ls2c{letter-spacing:0.792000px;}
.ls2b{letter-spacing:0.858000px;}
.ls2d{letter-spacing:0.924000px;}
.ls44{letter-spacing:0.990000px;}
.ls41{letter-spacing:1.056000px;}
.ls34{letter-spacing:1.122000px;}
.ls5{letter-spacing:1.134000px;}
.ls40{letter-spacing:1.188000px;}
.ls42{letter-spacing:1.254000px;}
.ls45{letter-spacing:1.260000px;}
.ls25{letter-spacing:1.287000px;}
.ls19{letter-spacing:1.518000px;}
.ls46{letter-spacing:1.617000px;}
.ls7{letter-spacing:1.620000px;}
.ls26{letter-spacing:1.650000px;}
.ls27{letter-spacing:1.658250px;}
.ls1f{letter-spacing:1.848000px;}
.ls3{letter-spacing:6.156000px;}
.ls4{letter-spacing:6.210000px;}
.ls6{letter-spacing:6.372000px;}
.ls16{letter-spacing:6.798000px;}
.ls43{letter-spacing:33.912000px;}
.ls3b{letter-spacing:2082.471000px;}
.ls38{letter-spacing:2094.399000px;}
.ls14{letter-spacing:2115.471000px;}
.lse{letter-spacing:2127.399000px;}
.ls0{letter-spacing:2844.088800px;}
.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;}
}
.ws0{word-spacing:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.ws16{word-spacing:-16.500000px;}
.ws5a{word-spacing:-14.652000px;}
.ws5b{word-spacing:-14.520000px;}
.wsb4{word-spacing:-14.355000px;}
.ws90{word-spacing:-14.322000px;}
.ws42{word-spacing:-13.860000px;}
.ws2f{word-spacing:-12.750000px;}
.wsab{word-spacing:-9.438000px;}
.ws96{word-spacing:-9.137700px;}
.ws17{word-spacing:-9.009000px;}
.ws18{word-spacing:-7.371000px;}
.ws52{word-spacing:-1.707750px;}
.wsc0{word-spacing:-1.650000px;}
.wsb5{word-spacing:-1.056000px;}
.wsad{word-spacing:-0.924000px;}
.wsbb{word-spacing:-0.858000px;}
.ws66{word-spacing:-0.792000px;}
.ws68{word-spacing:-0.660000px;}
.ws41{word-spacing:-0.648000px;}
.wsf{word-spacing:-0.486000px;}
.ws91{word-spacing:-0.462000px;}
.wsa0{word-spacing:-0.360000px;}
.ws28{word-spacing:-0.330000px;}
.ws8d{word-spacing:-0.264000px;}
.ws6e{word-spacing:-0.212850px;}
.ws79{word-spacing:-0.198000px;}
.ws60{word-spacing:-0.132000px;}
.ws38{word-spacing:-0.066000px;}
.ws9c{word-spacing:-0.049500px;}
.ws9f{word-spacing:-0.040500px;}
.ws2{word-spacing:0.000000px;}
.ws9b{word-spacing:0.054000px;}
.ws24{word-spacing:0.066000px;}
.wsaf{word-spacing:0.132000px;}
.wsba{word-spacing:0.198000px;}
.ws2d{word-spacing:0.216000px;}
.ws6c{word-spacing:0.264000px;}
.ws88{word-spacing:0.330000px;}
.ws84{word-spacing:0.378000px;}
.ws2a{word-spacing:0.396000px;}
.wsbc{word-spacing:0.462000px;}
.wsa3{word-spacing:0.480000px;}
.ws8f{word-spacing:0.486000px;}
.ws4b{word-spacing:0.528000px;}
.ws9{word-spacing:0.594000px;}
.ws6b{word-spacing:0.600000px;}
.ws92{word-spacing:0.660000px;}
.ws2e{word-spacing:0.702000px;}
.wsbe{word-spacing:0.726000px;}
.ws7d{word-spacing:0.756000px;}
.ws70{word-spacing:0.792000px;}
.ws4{word-spacing:0.816000px;}
.ws99{word-spacing:0.858000px;}
.ws10{word-spacing:0.918000px;}
.ws45{word-spacing:0.924000px;}
.ws7b{word-spacing:0.990000px;}
.ws77{word-spacing:1.056000px;}
.ws85{word-spacing:1.080000px;}
.ws37{word-spacing:1.122000px;}
.ws20{word-spacing:1.188000px;}
.wsaa{word-spacing:1.242000px;}
.ws31{word-spacing:1.254000px;}
.ws8a{word-spacing:1.320000px;}
.wsa9{word-spacing:1.350000px;}
.ws5c{word-spacing:1.386000px;}
.ws7{word-spacing:1.404000px;}
.ws27{word-spacing:1.452000px;}
.ws26{word-spacing:1.518000px;}
.ws30{word-spacing:1.584000px;}
.wsb{word-spacing:1.620000px;}
.ws25{word-spacing:1.650000px;}
.ws3c{word-spacing:1.716000px;}
.ws15{word-spacing:1.728000px;}
.wsb7{word-spacing:1.740000px;}
.ws44{word-spacing:1.782000px;}
.ws9d{word-spacing:1.848000px;}
.ws1f{word-spacing:1.914000px;}
.ws4c{word-spacing:1.980000px;}
.wsd{word-spacing:1.998000px;}
.ws3{word-spacing:2.016000px;}
.ws35{word-spacing:2.046000px;}
.wsb0{word-spacing:2.052000px;}
.ws7c{word-spacing:2.106000px;}
.ws4e{word-spacing:2.112000px;}
.ws53{word-spacing:2.160000px;}
.ws58{word-spacing:2.178000px;}
.ws98{word-spacing:2.244000px;}
.ws21{word-spacing:2.310000px;}
.ws6d{word-spacing:2.322000px;}
.ws3d{word-spacing:2.376000px;}
.wsa1{word-spacing:2.400000px;}
.ws8e{word-spacing:2.430000px;}
.ws40{word-spacing:2.442000px;}
.wsa7{word-spacing:2.484000px;}
.ws69{word-spacing:2.508000px;}
.ws72{word-spacing:2.574000px;}
.ws3a{word-spacing:2.640000px;}
.ws46{word-spacing:2.700000px;}
.ws9a{word-spacing:2.706000px;}
.ws94{word-spacing:2.772000px;}
.ws11{word-spacing:2.808000px;}
.ws48{word-spacing:2.820000px;}
.ws76{word-spacing:2.838000px;}
.ws64{word-spacing:2.880000px;}
.ws57{word-spacing:2.904000px;}
.ws12{word-spacing:2.970000px;}
.wse{word-spacing:3.024000px;}
.ws2b{word-spacing:3.036000px;}
.ws49{word-spacing:3.060000px;}
.ws5f{word-spacing:3.102000px;}
.ws19{word-spacing:3.168000px;}
.ws7f{word-spacing:3.234000px;}
.wsb1{word-spacing:3.240000px;}
.ws87{word-spacing:3.300000px;}
.ws7a{word-spacing:3.366000px;}
.ws63{word-spacing:3.420000px;}
.ws9e{word-spacing:3.432000px;}
.ws65{word-spacing:3.480000px;}
.ws29{word-spacing:3.498000px;}
.wsa6{word-spacing:3.564000px;}
.ws71{word-spacing:3.630000px;}
.ws13{word-spacing:3.672000px;}
.ws1a{word-spacing:3.762000px;}
.wsa2{word-spacing:3.780000px;}
.ws1c{word-spacing:3.828000px;}
.ws3b{word-spacing:3.894000px;}
.ws39{word-spacing:3.960000px;}
.wsb6{word-spacing:4.020000px;}
.wsac{word-spacing:4.026000px;}
.ws73{word-spacing:4.092000px;}
.ws62{word-spacing:4.140000px;}
.ws34{word-spacing:4.158000px;}
.ws83{word-spacing:4.212000px;}
.ws78{word-spacing:4.224000px;}
.wsa8{word-spacing:4.266000px;}
.ws3f{word-spacing:4.290000px;}
.ws2c{word-spacing:4.356000px;}
.ws1d{word-spacing:4.422000px;}
.wsa4{word-spacing:4.440000px;}
.ws67{word-spacing:4.488000px;}
.wsb8{word-spacing:4.500000px;}
.ws81{word-spacing:4.554000px;}
.ws6a{word-spacing:4.560000px;}
.ws56{word-spacing:4.620000px;}
.ws80{word-spacing:4.686000px;}
.ws97{word-spacing:4.752000px;}
.ws8b{word-spacing:4.818000px;}
.ws1e{word-spacing:4.884000px;}
.ws14{word-spacing:4.914000px;}
.wsae{word-spacing:4.950000px;}
.ws43{word-spacing:5.016000px;}
.wsa{word-spacing:5.076000px;}
.ws54{word-spacing:5.082000px;}
.ws7e{word-spacing:5.148000px;}
.ws50{word-spacing:5.160000px;}
.ws82{word-spacing:5.214000px;}
.ws23{word-spacing:5.280000px;}
.wsa5{word-spacing:5.340000px;}
.wsc{word-spacing:5.346000px;}
.ws95{word-spacing:5.412000px;}
.ws6f{word-spacing:5.478000px;}
.ws4a{word-spacing:5.520000px;}
.ws1b{word-spacing:5.544000px;}
.ws51{word-spacing:5.562000px;}
.ws86{word-spacing:5.610000px;}
.ws8{word-spacing:5.670000px;}
.ws8c{word-spacing:5.742000px;}
.ws4d{word-spacing:5.808000px;}
.ws4f{word-spacing:5.874000px;}
.ws36{word-spacing:5.940000px;}
.wsc1{word-spacing:6.006000px;}
.ws93{word-spacing:6.072000px;}
.ws74{word-spacing:6.138000px;}
.ws5e{word-spacing:6.204000px;}
.wsb9{word-spacing:6.240000px;}
.ws59{word-spacing:6.270000px;}
.ws47{word-spacing:6.300000px;}
.ws61{word-spacing:6.336000px;}
.wsb2{word-spacing:6.402000px;}
.ws75{word-spacing:6.468000px;}
.wsbd{word-spacing:6.534000px;}
.ws5d{word-spacing:6.600000px;}
.ws55{word-spacing:6.666000px;}
.ws89{word-spacing:6.732000px;}
.wsb3{word-spacing:6.798000px;}
.ws33{word-spacing:6.864000px;}
.ws22{word-spacing:6.930000px;}
.ws3e{word-spacing:7.194000px;}
.ws5{word-spacing:10.656000px;}
.ws6{word-spacing:13.344000px;}
.ws32{word-spacing:80.856000px;}
.wsbf{word-spacing:84.708000px;}
._3{margin-left:-24.000000px;}
._4{margin-left:-22.697400px;}
._5{margin-left:-17.640000px;}
._15{margin-left:-13.860000px;}
._8{margin-left:-1.591800px;}
._2{width:1.756800px;}
._10{width:3.036000px;}
._f{width:5.544000px;}
._e{width:6.946800px;}
._16{width:8.910000px;}
._6{width:10.152000px;}
._1{width:11.232000px;}
._0{width:13.344000px;}
._12{width:28.079400px;}
._14{width:30.239400px;}
._13{width:31.481400px;}
._11{width:33.155400px;}
._b{width:48.086400px;}
._d{width:51.516000px;}
._a{width:53.783400px;}
._c{width:75.240000px;}
._9{width:76.680000px;}
._7{width:84.708000px;}
.fc2{color:rgb(96,139,155);}
.fc1{color:rgb(156,193,232);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.100000px;}
.fse{font-size:40.500000px;}
.fsa{font-size:42.900000px;}
.fs2{font-size:48.000000px;}
.fsd{font-size:49.500000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.yb3{bottom:138.191550px;}
.yd9{bottom:138.191700px;}
.y8b{bottom:138.191850px;}
.y1b8{bottom:138.192000px;}
.y171{bottom:138.194700px;}
.y65{bottom:138.197700px;}
.y14e{bottom:138.212700px;}
.y2aa{bottom:138.433350px;}
.y19e{bottom:138.828000px;}
.y289{bottom:138.866550px;}
.y9{bottom:140.316450px;}
.y1fc{bottom:142.239000px;}
.y272{bottom:142.430250px;}
.y8{bottom:153.108450px;}
.y170{bottom:154.178700px;}
.y64{bottom:154.181700px;}
.y14d{bottom:154.196700px;}
.y1fb{bottom:154.197000px;}
.yb2{bottom:158.225550px;}
.yd8{bottom:158.225700px;}
.y8a{bottom:158.225850px;}
.y1b7{bottom:158.226000px;}
.y19d{bottom:159.618000px;}
.y288{bottom:159.656550px;}
.y271{bottom:163.220250px;}
.yb1{bottom:170.165400px;}
.y126{bottom:170.165550px;}
.y63{bottom:170.165700px;}
.y222{bottom:170.169000px;}
.y14c{bottom:170.180700px;}
.y1fa{bottom:170.181000px;}
.y2a9{bottom:170.575350px;}
.y7{bottom:172.269300px;}
.y16f{bottom:174.212700px;}
.y19c{bottom:180.408000px;}
.y270{bottom:184.010250px;}
.y221{bottom:186.153000px;}
.y14b{bottom:186.164700px;}
.y1f9{bottom:186.165000px;}
.yb0{bottom:190.199400px;}
.y125{bottom:190.199550px;}
.y62{bottom:190.199700px;}
.y287{bottom:190.346550px;}
.y2b3{bottom:190.803000px;}
.y6{bottom:191.445300px;}
.y247{bottom:196.448700px;}
.y19b{bottom:201.198000px;}
.y61{bottom:202.139700px;}
.y14a{bottom:202.148700px;}
.y1f8{bottom:202.149000px;}
.y2a8{bottom:202.717350px;}
.y26f{bottom:204.800250px;}
.yff{bottom:206.055000px;}
.y220{bottom:206.187000px;}
.y5{bottom:210.621300px;}
.y2b2{bottom:211.593000px;}
.y89{bottom:216.222150px;}
.y246{bottom:217.238700px;}
.y149{bottom:218.132700px;}
.y1f7{bottom:218.133000px;}
.yd7{bottom:219.964050px;}
.y286{bottom:221.036550px;}
.y1d6{bottom:221.238750px;}
.y19a{bottom:221.988000px;}
.y1b6{bottom:221.989350px;}
.y60{bottom:222.173700px;}
.y4{bottom:223.413300px;}
.y26e{bottom:225.590250px;}
.yfe{bottom:226.845000px;}
.y16e{bottom:232.384350px;}
.y148{bottom:234.116700px;}
.y1f6{bottom:234.117000px;}
.y2a7{bottom:234.859350px;}
.y88{bottom:237.012150px;}
.y245{bottom:238.028700px;}
.y5f{bottom:238.160700px;}
.yd6{bottom:240.754050px;}
.y1d5{bottom:242.028750px;}
.y3{bottom:242.589300px;}
.y199{bottom:242.778000px;}
.y1b5{bottom:242.779350px;}
.y26d{bottom:246.380250px;}
.y147{bottom:250.100700px;}
.y1f5{bottom:250.101000px;}
.y285{bottom:251.726550px;}
.y16d{bottom:253.174350px;}
.y124{bottom:253.254600px;}
.y2{bottom:255.381300px;}
.yaf{bottom:256.273200px;}
.y2a6{bottom:256.606350px;}
.y87{bottom:257.799150px;}
.yfd{bottom:258.015000px;}
.y244{bottom:258.818700px;}
.y1d4{bottom:262.818750px;}
.y198{bottom:263.568000px;}
.y1b4{bottom:263.569350px;}
.y21f{bottom:263.633100px;}
.y26c{bottom:267.170250px;}
.y146{bottom:270.134700px;}
.y1f4{bottom:270.135000px;}
.yd5{bottom:271.939050px;}
.y284{bottom:272.516550px;}
.yae{bottom:273.868200px;}
.y16c{bottom:273.964350px;}
.y123{bottom:274.044600px;}
.y86{bottom:278.589150px;}
.yfc{bottom:278.805000px;}
.y243{bottom:279.608700px;}
.y197{bottom:284.358000px;}
.y1b3{bottom:284.359350px;}
.y21e{bottom:284.423100px;}
.y26b{bottom:287.960250px;}
.y2a5{bottom:288.748350px;}
.yd4{bottom:292.729050px;}
.y1d3{bottom:294.003750px;}
.y2b1{bottom:294.753000px;}
.y16b{bottom:294.754350px;}
.y122{bottom:294.834600px;}
.yfb{bottom:299.595000px;}
.y242{bottom:300.398700px;}
.y5e{bottom:300.699150px;}
.y283{bottom:303.206550px;}
.y22e{bottom:305.148000px;}
.y1b2{bottom:305.149350px;}
.y21d{bottom:305.213100px;}
.y26a{bottom:308.750250px;}
.y2a4{bottom:310.495350px;}
.yad{bottom:312.223650px;}
.yd3{bottom:313.519050px;}
.y1d2{bottom:314.753700px;}
.y196{bottom:315.543000px;}
.y16a{bottom:315.544350px;}
.y121{bottom:315.624600px;}
.yfa{bottom:320.385000px;}
.y241{bottom:321.188700px;}
.y5d{bottom:321.489150px;}
.y282{bottom:323.996550px;}
.y85{bottom:324.651900px;}
.y145{bottom:325.160400px;}
.y2b0{bottom:325.938000px;}
.y1b1{bottom:325.939350px;}
.y21c{bottom:326.003100px;}
.y269{bottom:329.540250px;}
.y1f3{bottom:329.960700px;}
.yac{bottom:333.013650px;}
.yd2{bottom:334.309050px;}
.y1d1{bottom:335.543700px;}
.y195{bottom:336.333000px;}
.y169{bottom:336.334350px;}
.y120{bottom:336.414600px;}
.yf9{bottom:341.175000px;}
.y240{bottom:341.978700px;}
.y5c{bottom:342.279150px;}
.y2a3{bottom:342.637350px;}
.y2e{bottom:345.431400px;}
.y3b{bottom:345.471900px;}
.y144{bottom:345.950400px;}
.y1b0{bottom:346.729350px;}
.y21b{bottom:346.793100px;}
.y268{bottom:350.330250px;}
.y1f2{bottom:350.741700px;}
.y281{bottom:354.686550px;}
.yd1{bottom:355.099050px;}
.y1d0{bottom:356.333700px;}
.y194{bottom:357.123000px;}
.y168{bottom:357.124350px;}
.y11f{bottom:357.204600px;}
.y2d{bottom:361.415400px;}
.y3a{bottom:361.455900px;}
.yf8{bottom:361.965000px;}
.y23f{bottom:362.768700px;}
.y5b{bottom:363.069150px;}
.yab{bottom:364.198650px;}
.y143{bottom:366.740400px;}
.y1af{bottom:367.519350px;}
.y21a{bottom:367.583100px;}
.y267{bottom:371.120250px;}
.y1f1{bottom:371.531700px;}
.y2a2{bottom:374.779350px;}
.y280{bottom:375.476550px;}
.yd0{bottom:375.889050px;}
.y1cf{bottom:377.123700px;}
.y2c{bottom:377.399400px;}
.y39{bottom:377.439900px;}
.y193{bottom:377.913000px;}
.y167{bottom:377.914350px;}
.y23e{bottom:383.558700px;}
.y5a{bottom:383.859150px;}
.yaa{bottom:384.988650px;}
.y142{bottom:387.530400px;}
.y1ae{bottom:388.309350px;}
.y219{bottom:388.373100px;}
.y11e{bottom:388.389600px;}
.y84{bottom:390.586950px;}
.y1f0{bottom:392.321700px;}
.y2b{bottom:393.383400px;}
.y38{bottom:393.423900px;}
.y2a1{bottom:396.526350px;}
.ycf{bottom:396.679050px;}
.y1ce{bottom:397.913700px;}
.y192{bottom:398.703000px;}
.y166{bottom:398.704350px;}
.y266{bottom:402.305250px;}
.yf7{bottom:403.542900px;}
.y23d{bottom:404.348700px;}
.y59{bottom:404.649150px;}
.ya9{bottom:405.778650px;}
.y27f{bottom:406.166550px;}
.y141{bottom:408.320400px;}
.y2af{bottom:409.098000px;}
.y1ad{bottom:409.099350px;}
.y218{bottom:409.163100px;}
.y11d{bottom:409.179600px;}
.y2a{bottom:409.367400px;}
.y37{bottom:409.407900px;}
.y83{bottom:411.376950px;}
.y1ef{bottom:413.071650px;}
.y1cd{bottom:418.703700px;}
.y191{bottom:419.493000px;}
.y165{bottom:419.494350px;}
.yf6{bottom:421.137900px;}
.y265{bottom:423.095250px;}
.y23c{bottom:425.138700px;}
.y36{bottom:425.391900px;}
.y58{bottom:425.439150px;}
.ya8{bottom:426.568650px;}
.yce{bottom:427.864050px;}
.y2a0{bottom:428.668350px;}
.y140{bottom:429.110400px;}
.y2ae{bottom:429.888000px;}
.y1ac{bottom:429.889350px;}
.y217{bottom:429.953100px;}
.y11c{bottom:429.969600px;}
.y82{bottom:432.166950px;}
.y29{bottom:433.343400px;}
.y1ee{bottom:433.861650px;}
.y27e{bottom:436.856550px;}
.yf5{bottom:438.732900px;}
.y1cc{bottom:439.493700px;}
.y190{bottom:440.283000px;}
.y164{bottom:440.284350px;}
.y35{bottom:441.375900px;}
.y264{bottom:443.885250px;}
.y23b{bottom:445.928700px;}
.ya7{bottom:447.358650px;}
.ycd{bottom:448.654050px;}
.y13f{bottom:449.900400px;}
.y29f{bottom:450.415350px;}
.y1ab{bottom:450.679350px;}
.y216{bottom:450.743100px;}
.y11b{bottom:450.759600px;}
.y81{bottom:452.956950px;}
.y34{bottom:457.359900px;}
.y1cb{bottom:460.283700px;}
.y18f{bottom:461.073000px;}
.y163{bottom:461.074350px;}
.y263{bottom:464.675250px;}
.y1ed{bottom:465.046650px;}
.y27d{bottom:467.546550px;}
.ya6{bottom:468.148650px;}
.ycc{bottom:469.444050px;}
.y13e{bottom:470.690400px;}
.y57{bottom:471.501900px;}
.y215{bottom:471.533100px;}
.y11a{bottom:471.549600px;}
.y33{bottom:473.343900px;}
.y80{bottom:473.746950px;}
.yf4{bottom:477.082200px;}
.y23a{bottom:477.113700px;}
.y1ca{bottom:481.073700px;}
.y22d{bottom:481.863000px;}
.y162{bottom:481.864350px;}
.y29e{bottom:482.557350px;}
.y262{bottom:485.465250px;}
.y1ec{bottom:485.836650px;}
.ya5{bottom:488.938650px;}
.y32{bottom:489.327900px;}
.ycb{bottom:490.234050px;}
.y13d{bottom:491.480400px;}
.y18e{bottom:492.258000px;}
.y214{bottom:492.323100px;}
.y119{bottom:492.339600px;}
.y7f{bottom:494.536950px;}
.yf3{bottom:497.872200px;}
.y239{bottom:497.903700px;}
.y27c{bottom:498.236550px;}
.y1c9{bottom:501.863700px;}
.y22c{bottom:502.653000px;}
.y1aa{bottom:502.654350px;}
.y31{bottom:505.311900px;}
.y261{bottom:506.255250px;}
.y1eb{bottom:506.626650px;}
.ya4{bottom:509.728650px;}
.y13c{bottom:512.270400px;}
.y18d{bottom:513.048000px;}
.y161{bottom:513.049350px;}
.y213{bottom:513.113100px;}
.y118{bottom:513.129600px;}
.y29d{bottom:514.699350px;}
.y7e{bottom:515.326950px;}
.yf2{bottom:518.662200px;}
.y30{bottom:521.295900px;}
.y1c8{bottom:522.653700px;}
.y22b{bottom:523.443000px;}
.y1a9{bottom:523.444350px;}
.y260{bottom:527.045250px;}
.y1ea{bottom:527.416650px;}
.y27b{bottom:528.926550px;}
.y18c{bottom:533.838000px;}
.y160{bottom:533.839350px;}
.y212{bottom:533.903100px;}
.y117{bottom:533.913600px;}
.y7d{bottom:536.116950px;}
.yca{bottom:536.296950px;}
.y2f{bottom:537.279900px;}
.y56{bottom:537.502050px;}
.yf1{bottom:539.452200px;}
.y238{bottom:539.484600px;}
.y1c7{bottom:543.443700px;}
.y22a{bottom:544.233000px;}
.y1a8{bottom:544.234350px;}
.y29c{bottom:546.841350px;}
.y25f{bottom:547.835250px;}
.y1e9{bottom:548.206650px;}
.y27a{bottom:549.716550px;}
.y18b{bottom:554.628000px;}
.y15f{bottom:554.629350px;}
.y211{bottom:554.693100px;}
.y116{bottom:554.703600px;}
.ya3{bottom:555.791550px;}
.y7c{bottom:556.906950px;}
.y237{bottom:557.079600px;}
.y55{bottom:558.292050px;}
.y13b{bottom:558.336300px;}
.yf0{bottom:560.242200px;}
.y1c6{bottom:564.233700px;}
.y229{bottom:565.023000px;}
.y1a7{bottom:565.024350px;}
.y25e{bottom:568.625250px;}
.y1e8{bottom:568.996650px;}
.y236{bottom:574.674600px;}
.y18a{bottom:575.418000px;}
.y115{bottom:575.419350px;}
.y210{bottom:575.483100px;}
.y19{bottom:578.009400px;}
.y28{bottom:578.049900px;}
.y29b{bottom:578.983350px;}
.y54{bottom:579.082050px;}
.y279{bottom:580.406550px;}
.yef{bottom:581.032200px;}
.y13a{bottom:583.920300px;}
.y1a6{bottom:585.814350px;}
.y7b{bottom:588.091950px;}
.y25d{bottom:589.415250px;}
.y1e7{bottom:589.786650px;}
.y235{bottom:592.269600px;}
.y18{bottom:593.993400px;}
.y27{bottom:594.033900px;}
.y1c5{bottom:595.400700px;}
.y189{bottom:596.208000px;}
.y114{bottom:596.209350px;}
.y20f{bottom:596.273100px;}
.y53{bottom:599.872050px;}
.yee{bottom:601.822200px;}
.y1a5{bottom:606.604350px;}
.y7a{bottom:608.881950px;}
.y234{bottom:609.864600px;}
.y17{bottom:609.977400px;}
.y26{bottom:610.017900px;}
.y25c{bottom:610.205250px;}
.y1e6{bottom:610.576650px;}
.y278{bottom:611.096550px;}
.y29a{bottom:611.125350px;}
.y1c4{bottom:616.190700px;}
.y188{bottom:616.998000px;}
.y113{bottom:616.999350px;}
.y20e{bottom:617.063100px;}
.y52{bottom:620.643000px;}
.yc9{bottom:621.380400px;}
.ya2{bottom:621.797550px;}
.yed{bottom:622.612200px;}
.y16{bottom:625.961400px;}
.y25{bottom:626.001900px;}
.y2ad{bottom:627.393000px;}
.y1a4{bottom:627.394350px;}
.y79{bottom:629.671950px;}
.y1e5{bottom:631.366650px;}
.y277{bottom:631.886550px;}
.y299{bottom:632.872350px;}
.y1c3{bottom:636.980700px;}
.y187{bottom:637.788000px;}
.y112{bottom:637.789350px;}
.y25b{bottom:641.390250px;}
.y51{bottom:641.433000px;}
.y15{bottom:641.945400px;}
.y24{bottom:641.985900px;}
.yc8{bottom:642.170400px;}
.ya1{bottom:642.587550px;}
.y233{bottom:648.183000px;}
.y15e{bottom:648.184350px;}
.y20d{bottom:648.203850px;}
.y78{bottom:650.461950px;}
.y1e4{bottom:652.156650px;}
.yec{bottom:653.797200px;}
.y1c2{bottom:657.770700px;}
.y23{bottom:657.969900px;}
.y186{bottom:658.578000px;}
.y111{bottom:658.579350px;}
.y25a{bottom:662.180250px;}
.y50{bottom:662.223000px;}
.yc7{bottom:662.960400px;}
.ya0{bottom:663.377550px;}
.y298{bottom:665.014350px;}
.y14{bottom:665.921400px;}
.y232{bottom:668.973000px;}
.y15d{bottom:668.974350px;}
.y139{bottom:668.976000px;}
.y20c{bottom:668.993850px;}
.y77{bottom:671.251950px;}
.y1e3{bottom:672.946650px;}
.y22{bottom:673.953900px;}
.yeb{bottom:674.587200px;}
.y276{bottom:677.462400px;}
.y1c1{bottom:678.560700px;}
.y185{bottom:679.368000px;}
.y110{bottom:679.369350px;}
.y259{bottom:682.970250px;}
.y4f{bottom:683.013000px;}
.yc6{bottom:683.750400px;}
.y231{bottom:689.763000px;}
.y15c{bottom:689.764350px;}
.y138{bottom:689.766000px;}
.y20b{bottom:689.783850px;}
.y21{bottom:689.937900px;}
.y76{bottom:692.041950px;}
.y1e2{bottom:693.736650px;}
.yea{bottom:695.377200px;}
.y297{bottom:697.156350px;}
.y1c0{bottom:699.350700px;}
.y184{bottom:700.158000px;}
.y10f{bottom:700.159350px;}
.y258{bottom:703.760250px;}
.y4e{bottom:703.803000px;}
.yc5{bottom:704.540400px;}
.y9f{bottom:704.962950px;}
.y20{bottom:705.921900px;}
.y230{bottom:710.553000px;}
.y15b{bottom:710.554350px;}
.y137{bottom:710.556000px;}
.y20a{bottom:710.573850px;}
.y75{bottom:712.831950px;}
.ye9{bottom:716.167200px;}
.y1bf{bottom:720.127650px;}
.y228{bottom:720.948000px;}
.y10e{bottom:720.949350px;}
.y1f{bottom:721.905900px;}
.y9e{bottom:722.557950px;}
.y257{bottom:724.550250px;}
.y4d{bottom:724.593000px;}
.y296{bottom:729.298350px;}
.y183{bottom:731.343000px;}
.y15a{bottom:731.344350px;}
.y136{bottom:731.346000px;}
.y209{bottom:731.363850px;}
.y74{bottom:733.621950px;}
.y1e1{bottom:735.326550px;}
.yc4{bottom:735.725400px;}
.y1e{bottom:737.889900px;}
.y9d{bottom:740.152950px;}
.y227{bottom:741.738000px;}
.y1a3{bottom:741.739350px;}
.y1be{bottom:751.312650px;}
.y182{bottom:752.133000px;}
.y10d{bottom:752.134350px;}
.y135{bottom:752.136000px;}
.y208{bottom:752.153850px;}
.y1e0{bottom:752.921550px;}
.y1d{bottom:753.873900px;}
.y73{bottom:754.411950px;}
.y256{bottom:755.735250px;}
.y4c{bottom:755.744100px;}
.yc3{bottom:756.515400px;}
.y9c{bottom:757.747950px;}
.ye8{bottom:757.748100px;}
.y295{bottom:761.440350px;}
.y226{bottom:762.528000px;}
.y1a2{bottom:762.529350px;}
.y1c{bottom:769.857900px;}
.y1df{bottom:770.516550px;}
.y1bd{bottom:772.102650px;}
.y181{bottom:772.923000px;}
.y10c{bottom:772.924350px;}
.y134{bottom:772.926000px;}
.y207{bottom:772.943850px;}
.y72{bottom:775.201950px;}
.y9b{bottom:775.342950px;}
.ye7{bottom:775.343100px;}
.y255{bottom:776.525250px;}
.y4b{bottom:776.534100px;}
.yc2{bottom:777.305400px;}
.y225{bottom:783.318000px;}
.y1a1{bottom:783.319350px;}
.y1b{bottom:785.841900px;}
.y1de{bottom:788.111550px;}
.y1bc{bottom:792.892650px;}
.y9a{bottom:792.937950px;}
.ye6{bottom:792.938100px;}
.y294{bottom:793.582350px;}
.y180{bottom:793.713000px;}
.y10b{bottom:793.714350px;}
.y133{bottom:793.716000px;}
.y206{bottom:793.733850px;}
.y254{bottom:797.315250px;}
.y4a{bottom:797.324100px;}
.yc1{bottom:798.095400px;}
.y1a{bottom:801.825900px;}
.y224{bottom:804.108000px;}
.y1a0{bottom:804.109350px;}
.y1dd{bottom:805.706550px;}
.y71{bottom:806.386950px;}
.y99{bottom:810.532950px;}
.ye5{bottom:810.533100px;}
.y1bb{bottom:813.682650px;}
.y17f{bottom:814.503000px;}
.y10a{bottom:814.504350px;}
.y205{bottom:814.523850px;}
.y253{bottom:818.105250px;}
.y49{bottom:818.114100px;}
.yc0{bottom:818.885400px;}
.y1dc{bottom:823.301550px;}
.y223{bottom:824.898000px;}
.y19f{bottom:824.899350px;}
.y132{bottom:824.901000px;}
.y293{bottom:825.724350px;}
.y70{bottom:827.176950px;}
.y98{bottom:828.127950px;}
.ye4{bottom:828.128100px;}
.y2ac{bottom:835.293000px;}
.y109{bottom:835.294350px;}
.y204{bottom:835.313850px;}
.y252{bottom:838.895250px;}
.y48{bottom:838.904100px;}
.ybf{bottom:839.646450px;}
.y1db{bottom:840.896550px;}
.y17e{bottom:845.688000px;}
.y159{bottom:845.689350px;}
.y131{bottom:845.691000px;}
.y6f{bottom:847.966950px;}
.y108{bottom:856.084350px;}
.y292{bottom:857.866350px;}
.y1da{bottom:858.491550px;}
.y251{bottom:859.685250px;}
.y47{bottom:859.694100px;}
.y1ba{bottom:859.748400px;}
.ye3{bottom:866.477850px;}
.y17d{bottom:866.478000px;}
.y158{bottom:866.479350px;}
.y130{bottom:866.481000px;}
.y203{bottom:866.498850px;}
.y97{bottom:866.507550px;}
.y6e{bottom:868.756950px;}
.ybe{bottom:870.831450px;}
.y1d9{bottom:876.086550px;}
.y107{bottom:876.874350px;}
.y291{bottom:879.613350px;}
.y250{bottom:880.475250px;}
.y46{bottom:880.484100px;}
.y1b9{bottom:885.332400px;}
.ye2{bottom:887.267850px;}
.y17c{bottom:887.268000px;}
.y157{bottom:887.269350px;}
.y12f{bottom:887.271000px;}
.y202{bottom:887.288850px;}
.y6d{bottom:889.546950px;}
.ybd{bottom:891.621450px;}
.y1d8{bottom:893.681550px;}
.y96{bottom:897.662850px;}
.y2ab{bottom:897.663000px;}
.y106{bottom:897.664350px;}
.y13{bottom:897.921450px;}
.y24f{bottom:901.265250px;}
.ye1{bottom:908.057850px;}
.y17b{bottom:908.058000px;}
.y156{bottom:908.059350px;}
.y12e{bottom:908.061000px;}
.y201{bottom:908.078850px;}
.y6c{bottom:910.336950px;}
.y1d7{bottom:911.276550px;}
.y45{bottom:911.669100px;}
.y290{bottom:911.755350px;}
.ybc{bottom:912.411450px;}
.y95{bottom:918.452850px;}
.y105{bottom:918.454350px;}
.y12{bottom:918.699150px;}
.ye0{bottom:928.847850px;}
.y17a{bottom:928.848000px;}
.y155{bottom:928.849350px;}
.y12d{bottom:928.851000px;}
.y200{bottom:928.868850px;}
.y6b{bottom:931.126950px;}
.y24e{bottom:932.450250px;}
.y44{bottom:932.459100px;}
.ybb{bottom:933.201450px;}
.y94{bottom:939.242850px;}
.y22f{bottom:939.243000px;}
.y104{bottom:939.244350px;}
.y28f{bottom:943.897350px;}
.ydf{bottom:949.637850px;}
.y179{bottom:949.638000px;}
.y154{bottom:949.639350px;}
.y12c{bottom:949.641000px;}
.y24d{bottom:953.240250px;}
.y43{bottom:953.249100px;}
.yba{bottom:953.991450px;}
.y93{bottom:960.032850px;}
.y1ff{bottom:960.033000px;}
.y103{bottom:960.034350px;}
.y11{bottom:963.093150px;}
.y28e{bottom:965.644350px;}
.yde{bottom:970.427850px;}
.y178{bottom:970.428000px;}
.y153{bottom:970.429350px;}
.y12b{bottom:970.431000px;}
.y24c{bottom:974.030250px;}
.y42{bottom:974.039100px;}
.y6a{bottom:977.189700px;}
.y92{bottom:980.822850px;}
.y1fe{bottom:980.823000px;}
.y102{bottom:980.824350px;}
.yb9{bottom:985.176450px;}
.y10{bottom:988.293150px;}
.ydd{bottom:991.217850px;}
.y177{bottom:991.218000px;}
.y152{bottom:991.219350px;}
.y41{bottom:994.820100px;}
.y24b{bottom:994.820250px;}
.y28d{bottom:997.786350px;}
.y91{bottom:1001.612850px;}
.y1fd{bottom:1001.613000px;}
.y101{bottom:1001.614350px;}
.y12a{bottom:1001.616000px;}
.yb8{bottom:1005.966450px;}
.ydc{bottom:1012.007850px;}
.y275{bottom:1012.008000px;}
.y151{bottom:1012.009350px;}
.y40{bottom:1015.610100px;}
.y24a{bottom:1015.610250px;}
.y28c{bottom:1019.533350px;}
.y90{bottom:1022.402850px;}
.y176{bottom:1022.403000px;}
.y100{bottom:1022.404350px;}
.y129{bottom:1022.406000px;}
.yb7{bottom:1026.756450px;}
.yf{bottom:1032.678000px;}
.ydb{bottom:1032.797850px;}
.y274{bottom:1032.798000px;}
.y150{bottom:1032.799350px;}
.y3f{bottom:1036.400100px;}
.y249{bottom:1036.400250px;}
.y8f{bottom:1043.192850px;}
.y175{bottom:1043.193000px;}
.y69{bottom:1043.194350px;}
.y128{bottom:1043.196000px;}
.yb6{bottom:1047.546450px;}
.y28b{bottom:1051.675350px;}
.yda{bottom:1053.587850px;}
.y273{bottom:1053.588000px;}
.y14f{bottom:1053.589350px;}
.y3e{bottom:1057.190100px;}
.y248{bottom:1057.190250px;}
.y8e{bottom:1063.982850px;}
.y174{bottom:1063.983000px;}
.y68{bottom:1063.984350px;}
.y127{bottom:1063.986000px;}
.ye{bottom:1065.078000px;}
.y28a{bottom:1073.422350px;}
.y8d{bottom:1084.772850px;}
.y173{bottom:1084.773000px;}
.y67{bottom:1084.774350px;}
.yb5{bottom:1089.122850px;}
.yd{bottom:1097.478000px;}
.y3d{bottom:1103.253000px;}
.y8c{bottom:1105.562850px;}
.y172{bottom:1105.563000px;}
.y66{bottom:1105.564350px;}
.yb4{bottom:1106.717850px;}
.yc{bottom:1156.356450px;}
.y3c{bottom:1172.229900px;}
.yb{bottom:1193.880450px;}
.ya{bottom:1207.380450px;}
.h12{height:34.668000px;}
.h4{height:35.328000px;}
.h3{height:35.664000px;}
.h2{height:45.342773px;}
.hb{height:48.042000px;}
.ha{height:50.868000px;}
.h9{height:50.976000px;}
.h8{height:56.520000px;}
.hd{height:62.172000px;}
.h13{height:62.184000px;}
.h1b{height:62.184600px;}
.h19{height:62.196000px;}
.he{height:62.208000px;}
.h1e{height:62.224200px;}
.h17{height:62.232000px;}
.h1f{height:62.244000px;}
.h10{height:62.248200px;}
.h20{height:62.255400px;}
.h15{height:62.287800px;}
.h14{height:62.290800px;}
.hf{height:62.307600px;}
.h16{height:62.324400px;}
.h1a{height:62.332200px;}
.h21{height:62.349000px;}
.h18{height:62.469000px;}
.h1c{height:62.662200px;}
.h1d{height:62.671200px;}
.h6{height:64.512000px;}
.h11{height:67.968000px;}
.hc{height:73.632000px;}
.h7{height:79.128000px;}
.h5{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x11{left:86.972550px;}
.xd{left:93.730800px;}
.x10{left:106.300350px;}
.x12{left:108.241650px;}
.x2{left:110.551350px;}
.x15{left:127.568850px;}
.x16{left:136.057350px;}
.x17{left:137.990550px;}
.x8{left:142.302300px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.x13{left:153.070800px;}
.x14{left:155.011950px;}
.x9{left:239.643000px;}
.xe{left:242.554800px;}
.xa{left:303.840000px;}
.x7{left:329.840250px;}
.x6{left:555.360900px;}
.xc{left:598.491450px;}
.xb{left:655.170000px;}
.xf{left:720.001950px;}
.x5{left:733.915650px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.314667pt;}
.v1{vertical-align:17.631467pt;}
.ls24{letter-spacing:-0.880000pt;}
.ls36{letter-spacing:-0.293333pt;}
.ls3a{letter-spacing:-0.176000pt;}
.ls37{letter-spacing:-0.058667pt;}
.lsd{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.024000pt;}
.ls15{letter-spacing:0.029333pt;}
.ls33{letter-spacing:0.048000pt;}
.ls23{letter-spacing:0.053333pt;}
.ls17{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.072000pt;}
.ls8{letter-spacing:0.096000pt;}
.ls3e{letter-spacing:0.106667pt;}
.ls3d{letter-spacing:0.114400pt;}
.ls18{letter-spacing:0.117333pt;}
.ls2{letter-spacing:0.144000pt;}
.ls1c{letter-spacing:0.144533pt;}
.ls30{letter-spacing:0.145200pt;}
.ls2f{letter-spacing:0.146667pt;}
.lsc{letter-spacing:0.168000pt;}
.ls29{letter-spacing:0.176000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.205333pt;}
.ls22{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.234667pt;}
.ls9{letter-spacing:0.240000pt;}
.ls3f{letter-spacing:0.264000pt;}
.ls20{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.293333pt;}
.ls21{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.322667pt;}
.ls3c{letter-spacing:0.352000pt;}
.ls2e{letter-spacing:0.380800pt;}
.ls32{letter-spacing:0.381333pt;}
.ls39{letter-spacing:0.410667pt;}
.lsa{letter-spacing:0.432000pt;}
.ls35{letter-spacing:0.440000pt;}
.ls1{letter-spacing:0.456000pt;}
.lsf{letter-spacing:0.469333pt;}
.ls28{letter-spacing:0.528000pt;}
.ls1d{letter-spacing:0.576000pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls31{letter-spacing:0.645333pt;}
.ls11{letter-spacing:0.674667pt;}
.ls2c{letter-spacing:0.704000pt;}
.ls2b{letter-spacing:0.762667pt;}
.ls2d{letter-spacing:0.821333pt;}
.ls44{letter-spacing:0.880000pt;}
.ls41{letter-spacing:0.938667pt;}
.ls34{letter-spacing:0.997333pt;}
.ls5{letter-spacing:1.008000pt;}
.ls40{letter-spacing:1.056000pt;}
.ls42{letter-spacing:1.114667pt;}
.ls45{letter-spacing:1.120000pt;}
.ls25{letter-spacing:1.144000pt;}
.ls19{letter-spacing:1.349333pt;}
.ls46{letter-spacing:1.437333pt;}
.ls7{letter-spacing:1.440000pt;}
.ls26{letter-spacing:1.466667pt;}
.ls27{letter-spacing:1.474000pt;}
.ls1f{letter-spacing:1.642667pt;}
.ls3{letter-spacing:5.472000pt;}
.ls4{letter-spacing:5.520000pt;}
.ls6{letter-spacing:5.664000pt;}
.ls16{letter-spacing:6.042667pt;}
.ls43{letter-spacing:30.144000pt;}
.ls3b{letter-spacing:1851.085333pt;}
.ls38{letter-spacing:1861.688000pt;}
.ls14{letter-spacing:1880.418667pt;}
.lse{letter-spacing:1891.021333pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws16{word-spacing:-14.666667pt;}
.ws5a{word-spacing:-13.024000pt;}
.ws5b{word-spacing:-12.906667pt;}
.wsb4{word-spacing:-12.760000pt;}
.ws90{word-spacing:-12.730667pt;}
.ws42{word-spacing:-12.320000pt;}
.ws2f{word-spacing:-11.333333pt;}
.wsab{word-spacing:-8.389333pt;}
.ws96{word-spacing:-8.122400pt;}
.ws17{word-spacing:-8.008000pt;}
.ws18{word-spacing:-6.552000pt;}
.ws52{word-spacing:-1.518000pt;}
.wsc0{word-spacing:-1.466667pt;}
.wsb5{word-spacing:-0.938667pt;}
.wsad{word-spacing:-0.821333pt;}
.wsbb{word-spacing:-0.762667pt;}
.ws66{word-spacing:-0.704000pt;}
.ws68{word-spacing:-0.586667pt;}
.ws41{word-spacing:-0.576000pt;}
.wsf{word-spacing:-0.432000pt;}
.ws91{word-spacing:-0.410667pt;}
.wsa0{word-spacing:-0.320000pt;}
.ws28{word-spacing:-0.293333pt;}
.ws8d{word-spacing:-0.234667pt;}
.ws6e{word-spacing:-0.189200pt;}
.ws79{word-spacing:-0.176000pt;}
.ws60{word-spacing:-0.117333pt;}
.ws38{word-spacing:-0.058667pt;}
.ws9c{word-spacing:-0.044000pt;}
.ws9f{word-spacing:-0.036000pt;}
.ws2{word-spacing:0.000000pt;}
.ws9b{word-spacing:0.048000pt;}
.ws24{word-spacing:0.058667pt;}
.wsaf{word-spacing:0.117333pt;}
.wsba{word-spacing:0.176000pt;}
.ws2d{word-spacing:0.192000pt;}
.ws6c{word-spacing:0.234667pt;}
.ws88{word-spacing:0.293333pt;}
.ws84{word-spacing:0.336000pt;}
.ws2a{word-spacing:0.352000pt;}
.wsbc{word-spacing:0.410667pt;}
.wsa3{word-spacing:0.426667pt;}
.ws8f{word-spacing:0.432000pt;}
.ws4b{word-spacing:0.469333pt;}
.ws9{word-spacing:0.528000pt;}
.ws6b{word-spacing:0.533333pt;}
.ws92{word-spacing:0.586667pt;}
.ws2e{word-spacing:0.624000pt;}
.wsbe{word-spacing:0.645333pt;}
.ws7d{word-spacing:0.672000pt;}
.ws70{word-spacing:0.704000pt;}
.ws4{word-spacing:0.725333pt;}
.ws99{word-spacing:0.762667pt;}
.ws10{word-spacing:0.816000pt;}
.ws45{word-spacing:0.821333pt;}
.ws7b{word-spacing:0.880000pt;}
.ws77{word-spacing:0.938667pt;}
.ws85{word-spacing:0.960000pt;}
.ws37{word-spacing:0.997333pt;}
.ws20{word-spacing:1.056000pt;}
.wsaa{word-spacing:1.104000pt;}
.ws31{word-spacing:1.114667pt;}
.ws8a{word-spacing:1.173333pt;}
.wsa9{word-spacing:1.200000pt;}
.ws5c{word-spacing:1.232000pt;}
.ws7{word-spacing:1.248000pt;}
.ws27{word-spacing:1.290667pt;}
.ws26{word-spacing:1.349333pt;}
.ws30{word-spacing:1.408000pt;}
.wsb{word-spacing:1.440000pt;}
.ws25{word-spacing:1.466667pt;}
.ws3c{word-spacing:1.525333pt;}
.ws15{word-spacing:1.536000pt;}
.wsb7{word-spacing:1.546667pt;}
.ws44{word-spacing:1.584000pt;}
.ws9d{word-spacing:1.642667pt;}
.ws1f{word-spacing:1.701333pt;}
.ws4c{word-spacing:1.760000pt;}
.wsd{word-spacing:1.776000pt;}
.ws3{word-spacing:1.792000pt;}
.ws35{word-spacing:1.818667pt;}
.wsb0{word-spacing:1.824000pt;}
.ws7c{word-spacing:1.872000pt;}
.ws4e{word-spacing:1.877333pt;}
.ws53{word-spacing:1.920000pt;}
.ws58{word-spacing:1.936000pt;}
.ws98{word-spacing:1.994667pt;}
.ws21{word-spacing:2.053333pt;}
.ws6d{word-spacing:2.064000pt;}
.ws3d{word-spacing:2.112000pt;}
.wsa1{word-spacing:2.133333pt;}
.ws8e{word-spacing:2.160000pt;}
.ws40{word-spacing:2.170667pt;}
.wsa7{word-spacing:2.208000pt;}
.ws69{word-spacing:2.229333pt;}
.ws72{word-spacing:2.288000pt;}
.ws3a{word-spacing:2.346667pt;}
.ws46{word-spacing:2.400000pt;}
.ws9a{word-spacing:2.405333pt;}
.ws94{word-spacing:2.464000pt;}
.ws11{word-spacing:2.496000pt;}
.ws48{word-spacing:2.506667pt;}
.ws76{word-spacing:2.522667pt;}
.ws64{word-spacing:2.560000pt;}
.ws57{word-spacing:2.581333pt;}
.ws12{word-spacing:2.640000pt;}
.wse{word-spacing:2.688000pt;}
.ws2b{word-spacing:2.698667pt;}
.ws49{word-spacing:2.720000pt;}
.ws5f{word-spacing:2.757333pt;}
.ws19{word-spacing:2.816000pt;}
.ws7f{word-spacing:2.874667pt;}
.wsb1{word-spacing:2.880000pt;}
.ws87{word-spacing:2.933333pt;}
.ws7a{word-spacing:2.992000pt;}
.ws63{word-spacing:3.040000pt;}
.ws9e{word-spacing:3.050667pt;}
.ws65{word-spacing:3.093333pt;}
.ws29{word-spacing:3.109333pt;}
.wsa6{word-spacing:3.168000pt;}
.ws71{word-spacing:3.226667pt;}
.ws13{word-spacing:3.264000pt;}
.ws1a{word-spacing:3.344000pt;}
.wsa2{word-spacing:3.360000pt;}
.ws1c{word-spacing:3.402667pt;}
.ws3b{word-spacing:3.461333pt;}
.ws39{word-spacing:3.520000pt;}
.wsb6{word-spacing:3.573333pt;}
.wsac{word-spacing:3.578667pt;}
.ws73{word-spacing:3.637333pt;}
.ws62{word-spacing:3.680000pt;}
.ws34{word-spacing:3.696000pt;}
.ws83{word-spacing:3.744000pt;}
.ws78{word-spacing:3.754667pt;}
.wsa8{word-spacing:3.792000pt;}
.ws3f{word-spacing:3.813333pt;}
.ws2c{word-spacing:3.872000pt;}
.ws1d{word-spacing:3.930667pt;}
.wsa4{word-spacing:3.946667pt;}
.ws67{word-spacing:3.989333pt;}
.wsb8{word-spacing:4.000000pt;}
.ws81{word-spacing:4.048000pt;}
.ws6a{word-spacing:4.053333pt;}
.ws56{word-spacing:4.106667pt;}
.ws80{word-spacing:4.165333pt;}
.ws97{word-spacing:4.224000pt;}
.ws8b{word-spacing:4.282667pt;}
.ws1e{word-spacing:4.341333pt;}
.ws14{word-spacing:4.368000pt;}
.wsae{word-spacing:4.400000pt;}
.ws43{word-spacing:4.458667pt;}
.wsa{word-spacing:4.512000pt;}
.ws54{word-spacing:4.517333pt;}
.ws7e{word-spacing:4.576000pt;}
.ws50{word-spacing:4.586667pt;}
.ws82{word-spacing:4.634667pt;}
.ws23{word-spacing:4.693333pt;}
.wsa5{word-spacing:4.746667pt;}
.wsc{word-spacing:4.752000pt;}
.ws95{word-spacing:4.810667pt;}
.ws6f{word-spacing:4.869333pt;}
.ws4a{word-spacing:4.906667pt;}
.ws1b{word-spacing:4.928000pt;}
.ws51{word-spacing:4.944000pt;}
.ws86{word-spacing:4.986667pt;}
.ws8{word-spacing:5.040000pt;}
.ws8c{word-spacing:5.104000pt;}
.ws4d{word-spacing:5.162667pt;}
.ws4f{word-spacing:5.221333pt;}
.ws36{word-spacing:5.280000pt;}
.wsc1{word-spacing:5.338667pt;}
.ws93{word-spacing:5.397333pt;}
.ws74{word-spacing:5.456000pt;}
.ws5e{word-spacing:5.514667pt;}
.wsb9{word-spacing:5.546667pt;}
.ws59{word-spacing:5.573333pt;}
.ws47{word-spacing:5.600000pt;}
.ws61{word-spacing:5.632000pt;}
.wsb2{word-spacing:5.690667pt;}
.ws75{word-spacing:5.749333pt;}
.wsbd{word-spacing:5.808000pt;}
.ws5d{word-spacing:5.866667pt;}
.ws55{word-spacing:5.925333pt;}
.ws89{word-spacing:5.984000pt;}
.wsb3{word-spacing:6.042667pt;}
.ws33{word-spacing:6.101333pt;}
.ws22{word-spacing:6.160000pt;}
.ws3e{word-spacing:6.394667pt;}
.ws5{word-spacing:9.472000pt;}
.ws6{word-spacing:11.861333pt;}
.ws32{word-spacing:71.872000pt;}
.wsbf{word-spacing:75.296000pt;}
._3{margin-left:-21.333333pt;}
._4{margin-left:-20.175467pt;}
._5{margin-left:-15.680000pt;}
._15{margin-left:-12.320000pt;}
._8{margin-left:-1.414933pt;}
._2{width:1.561600pt;}
._10{width:2.698667pt;}
._f{width:4.928000pt;}
._e{width:6.174933pt;}
._16{width:7.920000pt;}
._6{width:9.024000pt;}
._1{width:9.984000pt;}
._0{width:11.861333pt;}
._12{width:24.959467pt;}
._14{width:26.879467pt;}
._13{width:27.983467pt;}
._11{width:29.471467pt;}
._b{width:42.743467pt;}
._d{width:45.792000pt;}
._a{width:47.807467pt;}
._c{width:66.880000pt;}
._9{width:68.160000pt;}
._7{width:75.296000pt;}
.fsc{font-size:31.200000pt;}
.fse{font-size:36.000000pt;}
.fsa{font-size:38.133333pt;}
.fs2{font-size:42.666667pt;}
.fsd{font-size:44.000000pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.yb3{bottom:122.836933pt;}
.yd9{bottom:122.837067pt;}
.y8b{bottom:122.837200pt;}
.y1b8{bottom:122.837333pt;}
.y171{bottom:122.839733pt;}
.y65{bottom:122.842400pt;}
.y14e{bottom:122.855733pt;}
.y2aa{bottom:123.051867pt;}
.y19e{bottom:123.402667pt;}
.y289{bottom:123.436933pt;}
.y9{bottom:124.725733pt;}
.y1fc{bottom:126.434667pt;}
.y272{bottom:126.604667pt;}
.y8{bottom:136.096400pt;}
.y170{bottom:137.047733pt;}
.y64{bottom:137.050400pt;}
.y14d{bottom:137.063733pt;}
.y1fb{bottom:137.064000pt;}
.yb2{bottom:140.644933pt;}
.yd8{bottom:140.645067pt;}
.y8a{bottom:140.645200pt;}
.y1b7{bottom:140.645333pt;}
.y19d{bottom:141.882667pt;}
.y288{bottom:141.916933pt;}
.y271{bottom:145.084667pt;}
.yb1{bottom:151.258133pt;}
.y126{bottom:151.258267pt;}
.y63{bottom:151.258400pt;}
.y222{bottom:151.261333pt;}
.y14c{bottom:151.271733pt;}
.y1fa{bottom:151.272000pt;}
.y2a9{bottom:151.622533pt;}
.y7{bottom:153.128267pt;}
.y16f{bottom:154.855733pt;}
.y19c{bottom:160.362667pt;}
.y270{bottom:163.564667pt;}
.y221{bottom:165.469333pt;}
.y14b{bottom:165.479733pt;}
.y1f9{bottom:165.480000pt;}
.yb0{bottom:169.066133pt;}
.y125{bottom:169.066267pt;}
.y62{bottom:169.066400pt;}
.y287{bottom:169.196933pt;}
.y2b3{bottom:169.602667pt;}
.y6{bottom:170.173600pt;}
.y247{bottom:174.621067pt;}
.y19b{bottom:178.842667pt;}
.y61{bottom:179.679733pt;}
.y14a{bottom:179.687733pt;}
.y1f8{bottom:179.688000pt;}
.y2a8{bottom:180.193200pt;}
.y26f{bottom:182.044667pt;}
.yff{bottom:183.160000pt;}
.y220{bottom:183.277333pt;}
.y5{bottom:187.218933pt;}
.y2b2{bottom:188.082667pt;}
.y89{bottom:192.197467pt;}
.y246{bottom:193.101067pt;}
.y149{bottom:193.895733pt;}
.y1f7{bottom:193.896000pt;}
.yd7{bottom:195.523600pt;}
.y286{bottom:196.476933pt;}
.y1d6{bottom:196.656667pt;}
.y19a{bottom:197.322667pt;}
.y1b6{bottom:197.323867pt;}
.y60{bottom:197.487733pt;}
.y4{bottom:198.589600pt;}
.y26e{bottom:200.524667pt;}
.yfe{bottom:201.640000pt;}
.y16e{bottom:206.563867pt;}
.y148{bottom:208.103733pt;}
.y1f6{bottom:208.104000pt;}
.y2a7{bottom:208.763867pt;}
.y88{bottom:210.677467pt;}
.y245{bottom:211.581067pt;}
.y5f{bottom:211.698400pt;}
.yd6{bottom:214.003600pt;}
.y1d5{bottom:215.136667pt;}
.y3{bottom:215.634933pt;}
.y199{bottom:215.802667pt;}
.y1b5{bottom:215.803867pt;}
.y26d{bottom:219.004667pt;}
.y147{bottom:222.311733pt;}
.y1f5{bottom:222.312000pt;}
.y285{bottom:223.756933pt;}
.y16d{bottom:225.043867pt;}
.y124{bottom:225.115200pt;}
.y2{bottom:227.005600pt;}
.yaf{bottom:227.798400pt;}
.y2a6{bottom:228.094533pt;}
.y87{bottom:229.154800pt;}
.yfd{bottom:229.346667pt;}
.y244{bottom:230.061067pt;}
.y1d4{bottom:233.616667pt;}
.y198{bottom:234.282667pt;}
.y1b4{bottom:234.283867pt;}
.y21f{bottom:234.340533pt;}
.y26c{bottom:237.484667pt;}
.y146{bottom:240.119733pt;}
.y1f4{bottom:240.120000pt;}
.yd5{bottom:241.723600pt;}
.y284{bottom:242.236933pt;}
.yae{bottom:243.438400pt;}
.y16c{bottom:243.523867pt;}
.y123{bottom:243.595200pt;}
.y86{bottom:247.634800pt;}
.yfc{bottom:247.826667pt;}
.y243{bottom:248.541067pt;}
.y197{bottom:252.762667pt;}
.y1b3{bottom:252.763867pt;}
.y21e{bottom:252.820533pt;}
.y26b{bottom:255.964667pt;}
.y2a5{bottom:256.665200pt;}
.yd4{bottom:260.203600pt;}
.y1d3{bottom:261.336667pt;}
.y2b1{bottom:262.002667pt;}
.y16b{bottom:262.003867pt;}
.y122{bottom:262.075200pt;}
.yfb{bottom:266.306667pt;}
.y242{bottom:267.021067pt;}
.y5e{bottom:267.288133pt;}
.y283{bottom:269.516933pt;}
.y22e{bottom:271.242667pt;}
.y1b2{bottom:271.243867pt;}
.y21d{bottom:271.300533pt;}
.y26a{bottom:274.444667pt;}
.y2a4{bottom:275.995867pt;}
.yad{bottom:277.532133pt;}
.yd3{bottom:278.683600pt;}
.y1d2{bottom:279.781067pt;}
.y196{bottom:280.482667pt;}
.y16a{bottom:280.483867pt;}
.y121{bottom:280.555200pt;}
.yfa{bottom:284.786667pt;}
.y241{bottom:285.501067pt;}
.y5d{bottom:285.768133pt;}
.y282{bottom:287.996933pt;}
.y85{bottom:288.579467pt;}
.y145{bottom:289.031467pt;}
.y2b0{bottom:289.722667pt;}
.y1b1{bottom:289.723867pt;}
.y21c{bottom:289.780533pt;}
.y269{bottom:292.924667pt;}
.y1f3{bottom:293.298400pt;}
.yac{bottom:296.012133pt;}
.yd2{bottom:297.163600pt;}
.y1d1{bottom:298.261067pt;}
.y195{bottom:298.962667pt;}
.y169{bottom:298.963867pt;}
.y120{bottom:299.035200pt;}
.yf9{bottom:303.266667pt;}
.y240{bottom:303.981067pt;}
.y5c{bottom:304.248133pt;}
.y2a3{bottom:304.566533pt;}
.y2e{bottom:307.050133pt;}
.y3b{bottom:307.086133pt;}
.y144{bottom:307.511467pt;}
.y1b0{bottom:308.203867pt;}
.y21b{bottom:308.260533pt;}
.y268{bottom:311.404667pt;}
.y1f2{bottom:311.770400pt;}
.y281{bottom:315.276933pt;}
.yd1{bottom:315.643600pt;}
.y1d0{bottom:316.741067pt;}
.y194{bottom:317.442667pt;}
.y168{bottom:317.443867pt;}
.y11f{bottom:317.515200pt;}
.y2d{bottom:321.258133pt;}
.y3a{bottom:321.294133pt;}
.yf8{bottom:321.746667pt;}
.y23f{bottom:322.461067pt;}
.y5b{bottom:322.728133pt;}
.yab{bottom:323.732133pt;}
.y143{bottom:325.991467pt;}
.y1af{bottom:326.683867pt;}
.y21a{bottom:326.740533pt;}
.y267{bottom:329.884667pt;}
.y1f1{bottom:330.250400pt;}
.y2a2{bottom:333.137200pt;}
.y280{bottom:333.756933pt;}
.yd0{bottom:334.123600pt;}
.y1cf{bottom:335.221067pt;}
.y2c{bottom:335.466133pt;}
.y39{bottom:335.502133pt;}
.y193{bottom:335.922667pt;}
.y167{bottom:335.923867pt;}
.y23e{bottom:340.941067pt;}
.y5a{bottom:341.208133pt;}
.yaa{bottom:342.212133pt;}
.y142{bottom:344.471467pt;}
.y1ae{bottom:345.163867pt;}
.y219{bottom:345.220533pt;}
.y11e{bottom:345.235200pt;}
.y84{bottom:347.188400pt;}
.y1f0{bottom:348.730400pt;}
.y2b{bottom:349.674133pt;}
.y38{bottom:349.710133pt;}
.y2a1{bottom:352.467867pt;}
.ycf{bottom:352.603600pt;}
.y1ce{bottom:353.701067pt;}
.y192{bottom:354.402667pt;}
.y166{bottom:354.403867pt;}
.y266{bottom:357.604667pt;}
.yf7{bottom:358.704800pt;}
.y23d{bottom:359.421067pt;}
.y59{bottom:359.688133pt;}
.ya9{bottom:360.692133pt;}
.y27f{bottom:361.036933pt;}
.y141{bottom:362.951467pt;}
.y2af{bottom:363.642667pt;}
.y1ad{bottom:363.643867pt;}
.y218{bottom:363.700533pt;}
.y11d{bottom:363.715200pt;}
.y2a{bottom:363.882133pt;}
.y37{bottom:363.918133pt;}
.y83{bottom:365.668400pt;}
.y1ef{bottom:367.174800pt;}
.y1cd{bottom:372.181067pt;}
.y191{bottom:372.882667pt;}
.y165{bottom:372.883867pt;}
.yf6{bottom:374.344800pt;}
.y265{bottom:376.084667pt;}
.y23c{bottom:377.901067pt;}
.y36{bottom:378.126133pt;}
.y58{bottom:378.168133pt;}
.ya8{bottom:379.172133pt;}
.yce{bottom:380.323600pt;}
.y2a0{bottom:381.038533pt;}
.y140{bottom:381.431467pt;}
.y2ae{bottom:382.122667pt;}
.y1ac{bottom:382.123867pt;}
.y217{bottom:382.180533pt;}
.y11c{bottom:382.195200pt;}
.y82{bottom:384.148400pt;}
.y29{bottom:385.194133pt;}
.y1ee{bottom:385.654800pt;}
.y27e{bottom:388.316933pt;}
.yf5{bottom:389.984800pt;}
.y1cc{bottom:390.661067pt;}
.y190{bottom:391.362667pt;}
.y164{bottom:391.363867pt;}
.y35{bottom:392.334133pt;}
.y264{bottom:394.564667pt;}
.y23b{bottom:396.381067pt;}
.ya7{bottom:397.652133pt;}
.ycd{bottom:398.803600pt;}
.y13f{bottom:399.911467pt;}
.y29f{bottom:400.369200pt;}
.y1ab{bottom:400.603867pt;}
.y216{bottom:400.660533pt;}
.y11b{bottom:400.675200pt;}
.y81{bottom:402.628400pt;}
.y34{bottom:406.542133pt;}
.y1cb{bottom:409.141067pt;}
.y18f{bottom:409.842667pt;}
.y163{bottom:409.843867pt;}
.y263{bottom:413.044667pt;}
.y1ed{bottom:413.374800pt;}
.y27d{bottom:415.596933pt;}
.ya6{bottom:416.132133pt;}
.ycc{bottom:417.283600pt;}
.y13e{bottom:418.391467pt;}
.y57{bottom:419.112800pt;}
.y215{bottom:419.140533pt;}
.y11a{bottom:419.155200pt;}
.y33{bottom:420.750133pt;}
.y80{bottom:421.108400pt;}
.yf4{bottom:424.073067pt;}
.y23a{bottom:424.101067pt;}
.y1ca{bottom:427.621067pt;}
.y22d{bottom:428.322667pt;}
.y162{bottom:428.323867pt;}
.y29e{bottom:428.939867pt;}
.y262{bottom:431.524667pt;}
.y1ec{bottom:431.854800pt;}
.ya5{bottom:434.612133pt;}
.y32{bottom:434.958133pt;}
.ycb{bottom:435.763600pt;}
.y13d{bottom:436.871467pt;}
.y18e{bottom:437.562667pt;}
.y214{bottom:437.620533pt;}
.y119{bottom:437.635200pt;}
.y7f{bottom:439.588400pt;}
.yf3{bottom:442.553067pt;}
.y239{bottom:442.581067pt;}
.y27c{bottom:442.876933pt;}
.y1c9{bottom:446.101067pt;}
.y22c{bottom:446.802667pt;}
.y1aa{bottom:446.803867pt;}
.y31{bottom:449.166133pt;}
.y261{bottom:450.004667pt;}
.y1eb{bottom:450.334800pt;}
.ya4{bottom:453.092133pt;}
.y13c{bottom:455.351467pt;}
.y18d{bottom:456.042667pt;}
.y161{bottom:456.043867pt;}
.y213{bottom:456.100533pt;}
.y118{bottom:456.115200pt;}
.y29d{bottom:457.510533pt;}
.y7e{bottom:458.068400pt;}
.yf2{bottom:461.033067pt;}
.y30{bottom:463.374133pt;}
.y1c8{bottom:464.581067pt;}
.y22b{bottom:465.282667pt;}
.y1a9{bottom:465.283867pt;}
.y260{bottom:468.484667pt;}
.y1ea{bottom:468.814800pt;}
.y27b{bottom:470.156933pt;}
.y18c{bottom:474.522667pt;}
.y160{bottom:474.523867pt;}
.y212{bottom:474.580533pt;}
.y117{bottom:474.589867pt;}
.y7d{bottom:476.548400pt;}
.yca{bottom:476.708400pt;}
.y2f{bottom:477.582133pt;}
.y56{bottom:477.779600pt;}
.yf1{bottom:479.513067pt;}
.y238{bottom:479.541867pt;}
.y1c7{bottom:483.061067pt;}
.y22a{bottom:483.762667pt;}
.y1a8{bottom:483.763867pt;}
.y29c{bottom:486.081200pt;}
.y25f{bottom:486.964667pt;}
.y1e9{bottom:487.294800pt;}
.y27a{bottom:488.636933pt;}
.y18b{bottom:493.002667pt;}
.y15f{bottom:493.003867pt;}
.y211{bottom:493.060533pt;}
.y116{bottom:493.069867pt;}
.ya3{bottom:494.036933pt;}
.y7c{bottom:495.028400pt;}
.y237{bottom:495.181867pt;}
.y55{bottom:496.259600pt;}
.y13b{bottom:496.298933pt;}
.yf0{bottom:497.993067pt;}
.y1c6{bottom:501.541067pt;}
.y229{bottom:502.242667pt;}
.y1a7{bottom:502.243867pt;}
.y25e{bottom:505.444667pt;}
.y1e8{bottom:505.774800pt;}
.y236{bottom:510.821867pt;}
.y18a{bottom:511.482667pt;}
.y115{bottom:511.483867pt;}
.y210{bottom:511.540533pt;}
.y19{bottom:513.786133pt;}
.y28{bottom:513.822133pt;}
.y29b{bottom:514.651867pt;}
.y54{bottom:514.739600pt;}
.y279{bottom:515.916933pt;}
.yef{bottom:516.473067pt;}
.y13a{bottom:519.040267pt;}
.y1a6{bottom:520.723867pt;}
.y7b{bottom:522.748400pt;}
.y25d{bottom:523.924667pt;}
.y1e7{bottom:524.254800pt;}
.y235{bottom:526.461867pt;}
.y18{bottom:527.994133pt;}
.y27{bottom:528.030133pt;}
.y1c5{bottom:529.245067pt;}
.y189{bottom:529.962667pt;}
.y114{bottom:529.963867pt;}
.y20f{bottom:530.020533pt;}
.y53{bottom:533.219600pt;}
.yee{bottom:534.953067pt;}
.y1a5{bottom:539.203867pt;}
.y7a{bottom:541.228400pt;}
.y234{bottom:542.101867pt;}
.y17{bottom:542.202133pt;}
.y26{bottom:542.238133pt;}
.y25c{bottom:542.404667pt;}
.y1e6{bottom:542.734800pt;}
.y278{bottom:543.196933pt;}
.y29a{bottom:543.222533pt;}
.y1c4{bottom:547.725067pt;}
.y188{bottom:548.442667pt;}
.y113{bottom:548.443867pt;}
.y20e{bottom:548.500533pt;}
.y52{bottom:551.682667pt;}
.yc9{bottom:552.338133pt;}
.ya2{bottom:552.708933pt;}
.yed{bottom:553.433067pt;}
.y16{bottom:556.410133pt;}
.y25{bottom:556.446133pt;}
.y2ad{bottom:557.682667pt;}
.y1a4{bottom:557.683867pt;}
.y79{bottom:559.708400pt;}
.y1e5{bottom:561.214800pt;}
.y277{bottom:561.676933pt;}
.y299{bottom:562.553200pt;}
.y1c3{bottom:566.205067pt;}
.y187{bottom:566.922667pt;}
.y112{bottom:566.923867pt;}
.y25b{bottom:570.124667pt;}
.y51{bottom:570.162667pt;}
.y15{bottom:570.618133pt;}
.y24{bottom:570.654133pt;}
.yc8{bottom:570.818133pt;}
.ya1{bottom:571.188933pt;}
.y233{bottom:576.162667pt;}
.y15e{bottom:576.163867pt;}
.y20d{bottom:576.181200pt;}
.y78{bottom:578.188400pt;}
.y1e4{bottom:579.694800pt;}
.yec{bottom:581.153067pt;}
.y1c2{bottom:584.685067pt;}
.y23{bottom:584.862133pt;}
.y186{bottom:585.402667pt;}
.y111{bottom:585.403867pt;}
.y25a{bottom:588.604667pt;}
.y50{bottom:588.642667pt;}
.yc7{bottom:589.298133pt;}
.ya0{bottom:589.668933pt;}
.y298{bottom:591.123867pt;}
.y14{bottom:591.930133pt;}
.y232{bottom:594.642667pt;}
.y15d{bottom:594.643867pt;}
.y139{bottom:594.645333pt;}
.y20c{bottom:594.661200pt;}
.y77{bottom:596.668400pt;}
.y1e3{bottom:598.174800pt;}
.y22{bottom:599.070133pt;}
.yeb{bottom:599.633067pt;}
.y276{bottom:602.188800pt;}
.y1c1{bottom:603.165067pt;}
.y185{bottom:603.882667pt;}
.y110{bottom:603.883867pt;}
.y259{bottom:607.084667pt;}
.y4f{bottom:607.122667pt;}
.yc6{bottom:607.778133pt;}
.y231{bottom:613.122667pt;}
.y15c{bottom:613.123867pt;}
.y138{bottom:613.125333pt;}
.y20b{bottom:613.141200pt;}
.y21{bottom:613.278133pt;}
.y76{bottom:615.148400pt;}
.y1e2{bottom:616.654800pt;}
.yea{bottom:618.113067pt;}
.y297{bottom:619.694533pt;}
.y1c0{bottom:621.645067pt;}
.y184{bottom:622.362667pt;}
.y10f{bottom:622.363867pt;}
.y258{bottom:625.564667pt;}
.y4e{bottom:625.602667pt;}
.yc5{bottom:626.258133pt;}
.y9f{bottom:626.633733pt;}
.y20{bottom:627.486133pt;}
.y230{bottom:631.602667pt;}
.y15b{bottom:631.603867pt;}
.y137{bottom:631.605333pt;}
.y20a{bottom:631.621200pt;}
.y75{bottom:633.628400pt;}
.ye9{bottom:636.593067pt;}
.y1bf{bottom:640.113467pt;}
.y228{bottom:640.842667pt;}
.y10e{bottom:640.843867pt;}
.y1f{bottom:641.694133pt;}
.y9e{bottom:642.273733pt;}
.y257{bottom:644.044667pt;}
.y4d{bottom:644.082667pt;}
.y296{bottom:648.265200pt;}
.y183{bottom:650.082667pt;}
.y15a{bottom:650.083867pt;}
.y136{bottom:650.085333pt;}
.y209{bottom:650.101200pt;}
.y74{bottom:652.108400pt;}
.y1e1{bottom:653.623600pt;}
.yc4{bottom:653.978133pt;}
.y1e{bottom:655.902133pt;}
.y9d{bottom:657.913733pt;}
.y227{bottom:659.322667pt;}
.y1a3{bottom:659.323867pt;}
.y1be{bottom:667.833467pt;}
.y182{bottom:668.562667pt;}
.y10d{bottom:668.563867pt;}
.y135{bottom:668.565333pt;}
.y208{bottom:668.581200pt;}
.y1e0{bottom:669.263600pt;}
.y1d{bottom:670.110133pt;}
.y73{bottom:670.588400pt;}
.y256{bottom:671.764667pt;}
.y4c{bottom:671.772533pt;}
.yc3{bottom:672.458133pt;}
.y9c{bottom:673.553733pt;}
.ye8{bottom:673.553867pt;}
.y295{bottom:676.835867pt;}
.y226{bottom:677.802667pt;}
.y1a2{bottom:677.803867pt;}
.y1c{bottom:684.318133pt;}
.y1df{bottom:684.903600pt;}
.y1bd{bottom:686.313467pt;}
.y181{bottom:687.042667pt;}
.y10c{bottom:687.043867pt;}
.y134{bottom:687.045333pt;}
.y207{bottom:687.061200pt;}
.y72{bottom:689.068400pt;}
.y9b{bottom:689.193733pt;}
.ye7{bottom:689.193867pt;}
.y255{bottom:690.244667pt;}
.y4b{bottom:690.252533pt;}
.yc2{bottom:690.938133pt;}
.y225{bottom:696.282667pt;}
.y1a1{bottom:696.283867pt;}
.y1b{bottom:698.526133pt;}
.y1de{bottom:700.543600pt;}
.y1bc{bottom:704.793467pt;}
.y9a{bottom:704.833733pt;}
.ye6{bottom:704.833867pt;}
.y294{bottom:705.406533pt;}
.y180{bottom:705.522667pt;}
.y10b{bottom:705.523867pt;}
.y133{bottom:705.525333pt;}
.y206{bottom:705.541200pt;}
.y254{bottom:708.724667pt;}
.y4a{bottom:708.732533pt;}
.yc1{bottom:709.418133pt;}
.y1a{bottom:712.734133pt;}
.y224{bottom:714.762667pt;}
.y1a0{bottom:714.763867pt;}
.y1dd{bottom:716.183600pt;}
.y71{bottom:716.788400pt;}
.y99{bottom:720.473733pt;}
.ye5{bottom:720.473867pt;}
.y1bb{bottom:723.273467pt;}
.y17f{bottom:724.002667pt;}
.y10a{bottom:724.003867pt;}
.y205{bottom:724.021200pt;}
.y253{bottom:727.204667pt;}
.y49{bottom:727.212533pt;}
.yc0{bottom:727.898133pt;}
.y1dc{bottom:731.823600pt;}
.y223{bottom:733.242667pt;}
.y19f{bottom:733.243867pt;}
.y132{bottom:733.245333pt;}
.y293{bottom:733.977200pt;}
.y70{bottom:735.268400pt;}
.y98{bottom:736.113733pt;}
.ye4{bottom:736.113867pt;}
.y2ac{bottom:742.482667pt;}
.y109{bottom:742.483867pt;}
.y204{bottom:742.501200pt;}
.y252{bottom:745.684667pt;}
.y48{bottom:745.692533pt;}
.ybf{bottom:746.352400pt;}
.y1db{bottom:747.463600pt;}
.y17e{bottom:751.722667pt;}
.y159{bottom:751.723867pt;}
.y131{bottom:751.725333pt;}
.y6f{bottom:753.748400pt;}
.y108{bottom:760.963867pt;}
.y292{bottom:762.547867pt;}
.y1da{bottom:763.103600pt;}
.y251{bottom:764.164667pt;}
.y47{bottom:764.172533pt;}
.y1ba{bottom:764.220800pt;}
.ye3{bottom:770.202533pt;}
.y17d{bottom:770.202667pt;}
.y158{bottom:770.203867pt;}
.y130{bottom:770.205333pt;}
.y203{bottom:770.221200pt;}
.y97{bottom:770.228933pt;}
.y6e{bottom:772.228400pt;}
.ybe{bottom:774.072400pt;}
.y1d9{bottom:778.743600pt;}
.y107{bottom:779.443867pt;}
.y291{bottom:781.878533pt;}
.y250{bottom:782.644667pt;}
.y46{bottom:782.652533pt;}
.y1b9{bottom:786.962133pt;}
.ye2{bottom:788.682533pt;}
.y17c{bottom:788.682667pt;}
.y157{bottom:788.683867pt;}
.y12f{bottom:788.685333pt;}
.y202{bottom:788.701200pt;}
.y6d{bottom:790.708400pt;}
.ybd{bottom:792.552400pt;}
.y1d8{bottom:794.383600pt;}
.y96{bottom:797.922533pt;}
.y2ab{bottom:797.922667pt;}
.y106{bottom:797.923867pt;}
.y13{bottom:798.152400pt;}
.y24f{bottom:801.124667pt;}
.ye1{bottom:807.162533pt;}
.y17b{bottom:807.162667pt;}
.y156{bottom:807.163867pt;}
.y12e{bottom:807.165333pt;}
.y201{bottom:807.181200pt;}
.y6c{bottom:809.188400pt;}
.y1d7{bottom:810.023600pt;}
.y45{bottom:810.372533pt;}
.y290{bottom:810.449200pt;}
.ybc{bottom:811.032400pt;}
.y95{bottom:816.402533pt;}
.y105{bottom:816.403867pt;}
.y12{bottom:816.621467pt;}
.ye0{bottom:825.642533pt;}
.y17a{bottom:825.642667pt;}
.y155{bottom:825.643867pt;}
.y12d{bottom:825.645333pt;}
.y200{bottom:825.661200pt;}
.y6b{bottom:827.668400pt;}
.y24e{bottom:828.844667pt;}
.y44{bottom:828.852533pt;}
.ybb{bottom:829.512400pt;}
.y94{bottom:834.882533pt;}
.y22f{bottom:834.882667pt;}
.y104{bottom:834.883867pt;}
.y28f{bottom:839.019867pt;}
.ydf{bottom:844.122533pt;}
.y179{bottom:844.122667pt;}
.y154{bottom:844.123867pt;}
.y12c{bottom:844.125333pt;}
.y24d{bottom:847.324667pt;}
.y43{bottom:847.332533pt;}
.yba{bottom:847.992400pt;}
.y93{bottom:853.362533pt;}
.y1ff{bottom:853.362667pt;}
.y103{bottom:853.363867pt;}
.y11{bottom:856.082800pt;}
.y28e{bottom:858.350533pt;}
.yde{bottom:862.602533pt;}
.y178{bottom:862.602667pt;}
.y153{bottom:862.603867pt;}
.y12b{bottom:862.605333pt;}
.y24c{bottom:865.804667pt;}
.y42{bottom:865.812533pt;}
.y6a{bottom:868.613067pt;}
.y92{bottom:871.842533pt;}
.y1fe{bottom:871.842667pt;}
.y102{bottom:871.843867pt;}
.yb9{bottom:875.712400pt;}
.y10{bottom:878.482800pt;}
.ydd{bottom:881.082533pt;}
.y177{bottom:881.082667pt;}
.y152{bottom:881.083867pt;}
.y41{bottom:884.284533pt;}
.y24b{bottom:884.284667pt;}
.y28d{bottom:886.921200pt;}
.y91{bottom:890.322533pt;}
.y1fd{bottom:890.322667pt;}
.y101{bottom:890.323867pt;}
.y12a{bottom:890.325333pt;}
.yb8{bottom:894.192400pt;}
.ydc{bottom:899.562533pt;}
.y275{bottom:899.562667pt;}
.y151{bottom:899.563867pt;}
.y40{bottom:902.764533pt;}
.y24a{bottom:902.764667pt;}
.y28c{bottom:906.251867pt;}
.y90{bottom:908.802533pt;}
.y176{bottom:908.802667pt;}
.y100{bottom:908.803867pt;}
.y129{bottom:908.805333pt;}
.yb7{bottom:912.672400pt;}
.yf{bottom:917.936000pt;}
.ydb{bottom:918.042533pt;}
.y274{bottom:918.042667pt;}
.y150{bottom:918.043867pt;}
.y3f{bottom:921.244533pt;}
.y249{bottom:921.244667pt;}
.y8f{bottom:927.282533pt;}
.y175{bottom:927.282667pt;}
.y69{bottom:927.283867pt;}
.y128{bottom:927.285333pt;}
.yb6{bottom:931.152400pt;}
.y28b{bottom:934.822533pt;}
.yda{bottom:936.522533pt;}
.y273{bottom:936.522667pt;}
.y14f{bottom:936.523867pt;}
.y3e{bottom:939.724533pt;}
.y248{bottom:939.724667pt;}
.y8e{bottom:945.762533pt;}
.y174{bottom:945.762667pt;}
.y68{bottom:945.763867pt;}
.y127{bottom:945.765333pt;}
.ye{bottom:946.736000pt;}
.y28a{bottom:954.153200pt;}
.y8d{bottom:964.242533pt;}
.y173{bottom:964.242667pt;}
.y67{bottom:964.243867pt;}
.yb5{bottom:968.109200pt;}
.yd{bottom:975.536000pt;}
.y3d{bottom:980.669333pt;}
.y8c{bottom:982.722533pt;}
.y172{bottom:982.722667pt;}
.y66{bottom:982.723867pt;}
.yb4{bottom:983.749200pt;}
.yc{bottom:1027.872400pt;}
.y3c{bottom:1041.982133pt;}
.yb{bottom:1061.227067pt;}
.ya{bottom:1073.227067pt;}
.h12{height:30.816000pt;}
.h4{height:31.402667pt;}
.h3{height:31.701333pt;}
.h2{height:40.304688pt;}
.hb{height:42.704000pt;}
.ha{height:45.216000pt;}
.h9{height:45.312000pt;}
.h8{height:50.240000pt;}
.hd{height:55.264000pt;}
.h13{height:55.274667pt;}
.h1b{height:55.275200pt;}
.h19{height:55.285333pt;}
.he{height:55.296000pt;}
.h1e{height:55.310400pt;}
.h17{height:55.317333pt;}
.h1f{height:55.328000pt;}
.h10{height:55.331733pt;}
.h20{height:55.338133pt;}
.h15{height:55.366933pt;}
.h14{height:55.369600pt;}
.hf{height:55.384533pt;}
.h16{height:55.399467pt;}
.h1a{height:55.406400pt;}
.h21{height:55.421333pt;}
.h18{height:55.528000pt;}
.h1c{height:55.699733pt;}
.h1d{height:55.707733pt;}
.h6{height:57.344000pt;}
.h11{height:60.416000pt;}
.hc{height:65.450667pt;}
.h7{height:70.336000pt;}
.h5{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x11{left:77.308933pt;}
.xd{left:83.316267pt;}
.x10{left:94.489200pt;}
.x12{left:96.214800pt;}
.x2{left:98.267867pt;}
.x15{left:113.394533pt;}
.x16{left:120.939867pt;}
.x17{left:122.658267pt;}
.x8{left:126.490933pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.x13{left:136.062933pt;}
.x14{left:137.788400pt;}
.x9{left:213.016000pt;}
.xe{left:215.604267pt;}
.xa{left:270.080000pt;}
.x7{left:293.191333pt;}
.x6{left:493.654133pt;}
.xc{left:531.992400pt;}
.xb{left:582.373333pt;}
.xf{left:640.001733pt;}
.x5{left:652.369467pt;}
}




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