
    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_f4539314aeab7d86c9984227.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_8b5dabd92114e85865a68050.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_9daef3017edf059581a21250.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_0c5490be9bd54e2425961df4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_26841406aa68b2595ce4ae4f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_f6cf0b5d0ef9220bdafc85fd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_cdb4914d2e4cbd926a754d0a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922852;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_461bbad01839930c8af40563.woff')format("woff");}.ff8{font-family:ff8;line-height:0.947266;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_cd06e7e2164113698e2d22a0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899902;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_260c0df8dbf6cde4b1fb3231.woff')format("woff");}.ffa{font-family:ffa;line-height:0.902344;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d831b1626745df17d005efc0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.883789;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_cf5fe329f206625c69c9f671.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666992;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);}
.va{vertical-align:-28.620000px;}
.v6{vertical-align:-16.830000px;}
.v1{vertical-align:-14.455800px;}
.vb{vertical-align:-12.000000px;}
.v4{vertical-align:-10.593000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:10.800000px;}
.vc{vertical-align:12.000000px;}
.v7{vertical-align:17.851200px;}
.v5{vertical-align:23.784000px;}
.v8{vertical-align:28.614600px;}
.v2{vertical-align:34.506000px;}
.v3{vertical-align:69.012000px;}
.ls38{letter-spacing:-7.560000px;}
.ls2a{letter-spacing:-7.200000px;}
.ls6d{letter-spacing:-6.000000px;}
.ls3e{letter-spacing:-4.464000px;}
.ls3d{letter-spacing:-2.808000px;}
.ls13{letter-spacing:-1.224000px;}
.ls14{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.936000px;}
.ls24{letter-spacing:-0.864000px;}
.ls5e{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.792000px;}
.ls12{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.576000px;}
.ls31{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.432000px;}
.ls61{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls5f{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.216000px;}
.ls60{letter-spacing:-0.189000px;}
.ls16{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.000600px;}
.ls4f{letter-spacing:0.001200px;}
.ls47{letter-spacing:0.003600px;}
.ls4c{letter-spacing:0.004200px;}
.ls50{letter-spacing:0.006600px;}
.ls52{letter-spacing:0.012000px;}
.ls62{letter-spacing:0.013200px;}
.ls40{letter-spacing:0.013800px;}
.ls3b{letter-spacing:0.016200px;}
.ls54{letter-spacing:0.017400px;}
.ls43{letter-spacing:0.019200px;}
.ls49{letter-spacing:0.019800px;}
.ls51{letter-spacing:0.024000px;}
.ls64{letter-spacing:0.037200px;}
.ls5d{letter-spacing:0.040200px;}
.ls69{letter-spacing:0.044400px;}
.ls67{letter-spacing:0.046200px;}
.ls63{letter-spacing:0.057600px;}
.ls2{letter-spacing:0.072000px;}
.ls36{letter-spacing:0.073200px;}
.ls35{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.234000px;}
.lsf{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.504000px;}
.ls33{letter-spacing:0.509400px;}
.ls37{letter-spacing:0.576000px;}
.ls29{letter-spacing:0.648000px;}
.ls26{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.792000px;}
.lse{letter-spacing:0.864000px;}
.ls18{letter-spacing:0.936000px;}
.ls22{letter-spacing:1.008000px;}
.ls27{letter-spacing:1.072800px;}
.ls34{letter-spacing:1.080000px;}
.ls1f{letter-spacing:1.152000px;}
.ls15{letter-spacing:1.224000px;}
.ls39{letter-spacing:1.368000px;}
.ls25{letter-spacing:1.440000px;}
.ls3a{letter-spacing:1.512000px;}
.ls57{letter-spacing:2.464800px;}
.ls5a{letter-spacing:2.477400px;}
.ls58{letter-spacing:2.478000px;}
.ls5b{letter-spacing:2.478600px;}
.ls59{letter-spacing:2.481600px;}
.ls4d{letter-spacing:2.653800px;}
.ls4a{letter-spacing:2.654400px;}
.ls45{letter-spacing:2.665800px;}
.ls48{letter-spacing:2.666400px;}
.ls41{letter-spacing:2.667000px;}
.ls42{letter-spacing:2.667600px;}
.ls4e{letter-spacing:2.670600px;}
.ls4b{letter-spacing:2.671200px;}
.ls53{letter-spacing:2.671800px;}
.ls65{letter-spacing:2.685000px;}
.ls6a{letter-spacing:2.928000px;}
.ls3c{letter-spacing:3.556200px;}
.ls2e{letter-spacing:3.834000px;}
.ls6c{letter-spacing:4.200000px;}
.ls5{letter-spacing:4.512000px;}
.ls20{letter-spacing:4.752000px;}
.ls23{letter-spacing:5.112000px;}
.ls1d{letter-spacing:7.560000px;}
.ls1e{letter-spacing:7.860000px;}
.ls30{letter-spacing:8.160000px;}
.ls1{letter-spacing:8.460000px;}
.ls19{letter-spacing:8.712000px;}
.ls3f{letter-spacing:9.014400px;}
.ls28{letter-spacing:9.648000px;}
.ls0{letter-spacing:10.740000px;}
.ls2f{letter-spacing:22.863600px;}
.ls6b{letter-spacing:30.120000px;}
.lsd{letter-spacing:45.144000px;}
.ls5c{letter-spacing:80.084400px;}
.ls56{letter-spacing:90.288000px;}
.ls2d{letter-spacing:197.478000px;}
.ls46{letter-spacing:270.166200px;}
.ls55{letter-spacing:368.863800px;}
.ls44{letter-spacing:525.147600px;}
.ls68{letter-spacing:584.013600px;}
.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;}
}
.wsdf{word-spacing:-48.000000px;}
.ws1{word-spacing:-25.320000px;}
.ws7c{word-spacing:-20.952000px;}
.ws34{word-spacing:-20.592000px;}
.wsbf{word-spacing:-20.448000px;}
.ws2{word-spacing:-20.232000px;}
.wsc0{word-spacing:-19.944000px;}
.wsb7{word-spacing:-19.872000px;}
.ws96{word-spacing:-18.936000px;}
.ws7d{word-spacing:-18.576000px;}
.ws95{word-spacing:-18.432000px;}
.ws7e{word-spacing:-18.288000px;}
.ws98{word-spacing:-18.216000px;}
.ws54{word-spacing:-18.144000px;}
.wsa8{word-spacing:-18.072000px;}
.ws97{word-spacing:-17.856000px;}
.ws55{word-spacing:-17.784000px;}
.wsa9{word-spacing:-17.712000px;}
.wsba{word-spacing:-17.568000px;}
.ws93{word-spacing:-17.496000px;}
.ws94{word-spacing:-17.352000px;}
.wse4{word-spacing:-16.860000px;}
.wscc{word-spacing:-15.174000px;}
.wscf{word-spacing:-14.904000px;}
.wse0{word-spacing:-14.820000px;}
.wsd1{word-spacing:-14.634000px;}
.ws60{word-spacing:-14.162400px;}
.ws7f{word-spacing:-13.488000px;}
.wsda{word-spacing:-11.856000px;}
.wse1{word-spacing:-11.802000px;}
.ws76{word-spacing:-10.621800px;}
.wsd0{word-spacing:-10.432800px;}
.wsd2{word-spacing:-10.243800px;}
.ws7b{word-spacing:-8.160000px;}
.ws36{word-spacing:-7.860000px;}
.ws35{word-spacing:-7.560000px;}
.ws9f{word-spacing:-7.272000px;}
.ws85{word-spacing:-7.200000px;}
.wsa4{word-spacing:-6.984000px;}
.wsc9{word-spacing:-6.912000px;}
.wsa1{word-spacing:-6.336000px;}
.wsa5{word-spacing:-6.264000px;}
.ws91{word-spacing:-6.192000px;}
.ws8f{word-spacing:-5.760000px;}
.wsa3{word-spacing:-5.544000px;}
.wsae{word-spacing:-5.184000px;}
.wsb0{word-spacing:-5.112000px;}
.wsdd{word-spacing:-4.752000px;}
.wsb1{word-spacing:-4.680000px;}
.ws7{word-spacing:-4.512000px;}
.wse2{word-spacing:-4.200000px;}
.ws39{word-spacing:-3.528000px;}
.ws88{word-spacing:-3.096000px;}
.wsb9{word-spacing:-2.736000px;}
.wsbc{word-spacing:-2.664000px;}
.ws89{word-spacing:-2.520000px;}
.wsb3{word-spacing:-2.448000px;}
.ws9d{word-spacing:-2.376000px;}
.ws57{word-spacing:-2.160000px;}
.ws14{word-spacing:-2.088000px;}
.ws12{word-spacing:-2.016000px;}
.wsab{word-spacing:-1.872000px;}
.ws53{word-spacing:-1.800000px;}
.wsd3{word-spacing:-1.620000px;}
.wsbe{word-spacing:-1.512000px;}
.wsc8{word-spacing:-1.440000px;}
.ws30{word-spacing:-1.368000px;}
.ws2e{word-spacing:-1.296000px;}
.ws23{word-spacing:-1.224000px;}
.ws8d{word-spacing:-1.152000px;}
.wsac{word-spacing:-1.080000px;}
.ws63{word-spacing:-1.008000px;}
.ws4c{word-spacing:-0.936000px;}
.ws1a{word-spacing:-0.864000px;}
.ws2b{word-spacing:-0.792000px;}
.ws82{word-spacing:-0.720000px;}
.ws83{word-spacing:-0.648000px;}
.wsa7{word-spacing:-0.576000px;}
.ws8e{word-spacing:-0.504000px;}
.ws3c{word-spacing:-0.432000px;}
.ws5b{word-spacing:-0.360000px;}
.ws20{word-spacing:-0.288000px;}
.wse{word-spacing:-0.216000px;}
.wsb8{word-spacing:-0.144000px;}
.ws22{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
.ws9e{word-spacing:0.072000px;}
.ws24{word-spacing:0.144000px;}
.ws19{word-spacing:0.216000px;}
.ws2d{word-spacing:0.288000px;}
.ws16{word-spacing:0.300000px;}
.ws1c{word-spacing:0.360000px;}
.ws62{word-spacing:0.432000px;}
.ws80{word-spacing:0.504000px;}
.ws1b{word-spacing:0.576000px;}
.ws84{word-spacing:0.648000px;}
.ws1e{word-spacing:0.720000px;}
.ws5a{word-spacing:0.792000px;}
.wsd4{word-spacing:0.810000px;}
.ws52{word-spacing:0.864000px;}
.ws90{word-spacing:0.936000px;}
.ws28{word-spacing:1.008000px;}
.ws21{word-spacing:1.080000px;}
.ws44{word-spacing:1.152000px;}
.ws1f{word-spacing:1.224000px;}
.wscb{word-spacing:1.296000px;}
.ws81{word-spacing:1.368000px;}
.ws31{word-spacing:1.440000px;}
.ws4f{word-spacing:1.512000px;}
.ws13{word-spacing:1.584000px;}
.ws4d{word-spacing:1.656000px;}
.wsa6{word-spacing:1.728000px;}
.ws5{word-spacing:1.800000px;}
.ws47{word-spacing:2.016000px;}
.ws99{word-spacing:2.088000px;}
.ws2a{word-spacing:2.160000px;}
.ws8b{word-spacing:2.232000px;}
.ws9a{word-spacing:2.304000px;}
.ws50{word-spacing:2.376000px;}
.ws77{word-spacing:2.400000px;}
.ws65{word-spacing:2.520000px;}
.wsb2{word-spacing:2.592000px;}
.ws37{word-spacing:2.664000px;}
.ws41{word-spacing:2.736000px;}
.ws10{word-spacing:2.808000px;}
.wsc{word-spacing:2.880000px;}
.ws43{word-spacing:2.952000px;}
.wsde{word-spacing:2.976000px;}
.wsb4{word-spacing:3.024000px;}
.wsc5{word-spacing:3.168000px;}
.wsf{word-spacing:3.240000px;}
.ws79{word-spacing:3.348000px;}
.ws92{word-spacing:3.360000px;}
.ws72{word-spacing:3.456000px;}
.ws6c{word-spacing:3.528000px;}
.ws87{word-spacing:3.600000px;}
.ws18{word-spacing:3.672000px;}
.ws17{word-spacing:3.720000px;}
.ws66{word-spacing:3.744000px;}
.ws78{word-spacing:3.780000px;}
.wsc6{word-spacing:3.816000px;}
.ws27{word-spacing:3.888000px;}
.wsbb{word-spacing:3.960000px;}
.ws5e{word-spacing:4.032000px;}
.ws86{word-spacing:4.104000px;}
.ws3e{word-spacing:4.176000px;}
.ws3{word-spacing:4.200000px;}
.ws15{word-spacing:4.248000px;}
.ws51{word-spacing:4.320000px;}
.ws7a{word-spacing:4.392000px;}
.ws6{word-spacing:4.464000px;}
.wsa2{word-spacing:4.536000px;}
.ws9b{word-spacing:4.608000px;}
.ws3b{word-spacing:4.680000px;}
.ws70{word-spacing:4.752000px;}
.ws61{word-spacing:4.896000px;}
.ws2f{word-spacing:4.968000px;}
.ws11{word-spacing:5.040000px;}
.ws1d{word-spacing:5.112000px;}
.wsc7{word-spacing:5.184000px;}
.ws45{word-spacing:5.256000px;}
.ws58{word-spacing:5.328000px;}
.ws42{word-spacing:5.400000px;}
.ws5d{word-spacing:5.616000px;}
.wsbd{word-spacing:5.688000px;}
.ws6f{word-spacing:5.760000px;}
.wsdc{word-spacing:5.832000px;}
.ws49{word-spacing:5.904000px;}
.wsad{word-spacing:5.976000px;}
.wse3{word-spacing:6.000000px;}
.ws8c{word-spacing:6.048000px;}
.ws3f{word-spacing:6.120000px;}
.ws3a{word-spacing:6.192000px;}
.ws5f{word-spacing:6.264000px;}
.wsc3{word-spacing:6.336000px;}
.ws5c{word-spacing:6.408000px;}
.ws38{word-spacing:6.480000px;}
.ws6e{word-spacing:6.552000px;}
.ws8a{word-spacing:6.624000px;}
.ws40{word-spacing:6.912000px;}
.ws71{word-spacing:6.984000px;}
.ws4e{word-spacing:7.056000px;}
.ws25{word-spacing:7.128000px;}
.ws46{word-spacing:7.200000px;}
.wsdb{word-spacing:7.272000px;}
.wsc1{word-spacing:7.344000px;}
.wsaa{word-spacing:7.416000px;}
.ws9c{word-spacing:7.560000px;}
.ws33{word-spacing:7.632000px;}
.ws26{word-spacing:7.704000px;}
.ws2c{word-spacing:7.776000px;}
.ws56{word-spacing:7.848000px;}
.wsc4{word-spacing:7.920000px;}
.wsaf{word-spacing:7.992000px;}
.ws69{word-spacing:8.064000px;}
.wsca{word-spacing:8.136000px;}
.ws6d{word-spacing:8.208000px;}
.wsa{word-spacing:8.280000px;}
.ws0{word-spacing:8.376000px;}
.ws4{word-spacing:8.400000px;}
.ws4a{word-spacing:8.424000px;}
.ws48{word-spacing:8.496000px;}
.wsd{word-spacing:8.712000px;}
.wsa0{word-spacing:8.784000px;}
.ws59{word-spacing:8.856000px;}
.ws3d{word-spacing:8.928000px;}
.ws9{word-spacing:9.000000px;}
.wsc2{word-spacing:9.072000px;}
.wsb5{word-spacing:9.144000px;}
.ws29{word-spacing:9.504000px;}
.ws6b{word-spacing:9.648000px;}
.wsd9{word-spacing:10.008000px;}
.wsb{word-spacing:10.080000px;}
.ws32{word-spacing:10.152000px;}
.ws4b{word-spacing:10.224000px;}
.wsb6{word-spacing:10.728000px;}
.ws6a{word-spacing:11.520000px;}
.ws68{word-spacing:11.808000px;}
.ws64{word-spacing:12.672000px;}
.ws67{word-spacing:13.176000px;}
.wscd{word-spacing:48.114000px;}
.wsce{word-spacing:61.614000px;}
.ws74{word-spacing:128.304000px;}
.ws75{word-spacing:155.304000px;}
.wsd7{word-spacing:159.732000px;}
.ws73{word-spacing:271.387800px;}
.wsd5{word-spacing:345.654000px;}
.wsd8{word-spacing:366.646500px;}
.wsd6{word-spacing:552.582900px;}
._0{margin-left:-940.386000px;}
._15{margin-left:-18.696000px;}
._c{margin-left:-14.437200px;}
._4{margin-left:-12.252000px;}
._23{margin-left:-10.552800px;}
._11{margin-left:-8.828400px;}
._9{margin-left:-7.033200px;}
._1{margin-left:-5.964000px;}
._13{margin-left:-4.898400px;}
._8{margin-left:-3.628800px;}
._5{margin-left:-2.400000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._7{width:2.972400px;}
._6{width:4.080000px;}
._d{width:5.464800px;}
._e{width:6.588000px;}
._f{width:7.873200px;}
._12{width:8.878800px;}
._a{width:10.281600px;}
._10{width:11.683200px;}
._14{width:12.777600px;}
._16{width:14.323200px;}
._22{width:31.646100px;}
._1d{width:44.709600px;}
._1f{width:71.480400px;}
._17{width:188.758200px;}
._b{width:201.564000px;}
._1e{width:277.827600px;}
._1c{width:311.481600px;}
._18{width:314.940000px;}
._21{width:342.303600px;}
._1b{width:363.321600px;}
._19{width:474.819600px;}
._1a{width:518.883600px;}
._20{width:537.837600px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.700000px;}
.fs6{font-size:37.800000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y117{bottom:117.000000px;}
.y48{bottom:117.078000px;}
.y1aa{bottom:118.688100px;}
.y21{bottom:118.696650px;}
.y144{bottom:118.929450px;}
.yd3{bottom:119.202000px;}
.y1e7{bottom:119.480400px;}
.y201{bottom:119.494200px;}
.y187{bottom:120.016050px;}
.y23a{bottom:120.040050px;}
.y6e{bottom:120.147600px;}
.y2cf{bottom:120.366000px;}
.y2fc{bottom:120.822000px;}
.y91{bottom:121.266000px;}
.y21d{bottom:121.628400px;}
.yf5{bottom:121.692150px;}
.y2a8{bottom:121.692600px;}
.y1c8{bottom:122.710350px;}
.yb4{bottom:122.814000px;}
.y277{bottom:126.383550px;}
.y167{bottom:132.000000px;}
.y2ce{bottom:135.366000px;}
.y6d{bottom:138.897600px;}
.y47{bottom:138.984000px;}
.y116{bottom:139.500000px;}
.y2fb{bottom:139.872000px;}
.y20{bottom:140.602650px;}
.y143{bottom:141.285450px;}
.yd2{bottom:141.558000px;}
.y1a9{bottom:141.944100px;}
.y1e6{bottom:141.980400px;}
.y275{bottom:142.138050px;}
.y200{bottom:142.138200px;}
.y186{bottom:142.822050px;}
.y239{bottom:142.846050px;}
.y90{bottom:143.766000px;}
.y2a7{bottom:144.336600px;}
.y21c{bottom:144.722400px;}
.yf4{bottom:144.786150px;}
.yb3{bottom:145.008000px;}
.y1c7{bottom:145.966350px;}
.y2cd{bottom:150.366000px;}
.y166{bottom:151.207500px;}
.y6c{bottom:157.647600px;}
.y274{bottom:157.881900px;}
.y276{bottom:157.892550px;}
.y2fa{bottom:158.922000px;}
.y46{bottom:160.890000px;}
.y115{bottom:162.000000px;}
.y1f{bottom:162.346650px;}
.y142{bottom:163.641450px;}
.yd1{bottom:163.914000px;}
.y1e5{bottom:164.488200px;}
.y1ff{bottom:164.782200px;}
.y1a8{bottom:165.200100px;}
.y2cc{bottom:165.366000px;}
.y185{bottom:165.628050px;}
.y238{bottom:165.652050px;}
.y8f{bottom:165.816000px;}
.y2a6{bottom:166.980600px;}
.yb2{bottom:167.202000px;}
.y21b{bottom:167.816400px;}
.yf3{bottom:167.880150px;}
.y1c6{bottom:169.206450px;}
.y6b{bottom:176.397600px;}
.y2f9{bottom:177.972000px;}
.y2cb{bottom:180.366000px;}
.y45{bottom:182.796000px;}
.y273{bottom:183.869400px;}
.y1e{bottom:184.090650px;}
.y114{bottom:184.500000px;}
.y141{bottom:185.997450px;}
.yd0{bottom:186.270000px;}
.y1fe{bottom:187.426200px;}
.y184{bottom:188.434050px;}
.y1a7{bottom:188.456100px;}
.y237{bottom:188.458050px;}
.y165{bottom:188.470050px;}
.yb1{bottom:189.396000px;}
.y2a5{bottom:189.624600px;}
.y21a{bottom:190.910400px;}
.yf2{bottom:190.974150px;}
.y6a{bottom:195.147600px;}
.y2ca{bottom:195.366000px;}
.y1e4{bottom:195.484200px;}
.y8e{bottom:196.362000px;}
.y2f8{bottom:197.022000px;}
.y272{bottom:199.599900px;}
.y1c5{bottom:200.958450px;}
.y44{bottom:204.702000px;}
.y1d{bottom:205.834650px;}
.y113{bottom:207.000000px;}
.y140{bottom:208.347450px;}
.ycf{bottom:208.626000px;}
.y1fd{bottom:210.070200px;}
.y2c9{bottom:210.366000px;}
.y183{bottom:211.240050px;}
.y236{bottom:211.264050px;}
.y164{bottom:211.276050px;}
.y1a6{bottom:211.712100px;}
.y2a4{bottom:212.268600px;}
.y69{bottom:213.897600px;}
.y219{bottom:214.004400px;}
.yf1{bottom:214.068150px;}
.y2f7{bottom:216.072000px;}
.y1e3{bottom:217.984200px;}
.y8d{bottom:218.412000px;}
.yb0{bottom:220.104000px;}
.y1c4{bottom:224.214450px;}
.y2c8{bottom:225.366000px;}
.y271{bottom:225.587400px;}
.y43{bottom:226.608000px;}
.y1c{bottom:227.578650px;}
.y112{bottom:229.500000px;}
.y13f{bottom:230.697450px;}
.yce{bottom:230.982000px;}
.y68{bottom:232.647600px;}
.y1fc{bottom:232.714200px;}
.y182{bottom:234.046050px;}
.y235{bottom:234.070050px;}
.y163{bottom:234.082050px;}
.y2a3{bottom:234.912600px;}
.y1a5{bottom:234.968100px;}
.y2f6{bottom:235.122000px;}
.yf0{bottom:237.162150px;}
.y2c7{bottom:240.366000px;}
.y8c{bottom:240.462000px;}
.y1e2{bottom:240.484200px;}
.y270{bottom:241.341900px;}
.yaf{bottom:242.298000px;}
.y1c3{bottom:247.470450px;}
.y42{bottom:248.514000px;}
.y1b{bottom:249.322650px;}
.y111{bottom:252.000000px;}
.ycd{bottom:253.338000px;}
.y2f5{bottom:254.172000px;}
.y1fb{bottom:255.358200px;}
.y2c6{bottom:255.366000px;}
.y181{bottom:256.852050px;}
.y234{bottom:256.876050px;}
.y162{bottom:256.888050px;}
.y26f{bottom:257.096400px;}
.y26c{bottom:257.105400px;}
.y2a2{bottom:257.556600px;}
.y1a4{bottom:258.224100px;}
.y218{bottom:260.210400px;}
.yef{bottom:260.256150px;}
.y67{bottom:260.844000px;}
.y8b{bottom:262.512000px;}
.y1e1{bottom:262.984200px;}
.yae{bottom:264.492000px;}
.y2c5{bottom:270.366000px;}
.y41{bottom:270.420000px;}
.y1c2{bottom:270.710250px;}
.y1a{bottom:271.066650px;}
.y26e{bottom:272.850900px;}
.y26b{bottom:272.855400px;}
.y2f4{bottom:273.222000px;}
.y110{bottom:274.500000px;}
.ycc{bottom:275.694000px;}
.y1fa{bottom:278.002200px;}
.y180{bottom:279.658050px;}
.y233{bottom:279.682050px;}
.y161{bottom:279.694050px;}
.y2a1{bottom:280.200600px;}
.y1a3{bottom:281.480100px;}
.y66{bottom:283.038000px;}
.y217{bottom:283.304400px;}
.yee{bottom:283.350150px;}
.y13e{bottom:283.883400px;}
.y2c4{bottom:285.366000px;}
.y1e0{bottom:285.492150px;}
.y26a{bottom:288.603750px;}
.y26d{bottom:288.605400px;}
.y2f3{bottom:292.272000px;}
.y40{bottom:292.326000px;}
.y19{bottom:292.810650px;}
.y8a{bottom:293.058000px;}
.yad{bottom:295.200000px;}
.y10f{bottom:297.000000px;}
.ycb{bottom:298.050000px;}
.y2c3{bottom:300.366000px;}
.y1f9{bottom:300.646200px;}
.y1c1{bottom:302.462250px;}
.y17f{bottom:302.464050px;}
.y232{bottom:302.488050px;}
.y160{bottom:302.500050px;}
.y2a0{bottom:302.844600px;}
.y1a2{bottom:304.736100px;}
.y65{bottom:305.232000px;}
.y13d{bottom:306.239400px;}
.y216{bottom:306.398400px;}
.yed{bottom:306.444150px;}
.y2f2{bottom:311.322000px;}
.y3f{bottom:314.232000px;}
.y18{bottom:314.554650px;}
.y269{bottom:314.591250px;}
.y89{bottom:315.108000px;}
.y2c2{bottom:315.366000px;}
.y1df{bottom:316.488150px;}
.yac{bottom:317.394000px;}
.y10e{bottom:319.500000px;}
.yca{bottom:320.406000px;}
.y1f8{bottom:323.290200px;}
.y17e{bottom:325.270050px;}
.y231{bottom:325.294050px;}
.y15f{bottom:325.306050px;}
.y29f{bottom:325.488600px;}
.y1c0{bottom:325.718250px;}
.y64{bottom:327.426000px;}
.y1a1{bottom:327.976050px;}
.y13c{bottom:328.595400px;}
.y215{bottom:329.492400px;}
.yec{bottom:329.538150px;}
.y268{bottom:330.321600px;}
.y2c1{bottom:330.366000px;}
.y2f1{bottom:330.372000px;}
.y3e{bottom:336.138000px;}
.y17{bottom:336.298650px;}
.y88{bottom:337.158000px;}
.y1de{bottom:338.988150px;}
.yab{bottom:339.588000px;}
.y10d{bottom:342.000000px;}
.yc9{bottom:342.762000px;}
.y2c0{bottom:345.366000px;}
.y1f7{bottom:345.900150px;}
.y17d{bottom:348.076050px;}
.y230{bottom:348.100050px;}
.y15e{bottom:348.112050px;}
.y29e{bottom:348.132600px;}
.y1bf{bottom:348.974250px;}
.y2f0{bottom:349.422000px;}
.y63{bottom:349.620000px;}
.y13b{bottom:350.951400px;}
.y214{bottom:352.586400px;}
.y267{bottom:356.309100px;}
.y16{bottom:358.042650px;}
.y3d{bottom:358.044000px;}
.y87{bottom:359.208000px;}
.y1a0{bottom:359.728050px;}
.y2bf{bottom:360.366000px;}
.yeb{bottom:361.146150px;}
.y1dd{bottom:361.488150px;}
.y10c{bottom:364.500000px;}
.yc8{bottom:365.118000px;}
.y318{bottom:368.100000px;}
.y2ef{bottom:368.472000px;}
.yaa{bottom:370.296000px;}
.y29d{bottom:370.776600px;}
.y17c{bottom:370.882050px;}
.y22f{bottom:370.906050px;}
.y15d{bottom:370.918050px;}
.y62{bottom:371.814000px;}
.y266{bottom:372.063600px;}
.y1be{bottom:372.190200px;}
.y2be{bottom:375.366000px;}
.y213{bottom:375.680400px;}
.y1f6{bottom:377.058150px;}
.y15{bottom:379.786650px;}
.y3c{bottom:379.950000px;}
.y86{bottom:381.258000px;}
.y19f{bottom:382.984050px;}
.y1dc{bottom:383.988150px;}
.yea{bottom:384.240150px;}
.y317{bottom:386.850000px;}
.y10b{bottom:387.000000px;}
.yc7{bottom:387.474000px;}
.y2ee{bottom:387.522000px;}
.y265{bottom:387.818100px;}
.y262{bottom:387.831600px;}
.y2bd{bottom:390.366000px;}
.ya9{bottom:392.490000px;}
.y29c{bottom:393.420600px;}
.y17b{bottom:393.688050px;}
.y22e{bottom:393.712050px;}
.y15c{bottom:393.724050px;}
.y61{bottom:394.008000px;}
.y138{bottom:398.658900px;}
.y212{bottom:398.806200px;}
.y1f5{bottom:399.702150px;}
.y14{bottom:401.530650px;}
.y3b{bottom:401.856000px;}
.y85{bottom:403.308000px;}
.y264{bottom:403.572600px;}
.y261{bottom:403.581600px;}
.y1bd{bottom:403.942200px;}
.y2bc{bottom:405.366000px;}
.y316{bottom:405.600000px;}
.y19e{bottom:406.240050px;}
.y1db{bottom:406.488150px;}
.y2ed{bottom:406.572000px;}
.ye9{bottom:407.334150px;}
.y10a{bottom:409.500000px;}
.yc6{bottom:409.830000px;}
.ya8{bottom:414.684000px;}
.y137{bottom:415.911900px;}
.y29b{bottom:416.064600px;}
.y60{bottom:416.202000px;}
.y17a{bottom:416.494050px;}
.y22d{bottom:416.518050px;}
.y15b{bottom:416.530050px;}
.y260{bottom:419.327100px;}
.y2bb{bottom:420.366000px;}
.y13{bottom:423.274650px;}
.y3a{bottom:423.762000px;}
.y315{bottom:424.350000px;}
.y84{bottom:425.358000px;}
.y2ec{bottom:425.622000px;}
.y1bc{bottom:427.198200px;}
.y1da{bottom:428.988150px;}
.y19d{bottom:429.378000px;}
.y211{bottom:430.414200px;}
.ye8{bottom:430.428150px;}
.y109{bottom:432.000000px;}
.yc5{bottom:432.186000px;}
.y136{bottom:433.164900px;}
.y25f{bottom:435.053100px;}
.y241{bottom:435.070650px;}
.y263{bottom:435.081600px;}
.y2ba{bottom:435.366000px;}
.ya7{bottom:436.878000px;}
.y5f{bottom:438.396000px;}
.y29a{bottom:438.708600px;}
.y179{bottom:439.300050px;}
.y22c{bottom:439.324050px;}
.y15a{bottom:439.336050px;}
.y2eb{bottom:444.672000px;}
.y12{bottom:445.018650px;}
.y1f4{bottom:445.152150px;}
.y39{bottom:445.668000px;}
.y83{bottom:447.408000px;}
.y2b9{bottom:450.366000px;}
.y13a{bottom:450.404400px;}
.y135{bottom:450.417900px;}
.y1bb{bottom:450.454200px;}
.y240{bottom:450.825150px;}
.y1d9{bottom:451.488150px;}
.y210{bottom:453.508200px;}
.ye7{bottom:453.522150px;}
.y314{bottom:454.350000px;}
.y108{bottom:454.500000px;}
.yc4{bottom:454.542000px;}
.y5e{bottom:460.590000px;}
.y25e{bottom:461.040600px;}
.y19c{bottom:461.130000px;}
.y299{bottom:461.352600px;}
.y178{bottom:462.106050px;}
.y22b{bottom:462.130050px;}
.y159{bottom:462.142050px;}
.y2ea{bottom:463.722000px;}
.y2b8{bottom:465.366000px;}
.y23f{bottom:466.579650px;}
.y11{bottom:466.762650px;}
.y38{bottom:467.574000px;}
.ya6{bottom:467.586000px;}
.y139{bottom:467.657400px;}
.y134{bottom:467.670900px;}
.y1f3{bottom:467.958150px;}
.y82{bottom:469.458000px;}
.y313{bottom:473.100000px;}
.y1ba{bottom:473.710200px;}
.y1d8{bottom:473.988150px;}
.y20f{bottom:476.602200px;}
.ye6{bottom:476.616150px;}
.y25d{bottom:476.795100px;}
.yc3{bottom:476.898000px;}
.y107{bottom:477.000000px;}
.y2b7{bottom:480.366000px;}
.y23e{bottom:482.334150px;}
.y2e9{bottom:482.772000px;}
.y5d{bottom:482.784000px;}
.y298{bottom:483.996600px;}
.y19b{bottom:484.386000px;}
.y177{bottom:484.912050px;}
.y22a{bottom:484.936050px;}
.y158{bottom:484.948050px;}
.y10{bottom:488.506650px;}
.y37{bottom:489.480000px;}
.ya5{bottom:489.780000px;}
.y1f2{bottom:490.764150px;}
.y81{bottom:491.508000px;}
.y312{bottom:491.850000px;}
.y25c{bottom:492.549600px;}
.y133{bottom:493.658400px;}
.y2b6{bottom:495.366000px;}
.y1d7{bottom:496.488150px;}
.y1b9{bottom:496.966200px;}
.y23d{bottom:498.088650px;}
.yc2{bottom:499.254000px;}
.y20e{bottom:499.696200px;}
.y2e8{bottom:501.822000px;}
.y5c{bottom:504.978000px;}
.y297{bottom:506.640600px;}
.y19a{bottom:507.642000px;}
.y176{bottom:507.718050px;}
.y229{bottom:507.742050px;}
.y157{bottom:507.754050px;}
.ye5{bottom:508.224150px;}
.y25b{bottom:508.304100px;}
.y257{bottom:508.313100px;}
.yf{bottom:510.250650px;}
.y2b5{bottom:510.366000px;}
.y311{bottom:510.600000px;}
.y36{bottom:511.386000px;}
.ya4{bottom:511.974000px;}
.y80{bottom:513.558000px;}
.y1f1{bottom:513.570150px;}
.y1d6{bottom:518.988150px;}
.y132{bottom:519.645900px;}
.y1b8{bottom:520.222200px;}
.y2e7{bottom:520.872000px;}
.yc1{bottom:521.610000px;}
.y106{bottom:522.000000px;}
.y20d{bottom:522.790200px;}
.y25a{bottom:524.058600px;}
.y256{bottom:524.063100px;}
.y2b4{bottom:525.366000px;}
.y5b{bottom:527.172000px;}
.y296{bottom:529.284600px;}
.y175{bottom:530.524050px;}
.y228{bottom:530.548050px;}
.y156{bottom:530.560050px;}
.y199{bottom:530.898000px;}
.ye4{bottom:531.318150px;}
.ye{bottom:531.994650px;}
.y35{bottom:533.292000px;}
.ya3{bottom:534.168000px;}
.y7f{bottom:535.608000px;}
.y1f0{bottom:536.376150px;}
.y255{bottom:539.813100px;}
.y2e6{bottom:539.922000px;}
.y310{bottom:540.600000px;}
.y1d5{bottom:541.496100px;}
.y1b7{bottom:543.478200px;}
.yc0{bottom:543.966000px;}
.y105{bottom:544.500000px;}
.y131{bottom:545.633400px;}
.y20c{bottom:545.880150px;}
.y2b3{bottom:546.750000px;}
.y5a{bottom:549.366000px;}
.y295{bottom:551.934600px;}
.y174{bottom:553.330050px;}
.y227{bottom:553.354050px;}
.y155{bottom:553.366050px;}
.yd{bottom:553.738650px;}
.y198{bottom:554.154000px;}
.ye3{bottom:554.412150px;}
.y34{bottom:555.198000px;}
.y254{bottom:555.563100px;}
.y259{bottom:555.567600px;}
.ya2{bottom:556.362000px;}
.y7e{bottom:557.658000px;}
.y2e5{bottom:558.972000px;}
.y1ef{bottom:559.182150px;}
.y12d{bottom:563.064150px;}
.ybf{bottom:566.322000px;}
.y1b6{bottom:566.718150px;}
.y104{bottom:567.000000px;}
.y253{bottom:571.293450px;}
.y258{bottom:571.322100px;}
.y59{bottom:571.560000px;}
.y130{bottom:571.620900px;}
.y1d4{bottom:572.492100px;}
.yc{bottom:575.482650px;}
.y173{bottom:576.136050px;}
.y226{bottom:576.160050px;}
.y154{bottom:576.172050px;}
.y33{bottom:577.104000px;}
.y197{bottom:577.410000px;}
.y20b{bottom:577.488150px;}
.ye2{bottom:577.506150px;}
.y2e4{bottom:578.022000px;}
.y7d{bottom:579.708000px;}
.y12c{bottom:580.317150px;}
.y30f{bottom:581.850000px;}
.y1ee{bottom:581.972100px;}
.ya1{bottom:587.070000px;}
.y12f{bottom:588.822150px;}
.y103{bottom:589.500000px;}
.y2b2{bottom:591.666000px;}
.y58{bottom:593.754000px;}
.y1d3{bottom:594.992100px;}
.y2e3{bottom:597.072000px;}
.ybe{bottom:597.174000px;}
.yb{bottom:597.232650px;}
.y252{bottom:597.280950px;}
.y12b{bottom:597.570150px;}
.y1b5{bottom:598.470150px;}
.y172{bottom:598.942050px;}
.y225{bottom:598.966050px;}
.y153{bottom:598.978050px;}
.y32{bottom:599.010000px;}
.y290{bottom:599.954400px;}
.y20a{bottom:600.596100px;}
.y30e{bottom:600.600000px;}
.ye1{bottom:600.600150px;}
.y196{bottom:600.666000px;}
.ya0{bottom:609.264000px;}
.y7c{bottom:610.254000px;}
.y102{bottom:612.000000px;}
.y251{bottom:613.035450px;}
.y1ed{bottom:613.274100px;}
.y2b1{bottom:614.166000px;}
.y12e{bottom:614.809650px;}
.y57{bottom:615.948000px;}
.y2e2{bottom:616.122000px;}
.y1d2{bottom:617.492100px;}
.y28f{bottom:618.705900px;}
.y30d{bottom:619.350000px;}
.ybd{bottom:619.530000px;}
.y31{bottom:620.916000px;}
.y1b4{bottom:621.726150px;}
.y171{bottom:621.748050px;}
.y224{bottom:621.772050px;}
.y152{bottom:621.784050px;}
.ye0{bottom:623.694150px;}
.y195{bottom:623.922000px;}
.y250{bottom:628.789950px;}
.y24c{bottom:628.798950px;}
.y294{bottom:630.226050px;}
.y9f{bottom:631.458000px;}
.y209{bottom:632.204100px;}
.y7b{bottom:632.304000px;}
.y101{bottom:634.500000px;}
.y2e1{bottom:635.172000px;}
.y1ec{bottom:636.080100px;}
.y2b0{bottom:636.522000px;}
.y28e{bottom:637.457400px;}
.y30c{bottom:638.100000px;}
.y56{bottom:638.142000px;}
.y1d1{bottom:640.000050px;}
.y12a{bottom:640.810650px;}
.ya{bottom:641.482650px;}
.y30{bottom:642.822000px;}
.y24f{bottom:644.544450px;}
.y24b{bottom:644.548950px;}
.y170{bottom:644.554050px;}
.y223{bottom:644.578050px;}
.y151{bottom:644.590050px;}
.y1b3{bottom:644.982150px;}
.ydf{bottom:646.790100px;}
.y194{bottom:647.178000px;}
.y293{bottom:648.974550px;}
.y9e{bottom:653.652000px;}
.y7a{bottom:654.354000px;}
.y208{bottom:655.298100px;}
.y28d{bottom:656.208900px;}
.y30b{bottom:656.850000px;}
.y100{bottom:657.000000px;}
.y2af{bottom:658.878000px;}
.y1eb{bottom:658.886100px;}
.y9{bottom:660.082650px;}
.y24a{bottom:660.298950px;}
.y55{bottom:660.336000px;}
.y2e0{bottom:660.606000px;}
.y2f{bottom:664.728000px;}
.y129{bottom:666.798150px;}
.y16f{bottom:667.360050px;}
.y222{bottom:667.384050px;}
.y150{bottom:667.390050px;}
.y1b2{bottom:668.222100px;}
.y193{bottom:670.434000px;}
.y1d0{bottom:670.996050px;}
.ybc{bottom:672.738000px;}
.y28c{bottom:674.960400px;}
.y292{bottom:674.962050px;}
.y9d{bottom:675.846000px;}
.y249{bottom:676.048950px;}
.y24e{bottom:676.053450px;}
.y79{bottom:676.404000px;}
.yde{bottom:678.398100px;}
.y207{bottom:678.412050px;}
.yff{bottom:679.500000px;}
.y2ae{bottom:681.234000px;}
.y1ea{bottom:681.692100px;}
.y54{bottom:682.530000px;}
.y30a{bottom:686.100000px;}
.y2e{bottom:686.634000px;}
.y16e{bottom:690.166050px;}
.y14f{bottom:690.178050px;}
.y221{bottom:690.190050px;}
.y248{bottom:691.788300px;}
.y24d{bottom:691.807950px;}
.y128{bottom:692.785650px;}
.y1cf{bottom:693.496050px;}
.y192{bottom:693.690000px;}
.y291{bottom:693.698400px;}
.y28b{bottom:693.711900px;}
.ybb{bottom:695.094000px;}
.y9c{bottom:698.040000px;}
.y1b1{bottom:699.974100px;}
.ydd{bottom:701.492100px;}
.yfe{bottom:702.000000px;}
.y8{bottom:702.068550px;}
.y2ad{bottom:703.590000px;}
.y1e9{bottom:704.476050px;}
.y53{bottom:704.724000px;}
.y309{bottom:704.850000px;}
.y2df{bottom:706.206000px;}
.y78{bottom:706.950000px;}
.y2d{bottom:708.540000px;}
.y206{bottom:710.020050px;}
.y16d{bottom:712.972050px;}
.y14e{bottom:712.984050px;}
.y1ce{bottom:715.996050px;}
.y191{bottom:716.946000px;}
.yba{bottom:717.450000px;}
.y247{bottom:717.775800px;}
.y127{bottom:718.773150px;}
.y123{bottom:718.786650px;}
.y28a{bottom:719.697750px;}
.y9b{bottom:720.234000px;}
.y2de{bottom:721.506000px;}
.y1b0{bottom:723.230100px;}
.y308{bottom:723.600000px;}
.y7{bottom:724.418550px;}
.yfd{bottom:724.500000px;}
.ydc{bottom:724.606050px;}
.y2ac{bottom:725.946000px;}
.y52{bottom:726.918000px;}
.y77{bottom:729.000000px;}
.y2c{bottom:730.446000px;}
.y205{bottom:733.114050px;}
.y246{bottom:733.530300px;}
.y16c{bottom:735.778050px;}
.y220{bottom:735.784050px;}
.y14d{bottom:735.790050px;}
.y126{bottom:736.026150px;}
.y122{bottom:736.039650px;}
.y11d{bottom:736.269150px;}
.y2dd{bottom:736.806000px;}
.y1cd{bottom:738.496050px;}
.yb9{bottom:739.806000px;}
.y190{bottom:740.202000px;}
.y307{bottom:742.350000px;}
.y9a{bottom:742.428000px;}
.y286{bottom:745.685250px;}
.y1af{bottom:746.486100px;}
.y2ab{bottom:748.302000px;}
.y51{bottom:749.112000px;}
.y245{bottom:749.284800px;}
.y76{bottom:751.050000px;}
.y2dc{bottom:752.106000px;}
.y2b{bottom:752.352000px;}
.y125{bottom:753.279150px;}
.y121{bottom:753.292650px;}
.y11c{bottom:753.522150px;}
.y204{bottom:756.208050px;}
.ydb{bottom:756.214050px;}
.y16b{bottom:758.584050px;}
.y21f{bottom:758.590050px;}
.y14c{bottom:758.596050px;}
.y27f{bottom:758.680950px;}
.y1cc{bottom:760.996050px;}
.y306{bottom:761.100000px;}
.yb8{bottom:762.162000px;}
.y18f{bottom:763.458000px;}
.y285{bottom:764.432250px;}
.y289{bottom:764.436750px;}
.y99{bottom:764.622000px;}
.y244{bottom:765.033300px;}
.y2db{bottom:767.406000px;}
.yfc{bottom:769.500000px;}
.y1ae{bottom:769.732050px;}
.y6{bottom:770.154300px;}
.y124{bottom:770.532150px;}
.y120{bottom:770.545650px;}
.y2aa{bottom:770.658000px;}
.y11b{bottom:770.775150px;}
.y50{bottom:771.306000px;}
.y75{bottom:773.100000px;}
.y2a{bottom:774.258000px;}
.y27e{bottom:777.432450px;}
.y203{bottom:779.302050px;}
.yda{bottom:779.308050px;}
.y305{bottom:779.850000px;}
.y14b{bottom:781.368000px;}
.y16a{bottom:781.390050px;}
.y21e{bottom:781.396050px;}
.y2da{bottom:782.706000px;}
.y284{bottom:783.183750px;}
.y288{bottom:783.188250px;}
.y1cb{bottom:783.496050px;}
.yb7{bottom:784.518000px;}
.y18e{bottom:786.714000px;}
.y98{bottom:786.816000px;}
.y11a{bottom:788.028150px;}
.y243{bottom:791.020800px;}
.yfb{bottom:792.000000px;}
.y5{bottom:792.504300px;}
.y2a9{bottom:793.014000px;}
.y4f{bottom:793.500000px;}
.y74{bottom:795.150000px;}
.y29{bottom:796.164000px;}
.y27d{bottom:796.183950px;}
.y11f{bottom:796.533150px;}
.y2d9{bottom:798.006000px;}
.y304{bottom:798.600000px;}
.y1ad{bottom:801.484050px;}
.y283{bottom:801.933750px;}
.y287{bottom:801.939750px;}
.y202{bottom:802.396050px;}
.yd9{bottom:802.402050px;}
.y1e8{bottom:804.174000px;}
.y169{bottom:804.196050px;}
.y1ca{bottom:805.996050px;}
.y242{bottom:806.766150px;}
.y97{bottom:809.010000px;}
.y18d{bottom:809.970000px;}
.y14a{bottom:812.670000px;}
.y2d8{bottom:813.306000px;}
.yfa{bottom:814.500000px;}
.y27c{bottom:814.935450px;}
.yb6{bottom:815.370000px;}
.y4e{bottom:815.694000px;}
.y303{bottom:817.350000px;}
.y28{bottom:818.070000px;}
.y11e{bottom:822.520650px;}
.y1ac{bottom:824.740050px;}
.yd8{bottom:825.510000px;}
.y168{bottom:826.996050px;}
.y282{bottom:827.918100px;}
.y1c9{bottom:828.504000px;}
.y2d7{bottom:828.606000px;}
.y96{bottom:831.204000px;}
.y23c{bottom:832.767150px;}
.y18c{bottom:833.226000px;}
.y27b{bottom:833.686950px;}
.y149{bottom:835.476000px;}
.y302{bottom:836.100000px;}
.yf9{bottom:837.000000px;}
.yb5{bottom:837.726000px;}
.y4d{bottom:837.888000px;}
.y73{bottom:839.250000px;}
.y27{bottom:839.976000px;}
.y2d6{bottom:843.906000px;}
.y1ab{bottom:847.986000px;}
.y119{bottom:848.508150px;}
.y23b{bottom:849.264150px;}
.y95{bottom:853.398000px;}
.y281{bottom:853.905600px;}
.y301{bottom:854.850000px;}
.y18b{bottom:856.482000px;}
.yd7{bottom:857.118000px;}
.y148{bottom:858.282000px;}
.y2d5{bottom:859.206000px;}
.y4{bottom:859.500000px;}
.y4c{bottom:860.082000px;}
.y72{bottom:861.300000px;}
.y26{bottom:861.882000px;}
.y118{bottom:865.761150px;}
.y280{bottom:872.661450px;}
.y300{bottom:873.600000px;}
.y2d4{bottom:874.506000px;}
.y94{bottom:875.592000px;}
.y18a{bottom:879.738000px;}
.yd6{bottom:880.212000px;}
.y147{bottom:881.088000px;}
.yf8{bottom:882.000000px;}
.y4b{bottom:882.438000px;}
.y71{bottom:883.350000px;}
.y25{bottom:883.788000px;}
.y3{bottom:889.500000px;}
.y2d3{bottom:889.806000px;}
.y2ff{bottom:892.350000px;}
.y27a{bottom:898.648950px;}
.y189{bottom:902.994000px;}
.yd5{bottom:903.306000px;}
.y146{bottom:903.894000px;}
.yf7{bottom:904.500000px;}
.y4a{bottom:904.794000px;}
.y2d2{bottom:905.106000px;}
.y70{bottom:905.400000px;}
.y24{bottom:905.694000px;}
.y93{bottom:906.300000px;}
.y2fe{bottom:911.100000px;}
.y279{bottom:915.145950px;}
.y2{bottom:919.500000px;}
.y2d1{bottom:920.406000px;}
.y188{bottom:926.250000px;}
.yd4{bottom:926.400000px;}
.y145{bottom:926.700000px;}
.yf6{bottom:927.000000px;}
.y49{bottom:927.150000px;}
.y6f{bottom:927.450000px;}
.y23{bottom:927.600000px;}
.y92{bottom:927.900000px;}
.y2fd{bottom:930.300000px;}
.y278{bottom:931.642950px;}
.y2d0{bottom:934.950000px;}
.hf{height:24.630908px;}
.h10{height:33.117188px;}
.h7{height:37.256836px;}
.ha{height:38.416992px;}
.hb{height:38.623992px;}
.h2b{height:39.888000px;}
.h1{height:41.396484px;}
.h21{height:43.899785px;}
.h28{height:43.911785px;}
.h1e{height:43.917785px;}
.h25{height:44.694495px;}
.h24{height:44.711895px;}
.h27{height:44.717895px;}
.h29{height:44.718495px;}
.h2a{height:44.723895px;}
.h26{height:44.724495px;}
.h1c{height:44.735895px;}
.h22{height:44.736495px;}
.h1b{height:44.747895px;}
.h1d{height:44.772495px;}
.h23{height:44.807895px;}
.h1f{height:44.808495px;}
.h20{height:44.825895px;}
.h4{height:49.675781px;}
.hd{height:49.747781px;}
.h6{height:49.860000px;}
.h3{height:50.580000px;}
.h5{height:51.222656px;}
.h1a{height:51.238856px;}
.h14{height:51.262856px;}
.h17{height:51.286256px;}
.h13{height:51.286856px;}
.h16{height:51.287456px;}
.h11{height:51.294656px;}
.h18{height:51.310856px;}
.hc{height:51.334856px;}
.h19{height:51.358856px;}
.h15{height:51.382856px;}
.h12{height:51.694856px;}
.he{height:58.557047px;}
.h9{height:71.762836px;}
.h2{height:82.792969px;}
.h8{height:106.268836px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x16{left:72.126900px;}
.x6{left:82.386000px;}
.xa{left:88.753950px;}
.x22{left:97.260000px;}
.xe{left:103.680000px;}
.xb{left:110.011950px;}
.x2{left:112.500000px;}
.x12{left:117.126900px;}
.x3{left:127.381950px;}
.x10{left:128.993400px;}
.xd{left:133.761750px;}
.x5{left:135.000000px;}
.x7{left:142.263750px;}
.x17{left:146.228400px;}
.xf{left:148.641750px;}
.xc{left:155.019750px;}
.x1a{left:161.112900px;}
.x1d{left:191.228550px;}
.x20{left:206.108850px;}
.x13{left:220.253400px;}
.x14{left:235.103400px;}
.x18{left:332.582400px;}
.x1b{left:343.273800px;}
.x1c{left:346.646100px;}
.x19{left:375.971400px;}
.x1e{left:377.582550px;}
.x21{left:391.641300px;}
.x8{left:393.123750px;}
.x11{left:399.357900px;}
.x9{left:408.003750px;}
.x1f{left:420.971550px;}
.x15{left:454.923900px;}
.x1{left:635.390550px;}
@media print{
.va{vertical-align:-25.440000pt;}
.v6{vertical-align:-14.960000pt;}
.v1{vertical-align:-12.849600pt;}
.vb{vertical-align:-10.666667pt;}
.v4{vertical-align:-9.416000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:9.600000pt;}
.vc{vertical-align:10.666667pt;}
.v7{vertical-align:15.867733pt;}
.v5{vertical-align:21.141333pt;}
.v8{vertical-align:25.435200pt;}
.v2{vertical-align:30.672000pt;}
.v3{vertical-align:61.344000pt;}
.ls38{letter-spacing:-6.720000pt;}
.ls2a{letter-spacing:-6.400000pt;}
.ls6d{letter-spacing:-5.333333pt;}
.ls3e{letter-spacing:-3.968000pt;}
.ls3d{letter-spacing:-2.496000pt;}
.ls13{letter-spacing:-1.088000pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls24{letter-spacing:-0.768000pt;}
.ls5e{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls61{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls5f{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls60{letter-spacing:-0.168000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.000533pt;}
.ls4f{letter-spacing:0.001067pt;}
.ls47{letter-spacing:0.003200pt;}
.ls4c{letter-spacing:0.003733pt;}
.ls50{letter-spacing:0.005867pt;}
.ls52{letter-spacing:0.010667pt;}
.ls62{letter-spacing:0.011733pt;}
.ls40{letter-spacing:0.012267pt;}
.ls3b{letter-spacing:0.014400pt;}
.ls54{letter-spacing:0.015467pt;}
.ls43{letter-spacing:0.017067pt;}
.ls49{letter-spacing:0.017600pt;}
.ls51{letter-spacing:0.021333pt;}
.ls64{letter-spacing:0.033067pt;}
.ls5d{letter-spacing:0.035733pt;}
.ls69{letter-spacing:0.039467pt;}
.ls67{letter-spacing:0.041067pt;}
.ls63{letter-spacing:0.051200pt;}
.ls2{letter-spacing:0.064000pt;}
.ls36{letter-spacing:0.065067pt;}
.ls35{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.208000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.448000pt;}
.ls33{letter-spacing:0.452800pt;}
.ls37{letter-spacing:0.512000pt;}
.ls29{letter-spacing:0.576000pt;}
.ls26{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.704000pt;}
.lse{letter-spacing:0.768000pt;}
.ls18{letter-spacing:0.832000pt;}
.ls22{letter-spacing:0.896000pt;}
.ls27{letter-spacing:0.953600pt;}
.ls34{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:1.024000pt;}
.ls15{letter-spacing:1.088000pt;}
.ls39{letter-spacing:1.216000pt;}
.ls25{letter-spacing:1.280000pt;}
.ls3a{letter-spacing:1.344000pt;}
.ls57{letter-spacing:2.190933pt;}
.ls5a{letter-spacing:2.202133pt;}
.ls58{letter-spacing:2.202667pt;}
.ls5b{letter-spacing:2.203200pt;}
.ls59{letter-spacing:2.205867pt;}
.ls4d{letter-spacing:2.358933pt;}
.ls4a{letter-spacing:2.359467pt;}
.ls45{letter-spacing:2.369600pt;}
.ls48{letter-spacing:2.370133pt;}
.ls41{letter-spacing:2.370667pt;}
.ls42{letter-spacing:2.371200pt;}
.ls4e{letter-spacing:2.373867pt;}
.ls4b{letter-spacing:2.374400pt;}
.ls53{letter-spacing:2.374933pt;}
.ls65{letter-spacing:2.386667pt;}
.ls6a{letter-spacing:2.602667pt;}
.ls3c{letter-spacing:3.161067pt;}
.ls2e{letter-spacing:3.408000pt;}
.ls6c{letter-spacing:3.733333pt;}
.ls5{letter-spacing:4.010667pt;}
.ls20{letter-spacing:4.224000pt;}
.ls23{letter-spacing:4.544000pt;}
.ls1d{letter-spacing:6.720000pt;}
.ls1e{letter-spacing:6.986667pt;}
.ls30{letter-spacing:7.253333pt;}
.ls1{letter-spacing:7.520000pt;}
.ls19{letter-spacing:7.744000pt;}
.ls3f{letter-spacing:8.012800pt;}
.ls28{letter-spacing:8.576000pt;}
.ls0{letter-spacing:9.546667pt;}
.ls2f{letter-spacing:20.323200pt;}
.ls6b{letter-spacing:26.773333pt;}
.lsd{letter-spacing:40.128000pt;}
.ls5c{letter-spacing:71.186133pt;}
.ls56{letter-spacing:80.256000pt;}
.ls2d{letter-spacing:175.536000pt;}
.ls46{letter-spacing:240.147733pt;}
.ls55{letter-spacing:327.878933pt;}
.ls44{letter-spacing:466.797867pt;}
.ls68{letter-spacing:519.123200pt;}
.wsdf{word-spacing:-42.666667pt;}
.ws1{word-spacing:-22.506667pt;}
.ws7c{word-spacing:-18.624000pt;}
.ws34{word-spacing:-18.304000pt;}
.wsbf{word-spacing:-18.176000pt;}
.ws2{word-spacing:-17.984000pt;}
.wsc0{word-spacing:-17.728000pt;}
.wsb7{word-spacing:-17.664000pt;}
.ws96{word-spacing:-16.832000pt;}
.ws7d{word-spacing:-16.512000pt;}
.ws95{word-spacing:-16.384000pt;}
.ws7e{word-spacing:-16.256000pt;}
.ws98{word-spacing:-16.192000pt;}
.ws54{word-spacing:-16.128000pt;}
.wsa8{word-spacing:-16.064000pt;}
.ws97{word-spacing:-15.872000pt;}
.ws55{word-spacing:-15.808000pt;}
.wsa9{word-spacing:-15.744000pt;}
.wsba{word-spacing:-15.616000pt;}
.ws93{word-spacing:-15.552000pt;}
.ws94{word-spacing:-15.424000pt;}
.wse4{word-spacing:-14.986667pt;}
.wscc{word-spacing:-13.488000pt;}
.wscf{word-spacing:-13.248000pt;}
.wse0{word-spacing:-13.173333pt;}
.wsd1{word-spacing:-13.008000pt;}
.ws60{word-spacing:-12.588800pt;}
.ws7f{word-spacing:-11.989333pt;}
.wsda{word-spacing:-10.538667pt;}
.wse1{word-spacing:-10.490667pt;}
.ws76{word-spacing:-9.441600pt;}
.wsd0{word-spacing:-9.273600pt;}
.wsd2{word-spacing:-9.105600pt;}
.ws7b{word-spacing:-7.253333pt;}
.ws36{word-spacing:-6.986667pt;}
.ws35{word-spacing:-6.720000pt;}
.ws9f{word-spacing:-6.464000pt;}
.ws85{word-spacing:-6.400000pt;}
.wsa4{word-spacing:-6.208000pt;}
.wsc9{word-spacing:-6.144000pt;}
.wsa1{word-spacing:-5.632000pt;}
.wsa5{word-spacing:-5.568000pt;}
.ws91{word-spacing:-5.504000pt;}
.ws8f{word-spacing:-5.120000pt;}
.wsa3{word-spacing:-4.928000pt;}
.wsae{word-spacing:-4.608000pt;}
.wsb0{word-spacing:-4.544000pt;}
.wsdd{word-spacing:-4.224000pt;}
.wsb1{word-spacing:-4.160000pt;}
.ws7{word-spacing:-4.010667pt;}
.wse2{word-spacing:-3.733333pt;}
.ws39{word-spacing:-3.136000pt;}
.ws88{word-spacing:-2.752000pt;}
.wsb9{word-spacing:-2.432000pt;}
.wsbc{word-spacing:-2.368000pt;}
.ws89{word-spacing:-2.240000pt;}
.wsb3{word-spacing:-2.176000pt;}
.ws9d{word-spacing:-2.112000pt;}
.ws57{word-spacing:-1.920000pt;}
.ws14{word-spacing:-1.856000pt;}
.ws12{word-spacing:-1.792000pt;}
.wsab{word-spacing:-1.664000pt;}
.ws53{word-spacing:-1.600000pt;}
.wsd3{word-spacing:-1.440000pt;}
.wsbe{word-spacing:-1.344000pt;}
.wsc8{word-spacing:-1.280000pt;}
.ws30{word-spacing:-1.216000pt;}
.ws2e{word-spacing:-1.152000pt;}
.ws23{word-spacing:-1.088000pt;}
.ws8d{word-spacing:-1.024000pt;}
.wsac{word-spacing:-0.960000pt;}
.ws63{word-spacing:-0.896000pt;}
.ws4c{word-spacing:-0.832000pt;}
.ws1a{word-spacing:-0.768000pt;}
.ws2b{word-spacing:-0.704000pt;}
.ws82{word-spacing:-0.640000pt;}
.ws83{word-spacing:-0.576000pt;}
.wsa7{word-spacing:-0.512000pt;}
.ws8e{word-spacing:-0.448000pt;}
.ws3c{word-spacing:-0.384000pt;}
.ws5b{word-spacing:-0.320000pt;}
.ws20{word-spacing:-0.256000pt;}
.wse{word-spacing:-0.192000pt;}
.wsb8{word-spacing:-0.128000pt;}
.ws22{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.064000pt;}
.ws24{word-spacing:0.128000pt;}
.ws19{word-spacing:0.192000pt;}
.ws2d{word-spacing:0.256000pt;}
.ws16{word-spacing:0.266667pt;}
.ws1c{word-spacing:0.320000pt;}
.ws62{word-spacing:0.384000pt;}
.ws80{word-spacing:0.448000pt;}
.ws1b{word-spacing:0.512000pt;}
.ws84{word-spacing:0.576000pt;}
.ws1e{word-spacing:0.640000pt;}
.ws5a{word-spacing:0.704000pt;}
.wsd4{word-spacing:0.720000pt;}
.ws52{word-spacing:0.768000pt;}
.ws90{word-spacing:0.832000pt;}
.ws28{word-spacing:0.896000pt;}
.ws21{word-spacing:0.960000pt;}
.ws44{word-spacing:1.024000pt;}
.ws1f{word-spacing:1.088000pt;}
.wscb{word-spacing:1.152000pt;}
.ws81{word-spacing:1.216000pt;}
.ws31{word-spacing:1.280000pt;}
.ws4f{word-spacing:1.344000pt;}
.ws13{word-spacing:1.408000pt;}
.ws4d{word-spacing:1.472000pt;}
.wsa6{word-spacing:1.536000pt;}
.ws5{word-spacing:1.600000pt;}
.ws47{word-spacing:1.792000pt;}
.ws99{word-spacing:1.856000pt;}
.ws2a{word-spacing:1.920000pt;}
.ws8b{word-spacing:1.984000pt;}
.ws9a{word-spacing:2.048000pt;}
.ws50{word-spacing:2.112000pt;}
.ws77{word-spacing:2.133333pt;}
.ws65{word-spacing:2.240000pt;}
.wsb2{word-spacing:2.304000pt;}
.ws37{word-spacing:2.368000pt;}
.ws41{word-spacing:2.432000pt;}
.ws10{word-spacing:2.496000pt;}
.wsc{word-spacing:2.560000pt;}
.ws43{word-spacing:2.624000pt;}
.wsde{word-spacing:2.645333pt;}
.wsb4{word-spacing:2.688000pt;}
.wsc5{word-spacing:2.816000pt;}
.wsf{word-spacing:2.880000pt;}
.ws79{word-spacing:2.976000pt;}
.ws92{word-spacing:2.986667pt;}
.ws72{word-spacing:3.072000pt;}
.ws6c{word-spacing:3.136000pt;}
.ws87{word-spacing:3.200000pt;}
.ws18{word-spacing:3.264000pt;}
.ws17{word-spacing:3.306667pt;}
.ws66{word-spacing:3.328000pt;}
.ws78{word-spacing:3.360000pt;}
.wsc6{word-spacing:3.392000pt;}
.ws27{word-spacing:3.456000pt;}
.wsbb{word-spacing:3.520000pt;}
.ws5e{word-spacing:3.584000pt;}
.ws86{word-spacing:3.648000pt;}
.ws3e{word-spacing:3.712000pt;}
.ws3{word-spacing:3.733333pt;}
.ws15{word-spacing:3.776000pt;}
.ws51{word-spacing:3.840000pt;}
.ws7a{word-spacing:3.904000pt;}
.ws6{word-spacing:3.968000pt;}
.wsa2{word-spacing:4.032000pt;}
.ws9b{word-spacing:4.096000pt;}
.ws3b{word-spacing:4.160000pt;}
.ws70{word-spacing:4.224000pt;}
.ws61{word-spacing:4.352000pt;}
.ws2f{word-spacing:4.416000pt;}
.ws11{word-spacing:4.480000pt;}
.ws1d{word-spacing:4.544000pt;}
.wsc7{word-spacing:4.608000pt;}
.ws45{word-spacing:4.672000pt;}
.ws58{word-spacing:4.736000pt;}
.ws42{word-spacing:4.800000pt;}
.ws5d{word-spacing:4.992000pt;}
.wsbd{word-spacing:5.056000pt;}
.ws6f{word-spacing:5.120000pt;}
.wsdc{word-spacing:5.184000pt;}
.ws49{word-spacing:5.248000pt;}
.wsad{word-spacing:5.312000pt;}
.wse3{word-spacing:5.333333pt;}
.ws8c{word-spacing:5.376000pt;}
.ws3f{word-spacing:5.440000pt;}
.ws3a{word-spacing:5.504000pt;}
.ws5f{word-spacing:5.568000pt;}
.wsc3{word-spacing:5.632000pt;}
.ws5c{word-spacing:5.696000pt;}
.ws38{word-spacing:5.760000pt;}
.ws6e{word-spacing:5.824000pt;}
.ws8a{word-spacing:5.888000pt;}
.ws40{word-spacing:6.144000pt;}
.ws71{word-spacing:6.208000pt;}
.ws4e{word-spacing:6.272000pt;}
.ws25{word-spacing:6.336000pt;}
.ws46{word-spacing:6.400000pt;}
.wsdb{word-spacing:6.464000pt;}
.wsc1{word-spacing:6.528000pt;}
.wsaa{word-spacing:6.592000pt;}
.ws9c{word-spacing:6.720000pt;}
.ws33{word-spacing:6.784000pt;}
.ws26{word-spacing:6.848000pt;}
.ws2c{word-spacing:6.912000pt;}
.ws56{word-spacing:6.976000pt;}
.wsc4{word-spacing:7.040000pt;}
.wsaf{word-spacing:7.104000pt;}
.ws69{word-spacing:7.168000pt;}
.wsca{word-spacing:7.232000pt;}
.ws6d{word-spacing:7.296000pt;}
.wsa{word-spacing:7.360000pt;}
.ws0{word-spacing:7.445333pt;}
.ws4{word-spacing:7.466667pt;}
.ws4a{word-spacing:7.488000pt;}
.ws48{word-spacing:7.552000pt;}
.wsd{word-spacing:7.744000pt;}
.wsa0{word-spacing:7.808000pt;}
.ws59{word-spacing:7.872000pt;}
.ws3d{word-spacing:7.936000pt;}
.ws9{word-spacing:8.000000pt;}
.wsc2{word-spacing:8.064000pt;}
.wsb5{word-spacing:8.128000pt;}
.ws29{word-spacing:8.448000pt;}
.ws6b{word-spacing:8.576000pt;}
.wsd9{word-spacing:8.896000pt;}
.wsb{word-spacing:8.960000pt;}
.ws32{word-spacing:9.024000pt;}
.ws4b{word-spacing:9.088000pt;}
.wsb6{word-spacing:9.536000pt;}
.ws6a{word-spacing:10.240000pt;}
.ws68{word-spacing:10.496000pt;}
.ws64{word-spacing:11.264000pt;}
.ws67{word-spacing:11.712000pt;}
.wscd{word-spacing:42.768000pt;}
.wsce{word-spacing:54.768000pt;}
.ws74{word-spacing:114.048000pt;}
.ws75{word-spacing:138.048000pt;}
.wsd7{word-spacing:141.984000pt;}
.ws73{word-spacing:241.233600pt;}
.wsd5{word-spacing:307.248000pt;}
.wsd8{word-spacing:325.908000pt;}
.wsd6{word-spacing:491.184800pt;}
._0{margin-left:-835.898667pt;}
._15{margin-left:-16.618667pt;}
._c{margin-left:-12.833067pt;}
._4{margin-left:-10.890667pt;}
._23{margin-left:-9.380267pt;}
._11{margin-left:-7.847467pt;}
._9{margin-left:-6.251733pt;}
._1{margin-left:-5.301333pt;}
._13{margin-left:-4.354133pt;}
._8{margin-left:-3.225600pt;}
._5{margin-left:-2.133333pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._7{width:2.642133pt;}
._6{width:3.626667pt;}
._d{width:4.857600pt;}
._e{width:5.856000pt;}
._f{width:6.998400pt;}
._12{width:7.892267pt;}
._a{width:9.139200pt;}
._10{width:10.385067pt;}
._14{width:11.357867pt;}
._16{width:12.731733pt;}
._22{width:28.129867pt;}
._1d{width:39.741867pt;}
._1f{width:63.538133pt;}
._17{width:167.785067pt;}
._b{width:179.168000pt;}
._1e{width:246.957867pt;}
._1c{width:276.872533pt;}
._18{width:279.946667pt;}
._21{width:304.269867pt;}
._1b{width:322.952533pt;}
._19{width:422.061867pt;}
._1a{width:461.229867pt;}
._20{width:478.077867pt;}
.fs7{font-size:31.733333pt;}
.fs6{font-size:33.600000pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y117{bottom:104.000000pt;}
.y48{bottom:104.069333pt;}
.y1aa{bottom:105.500533pt;}
.y21{bottom:105.508133pt;}
.y144{bottom:105.715067pt;}
.yd3{bottom:105.957333pt;}
.y1e7{bottom:106.204800pt;}
.y201{bottom:106.217067pt;}
.y187{bottom:106.680933pt;}
.y23a{bottom:106.702267pt;}
.y6e{bottom:106.797867pt;}
.y2cf{bottom:106.992000pt;}
.y2fc{bottom:107.397333pt;}
.y91{bottom:107.792000pt;}
.y21d{bottom:108.114133pt;}
.yf5{bottom:108.170800pt;}
.y2a8{bottom:108.171200pt;}
.y1c8{bottom:109.075867pt;}
.yb4{bottom:109.168000pt;}
.y277{bottom:112.340933pt;}
.y167{bottom:117.333333pt;}
.y2ce{bottom:120.325333pt;}
.y6d{bottom:123.464533pt;}
.y47{bottom:123.541333pt;}
.y116{bottom:124.000000pt;}
.y2fb{bottom:124.330667pt;}
.y20{bottom:124.980133pt;}
.y143{bottom:125.587067pt;}
.yd2{bottom:125.829333pt;}
.y1a9{bottom:126.172533pt;}
.y1e6{bottom:126.204800pt;}
.y275{bottom:126.344933pt;}
.y200{bottom:126.345067pt;}
.y186{bottom:126.952933pt;}
.y239{bottom:126.974267pt;}
.y90{bottom:127.792000pt;}
.y2a7{bottom:128.299200pt;}
.y21c{bottom:128.642133pt;}
.yf4{bottom:128.698800pt;}
.yb3{bottom:128.896000pt;}
.y1c7{bottom:129.747867pt;}
.y2cd{bottom:133.658667pt;}
.y166{bottom:134.406667pt;}
.y6c{bottom:140.131200pt;}
.y274{bottom:140.339467pt;}
.y276{bottom:140.348933pt;}
.y2fa{bottom:141.264000pt;}
.y46{bottom:143.013333pt;}
.y115{bottom:144.000000pt;}
.y1f{bottom:144.308133pt;}
.y142{bottom:145.459067pt;}
.yd1{bottom:145.701333pt;}
.y1e5{bottom:146.211733pt;}
.y1ff{bottom:146.473067pt;}
.y1a8{bottom:146.844533pt;}
.y2cc{bottom:146.992000pt;}
.y185{bottom:147.224933pt;}
.y238{bottom:147.246267pt;}
.y8f{bottom:147.392000pt;}
.y2a6{bottom:148.427200pt;}
.yb2{bottom:148.624000pt;}
.y21b{bottom:149.170133pt;}
.yf3{bottom:149.226800pt;}
.y1c6{bottom:150.405733pt;}
.y6b{bottom:156.797867pt;}
.y2f9{bottom:158.197333pt;}
.y2cb{bottom:160.325333pt;}
.y45{bottom:162.485333pt;}
.y273{bottom:163.439467pt;}
.y1e{bottom:163.636133pt;}
.y114{bottom:164.000000pt;}
.y141{bottom:165.331067pt;}
.yd0{bottom:165.573333pt;}
.y1fe{bottom:166.601067pt;}
.y184{bottom:167.496933pt;}
.y1a7{bottom:167.516533pt;}
.y237{bottom:167.518267pt;}
.y165{bottom:167.528933pt;}
.yb1{bottom:168.352000pt;}
.y2a5{bottom:168.555200pt;}
.y21a{bottom:169.698133pt;}
.yf2{bottom:169.754800pt;}
.y6a{bottom:173.464533pt;}
.y2ca{bottom:173.658667pt;}
.y1e4{bottom:173.763733pt;}
.y8e{bottom:174.544000pt;}
.y2f8{bottom:175.130667pt;}
.y272{bottom:177.422133pt;}
.y1c5{bottom:178.629733pt;}
.y44{bottom:181.957333pt;}
.y1d{bottom:182.964133pt;}
.y113{bottom:184.000000pt;}
.y140{bottom:185.197733pt;}
.ycf{bottom:185.445333pt;}
.y1fd{bottom:186.729067pt;}
.y2c9{bottom:186.992000pt;}
.y183{bottom:187.768933pt;}
.y236{bottom:187.790267pt;}
.y164{bottom:187.800933pt;}
.y1a6{bottom:188.188533pt;}
.y2a4{bottom:188.683200pt;}
.y69{bottom:190.131200pt;}
.y219{bottom:190.226133pt;}
.yf1{bottom:190.282800pt;}
.y2f7{bottom:192.064000pt;}
.y1e3{bottom:193.763733pt;}
.y8d{bottom:194.144000pt;}
.yb0{bottom:195.648000pt;}
.y1c4{bottom:199.301733pt;}
.y2c8{bottom:200.325333pt;}
.y271{bottom:200.522133pt;}
.y43{bottom:201.429333pt;}
.y1c{bottom:202.292133pt;}
.y112{bottom:204.000000pt;}
.y13f{bottom:205.064400pt;}
.yce{bottom:205.317333pt;}
.y68{bottom:206.797867pt;}
.y1fc{bottom:206.857067pt;}
.y182{bottom:208.040933pt;}
.y235{bottom:208.062267pt;}
.y163{bottom:208.072933pt;}
.y2a3{bottom:208.811200pt;}
.y1a5{bottom:208.860533pt;}
.y2f6{bottom:208.997333pt;}
.yf0{bottom:210.810800pt;}
.y2c7{bottom:213.658667pt;}
.y8c{bottom:213.744000pt;}
.y1e2{bottom:213.763733pt;}
.y270{bottom:214.526133pt;}
.yaf{bottom:215.376000pt;}
.y1c3{bottom:219.973733pt;}
.y42{bottom:220.901333pt;}
.y1b{bottom:221.620133pt;}
.y111{bottom:224.000000pt;}
.ycd{bottom:225.189333pt;}
.y2f5{bottom:225.930667pt;}
.y1fb{bottom:226.985067pt;}
.y2c6{bottom:226.992000pt;}
.y181{bottom:228.312933pt;}
.y234{bottom:228.334267pt;}
.y162{bottom:228.344933pt;}
.y26f{bottom:228.530133pt;}
.y26c{bottom:228.538133pt;}
.y2a2{bottom:228.939200pt;}
.y1a4{bottom:229.532533pt;}
.y218{bottom:231.298133pt;}
.yef{bottom:231.338800pt;}
.y67{bottom:231.861333pt;}
.y8b{bottom:233.344000pt;}
.y1e1{bottom:233.763733pt;}
.yae{bottom:235.104000pt;}
.y2c5{bottom:240.325333pt;}
.y41{bottom:240.373333pt;}
.y1c2{bottom:240.631333pt;}
.y1a{bottom:240.948133pt;}
.y26e{bottom:242.534133pt;}
.y26b{bottom:242.538133pt;}
.y2f4{bottom:242.864000pt;}
.y110{bottom:244.000000pt;}
.ycc{bottom:245.061333pt;}
.y1fa{bottom:247.113067pt;}
.y180{bottom:248.584933pt;}
.y233{bottom:248.606267pt;}
.y161{bottom:248.616933pt;}
.y2a1{bottom:249.067200pt;}
.y1a3{bottom:250.204533pt;}
.y66{bottom:251.589333pt;}
.y217{bottom:251.826133pt;}
.yee{bottom:251.866800pt;}
.y13e{bottom:252.340800pt;}
.y2c4{bottom:253.658667pt;}
.y1e0{bottom:253.770800pt;}
.y26a{bottom:256.536667pt;}
.y26d{bottom:256.538133pt;}
.y2f3{bottom:259.797333pt;}
.y40{bottom:259.845333pt;}
.y19{bottom:260.276133pt;}
.y8a{bottom:260.496000pt;}
.yad{bottom:262.400000pt;}
.y10f{bottom:264.000000pt;}
.ycb{bottom:264.933333pt;}
.y2c3{bottom:266.992000pt;}
.y1f9{bottom:267.241067pt;}
.y1c1{bottom:268.855333pt;}
.y17f{bottom:268.856933pt;}
.y232{bottom:268.878267pt;}
.y160{bottom:268.888933pt;}
.y2a0{bottom:269.195200pt;}
.y1a2{bottom:270.876533pt;}
.y65{bottom:271.317333pt;}
.y13d{bottom:272.212800pt;}
.y216{bottom:272.354133pt;}
.yed{bottom:272.394800pt;}
.y2f2{bottom:276.730667pt;}
.y3f{bottom:279.317333pt;}
.y18{bottom:279.604133pt;}
.y269{bottom:279.636667pt;}
.y89{bottom:280.096000pt;}
.y2c2{bottom:280.325333pt;}
.y1df{bottom:281.322800pt;}
.yac{bottom:282.128000pt;}
.y10e{bottom:284.000000pt;}
.yca{bottom:284.805333pt;}
.y1f8{bottom:287.369067pt;}
.y17e{bottom:289.128933pt;}
.y231{bottom:289.150267pt;}
.y15f{bottom:289.160933pt;}
.y29f{bottom:289.323200pt;}
.y1c0{bottom:289.527333pt;}
.y64{bottom:291.045333pt;}
.y1a1{bottom:291.534267pt;}
.y13c{bottom:292.084800pt;}
.y215{bottom:292.882133pt;}
.yec{bottom:292.922800pt;}
.y268{bottom:293.619200pt;}
.y2c1{bottom:293.658667pt;}
.y2f1{bottom:293.664000pt;}
.y3e{bottom:298.789333pt;}
.y17{bottom:298.932133pt;}
.y88{bottom:299.696000pt;}
.y1de{bottom:301.322800pt;}
.yab{bottom:301.856000pt;}
.y10d{bottom:304.000000pt;}
.yc9{bottom:304.677333pt;}
.y2c0{bottom:306.992000pt;}
.y1f7{bottom:307.466800pt;}
.y17d{bottom:309.400933pt;}
.y230{bottom:309.422267pt;}
.y15e{bottom:309.432933pt;}
.y29e{bottom:309.451200pt;}
.y1bf{bottom:310.199333pt;}
.y2f0{bottom:310.597333pt;}
.y63{bottom:310.773333pt;}
.y13b{bottom:311.956800pt;}
.y214{bottom:313.410133pt;}
.y267{bottom:316.719200pt;}
.y16{bottom:318.260133pt;}
.y3d{bottom:318.261333pt;}
.y87{bottom:319.296000pt;}
.y1a0{bottom:319.758267pt;}
.y2bf{bottom:320.325333pt;}
.yeb{bottom:321.018800pt;}
.y1dd{bottom:321.322800pt;}
.y10c{bottom:324.000000pt;}
.yc8{bottom:324.549333pt;}
.y318{bottom:327.200000pt;}
.y2ef{bottom:327.530667pt;}
.yaa{bottom:329.152000pt;}
.y29d{bottom:329.579200pt;}
.y17c{bottom:329.672933pt;}
.y22f{bottom:329.694267pt;}
.y15d{bottom:329.704933pt;}
.y62{bottom:330.501333pt;}
.y266{bottom:330.723200pt;}
.y1be{bottom:330.835733pt;}
.y2be{bottom:333.658667pt;}
.y213{bottom:333.938133pt;}
.y1f6{bottom:335.162800pt;}
.y15{bottom:337.588133pt;}
.y3c{bottom:337.733333pt;}
.y86{bottom:338.896000pt;}
.y19f{bottom:340.430267pt;}
.y1dc{bottom:341.322800pt;}
.yea{bottom:341.546800pt;}
.y317{bottom:343.866667pt;}
.y10b{bottom:344.000000pt;}
.yc7{bottom:344.421333pt;}
.y2ee{bottom:344.464000pt;}
.y265{bottom:344.727200pt;}
.y262{bottom:344.739200pt;}
.y2bd{bottom:346.992000pt;}
.ya9{bottom:348.880000pt;}
.y29c{bottom:349.707200pt;}
.y17b{bottom:349.944933pt;}
.y22e{bottom:349.966267pt;}
.y15c{bottom:349.976933pt;}
.y61{bottom:350.229333pt;}
.y138{bottom:354.363467pt;}
.y212{bottom:354.494400pt;}
.y1f5{bottom:355.290800pt;}
.y14{bottom:356.916133pt;}
.y3b{bottom:357.205333pt;}
.y85{bottom:358.496000pt;}
.y264{bottom:358.731200pt;}
.y261{bottom:358.739200pt;}
.y1bd{bottom:359.059733pt;}
.y2bc{bottom:360.325333pt;}
.y316{bottom:360.533333pt;}
.y19e{bottom:361.102267pt;}
.y1db{bottom:361.322800pt;}
.y2ed{bottom:361.397333pt;}
.ye9{bottom:362.074800pt;}
.y10a{bottom:364.000000pt;}
.yc6{bottom:364.293333pt;}
.ya8{bottom:368.608000pt;}
.y137{bottom:369.699467pt;}
.y29b{bottom:369.835200pt;}
.y60{bottom:369.957333pt;}
.y17a{bottom:370.216933pt;}
.y22d{bottom:370.238267pt;}
.y15b{bottom:370.248933pt;}
.y260{bottom:372.735200pt;}
.y2bb{bottom:373.658667pt;}
.y13{bottom:376.244133pt;}
.y3a{bottom:376.677333pt;}
.y315{bottom:377.200000pt;}
.y84{bottom:378.096000pt;}
.y2ec{bottom:378.330667pt;}
.y1bc{bottom:379.731733pt;}
.y1da{bottom:381.322800pt;}
.y19d{bottom:381.669333pt;}
.y211{bottom:382.590400pt;}
.ye8{bottom:382.602800pt;}
.y109{bottom:384.000000pt;}
.yc5{bottom:384.165333pt;}
.y136{bottom:385.035467pt;}
.y25f{bottom:386.713867pt;}
.y241{bottom:386.729467pt;}
.y263{bottom:386.739200pt;}
.y2ba{bottom:386.992000pt;}
.ya7{bottom:388.336000pt;}
.y5f{bottom:389.685333pt;}
.y29a{bottom:389.963200pt;}
.y179{bottom:390.488933pt;}
.y22c{bottom:390.510267pt;}
.y15a{bottom:390.520933pt;}
.y2eb{bottom:395.264000pt;}
.y12{bottom:395.572133pt;}
.y1f4{bottom:395.690800pt;}
.y39{bottom:396.149333pt;}
.y83{bottom:397.696000pt;}
.y2b9{bottom:400.325333pt;}
.y13a{bottom:400.359467pt;}
.y135{bottom:400.371467pt;}
.y1bb{bottom:400.403733pt;}
.y240{bottom:400.733467pt;}
.y1d9{bottom:401.322800pt;}
.y210{bottom:403.118400pt;}
.ye7{bottom:403.130800pt;}
.y314{bottom:403.866667pt;}
.y108{bottom:404.000000pt;}
.yc4{bottom:404.037333pt;}
.y5e{bottom:409.413333pt;}
.y25e{bottom:409.813867pt;}
.y19c{bottom:409.893333pt;}
.y299{bottom:410.091200pt;}
.y178{bottom:410.760933pt;}
.y22b{bottom:410.782267pt;}
.y159{bottom:410.792933pt;}
.y2ea{bottom:412.197333pt;}
.y2b8{bottom:413.658667pt;}
.y23f{bottom:414.737467pt;}
.y11{bottom:414.900133pt;}
.y38{bottom:415.621333pt;}
.ya6{bottom:415.632000pt;}
.y139{bottom:415.695467pt;}
.y134{bottom:415.707467pt;}
.y1f3{bottom:415.962800pt;}
.y82{bottom:417.296000pt;}
.y313{bottom:420.533333pt;}
.y1ba{bottom:421.075733pt;}
.y1d8{bottom:421.322800pt;}
.y20f{bottom:423.646400pt;}
.ye6{bottom:423.658800pt;}
.y25d{bottom:423.817867pt;}
.yc3{bottom:423.909333pt;}
.y107{bottom:424.000000pt;}
.y2b7{bottom:426.992000pt;}
.y23e{bottom:428.741467pt;}
.y2e9{bottom:429.130667pt;}
.y5d{bottom:429.141333pt;}
.y298{bottom:430.219200pt;}
.y19b{bottom:430.565333pt;}
.y177{bottom:431.032933pt;}
.y22a{bottom:431.054267pt;}
.y158{bottom:431.064933pt;}
.y10{bottom:434.228133pt;}
.y37{bottom:435.093333pt;}
.ya5{bottom:435.360000pt;}
.y1f2{bottom:436.234800pt;}
.y81{bottom:436.896000pt;}
.y312{bottom:437.200000pt;}
.y25c{bottom:437.821867pt;}
.y133{bottom:438.807467pt;}
.y2b6{bottom:440.325333pt;}
.y1d7{bottom:441.322800pt;}
.y1b9{bottom:441.747733pt;}
.y23d{bottom:442.745467pt;}
.yc2{bottom:443.781333pt;}
.y20e{bottom:444.174400pt;}
.y2e8{bottom:446.064000pt;}
.y5c{bottom:448.869333pt;}
.y297{bottom:450.347200pt;}
.y19a{bottom:451.237333pt;}
.y176{bottom:451.304933pt;}
.y229{bottom:451.326267pt;}
.y157{bottom:451.336933pt;}
.ye5{bottom:451.754800pt;}
.y25b{bottom:451.825867pt;}
.y257{bottom:451.833867pt;}
.yf{bottom:453.556133pt;}
.y2b5{bottom:453.658667pt;}
.y311{bottom:453.866667pt;}
.y36{bottom:454.565333pt;}
.ya4{bottom:455.088000pt;}
.y80{bottom:456.496000pt;}
.y1f1{bottom:456.506800pt;}
.y1d6{bottom:461.322800pt;}
.y132{bottom:461.907467pt;}
.y1b8{bottom:462.419733pt;}
.y2e7{bottom:462.997333pt;}
.yc1{bottom:463.653333pt;}
.y106{bottom:464.000000pt;}
.y20d{bottom:464.702400pt;}
.y25a{bottom:465.829867pt;}
.y256{bottom:465.833867pt;}
.y2b4{bottom:466.992000pt;}
.y5b{bottom:468.597333pt;}
.y296{bottom:470.475200pt;}
.y175{bottom:471.576933pt;}
.y228{bottom:471.598267pt;}
.y156{bottom:471.608933pt;}
.y199{bottom:471.909333pt;}
.ye4{bottom:472.282800pt;}
.ye{bottom:472.884133pt;}
.y35{bottom:474.037333pt;}
.ya3{bottom:474.816000pt;}
.y7f{bottom:476.096000pt;}
.y1f0{bottom:476.778800pt;}
.y255{bottom:479.833867pt;}
.y2e6{bottom:479.930667pt;}
.y310{bottom:480.533333pt;}
.y1d5{bottom:481.329867pt;}
.y1b7{bottom:483.091733pt;}
.yc0{bottom:483.525333pt;}
.y105{bottom:484.000000pt;}
.y131{bottom:485.007467pt;}
.y20c{bottom:485.226800pt;}
.y2b3{bottom:486.000000pt;}
.y5a{bottom:488.325333pt;}
.y295{bottom:490.608533pt;}
.y174{bottom:491.848933pt;}
.y227{bottom:491.870267pt;}
.y155{bottom:491.880933pt;}
.yd{bottom:492.212133pt;}
.y198{bottom:492.581333pt;}
.ye3{bottom:492.810800pt;}
.y34{bottom:493.509333pt;}
.y254{bottom:493.833867pt;}
.y259{bottom:493.837867pt;}
.ya2{bottom:494.544000pt;}
.y7e{bottom:495.696000pt;}
.y2e5{bottom:496.864000pt;}
.y1ef{bottom:497.050800pt;}
.y12d{bottom:500.501467pt;}
.ybf{bottom:503.397333pt;}
.y1b6{bottom:503.749467pt;}
.y104{bottom:504.000000pt;}
.y253{bottom:507.816400pt;}
.y258{bottom:507.841867pt;}
.y59{bottom:508.053333pt;}
.y130{bottom:508.107467pt;}
.y1d4{bottom:508.881867pt;}
.yc{bottom:511.540133pt;}
.y173{bottom:512.120933pt;}
.y226{bottom:512.142267pt;}
.y154{bottom:512.152933pt;}
.y33{bottom:512.981333pt;}
.y197{bottom:513.253333pt;}
.y20b{bottom:513.322800pt;}
.ye2{bottom:513.338800pt;}
.y2e4{bottom:513.797333pt;}
.y7d{bottom:515.296000pt;}
.y12c{bottom:515.837467pt;}
.y30f{bottom:517.200000pt;}
.y1ee{bottom:517.308533pt;}
.ya1{bottom:521.840000pt;}
.y12f{bottom:523.397467pt;}
.y103{bottom:524.000000pt;}
.y2b2{bottom:525.925333pt;}
.y58{bottom:527.781333pt;}
.y1d3{bottom:528.881867pt;}
.y2e3{bottom:530.730667pt;}
.ybe{bottom:530.821333pt;}
.yb{bottom:530.873467pt;}
.y252{bottom:530.916400pt;}
.y12b{bottom:531.173467pt;}
.y1b5{bottom:531.973467pt;}
.y172{bottom:532.392933pt;}
.y225{bottom:532.414267pt;}
.y153{bottom:532.424933pt;}
.y32{bottom:532.453333pt;}
.y290{bottom:533.292800pt;}
.y20a{bottom:533.863200pt;}
.y30e{bottom:533.866667pt;}
.ye1{bottom:533.866800pt;}
.y196{bottom:533.925333pt;}
.ya0{bottom:541.568000pt;}
.y7c{bottom:542.448000pt;}
.y102{bottom:544.000000pt;}
.y251{bottom:544.920400pt;}
.y1ed{bottom:545.132533pt;}
.y2b1{bottom:545.925333pt;}
.y12e{bottom:546.497467pt;}
.y57{bottom:547.509333pt;}
.y2e2{bottom:547.664000pt;}
.y1d2{bottom:548.881867pt;}
.y28f{bottom:549.960800pt;}
.y30d{bottom:550.533333pt;}
.ybd{bottom:550.693333pt;}
.y31{bottom:551.925333pt;}
.y1b4{bottom:552.645467pt;}
.y171{bottom:552.664933pt;}
.y224{bottom:552.686267pt;}
.y152{bottom:552.696933pt;}
.ye0{bottom:554.394800pt;}
.y195{bottom:554.597333pt;}
.y250{bottom:558.924400pt;}
.y24c{bottom:558.932400pt;}
.y294{bottom:560.200933pt;}
.y9f{bottom:561.296000pt;}
.y209{bottom:561.959200pt;}
.y7b{bottom:562.048000pt;}
.y101{bottom:564.000000pt;}
.y2e1{bottom:564.597333pt;}
.y1ec{bottom:565.404533pt;}
.y2b0{bottom:565.797333pt;}
.y28e{bottom:566.628800pt;}
.y30c{bottom:567.200000pt;}
.y56{bottom:567.237333pt;}
.y1d1{bottom:568.888933pt;}
.y12a{bottom:569.609467pt;}
.ya{bottom:570.206800pt;}
.y30{bottom:571.397333pt;}
.y24f{bottom:572.928400pt;}
.y24b{bottom:572.932400pt;}
.y170{bottom:572.936933pt;}
.y223{bottom:572.958267pt;}
.y151{bottom:572.968933pt;}
.y1b3{bottom:573.317467pt;}
.ydf{bottom:574.924533pt;}
.y194{bottom:575.269333pt;}
.y293{bottom:576.866267pt;}
.y9e{bottom:581.024000pt;}
.y7a{bottom:581.648000pt;}
.y208{bottom:582.487200pt;}
.y28d{bottom:583.296800pt;}
.y30b{bottom:583.866667pt;}
.y100{bottom:584.000000pt;}
.y2af{bottom:585.669333pt;}
.y1eb{bottom:585.676533pt;}
.y9{bottom:586.740133pt;}
.y24a{bottom:586.932400pt;}
.y55{bottom:586.965333pt;}
.y2e0{bottom:587.205333pt;}
.y2f{bottom:590.869333pt;}
.y129{bottom:592.709467pt;}
.y16f{bottom:593.208933pt;}
.y222{bottom:593.230267pt;}
.y150{bottom:593.235600pt;}
.y1b2{bottom:593.975200pt;}
.y193{bottom:595.941333pt;}
.y1d0{bottom:596.440933pt;}
.ybc{bottom:597.989333pt;}
.y28c{bottom:599.964800pt;}
.y292{bottom:599.966267pt;}
.y9d{bottom:600.752000pt;}
.y249{bottom:600.932400pt;}
.y24e{bottom:600.936400pt;}
.y79{bottom:601.248000pt;}
.yde{bottom:603.020533pt;}
.y207{bottom:603.032933pt;}
.yff{bottom:604.000000pt;}
.y2ae{bottom:605.541333pt;}
.y1ea{bottom:605.948533pt;}
.y54{bottom:606.693333pt;}
.y30a{bottom:609.866667pt;}
.y2e{bottom:610.341333pt;}
.y16e{bottom:613.480933pt;}
.y14f{bottom:613.491600pt;}
.y221{bottom:613.502267pt;}
.y248{bottom:614.922933pt;}
.y24d{bottom:614.940400pt;}
.y128{bottom:615.809467pt;}
.y1cf{bottom:616.440933pt;}
.y192{bottom:616.613333pt;}
.y291{bottom:616.620800pt;}
.y28b{bottom:616.632800pt;}
.ybb{bottom:617.861333pt;}
.y9c{bottom:620.480000pt;}
.y1b1{bottom:622.199200pt;}
.ydd{bottom:623.548533pt;}
.yfe{bottom:624.000000pt;}
.y8{bottom:624.060933pt;}
.y2ad{bottom:625.413333pt;}
.y1e9{bottom:626.200933pt;}
.y53{bottom:626.421333pt;}
.y309{bottom:626.533333pt;}
.y2df{bottom:627.738667pt;}
.y78{bottom:628.400000pt;}
.y2d{bottom:629.813333pt;}
.y206{bottom:631.128933pt;}
.y16d{bottom:633.752933pt;}
.y14e{bottom:633.763600pt;}
.y1ce{bottom:636.440933pt;}
.y191{bottom:637.285333pt;}
.yba{bottom:637.733333pt;}
.y247{bottom:638.022933pt;}
.y127{bottom:638.909467pt;}
.y123{bottom:638.921467pt;}
.y28a{bottom:639.731333pt;}
.y9b{bottom:640.208000pt;}
.y2de{bottom:641.338667pt;}
.y1b0{bottom:642.871200pt;}
.y308{bottom:643.200000pt;}
.y7{bottom:643.927600pt;}
.yfd{bottom:644.000000pt;}
.ydc{bottom:644.094267pt;}
.y2ac{bottom:645.285333pt;}
.y52{bottom:646.149333pt;}
.y77{bottom:648.000000pt;}
.y2c{bottom:649.285333pt;}
.y205{bottom:651.656933pt;}
.y246{bottom:652.026933pt;}
.y16c{bottom:654.024933pt;}
.y220{bottom:654.030267pt;}
.y14d{bottom:654.035600pt;}
.y126{bottom:654.245467pt;}
.y122{bottom:654.257467pt;}
.y11d{bottom:654.461467pt;}
.y2dd{bottom:654.938667pt;}
.y1cd{bottom:656.440933pt;}
.yb9{bottom:657.605333pt;}
.y190{bottom:657.957333pt;}
.y307{bottom:659.866667pt;}
.y9a{bottom:659.936000pt;}
.y286{bottom:662.831333pt;}
.y1af{bottom:663.543200pt;}
.y2ab{bottom:665.157333pt;}
.y51{bottom:665.877333pt;}
.y245{bottom:666.030933pt;}
.y76{bottom:667.600000pt;}
.y2dc{bottom:668.538667pt;}
.y2b{bottom:668.757333pt;}
.y125{bottom:669.581467pt;}
.y121{bottom:669.593467pt;}
.y11c{bottom:669.797467pt;}
.y204{bottom:672.184933pt;}
.ydb{bottom:672.190267pt;}
.y16b{bottom:674.296933pt;}
.y21f{bottom:674.302267pt;}
.y14c{bottom:674.307600pt;}
.y27f{bottom:674.383067pt;}
.y1cc{bottom:676.440933pt;}
.y306{bottom:676.533333pt;}
.yb8{bottom:677.477333pt;}
.y18f{bottom:678.629333pt;}
.y285{bottom:679.495333pt;}
.y289{bottom:679.499333pt;}
.y99{bottom:679.664000pt;}
.y244{bottom:680.029600pt;}
.y2db{bottom:682.138667pt;}
.yfc{bottom:684.000000pt;}
.y1ae{bottom:684.206267pt;}
.y6{bottom:684.581600pt;}
.y124{bottom:684.917467pt;}
.y120{bottom:684.929467pt;}
.y2aa{bottom:685.029333pt;}
.y11b{bottom:685.133467pt;}
.y50{bottom:685.605333pt;}
.y75{bottom:687.200000pt;}
.y2a{bottom:688.229333pt;}
.y27e{bottom:691.051067pt;}
.y203{bottom:692.712933pt;}
.yda{bottom:692.718267pt;}
.y305{bottom:693.200000pt;}
.y14b{bottom:694.549333pt;}
.y16a{bottom:694.568933pt;}
.y21e{bottom:694.574267pt;}
.y2da{bottom:695.738667pt;}
.y284{bottom:696.163333pt;}
.y288{bottom:696.167333pt;}
.y1cb{bottom:696.440933pt;}
.yb7{bottom:697.349333pt;}
.y18e{bottom:699.301333pt;}
.y98{bottom:699.392000pt;}
.y11a{bottom:700.469467pt;}
.y243{bottom:703.129600pt;}
.yfb{bottom:704.000000pt;}
.y5{bottom:704.448267pt;}
.y2a9{bottom:704.901333pt;}
.y4f{bottom:705.333333pt;}
.y74{bottom:706.800000pt;}
.y29{bottom:707.701333pt;}
.y27d{bottom:707.719067pt;}
.y11f{bottom:708.029467pt;}
.y2d9{bottom:709.338667pt;}
.y304{bottom:709.866667pt;}
.y1ad{bottom:712.430267pt;}
.y283{bottom:712.830000pt;}
.y287{bottom:712.835333pt;}
.y202{bottom:713.240933pt;}
.yd9{bottom:713.246267pt;}
.y1e8{bottom:714.821333pt;}
.y169{bottom:714.840933pt;}
.y1ca{bottom:716.440933pt;}
.y242{bottom:717.125467pt;}
.y97{bottom:719.120000pt;}
.y18d{bottom:719.973333pt;}
.y14a{bottom:722.373333pt;}
.y2d8{bottom:722.938667pt;}
.yfa{bottom:724.000000pt;}
.y27c{bottom:724.387067pt;}
.yb6{bottom:724.773333pt;}
.y4e{bottom:725.061333pt;}
.y303{bottom:726.533333pt;}
.y28{bottom:727.173333pt;}
.y11e{bottom:731.129467pt;}
.y1ac{bottom:733.102267pt;}
.yd8{bottom:733.786667pt;}
.y168{bottom:735.107600pt;}
.y282{bottom:735.927200pt;}
.y1c9{bottom:736.448000pt;}
.y2d7{bottom:736.538667pt;}
.y96{bottom:738.848000pt;}
.y23c{bottom:740.237467pt;}
.y18c{bottom:740.645333pt;}
.y27b{bottom:741.055067pt;}
.y149{bottom:742.645333pt;}
.y302{bottom:743.200000pt;}
.yf9{bottom:744.000000pt;}
.yb5{bottom:744.645333pt;}
.y4d{bottom:744.789333pt;}
.y73{bottom:746.000000pt;}
.y27{bottom:746.645333pt;}
.y2d6{bottom:750.138667pt;}
.y1ab{bottom:753.765333pt;}
.y119{bottom:754.229467pt;}
.y23b{bottom:754.901467pt;}
.y95{bottom:758.576000pt;}
.y281{bottom:759.027200pt;}
.y301{bottom:759.866667pt;}
.y18b{bottom:761.317333pt;}
.yd7{bottom:761.882667pt;}
.y148{bottom:762.917333pt;}
.y2d5{bottom:763.738667pt;}
.y4{bottom:764.000000pt;}
.y4c{bottom:764.517333pt;}
.y72{bottom:765.600000pt;}
.y26{bottom:766.117333pt;}
.y118{bottom:769.565467pt;}
.y280{bottom:775.699067pt;}
.y300{bottom:776.533333pt;}
.y2d4{bottom:777.338667pt;}
.y94{bottom:778.304000pt;}
.y18a{bottom:781.989333pt;}
.yd6{bottom:782.410667pt;}
.y147{bottom:783.189333pt;}
.yf8{bottom:784.000000pt;}
.y4b{bottom:784.389333pt;}
.y71{bottom:785.200000pt;}
.y25{bottom:785.589333pt;}
.y3{bottom:790.666667pt;}
.y2d3{bottom:790.938667pt;}
.y2ff{bottom:793.200000pt;}
.y27a{bottom:798.799067pt;}
.y189{bottom:802.661333pt;}
.yd5{bottom:802.938667pt;}
.y146{bottom:803.461333pt;}
.yf7{bottom:804.000000pt;}
.y4a{bottom:804.261333pt;}
.y2d2{bottom:804.538667pt;}
.y70{bottom:804.800000pt;}
.y24{bottom:805.061333pt;}
.y93{bottom:805.600000pt;}
.y2fe{bottom:809.866667pt;}
.y279{bottom:813.463067pt;}
.y2{bottom:817.333333pt;}
.y2d1{bottom:818.138667pt;}
.y188{bottom:823.333333pt;}
.yd4{bottom:823.466667pt;}
.y145{bottom:823.733333pt;}
.yf6{bottom:824.000000pt;}
.y49{bottom:824.133333pt;}
.y6f{bottom:824.400000pt;}
.y23{bottom:824.533333pt;}
.y92{bottom:824.800000pt;}
.y2fd{bottom:826.933333pt;}
.y278{bottom:828.127067pt;}
.y2d0{bottom:831.066667pt;}
.hf{height:21.894141pt;}
.h10{height:29.437500pt;}
.h7{height:33.117188pt;}
.ha{height:34.148438pt;}
.hb{height:34.332438pt;}
.h2b{height:35.456000pt;}
.h1{height:36.796875pt;}
.h21{height:39.022031pt;}
.h28{height:39.032698pt;}
.h1e{height:39.038031pt;}
.h25{height:39.728440pt;}
.h24{height:39.743906pt;}
.h27{height:39.749240pt;}
.h29{height:39.749773pt;}
.h2a{height:39.754573pt;}
.h26{height:39.755106pt;}
.h1c{height:39.765240pt;}
.h22{height:39.765773pt;}
.h1b{height:39.775906pt;}
.h1d{height:39.797773pt;}
.h23{height:39.829240pt;}
.h1f{height:39.829773pt;}
.h20{height:39.845240pt;}
.h4{height:44.156250pt;}
.hd{height:44.220250pt;}
.h6{height:44.320000pt;}
.h3{height:44.960000pt;}
.h5{height:45.531250pt;}
.h1a{height:45.545650pt;}
.h14{height:45.566983pt;}
.h17{height:45.587783pt;}
.h13{height:45.588317pt;}
.h16{height:45.588850pt;}
.h11{height:45.595250pt;}
.h18{height:45.609650pt;}
.hc{height:45.630983pt;}
.h19{height:45.652317pt;}
.h15{height:45.673650pt;}
.h12{height:45.950983pt;}
.he{height:52.050708pt;}
.h9{height:63.789188pt;}
.h2{height:73.593750pt;}
.h8{height:94.461188pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x16{left:64.112800pt;}
.x6{left:73.232000pt;}
.xa{left:78.892400pt;}
.x22{left:86.453333pt;}
.xe{left:92.160000pt;}
.xb{left:97.788400pt;}
.x2{left:100.000000pt;}
.x12{left:104.112800pt;}
.x3{left:113.228400pt;}
.x10{left:114.660800pt;}
.xd{left:118.899333pt;}
.x5{left:120.000000pt;}
.x7{left:126.456667pt;}
.x17{left:129.980800pt;}
.xf{left:132.126000pt;}
.xc{left:137.795333pt;}
.x1a{left:143.211467pt;}
.x1d{left:169.980933pt;}
.x20{left:183.207867pt;}
.x13{left:195.780800pt;}
.x14{left:208.980800pt;}
.x18{left:295.628800pt;}
.x1b{left:305.132267pt;}
.x1c{left:308.129867pt;}
.x19{left:334.196800pt;}
.x1e{left:335.628933pt;}
.x21{left:348.125600pt;}
.x8{left:349.443333pt;}
.x11{left:354.984800pt;}
.x9{left:362.670000pt;}
.x1f{left:374.196933pt;}
.x15{left:404.376800pt;}
.x1{left:564.791600pt;}
}




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