
    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_0764b9b784f16336f08c7eb9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0764b9b784f16336f08c7eb9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9cbd633aee981acd5fd34a26.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983000;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_37eeb5280a249184a2b7145e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.105000;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_b11e13c07827b6edc3f9afb1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104000;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_278779ffc51ed6c7422891f4.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_836b10dfedee55702f279334.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_3fd65603b984094afb8553d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104000;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_2724e19a5f0680dedd828a4e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.718000;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_e7a690ec55eff67950955181.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.717000;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_9741e9ba5957a98b588ccc30.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.979000;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_a68e3c1deb6594ce67109162.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_418d1f01b8795df03700675a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9a043cc822fcc92e4a35a338.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.133000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_665709330d713da351ad506d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_dc17286a6a35428ae74845ac.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.295000;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:ff11;src:url('chunks/assets/font_6e60edb9d1a24cb045349676.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.754000;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:ff12;src:url('chunks/assets/font_07bb1db1778472a314c05a70.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.716000;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);}
.v3{vertical-align:-17.100000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.976600px;}
.v5{vertical-align:21.490800px;}
.v1{vertical-align:34.200600px;}
.v4{vertical-align:89.586000px;}
.ls14{letter-spacing:-1.152000px;}
.ls17{letter-spacing:-1.008000px;}
.ls10{letter-spacing:-0.855000px;}
.ls15{letter-spacing:-0.748800px;}
.ls16{letter-spacing:-0.720000px;}
.ls3c{letter-spacing:-0.468000px;}
.ls2a{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.285000px;}
.ls2c{letter-spacing:-0.234000px;}
.ls2b{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.185250px;}
.ls36{letter-spacing:-0.144000px;}
.ls9{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.036000px;}
.ls2d{letter-spacing:0.037050px;}
.ls2{letter-spacing:0.039300px;}
.ls3{letter-spacing:0.057000px;}
.ls13{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.074100px;}
.lsb{letter-spacing:0.108000px;}
.ls23{letter-spacing:0.111150px;}
.lsd{letter-spacing:0.114000px;}
.ls1c{letter-spacing:0.134700px;}
.ls1b{letter-spacing:0.135300px;}
.ls38{letter-spacing:0.142500px;}
.lsf{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.147300px;}
.ls20{letter-spacing:0.148200px;}
.ls4{letter-spacing:0.168000px;}
.ls1f{letter-spacing:0.171000px;}
.lsc{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.185250px;}
.lsa{letter-spacing:0.216000px;}
.ls3a{letter-spacing:0.222300px;}
.ls12{letter-spacing:0.228000px;}
.ls3b{letter-spacing:0.234000px;}
.ls2f{letter-spacing:0.259350px;}
.ls1d{letter-spacing:0.285000px;}
.lse{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.324000px;}
.ls39{letter-spacing:0.342000px;}
.ls33{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.370500px;}
.ls2e{letter-spacing:0.399000px;}
.ls1a{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.462000px;}
.ls32{letter-spacing:0.468000px;}
.ls3e{letter-spacing:0.504000px;}
.ls35{letter-spacing:0.576000px;}
.ls37{letter-spacing:0.648000px;}
.ls31{letter-spacing:0.720000px;}
.ls40{letter-spacing:0.936000px;}
.ls22{letter-spacing:0.963300px;}
.ls28{letter-spacing:1.111500px;}
.ls6{letter-spacing:1.176000px;}
.ls3d{letter-spacing:1.222650px;}
.ls30{letter-spacing:1.252800px;}
.ls7{letter-spacing:1.344000px;}
.ls41{letter-spacing:1.440000px;}
.ls1e{letter-spacing:1.482000px;}
.ls42{letter-spacing:1.512000px;}
.ls27{letter-spacing:1.710000px;}
.ls24{letter-spacing:1.881000px;}
.ls3f{letter-spacing:2.196000px;}
.ls8{letter-spacing:12.510000px;}
.ls1{letter-spacing:14.400000px;}
.ls0{letter-spacing:712.848000px;}
.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;}
}
.ws1b{word-spacing:-55.051339px;}
.ws3c{word-spacing:-28.812000px;}
.ws1d{word-spacing:-20.016000px;}
.ws89{word-spacing:-16.074000px;}
.ws40{word-spacing:-15.846000px;}
.wsde{word-spacing:-13.478400px;}
.wsf4{word-spacing:-13.244400px;}
.ws1c{word-spacing:-13.010400px;}
.wsd0{word-spacing:-12.776400px;}
.wsf9{word-spacing:-12.542400px;}
.ws5b{word-spacing:-12.261600px;}
.wsfa{word-spacing:-11.522550px;}
.wsc8{word-spacing:-11.411400px;}
.ws8b{word-spacing:-11.263200px;}
.wsd7{word-spacing:-10.559250px;}
.wsf1{word-spacing:-10.522200px;}
.ws8a{word-spacing:-10.485150px;}
.ws88{word-spacing:-10.448100px;}
.ws8c{word-spacing:-10.411050px;}
.ws9a{word-spacing:-10.374000px;}
.wsd1{word-spacing:-10.336950px;}
.ws1e{word-spacing:-10.299900px;}
.ws74{word-spacing:-10.114650px;}
.ws1{word-spacing:-9.360000px;}
.ws2{word-spacing:-5.094600px;}
.ws103{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.168000px;}
.ws3e{word-spacing:-0.084000px;}
.wsff{word-spacing:-0.072000px;}
.ws3d{word-spacing:-0.063000px;}
.ws41{word-spacing:-0.057000px;}
.wsfe{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.045000px;}
.ws3f{word-spacing:-0.042750px;}
.ws3{word-spacing:0.000000px;}
.wsb0{word-spacing:0.057000px;}
.ws43{word-spacing:0.072000px;}
.ws3b{word-spacing:0.114000px;}
.wsa1{word-spacing:0.144000px;}
.wsb{word-spacing:0.180000px;}
.ws61{word-spacing:0.216000px;}
.wsf0{word-spacing:0.228000px;}
.ws7e{word-spacing:0.285000px;}
.ws5f{word-spacing:0.288000px;}
.ws67{word-spacing:0.360000px;}
.ws35{word-spacing:0.432000px;}
.ws32{word-spacing:0.504000px;}
.wse4{word-spacing:0.513000px;}
.ws18{word-spacing:0.540000px;}
.wsf2{word-spacing:0.570000px;}
.ws4a{word-spacing:0.576000px;}
.ws6c{word-spacing:0.627000px;}
.ws2c{word-spacing:0.648000px;}
.ws5{word-spacing:0.660000px;}
.ws83{word-spacing:0.684000px;}
.wscb{word-spacing:0.720000px;}
.ws25{word-spacing:0.792000px;}
.wse{word-spacing:0.840000px;}
.ws9e{word-spacing:0.864000px;}
.ws96{word-spacing:0.912000px;}
.ws7a{word-spacing:0.936000px;}
.ws56{word-spacing:0.969000px;}
.ws69{word-spacing:1.008000px;}
.ws50{word-spacing:1.080000px;}
.wsab{word-spacing:1.152000px;}
.ws6a{word-spacing:1.197000px;}
.wsb3{word-spacing:1.224000px;}
.wsf5{word-spacing:1.296000px;}
.wsf3{word-spacing:1.311000px;}
.ws8{word-spacing:1.320000px;}
.ws46{word-spacing:1.368000px;}
.ws95{word-spacing:1.425000px;}
.ws10{word-spacing:1.428000px;}
.ws6{word-spacing:1.440000px;}
.wsc7{word-spacing:1.482000px;}
.wse1{word-spacing:1.512000px;}
.ws71{word-spacing:1.539000px;}
.ws65{word-spacing:1.584000px;}
.ws37{word-spacing:1.653000px;}
.wsb5{word-spacing:1.656000px;}
.ws4e{word-spacing:1.728000px;}
.wsa{word-spacing:1.740000px;}
.ws3a{word-spacing:1.767000px;}
.ws7{word-spacing:1.800000px;}
.wsba{word-spacing:1.824000px;}
.ws47{word-spacing:1.872000px;}
.ws38{word-spacing:1.881000px;}
.ws6d{word-spacing:1.938000px;}
.ws24{word-spacing:1.944000px;}
.ws34{word-spacing:2.016000px;}
.wsac{word-spacing:2.052000px;}
.ws53{word-spacing:2.088000px;}
.ws5e{word-spacing:2.160000px;}
.wsdc{word-spacing:2.166000px;}
.ws72{word-spacing:2.223000px;}
.ws2b{word-spacing:2.232000px;}
.ws63{word-spacing:2.304000px;}
.wsbc{word-spacing:2.337000px;}
.ws9f{word-spacing:2.376000px;}
.ws75{word-spacing:2.448000px;}
.ws7d{word-spacing:2.451000px;}
.wsa4{word-spacing:2.508000px;}
.ws94{word-spacing:2.520000px;}
.ws80{word-spacing:2.565000px;}
.wsd4{word-spacing:2.592000px;}
.ws87{word-spacing:2.622000px;}
.ws1a{word-spacing:2.640000px;}
.ws55{word-spacing:2.664000px;}
.ws16{word-spacing:2.700000px;}
.ws6e{word-spacing:2.736000px;}
.ws62{word-spacing:2.808000px;}
.wsbb{word-spacing:2.850000px;}
.ws19{word-spacing:2.880000px;}
.wsf8{word-spacing:2.907000px;}
.ws48{word-spacing:2.952000px;}
.ws98{word-spacing:2.964000px;}
.ws58{word-spacing:3.021000px;}
.ws49{word-spacing:3.024000px;}
.wse8{word-spacing:3.078000px;}
.wsa0{word-spacing:3.096000px;}
.ws70{word-spacing:3.135000px;}
.ws5c{word-spacing:3.168000px;}
.ws9{word-spacing:3.240000px;}
.ws6b{word-spacing:3.249000px;}
.ws81{word-spacing:3.306000px;}
.ws8e{word-spacing:3.312000px;}
.ws17{word-spacing:3.360000px;}
.wse6{word-spacing:3.384000px;}
.wsb2{word-spacing:3.420000px;}
.ws9b{word-spacing:3.456000px;}
.ws5d{word-spacing:3.528000px;}
.wsd5{word-spacing:3.600000px;}
.ws59{word-spacing:3.648000px;}
.ws33{word-spacing:3.672000px;}
.wse9{word-spacing:3.705000px;}
.wsa8{word-spacing:3.744000px;}
.ws4c{word-spacing:3.816000px;}
.wse7{word-spacing:3.819000px;}
.wsbf{word-spacing:3.888000px;}
.wsc9{word-spacing:3.960000px;}
.ws4b{word-spacing:4.032000px;}
.wsbe{word-spacing:4.047000px;}
.ws42{word-spacing:4.104000px;}
.wsd{word-spacing:4.140000px;}
.wsc5{word-spacing:4.161000px;}
.ws79{word-spacing:4.176000px;}
.wsc{word-spacing:4.200000px;}
.ws99{word-spacing:4.218000px;}
.wsd9{word-spacing:4.248000px;}
.ws5a{word-spacing:4.275000px;}
.ws27{word-spacing:4.320000px;}
.wsf7{word-spacing:4.332000px;}
.wsdd{word-spacing:4.389000px;}
.ws45{word-spacing:4.392000px;}
.wsa7{word-spacing:4.464000px;}
.ws92{word-spacing:4.536000px;}
.ws73{word-spacing:4.560000px;}
.wsc0{word-spacing:4.608000px;}
.wsae{word-spacing:4.617000px;}
.ws12{word-spacing:4.662000px;}
.wsec{word-spacing:4.680000px;}
.wscd{word-spacing:4.752000px;}
.wsb1{word-spacing:4.788000px;}
.ws26{word-spacing:4.824000px;}
.wsad{word-spacing:4.845000px;}
.ws4d{word-spacing:4.896000px;}
.wsb6{word-spacing:4.968000px;}
.ws82{word-spacing:5.016000px;}
.ws66{word-spacing:5.040000px;}
.wsaf{word-spacing:5.073000px;}
.ws54{word-spacing:5.112000px;}
.ws93{word-spacing:5.184000px;}
.ws13{word-spacing:5.250000px;}
.wsc1{word-spacing:5.256000px;}
.ws57{word-spacing:5.301000px;}
.wsc2{word-spacing:5.328000px;}
.ws1f{word-spacing:5.400000px;}
.wsa6{word-spacing:5.415000px;}
.wsd3{word-spacing:5.472000px;}
.ws22{word-spacing:5.544000px;}
.ws51{word-spacing:5.616000px;}
.wsb4{word-spacing:5.688000px;}
.ws2e{word-spacing:5.760000px;}
.ws2f{word-spacing:5.832000px;}
.ws85{word-spacing:5.871000px;}
.wsc4{word-spacing:5.904000px;}
.ws86{word-spacing:5.928000px;}
.ws31{word-spacing:5.976000px;}
.ws6f{word-spacing:5.985000px;}
.ws39{word-spacing:6.042000px;}
.wscc{word-spacing:6.048000px;}
.ws97{word-spacing:6.099000px;}
.ws8d{word-spacing:6.120000px;}
.ws78{word-spacing:6.192000px;}
.wsaa{word-spacing:6.264000px;}
.ws7c{word-spacing:6.327000px;}
.ws52{word-spacing:6.336000px;}
.wsb8{word-spacing:6.408000px;}
.wsa3{word-spacing:6.441000px;}
.ws91{word-spacing:6.480000px;}
.ws64{word-spacing:6.552000px;}
.wsa5{word-spacing:6.612000px;}
.wsda{word-spacing:6.624000px;}
.ws7f{word-spacing:6.669000px;}
.ws77{word-spacing:6.696000px;}
.ws76{word-spacing:6.768000px;}
.ws44{word-spacing:6.840000px;}
.ws60{word-spacing:6.912000px;}
.wsc6{word-spacing:6.954000px;}
.wsd2{word-spacing:6.984000px;}
.wsfc{word-spacing:7.056000px;}
.ws84{word-spacing:7.125000px;}
.ws20{word-spacing:7.128000px;}
.wsef{word-spacing:7.200000px;}
.wsbd{word-spacing:7.239000px;}
.wsb9{word-spacing:7.272000px;}
.ws9c{word-spacing:7.344000px;}
.wsdb{word-spacing:7.410000px;}
.wsc3{word-spacing:7.416000px;}
.wsfd{word-spacing:7.467000px;}
.ws7b{word-spacing:7.488000px;}
.wse5{word-spacing:7.524000px;}
.ws101{word-spacing:7.560000px;}
.wsd8{word-spacing:7.632000px;}
.ws90{word-spacing:7.704000px;}
.ws8f{word-spacing:7.776000px;}
.ws2a{word-spacing:7.848000px;}
.wsed{word-spacing:7.866000px;}
.wsa9{word-spacing:7.920000px;}
.wsf{word-spacing:7.923000px;}
.wsb7{word-spacing:7.992000px;}
.wscf{word-spacing:8.064000px;}
.ws29{word-spacing:8.136000px;}
.ws28{word-spacing:8.208000px;}
.ws23{word-spacing:8.280000px;}
.ws68{word-spacing:8.424000px;}
.ws4f{word-spacing:8.496000px;}
.wsee{word-spacing:8.568000px;}
.ws21{word-spacing:8.640000px;}
.wsf6{word-spacing:8.712000px;}
.wse3{word-spacing:8.784000px;}
.ws30{word-spacing:8.856000px;}
.wseb{word-spacing:8.928000px;}
.wsdf{word-spacing:9.000000px;}
.wsea{word-spacing:9.072000px;}
.ws100{word-spacing:9.216000px;}
.ws36{word-spacing:9.288000px;}
.wsca{word-spacing:9.360000px;}
.ws102{word-spacing:9.432000px;}
.ws9d{word-spacing:9.504000px;}
.wsce{word-spacing:9.576000px;}
.wsd6{word-spacing:9.720000px;}
.wsa2{word-spacing:9.792000px;}
.wse0{word-spacing:9.864000px;}
.wse2{word-spacing:9.936000px;}
.ws2d{word-spacing:10.008000px;}
.ws14{word-spacing:11.676000px;}
.wsfb{word-spacing:13.188000px;}
.ws4{word-spacing:13.344000px;}
.ws15{word-spacing:13.500000px;}
._16{margin-left:-29.592000px;}
._1{margin-left:-28.500000px;}
._17{margin-left:-27.144000px;}
._15{margin-left:-24.408000px;}
._13{margin-left:-22.176000px;}
._12{margin-left:-20.406000px;}
._11{margin-left:-18.810000px;}
._6{margin-left:-15.006600px;}
._7{margin-left:-11.680200px;}
._8{margin-left:-9.324000px;}
._5{margin-left:-1.288800px;}
._d{width:2.016000px;}
._10{width:3.647100px;}
._3{width:4.731000px;}
._14{width:6.041400px;}
._4{width:7.140000px;}
._f{width:9.005700px;}
._e{width:11.000700px;}
._18{width:12.140400px;}
._0{width:13.344000px;}
._2{width:15.600000px;}
._9{width:399.225000px;}
._19{width:1435.914000px;}
._c{width:1462.914000px;}
._b{width:1952.100000px;}
._a{width:1976.076000px;}
.fc2{color:rgb(175,25,23);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:37.050000px;}
.fs8{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fs10{font-size:42.750000px;}
.fs7{font-size:45.000000px;}
.fsd{font-size:46.800000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fsf{font-size:63.000000px;}
.fs3{font-size:69.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:74.100000px;}
.fse{font-size:84.000000px;}
.fs1{font-size:114.000000px;}
.fsc{font-size:198.026400px;}
.y0{bottom:0.000000px;}
.y35{bottom:57.389550px;}
.y34{bottom:71.645550px;}
.y2f{bottom:81.798900px;}
.y33{bottom:85.901550px;}
.y2e{bottom:93.800400px;}
.y2d{bottom:110.044200px;}
.y2c{bottom:124.166700px;}
.yfe{bottom:132.649500px;}
.yb9{bottom:132.651750px;}
.y1d9{bottom:132.654000px;}
.y68{bottom:132.656250px;}
.y2dc{bottom:132.656700px;}
.y141{bottom:132.658350px;}
.y20d{bottom:132.658500px;}
.y122{bottom:132.658650px;}
.y319{bottom:134.726700px;}
.y2ef{bottom:134.918250px;}
.y1f6{bottom:136.935600px;}
.y18b{bottom:136.935750px;}
.y8c{bottom:136.935900px;}
.y16a{bottom:136.936350px;}
.y2b{bottom:139.601700px;}
.y339{bottom:144.770700px;}
.yfd{bottom:150.248250px;}
.yb8{bottom:150.250500px;}
.y1d8{bottom:150.252750px;}
.y67{bottom:150.255000px;}
.y8b{bottom:150.255150px;}
.y2db{bottom:150.255450px;}
.y2a{bottom:150.784200px;}
.y140{bottom:154.532100px;}
.y20c{bottom:154.532250px;}
.y121{bottom:154.532400px;}
.y169{bottom:154.532850px;}
.y318{bottom:154.814700px;}
.y2ee{bottom:155.006250px;}
.y29{bottom:161.966700px;}
.y338{bottom:164.858700px;}
.y13f{bottom:167.835750px;}
.yfc{bottom:167.847000px;}
.yb7{bottom:167.849250px;}
.y120{bottom:167.849400px;}
.y1d7{bottom:167.851500px;}
.y1f5{bottom:172.128600px;}
.y66{bottom:172.128750px;}
.y8a{bottom:172.128900px;}
.y2da{bottom:172.129200px;}
.y168{bottom:172.129350px;}
.y2ed{bottom:175.094250px;}
.y28{bottom:177.401700px;}
.y317{bottom:184.946700px;}
.ydb{bottom:185.427750px;}
.y13e{bottom:185.434500px;}
.y65{bottom:185.441250px;}
.yfb{bottom:185.445750px;}
.yb6{bottom:185.448000px;}
.y89{bottom:185.448150px;}
.y2d9{bottom:185.448450px;}
.y27{bottom:188.584200px;}
.y26e{bottom:189.196200px;}
.y1d6{bottom:189.725250px;}
.y167{bottom:189.725850px;}
.y337{bottom:194.990700px;}
.y26{bottom:199.766700px;}
.yda{bottom:203.026500px;}
.y13d{bottom:203.033250px;}
.y64{bottom:203.040000px;}
.yfa{bottom:203.044500px;}
.y166{bottom:203.045100px;}
.y316{bottom:205.034700px;}
.y2ec{bottom:205.226250px;}
.yb5{bottom:207.321750px;}
.y88{bottom:207.321900px;}
.y2d8{bottom:207.322200px;}
.y25{bottom:210.949200px;}
.y26d{bottom:211.588200px;}
.y336{bottom:215.078700px;}
.yd9{bottom:220.625250px;}
.y13c{bottom:220.632000px;}
.yb4{bottom:220.636500px;}
.y63{bottom:220.638750px;}
.y1d5{bottom:220.641000px;}
.y87{bottom:220.641150px;}
.y2b7{bottom:223.880850px;}
.yf9{bottom:224.918250px;}
.y11f{bottom:224.918400px;}
.y165{bottom:224.918850px;}
.y2eb{bottom:225.314250px;}
.y26c{bottom:233.980200px;}
.y1f4{bottom:234.678750px;}
.y315{bottom:235.166700px;}
.yd8{bottom:238.224000px;}
.y13b{bottom:238.230750px;}
.yb3{bottom:238.235250px;}
.y164{bottom:238.235850px;}
.y62{bottom:238.237500px;}
.y86{bottom:238.237650px;}
.y1d4{bottom:242.514750px;}
.y2ea{bottom:245.402250px;}
.y2b6{bottom:246.286350px;}
.y24{bottom:246.612000px;}
.y314{bottom:255.254700px;}
.yd7{bottom:255.822750px;}
.y13a{bottom:255.829500px;}
.y21e{bottom:255.831750px;}
.yb2{bottom:255.834000px;}
.y11e{bottom:255.834150px;}
.y163{bottom:255.834600px;}
.y85{bottom:255.836400px;}
.y26b{bottom:256.372200px;}
.y2d7{bottom:256.422150px;}
.y1f3{bottom:257.070750px;}
.y61{bottom:260.111250px;}
.y1c2{bottom:260.111400px;}
.y23{bottom:268.485750px;}
.y2b5{bottom:268.678350px;}
.y1a7{bottom:268.689900px;}
.y23a{bottom:268.694400px;}
.y253{bottom:268.705350px;}
.yd6{bottom:273.421500px;}
.y139{bottom:273.428250px;}
.y84{bottom:273.428400px;}
.y18a{bottom:273.430500px;}
.y335{bottom:275.342700px;}
.y2e9{bottom:275.527350px;}
.yb1{bottom:277.707750px;}
.y11d{bottom:277.707900px;}
.y162{bottom:277.708350px;}
.y26a{bottom:278.764200px;}
.y2d6{bottom:278.814150px;}
.y1f2{bottom:279.541950px;}
.y313{bottom:285.386700px;}
.yd5{bottom:291.020250px;}
.y161{bottom:291.020850px;}
.y11c{bottom:291.024900px;}
.yb0{bottom:291.027000px;}
.y83{bottom:291.027150px;}
.y2b4{bottom:291.070350px;}
.y1a6{bottom:291.081900px;}
.y239{bottom:291.086400px;}
.y20b{bottom:291.088350px;}
.y252{bottom:291.097350px;}
.y189{bottom:295.304250px;}
.y2e8{bottom:295.615350px;}
.y269{bottom:301.156200px;}
.y2d5{bottom:301.206150px;}
.y1f1{bottom:301.933950px;}
.y312{bottom:305.474700px;}
.yd4{bottom:308.619000px;}
.y160{bottom:308.619600px;}
.y11b{bottom:308.623650px;}
.y22{bottom:312.133650px;}
.yaf{bottom:312.900750px;}
.y82{bottom:312.900900px;}
.y1a5{bottom:313.473900px;}
.y60{bottom:313.475850px;}
.y238{bottom:313.478400px;}
.y1c1{bottom:313.480350px;}
.y251{bottom:313.489350px;}
.y2b3{bottom:313.501050px;}
.y268{bottom:323.548200px;}
.y2d4{bottom:323.598150px;}
.y1f0{bottom:324.325950px;}
.y286{bottom:325.072350px;}
.y334{bottom:325.451700px;}
.y311{bottom:325.480950px;}
.y2e7{bottom:325.734450px;}
.yd3{bottom:326.217750px;}
.y15f{bottom:326.218350px;}
.yae{bottom:326.220000px;}
.y138{bottom:330.497250px;}
.y11a{bottom:330.497400px;}
.y21{bottom:334.768650px;}
.y1a4{bottom:335.865900px;}
.y5f{bottom:335.867850px;}
.y237{bottom:335.870400px;}
.y1c0{bottom:335.872350px;}
.y250{bottom:335.881350px;}
.y2b2{bottom:335.893050px;}
.yd2{bottom:343.816500px;}
.y15e{bottom:343.817100px;}
.y333{bottom:345.539700px;}
.y310{bottom:345.568950px;}
.y2e6{bottom:345.822450px;}
.y267{bottom:345.940200px;}
.y2d3{bottom:345.990150px;}
.y1d3{bottom:346.665750px;}
.y1ef{bottom:346.717950px;}
.y285{bottom:347.464350px;}
.yad{bottom:348.093750px;}
.y20{bottom:353.158650px;}
.y1a3{bottom:358.257900px;}
.y5e{bottom:358.259850px;}
.y236{bottom:358.262400px;}
.y1bf{bottom:358.264350px;}
.y188{bottom:358.273350px;}
.y21d{bottom:358.285050px;}
.yac{bottom:361.410750px;}
.yf8{bottom:361.413000px;}
.yd1{bottom:365.690250px;}
.y15d{bottom:365.690850px;}
.y2e5{bottom:365.910450px;}
.y266{bottom:368.332200px;}
.y2d2{bottom:368.382150px;}
.y1d2{bottom:369.057750px;}
.y1ee{bottom:369.109950px;}
.y284{bottom:369.856350px;}
.y1f{bottom:371.548650px;}
.y81{bottom:372.706350px;}
.y332{bottom:375.671700px;}
.y30f{bottom:375.700950px;}
.y15c{bottom:379.005600px;}
.yab{bottom:379.009500px;}
.y1a2{bottom:380.649900px;}
.y235{bottom:380.654400px;}
.y1be{bottom:380.656350px;}
.y119{bottom:380.660850px;}
.y187{bottom:380.665350px;}
.y21c{bottom:380.677050px;}
.y2a1{bottom:380.687850px;}
.y5d{bottom:380.756400px;}
.yf7{bottom:383.286750px;}
.y1e{bottom:389.938650px;}
.y265{bottom:390.724200px;}
.y2d1{bottom:390.774150px;}
.y1d1{bottom:391.449750px;}
.y137{bottom:391.458900px;}
.y1ed{bottom:391.501950px;}
.y80{bottom:395.098350px;}
.y331{bottom:395.759700px;}
.y30e{bottom:395.788950px;}
.y2e4{bottom:396.042450px;}
.y15b{bottom:396.604350px;}
.yf6{bottom:400.883250px;}
.yaa{bottom:400.883400px;}
.y234{bottom:403.046400px;}
.y118{bottom:403.052850px;}
.y186{bottom:403.057350px;}
.y21b{bottom:403.069050px;}
.y20a{bottom:403.070850px;}
.y2a0{bottom:403.079850px;}
.y5c{bottom:403.148400px;}
.y264{bottom:413.116200px;}
.y2d0{bottom:413.166150px;}
.y136{bottom:413.850900px;}
.y1d0{bottom:413.855400px;}
.y1ec{bottom:413.893950px;}
.y1a1{bottom:413.971200px;}
.ya9{bottom:414.198000px;}
.yd0{bottom:414.198150px;}
.y15a{bottom:414.203100px;}
.y330{bottom:415.847700px;}
.y2e3{bottom:416.130450px;}
.y7f{bottom:417.490350px;}
.yf5{bottom:418.479750px;}
.y1d{bottom:421.085700px;}
.y185{bottom:425.449350px;}
.y21a{bottom:425.461050px;}
.y209{bottom:425.462850px;}
.y29f{bottom:425.471850px;}
.y117{bottom:425.485350px;}
.y5b{bottom:425.540400px;}
.y30d{bottom:425.920950px;}
.ya8{bottom:431.796750px;}
.ycf{bottom:431.796900px;}
.yf4{bottom:431.799000px;}
.y263{bottom:435.508200px;}
.y2cf{bottom:435.558150px;}
.y32f{bottom:435.935700px;}
.y159{bottom:436.076850px;}
.y135{bottom:436.242900px;}
.y1cf{bottom:436.247400px;}
.y233{bottom:436.274550px;}
.y1eb{bottom:436.285950px;}
.y1a0{bottom:436.363200px;}
.y7e{bottom:439.882350px;}
.y1c{bottom:443.726550px;}
.y30c{bottom:446.008950px;}
.y219{bottom:447.853050px;}
.y208{bottom:447.854850px;}
.y291{bottom:447.857550px;}
.y24f{bottom:447.862050px;}
.y29e{bottom:447.863850px;}
.y116{bottom:447.877350px;}
.y1bd{bottom:447.893400px;}
.y184{bottom:447.897900px;}
.y5a{bottom:447.932400px;}
.yf3{bottom:449.393250px;}
.ya7{bottom:449.395500px;}
.yce{bottom:449.395650px;}
.y2e2{bottom:457.054350px;}
.y262{bottom:457.900200px;}
.y2ce{bottom:457.950150px;}
.y1ce{bottom:458.639400px;}
.y232{bottom:458.666550px;}
.y134{bottom:458.675400px;}
.y1ea{bottom:458.677950px;}
.y19f{bottom:458.755200px;}
.y1b{bottom:462.116550px;}
.y7d{bottom:462.310350px;}
.y32e{bottom:466.067700px;}
.y30b{bottom:466.096950px;}
.yf2{bottom:466.992000px;}
.y218{bottom:470.245050px;}
.y207{bottom:470.246850px;}
.y290{bottom:470.249550px;}
.y24e{bottom:470.254050px;}
.y29d{bottom:470.255850px;}
.y115{bottom:470.269350px;}
.y1bc{bottom:470.285400px;}
.y183{bottom:470.289900px;}
.y59{bottom:470.324400px;}
.ya6{bottom:471.269250px;}
.ycd{bottom:471.269400px;}
.y261{bottom:480.292200px;}
.y2cd{bottom:480.342150px;}
.y1a{bottom:480.506550px;}
.y231{bottom:481.058550px;}
.y133{bottom:481.067400px;}
.y1e9{bottom:481.069950px;}
.y1cd{bottom:481.092600px;}
.y19e{bottom:481.147200px;}
.ycc{bottom:484.588650px;}
.y158{bottom:484.693800px;}
.y7c{bottom:484.702350px;}
.y32d{bottom:486.155700px;}
.yf1{bottom:488.865750px;}
.y217{bottom:492.637050px;}
.y206{bottom:492.638850px;}
.y28f{bottom:492.641550px;}
.y24d{bottom:492.646050px;}
.y29c{bottom:492.647850px;}
.y114{bottom:492.661350px;}
.y1bb{bottom:492.677400px;}
.y182{bottom:492.681900px;}
.y58{bottom:492.716400px;}
.y30a{bottom:496.228950px;}
.y19{bottom:498.896550px;}
.y260{bottom:502.684200px;}
.y2cc{bottom:502.734150px;}
.y230{bottom:503.450550px;}
.y132{bottom:503.459400px;}
.y1e8{bottom:503.461950px;}
.y1cc{bottom:503.484600px;}
.y19d{bottom:503.539200px;}
.ycb{bottom:506.462400px;}
.y157{bottom:507.085800px;}
.y7b{bottom:507.094350px;}
.y216{bottom:515.029050px;}
.y28e{bottom:515.033550px;}
.ya5{bottom:515.035350px;}
.y24c{bottom:515.038050px;}
.y29b{bottom:515.039850px;}
.y113{bottom:515.053350px;}
.y1ba{bottom:515.069400px;}
.y181{bottom:515.073900px;}
.y57{bottom:515.108400px;}
.y205{bottom:515.117550px;}
.y32c{bottom:516.287700px;}
.y309{bottom:516.316950px;}
.y2cb{bottom:525.126150px;}
.y22f{bottom:525.842550px;}
.y131{bottom:525.851400px;}
.y1e7{bottom:525.853950px;}
.y1cb{bottom:525.876600px;}
.y19c{bottom:525.931200px;}
.y2e1{bottom:525.935700px;}
.y156{bottom:529.477800px;}
.y7a{bottom:529.486350px;}
.y18{bottom:530.043450px;}
.y25f{bottom:535.876200px;}
.y32b{bottom:536.375700px;}
.y308{bottom:536.404950px;}
.y28d{bottom:537.425550px;}
.y24b{bottom:537.430050px;}
.y29a{bottom:537.431850px;}
.ya4{bottom:537.440850px;}
.y112{bottom:537.445350px;}
.y1b9{bottom:537.461400px;}
.y180{bottom:537.465900px;}
.y56{bottom:537.500400px;}
.y204{bottom:537.509550px;}
.y2ca{bottom:547.518150px;}
.yf0{bottom:548.229900px;}
.y22e{bottom:548.234550px;}
.y130{bottom:548.243400px;}
.y1e6{bottom:548.245950px;}
.y1ca{bottom:548.268600px;}
.y215{bottom:548.309550px;}
.y19b{bottom:548.323200px;}
.y2b1{bottom:548.327700px;}
.y155{bottom:551.869800px;}
.y79{bottom:551.878350px;}
.y17{bottom:552.678450px;}
.y307{bottom:556.492950px;}
.y25e{bottom:558.268200px;}
.y24a{bottom:559.822050px;}
.y299{bottom:559.831050px;}
.ya3{bottom:559.832850px;}
.y111{bottom:559.837350px;}
.y1b8{bottom:559.853400px;}
.y17f{bottom:559.857900px;}
.y55{bottom:559.892400px;}
.y32a{bottom:566.507700px;}
.y2c9{bottom:569.910150px;}
.yef{bottom:570.621900px;}
.y22d{bottom:570.626550px;}
.y12f{bottom:570.635400px;}
.y1e5{bottom:570.637950px;}
.y28c{bottom:570.644550px;}
.y1c9{bottom:570.660600px;}
.yca{bottom:570.667050px;}
.y203{bottom:570.701550px;}
.y19a{bottom:570.715200px;}
.y2b0{bottom:570.719700px;}
.y16{bottom:571.068450px;}
.y154{bottom:574.261800px;}
.y78{bottom:574.270350px;}
.y25d{bottom:580.660200px;}
.y298{bottom:582.223050px;}
.ya2{bottom:582.224850px;}
.y110{bottom:582.229350px;}
.y1b7{bottom:582.245400px;}
.y17e{bottom:582.249900px;}
.y54{bottom:582.284400px;}
.y329{bottom:586.595700px;}
.y306{bottom:586.624950px;}
.y15{bottom:589.458450px;}
.y2c8{bottom:592.302150px;}
.y22c{bottom:593.018550px;}
.y12e{bottom:593.027400px;}
.y1e4{bottom:593.029950px;}
.y28b{bottom:593.036550px;}
.yee{bottom:593.052600px;}
.yc9{bottom:593.059050px;}
.y249{bottom:593.066250px;}
.y202{bottom:593.093550px;}
.y283{bottom:593.102550px;}
.y199{bottom:593.107200px;}
.y2af{bottom:593.111700px;}
.y77{bottom:596.662350px;}
.y153{bottom:596.667300px;}
.y25c{bottom:603.052200px;}
.y297{bottom:604.615050px;}
.y10f{bottom:604.621350px;}
.ya1{bottom:604.624050px;}
.y1b6{bottom:604.637400px;}
.y17d{bottom:604.641900px;}
.y328{bottom:606.683700px;}
.y305{bottom:606.712950px;}
.y14{bottom:607.848450px;}
.y2c7{bottom:614.694150px;}
.y12d{bottom:615.419400px;}
.y1e3{bottom:615.421950px;}
.y22b{bottom:615.424050px;}
.y28a{bottom:615.428550px;}
.yed{bottom:615.444600px;}
.yc8{bottom:615.451050px;}
.y248{bottom:615.458250px;}
.y53{bottom:615.476400px;}
.y201{bottom:615.485550px;}
.y282{bottom:615.494550px;}
.y198{bottom:615.499200px;}
.y2ae{bottom:615.503700px;}
.y76{bottom:619.054350px;}
.y152{bottom:619.059300px;}
.y25b{bottom:625.444200px;}
.y13{bottom:626.238450px;}
.y327{bottom:626.771700px;}
.y304{bottom:626.800950px;}
.ya0{bottom:627.016050px;}
.y1b5{bottom:627.029400px;}
.y17c{bottom:627.033900px;}
.y10e{bottom:627.052200px;}
.y2c6{bottom:637.086150px;}
.y12c{bottom:637.811400px;}
.y1e2{bottom:637.813950px;}
.y22a{bottom:637.816050px;}
.y289{bottom:637.820550px;}
.yec{bottom:637.836600px;}
.yc7{bottom:637.843050px;}
.y247{bottom:637.850250px;}
.y296{bottom:637.863900px;}
.y52{bottom:637.868400px;}
.y200{bottom:637.877550px;}
.y281{bottom:637.886550px;}
.y197{bottom:637.891200px;}
.y2ad{bottom:637.895700px;}
.y151{bottom:641.451300px;}
.y75{bottom:641.455350px;}
.y12{bottom:644.628450px;}
.y25a{bottom:647.836200px;}
.y9f{bottom:649.408050px;}
.y1b4{bottom:649.421400px;}
.y17b{bottom:649.425900px;}
.y10d{bottom:649.444200px;}
.y326{bottom:656.903700px;}
.y303{bottom:656.932950px;}
.y2c5{bottom:659.478150px;}
.y1e1{bottom:660.205950px;}
.y229{bottom:660.208050px;}
.y288{bottom:660.212550px;}
.yeb{bottom:660.228600px;}
.yc6{bottom:660.235050px;}
.y246{bottom:660.242250px;}
.y295{bottom:660.255900px;}
.y51{bottom:660.260400px;}
.y1ff{bottom:660.269550px;}
.y280{bottom:660.278550px;}
.y196{bottom:660.283200px;}
.y2ac{bottom:660.287700px;}
.y74{bottom:663.847350px;}
.y150{bottom:663.847800px;}
.y259{bottom:670.228200px;}
.y1b3{bottom:671.813400px;}
.y10c{bottom:671.836200px;}
.y325{bottom:676.991700px;}
.y302{bottom:677.020950px;}
.y2c4{bottom:681.870150px;}
.y1e0{bottom:682.597950px;}
.y287{bottom:682.604550px;}
.y9e{bottom:682.613400px;}
.y17a{bottom:682.617900px;}
.yea{bottom:682.620600px;}
.yc5{bottom:682.627050px;}
.y245{bottom:682.634250px;}
.y294{bottom:682.647900px;}
.y50{bottom:682.652400px;}
.y1fe{bottom:682.661550px;}
.y228{bottom:682.666050px;}
.y27f{bottom:682.670550px;}
.y195{bottom:682.675200px;}
.y2ab{bottom:682.679700px;}
.y73{bottom:686.248350px;}
.y14f{bottom:686.253150px;}
.y258{bottom:692.620200px;}
.y11{bottom:694.168500px;}
.y1b2{bottom:694.205400px;}
.y10b{bottom:694.228200px;}
.y324{bottom:697.079700px;}
.y301{bottom:697.108950px;}
.y33e{bottom:697.135500px;}
.y2c3{bottom:704.262150px;}
.y9d{bottom:705.005400px;}
.y179{bottom:705.009900px;}
.ye9{bottom:705.012600px;}
.yc4{bottom:705.019050px;}
.y244{bottom:705.026250px;}
.y293{bottom:705.039900px;}
.y4f{bottom:705.044400px;}
.y1fd{bottom:705.053550px;}
.y227{bottom:705.058050px;}
.y27e{bottom:705.062550px;}
.y194{bottom:705.067200px;}
.y2aa{bottom:705.071700px;}
.y72{bottom:708.640350px;}
.y14e{bottom:708.645150px;}
.y1df{bottom:715.808100px;}
.y2e0{bottom:715.871700px;}
.y1b1{bottom:716.597400px;}
.y10a{bottom:716.620200px;}
.y323{bottom:717.167700px;}
.y33d{bottom:717.213600px;}
.y2c2{bottom:726.654150px;}
.y300{bottom:727.240950px;}
.y9c{bottom:727.397400px;}
.y178{bottom:727.401900px;}
.ye8{bottom:727.404600px;}
.yc3{bottom:727.411050px;}
.y243{bottom:727.418250px;}
.y292{bottom:727.431900px;}
.y4e{bottom:727.436400px;}
.y1fc{bottom:727.445550px;}
.y226{bottom:727.450050px;}
.y27d{bottom:727.454550px;}
.y193{bottom:727.459200px;}
.y2a9{bottom:727.463700px;}
.y71{bottom:731.032350px;}
.y14d{bottom:731.037150px;}
.y257{bottom:736.606050px;}
.y322{bottom:737.255700px;}
.y33c{bottom:737.301600px;}
.y10{bottom:737.824800px;}
.y1de{bottom:738.200100px;}
.y2df{bottom:738.263700px;}
.y2ff{bottom:747.328950px;}
.y2c1{bottom:749.046150px;}
.y177{bottom:749.793900px;}
.ye7{bottom:749.796600px;}
.yc2{bottom:749.803050px;}
.y242{bottom:749.810250px;}
.y109{bottom:749.812200px;}
.y9b{bottom:749.821200px;}
.y1b0{bottom:749.823900px;}
.y4d{bottom:749.828400px;}
.y1fb{bottom:749.837550px;}
.y225{bottom:749.842050px;}
.y27c{bottom:749.846550px;}
.y192{bottom:749.851200px;}
.y2a8{bottom:749.855700px;}
.y14c{bottom:753.433800px;}
.y321{bottom:757.343700px;}
.y33b{bottom:757.389600px;}
.y1dd{bottom:760.592100px;}
.y2de{bottom:760.655700px;}
.yf{bottom:761.799150px;}
.y2fe{bottom:767.416950px;}
.y2c0{bottom:771.438150px;}
.ye6{bottom:772.188600px;}
.yc1{bottom:772.195050px;}
.y176{bottom:772.199550px;}
.y241{bottom:772.202250px;}
.y108{bottom:772.204200px;}
.y9a{bottom:772.213200px;}
.y1af{bottom:772.215900px;}
.y4c{bottom:772.220400px;}
.y1fa{bottom:772.229550px;}
.y224{bottom:772.234050px;}
.y27b{bottom:772.238550px;}
.y191{bottom:772.243200px;}
.y2a7{bottom:772.247700px;}
.y70{bottom:775.036200px;}
.y14b{bottom:775.839150px;}
.y1dc{bottom:782.984100px;}
.y2dd{bottom:783.047700px;}
.y320{bottom:787.475700px;}
.ye5{bottom:794.580600px;}
.yc0{bottom:794.587050px;}
.y175{bottom:794.591550px;}
.y240{bottom:794.594250px;}
.y107{bottom:794.596200px;}
.y99{bottom:794.605200px;}
.y1ae{bottom:794.607900px;}
.y4b{bottom:794.612400px;}
.y1f9{bottom:794.621550px;}
.y223{bottom:794.626050px;}
.y27a{bottom:794.630550px;}
.y190{bottom:794.635200px;}
.y2a6{bottom:794.639700px;}
.ye{bottom:796.951650px;}
.y2fd{bottom:797.548950px;}
.y14a{bottom:798.231150px;}
.y6f{bottom:800.614200px;}
.y2bf{bottom:804.630150px;}
.y1db{bottom:805.389600px;}
.y256{bottom:805.439700px;}
.y31f{bottom:807.563700px;}
.y174{bottom:816.983550px;}
.y23f{bottom:816.986250px;}
.y106{bottom:816.988200px;}
.y98{bottom:816.997200px;}
.y1ad{bottom:816.999900px;}
.y4a{bottom:817.004400px;}
.y1f8{bottom:817.013550px;}
.y222{bottom:817.018050px;}
.y279{bottom:817.022550px;}
.y18f{bottom:817.027200px;}
.y2a5{bottom:817.031700px;}
.y2fc{bottom:817.636950px;}
.y149{bottom:820.623150px;}
.yd{bottom:820.926150px;}
.y6e{bottom:826.192200px;}
.y2be{bottom:827.022150px;}
.ye4{bottom:827.781600px;}
.y1c8{bottom:827.799900px;}
.y12b{bottom:827.813550px;}
.y255{bottom:827.831700px;}
.y31e{bottom:837.695700px;}
.y2fb{bottom:837.724950px;}
.y23e{bottom:839.378250px;}
.y105{bottom:839.380200px;}
.y173{bottom:839.387250px;}
.y97{bottom:839.389200px;}
.y1ac{bottom:839.391900px;}
.y49{bottom:839.396400px;}
.y1f7{bottom:839.405550px;}
.y221{bottom:839.410050px;}
.y278{bottom:839.414550px;}
.y18e{bottom:839.419200px;}
.y2a4{bottom:839.423700px;}
.y148{bottom:843.019800px;}
.y2bd{bottom:849.414150px;}
.ye3{bottom:850.173600px;}
.y1c7{bottom:850.191900px;}
.y12a{bottom:850.205550px;}
.y254{bottom:850.223700px;}
.y31d{bottom:857.783700px;}
.y2fa{bottom:857.812950px;}
.y23d{bottom:861.770250px;}
.y172{bottom:861.779250px;}
.y96{bottom:861.781200px;}
.y1ab{bottom:861.783900px;}
.y48{bottom:861.788400px;}
.y214{bottom:861.797550px;}
.y220{bottom:861.802050px;}
.y277{bottom:861.806550px;}
.y18d{bottom:861.811200px;}
.y2a3{bottom:861.815700px;}
.y147{bottom:865.420800px;}
.y2bc{bottom:871.806150px;}
.ye2{bottom:872.579250px;}
.y1c6{bottom:872.583900px;}
.y129{bottom:872.597550px;}
.y1da{bottom:872.615700px;}
.y171{bottom:884.171250px;}
.y95{bottom:884.173200px;}
.y1aa{bottom:884.175900px;}
.y47{bottom:884.180400px;}
.y213{bottom:884.189550px;}
.y21f{bottom:884.194050px;}
.y276{bottom:884.198550px;}
.y18c{bottom:884.203200px;}
.y2a2{bottom:884.207700px;}
.y146{bottom:887.812800px;}
.y31c{bottom:887.915700px;}
.y2f9{bottom:887.944950px;}
.yc{bottom:888.149100px;}
.y2bb{bottom:894.198150px;}
.ye1{bottom:894.971250px;}
.y1c5{bottom:894.975900px;}
.y128{bottom:894.989550px;}
.y23c{bottom:894.994050px;}
.y6d{bottom:895.007700px;}
.y170{bottom:906.563250px;}
.y1a9{bottom:906.567900px;}
.y212{bottom:906.581550px;}
.y104{bottom:906.586050px;}
.y275{bottom:906.590550px;}
.ybf{bottom:906.592500px;}
.y94{bottom:906.595200px;}
.yb{bottom:907.331100px;}
.y2f8{bottom:908.003700px;}
.y145{bottom:910.204800px;}
.y2ba{bottom:916.590150px;}
.ye0{bottom:917.363250px;}
.y1c4{bottom:917.367900px;}
.y46{bottom:917.372400px;}
.y127{bottom:917.381550px;}
.y23b{bottom:917.386050px;}
.y6c{bottom:917.399700px;}
.y2f7{bottom:928.091700px;}
.y1a8{bottom:928.959900px;}
.y211{bottom:928.973550px;}
.y103{bottom:928.978050px;}
.y274{bottom:928.982550px;}
.ybe{bottom:928.984500px;}
.y93{bottom:928.987200px;}
.y2b9{bottom:938.982150px;}
.y1c3{bottom:939.759900px;}
.y45{bottom:939.764400px;}
.y126{bottom:939.773550px;}
.y16f{bottom:939.778050px;}
.y6b{bottom:939.791700px;}
.ya{bottom:943.521600px;}
.y31b{bottom:948.179700px;}
.y210{bottom:951.365550px;}
.y102{bottom:951.370050px;}
.y273{bottom:951.374550px;}
.ybd{bottom:951.376500px;}
.y92{bottom:951.379200px;}
.y144{bottom:954.208500px;}
.y2f6{bottom:958.223700px;}
.y44{bottom:962.156400px;}
.y125{bottom:962.165550px;}
.y16e{bottom:962.170050px;}
.y6a{bottom:962.183700px;}
.y9{bottom:962.703600px;}
.y20f{bottom:973.757550px;}
.y101{bottom:973.762050px;}
.y272{bottom:973.766550px;}
.ybc{bottom:973.768500px;}
.y91{bottom:973.771200px;}
.y2f5{bottom:978.311700px;}
.y143{bottom:979.786500px;}
.y2b8{bottom:982.968000px;}
.ydf{bottom:984.552900px;}
.y124{bottom:984.557550px;}
.y16d{bottom:984.562050px;}
.y43{bottom:984.575700px;}
.y20e{bottom:996.149550px;}
.y100{bottom:996.154050px;}
.y271{bottom:996.158550px;}
.ybb{bottom:996.160500px;}
.y90{bottom:996.163200px;}
.y2f4{bottom:998.399700px;}
.y8{bottom:998.894100px;}
.y3c{bottom:1004.213850px;}
.y142{bottom:1005.364500px;}
.y123{bottom:1006.949550px;}
.y16c{bottom:1006.954050px;}
.yde{bottom:1006.958550px;}
.y42{bottom:1006.967700px;}
.y7{bottom:1018.076100px;}
.y33a{bottom:1018.487700px;}
.yff{bottom:1018.546050px;}
.y270{bottom:1018.550550px;}
.yba{bottom:1018.552500px;}
.y8f{bottom:1018.555200px;}
.y2f3{bottom:1028.531700px;}
.y3b{bottom:1028.978850px;}
.y16b{bottom:1029.346050px;}
.ydd{bottom:1029.350550px;}
.y41{bottom:1029.359700px;}
.y26f{bottom:1040.942550px;}
.y8e{bottom:1040.947200px;}
.y3a{bottom:1047.368850px;}
.y2f2{bottom:1048.619700px;}
.ydc{bottom:1051.742550px;}
.y40{bottom:1051.751700px;}
.y6{bottom:1054.273350px;}
.y8d{bottom:1063.339200px;}
.y39{bottom:1065.758850px;}
.y31a{bottom:1068.707700px;}
.y3f{bottom:1074.143700px;}
.y2f1{bottom:1078.751700px;}
.y5{bottom:1083.058350px;}
.y38{bottom:1084.148850px;}
.y3d{bottom:1096.531200px;}
.y3e{bottom:1096.535700px;}
.y2f0{bottom:1098.839700px;}
.y37{bottom:1102.538850px;}
.y4{bottom:1111.843350px;}
.y69{bottom:1118.927700px;}
.y36{bottom:1120.928850px;}
.y1{bottom:1156.351350px;}
.y32{bottom:1166.544150px;}
.y31{bottom:1184.134650px;}
.y3{bottom:1185.531000px;}
.y30{bottom:1201.731150px;}
.y2{bottom:1203.123000px;}
.hf{height:30.912000px;}
.h19{height:32.603400px;}
.hb{height:32.604000px;}
.h1c{height:32.604600px;}
.h1a{height:34.199400px;}
.h17{height:34.200000px;}
.h2{height:35.328000px;}
.h12{height:37.098633px;}
.hd{height:38.388000px;}
.he{height:41.130000px;}
.h7{height:47.088000px;}
.h11{height:48.600000px;}
.h9{height:49.260000px;}
.hc{height:49.704000px;}
.ha{height:49.995600px;}
.h15{height:51.300000px;}
.h18{height:51.309000px;}
.h1b{height:51.318000px;}
.h8{height:52.260000px;}
.h10{height:52.320000px;}
.h5{height:56.649000px;}
.h6{height:62.784000px;}
.h21{height:63.111000px;}
.h1d{height:64.745400px;}
.h14{height:64.800000px;}
.h1f{height:64.827600px;}
.h24{height:64.839600px;}
.h1e{height:64.851600px;}
.h20{height:64.917000px;}
.h23{height:64.983600px;}
.h22{height:65.244000px;}
.h3{height:79.800000px;}
.h16{height:86.604000px;}
.h4{height:98.815800px;}
.h13{height:172.679021px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:148.818900px;}
.x12{left:170.078700px;}
.x11{left:174.330750px;}
.x4{left:176.694300px;}
.x15{left:201.657750px;}
.x13{left:208.975200px;}
.x14{left:214.600200px;}
.x5{left:295.966800px;}
.x1{left:304.015800px;}
.x7{left:332.774550px;}
.x9{left:335.293050px;}
.xb{left:337.121550px;}
.x3{left:366.760800px;}
.xc{left:400.731150px;}
.x6{left:405.742050px;}
.x8{left:411.193050px;}
.xa{left:412.659300px;}
.xf{left:434.895300px;}
.x10{left:460.635150px;}
.xe{left:499.675650px;}
.xd{left:704.148450px;}
@media print{
.v3{vertical-align:-15.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.979200pt;}
.v5{vertical-align:19.102933pt;}
.v1{vertical-align:30.400533pt;}
.v4{vertical-align:79.632000pt;}
.ls14{letter-spacing:-1.024000pt;}
.ls17{letter-spacing:-0.896000pt;}
.ls10{letter-spacing:-0.760000pt;}
.ls15{letter-spacing:-0.665600pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls3c{letter-spacing:-0.416000pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.253333pt;}
.ls2c{letter-spacing:-0.208000pt;}
.ls2b{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.164667pt;}
.ls36{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.032000pt;}
.ls2d{letter-spacing:0.032933pt;}
.ls2{letter-spacing:0.034933pt;}
.ls3{letter-spacing:0.050667pt;}
.ls13{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.065867pt;}
.lsb{letter-spacing:0.096000pt;}
.ls23{letter-spacing:0.098800pt;}
.lsd{letter-spacing:0.101333pt;}
.ls1c{letter-spacing:0.119733pt;}
.ls1b{letter-spacing:0.120267pt;}
.ls38{letter-spacing:0.126667pt;}
.lsf{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.130933pt;}
.ls20{letter-spacing:0.131733pt;}
.ls4{letter-spacing:0.149333pt;}
.ls1f{letter-spacing:0.152000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.164667pt;}
.lsa{letter-spacing:0.192000pt;}
.ls3a{letter-spacing:0.197600pt;}
.ls12{letter-spacing:0.202667pt;}
.ls3b{letter-spacing:0.208000pt;}
.ls2f{letter-spacing:0.230533pt;}
.ls1d{letter-spacing:0.253333pt;}
.lse{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.288000pt;}
.ls39{letter-spacing:0.304000pt;}
.ls33{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.329333pt;}
.ls2e{letter-spacing:0.354667pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.410667pt;}
.ls32{letter-spacing:0.416000pt;}
.ls3e{letter-spacing:0.448000pt;}
.ls35{letter-spacing:0.512000pt;}
.ls37{letter-spacing:0.576000pt;}
.ls31{letter-spacing:0.640000pt;}
.ls40{letter-spacing:0.832000pt;}
.ls22{letter-spacing:0.856267pt;}
.ls28{letter-spacing:0.988000pt;}
.ls6{letter-spacing:1.045333pt;}
.ls3d{letter-spacing:1.086800pt;}
.ls30{letter-spacing:1.113600pt;}
.ls7{letter-spacing:1.194667pt;}
.ls41{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:1.317333pt;}
.ls42{letter-spacing:1.344000pt;}
.ls27{letter-spacing:1.520000pt;}
.ls24{letter-spacing:1.672000pt;}
.ls3f{letter-spacing:1.952000pt;}
.ls8{letter-spacing:11.120000pt;}
.ls1{letter-spacing:12.800000pt;}
.ls0{letter-spacing:633.642667pt;}
.ws1b{word-spacing:-48.934524pt;}
.ws3c{word-spacing:-25.610667pt;}
.ws1d{word-spacing:-17.792000pt;}
.ws89{word-spacing:-14.288000pt;}
.ws40{word-spacing:-14.085333pt;}
.wsde{word-spacing:-11.980800pt;}
.wsf4{word-spacing:-11.772800pt;}
.ws1c{word-spacing:-11.564800pt;}
.wsd0{word-spacing:-11.356800pt;}
.wsf9{word-spacing:-11.148800pt;}
.ws5b{word-spacing:-10.899200pt;}
.wsfa{word-spacing:-10.242267pt;}
.wsc8{word-spacing:-10.143467pt;}
.ws8b{word-spacing:-10.011733pt;}
.wsd7{word-spacing:-9.386000pt;}
.wsf1{word-spacing:-9.353067pt;}
.ws8a{word-spacing:-9.320133pt;}
.ws88{word-spacing:-9.287200pt;}
.ws8c{word-spacing:-9.254267pt;}
.ws9a{word-spacing:-9.221333pt;}
.wsd1{word-spacing:-9.188400pt;}
.ws1e{word-spacing:-9.155467pt;}
.ws74{word-spacing:-8.990800pt;}
.ws1{word-spacing:-8.320000pt;}
.ws2{word-spacing:-4.528533pt;}
.ws103{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.149333pt;}
.ws3e{word-spacing:-0.074667pt;}
.wsff{word-spacing:-0.064000pt;}
.ws3d{word-spacing:-0.056000pt;}
.ws41{word-spacing:-0.050667pt;}
.wsfe{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.040000pt;}
.ws3f{word-spacing:-0.038000pt;}
.ws3{word-spacing:0.000000pt;}
.wsb0{word-spacing:0.050667pt;}
.ws43{word-spacing:0.064000pt;}
.ws3b{word-spacing:0.101333pt;}
.wsa1{word-spacing:0.128000pt;}
.wsb{word-spacing:0.160000pt;}
.ws61{word-spacing:0.192000pt;}
.wsf0{word-spacing:0.202667pt;}
.ws7e{word-spacing:0.253333pt;}
.ws5f{word-spacing:0.256000pt;}
.ws67{word-spacing:0.320000pt;}
.ws35{word-spacing:0.384000pt;}
.ws32{word-spacing:0.448000pt;}
.wse4{word-spacing:0.456000pt;}
.ws18{word-spacing:0.480000pt;}
.wsf2{word-spacing:0.506667pt;}
.ws4a{word-spacing:0.512000pt;}
.ws6c{word-spacing:0.557333pt;}
.ws2c{word-spacing:0.576000pt;}
.ws5{word-spacing:0.586667pt;}
.ws83{word-spacing:0.608000pt;}
.wscb{word-spacing:0.640000pt;}
.ws25{word-spacing:0.704000pt;}
.wse{word-spacing:0.746667pt;}
.ws9e{word-spacing:0.768000pt;}
.ws96{word-spacing:0.810667pt;}
.ws7a{word-spacing:0.832000pt;}
.ws56{word-spacing:0.861333pt;}
.ws69{word-spacing:0.896000pt;}
.ws50{word-spacing:0.960000pt;}
.wsab{word-spacing:1.024000pt;}
.ws6a{word-spacing:1.064000pt;}
.wsb3{word-spacing:1.088000pt;}
.wsf5{word-spacing:1.152000pt;}
.wsf3{word-spacing:1.165333pt;}
.ws8{word-spacing:1.173333pt;}
.ws46{word-spacing:1.216000pt;}
.ws95{word-spacing:1.266667pt;}
.ws10{word-spacing:1.269333pt;}
.ws6{word-spacing:1.280000pt;}
.wsc7{word-spacing:1.317333pt;}
.wse1{word-spacing:1.344000pt;}
.ws71{word-spacing:1.368000pt;}
.ws65{word-spacing:1.408000pt;}
.ws37{word-spacing:1.469333pt;}
.wsb5{word-spacing:1.472000pt;}
.ws4e{word-spacing:1.536000pt;}
.wsa{word-spacing:1.546667pt;}
.ws3a{word-spacing:1.570667pt;}
.ws7{word-spacing:1.600000pt;}
.wsba{word-spacing:1.621333pt;}
.ws47{word-spacing:1.664000pt;}
.ws38{word-spacing:1.672000pt;}
.ws6d{word-spacing:1.722667pt;}
.ws24{word-spacing:1.728000pt;}
.ws34{word-spacing:1.792000pt;}
.wsac{word-spacing:1.824000pt;}
.ws53{word-spacing:1.856000pt;}
.ws5e{word-spacing:1.920000pt;}
.wsdc{word-spacing:1.925333pt;}
.ws72{word-spacing:1.976000pt;}
.ws2b{word-spacing:1.984000pt;}
.ws63{word-spacing:2.048000pt;}
.wsbc{word-spacing:2.077333pt;}
.ws9f{word-spacing:2.112000pt;}
.ws75{word-spacing:2.176000pt;}
.ws7d{word-spacing:2.178667pt;}
.wsa4{word-spacing:2.229333pt;}
.ws94{word-spacing:2.240000pt;}
.ws80{word-spacing:2.280000pt;}
.wsd4{word-spacing:2.304000pt;}
.ws87{word-spacing:2.330667pt;}
.ws1a{word-spacing:2.346667pt;}
.ws55{word-spacing:2.368000pt;}
.ws16{word-spacing:2.400000pt;}
.ws6e{word-spacing:2.432000pt;}
.ws62{word-spacing:2.496000pt;}
.wsbb{word-spacing:2.533333pt;}
.ws19{word-spacing:2.560000pt;}
.wsf8{word-spacing:2.584000pt;}
.ws48{word-spacing:2.624000pt;}
.ws98{word-spacing:2.634667pt;}
.ws58{word-spacing:2.685333pt;}
.ws49{word-spacing:2.688000pt;}
.wse8{word-spacing:2.736000pt;}
.wsa0{word-spacing:2.752000pt;}
.ws70{word-spacing:2.786667pt;}
.ws5c{word-spacing:2.816000pt;}
.ws9{word-spacing:2.880000pt;}
.ws6b{word-spacing:2.888000pt;}
.ws81{word-spacing:2.938667pt;}
.ws8e{word-spacing:2.944000pt;}
.ws17{word-spacing:2.986667pt;}
.wse6{word-spacing:3.008000pt;}
.wsb2{word-spacing:3.040000pt;}
.ws9b{word-spacing:3.072000pt;}
.ws5d{word-spacing:3.136000pt;}
.wsd5{word-spacing:3.200000pt;}
.ws59{word-spacing:3.242667pt;}
.ws33{word-spacing:3.264000pt;}
.wse9{word-spacing:3.293333pt;}
.wsa8{word-spacing:3.328000pt;}
.ws4c{word-spacing:3.392000pt;}
.wse7{word-spacing:3.394667pt;}
.wsbf{word-spacing:3.456000pt;}
.wsc9{word-spacing:3.520000pt;}
.ws4b{word-spacing:3.584000pt;}
.wsbe{word-spacing:3.597333pt;}
.ws42{word-spacing:3.648000pt;}
.wsd{word-spacing:3.680000pt;}
.wsc5{word-spacing:3.698667pt;}
.ws79{word-spacing:3.712000pt;}
.wsc{word-spacing:3.733333pt;}
.ws99{word-spacing:3.749333pt;}
.wsd9{word-spacing:3.776000pt;}
.ws5a{word-spacing:3.800000pt;}
.ws27{word-spacing:3.840000pt;}
.wsf7{word-spacing:3.850667pt;}
.wsdd{word-spacing:3.901333pt;}
.ws45{word-spacing:3.904000pt;}
.wsa7{word-spacing:3.968000pt;}
.ws92{word-spacing:4.032000pt;}
.ws73{word-spacing:4.053333pt;}
.wsc0{word-spacing:4.096000pt;}
.wsae{word-spacing:4.104000pt;}
.ws12{word-spacing:4.144000pt;}
.wsec{word-spacing:4.160000pt;}
.wscd{word-spacing:4.224000pt;}
.wsb1{word-spacing:4.256000pt;}
.ws26{word-spacing:4.288000pt;}
.wsad{word-spacing:4.306667pt;}
.ws4d{word-spacing:4.352000pt;}
.wsb6{word-spacing:4.416000pt;}
.ws82{word-spacing:4.458667pt;}
.ws66{word-spacing:4.480000pt;}
.wsaf{word-spacing:4.509333pt;}
.ws54{word-spacing:4.544000pt;}
.ws93{word-spacing:4.608000pt;}
.ws13{word-spacing:4.666667pt;}
.wsc1{word-spacing:4.672000pt;}
.ws57{word-spacing:4.712000pt;}
.wsc2{word-spacing:4.736000pt;}
.ws1f{word-spacing:4.800000pt;}
.wsa6{word-spacing:4.813333pt;}
.wsd3{word-spacing:4.864000pt;}
.ws22{word-spacing:4.928000pt;}
.ws51{word-spacing:4.992000pt;}
.wsb4{word-spacing:5.056000pt;}
.ws2e{word-spacing:5.120000pt;}
.ws2f{word-spacing:5.184000pt;}
.ws85{word-spacing:5.218667pt;}
.wsc4{word-spacing:5.248000pt;}
.ws86{word-spacing:5.269333pt;}
.ws31{word-spacing:5.312000pt;}
.ws6f{word-spacing:5.320000pt;}
.ws39{word-spacing:5.370667pt;}
.wscc{word-spacing:5.376000pt;}
.ws97{word-spacing:5.421333pt;}
.ws8d{word-spacing:5.440000pt;}
.ws78{word-spacing:5.504000pt;}
.wsaa{word-spacing:5.568000pt;}
.ws7c{word-spacing:5.624000pt;}
.ws52{word-spacing:5.632000pt;}
.wsb8{word-spacing:5.696000pt;}
.wsa3{word-spacing:5.725333pt;}
.ws91{word-spacing:5.760000pt;}
.ws64{word-spacing:5.824000pt;}
.wsa5{word-spacing:5.877333pt;}
.wsda{word-spacing:5.888000pt;}
.ws7f{word-spacing:5.928000pt;}
.ws77{word-spacing:5.952000pt;}
.ws76{word-spacing:6.016000pt;}
.ws44{word-spacing:6.080000pt;}
.ws60{word-spacing:6.144000pt;}
.wsc6{word-spacing:6.181333pt;}
.wsd2{word-spacing:6.208000pt;}
.wsfc{word-spacing:6.272000pt;}
.ws84{word-spacing:6.333333pt;}
.ws20{word-spacing:6.336000pt;}
.wsef{word-spacing:6.400000pt;}
.wsbd{word-spacing:6.434667pt;}
.wsb9{word-spacing:6.464000pt;}
.ws9c{word-spacing:6.528000pt;}
.wsdb{word-spacing:6.586667pt;}
.wsc3{word-spacing:6.592000pt;}
.wsfd{word-spacing:6.637333pt;}
.ws7b{word-spacing:6.656000pt;}
.wse5{word-spacing:6.688000pt;}
.ws101{word-spacing:6.720000pt;}
.wsd8{word-spacing:6.784000pt;}
.ws90{word-spacing:6.848000pt;}
.ws8f{word-spacing:6.912000pt;}
.ws2a{word-spacing:6.976000pt;}
.wsed{word-spacing:6.992000pt;}
.wsa9{word-spacing:7.040000pt;}
.wsf{word-spacing:7.042667pt;}
.wsb7{word-spacing:7.104000pt;}
.wscf{word-spacing:7.168000pt;}
.ws29{word-spacing:7.232000pt;}
.ws28{word-spacing:7.296000pt;}
.ws23{word-spacing:7.360000pt;}
.ws68{word-spacing:7.488000pt;}
.ws4f{word-spacing:7.552000pt;}
.wsee{word-spacing:7.616000pt;}
.ws21{word-spacing:7.680000pt;}
.wsf6{word-spacing:7.744000pt;}
.wse3{word-spacing:7.808000pt;}
.ws30{word-spacing:7.872000pt;}
.wseb{word-spacing:7.936000pt;}
.wsdf{word-spacing:8.000000pt;}
.wsea{word-spacing:8.064000pt;}
.ws100{word-spacing:8.192000pt;}
.ws36{word-spacing:8.256000pt;}
.wsca{word-spacing:8.320000pt;}
.ws102{word-spacing:8.384000pt;}
.ws9d{word-spacing:8.448000pt;}
.wsce{word-spacing:8.512000pt;}
.wsd6{word-spacing:8.640000pt;}
.wsa2{word-spacing:8.704000pt;}
.wse0{word-spacing:8.768000pt;}
.wse2{word-spacing:8.832000pt;}
.ws2d{word-spacing:8.896000pt;}
.ws14{word-spacing:10.378667pt;}
.wsfb{word-spacing:11.722667pt;}
.ws4{word-spacing:11.861333pt;}
.ws15{word-spacing:12.000000pt;}
._16{margin-left:-26.304000pt;}
._1{margin-left:-25.333333pt;}
._17{margin-left:-24.128000pt;}
._15{margin-left:-21.696000pt;}
._13{margin-left:-19.712000pt;}
._12{margin-left:-18.138667pt;}
._11{margin-left:-16.720000pt;}
._6{margin-left:-13.339200pt;}
._7{margin-left:-10.382400pt;}
._8{margin-left:-8.288000pt;}
._5{margin-left:-1.145600pt;}
._d{width:1.792000pt;}
._10{width:3.241867pt;}
._3{width:4.205333pt;}
._14{width:5.370133pt;}
._4{width:6.346667pt;}
._f{width:8.005067pt;}
._e{width:9.778400pt;}
._18{width:10.791467pt;}
._0{width:11.861333pt;}
._2{width:13.866667pt;}
._9{width:354.866667pt;}
._19{width:1276.368000pt;}
._c{width:1300.368000pt;}
._b{width:1735.200000pt;}
._a{width:1756.512000pt;}
.fs9{font-size:32.933333pt;}
.fs8{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fs10{font-size:38.000000pt;}
.fs7{font-size:40.000000pt;}
.fsd{font-size:41.600000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fsf{font-size:56.000000pt;}
.fs3{font-size:61.333333pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:65.866667pt;}
.fse{font-size:74.666667pt;}
.fs1{font-size:101.333333pt;}
.fsc{font-size:176.023467pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:51.012933pt;}
.y34{bottom:63.684933pt;}
.y2f{bottom:72.710133pt;}
.y33{bottom:76.356933pt;}
.y2e{bottom:83.378133pt;}
.y2d{bottom:97.817067pt;}
.y2c{bottom:110.370400pt;}
.yfe{bottom:117.910667pt;}
.yb9{bottom:117.912667pt;}
.y1d9{bottom:117.914667pt;}
.y68{bottom:117.916667pt;}
.y2dc{bottom:117.917067pt;}
.y141{bottom:117.918533pt;}
.y20d{bottom:117.918667pt;}
.y122{bottom:117.918800pt;}
.y319{bottom:119.757067pt;}
.y2ef{bottom:119.927333pt;}
.y1f6{bottom:121.720533pt;}
.y18b{bottom:121.720667pt;}
.y8c{bottom:121.720800pt;}
.y16a{bottom:121.721200pt;}
.y2b{bottom:124.090400pt;}
.y339{bottom:128.685067pt;}
.yfd{bottom:133.554000pt;}
.yb8{bottom:133.556000pt;}
.y1d8{bottom:133.558000pt;}
.y67{bottom:133.560000pt;}
.y8b{bottom:133.560133pt;}
.y2db{bottom:133.560400pt;}
.y2a{bottom:134.030400pt;}
.y140{bottom:137.361867pt;}
.y20c{bottom:137.362000pt;}
.y121{bottom:137.362133pt;}
.y169{bottom:137.362533pt;}
.y318{bottom:137.613067pt;}
.y2ee{bottom:137.783333pt;}
.y29{bottom:143.970400pt;}
.y338{bottom:146.541067pt;}
.y13f{bottom:149.187333pt;}
.yfc{bottom:149.197333pt;}
.yb7{bottom:149.199333pt;}
.y120{bottom:149.199467pt;}
.y1d7{bottom:149.201333pt;}
.y1f5{bottom:153.003200pt;}
.y66{bottom:153.003333pt;}
.y8a{bottom:153.003467pt;}
.y2da{bottom:153.003733pt;}
.y168{bottom:153.003867pt;}
.y2ed{bottom:155.639333pt;}
.y28{bottom:157.690400pt;}
.y317{bottom:164.397067pt;}
.ydb{bottom:164.824667pt;}
.y13e{bottom:164.830667pt;}
.y65{bottom:164.836667pt;}
.yfb{bottom:164.840667pt;}
.yb6{bottom:164.842667pt;}
.y89{bottom:164.842800pt;}
.y2d9{bottom:164.843067pt;}
.y27{bottom:167.630400pt;}
.y26e{bottom:168.174400pt;}
.y1d6{bottom:168.644667pt;}
.y167{bottom:168.645200pt;}
.y337{bottom:173.325067pt;}
.y26{bottom:177.570400pt;}
.yda{bottom:180.468000pt;}
.y13d{bottom:180.474000pt;}
.y64{bottom:180.480000pt;}
.yfa{bottom:180.484000pt;}
.y166{bottom:180.484533pt;}
.y316{bottom:182.253067pt;}
.y2ec{bottom:182.423333pt;}
.yb5{bottom:184.286000pt;}
.y88{bottom:184.286133pt;}
.y2d8{bottom:184.286400pt;}
.y25{bottom:187.510400pt;}
.y26d{bottom:188.078400pt;}
.y336{bottom:191.181067pt;}
.yd9{bottom:196.111333pt;}
.y13c{bottom:196.117333pt;}
.yb4{bottom:196.121333pt;}
.y63{bottom:196.123333pt;}
.y1d5{bottom:196.125333pt;}
.y87{bottom:196.125467pt;}
.y2b7{bottom:199.005200pt;}
.yf9{bottom:199.927333pt;}
.y11f{bottom:199.927467pt;}
.y165{bottom:199.927867pt;}
.y2eb{bottom:200.279333pt;}
.y26c{bottom:207.982400pt;}
.y1f4{bottom:208.603333pt;}
.y315{bottom:209.037067pt;}
.yd8{bottom:211.754667pt;}
.y13b{bottom:211.760667pt;}
.yb3{bottom:211.764667pt;}
.y164{bottom:211.765200pt;}
.y62{bottom:211.766667pt;}
.y86{bottom:211.766800pt;}
.y1d4{bottom:215.568667pt;}
.y2ea{bottom:218.135333pt;}
.y2b6{bottom:218.921200pt;}
.y24{bottom:219.210667pt;}
.y314{bottom:226.893067pt;}
.yd7{bottom:227.398000pt;}
.y13a{bottom:227.404000pt;}
.y21e{bottom:227.406000pt;}
.yb2{bottom:227.408000pt;}
.y11e{bottom:227.408133pt;}
.y163{bottom:227.408533pt;}
.y85{bottom:227.410133pt;}
.y26b{bottom:227.886400pt;}
.y2d7{bottom:227.930800pt;}
.y1f3{bottom:228.507333pt;}
.y61{bottom:231.210000pt;}
.y1c2{bottom:231.210133pt;}
.y23{bottom:238.654000pt;}
.y2b5{bottom:238.825200pt;}
.y1a7{bottom:238.835467pt;}
.y23a{bottom:238.839467pt;}
.y253{bottom:238.849200pt;}
.yd6{bottom:243.041333pt;}
.y139{bottom:243.047333pt;}
.y84{bottom:243.047467pt;}
.y18a{bottom:243.049333pt;}
.y335{bottom:244.749067pt;}
.y2e9{bottom:244.913200pt;}
.yb1{bottom:246.851333pt;}
.y11d{bottom:246.851467pt;}
.y162{bottom:246.851867pt;}
.y26a{bottom:247.790400pt;}
.y2d6{bottom:247.834800pt;}
.y1f2{bottom:248.481733pt;}
.y313{bottom:253.677067pt;}
.yd5{bottom:258.684667pt;}
.y161{bottom:258.685200pt;}
.y11c{bottom:258.688800pt;}
.yb0{bottom:258.690667pt;}
.y83{bottom:258.690800pt;}
.y2b4{bottom:258.729200pt;}
.y1a6{bottom:258.739467pt;}
.y239{bottom:258.743467pt;}
.y20b{bottom:258.745200pt;}
.y252{bottom:258.753200pt;}
.y189{bottom:262.492667pt;}
.y2e8{bottom:262.769200pt;}
.y269{bottom:267.694400pt;}
.y2d5{bottom:267.738800pt;}
.y1f1{bottom:268.385733pt;}
.y312{bottom:271.533067pt;}
.yd4{bottom:274.328000pt;}
.y160{bottom:274.328533pt;}
.y11b{bottom:274.332133pt;}
.y22{bottom:277.452133pt;}
.yaf{bottom:278.134000pt;}
.y82{bottom:278.134133pt;}
.y1a5{bottom:278.643467pt;}
.y60{bottom:278.645200pt;}
.y238{bottom:278.647467pt;}
.y1c1{bottom:278.649200pt;}
.y251{bottom:278.657200pt;}
.y2b3{bottom:278.667600pt;}
.y268{bottom:287.598400pt;}
.y2d4{bottom:287.642800pt;}
.y1f0{bottom:288.289733pt;}
.y286{bottom:288.953200pt;}
.y334{bottom:289.290400pt;}
.y311{bottom:289.316400pt;}
.y2e7{bottom:289.541733pt;}
.yd3{bottom:289.971333pt;}
.y15f{bottom:289.971867pt;}
.yae{bottom:289.973333pt;}
.y138{bottom:293.775333pt;}
.y11a{bottom:293.775467pt;}
.y21{bottom:297.572133pt;}
.y1a4{bottom:298.547467pt;}
.y5f{bottom:298.549200pt;}
.y237{bottom:298.551467pt;}
.y1c0{bottom:298.553200pt;}
.y250{bottom:298.561200pt;}
.y2b2{bottom:298.571600pt;}
.yd2{bottom:305.614667pt;}
.y15e{bottom:305.615200pt;}
.y333{bottom:307.146400pt;}
.y310{bottom:307.172400pt;}
.y2e6{bottom:307.397733pt;}
.y267{bottom:307.502400pt;}
.y2d3{bottom:307.546800pt;}
.y1d3{bottom:308.147333pt;}
.y1ef{bottom:308.193733pt;}
.y285{bottom:308.857200pt;}
.yad{bottom:309.416667pt;}
.y20{bottom:313.918800pt;}
.y1a3{bottom:318.451467pt;}
.y5e{bottom:318.453200pt;}
.y236{bottom:318.455467pt;}
.y1bf{bottom:318.457200pt;}
.y188{bottom:318.465200pt;}
.y21d{bottom:318.475600pt;}
.yac{bottom:321.254000pt;}
.yf8{bottom:321.256000pt;}
.yd1{bottom:325.058000pt;}
.y15d{bottom:325.058533pt;}
.y2e5{bottom:325.253733pt;}
.y266{bottom:327.406400pt;}
.y2d2{bottom:327.450800pt;}
.y1d2{bottom:328.051333pt;}
.y1ee{bottom:328.097733pt;}
.y284{bottom:328.761200pt;}
.y1f{bottom:330.265467pt;}
.y81{bottom:331.294533pt;}
.y332{bottom:333.930400pt;}
.y30f{bottom:333.956400pt;}
.y15c{bottom:336.893867pt;}
.yab{bottom:336.897333pt;}
.y1a2{bottom:338.355467pt;}
.y235{bottom:338.359467pt;}
.y1be{bottom:338.361200pt;}
.y119{bottom:338.365200pt;}
.y187{bottom:338.369200pt;}
.y21c{bottom:338.379600pt;}
.y2a1{bottom:338.389200pt;}
.y5d{bottom:338.450133pt;}
.yf7{bottom:340.699333pt;}
.y1e{bottom:346.612133pt;}
.y265{bottom:347.310400pt;}
.y2d1{bottom:347.354800pt;}
.y1d1{bottom:347.955333pt;}
.y137{bottom:347.963467pt;}
.y1ed{bottom:348.001733pt;}
.y80{bottom:351.198533pt;}
.y331{bottom:351.786400pt;}
.y30e{bottom:351.812400pt;}
.y2e4{bottom:352.037733pt;}
.y15b{bottom:352.537200pt;}
.yf6{bottom:356.340667pt;}
.yaa{bottom:356.340800pt;}
.y234{bottom:358.263467pt;}
.y118{bottom:358.269200pt;}
.y186{bottom:358.273200pt;}
.y21b{bottom:358.283600pt;}
.y20a{bottom:358.285200pt;}
.y2a0{bottom:358.293200pt;}
.y5c{bottom:358.354133pt;}
.y264{bottom:367.214400pt;}
.y2d0{bottom:367.258800pt;}
.y136{bottom:367.867467pt;}
.y1d0{bottom:367.871467pt;}
.y1ec{bottom:367.905733pt;}
.y1a1{bottom:367.974400pt;}
.ya9{bottom:368.176000pt;}
.yd0{bottom:368.176133pt;}
.y15a{bottom:368.180533pt;}
.y330{bottom:369.642400pt;}
.y2e3{bottom:369.893733pt;}
.y7f{bottom:371.102533pt;}
.yf5{bottom:371.982000pt;}
.y1d{bottom:374.298400pt;}
.y185{bottom:378.177200pt;}
.y21a{bottom:378.187600pt;}
.y209{bottom:378.189200pt;}
.y29f{bottom:378.197200pt;}
.y117{bottom:378.209200pt;}
.y5b{bottom:378.258133pt;}
.y30d{bottom:378.596400pt;}
.ya8{bottom:383.819333pt;}
.ycf{bottom:383.819467pt;}
.yf4{bottom:383.821333pt;}
.y263{bottom:387.118400pt;}
.y2cf{bottom:387.162800pt;}
.y32f{bottom:387.498400pt;}
.y159{bottom:387.623867pt;}
.y135{bottom:387.771467pt;}
.y1cf{bottom:387.775467pt;}
.y233{bottom:387.799600pt;}
.y1eb{bottom:387.809733pt;}
.y1a0{bottom:387.878400pt;}
.y7e{bottom:391.006533pt;}
.y1c{bottom:394.423600pt;}
.y30c{bottom:396.452400pt;}
.y219{bottom:398.091600pt;}
.y208{bottom:398.093200pt;}
.y291{bottom:398.095600pt;}
.y24f{bottom:398.099600pt;}
.y29e{bottom:398.101200pt;}
.y116{bottom:398.113200pt;}
.y1bd{bottom:398.127467pt;}
.y184{bottom:398.131467pt;}
.y5a{bottom:398.162133pt;}
.yf3{bottom:399.460667pt;}
.ya7{bottom:399.462667pt;}
.yce{bottom:399.462800pt;}
.y2e2{bottom:406.270533pt;}
.y262{bottom:407.022400pt;}
.y2ce{bottom:407.066800pt;}
.y1ce{bottom:407.679467pt;}
.y232{bottom:407.703600pt;}
.y134{bottom:407.711467pt;}
.y1ea{bottom:407.713733pt;}
.y19f{bottom:407.782400pt;}
.y1b{bottom:410.770267pt;}
.y7d{bottom:410.942533pt;}
.y32e{bottom:414.282400pt;}
.y30b{bottom:414.308400pt;}
.yf2{bottom:415.104000pt;}
.y218{bottom:417.995600pt;}
.y207{bottom:417.997200pt;}
.y290{bottom:417.999600pt;}
.y24e{bottom:418.003600pt;}
.y29d{bottom:418.005200pt;}
.y115{bottom:418.017200pt;}
.y1bc{bottom:418.031467pt;}
.y183{bottom:418.035467pt;}
.y59{bottom:418.066133pt;}
.ya6{bottom:418.906000pt;}
.ycd{bottom:418.906133pt;}
.y261{bottom:426.926400pt;}
.y2cd{bottom:426.970800pt;}
.y1a{bottom:427.116933pt;}
.y231{bottom:427.607600pt;}
.y133{bottom:427.615467pt;}
.y1e9{bottom:427.617733pt;}
.y1cd{bottom:427.637867pt;}
.y19e{bottom:427.686400pt;}
.ycc{bottom:430.745467pt;}
.y158{bottom:430.838933pt;}
.y7c{bottom:430.846533pt;}
.y32d{bottom:432.138400pt;}
.yf1{bottom:434.547333pt;}
.y217{bottom:437.899600pt;}
.y206{bottom:437.901200pt;}
.y28f{bottom:437.903600pt;}
.y24d{bottom:437.907600pt;}
.y29c{bottom:437.909200pt;}
.y114{bottom:437.921200pt;}
.y1bb{bottom:437.935467pt;}
.y182{bottom:437.939467pt;}
.y58{bottom:437.970133pt;}
.y30a{bottom:441.092400pt;}
.y19{bottom:443.463600pt;}
.y260{bottom:446.830400pt;}
.y2cc{bottom:446.874800pt;}
.y230{bottom:447.511600pt;}
.y132{bottom:447.519467pt;}
.y1e8{bottom:447.521733pt;}
.y1cc{bottom:447.541867pt;}
.y19d{bottom:447.590400pt;}
.ycb{bottom:450.188800pt;}
.y157{bottom:450.742933pt;}
.y7b{bottom:450.750533pt;}
.y216{bottom:457.803600pt;}
.y28e{bottom:457.807600pt;}
.ya5{bottom:457.809200pt;}
.y24c{bottom:457.811600pt;}
.y29b{bottom:457.813200pt;}
.y113{bottom:457.825200pt;}
.y1ba{bottom:457.839467pt;}
.y181{bottom:457.843467pt;}
.y57{bottom:457.874133pt;}
.y205{bottom:457.882267pt;}
.y32c{bottom:458.922400pt;}
.y309{bottom:458.948400pt;}
.y2cb{bottom:466.778800pt;}
.y22f{bottom:467.415600pt;}
.y131{bottom:467.423467pt;}
.y1e7{bottom:467.425733pt;}
.y1cb{bottom:467.445867pt;}
.y19c{bottom:467.494400pt;}
.y2e1{bottom:467.498400pt;}
.y156{bottom:470.646933pt;}
.y7a{bottom:470.654533pt;}
.y18{bottom:471.149733pt;}
.y25f{bottom:476.334400pt;}
.y32b{bottom:476.778400pt;}
.y308{bottom:476.804400pt;}
.y28d{bottom:477.711600pt;}
.y24b{bottom:477.715600pt;}
.y29a{bottom:477.717200pt;}
.ya4{bottom:477.725200pt;}
.y112{bottom:477.729200pt;}
.y1b9{bottom:477.743467pt;}
.y180{bottom:477.747467pt;}
.y56{bottom:477.778133pt;}
.y204{bottom:477.786267pt;}
.y2ca{bottom:486.682800pt;}
.yf0{bottom:487.315467pt;}
.y22e{bottom:487.319600pt;}
.y130{bottom:487.327467pt;}
.y1e6{bottom:487.329733pt;}
.y1ca{bottom:487.349867pt;}
.y215{bottom:487.386267pt;}
.y19b{bottom:487.398400pt;}
.y2b1{bottom:487.402400pt;}
.y155{bottom:490.550933pt;}
.y79{bottom:490.558533pt;}
.y17{bottom:491.269733pt;}
.y307{bottom:494.660400pt;}
.y25e{bottom:496.238400pt;}
.y24a{bottom:497.619600pt;}
.y299{bottom:497.627600pt;}
.ya3{bottom:497.629200pt;}
.y111{bottom:497.633200pt;}
.y1b8{bottom:497.647467pt;}
.y17f{bottom:497.651467pt;}
.y55{bottom:497.682133pt;}
.y32a{bottom:503.562400pt;}
.y2c9{bottom:506.586800pt;}
.yef{bottom:507.219467pt;}
.y22d{bottom:507.223600pt;}
.y12f{bottom:507.231467pt;}
.y1e5{bottom:507.233733pt;}
.y28c{bottom:507.239600pt;}
.y1c9{bottom:507.253867pt;}
.yca{bottom:507.259600pt;}
.y203{bottom:507.290267pt;}
.y19a{bottom:507.302400pt;}
.y2b0{bottom:507.306400pt;}
.y16{bottom:507.616400pt;}
.y154{bottom:510.454933pt;}
.y78{bottom:510.462533pt;}
.y25d{bottom:516.142400pt;}
.y298{bottom:517.531600pt;}
.ya2{bottom:517.533200pt;}
.y110{bottom:517.537200pt;}
.y1b7{bottom:517.551467pt;}
.y17e{bottom:517.555467pt;}
.y54{bottom:517.586133pt;}
.y329{bottom:521.418400pt;}
.y306{bottom:521.444400pt;}
.y15{bottom:523.963067pt;}
.y2c8{bottom:526.490800pt;}
.y22c{bottom:527.127600pt;}
.y12e{bottom:527.135467pt;}
.y1e4{bottom:527.137733pt;}
.y28b{bottom:527.143600pt;}
.yee{bottom:527.157867pt;}
.yc9{bottom:527.163600pt;}
.y249{bottom:527.170000pt;}
.y202{bottom:527.194267pt;}
.y283{bottom:527.202267pt;}
.y199{bottom:527.206400pt;}
.y2af{bottom:527.210400pt;}
.y77{bottom:530.366533pt;}
.y153{bottom:530.370933pt;}
.y25c{bottom:536.046400pt;}
.y297{bottom:537.435600pt;}
.y10f{bottom:537.441200pt;}
.ya1{bottom:537.443600pt;}
.y1b6{bottom:537.455467pt;}
.y17d{bottom:537.459467pt;}
.y328{bottom:539.274400pt;}
.y305{bottom:539.300400pt;}
.y14{bottom:540.309733pt;}
.y2c7{bottom:546.394800pt;}
.y12d{bottom:547.039467pt;}
.y1e3{bottom:547.041733pt;}
.y22b{bottom:547.043600pt;}
.y28a{bottom:547.047600pt;}
.yed{bottom:547.061867pt;}
.yc8{bottom:547.067600pt;}
.y248{bottom:547.074000pt;}
.y53{bottom:547.090133pt;}
.y201{bottom:547.098267pt;}
.y282{bottom:547.106267pt;}
.y198{bottom:547.110400pt;}
.y2ae{bottom:547.114400pt;}
.y76{bottom:550.270533pt;}
.y152{bottom:550.274933pt;}
.y25b{bottom:555.950400pt;}
.y13{bottom:556.656400pt;}
.y327{bottom:557.130400pt;}
.y304{bottom:557.156400pt;}
.ya0{bottom:557.347600pt;}
.y1b5{bottom:557.359467pt;}
.y17c{bottom:557.363467pt;}
.y10e{bottom:557.379733pt;}
.y2c6{bottom:566.298800pt;}
.y12c{bottom:566.943467pt;}
.y1e2{bottom:566.945733pt;}
.y22a{bottom:566.947600pt;}
.y289{bottom:566.951600pt;}
.yec{bottom:566.965867pt;}
.yc7{bottom:566.971600pt;}
.y247{bottom:566.978000pt;}
.y296{bottom:566.990133pt;}
.y52{bottom:566.994133pt;}
.y200{bottom:567.002267pt;}
.y281{bottom:567.010267pt;}
.y197{bottom:567.014400pt;}
.y2ad{bottom:567.018400pt;}
.y151{bottom:570.178933pt;}
.y75{bottom:570.182533pt;}
.y12{bottom:573.003067pt;}
.y25a{bottom:575.854400pt;}
.y9f{bottom:577.251600pt;}
.y1b4{bottom:577.263467pt;}
.y17b{bottom:577.267467pt;}
.y10d{bottom:577.283733pt;}
.y326{bottom:583.914400pt;}
.y303{bottom:583.940400pt;}
.y2c5{bottom:586.202800pt;}
.y1e1{bottom:586.849733pt;}
.y229{bottom:586.851600pt;}
.y288{bottom:586.855600pt;}
.yeb{bottom:586.869867pt;}
.yc6{bottom:586.875600pt;}
.y246{bottom:586.882000pt;}
.y295{bottom:586.894133pt;}
.y51{bottom:586.898133pt;}
.y1ff{bottom:586.906267pt;}
.y280{bottom:586.914267pt;}
.y196{bottom:586.918400pt;}
.y2ac{bottom:586.922400pt;}
.y74{bottom:590.086533pt;}
.y150{bottom:590.086933pt;}
.y259{bottom:595.758400pt;}
.y1b3{bottom:597.167467pt;}
.y10c{bottom:597.187733pt;}
.y325{bottom:601.770400pt;}
.y302{bottom:601.796400pt;}
.y2c4{bottom:606.106800pt;}
.y1e0{bottom:606.753733pt;}
.y287{bottom:606.759600pt;}
.y9e{bottom:606.767467pt;}
.y17a{bottom:606.771467pt;}
.yea{bottom:606.773867pt;}
.yc5{bottom:606.779600pt;}
.y245{bottom:606.786000pt;}
.y294{bottom:606.798133pt;}
.y50{bottom:606.802133pt;}
.y1fe{bottom:606.810267pt;}
.y228{bottom:606.814267pt;}
.y27f{bottom:606.818267pt;}
.y195{bottom:606.822400pt;}
.y2ab{bottom:606.826400pt;}
.y73{bottom:609.998533pt;}
.y14f{bottom:610.002800pt;}
.y258{bottom:615.662400pt;}
.y11{bottom:617.038667pt;}
.y1b2{bottom:617.071467pt;}
.y10b{bottom:617.091733pt;}
.y324{bottom:619.626400pt;}
.y301{bottom:619.652400pt;}
.y33e{bottom:619.676000pt;}
.y2c3{bottom:626.010800pt;}
.y9d{bottom:626.671467pt;}
.y179{bottom:626.675467pt;}
.ye9{bottom:626.677867pt;}
.yc4{bottom:626.683600pt;}
.y244{bottom:626.690000pt;}
.y293{bottom:626.702133pt;}
.y4f{bottom:626.706133pt;}
.y1fd{bottom:626.714267pt;}
.y227{bottom:626.718267pt;}
.y27e{bottom:626.722267pt;}
.y194{bottom:626.726400pt;}
.y2aa{bottom:626.730400pt;}
.y72{bottom:629.902533pt;}
.y14e{bottom:629.906800pt;}
.y1df{bottom:636.273867pt;}
.y2e0{bottom:636.330400pt;}
.y1b1{bottom:636.975467pt;}
.y10a{bottom:636.995733pt;}
.y323{bottom:637.482400pt;}
.y33d{bottom:637.523200pt;}
.y2c2{bottom:645.914800pt;}
.y300{bottom:646.436400pt;}
.y9c{bottom:646.575467pt;}
.y178{bottom:646.579467pt;}
.ye8{bottom:646.581867pt;}
.yc3{bottom:646.587600pt;}
.y243{bottom:646.594000pt;}
.y292{bottom:646.606133pt;}
.y4e{bottom:646.610133pt;}
.y1fc{bottom:646.618267pt;}
.y226{bottom:646.622267pt;}
.y27d{bottom:646.626267pt;}
.y193{bottom:646.630400pt;}
.y2a9{bottom:646.634400pt;}
.y71{bottom:649.806533pt;}
.y14d{bottom:649.810800pt;}
.y257{bottom:654.760933pt;}
.y322{bottom:655.338400pt;}
.y33c{bottom:655.379200pt;}
.y10{bottom:655.844267pt;}
.y1de{bottom:656.177867pt;}
.y2df{bottom:656.234400pt;}
.y2ff{bottom:664.292400pt;}
.y2c1{bottom:665.818800pt;}
.y177{bottom:666.483467pt;}
.ye7{bottom:666.485867pt;}
.yc2{bottom:666.491600pt;}
.y242{bottom:666.498000pt;}
.y109{bottom:666.499733pt;}
.y9b{bottom:666.507733pt;}
.y1b0{bottom:666.510133pt;}
.y4d{bottom:666.514133pt;}
.y1fb{bottom:666.522267pt;}
.y225{bottom:666.526267pt;}
.y27c{bottom:666.530267pt;}
.y192{bottom:666.534400pt;}
.y2a8{bottom:666.538400pt;}
.y14c{bottom:669.718933pt;}
.y321{bottom:673.194400pt;}
.y33b{bottom:673.235200pt;}
.y1dd{bottom:676.081867pt;}
.y2de{bottom:676.138400pt;}
.yf{bottom:677.154800pt;}
.y2fe{bottom:682.148400pt;}
.y2c0{bottom:685.722800pt;}
.ye6{bottom:686.389867pt;}
.yc1{bottom:686.395600pt;}
.y176{bottom:686.399600pt;}
.y241{bottom:686.402000pt;}
.y108{bottom:686.403733pt;}
.y9a{bottom:686.411733pt;}
.y1af{bottom:686.414133pt;}
.y4c{bottom:686.418133pt;}
.y1fa{bottom:686.426267pt;}
.y224{bottom:686.430267pt;}
.y27b{bottom:686.434267pt;}
.y191{bottom:686.438400pt;}
.y2a7{bottom:686.442400pt;}
.y70{bottom:688.921067pt;}
.y14b{bottom:689.634800pt;}
.y1dc{bottom:695.985867pt;}
.y2dd{bottom:696.042400pt;}
.y320{bottom:699.978400pt;}
.ye5{bottom:706.293867pt;}
.yc0{bottom:706.299600pt;}
.y175{bottom:706.303600pt;}
.y240{bottom:706.306000pt;}
.y107{bottom:706.307733pt;}
.y99{bottom:706.315733pt;}
.y1ae{bottom:706.318133pt;}
.y4b{bottom:706.322133pt;}
.y1f9{bottom:706.330267pt;}
.y223{bottom:706.334267pt;}
.y27a{bottom:706.338267pt;}
.y190{bottom:706.342400pt;}
.y2a6{bottom:706.346400pt;}
.ye{bottom:708.401467pt;}
.y2fd{bottom:708.932400pt;}
.y14a{bottom:709.538800pt;}
.y6f{bottom:711.657067pt;}
.y2bf{bottom:715.226800pt;}
.y1db{bottom:715.901867pt;}
.y256{bottom:715.946400pt;}
.y31f{bottom:717.834400pt;}
.y174{bottom:726.207600pt;}
.y23f{bottom:726.210000pt;}
.y106{bottom:726.211733pt;}
.y98{bottom:726.219733pt;}
.y1ad{bottom:726.222133pt;}
.y4a{bottom:726.226133pt;}
.y1f8{bottom:726.234267pt;}
.y222{bottom:726.238267pt;}
.y279{bottom:726.242267pt;}
.y18f{bottom:726.246400pt;}
.y2a5{bottom:726.250400pt;}
.y2fc{bottom:726.788400pt;}
.y149{bottom:729.442800pt;}
.yd{bottom:729.712133pt;}
.y6e{bottom:734.393067pt;}
.y2be{bottom:735.130800pt;}
.ye4{bottom:735.805867pt;}
.y1c8{bottom:735.822133pt;}
.y12b{bottom:735.834267pt;}
.y255{bottom:735.850400pt;}
.y31e{bottom:744.618400pt;}
.y2fb{bottom:744.644400pt;}
.y23e{bottom:746.114000pt;}
.y105{bottom:746.115733pt;}
.y173{bottom:746.122000pt;}
.y97{bottom:746.123733pt;}
.y1ac{bottom:746.126133pt;}
.y49{bottom:746.130133pt;}
.y1f7{bottom:746.138267pt;}
.y221{bottom:746.142267pt;}
.y278{bottom:746.146267pt;}
.y18e{bottom:746.150400pt;}
.y2a4{bottom:746.154400pt;}
.y148{bottom:749.350933pt;}
.y2bd{bottom:755.034800pt;}
.ye3{bottom:755.709867pt;}
.y1c7{bottom:755.726133pt;}
.y12a{bottom:755.738267pt;}
.y254{bottom:755.754400pt;}
.y31d{bottom:762.474400pt;}
.y2fa{bottom:762.500400pt;}
.y23d{bottom:766.018000pt;}
.y172{bottom:766.026000pt;}
.y96{bottom:766.027733pt;}
.y1ab{bottom:766.030133pt;}
.y48{bottom:766.034133pt;}
.y214{bottom:766.042267pt;}
.y220{bottom:766.046267pt;}
.y277{bottom:766.050267pt;}
.y18d{bottom:766.054400pt;}
.y2a3{bottom:766.058400pt;}
.y147{bottom:769.262933pt;}
.y2bc{bottom:774.938800pt;}
.ye2{bottom:775.626000pt;}
.y1c6{bottom:775.630133pt;}
.y129{bottom:775.642267pt;}
.y1da{bottom:775.658400pt;}
.y171{bottom:785.930000pt;}
.y95{bottom:785.931733pt;}
.y1aa{bottom:785.934133pt;}
.y47{bottom:785.938133pt;}
.y213{bottom:785.946267pt;}
.y21f{bottom:785.950267pt;}
.y276{bottom:785.954267pt;}
.y18c{bottom:785.958400pt;}
.y2a2{bottom:785.962400pt;}
.y146{bottom:789.166933pt;}
.y31c{bottom:789.258400pt;}
.y2f9{bottom:789.284400pt;}
.yc{bottom:789.465867pt;}
.y2bb{bottom:794.842800pt;}
.ye1{bottom:795.530000pt;}
.y1c5{bottom:795.534133pt;}
.y128{bottom:795.546267pt;}
.y23c{bottom:795.550267pt;}
.y6d{bottom:795.562400pt;}
.y170{bottom:805.834000pt;}
.y1a9{bottom:805.838133pt;}
.y212{bottom:805.850267pt;}
.y104{bottom:805.854267pt;}
.y275{bottom:805.858267pt;}
.ybf{bottom:805.860000pt;}
.y94{bottom:805.862400pt;}
.yb{bottom:806.516533pt;}
.y2f8{bottom:807.114400pt;}
.y145{bottom:809.070933pt;}
.y2ba{bottom:814.746800pt;}
.ye0{bottom:815.434000pt;}
.y1c4{bottom:815.438133pt;}
.y46{bottom:815.442133pt;}
.y127{bottom:815.450267pt;}
.y23b{bottom:815.454267pt;}
.y6c{bottom:815.466400pt;}
.y2f7{bottom:824.970400pt;}
.y1a8{bottom:825.742133pt;}
.y211{bottom:825.754267pt;}
.y103{bottom:825.758267pt;}
.y274{bottom:825.762267pt;}
.ybe{bottom:825.764000pt;}
.y93{bottom:825.766400pt;}
.y2b9{bottom:834.650800pt;}
.y1c3{bottom:835.342133pt;}
.y45{bottom:835.346133pt;}
.y126{bottom:835.354267pt;}
.y16f{bottom:835.358267pt;}
.y6b{bottom:835.370400pt;}
.ya{bottom:838.685867pt;}
.y31b{bottom:842.826400pt;}
.y210{bottom:845.658267pt;}
.y102{bottom:845.662267pt;}
.y273{bottom:845.666267pt;}
.ybd{bottom:845.668000pt;}
.y92{bottom:845.670400pt;}
.y144{bottom:848.185333pt;}
.y2f6{bottom:851.754400pt;}
.y44{bottom:855.250133pt;}
.y125{bottom:855.258267pt;}
.y16e{bottom:855.262267pt;}
.y6a{bottom:855.274400pt;}
.y9{bottom:855.736533pt;}
.y20f{bottom:865.562267pt;}
.y101{bottom:865.566267pt;}
.y272{bottom:865.570267pt;}
.ybc{bottom:865.572000pt;}
.y91{bottom:865.574400pt;}
.y2f5{bottom:869.610400pt;}
.y143{bottom:870.921333pt;}
.y2b8{bottom:873.749333pt;}
.ydf{bottom:875.158133pt;}
.y124{bottom:875.162267pt;}
.y16d{bottom:875.166267pt;}
.y43{bottom:875.178400pt;}
.y20e{bottom:885.466267pt;}
.y100{bottom:885.470267pt;}
.y271{bottom:885.474267pt;}
.ybb{bottom:885.476000pt;}
.y90{bottom:885.478400pt;}
.y2f4{bottom:887.466400pt;}
.y8{bottom:887.905867pt;}
.y3c{bottom:892.634533pt;}
.y142{bottom:893.657333pt;}
.y123{bottom:895.066267pt;}
.y16c{bottom:895.070267pt;}
.yde{bottom:895.074267pt;}
.y42{bottom:895.082400pt;}
.y7{bottom:904.956533pt;}
.y33a{bottom:905.322400pt;}
.yff{bottom:905.374267pt;}
.y270{bottom:905.378267pt;}
.yba{bottom:905.380000pt;}
.y8f{bottom:905.382400pt;}
.y2f3{bottom:914.250400pt;}
.y3b{bottom:914.647867pt;}
.y16b{bottom:914.974267pt;}
.ydd{bottom:914.978267pt;}
.y41{bottom:914.986400pt;}
.y26f{bottom:925.282267pt;}
.y8e{bottom:925.286400pt;}
.y3a{bottom:930.994533pt;}
.y2f2{bottom:932.106400pt;}
.ydc{bottom:934.882267pt;}
.y40{bottom:934.890400pt;}
.y6{bottom:937.131867pt;}
.y8d{bottom:945.190400pt;}
.y39{bottom:947.341200pt;}
.y31a{bottom:949.962400pt;}
.y3f{bottom:954.794400pt;}
.y2f1{bottom:958.890400pt;}
.y5{bottom:962.718533pt;}
.y38{bottom:963.687867pt;}
.y3d{bottom:974.694400pt;}
.y3e{bottom:974.698400pt;}
.y2f0{bottom:976.746400pt;}
.y37{bottom:980.034533pt;}
.y4{bottom:988.305200pt;}
.y69{bottom:994.602400pt;}
.y36{bottom:996.381200pt;}
.y1{bottom:1027.867867pt;}
.y32{bottom:1036.928133pt;}
.y31{bottom:1052.564133pt;}
.y3{bottom:1053.805333pt;}
.y30{bottom:1068.205467pt;}
.y2{bottom:1069.442667pt;}
.hf{height:27.477333pt;}
.h19{height:28.980800pt;}
.hb{height:28.981333pt;}
.h1c{height:28.981867pt;}
.h1a{height:30.399467pt;}
.h17{height:30.400000pt;}
.h2{height:31.402667pt;}
.h12{height:32.976562pt;}
.hd{height:34.122667pt;}
.he{height:36.560000pt;}
.h7{height:41.856000pt;}
.h11{height:43.200000pt;}
.h9{height:43.786667pt;}
.hc{height:44.181333pt;}
.ha{height:44.440533pt;}
.h15{height:45.600000pt;}
.h18{height:45.608000pt;}
.h1b{height:45.616000pt;}
.h8{height:46.453333pt;}
.h10{height:46.506667pt;}
.h5{height:50.354667pt;}
.h6{height:55.808000pt;}
.h21{height:56.098667pt;}
.h1d{height:57.551467pt;}
.h14{height:57.600000pt;}
.h1f{height:57.624533pt;}
.h24{height:57.635200pt;}
.h1e{height:57.645867pt;}
.h20{height:57.704000pt;}
.h23{height:57.763200pt;}
.h22{height:57.994667pt;}
.h3{height:70.933333pt;}
.h16{height:76.981333pt;}
.h4{height:87.836267pt;}
.h13{height:153.492463pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:132.283467pt;}
.x12{left:151.181067pt;}
.x11{left:154.960667pt;}
.x4{left:157.061600pt;}
.x15{left:179.251333pt;}
.x13{left:185.755733pt;}
.x14{left:190.755733pt;}
.x5{left:263.081600pt;}
.x1{left:270.236267pt;}
.x7{left:295.799600pt;}
.x9{left:298.038267pt;}
.xb{left:299.663600pt;}
.x3{left:326.009600pt;}
.xc{left:356.205467pt;}
.x6{left:360.659600pt;}
.x8{left:365.504933pt;}
.xa{left:366.808267pt;}
.xf{left:386.573600pt;}
.x10{left:409.453467pt;}
.xe{left:444.156133pt;}
.xd{left:625.909733pt;}
}




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