
    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_d82102b044c71dc1bec5c37e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_c788316518aa23db4df14fbe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910267;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_9ec2a8443d6e51012a8245e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925000;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_d019e64ab3078d1672c9f1d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.891000;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_1fd694339cacc3c2503e6d6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.058614;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_5961cfd68f5c0d1e5fc0fead.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.889000;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_7b7a0987a866a107f4952358.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930091;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_8cfad1253360c96b914dbf7a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_76a9a97b4051e1b5ca702ea6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.915000;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_47b379f0185f395bb6cd325a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_508026a22ccdb6b4675a996b.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_a16bf3b5f97c13a9041076da.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.707000;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.019440px;}
.ls4f{letter-spacing:-0.918000px;}
.ls36{letter-spacing:-0.868320px;}
.ls28{letter-spacing:-0.597600px;}
.ls10{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.486000px;}
.ls3c{letter-spacing:-0.482400px;}
.ls61{letter-spacing:-0.378000px;}
.ls84{letter-spacing:-0.358560px;}
.ls50{letter-spacing:-0.331200px;}
.ls55{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.298800px;}
.ls18{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.270000px;}
.ls53{letter-spacing:-0.264960px;}
.ls1d{letter-spacing:-0.239040px;}
.ls9{letter-spacing:-0.216000px;}
.ls35{letter-spacing:-0.192960px;}
.ls2{letter-spacing:-0.179280px;}
.ls4{letter-spacing:-0.167760px;}
.ls11{letter-spacing:-0.162000px;}
.ls3b{letter-spacing:-0.144720px;}
.ls15{letter-spacing:-0.144000px;}
.ls51{letter-spacing:-0.132480px;}
.ls3{letter-spacing:-0.119520px;}
.lsc{letter-spacing:-0.108000px;}
.ls52{letter-spacing:-0.066240px;}
.ls1a{letter-spacing:-0.059760px;}
.lsb{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls6f{letter-spacing:0.017928px;}
.ls66{letter-spacing:0.041832px;}
.ls40{letter-spacing:0.046080px;}
.ls79{letter-spacing:0.047808px;}
.ls56{letter-spacing:0.048240px;}
.ls80{letter-spacing:0.053784px;}
.lse{letter-spacing:0.054000px;}
.ls26{letter-spacing:0.059760px;}
.ls71{letter-spacing:0.065736px;}
.ls59{letter-spacing:0.071712px;}
.ls88{letter-spacing:0.072000px;}
.ls69{letter-spacing:0.077688px;}
.ls5c{letter-spacing:0.107568px;}
.lsf{letter-spacing:0.108000px;}
.ls67{letter-spacing:0.113544px;}
.ls17{letter-spacing:0.119520px;}
.ls68{letter-spacing:0.125496px;}
.ls6b{letter-spacing:0.131472px;}
.ls70{letter-spacing:0.137448px;}
.ls60{letter-spacing:0.143424px;}
.ls14{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.144720px;}
.ls1e{letter-spacing:0.149400px;}
.ls2c{letter-spacing:0.155520px;}
.ls7{letter-spacing:0.162000px;}
.ls23{letter-spacing:0.179280px;}
.ls74{letter-spacing:0.191232px;}
.ls4d{letter-spacing:0.192960px;}
.ls75{letter-spacing:0.197208px;}
.ls5d{letter-spacing:0.203184px;}
.ls48{letter-spacing:0.215136px;}
.ls5{letter-spacing:0.216000px;}
.ls57{letter-spacing:0.221112px;}
.ls58{letter-spacing:0.233064px;}
.ls1c{letter-spacing:0.239040px;}
.ls6c{letter-spacing:0.241200px;}
.ls54{letter-spacing:0.264960px;}
.ls3e{letter-spacing:0.268920px;}
.ls2e{letter-spacing:0.270000px;}
.ls89{letter-spacing:0.298800px;}
.ls62{letter-spacing:0.324000px;}
.ls25{letter-spacing:0.358560px;}
.ls63{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.378000px;}
.ls29{letter-spacing:0.388800px;}
.ls85{letter-spacing:0.404640px;}
.ls5a{letter-spacing:0.418320px;}
.ls1{letter-spacing:0.430560px;}
.ls78{letter-spacing:0.442224px;}
.ls3d{letter-spacing:0.478080px;}
.ls64{letter-spacing:0.490032px;}
.ls1b{letter-spacing:0.501984px;}
.ls37{letter-spacing:0.531864px;}
.ls7e{letter-spacing:0.561744px;}
.ls7c{letter-spacing:0.567720px;}
.ls4e{letter-spacing:0.597600px;}
.ls76{letter-spacing:0.603576px;}
.ls7d{letter-spacing:0.615528px;}
.ls5e{letter-spacing:0.645408px;}
.ls3f{letter-spacing:0.648000px;}
.ls7a{letter-spacing:0.657360px;}
.ls3a{letter-spacing:0.675360px;}
.ls5f{letter-spacing:0.747000px;}
.ls22{letter-spacing:0.776880px;}
.ls4a{letter-spacing:0.824688px;}
.ls83{letter-spacing:0.830664px;}
.ls27{letter-spacing:0.836640px;}
.ls65{letter-spacing:0.842616px;}
.ls7b{letter-spacing:0.896400px;}
.ls34{letter-spacing:0.916560px;}
.ls2d{letter-spacing:0.956160px;}
.ls6d{letter-spacing:1.278864px;}
.ls38{letter-spacing:1.494000px;}
.ls6{letter-spacing:2.160000px;}
.ls19{letter-spacing:2.211120px;}
.ls86{letter-spacing:2.569680px;}
.ls32{letter-spacing:2.797920px;}
.ls2f{letter-spacing:2.928240px;}
.ls4c{letter-spacing:3.521520px;}
.ls5b{letter-spacing:3.645360px;}
.ls39{letter-spacing:5.079600px;}
.ls6a{letter-spacing:5.796720px;}
.ls7f{letter-spacing:5.868432px;}
.ls1f{letter-spacing:5.922216px;}
.ls24{letter-spacing:6.513840px;}
.ls21{letter-spacing:7.230960px;}
.ls72{letter-spacing:7.948080px;}
.ls6e{letter-spacing:10.159200px;}
.ls20{letter-spacing:10.876320px;}
.ls2b{letter-spacing:11.593440px;}
.ls73{letter-spacing:13.720896px;}
.ls30{letter-spacing:15.896160px;}
.ls77{letter-spacing:16.613280px;}
.ls87{letter-spacing:17.688960px;}
.ls12{letter-spacing:31.829760px;}
.ls13{letter-spacing:44.789760px;}
.ls31{letter-spacing:62.064000px;}
.ls2a{letter-spacing:66.251520px;}
.ls82{letter-spacing:121.014000px;}
.ls81{letter-spacing:157.766400px;}
.ls49{letter-spacing:283.740480px;}
.ls47{letter-spacing:294.557040px;}
.ls45{letter-spacing:373.739040px;}
.ls46{letter-spacing:380.910240px;}
.ls44{letter-spacing:382.404240px;}
.ls41{letter-spacing:385.989840px;}
.ls42{letter-spacing:452.203920px;}
.ls43{letter-spacing:665.308080px;}
.ls4b{letter-spacing:677.558880px;}
.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;}
}
.ws5a{word-spacing:-19.206720px;}
.ws1d{word-spacing:-17.784000px;}
.ws1f{word-spacing:-17.640000px;}
.ws20{word-spacing:-17.496000px;}
.ws1e{word-spacing:-17.424000px;}
.ws109{word-spacing:-17.330400px;}
.ws108{word-spacing:-16.732800px;}
.wsaf{word-spacing:-16.493760px;}
.ws106{word-spacing:-16.434000px;}
.ws10a{word-spacing:-16.374240px;}
.wsae{word-spacing:-16.162560px;}
.ws103{word-spacing:-16.135200px;}
.ws2{word-spacing:-16.015680px;}
.ws1{word-spacing:-15.955920px;}
.wsad{word-spacing:-15.897600px;}
.ws107{word-spacing:-15.776640px;}
.ws104{word-spacing:-14.940000px;}
.ws39{word-spacing:-14.880240px;}
.ws38{word-spacing:-14.820480px;}
.ws6{word-spacing:-14.796000px;}
.wsc3{word-spacing:-14.700960px;}
.wsd2{word-spacing:-14.581440px;}
.ws5b{word-spacing:-14.461920px;}
.ws8{word-spacing:-14.418000px;}
.wsd5{word-spacing:-14.402160px;}
.ws3a{word-spacing:-14.342400px;}
.wsd3{word-spacing:-14.282640px;}
.ws22{word-spacing:-14.222880px;}
.ws8b{word-spacing:-14.163120px;}
.ws9d{word-spacing:-14.103360px;}
.ws21{word-spacing:-14.043600px;}
.ws8a{word-spacing:-13.924080px;}
.ws89{word-spacing:-13.744800px;}
.ws74{word-spacing:-13.608000px;}
.wsb1{word-spacing:-13.338000px;}
.wsd4{word-spacing:-13.230000px;}
.wsc2{word-spacing:-13.014000px;}
.wsb0{word-spacing:-12.960000px;}
.ws7{word-spacing:-12.852000px;}
.wscb{word-spacing:-12.744000px;}
.wscc{word-spacing:-12.636000px;}
.ws75{word-spacing:-9.331200px;}
.ws76{word-spacing:-8.164800px;}
.wsdf{word-spacing:-1.688400px;}
.wsbe{word-spacing:-0.964800px;}
.ws6d{word-spacing:-0.956160px;}
.wsce{word-spacing:-0.918000px;}
.ws46{word-spacing:-0.836640px;}
.ws8c{word-spacing:-0.776880px;}
.wsb5{word-spacing:-0.597600px;}
.wsa3{word-spacing:-0.478080px;}
.wsc4{word-spacing:-0.466560px;}
.ws7d{word-spacing:-0.432000px;}
.wsc1{word-spacing:-0.418320px;}
.ws9{word-spacing:-0.378000px;}
.ws102{word-spacing:-0.360000px;}
.ws110{word-spacing:-0.358560px;}
.wscd{word-spacing:-0.324000px;}
.ws77{word-spacing:-0.311040px;}
.ws83{word-spacing:-0.298800px;}
.wsb8{word-spacing:-0.264960px;}
.wsda{word-spacing:-0.241200px;}
.wsc6{word-spacing:-0.239040px;}
.ws10{word-spacing:-0.216000px;}
.wsbd{word-spacing:-0.192960px;}
.ws36{word-spacing:-0.179280px;}
.ws1b{word-spacing:-0.162000px;}
.ws3{word-spacing:-0.119520px;}
.wsbf{word-spacing:-0.096480px;}
.ws28{word-spacing:-0.059760px;}
.wscf{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.wsba{word-spacing:0.054000px;}
.ws73{word-spacing:0.059760px;}
.ws4{word-spacing:0.095760px;}
.ws33{word-spacing:0.119520px;}
.ws23{word-spacing:0.144000px;}
.ws88{word-spacing:0.144720px;}
.ws5{word-spacing:0.167760px;}
.ws26{word-spacing:0.179280px;}
.ws85{word-spacing:0.192960px;}
.wsb{word-spacing:0.216000px;}
.ws29{word-spacing:0.239040px;}
.wsd{word-spacing:0.270000px;}
.ws27{word-spacing:0.298800px;}
.wsbb{word-spacing:0.324000px;}
.wsb7{word-spacing:0.331200px;}
.ws35{word-spacing:0.358560px;}
.ws25{word-spacing:0.360000px;}
.wsc8{word-spacing:0.432000px;}
.wse0{word-spacing:0.434160px;}
.ws7c{word-spacing:0.486000px;}
.ws2a{word-spacing:0.504000px;}
.ws87{word-spacing:0.530640px;}
.ws1c{word-spacing:0.540000px;}
.ws24{word-spacing:0.576000px;}
.wsb9{word-spacing:0.596160px;}
.ws59{word-spacing:0.597600px;}
.ws2b{word-spacing:0.648000px;}
.ws4d{word-spacing:0.657360px;}
.ws4c{word-spacing:0.717120px;}
.ws105{word-spacing:0.776880px;}
.ws98{word-spacing:0.820080px;}
.wsab{word-spacing:0.836640px;}
.ws86{word-spacing:0.868320px;}
.ws55{word-spacing:0.896400px;}
.wsb6{word-spacing:0.918000px;}
.wsac{word-spacing:0.956160px;}
.ws37{word-spacing:1.015920px;}
.ws34{word-spacing:1.075680px;}
.wsd9{word-spacing:1.157760px;}
.wsf{word-spacing:1.242000px;}
.ws94{word-spacing:1.254960px;}
.ws49{word-spacing:1.374480px;}
.ws13{word-spacing:1.404000px;}
.ws40{word-spacing:1.434240px;}
.wse{word-spacing:1.512000px;}
.ws99{word-spacing:1.543680px;}
.ws52{word-spacing:1.553760px;}
.ws9c{word-spacing:1.591920px;}
.ws2f{word-spacing:1.613520px;}
.ws8f{word-spacing:1.673280px;}
.ws14{word-spacing:1.728000px;}
.ws68{word-spacing:1.733040px;}
.wsa{word-spacing:1.782000px;}
.ws30{word-spacing:1.792800px;}
.ws84{word-spacing:1.881360px;}
.wsdd{word-spacing:1.929600px;}
.ws8e{word-spacing:1.972080px;}
.ws10f{word-spacing:2.031840px;}
.ws31{word-spacing:2.091600px;}
.ws90{word-spacing:2.151360px;}
.wsde{word-spacing:2.219040px;}
.ws63{word-spacing:2.270880px;}
.ws32{word-spacing:2.330640px;}
.ws69{word-spacing:2.390400px;}
.wsc0{word-spacing:2.450160px;}
.ws2e{word-spacing:2.509920px;}
.wsbc{word-spacing:2.604960px;}
.ws11{word-spacing:2.646000px;}
.wsa0{word-spacing:2.689200px;}
.ws111{word-spacing:2.748960px;}
.ws72{word-spacing:2.808720px;}
.wsca{word-spacing:2.868480px;}
.ws7e{word-spacing:2.988000px;}
.ws4b{word-spacing:3.047760px;}
.ws9f{word-spacing:3.167280px;}
.ws6e{word-spacing:3.227040px;}
.ws12{word-spacing:3.348000px;}
.ws51{word-spacing:3.406320px;}
.ws6c{word-spacing:3.525840px;}
.wsa8{word-spacing:3.705120px;}
.ws50{word-spacing:3.764880px;}
.wsb2{word-spacing:3.824640px;}
.ws91{word-spacing:3.884400px;}
.ws16{word-spacing:3.942000px;}
.ws6b{word-spacing:3.944160px;}
.ws10b{word-spacing:4.183200px;}
.ws58{word-spacing:4.242960px;}
.wsc9{word-spacing:4.302720px;}
.ws10c{word-spacing:4.362480px;}
.ws79{word-spacing:4.422240px;}
.ws9a{word-spacing:4.438080px;}
.ws64{word-spacing:4.482000px;}
.wsb4{word-spacing:4.601520px;}
.ws18{word-spacing:4.644000px;}
.ws48{word-spacing:4.661280px;}
.ws9b{word-spacing:4.727520px;}
.ws8d{word-spacing:4.960080px;}
.ws3d{word-spacing:5.139360px;}
.ws4f{word-spacing:5.199120px;}
.wsc{word-spacing:5.238000px;}
.wsef{word-spacing:5.258880px;}
.wse1{word-spacing:5.318640px;}
.ws19{word-spacing:5.346000px;}
.ws3c{word-spacing:5.378400px;}
.ws4e{word-spacing:5.677200px;}
.ws3f{word-spacing:5.856480px;}
.ws3e{word-spacing:5.916240px;}
.ws82{word-spacing:6.035760px;}
.ws41{word-spacing:6.095520px;}
.ws15{word-spacing:6.102000px;}
.ws7a{word-spacing:6.394320px;}
.ws53{word-spacing:6.573600px;}
.ws54{word-spacing:6.633360px;}
.wse4{word-spacing:6.752880px;}
.ws7b{word-spacing:6.812640px;}
.wsdc{word-spacing:6.898320px;}
.ws62{word-spacing:7.051680px;}
.wsdb{word-spacing:7.091280px;}
.ws44{word-spacing:7.171200px;}
.wsc7{word-spacing:7.230960px;}
.wsd0{word-spacing:7.350480px;}
.ws6f{word-spacing:7.410240px;}
.ws70{word-spacing:7.529760px;}
.ws47{word-spacing:7.589520px;}
.ws60{word-spacing:7.888320px;}
.ws45{word-spacing:8.067600px;}
.ws5f{word-spacing:8.127360px;}
.ws80{word-spacing:8.187120px;}
.ws93{word-spacing:8.246880px;}
.ws1a{word-spacing:8.262000px;}
.ws92{word-spacing:8.306640px;}
.ws6a{word-spacing:8.605440px;}
.wsa5{word-spacing:8.784720px;}
.wsa4{word-spacing:8.844480px;}
.wsb3{word-spacing:9.023760px;}
.ws78{word-spacing:9.322560px;}
.ws65{word-spacing:9.501840px;}
.wsa2{word-spacing:9.561600px;}
.wsa1{word-spacing:9.740880px;}
.ws61{word-spacing:10.039680px;}
.ws81{word-spacing:10.218960px;}
.ws96{word-spacing:10.278720px;}
.wsd1{word-spacing:10.338480px;}
.ws95{word-spacing:10.458000px;}
.ws42{word-spacing:10.637280px;}
.ws57{word-spacing:10.756800px;}
.ws56{word-spacing:10.995840px;}
.wsd8{word-spacing:11.115360px;}
.ws43{word-spacing:11.175120px;}
.wsd7{word-spacing:11.473920px;}
.wsf0{word-spacing:11.653200px;}
.ws4a{word-spacing:11.712960px;}
.wse2{word-spacing:11.832480px;}
.ws5c{word-spacing:11.892240px;}
.ws114{word-spacing:12.131280px;}
.ws2c{word-spacing:12.191040px;}
.wsa9{word-spacing:12.370320px;}
.ws2d{word-spacing:12.430080px;}
.ws9e{word-spacing:12.609360px;}
.ws5e{word-spacing:13.087440px;}
.ws5d{word-spacing:13.326480px;}
.ws3b{word-spacing:13.744800px;}
.ws71{word-spacing:13.864320px;}
.ws101{word-spacing:14.581440px;}
.wsd6{word-spacing:15.059520px;}
.ws17{word-spacing:15.444000px;}
.ws7f{word-spacing:15.776640px;}
.wsf1{word-spacing:15.955920px;}
.wsa7{word-spacing:16.015680px;}
.wsa6{word-spacing:16.194960px;}
.wsaa{word-spacing:16.493760px;}
.wse9{word-spacing:16.732800px;}
.wsea{word-spacing:16.852320px;}
.ws113{word-spacing:17.091360px;}
.ws112{word-spacing:17.210880px;}
.ws97{word-spacing:17.449920px;}
.ws66{word-spacing:17.928000px;}
.wsc5{word-spacing:18.884160px;}
.ws67{word-spacing:19.063440px;}
.wse3{word-spacing:19.362240px;}
.wsee{word-spacing:19.601280px;}
.wse6{word-spacing:21.931920px;}
.wsfa{word-spacing:22.708800px;}
.ws100{word-spacing:24.322320px;}
.ws10e{word-spacing:24.621120px;}
.wsff{word-spacing:24.680880px;}
.ws10d{word-spacing:25.099200px;}
.wsfd{word-spacing:27.489600px;}
.wsfc{word-spacing:27.549360px;}
.wseb{word-spacing:32.509440px;}
.wsec{word-spacing:33.286320px;}
.wsf9{word-spacing:33.943680px;}
.wsf8{word-spacing:34.003440px;}
.wsed{word-spacing:34.481520px;}
.wsfb{word-spacing:44.102880px;}
.wse5{word-spacing:45.537120px;}
.wsf7{word-spacing:84.440880px;}
.wsf5{word-spacing:106.014240px;}
.wsf6{word-spacing:121.611600px;}
.wsfe{word-spacing:144.678960px;}
.wsf2{word-spacing:197.447040px;}
.wsf3{word-spacing:197.506800px;}
.wse7{word-spacing:208.920960px;}
.wse8{word-spacing:208.980720px;}
.wsf4{word-spacing:219.080160px;}
._9{margin-left:-17.286768px;}
._5{margin-left:-16.049232px;}
._3{margin-left:-14.760000px;}
._a{margin-left:-13.673232px;}
._8{margin-left:-12.310200px;}
._6{margin-left:-9.569232px;}
._4{margin-left:-7.560000px;}
._7{margin-left:-5.805648px;}
._2{margin-left:-2.305800px;}
._1{margin-left:-1.009800px;}
._0{width:1.364616px;}
._d{width:2.988000px;}
._11{width:4.296600px;}
._c{width:7.020936px;}
._12{width:11.297664px;}
._10{width:19.726488px;}
._13{width:24.510888px;}
._e{width:50.696208px;}
._14{width:130.037760px;}
._f{width:776.481408px;}
._15{width:849.667680px;}
._b{width:1596.309120px;}
.fc9{color:rgb(100,101,103);}
.fc7{color:rgb(31,73,125);}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(94,102,171);}
.fc8{color:rgb(255,255,255);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:30.240000px;}
.fsd{font-size:38.880000px;}
.fsf{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:167.760000px;}
.y88{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y24{bottom:2.880000px;}
.y26{bottom:6.480000px;}
.y84{bottom:6.840000px;}
.y2fe{bottom:8.100000px;}
.y87{bottom:8.460000px;}
.y79{bottom:11.340000px;}
.y2c{bottom:12.060000px;}
.y28{bottom:13.320000px;}
.y209{bottom:16.920000px;}
.y207{bottom:17.100000px;}
.y80{bottom:20.340000px;}
.y219{bottom:21.600000px;}
.y205{bottom:21.780000px;}
.y83{bottom:22.320000px;}
.y77{bottom:25.380000px;}
.y25{bottom:27.900000px;}
.y211{bottom:33.660000px;}
.y20d{bottom:33.840000px;}
.y20f{bottom:34.020000px;}
.y7e{bottom:35.460000px;}
.y76{bottom:40.500000px;}
.y198{bottom:41.580000px;}
.y32{bottom:45.180000px;}
.y7c{bottom:50.400000px;}
.y1ff{bottom:50.580000px;}
.y75{bottom:55.440000px;}
.y36{bottom:57.239460px;}
.y22{bottom:57.240000px;}
.ya9{bottom:57.418740px;}
.y7b{bottom:65.340000px;}
.y5{bottom:66.525004px;}
.y1b2{bottom:66.600000px;}
.y74{bottom:70.380000px;}
.y35{bottom:75.062880px;}
.y1b0{bottom:83.880000px;}
.y2fb{bottom:84.240000px;}
.y73{bottom:85.500000px;}
.y2fd{bottom:87.660000px;}
.y31{bottom:94.860000px;}
.y1b6{bottom:96.300000px;}
.y4{bottom:97.125005px;}
.y72{bottom:100.440000px;}
.y1ae{bottom:101.340000px;}
.y2fa{bottom:103.680000px;}
.y2e{bottom:103.860000px;}
.y1c0{bottom:109.621260px;}
.y12d{bottom:109.623420px;}
.y165{bottom:109.624680px;}
.y195{bottom:110.679120px;}
.y24c{bottom:114.120000px;}
.y71{bottom:115.380000px;}
.y1ac{bottom:118.620000px;}
.y86{bottom:119.160000px;}
.y2fc{bottom:121.680000px;}
.y12c{bottom:123.842160px;}
.y164{bottom:123.843420px;}
.y24b{bottom:123.845580px;}
.y29f{bottom:124.250580px;}
.y194{bottom:127.964700px;}
.y1bf{bottom:128.340000px;}
.y2f9{bottom:128.875860px;}
.y6f{bottom:130.500000px;}
.y230{bottom:132.975540px;}
.y1fb{bottom:134.920440px;}
.y1aa{bottom:136.080000px;}
.y2a{bottom:136.800000px;}
.y163{bottom:137.881260px;}
.y24a{bottom:137.883420px;}
.y21{bottom:139.264499px;}
.y300{bottom:140.220000px;}
.y29e{bottom:141.536160px;}
.y12b{bottom:142.380000px;}
.y30{bottom:144.540000px;}
.y193{bottom:145.429560px;}
.y6e{bottom:145.440000px;}
.y2f8{bottom:146.520000px;}
.y1be{bottom:147.780000px;}
.y22f{bottom:150.440400px;}
.y249{bottom:152.102160px;}
.y162{bottom:156.600000px;}
.y1fa{bottom:161.199900px;}
.y12a{bottom:162.000000px;}
.y192{bottom:162.715140px;}
.y2f7{bottom:164.345580px;}
.y22e{bottom:167.725980px;}
.y29d{bottom:167.994900px;}
.y248{bottom:170.640000px;}
.y1bd{bottom:174.600000px;}
.y161{bottom:176.220000px;}
.y191{bottom:180.180000px;}
.y22d{bottom:185.190840px;}
.y29c{bottom:185.280480px;}
.y1f9{bottom:187.658640px;}
.y129{bottom:188.640000px;}
.y247{bottom:190.260000px;}
.y2f6{bottom:191.880000px;}
.y18{bottom:196.933500px;}
.y29b{bottom:202.745340px;}
.y160{bottom:202.860000px;}
.y190{bottom:208.260000px;}
.y1bc{bottom:208.975140px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y22c{bottom:211.291020px;}
.y128{bottom:211.828680px;}
.y1f8{bottom:213.938100px;}
.y246{bottom:216.900000px;}
.y2f5{bottom:218.881440px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y2de{bottom:223.383420px;}
.y1bb{bottom:226.440000px;}
.y29a{bottom:229.024800px;}
.y127{bottom:229.293540px;}
.y22b{bottom:229.652280px;}
.y15f{bottom:232.893540px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y2f4{bottom:236.525580px;}
.y1f7{bottom:240.396840px;}
.ye9{bottom:242.321760px;}
.y2c9{bottom:243.421740px;}
.y299{bottom:246.489660px;}
.y126{bottom:246.579120px;}
.y18f{bottom:247.096980px;}
.y22a{bottom:248.013540px;}
.y1b5{bottom:248.580000px;}
.y15e{bottom:250.179120px;}
.y2dd{bottom:250.380000px;}
.ya8{bottom:255.790080px;}
.y1f6{bottom:257.682420px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y2c8{bottom:260.886600px;}
.y125{bottom:264.043980px;}
.y2f3{bottom:264.060000px;}
.y18e{bottom:264.382560px;}
.y229{bottom:265.478400px;}
.y1ba{bottom:265.500000px;}
.y15d{bottom:267.643980px;}
.ye8{bottom:268.601220px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y298{bottom:272.769120px;}
.y1f5{bottom:275.864400px;}
.y2c7{bottom:278.172180px;}
.y124{bottom:281.329560px;}
.y2dc{bottom:281.520000px;}
.y18d{bottom:281.847420px;}
.ya7{bottom:282.069540px;}
.y228{bottom:282.763980px;}
.y15c{bottom:284.929560px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ye7{bottom:286.066080px;}
.y297{bottom:290.233980px;}
.y2f2{bottom:291.240000px;}
.y1b9{bottom:294.304500px;}
.y1f4{bottom:294.404940px;}
.y2db{bottom:298.260000px;}
.y245{bottom:298.404900px;}
.y123{bottom:298.794420px;}
.y18c{bottom:299.133000px;}
.y227{bottom:300.228840px;}
.y15b{bottom:302.394420px;}
.ye6{bottom:303.351660px;}
.y2c6{bottom:304.630920px;}
.ya6{bottom:308.528280px;}
.y2f1{bottom:308.880000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1b8{bottom:311.044500px;}
.y1f3{bottom:311.690520px;}
.y122{bottom:316.075140px;}
.y296{bottom:316.513440px;}
.y18b{bottom:316.597860px;}
.y226{bottom:317.514420px;}
.y2da{bottom:319.320000px;}
.y15a{bottom:319.680000px;}
.y2c5{bottom:321.916500px;}
.y1de{bottom:322.712280px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y244{bottom:324.684360px;}
.y2f0{bottom:326.525580px;}
.y1b7{bottom:327.960000px;}
.y1f2{bottom:329.155380px;}
.ye5{bottom:329.810400px;}
.y121{bottom:333.540000px;}
.y295{bottom:333.978300px;}
.y225{bottom:334.800000px;}
.ya5{bottom:334.807740px;}
.y243{bottom:342.149220px;}
.y18a{bottom:342.877320px;}
.y115{bottom:343.965240px;}
.y1f1{bottom:346.440960px;}
.ye4{bottom:347.095980px;}
.y159{bottom:347.940000px;}
.yf{bottom:348.133500px;}
.y2c4{bottom:348.375240px;}
.y1dd{bottom:348.991740px;}
.y6c{bottom:349.549740px;}
.y2ef{bottom:354.060000px;}
.y1a9{bottom:357.660000px;}
.y242{bottom:359.434800px;}
.y294{bottom:360.257760px;}
.y189{bottom:360.342180px;}
.ya4{bottom:361.266480px;}
.y114{bottom:361.430100px;}
.y120{bottom:361.620000px;}
.y6b{bottom:364.492080px;}
.ye3{bottom:364.560840px;}
.y1f0{bottom:364.622940px;}
.y2c3{bottom:365.660820px;}
.y1dc{bottom:367.353000px;}
.y1a8{bottom:370.793160px;}
.y241{bottom:376.899660px;}
.y188{bottom:377.627760px;}
.y293{bottom:377.722620px;}
.y113{bottom:378.715680px;}
.y6a{bottom:379.615320px;}
.y2ee{bottom:381.241440px;}
.ye2{bottom:381.846420px;}
.y1ef{bottom:383.163480px;}
.y223{bottom:383.400000px;}
.y1db{bottom:385.714260px;}
.y158{bottom:386.753040px;}
.ye{bottom:386.785499px;}
.ya3{bottom:387.545940px;}
.y2c2{bottom:392.119560px;}
.y240{bottom:394.185240px;}
.y69{bottom:394.557660px;}
.y292{bottom:395.008200px;}
.y187{bottom:395.092620px;}
.y112{bottom:396.180540px;}
.y1a7{bottom:397.251900px;}
.y2ed{bottom:398.885580px;}
.ye1{bottom:399.311280px;}
.y1ee{bottom:400.449060px;}
.y224{bottom:400.500000px;}
.y11f{bottom:400.648680px;}
.y1da{bottom:403.179120px;}
.y157{bottom:404.217900px;}
.y1b3{bottom:406.800000px;}
.yd{bottom:408.044999px;}
.y2c1{bottom:409.405140px;}
.y68{bottom:409.500000px;}
.y186{bottom:412.378200px;}
.ya2{bottom:414.004680px;}
.y1a6{bottom:414.537480px;}
.ye0{bottom:416.596860px;}
.y1ed{bottom:417.913920px;}
.y11e{bottom:417.934260px;}
.y1d9{bottom:420.464700px;}
.y23f{bottom:420.643980px;}
.y291{bottom:421.466940px;}
.y156{bottom:421.503480px;}
.y111{bottom:422.460000px;}
.y1b1{bottom:424.260000px;}
.y67{bottom:424.588500px;}
.y2ec{bottom:426.420000px;}
.y221{bottom:429.840000px;}
.y185{bottom:429.843060px;}
.y2b{bottom:431.820000px;}
.y11d{bottom:435.399120px;}
.y2c0{bottom:435.863880px;}
.y1d8{bottom:437.929560px;}
.y290{bottom:438.752520px;}
.y155{bottom:438.968340px;}
.y66{bottom:439.533000px;}
.y110{bottom:439.924860px;}
.ya1{bottom:440.284140px;}
.y1a5{bottom:440.996220px;}
.y1af{bottom:441.540000px;}
.ydf{bottom:443.055600px;}
.y1ec{bottom:444.193380px;}
.y222{bottom:446.940000px;}
.y184{bottom:447.128640px;}
.y11c{bottom:452.684700px;}
.y2bf{bottom:453.149460px;}
.y65{bottom:454.477500px;}
.y1d7{bottom:455.215140px;}
.y23e{bottom:455.394420px;}
.y2eb{bottom:455.400000px;}
.y28f{bottom:456.217380px;}
.y154{bottom:456.253920px;}
.y10f{bottom:457.210440px;}
.y1ad{bottom:459.000000px;}
.yde{bottom:461.058300px;}
.y1eb{bottom:461.658240px;}
.y183{bottom:464.593500px;}
.y23{bottom:466.200000px;}
.ya0{bottom:466.742880px;}
.y1a4{bottom:467.275680px;}
.y64{bottom:469.597500px;}
.y11b{bottom:470.149560px;}
.y23d{bottom:472.666320px;}
.y1d6{bottom:472.680000px;}
.y153{bottom:473.718780px;}
.y10e{bottom:474.675300px;}
.y1ab{bottom:476.280000px;}
.y21f{bottom:476.460000px;}
.y271{bottom:478.112220px;}
.y1ea{bottom:478.943820px;}
.y2be{bottom:479.608200px;}
.y182{bottom:481.879080px;}
.y28e{bottom:482.496840px;}
.y29{bottom:482.760000px;}
.y63{bottom:484.542000px;}
.y1b4{bottom:484.740540px;}
.y2ea{bottom:485.100000px;}
.y11a{bottom:487.435140px;}
.ydd{bottom:488.234160px;}
.y23c{bottom:490.131180px;}
.y152{bottom:491.004360px;}
.y10d{bottom:491.960880px;}
.y9f{bottom:493.022340px;}
.y220{bottom:493.380000px;}
.y1a3{bottom:493.734420px;}
.y270{bottom:495.397800px;}
.y1e9{bottom:496.408680px;}
.y2bd{bottom:496.893780px;}
.y181{bottom:499.343940px;}
.y62{bottom:499.486500px;}
.y28d{bottom:499.961700px;}
.y1d5{bottom:502.740000px;}
.yc{bottom:502.864502px;}
.y119{bottom:504.900000px;}
.ydc{bottom:505.699020px;}
.y23b{bottom:507.416760px;}
.y151{bottom:508.469220px;}
.y2e9{bottom:509.408100px;}
.y10c{bottom:509.425740px;}
.y1a2{bottom:511.020000px;}
.y26f{bottom:512.683380px;}
.y1e8{bottom:513.694260px;}
.y61{bottom:514.606500px;}
.y180{bottom:516.629520px;}
.y1d4{bottom:519.480000px;}
.y9e{bottom:519.481080px;}
.yb{bottom:520.864502px;}
.y21d{bottom:522.900000px;}
.ydb{bottom:522.984600px;}
.y2bc{bottom:523.352520px;}
.y23a{bottom:525.598740px;}
.y150{bottom:525.754800px;}
.y28c{bottom:526.241160px;}
.y10b{bottom:526.711320px;}
.y60{bottom:529.551000px;}
.y1e7{bottom:531.159120px;}
.y26e{bottom:531.223920px;}
.y17f{bottom:534.094380px;}
.y118{bottom:534.960000px;}
.y2e8{bottom:536.046120px;}
.ya{bottom:538.864499px;}
.y21e{bottom:539.820000px;}
.y1d3{bottom:540.360000px;}
.yda{bottom:540.449460px;}
.y2bb{bottom:540.638100px;}
.y14f{bottom:543.219660px;}
.y28b{bottom:543.706020px;}
.y239{bottom:543.960000px;}
.y10a{bottom:544.176180px;}
.y5f{bottom:544.495500px;}
.y9d{bottom:545.760540px;}
.y1a1{bottom:547.200000px;}
.y1e6{bottom:548.444700px;}
.y26d{bottom:548.509500px;}
.y117{bottom:555.840000px;}
.y9{bottom:556.864499px;}
.yd9{bottom:557.735040px;}
.y2ba{bottom:558.102960px;}
.y5e{bottom:559.611000px;}
.y17e{bottom:560.373840px;}
.y14e{bottom:560.505240px;}
.y109{bottom:561.461760px;}
.y2e7{bottom:562.684140px;}
.y1e5{bottom:565.909560px;}
.y26c{bottom:566.870760px;}
.y21c{bottom:569.340000px;}
.y28a{bottom:569.985480px;}
.y9c{bottom:572.040000px;}
.y5d{bottom:574.555500px;}
.y238{bottom:575.100000px;}
.y2b9{bottom:575.388540px;}
.y17d{bottom:577.838700px;}
.y14d{bottom:577.970100px;}
.y108{bottom:578.926620px;}
.y1e4{bottom:583.195140px;}
.y1a0{bottom:583.380000px;}
.y26b{bottom:584.156340px;}
.yd8{bottom:584.193780px;}
.y289{bottom:587.450340px;}
.y2d{bottom:587.880000px;}
.y2e6{bottom:589.322160px;}
.y5c{bottom:589.500000px;}
.y17c{bottom:595.124280px;}
.y14c{bottom:595.255680px;}
.y237{bottom:595.980000px;}
.y107{bottom:596.212200px;}
.y21b{bottom:599.040000px;}
.y9b{bottom:600.300000px;}
.y1e3{bottom:600.660000px;}
.yd7{bottom:601.479360px;}
.y26a{bottom:601.621200px;}
.y2b8{bottom:601.847280px;}
.y5b{bottom:604.611000px;}
.y2e5{bottom:607.145580px;}
.y17b{bottom:612.589140px;}
.y106{bottom:613.677060px;}
.y288{bottom:613.729800px;}
.y269{bottom:618.906780px;}
.y2b7{bottom:619.132860px;}
.y19f{bottom:619.380000px;}
.y5a{bottom:619.555500px;}
.y14b{bottom:621.714420px;}
.y1e2{bottom:628.560000px;}
.yd6{bottom:628.655220px;}
.y17a{bottom:629.874720px;}
.y287{bottom:631.194660px;}
.y9a{bottom:632.160000px;}
.y59{bottom:634.500000px;}
.y2e4{bottom:634.680000px;}
.y268{bottom:636.371640px;}
.y14a{bottom:638.868600px;}
.y105{bottom:639.956520px;}
.y8{bottom:645.510000px;}
.y2b6{bottom:645.591600px;}
.y179{bottom:647.339580px;}
.y58{bottom:649.607400px;}
.y267{bottom:653.657220px;}
.y19e{bottom:655.560000px;}
.yd5{bottom:655.831080px;}
.y149{bottom:656.333460px;}
.y104{bottom:657.421380px;}
.y286{bottom:657.474120px;}
.y21a{bottom:658.260000px;}
.y2e3{bottom:661.681440px;}
.y2b5{bottom:662.877180px;}
.y99{bottom:663.840000px;}
.y57{bottom:664.549740px;}
.y178{bottom:664.625160px;}
.y7{bottom:666.771000px;}
.y1e1{bottom:668.520000px;}
.y266{bottom:671.122080px;}
.yd4{bottom:673.295940px;}
.y148{bottom:673.619040px;}
.y103{bottom:674.706960px;}
.y285{bottom:674.938980px;}
.y2e2{bottom:679.325580px;}
.y56{bottom:679.492080px;}
.y177{bottom:682.090020px;}
.y218{bottom:687.960000px;}
.y1e0{bottom:689.220000px;}
.y2b4{bottom:689.335920px;}
.yd3{bottom:690.581520px;}
.y147{bottom:691.083900px;}
.y19d{bottom:691.740000px;}
.y102{bottom:692.171820px;}
.y284{bottom:692.224560px;}
.y55{bottom:694.615320px;}
.y98{bottom:695.700000px;}
.y265{bottom:697.401540px;}
.y176{bottom:699.375600px;}
.y217{bottom:700.380000px;}
.y2b3{bottom:706.621500px;}
.y2e1{bottom:706.860000px;}
.yd2{bottom:708.046380px;}
.y146{bottom:708.369480px;}
.y101{bottom:709.457400px;}
.y54{bottom:709.557660px;}
.y264{bottom:714.866400px;}
.y283{bottom:718.683300px;}
.y215{bottom:722.340000px;}
.y2b2{bottom:724.086360px;}
.y53{bottom:724.500000px;}
.yd1{bottom:725.331960px;}
.y2d9{bottom:725.760000px;}
.y145{bottom:725.834340px;}
.y6{bottom:726.298500px;}
.y100{bottom:726.922260px;}
.y97{bottom:727.380000px;}
.y19c{bottom:727.740000px;}
.y263{bottom:732.151980px;}
.y2f{bottom:732.240000px;}
.y282{bottom:735.968880px;}
.y2e0{bottom:736.020000px;}
.y216{bottom:739.260000px;}
.y52{bottom:739.593000px;}
.y175{bottom:743.119920px;}
.yff{bottom:744.207840px;}
.y262{bottom:749.437560px;}
.y2b1{bottom:750.365820px;}
.y2d8{bottom:751.500000px;}
.yd0{bottom:751.790700px;}
.y144{bottom:752.113800px;}
.y3{bottom:752.599495px;}
.y51{bottom:754.537500px;}
.y96{bottom:759.060000px;}
.y174{bottom:760.584780px;}
.yfe{bottom:761.672700px;}
.y281{bottom:762.427620px;}
.y19b{bottom:763.920000px;}
.y261{bottom:767.798820px;}
.y2b0{bottom:767.830680px;}
.y213{bottom:768.780000px;}
.ycf{bottom:769.076280px;}
.y50{bottom:769.482000px;}
.y143{bottom:769.578660px;}
.y33{bottom:777.420000px;}
.y173{bottom:777.870360px;}
.yfd{bottom:778.958280px;}
.y280{bottom:779.713200px;}
.y2d7{bottom:781.740000px;}
.y4f{bottom:784.602000px;}
.y2af{bottom:785.116260px;}
.y214{bottom:785.700000px;}
.y260{bottom:786.160080px;}
.yce{bottom:786.541140px;}
.y142{bottom:786.864240px;}
.y95{bottom:789.120000px;}
.y172{bottom:795.335220px;}
.yfc{bottom:796.423140px;}
.y27f{bottom:797.178060px;}
.y4e{bottom:799.546500px;}
.y19a{bottom:800.100000px;}
.y2d6{bottom:802.440000px;}
.y2ae{bottom:802.581120px;}
.y25f{bottom:803.445660px;}
.ycd{bottom:803.826720px;}
.y141{bottom:804.329100px;}
.y171{bottom:812.620800px;}
.yfb{bottom:813.708720px;}
.y4d{bottom:814.491000px;}
.y210{bottom:815.220000px;}
.y94{bottom:815.400000px;}
.ycc{bottom:821.291580px;}
.y140{bottom:821.614680px;}
.y25e{bottom:821.806920px;}
.y197{bottom:822.960000px;}
.y27e{bottom:823.457520px;}
.y2ad{bottom:828.860580px;}
.y4c{bottom:829.611000px;}
.y170{bottom:830.085660px;}
.yfa{bottom:831.173580px;}
.y212{bottom:832.320000px;}
.y13f{bottom:839.079540px;}
.y25d{bottom:840.168180px;}
.y27d{bottom:840.922380px;}
.y199{bottom:841.860000px;}
.y93{bottom:843.660000px;}
.y4b{bottom:844.555500px;}
.y2ac{bottom:846.325440px;}
.ybd{bottom:847.056600px;}
.y16f{bottom:847.371240px;}
.ycb{bottom:847.571040px;}
.y1d2{bottom:849.960000px;}
.y196{bottom:853.200000px;}
.y13e{bottom:856.365120px;}
.yf9{bottom:857.453040px;}
.y25c{bottom:857.633040px;}
.y27c{bottom:858.207960px;}
.y4a{bottom:859.500000px;}
.y20c{bottom:861.660000px;}
.y16e{bottom:864.836100px;}
.yca{bottom:865.035900px;}
.y2ab{bottom:872.604900px;}
.ybc{bottom:873.336060px;}
.y92{bottom:873.540000px;}
.y13d{bottom:873.829980px;}
.y49{bottom:874.620000px;}
.yf8{bottom:874.917900px;}
.y25b{bottom:874.918620px;}
.y1d1{bottom:876.010140px;}
.y20e{bottom:878.760000px;}
.y2{bottom:879.369000px;}
.y16d{bottom:882.121680px;}
.yc9{bottom:882.321480px;}
.y27b{bottom:884.666700px;}
.y48{bottom:889.514820px;}
.y2aa{bottom:890.069760px;}
.y13c{bottom:891.115560px;}
.yf7{bottom:892.203480px;}
.y25a{bottom:892.383480px;}
.y82{bottom:892.800000px;}
.y1d0{bottom:893.295720px;}
.y16c{bottom:899.586540px;}
.y85{bottom:899.640000px;}
.yc8{bottom:899.786340px;}
.ybb{bottom:899.794800px;}
.y91{bottom:900.000000px;}
.y27a{bottom:901.952280px;}
.y47{bottom:904.457160px;}
.y2a9{bottom:907.355340px;}
.y20b{bottom:908.280000px;}
.y13b{bottom:908.580420px;}
.yf6{bottom:909.668340px;}
.y1cf{bottom:910.760580px;}
.y16b{bottom:916.872120px;}
.y259{bottom:918.662940px;}
.y46{bottom:919.580400px;}
.y1c4{bottom:924.073200px;}
.y13a{bottom:925.866000px;}
.yc7{bottom:926.065800px;}
.y90{bottom:926.280000px;}
.yba{bottom:926.791380px;}
.yf5{bottom:926.953920px;}
.y1ce{bottom:928.046160px;}
.y279{bottom:928.411020px;}
.y2a8{bottom:933.814080px;}
.y16a{bottom:934.336980px;}
.y45{bottom:934.522740px;}
.y258{bottom:936.127800px;}
.y20a{bottom:937.800000px;}
.y1c3{bottom:941.358780px;}
.y139{bottom:943.330860px;}
.y7a{bottom:943.380000px;}
.yc6{bottom:943.530660px;}
.y2d3{bottom:943.920000px;}
.yf4{bottom:944.418780px;}
.y1cd{bottom:945.511020px;}
.y278{bottom:945.696600px;}
.y44{bottom:949.465080px;}
.y2a7{bottom:951.099660px;}
.y169{bottom:951.622560px;}
.y257{bottom:953.413380px;}
.y8f{bottom:954.540000px;}
.y1c2{bottom:958.644360px;}
.y138{bottom:960.616440px;}
.yc5{bottom:960.816240px;}
.yf3{bottom:961.704360px;}
.y116{bottom:962.100000px;}
.y1cc{bottom:962.796600px;}
.yb9{bottom:962.976060px;}
.y81{bottom:963.720000px;}
.y43{bottom:964.588320px;}
.y1{bottom:966.726000px;}
.y208{bottom:967.500000px;}
.y2a6{bottom:968.564520px;}
.y256{bottom:970.878240px;}
.y2d2{bottom:971.100000px;}
.y277{bottom:972.155340px;}
.y1c1{bottom:977.005620px;}
.y137{bottom:978.081300px;}
.yc4{bottom:978.281100px;}
.y7f{bottom:978.840000px;}
.y42{bottom:979.530660px;}
.y1cb{bottom:980.261460px;}
.yb8{bottom:980.440920px;}
.y8e{bottom:986.220000px;}
.yf2{bottom:988.163100px;}
.y255{bottom:988.163820px;}
.y276{bottom:989.440920px;}
.y7d{bottom:993.780000px;}
.y41{bottom:994.473000px;}
.y2a5{bottom:994.843980px;}
.y136{bottom:995.366880px;}
.y206{bottom:997.020000px;}
.y1ca{bottom:997.547040px;}
.yb7{bottom:997.726500px;}
.y2d1{bottom:999.000000px;}
.y236{bottom:1002.420000px;}
.yc3{bottom:1004.560560px;}
.yf1{bottom:1005.448680px;}
.y254{bottom:1005.628680px;}
.yb1{bottom:1007.428680px;}
.y40{bottom:1009.596240px;}
.y2a4{bottom:1012.308840px;}
.y135{bottom:1012.831740px;}
.yb6{bottom:1015.191360px;}
.y275{bottom:1015.899660px;}
.y1c9{bottom:1015.908300px;}
.y6d{bottom:1017.180000px;}
.y8d{bottom:1017.900000px;}
.yc2{bottom:1022.025420px;}
.yf0{bottom:1022.913540px;}
.y253{bottom:1022.914260px;}
.y3f{bottom:1024.538580px;}
.yb0{bottom:1024.714260px;}
.y204{bottom:1026.720000px;}
.y2d0{bottom:1026.900000px;}
.y235{bottom:1028.327580px;}
.y134{bottom:1030.117320px;}
.y2cc{bottom:1032.662340px;}
.y274{bottom:1033.185240px;}
.y1c8{bottom:1033.193880px;}
.y2a3{bottom:1038.588300px;}
.yc1{bottom:1039.311000px;}
.y203{bottom:1039.320000px;}
.y3e{bottom:1039.480920px;}
.yef{bottom:1040.199120px;}
.y252{bottom:1040.379120px;}
.yaf{bottom:1042.179120px;}
.y78{bottom:1042.560000px;}
.y234{bottom:1045.613160px;}
.y168{bottom:1047.582180px;}
.y8c{bottom:1049.760000px;}
.yb5{bottom:1050.464700px;}
.y273{bottom:1050.650100px;}
.y1c7{bottom:1051.555140px;}
.y3d{bottom:1054.604160px;}
.y2cf{bottom:1054.980000px;}
.y2d4{bottom:1055.880000px;}
.y2a2{bottom:1056.053160px;}
.y133{bottom:1056.576060px;}
.yc0{bottom:1056.596580px;}
.yee{bottom:1057.663980px;}
.y251{bottom:1057.664700px;}
.y2cb{bottom:1058.941800px;}
.yae{bottom:1059.464700px;}
.y1fe{bottom:1061.100000px;}
.y233{bottom:1063.795140px;}
.y167{bottom:1064.867760px;}
.yb4{bottom:1067.929560px;}
.y1c6{bottom:1069.020000px;}
.y3c{bottom:1069.546500px;}
.y132{bottom:1073.861640px;}
.ybf{bottom:1074.420000px;}
.yed{bottom:1074.949560px;}
.y250{bottom:1075.129560px;}
.yad{bottom:1076.929560px;}
.y201{bottom:1078.020000px;}
.y8b{bottom:1081.440000px;}
.y166{bottom:1082.332620px;}
.y232{bottom:1082.335680px;}
.y2ce{bottom:1082.880000px;}
.y3b{bottom:1084.488840px;}
.yb3{bottom:1085.215140px;}
.y2ca{bottom:1085.400540px;}
.y131{bottom:1091.326500px;}
.yec{bottom:1092.414420px;}
.y24f{bottom:1092.415140px;}
.yac{bottom:1094.215140px;}
.y272{bottom:1094.394420px;}
.y200{bottom:1094.760000px;}
.y202{bottom:1094.940000px;}
.y1c5{bottom:1097.100000px;}
.y3a{bottom:1099.612080px;}
.y231{bottom:1099.621260px;}
.y2a1{bottom:1099.797480px;}
.y2ff{bottom:1100.160000px;}
.ybe{bottom:1101.780000px;}
.yb2{bottom:1102.680000px;}
.y1fd{bottom:1102.684500px;}
.y130{bottom:1108.612080px;}
.yeb{bottom:1109.700000px;}
.y24e{bottom:1109.880000px;}
.y2cd{bottom:1110.780000px;}
.y8a{bottom:1111.320000px;}
.yab{bottom:1111.680000px;}
.y2d5{bottom:1112.220000px;}
.y39{bottom:1114.554420px;}
.y2df{bottom:1117.083060px;}
.y12f{bottom:1126.076940px;}
.y38{bottom:1129.496760px;}
.yea{bottom:1138.140000px;}
.y24d{bottom:1138.320000px;}
.yaa{bottom:1139.760000px;}
.y89{bottom:1139.940000px;}
.y12e{bottom:1143.362520px;}
.y2a0{bottom:1143.541800px;}
.y1df{bottom:1143.720000px;}
.y1fc{bottom:1143.900000px;}
.y37{bottom:1144.620000px;}
.y70{bottom:1147.680000px;}
.y34{bottom:1196.280000px;}
.y27{bottom:1205.820000px;}
.hc{height:18.900000px;}
.h1d{height:20.520000px;}
.h24{height:21.349440px;}
.ha{height:22.140000px;}
.he{height:25.560000px;}
.h10{height:25.738500px;}
.h3c{height:26.460000px;}
.h2e{height:28.800000px;}
.h32{height:28.801500px;}
.h2f{height:28.978500px;}
.h2d{height:28.980000px;}
.h7{height:32.130000px;}
.h31{height:33.480000px;}
.h2c{height:33.661500px;}
.h15{height:34.057440px;}
.h1c{height:34.380000px;}
.h39{height:34.588080px;}
.h3b{height:35.719325px;}
.hd{height:38.124000px;}
.h1b{height:38.718000px;}
.h9{height:42.190560px;}
.h38{height:42.847920px;}
.h21{height:43.092393px;}
.h30{height:45.718500px;}
.h33{height:45.720000px;}
.h6{height:45.900000px;}
.h16{height:46.188783px;}
.h18{height:46.206783px;}
.h17{height:46.242783px;}
.h27{height:47.765062px;}
.h3{height:48.195000px;}
.h20{height:50.832000px;}
.h1f{height:51.115586px;}
.h34{height:51.268163px;}
.h23{height:51.275363px;}
.h35{height:51.310643px;}
.h26{height:51.471923px;}
.h37{height:51.624000px;}
.h25{height:51.781523px;}
.h1e{height:51.918545px;}
.h2{height:55.080000px;}
.h22{height:56.072029px;}
.h28{height:57.060000px;}
.hb{height:60.400080px;}
.h36{height:61.585043px;}
.h2b{height:62.640000px;}
.h12{height:67.606560px;}
.h1a{height:77.400000px;}
.h5{height:78.030000px;}
.h2a{height:108.360000px;}
.h14{height:118.438560px;}
.h4{height:119.055004px;}
.h3a{height:121.680000px;}
.h11{height:125.820000px;}
.h3d{height:140.220000px;}
.hf{height:150.660000px;}
.h19{height:157.498500px;}
.h29{height:175.500000px;}
.h13{height:182.880000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:23.940000px;}
.w1a{width:24.120000px;}
.wf{width:104.940000px;}
.w13{width:107.818500px;}
.w15{width:108.540000px;}
.w6{width:108.720000px;}
.w14{width:109.260000px;}
.w17{width:110.340000px;}
.w16{width:114.298500px;}
.w10{width:140.400000px;}
.w19{width:141.660000px;}
.w5{width:185.940000px;}
.w11{width:196.740000px;}
.w8{width:214.021500px;}
.wd{width:289.258500px;}
.w1b{width:296.280000px;}
.w7{width:345.240000px;}
.w4{width:376.740000px;}
.w18{width:553.140000px;}
.w2{width:637.794021px;}
.wc{width:664.200000px;}
.w12{width:676.260000px;}
.wb{width:677.160000px;}
.we{width:691.740000px;}
.w9{width:734.400000px;}
.wa{width:735.838500px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4e{left:5.220000px;}
.x2b{left:8.100000px;}
.x1d{left:17.280000px;}
.x1a{left:19.080000px;}
.x4a{left:21.240000px;}
.x47{left:22.500000px;}
.x49{left:23.760000px;}
.x48{left:27.720000px;}
.x46{left:30.060000px;}
.x42{left:37.980000px;}
.x41{left:43.200000px;}
.x44{left:44.460000px;}
.x43{left:45.720000px;}
.x45{left:49.680000px;}
.x38{left:52.200000px;}
.x39{left:53.280000px;}
.xa{left:54.360000px;}
.x3a{left:58.500000px;}
.x3b{left:59.760000px;}
.x3d{left:61.020000px;}
.x3c{left:64.980000px;}
.x3e{left:66.600000px;}
.x40{left:67.860000px;}
.x1f{left:70.020000px;}
.x3f{left:71.640000px;}
.x4b{left:73.620000px;}
.x35{left:75.600000px;}
.x36{left:76.860000px;}
.x37{left:78.120000px;}
.xb{left:81.180000px;}
.x2a{left:98.280000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:108.540000px;}
.x15{left:115.920000px;}
.x4c{left:123.120000px;}
.x16{left:127.440000px;}
.x18{left:133.204860px;}
.x27{left:136.620000px;}
.x13{left:143.460000px;}
.x12{left:156.600000px;}
.x14{left:168.120000px;}
.x8{left:185.940000px;}
.x4{left:203.484001px;}
.x11{left:241.560000px;}
.x2d{left:248.760000px;}
.x34{left:263.340000px;}
.xf{left:296.100000px;}
.xe{left:307.980000px;}
.x19{left:330.300000px;}
.x1b{left:344.700000px;}
.x2e{left:349.740000px;}
.x22{left:356.940000px;}
.x21{left:364.140000px;}
.x24{left:373.865760px;}
.x23{left:381.246120px;}
.x10{left:424.620000px;}
.x1c{left:435.960000px;}
.x2c{left:438.122700px;}
.xc{left:441.720000px;}
.x5{left:446.400000px;}
.x3{left:454.959000px;}
.x2f{left:459.720000px;}
.x30{left:467.460000px;}
.x4f{left:483.480000px;}
.x6{left:486.540000px;}
.x26{left:544.138200px;}
.x25{left:551.160000px;}
.x31{left:568.980000px;}
.x1e{left:577.260000px;}
.x29{left:643.330800px;}
.x28{left:646.020000px;}
.x7{left:680.400000px;}
.x32{left:684.000000px;}
.x33{left:691.740000px;}
.x20{left:697.680000px;}
.x9{left:732.780000px;}
.x17{left:783.540000px;}
.x4d{left:851.220000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.017280pt;}
.ls4f{letter-spacing:-0.816000pt;}
.ls36{letter-spacing:-0.771840pt;}
.ls28{letter-spacing:-0.531200pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.432000pt;}
.ls3c{letter-spacing:-0.428800pt;}
.ls61{letter-spacing:-0.336000pt;}
.ls84{letter-spacing:-0.318720pt;}
.ls50{letter-spacing:-0.294400pt;}
.ls55{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.265600pt;}
.ls18{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls53{letter-spacing:-0.235520pt;}
.ls1d{letter-spacing:-0.212480pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls35{letter-spacing:-0.171520pt;}
.ls2{letter-spacing:-0.159360pt;}
.ls4{letter-spacing:-0.149120pt;}
.ls11{letter-spacing:-0.144000pt;}
.ls3b{letter-spacing:-0.128640pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls51{letter-spacing:-0.117760pt;}
.ls3{letter-spacing:-0.106240pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls52{letter-spacing:-0.058880pt;}
.ls1a{letter-spacing:-0.053120pt;}
.lsb{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6f{letter-spacing:0.015936pt;}
.ls66{letter-spacing:0.037184pt;}
.ls40{letter-spacing:0.040960pt;}
.ls79{letter-spacing:0.042496pt;}
.ls56{letter-spacing:0.042880pt;}
.ls80{letter-spacing:0.047808pt;}
.lse{letter-spacing:0.048000pt;}
.ls26{letter-spacing:0.053120pt;}
.ls71{letter-spacing:0.058432pt;}
.ls59{letter-spacing:0.063744pt;}
.ls88{letter-spacing:0.064000pt;}
.ls69{letter-spacing:0.069056pt;}
.ls5c{letter-spacing:0.095616pt;}
.lsf{letter-spacing:0.096000pt;}
.ls67{letter-spacing:0.100928pt;}
.ls17{letter-spacing:0.106240pt;}
.ls68{letter-spacing:0.111552pt;}
.ls6b{letter-spacing:0.116864pt;}
.ls70{letter-spacing:0.122176pt;}
.ls60{letter-spacing:0.127488pt;}
.ls14{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.128640pt;}
.ls1e{letter-spacing:0.132800pt;}
.ls2c{letter-spacing:0.138240pt;}
.ls7{letter-spacing:0.144000pt;}
.ls23{letter-spacing:0.159360pt;}
.ls74{letter-spacing:0.169984pt;}
.ls4d{letter-spacing:0.171520pt;}
.ls75{letter-spacing:0.175296pt;}
.ls5d{letter-spacing:0.180608pt;}
.ls48{letter-spacing:0.191232pt;}
.ls5{letter-spacing:0.192000pt;}
.ls57{letter-spacing:0.196544pt;}
.ls58{letter-spacing:0.207168pt;}
.ls1c{letter-spacing:0.212480pt;}
.ls6c{letter-spacing:0.214400pt;}
.ls54{letter-spacing:0.235520pt;}
.ls3e{letter-spacing:0.239040pt;}
.ls2e{letter-spacing:0.240000pt;}
.ls89{letter-spacing:0.265600pt;}
.ls62{letter-spacing:0.288000pt;}
.ls25{letter-spacing:0.318720pt;}
.ls63{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.336000pt;}
.ls29{letter-spacing:0.345600pt;}
.ls85{letter-spacing:0.359680pt;}
.ls5a{letter-spacing:0.371840pt;}
.ls1{letter-spacing:0.382720pt;}
.ls78{letter-spacing:0.393088pt;}
.ls3d{letter-spacing:0.424960pt;}
.ls64{letter-spacing:0.435584pt;}
.ls1b{letter-spacing:0.446208pt;}
.ls37{letter-spacing:0.472768pt;}
.ls7e{letter-spacing:0.499328pt;}
.ls7c{letter-spacing:0.504640pt;}
.ls4e{letter-spacing:0.531200pt;}
.ls76{letter-spacing:0.536512pt;}
.ls7d{letter-spacing:0.547136pt;}
.ls5e{letter-spacing:0.573696pt;}
.ls3f{letter-spacing:0.576000pt;}
.ls7a{letter-spacing:0.584320pt;}
.ls3a{letter-spacing:0.600320pt;}
.ls5f{letter-spacing:0.664000pt;}
.ls22{letter-spacing:0.690560pt;}
.ls4a{letter-spacing:0.733056pt;}
.ls83{letter-spacing:0.738368pt;}
.ls27{letter-spacing:0.743680pt;}
.ls65{letter-spacing:0.748992pt;}
.ls7b{letter-spacing:0.796800pt;}
.ls34{letter-spacing:0.814720pt;}
.ls2d{letter-spacing:0.849920pt;}
.ls6d{letter-spacing:1.136768pt;}
.ls38{letter-spacing:1.328000pt;}
.ls6{letter-spacing:1.920000pt;}
.ls19{letter-spacing:1.965440pt;}
.ls86{letter-spacing:2.284160pt;}
.ls32{letter-spacing:2.487040pt;}
.ls2f{letter-spacing:2.602880pt;}
.ls4c{letter-spacing:3.130240pt;}
.ls5b{letter-spacing:3.240320pt;}
.ls39{letter-spacing:4.515200pt;}
.ls6a{letter-spacing:5.152640pt;}
.ls7f{letter-spacing:5.216384pt;}
.ls1f{letter-spacing:5.264192pt;}
.ls24{letter-spacing:5.790080pt;}
.ls21{letter-spacing:6.427520pt;}
.ls72{letter-spacing:7.064960pt;}
.ls6e{letter-spacing:9.030400pt;}
.ls20{letter-spacing:9.667840pt;}
.ls2b{letter-spacing:10.305280pt;}
.ls73{letter-spacing:12.196352pt;}
.ls30{letter-spacing:14.129920pt;}
.ls77{letter-spacing:14.767360pt;}
.ls87{letter-spacing:15.723520pt;}
.ls12{letter-spacing:28.293120pt;}
.ls13{letter-spacing:39.813120pt;}
.ls31{letter-spacing:55.168000pt;}
.ls2a{letter-spacing:58.890240pt;}
.ls82{letter-spacing:107.568000pt;}
.ls81{letter-spacing:140.236800pt;}
.ls49{letter-spacing:252.213760pt;}
.ls47{letter-spacing:261.828480pt;}
.ls45{letter-spacing:332.212480pt;}
.ls46{letter-spacing:338.586880pt;}
.ls44{letter-spacing:339.914880pt;}
.ls41{letter-spacing:343.102080pt;}
.ls42{letter-spacing:401.959040pt;}
.ls43{letter-spacing:591.384960pt;}
.ls4b{letter-spacing:602.274560pt;}
.ws5a{word-spacing:-17.072640pt;}
.ws1d{word-spacing:-15.808000pt;}
.ws1f{word-spacing:-15.680000pt;}
.ws20{word-spacing:-15.552000pt;}
.ws1e{word-spacing:-15.488000pt;}
.ws109{word-spacing:-15.404800pt;}
.ws108{word-spacing:-14.873600pt;}
.wsaf{word-spacing:-14.661120pt;}
.ws106{word-spacing:-14.608000pt;}
.ws10a{word-spacing:-14.554880pt;}
.wsae{word-spacing:-14.366720pt;}
.ws103{word-spacing:-14.342400pt;}
.ws2{word-spacing:-14.236160pt;}
.ws1{word-spacing:-14.183040pt;}
.wsad{word-spacing:-14.131200pt;}
.ws107{word-spacing:-14.023680pt;}
.ws104{word-spacing:-13.280000pt;}
.ws39{word-spacing:-13.226880pt;}
.ws38{word-spacing:-13.173760pt;}
.ws6{word-spacing:-13.152000pt;}
.wsc3{word-spacing:-13.067520pt;}
.wsd2{word-spacing:-12.961280pt;}
.ws5b{word-spacing:-12.855040pt;}
.ws8{word-spacing:-12.816000pt;}
.wsd5{word-spacing:-12.801920pt;}
.ws3a{word-spacing:-12.748800pt;}
.wsd3{word-spacing:-12.695680pt;}
.ws22{word-spacing:-12.642560pt;}
.ws8b{word-spacing:-12.589440pt;}
.ws9d{word-spacing:-12.536320pt;}
.ws21{word-spacing:-12.483200pt;}
.ws8a{word-spacing:-12.376960pt;}
.ws89{word-spacing:-12.217600pt;}
.ws74{word-spacing:-12.096000pt;}
.wsb1{word-spacing:-11.856000pt;}
.wsd4{word-spacing:-11.760000pt;}
.wsc2{word-spacing:-11.568000pt;}
.wsb0{word-spacing:-11.520000pt;}
.ws7{word-spacing:-11.424000pt;}
.wscb{word-spacing:-11.328000pt;}
.wscc{word-spacing:-11.232000pt;}
.ws75{word-spacing:-8.294400pt;}
.ws76{word-spacing:-7.257600pt;}
.wsdf{word-spacing:-1.500800pt;}
.wsbe{word-spacing:-0.857600pt;}
.ws6d{word-spacing:-0.849920pt;}
.wsce{word-spacing:-0.816000pt;}
.ws46{word-spacing:-0.743680pt;}
.ws8c{word-spacing:-0.690560pt;}
.wsb5{word-spacing:-0.531200pt;}
.wsa3{word-spacing:-0.424960pt;}
.wsc4{word-spacing:-0.414720pt;}
.ws7d{word-spacing:-0.384000pt;}
.wsc1{word-spacing:-0.371840pt;}
.ws9{word-spacing:-0.336000pt;}
.ws102{word-spacing:-0.320000pt;}
.ws110{word-spacing:-0.318720pt;}
.wscd{word-spacing:-0.288000pt;}
.ws77{word-spacing:-0.276480pt;}
.ws83{word-spacing:-0.265600pt;}
.wsb8{word-spacing:-0.235520pt;}
.wsda{word-spacing:-0.214400pt;}
.wsc6{word-spacing:-0.212480pt;}
.ws10{word-spacing:-0.192000pt;}
.wsbd{word-spacing:-0.171520pt;}
.ws36{word-spacing:-0.159360pt;}
.ws1b{word-spacing:-0.144000pt;}
.ws3{word-spacing:-0.106240pt;}
.wsbf{word-spacing:-0.085760pt;}
.ws28{word-spacing:-0.053120pt;}
.wscf{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.wsba{word-spacing:0.048000pt;}
.ws73{word-spacing:0.053120pt;}
.ws4{word-spacing:0.085120pt;}
.ws33{word-spacing:0.106240pt;}
.ws23{word-spacing:0.128000pt;}
.ws88{word-spacing:0.128640pt;}
.ws5{word-spacing:0.149120pt;}
.ws26{word-spacing:0.159360pt;}
.ws85{word-spacing:0.171520pt;}
.wsb{word-spacing:0.192000pt;}
.ws29{word-spacing:0.212480pt;}
.wsd{word-spacing:0.240000pt;}
.ws27{word-spacing:0.265600pt;}
.wsbb{word-spacing:0.288000pt;}
.wsb7{word-spacing:0.294400pt;}
.ws35{word-spacing:0.318720pt;}
.ws25{word-spacing:0.320000pt;}
.wsc8{word-spacing:0.384000pt;}
.wse0{word-spacing:0.385920pt;}
.ws7c{word-spacing:0.432000pt;}
.ws2a{word-spacing:0.448000pt;}
.ws87{word-spacing:0.471680pt;}
.ws1c{word-spacing:0.480000pt;}
.ws24{word-spacing:0.512000pt;}
.wsb9{word-spacing:0.529920pt;}
.ws59{word-spacing:0.531200pt;}
.ws2b{word-spacing:0.576000pt;}
.ws4d{word-spacing:0.584320pt;}
.ws4c{word-spacing:0.637440pt;}
.ws105{word-spacing:0.690560pt;}
.ws98{word-spacing:0.728960pt;}
.wsab{word-spacing:0.743680pt;}
.ws86{word-spacing:0.771840pt;}
.ws55{word-spacing:0.796800pt;}
.wsb6{word-spacing:0.816000pt;}
.wsac{word-spacing:0.849920pt;}
.ws37{word-spacing:0.903040pt;}
.ws34{word-spacing:0.956160pt;}
.wsd9{word-spacing:1.029120pt;}
.wsf{word-spacing:1.104000pt;}
.ws94{word-spacing:1.115520pt;}
.ws49{word-spacing:1.221760pt;}
.ws13{word-spacing:1.248000pt;}
.ws40{word-spacing:1.274880pt;}
.wse{word-spacing:1.344000pt;}
.ws99{word-spacing:1.372160pt;}
.ws52{word-spacing:1.381120pt;}
.ws9c{word-spacing:1.415040pt;}
.ws2f{word-spacing:1.434240pt;}
.ws8f{word-spacing:1.487360pt;}
.ws14{word-spacing:1.536000pt;}
.ws68{word-spacing:1.540480pt;}
.wsa{word-spacing:1.584000pt;}
.ws30{word-spacing:1.593600pt;}
.ws84{word-spacing:1.672320pt;}
.wsdd{word-spacing:1.715200pt;}
.ws8e{word-spacing:1.752960pt;}
.ws10f{word-spacing:1.806080pt;}
.ws31{word-spacing:1.859200pt;}
.ws90{word-spacing:1.912320pt;}
.wsde{word-spacing:1.972480pt;}
.ws63{word-spacing:2.018560pt;}
.ws32{word-spacing:2.071680pt;}
.ws69{word-spacing:2.124800pt;}
.wsc0{word-spacing:2.177920pt;}
.ws2e{word-spacing:2.231040pt;}
.wsbc{word-spacing:2.315520pt;}
.ws11{word-spacing:2.352000pt;}
.wsa0{word-spacing:2.390400pt;}
.ws111{word-spacing:2.443520pt;}
.ws72{word-spacing:2.496640pt;}
.wsca{word-spacing:2.549760pt;}
.ws7e{word-spacing:2.656000pt;}
.ws4b{word-spacing:2.709120pt;}
.ws9f{word-spacing:2.815360pt;}
.ws6e{word-spacing:2.868480pt;}
.ws12{word-spacing:2.976000pt;}
.ws51{word-spacing:3.027840pt;}
.ws6c{word-spacing:3.134080pt;}
.wsa8{word-spacing:3.293440pt;}
.ws50{word-spacing:3.346560pt;}
.wsb2{word-spacing:3.399680pt;}
.ws91{word-spacing:3.452800pt;}
.ws16{word-spacing:3.504000pt;}
.ws6b{word-spacing:3.505920pt;}
.ws10b{word-spacing:3.718400pt;}
.ws58{word-spacing:3.771520pt;}
.wsc9{word-spacing:3.824640pt;}
.ws10c{word-spacing:3.877760pt;}
.ws79{word-spacing:3.930880pt;}
.ws9a{word-spacing:3.944960pt;}
.ws64{word-spacing:3.984000pt;}
.wsb4{word-spacing:4.090240pt;}
.ws18{word-spacing:4.128000pt;}
.ws48{word-spacing:4.143360pt;}
.ws9b{word-spacing:4.202240pt;}
.ws8d{word-spacing:4.408960pt;}
.ws3d{word-spacing:4.568320pt;}
.ws4f{word-spacing:4.621440pt;}
.wsc{word-spacing:4.656000pt;}
.wsef{word-spacing:4.674560pt;}
.wse1{word-spacing:4.727680pt;}
.ws19{word-spacing:4.752000pt;}
.ws3c{word-spacing:4.780800pt;}
.ws4e{word-spacing:5.046400pt;}
.ws3f{word-spacing:5.205760pt;}
.ws3e{word-spacing:5.258880pt;}
.ws82{word-spacing:5.365120pt;}
.ws41{word-spacing:5.418240pt;}
.ws15{word-spacing:5.424000pt;}
.ws7a{word-spacing:5.683840pt;}
.ws53{word-spacing:5.843200pt;}
.ws54{word-spacing:5.896320pt;}
.wse4{word-spacing:6.002560pt;}
.ws7b{word-spacing:6.055680pt;}
.wsdc{word-spacing:6.131840pt;}
.ws62{word-spacing:6.268160pt;}
.wsdb{word-spacing:6.303360pt;}
.ws44{word-spacing:6.374400pt;}
.wsc7{word-spacing:6.427520pt;}
.wsd0{word-spacing:6.533760pt;}
.ws6f{word-spacing:6.586880pt;}
.ws70{word-spacing:6.693120pt;}
.ws47{word-spacing:6.746240pt;}
.ws60{word-spacing:7.011840pt;}
.ws45{word-spacing:7.171200pt;}
.ws5f{word-spacing:7.224320pt;}
.ws80{word-spacing:7.277440pt;}
.ws93{word-spacing:7.330560pt;}
.ws1a{word-spacing:7.344000pt;}
.ws92{word-spacing:7.383680pt;}
.ws6a{word-spacing:7.649280pt;}
.wsa5{word-spacing:7.808640pt;}
.wsa4{word-spacing:7.861760pt;}
.wsb3{word-spacing:8.021120pt;}
.ws78{word-spacing:8.286720pt;}
.ws65{word-spacing:8.446080pt;}
.wsa2{word-spacing:8.499200pt;}
.wsa1{word-spacing:8.658560pt;}
.ws61{word-spacing:8.924160pt;}
.ws81{word-spacing:9.083520pt;}
.ws96{word-spacing:9.136640pt;}
.wsd1{word-spacing:9.189760pt;}
.ws95{word-spacing:9.296000pt;}
.ws42{word-spacing:9.455360pt;}
.ws57{word-spacing:9.561600pt;}
.ws56{word-spacing:9.774080pt;}
.wsd8{word-spacing:9.880320pt;}
.ws43{word-spacing:9.933440pt;}
.wsd7{word-spacing:10.199040pt;}
.wsf0{word-spacing:10.358400pt;}
.ws4a{word-spacing:10.411520pt;}
.wse2{word-spacing:10.517760pt;}
.ws5c{word-spacing:10.570880pt;}
.ws114{word-spacing:10.783360pt;}
.ws2c{word-spacing:10.836480pt;}
.wsa9{word-spacing:10.995840pt;}
.ws2d{word-spacing:11.048960pt;}
.ws9e{word-spacing:11.208320pt;}
.ws5e{word-spacing:11.633280pt;}
.ws5d{word-spacing:11.845760pt;}
.ws3b{word-spacing:12.217600pt;}
.ws71{word-spacing:12.323840pt;}
.ws101{word-spacing:12.961280pt;}
.wsd6{word-spacing:13.386240pt;}
.ws17{word-spacing:13.728000pt;}
.ws7f{word-spacing:14.023680pt;}
.wsf1{word-spacing:14.183040pt;}
.wsa7{word-spacing:14.236160pt;}
.wsa6{word-spacing:14.395520pt;}
.wsaa{word-spacing:14.661120pt;}
.wse9{word-spacing:14.873600pt;}
.wsea{word-spacing:14.979840pt;}
.ws113{word-spacing:15.192320pt;}
.ws112{word-spacing:15.298560pt;}
.ws97{word-spacing:15.511040pt;}
.ws66{word-spacing:15.936000pt;}
.wsc5{word-spacing:16.785920pt;}
.ws67{word-spacing:16.945280pt;}
.wse3{word-spacing:17.210880pt;}
.wsee{word-spacing:17.423360pt;}
.wse6{word-spacing:19.495040pt;}
.wsfa{word-spacing:20.185600pt;}
.ws100{word-spacing:21.619840pt;}
.ws10e{word-spacing:21.885440pt;}
.wsff{word-spacing:21.938560pt;}
.ws10d{word-spacing:22.310400pt;}
.wsfd{word-spacing:24.435200pt;}
.wsfc{word-spacing:24.488320pt;}
.wseb{word-spacing:28.897280pt;}
.wsec{word-spacing:29.587840pt;}
.wsf9{word-spacing:30.172160pt;}
.wsf8{word-spacing:30.225280pt;}
.wsed{word-spacing:30.650240pt;}
.wsfb{word-spacing:39.202560pt;}
.wse5{word-spacing:40.477440pt;}
.wsf7{word-spacing:75.058560pt;}
.wsf5{word-spacing:94.234880pt;}
.wsf6{word-spacing:108.099200pt;}
.wsfe{word-spacing:128.603520pt;}
.wsf2{word-spacing:175.508480pt;}
.wsf3{word-spacing:175.561600pt;}
.wse7{word-spacing:185.707520pt;}
.wse8{word-spacing:185.760640pt;}
.wsf4{word-spacing:194.737920pt;}
._9{margin-left:-15.366016pt;}
._5{margin-left:-14.265984pt;}
._3{margin-left:-13.120000pt;}
._a{margin-left:-12.153984pt;}
._8{margin-left:-10.942400pt;}
._6{margin-left:-8.505984pt;}
._4{margin-left:-6.720000pt;}
._7{margin-left:-5.160576pt;}
._2{margin-left:-2.049600pt;}
._1{margin-left:-0.897600pt;}
._0{width:1.212992pt;}
._d{width:2.656000pt;}
._11{width:3.819200pt;}
._c{width:6.240832pt;}
._12{width:10.042368pt;}
._10{width:17.534656pt;}
._13{width:21.787456pt;}
._e{width:45.063296pt;}
._14{width:115.589120pt;}
._f{width:690.205696pt;}
._15{width:755.260160pt;}
._b{width:1418.941440pt;}
.fse{font-size:26.880000pt;}
.fsd{font-size:34.560000pt;}
.fsf{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:149.120000pt;}
.y88{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:2.560000pt;}
.y26{bottom:5.760000pt;}
.y84{bottom:6.080000pt;}
.y2fe{bottom:7.200000pt;}
.y87{bottom:7.520000pt;}
.y79{bottom:10.080000pt;}
.y2c{bottom:10.720000pt;}
.y28{bottom:11.840000pt;}
.y209{bottom:15.040000pt;}
.y207{bottom:15.200000pt;}
.y80{bottom:18.080000pt;}
.y219{bottom:19.200000pt;}
.y205{bottom:19.360000pt;}
.y83{bottom:19.840000pt;}
.y77{bottom:22.560000pt;}
.y25{bottom:24.800000pt;}
.y211{bottom:29.920000pt;}
.y20d{bottom:30.080000pt;}
.y20f{bottom:30.240000pt;}
.y7e{bottom:31.520000pt;}
.y76{bottom:36.000000pt;}
.y198{bottom:36.960000pt;}
.y32{bottom:40.160000pt;}
.y7c{bottom:44.800000pt;}
.y1ff{bottom:44.960000pt;}
.y75{bottom:49.280000pt;}
.y36{bottom:50.879520pt;}
.y22{bottom:50.880000pt;}
.ya9{bottom:51.038880pt;}
.y7b{bottom:58.080000pt;}
.y5{bottom:59.133337pt;}
.y1b2{bottom:59.200000pt;}
.y74{bottom:62.560000pt;}
.y35{bottom:66.722560pt;}
.y1b0{bottom:74.560000pt;}
.y2fb{bottom:74.880000pt;}
.y73{bottom:76.000000pt;}
.y2fd{bottom:77.920000pt;}
.y31{bottom:84.320000pt;}
.y1b6{bottom:85.600000pt;}
.y4{bottom:86.333337pt;}
.y72{bottom:89.280000pt;}
.y1ae{bottom:90.080000pt;}
.y2fa{bottom:92.160000pt;}
.y2e{bottom:92.320000pt;}
.y1c0{bottom:97.441120pt;}
.y12d{bottom:97.443040pt;}
.y165{bottom:97.444160pt;}
.y195{bottom:98.381440pt;}
.y24c{bottom:101.440000pt;}
.y71{bottom:102.560000pt;}
.y1ac{bottom:105.440000pt;}
.y86{bottom:105.920000pt;}
.y2fc{bottom:108.160000pt;}
.y12c{bottom:110.081920pt;}
.y164{bottom:110.083040pt;}
.y24b{bottom:110.084960pt;}
.y29f{bottom:110.444960pt;}
.y194{bottom:113.746400pt;}
.y1bf{bottom:114.080000pt;}
.y2f9{bottom:114.556320pt;}
.y6f{bottom:116.000000pt;}
.y230{bottom:118.200480pt;}
.y1fb{bottom:119.929280pt;}
.y1aa{bottom:120.960000pt;}
.y2a{bottom:121.600000pt;}
.y163{bottom:122.561120pt;}
.y24a{bottom:122.563040pt;}
.y21{bottom:123.790666pt;}
.y300{bottom:124.640000pt;}
.y29e{bottom:125.809920pt;}
.y12b{bottom:126.560000pt;}
.y30{bottom:128.480000pt;}
.y193{bottom:129.270720pt;}
.y6e{bottom:129.280000pt;}
.y2f8{bottom:130.240000pt;}
.y1be{bottom:131.360000pt;}
.y22f{bottom:133.724800pt;}
.y249{bottom:135.201920pt;}
.y162{bottom:139.200000pt;}
.y1fa{bottom:143.288800pt;}
.y12a{bottom:144.000000pt;}
.y192{bottom:144.635680pt;}
.y2f7{bottom:146.084960pt;}
.y22e{bottom:149.089760pt;}
.y29d{bottom:149.328800pt;}
.y248{bottom:151.680000pt;}
.y1bd{bottom:155.200000pt;}
.y161{bottom:156.640000pt;}
.y191{bottom:160.160000pt;}
.y22d{bottom:164.614080pt;}
.y29c{bottom:164.693760pt;}
.y1f9{bottom:166.807680pt;}
.y129{bottom:167.680000pt;}
.y247{bottom:169.120000pt;}
.y2f6{bottom:170.560000pt;}
.y18{bottom:175.052000pt;}
.y29b{bottom:180.218080pt;}
.y160{bottom:180.320000pt;}
.y190{bottom:185.120000pt;}
.y1bc{bottom:185.755680pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y22c{bottom:187.814240pt;}
.y128{bottom:188.292160pt;}
.y1f8{bottom:190.167200pt;}
.y246{bottom:192.800000pt;}
.y2f5{bottom:194.561280pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y2de{bottom:198.563040pt;}
.y1bb{bottom:201.280000pt;}
.y29a{bottom:203.577600pt;}
.y127{bottom:203.816480pt;}
.y22b{bottom:204.135360pt;}
.y15f{bottom:207.016480pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y2f4{bottom:210.244960pt;}
.y1f7{bottom:213.686080pt;}
.ye9{bottom:215.397120pt;}
.y2c9{bottom:216.374880pt;}
.y299{bottom:219.101920pt;}
.y126{bottom:219.181440pt;}
.y18f{bottom:219.641760pt;}
.y22a{bottom:220.456480pt;}
.y1b5{bottom:220.960000pt;}
.y15e{bottom:222.381440pt;}
.y2dd{bottom:222.560000pt;}
.ya8{bottom:227.368960pt;}
.y1f6{bottom:229.051040pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y2c8{bottom:231.899200pt;}
.y125{bottom:234.705760pt;}
.y2f3{bottom:234.720000pt;}
.y18e{bottom:235.006720pt;}
.y229{bottom:235.980800pt;}
.y1ba{bottom:236.000000pt;}
.y15d{bottom:237.905760pt;}
.ye8{bottom:238.756640pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y298{bottom:242.461440pt;}
.y1f5{bottom:245.212800pt;}
.y2c7{bottom:247.264160pt;}
.y124{bottom:250.070720pt;}
.y2dc{bottom:250.240000pt;}
.y18d{bottom:250.531040pt;}
.ya7{bottom:250.728480pt;}
.y228{bottom:251.345760pt;}
.y15c{bottom:253.270720pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ye7{bottom:254.280960pt;}
.y297{bottom:257.985760pt;}
.y2f2{bottom:258.880000pt;}
.y1b9{bottom:261.604000pt;}
.y1f4{bottom:261.693280pt;}
.y2db{bottom:265.120000pt;}
.y245{bottom:265.248800pt;}
.y123{bottom:265.595040pt;}
.y18c{bottom:265.896000pt;}
.y227{bottom:266.870080pt;}
.y15b{bottom:268.795040pt;}
.ye6{bottom:269.645920pt;}
.y2c6{bottom:270.783040pt;}
.ya6{bottom:274.247360pt;}
.y2f1{bottom:274.560000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1b8{bottom:276.484000pt;}
.y1f3{bottom:277.058240pt;}
.y122{bottom:280.955680pt;}
.y296{bottom:281.345280pt;}
.y18b{bottom:281.420320pt;}
.y226{bottom:282.235040pt;}
.y2da{bottom:283.840000pt;}
.y15a{bottom:284.160000pt;}
.y2c5{bottom:286.148000pt;}
.y1de{bottom:286.855360pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y244{bottom:288.608320pt;}
.y2f0{bottom:290.244960pt;}
.y1b7{bottom:291.520000pt;}
.y1f2{bottom:292.582560pt;}
.ye5{bottom:293.164800pt;}
.y121{bottom:296.480000pt;}
.y295{bottom:296.869600pt;}
.y225{bottom:297.600000pt;}
.ya5{bottom:297.606880pt;}
.y243{bottom:304.132640pt;}
.y18a{bottom:304.779840pt;}
.y115{bottom:305.746880pt;}
.y1f1{bottom:307.947520pt;}
.ye4{bottom:308.529760pt;}
.y159{bottom:309.280000pt;}
.yf{bottom:309.452000pt;}
.y2c4{bottom:309.666880pt;}
.y1dd{bottom:310.214880pt;}
.y6c{bottom:310.710880pt;}
.y2ef{bottom:314.720000pt;}
.y1a9{bottom:317.920000pt;}
.y242{bottom:319.497600pt;}
.y294{bottom:320.229120pt;}
.y189{bottom:320.304160pt;}
.ya4{bottom:321.125760pt;}
.y114{bottom:321.271200pt;}
.y120{bottom:321.440000pt;}
.y6b{bottom:323.992960pt;}
.ye3{bottom:324.054080pt;}
.y1f0{bottom:324.109280pt;}
.y2c3{bottom:325.031840pt;}
.y1dc{bottom:326.536000pt;}
.y1a8{bottom:329.593920pt;}
.y241{bottom:335.021920pt;}
.y188{bottom:335.669120pt;}
.y293{bottom:335.753440pt;}
.y113{bottom:336.636160pt;}
.y6a{bottom:337.435840pt;}
.y2ee{bottom:338.881280pt;}
.ye2{bottom:339.419040pt;}
.y1ef{bottom:340.589760pt;}
.y223{bottom:340.800000pt;}
.y1db{bottom:342.857120pt;}
.y158{bottom:343.780480pt;}
.ye{bottom:343.809333pt;}
.ya3{bottom:344.485280pt;}
.y2c2{bottom:348.550720pt;}
.y240{bottom:350.386880pt;}
.y69{bottom:350.717920pt;}
.y292{bottom:351.118400pt;}
.y187{bottom:351.193440pt;}
.y112{bottom:352.160480pt;}
.y1a7{bottom:353.112800pt;}
.y2ed{bottom:354.564960pt;}
.ye1{bottom:354.943360pt;}
.y1ee{bottom:355.954720pt;}
.y224{bottom:356.000000pt;}
.y11f{bottom:356.132160pt;}
.y1da{bottom:358.381440pt;}
.y157{bottom:359.304800pt;}
.y1b3{bottom:361.600000pt;}
.yd{bottom:362.706666pt;}
.y2c1{bottom:363.915680pt;}
.y68{bottom:364.000000pt;}
.y186{bottom:366.558400pt;}
.ya2{bottom:368.004160pt;}
.y1a6{bottom:368.477760pt;}
.ye0{bottom:370.308320pt;}
.y1ed{bottom:371.479040pt;}
.y11e{bottom:371.497120pt;}
.y1d9{bottom:373.746400pt;}
.y23f{bottom:373.905760pt;}
.y291{bottom:374.637280pt;}
.y156{bottom:374.669760pt;}
.y111{bottom:375.520000pt;}
.y1b1{bottom:377.120000pt;}
.y67{bottom:377.412000pt;}
.y2ec{bottom:379.040000pt;}
.y221{bottom:382.080000pt;}
.y185{bottom:382.082720pt;}
.y2b{bottom:383.840000pt;}
.y11d{bottom:387.021440pt;}
.y2c0{bottom:387.434560pt;}
.y1d8{bottom:389.270720pt;}
.y290{bottom:390.002240pt;}
.y155{bottom:390.194080pt;}
.y66{bottom:390.696000pt;}
.y110{bottom:391.044320pt;}
.ya1{bottom:391.363680pt;}
.y1a5{bottom:391.996640pt;}
.y1af{bottom:392.480000pt;}
.ydf{bottom:393.827200pt;}
.y1ec{bottom:394.838560pt;}
.y222{bottom:397.280000pt;}
.y184{bottom:397.447680pt;}
.y11c{bottom:402.386400pt;}
.y2bf{bottom:402.799520pt;}
.y65{bottom:403.980000pt;}
.y1d7{bottom:404.635680pt;}
.y23e{bottom:404.795040pt;}
.y2eb{bottom:404.800000pt;}
.y28f{bottom:405.526560pt;}
.y154{bottom:405.559040pt;}
.y10f{bottom:406.409280pt;}
.y1ad{bottom:408.000000pt;}
.yde{bottom:409.829600pt;}
.y1eb{bottom:410.362880pt;}
.y183{bottom:412.972000pt;}
.y23{bottom:414.400000pt;}
.ya0{bottom:414.882560pt;}
.y1a4{bottom:415.356160pt;}
.y64{bottom:417.420000pt;}
.y11b{bottom:417.910720pt;}
.y23d{bottom:420.147840pt;}
.y1d6{bottom:420.160000pt;}
.y153{bottom:421.083360pt;}
.y10e{bottom:421.933600pt;}
.y1ab{bottom:423.360000pt;}
.y21f{bottom:423.520000pt;}
.y271{bottom:424.988640pt;}
.y1ea{bottom:425.727840pt;}
.y2be{bottom:426.318400pt;}
.y182{bottom:428.336960pt;}
.y28e{bottom:428.886080pt;}
.y29{bottom:429.120000pt;}
.y63{bottom:430.704000pt;}
.y1b4{bottom:430.880480pt;}
.y2ea{bottom:431.200000pt;}
.y11a{bottom:433.275680pt;}
.ydd{bottom:433.985920pt;}
.y23c{bottom:435.672160pt;}
.y152{bottom:436.448320pt;}
.y10d{bottom:437.298560pt;}
.y9f{bottom:438.242080pt;}
.y220{bottom:438.560000pt;}
.y1a3{bottom:438.875040pt;}
.y270{bottom:440.353600pt;}
.y1e9{bottom:441.252160pt;}
.y2bd{bottom:441.683360pt;}
.y181{bottom:443.861280pt;}
.y62{bottom:443.988000pt;}
.y28d{bottom:444.410400pt;}
.y1d5{bottom:446.880000pt;}
.yc{bottom:446.990669pt;}
.y119{bottom:448.800000pt;}
.ydc{bottom:449.510240pt;}
.y23b{bottom:451.037120pt;}
.y151{bottom:451.972640pt;}
.y2e9{bottom:452.807200pt;}
.y10c{bottom:452.822880pt;}
.y1a2{bottom:454.240000pt;}
.y26f{bottom:455.718560pt;}
.y1e8{bottom:456.617120pt;}
.y61{bottom:457.428000pt;}
.y180{bottom:459.226240pt;}
.y1d4{bottom:461.760000pt;}
.y9e{bottom:461.760960pt;}
.yb{bottom:462.990669pt;}
.y21d{bottom:464.800000pt;}
.ydb{bottom:464.875200pt;}
.y2bc{bottom:465.202240pt;}
.y23a{bottom:467.198880pt;}
.y150{bottom:467.337600pt;}
.y28c{bottom:467.769920pt;}
.y10b{bottom:468.187840pt;}
.y60{bottom:470.712000pt;}
.y1e7{bottom:472.141440pt;}
.y26e{bottom:472.199040pt;}
.y17f{bottom:474.750560pt;}
.y118{bottom:475.520000pt;}
.y2e8{bottom:476.485440pt;}
.ya{bottom:478.990666pt;}
.y21e{bottom:479.840000pt;}
.y1d3{bottom:480.320000pt;}
.yda{bottom:480.399520pt;}
.y2bb{bottom:480.567200pt;}
.y14f{bottom:482.861920pt;}
.y28b{bottom:483.294240pt;}
.y239{bottom:483.520000pt;}
.y10a{bottom:483.712160pt;}
.y5f{bottom:483.996000pt;}
.y9d{bottom:485.120480pt;}
.y1a1{bottom:486.400000pt;}
.y1e6{bottom:487.506400pt;}
.y26d{bottom:487.564000pt;}
.y117{bottom:494.080000pt;}
.y9{bottom:494.990666pt;}
.yd9{bottom:495.764480pt;}
.y2ba{bottom:496.091520pt;}
.y5e{bottom:497.432000pt;}
.y17e{bottom:498.110080pt;}
.y14e{bottom:498.226880pt;}
.y109{bottom:499.077120pt;}
.y2e7{bottom:500.163680pt;}
.y1e5{bottom:503.030720pt;}
.y26c{bottom:503.885120pt;}
.y21c{bottom:506.080000pt;}
.y28a{bottom:506.653760pt;}
.y9c{bottom:508.480000pt;}
.y5d{bottom:510.716000pt;}
.y238{bottom:511.200000pt;}
.y2b9{bottom:511.456480pt;}
.y17d{bottom:513.634400pt;}
.y14d{bottom:513.751200pt;}
.y108{bottom:514.601440pt;}
.y1e4{bottom:518.395680pt;}
.y1a0{bottom:518.560000pt;}
.y26b{bottom:519.250080pt;}
.yd8{bottom:519.283360pt;}
.y289{bottom:522.178080pt;}
.y2d{bottom:522.560000pt;}
.y2e6{bottom:523.841920pt;}
.y5c{bottom:524.000000pt;}
.y17c{bottom:528.999360pt;}
.y14c{bottom:529.116160pt;}
.y237{bottom:529.760000pt;}
.y107{bottom:529.966400pt;}
.y21b{bottom:532.480000pt;}
.y9b{bottom:533.600000pt;}
.y1e3{bottom:533.920000pt;}
.yd7{bottom:534.648320pt;}
.y26a{bottom:534.774400pt;}
.y2b8{bottom:534.975360pt;}
.y5b{bottom:537.432000pt;}
.y2e5{bottom:539.684960pt;}
.y17b{bottom:544.523680pt;}
.y106{bottom:545.490720pt;}
.y288{bottom:545.537600pt;}
.y269{bottom:550.139360pt;}
.y2b7{bottom:550.340320pt;}
.y19f{bottom:550.560000pt;}
.y5a{bottom:550.716000pt;}
.y14b{bottom:552.635040pt;}
.y1e2{bottom:558.720000pt;}
.yd6{bottom:558.804640pt;}
.y17a{bottom:559.888640pt;}
.y287{bottom:561.061920pt;}
.y9a{bottom:561.920000pt;}
.y59{bottom:564.000000pt;}
.y2e4{bottom:564.160000pt;}
.y268{bottom:565.663680pt;}
.y14a{bottom:567.883200pt;}
.y105{bottom:568.850240pt;}
.y8{bottom:573.786667pt;}
.y2b6{bottom:573.859200pt;}
.y179{bottom:575.412960pt;}
.y58{bottom:577.428800pt;}
.y267{bottom:581.028640pt;}
.y19e{bottom:582.720000pt;}
.yd5{bottom:582.960960pt;}
.y149{bottom:583.407520pt;}
.y104{bottom:584.374560pt;}
.y286{bottom:584.421440pt;}
.y21a{bottom:585.120000pt;}
.y2e3{bottom:588.161280pt;}
.y2b5{bottom:589.224160pt;}
.y99{bottom:590.080000pt;}
.y57{bottom:590.710880pt;}
.y178{bottom:590.777920pt;}
.y7{bottom:592.685334pt;}
.y1e1{bottom:594.240000pt;}
.y266{bottom:596.552960pt;}
.yd4{bottom:598.485280pt;}
.y148{bottom:598.772480pt;}
.y103{bottom:599.739520pt;}
.y285{bottom:599.945760pt;}
.y2e2{bottom:603.844960pt;}
.y56{bottom:603.992960pt;}
.y177{bottom:606.302240pt;}
.y218{bottom:611.520000pt;}
.y1e0{bottom:612.640000pt;}
.y2b4{bottom:612.743040pt;}
.yd3{bottom:613.850240pt;}
.y147{bottom:614.296800pt;}
.y19d{bottom:614.880000pt;}
.y102{bottom:615.263840pt;}
.y284{bottom:615.310720pt;}
.y55{bottom:617.435840pt;}
.y98{bottom:618.400000pt;}
.y265{bottom:619.912480pt;}
.y176{bottom:621.667200pt;}
.y217{bottom:622.560000pt;}
.y2b3{bottom:628.108000pt;}
.y2e1{bottom:628.320000pt;}
.yd2{bottom:629.374560pt;}
.y146{bottom:629.661760pt;}
.y101{bottom:630.628800pt;}
.y54{bottom:630.717920pt;}
.y264{bottom:635.436800pt;}
.y283{bottom:638.829600pt;}
.y215{bottom:642.080000pt;}
.y2b2{bottom:643.632320pt;}
.y53{bottom:644.000000pt;}
.yd1{bottom:644.739520pt;}
.y2d9{bottom:645.120000pt;}
.y145{bottom:645.186080pt;}
.y6{bottom:645.598667pt;}
.y100{bottom:646.153120pt;}
.y97{bottom:646.560000pt;}
.y19c{bottom:646.880000pt;}
.y263{bottom:650.801760pt;}
.y2f{bottom:650.880000pt;}
.y282{bottom:654.194560pt;}
.y2e0{bottom:654.240000pt;}
.y216{bottom:657.120000pt;}
.y52{bottom:657.416000pt;}
.y175{bottom:660.551040pt;}
.yff{bottom:661.518080pt;}
.y262{bottom:666.166720pt;}
.y2b1{bottom:666.991840pt;}
.y2d8{bottom:668.000000pt;}
.yd0{bottom:668.258400pt;}
.y144{bottom:668.545600pt;}
.y3{bottom:668.977329pt;}
.y51{bottom:670.700000pt;}
.y96{bottom:674.720000pt;}
.y174{bottom:676.075360pt;}
.yfe{bottom:677.042400pt;}
.y281{bottom:677.713440pt;}
.y19b{bottom:679.040000pt;}
.y261{bottom:682.487840pt;}
.y2b0{bottom:682.516160pt;}
.y213{bottom:683.360000pt;}
.ycf{bottom:683.623360pt;}
.y50{bottom:683.984000pt;}
.y143{bottom:684.069920pt;}
.y33{bottom:691.040000pt;}
.y173{bottom:691.440320pt;}
.yfd{bottom:692.407360pt;}
.y280{bottom:693.078400pt;}
.y2d7{bottom:694.880000pt;}
.y4f{bottom:697.424000pt;}
.y2af{bottom:697.881120pt;}
.y214{bottom:698.400000pt;}
.y260{bottom:698.808960pt;}
.yce{bottom:699.147680pt;}
.y142{bottom:699.434880pt;}
.y95{bottom:701.440000pt;}
.y172{bottom:706.964640pt;}
.yfc{bottom:707.931680pt;}
.y27f{bottom:708.602720pt;}
.y4e{bottom:710.708000pt;}
.y19a{bottom:711.200000pt;}
.y2d6{bottom:713.280000pt;}
.y2ae{bottom:713.405440pt;}
.y25f{bottom:714.173920pt;}
.ycd{bottom:714.512640pt;}
.y141{bottom:714.959200pt;}
.y171{bottom:722.329600pt;}
.yfb{bottom:723.296640pt;}
.y4d{bottom:723.992000pt;}
.y210{bottom:724.640000pt;}
.y94{bottom:724.800000pt;}
.ycc{bottom:730.036960pt;}
.y140{bottom:730.324160pt;}
.y25e{bottom:730.495040pt;}
.y197{bottom:731.520000pt;}
.y27e{bottom:731.962240pt;}
.y2ad{bottom:736.764960pt;}
.y4c{bottom:737.432000pt;}
.y170{bottom:737.853920pt;}
.yfa{bottom:738.820960pt;}
.y212{bottom:739.840000pt;}
.y13f{bottom:745.848480pt;}
.y25d{bottom:746.816160pt;}
.y27d{bottom:747.486560pt;}
.y199{bottom:748.320000pt;}
.y93{bottom:749.920000pt;}
.y4b{bottom:750.716000pt;}
.y2ac{bottom:752.289280pt;}
.ybd{bottom:752.939200pt;}
.y16f{bottom:753.218880pt;}
.ycb{bottom:753.396480pt;}
.y1d2{bottom:755.520000pt;}
.y196{bottom:758.400000pt;}
.y13e{bottom:761.213440pt;}
.yf9{bottom:762.180480pt;}
.y25c{bottom:762.340480pt;}
.y27c{bottom:762.851520pt;}
.y4a{bottom:764.000000pt;}
.y20c{bottom:765.920000pt;}
.y16e{bottom:768.743200pt;}
.yca{bottom:768.920800pt;}
.y2ab{bottom:775.648800pt;}
.ybc{bottom:776.298720pt;}
.y92{bottom:776.480000pt;}
.y13d{bottom:776.737760pt;}
.y49{bottom:777.440000pt;}
.yf8{bottom:777.704800pt;}
.y25b{bottom:777.705440pt;}
.y1d1{bottom:778.675680pt;}
.y20e{bottom:781.120000pt;}
.y2{bottom:781.661334pt;}
.y16d{bottom:784.108160pt;}
.yc9{bottom:784.285760pt;}
.y27b{bottom:786.370400pt;}
.y48{bottom:790.679840pt;}
.y2aa{bottom:791.173120pt;}
.y13c{bottom:792.102720pt;}
.yf7{bottom:793.069760pt;}
.y25a{bottom:793.229760pt;}
.y82{bottom:793.600000pt;}
.y1d0{bottom:794.040640pt;}
.y16c{bottom:799.632480pt;}
.y85{bottom:799.680000pt;}
.yc8{bottom:799.810080pt;}
.ybb{bottom:799.817600pt;}
.y91{bottom:800.000000pt;}
.y27a{bottom:801.735360pt;}
.y47{bottom:803.961920pt;}
.y2a9{bottom:806.538080pt;}
.y20b{bottom:807.360000pt;}
.y13b{bottom:807.627040pt;}
.yf6{bottom:808.594080pt;}
.y1cf{bottom:809.564960pt;}
.y16b{bottom:814.997440pt;}
.y259{bottom:816.589280pt;}
.y46{bottom:817.404800pt;}
.y1c4{bottom:821.398400pt;}
.y13a{bottom:822.992000pt;}
.yc7{bottom:823.169600pt;}
.y90{bottom:823.360000pt;}
.yba{bottom:823.814560pt;}
.yf5{bottom:823.959040pt;}
.y1ce{bottom:824.929920pt;}
.y279{bottom:825.254240pt;}
.y2a8{bottom:830.056960pt;}
.y16a{bottom:830.521760pt;}
.y45{bottom:830.686880pt;}
.y258{bottom:832.113600pt;}
.y20a{bottom:833.600000pt;}
.y1c3{bottom:836.763360pt;}
.y139{bottom:838.516320pt;}
.y7a{bottom:838.560000pt;}
.yc6{bottom:838.693920pt;}
.y2d3{bottom:839.040000pt;}
.yf4{bottom:839.483360pt;}
.y1cd{bottom:840.454240pt;}
.y278{bottom:840.619200pt;}
.y44{bottom:843.968960pt;}
.y2a7{bottom:845.421920pt;}
.y169{bottom:845.886720pt;}
.y257{bottom:847.478560pt;}
.y8f{bottom:848.480000pt;}
.y1c2{bottom:852.128320pt;}
.y138{bottom:853.881280pt;}
.yc5{bottom:854.058880pt;}
.yf3{bottom:854.848320pt;}
.y116{bottom:855.200000pt;}
.y1cc{bottom:855.819200pt;}
.yb9{bottom:855.978720pt;}
.y81{bottom:856.640000pt;}
.y43{bottom:857.411840pt;}
.y1{bottom:859.312000pt;}
.y208{bottom:860.000000pt;}
.y2a6{bottom:860.946240pt;}
.y256{bottom:863.002880pt;}
.y2d2{bottom:863.200000pt;}
.y277{bottom:864.138080pt;}
.y1c1{bottom:868.449440pt;}
.y137{bottom:869.405600pt;}
.yc4{bottom:869.583200pt;}
.y7f{bottom:870.080000pt;}
.y42{bottom:870.693920pt;}
.y1cb{bottom:871.343520pt;}
.yb8{bottom:871.503040pt;}
.y8e{bottom:876.640000pt;}
.yf2{bottom:878.367200pt;}
.y255{bottom:878.367840pt;}
.y276{bottom:879.503040pt;}
.y7d{bottom:883.360000pt;}
.y41{bottom:883.976000pt;}
.y2a5{bottom:884.305760pt;}
.y136{bottom:884.770560pt;}
.y206{bottom:886.240000pt;}
.y1ca{bottom:886.708480pt;}
.yb7{bottom:886.868000pt;}
.y2d1{bottom:888.000000pt;}
.y236{bottom:891.040000pt;}
.yc3{bottom:892.942720pt;}
.yf1{bottom:893.732160pt;}
.y254{bottom:893.892160pt;}
.yb1{bottom:895.492160pt;}
.y40{bottom:897.418880pt;}
.y2a4{bottom:899.830080pt;}
.y135{bottom:900.294880pt;}
.yb6{bottom:902.392320pt;}
.y275{bottom:903.021920pt;}
.y1c9{bottom:903.029600pt;}
.y6d{bottom:904.160000pt;}
.y8d{bottom:904.800000pt;}
.yc2{bottom:908.467040pt;}
.yf0{bottom:909.256480pt;}
.y253{bottom:909.257120pt;}
.y3f{bottom:910.700960pt;}
.yb0{bottom:910.857120pt;}
.y204{bottom:912.640000pt;}
.y2d0{bottom:912.800000pt;}
.y235{bottom:914.068960pt;}
.y134{bottom:915.659840pt;}
.y2cc{bottom:917.922080pt;}
.y274{bottom:918.386880pt;}
.y1c8{bottom:918.394560pt;}
.y2a3{bottom:923.189600pt;}
.yc1{bottom:923.832000pt;}
.y203{bottom:923.840000pt;}
.y3e{bottom:923.983040pt;}
.yef{bottom:924.621440pt;}
.y252{bottom:924.781440pt;}
.yaf{bottom:926.381440pt;}
.y78{bottom:926.720000pt;}
.y234{bottom:929.433920pt;}
.y168{bottom:931.184160pt;}
.y8c{bottom:933.120000pt;}
.yb5{bottom:933.746400pt;}
.y273{bottom:933.911200pt;}
.y1c7{bottom:934.715680pt;}
.y3d{bottom:937.425920pt;}
.y2cf{bottom:937.760000pt;}
.y2d4{bottom:938.560000pt;}
.y2a2{bottom:938.713920pt;}
.y133{bottom:939.178720pt;}
.yc0{bottom:939.196960pt;}
.yee{bottom:940.145760pt;}
.y251{bottom:940.146400pt;}
.y2cb{bottom:941.281600pt;}
.yae{bottom:941.746400pt;}
.y1fe{bottom:943.200000pt;}
.y233{bottom:945.595680pt;}
.y167{bottom:946.549120pt;}
.yb4{bottom:949.270720pt;}
.y1c6{bottom:950.240000pt;}
.y3c{bottom:950.708000pt;}
.y132{bottom:954.543680pt;}
.ybf{bottom:955.040000pt;}
.yed{bottom:955.510720pt;}
.y250{bottom:955.670720pt;}
.yad{bottom:957.270720pt;}
.y201{bottom:958.240000pt;}
.y8b{bottom:961.280000pt;}
.y166{bottom:962.073440pt;}
.y232{bottom:962.076160pt;}
.y2ce{bottom:962.560000pt;}
.y3b{bottom:963.990080pt;}
.yb3{bottom:964.635680pt;}
.y2ca{bottom:964.800480pt;}
.y131{bottom:970.068000pt;}
.yec{bottom:971.035040pt;}
.y24f{bottom:971.035680pt;}
.yac{bottom:972.635680pt;}
.y272{bottom:972.795040pt;}
.y200{bottom:973.120000pt;}
.y202{bottom:973.280000pt;}
.y1c5{bottom:975.200000pt;}
.y3a{bottom:977.432960pt;}
.y231{bottom:977.441120pt;}
.y2a1{bottom:977.597760pt;}
.y2ff{bottom:977.920000pt;}
.ybe{bottom:979.360000pt;}
.yb2{bottom:980.160000pt;}
.y1fd{bottom:980.164000pt;}
.y130{bottom:985.432960pt;}
.yeb{bottom:986.400000pt;}
.y24e{bottom:986.560000pt;}
.y2cd{bottom:987.360000pt;}
.y8a{bottom:987.840000pt;}
.yab{bottom:988.160000pt;}
.y2d5{bottom:988.640000pt;}
.y39{bottom:990.715040pt;}
.y2df{bottom:992.962720pt;}
.y12f{bottom:1000.957280pt;}
.y38{bottom:1003.997120pt;}
.yea{bottom:1011.680000pt;}
.y24d{bottom:1011.840000pt;}
.yaa{bottom:1013.120000pt;}
.y89{bottom:1013.280000pt;}
.y12e{bottom:1016.322240pt;}
.y2a0{bottom:1016.481600pt;}
.y1df{bottom:1016.640000pt;}
.y1fc{bottom:1016.800000pt;}
.y37{bottom:1017.440000pt;}
.y70{bottom:1020.160000pt;}
.y34{bottom:1063.360000pt;}
.y27{bottom:1071.840000pt;}
.hc{height:16.800000pt;}
.h1d{height:18.240000pt;}
.h24{height:18.977280pt;}
.ha{height:19.680000pt;}
.he{height:22.720000pt;}
.h10{height:22.878667pt;}
.h3c{height:23.520000pt;}
.h2e{height:25.600000pt;}
.h32{height:25.601333pt;}
.h2f{height:25.758667pt;}
.h2d{height:25.760000pt;}
.h7{height:28.560000pt;}
.h31{height:29.760000pt;}
.h2c{height:29.921333pt;}
.h15{height:30.273280pt;}
.h1c{height:30.560000pt;}
.h39{height:30.744960pt;}
.h3b{height:31.750511pt;}
.hd{height:33.888000pt;}
.h1b{height:34.416000pt;}
.h9{height:37.502720pt;}
.h38{height:38.087040pt;}
.h21{height:38.304349pt;}
.h30{height:40.638667pt;}
.h33{height:40.640000pt;}
.h6{height:40.800000pt;}
.h16{height:41.056696pt;}
.h18{height:41.072696pt;}
.h17{height:41.104696pt;}
.h27{height:42.457833pt;}
.h3{height:42.840000pt;}
.h20{height:45.184000pt;}
.h1f{height:45.436077pt;}
.h34{height:45.571701pt;}
.h23{height:45.578101pt;}
.h35{height:45.609461pt;}
.h26{height:45.752821pt;}
.h37{height:45.888000pt;}
.h25{height:46.028021pt;}
.h1e{height:46.149818pt;}
.h2{height:48.960000pt;}
.h22{height:49.841804pt;}
.h28{height:50.720000pt;}
.hb{height:53.688960pt;}
.h36{height:54.742261pt;}
.h2b{height:55.680000pt;}
.h12{height:60.094720pt;}
.h1a{height:68.800000pt;}
.h5{height:69.360000pt;}
.h2a{height:96.320000pt;}
.h14{height:105.278720pt;}
.h4{height:105.826671pt;}
.h3a{height:108.160000pt;}
.h11{height:111.840000pt;}
.h3d{height:124.640000pt;}
.hf{height:133.920000pt;}
.h19{height:139.998667pt;}
.h29{height:156.000000pt;}
.h13{height:162.560000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:21.280000pt;}
.w1a{width:21.440000pt;}
.wf{width:93.280000pt;}
.w13{width:95.838667pt;}
.w15{width:96.480000pt;}
.w6{width:96.640000pt;}
.w14{width:97.120000pt;}
.w17{width:98.080000pt;}
.w16{width:101.598667pt;}
.w10{width:124.800000pt;}
.w19{width:125.920000pt;}
.w5{width:165.280000pt;}
.w11{width:174.880000pt;}
.w8{width:190.241333pt;}
.wd{width:257.118667pt;}
.w1b{width:263.360000pt;}
.w7{width:306.880000pt;}
.w4{width:334.880000pt;}
.w18{width:491.680000pt;}
.w2{width:566.928019pt;}
.wc{width:590.400000pt;}
.w12{width:601.120000pt;}
.wb{width:601.920000pt;}
.we{width:614.880000pt;}
.w9{width:652.800000pt;}
.wa{width:654.078667pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4e{left:4.640000pt;}
.x2b{left:7.200000pt;}
.x1d{left:15.360000pt;}
.x1a{left:16.960000pt;}
.x4a{left:18.880000pt;}
.x47{left:20.000000pt;}
.x49{left:21.120000pt;}
.x48{left:24.640000pt;}
.x46{left:26.720000pt;}
.x42{left:33.760000pt;}
.x41{left:38.400000pt;}
.x44{left:39.520000pt;}
.x43{left:40.640000pt;}
.x45{left:44.160000pt;}
.x38{left:46.400000pt;}
.x39{left:47.360000pt;}
.xa{left:48.320000pt;}
.x3a{left:52.000000pt;}
.x3b{left:53.120000pt;}
.x3d{left:54.240000pt;}
.x3c{left:57.760000pt;}
.x3e{left:59.200000pt;}
.x40{left:60.320000pt;}
.x1f{left:62.240000pt;}
.x3f{left:63.680000pt;}
.x4b{left:65.440000pt;}
.x35{left:67.200000pt;}
.x36{left:68.320000pt;}
.x37{left:69.440000pt;}
.xb{left:72.160000pt;}
.x2a{left:87.360000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:96.480000pt;}
.x15{left:103.040000pt;}
.x4c{left:109.440000pt;}
.x16{left:113.280000pt;}
.x18{left:118.404320pt;}
.x27{left:121.440000pt;}
.x13{left:127.520000pt;}
.x12{left:139.200000pt;}
.x14{left:149.440000pt;}
.x8{left:165.280000pt;}
.x4{left:180.874667pt;}
.x11{left:214.720000pt;}
.x2d{left:221.120000pt;}
.x34{left:234.080000pt;}
.xf{left:263.200000pt;}
.xe{left:273.760000pt;}
.x19{left:293.600000pt;}
.x1b{left:306.400000pt;}
.x2e{left:310.880000pt;}
.x22{left:317.280000pt;}
.x21{left:323.680000pt;}
.x24{left:332.325120pt;}
.x23{left:338.885440pt;}
.x10{left:377.440000pt;}
.x1c{left:387.520000pt;}
.x2c{left:389.442400pt;}
.xc{left:392.640000pt;}
.x5{left:396.800000pt;}
.x3{left:404.408000pt;}
.x2f{left:408.640000pt;}
.x30{left:415.520000pt;}
.x4f{left:429.760000pt;}
.x6{left:432.480000pt;}
.x26{left:483.678400pt;}
.x25{left:489.920000pt;}
.x31{left:505.760000pt;}
.x1e{left:513.120000pt;}
.x29{left:571.849600pt;}
.x28{left:574.240000pt;}
.x7{left:604.800000pt;}
.x32{left:608.000000pt;}
.x33{left:614.880000pt;}
.x20{left:620.160000pt;}
.x9{left:651.360000pt;}
.x17{left:696.480000pt;}
.x4d{left:756.640000pt;}
}




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