
    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_f635f6410279fdfd66f2425a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6b6179641565058f1b74e49a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a188044444bffc3c74b96c0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_eb45d1aa527da89d9ab6fd16.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_fc7a32548af904d4bb33b75d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9ca11f0463aaaa8177fe6c77.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9258fecd05f8123cbf3e56b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c7746eae250b48c9badac316.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_41418cfed9f64c405d0cd821.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-33.516000px;}
.va{vertical-align:-25.032000px;}
.v2{vertical-align:-21.701400px;}
.v4{vertical-align:-11.697000px;}
.v8{vertical-align:-9.562800px;}
.v7{vertical-align:-8.297400px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.620000px;}
.v9{vertical-align:9.357600px;}
.v3{vertical-align:28.230000px;}
.v1{vertical-align:30.381600px;}
.v5{vertical-align:32.976000px;}
.ls5e{letter-spacing:-4.416000px;}
.ls57{letter-spacing:-3.864000px;}
.ls9b{letter-spacing:-2.880000px;}
.ls63{letter-spacing:-2.520000px;}
.ls4f{letter-spacing:-1.776000px;}
.ls26{letter-spacing:-1.500000px;}
.ls2{letter-spacing:-0.780000px;}
.ls49{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.480000px;}
.ls27{letter-spacing:-0.300000px;}
.ls2a{letter-spacing:-0.240000px;}
.ls29{letter-spacing:-0.180000px;}
.ls92{letter-spacing:-0.144000px;}
.ls28{letter-spacing:-0.120000px;}
.ls93{letter-spacing:-0.096000px;}
.ls2b{letter-spacing:-0.060000px;}
.ls59{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004140px;}
.ls43{letter-spacing:0.040800px;}
.ls56{letter-spacing:0.048000px;}
.ls44{letter-spacing:0.060000px;}
.ls7b{letter-spacing:0.096000px;}
.ls48{letter-spacing:0.120000px;}
.ls95{letter-spacing:0.144000px;}
.ls31{letter-spacing:0.180000px;}
.ls58{letter-spacing:0.192000px;}
.lsa{letter-spacing:0.240000px;}
.ls83{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.300000px;}
.ls85{letter-spacing:0.336000px;}
.ls35{letter-spacing:0.341400px;}
.ls1a{letter-spacing:0.360000px;}
.ls7c{letter-spacing:0.384000px;}
.ls5{letter-spacing:0.420000px;}
.ls71{letter-spacing:0.432000px;}
.lse{letter-spacing:0.480000px;}
.ls8f{letter-spacing:0.528000px;}
.ls7{letter-spacing:0.540000px;}
.ls37{letter-spacing:0.553800px;}
.ls73{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.600000px;}
.ls82{letter-spacing:0.624000px;}
.ls1c{letter-spacing:0.660000px;}
.ls7e{letter-spacing:0.672000px;}
.ls34{letter-spacing:0.694800px;}
.ls6{letter-spacing:0.720000px;}
.ls75{letter-spacing:0.768000px;}
.ls2e{letter-spacing:0.780000px;}
.ls4e{letter-spacing:0.816000px;}
.ls96{letter-spacing:0.829800px;}
.ls13{letter-spacing:0.840000px;}
.ls86{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.900000px;}
.ls70{letter-spacing:0.912000px;}
.ls25{letter-spacing:0.960000px;}
.ls8a{letter-spacing:1.008000px;}
.ls16{letter-spacing:1.020000px;}
.ls84{letter-spacing:1.056000px;}
.ls9{letter-spacing:1.080000px;}
.ls98{letter-spacing:1.104000px;}
.ls36{letter-spacing:1.140000px;}
.ls87{letter-spacing:1.152000px;}
.ls2d{letter-spacing:1.200000px;}
.ls7f{letter-spacing:1.248000px;}
.ls30{letter-spacing:1.260000px;}
.ls21{letter-spacing:1.320000px;}
.ls91{letter-spacing:1.344000px;}
.ls60{letter-spacing:1.380000px;}
.ls89{letter-spacing:1.392000px;}
.ls5c{letter-spacing:1.436400px;}
.lsb{letter-spacing:1.440000px;}
.ls72{letter-spacing:1.488000px;}
.ls19{letter-spacing:1.500000px;}
.ls32{letter-spacing:1.513800px;}
.ls76{letter-spacing:1.536000px;}
.ls3b{letter-spacing:1.560000px;}
.ls74{letter-spacing:1.584000px;}
.ls4{letter-spacing:1.620000px;}
.ls7d{letter-spacing:1.632000px;}
.ls17{letter-spacing:1.680000px;}
.ls12{letter-spacing:1.740000px;}
.ls77{letter-spacing:1.776000px;}
.ls1f{letter-spacing:1.800000px;}
.ls8e{letter-spacing:1.824000px;}
.ls40{letter-spacing:1.860000px;}
.ls79{letter-spacing:1.872000px;}
.ls24{letter-spacing:1.920000px;}
.ls8c{letter-spacing:1.968000px;}
.ls18{letter-spacing:1.980000px;}
.lsf{letter-spacing:2.040000px;}
.ls90{letter-spacing:2.064000px;}
.ls39{letter-spacing:2.100000px;}
.ls9a{letter-spacing:2.112000px;}
.ls8{letter-spacing:2.160000px;}
.ls7a{letter-spacing:2.208000px;}
.ls1d{letter-spacing:2.220000px;}
.ls14{letter-spacing:2.280000px;}
.ls78{letter-spacing:2.304000px;}
.ls67{letter-spacing:2.340000px;}
.ls47{letter-spacing:2.352000px;}
.ls3c{letter-spacing:2.400000px;}
.ls81{letter-spacing:2.448000px;}
.ls15{letter-spacing:2.460000px;}
.ls6a{letter-spacing:2.520000px;}
.ls1e{letter-spacing:2.580000px;}
.ls4b{letter-spacing:2.640000px;}
.ls6b{letter-spacing:2.700000px;}
.ls1b{letter-spacing:2.760000px;}
.ls94{letter-spacing:2.784000px;}
.ls22{letter-spacing:2.820000px;}
.ls65{letter-spacing:2.880000px;}
.ls23{letter-spacing:2.940000px;}
.ls8d{letter-spacing:2.976000px;}
.ls41{letter-spacing:3.060000px;}
.ls5a{letter-spacing:3.120000px;}
.ls80{letter-spacing:3.168000px;}
.ls64{letter-spacing:3.180000px;}
.ls20{letter-spacing:3.240000px;}
.ls46{letter-spacing:3.300000px;}
.ls8b{letter-spacing:3.312000px;}
.ls5f{letter-spacing:3.360000px;}
.ls3f{letter-spacing:3.420000px;}
.ls51{letter-spacing:3.480000px;}
.ls3{letter-spacing:3.540000px;}
.ls4c{letter-spacing:3.600000px;}
.ls33{letter-spacing:3.720000px;}
.ls53{letter-spacing:3.780000px;}
.ls6c{letter-spacing:3.840000px;}
.ls50{letter-spacing:3.900000px;}
.ls10{letter-spacing:3.960000px;}
.ls99{letter-spacing:4.032000px;}
.ls69{letter-spacing:4.080000px;}
.ls3a{letter-spacing:4.200000px;}
.ls38{letter-spacing:4.260000px;}
.ls4a{letter-spacing:4.320000px;}
.ls68{letter-spacing:4.440000px;}
.ls97{letter-spacing:4.464000px;}
.ls5b{letter-spacing:4.500000px;}
.ls3e{letter-spacing:4.620000px;}
.ls11{letter-spacing:4.740000px;}
.ls66{letter-spacing:4.800000px;}
.ls61{letter-spacing:4.860000px;}
.ls52{letter-spacing:4.920000px;}
.ls88{letter-spacing:5.136000px;}
.ls3d{letter-spacing:5.280000px;}
.ls45{letter-spacing:5.520000px;}
.ls6f{letter-spacing:5.700000px;}
.ls6e{letter-spacing:5.760000px;}
.ls42{letter-spacing:7.260000px;}
.ls6d{letter-spacing:8.820000px;}
.ls62{letter-spacing:160.441200px;}
.ls54{letter-spacing:180.890400px;}
.ls55{letter-spacing:209.160000px;}
.ls4d{letter-spacing:384.192000px;}
.ls5d{letter-spacing:607.011000px;}
.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;}
}
.ws41{word-spacing:-370.704000px;}
.ws8{word-spacing:-17.460000px;}
.ws7{word-spacing:-17.280000px;}
.ws2c{word-spacing:-17.160000px;}
.ws1{word-spacing:-16.680000px;}
.wse2{word-spacing:-16.032000px;}
.ws9{word-spacing:-15.600000px;}
.ws2b{word-spacing:-15.420000px;}
.wsde{word-spacing:-15.168000px;}
.ws2d{word-spacing:-15.060000px;}
.ws6{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.940000px;}
.wsb3{word-spacing:-14.880000px;}
.wsdd{word-spacing:-14.784000px;}
.wsdf{word-spacing:-14.448000px;}
.wsb5{word-spacing:-14.208000px;}
.wsc8{word-spacing:-13.920000px;}
.wsc6{word-spacing:-13.824000px;}
.wsb4{word-spacing:-13.776000px;}
.wsc2{word-spacing:-13.632000px;}
.wsb2{word-spacing:-13.488000px;}
.wsc1{word-spacing:-13.440000px;}
.ws3{word-spacing:-13.344000px;}
.wsb1{word-spacing:-12.912000px;}
.wsc9{word-spacing:-12.768000px;}
.wsc3{word-spacing:-12.720000px;}
.wsc5{word-spacing:-12.576000px;}
.wsc7{word-spacing:-12.528000px;}
.ws2{word-spacing:-12.510000px;}
.wsb0{word-spacing:-12.432000px;}
.wsc4{word-spacing:-12.288000px;}
.wse1{word-spacing:-12.144000px;}
.ws3c{word-spacing:-12.000000px;}
.ws69{word-spacing:-10.500000px;}
.ws0{word-spacing:-10.210662px;}
.wse0{word-spacing:-9.120000px;}
.ws22{word-spacing:-8.745000px;}
.wsef{word-spacing:-4.512000px;}
.wsf0{word-spacing:-4.032000px;}
.wsd4{word-spacing:-3.312000px;}
.wsb6{word-spacing:-3.300000px;}
.ws61{word-spacing:-3.240000px;}
.wsd6{word-spacing:-2.976000px;}
.ws5{word-spacing:-2.886000px;}
.wse3{word-spacing:-2.784000px;}
.ws83{word-spacing:-2.700000px;}
.wscd{word-spacing:-2.640000px;}
.ws1c{word-spacing:-2.220000px;}
.wsbe{word-spacing:-2.208000px;}
.wsa5{word-spacing:-2.160000px;}
.wsf2{word-spacing:-2.112000px;}
.ws60{word-spacing:-2.100000px;}
.wsd5{word-spacing:-1.968000px;}
.wsda{word-spacing:-1.920000px;}
.wse4{word-spacing:-1.872000px;}
.wsd8{word-spacing:-1.824000px;}
.wsbd{word-spacing:-1.776000px;}
.ws1d{word-spacing:-1.740000px;}
.wsca{word-spacing:-1.440000px;}
.wsd3{word-spacing:-1.392000px;}
.wsdc{word-spacing:-1.344000px;}
.ws34{word-spacing:-1.200000px;}
.wsd2{word-spacing:-1.152000px;}
.ws28{word-spacing:-1.140000px;}
.ws33{word-spacing:-1.080000px;}
.wseb{word-spacing:-1.056000px;}
.ws11{word-spacing:-1.020000px;}
.ws5c{word-spacing:-0.960000px;}
.wsb9{word-spacing:-0.912000px;}
.ws25{word-spacing:-0.840000px;}
.ws43{word-spacing:-0.816000px;}
.wsbc{word-spacing:-0.768000px;}
.ws82{word-spacing:-0.720000px;}
.wsf1{word-spacing:-0.672000px;}
.wsab{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.600000px;}
.ws32{word-spacing:-0.540000px;}
.ws16{word-spacing:-0.480000px;}
.wsd7{word-spacing:-0.432000px;}
.wsec{word-spacing:-0.384000px;}
.ws38{word-spacing:-0.360000px;}
.wsd1{word-spacing:-0.336000px;}
.wsa4{word-spacing:-0.300000px;}
.wsce{word-spacing:-0.288000px;}
.ws5f{word-spacing:-0.240000px;}
.ws76{word-spacing:-0.192000px;}
.ws42{word-spacing:-0.180000px;}
.wsee{word-spacing:-0.144000px;}
.wsa2{word-spacing:-0.120000px;}
.wsea{word-spacing:-0.096000px;}
.ws71{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws31{word-spacing:0.060000px;}
.wsd9{word-spacing:0.096000px;}
.wsac{word-spacing:0.120000px;}
.wscb{word-spacing:0.144000px;}
.ws5d{word-spacing:0.180000px;}
.ws74{word-spacing:0.192000px;}
.ws27{word-spacing:0.240000px;}
.ws23{word-spacing:0.300000px;}
.wsbb{word-spacing:0.336000px;}
.ws10{word-spacing:0.360000px;}
.wse8{word-spacing:0.384000px;}
.ws15{word-spacing:0.420000px;}
.wsd0{word-spacing:0.672000px;}
.ws37{word-spacing:0.780000px;}
.wsed{word-spacing:0.816000px;}
.wsbf{word-spacing:0.960000px;}
.wsba{word-spacing:1.008000px;}
.ws85{word-spacing:1.140000px;}
.wsaf{word-spacing:1.200000px;}
.ws2f{word-spacing:1.260000px;}
.wsf{word-spacing:1.320000px;}
.wse6{word-spacing:1.344000px;}
.wscc{word-spacing:1.488000px;}
.ws77{word-spacing:1.536000px;}
.wsa9{word-spacing:1.560000px;}
.ws2e{word-spacing:1.620000px;}
.wsa1{word-spacing:1.776000px;}
.ws21{word-spacing:1.860000px;}
.ws35{word-spacing:1.920000px;}
.wsc0{word-spacing:1.968000px;}
.ws12{word-spacing:1.980000px;}
.wsa6{word-spacing:2.100000px;}
.wse{word-spacing:2.280000px;}
.wse9{word-spacing:2.304000px;}
.wsa7{word-spacing:2.340000px;}
.ws2a{word-spacing:2.400000px;}
.wsa0{word-spacing:2.520000px;}
.ws5e{word-spacing:2.580000px;}
.ws29{word-spacing:2.700000px;}
.ws5a{word-spacing:2.760000px;}
.ws1f{word-spacing:2.820000px;}
.ws24{word-spacing:2.880000px;}
.ws5b{word-spacing:3.060000px;}
.wsdb{word-spacing:3.072000px;}
.wsad{word-spacing:3.120000px;}
.ws18{word-spacing:3.180000px;}
.wse5{word-spacing:3.216000px;}
.ws44{word-spacing:3.264000px;}
.ws19{word-spacing:3.300000px;}
.ws17{word-spacing:3.420000px;}
.ws73{word-spacing:3.456000px;}
.wsa8{word-spacing:3.480000px;}
.ws3a{word-spacing:3.504000px;}
.wscf{word-spacing:3.552000px;}
.ws84{word-spacing:3.600000px;}
.ws36{word-spacing:3.660000px;}
.ws72{word-spacing:3.696000px;}
.ws1a{word-spacing:3.780000px;}
.ws86{word-spacing:3.792000px;}
.ws20{word-spacing:3.840000px;}
.wse7{word-spacing:3.888000px;}
.wsd{word-spacing:3.900000px;}
.ws75{word-spacing:3.936000px;}
.wsae{word-spacing:3.960000px;}
.ws39{word-spacing:3.984000px;}
.ws1e{word-spacing:4.260000px;}
.ws1b{word-spacing:4.320000px;}
.ws30{word-spacing:4.560000px;}
.ws26{word-spacing:4.620000px;}
.ws14{word-spacing:4.680000px;}
.wsa3{word-spacing:4.800000px;}
.wsaa{word-spacing:4.860000px;}
.wsc{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.wsb7{word-spacing:5.460000px;}
.wsb8{word-spacing:5.520000px;}
.ws50{word-spacing:16.590000px;}
.ws46{word-spacing:18.228000px;}
.ws45{word-spacing:21.714000px;}
.ws53{word-spacing:27.090000px;}
.ws47{word-spacing:30.618000px;}
.ws8e{word-spacing:35.574000px;}
.ws6b{word-spacing:41.076000px;}
.ws91{word-spacing:41.874000px;}
.ws90{word-spacing:46.074000px;}
.ws6e{word-spacing:47.040000px;}
.ws89{word-spacing:47.628000px;}
.ws56{word-spacing:48.090000px;}
.ws67{word-spacing:49.907400px;}
.ws65{word-spacing:50.820000px;}
.ws8d{word-spacing:56.574000px;}
.ws9e{word-spacing:57.330000px;}
.ws99{word-spacing:58.086000px;}
.ws4b{word-spacing:58.590000px;}
.ws87{word-spacing:64.218000px;}
.ws9b{word-spacing:65.898000px;}
.ws98{word-spacing:67.074000px;}
.ws9c{word-spacing:67.793400px;}
.ws95{word-spacing:67.830000px;}
.ws9a{word-spacing:68.292000px;}
.ws8f{word-spacing:68.586000px;}
.ws66{word-spacing:69.090000px;}
.ws4a{word-spacing:73.122000px;}
.ws96{word-spacing:77.574000px;}
.ws93{word-spacing:78.330000px;}
.ws9d{word-spacing:78.372000px;}
.ws55{word-spacing:79.590000px;}
.ws54{word-spacing:80.052000px;}
.ws4f{word-spacing:83.622000px;}
.ws92{word-spacing:88.074000px;}
.ws63{word-spacing:90.090000px;}
.ws8c{word-spacing:94.374000px;}
.ws52{word-spacing:95.214000px;}
.ws97{word-spacing:98.574000px;}
.ws3b{word-spacing:98.688000px;}
.ws51{word-spacing:104.202000px;}
.ws57{word-spacing:111.972000px;}
.ws88{word-spacing:112.518000px;}
.ws4c{word-spacing:113.190000px;}
.ws4e{word-spacing:119.364000px;}
.ws59{word-spacing:121.338000px;}
.ws49{word-spacing:128.352000px;}
.ws4d{word-spacing:144.942000px;}
.ws6a{word-spacing:147.294000px;}
.ws48{word-spacing:147.630000px;}
.ws64{word-spacing:149.646000px;}
.ws9f{word-spacing:164.213400px;}
.ws68{word-spacing:165.984000px;}
.ws6d{word-spacing:168.336000px;}
.ws70{word-spacing:170.646000px;}
.ws6c{word-spacing:172.998000px;}
.ws62{word-spacing:173.250000px;}
.ws8b{word-spacing:173.586000px;}
.ws58{word-spacing:175.308000px;}
.ws8a{word-spacing:190.134000px;}
.ws6f{word-spacing:193.956000px;}
.ws94{word-spacing:215.754000px;}
.ws3f{word-spacing:222.960000px;}
.ws7e{word-spacing:251.664000px;}
.ws81{word-spacing:252.960000px;}
.ws7c{word-spacing:271.200000px;}
.ws7a{word-spacing:292.512000px;}
.ws79{word-spacing:297.888000px;}
.ws7d{word-spacing:301.200000px;}
.ws80{word-spacing:302.496000px;}
.ws40{word-spacing:318.624000px;}
.ws3d{word-spacing:372.192000px;}
.ws3e{word-spacing:385.680000px;}
.ws78{word-spacing:495.744000px;}
.ws7b{word-spacing:568.992000px;}
.ws7f{word-spacing:598.272000px;}
._b{margin-left:-2898.096000px;}
._1d{margin-left:-2874.288000px;}
._17{margin-left:-383.418000px;}
._c{margin-left:-7.581000px;}
._1e{margin-left:-6.501000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.140000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.239000px;}
._5{width:1.050000px;}
._7{width:2.100000px;}
._a{width:3.360000px;}
._6{width:4.740000px;}
._8{width:6.156000px;}
._9{width:7.254000px;}
._1f{width:8.802000px;}
._37{width:26.460000px;}
._3b{width:28.728000px;}
._49{width:31.080000px;}
._38{width:34.285986px;}
._34{width:35.700000px;}
._33{width:37.464000px;}
._98{width:39.871986px;}
._4c{width:42.616014px;}
._48{width:43.890000px;}
._29{width:46.326000px;}
._35{width:48.328014px;}
._46{width:50.820000px;}
._97{width:52.542000px;}
._6a{width:53.844000px;}
._21{width:56.070000px;}
._64{width:57.469986px;}
._2a{width:58.477986px;}
._2{width:60.214014px;}
._22{width:62.076000px;}
._47{width:66.625986px;}
._60{width:68.589000px;}
._69{width:69.864000px;}
._6c{width:70.938000px;}
._4f{width:71.946000px;}
._5e{width:73.962000px;}
._2c{width:75.810000px;}
._2d{width:77.154000px;}
._9e{width:78.411000px;}
._24{width:79.590000px;}
._57{width:80.947986px;}
._aa{width:83.428800px;}
._45{width:85.932000px;}
._32{width:87.654000px;}
._94{width:88.938000px;}
._52{width:90.174000px;}
._23{width:91.224000px;}
._a9{width:92.694000px;}
._2b{width:94.290000px;}
._31{width:95.634000px;}
._62{width:97.356000px;}
._61{width:98.865000px;}
._3d{width:100.771986px;}
._a0{width:101.896014px;}
._30{width:103.614000px;}
._56{width:105.714000px;}
._4b{width:107.646000px;}
._59{width:108.654000px;}
._6b{width:111.090000px;}
._39{width:112.840014px;}
._5f{width:113.946000px;}
._5c{width:116.251986px;}
._3f{width:118.146000px;}
._3e{width:120.120000px;}
._4d{width:122.556000px;}
._3a{width:123.690000px;}
._42{width:128.016000px;}
._2f{width:129.024000px;}
._5a{width:130.057986px;}
._58{width:131.485986px;}
._2e{width:132.972000px;}
._9d{width:134.106000px;}
._51{width:135.576000px;}
._4e{width:137.160000px;}
._36{width:138.852000px;}
._40{width:140.154000px;}
._70{width:141.194028px;}
._53{width:143.220000px;}
._28{width:144.228000px;}
._44{width:145.446000px;}
._43{width:147.000000px;}
._50{width:149.086014px;}
._ac{width:150.298986px;}
._55{width:151.507986px;}
._9f{width:154.014000px;}
._54{width:155.904000px;}
._25{width:157.290000px;}
._a5{width:158.658000px;}
._a2{width:160.793028px;}
._6d{width:162.636000px;}
._41{width:164.472000px;}
._4a{width:166.894014px;}
._a7{width:168.630000px;}
._6f{width:169.722000px;}
._d{width:170.976000px;}
._5b{width:172.128000px;}
._e{width:174.144000px;}
._18{width:175.824000px;}
._63{width:178.024014px;}
._a1{width:180.684000px;}
._95{width:182.784000px;}
._a8{width:184.338000px;}
._15{width:186.144000px;}
._9c{width:187.992000px;}
._9a{width:189.504000px;}
._a6{width:191.067000px;}
._66{width:193.158000px;}
._ab{width:196.879986px;}
._9b{width:200.634000px;}
._5d{width:204.792000px;}
._65{width:206.136000px;}
._67{width:207.218028px;}
._26{width:208.782000px;}
._a4{width:210.000000px;}
._3c{width:211.806000px;}
._6e{width:214.116000px;}
._a3{width:216.972000px;}
._11{width:218.976000px;}
._14{width:222.144000px;}
._96{width:225.792000px;}
._12{width:234.144000px;}
._93{width:236.292000px;}
._b2{width:237.972000px;}
._27{width:240.492000px;}
._68{width:241.668000px;}
._ad{width:247.338000px;}
._b0{width:249.648000px;}
._99{width:254.310000px;}
._af{width:256.620000px;}
._89{width:260.160000px;}
._b1{width:261.282000px;}
._74{width:262.704000px;}
._81{width:264.144000px;}
._ae{width:265.986000px;}
._84{width:270.870600px;}
._75{width:272.160000px;}
._78{width:277.680000px;}
._91{width:282.768000px;}
._7d{width:284.502000px;}
._8a{width:299.373600px;}
._72{width:308.544000px;}
._76{width:312.720000px;}
._f{width:314.160000px;}
._19{width:315.606000px;}
._79{width:318.720000px;}
._7e{width:323.856000px;}
._13{width:326.160000px;}
._73{width:368.544000px;}
._71{width:369.840000px;}
._1c{width:384.192000px;}
._1a{width:386.496000px;}
._16{width:397.680000px;}
._10{width:409.680000px;}
._20{width:455.994000px;}
._92{width:507.024000px;}
._87{width:570.384000px;}
._7b{width:580.992000px;}
._88{width:589.008000px;}
._80{width:591.696000px;}
._77{width:594.288000px;}
._85{width:596.976000px;}
._7f{width:599.664000px;}
._83{width:618.336000px;}
._8b{width:621.024000px;}
._90{width:623.664000px;}
._86{width:626.352000px;}
._7c{width:628.992000px;}
._1b{width:632.304000px;}
._82{width:634.320000px;}
._8e{width:637.008000px;}
._7a{width:642.336000px;}
._8d{width:644.976000px;}
._8f{width:650.304000px;}
._8c{width:655.680000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:24.486000px;}
.fs5{font-size:26.235000px;}
.fsc{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2a{bottom:47.777250px;}
.y294{bottom:80.263500px;}
.y1db{bottom:83.038200px;}
.y252{bottom:83.121900px;}
.yc8{bottom:83.236050px;}
.y91{bottom:83.566650px;}
.y200{bottom:83.635350px;}
.y1f0{bottom:83.770350px;}
.y5f{bottom:83.772600px;}
.y21d{bottom:83.912100px;}
.yc5{bottom:83.920350px;}
.y1a4{bottom:84.387300px;}
.yf4{bottom:85.174350px;}
.y173{bottom:85.291650px;}
.y27{bottom:88.029450px;}
.y12e{bottom:88.143450px;}
.y293{bottom:95.263500px;}
.y16a{bottom:95.355600px;}
.y251{bottom:98.121900px;}
.yc7{bottom:98.980050px;}
.y90{bottom:99.310650px;}
.y1da{bottom:99.538200px;}
.y1a3{bottom:100.887300px;}
.y172{bottom:101.035650px;}
.y1ff{bottom:101.635350px;}
.yf3{bottom:101.674350px;}
.y1ef{bottom:101.770350px;}
.y5e{bottom:101.772600px;}
.y21c{bottom:101.912100px;}
.yc4{bottom:101.920350px;}
.y26{bottom:103.023000px;}
.y12d{bottom:104.166450px;}
.y292{bottom:110.263500px;}
.y169{bottom:111.855600px;}
.y250{bottom:113.121900px;}
.yc6{bottom:114.724050px;}
.y1d9{bottom:116.038200px;}
.y171{bottom:116.779650px;}
.yf2{bottom:118.174350px;}
.y1fe{bottom:119.635350px;}
.y1ee{bottom:119.770350px;}
.y5d{bottom:119.772600px;}
.y21b{bottom:119.912100px;}
.yc3{bottom:119.920350px;}
.y12c{bottom:120.189450px;}
.y291{bottom:125.263500px;}
.y1a2{bottom:126.399300px;}
.y24f{bottom:128.121900px;}
.y168{bottom:128.355600px;}
.y170{bottom:132.523650px;}
.y1d8{bottom:132.538200px;}
.y12b{bottom:136.221600px;}
.y21a{bottom:137.507100px;}
.y1fd{bottom:137.635350px;}
.y1ed{bottom:137.770350px;}
.y5c{bottom:137.772600px;}
.yc2{bottom:137.920350px;}
.y290{bottom:140.263500px;}
.y1a1{bottom:142.647300px;}
.y24e{bottom:143.121900px;}
.yf1{bottom:143.686350px;}
.y167{bottom:144.855600px;}
.y16f{bottom:148.267650px;}
.y1d7{bottom:149.038200px;}
.y12a{bottom:152.244600px;}
.y28f{bottom:155.263500px;}
.y1fc{bottom:155.635350px;}
.y1ec{bottom:155.770350px;}
.y5b{bottom:155.772600px;}
.yc1{bottom:155.920350px;}
.y24d{bottom:158.121900px;}
.y1a0{bottom:158.895300px;}
.yf0{bottom:160.005750px;}
.y166{bottom:161.355600px;}
.y16e{bottom:164.011650px;}
.y129{bottom:168.267600px;}
.y28e{bottom:170.263500px;}
.y24c{bottom:173.121900px;}
.y1fb{bottom:173.635350px;}
.y1eb{bottom:173.770350px;}
.y5a{bottom:173.772600px;}
.y219{bottom:173.912100px;}
.yc0{bottom:173.920350px;}
.y1d6{bottom:174.289050px;}
.y19f{bottom:175.143300px;}
.yef{bottom:176.253750px;}
.y165{bottom:177.855600px;}
.y16d{bottom:179.755650px;}
.y128{bottom:184.290600px;}
.y28d{bottom:185.263500px;}
.y24b{bottom:188.121900px;}
.y1d5{bottom:189.041550px;}
.y19e{bottom:191.391300px;}
.y1fa{bottom:191.635350px;}
.y1ea{bottom:191.770350px;}
.y59{bottom:191.772600px;}
.y218{bottom:191.912100px;}
.ybf{bottom:191.920350px;}
.yee{bottom:192.501750px;}
.y16c{bottom:195.499650px;}
.y28c{bottom:200.263500px;}
.y127{bottom:200.313600px;}
.y24a{bottom:203.121900px;}
.y1d4{bottom:203.794050px;}
.y164{bottom:205.261800px;}
.y19d{bottom:207.639300px;}
.yed{bottom:208.749750px;}
.y217{bottom:209.507100px;}
.y1f9{bottom:209.635350px;}
.y1e9{bottom:209.770350px;}
.y58{bottom:209.772600px;}
.ybe{bottom:209.920350px;}
.y16b{bottom:211.243650px;}
.y28b{bottom:215.263500px;}
.y126{bottom:216.336600px;}
.y249{bottom:218.121900px;}
.y1d3{bottom:218.546550px;}
.y163{bottom:221.284800px;}
.y19c{bottom:223.887300px;}
.yec{bottom:224.997750px;}
.y1f8{bottom:227.635350px;}
.y1e8{bottom:227.770350px;}
.y57{bottom:227.772600px;}
.ybd{bottom:227.920350px;}
.y28a{bottom:230.263500px;}
.y125{bottom:232.359600px;}
.y248{bottom:233.121900px;}
.y1d2{bottom:233.293200px;}
.y162{bottom:237.307800px;}
.y19b{bottom:240.135300px;}
.yeb{bottom:241.245750px;}
.y289{bottom:245.263500px;}
.y1f7{bottom:245.635350px;}
.y1e7{bottom:245.770350px;}
.y56{bottom:245.772600px;}
.y216{bottom:245.912100px;}
.ybc{bottom:245.920350px;}
.y1d1{bottom:248.045700px;}
.y247{bottom:248.121900px;}
.y124{bottom:248.382600px;}
.y161{bottom:253.330800px;}
.y19a{bottom:256.383300px;}
.yea{bottom:257.493750px;}
.y288{bottom:260.263500px;}
.y1d0{bottom:262.798200px;}
.y246{bottom:263.121900px;}
.y1f6{bottom:263.635350px;}
.y1e6{bottom:263.770350px;}
.y55{bottom:263.772600px;}
.y215{bottom:263.912100px;}
.ybb{bottom:263.920350px;}
.y25{bottom:264.054900px;}
.y123{bottom:264.405600px;}
.y160{bottom:269.353800px;}
.y199{bottom:272.631300px;}
.ye9{bottom:273.741750px;}
.y287{bottom:275.263500px;}
.y1cf{bottom:277.550700px;}
.y245{bottom:278.121900px;}
.y1f5{bottom:281.635350px;}
.y1e5{bottom:281.770350px;}
.y54{bottom:281.772600px;}
.y214{bottom:281.912100px;}
.yba{bottom:281.920350px;}
.y24{bottom:282.064200px;}
.y15f{bottom:285.376800px;}
.y198{bottom:288.879300px;}
.ye8{bottom:289.989750px;}
.y286{bottom:290.263500px;}
.y1ce{bottom:292.303200px;}
.y244{bottom:293.121900px;}
.y122{bottom:296.168100px;}
.y1f4{bottom:299.635350px;}
.y1e4{bottom:299.770350px;}
.y53{bottom:299.772600px;}
.y213{bottom:299.912100px;}
.yb9{bottom:299.920350px;}
.y15e{bottom:301.399800px;}
.y11f{bottom:304.557600px;}
.y197{bottom:305.143200px;}
.y285{bottom:305.263500px;}
.ye7{bottom:306.237750px;}
.y1cd{bottom:307.055700px;}
.y243{bottom:308.121900px;}
.y23{bottom:309.409200px;}
.y11c{bottom:312.065100px;}
.y15d{bottom:317.468400px;}
.y1f3{bottom:317.635350px;}
.y1e3{bottom:317.770350px;}
.y52{bottom:317.772600px;}
.y212{bottom:317.912100px;}
.yb8{bottom:317.920350px;}
.y11e{bottom:319.562100px;}
.y11b{bottom:319.572600px;}
.y284{bottom:320.263500px;}
.y196{bottom:321.391200px;}
.y1cc{bottom:321.808200px;}
.ye6{bottom:322.485750px;}
.y242{bottom:323.121900px;}
.y22{bottom:327.409200px;}
.y121{bottom:327.930600px;}
.y15c{bottom:333.491400px;}
.y11d{bottom:334.566600px;}
.y283{bottom:335.263500px;}
.y120{bottom:335.438100px;}
.y1f2{bottom:335.635350px;}
.y1e2{bottom:335.770350px;}
.y51{bottom:335.772600px;}
.y211{bottom:335.912100px;}
.yb7{bottom:335.920350px;}
.y1cb{bottom:336.560700px;}
.y195{bottom:337.639200px;}
.y241{bottom:338.121900px;}
.ye5{bottom:338.733750px;}
.y21{bottom:345.409200px;}
.y15b{bottom:349.514400px;}
.y282{bottom:350.263500px;}
.y1ca{bottom:351.313200px;}
.y240{bottom:353.121900px;}
.y1e1{bottom:353.770350px;}
.y50{bottom:353.772600px;}
.y194{bottom:353.887200px;}
.y210{bottom:353.912100px;}
.yb6{bottom:353.920350px;}
.ye4{bottom:354.981750px;}
.y20{bottom:363.409200px;}
.y281{bottom:365.263500px;}
.y15a{bottom:365.537400px;}
.y1c9{bottom:366.065700px;}
.y23f{bottom:368.121900px;}
.y193{bottom:370.186500px;}
.ye3{bottom:371.229750px;}
.y1f1{bottom:371.230350px;}
.y1e0{bottom:371.770350px;}
.y4f{bottom:371.772600px;}
.y20f{bottom:371.912100px;}
.yb5{bottom:371.920350px;}
.y11a{bottom:376.210350px;}
.y280{bottom:380.263500px;}
.y1c8{bottom:380.818200px;}
.y1f{bottom:381.409200px;}
.y159{bottom:381.560400px;}
.y23e{bottom:383.121900px;}
.y192{bottom:386.434500px;}
.ye2{bottom:387.477750px;}
.y1df{bottom:389.770350px;}
.y4e{bottom:389.772600px;}
.y20e{bottom:389.912100px;}
.yb4{bottom:389.920350px;}
.y27f{bottom:395.263500px;}
.y1c7{bottom:395.567550px;}
.y119{bottom:395.710350px;}
.y158{bottom:397.583400px;}
.y23d{bottom:398.121900px;}
.y1e{bottom:399.409200px;}
.y191{bottom:402.682500px;}
.ye1{bottom:403.725750px;}
.y1de{bottom:407.770350px;}
.y4d{bottom:407.772600px;}
.y20d{bottom:407.912100px;}
.yb3{bottom:407.920350px;}
.y27e{bottom:410.263500px;}
.y1c6{bottom:410.320050px;}
.y23c{bottom:413.121900px;}
.y157{bottom:413.606400px;}
.y1d{bottom:417.409200px;}
.y190{bottom:418.930500px;}
.ye0{bottom:419.973750px;}
.y1c5{bottom:425.072550px;}
.y27d{bottom:425.263500px;}
.y1dd{bottom:425.770350px;}
.y4c{bottom:425.772600px;}
.y20c{bottom:425.912100px;}
.yb2{bottom:425.920350px;}
.y23b{bottom:428.121900px;}
.y156{bottom:429.629400px;}
.y18f{bottom:435.178500px;}
.y1c{bottom:435.409200px;}
.ydf{bottom:436.221750px;}
.y1c4{bottom:439.825050px;}
.y27c{bottom:440.263500px;}
.y23a{bottom:443.121900px;}
.yf8{bottom:443.770350px;}
.y4b{bottom:443.772600px;}
.y118{bottom:443.905350px;}
.y20b{bottom:443.912100px;}
.y155{bottom:445.652400px;}
.y18e{bottom:451.426500px;}
.yde{bottom:452.531100px;}
.y1b{bottom:453.409200px;}
.y1c3{bottom:454.577550px;}
.y27b{bottom:455.263500px;}
.y239{bottom:458.121900px;}
.yb1{bottom:461.515350px;}
.y154{bottom:461.716500px;}
.yf7{bottom:461.770350px;}
.y4a{bottom:461.772600px;}
.y117{bottom:461.905350px;}
.y20a{bottom:461.912100px;}
.y18d{bottom:467.674500px;}
.ydd{bottom:468.779100px;}
.y1c2{bottom:469.330050px;}
.y27a{bottom:470.263500px;}
.y1a{bottom:471.409200px;}
.y238{bottom:473.121900px;}
.y153{bottom:477.739500px;}
.yf6{bottom:479.770350px;}
.y49{bottom:479.772600px;}
.y116{bottom:479.905350px;}
.y209{bottom:479.920350px;}
.y18c{bottom:483.922500px;}
.y1c1{bottom:484.079400px;}
.ydc{bottom:485.027100px;}
.y279{bottom:485.263500px;}
.y237{bottom:488.121900px;}
.y19{bottom:489.409200px;}
.y152{bottom:493.762500px;}
.yb0{bottom:497.770350px;}
.y48{bottom:497.772600px;}
.y115{bottom:497.905350px;}
.y208{bottom:497.920350px;}
.y1c0{bottom:498.831900px;}
.y18b{bottom:500.170500px;}
.y278{bottom:500.263500px;}
.ydb{bottom:501.275100px;}
.y236{bottom:503.121900px;}
.y18{bottom:507.409200px;}
.y151{bottom:509.785500px;}
.y1bf{bottom:513.584400px;}
.y277{bottom:515.263500px;}
.yaf{bottom:515.770350px;}
.y47{bottom:515.772600px;}
.y114{bottom:515.905350px;}
.y207{bottom:515.920350px;}
.y18a{bottom:516.418500px;}
.yda{bottom:517.523100px;}
.y235{bottom:518.121900px;}
.y17{bottom:525.409200px;}
.y150{bottom:525.808500px;}
.y1be{bottom:528.336900px;}
.y276{bottom:530.263500px;}
.y189{bottom:532.666500px;}
.y234{bottom:533.121900px;}
.y64{bottom:533.367600px;}
.yae{bottom:533.770350px;}
.yd9{bottom:533.771100px;}
.y46{bottom:533.772600px;}
.y113{bottom:533.905350px;}
.y206{bottom:533.920350px;}
.y14f{bottom:541.831500px;}
.y1bd{bottom:543.089400px;}
.y16{bottom:543.409200px;}
.y275{bottom:545.263500px;}
.y233{bottom:548.121900px;}
.y188{bottom:548.914500px;}
.yd8{bottom:550.019100px;}
.y63{bottom:551.367600px;}
.yad{bottom:551.770350px;}
.y45{bottom:551.772600px;}
.y112{bottom:551.905350px;}
.y205{bottom:551.920350px;}
.y1bc{bottom:557.841900px;}
.y14e{bottom:557.854500px;}
.y274{bottom:560.263500px;}
.y15{bottom:561.409200px;}
.y232{bottom:563.121900px;}
.y187{bottom:565.162500px;}
.yd7{bottom:566.267100px;}
.y8f{bottom:569.770350px;}
.y44{bottom:569.772600px;}
.y111{bottom:569.905350px;}
.y7e{bottom:569.912100px;}
.y204{bottom:569.920350px;}
.y1bb{bottom:572.594400px;}
.y14d{bottom:573.877500px;}
.y273{bottom:575.263500px;}
.y231{bottom:578.121900px;}
.y14{bottom:579.409200px;}
.y186{bottom:581.410500px;}
.yd6{bottom:582.515100px;}
.y62{bottom:587.232600px;}
.y1ba{bottom:587.320800px;}
.y8e{bottom:587.770350px;}
.y43{bottom:587.772600px;}
.y110{bottom:587.905350px;}
.y7d{bottom:587.912100px;}
.y203{bottom:587.920350px;}
.y14c{bottom:589.900500px;}
.y272{bottom:590.263500px;}
.y230{bottom:593.121900px;}
.y13{bottom:597.409200px;}
.yd5{bottom:598.763100px;}
.y1b9{bottom:602.073300px;}
.y271{bottom:605.263500px;}
.y8d{bottom:605.770350px;}
.y42{bottom:605.772600px;}
.yac{bottom:605.785350px;}
.y10f{bottom:605.905350px;}
.y7c{bottom:605.912100px;}
.y202{bottom:605.920350px;}
.y14b{bottom:605.923500px;}
.y22f{bottom:608.121900px;}
.y185{bottom:612.922500px;}
.yd4{bottom:615.011100px;}
.y12{bottom:615.409200px;}
.y1b8{bottom:616.825800px;}
.y270{bottom:620.263500px;}
.y14a{bottom:621.973800px;}
.y22e{bottom:623.121900px;}
.y8c{bottom:623.770350px;}
.y41{bottom:623.772600px;}
.yab{bottom:623.785350px;}
.y10e{bottom:623.905350px;}
.y7b{bottom:623.920350px;}
.yd3{bottom:631.259100px;}
.y1b7{bottom:631.578300px;}
.y11{bottom:633.409200px;}
.y26f{bottom:635.263500px;}
.y149{bottom:637.996800px;}
.y22d{bottom:638.121900px;}
.y8b{bottom:641.770350px;}
.y40{bottom:641.772600px;}
.yaa{bottom:641.785350px;}
.y10d{bottom:641.905350px;}
.y7a{bottom:641.920350px;}
.y1b6{bottom:646.330800px;}
.yd2{bottom:647.507100px;}
.y184{bottom:647.822100px;}
.y26e{bottom:650.263500px;}
.y10{bottom:651.409200px;}
.y22c{bottom:653.121900px;}
.y148{bottom:654.019800px;}
.y8a{bottom:659.770350px;}
.y3f{bottom:659.772600px;}
.ya9{bottom:659.785350px;}
.y10c{bottom:659.905350px;}
.y79{bottom:659.920350px;}
.y1b5{bottom:661.083300px;}
.yd1{bottom:663.755100px;}
.y26d{bottom:665.263500px;}
.y183{bottom:667.322100px;}
.y22b{bottom:668.121900px;}
.yf{bottom:669.409200px;}
.y147{bottom:670.042800px;}
.y1b4{bottom:675.835800px;}
.y93{bottom:677.515350px;}
.y89{bottom:677.770350px;}
.y3e{bottom:677.772600px;}
.ya8{bottom:677.785350px;}
.y10b{bottom:677.905350px;}
.y78{bottom:677.920350px;}
.yd0{bottom:680.003100px;}
.y26c{bottom:680.263500px;}
.y22a{bottom:683.121900px;}
.y146{bottom:686.065800px;}
.ye{bottom:687.409200px;}
.y1b3{bottom:690.588300px;}
.y26b{bottom:695.263500px;}
.y88{bottom:695.770350px;}
.y3d{bottom:695.772600px;}
.ya7{bottom:695.785350px;}
.y10a{bottom:695.905350px;}
.y77{bottom:695.920350px;}
.y229{bottom:698.121900px;}
.y145{bottom:702.116100px;}
.y1b2{bottom:705.340800px;}
.ycf{bottom:709.007100px;}
.y26a{bottom:710.263500px;}
.y87{bottom:713.770350px;}
.y3c{bottom:713.772600px;}
.ya6{bottom:713.785350px;}
.y109{bottom:713.905350px;}
.y182{bottom:713.912100px;}
.y76{bottom:713.920350px;}
.y144{bottom:718.139100px;}
.ycb{bottom:723.503100px;}
.y269{bottom:725.263500px;}
.yce{bottom:725.507100px;}
.y228{bottom:731.237100px;}
.yca{bottom:731.759100px;}
.y86{bottom:731.770350px;}
.y3b{bottom:731.772600px;}
.ya5{bottom:731.785350px;}
.y108{bottom:731.905350px;}
.y181{bottom:731.912100px;}
.y75{bottom:731.920350px;}
.yd{bottom:732.567300px;}
.y1b1{bottom:732.850800px;}
.y143{bottom:734.162100px;}
.ycc{bottom:740.003100px;}
.y268{bottom:740.263500px;}
.yc{bottom:745.018050px;}
.y1ae{bottom:746.616300px;}
.y85{bottom:749.770350px;}
.y3a{bottom:749.772600px;}
.ya4{bottom:749.785350px;}
.y107{bottom:749.905350px;}
.y180{bottom:749.912100px;}
.y74{bottom:749.920350px;}
.y142{bottom:750.185100px;}
.y1ad{bottom:754.123800px;}
.ycd{bottom:754.511100px;}
.y267{bottom:755.263500px;}
.y1b0{bottom:760.360800px;}
.y141{bottom:766.208100px;}
.y84{bottom:767.770350px;}
.y39{bottom:767.772600px;}
.ya3{bottom:767.785350px;}
.y1af{bottom:767.868300px;}
.y106{bottom:767.905350px;}
.y17f{bottom:767.912100px;}
.y73{bottom:767.920350px;}
.y266{bottom:770.263500px;}
.yb{bottom:776.733600px;}
.y140{bottom:782.231100px;}
.y265{bottom:785.263500px;}
.y83{bottom:785.770350px;}
.y38{bottom:785.772600px;}
.y227{bottom:785.777100px;}
.ya2{bottom:785.785350px;}
.y105{bottom:785.905350px;}
.y176{bottom:785.920350px;}
.yc9{bottom:786.910350px;}
.ya{bottom:795.658950px;}
.y13f{bottom:798.265200px;}
.y264{bottom:800.263500px;}
.y72{bottom:803.515350px;}
.y9{bottom:803.733600px;}
.y82{bottom:803.770350px;}
.y37{bottom:803.772600px;}
.y226{bottom:803.777100px;}
.ya1{bottom:803.785350px;}
.y104{bottom:803.905350px;}
.y17e{bottom:803.920350px;}
.y1ac{bottom:806.515350px;}
.y13e{bottom:814.288200px;}
.y263{bottom:815.263500px;}
.y71{bottom:821.515350px;}
.y81{bottom:821.770350px;}
.y36{bottom:821.772600px;}
.y225{bottom:821.777100px;}
.ya0{bottom:821.785350px;}
.y103{bottom:821.905350px;}
.y17d{bottom:821.920350px;}
.y8{bottom:822.658950px;}
.y1ab{bottom:826.015350px;}
.y262{bottom:830.263500px;}
.y13d{bottom:830.311200px;}
.y224{bottom:839.372100px;}
.y175{bottom:839.515350px;}
.y80{bottom:839.770350px;}
.y35{bottom:839.772600px;}
.y9f{bottom:839.785350px;}
.y102{bottom:839.905350px;}
.y17c{bottom:839.920350px;}
.y261{bottom:845.263500px;}
.y13c{bottom:846.334200px;}
.y7{bottom:851.380950px;}
.y70{bottom:857.770350px;}
.y34{bottom:857.772600px;}
.y9e{bottom:857.785350px;}
.y101{bottom:857.905350px;}
.y17b{bottom:857.920350px;}
.y260{bottom:860.263500px;}
.y13b{bottom:862.357200px;}
.y25f{bottom:875.263500px;}
.y223{bottom:875.372100px;}
.y1aa{bottom:875.635350px;}
.y6f{bottom:875.770350px;}
.y33{bottom:875.772600px;}
.y9d{bottom:875.785350px;}
.y100{bottom:875.905350px;}
.y17a{bottom:875.920350px;}
.y13a{bottom:878.380200px;}
.y25e{bottom:890.263500px;}
.y1a9{bottom:893.635350px;}
.y6e{bottom:893.770350px;}
.y32{bottom:893.772600px;}
.y9c{bottom:893.785350px;}
.yff{bottom:893.905350px;}
.y179{bottom:893.920350px;}
.y139{bottom:894.403200px;}
.y6{bottom:897.543600px;}
.y25d{bottom:905.263500px;}
.y138{bottom:910.426200px;}
.y201{bottom:911.515350px;}
.y1a8{bottom:911.635350px;}
.y6d{bottom:911.770350px;}
.y31{bottom:911.772600px;}
.y222{bottom:911.777100px;}
.y9b{bottom:911.785350px;}
.yfe{bottom:911.905350px;}
.y178{bottom:911.920350px;}
.y25c{bottom:920.263500px;}
.y137{bottom:926.449200px;}
.y1a7{bottom:929.635350px;}
.y6c{bottom:929.770350px;}
.y30{bottom:929.772600px;}
.y221{bottom:929.777100px;}
.y9a{bottom:929.785350px;}
.yfd{bottom:929.905350px;}
.y5{bottom:934.004400px;}
.y25b{bottom:935.263500px;}
.y220{bottom:947.372100px;}
.y177{bottom:947.515350px;}
.y6b{bottom:947.770350px;}
.y2f{bottom:947.772600px;}
.y99{bottom:947.785350px;}
.yfc{bottom:947.905350px;}
.y25a{bottom:950.263500px;}
.y136{bottom:957.833700px;}
.y1a6{bottom:965.230350px;}
.y259{bottom:965.263500px;}
.y6a{bottom:965.770350px;}
.y2e{bottom:965.772600px;}
.y98{bottom:965.785350px;}
.y133{bottom:966.223200px;}
.y4{bottom:970.465200px;}
.y130{bottom:973.730700px;}
.y258{bottom:980.263500px;}
.y132{bottom:981.227700px;}
.y12f{bottom:981.238200px;}
.yfb{bottom:983.500350px;}
.y69{bottom:983.770350px;}
.y2d{bottom:983.772600px;}
.y21f{bottom:983.777100px;}
.y97{bottom:983.785350px;}
.y135{bottom:989.596200px;}
.y257{bottom:995.263500px;}
.y131{bottom:996.232200px;}
.y134{bottom:997.103700px;}
.y21e{bottom:1001.372100px;}
.yfa{bottom:1001.500350px;}
.y68{bottom:1001.770350px;}
.y2c{bottom:1001.772600px;}
.y96{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y256{bottom:1010.263500px;}
.y67{bottom:1019.770350px;}
.y61{bottom:1019.772600px;}
.y95{bottom:1019.785350px;}
.y255{bottom:1025.263500px;}
.yf9{bottom:1037.365350px;}
.y2b{bottom:1037.367600px;}
.y66{bottom:1037.770350px;}
.y60{bottom:1037.772600px;}
.y7f{bottom:1037.777100px;}
.y94{bottom:1037.785350px;}
.y254{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y253{bottom:1132.413900px;}
.y1dc{bottom:1132.414200px;}
.yf5{bottom:1132.414350px;}
.y65{bottom:1132.418700px;}
.y92{bottom:1132.421700px;}
.y295{bottom:1132.423500px;}
.y1a5{bottom:1132.455300px;}
.y174{bottom:1132.471650px;}
.y29{bottom:1136.092500px;}
.y28{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h19{height:29.162109px;}
.h2{height:30.577148px;}
.hc{height:32.761230px;}
.h7{height:32.805176px;}
.hb{height:32.815976px;}
.h16{height:33.328125px;}
.he{height:34.945312px;}
.hd{height:34.992188px;}
.h18{height:36.852539px;}
.h1a{height:36.865139px;}
.h1b{height:36.875939px;}
.h10{height:41.660156px;}
.h14{height:42.117188px;}
.h9{height:43.681641px;}
.ha{height:43.740234px;}
.hf{height:52.646484px;}
.h1c{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h11{height:58.922900px;}
.h12{height:58.928900px;}
.h13{height:58.955900px;}
.h17{height:66.840539px;}
.h15{height:75.093188px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:76.535400px;}
.x22{left:78.661350px;}
.x6{left:96.094500px;}
.x1{left:97.795200px;}
.x13{left:99.921300px;}
.x41{left:102.047250px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x43{left:123.307050px;}
.x3{left:125.439150px;}
.xf{left:131.815350px;}
.x23{left:135.991350px;}
.x2c{left:138.616350px;}
.x3a{left:141.073350px;}
.x2b{left:142.154850px;}
.x36{left:153.838800px;}
.x2d{left:157.251300px;}
.x35{left:159.844800px;}
.x14{left:163.005300px;}
.x25{left:178.663350px;}
.x24{left:185.950350px;}
.x26{left:188.575350px;}
.x5{left:191.338500px;}
.x39{left:198.875400px;}
.x2f{left:199.923300px;}
.x2e{left:207.210300px;}
.x30{left:209.835300px;}
.x16{left:217.053300px;}
.x15{left:223.041300px;}
.x27{left:237.284850px;}
.x3d{left:251.323350px;}
.x31{left:258.544800px;}
.x2a{left:274.717350px;}
.x34{left:295.977300px;}
.x18{left:304.197300px;}
.x3b{left:312.695850px;}
.x28{left:329.705850px;}
.x17{left:332.661300px;}
.x32{left:350.965800px;}
.x1a{left:401.913300px;}
.x19{left:434.709300px;}
.x7{left:455.041500px;}
.xa{left:457.073550px;}
.x10{left:478.344750px;}
.x42{left:482.615250px;}
.xb{left:491.093550px;}
.x40{left:503.858550px;}
.x1c{left:508.293300px;}
.x11{left:512.359200px;}
.xc{left:525.263550px;}
.x1b{left:529.845300px;}
.x3c{left:537.290850px;}
.x29{left:541.543350px;}
.x33{left:562.803300px;}
.x3e{left:570.684600px;}
.x21{left:591.650400px;}
.x3f{left:596.092800px;}
.x1e{left:606.009300px;}
.x1d{left:631.893300px;}
.xe{left:663.492300px;}
.x2{left:693.365400px;}
.x20{left:709.113300px;}
.x37{left:721.720650px;}
.xd{left:728.391600px;}
.x1f{left:740.325300px;}
.x38{left:743.868600px;}
.x12{left:749.651400px;}
@media print{
.v6{vertical-align:-29.792000pt;}
.va{vertical-align:-22.250667pt;}
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-10.397333pt;}
.v8{vertical-align:-8.500267pt;}
.v7{vertical-align:-7.375467pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.440000pt;}
.v9{vertical-align:8.317867pt;}
.v3{vertical-align:25.093333pt;}
.v1{vertical-align:27.005867pt;}
.v5{vertical-align:29.312000pt;}
.ls5e{letter-spacing:-3.925333pt;}
.ls57{letter-spacing:-3.434667pt;}
.ls9b{letter-spacing:-2.560000pt;}
.ls63{letter-spacing:-2.240000pt;}
.ls4f{letter-spacing:-1.578667pt;}
.ls26{letter-spacing:-1.333333pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls49{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.426667pt;}
.ls27{letter-spacing:-0.266667pt;}
.ls2a{letter-spacing:-0.213333pt;}
.ls29{letter-spacing:-0.160000pt;}
.ls92{letter-spacing:-0.128000pt;}
.ls28{letter-spacing:-0.106667pt;}
.ls93{letter-spacing:-0.085333pt;}
.ls2b{letter-spacing:-0.053333pt;}
.ls59{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003680pt;}
.ls43{letter-spacing:0.036267pt;}
.ls56{letter-spacing:0.042667pt;}
.ls44{letter-spacing:0.053333pt;}
.ls7b{letter-spacing:0.085333pt;}
.ls48{letter-spacing:0.106667pt;}
.ls95{letter-spacing:0.128000pt;}
.ls31{letter-spacing:0.160000pt;}
.ls58{letter-spacing:0.170667pt;}
.lsa{letter-spacing:0.213333pt;}
.ls83{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.266667pt;}
.ls85{letter-spacing:0.298667pt;}
.ls35{letter-spacing:0.303467pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls7c{letter-spacing:0.341333pt;}
.ls5{letter-spacing:0.373333pt;}
.ls71{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.426667pt;}
.ls8f{letter-spacing:0.469333pt;}
.ls7{letter-spacing:0.480000pt;}
.ls37{letter-spacing:0.492267pt;}
.ls73{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls82{letter-spacing:0.554667pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls7e{letter-spacing:0.597333pt;}
.ls34{letter-spacing:0.617600pt;}
.ls6{letter-spacing:0.640000pt;}
.ls75{letter-spacing:0.682667pt;}
.ls2e{letter-spacing:0.693333pt;}
.ls4e{letter-spacing:0.725333pt;}
.ls96{letter-spacing:0.737600pt;}
.ls13{letter-spacing:0.746667pt;}
.ls86{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls70{letter-spacing:0.810667pt;}
.ls25{letter-spacing:0.853333pt;}
.ls8a{letter-spacing:0.896000pt;}
.ls16{letter-spacing:0.906667pt;}
.ls84{letter-spacing:0.938667pt;}
.ls9{letter-spacing:0.960000pt;}
.ls98{letter-spacing:0.981333pt;}
.ls36{letter-spacing:1.013333pt;}
.ls87{letter-spacing:1.024000pt;}
.ls2d{letter-spacing:1.066667pt;}
.ls7f{letter-spacing:1.109333pt;}
.ls30{letter-spacing:1.120000pt;}
.ls21{letter-spacing:1.173333pt;}
.ls91{letter-spacing:1.194667pt;}
.ls60{letter-spacing:1.226667pt;}
.ls89{letter-spacing:1.237333pt;}
.ls5c{letter-spacing:1.276800pt;}
.lsb{letter-spacing:1.280000pt;}
.ls72{letter-spacing:1.322667pt;}
.ls19{letter-spacing:1.333333pt;}
.ls32{letter-spacing:1.345600pt;}
.ls76{letter-spacing:1.365333pt;}
.ls3b{letter-spacing:1.386667pt;}
.ls74{letter-spacing:1.408000pt;}
.ls4{letter-spacing:1.440000pt;}
.ls7d{letter-spacing:1.450667pt;}
.ls17{letter-spacing:1.493333pt;}
.ls12{letter-spacing:1.546667pt;}
.ls77{letter-spacing:1.578667pt;}
.ls1f{letter-spacing:1.600000pt;}
.ls8e{letter-spacing:1.621333pt;}
.ls40{letter-spacing:1.653333pt;}
.ls79{letter-spacing:1.664000pt;}
.ls24{letter-spacing:1.706667pt;}
.ls8c{letter-spacing:1.749333pt;}
.ls18{letter-spacing:1.760000pt;}
.lsf{letter-spacing:1.813333pt;}
.ls90{letter-spacing:1.834667pt;}
.ls39{letter-spacing:1.866667pt;}
.ls9a{letter-spacing:1.877333pt;}
.ls8{letter-spacing:1.920000pt;}
.ls7a{letter-spacing:1.962667pt;}
.ls1d{letter-spacing:1.973333pt;}
.ls14{letter-spacing:2.026667pt;}
.ls78{letter-spacing:2.048000pt;}
.ls67{letter-spacing:2.080000pt;}
.ls47{letter-spacing:2.090667pt;}
.ls3c{letter-spacing:2.133333pt;}
.ls81{letter-spacing:2.176000pt;}
.ls15{letter-spacing:2.186667pt;}
.ls6a{letter-spacing:2.240000pt;}
.ls1e{letter-spacing:2.293333pt;}
.ls4b{letter-spacing:2.346667pt;}
.ls6b{letter-spacing:2.400000pt;}
.ls1b{letter-spacing:2.453333pt;}
.ls94{letter-spacing:2.474667pt;}
.ls22{letter-spacing:2.506667pt;}
.ls65{letter-spacing:2.560000pt;}
.ls23{letter-spacing:2.613333pt;}
.ls8d{letter-spacing:2.645333pt;}
.ls41{letter-spacing:2.720000pt;}
.ls5a{letter-spacing:2.773333pt;}
.ls80{letter-spacing:2.816000pt;}
.ls64{letter-spacing:2.826667pt;}
.ls20{letter-spacing:2.880000pt;}
.ls46{letter-spacing:2.933333pt;}
.ls8b{letter-spacing:2.944000pt;}
.ls5f{letter-spacing:2.986667pt;}
.ls3f{letter-spacing:3.040000pt;}
.ls51{letter-spacing:3.093333pt;}
.ls3{letter-spacing:3.146667pt;}
.ls4c{letter-spacing:3.200000pt;}
.ls33{letter-spacing:3.306667pt;}
.ls53{letter-spacing:3.360000pt;}
.ls6c{letter-spacing:3.413333pt;}
.ls50{letter-spacing:3.466667pt;}
.ls10{letter-spacing:3.520000pt;}
.ls99{letter-spacing:3.584000pt;}
.ls69{letter-spacing:3.626667pt;}
.ls3a{letter-spacing:3.733333pt;}
.ls38{letter-spacing:3.786667pt;}
.ls4a{letter-spacing:3.840000pt;}
.ls68{letter-spacing:3.946667pt;}
.ls97{letter-spacing:3.968000pt;}
.ls5b{letter-spacing:4.000000pt;}
.ls3e{letter-spacing:4.106667pt;}
.ls11{letter-spacing:4.213333pt;}
.ls66{letter-spacing:4.266667pt;}
.ls61{letter-spacing:4.320000pt;}
.ls52{letter-spacing:4.373333pt;}
.ls88{letter-spacing:4.565333pt;}
.ls3d{letter-spacing:4.693333pt;}
.ls45{letter-spacing:4.906667pt;}
.ls6f{letter-spacing:5.066667pt;}
.ls6e{letter-spacing:5.120000pt;}
.ls42{letter-spacing:6.453333pt;}
.ls6d{letter-spacing:7.840000pt;}
.ls62{letter-spacing:142.614400pt;}
.ls54{letter-spacing:160.791467pt;}
.ls55{letter-spacing:185.920000pt;}
.ls4d{letter-spacing:341.504000pt;}
.ls5d{letter-spacing:539.565333pt;}
.ws41{word-spacing:-329.514667pt;}
.ws8{word-spacing:-15.520000pt;}
.ws7{word-spacing:-15.360000pt;}
.ws2c{word-spacing:-15.253333pt;}
.ws1{word-spacing:-14.826667pt;}
.wse2{word-spacing:-14.250667pt;}
.ws9{word-spacing:-13.866667pt;}
.ws2b{word-spacing:-13.706667pt;}
.wsde{word-spacing:-13.482667pt;}
.ws2d{word-spacing:-13.386667pt;}
.ws6{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.280000pt;}
.wsb3{word-spacing:-13.226667pt;}
.wsdd{word-spacing:-13.141333pt;}
.wsdf{word-spacing:-12.842667pt;}
.wsb5{word-spacing:-12.629333pt;}
.wsc8{word-spacing:-12.373333pt;}
.wsc6{word-spacing:-12.288000pt;}
.wsb4{word-spacing:-12.245333pt;}
.wsc2{word-spacing:-12.117333pt;}
.wsb2{word-spacing:-11.989333pt;}
.wsc1{word-spacing:-11.946667pt;}
.ws3{word-spacing:-11.861333pt;}
.wsb1{word-spacing:-11.477333pt;}
.wsc9{word-spacing:-11.349333pt;}
.wsc3{word-spacing:-11.306667pt;}
.wsc5{word-spacing:-11.178667pt;}
.wsc7{word-spacing:-11.136000pt;}
.ws2{word-spacing:-11.120000pt;}
.wsb0{word-spacing:-11.050667pt;}
.wsc4{word-spacing:-10.922667pt;}
.wse1{word-spacing:-10.794667pt;}
.ws3c{word-spacing:-10.666667pt;}
.ws69{word-spacing:-9.333333pt;}
.ws0{word-spacing:-9.076144pt;}
.wse0{word-spacing:-8.106667pt;}
.ws22{word-spacing:-7.773333pt;}
.wsef{word-spacing:-4.010667pt;}
.wsf0{word-spacing:-3.584000pt;}
.wsd4{word-spacing:-2.944000pt;}
.wsb6{word-spacing:-2.933333pt;}
.ws61{word-spacing:-2.880000pt;}
.wsd6{word-spacing:-2.645333pt;}
.ws5{word-spacing:-2.565333pt;}
.wse3{word-spacing:-2.474667pt;}
.ws83{word-spacing:-2.400000pt;}
.wscd{word-spacing:-2.346667pt;}
.ws1c{word-spacing:-1.973333pt;}
.wsbe{word-spacing:-1.962667pt;}
.wsa5{word-spacing:-1.920000pt;}
.wsf2{word-spacing:-1.877333pt;}
.ws60{word-spacing:-1.866667pt;}
.wsd5{word-spacing:-1.749333pt;}
.wsda{word-spacing:-1.706667pt;}
.wse4{word-spacing:-1.664000pt;}
.wsd8{word-spacing:-1.621333pt;}
.wsbd{word-spacing:-1.578667pt;}
.ws1d{word-spacing:-1.546667pt;}
.wsca{word-spacing:-1.280000pt;}
.wsd3{word-spacing:-1.237333pt;}
.wsdc{word-spacing:-1.194667pt;}
.ws34{word-spacing:-1.066667pt;}
.wsd2{word-spacing:-1.024000pt;}
.ws28{word-spacing:-1.013333pt;}
.ws33{word-spacing:-0.960000pt;}
.wseb{word-spacing:-0.938667pt;}
.ws11{word-spacing:-0.906667pt;}
.ws5c{word-spacing:-0.853333pt;}
.wsb9{word-spacing:-0.810667pt;}
.ws25{word-spacing:-0.746667pt;}
.ws43{word-spacing:-0.725333pt;}
.wsbc{word-spacing:-0.682667pt;}
.ws82{word-spacing:-0.640000pt;}
.wsf1{word-spacing:-0.597333pt;}
.wsab{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.533333pt;}
.ws32{word-spacing:-0.480000pt;}
.ws16{word-spacing:-0.426667pt;}
.wsd7{word-spacing:-0.384000pt;}
.wsec{word-spacing:-0.341333pt;}
.ws38{word-spacing:-0.320000pt;}
.wsd1{word-spacing:-0.298667pt;}
.wsa4{word-spacing:-0.266667pt;}
.wsce{word-spacing:-0.256000pt;}
.ws5f{word-spacing:-0.213333pt;}
.ws76{word-spacing:-0.170667pt;}
.ws42{word-spacing:-0.160000pt;}
.wsee{word-spacing:-0.128000pt;}
.wsa2{word-spacing:-0.106667pt;}
.wsea{word-spacing:-0.085333pt;}
.ws71{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws31{word-spacing:0.053333pt;}
.wsd9{word-spacing:0.085333pt;}
.wsac{word-spacing:0.106667pt;}
.wscb{word-spacing:0.128000pt;}
.ws5d{word-spacing:0.160000pt;}
.ws74{word-spacing:0.170667pt;}
.ws27{word-spacing:0.213333pt;}
.ws23{word-spacing:0.266667pt;}
.wsbb{word-spacing:0.298667pt;}
.ws10{word-spacing:0.320000pt;}
.wse8{word-spacing:0.341333pt;}
.ws15{word-spacing:0.373333pt;}
.wsd0{word-spacing:0.597333pt;}
.ws37{word-spacing:0.693333pt;}
.wsed{word-spacing:0.725333pt;}
.wsbf{word-spacing:0.853333pt;}
.wsba{word-spacing:0.896000pt;}
.ws85{word-spacing:1.013333pt;}
.wsaf{word-spacing:1.066667pt;}
.ws2f{word-spacing:1.120000pt;}
.wsf{word-spacing:1.173333pt;}
.wse6{word-spacing:1.194667pt;}
.wscc{word-spacing:1.322667pt;}
.ws77{word-spacing:1.365333pt;}
.wsa9{word-spacing:1.386667pt;}
.ws2e{word-spacing:1.440000pt;}
.wsa1{word-spacing:1.578667pt;}
.ws21{word-spacing:1.653333pt;}
.ws35{word-spacing:1.706667pt;}
.wsc0{word-spacing:1.749333pt;}
.ws12{word-spacing:1.760000pt;}
.wsa6{word-spacing:1.866667pt;}
.wse{word-spacing:2.026667pt;}
.wse9{word-spacing:2.048000pt;}
.wsa7{word-spacing:2.080000pt;}
.ws2a{word-spacing:2.133333pt;}
.wsa0{word-spacing:2.240000pt;}
.ws5e{word-spacing:2.293333pt;}
.ws29{word-spacing:2.400000pt;}
.ws5a{word-spacing:2.453333pt;}
.ws1f{word-spacing:2.506667pt;}
.ws24{word-spacing:2.560000pt;}
.ws5b{word-spacing:2.720000pt;}
.wsdb{word-spacing:2.730667pt;}
.wsad{word-spacing:2.773333pt;}
.ws18{word-spacing:2.826667pt;}
.wse5{word-spacing:2.858667pt;}
.ws44{word-spacing:2.901333pt;}
.ws19{word-spacing:2.933333pt;}
.ws17{word-spacing:3.040000pt;}
.ws73{word-spacing:3.072000pt;}
.wsa8{word-spacing:3.093333pt;}
.ws3a{word-spacing:3.114667pt;}
.wscf{word-spacing:3.157333pt;}
.ws84{word-spacing:3.200000pt;}
.ws36{word-spacing:3.253333pt;}
.ws72{word-spacing:3.285333pt;}
.ws1a{word-spacing:3.360000pt;}
.ws86{word-spacing:3.370667pt;}
.ws20{word-spacing:3.413333pt;}
.wse7{word-spacing:3.456000pt;}
.wsd{word-spacing:3.466667pt;}
.ws75{word-spacing:3.498667pt;}
.wsae{word-spacing:3.520000pt;}
.ws39{word-spacing:3.541333pt;}
.ws1e{word-spacing:3.786667pt;}
.ws1b{word-spacing:3.840000pt;}
.ws30{word-spacing:4.053333pt;}
.ws26{word-spacing:4.106667pt;}
.ws14{word-spacing:4.160000pt;}
.wsa3{word-spacing:4.266667pt;}
.wsaa{word-spacing:4.320000pt;}
.wsc{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.wsb7{word-spacing:4.853333pt;}
.wsb8{word-spacing:4.906667pt;}
.ws50{word-spacing:14.746667pt;}
.ws46{word-spacing:16.202667pt;}
.ws45{word-spacing:19.301333pt;}
.ws53{word-spacing:24.080000pt;}
.ws47{word-spacing:27.216000pt;}
.ws8e{word-spacing:31.621333pt;}
.ws6b{word-spacing:36.512000pt;}
.ws91{word-spacing:37.221333pt;}
.ws90{word-spacing:40.954667pt;}
.ws6e{word-spacing:41.813333pt;}
.ws89{word-spacing:42.336000pt;}
.ws56{word-spacing:42.746667pt;}
.ws67{word-spacing:44.362133pt;}
.ws65{word-spacing:45.173333pt;}
.ws8d{word-spacing:50.288000pt;}
.ws9e{word-spacing:50.960000pt;}
.ws99{word-spacing:51.632000pt;}
.ws4b{word-spacing:52.080000pt;}
.ws87{word-spacing:57.082667pt;}
.ws9b{word-spacing:58.576000pt;}
.ws98{word-spacing:59.621333pt;}
.ws9c{word-spacing:60.260800pt;}
.ws95{word-spacing:60.293333pt;}
.ws9a{word-spacing:60.704000pt;}
.ws8f{word-spacing:60.965333pt;}
.ws66{word-spacing:61.413333pt;}
.ws4a{word-spacing:64.997333pt;}
.ws96{word-spacing:68.954667pt;}
.ws93{word-spacing:69.626667pt;}
.ws9d{word-spacing:69.664000pt;}
.ws55{word-spacing:70.746667pt;}
.ws54{word-spacing:71.157333pt;}
.ws4f{word-spacing:74.330667pt;}
.ws92{word-spacing:78.288000pt;}
.ws63{word-spacing:80.080000pt;}
.ws8c{word-spacing:83.888000pt;}
.ws52{word-spacing:84.634667pt;}
.ws97{word-spacing:87.621333pt;}
.ws3b{word-spacing:87.722667pt;}
.ws51{word-spacing:92.624000pt;}
.ws57{word-spacing:99.530667pt;}
.ws88{word-spacing:100.016000pt;}
.ws4c{word-spacing:100.613333pt;}
.ws4e{word-spacing:106.101333pt;}
.ws59{word-spacing:107.856000pt;}
.ws49{word-spacing:114.090667pt;}
.ws4d{word-spacing:128.837333pt;}
.ws6a{word-spacing:130.928000pt;}
.ws48{word-spacing:131.226667pt;}
.ws64{word-spacing:133.018667pt;}
.ws9f{word-spacing:145.967467pt;}
.ws68{word-spacing:147.541333pt;}
.ws6d{word-spacing:149.632000pt;}
.ws70{word-spacing:151.685333pt;}
.ws6c{word-spacing:153.776000pt;}
.ws62{word-spacing:154.000000pt;}
.ws8b{word-spacing:154.298667pt;}
.ws58{word-spacing:155.829333pt;}
.ws8a{word-spacing:169.008000pt;}
.ws6f{word-spacing:172.405333pt;}
.ws94{word-spacing:191.781333pt;}
.ws3f{word-spacing:198.186667pt;}
.ws7e{word-spacing:223.701333pt;}
.ws81{word-spacing:224.853333pt;}
.ws7c{word-spacing:241.066667pt;}
.ws7a{word-spacing:260.010667pt;}
.ws79{word-spacing:264.789333pt;}
.ws7d{word-spacing:267.733333pt;}
.ws80{word-spacing:268.885333pt;}
.ws40{word-spacing:283.221333pt;}
.ws3d{word-spacing:330.837333pt;}
.ws3e{word-spacing:342.826667pt;}
.ws78{word-spacing:440.661333pt;}
.ws7b{word-spacing:505.770667pt;}
.ws7f{word-spacing:531.797333pt;}
._b{margin-left:-2576.085333pt;}
._1d{margin-left:-2554.922667pt;}
._17{margin-left:-340.816000pt;}
._c{margin-left:-6.738667pt;}
._1e{margin-left:-5.778667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.680000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.101333pt;}
._5{width:0.933333pt;}
._7{width:1.866667pt;}
._a{width:2.986667pt;}
._6{width:4.213333pt;}
._8{width:5.472000pt;}
._9{width:6.448000pt;}
._1f{width:7.824000pt;}
._37{width:23.520000pt;}
._3b{width:25.536000pt;}
._49{width:27.626667pt;}
._38{width:30.476432pt;}
._34{width:31.733333pt;}
._33{width:33.301333pt;}
._98{width:35.441765pt;}
._4c{width:37.880901pt;}
._48{width:39.013333pt;}
._29{width:41.178667pt;}
._35{width:42.958235pt;}
._46{width:45.173333pt;}
._97{width:46.704000pt;}
._6a{width:47.861333pt;}
._21{width:49.840000pt;}
._64{width:51.084432pt;}
._2a{width:51.980432pt;}
._2{width:53.523568pt;}
._22{width:55.178667pt;}
._47{width:59.223099pt;}
._60{width:60.968000pt;}
._69{width:62.101333pt;}
._6c{width:63.056000pt;}
._4f{width:63.952000pt;}
._5e{width:65.744000pt;}
._2c{width:67.386667pt;}
._2d{width:68.581333pt;}
._9e{width:69.698667pt;}
._24{width:70.746667pt;}
._57{width:71.953765pt;}
._aa{width:74.158933pt;}
._45{width:76.384000pt;}
._32{width:77.914667pt;}
._94{width:79.056000pt;}
._52{width:80.154667pt;}
._23{width:81.088000pt;}
._a9{width:82.394667pt;}
._2b{width:83.813333pt;}
._31{width:85.008000pt;}
._62{width:86.538667pt;}
._61{width:87.880000pt;}
._3d{width:89.575099pt;}
._a0{width:90.574235pt;}
._30{width:92.101333pt;}
._56{width:93.968000pt;}
._4b{width:95.685333pt;}
._59{width:96.581333pt;}
._6b{width:98.746667pt;}
._39{width:100.302235pt;}
._5f{width:101.285333pt;}
._5c{width:103.335099pt;}
._3f{width:105.018667pt;}
._3e{width:106.773333pt;}
._4d{width:108.938667pt;}
._3a{width:109.946667pt;}
._42{width:113.792000pt;}
._2f{width:114.688000pt;}
._5a{width:115.607099pt;}
._58{width:116.876432pt;}
._2e{width:118.197333pt;}
._9d{width:119.205333pt;}
._51{width:120.512000pt;}
._4e{width:121.920000pt;}
._36{width:123.424000pt;}
._40{width:124.581333pt;}
._70{width:125.505803pt;}
._53{width:127.306667pt;}
._28{width:128.202667pt;}
._44{width:129.285333pt;}
._43{width:130.666667pt;}
._50{width:132.520901pt;}
._ac{width:133.599099pt;}
._55{width:134.673765pt;}
._9f{width:136.901333pt;}
._54{width:138.581333pt;}
._25{width:139.813333pt;}
._a5{width:141.029333pt;}
._a2{width:142.927136pt;}
._6d{width:144.565333pt;}
._41{width:146.197333pt;}
._4a{width:148.350235pt;}
._a7{width:149.893333pt;}
._6f{width:150.864000pt;}
._d{width:151.978667pt;}
._5b{width:153.002667pt;}
._e{width:154.794667pt;}
._18{width:156.288000pt;}
._63{width:158.243568pt;}
._a1{width:160.608000pt;}
._95{width:162.474667pt;}
._a8{width:163.856000pt;}
._15{width:165.461333pt;}
._9c{width:167.104000pt;}
._9a{width:168.448000pt;}
._a6{width:169.837333pt;}
._66{width:171.696000pt;}
._ab{width:175.004432pt;}
._9b{width:178.341333pt;}
._5d{width:182.037333pt;}
._65{width:183.232000pt;}
._67{width:184.193803pt;}
._26{width:185.584000pt;}
._a4{width:186.666667pt;}
._3c{width:188.272000pt;}
._6e{width:190.325333pt;}
._a3{width:192.864000pt;}
._11{width:194.645333pt;}
._14{width:197.461333pt;}
._96{width:200.704000pt;}
._12{width:208.128000pt;}
._93{width:210.037333pt;}
._b2{width:211.530667pt;}
._27{width:213.770667pt;}
._68{width:214.816000pt;}
._ad{width:219.856000pt;}
._b0{width:221.909333pt;}
._99{width:226.053333pt;}
._af{width:228.106667pt;}
._89{width:231.253333pt;}
._b1{width:232.250667pt;}
._74{width:233.514667pt;}
._81{width:234.794667pt;}
._ae{width:236.432000pt;}
._84{width:240.773867pt;}
._75{width:241.920000pt;}
._78{width:246.826667pt;}
._91{width:251.349333pt;}
._7d{width:252.890667pt;}
._8a{width:266.109867pt;}
._72{width:274.261333pt;}
._76{width:277.973333pt;}
._f{width:279.253333pt;}
._19{width:280.538667pt;}
._79{width:283.306667pt;}
._7e{width:287.872000pt;}
._13{width:289.920000pt;}
._73{width:327.594667pt;}
._71{width:328.746667pt;}
._1c{width:341.504000pt;}
._1a{width:343.552000pt;}
._16{width:353.493333pt;}
._10{width:364.160000pt;}
._20{width:405.328000pt;}
._92{width:450.688000pt;}
._87{width:507.008000pt;}
._7b{width:516.437333pt;}
._88{width:523.562667pt;}
._80{width:525.952000pt;}
._77{width:528.256000pt;}
._85{width:530.645333pt;}
._7f{width:533.034667pt;}
._83{width:549.632000pt;}
._8b{width:552.021333pt;}
._90{width:554.368000pt;}
._86{width:556.757333pt;}
._7c{width:559.104000pt;}
._1b{width:562.048000pt;}
._82{width:563.840000pt;}
._8e{width:566.229333pt;}
._7a{width:570.965333pt;}
._8d{width:573.312000pt;}
._8f{width:578.048000pt;}
._8c{width:582.826667pt;}
.fsb{font-size:21.765333pt;}
.fs5{font-size:23.320000pt;}
.fsc{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2a{bottom:42.468667pt;}
.y294{bottom:71.345333pt;}
.y1db{bottom:73.811733pt;}
.y252{bottom:73.886133pt;}
.yc8{bottom:73.987600pt;}
.y91{bottom:74.281467pt;}
.y200{bottom:74.342533pt;}
.y1f0{bottom:74.462533pt;}
.y5f{bottom:74.464533pt;}
.y21d{bottom:74.588533pt;}
.yc5{bottom:74.595867pt;}
.y1a4{bottom:75.010933pt;}
.yf4{bottom:75.710533pt;}
.y173{bottom:75.814800pt;}
.y27{bottom:78.248400pt;}
.y12e{bottom:78.349733pt;}
.y293{bottom:84.678667pt;}
.y16a{bottom:84.760533pt;}
.y251{bottom:87.219467pt;}
.yc7{bottom:87.982267pt;}
.y90{bottom:88.276133pt;}
.y1da{bottom:88.478400pt;}
.y1a3{bottom:89.677600pt;}
.y172{bottom:89.809467pt;}
.y1ff{bottom:90.342533pt;}
.yf3{bottom:90.377200pt;}
.y1ef{bottom:90.462533pt;}
.y5e{bottom:90.464533pt;}
.y21c{bottom:90.588533pt;}
.yc4{bottom:90.595867pt;}
.y26{bottom:91.576000pt;}
.y12d{bottom:92.592400pt;}
.y292{bottom:98.012000pt;}
.y169{bottom:99.427200pt;}
.y250{bottom:100.552800pt;}
.yc6{bottom:101.976933pt;}
.y1d9{bottom:103.145067pt;}
.y171{bottom:103.804133pt;}
.yf2{bottom:105.043867pt;}
.y1fe{bottom:106.342533pt;}
.y1ee{bottom:106.462533pt;}
.y5d{bottom:106.464533pt;}
.y21b{bottom:106.588533pt;}
.yc3{bottom:106.595867pt;}
.y12c{bottom:106.835067pt;}
.y291{bottom:111.345333pt;}
.y1a2{bottom:112.354933pt;}
.y24f{bottom:113.886133pt;}
.y168{bottom:114.093867pt;}
.y170{bottom:117.798800pt;}
.y1d8{bottom:117.811733pt;}
.y12b{bottom:121.085867pt;}
.y21a{bottom:122.228533pt;}
.y1fd{bottom:122.342533pt;}
.y1ed{bottom:122.462533pt;}
.y5c{bottom:122.464533pt;}
.yc2{bottom:122.595867pt;}
.y290{bottom:124.678667pt;}
.y1a1{bottom:126.797600pt;}
.y24e{bottom:127.219467pt;}
.yf1{bottom:127.721200pt;}
.y167{bottom:128.760533pt;}
.y16f{bottom:131.793467pt;}
.y1d7{bottom:132.478400pt;}
.y12a{bottom:135.328533pt;}
.y28f{bottom:138.012000pt;}
.y1fc{bottom:138.342533pt;}
.y1ec{bottom:138.462533pt;}
.y5b{bottom:138.464533pt;}
.yc1{bottom:138.595867pt;}
.y24d{bottom:140.552800pt;}
.y1a0{bottom:141.240267pt;}
.yf0{bottom:142.227333pt;}
.y166{bottom:143.427200pt;}
.y16e{bottom:145.788133pt;}
.y129{bottom:149.571200pt;}
.y28e{bottom:151.345333pt;}
.y24c{bottom:153.886133pt;}
.y1fb{bottom:154.342533pt;}
.y1eb{bottom:154.462533pt;}
.y5a{bottom:154.464533pt;}
.y219{bottom:154.588533pt;}
.yc0{bottom:154.595867pt;}
.y1d6{bottom:154.923600pt;}
.y19f{bottom:155.682933pt;}
.yef{bottom:156.670000pt;}
.y165{bottom:158.093867pt;}
.y16d{bottom:159.782800pt;}
.y128{bottom:163.813867pt;}
.y28d{bottom:164.678667pt;}
.y24b{bottom:167.219467pt;}
.y1d5{bottom:168.036933pt;}
.y19e{bottom:170.125600pt;}
.y1fa{bottom:170.342533pt;}
.y1ea{bottom:170.462533pt;}
.y59{bottom:170.464533pt;}
.y218{bottom:170.588533pt;}
.ybf{bottom:170.595867pt;}
.yee{bottom:171.112667pt;}
.y16c{bottom:173.777467pt;}
.y28c{bottom:178.012000pt;}
.y127{bottom:178.056533pt;}
.y24a{bottom:180.552800pt;}
.y1d4{bottom:181.150267pt;}
.y164{bottom:182.454933pt;}
.y19d{bottom:184.568267pt;}
.yed{bottom:185.555333pt;}
.y217{bottom:186.228533pt;}
.y1f9{bottom:186.342533pt;}
.y1e9{bottom:186.462533pt;}
.y58{bottom:186.464533pt;}
.ybe{bottom:186.595867pt;}
.y16b{bottom:187.772133pt;}
.y28b{bottom:191.345333pt;}
.y126{bottom:192.299200pt;}
.y249{bottom:193.886133pt;}
.y1d3{bottom:194.263600pt;}
.y163{bottom:196.697600pt;}
.y19c{bottom:199.010933pt;}
.yec{bottom:199.998000pt;}
.y1f8{bottom:202.342533pt;}
.y1e8{bottom:202.462533pt;}
.y57{bottom:202.464533pt;}
.ybd{bottom:202.595867pt;}
.y28a{bottom:204.678667pt;}
.y125{bottom:206.541867pt;}
.y248{bottom:207.219467pt;}
.y1d2{bottom:207.371733pt;}
.y162{bottom:210.940267pt;}
.y19b{bottom:213.453600pt;}
.yeb{bottom:214.440667pt;}
.y289{bottom:218.012000pt;}
.y1f7{bottom:218.342533pt;}
.y1e7{bottom:218.462533pt;}
.y56{bottom:218.464533pt;}
.y216{bottom:218.588533pt;}
.ybc{bottom:218.595867pt;}
.y1d1{bottom:220.485067pt;}
.y247{bottom:220.552800pt;}
.y124{bottom:220.784533pt;}
.y161{bottom:225.182933pt;}
.y19a{bottom:227.896267pt;}
.yea{bottom:228.883333pt;}
.y288{bottom:231.345333pt;}
.y1d0{bottom:233.598400pt;}
.y246{bottom:233.886133pt;}
.y1f6{bottom:234.342533pt;}
.y1e6{bottom:234.462533pt;}
.y55{bottom:234.464533pt;}
.y215{bottom:234.588533pt;}
.ybb{bottom:234.595867pt;}
.y25{bottom:234.715467pt;}
.y123{bottom:235.027200pt;}
.y160{bottom:239.425600pt;}
.y199{bottom:242.338933pt;}
.ye9{bottom:243.326000pt;}
.y287{bottom:244.678667pt;}
.y1cf{bottom:246.711733pt;}
.y245{bottom:247.219467pt;}
.y1f5{bottom:250.342533pt;}
.y1e5{bottom:250.462533pt;}
.y54{bottom:250.464533pt;}
.y214{bottom:250.588533pt;}
.yba{bottom:250.595867pt;}
.y24{bottom:250.723733pt;}
.y15f{bottom:253.668267pt;}
.y198{bottom:256.781600pt;}
.ye8{bottom:257.768667pt;}
.y286{bottom:258.012000pt;}
.y1ce{bottom:259.825067pt;}
.y244{bottom:260.552800pt;}
.y122{bottom:263.260533pt;}
.y1f4{bottom:266.342533pt;}
.y1e4{bottom:266.462533pt;}
.y53{bottom:266.464533pt;}
.y213{bottom:266.588533pt;}
.yb9{bottom:266.595867pt;}
.y15e{bottom:267.910933pt;}
.y11f{bottom:270.717867pt;}
.y197{bottom:271.238400pt;}
.y285{bottom:271.345333pt;}
.ye7{bottom:272.211333pt;}
.y1cd{bottom:272.938400pt;}
.y243{bottom:273.886133pt;}
.y23{bottom:275.030400pt;}
.y11c{bottom:277.391200pt;}
.y15d{bottom:282.194133pt;}
.y1f3{bottom:282.342533pt;}
.y1e3{bottom:282.462533pt;}
.y52{bottom:282.464533pt;}
.y212{bottom:282.588533pt;}
.yb8{bottom:282.595867pt;}
.y11e{bottom:284.055200pt;}
.y11b{bottom:284.064533pt;}
.y284{bottom:284.678667pt;}
.y196{bottom:285.681067pt;}
.y1cc{bottom:286.051733pt;}
.ye6{bottom:286.654000pt;}
.y242{bottom:287.219467pt;}
.y22{bottom:291.030400pt;}
.y121{bottom:291.493867pt;}
.y15c{bottom:296.436800pt;}
.y11d{bottom:297.392533pt;}
.y283{bottom:298.012000pt;}
.y120{bottom:298.167200pt;}
.y1f2{bottom:298.342533pt;}
.y1e2{bottom:298.462533pt;}
.y51{bottom:298.464533pt;}
.y211{bottom:298.588533pt;}
.yb7{bottom:298.595867pt;}
.y1cb{bottom:299.165067pt;}
.y195{bottom:300.123733pt;}
.y241{bottom:300.552800pt;}
.ye5{bottom:301.096667pt;}
.y21{bottom:307.030400pt;}
.y15b{bottom:310.679467pt;}
.y282{bottom:311.345333pt;}
.y1ca{bottom:312.278400pt;}
.y240{bottom:313.886133pt;}
.y1e1{bottom:314.462533pt;}
.y50{bottom:314.464533pt;}
.y194{bottom:314.566400pt;}
.y210{bottom:314.588533pt;}
.yb6{bottom:314.595867pt;}
.ye4{bottom:315.539333pt;}
.y20{bottom:323.030400pt;}
.y281{bottom:324.678667pt;}
.y15a{bottom:324.922133pt;}
.y1c9{bottom:325.391733pt;}
.y23f{bottom:327.219467pt;}
.y193{bottom:329.054667pt;}
.ye3{bottom:329.982000pt;}
.y1f1{bottom:329.982533pt;}
.y1e0{bottom:330.462533pt;}
.y4f{bottom:330.464533pt;}
.y20f{bottom:330.588533pt;}
.yb5{bottom:330.595867pt;}
.y11a{bottom:334.409200pt;}
.y280{bottom:338.012000pt;}
.y1c8{bottom:338.505067pt;}
.y1f{bottom:339.030400pt;}
.y159{bottom:339.164800pt;}
.y23e{bottom:340.552800pt;}
.y192{bottom:343.497333pt;}
.ye2{bottom:344.424667pt;}
.y1df{bottom:346.462533pt;}
.y4e{bottom:346.464533pt;}
.y20e{bottom:346.588533pt;}
.yb4{bottom:346.595867pt;}
.y27f{bottom:351.345333pt;}
.y1c7{bottom:351.615600pt;}
.y119{bottom:351.742533pt;}
.y158{bottom:353.407467pt;}
.y23d{bottom:353.886133pt;}
.y1e{bottom:355.030400pt;}
.y191{bottom:357.940000pt;}
.ye1{bottom:358.867333pt;}
.y1de{bottom:362.462533pt;}
.y4d{bottom:362.464533pt;}
.y20d{bottom:362.588533pt;}
.yb3{bottom:362.595867pt;}
.y27e{bottom:364.678667pt;}
.y1c6{bottom:364.728933pt;}
.y23c{bottom:367.219467pt;}
.y157{bottom:367.650133pt;}
.y1d{bottom:371.030400pt;}
.y190{bottom:372.382667pt;}
.ye0{bottom:373.310000pt;}
.y1c5{bottom:377.842267pt;}
.y27d{bottom:378.012000pt;}
.y1dd{bottom:378.462533pt;}
.y4c{bottom:378.464533pt;}
.y20c{bottom:378.588533pt;}
.yb2{bottom:378.595867pt;}
.y23b{bottom:380.552800pt;}
.y156{bottom:381.892800pt;}
.y18f{bottom:386.825333pt;}
.y1c{bottom:387.030400pt;}
.ydf{bottom:387.752667pt;}
.y1c4{bottom:390.955600pt;}
.y27c{bottom:391.345333pt;}
.y23a{bottom:393.886133pt;}
.yf8{bottom:394.462533pt;}
.y4b{bottom:394.464533pt;}
.y118{bottom:394.582533pt;}
.y20b{bottom:394.588533pt;}
.y155{bottom:396.135467pt;}
.y18e{bottom:401.268000pt;}
.yde{bottom:402.249867pt;}
.y1b{bottom:403.030400pt;}
.y1c3{bottom:404.068933pt;}
.y27b{bottom:404.678667pt;}
.y239{bottom:407.219467pt;}
.yb1{bottom:410.235867pt;}
.y154{bottom:410.414667pt;}
.yf7{bottom:410.462533pt;}
.y4a{bottom:410.464533pt;}
.y117{bottom:410.582533pt;}
.y20a{bottom:410.588533pt;}
.y18d{bottom:415.710667pt;}
.ydd{bottom:416.692533pt;}
.y1c2{bottom:417.182267pt;}
.y27a{bottom:418.012000pt;}
.y1a{bottom:419.030400pt;}
.y238{bottom:420.552800pt;}
.y153{bottom:424.657333pt;}
.yf6{bottom:426.462533pt;}
.y49{bottom:426.464533pt;}
.y116{bottom:426.582533pt;}
.y209{bottom:426.595867pt;}
.y18c{bottom:430.153333pt;}
.y1c1{bottom:430.292800pt;}
.ydc{bottom:431.135200pt;}
.y279{bottom:431.345333pt;}
.y237{bottom:433.886133pt;}
.y19{bottom:435.030400pt;}
.y152{bottom:438.900000pt;}
.yb0{bottom:442.462533pt;}
.y48{bottom:442.464533pt;}
.y115{bottom:442.582533pt;}
.y208{bottom:442.595867pt;}
.y1c0{bottom:443.406133pt;}
.y18b{bottom:444.596000pt;}
.y278{bottom:444.678667pt;}
.ydb{bottom:445.577867pt;}
.y236{bottom:447.219467pt;}
.y18{bottom:451.030400pt;}
.y151{bottom:453.142667pt;}
.y1bf{bottom:456.519467pt;}
.y277{bottom:458.012000pt;}
.yaf{bottom:458.462533pt;}
.y47{bottom:458.464533pt;}
.y114{bottom:458.582533pt;}
.y207{bottom:458.595867pt;}
.y18a{bottom:459.038667pt;}
.yda{bottom:460.020533pt;}
.y235{bottom:460.552800pt;}
.y17{bottom:467.030400pt;}
.y150{bottom:467.385333pt;}
.y1be{bottom:469.632800pt;}
.y276{bottom:471.345333pt;}
.y189{bottom:473.481333pt;}
.y234{bottom:473.886133pt;}
.y64{bottom:474.104533pt;}
.yae{bottom:474.462533pt;}
.yd9{bottom:474.463200pt;}
.y46{bottom:474.464533pt;}
.y113{bottom:474.582533pt;}
.y206{bottom:474.595867pt;}
.y14f{bottom:481.628000pt;}
.y1bd{bottom:482.746133pt;}
.y16{bottom:483.030400pt;}
.y275{bottom:484.678667pt;}
.y233{bottom:487.219467pt;}
.y188{bottom:487.924000pt;}
.yd8{bottom:488.905867pt;}
.y63{bottom:490.104533pt;}
.yad{bottom:490.462533pt;}
.y45{bottom:490.464533pt;}
.y112{bottom:490.582533pt;}
.y205{bottom:490.595867pt;}
.y1bc{bottom:495.859467pt;}
.y14e{bottom:495.870667pt;}
.y274{bottom:498.012000pt;}
.y15{bottom:499.030400pt;}
.y232{bottom:500.552800pt;}
.y187{bottom:502.366667pt;}
.yd7{bottom:503.348533pt;}
.y8f{bottom:506.462533pt;}
.y44{bottom:506.464533pt;}
.y111{bottom:506.582533pt;}
.y7e{bottom:506.588533pt;}
.y204{bottom:506.595867pt;}
.y1bb{bottom:508.972800pt;}
.y14d{bottom:510.113333pt;}
.y273{bottom:511.345333pt;}
.y231{bottom:513.886133pt;}
.y14{bottom:515.030400pt;}
.y186{bottom:516.809333pt;}
.yd6{bottom:517.791200pt;}
.y62{bottom:521.984533pt;}
.y1ba{bottom:522.062933pt;}
.y8e{bottom:522.462533pt;}
.y43{bottom:522.464533pt;}
.y110{bottom:522.582533pt;}
.y7d{bottom:522.588533pt;}
.y203{bottom:522.595867pt;}
.y14c{bottom:524.356000pt;}
.y272{bottom:524.678667pt;}
.y230{bottom:527.219467pt;}
.y13{bottom:531.030400pt;}
.yd5{bottom:532.233867pt;}
.y1b9{bottom:535.176267pt;}
.y271{bottom:538.012000pt;}
.y8d{bottom:538.462533pt;}
.y42{bottom:538.464533pt;}
.yac{bottom:538.475867pt;}
.y10f{bottom:538.582533pt;}
.y7c{bottom:538.588533pt;}
.y202{bottom:538.595867pt;}
.y14b{bottom:538.598667pt;}
.y22f{bottom:540.552800pt;}
.y185{bottom:544.820000pt;}
.yd4{bottom:546.676533pt;}
.y12{bottom:547.030400pt;}
.y1b8{bottom:548.289600pt;}
.y270{bottom:551.345333pt;}
.y14a{bottom:552.865600pt;}
.y22e{bottom:553.886133pt;}
.y8c{bottom:554.462533pt;}
.y41{bottom:554.464533pt;}
.yab{bottom:554.475867pt;}
.y10e{bottom:554.582533pt;}
.y7b{bottom:554.595867pt;}
.yd3{bottom:561.119200pt;}
.y1b7{bottom:561.402933pt;}
.y11{bottom:563.030400pt;}
.y26f{bottom:564.678667pt;}
.y149{bottom:567.108267pt;}
.y22d{bottom:567.219467pt;}
.y8b{bottom:570.462533pt;}
.y40{bottom:570.464533pt;}
.yaa{bottom:570.475867pt;}
.y10d{bottom:570.582533pt;}
.y7a{bottom:570.595867pt;}
.y1b6{bottom:574.516267pt;}
.yd2{bottom:575.561867pt;}
.y184{bottom:575.841867pt;}
.y26e{bottom:578.012000pt;}
.y10{bottom:579.030400pt;}
.y22c{bottom:580.552800pt;}
.y148{bottom:581.350933pt;}
.y8a{bottom:586.462533pt;}
.y3f{bottom:586.464533pt;}
.ya9{bottom:586.475867pt;}
.y10c{bottom:586.582533pt;}
.y79{bottom:586.595867pt;}
.y1b5{bottom:587.629600pt;}
.yd1{bottom:590.004533pt;}
.y26d{bottom:591.345333pt;}
.y183{bottom:593.175200pt;}
.y22b{bottom:593.886133pt;}
.yf{bottom:595.030400pt;}
.y147{bottom:595.593600pt;}
.y1b4{bottom:600.742933pt;}
.y93{bottom:602.235867pt;}
.y89{bottom:602.462533pt;}
.y3e{bottom:602.464533pt;}
.ya8{bottom:602.475867pt;}
.y10b{bottom:602.582533pt;}
.y78{bottom:602.595867pt;}
.yd0{bottom:604.447200pt;}
.y26c{bottom:604.678667pt;}
.y22a{bottom:607.219467pt;}
.y146{bottom:609.836267pt;}
.ye{bottom:611.030400pt;}
.y1b3{bottom:613.856267pt;}
.y26b{bottom:618.012000pt;}
.y88{bottom:618.462533pt;}
.y3d{bottom:618.464533pt;}
.ya7{bottom:618.475867pt;}
.y10a{bottom:618.582533pt;}
.y77{bottom:618.595867pt;}
.y229{bottom:620.552800pt;}
.y145{bottom:624.103200pt;}
.y1b2{bottom:626.969600pt;}
.ycf{bottom:630.228533pt;}
.y26a{bottom:631.345333pt;}
.y87{bottom:634.462533pt;}
.y3c{bottom:634.464533pt;}
.ya6{bottom:634.475867pt;}
.y109{bottom:634.582533pt;}
.y182{bottom:634.588533pt;}
.y76{bottom:634.595867pt;}
.y144{bottom:638.345867pt;}
.ycb{bottom:643.113867pt;}
.y269{bottom:644.678667pt;}
.yce{bottom:644.895200pt;}
.y228{bottom:649.988533pt;}
.yca{bottom:650.452533pt;}
.y86{bottom:650.462533pt;}
.y3b{bottom:650.464533pt;}
.ya5{bottom:650.475867pt;}
.y108{bottom:650.582533pt;}
.y181{bottom:650.588533pt;}
.y75{bottom:650.595867pt;}
.yd{bottom:651.170933pt;}
.y1b1{bottom:651.422933pt;}
.y143{bottom:652.588533pt;}
.ycc{bottom:657.780533pt;}
.y268{bottom:658.012000pt;}
.yc{bottom:662.238267pt;}
.y1ae{bottom:663.658933pt;}
.y85{bottom:666.462533pt;}
.y3a{bottom:666.464533pt;}
.ya4{bottom:666.475867pt;}
.y107{bottom:666.582533pt;}
.y180{bottom:666.588533pt;}
.y74{bottom:666.595867pt;}
.y142{bottom:666.831200pt;}
.y1ad{bottom:670.332267pt;}
.ycd{bottom:670.676533pt;}
.y267{bottom:671.345333pt;}
.y1b0{bottom:675.876267pt;}
.y141{bottom:681.073867pt;}
.y84{bottom:682.462533pt;}
.y39{bottom:682.464533pt;}
.ya3{bottom:682.475867pt;}
.y1af{bottom:682.549600pt;}
.y106{bottom:682.582533pt;}
.y17f{bottom:682.588533pt;}
.y73{bottom:682.595867pt;}
.y266{bottom:684.678667pt;}
.yb{bottom:690.429867pt;}
.y140{bottom:695.316533pt;}
.y265{bottom:698.012000pt;}
.y83{bottom:698.462533pt;}
.y38{bottom:698.464533pt;}
.y227{bottom:698.468533pt;}
.ya2{bottom:698.475867pt;}
.y105{bottom:698.582533pt;}
.y176{bottom:698.595867pt;}
.yc9{bottom:699.475867pt;}
.ya{bottom:707.252400pt;}
.y13f{bottom:709.569067pt;}
.y264{bottom:711.345333pt;}
.y72{bottom:714.235867pt;}
.y9{bottom:714.429867pt;}
.y82{bottom:714.462533pt;}
.y37{bottom:714.464533pt;}
.y226{bottom:714.468533pt;}
.ya1{bottom:714.475867pt;}
.y104{bottom:714.582533pt;}
.y17e{bottom:714.595867pt;}
.y1ac{bottom:716.902533pt;}
.y13e{bottom:723.811733pt;}
.y263{bottom:724.678667pt;}
.y71{bottom:730.235867pt;}
.y81{bottom:730.462533pt;}
.y36{bottom:730.464533pt;}
.y225{bottom:730.468533pt;}
.ya0{bottom:730.475867pt;}
.y103{bottom:730.582533pt;}
.y17d{bottom:730.595867pt;}
.y8{bottom:731.252400pt;}
.y1ab{bottom:734.235867pt;}
.y262{bottom:738.012000pt;}
.y13d{bottom:738.054400pt;}
.y224{bottom:746.108533pt;}
.y175{bottom:746.235867pt;}
.y80{bottom:746.462533pt;}
.y35{bottom:746.464533pt;}
.y9f{bottom:746.475867pt;}
.y102{bottom:746.582533pt;}
.y17c{bottom:746.595867pt;}
.y261{bottom:751.345333pt;}
.y13c{bottom:752.297067pt;}
.y7{bottom:756.783067pt;}
.y70{bottom:762.462533pt;}
.y34{bottom:762.464533pt;}
.y9e{bottom:762.475867pt;}
.y101{bottom:762.582533pt;}
.y17b{bottom:762.595867pt;}
.y260{bottom:764.678667pt;}
.y13b{bottom:766.539733pt;}
.y25f{bottom:778.012000pt;}
.y223{bottom:778.108533pt;}
.y1aa{bottom:778.342533pt;}
.y6f{bottom:778.462533pt;}
.y33{bottom:778.464533pt;}
.y9d{bottom:778.475867pt;}
.y100{bottom:778.582533pt;}
.y17a{bottom:778.595867pt;}
.y13a{bottom:780.782400pt;}
.y25e{bottom:791.345333pt;}
.y1a9{bottom:794.342533pt;}
.y6e{bottom:794.462533pt;}
.y32{bottom:794.464533pt;}
.y9c{bottom:794.475867pt;}
.yff{bottom:794.582533pt;}
.y179{bottom:794.595867pt;}
.y139{bottom:795.025067pt;}
.y6{bottom:797.816533pt;}
.y25d{bottom:804.678667pt;}
.y138{bottom:809.267733pt;}
.y201{bottom:810.235867pt;}
.y1a8{bottom:810.342533pt;}
.y6d{bottom:810.462533pt;}
.y31{bottom:810.464533pt;}
.y222{bottom:810.468533pt;}
.y9b{bottom:810.475867pt;}
.yfe{bottom:810.582533pt;}
.y178{bottom:810.595867pt;}
.y25c{bottom:818.012000pt;}
.y137{bottom:823.510400pt;}
.y1a7{bottom:826.342533pt;}
.y6c{bottom:826.462533pt;}
.y30{bottom:826.464533pt;}
.y221{bottom:826.468533pt;}
.y9a{bottom:826.475867pt;}
.yfd{bottom:826.582533pt;}
.y5{bottom:830.226133pt;}
.y25b{bottom:831.345333pt;}
.y220{bottom:842.108533pt;}
.y177{bottom:842.235867pt;}
.y6b{bottom:842.462533pt;}
.y2f{bottom:842.464533pt;}
.y99{bottom:842.475867pt;}
.yfc{bottom:842.582533pt;}
.y25a{bottom:844.678667pt;}
.y136{bottom:851.407733pt;}
.y1a6{bottom:857.982533pt;}
.y259{bottom:858.012000pt;}
.y6a{bottom:858.462533pt;}
.y2e{bottom:858.464533pt;}
.y98{bottom:858.475867pt;}
.y133{bottom:858.865067pt;}
.y4{bottom:862.635733pt;}
.y130{bottom:865.538400pt;}
.y258{bottom:871.345333pt;}
.y132{bottom:872.202400pt;}
.y12f{bottom:872.211733pt;}
.yfb{bottom:874.222533pt;}
.y69{bottom:874.462533pt;}
.y2d{bottom:874.464533pt;}
.y21f{bottom:874.468533pt;}
.y97{bottom:874.475867pt;}
.y135{bottom:879.641067pt;}
.y257{bottom:884.678667pt;}
.y131{bottom:885.539733pt;}
.y134{bottom:886.314400pt;}
.y21e{bottom:890.108533pt;}
.yfa{bottom:890.222533pt;}
.y68{bottom:890.462533pt;}
.y2c{bottom:890.464533pt;}
.y96{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y256{bottom:898.012000pt;}
.y67{bottom:906.462533pt;}
.y61{bottom:906.464533pt;}
.y95{bottom:906.475867pt;}
.y255{bottom:911.345333pt;}
.yf9{bottom:922.102533pt;}
.y2b{bottom:922.104533pt;}
.y66{bottom:922.462533pt;}
.y60{bottom:922.464533pt;}
.y7f{bottom:922.468533pt;}
.y94{bottom:922.475867pt;}
.y254{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y253{bottom:1006.590133pt;}
.y1dc{bottom:1006.590400pt;}
.yf5{bottom:1006.590533pt;}
.y65{bottom:1006.594400pt;}
.y92{bottom:1006.597067pt;}
.y295{bottom:1006.598667pt;}
.y1a5{bottom:1006.626933pt;}
.y174{bottom:1006.641467pt;}
.y29{bottom:1009.860000pt;}
.y28{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h19{height:25.921875pt;}
.h2{height:27.179688pt;}
.hc{height:29.121094pt;}
.h7{height:29.160156pt;}
.hb{height:29.169756pt;}
.h16{height:29.625000pt;}
.he{height:31.062500pt;}
.hd{height:31.104167pt;}
.h18{height:32.757812pt;}
.h1a{height:32.769012pt;}
.h1b{height:32.778613pt;}
.h10{height:37.031250pt;}
.h14{height:37.437500pt;}
.h9{height:38.828125pt;}
.ha{height:38.880208pt;}
.hf{height:46.796875pt;}
.h1c{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h11{height:52.375911pt;}
.h12{height:52.381245pt;}
.h13{height:52.405245pt;}
.h17{height:59.413813pt;}
.h15{height:66.749500pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:68.031467pt;}
.x22{left:69.921200pt;}
.x6{left:85.417333pt;}
.x1{left:86.929067pt;}
.x13{left:88.818933pt;}
.x41{left:90.708667pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x43{left:109.606267pt;}
.x3{left:111.501467pt;}
.xf{left:117.169200pt;}
.x23{left:120.881200pt;}
.x2c{left:123.214533pt;}
.x3a{left:125.398533pt;}
.x2b{left:126.359867pt;}
.x36{left:136.745600pt;}
.x2d{left:139.778933pt;}
.x35{left:142.084267pt;}
.x14{left:144.893600pt;}
.x25{left:158.811867pt;}
.x24{left:165.289200pt;}
.x26{left:167.622533pt;}
.x5{left:170.078667pt;}
.x39{left:176.778133pt;}
.x2f{left:177.709600pt;}
.x2e{left:184.186933pt;}
.x30{left:186.520267pt;}
.x16{left:192.936267pt;}
.x15{left:198.258933pt;}
.x27{left:210.919867pt;}
.x3d{left:223.398533pt;}
.x31{left:229.817600pt;}
.x2a{left:244.193200pt;}
.x34{left:263.090933pt;}
.x18{left:270.397600pt;}
.x3b{left:277.951867pt;}
.x28{left:293.071867pt;}
.x17{left:295.698933pt;}
.x32{left:311.969600pt;}
.x1a{left:357.256267pt;}
.x19{left:386.408267pt;}
.x7{left:404.481333pt;}
.xa{left:406.287600pt;}
.x10{left:425.195333pt;}
.x42{left:428.991333pt;}
.xb{left:436.527600pt;}
.x40{left:447.874267pt;}
.x1c{left:451.816267pt;}
.x11{left:455.430400pt;}
.xc{left:466.900933pt;}
.x1b{left:470.973600pt;}
.x3c{left:477.591867pt;}
.x29{left:481.371867pt;}
.x33{left:500.269600pt;}
.x3e{left:507.275200pt;}
.x21{left:525.911467pt;}
.x3f{left:529.860267pt;}
.x1e{left:538.674933pt;}
.x1d{left:561.682933pt;}
.xe{left:589.770933pt;}
.x2{left:616.324800pt;}
.x20{left:630.322933pt;}
.x37{left:641.529467pt;}
.xd{left:647.459200pt;}
.x1f{left:658.066933pt;}
.x38{left:661.216533pt;}
.x12{left:666.356800pt;}
}




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