
    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_e8c7c53922dbe65afb959980.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_fdeb53d14293b2c10fddce91.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bc32cabc7dd301542a7a1b7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_5e4b380cab7f7d48d4abbd3c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0bd7d7a260b8c7e6d3300447.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_25d60daf0e15e79e8238bd82.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_fbe3fa285e6de0390da72a65.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_7b034e00ab7db765c9300fc0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e463fa4c7e24131f9c5d814f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1e20f5bc057a14c4b51aac68.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.680176;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_5dd67ce66caada204e44e850.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_39c97e05dea5ad272e553f7e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.093750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b25a68de65042d9e85da4ae5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_53a3eba8492f86fc697cc289.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,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);}
.ve{vertical-align:-22.662720px;}
.v2{vertical-align:-20.880000px;}
.v11{vertical-align:-10.440000px;}
.v16{vertical-align:-5.760000px;}
.vd{vertical-align:-3.240000px;}
.vb{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:5.760000px;}
.vf{vertical-align:18.380520px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:24.120000px;}
.v3{vertical-align:27.000000px;}
.va{vertical-align:32.404680px;}
.v10{vertical-align:34.587000px;}
.v15{vertical-align:35.640000px;}
.v8{vertical-align:37.080000px;}
.v13{vertical-align:38.520000px;}
.v14{vertical-align:40.690440px;}
.vc{vertical-align:42.120000px;}
.v5{vertical-align:47.520000px;}
.v12{vertical-align:52.200000px;}
.v6{vertical-align:53.280000px;}
.v7{vertical-align:56.520000px;}
.v9{vertical-align:73.080000px;}
.ls34{letter-spacing:-0.420840px;}
.lsf{letter-spacing:-0.378000px;}
.ls35{letter-spacing:-0.360720px;}
.ls1a{letter-spacing:-0.360000px;}
.ls98{letter-spacing:-0.336960px;}
.ls25{letter-spacing:-0.288000px;}
.ls5d{letter-spacing:-0.241920px;}
.ls33{letter-spacing:-0.240480px;}
.ls19{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.192240px;}
.ls28{letter-spacing:-0.180360px;}
.ls97{letter-spacing:-0.168480px;}
.ls61{letter-spacing:-0.167760px;}
.ls10{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.144000px;}
.ls8f{letter-spacing:-0.131760px;}
.ls32{letter-spacing:-0.126000px;}
.ls26{letter-spacing:-0.120240px;}
.ls11{letter-spacing:-0.108000px;}
.ls51{letter-spacing:-0.083880px;}
.ls18{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.065880px;}
.ls2f{letter-spacing:-0.063000px;}
.ls6a{letter-spacing:-0.061560px;}
.ls17{letter-spacing:-0.060120px;}
.ls6b{letter-spacing:-0.055080px;}
.ls12{letter-spacing:-0.054000px;}
.lsd{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls63{letter-spacing:0.042120px;}
.ls1{letter-spacing:0.054000px;}
.ls64{letter-spacing:0.059760px;}
.ls16{letter-spacing:0.060120px;}
.ls30{letter-spacing:0.063000px;}
.ls5b{letter-spacing:0.065880px;}
.ls8{letter-spacing:0.072000px;}
.ls50{letter-spacing:0.083880px;}
.ls4a{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.120240px;}
.ls9a{letter-spacing:0.126000px;}
.ls2b{letter-spacing:0.126252px;}
.ls23{letter-spacing:0.138276px;}
.ls5{letter-spacing:0.144000px;}
.ls82{letter-spacing:0.144288px;}
.ls3{letter-spacing:0.148320px;}
.ls96{letter-spacing:0.150300px;}
.ls14{letter-spacing:0.156240px;}
.ls62{letter-spacing:0.156312px;}
.ls86{letter-spacing:0.162000px;}
.ls47{letter-spacing:0.162324px;}
.ls69{letter-spacing:0.165240px;}
.ls13{letter-spacing:0.167760px;}
.ls2d{letter-spacing:0.174348px;}
.ls1d{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.180360px;}
.ls31{letter-spacing:0.189000px;}
.ls3f{letter-spacing:0.191520px;}
.ls87{letter-spacing:0.192384px;}
.ls36{letter-spacing:0.192924px;}
.ls5c{letter-spacing:0.197640px;}
.ls4{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.360000px;}
.ls9b{letter-spacing:0.420840px;}
.ls1b{letter-spacing:0.720000px;}
.ls40{letter-spacing:0.727200px;}
.ls4e{letter-spacing:0.748800px;}
.ls2a{letter-spacing:0.781560px;}
.ls5a{letter-spacing:1.080000px;}
.ls5f{letter-spacing:1.142280px;}
.lsa0{letter-spacing:1.197000px;}
.ls52{letter-spacing:1.800000px;}
.ls29{letter-spacing:1.821600px;}
.lsc{letter-spacing:1.863720px;}
.ls4d{letter-spacing:2.160000px;}
.ls5e{letter-spacing:2.224440px;}
.ls7{letter-spacing:2.520000px;}
.ls22{letter-spacing:2.585160px;}
.ls99{letter-spacing:2.880000px;}
.lsa3{letter-spacing:3.240000px;}
.ls2e{letter-spacing:3.667320px;}
.ls59{letter-spacing:3.960000px;}
.ls4c{letter-spacing:4.320000px;}
.ls20{letter-spacing:4.388760px;}
.ls9{letter-spacing:4.680000px;}
.ls4f{letter-spacing:5.400000px;}
.ls2c{letter-spacing:5.470920px;}
.ls39{letter-spacing:6.480000px;}
.ls37{letter-spacing:6.913800px;}
.lsb{letter-spacing:7.200000px;}
.ls44{letter-spacing:8.640000px;}
.ls4b{letter-spacing:15.264000px;}
.ls38{letter-spacing:15.984000px;}
.ls67{letter-spacing:24.480000px;}
.ls6{letter-spacing:25.766640px;}
.ls9d{letter-spacing:46.557000px;}
.ls91{letter-spacing:59.760000px;}
.ls95{letter-spacing:64.326960px;}
.ls9f{letter-spacing:72.450000px;}
.lsa1{letter-spacing:81.081000px;}
.ls55{letter-spacing:84.600000px;}
.ls92{letter-spacing:88.830000px;}
.ls3d{letter-spacing:105.480000px;}
.ls94{letter-spacing:107.820000px;}
.ls9e{letter-spacing:118.881000px;}
.ls9c{letter-spacing:121.401000px;}
.ls93{letter-spacing:128.358000px;}
.ls8c{letter-spacing:131.496480px;}
.ls90{letter-spacing:136.440000px;}
.ls85{letter-spacing:149.131080px;}
.ls79{letter-spacing:152.640000px;}
.ls3e{letter-spacing:159.480000px;}
.ls6c{letter-spacing:159.840000px;}
.lsa2{letter-spacing:160.650000px;}
.ls88{letter-spacing:160.681320px;}
.ls54{letter-spacing:169.200000px;}
.ls7a{letter-spacing:170.280000px;}
.ls8e{letter-spacing:175.043160px;}
.ls8d{letter-spacing:175.438440px;}
.ls57{letter-spacing:175.680000px;}
.ls6d{letter-spacing:179.280000px;}
.ls78{letter-spacing:183.960000px;}
.ls74{letter-spacing:188.280000px;}
.ls83{letter-spacing:188.393400px;}
.ls89{letter-spacing:191.579040px;}
.ls77{letter-spacing:191.880000px;}
.ls6e{letter-spacing:193.320000px;}
.ls84{letter-spacing:194.158080px;}
.ls76{letter-spacing:194.760000px;}
.ls8b{letter-spacing:197.376480px;}
.ls75{letter-spacing:200.520000px;}
.ls8a{letter-spacing:202.778640px;}
.ls66{letter-spacing:203.760000px;}
.ls73{letter-spacing:206.640000px;}
.ls6f{letter-spacing:218.520000px;}
.ls71{letter-spacing:218.880000px;}
.ls72{letter-spacing:219.960000px;}
.ls45{letter-spacing:223.560000px;}
.ls70{letter-spacing:239.760000px;}
.ls58{letter-spacing:242.640000px;}
.ls53{letter-spacing:250.200000px;}
.ls46{letter-spacing:259.560000px;}
.ls7b{letter-spacing:279.720000px;}
.ls42{letter-spacing:281.520000px;}
.ls3a{letter-spacing:300.240000px;}
.ls7c{letter-spacing:302.040000px;}
.ls80{letter-spacing:332.640000px;}
.ls43{letter-spacing:349.560000px;}
.ls7d{letter-spacing:359.640000px;}
.ls81{letter-spacing:374.760000px;}
.ls7f{letter-spacing:392.760000px;}
.ls3b{letter-spacing:399.240000px;}
.ls1e{letter-spacing:401.760000px;}
.ls1f{letter-spacing:403.200000px;}
.ls41{letter-spacing:408.240000px;}
.ls7e{letter-spacing:416.160000px;}
.ls56{letter-spacing:499.320000px;}
.ls49{letter-spacing:555.840000px;}
.ls65{letter-spacing:587.520000px;}
.ls48{letter-spacing:713.880000px;}
.ls60{letter-spacing:747.720000px;}
.ls68{letter-spacing:824.245200px;}
.ls1c{letter-spacing:846.000000px;}
.ls3c{letter-spacing:918.000000px;}
.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;}
}
.ws6{word-spacing:-24.624000px;}
.ws7{word-spacing:-24.480000px;}
.ws108{word-spacing:-23.402520px;}
.wsaf{word-spacing:-23.150880px;}
.ws8{word-spacing:-21.222360px;}
.ws9{word-spacing:-21.162240px;}
.ws79{word-spacing:-21.137760px;}
.wsa{word-spacing:-21.102120px;}
.wsb{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws2f{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws33{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws50{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.640000px;}
.wse2{word-spacing:-16.667640px;}
.wsa8{word-spacing:-16.535880px;}
.wsdf{word-spacing:-16.404120px;}
.wse3{word-spacing:-16.338240px;}
.wse9{word-spacing:-15.750000px;}
.wsb7{word-spacing:-15.687000px;}
.wsc7{word-spacing:-15.624000px;}
.ws51{word-spacing:-15.210360px;}
.ws34{word-spacing:-15.090120px;}
.ws36{word-spacing:-15.030000px;}
.ws11{word-spacing:-14.969880px;}
.wsb8{word-spacing:-14.909760px;}
.ws35{word-spacing:-14.849640px;}
.ws52{word-spacing:-14.669280px;}
.wsdd{word-spacing:-13.662000px;}
.wse8{word-spacing:-13.608000px;}
.ws1{word-spacing:-13.587120px;}
.wsde{word-spacing:-13.392000px;}
.wsd7{word-spacing:-13.310640px;}
.ws2{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.204000px;}
.ws8c{word-spacing:-12.161520px;}
.ws5{word-spacing:-12.150000px;}
.ws4{word-spacing:-12.042000px;}
.ws3{word-spacing:-11.826000px;}
.wsb6{word-spacing:-10.572120px;}
.wse6{word-spacing:-10.361520px;}
.wse7{word-spacing:-10.193040px;}
.ws10{word-spacing:-9.720000px;}
.wsb9{word-spacing:-4.320000px;}
.ws9c{word-spacing:-4.032000px;}
.ws5d{word-spacing:-3.960000px;}
.ws10e{word-spacing:-3.843000px;}
.ws9e{word-spacing:-3.672000px;}
.wsc6{word-spacing:-3.667320px;}
.ws9a{word-spacing:-3.600000px;}
.wsf8{word-spacing:-3.528000px;}
.wsdb{word-spacing:-3.426840px;}
.wsd9{word-spacing:-3.312000px;}
.wsc5{word-spacing:-3.306600px;}
.wse5{word-spacing:-3.240000px;}
.wsc9{word-spacing:-3.150000px;}
.ws3b{word-spacing:-3.024000px;}
.ws3a{word-spacing:-2.952000px;}
.wsdc{word-spacing:-2.945880px;}
.ws31{word-spacing:-2.880000px;}
.ws65{word-spacing:-2.709000px;}
.wsa2{word-spacing:-2.664000px;}
.ws64{word-spacing:-2.646000px;}
.ws87{word-spacing:-2.592000px;}
.ws89{word-spacing:-2.520000px;}
.wsf0{word-spacing:-2.457000px;}
.wsf9{word-spacing:-2.394000px;}
.ws8b{word-spacing:-2.304000px;}
.ws59{word-spacing:-2.232000px;}
.ws26{word-spacing:-2.160000px;}
.wscc{word-spacing:-2.079000px;}
.ws85{word-spacing:-1.944000px;}
.ws84{word-spacing:-1.872000px;}
.ws6b{word-spacing:-1.863720px;}
.ws97{word-spacing:-1.800000px;}
.ws106{word-spacing:-1.764000px;}
.wsf3{word-spacing:-1.638000px;}
.wsb5{word-spacing:-1.623240px;}
.wsb4{word-spacing:-1.563120px;}
.ws5f{word-spacing:-1.512000px;}
.ws96{word-spacing:-1.442880px;}
.ws3c{word-spacing:-1.440000px;}
.wseb{word-spacing:-1.323000px;}
.wsbb{word-spacing:-1.224000px;}
.wsea{word-spacing:-1.197000px;}
.ws88{word-spacing:-1.152000px;}
.ws44{word-spacing:-1.142280px;}
.ws81{word-spacing:-1.080000px;}
.wsf6{word-spacing:-1.008000px;}
.wsbe{word-spacing:-0.945000px;}
.ws43{word-spacing:-0.901800px;}
.wsc0{word-spacing:-0.819000px;}
.ws58{word-spacing:-0.792000px;}
.ws4c{word-spacing:-0.781560px;}
.ws82{word-spacing:-0.720000px;}
.wsca{word-spacing:-0.693000px;}
.ws10f{word-spacing:-0.630000px;}
.wscb{word-spacing:-0.567000px;}
.ws4d{word-spacing:-0.541080px;}
.ws95{word-spacing:-0.480960px;}
.wsae{word-spacing:-0.461160px;}
.ws21{word-spacing:-0.432000px;}
.ws19{word-spacing:-0.420840px;}
.wsc4{word-spacing:-0.360720px;}
.ws20{word-spacing:-0.360000px;}
.wsd3{word-spacing:-0.330480px;}
.wsad{word-spacing:-0.329400px;}
.ws61{word-spacing:-0.315000px;}
.ws10b{word-spacing:-0.252000px;}
.ws7a{word-spacing:-0.251640px;}
.ws17{word-spacing:-0.234360px;}
.wsac{word-spacing:-0.197640px;}
.wsd8{word-spacing:-0.191520px;}
.ws60{word-spacing:-0.189000px;}
.ws2e{word-spacing:-0.180360px;}
.wse0{word-spacing:-0.162000px;}
.ws1e{word-spacing:-0.144000px;}
.wsd6{word-spacing:-0.131760px;}
.wsf4{word-spacing:-0.126000px;}
.ws3f{word-spacing:-0.120240px;}
.wsd4{word-spacing:-0.110160px;}
.ws38{word-spacing:-0.096120px;}
.ws39{word-spacing:-0.083880px;}
.ws1b{word-spacing:-0.072000px;}
.wse1{word-spacing:-0.065880px;}
.ws47{word-spacing:-0.060120px;}
.ws12{word-spacing:0.000000px;}
.ws1a{word-spacing:0.060120px;}
.wsbf{word-spacing:0.063000px;}
.ws13{word-spacing:0.065880px;}
.ws1c{word-spacing:0.072000px;}
.ws37{word-spacing:0.096120px;}
.ws14{word-spacing:0.120240px;}
.ws66{word-spacing:0.126000px;}
.wsd5{word-spacing:0.131760px;}
.ws18{word-spacing:0.144000px;}
.ws15{word-spacing:0.162000px;}
.ws16{word-spacing:0.167760px;}
.ws70{word-spacing:0.180360px;}
.ws29{word-spacing:0.216000px;}
.ws7b{word-spacing:0.240480px;}
.wsd2{word-spacing:0.246240px;}
.ws28{word-spacing:0.288000px;}
.ws48{word-spacing:0.300600px;}
.ws53{word-spacing:0.360000px;}
.ws67{word-spacing:0.360720px;}
.ws77{word-spacing:0.420840px;}
.wsfd{word-spacing:0.441000px;}
.wsf2{word-spacing:0.504000px;}
.ws72{word-spacing:0.541080px;}
.ws30{word-spacing:0.576000px;}
.wsfa{word-spacing:0.601200px;}
.ws86{word-spacing:0.648000px;}
.ws4e{word-spacing:0.661320px;}
.ws91{word-spacing:0.720000px;}
.ws111{word-spacing:0.756000px;}
.ws10a{word-spacing:0.819000px;}
.ws71{word-spacing:0.901800px;}
.ws54{word-spacing:0.936000px;}
.ws4f{word-spacing:0.961920px;}
.ws1f{word-spacing:1.008000px;}
.wsc3{word-spacing:1.022040px;}
.ws27{word-spacing:1.080000px;}
.ws109{word-spacing:1.134000px;}
.wscf{word-spacing:1.197000px;}
.ws110{word-spacing:1.260000px;}
.ws6c{word-spacing:1.262520px;}
.ws5b{word-spacing:1.296000px;}
.ws6d{word-spacing:1.322640px;}
.wsb0{word-spacing:1.342080px;}
.wsb1{word-spacing:1.368000px;}
.ws5c{word-spacing:1.440000px;}
.ws73{word-spacing:1.442880px;}
.wscd{word-spacing:1.449000px;}
.wsfb{word-spacing:1.623240px;}
.ws113{word-spacing:1.656000px;}
.wsa6{word-spacing:1.683360px;}
.wsf7{word-spacing:1.701000px;}
.ws3d{word-spacing:1.728000px;}
.ws56{word-spacing:1.800000px;}
.wsa5{word-spacing:1.863720px;}
.ws55{word-spacing:1.872000px;}
.ws2d{word-spacing:1.923840px;}
.wsce{word-spacing:1.953000px;}
.wsa7{word-spacing:1.983960px;}
.wsb2{word-spacing:2.044080px;}
.ws3e{word-spacing:2.088000px;}
.ws94{word-spacing:2.160000px;}
.wsc8{word-spacing:2.268000px;}
.ws63{word-spacing:2.331000px;}
.ws49{word-spacing:2.404800px;}
.ws1d{word-spacing:2.448000px;}
.ws5e{word-spacing:2.520000px;}
.wsbd{word-spacing:2.583000px;}
.wsb3{word-spacing:2.585160px;}
.wsf5{word-spacing:2.646000px;}
.ws4a{word-spacing:2.705400px;}
.ws57{word-spacing:2.808000px;}
.ws40{word-spacing:2.880000px;}
.wsff{word-spacing:2.961000px;}
.ws100{word-spacing:3.024000px;}
.wsa0{word-spacing:3.096000px;}
.ws76{word-spacing:3.126240px;}
.ws90{word-spacing:3.168000px;}
.ws78{word-spacing:3.186360px;}
.ws9d{word-spacing:3.240000px;}
.wsf1{word-spacing:3.339000px;}
.ws6e{word-spacing:3.486960px;}
.wsab{word-spacing:3.528000px;}
.ws9f{word-spacing:3.600000px;}
.wsec{word-spacing:3.717000px;}
.ws107{word-spacing:3.727440px;}
.ws6f{word-spacing:3.787560px;}
.wsaa{word-spacing:3.816000px;}
.ws69{word-spacing:3.847680px;}
.wsa4{word-spacing:3.888000px;}
.ws32{word-spacing:3.960000px;}
.ws68{word-spacing:4.088160px;}
.ws24{word-spacing:4.176000px;}
.ws92{word-spacing:4.208400px;}
.ws8a{word-spacing:4.248000px;}
.ws8e{word-spacing:4.320000px;}
.ws102{word-spacing:4.410000px;}
.ws45{word-spacing:4.448880px;}
.ws93{word-spacing:4.509000px;}
.wsda{word-spacing:4.536000px;}
.ws23{word-spacing:4.608000px;}
.ws22{word-spacing:4.680000px;}
.wsfe{word-spacing:4.788000px;}
.wsd1{word-spacing:4.809600px;}
.ws46{word-spacing:4.929840px;}
.ws41{word-spacing:5.040000px;}
.ws4b{word-spacing:5.170320px;}
.wsd0{word-spacing:5.256000px;}
.wsa3{word-spacing:5.328000px;}
.ws8f{word-spacing:5.400000px;}
.ws10c{word-spacing:5.481000px;}
.ws75{word-spacing:5.531040px;}
.wsef{word-spacing:5.544000px;}
.ws80{word-spacing:5.688000px;}
.ws9b{word-spacing:5.760000px;}
.ws101{word-spacing:5.859000px;}
.ws74{word-spacing:5.891760px;}
.ws62{word-spacing:6.048000px;}
.ws25{word-spacing:6.120000px;}
.ws5a{word-spacing:6.408000px;}
.ws8d{word-spacing:6.480000px;}
.wsee{word-spacing:6.489000px;}
.wsed{word-spacing:6.552000px;}
.ws7e{word-spacing:6.673320px;}
.ws2b{word-spacing:6.768000px;}
.ws7c{word-spacing:6.793560px;}
.ws7d{word-spacing:7.094160px;}
.ws2c{word-spacing:7.128000px;}
.ws2a{word-spacing:7.200000px;}
.ws105{word-spacing:7.245000px;}
.wsc1{word-spacing:7.308000px;}
.ws7f{word-spacing:7.334640px;}
.wsc2{word-spacing:7.371000px;}
.ws103{word-spacing:7.434000px;}
.wsa1{word-spacing:7.488000px;}
.ws104{word-spacing:7.560000px;}
.ws98{word-spacing:7.848000px;}
.ws99{word-spacing:7.920000px;}
.wsba{word-spacing:8.208000px;}
.ws10d{word-spacing:8.280000px;}
.ws42{word-spacing:8.568000px;}
.ws83{word-spacing:8.640000px;}
.wsbc{word-spacing:9.000000px;}
.ws6a{word-spacing:9.138240px;}
.ws112{word-spacing:9.450000px;}
.wse4{word-spacing:10.800000px;}
.wsfc{word-spacing:18.144000px;}
.wsa9{word-spacing:381.627000px;}
._7{margin-left:-3.299400px;}
._3e{margin-left:-2.116440px;}
._2{margin-left:-1.009800px;}
._3{width:1.009800px;}
._b{width:2.233800px;}
._4{width:3.670200px;}
._91{width:4.782240px;}
._5{width:5.904000px;}
._6{width:7.128000px;}
._3a{width:22.464000px;}
._8b{width:62.872560px;}
._25{width:67.750200px;}
._79{width:71.032320px;}
._7a{width:72.851040px;}
._8a{width:74.196000px;}
._7c{width:76.582440px;}
._7d{width:80.460000px;}
._80{width:89.640000px;}
._7b{width:91.084680px;}
._1{width:94.716000px;}
._89{width:101.358000px;}
._26{width:106.992000px;}
._85{width:108.476640px;}
._81{width:111.186000px;}
._3c{width:117.360000px;}
._7e{width:121.500000px;}
._75{width:125.280000px;}
._62{width:129.600000px;}
._5b{width:133.056000px;}
._67{width:134.131680px;}
._86{width:135.180000px;}
._5e{width:136.224000px;}
._5c{width:139.319280px;}
._6c{width:142.632000px;}
._49{width:144.864000px;}
._4a{width:146.520000px;}
._63{width:147.600000px;}
._5f{width:148.752000px;}
._60{width:151.056000px;}
._4c{width:154.800000px;}
._55{width:156.300840px;}
._61{width:157.380840px;}
._6b{width:159.429600px;}
._70{width:161.280000px;}
._41{width:162.288000px;}
._4b{width:164.160000px;}
._29{width:165.456000px;}
._7f{width:166.662000px;}
._42{width:171.288000px;}
._28{width:172.872000px;}
._5a{width:173.891160px;}
._27{width:175.177800px;}
._22{width:176.760000px;}
._87{width:179.460000px;}
._44{width:182.520000px;}
._33{width:184.320000px;}
._5d{width:186.768000px;}
._3b{width:189.360000px;}
._46{width:191.086200px;}
._32{width:192.744000px;}
._23{width:194.760000px;}
._88{width:196.614000px;}
._82{width:198.738000px;}
._45{width:199.800000px;}
._84{width:202.855680px;}
._4e{width:203.976000px;}
._68{width:205.084440px;}
._83{width:206.137800px;}
._66{width:207.587880px;}
._69{width:208.707840px;}
._2e{width:210.168000px;}
._47{width:211.462200px;}
._43{width:213.336000px;}
._40{width:218.016000px;}
._10{width:219.600000px;}
._24{width:221.184000px;}
._6a{width:223.596720px;}
._65{width:224.782560px;}
._e{width:226.800000px;}
._6e{width:227.880000px;}
._2a{width:228.888000px;}
._12{width:237.600000px;}
._57{width:240.527880px;}
._64{width:242.438400px;}
._74{width:250.560000px;}
._72{width:251.640000px;}
._15{width:255.600000px;}
._d{width:273.600000px;}
._8c{width:277.416000px;}
._58{width:279.720000px;}
._59{width:293.040000px;}
._54{width:301.680000px;}
._6f{width:304.560000px;}
._48{width:306.648000px;}
._19{width:309.600000px;}
._3d{width:313.268400px;}
._50{width:319.680000px;}
._52{width:327.126240px;}
._56{width:328.668720px;}
._51{width:337.320000px;}
._17{width:345.600000px;}
._31{width:347.688000px;}
._2f{width:376.560000px;}
._90{width:379.152000px;}
._4f{width:382.753800px;}
._6d{width:384.552000px;}
._71{width:390.096000px;}
._30{width:393.840000px;}
._2d{width:395.208000px;}
._8{width:400.968000px;}
._73{width:408.456000px;}
._9{width:415.800000px;}
._8f{width:417.168000px;}
._c{width:427.248000px;}
._78{width:430.920000px;}
._a{width:433.080000px;}
._2b{width:440.928000px;}
._8e{width:446.256000px;}
._1f{width:462.384000px;}
._8d{width:463.680000px;}
._39{width:470.088000px;}
._35{width:488.088000px;}
._76{width:509.328000px;}
._36{width:516.240000px;}
._4d{width:518.328000px;}
._53{width:528.048000px;}
._38{width:544.824000px;}
._37{width:562.824000px;}
._20{width:570.384000px;}
._21{width:586.368000px;}
._1b{width:611.929800px;}
._77{width:645.120000px;}
._2c{width:671.760000px;}
._f{width:684.432000px;}
._1c{width:686.520000px;}
._11{width:698.472000px;}
._1a{width:710.496000px;}
._1d{width:717.913800px;}
._0{width:731.538000px;}
._3f{width:765.432000px;}
._13{width:774.432000px;}
._14{width:779.184000px;}
._1e{width:798.049800px;}
._34{width:846.000000px;}
._16{width:874.440000px;}
._18{width:898.416000px;}
.fca{color:rgb(255,0,0);}
.fc9{color:rgb(31,77,120);}
.fc7{color:rgb(204,255,204);}
.fc8{color:rgb(255,255,153);}
.fc5{color:transparent;}
.fc4{color:rgb(118,113,113);}
.fc2{color:rgb(196,89,17);}
.fcb{color:rgb(192,192,192);}
.fc6{color:rgb(39,39,39);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:38.880000px;}
.fsd{font-size:42.120000px;}
.fsb{font-size:44.398378px;}
.fs7{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fsf{font-size:55.080000px;}
.fs2{font-size:60.120000px;}
.fsc{font-size:60.480000px;}
.fse{font-size:61.560000px;}
.fsa{font-size:63.000000px;}
.fs1{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:78.120000px;}
.fs5{font-size:83.880000px;}
.fs9{font-size:96.120000px;}
.fs3{font-size:108.000000px;}
.y2d6{bottom:-128.610000px;}
.y2d5{bottom:-95.850000px;}
.y2d4{bottom:-63.000000px;}
.y2d3{bottom:-30.240000px;}
.y0{bottom:0.000000px;}
.y2d2{bottom:1.440000px;}
.y97{bottom:6.750000px;}
.y92{bottom:6.840000px;}
.y334{bottom:9.180000px;}
.y337{bottom:9.270000px;}
.y133{bottom:9.810000px;}
.y13b{bottom:9.900000px;}
.y19b{bottom:11.429850px;}
.ye9{bottom:11.430000px;}
.yf0{bottom:11.520000px;}
.y9c{bottom:12.690000px;}
.y9f{bottom:13.590000px;}
.yf9{bottom:14.940000px;}
.ye7{bottom:15.930000px;}
.y9{bottom:16.020000px;}
.yf7{bottom:18.450000px;}
.y23c{bottom:36.720000px;}
.y280{bottom:36.810000px;}
.y32a{bottom:61.380000px;}
.y7{bottom:79.830000px;}
.y6{bottom:112.590000px;}
.y8{bottom:113.670000px;}
.y5{bottom:145.440000px;}
.y2c{bottom:165.505500px;}
.y1b9{bottom:170.730000px;}
.y38a{bottom:174.492180px;}
.y8d{bottom:174.505500px;}
.y5f{bottom:179.730000px;}
.y328{bottom:186.120000px;}
.y2b{bottom:188.010000px;}
.y389{bottom:191.776680px;}
.y29d{bottom:192.960000px;}
.y8c{bottom:197.010000px;}
.y5e{bottom:200.668860px;}
.y1e0{bottom:200.691000px;}
.y29f{bottom:204.480000px;}
.y1a7{bottom:205.920000px;}
.y8b{bottom:208.971000px;}
.y201{bottom:208.975500px;}
.y2a{bottom:212.760000px;}
.y5d{bottom:217.953360px;}
.y108{bottom:217.975500px;}
.y327{bottom:218.880000px;}
.y2d1{bottom:219.330000px;}
.y144{bottom:221.760000px;}
.y3a5{bottom:223.200000px;}
.y29c{bottom:224.550000px;}
.y29e{bottom:225.180000px;}
.y8a{bottom:226.255500px;}
.y370{bottom:226.971000px;}
.y1a6{bottom:230.760000px;}
.y200{bottom:231.480000px;}
.y29{bottom:233.460000px;}
.y5c{bottom:235.237860px;}
.y107{bottom:240.480000px;}
.y143{bottom:242.460000px;}
.y36f{bottom:244.255500px;}
.y3a4{bottom:247.950000px;}
.y89{bottom:248.760000px;}
.ydf{bottom:250.470000px;}
.y34a{bottom:251.187750px;}
.y1a5{bottom:251.460000px;}
.y326{bottom:251.730000px;}
.y5b{bottom:252.522360px;}
.y1ff{bottom:256.230000px;}
.y1df{bottom:261.423360px;}
.y123{bottom:261.445500px;}
.y106{bottom:265.230000px;}
.y36e{bottom:266.760000px;}
.y3a3{bottom:268.650000px;}
.y5a{bottom:269.716680px;}
.y88{bottom:269.721180px;}
.y2d0{bottom:270.540000px;}
.y349{bottom:271.883250px;}
.y388{bottom:274.950000px;}
.y184{bottom:275.400000px;}
.y325{bottom:275.580000px;}
.y1fe{bottom:276.930000px;}
.y1de{bottom:278.707860px;}
.ybb{bottom:282.510000px;}
.yde{bottom:283.320000px;}
.y122{bottom:283.950000px;}
.y105{bottom:285.930000px;}
.y59{bottom:287.001180px;}
.y87{bottom:287.005680px;}
.y36d{bottom:287.721180px;}
.y29b{bottom:287.820000px;}
.y1a4{bottom:288.270000px;}
.y2eb{bottom:288.540000px;}
.y1b8{bottom:291.510000px;}
.y161{bottom:292.140000px;}
.y1dd{bottom:295.992360px;}
.y183{bottom:296.100000px;}
.y324{bottom:299.340000px;}
.y387{bottom:299.700000px;}
.y348{bottom:301.493250px;}
.y28{bottom:302.310000px;}
.ydd{bottom:304.020000px;}
.y58{bottom:304.195500px;}
.y142{bottom:304.380000px;}
.y36c{bottom:305.005680px;}
.y121{bottom:308.700000px;}
.y1a3{bottom:308.970000px;}
.y86{bottom:309.420000px;}
.y2cf{bottom:311.131530px;}
.y224{bottom:312.030000px;}
.y1dc{bottom:313.186680px;}
.y30f{bottom:315.270000px;}
.yba{bottom:315.630000px;}
.y160{bottom:315.900000px;}
.y386{bottom:320.400000px;}
.y1fd{bottom:321.381000px;}
.y2ea{bottom:321.390000px;}
.y347{bottom:322.188750px;}
.yb9{bottom:322.470000px;}
.y323{bottom:323.190000px;}
.ydc{bottom:324.720000px;}
.y182{bottom:325.800000px;}
.y57{bottom:326.700000px;}
.y36b{bottom:327.420000px;}
.y120{bottom:329.400000px;}
.y85{bottom:330.448860px;}
.y1db{bottom:330.471180px;}
.y27{bottom:335.160000px;}
.y3a2{bottom:336.690000px;}
.y2ce{bottom:337.500000px;}
.y1c7{bottom:338.274450px;}
.y30e{bottom:339.120000px;}
.y219{bottom:339.300000px;}
.y15f{bottom:339.750000px;}
.y223{bottom:340.740000px;}
.y1fc{bottom:341.997750px;}
.yb8{bottom:342.360000px;}
.y346{bottom:342.805500px;}
.y141{bottom:344.340000px;}
.y2e9{bottom:345.150000px;}
.ydb{bottom:345.420000px;}
.y29a{bottom:345.425310px;}
.y181{bottom:346.500000px;}
.y322{bottom:346.950000px;}
.y84{bottom:347.733360px;}
.y1da{bottom:347.755680px;}
.yb7{bottom:349.200000px;}
.y56{bottom:351.450000px;}
.y36a{bottom:353.700000px;}
.y3a1{bottom:357.390000px;}
.y1ad{bottom:358.245000px;}
.y26{bottom:358.920000px;}
.y27c{bottom:360.000000px;}
.y1fb{bottom:362.693250px;}
.y30d{bottom:362.880000px;}
.y83{bottom:364.927680px;}
.y299{bottom:365.310000px;}
.yda{bottom:366.120000px;}
.y180{bottom:367.200000px;}
.y218{bottom:369.000000px;}
.yb6{bottom:369.090000px;}
.y1d9{bottom:370.170000px;}
.y321{bottom:370.800000px;}
.y55{bottom:372.150000px;}
.y15e{bottom:372.510000px;}
.y369{bottom:378.450000px;}
.y25{bottom:379.620000px;}
.y2cd{bottom:380.340000px;}
.y82{bottom:382.212180px;}
.y27b{bottom:383.760000px;}
.y22c{bottom:383.785800px;}
.y140{bottom:384.390000px;}
.yd9{bottom:386.820000px;}
.y17f{bottom:387.900000px;}
.y385{bottom:388.080000px;}
.y217{bottom:389.700000px;}
.y104{bottom:390.780000px;}
.y1fa{bottom:392.397750px;}
.y11f{bottom:393.750000px;}
.y320{bottom:394.560000px;}
.y1d8{bottom:395.010000px;}
.yb5{bottom:395.730000px;}
.y3a0{bottom:396.090000px;}
.y2e8{bottom:398.700000px;}
.y368{bottom:399.150000px;}
.y81{bottom:399.496680px;}
.y15d{bottom:402.210000px;}
.yb4{bottom:402.570000px;}
.y345{bottom:402.750000px;}
.yd8{bottom:407.520000px;}
.y27a{bottom:407.610000px;}
.y17e{bottom:408.600000px;}
.y384{bottom:408.696750px;}
.y298{bottom:408.960000px;}
.y216{bottom:410.400000px;}
.y3bc{bottom:410.850000px;}
.y24{bottom:412.380000px;}
.y1f9{bottom:413.014500px;}
.y1d7{bottom:415.710000px;}
.y80{bottom:416.691000px;}
.y11e{bottom:417.510000px;}
.y31f{bottom:418.320000px;}
.y30c{bottom:419.490000px;}
.y13f{bottom:422.100000px;}
.y15c{bottom:423.000000px;}
.yb3{bottom:423.180000px;}
.y103{bottom:423.540000px;}
.y344{bottom:426.510000px;}
.y17d{bottom:429.300000px;}
.y383{bottom:429.392250px;}
.y2e7{bottom:430.290000px;}
.yd7{bottom:432.630000px;}
.y1f8{bottom:433.710000px;}
.y7f{bottom:433.975500px;}
.y39f{bottom:434.790000px;}
.y23{bottom:436.320000px;}
.y233{bottom:436.927350px;}
.y1c2{bottom:439.031640px;}
.y367{bottom:439.105500px;}
.y215{bottom:440.100000px;}
.y279{bottom:440.370000px;}
.y22e{bottom:441.449100px;}
.y31e{bottom:442.170000px;}
.y30b{bottom:443.340000px;}
.y54{bottom:447.120000px;}
.y102{bottom:447.300000px;}
.y3bb{bottom:449.550000px;}
.y17c{bottom:450.000000px;}
.y382{bottom:450.087750px;}
.y343{bottom:450.360000px;}
.yb2{bottom:450.630000px;}
.y1d6{bottom:452.160000px;}
.y297{bottom:452.610000px;}
.yd6{bottom:453.330000px;}
.y15b{bottom:453.960000px;}
.y13e{bottom:455.310000px;}
.y7e{bottom:456.480000px;}
.yb1{bottom:457.470000px;}
.y1c1{bottom:458.021550px;}
.y22{bottom:460.080000px;}
.y1f7{bottom:463.860000px;}
.y278{bottom:464.130000px;}
.y214{bottom:464.580000px;}
.y2cc{bottom:464.940000px;}
.y13d{bottom:465.120000px;}
.y31d{bottom:465.930000px;}
.y1c4{bottom:465.960090px;}
.y30a{bottom:467.100000px;}
.y366{bottom:468.810000px;}
.y17b{bottom:470.700000px;}
.y381{bottom:470.704500px;}
.y22d{bottom:470.879100px;}
.y53{bottom:470.880000px;}
.y101{bottom:471.150000px;}
.y1d5{bottom:472.860000px;}
.y39e{bottom:473.490000px;}
.yd5{bottom:474.030000px;}
.y342{bottom:474.120000px;}
.y15a{bottom:474.660000px;}
.yb0{bottom:477.360000px;}
.y7d{bottom:478.170000px;}
.y2e6{bottom:478.350000px;}
.y3ba{bottom:482.400000px;}
.y21{bottom:483.930000px;}
.y1c3{bottom:484.950000px;}
.y232{bottom:485.882100px;}
.y1ab{bottom:486.283050px;}
.y277{bottom:487.980000px;}
.y1a9{bottom:488.407050px;}
.y13c{bottom:489.060000px;}
.y11d{bottom:489.240000px;}
.y365{bottom:489.426750px;}
.y309{bottom:490.950000px;}
.y380{bottom:491.400000px;}
.y1d4{bottom:493.560000px;}
.y39d{bottom:494.190000px;}
.y52{bottom:494.730000px;}
.y100{bottom:494.910000px;}
.y296{bottom:495.630000px;}
.y31c{bottom:498.780000px;}
.y17a{bottom:500.400000px;}
.y7c{bottom:502.920000px;}
.y159{bottom:505.620000px;}
.y3b9{bottom:506.160000px;}
.y1aa{bottom:506.983050px;}
.y21e{bottom:507.330000px;}
.y2cb{bottom:509.046660px;}
.y1a8{bottom:509.107050px;}
.y364{bottom:510.122250px;}
.yaf{bottom:511.560000px;}
.y276{bottom:511.740000px;}
.y37f{bottom:512.095500px;}
.y341{bottom:514.080000px;}
.y1f6{bottom:514.260000px;}
.y308{bottom:514.710000px;}
.y39c{bottom:514.890000px;}
.yd4{bottom:515.430000px;}
.y20{bottom:516.690000px;}
.y51{bottom:518.490000px;}
.yff{bottom:518.760000px;}
.y179{bottom:521.100000px;}
.y2e5{bottom:522.000000px;}
.y31b{bottom:522.540000px;}
.y13a{bottom:522.900000px;}
.y7b{bottom:523.620000px;}
.y1d3{bottom:524.610000px;}
.y158{bottom:526.320000px;}
.y363{bottom:530.739000px;}
.y2ca{bottom:530.820000px;}
.yae{bottom:532.260000px;}
.y37e{bottom:532.712250px;}
.y139{bottom:532.800000px;}
.y11c{bottom:533.520000px;}
.y275{bottom:535.590000px;}
.yd3{bottom:536.130000px;}
.y307{bottom:538.560000px;}
.yad{bottom:539.010000px;}
.y136{bottom:539.370000px;}
.y1f{bottom:540.540000px;}
.y1c6{bottom:540.766830px;}
.y295{bottom:541.980000px;}
.yfe{bottom:542.520000px;}
.y340{bottom:542.790000px;}
.y21d{bottom:543.870000px;}
.y1f5{bottom:543.960000px;}
.y3b8{bottom:544.860000px;}
.y2e4{bottom:545.850000px;}
.y31a{bottom:546.390000px;}
.y157{bottom:547.020000px;}
.y50{bottom:551.340000px;}
.y362{bottom:551.434500px;}
.y1d2{bottom:553.230000px;}
.y37d{bottom:553.407750px;}
.y39b{bottom:553.590000px;}
.y178{bottom:553.860000px;}
.y138{bottom:556.740000px;}
.yd2{bottom:556.830000px;}
.y78{bottom:558.445500px;}
.y7a{bottom:558.450000px;}
.yac{bottom:558.900000px;}
.y274{bottom:559.350000px;}
.y1c5{bottom:559.756740px;}
.y135{bottom:560.070000px;}
.y79{bottom:563.670000px;}
.y294{bottom:563.850000px;}
.y1e{bottom:564.300000px;}
.y1f4{bottom:564.660000px;}
.y3b7{bottom:565.560000px;}
.yab{bottom:565.740000px;}
.y137{bottom:566.550000px;}
.y11b{bottom:567.000000px;}
.y319{bottom:570.150000px;}
.y22f{bottom:570.293100px;}
.y361{bottom:572.130000px;}
.y2c9{bottom:573.660000px;}
.y37c{bottom:574.024500px;}
.y39a{bottom:574.290000px;}
.y4f{bottom:575.100000px;}
.yfd{bottom:575.370000px;}
.y33f{bottom:575.640000px;}
.y1ac{bottom:576.499050px;}
.y177{bottom:577.710000px;}
.y156{bottom:577.980000px;}
.y77{bottom:579.062250px;}
.y21c{bottom:580.410000px;}
.yd1{bottom:581.850000px;}
.y306{bottom:585.180000px;}
.y1f3{bottom:585.360000px;}
.y3b6{bottom:586.260000px;}
.y1d{bottom:588.150000px;}
.y2e3{bottom:590.040000px;}
.y1b7{bottom:591.120000px;}
.y273{bottom:592.200000px;}
.yaa{bottom:593.190000px;}
.y318{bottom:594.000000px;}
.y1e8{bottom:594.540000px;}
.y37b{bottom:594.720000px;}
.y155{bottom:598.770000px;}
.yfc{bottom:599.130000px;}
.y360{bottom:599.220000px;}
.y76{bottom:599.757750px;}
.y134{bottom:600.390000px;}
.y11a{bottom:600.570000px;}
.yd0{bottom:602.550000px;}
.y33e{bottom:604.710000px;}
.y1f2{bottom:606.060000px;}
.y176{bottom:607.410000px;}
.y4e{bottom:607.950000px;}
.y293{bottom:609.300000px;}
.y1b6{bottom:611.820000px;}
.y1c{bottom:611.910000px;}
.y399{bottom:612.990000px;}
.ya9{bottom:613.800000px;}
.y272{bottom:615.960000px;}
.y2c8{bottom:616.500000px;}
.y21b{bottom:617.040000px;}
.y1a2{bottom:617.220000px;}
.y75{bottom:620.453250px;}
.ya8{bottom:620.640000px;}
.y231{bottom:621.375690px;}
.yfb{bottom:622.980000px;}
.ycf{bottom:623.250000px;}
.y132{bottom:624.420000px;}
.y37a{bottom:624.424500px;}
.y3b5{bottom:624.960000px;}
.y1f1{bottom:626.760000px;}
.y305{bottom:627.750000px;}
.y175{bottom:628.110000px;}
.y154{bottom:629.730000px;}
.y35f{bottom:631.980000px;}
.y2e2{bottom:632.250000px;}
.y33d{bottom:633.690000px;}
.y119{bottom:634.140000px;}
.y131{bottom:634.230000px;}
.y21a{bottom:635.310000px;}
.y1b{bottom:635.760000px;}
.y271{bottom:639.810000px;}
.y230{bottom:640.365600px;}
.ya7{bottom:640.530000px;}
.y4d{bottom:641.070000px;}
.y1b5{bottom:641.520000px;}
.y12e{bottom:643.770000px;}
.yce{bottom:643.950000px;}
.y379{bottom:645.041250px;}
.y3b4{bottom:645.660000px;}
.y1f0{bottom:647.460000px;}
.y174{bottom:648.810000px;}
.y153{bottom:650.430000px;}
.y317{bottom:650.610000px;}
.y398{bottom:651.690000px;}
.y292{bottom:652.320000px;}
.y23a{bottom:655.380000px;}
.y213{bottom:655.830000px;}
.y1a1{bottom:655.920000px;}
.y304{bottom:656.730000px;}
.y130{bottom:658.260000px;}
.yfa{bottom:660.600000px;}
.y1e7{bottom:661.590000px;}
.y1b4{bottom:662.220000px;}
.y33c{bottom:662.760000px;}
.y12d{bottom:664.470000px;}
.ycd{bottom:664.650000px;}
.y378{bottom:665.736750px;}
.ya6{bottom:667.260000px;}
.y118{bottom:667.710000px;}
.y74{bottom:668.160000px;}
.y1a{bottom:668.520000px;}
.y173{bottom:669.510000px;}
.y2e1{bottom:670.050000px;}
.y12f{bottom:670.950000px;}
.y152{bottom:671.130000px;}
.ya5{bottom:674.010000px;}
.y316{bottom:674.370000px;}
.y1a0{bottom:676.620000px;}
.y222{bottom:677.880000px;}
.y1b3{bottom:682.920000px;}
.y3b3{bottom:684.360000px;}
.ycc{bottom:685.350000px;}
.y270{bottom:686.430000px;}
.y377{bottom:686.432250px;}
.y35e{bottom:688.056750px;}
.y239{bottom:688.140000px;}
.y73{bottom:688.860000px;}
.y172{bottom:690.210000px;}
.y397{bottom:690.390000px;}
.y19{bottom:692.370000px;}
.y4c{bottom:692.550000px;}
.yf6{bottom:693.450000px;}
.ya4{bottom:693.900000px;}
.y1e6{bottom:695.160000px;}
.y212{bottom:695.970000px;}
.y1ef{bottom:697.860000px;}
.y315{bottom:698.220000px;}
.ya3{bottom:700.740000px;}
.y2c7{bottom:701.100000px;}
.y151{bottom:702.090000px;}
.y3b2{bottom:705.060000px;}
.y19f{bottom:705.595320px;}
.y117{bottom:705.780000px;}
.ycb{bottom:706.140000px;}
.y376{bottom:707.049000px;}
.y12c{bottom:707.760000px;}
.y2de{bottom:708.210000px;}
.yf8{bottom:708.390000px;}
.y35d{bottom:708.752250px;}
.y72{bottom:709.560000px;}
.y303{bottom:710.550000px;}
.y2e0{bottom:710.820000px;}
.y171{bottom:710.910000px;}
.yf5{bottom:711.900000px;}
.y238{bottom:711.990000px;}
.y1b2{bottom:712.620000px;}
.y221{bottom:715.583430px;}
.y1ee{bottom:718.560000px;}
.y26f{bottom:719.280000px;}
.ya2{bottom:720.630000px;}
.y33b{bottom:720.900000px;}
.y314{bottom:721.980000px;}
.y18{bottom:722.070000px;}
.y150{bottom:722.790000px;}
.y19e{bottom:722.970000px;}
.y3c{bottom:723.960000px;}
.ya1{bottom:727.470000px;}
.y375{bottom:727.744500px;}
.y1e5{bottom:728.730000px;}
.y26e{bottom:729.090000px;}
.y35c{bottom:729.447750px;}
.yca{bottom:731.160000px;}
.y211{bottom:731.520000px;}
.y170{bottom:731.610000px;}
.y4b{bottom:732.600000px;}
.y1b1{bottom:733.320000px;}
.yf4{bottom:733.950000px;}
.y237{bottom:735.750000px;}
.y302{bottom:738.180000px;}
.y116{bottom:738.540000px;}
.y2df{bottom:739.170000px;}
.y71{bottom:739.260000px;}
.y291{bottom:739.530000px;}
.y220{bottom:741.420000px;}
.y12b{bottom:741.600000px;}
.y2c6{bottom:742.860000px;}
.y14f{bottom:743.490000px;}
.y3b1{bottom:743.760000px;}
.yf3{bottom:745.470000px;}
.y313{bottom:745.830000px;}
.ya0{bottom:747.360000px;}
.y374{bottom:748.440000px;}
.y33a{bottom:749.970000px;}
.y35b{bottom:750.064500px;}
.yc9{bottom:751.860000px;}
.y1b0{bottom:754.020000px;}
.y17{bottom:754.830000px;}
.y12a{bottom:754.920000px;}
.y19d{bottom:755.730000px;}
.y210{bottom:756.630000px;}
.y70{bottom:759.960000px;}
.y3b{bottom:760.590000px;}
.y16f{bottom:761.220000px;}
.y4a{bottom:761.670000px;}
.y1e4{bottom:762.300000px;}
.y26d{bottom:762.570000px;}
.y14e{bottom:764.190000px;}
.y3b0{bottom:764.460000px;}
.y301{bottom:765.715500px;}
.y19c{bottom:767.160000px;}
.yf2{bottom:767.520000px;}
.y396{bottom:767.790000px;}
.y236{bottom:768.600000px;}
.y312{bottom:769.590000px;}
.y35a{bottom:770.760000px;}
.y115{bottom:771.300000px;}
.yc8{bottom:772.560000px;}
.y9e{bottom:774.000000px;}
.y1af{bottom:774.720000px;}
.y16{bottom:777.510000px;}
.y373{bottom:778.590000px;}
.yf1{bottom:779.040000px;}
.y6f{bottom:780.660000px;}
.y16e{bottom:781.920000px;}
.y290{bottom:782.100000px;}
.y300{bottom:783.630000px;}
.y2dd{bottom:784.440000px;}
.y21f{bottom:785.340000px;}
.y49{bottom:785.520000px;}
.y2c5{bottom:785.700000px;}
.y20f{bottom:786.420000px;}
.y9d{bottom:787.590000px;}
.y339{bottom:788.220000px;}
.y19a{bottom:789.300000px;}
.y1ed{bottom:789.660000px;}
.y235{bottom:792.360000px;}
.yc7{bottom:793.260000px;}
.y3a{bottom:793.440000px;}
.y262{bottom:794.709000px;}
.y265{bottom:794.720970px;}
.y26c{bottom:794.732940px;}
.y1e3{bottom:795.870000px;}
.y395{bottom:798.030000px;}
.y14d{bottom:798.300000px;}
.y267{bottom:798.587280px;}
.y199{bottom:800.729850px;}
.y359{bottom:800.910000px;}
.yef{bottom:801.090000px;}
.y6e{bottom:801.360000px;}
.y269{bottom:801.651600px;}
.y311{bottom:802.440000px;}
.y16d{bottom:802.620000px;}
.y3af{bottom:803.160000px;}
.y197{bottom:803.340000px;}
.y25f{bottom:806.220000px;}
.y15{bottom:806.580000px;}
.y20e{bottom:807.120000px;}
.y338{bottom:808.020000px;}
.y129{bottom:808.200000px;}
.y261{bottom:808.474500px;}
.y264{bottom:808.486470px;}
.y26b{bottom:808.498440px;}
.y1ec{bottom:810.360000px;}
.y2ff{bottom:811.170000px;}
.yee{bottom:812.610000px;}
.y9b{bottom:814.320000px;}
.y268{bottom:815.417100px;}
.y39{bottom:817.200000px;}
.y48{bottom:818.280000px;}
.y266{bottom:818.385660px;}
.y114{bottom:821.790000px;}
.y14c{bottom:822.060000px;}
.y260{bottom:822.240000px;}
.y263{bottom:822.251970px;}
.y26a{bottom:822.263940px;}
.y16c{bottom:823.320000px;}
.y3ae{bottom:823.860000px;}
.y358{bottom:824.760000px;}
.y28f{bottom:825.120000px;}
.y310{bottom:826.200000px;}
.y9a{bottom:827.010000px;}
.y14{bottom:827.280000px;}
.yc6{bottom:827.370000px;}
.y20d{bottom:827.820000px;}
.y2c4{bottom:828.540000px;}
.y1e1{bottom:829.350000px;}
.y6d{bottom:831.060000px;}
.y22b{bottom:831.420750px;}
.y196{bottom:831.690000px;}
.y198{bottom:834.300000px;}
.yed{bottom:834.660000px;}
.y372{bottom:835.200000px;}
.y336{bottom:837.090000px;}
.y2fe{bottom:838.800000px;}
.y192{bottom:839.160000px;}
.y128{bottom:841.050000px;}
.y394{bottom:842.226750px;}
.y113{bottom:842.490000px;}
.y234{bottom:842.760000px;}
.y16b{bottom:844.020000px;}
.yec{bottom:846.090000px;}
.yc5{bottom:848.070000px;}
.y38{bottom:850.050000px;}
.y25e{bottom:850.140000px;}
.y47{bottom:851.130000px;}
.y6c{bottom:851.760000px;}
.y99{bottom:852.840000px;}
.y1c0{bottom:855.162600px;}
.y357{bottom:857.065500px;}
.y371{bottom:859.050000px;}
.y98{bottom:859.680000px;}
.y13{bottom:860.130000px;}
.y20c{bottom:860.490000px;}
.y14b{bottom:862.020000px;}
.y3ad{bottom:862.560000px;}
.y1e2{bottom:862.920000px;}
.y393{bottom:862.922250px;}
.y191{bottom:863.010000px;}
.y112{bottom:863.190000px;}
.y225{bottom:865.796250px;}
.y335{bottom:866.160000px;}
.y2fd{bottom:866.430000px;}
.y190{bottom:867.870000px;}
.y28e{bottom:868.229850px;}
.yeb{bottom:868.230000px;}
.yc4{bottom:868.770000px;}
.y194{bottom:870.120000px;}
.y6b{bottom:872.460000px;}
.y2c3{bottom:872.542620px;}
.y2bf{bottom:872.557650px;}
.y2bb{bottom:872.572680px;}
.y2b7{bottom:872.587710px;}
.y2b3{bottom:872.602740px;}
.y2ac{bottom:872.617770px;}
.y127{bottom:873.720000px;}
.y37{bottom:873.810000px;}
.y356{bottom:877.682250px;}
.y96{bottom:879.570000px;}
.yea{bottom:879.660000px;}
.y46{bottom:880.830000px;}
.y1eb{bottom:881.460000px;}
.y2dc{bottom:882.810000px;}
.y3ac{bottom:883.260000px;}
.y392{bottom:883.539000px;}
.y25d{bottom:883.620000px;}
.y12{bottom:883.890000px;}
.y2af{bottom:884.762010px;}
.y2a8{bottom:884.777040px;}
.y95{bottom:886.320000px;}
.yc3{bottom:889.470000px;}
.y195{bottom:891.270000px;}
.y20b{bottom:892.887750px;}
.y6a{bottom:893.160000px;}
.y193{bottom:893.880000px;}
.y1bf{bottom:893.956650px;}
.y2fc{bottom:893.970000px;}
.y16a{bottom:894.420000px;}
.y333{bottom:895.230000px;}
.y18f{bottom:896.130000px;}
.y2c2{bottom:896.846130px;}
.y2be{bottom:896.861160px;}
.y2ba{bottom:896.876190px;}
.y2b6{bottom:896.891220px;}
.y2b2{bottom:896.906250px;}
.y2ab{bottom:896.921280px;}
.y2a5{bottom:896.936310px;}
.y36{bottom:897.660000px;}
.y1d1{bottom:897.930000px;}
.y355{bottom:898.377750px;}
.y14a{bottom:899.820000px;}
.y45{bottom:901.530000px;}
.ye6{bottom:901.800000px;}
.y1ea{bottom:902.160000px;}
.y391{bottom:904.234500px;}
.y111{bottom:904.590000px;}
.y126{bottom:906.660000px;}
.y2ae{bottom:909.155700px;}
.y2a7{bottom:909.170730px;}
.yc2{bottom:910.170000px;}
.ye8{bottom:913.230000px;}
.y20a{bottom:913.583250px;}
.y94{bottom:913.860000px;}
.y169{bottom:915.120000px;}
.y2db{bottom:915.660000px;}
.y28d{bottom:916.290000px;}
.y11{bottom:916.650000px;}
.y25c{bottom:917.010000px;}
.y289{bottom:917.820000px;}
.y354{bottom:919.073250px;}
.y2c1{bottom:921.239820px;}
.y2bd{bottom:921.254850px;}
.y2b9{bottom:921.269880px;}
.y2b5{bottom:921.284910px;}
.y2b1{bottom:921.299940px;}
.y2aa{bottom:921.314970px;}
.y2a4{bottom:921.330000px;}
.y35{bottom:921.420000px;}
.y2fb{bottom:921.600000px;}
.y3ab{bottom:921.960000px;}
.y18e{bottom:922.140000px;}
.y69{bottom:922.860000px;}
.y390{bottom:924.930000px;}
.y228{bottom:926.566950px;}
.y286{bottom:926.730000px;}
.y1d0{bottom:927.630000px;}
.y125{bottom:930.420000px;}
.y44{bottom:931.230000px;}
.y2ad{bottom:933.459210px;}
.y2a6{bottom:933.474240px;}
.y332{bottom:933.480000px;}
.y209{bottom:934.200000px;}
.y110{bottom:934.290000px;}
.y288{bottom:935.730000px;}
.y283{bottom:935.819370px;}
.y168{bottom:935.820000px;}
.y28c{bottom:937.170000px;}
.y93{bottom:937.530000px;}
.y1bb{bottom:939.214890px;}
.y2da{bottom:939.420000px;}
.y353{bottom:939.690000px;}
.y149{bottom:941.310000px;}
.y3aa{bottom:942.660000px;}
.y18d{bottom:942.840000px;}
.y68{bottom:943.560000px;}
.yc1{bottom:944.280000px;}
.y2c0{bottom:945.543330px;}
.y2bc{bottom:945.558360px;}
.y2b8{bottom:945.573390px;}
.y2b4{bottom:945.588420px;}
.y2b0{bottom:945.603450px;}
.y2a9{bottom:945.618480px;}
.ye5{bottom:946.800000px;}
.y285{bottom:947.610000px;}
.y1cf{bottom:948.330000px;}
.y10{bottom:948.333150px;}
.y25b{bottom:949.214430px;}
.y2fa{bottom:949.230000px;}
.y43{bottom:951.930000px;}
.y32f{bottom:953.280000px;}
.y34{bottom:954.270000px;}
.y208{bottom:954.895500px;}
.y10f{bottom:954.990000px;}
.y38f{bottom:955.080000px;}
.y257{bottom:955.235340px;}
.y167{bottom:956.520000px;}
.y28b{bottom:958.050000px;}
.y249{bottom:958.167990px;}
.y250{bottom:958.179960px;}
.y1ba{bottom:958.204800px;}
.y91{bottom:958.500000px;}
.y282{bottom:958.680000px;}
.y242{bottom:962.106120px;}
.y24c{bottom:962.130060px;}
.y331{bottom:962.550000px;}
.y2d9{bottom:963.270000px;}
.y1bd{bottom:964.018710px;}
.y67{bottom:964.260000px;}
.yc0{bottom:964.980000px;}
.y245{bottom:965.086650px;}
.y253{bottom:965.122560px;}
.y284{bottom:968.490000px;}
.y256{bottom:969.000840px;}
.y25a{bottom:969.012810px;}
.y1ce{bottom:969.030000px;}
.yf{bottom:969.300000px;}
.y352{bottom:969.930000px;}
.y248{bottom:972.029250px;}
.y24f{bottom:972.041220px;}
.y148{bottom:972.180000px;}
.y18c{bottom:972.540000px;}
.y42{bottom:972.630000px;}
.y207{bottom:975.512250px;}
.y32e{bottom:975.600000px;}
.y10e{bottom:975.690000px;}
.y24b{bottom:975.895560px;}
.y23f{bottom:976.590000px;}
.y2f9{bottom:976.770000px;}
.y90{bottom:977.130000px;}
.y287{bottom:977.400000px;}
.y33{bottom:978.030000px;}
.y244{bottom:978.852150px;}
.y252{bottom:978.888060px;}
.y28a{bottom:978.930000px;}
.ye4{bottom:980.370000px;}
.y3a9{bottom:981.360000px;}
.y241{bottom:981.904500px;}
.y1bc{bottom:983.008620px;}
.y66{bottom:984.960000px;}
.ybf{bottom:985.680000px;}
.y247{bottom:985.794750px;}
.y24e{bottom:985.806720px;}
.y166{bottom:986.220000px;}
.y2d8{bottom:987.030000px;}
.y330{bottom:988.560000px;}
.y255{bottom:988.799220px;}
.y259{bottom:988.811190px;}
.ye{bottom:991.530000px;}
.y243{bottom:992.617650px;}
.y251{bottom:992.653560px;}
.y18b{bottom:993.150000px;}
.y227{bottom:993.179910px;}
.y41{bottom:993.330000px;}
.y351{bottom:993.690000px;}
.y240{bottom:995.670000px;}
.y24a{bottom:995.693940px;}
.y206{bottom:996.207750px;}
.y10d{bottom:996.300000px;}
.y1cd{bottom:998.730000px;}
.y246{bottom:999.560250px;}
.y24d{bottom:999.572220px;}
.y32d{bottom:1001.610000px;}
.y32{bottom:1001.790000px;}
.y3a8{bottom:1002.060000px;}
.y254{bottom:1002.564720px;}
.y38e{bottom:1002.690000px;}
.y147{bottom:1002.960000px;}
.y2f8{bottom:1003.860000px;}
.y65{bottom:1005.660000px;}
.y2a3{bottom:1006.020000px;}
.y2f5{bottom:1006.110000px;}
.ybe{bottom:1006.380000px;}
.y165{bottom:1006.920000px;}
.y27f{bottom:1008.180000px;}
.y258{bottom:1008.609570px;}
.y2d7{bottom:1010.790000px;}
.y2ef{bottom:1011.146310px;}
.y226{bottom:1013.816100px;}
.y2f2{bottom:1014.027390px;}
.y8f{bottom:1014.570000px;}
.y2f0{bottom:1015.381440px;}
.y205{bottom:1016.903250px;}
.y10c{bottom:1017.000000px;}
.y350{bottom:1017.540000px;}
.y281{bottom:1018.170000px;}
.ye3{bottom:1018.350000px;}
.y1cc{bottom:1019.430000px;}
.y18a{bottom:1022.940000px;}
.y40{bottom:1023.480000px;}
.y2f7{bottom:1024.200000px;}
.y31{bottom:1025.640000px;}
.y64{bottom:1026.360000px;}
.y2f4{bottom:1026.450000px;}
.y38d{bottom:1026.540000px;}
.y1be{bottom:1027.148220px;}
.yd{bottom:1034.271990px;}
.y2a2{bottom:1034.280000px;}
.y329{bottom:1034.460000px;}
.y2f1{bottom:1034.460180px;}
.y124{bottom:1034.640000px;}
.y146{bottom:1035.270000px;}
.y2ee{bottom:1035.540000px;}
.y23e{bottom:1036.440000px;}
.y204{bottom:1037.520000px;}
.y10b{bottom:1037.700000px;}
.y164{bottom:1039.770000px;}
.y1cb{bottom:1040.130000px;}
.ybd{bottom:1040.400000px;}
.y3a7{bottom:1040.760000px;}
.y2f3{bottom:1042.380000px;}
.y189{bottom:1043.640000px;}
.y32c{bottom:1043.730000px;}
.y2f6{bottom:1044.630000px;}
.y63{bottom:1047.060000px;}
.y30{bottom:1049.400000px;}
.y34f{bottom:1049.757750px;}
.ye2{bottom:1051.200000px;}
.yc{bottom:1058.040000px;}
.y10a{bottom:1058.400000px;}
.y1ae{bottom:1058.760000px;}
.y38c{bottom:1058.766750px;}
.y23b{bottom:1060.020000px;}
.y1ca{bottom:1060.830000px;}
.y188{bottom:1064.340000px;}
.y203{bottom:1064.610000px;}
.y145{bottom:1067.580000px;}
.y62{bottom:1067.760000px;}
.y2a1{bottom:1067.850000px;}
.y32b{bottom:1069.740000px;}
.y163{bottom:1070.014500px;}
.y34e{bottom:1070.453250px;}
.y2ed{bottom:1072.530000px;}
.ybc{bottom:1073.250000px;}
.y27e{bottom:1075.500000px;}
.y3f{bottom:1075.770000px;}
.y23d{bottom:1076.040000px;}
.y8e{bottom:1076.760000px;}
.y3a6{bottom:1079.460000px;}
.y38b{bottom:1079.462250px;}
.y22a{bottom:1081.210620px;}
.y1c9{bottom:1081.530000px;}
.ye1{bottom:1082.160000px;}
.y2f{bottom:1082.250000px;}
.y187{bottom:1085.040000px;}
.y202{bottom:1085.310000px;}
.y1e9{bottom:1088.460000px;}
.y109{bottom:1091.250000px;}
.y162{bottom:1094.130000px;}
.y2a0{bottom:1096.110000px;}
.y61{bottom:1097.460000px;}
.y229{bottom:1098.495120px;}
.y34d{bottom:1100.157750px;}
.y2ec{bottom:1100.790000px;}
.y27d{bottom:1102.320000px;}
.y3e{bottom:1105.555500px;}
.y186{bottom:1105.740000px;}
.y2e{bottom:1106.010000px;}
.yb{bottom:1109.061450px;}
.y1c8{bottom:1111.864500px;}
.ye0{bottom:1115.010000px;}
.y60{bottom:1118.160000px;}
.y34c{bottom:1120.774500px;}
.y3d{bottom:1133.190000px;}
.ya{bottom:1134.540000px;}
.y185{bottom:1135.980000px;}
.y2d{bottom:1138.860000px;}
.y34b{bottom:1141.470000px;}
.y4{bottom:1171.620000px;}
.y3{bottom:1192.045500px;}
.y2{bottom:1208.610000px;}
.y1{bottom:1225.890000px;}
.h42{height:15.478500px;}
.h21{height:26.640000px;}
.h1d{height:26.641500px;}
.h1e{height:26.730000px;}
.h4d{height:28.260000px;}
.h4c{height:28.261500px;}
.h4e{height:28.350000px;}
.h29{height:32.670000px;}
.h24{height:32.758500px;}
.h23{height:32.760000px;}
.h5{height:32.850000px;}
.h25{height:32.851500px;}
.hd{height:34.114922px;}
.h2d{height:34.532578px;}
.h38{height:34.857949px;}
.h52{height:36.925840px;}
.h17{height:38.046462px;}
.h1f{height:38.520000px;}
.h3{height:38.759766px;}
.h26{height:39.778500px;}
.h36{height:40.099746px;}
.h20{height:40.320000px;}
.h19{height:41.743477px;}
.h46{height:42.006135px;}
.h47{height:42.011895px;}
.h2c{height:43.769004px;}
.h10{height:43.909277px;}
.h2f{height:44.031094px;}
.h34{height:44.817363px;}
.h3a{height:47.381836px;}
.h22{height:47.988281px;}
.h4a{height:48.286230px;}
.h9{height:49.199766px;}
.h13{height:49.992188px;}
.h1c{height:50.400000px;}
.h27{height:52.417969px;}
.h15{height:52.751777px;}
.he{height:52.769777px;}
.h43{height:53.397598px;}
.h37{height:53.550000px;}
.h16{height:53.986816px;}
.h14{height:54.994922px;}
.h18{height:55.278809px;}
.h39{height:56.610000px;}
.h50{height:56.947043px;}
.h51{height:56.974043px;}
.h32{height:56.983043px;}
.h4f{height:56.992043px;}
.h31{height:57.010043px;}
.h3f{height:57.805840px;}
.h2e{height:58.513535px;}
.h8{height:60.497578px;}
.h3e{height:60.709219px;}
.h11{height:61.066934px;}
.h3b{height:61.375781px;}
.ha{height:63.163181px;}
.h4{height:63.175781px;}
.h7{height:63.930234px;}
.hb{height:63.949219px;}
.h53{height:66.645630px;}
.h30{height:66.646230px;}
.h6{height:68.643984px;}
.h12{height:69.011895px;}
.hf{height:69.977988px;}
.h1a{height:73.599785px;}
.h2a{height:74.500840px;}
.h2{height:75.600000px;}
.h35{height:76.173684px;}
.h40{height:76.894055px;}
.h4b{height:80.460000px;}
.h48{height:82.702335px;}
.h49{height:83.039836px;}
.h41{height:92.392840px;}
.hc{height:94.763672px;}
.h3d{height:99.514541px;}
.h3c{height:106.069219px;}
.h1b{height:110.695781px;}
.h44{height:111.055781px;}
.h28{height:116.455781px;}
.h45{height:127.692592px;}
.h33{height:136.255781px;}
.h2b{height:156.775781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:39.060000px;}
.wc{width:73.620000px;}
.wb{width:73.798500px;}
.wa{width:74.430000px;}
.w14{width:78.751500px;}
.wd{width:84.240000px;}
.we{width:90.900000px;}
.wf{width:91.350000px;}
.w10{width:91.530000px;}
.w11{width:91.618500px;}
.w12{width:91.710000px;}
.w9{width:91.890000px;}
.w4{width:107.818500px;}
.w5{width:107.820000px;}
.w3{width:115.290000px;}
.w19{width:128.520000px;}
.w1c{width:128.608500px;}
.w1b{width:128.610000px;}
.w18{width:128.700000px;}
.w1a{width:128.701500px;}
.w8{width:130.230000px;}
.w6{width:186.660000px;}
.w7{width:629.730000px;}
.w17{width:646.110000px;}
.w16{width:649.168500px;}
.w15{width:672.030000px;}
.w13{width:693.990000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:4.680000px;}
.xd4{left:10.800000px;}
.x1e{left:12.600000px;}
.xee{left:16.560000px;}
.x37{left:18.540000px;}
.xf1{left:20.340000px;}
.x36{left:28.620000px;}
.xef{left:29.790000px;}
.xeb{left:33.210000px;}
.xe7{left:34.830000px;}
.xec{left:36.270000px;}
.xf0{left:40.770000px;}
.xea{left:42.300000px;}
.xe9{left:55.260000px;}
.xe8{left:59.850000px;}
.x2b{left:62.550000px;}
.x3c{left:68.940000px;}
.x2d{left:70.110000px;}
.xa8{left:73.800000px;}
.x2c{left:76.050000px;}
.x40{left:79.380000px;}
.x43{left:86.040000px;}
.x21{left:103.050000px;}
.x25{left:110.610000px;}
.x3{left:127.629000px;}
.x94{left:133.560000px;}
.xb1{left:137.149920px;}
.x88{left:138.240000px;}
.xd2{left:139.320000px;}
.x18{left:140.400810px;}
.xb0{left:142.200000px;}
.xc1{left:143.280000px;}
.xc2{left:144.810000px;}
.xdf{left:146.610000px;}
.xe0{left:148.140000px;}
.xd3{left:149.317290px;}
.xc3{left:150.750000px;}
.x1{left:152.640000px;}
.x8{left:153.900000px;}
.xa7{left:156.960000px;}
.x52{left:161.280000px;}
.x28{left:163.530000px;}
.x53{left:164.790000px;}
.x35{left:166.500000px;}
.x1f{left:168.210000px;}
.x6{left:170.010000px;}
.x34{left:171.360000px;}
.x6f{left:172.890000px;}
.xed{left:176.670000px;}
.x54{left:177.840000px;}
.x12{left:180.720000px;}
.x67{left:183.420000px;}
.xd7{left:184.500000px;}
.xd8{left:186.480000px;}
.x57{left:188.010000px;}
.x58{left:189.630000px;}
.x78{left:191.340000px;}
.x46{left:193.140000px;}
.x45{left:195.120000px;}
.x32{left:196.650000px;}
.x62{left:201.420000px;}
.x76{left:205.060050px;}
.x16{left:209.970000px;}
.x96{left:212.310000px;}
.xc9{left:213.744600px;}
.xb2{left:214.920000px;}
.x61{left:218.520000px;}
.x17{left:221.220000px;}
.x5f{left:223.020000px;}
.x97{left:226.170000px;}
.xaa{left:228.150000px;}
.x84{left:229.950000px;}
.x49{left:231.570000px;}
.xa9{left:233.370000px;}
.xab{left:235.164420px;}
.x1c{left:237.780000px;}
.x85{left:239.760000px;}
.x60{left:241.830000px;}
.x82{left:243.505440px;}
.x69{left:249.120000px;}
.x4e{left:251.370000px;}
.x8e{left:254.237550px;}
.xe3{left:257.670000px;}
.x1b{left:261.180000px;}
.x8a{left:263.610000px;}
.x92{left:265.668000px;}
.x14{left:271.890000px;}
.x99{left:278.897850px;}
.xb3{left:280.890000px;}
.xc7{left:282.240000px;}
.x98{left:284.475870px;}
.xca{left:285.828480px;}
.x9a{left:287.181090px;}
.xb4{left:288.810000px;}
.x59{left:291.420000px;}
.x5e{left:293.490000px;}
.x8c{left:295.499610px;}
.x4{left:297.180000px;}
.xe5{left:301.500000px;}
.xe4{left:308.520000px;}
.x8f{left:312.062700px;}
.x68{left:317.610000px;}
.xda{left:319.953240px;}
.xe1{left:323.010000px;}
.x55{left:324.900000px;}
.xac{left:326.866590px;}
.x75{left:328.360050px;}
.x93{left:336.670170px;}
.x51{left:341.640000px;}
.x11{left:343.620000px;}
.x9b{left:345.319380px;}
.x95{left:346.950000px;}
.xb6{left:349.740000px;}
.x2a{left:351.270000px;}
.xd9{left:352.620000px;}
.xb5{left:354.600000px;}
.x15{left:357.840000px;}
.xcb{left:359.174880px;}
.xc8{left:362.700000px;}
.xd5{left:364.950000px;}
.x81{left:367.788060px;}
.x80{left:371.394990px;}
.x83{left:372.745530px;}
.x33{left:376.920000px;}
.x31{left:380.160000px;}
.x70{left:387.270000px;}
.x39{left:390.150000px;}
.x7b{left:399.407970px;}
.x8d{left:401.472600px;}
.x7c{left:403.014900px;}
.x6a{left:409.770000px;}
.x87{left:411.480000px;}
.xb7{left:413.280000px;}
.xc4{left:415.170000px;}
.x79{left:416.700000px;}
.x38{left:419.220000px;}
.xb8{left:420.750000px;}
.x13{left:421.920000px;}
.x89{left:425.520000px;}
.x9c{left:426.763260px;}
.xcd{left:431.168580px;}
.x19{left:432.180000px;}
.x6b{left:433.440000px;}
.x1a{left:438.210000px;}
.xcc{left:440.532270px;}
.x4a{left:441.720000px;}
.x63{left:445.410000px;}
.xe2{left:451.350000px;}
.xc6{left:455.490000px;}
.x20{left:460.170000px;}
.x64{left:462.960000px;}
.x3b{left:465.300000px;}
.x5{left:466.650000px;}
.x71{left:470.610000px;}
.x10{left:478.350000px;}
.xba{left:479.430000px;}
.xb9{left:486.900000px;}
.x77{left:491.288100px;}
.x4f{left:493.740000px;}
.x7a{left:497.536230px;}
.x9d{left:499.840110px;}
.xad{left:502.382700px;}
.x7{left:504.628290px;}
.x3a{left:507.240000px;}
.xe{left:508.320000px;}
.x7f{left:510.632370px;}
.x74{left:511.780050px;}
.x7e{left:514.239300px;}
.x47{left:516.240000px;}
.x86{left:521.730000px;}
.xc{left:523.347030px;}
.x4b{left:525.240000px;}
.x2{left:529.753500px;}
.x90{left:536.126700px;}
.x3d{left:539.820000px;}
.xbb{left:545.580000px;}
.xd6{left:551.250000px;}
.x72{left:554.040000px;}
.xdc{left:559.530000px;}
.xdb{left:563.490000px;}
.xe6{left:567.180000px;}
.x23{left:569.070000px;}
.x6c{left:572.040000px;}
.x8b{left:575.237970px;}
.xce{left:576.418500px;}
.xb{left:577.440000px;}
.x44{left:581.580000px;}
.x65{left:584.550000px;}
.x9e{left:594.798120px;}
.xf{left:600.210000px;}
.x91{left:606.200700px;}
.xbd{left:611.550000px;}
.x3f{left:614.250000px;}
.x9{left:617.757030px;}
.xbc{left:619.560000px;}
.xae{left:621.172980px;}
.x22{left:622.620000px;}
.x5d{left:625.050000px;}
.x26{left:627.120000px;}
.xa{left:632.250000px;}
.x3e{left:635.130000px;}
.x2e{left:645.120000px;}
.xcf{left:649.674720px;}
.x4c{left:653.130000px;}
.x73{left:655.380000px;}
.x9f{left:656.994240px;}
.xd0{left:658.407150px;}
.xa0{left:660.597210px;}
.x6d{left:664.380000px;}
.x1d{left:677.970000px;}
.xbe{left:685.350000px;}
.x56{left:690.570000px;}
.x42{left:699.300000px;}
.x6e{left:710.460000px;}
.xa1{left:713.073690px;}
.x7d{left:715.030500px;}
.xa2{left:716.126040px;}
.x66{left:722.430000px;}
.xd1{left:723.562200px;}
.x50{left:726.840000px;}
.x5a{left:730.080000px;}
.x41{left:735.840000px;}
.x5b{left:737.550000px;}
.x5c{left:739.080000px;}
.xdd{left:741.870000px;}
.xbf{left:743.490000px;}
.x48{left:744.840000px;}
.x24{left:748.080000px;}
.xc0{left:751.860000px;}
.xde{left:755.550000px;}
.x27{left:757.080000px;}
.x4d{left:758.340000px;}
.x30{left:761.580000px;}
.xaf{left:766.620450px;}
.x2f{left:770.580000px;}
.xa3{left:773.737650px;}
.xa4{left:775.365570px;}
.xa5{left:776.706210px;}
.xa6{left:783.720630px;}
.xc5{left:795.870000px;}
.xd{left:829.170000px;}
@media print{
.ve{vertical-align:-20.144640pt;}
.v2{vertical-align:-18.560000pt;}
.v11{vertical-align:-9.280000pt;}
.v16{vertical-align:-5.120000pt;}
.vd{vertical-align:-2.880000pt;}
.vb{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:5.120000pt;}
.vf{vertical-align:16.338240pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.v3{vertical-align:24.000000pt;}
.va{vertical-align:28.804160pt;}
.v10{vertical-align:30.744000pt;}
.v15{vertical-align:31.680000pt;}
.v8{vertical-align:32.960000pt;}
.v13{vertical-align:34.240000pt;}
.v14{vertical-align:36.169280pt;}
.vc{vertical-align:37.440000pt;}
.v5{vertical-align:42.240000pt;}
.v12{vertical-align:46.400000pt;}
.v6{vertical-align:47.360000pt;}
.v7{vertical-align:50.240000pt;}
.v9{vertical-align:64.960000pt;}
.ls34{letter-spacing:-0.374080pt;}
.lsf{letter-spacing:-0.336000pt;}
.ls35{letter-spacing:-0.320640pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls98{letter-spacing:-0.299520pt;}
.ls25{letter-spacing:-0.256000pt;}
.ls5d{letter-spacing:-0.215040pt;}
.ls33{letter-spacing:-0.213760pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.170880pt;}
.ls28{letter-spacing:-0.160320pt;}
.ls97{letter-spacing:-0.149760pt;}
.ls61{letter-spacing:-0.149120pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls8f{letter-spacing:-0.117120pt;}
.ls32{letter-spacing:-0.112000pt;}
.ls26{letter-spacing:-0.106880pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls51{letter-spacing:-0.074560pt;}
.ls18{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.058560pt;}
.ls2f{letter-spacing:-0.056000pt;}
.ls6a{letter-spacing:-0.054720pt;}
.ls17{letter-spacing:-0.053440pt;}
.ls6b{letter-spacing:-0.048960pt;}
.ls12{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls63{letter-spacing:0.037440pt;}
.ls1{letter-spacing:0.048000pt;}
.ls64{letter-spacing:0.053120pt;}
.ls16{letter-spacing:0.053440pt;}
.ls30{letter-spacing:0.056000pt;}
.ls5b{letter-spacing:0.058560pt;}
.ls8{letter-spacing:0.064000pt;}
.ls50{letter-spacing:0.074560pt;}
.ls4a{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.106880pt;}
.ls9a{letter-spacing:0.112000pt;}
.ls2b{letter-spacing:0.112224pt;}
.ls23{letter-spacing:0.122912pt;}
.ls5{letter-spacing:0.128000pt;}
.ls82{letter-spacing:0.128256pt;}
.ls3{letter-spacing:0.131840pt;}
.ls96{letter-spacing:0.133600pt;}
.ls14{letter-spacing:0.138880pt;}
.ls62{letter-spacing:0.138944pt;}
.ls86{letter-spacing:0.144000pt;}
.ls47{letter-spacing:0.144288pt;}
.ls69{letter-spacing:0.146880pt;}
.ls13{letter-spacing:0.149120pt;}
.ls2d{letter-spacing:0.154976pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.160320pt;}
.ls31{letter-spacing:0.168000pt;}
.ls3f{letter-spacing:0.170240pt;}
.ls87{letter-spacing:0.171008pt;}
.ls36{letter-spacing:0.171488pt;}
.ls5c{letter-spacing:0.175680pt;}
.ls4{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls9b{letter-spacing:0.374080pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls40{letter-spacing:0.646400pt;}
.ls4e{letter-spacing:0.665600pt;}
.ls2a{letter-spacing:0.694720pt;}
.ls5a{letter-spacing:0.960000pt;}
.ls5f{letter-spacing:1.015360pt;}
.lsa0{letter-spacing:1.064000pt;}
.ls52{letter-spacing:1.600000pt;}
.ls29{letter-spacing:1.619200pt;}
.lsc{letter-spacing:1.656640pt;}
.ls4d{letter-spacing:1.920000pt;}
.ls5e{letter-spacing:1.977280pt;}
.ls7{letter-spacing:2.240000pt;}
.ls22{letter-spacing:2.297920pt;}
.ls99{letter-spacing:2.560000pt;}
.lsa3{letter-spacing:2.880000pt;}
.ls2e{letter-spacing:3.259840pt;}
.ls59{letter-spacing:3.520000pt;}
.ls4c{letter-spacing:3.840000pt;}
.ls20{letter-spacing:3.901120pt;}
.ls9{letter-spacing:4.160000pt;}
.ls4f{letter-spacing:4.800000pt;}
.ls2c{letter-spacing:4.863040pt;}
.ls39{letter-spacing:5.760000pt;}
.ls37{letter-spacing:6.145600pt;}
.lsb{letter-spacing:6.400000pt;}
.ls44{letter-spacing:7.680000pt;}
.ls4b{letter-spacing:13.568000pt;}
.ls38{letter-spacing:14.208000pt;}
.ls67{letter-spacing:21.760000pt;}
.ls6{letter-spacing:22.903680pt;}
.ls9d{letter-spacing:41.384000pt;}
.ls91{letter-spacing:53.120000pt;}
.ls95{letter-spacing:57.179520pt;}
.ls9f{letter-spacing:64.400000pt;}
.lsa1{letter-spacing:72.072000pt;}
.ls55{letter-spacing:75.200000pt;}
.ls92{letter-spacing:78.960000pt;}
.ls3d{letter-spacing:93.760000pt;}
.ls94{letter-spacing:95.840000pt;}
.ls9e{letter-spacing:105.672000pt;}
.ls9c{letter-spacing:107.912000pt;}
.ls93{letter-spacing:114.096000pt;}
.ls8c{letter-spacing:116.885760pt;}
.ls90{letter-spacing:121.280000pt;}
.ls85{letter-spacing:132.560960pt;}
.ls79{letter-spacing:135.680000pt;}
.ls3e{letter-spacing:141.760000pt;}
.ls6c{letter-spacing:142.080000pt;}
.lsa2{letter-spacing:142.800000pt;}
.ls88{letter-spacing:142.827840pt;}
.ls54{letter-spacing:150.400000pt;}
.ls7a{letter-spacing:151.360000pt;}
.ls8e{letter-spacing:155.593920pt;}
.ls8d{letter-spacing:155.945280pt;}
.ls57{letter-spacing:156.160000pt;}
.ls6d{letter-spacing:159.360000pt;}
.ls78{letter-spacing:163.520000pt;}
.ls74{letter-spacing:167.360000pt;}
.ls83{letter-spacing:167.460800pt;}
.ls89{letter-spacing:170.292480pt;}
.ls77{letter-spacing:170.560000pt;}
.ls6e{letter-spacing:171.840000pt;}
.ls84{letter-spacing:172.584960pt;}
.ls76{letter-spacing:173.120000pt;}
.ls8b{letter-spacing:175.445760pt;}
.ls75{letter-spacing:178.240000pt;}
.ls8a{letter-spacing:180.247680pt;}
.ls66{letter-spacing:181.120000pt;}
.ls73{letter-spacing:183.680000pt;}
.ls6f{letter-spacing:194.240000pt;}
.ls71{letter-spacing:194.560000pt;}
.ls72{letter-spacing:195.520000pt;}
.ls45{letter-spacing:198.720000pt;}
.ls70{letter-spacing:213.120000pt;}
.ls58{letter-spacing:215.680000pt;}
.ls53{letter-spacing:222.400000pt;}
.ls46{letter-spacing:230.720000pt;}
.ls7b{letter-spacing:248.640000pt;}
.ls42{letter-spacing:250.240000pt;}
.ls3a{letter-spacing:266.880000pt;}
.ls7c{letter-spacing:268.480000pt;}
.ls80{letter-spacing:295.680000pt;}
.ls43{letter-spacing:310.720000pt;}
.ls7d{letter-spacing:319.680000pt;}
.ls81{letter-spacing:333.120000pt;}
.ls7f{letter-spacing:349.120000pt;}
.ls3b{letter-spacing:354.880000pt;}
.ls1e{letter-spacing:357.120000pt;}
.ls1f{letter-spacing:358.400000pt;}
.ls41{letter-spacing:362.880000pt;}
.ls7e{letter-spacing:369.920000pt;}
.ls56{letter-spacing:443.840000pt;}
.ls49{letter-spacing:494.080000pt;}
.ls65{letter-spacing:522.240000pt;}
.ls48{letter-spacing:634.560000pt;}
.ls60{letter-spacing:664.640000pt;}
.ls68{letter-spacing:732.662400pt;}
.ls1c{letter-spacing:752.000000pt;}
.ls3c{letter-spacing:816.000000pt;}
.ws6{word-spacing:-21.888000pt;}
.ws7{word-spacing:-21.760000pt;}
.ws108{word-spacing:-20.802240pt;}
.wsaf{word-spacing:-20.578560pt;}
.ws8{word-spacing:-18.864320pt;}
.ws9{word-spacing:-18.810880pt;}
.ws79{word-spacing:-18.789120pt;}
.wsa{word-spacing:-18.757440pt;}
.wsb{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws2f{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws33{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws50{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.680000pt;}
.wse2{word-spacing:-14.815680pt;}
.wsa8{word-spacing:-14.698560pt;}
.wsdf{word-spacing:-14.581440pt;}
.wse3{word-spacing:-14.522880pt;}
.wse9{word-spacing:-14.000000pt;}
.wsb7{word-spacing:-13.944000pt;}
.wsc7{word-spacing:-13.888000pt;}
.ws51{word-spacing:-13.520320pt;}
.ws34{word-spacing:-13.413440pt;}
.ws36{word-spacing:-13.360000pt;}
.ws11{word-spacing:-13.306560pt;}
.wsb8{word-spacing:-13.253120pt;}
.ws35{word-spacing:-13.199680pt;}
.ws52{word-spacing:-13.039360pt;}
.wsdd{word-spacing:-12.144000pt;}
.wse8{word-spacing:-12.096000pt;}
.ws1{word-spacing:-12.077440pt;}
.wsde{word-spacing:-11.904000pt;}
.wsd7{word-spacing:-11.831680pt;}
.ws2{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws8c{word-spacing:-10.810240pt;}
.ws5{word-spacing:-10.800000pt;}
.ws4{word-spacing:-10.704000pt;}
.ws3{word-spacing:-10.512000pt;}
.wsb6{word-spacing:-9.397440pt;}
.wse6{word-spacing:-9.210240pt;}
.wse7{word-spacing:-9.060480pt;}
.ws10{word-spacing:-8.640000pt;}
.wsb9{word-spacing:-3.840000pt;}
.ws9c{word-spacing:-3.584000pt;}
.ws5d{word-spacing:-3.520000pt;}
.ws10e{word-spacing:-3.416000pt;}
.ws9e{word-spacing:-3.264000pt;}
.wsc6{word-spacing:-3.259840pt;}
.ws9a{word-spacing:-3.200000pt;}
.wsf8{word-spacing:-3.136000pt;}
.wsdb{word-spacing:-3.046080pt;}
.wsd9{word-spacing:-2.944000pt;}
.wsc5{word-spacing:-2.939200pt;}
.wse5{word-spacing:-2.880000pt;}
.wsc9{word-spacing:-2.800000pt;}
.ws3b{word-spacing:-2.688000pt;}
.ws3a{word-spacing:-2.624000pt;}
.wsdc{word-spacing:-2.618560pt;}
.ws31{word-spacing:-2.560000pt;}
.ws65{word-spacing:-2.408000pt;}
.wsa2{word-spacing:-2.368000pt;}
.ws64{word-spacing:-2.352000pt;}
.ws87{word-spacing:-2.304000pt;}
.ws89{word-spacing:-2.240000pt;}
.wsf0{word-spacing:-2.184000pt;}
.wsf9{word-spacing:-2.128000pt;}
.ws8b{word-spacing:-2.048000pt;}
.ws59{word-spacing:-1.984000pt;}
.ws26{word-spacing:-1.920000pt;}
.wscc{word-spacing:-1.848000pt;}
.ws85{word-spacing:-1.728000pt;}
.ws84{word-spacing:-1.664000pt;}
.ws6b{word-spacing:-1.656640pt;}
.ws97{word-spacing:-1.600000pt;}
.ws106{word-spacing:-1.568000pt;}
.wsf3{word-spacing:-1.456000pt;}
.wsb5{word-spacing:-1.442880pt;}
.wsb4{word-spacing:-1.389440pt;}
.ws5f{word-spacing:-1.344000pt;}
.ws96{word-spacing:-1.282560pt;}
.ws3c{word-spacing:-1.280000pt;}
.wseb{word-spacing:-1.176000pt;}
.wsbb{word-spacing:-1.088000pt;}
.wsea{word-spacing:-1.064000pt;}
.ws88{word-spacing:-1.024000pt;}
.ws44{word-spacing:-1.015360pt;}
.ws81{word-spacing:-0.960000pt;}
.wsf6{word-spacing:-0.896000pt;}
.wsbe{word-spacing:-0.840000pt;}
.ws43{word-spacing:-0.801600pt;}
.wsc0{word-spacing:-0.728000pt;}
.ws58{word-spacing:-0.704000pt;}
.ws4c{word-spacing:-0.694720pt;}
.ws82{word-spacing:-0.640000pt;}
.wsca{word-spacing:-0.616000pt;}
.ws10f{word-spacing:-0.560000pt;}
.wscb{word-spacing:-0.504000pt;}
.ws4d{word-spacing:-0.480960pt;}
.ws95{word-spacing:-0.427520pt;}
.wsae{word-spacing:-0.409920pt;}
.ws21{word-spacing:-0.384000pt;}
.ws19{word-spacing:-0.374080pt;}
.wsc4{word-spacing:-0.320640pt;}
.ws20{word-spacing:-0.320000pt;}
.wsd3{word-spacing:-0.293760pt;}
.wsad{word-spacing:-0.292800pt;}
.ws61{word-spacing:-0.280000pt;}
.ws10b{word-spacing:-0.224000pt;}
.ws7a{word-spacing:-0.223680pt;}
.ws17{word-spacing:-0.208320pt;}
.wsac{word-spacing:-0.175680pt;}
.wsd8{word-spacing:-0.170240pt;}
.ws60{word-spacing:-0.168000pt;}
.ws2e{word-spacing:-0.160320pt;}
.wse0{word-spacing:-0.144000pt;}
.ws1e{word-spacing:-0.128000pt;}
.wsd6{word-spacing:-0.117120pt;}
.wsf4{word-spacing:-0.112000pt;}
.ws3f{word-spacing:-0.106880pt;}
.wsd4{word-spacing:-0.097920pt;}
.ws38{word-spacing:-0.085440pt;}
.ws39{word-spacing:-0.074560pt;}
.ws1b{word-spacing:-0.064000pt;}
.wse1{word-spacing:-0.058560pt;}
.ws47{word-spacing:-0.053440pt;}
.ws12{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.053440pt;}
.wsbf{word-spacing:0.056000pt;}
.ws13{word-spacing:0.058560pt;}
.ws1c{word-spacing:0.064000pt;}
.ws37{word-spacing:0.085440pt;}
.ws14{word-spacing:0.106880pt;}
.ws66{word-spacing:0.112000pt;}
.wsd5{word-spacing:0.117120pt;}
.ws18{word-spacing:0.128000pt;}
.ws15{word-spacing:0.144000pt;}
.ws16{word-spacing:0.149120pt;}
.ws70{word-spacing:0.160320pt;}
.ws29{word-spacing:0.192000pt;}
.ws7b{word-spacing:0.213760pt;}
.wsd2{word-spacing:0.218880pt;}
.ws28{word-spacing:0.256000pt;}
.ws48{word-spacing:0.267200pt;}
.ws53{word-spacing:0.320000pt;}
.ws67{word-spacing:0.320640pt;}
.ws77{word-spacing:0.374080pt;}
.wsfd{word-spacing:0.392000pt;}
.wsf2{word-spacing:0.448000pt;}
.ws72{word-spacing:0.480960pt;}
.ws30{word-spacing:0.512000pt;}
.wsfa{word-spacing:0.534400pt;}
.ws86{word-spacing:0.576000pt;}
.ws4e{word-spacing:0.587840pt;}
.ws91{word-spacing:0.640000pt;}
.ws111{word-spacing:0.672000pt;}
.ws10a{word-spacing:0.728000pt;}
.ws71{word-spacing:0.801600pt;}
.ws54{word-spacing:0.832000pt;}
.ws4f{word-spacing:0.855040pt;}
.ws1f{word-spacing:0.896000pt;}
.wsc3{word-spacing:0.908480pt;}
.ws27{word-spacing:0.960000pt;}
.ws109{word-spacing:1.008000pt;}
.wscf{word-spacing:1.064000pt;}
.ws110{word-spacing:1.120000pt;}
.ws6c{word-spacing:1.122240pt;}
.ws5b{word-spacing:1.152000pt;}
.ws6d{word-spacing:1.175680pt;}
.wsb0{word-spacing:1.192960pt;}
.wsb1{word-spacing:1.216000pt;}
.ws5c{word-spacing:1.280000pt;}
.ws73{word-spacing:1.282560pt;}
.wscd{word-spacing:1.288000pt;}
.wsfb{word-spacing:1.442880pt;}
.ws113{word-spacing:1.472000pt;}
.wsa6{word-spacing:1.496320pt;}
.wsf7{word-spacing:1.512000pt;}
.ws3d{word-spacing:1.536000pt;}
.ws56{word-spacing:1.600000pt;}
.wsa5{word-spacing:1.656640pt;}
.ws55{word-spacing:1.664000pt;}
.ws2d{word-spacing:1.710080pt;}
.wsce{word-spacing:1.736000pt;}
.wsa7{word-spacing:1.763520pt;}
.wsb2{word-spacing:1.816960pt;}
.ws3e{word-spacing:1.856000pt;}
.ws94{word-spacing:1.920000pt;}
.wsc8{word-spacing:2.016000pt;}
.ws63{word-spacing:2.072000pt;}
.ws49{word-spacing:2.137600pt;}
.ws1d{word-spacing:2.176000pt;}
.ws5e{word-spacing:2.240000pt;}
.wsbd{word-spacing:2.296000pt;}
.wsb3{word-spacing:2.297920pt;}
.wsf5{word-spacing:2.352000pt;}
.ws4a{word-spacing:2.404800pt;}
.ws57{word-spacing:2.496000pt;}
.ws40{word-spacing:2.560000pt;}
.wsff{word-spacing:2.632000pt;}
.ws100{word-spacing:2.688000pt;}
.wsa0{word-spacing:2.752000pt;}
.ws76{word-spacing:2.778880pt;}
.ws90{word-spacing:2.816000pt;}
.ws78{word-spacing:2.832320pt;}
.ws9d{word-spacing:2.880000pt;}
.wsf1{word-spacing:2.968000pt;}
.ws6e{word-spacing:3.099520pt;}
.wsab{word-spacing:3.136000pt;}
.ws9f{word-spacing:3.200000pt;}
.wsec{word-spacing:3.304000pt;}
.ws107{word-spacing:3.313280pt;}
.ws6f{word-spacing:3.366720pt;}
.wsaa{word-spacing:3.392000pt;}
.ws69{word-spacing:3.420160pt;}
.wsa4{word-spacing:3.456000pt;}
.ws32{word-spacing:3.520000pt;}
.ws68{word-spacing:3.633920pt;}
.ws24{word-spacing:3.712000pt;}
.ws92{word-spacing:3.740800pt;}
.ws8a{word-spacing:3.776000pt;}
.ws8e{word-spacing:3.840000pt;}
.ws102{word-spacing:3.920000pt;}
.ws45{word-spacing:3.954560pt;}
.ws93{word-spacing:4.008000pt;}
.wsda{word-spacing:4.032000pt;}
.ws23{word-spacing:4.096000pt;}
.ws22{word-spacing:4.160000pt;}
.wsfe{word-spacing:4.256000pt;}
.wsd1{word-spacing:4.275200pt;}
.ws46{word-spacing:4.382080pt;}
.ws41{word-spacing:4.480000pt;}
.ws4b{word-spacing:4.595840pt;}
.wsd0{word-spacing:4.672000pt;}
.wsa3{word-spacing:4.736000pt;}
.ws8f{word-spacing:4.800000pt;}
.ws10c{word-spacing:4.872000pt;}
.ws75{word-spacing:4.916480pt;}
.wsef{word-spacing:4.928000pt;}
.ws80{word-spacing:5.056000pt;}
.ws9b{word-spacing:5.120000pt;}
.ws101{word-spacing:5.208000pt;}
.ws74{word-spacing:5.237120pt;}
.ws62{word-spacing:5.376000pt;}
.ws25{word-spacing:5.440000pt;}
.ws5a{word-spacing:5.696000pt;}
.ws8d{word-spacing:5.760000pt;}
.wsee{word-spacing:5.768000pt;}
.wsed{word-spacing:5.824000pt;}
.ws7e{word-spacing:5.931840pt;}
.ws2b{word-spacing:6.016000pt;}
.ws7c{word-spacing:6.038720pt;}
.ws7d{word-spacing:6.305920pt;}
.ws2c{word-spacing:6.336000pt;}
.ws2a{word-spacing:6.400000pt;}
.ws105{word-spacing:6.440000pt;}
.wsc1{word-spacing:6.496000pt;}
.ws7f{word-spacing:6.519680pt;}
.wsc2{word-spacing:6.552000pt;}
.ws103{word-spacing:6.608000pt;}
.wsa1{word-spacing:6.656000pt;}
.ws104{word-spacing:6.720000pt;}
.ws98{word-spacing:6.976000pt;}
.ws99{word-spacing:7.040000pt;}
.wsba{word-spacing:7.296000pt;}
.ws10d{word-spacing:7.360000pt;}
.ws42{word-spacing:7.616000pt;}
.ws83{word-spacing:7.680000pt;}
.wsbc{word-spacing:8.000000pt;}
.ws6a{word-spacing:8.122880pt;}
.ws112{word-spacing:8.400000pt;}
.wse4{word-spacing:9.600000pt;}
.wsfc{word-spacing:16.128000pt;}
.wsa9{word-spacing:339.224000pt;}
._7{margin-left:-2.932800pt;}
._3e{margin-left:-1.881280pt;}
._2{margin-left:-0.897600pt;}
._3{width:0.897600pt;}
._b{width:1.985600pt;}
._4{width:3.262400pt;}
._91{width:4.250880pt;}
._5{width:5.248000pt;}
._6{width:6.336000pt;}
._3a{width:19.968000pt;}
._8b{width:55.886720pt;}
._25{width:60.222400pt;}
._79{width:63.139840pt;}
._7a{width:64.756480pt;}
._8a{width:65.952000pt;}
._7c{width:68.073280pt;}
._7d{width:71.520000pt;}
._80{width:79.680000pt;}
._7b{width:80.964160pt;}
._1{width:84.192000pt;}
._89{width:90.096000pt;}
._26{width:95.104000pt;}
._85{width:96.423680pt;}
._81{width:98.832000pt;}
._3c{width:104.320000pt;}
._7e{width:108.000000pt;}
._75{width:111.360000pt;}
._62{width:115.200000pt;}
._5b{width:118.272000pt;}
._67{width:119.228160pt;}
._86{width:120.160000pt;}
._5e{width:121.088000pt;}
._5c{width:123.839360pt;}
._6c{width:126.784000pt;}
._49{width:128.768000pt;}
._4a{width:130.240000pt;}
._63{width:131.200000pt;}
._5f{width:132.224000pt;}
._60{width:134.272000pt;}
._4c{width:137.600000pt;}
._55{width:138.934080pt;}
._61{width:139.894080pt;}
._6b{width:141.715200pt;}
._70{width:143.360000pt;}
._41{width:144.256000pt;}
._4b{width:145.920000pt;}
._29{width:147.072000pt;}
._7f{width:148.144000pt;}
._42{width:152.256000pt;}
._28{width:153.664000pt;}
._5a{width:154.569920pt;}
._27{width:155.713600pt;}
._22{width:157.120000pt;}
._87{width:159.520000pt;}
._44{width:162.240000pt;}
._33{width:163.840000pt;}
._5d{width:166.016000pt;}
._3b{width:168.320000pt;}
._46{width:169.854400pt;}
._32{width:171.328000pt;}
._23{width:173.120000pt;}
._88{width:174.768000pt;}
._82{width:176.656000pt;}
._45{width:177.600000pt;}
._84{width:180.316160pt;}
._4e{width:181.312000pt;}
._68{width:182.297280pt;}
._83{width:183.233600pt;}
._66{width:184.522560pt;}
._69{width:185.518080pt;}
._2e{width:186.816000pt;}
._47{width:187.966400pt;}
._43{width:189.632000pt;}
._40{width:193.792000pt;}
._10{width:195.200000pt;}
._24{width:196.608000pt;}
._6a{width:198.752640pt;}
._65{width:199.806720pt;}
._e{width:201.600000pt;}
._6e{width:202.560000pt;}
._2a{width:203.456000pt;}
._12{width:211.200000pt;}
._57{width:213.802560pt;}
._64{width:215.500800pt;}
._74{width:222.720000pt;}
._72{width:223.680000pt;}
._15{width:227.200000pt;}
._d{width:243.200000pt;}
._8c{width:246.592000pt;}
._58{width:248.640000pt;}
._59{width:260.480000pt;}
._54{width:268.160000pt;}
._6f{width:270.720000pt;}
._48{width:272.576000pt;}
._19{width:275.200000pt;}
._3d{width:278.460800pt;}
._50{width:284.160000pt;}
._52{width:290.778880pt;}
._56{width:292.149973pt;}
._51{width:299.840000pt;}
._17{width:307.200000pt;}
._31{width:309.056000pt;}
._2f{width:334.720000pt;}
._90{width:337.024000pt;}
._4f{width:340.225600pt;}
._6d{width:341.824000pt;}
._71{width:346.752000pt;}
._30{width:350.080000pt;}
._2d{width:351.296000pt;}
._8{width:356.416000pt;}
._73{width:363.072000pt;}
._9{width:369.600000pt;}
._8f{width:370.816000pt;}
._c{width:379.776000pt;}
._78{width:383.040000pt;}
._a{width:384.960000pt;}
._2b{width:391.936000pt;}
._8e{width:396.672000pt;}
._1f{width:411.008000pt;}
._8d{width:412.160000pt;}
._39{width:417.856000pt;}
._35{width:433.856000pt;}
._76{width:452.736000pt;}
._36{width:458.880000pt;}
._4d{width:460.736000pt;}
._53{width:469.376000pt;}
._38{width:484.288000pt;}
._37{width:500.288000pt;}
._20{width:507.008000pt;}
._21{width:521.216000pt;}
._1b{width:543.937600pt;}
._77{width:573.440000pt;}
._2c{width:597.120000pt;}
._f{width:608.384000pt;}
._1c{width:610.240000pt;}
._11{width:620.864000pt;}
._1a{width:631.552000pt;}
._1d{width:638.145600pt;}
._0{width:650.256000pt;}
._3f{width:680.384000pt;}
._13{width:688.384000pt;}
._14{width:692.608000pt;}
._1e{width:709.377600pt;}
._34{width:752.000000pt;}
._16{width:777.280000pt;}
._18{width:798.592000pt;}
.fs8{font-size:34.560000pt;}
.fsd{font-size:37.440000pt;}
.fsb{font-size:39.465225pt;}
.fs7{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fsf{font-size:48.960000pt;}
.fs2{font-size:53.440000pt;}
.fsc{font-size:53.760000pt;}
.fse{font-size:54.720000pt;}
.fsa{font-size:56.000000pt;}
.fs1{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.440000pt;}
.fs5{font-size:74.560000pt;}
.fs9{font-size:85.440000pt;}
.fs3{font-size:96.000000pt;}
.y2d6{bottom:-114.320000pt;}
.y2d5{bottom:-85.200000pt;}
.y2d4{bottom:-56.000000pt;}
.y2d3{bottom:-26.880000pt;}
.y0{bottom:0.000000pt;}
.y2d2{bottom:1.280000pt;}
.y97{bottom:6.000000pt;}
.y92{bottom:6.080000pt;}
.y334{bottom:8.160000pt;}
.y337{bottom:8.240000pt;}
.y133{bottom:8.720000pt;}
.y13b{bottom:8.800000pt;}
.y19b{bottom:10.159867pt;}
.ye9{bottom:10.160000pt;}
.yf0{bottom:10.240000pt;}
.y9c{bottom:11.280000pt;}
.y9f{bottom:12.080000pt;}
.yf9{bottom:13.280000pt;}
.ye7{bottom:14.160000pt;}
.y9{bottom:14.240000pt;}
.yf7{bottom:16.400000pt;}
.y23c{bottom:32.640000pt;}
.y280{bottom:32.720000pt;}
.y32a{bottom:54.560000pt;}
.y7{bottom:70.960000pt;}
.y6{bottom:100.080000pt;}
.y8{bottom:101.040000pt;}
.y5{bottom:129.280000pt;}
.y2c{bottom:147.116000pt;}
.y1b9{bottom:151.760000pt;}
.y38a{bottom:155.104160pt;}
.y8d{bottom:155.116000pt;}
.y5f{bottom:159.760000pt;}
.y328{bottom:165.440000pt;}
.y2b{bottom:167.120000pt;}
.y389{bottom:170.468160pt;}
.y29d{bottom:171.520000pt;}
.y8c{bottom:175.120000pt;}
.y5e{bottom:178.372320pt;}
.y1e0{bottom:178.392000pt;}
.y29f{bottom:181.760000pt;}
.y1a7{bottom:183.040000pt;}
.y8b{bottom:185.752000pt;}
.y201{bottom:185.756000pt;}
.y2a{bottom:189.120000pt;}
.y5d{bottom:193.736320pt;}
.y108{bottom:193.756000pt;}
.y327{bottom:194.560000pt;}
.y2d1{bottom:194.960000pt;}
.y144{bottom:197.120000pt;}
.y3a5{bottom:198.400000pt;}
.y29c{bottom:199.600000pt;}
.y29e{bottom:200.160000pt;}
.y8a{bottom:201.116000pt;}
.y370{bottom:201.752000pt;}
.y1a6{bottom:205.120000pt;}
.y200{bottom:205.760000pt;}
.y29{bottom:207.520000pt;}
.y5c{bottom:209.100320pt;}
.y107{bottom:213.760000pt;}
.y143{bottom:215.520000pt;}
.y36f{bottom:217.116000pt;}
.y3a4{bottom:220.400000pt;}
.y89{bottom:221.120000pt;}
.ydf{bottom:222.640000pt;}
.y34a{bottom:223.278000pt;}
.y1a5{bottom:223.520000pt;}
.y326{bottom:223.760000pt;}
.y5b{bottom:224.464320pt;}
.y1ff{bottom:227.760000pt;}
.y1df{bottom:232.376320pt;}
.y123{bottom:232.396000pt;}
.y106{bottom:235.760000pt;}
.y36e{bottom:237.120000pt;}
.y3a3{bottom:238.800000pt;}
.y5a{bottom:239.748160pt;}
.y88{bottom:239.752160pt;}
.y2d0{bottom:240.480000pt;}
.y349{bottom:241.674000pt;}
.y388{bottom:244.400000pt;}
.y184{bottom:244.800000pt;}
.y325{bottom:244.960000pt;}
.y1fe{bottom:246.160000pt;}
.y1de{bottom:247.740320pt;}
.ybb{bottom:251.120000pt;}
.yde{bottom:251.840000pt;}
.y122{bottom:252.400000pt;}
.y105{bottom:254.160000pt;}
.y59{bottom:255.112160pt;}
.y87{bottom:255.116160pt;}
.y36d{bottom:255.752160pt;}
.y29b{bottom:255.840000pt;}
.y1a4{bottom:256.240000pt;}
.y2eb{bottom:256.480000pt;}
.y1b8{bottom:259.120000pt;}
.y161{bottom:259.680000pt;}
.y1dd{bottom:263.104320pt;}
.y183{bottom:263.200000pt;}
.y324{bottom:266.080000pt;}
.y387{bottom:266.400000pt;}
.y348{bottom:267.994000pt;}
.y28{bottom:268.720000pt;}
.ydd{bottom:270.240000pt;}
.y58{bottom:270.396000pt;}
.y142{bottom:270.560000pt;}
.y36c{bottom:271.116160pt;}
.y121{bottom:274.400000pt;}
.y1a3{bottom:274.640000pt;}
.y86{bottom:275.040000pt;}
.y2cf{bottom:276.561360pt;}
.y224{bottom:277.360000pt;}
.y1dc{bottom:278.388160pt;}
.y30f{bottom:280.240000pt;}
.yba{bottom:280.560000pt;}
.y160{bottom:280.800000pt;}
.y386{bottom:284.800000pt;}
.y1fd{bottom:285.672000pt;}
.y2ea{bottom:285.680000pt;}
.y347{bottom:286.390000pt;}
.yb9{bottom:286.640000pt;}
.y323{bottom:287.280000pt;}
.ydc{bottom:288.640000pt;}
.y182{bottom:289.600000pt;}
.y57{bottom:290.400000pt;}
.y36b{bottom:291.040000pt;}
.y120{bottom:292.800000pt;}
.y85{bottom:293.732320pt;}
.y1db{bottom:293.752160pt;}
.y27{bottom:297.920000pt;}
.y3a2{bottom:299.280000pt;}
.y2ce{bottom:300.000000pt;}
.y1c7{bottom:300.688400pt;}
.y30e{bottom:301.440000pt;}
.y219{bottom:301.600000pt;}
.y15f{bottom:302.000000pt;}
.y223{bottom:302.880000pt;}
.y1fc{bottom:303.998000pt;}
.yb8{bottom:304.320000pt;}
.y346{bottom:304.716000pt;}
.y141{bottom:306.080000pt;}
.y2e9{bottom:306.800000pt;}
.ydb{bottom:307.040000pt;}
.y29a{bottom:307.044720pt;}
.y181{bottom:308.000000pt;}
.y322{bottom:308.400000pt;}
.y84{bottom:309.096320pt;}
.y1da{bottom:309.116160pt;}
.yb7{bottom:310.400000pt;}
.y56{bottom:312.400000pt;}
.y36a{bottom:314.400000pt;}
.y3a1{bottom:317.680000pt;}
.y1ad{bottom:318.440000pt;}
.y26{bottom:319.040000pt;}
.y27c{bottom:320.000000pt;}
.y1fb{bottom:322.394000pt;}
.y30d{bottom:322.560000pt;}
.y83{bottom:324.380160pt;}
.y299{bottom:324.720000pt;}
.yda{bottom:325.440000pt;}
.y180{bottom:326.400000pt;}
.y218{bottom:328.000000pt;}
.yb6{bottom:328.080000pt;}
.y1d9{bottom:329.040000pt;}
.y321{bottom:329.600000pt;}
.y55{bottom:330.800000pt;}
.y15e{bottom:331.120000pt;}
.y369{bottom:336.400000pt;}
.y25{bottom:337.440000pt;}
.y2cd{bottom:338.080000pt;}
.y82{bottom:339.744160pt;}
.y27b{bottom:341.120000pt;}
.y22c{bottom:341.142933pt;}
.y140{bottom:341.680000pt;}
.yd9{bottom:343.840000pt;}
.y17f{bottom:344.800000pt;}
.y385{bottom:344.960000pt;}
.y217{bottom:346.400000pt;}
.y104{bottom:347.360000pt;}
.y1fa{bottom:348.798000pt;}
.y11f{bottom:350.000000pt;}
.y320{bottom:350.720000pt;}
.y1d8{bottom:351.120000pt;}
.yb5{bottom:351.760000pt;}
.y3a0{bottom:352.080000pt;}
.y2e8{bottom:354.400000pt;}
.y368{bottom:354.800000pt;}
.y81{bottom:355.108160pt;}
.y15d{bottom:357.520000pt;}
.yb4{bottom:357.840000pt;}
.y345{bottom:358.000000pt;}
.yd8{bottom:362.240000pt;}
.y27a{bottom:362.320000pt;}
.y17e{bottom:363.200000pt;}
.y384{bottom:363.286000pt;}
.y298{bottom:363.520000pt;}
.y216{bottom:364.800000pt;}
.y3bc{bottom:365.200000pt;}
.y24{bottom:366.560000pt;}
.y1f9{bottom:367.124000pt;}
.y1d7{bottom:369.520000pt;}
.y80{bottom:370.392000pt;}
.y11e{bottom:371.120000pt;}
.y31f{bottom:371.840000pt;}
.y30c{bottom:372.880000pt;}
.y13f{bottom:375.200000pt;}
.y15c{bottom:376.000000pt;}
.yb3{bottom:376.160000pt;}
.y103{bottom:376.480000pt;}
.y344{bottom:379.120000pt;}
.y17d{bottom:381.600000pt;}
.y383{bottom:381.682000pt;}
.y2e7{bottom:382.480000pt;}
.yd7{bottom:384.560000pt;}
.y1f8{bottom:385.520000pt;}
.y7f{bottom:385.756000pt;}
.y39f{bottom:386.480000pt;}
.y23{bottom:387.840000pt;}
.y233{bottom:388.379867pt;}
.y1c2{bottom:390.250347pt;}
.y367{bottom:390.316000pt;}
.y215{bottom:391.200000pt;}
.y279{bottom:391.440000pt;}
.y22e{bottom:392.399200pt;}
.y31e{bottom:393.040000pt;}
.y30b{bottom:394.080000pt;}
.y54{bottom:397.440000pt;}
.y102{bottom:397.600000pt;}
.y3bb{bottom:399.600000pt;}
.y17c{bottom:400.000000pt;}
.y382{bottom:400.078000pt;}
.y343{bottom:400.320000pt;}
.yb2{bottom:400.560000pt;}
.y1d6{bottom:401.920000pt;}
.y297{bottom:402.320000pt;}
.yd6{bottom:402.960000pt;}
.y15b{bottom:403.520000pt;}
.y13e{bottom:404.720000pt;}
.y7e{bottom:405.760000pt;}
.yb1{bottom:406.640000pt;}
.y1c1{bottom:407.130267pt;}
.y22{bottom:408.960000pt;}
.y1f7{bottom:412.320000pt;}
.y278{bottom:412.560000pt;}
.y214{bottom:412.960000pt;}
.y2cc{bottom:413.280000pt;}
.y13d{bottom:413.440000pt;}
.y31d{bottom:414.160000pt;}
.y1c4{bottom:414.186747pt;}
.y30a{bottom:415.200000pt;}
.y366{bottom:416.720000pt;}
.y17b{bottom:418.400000pt;}
.y381{bottom:418.404000pt;}
.y22d{bottom:418.559200pt;}
.y53{bottom:418.560000pt;}
.y101{bottom:418.800000pt;}
.y1d5{bottom:420.320000pt;}
.y39e{bottom:420.880000pt;}
.yd5{bottom:421.360000pt;}
.y342{bottom:421.440000pt;}
.y15a{bottom:421.920000pt;}
.yb0{bottom:424.320000pt;}
.y7d{bottom:425.040000pt;}
.y2e6{bottom:425.200000pt;}
.y3ba{bottom:428.800000pt;}
.y21{bottom:430.160000pt;}
.y1c3{bottom:431.066667pt;}
.y232{bottom:431.895200pt;}
.y1ab{bottom:432.251600pt;}
.y277{bottom:433.760000pt;}
.y1a9{bottom:434.139600pt;}
.y13c{bottom:434.720000pt;}
.y11d{bottom:434.880000pt;}
.y365{bottom:435.046000pt;}
.y309{bottom:436.400000pt;}
.y380{bottom:436.800000pt;}
.y1d4{bottom:438.720000pt;}
.y39d{bottom:439.280000pt;}
.y52{bottom:439.760000pt;}
.y100{bottom:439.920000pt;}
.y296{bottom:440.560000pt;}
.y31c{bottom:443.360000pt;}
.y17a{bottom:444.800000pt;}
.y7c{bottom:447.040000pt;}
.y159{bottom:449.440000pt;}
.y3b9{bottom:449.920000pt;}
.y1aa{bottom:450.651600pt;}
.y21e{bottom:450.960000pt;}
.y2cb{bottom:452.485920pt;}
.y1a8{bottom:452.539600pt;}
.y364{bottom:453.442000pt;}
.yaf{bottom:454.720000pt;}
.y276{bottom:454.880000pt;}
.y37f{bottom:455.196000pt;}
.y341{bottom:456.960000pt;}
.y1f6{bottom:457.120000pt;}
.y308{bottom:457.520000pt;}
.y39c{bottom:457.680000pt;}
.yd4{bottom:458.160000pt;}
.y20{bottom:459.280000pt;}
.y51{bottom:460.880000pt;}
.yff{bottom:461.120000pt;}
.y179{bottom:463.200000pt;}
.y2e5{bottom:464.000000pt;}
.y31b{bottom:464.480000pt;}
.y13a{bottom:464.800000pt;}
.y7b{bottom:465.440000pt;}
.y1d3{bottom:466.320000pt;}
.y158{bottom:467.840000pt;}
.y363{bottom:471.768000pt;}
.y2ca{bottom:471.840000pt;}
.yae{bottom:473.120000pt;}
.y37e{bottom:473.522000pt;}
.y139{bottom:473.600000pt;}
.y11c{bottom:474.240000pt;}
.y275{bottom:476.080000pt;}
.yd3{bottom:476.560000pt;}
.y307{bottom:478.720000pt;}
.yad{bottom:479.120000pt;}
.y136{bottom:479.440000pt;}
.y1f{bottom:480.480000pt;}
.y1c6{bottom:480.681627pt;}
.y295{bottom:481.760000pt;}
.yfe{bottom:482.240000pt;}
.y340{bottom:482.480000pt;}
.y21d{bottom:483.440000pt;}
.y1f5{bottom:483.520000pt;}
.y3b8{bottom:484.320000pt;}
.y2e4{bottom:485.200000pt;}
.y31a{bottom:485.680000pt;}
.y157{bottom:486.240000pt;}
.y50{bottom:490.080000pt;}
.y362{bottom:490.164000pt;}
.y1d2{bottom:491.760000pt;}
.y37d{bottom:491.918000pt;}
.y39b{bottom:492.080000pt;}
.y178{bottom:492.320000pt;}
.y138{bottom:494.880000pt;}
.yd2{bottom:494.960000pt;}
.y78{bottom:496.396000pt;}
.y7a{bottom:496.400000pt;}
.yac{bottom:496.800000pt;}
.y274{bottom:497.200000pt;}
.y1c5{bottom:497.561547pt;}
.y135{bottom:497.840000pt;}
.y79{bottom:501.040000pt;}
.y294{bottom:501.200000pt;}
.y1e{bottom:501.600000pt;}
.y1f4{bottom:501.920000pt;}
.y3b7{bottom:502.720000pt;}
.yab{bottom:502.880000pt;}
.y137{bottom:503.600000pt;}
.y11b{bottom:504.000000pt;}
.y319{bottom:506.800000pt;}
.y22f{bottom:506.927200pt;}
.y361{bottom:508.560000pt;}
.y2c9{bottom:509.920000pt;}
.y37c{bottom:510.244000pt;}
.y39a{bottom:510.480000pt;}
.y4f{bottom:511.200000pt;}
.yfd{bottom:511.440000pt;}
.y33f{bottom:511.680000pt;}
.y1ac{bottom:512.443600pt;}
.y177{bottom:513.520000pt;}
.y156{bottom:513.760000pt;}
.y77{bottom:514.722000pt;}
.y21c{bottom:515.920000pt;}
.yd1{bottom:517.200000pt;}
.y306{bottom:520.160000pt;}
.y1f3{bottom:520.320000pt;}
.y3b6{bottom:521.120000pt;}
.y1d{bottom:522.800000pt;}
.y2e3{bottom:524.480000pt;}
.y1b7{bottom:525.440000pt;}
.y273{bottom:526.400000pt;}
.yaa{bottom:527.280000pt;}
.y318{bottom:528.000000pt;}
.y1e8{bottom:528.480000pt;}
.y37b{bottom:528.640000pt;}
.y155{bottom:532.240000pt;}
.yfc{bottom:532.560000pt;}
.y360{bottom:532.640000pt;}
.y76{bottom:533.118000pt;}
.y134{bottom:533.680000pt;}
.y11a{bottom:533.840000pt;}
.yd0{bottom:535.600000pt;}
.y33e{bottom:537.520000pt;}
.y1f2{bottom:538.720000pt;}
.y176{bottom:539.920000pt;}
.y4e{bottom:540.400000pt;}
.y293{bottom:541.600000pt;}
.y1b6{bottom:543.840000pt;}
.y1c{bottom:543.920000pt;}
.y399{bottom:544.880000pt;}
.ya9{bottom:545.600000pt;}
.y272{bottom:547.520000pt;}
.y2c8{bottom:548.000000pt;}
.y21b{bottom:548.480000pt;}
.y1a2{bottom:548.640000pt;}
.y75{bottom:551.514000pt;}
.ya8{bottom:551.680000pt;}
.y231{bottom:552.333947pt;}
.yfb{bottom:553.760000pt;}
.ycf{bottom:554.000000pt;}
.y132{bottom:555.040000pt;}
.y37a{bottom:555.044000pt;}
.y3b5{bottom:555.520000pt;}
.y1f1{bottom:557.120000pt;}
.y305{bottom:558.000000pt;}
.y175{bottom:558.320000pt;}
.y154{bottom:559.760000pt;}
.y35f{bottom:561.760000pt;}
.y2e2{bottom:562.000000pt;}
.y33d{bottom:563.280000pt;}
.y119{bottom:563.680000pt;}
.y131{bottom:563.760000pt;}
.y21a{bottom:564.720000pt;}
.y1b{bottom:565.120000pt;}
.y271{bottom:568.720000pt;}
.y230{bottom:569.213867pt;}
.ya7{bottom:569.360000pt;}
.y4d{bottom:569.840000pt;}
.y1b5{bottom:570.240000pt;}
.y12e{bottom:572.240000pt;}
.yce{bottom:572.400000pt;}
.y379{bottom:573.370000pt;}
.y3b4{bottom:573.920000pt;}
.y1f0{bottom:575.520000pt;}
.y174{bottom:576.720000pt;}
.y153{bottom:578.160000pt;}
.y317{bottom:578.320000pt;}
.y398{bottom:579.280000pt;}
.y292{bottom:579.840000pt;}
.y23a{bottom:582.560000pt;}
.y213{bottom:582.960000pt;}
.y1a1{bottom:583.040000pt;}
.y304{bottom:583.760000pt;}
.y130{bottom:585.120000pt;}
.yfa{bottom:587.200000pt;}
.y1e7{bottom:588.080000pt;}
.y1b4{bottom:588.640000pt;}
.y33c{bottom:589.120000pt;}
.y12d{bottom:590.640000pt;}
.ycd{bottom:590.800000pt;}
.y378{bottom:591.766000pt;}
.ya6{bottom:593.120000pt;}
.y118{bottom:593.520000pt;}
.y74{bottom:593.920000pt;}
.y1a{bottom:594.240000pt;}
.y173{bottom:595.120000pt;}
.y2e1{bottom:595.600000pt;}
.y12f{bottom:596.400000pt;}
.y152{bottom:596.560000pt;}
.ya5{bottom:599.120000pt;}
.y316{bottom:599.440000pt;}
.y1a0{bottom:601.440000pt;}
.y222{bottom:602.560000pt;}
.y1b3{bottom:607.040000pt;}
.y3b3{bottom:608.320000pt;}
.ycc{bottom:609.200000pt;}
.y270{bottom:610.160000pt;}
.y377{bottom:610.162000pt;}
.y35e{bottom:611.606000pt;}
.y239{bottom:611.680000pt;}
.y73{bottom:612.320000pt;}
.y172{bottom:613.520000pt;}
.y397{bottom:613.680000pt;}
.y19{bottom:615.440000pt;}
.y4c{bottom:615.600000pt;}
.yf6{bottom:616.400000pt;}
.ya4{bottom:616.800000pt;}
.y1e6{bottom:617.920000pt;}
.y212{bottom:618.640000pt;}
.y1ef{bottom:620.320000pt;}
.y315{bottom:620.640000pt;}
.ya3{bottom:622.880000pt;}
.y2c7{bottom:623.200000pt;}
.y151{bottom:624.080000pt;}
.y3b2{bottom:626.720000pt;}
.y19f{bottom:627.195840pt;}
.y117{bottom:627.360000pt;}
.ycb{bottom:627.680000pt;}
.y376{bottom:628.488000pt;}
.y12c{bottom:629.120000pt;}
.y2de{bottom:629.520000pt;}
.yf8{bottom:629.680000pt;}
.y35d{bottom:630.002000pt;}
.y72{bottom:630.720000pt;}
.y303{bottom:631.600000pt;}
.y2e0{bottom:631.840000pt;}
.y171{bottom:631.920000pt;}
.yf5{bottom:632.800000pt;}
.y238{bottom:632.880000pt;}
.y1b2{bottom:633.440000pt;}
.y221{bottom:636.074160pt;}
.y1ee{bottom:638.720000pt;}
.y26f{bottom:639.360000pt;}
.ya2{bottom:640.560000pt;}
.y33b{bottom:640.800000pt;}
.y314{bottom:641.760000pt;}
.y18{bottom:641.840000pt;}
.y150{bottom:642.480000pt;}
.y19e{bottom:642.640000pt;}
.y3c{bottom:643.520000pt;}
.ya1{bottom:646.640000pt;}
.y375{bottom:646.884000pt;}
.y1e5{bottom:647.760000pt;}
.y26e{bottom:648.080000pt;}
.y35c{bottom:648.398000pt;}
.yca{bottom:649.920000pt;}
.y211{bottom:650.240000pt;}
.y170{bottom:650.320000pt;}
.y4b{bottom:651.200000pt;}
.y1b1{bottom:651.840000pt;}
.yf4{bottom:652.400000pt;}
.y237{bottom:654.000000pt;}
.y302{bottom:656.160000pt;}
.y116{bottom:656.480000pt;}
.y2df{bottom:657.040000pt;}
.y71{bottom:657.120000pt;}
.y291{bottom:657.360000pt;}
.y220{bottom:659.040000pt;}
.y12b{bottom:659.200000pt;}
.y2c6{bottom:660.320000pt;}
.y14f{bottom:660.880000pt;}
.y3b1{bottom:661.120000pt;}
.yf3{bottom:662.640000pt;}
.y313{bottom:662.960000pt;}
.ya0{bottom:664.320000pt;}
.y374{bottom:665.280000pt;}
.y33a{bottom:666.640000pt;}
.y35b{bottom:666.724000pt;}
.yc9{bottom:668.320000pt;}
.y1b0{bottom:670.240000pt;}
.y17{bottom:670.960000pt;}
.y12a{bottom:671.040000pt;}
.y19d{bottom:671.760000pt;}
.y210{bottom:672.560000pt;}
.y70{bottom:675.520000pt;}
.y3b{bottom:676.080000pt;}
.y16f{bottom:676.640000pt;}
.y4a{bottom:677.040000pt;}
.y1e4{bottom:677.600000pt;}
.y26d{bottom:677.840000pt;}
.y14e{bottom:679.280000pt;}
.y3b0{bottom:679.520000pt;}
.y301{bottom:680.636000pt;}
.y19c{bottom:681.920000pt;}
.yf2{bottom:682.240000pt;}
.y396{bottom:682.480000pt;}
.y236{bottom:683.200000pt;}
.y312{bottom:684.080000pt;}
.y35a{bottom:685.120000pt;}
.y115{bottom:685.600000pt;}
.yc8{bottom:686.720000pt;}
.y9e{bottom:688.000000pt;}
.y1af{bottom:688.640000pt;}
.y16{bottom:691.120000pt;}
.y373{bottom:692.080000pt;}
.yf1{bottom:692.480000pt;}
.y6f{bottom:693.920000pt;}
.y16e{bottom:695.040000pt;}
.y290{bottom:695.200000pt;}
.y300{bottom:696.560000pt;}
.y2dd{bottom:697.280000pt;}
.y21f{bottom:698.080000pt;}
.y49{bottom:698.240000pt;}
.y2c5{bottom:698.400000pt;}
.y20f{bottom:699.040000pt;}
.y9d{bottom:700.080000pt;}
.y339{bottom:700.640000pt;}
.y19a{bottom:701.600000pt;}
.y1ed{bottom:701.920000pt;}
.y235{bottom:704.320000pt;}
.yc7{bottom:705.120000pt;}
.y3a{bottom:705.280000pt;}
.y262{bottom:706.408000pt;}
.y265{bottom:706.418640pt;}
.y26c{bottom:706.429280pt;}
.y1e3{bottom:707.440000pt;}
.y395{bottom:709.360000pt;}
.y14d{bottom:709.600000pt;}
.y267{bottom:709.855360pt;}
.y199{bottom:711.759867pt;}
.y359{bottom:711.920000pt;}
.yef{bottom:712.080000pt;}
.y6e{bottom:712.320000pt;}
.y269{bottom:712.579200pt;}
.y311{bottom:713.280000pt;}
.y16d{bottom:713.440000pt;}
.y3af{bottom:713.920000pt;}
.y197{bottom:714.080000pt;}
.y25f{bottom:716.640000pt;}
.y15{bottom:716.960000pt;}
.y20e{bottom:717.440000pt;}
.y338{bottom:718.240000pt;}
.y129{bottom:718.400000pt;}
.y261{bottom:718.644000pt;}
.y264{bottom:718.654640pt;}
.y26b{bottom:718.665280pt;}
.y1ec{bottom:720.320000pt;}
.y2ff{bottom:721.040000pt;}
.yee{bottom:722.320000pt;}
.y9b{bottom:723.840000pt;}
.y268{bottom:724.815200pt;}
.y39{bottom:726.400000pt;}
.y48{bottom:727.360000pt;}
.y266{bottom:727.453920pt;}
.y114{bottom:730.480000pt;}
.y14c{bottom:730.720000pt;}
.y260{bottom:730.880000pt;}
.y263{bottom:730.890640pt;}
.y26a{bottom:730.901280pt;}
.y16c{bottom:731.840000pt;}
.y3ae{bottom:732.320000pt;}
.y358{bottom:733.120000pt;}
.y28f{bottom:733.440000pt;}
.y310{bottom:734.400000pt;}
.y9a{bottom:735.120000pt;}
.y14{bottom:735.360000pt;}
.yc6{bottom:735.440000pt;}
.y20d{bottom:735.840000pt;}
.y2c4{bottom:736.480000pt;}
.y1e1{bottom:737.200000pt;}
.y6d{bottom:738.720000pt;}
.y22b{bottom:739.040667pt;}
.y196{bottom:739.280000pt;}
.y198{bottom:741.600000pt;}
.yed{bottom:741.920000pt;}
.y372{bottom:742.400000pt;}
.y336{bottom:744.080000pt;}
.y2fe{bottom:745.600000pt;}
.y192{bottom:745.920000pt;}
.y128{bottom:747.600000pt;}
.y394{bottom:748.646000pt;}
.y113{bottom:748.880000pt;}
.y234{bottom:749.120000pt;}
.y16b{bottom:750.240000pt;}
.yec{bottom:752.080000pt;}
.yc5{bottom:753.840000pt;}
.y38{bottom:755.600000pt;}
.y25e{bottom:755.680000pt;}
.y47{bottom:756.560000pt;}
.y6c{bottom:757.120000pt;}
.y99{bottom:758.080000pt;}
.y1c0{bottom:760.144533pt;}
.y357{bottom:761.836000pt;}
.y371{bottom:763.600000pt;}
.y98{bottom:764.160000pt;}
.y13{bottom:764.560000pt;}
.y20c{bottom:764.880000pt;}
.y14b{bottom:766.240000pt;}
.y3ad{bottom:766.720000pt;}
.y1e2{bottom:767.040000pt;}
.y393{bottom:767.042000pt;}
.y191{bottom:767.120000pt;}
.y112{bottom:767.280000pt;}
.y225{bottom:769.596667pt;}
.y335{bottom:769.920000pt;}
.y2fd{bottom:770.160000pt;}
.y190{bottom:771.440000pt;}
.y28e{bottom:771.759867pt;}
.yeb{bottom:771.760000pt;}
.yc4{bottom:772.240000pt;}
.y194{bottom:773.440000pt;}
.y6b{bottom:775.520000pt;}
.y2c3{bottom:775.593440pt;}
.y2bf{bottom:775.606800pt;}
.y2bb{bottom:775.620160pt;}
.y2b7{bottom:775.633520pt;}
.y2b3{bottom:775.646880pt;}
.y2ac{bottom:775.660240pt;}
.y127{bottom:776.640000pt;}
.y37{bottom:776.720000pt;}
.y356{bottom:780.162000pt;}
.y96{bottom:781.840000pt;}
.yea{bottom:781.920000pt;}
.y46{bottom:782.960000pt;}
.y1eb{bottom:783.520000pt;}
.y2dc{bottom:784.720000pt;}
.y3ac{bottom:785.120000pt;}
.y392{bottom:785.368000pt;}
.y25d{bottom:785.440000pt;}
.y12{bottom:785.680000pt;}
.y2af{bottom:786.455120pt;}
.y2a8{bottom:786.468480pt;}
.y95{bottom:787.840000pt;}
.yc3{bottom:790.640000pt;}
.y195{bottom:792.240000pt;}
.y20b{bottom:793.678000pt;}
.y6a{bottom:793.920000pt;}
.y193{bottom:794.560000pt;}
.y1bf{bottom:794.628133pt;}
.y2fc{bottom:794.640000pt;}
.y16a{bottom:795.040000pt;}
.y333{bottom:795.760000pt;}
.y18f{bottom:796.560000pt;}
.y2c2{bottom:797.196560pt;}
.y2be{bottom:797.209920pt;}
.y2ba{bottom:797.223280pt;}
.y2b6{bottom:797.236640pt;}
.y2b2{bottom:797.250000pt;}
.y2ab{bottom:797.263360pt;}
.y2a5{bottom:797.276720pt;}
.y36{bottom:797.920000pt;}
.y1d1{bottom:798.160000pt;}
.y355{bottom:798.558000pt;}
.y14a{bottom:799.840000pt;}
.y45{bottom:801.360000pt;}
.ye6{bottom:801.600000pt;}
.y1ea{bottom:801.920000pt;}
.y391{bottom:803.764000pt;}
.y111{bottom:804.080000pt;}
.y126{bottom:805.920000pt;}
.y2ae{bottom:808.138400pt;}
.y2a7{bottom:808.151760pt;}
.yc2{bottom:809.040000pt;}
.ye8{bottom:811.760000pt;}
.y20a{bottom:812.074000pt;}
.y94{bottom:812.320000pt;}
.y169{bottom:813.440000pt;}
.y2db{bottom:813.920000pt;}
.y28d{bottom:814.480000pt;}
.y11{bottom:814.800000pt;}
.y25c{bottom:815.120000pt;}
.y289{bottom:815.840000pt;}
.y354{bottom:816.954000pt;}
.y2c1{bottom:818.879840pt;}
.y2bd{bottom:818.893200pt;}
.y2b9{bottom:818.906560pt;}
.y2b5{bottom:818.919920pt;}
.y2b1{bottom:818.933280pt;}
.y2aa{bottom:818.946640pt;}
.y2a4{bottom:818.960000pt;}
.y35{bottom:819.040000pt;}
.y2fb{bottom:819.200000pt;}
.y3ab{bottom:819.520000pt;}
.y18e{bottom:819.680000pt;}
.y69{bottom:820.320000pt;}
.y390{bottom:822.160000pt;}
.y228{bottom:823.615067pt;}
.y286{bottom:823.760000pt;}
.y1d0{bottom:824.560000pt;}
.y125{bottom:827.040000pt;}
.y44{bottom:827.760000pt;}
.y2ad{bottom:829.741520pt;}
.y2a6{bottom:829.754880pt;}
.y332{bottom:829.760000pt;}
.y209{bottom:830.400000pt;}
.y110{bottom:830.480000pt;}
.y288{bottom:831.760000pt;}
.y283{bottom:831.839440pt;}
.y168{bottom:831.840000pt;}
.y28c{bottom:833.040000pt;}
.y93{bottom:833.360000pt;}
.y1bb{bottom:834.857680pt;}
.y2da{bottom:835.040000pt;}
.y353{bottom:835.280000pt;}
.y149{bottom:836.720000pt;}
.y3aa{bottom:837.920000pt;}
.y18d{bottom:838.080000pt;}
.y68{bottom:838.720000pt;}
.yc1{bottom:839.360000pt;}
.y2c0{bottom:840.482960pt;}
.y2bc{bottom:840.496320pt;}
.y2b8{bottom:840.509680pt;}
.y2b4{bottom:840.523040pt;}
.y2b0{bottom:840.536400pt;}
.y2a9{bottom:840.549760pt;}
.ye5{bottom:841.600000pt;}
.y285{bottom:842.320000pt;}
.y1cf{bottom:842.960000pt;}
.y10{bottom:842.962800pt;}
.y25b{bottom:843.746160pt;}
.y2fa{bottom:843.760000pt;}
.y43{bottom:846.160000pt;}
.y32f{bottom:847.360000pt;}
.y34{bottom:848.240000pt;}
.y208{bottom:848.796000pt;}
.y10f{bottom:848.880000pt;}
.y38f{bottom:848.960000pt;}
.y257{bottom:849.098080pt;}
.y167{bottom:850.240000pt;}
.y28b{bottom:851.600000pt;}
.y249{bottom:851.704880pt;}
.y250{bottom:851.715520pt;}
.y1ba{bottom:851.737600pt;}
.y91{bottom:852.000000pt;}
.y282{bottom:852.160000pt;}
.y242{bottom:855.205440pt;}
.y24c{bottom:855.226720pt;}
.y331{bottom:855.600000pt;}
.y2d9{bottom:856.240000pt;}
.y1bd{bottom:856.905520pt;}
.y67{bottom:857.120000pt;}
.yc0{bottom:857.760000pt;}
.y245{bottom:857.854800pt;}
.y253{bottom:857.886720pt;}
.y284{bottom:860.880000pt;}
.y256{bottom:861.334080pt;}
.y25a{bottom:861.344720pt;}
.y1ce{bottom:861.360000pt;}
.yf{bottom:861.600000pt;}
.y352{bottom:862.160000pt;}
.y248{bottom:864.026000pt;}
.y24f{bottom:864.036640pt;}
.y148{bottom:864.160000pt;}
.y18c{bottom:864.480000pt;}
.y42{bottom:864.560000pt;}
.y207{bottom:867.122000pt;}
.y32e{bottom:867.200000pt;}
.y10e{bottom:867.280000pt;}
.y24b{bottom:867.462720pt;}
.y23f{bottom:868.080000pt;}
.y2f9{bottom:868.240000pt;}
.y90{bottom:868.560000pt;}
.y287{bottom:868.800000pt;}
.y33{bottom:869.360000pt;}
.y244{bottom:870.090800pt;}
.y252{bottom:870.122720pt;}
.y28a{bottom:870.160000pt;}
.ye4{bottom:871.440000pt;}
.y3a9{bottom:872.320000pt;}
.y241{bottom:872.804000pt;}
.y1bc{bottom:873.785440pt;}
.y66{bottom:875.520000pt;}
.ybf{bottom:876.160000pt;}
.y247{bottom:876.262000pt;}
.y24e{bottom:876.272640pt;}
.y166{bottom:876.640000pt;}
.y2d8{bottom:877.360000pt;}
.y330{bottom:878.720000pt;}
.y255{bottom:878.932640pt;}
.y259{bottom:878.943280pt;}
.ye{bottom:881.360000pt;}
.y243{bottom:882.326800pt;}
.y251{bottom:882.358720pt;}
.y18b{bottom:882.800000pt;}
.y227{bottom:882.826587pt;}
.y41{bottom:882.960000pt;}
.y351{bottom:883.280000pt;}
.y240{bottom:885.040000pt;}
.y24a{bottom:885.061280pt;}
.y206{bottom:885.518000pt;}
.y10d{bottom:885.600000pt;}
.y1cd{bottom:887.760000pt;}
.y246{bottom:888.498000pt;}
.y24d{bottom:888.508640pt;}
.y32d{bottom:890.320000pt;}
.y32{bottom:890.480000pt;}
.y3a8{bottom:890.720000pt;}
.y254{bottom:891.168640pt;}
.y38e{bottom:891.280000pt;}
.y147{bottom:891.520000pt;}
.y2f8{bottom:892.320000pt;}
.y65{bottom:893.920000pt;}
.y2a3{bottom:894.240000pt;}
.y2f5{bottom:894.320000pt;}
.ybe{bottom:894.560000pt;}
.y165{bottom:895.040000pt;}
.y27f{bottom:896.160000pt;}
.y258{bottom:896.541840pt;}
.y2d7{bottom:898.480000pt;}
.y2ef{bottom:898.796720pt;}
.y226{bottom:901.169867pt;}
.y2f2{bottom:901.357680pt;}
.y8f{bottom:901.840000pt;}
.y2f0{bottom:902.561280pt;}
.y205{bottom:903.914000pt;}
.y10c{bottom:904.000000pt;}
.y350{bottom:904.480000pt;}
.y281{bottom:905.040000pt;}
.ye3{bottom:905.200000pt;}
.y1cc{bottom:906.160000pt;}
.y18a{bottom:909.280000pt;}
.y40{bottom:909.760000pt;}
.y2f7{bottom:910.400000pt;}
.y31{bottom:911.680000pt;}
.y64{bottom:912.320000pt;}
.y2f4{bottom:912.400000pt;}
.y38d{bottom:912.480000pt;}
.y1be{bottom:913.020640pt;}
.yd{bottom:919.352880pt;}
.y2a2{bottom:919.360000pt;}
.y329{bottom:919.520000pt;}
.y2f1{bottom:919.520160pt;}
.y124{bottom:919.680000pt;}
.y146{bottom:920.240000pt;}
.y2ee{bottom:920.480000pt;}
.y23e{bottom:921.280000pt;}
.y204{bottom:922.240000pt;}
.y10b{bottom:922.400000pt;}
.y164{bottom:924.240000pt;}
.y1cb{bottom:924.560000pt;}
.ybd{bottom:924.800000pt;}
.y3a7{bottom:925.120000pt;}
.y2f3{bottom:926.560000pt;}
.y189{bottom:927.680000pt;}
.y32c{bottom:927.760000pt;}
.y2f6{bottom:928.560000pt;}
.y63{bottom:930.720000pt;}
.y30{bottom:932.800000pt;}
.y34f{bottom:933.118000pt;}
.ye2{bottom:934.400000pt;}
.yc{bottom:940.480000pt;}
.y10a{bottom:940.800000pt;}
.y1ae{bottom:941.120000pt;}
.y38c{bottom:941.126000pt;}
.y23b{bottom:942.240000pt;}
.y1ca{bottom:942.960000pt;}
.y188{bottom:946.080000pt;}
.y203{bottom:946.320000pt;}
.y145{bottom:948.960000pt;}
.y62{bottom:949.120000pt;}
.y2a1{bottom:949.200000pt;}
.y32b{bottom:950.880000pt;}
.y163{bottom:951.124000pt;}
.y34e{bottom:951.514000pt;}
.y2ed{bottom:953.360000pt;}
.ybc{bottom:954.000000pt;}
.y27e{bottom:956.000000pt;}
.y3f{bottom:956.240000pt;}
.y23d{bottom:956.480000pt;}
.y8e{bottom:957.120000pt;}
.y3a6{bottom:959.520000pt;}
.y38b{bottom:959.522000pt;}
.y22a{bottom:961.076107pt;}
.y1c9{bottom:961.360000pt;}
.ye1{bottom:961.920000pt;}
.y2f{bottom:962.000000pt;}
.y187{bottom:964.480000pt;}
.y202{bottom:964.720000pt;}
.y1e9{bottom:967.520000pt;}
.y109{bottom:970.000000pt;}
.y162{bottom:972.560000pt;}
.y2a0{bottom:974.320000pt;}
.y61{bottom:975.520000pt;}
.y229{bottom:976.440107pt;}
.y34d{bottom:977.918000pt;}
.y2ec{bottom:978.480000pt;}
.y27d{bottom:979.840000pt;}
.y3e{bottom:982.716000pt;}
.y186{bottom:982.880000pt;}
.y2e{bottom:983.120000pt;}
.yb{bottom:985.832400pt;}
.y1c8{bottom:988.324000pt;}
.ye0{bottom:991.120000pt;}
.y60{bottom:993.920000pt;}
.y34c{bottom:996.244000pt;}
.y3d{bottom:1007.280000pt;}
.ya{bottom:1008.480000pt;}
.y185{bottom:1009.760000pt;}
.y2d{bottom:1012.320000pt;}
.y34b{bottom:1014.640000pt;}
.y4{bottom:1041.440000pt;}
.y3{bottom:1059.596000pt;}
.y2{bottom:1074.320000pt;}
.y1{bottom:1089.680000pt;}
.h42{height:13.758667pt;}
.h21{height:23.680000pt;}
.h1d{height:23.681333pt;}
.h1e{height:23.760000pt;}
.h4d{height:25.120000pt;}
.h4c{height:25.121333pt;}
.h4e{height:25.200000pt;}
.h29{height:29.040000pt;}
.h24{height:29.118667pt;}
.h23{height:29.120000pt;}
.h5{height:29.200000pt;}
.h25{height:29.201333pt;}
.hd{height:30.324375pt;}
.h2d{height:30.695625pt;}
.h38{height:30.984844pt;}
.h52{height:32.822969pt;}
.h17{height:33.819077pt;}
.h1f{height:34.240000pt;}
.h3{height:34.453125pt;}
.h26{height:35.358667pt;}
.h36{height:35.644219pt;}
.h20{height:35.840000pt;}
.h19{height:37.105312pt;}
.h46{height:37.338786pt;}
.h47{height:37.343906pt;}
.h2c{height:38.905781pt;}
.h10{height:39.030469pt;}
.h2f{height:39.138750pt;}
.h34{height:39.837656pt;}
.h3a{height:42.117188pt;}
.h22{height:42.656250pt;}
.h4a{height:42.921094pt;}
.h9{height:43.733125pt;}
.h13{height:44.437500pt;}
.h1c{height:44.800000pt;}
.h27{height:46.593750pt;}
.h15{height:46.890469pt;}
.he{height:46.906469pt;}
.h43{height:47.464531pt;}
.h37{height:47.600000pt;}
.h16{height:47.988281pt;}
.h14{height:48.884375pt;}
.h18{height:49.136719pt;}
.h39{height:50.320000pt;}
.h50{height:50.619594pt;}
.h51{height:50.643594pt;}
.h32{height:50.651594pt;}
.h4f{height:50.659594pt;}
.h31{height:50.675594pt;}
.h3f{height:51.382969pt;}
.h2e{height:52.012031pt;}
.h8{height:53.775625pt;}
.h3e{height:53.963750pt;}
.h11{height:54.281719pt;}
.h3b{height:54.556250pt;}
.ha{height:56.145050pt;}
.h4{height:56.156250pt;}
.h7{height:56.826875pt;}
.hb{height:56.843750pt;}
.h53{height:59.240560pt;}
.h30{height:59.241094pt;}
.h6{height:61.016875pt;}
.h12{height:61.343906pt;}
.hf{height:62.202656pt;}
.h1a{height:65.422031pt;}
.h2a{height:66.222969pt;}
.h2{height:67.200000pt;}
.h35{height:67.709941pt;}
.h40{height:68.350271pt;}
.h4b{height:71.520000pt;}
.h48{height:73.513186pt;}
.h49{height:73.813187pt;}
.h41{height:82.126969pt;}
.hc{height:84.234375pt;}
.h3d{height:88.457370pt;}
.h3c{height:94.283750pt;}
.h1b{height:98.396250pt;}
.h44{height:98.716250pt;}
.h28{height:103.516250pt;}
.h45{height:113.504526pt;}
.h33{height:121.116250pt;}
.h2b{height:139.356250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.720000pt;}
.wc{width:65.440000pt;}
.wb{width:65.598667pt;}
.wa{width:66.160000pt;}
.w14{width:70.001333pt;}
.wd{width:74.880000pt;}
.we{width:80.800000pt;}
.wf{width:81.200000pt;}
.w10{width:81.360000pt;}
.w11{width:81.438667pt;}
.w12{width:81.520000pt;}
.w9{width:81.680000pt;}
.w4{width:95.838667pt;}
.w5{width:95.840000pt;}
.w3{width:102.480000pt;}
.w19{width:114.240000pt;}
.w1c{width:114.318667pt;}
.w1b{width:114.320000pt;}
.w18{width:114.400000pt;}
.w1a{width:114.401333pt;}
.w8{width:115.760000pt;}
.w6{width:165.920000pt;}
.w7{width:559.760000pt;}
.w17{width:574.320000pt;}
.w16{width:577.038667pt;}
.w15{width:597.360000pt;}
.w13{width:616.880000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:4.160000pt;}
.xd4{left:9.600000pt;}
.x1e{left:11.200000pt;}
.xee{left:14.720000pt;}
.x37{left:16.480000pt;}
.xf1{left:18.080000pt;}
.x36{left:25.440000pt;}
.xef{left:26.480000pt;}
.xeb{left:29.520000pt;}
.xe7{left:30.960000pt;}
.xec{left:32.240000pt;}
.xf0{left:36.240000pt;}
.xea{left:37.600000pt;}
.xe9{left:49.120000pt;}
.xe8{left:53.200000pt;}
.x2b{left:55.600000pt;}
.x3c{left:61.280000pt;}
.x2d{left:62.320000pt;}
.xa8{left:65.600000pt;}
.x2c{left:67.600000pt;}
.x40{left:70.560000pt;}
.x43{left:76.480000pt;}
.x21{left:91.600000pt;}
.x25{left:98.320000pt;}
.x3{left:113.448000pt;}
.x94{left:118.720000pt;}
.xb1{left:121.911040pt;}
.x88{left:122.880000pt;}
.xd2{left:123.840000pt;}
.x18{left:124.800720pt;}
.xb0{left:126.400000pt;}
.xc1{left:127.360000pt;}
.xc2{left:128.720000pt;}
.xdf{left:130.320000pt;}
.xe0{left:131.680000pt;}
.xd3{left:132.726480pt;}
.xc3{left:134.000000pt;}
.x1{left:135.680000pt;}
.x8{left:136.800000pt;}
.xa7{left:139.520000pt;}
.x52{left:143.360000pt;}
.x28{left:145.360000pt;}
.x53{left:146.480000pt;}
.x35{left:148.000000pt;}
.x1f{left:149.520000pt;}
.x6{left:151.120000pt;}
.x34{left:152.320000pt;}
.x6f{left:153.680000pt;}
.xed{left:157.040000pt;}
.x54{left:158.080000pt;}
.x12{left:160.640000pt;}
.x67{left:163.040000pt;}
.xd7{left:164.000000pt;}
.xd8{left:165.760000pt;}
.x57{left:167.120000pt;}
.x58{left:168.560000pt;}
.x78{left:170.080000pt;}
.x46{left:171.680000pt;}
.x45{left:173.440000pt;}
.x32{left:174.800000pt;}
.x62{left:179.040000pt;}
.x76{left:182.275600pt;}
.x16{left:186.640000pt;}
.x96{left:188.720000pt;}
.xc9{left:189.995200pt;}
.xb2{left:191.040000pt;}
.x61{left:194.240000pt;}
.x17{left:196.640000pt;}
.x5f{left:198.240000pt;}
.x97{left:201.040000pt;}
.xaa{left:202.800000pt;}
.x84{left:204.400000pt;}
.x49{left:205.840000pt;}
.xa9{left:207.440000pt;}
.xab{left:209.035040pt;}
.x1c{left:211.360000pt;}
.x85{left:213.120000pt;}
.x60{left:214.960000pt;}
.x82{left:216.449280pt;}
.x69{left:221.440000pt;}
.x4e{left:223.440000pt;}
.x8e{left:225.988933pt;}
.xe3{left:229.040000pt;}
.x1b{left:232.160000pt;}
.x8a{left:234.320000pt;}
.x92{left:236.149333pt;}
.x14{left:241.680000pt;}
.x99{left:247.909200pt;}
.xb3{left:249.680000pt;}
.xc7{left:250.880000pt;}
.x98{left:252.867440pt;}
.xca{left:254.069760pt;}
.x9a{left:255.272080pt;}
.xb4{left:256.720000pt;}
.x59{left:259.040000pt;}
.x5e{left:260.880000pt;}
.x8c{left:262.666320pt;}
.x4{left:264.160000pt;}
.xe5{left:268.000000pt;}
.xe4{left:274.240000pt;}
.x8f{left:277.389067pt;}
.x68{left:282.320000pt;}
.xda{left:284.402880pt;}
.xe1{left:287.120000pt;}
.x55{left:288.800000pt;}
.xac{left:290.548080pt;}
.x75{left:291.875600pt;}
.x93{left:299.262373pt;}
.x51{left:303.680000pt;}
.x11{left:305.440000pt;}
.x9b{left:306.950560pt;}
.x95{left:308.400000pt;}
.xb6{left:310.880000pt;}
.x2a{left:312.240000pt;}
.xd9{left:313.440000pt;}
.xb5{left:315.200000pt;}
.x15{left:318.080000pt;}
.xcb{left:319.266560pt;}
.xc8{left:322.400000pt;}
.xd5{left:324.400000pt;}
.x81{left:326.922720pt;}
.x80{left:330.128880pt;}
.x83{left:331.329360pt;}
.x33{left:335.040000pt;}
.x31{left:337.920000pt;}
.x70{left:344.240000pt;}
.x39{left:346.800000pt;}
.x7b{left:355.029307pt;}
.x8d{left:356.864533pt;}
.x7c{left:358.235467pt;}
.x6a{left:364.240000pt;}
.x87{left:365.760000pt;}
.xb7{left:367.360000pt;}
.xc4{left:369.040000pt;}
.x79{left:370.400000pt;}
.x38{left:372.640000pt;}
.xb8{left:374.000000pt;}
.x13{left:375.040000pt;}
.x89{left:378.240000pt;}
.x9c{left:379.345120pt;}
.xcd{left:383.260960pt;}
.x19{left:384.160000pt;}
.x6b{left:385.280000pt;}
.x1a{left:389.520000pt;}
.xcc{left:391.584240pt;}
.x4a{left:392.640000pt;}
.x63{left:395.920000pt;}
.xe2{left:401.200000pt;}
.xc6{left:404.880000pt;}
.x20{left:409.040000pt;}
.x64{left:411.520000pt;}
.x3b{left:413.600000pt;}
.x5{left:414.800000pt;}
.x71{left:418.320000pt;}
.x10{left:425.200000pt;}
.xba{left:426.160000pt;}
.xb9{left:432.800000pt;}
.x77{left:436.700533pt;}
.x4f{left:438.880000pt;}
.x7a{left:442.254427pt;}
.x9d{left:444.302320pt;}
.xad{left:446.562400pt;}
.x7{left:448.558480pt;}
.x3a{left:450.880000pt;}
.xe{left:451.840000pt;}
.x7f{left:453.895440pt;}
.x74{left:454.915600pt;}
.x7e{left:457.101600pt;}
.x47{left:458.880000pt;}
.x86{left:463.760000pt;}
.xc{left:465.197360pt;}
.x4b{left:466.880000pt;}
.x2{left:470.892000pt;}
.x90{left:476.557067pt;}
.x3d{left:479.840000pt;}
.xbb{left:484.960000pt;}
.xd6{left:490.000000pt;}
.x72{left:492.480000pt;}
.xdc{left:497.360000pt;}
.xdb{left:500.880000pt;}
.xe6{left:504.160000pt;}
.x23{left:505.840000pt;}
.x6c{left:508.480000pt;}
.x8b{left:511.322640pt;}
.xce{left:512.372000pt;}
.xb{left:513.280000pt;}
.x44{left:516.960000pt;}
.x65{left:519.600000pt;}
.x9e{left:528.709440pt;}
.xf{left:533.520000pt;}
.x91{left:538.845067pt;}
.xbd{left:543.600000pt;}
.x3f{left:546.000000pt;}
.x9{left:549.117360pt;}
.xbc{left:550.720000pt;}
.xae{left:552.153760pt;}
.x22{left:553.440000pt;}
.x5d{left:555.600000pt;}
.x26{left:557.440000pt;}
.xa{left:562.000000pt;}
.x3e{left:564.560000pt;}
.x2e{left:573.440000pt;}
.xcf{left:577.488640pt;}
.x4c{left:580.560000pt;}
.x73{left:582.560000pt;}
.x9f{left:583.994880pt;}
.xd0{left:585.250800pt;}
.xa0{left:587.197520pt;}
.x6d{left:590.560000pt;}
.x1d{left:602.640000pt;}
.xbe{left:609.200000pt;}
.x56{left:613.840000pt;}
.x42{left:621.600000pt;}
.x6e{left:631.520000pt;}
.xa1{left:633.843280pt;}
.x7d{left:635.582667pt;}
.xa2{left:636.556480pt;}
.x66{left:642.160000pt;}
.xd1{left:643.166400pt;}
.x50{left:646.080000pt;}
.x5a{left:648.960000pt;}
.x41{left:654.080000pt;}
.x5b{left:655.600000pt;}
.x5c{left:656.960000pt;}
.xdd{left:659.440000pt;}
.xbf{left:660.880000pt;}
.x48{left:662.080000pt;}
.x24{left:664.960000pt;}
.xc0{left:668.320000pt;}
.xde{left:671.600000pt;}
.x27{left:672.960000pt;}
.x4d{left:674.080000pt;}
.x30{left:676.960000pt;}
.xaf{left:681.440400pt;}
.x2f{left:684.960000pt;}
.xa3{left:687.766800pt;}
.xa4{left:689.213840pt;}
.xa5{left:690.405520pt;}
.xa6{left:696.640560pt;}
.xc5{left:707.440000pt;}
.xd{left:737.040000pt;}
}




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