
    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_0b7365ba04c39c8eb637a207.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b0724ace0a1cb7fae6440dc0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.869141;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_6e92b26769b0edff1abf4ed1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_47b607096ced82939d483420.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0a6964f2d6963c33ef506b8b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_7c99e6b098ca3faa8fd2dbc3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d5d440cbd636b7556bac1544.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.869629;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_c5ae98294135103efaf2afc1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_06ab19f3f1c9077e196a1b13.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7bc2332e86fbabf9388823ba.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_d5b9f8a0d25ccdcfcf974ea2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.601074;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_cf84272330bb55e1a78a751d.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.m2{transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250365,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);}
.v0{vertical-align:0.000000px;}
.ls46{letter-spacing:-0.936000px;}
.ls2c{letter-spacing:-0.864000px;}
.ls4c{letter-spacing:-0.792000px;}
.ls8f{letter-spacing:-0.765206px;}
.ls8c{letter-spacing:-0.756000px;}
.ls90{letter-spacing:-0.710549px;}
.ls8b{letter-spacing:-0.702000px;}
.ls91{letter-spacing:-0.655891px;}
.ls2b{letter-spacing:-0.648000px;}
.ls3b{letter-spacing:-0.622080px;}
.ls34{letter-spacing:-0.576000px;}
.ls92{letter-spacing:-0.546576px;}
.ls3a{letter-spacing:-0.544320px;}
.ls42{letter-spacing:-0.504000px;}
.ls78{letter-spacing:-0.478080px;}
.ls39{letter-spacing:-0.463680px;}
.ls4d{letter-spacing:-0.432000px;}
.ls2a{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.336960px;}
.ls81{letter-spacing:-0.331200px;}
.ls89{letter-spacing:-0.324000px;}
.ls50{letter-spacing:-0.311040px;}
.ls7c{letter-spacing:-0.298800px;}
.ls4{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.287280px;}
.ls8e{letter-spacing:-0.273288px;}
.ls82{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.264960px;}
.ls3{letter-spacing:-0.263520px;}
.lsb{letter-spacing:-0.252720px;}
.ls7b{letter-spacing:-0.239040px;}
.ls5b{letter-spacing:-0.233280px;}
.ls26{letter-spacing:-0.216000px;}
.ls4e{letter-spacing:-0.198720px;}
.ls8{letter-spacing:-0.168480px;}
.ls83{letter-spacing:-0.162000px;}
.ls29{letter-spacing:-0.155520px;}
.ls7{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.132480px;}
.ls69{letter-spacing:-0.119520px;}
.ls84{letter-spacing:-0.108000px;}
.ls13{letter-spacing:-0.095760px;}
.ls3f{letter-spacing:-0.077760px;}
.ls28{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.066240px;}
.ls6a{letter-spacing:-0.059760px;}
.ls87{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls7d{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.039744px;}
.ls7e{letter-spacing:0.054000px;}
.ls7a{letter-spacing:0.059760px;}
.ls1e{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.084240px;}
.ls3e{letter-spacing:0.095760px;}
.ls8d{letter-spacing:0.109315px;}
.ls12{letter-spacing:0.119232px;}
.ls31{letter-spacing:0.119520px;}
.lsf{letter-spacing:0.132480px;}
.ls5{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.155520px;}
.ls86{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.168480px;}
.ls16{letter-spacing:0.198720px;}
.ls5d{letter-spacing:0.208800px;}
.ls6{letter-spacing:0.216000px;}
.ls96{letter-spacing:0.218630px;}
.ls2e{letter-spacing:0.233280px;}
.ls65{letter-spacing:0.239040px;}
.ls18{letter-spacing:0.264960px;}
.ls85{letter-spacing:0.270000px;}
.ls74{letter-spacing:0.274896px;}
.ls77{letter-spacing:0.280872px;}
.ls0{letter-spacing:0.288000px;}
.ls70{letter-spacing:0.292824px;}
.ls33{letter-spacing:0.295200px;}
.ls6c{letter-spacing:0.298800px;}
.ls36{letter-spacing:0.302400px;}
.ls5a{letter-spacing:0.316800px;}
.ls88{letter-spacing:0.324000px;}
.ls93{letter-spacing:0.327946px;}
.ls72{letter-spacing:0.334656px;}
.ls1b{letter-spacing:0.360000px;}
.ls5f{letter-spacing:0.367200px;}
.ls5e{letter-spacing:0.374400px;}
.ls6f{letter-spacing:0.382464px;}
.lsc{letter-spacing:0.383040px;}
.ls57{letter-spacing:0.418320px;}
.ls55{letter-spacing:0.437760px;}
.ls73{letter-spacing:0.454176px;}
.ls67{letter-spacing:0.460152px;}
.ls79{letter-spacing:0.478080px;}
.ls95{letter-spacing:0.491918px;}
.ls6e{letter-spacing:0.496008px;}
.ls6d{letter-spacing:0.501984px;}
.ls66{letter-spacing:0.519912px;}
.ls75{letter-spacing:0.597600px;}
.ls60{letter-spacing:0.622080px;}
.ls68{letter-spacing:0.657360px;}
.ls64{letter-spacing:0.705168px;}
.ls94{letter-spacing:0.819864px;}
.ls27{letter-spacing:0.936000px;}
.ls59{letter-spacing:1.008000px;}
.ls6b{letter-spacing:1.159344px;}
.ls76{letter-spacing:1.189224px;}
.ls71{letter-spacing:1.201176px;}
.ls47{letter-spacing:1.589760px;}
.ls61{letter-spacing:1.728000px;}
.ls30{letter-spacing:1.735200px;}
.ls51{letter-spacing:2.448000px;}
.ls4b{letter-spacing:2.476800px;}
.ls40{letter-spacing:3.168000px;}
.ls38{letter-spacing:3.888000px;}
.ls2d{letter-spacing:4.608000px;}
.ls3c{letter-spacing:5.328000px;}
.ls41{letter-spacing:6.048000px;}
.ls45{letter-spacing:6.768000px;}
.ls4a{letter-spacing:8.208000px;}
.ls54{letter-spacing:9.648000px;}
.ls21{letter-spacing:10.368000px;}
.ls1f{letter-spacing:11.088000px;}
.ls8a{letter-spacing:11.556000px;}
.ls3d{letter-spacing:11.808000px;}
.ls24{letter-spacing:12.528000px;}
.ls48{letter-spacing:13.248000px;}
.ls37{letter-spacing:13.968000px;}
.ls44{letter-spacing:14.688000px;}
.ls5c{letter-spacing:16.848000px;}
.ls1c{letter-spacing:17.568000px;}
.ls53{letter-spacing:18.288000px;}
.ls4f{letter-spacing:19.735200px;}
.ls2f{letter-spacing:20.448000px;}
.ls23{letter-spacing:24.048000px;}
.ls19{letter-spacing:24.509520px;}
.ls43{letter-spacing:24.768000px;}
.ls1d{letter-spacing:28.368000px;}
.ls20{letter-spacing:30.528000px;}
.ls80{letter-spacing:33.156000px;}
.ls56{letter-spacing:33.264000px;}
.ls22{letter-spacing:52.565760px;}
.lsd{letter-spacing:54.008640px;}
.ls35{letter-spacing:54.702720px;}
.ls49{letter-spacing:54.864000px;}
.ls58{letter-spacing:64.016640px;}
.ls52{letter-spacing:74.304000px;}
.ls7f{letter-spacing:81.396000px;}
.lse{letter-spacing:99.492480px;}
.ls32{letter-spacing:120.931200px;}
.ls10{letter-spacing:183.021120px;}
.ls63{letter-spacing:848.753280px;}
.ls62{letter-spacing:849.029760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(46,116,181),0 0.015em rgb(46,116,181),0.015em 0 rgb(46,116,181),0 -0.015em  rgb(46,116,181);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(46,116,181);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws118{word-spacing:-21.737520px;}
.ws16{word-spacing:-21.354480px;}
.ws1{word-spacing:-19.122480px;}
.ws0{word-spacing:-18.869760px;}
.ws10a{word-spacing:-18.195840px;}
.ws93{word-spacing:-17.807040px;}
.ws1c{word-spacing:-17.418240px;}
.wsfc{word-spacing:-17.340480px;}
.ws1a{word-spacing:-17.208000px;}
.ws121{word-spacing:-17.091360px;}
.ws82{word-spacing:-17.029440px;}
.ws21{word-spacing:-16.632000px;}
.ws11f{word-spacing:-16.613280px;}
.wsa7{word-spacing:-16.560000px;}
.ws119{word-spacing:-16.493760px;}
.ws5c{word-spacing:-16.488000px;}
.ws17{word-spacing:-16.416000px;}
.ws18{word-spacing:-16.344000px;}
.ws19{word-spacing:-16.272000px;}
.ws1b{word-spacing:-16.200000px;}
.ws120{word-spacing:-16.135200px;}
.ws1f{word-spacing:-16.128000px;}
.ws1d{word-spacing:-16.056000px;}
.ws74{word-spacing:-15.984000px;}
.ws20{word-spacing:-15.912000px;}
.wsbd{word-spacing:-15.840000px;}
.ws83{word-spacing:-15.696000px;}
.ws75{word-spacing:-15.624000px;}
.wsea{word-spacing:-15.480000px;}
.ws1e{word-spacing:-15.408000px;}
.wsf{word-spacing:-15.235200px;}
.wsd{word-spacing:-15.168960px;}
.wscb{word-spacing:-14.970240px;}
.wse{word-spacing:-14.904000px;}
.wsb{word-spacing:-14.837760px;}
.wscc{word-spacing:-14.771520px;}
.wsc{word-spacing:-14.705280px;}
.ws194{word-spacing:-12.680563px;}
.ws12b{word-spacing:-12.528000px;}
.ws129{word-spacing:-12.474000px;}
.ws193{word-spacing:-12.461933px;}
.ws131{word-spacing:-12.420000px;}
.ws12a{word-spacing:-12.366000px;}
.ws12e{word-spacing:-12.258000px;}
.ws130{word-spacing:-12.204000px;}
.ws12d{word-spacing:-12.150000px;}
.ws128{word-spacing:-12.096000px;}
.ws18f{word-spacing:-12.079330px;}
.ws12c{word-spacing:-12.042000px;}
.ws127{word-spacing:-11.988000px;}
.ws126{word-spacing:-11.934000px;}
.ws12f{word-spacing:-11.880000px;}
.ws192{word-spacing:-11.806042px;}
.ws191{word-spacing:-11.696726px;}
.ws190{word-spacing:-11.587411px;}
.wsde{word-spacing:-4.320000px;}
.ws29{word-spacing:-4.104000px;}
.ws2a{word-spacing:-3.672000px;}
.ws41{word-spacing:-3.528000px;}
.ws42{word-spacing:-3.384000px;}
.ws9a{word-spacing:-3.240000px;}
.ws10e{word-spacing:-3.024000px;}
.ws4a{word-spacing:-2.952000px;}
.wse8{word-spacing:-2.880000px;}
.wsaf{word-spacing:-2.808000px;}
.ws90{word-spacing:-2.736000px;}
.ws53{word-spacing:-2.664000px;}
.ws160{word-spacing:-2.646000px;}
.ws176{word-spacing:-2.592000px;}
.ws161{word-spacing:-2.538000px;}
.ws81{word-spacing:-2.450880px;}
.wsc5{word-spacing:-2.304000px;}
.wsdf{word-spacing:-2.232000px;}
.ws24{word-spacing:-2.088000px;}
.ws9c{word-spacing:-2.016000px;}
.ws91{word-spacing:-1.944000px;}
.ws181{word-spacing:-1.836000px;}
.wsb1{word-spacing:-1.656000px;}
.wsac{word-spacing:-1.512000px;}
.wsf3{word-spacing:-1.440000px;}
.ws46{word-spacing:-1.224000px;}
.ws19b{word-spacing:-1.202467px;}
.wsf0{word-spacing:-0.936000px;}
.ws19e{word-spacing:-0.874522px;}
.wsbc{word-spacing:-0.864000px;}
.ws7f{word-spacing:-0.861120px;}
.ws43{word-spacing:-0.792000px;}
.ws14{word-spacing:-0.728640px;}
.ws19a{word-spacing:-0.710549px;}
.ws25{word-spacing:-0.648000px;}
.ws97{word-spacing:-0.576000px;}
.ws15{word-spacing:-0.529920px;}
.ws45{word-spacing:-0.504000px;}
.ws19f{word-spacing:-0.491918px;}
.ws22{word-spacing:-0.466560px;}
.ws4d{word-spacing:-0.360000px;}
.ws80{word-spacing:-0.331200px;}
.ws162{word-spacing:-0.324000px;}
.ws85{word-spacing:-0.311040px;}
.ws2d{word-spacing:-0.288000px;}
.ws9b{word-spacing:-0.264960px;}
.ws95{word-spacing:-0.233280px;}
.ws1a0{word-spacing:-0.218630px;}
.ws8b{word-spacing:-0.216000px;}
.ws9{word-spacing:-0.168480px;}
.ws5{word-spacing:-0.144000px;}
.ws123{word-spacing:-0.119520px;}
.ws195{word-spacing:-0.109315px;}
.ws94{word-spacing:-0.095760px;}
.ws2f{word-spacing:-0.072000px;}
.ws158{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws138{word-spacing:0.054000px;}
.ws11d{word-spacing:0.059760px;}
.ws84{word-spacing:0.066240px;}
.ws6{word-spacing:0.072000px;}
.wse0{word-spacing:0.077760px;}
.ws10{word-spacing:0.095760px;}
.ws13d{word-spacing:0.108000px;}
.ws122{word-spacing:0.119520px;}
.ws11{word-spacing:0.132480px;}
.ws96{word-spacing:0.144000px;}
.ws133{word-spacing:0.162000px;}
.ws19c{word-spacing:0.163973px;}
.ws124{word-spacing:0.179280px;}
.ws13{word-spacing:0.198720px;}
.ws23{word-spacing:0.216000px;}
.ws125{word-spacing:0.239040px;}
.wsa{word-spacing:0.252720px;}
.ws134{word-spacing:0.270000px;}
.ws199{word-spacing:0.273288px;}
.ws7a{word-spacing:0.288000px;}
.ws8d{word-spacing:0.311040px;}
.ws141{word-spacing:0.324000px;}
.ws198{word-spacing:0.327946px;}
.ws8{word-spacing:0.336960px;}
.ws44{word-spacing:0.360000px;}
.ws169{word-spacing:0.378000px;}
.ws196{word-spacing:0.382603px;}
.ws12{word-spacing:0.397440px;}
.ws7{word-spacing:0.432000px;}
.ws132{word-spacing:0.463680px;}
.ws68{word-spacing:0.504000px;}
.ws19d{word-spacing:0.546576px;}
.ws4{word-spacing:0.576000px;}
.ws7b{word-spacing:0.596160px;}
.ws39{word-spacing:0.648000px;}
.ws3{word-spacing:0.658800px;}
.wsee{word-spacing:0.699840px;}
.ws172{word-spacing:0.702000px;}
.ws183{word-spacing:0.756000px;}
.ws197{word-spacing:0.765206px;}
.ws11e{word-spacing:0.776880px;}
.wsa9{word-spacing:0.792000px;}
.wsd5{word-spacing:0.864000px;}
.ws173{word-spacing:0.918000px;}
.ws38{word-spacing:0.936000px;}
.ws16d{word-spacing:1.026000px;}
.wsb0{word-spacing:1.224000px;}
.wsfe{word-spacing:1.296000px;}
.ws7c{word-spacing:1.324800px;}
.ws6b{word-spacing:1.368000px;}
.wsae{word-spacing:1.440000px;}
.wsbf{word-spacing:1.512000px;}
.ws72{word-spacing:1.656000px;}
.ws17a{word-spacing:1.674000px;}
.wse2{word-spacing:1.800000px;}
.ws7d{word-spacing:1.854720px;}
.wsdd{word-spacing:1.944000px;}
.ws3a{word-spacing:2.088000px;}
.wsc9{word-spacing:2.304000px;}
.wse3{word-spacing:2.332800px;}
.ws3b{word-spacing:2.376000px;}
.ws7e{word-spacing:2.583360px;}
.wse4{word-spacing:2.664000px;}
.ws58{word-spacing:2.808000px;}
.ws10c{word-spacing:2.880000px;}
.ws9d{word-spacing:2.952000px;}
.ws167{word-spacing:3.024000px;}
.ws27{word-spacing:3.096000px;}
.wsc3{word-spacing:3.384000px;}
.ws6a{word-spacing:3.528000px;}
.wsec{word-spacing:3.600000px;}
.ws59{word-spacing:3.816000px;}
.wsb7{word-spacing:3.960000px;}
.wsbb{word-spacing:4.104000px;}
.wsd7{word-spacing:4.176000px;}
.ws6c{word-spacing:4.248000px;}
.ws186{word-spacing:4.374000px;}
.wsc6{word-spacing:4.392000px;}
.wsff{word-spacing:4.510080px;}
.ws6d{word-spacing:4.536000px;}
.wsd8{word-spacing:4.752000px;}
.wsed{word-spacing:4.896000px;}
.ws89{word-spacing:4.968000px;}
.wsa3{word-spacing:5.112000px;}
.ws101{word-spacing:5.184000px;}
.ws35{word-spacing:5.256000px;}
.ws166{word-spacing:5.292000px;}
.ws100{word-spacing:5.544000px;}
.ws92{word-spacing:5.688000px;}
.wsd9{word-spacing:5.832000px;}
.wse9{word-spacing:5.904000px;}
.ws64{word-spacing:5.976000px;}
.ws148{word-spacing:5.994000px;}
.wsc4{word-spacing:6.264000px;}
.wsf9{word-spacing:6.336000px;}
.ws62{word-spacing:6.408000px;}
.ws105{word-spacing:6.552000px;}
.ws65{word-spacing:6.696000px;}
.wsf2{word-spacing:6.984000px;}
.ws69{word-spacing:7.128000px;}
.wsda{word-spacing:7.272000px;}
.wsa0{word-spacing:7.344000px;}
.ws63{word-spacing:7.416000px;}
.ws9f{word-spacing:7.704000px;}
.ws54{word-spacing:7.848000px;}
.ws146{word-spacing:7.884000px;}
.ws109{word-spacing:8.064000px;}
.ws55{word-spacing:8.136000px;}
.ws13e{word-spacing:8.208000px;}
.ws104{word-spacing:8.424000px;}
.ws103{word-spacing:8.496000px;}
.ws47{word-spacing:8.568000px;}
.ws5a{word-spacing:8.856000px;}
.ws175{word-spacing:8.910000px;}
.ws49{word-spacing:9.000000px;}
.wsb8{word-spacing:9.144000px;}
.ws48{word-spacing:9.288000px;}
.wsfd{word-spacing:9.432000px;}
.ws34{word-spacing:9.576000px;}
.ws179{word-spacing:9.612000px;}
.ws98{word-spacing:9.720000px;}
.ws33{word-spacing:9.936000px;}
.ws67{word-spacing:10.008000px;}
.ws37{word-spacing:10.152000px;}
.ws17b{word-spacing:10.260000px;}
.ws36{word-spacing:10.296000px;}
.ws10b{word-spacing:10.584000px;}
.ws8c{word-spacing:10.656000px;}
.ws40{word-spacing:10.728000px;}
.ws17e{word-spacing:10.800000px;}
.ws32{word-spacing:10.872000px;}
.ws26{word-spacing:11.016000px;}
.ws3f{word-spacing:11.304000px;}
.wse6{word-spacing:11.376000px;}
.ws5b{word-spacing:11.448000px;}
.wsb5{word-spacing:11.520000px;}
.ws88{word-spacing:11.592000px;}
.wsd2{word-spacing:11.664000px;}
.ws31{word-spacing:11.736000px;}
.ws165{word-spacing:11.826000px;}
.ws66{word-spacing:12.168000px;}
.ws30{word-spacing:12.456000px;}
.ws52{word-spacing:12.600000px;}
.ws51{word-spacing:12.888000px;}
.wsf7{word-spacing:13.032000px;}
.ws5e{word-spacing:13.176000px;}
.ws171{word-spacing:13.230000px;}
.wsb6{word-spacing:13.464000px;}
.ws6e{word-spacing:13.608000px;}
.wscf{word-spacing:13.680000px;}
.ws156{word-spacing:13.716000px;}
.ws73{word-spacing:13.896000px;}
.ws3c{word-spacing:14.328000px;}
.wsdc{word-spacing:14.400000px;}
.wsd6{word-spacing:14.472000px;}
.wsca{word-spacing:14.616000px;}
.wsef{word-spacing:15.048000px;}
.wsad{word-spacing:15.192000px;}
.ws11c{word-spacing:15.336000px;}
.ws5d{word-spacing:15.768000px;}
.wsc2{word-spacing:16.056000px;}
.wsc1{word-spacing:16.344000px;}
.ws79{word-spacing:16.488000px;}
.wsc0{word-spacing:16.704000px;}
.ws10f{word-spacing:16.718400px;}
.ws57{word-spacing:16.776000px;}
.ws174{word-spacing:16.848000px;}
.ws110{word-spacing:17.136000px;}
.ws2b{word-spacing:17.208000px;}
.wsb3{word-spacing:17.352000px;}
.ws2c{word-spacing:17.496000px;}
.ws152{word-spacing:17.550000px;}
.wsb2{word-spacing:17.784000px;}
.ws8a{word-spacing:18.216000px;}
.wse7{word-spacing:18.576000px;}
.ws150{word-spacing:19.008000px;}
.ws99{word-spacing:19.368000px;}
.wsd4{word-spacing:19.512000px;}
.wsf1{word-spacing:19.656000px;}
.wsd3{word-spacing:20.139840px;}
.ws17f{word-spacing:20.196000px;}
.wsf4{word-spacing:20.232000px;}
.wsce{word-spacing:20.376000px;}
.ws153{word-spacing:20.466000px;}
.ws117{word-spacing:20.808000px;}
.ws71{word-spacing:21.096000px;}
.ws70{word-spacing:21.384000px;}
.ws8e{word-spacing:21.528000px;}
.ws8f{word-spacing:21.816000px;}
.wseb{word-spacing:22.104000px;}
.wsab{word-spacing:22.248000px;}
.wsbe{word-spacing:22.536000px;}
.ws6f{word-spacing:22.968000px;}
.ws4e{word-spacing:23.184000px;}
.wse1{word-spacing:23.256000px;}
.wsaa{word-spacing:23.544000px;}
.ws4f{word-spacing:23.688000px;}
.ws9e{word-spacing:23.832000px;}
.ws50{word-spacing:23.976000px;}
.wse5{word-spacing:24.408000px;}
.wscd{word-spacing:24.552000px;}
.wsa2{word-spacing:24.696000px;}
.ws149{word-spacing:24.894000px;}
.wsa8{word-spacing:24.984000px;}
.wsa1{word-spacing:25.272000px;}
.wsb4{word-spacing:25.416000px;}
.ws107{word-spacing:25.848000px;}
.ws106{word-spacing:25.992000px;}
.ws108{word-spacing:26.136000px;}
.ws15d{word-spacing:26.190000px;}
.ws187{word-spacing:26.946000px;}
.ws15a{word-spacing:27.540000px;}
.wsa5{word-spacing:28.008000px;}
.wsa4{word-spacing:28.080000px;}
.ws87{word-spacing:28.152000px;}
.ws86{word-spacing:28.656000px;}
.wsa6{word-spacing:28.728000px;}
.ws2e{word-spacing:29.016000px;}
.ws137{word-spacing:29.052000px;}
.ws3d{word-spacing:30.168000px;}
.wsdb{word-spacing:30.384000px;}
.ws3e{word-spacing:30.456000px;}
.ws56{word-spacing:30.888000px;}
.wsfa{word-spacing:30.960000px;}
.ws77{word-spacing:31.176000px;}
.wsfb{word-spacing:31.608000px;}
.wsd0{word-spacing:31.752000px;}
.wsd1{word-spacing:31.896000px;}
.ws14c{word-spacing:31.914000px;}
.ws15b{word-spacing:32.130000px;}
.ws182{word-spacing:32.454000px;}
.ws159{word-spacing:33.426000px;}
.wsf8{word-spacing:33.768000px;}
.wsb9{word-spacing:33.912000px;}
.wsba{word-spacing:34.056000px;}
.ws113{word-spacing:34.488000px;}
.ws10d{word-spacing:34.776000px;}
.ws112{word-spacing:36.648000px;}
.ws116{word-spacing:36.936000px;}
.ws111{word-spacing:37.224000px;}
.ws13c{word-spacing:37.692000px;}
.ws18e{word-spacing:38.124000px;}
.ws178{word-spacing:38.286000px;}
.ws14e{word-spacing:38.394000px;}
.ws13f{word-spacing:38.880000px;}
.ws14d{word-spacing:38.934000px;}
.ws170{word-spacing:39.204000px;}
.ws76{word-spacing:39.816000px;}
.ws102{word-spacing:40.536000px;}
.ws185{word-spacing:41.310000px;}
.ws189{word-spacing:41.364000px;}
.ws13b{word-spacing:42.012000px;}
.ws61{word-spacing:42.408000px;}
.ws157{word-spacing:42.498000px;}
.ws5f{word-spacing:42.696000px;}
.ws60{word-spacing:42.840000px;}
.ws184{word-spacing:43.416000px;}
.ws11a{word-spacing:44.568000px;}
.ws16b{word-spacing:45.630000px;}
.ws16f{word-spacing:47.844000px;}
.ws139{word-spacing:48.492000px;}
.wsc7{word-spacing:49.144320px;}
.ws135{word-spacing:49.194000px;}
.ws11b{word-spacing:49.608000px;}
.ws15e{word-spacing:49.680000px;}
.wsc8{word-spacing:49.824000px;}
.ws28{word-spacing:50.328000px;}
.ws78{word-spacing:50.616000px;}
.ws144{word-spacing:52.110000px;}
.ws4b{word-spacing:52.776000px;}
.ws4c{word-spacing:53.496000px;}
.wsf6{word-spacing:57.816000px;}
.wsf5{word-spacing:58.032000px;}
.ws163{word-spacing:58.644000px;}
.ws18a{word-spacing:59.238000px;}
.ws164{word-spacing:60.480000px;}
.ws114{word-spacing:60.552000px;}
.ws115{word-spacing:60.696000px;}
.ws140{word-spacing:62.964000px;}
.ws13a{word-spacing:64.962000px;}
.ws16e{word-spacing:65.718000px;}
.ws143{word-spacing:66.528000px;}
.ws18d{word-spacing:72.684000px;}
.ws18c{word-spacing:74.844000px;}
.ws151{word-spacing:77.328000px;}
.ws136{word-spacing:80.190000px;}
.ws154{word-spacing:81.648000px;}
.ws17c{word-spacing:86.616000px;}
.ws168{word-spacing:87.102000px;}
.ws14b{word-spacing:87.372000px;}
.ws18b{word-spacing:88.074000px;}
.ws177{word-spacing:95.202000px;}
.ws188{word-spacing:96.768000px;}
.ws14f{word-spacing:103.248000px;}
.ws15f{word-spacing:107.244000px;}
.ws16a{word-spacing:108.054000px;}
.ws142{word-spacing:122.688000px;}
.ws16c{word-spacing:123.984000px;}
.ws15c{word-spacing:124.686000px;}
.ws147{word-spacing:124.848000px;}
.ws145{word-spacing:136.134000px;}
.ws180{word-spacing:144.720000px;}
.ws17d{word-spacing:145.746000px;}
.ws14a{word-spacing:153.522000px;}
.ws155{word-spacing:211.140000px;}
._6{margin-left:-14.430528px;}
._4{margin-left:-9.303408px;}
._5{margin-left:-7.175736px;}
._3{margin-left:-5.127408px;}
._7{margin-left:-4.094496px;}
._9{margin-left:-2.664000px;}
._1{margin-left:-1.205424px;}
._0{width:1.040904px;}
._18{width:2.071368px;}
._11{width:3.616272px;}
._13{width:5.148792px;}
._14{width:6.837696px;}
._15{width:8.189424px;}
._d{width:10.312272px;}
._12{width:11.661408px;}
._e{width:12.834864px;}
._1b{width:14.146848px;}
._1d{width:15.192000px;}
._22{width:19.008000px;}
._17{width:20.130840px;}
._c{width:21.240000px;}
._f{width:23.397696px;}
._10{width:25.290576px;}
._1a{width:35.832240px;}
._19{width:37.133424px;}
._1f{width:39.671424px;}
._b{width:43.109424px;}
._16{width:49.278384px;}
._a{width:53.070192px;}
._1c{width:60.352272px;}
._21{width:75.907800px;}
._2{width:83.197440px;}
._20{width:90.921096px;}
._23{width:104.472000px;}
._25{width:106.650000px;}
._24{width:135.432000px;}
._8{width:847.728000px;}
._1e{width:848.998080px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(46,116,181);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.657600px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y30f{bottom:-0.000450px;}
.y0{bottom:0.000000px;}
.y313{bottom:0.000300px;}
.y31e{bottom:0.000450px;}
.y311{bottom:0.000750px;}
.y30b{bottom:0.426750px;}
.y340{bottom:2.990850px;}
.y281{bottom:3.600000px;}
.y31a{bottom:3.843750px;}
.y30d{bottom:7.686150px;}
.y34f{bottom:15.799950px;}
.y349{bottom:18.361650px;}
.y347{bottom:18.361800px;}
.y353{bottom:18.362700px;}
.y33f{bottom:18.363300px;}
.y282{bottom:19.980000px;}
.y2d8{bottom:20.160000px;}
.y319{bottom:21.778200px;}
.y352{bottom:24.766200px;}
.y345{bottom:26.047650px;}
.y34e{bottom:33.734400px;}
.y355{bottom:33.734550px;}
.y357{bottom:33.735300px;}
.y33e{bottom:33.735750px;}
.y27f{bottom:36.540000px;}
.y318{bottom:39.712650px;}
.y351{bottom:42.700800px;}
.y33d{bottom:49.108350px;}
.y34d{bottom:51.669000px;}
.y297{bottom:53.100000px;}
.y2{bottom:57.606480px;}
.y317{bottom:57.647100px;}
.y33c{bottom:64.480800px;}
.y359{bottom:67.041600px;}
.y28b{bottom:69.480000px;}
.y296{bottom:69.660000px;}
.y316{bottom:75.581550px;}
.y1{bottom:77.760000px;}
.y33b{bottom:79.853250px;}
.y358{bottom:84.976350px;}
.y289{bottom:86.040000px;}
.y33a{bottom:95.225700px;}
.y287{bottom:102.420000px;}
.y290{bottom:102.600000px;}
.y339{bottom:110.598300px;}
.y98{bottom:111.972960px;}
.y250{bottom:112.635360px;}
.y309{bottom:117.371520px;}
.y283{bottom:118.980000px;}
.y343{bottom:124.689300px;}
.y338{bottom:125.970750px;}
.y155{bottom:127.980000px;}
.y1b7{bottom:129.420000px;}
.y24f{bottom:129.920940px;}
.y97{bottom:132.126480px;}
.y4a{bottom:132.300000px;}
.yba{bottom:133.560000px;}
.y2ee{bottom:135.360000px;}
.y2b5{bottom:135.540000px;}
.y2bb{bottom:136.980000px;}
.yd8{bottom:138.060000px;}
.y1d7{bottom:139.320000px;}
.y20f{bottom:140.400000px;}
.y1f3{bottom:141.300000px;}
.y337{bottom:141.343200px;}
.y8e{bottom:141.480000px;}
.y342{bottom:142.623900px;}
.y139{bottom:145.260000px;}
.y24e{bottom:147.206520px;}
.y154{bottom:149.940000px;}
.y308{bottom:151.203600px;}
.y1b6{bottom:151.380000px;}
.y2b0{bottom:151.920000px;}
.y96{bottom:152.280000px;}
.y75{bottom:153.720000px;}
.y49{bottom:154.260000px;}
.yf{bottom:155.160000px;}
.yb9{bottom:155.520000px;}
.y336{bottom:156.715650px;}
.y2c1{bottom:157.140000px;}
.y1d6{bottom:161.460000px;}
.y20e{bottom:162.360000px;}
.y1f2{bottom:163.260000px;}
.y125{bottom:163.800000px;}
.y24d{bottom:164.671380px;}
.y138{bottom:167.220000px;}
.y2f8{bottom:168.300000px;}
.y2af{bottom:168.480000px;}
.y335{bottom:172.088100px;}
.y153{bottom:172.980000px;}
.y2c0{bottom:173.515500px;}
.y2be{bottom:173.520000px;}
.y1b5{bottom:174.240000px;}
.y74{bottom:175.680000px;}
.y48{bottom:176.220000px;}
.yb8{bottom:177.480000px;}
.y172{bottom:177.840000px;}
.yd7{bottom:181.080000px;}
.y24c{bottom:181.956960px;}
.y34b{bottom:182.335350px;}
.y8d{bottom:184.320000px;}
.y2ca{bottom:184.860000px;}
.y307{bottom:184.870080px;}
.y1f1{bottom:185.220000px;}
.y124{bottom:185.760000px;}
.y334{bottom:187.460700px;}
.y95{bottom:189.000000px;}
.y137{bottom:189.180000px;}
.y2bf{bottom:190.080000px;}
.y2bd{bottom:190.084500px;}
.y152{bottom:194.940000px;}
.y1b4{bottom:196.200000px;}
.y73{bottom:197.640000px;}
.ye{bottom:198.000000px;}
.y47{bottom:198.180000px;}
.y24b{bottom:199.242540px;}
.y34a{bottom:200.269800px;}
.y2e5{bottom:201.240000px;}
.y2a9{bottom:201.420000px;}
.y333{bottom:202.833000px;}
.yd6{bottom:203.040000px;}
.y1d5{bottom:206.280000px;}
.y2bc{bottom:206.460000px;}
.y1f0{bottom:207.180000px;}
.y123{bottom:207.720000px;}
.y136{bottom:212.040000px;}
.y171{bottom:214.560000px;}
.y24a{bottom:216.528120px;}
.y151{bottom:216.900000px;}
.y332{bottom:218.205450px;}
.y1b3{bottom:218.340000px;}
.y306{bottom:218.702160px;}
.y72{bottom:219.600000px;}
.y46{bottom:220.140000px;}
.yb7{bottom:220.500000px;}
.yd5{bottom:225.360000px;}
.y8c{bottom:227.340000px;}
.y1d4{bottom:229.140000px;}
.y20d{bottom:229.320000px;}
.y122{bottom:229.680000px;}
.y1ef{bottom:230.220000px;}
.y331{bottom:233.578050px;}
.y249{bottom:233.813700px;}
.y135{bottom:234.000000px;}
.y2a8{bottom:236.520000px;}
.y150{bottom:239.760000px;}
.y1b2{bottom:240.300000px;}
.yd{bottom:241.020000px;}
.y71{bottom:241.560000px;}
.y45{bottom:242.100000px;}
.yb6{bottom:242.460000px;}
.y330{bottom:248.950500px;}
.y248{bottom:250.920000px;}
.y1d3{bottom:251.100000px;}
.y121{bottom:251.640000px;}
.y1ee{bottom:252.180000px;}
.y305{bottom:252.368640px;}
.y134{bottom:256.140000px;}
.y2ba{bottom:256.675500px;}
.yea{bottom:262.620000px;}
.y1b1{bottom:263.160000px;}
.y70{bottom:263.520000px;}
.y44{bottom:264.060000px;}
.y32f{bottom:264.322950px;}
.yb5{bottom:264.420000px;}
.y247{bottom:268.200000px;}
.yd4{bottom:269.820000px;}
.y8b{bottom:270.360000px;}
.y1d2{bottom:273.240000px;}
.y120{bottom:273.600000px;}
.y20c{bottom:274.140000px;}
.y1ed{bottom:275.040000px;}
.y133{bottom:279.000000px;}
.y32e{bottom:279.695400px;}
.y14f{bottom:282.780000px;}
.ye9{bottom:284.580000px;}
.yc{bottom:284.753160px;}
.y1b0{bottom:285.120000px;}
.y246{bottom:285.463260px;}
.y6f{bottom:285.480000px;}
.y43{bottom:286.020000px;}
.y304{bottom:286.035120px;}
.yb4{bottom:286.380000px;}
.y2b9{bottom:289.615500px;}
.y19b{bottom:290.160000px;}
.yd3{bottom:291.780000px;}
.y32d{bottom:295.067850px;}
.y11f{bottom:295.560000px;}
.y1d1{bottom:296.100000px;}
.y1ec{bottom:297.000000px;}
.y132{bottom:300.960000px;}
.y245{bottom:302.748840px;}
.y14e{bottom:304.740000px;}
.y2b8{bottom:306.180000px;}
.ye8{bottom:306.540000px;}
.y6e{bottom:307.440000px;}
.y42{bottom:307.980000px;}
.yb3{bottom:308.340000px;}
.y32c{bottom:310.440300px;}
.y8a{bottom:313.380000px;}
.yd2{bottom:313.740000px;}
.y1d0{bottom:318.060000px;}
.y1eb{bottom:319.860000px;}
.y303{bottom:319.867200px;}
.y244{bottom:320.034420px;}
.y2b7{bottom:322.555500px;}
.y2b1{bottom:322.560000px;}
.y131{bottom:322.920000px;}
.y32b{bottom:325.812750px;}
.y14d{bottom:326.700000px;}
.ye7{bottom:328.500000px;}
.y6d{bottom:329.400000px;}
.y1af{bottom:330.120000px;}
.yb2{bottom:330.300000px;}
.yb{bottom:331.380000px;}
.y19a{bottom:331.740000px;}
.y2c8{bottom:333.900000px;}
.y243{bottom:337.320000px;}
.y11e{bottom:338.580000px;}
.y2b6{bottom:339.120000px;}
.y1cf{bottom:340.020000px;}
.y20b{bottom:340.920000px;}
.y32a{bottom:341.185200px;}
.y1ea{bottom:342.000000px;}
.y2fe{bottom:343.262880px;}
.y14c{bottom:349.020000px;}
.ye6{bottom:350.460000px;}
.y41{bottom:351.000000px;}
.y6c{bottom:351.360000px;}
.yb1{bottom:352.260000px;}
.y1ae{bottom:352.980000px;}
.y302{bottom:353.533680px;}
.y199{bottom:353.700000px;}
.y2ae{bottom:355.495500px;}
.y89{bottom:356.220000px;}
.yd1{bottom:356.404320px;}
.y329{bottom:356.557650px;}
.y242{bottom:360.000000px;}
.y11d{bottom:360.540000px;}
.y1ce{bottom:361.980000px;}
.y20a{bottom:362.880000px;}
.y1e9{bottom:364.860000px;}
.y130{bottom:366.840000px;}
.y328{bottom:371.930250px;}
.y2b4{bottom:372.055500px;}
.y2ad{bottom:372.060000px;}
.ye5{bottom:372.420000px;}
.y40{bottom:372.960000px;}
.y6b{bottom:373.320000px;}
.yb0{bottom:374.220000px;}
.y1ad{bottom:374.940000px;}
.y198{bottom:375.660000px;}
.y2fd{bottom:376.929360px;}
.ya{bottom:377.280000px;}
.y11c{bottom:382.500000px;}
.y1cd{bottom:384.840000px;}
.y209{bottom:385.020000px;}
.y1e8{bottom:386.820000px;}
.y327{bottom:387.302700px;}
.y301{bottom:387.365760px;}
.y2b3{bottom:388.431000px;}
.y2ac{bottom:388.435500px;}
.y12f{bottom:388.800000px;}
.y14b{bottom:393.480000px;}
.ye4{bottom:394.380000px;}
.y3f{bottom:394.920000px;}
.yaf{bottom:396.180000px;}
.yd0{bottom:397.440000px;}
.y197{bottom:397.620000px;}
.y1ac{bottom:397.800000px;}
.y88{bottom:399.240000px;}
.y326{bottom:402.675300px;}
.y11b{bottom:404.460000px;}
.y2b2{bottom:404.995500px;}
.y2ab{bottom:405.000000px;}
.y241{bottom:405.720000px;}
.y1cc{bottom:406.980000px;}
.y208{bottom:407.880000px;}
.y1e7{bottom:408.780000px;}
.y12e{bottom:410.760000px;}
.y2fc{bottom:410.761440px;}
.y10a{bottom:414.540000px;}
.y14a{bottom:415.440000px;}
.ye3{bottom:416.340000px;}
.y6a{bottom:416.700000px;}
.y3e{bottom:416.880000px;}
.y325{bottom:418.047750px;}
.yae{bottom:418.140000px;}
.y196{bottom:419.580000px;}
.y1ab{bottom:419.760000px;}
.y300{bottom:421.032240px;}
.y2aa{bottom:421.560000px;}
.y11a{bottom:426.420000px;}
.y240{bottom:427.680000px;}
.y1cb{bottom:429.840000px;}
.y1e6{bottom:430.740000px;}
.y12d{bottom:432.720000px;}
.y324{bottom:433.420200px;}
.y27a{bottom:435.288780px;}
.y109{bottom:436.500000px;}
.ye2{bottom:438.300000px;}
.y18c{bottom:438.840000px;}
.ycf{bottom:439.020000px;}
.yad{bottom:440.100000px;}
.y195{bottom:441.540000px;}
.y1aa{bottom:441.900000px;}
.y87{bottom:442.260000px;}
.y2fb{bottom:444.427920px;}
.y119{bottom:448.380000px;}
.y323{bottom:448.792650px;}
.y23f{bottom:449.640000px;}
.y2ff{bottom:450.194400px;}
.y31f{bottom:450.750000px;}
.y207{bottom:450.900000px;}
.y341{bottom:451.176000px;}
.y2a3{bottom:451.620000px;}
.y1ca{bottom:451.800000px;}
.y279{bottom:452.574360px;}
.y1e5{bottom:453.780000px;}
.y12c{bottom:454.680000px;}
.y108{bottom:458.460000px;}
.ye1{bottom:460.260000px;}
.y69{bottom:461.160000px;}
.y3d{bottom:461.880000px;}
.y194{bottom:463.500000px;}
.y1a9{bottom:463.860000px;}
.y322{bottom:464.165100px;}
.y9{bottom:464.220000px;}
.y278{bottom:469.859940px;}
.y118{bottom:470.340000px;}
.y23e{bottom:471.600000px;}
.y206{bottom:472.860000px;}
.y1c9{bottom:474.660000px;}
.y1e4{bottom:475.740000px;}
.y12b{bottom:476.640000px;}
.y2fa{bottom:478.260000px;}
.y321{bottom:479.537550px;}
.y107{bottom:480.420000px;}
.y18b{bottom:481.860000px;}
.yce{bottom:482.040000px;}
.ye0{bottom:482.220000px;}
.y68{bottom:483.120000px;}
.yac{bottom:483.480000px;}
.y86{bottom:485.100000px;}
.y193{bottom:485.460000px;}
.y1a8{bottom:486.720000px;}
.y277{bottom:486.966240px;}
.y2a6{bottom:488.164500px;}
.y23d{bottom:493.560000px;}
.y2e4{bottom:494.460000px;}
.y205{bottom:494.820000px;}
.y320{bottom:494.909850px;}
.y1c8{bottom:496.800000px;}
.y356{bottom:497.293500px;}
.y1e3{bottom:498.600000px;}
.y106{bottom:502.380000px;}
.y18a{bottom:504.000000px;}
.ydf{bottom:504.180000px;}
.y276{bottom:504.251820px;}
.y2a5{bottom:504.540000px;}
.y67{bottom:505.080000px;}
.y3c{bottom:506.520000px;}
.y8{bottom:507.240000px;}
.y192{bottom:507.420000px;}
.y1a7{bottom:509.760000px;}
.y117{bottom:513.360000px;}
.y2f7{bottom:514.440000px;}
.y23c{bottom:515.520000px;}
.y204{bottom:517.140000px;}
.y12a{bottom:519.660000px;}
.y1e2{bottom:520.560000px;}
.y2a7{bottom:521.095500px;}
.y2a4{bottom:521.100000px;}
.y275{bottom:521.537400px;}
.y149{bottom:524.340000px;}
.ycd{bottom:525.060000px;}
.yde{bottom:526.140000px;}
.y189{bottom:526.860000px;}
.y66{bottom:527.040000px;}
.yab{bottom:527.940000px;}
.y85{bottom:528.120000px;}
.y3b{bottom:528.480000px;}
.y191{bottom:529.380000px;}
.y2f6{bottom:531.004500px;}
.y1a6{bottom:532.620000px;}
.y116{bottom:535.320000px;}
.y23b{bottom:537.660000px;}
.y274{bottom:538.822980px;}
.y170{bottom:539.640000px;}
.y129{bottom:541.620000px;}
.y1e1{bottom:543.420000px;}
.y105{bottom:545.400000px;}
.y148{bottom:546.300000px;}
.y2f3{bottom:547.371000px;}
.y2f5{bottom:547.380000px;}
.ydd{bottom:548.100000px;}
.y188{bottom:548.820000px;}
.y65{bottom:549.000000px;}
.yaa{bottom:549.900000px;}
.y7{bottom:550.080000px;}
.y1a5{bottom:554.580000px;}
.y94{bottom:555.300000px;}
.y273{bottom:556.108560px;}
.y115{bottom:557.280000px;}
.y23a{bottom:559.620000px;}
.y16f{bottom:561.600000px;}
.y1c7{bottom:563.580000px;}
.y2f2{bottom:563.935500px;}
.y1e0{bottom:565.560000px;}
.y104{bottom:567.360000px;}
.y29a{bottom:567.720000px;}
.ycc{bottom:567.900000px;}
.ydc{bottom:570.240000px;}
.y64{bottom:570.960000px;}
.y84{bottom:571.140000px;}
.y3a{bottom:571.500000px;}
.y187{bottom:571.680000px;}
.y272{bottom:573.394140px;}
.y350{bottom:574.158000px;}
.y190{bottom:574.560000px;}
.y93{bottom:576.912960px;}
.y1a4{bottom:577.440000px;}
.y114{bottom:579.240000px;}
.y2f1{bottom:580.500000px;}
.y2f4{bottom:580.504500px;}
.y239{bottom:581.580000px;}
.y16e{bottom:583.560000px;}
.y128{bottom:584.106480px;}
.y1c6{bottom:585.540000px;}
.y2a1{bottom:587.695500px;}
.y1df{bottom:588.420000px;}
.y103{bottom:589.320000px;}
.y271{bottom:590.500440px;}
.ydb{bottom:592.200000px;}
.y63{bottom:592.920000px;}
.y6{bottom:593.100000px;}
.y39{bottom:593.460000px;}
.y186{bottom:593.640000px;}
.y2f0{bottom:596.875500px;}
.y2ef{bottom:596.880000px;}
.y92{bottom:597.066480px;}
.y1a3{bottom:599.580000px;}
.y23{bottom:599.760000px;}
.y113{bottom:601.200000px;}
.y238{bottom:603.540000px;}
.y127{bottom:604.260000px;}
.y203{bottom:604.440000px;}
.y16d{bottom:605.520000px;}
.y1c5{bottom:607.500000px;}
.y270{bottom:607.786020px;}
.y220{bottom:608.400000px;}
.y1de{bottom:610.380000px;}
.ycb{bottom:610.920000px;}
.y102{bottom:611.280000px;}
.y2ea{bottom:613.440000px;}
.y2f9{bottom:613.444500px;}
.y83{bottom:614.160000px;}
.y62{bottom:614.880000px;}
.y38{bottom:615.420000px;}
.y185{bottom:615.780000px;}
.y91{bottom:617.220000px;}
.y18f{bottom:619.020000px;}
.y29c{bottom:620.820000px;}
.y2a2{bottom:620.824500px;}
.y1a2{bottom:622.440000px;}
.y112{bottom:623.160000px;}
.y26f{bottom:625.071600px;}
.y237{bottom:625.500000px;}
.y202{bottom:626.400000px;}
.y16c{bottom:627.480000px;}
.y2e9{bottom:629.815500px;}
.y2ed{bottom:629.820000px;}
.y1c4{bottom:630.360000px;}
.y147{bottom:632.160000px;}
.yca{bottom:632.880000px;}
.y101{bottom:633.240000px;}
.y22{bottom:635.009760px;}
.ya9{bottom:636.840000px;}
.y61{bottom:637.020000px;}
.y2a0{bottom:637.195500px;}
.y29e{bottom:637.200000px;}
.y37{bottom:637.380000px;}
.y184{bottom:638.640000px;}
.y5{bottom:640.090260px;}
.y126{bottom:641.160000px;}
.y26e{bottom:642.357180px;}
.y111{bottom:645.300000px;}
.y2e8{bottom:646.380000px;}
.y2ec{bottom:646.384500px;}
.y236{bottom:647.460000px;}
.y201{bottom:648.540000px;}
.y354{bottom:651.019500px;}
.y21f{bottom:652.320000px;}
.y1c3{bottom:652.500000px;}
.y222{bottom:652.685760px;}
.y29f{bottom:653.760000px;}
.y29d{bottom:653.764500px;}
.y90{bottom:653.940000px;}
.y146{bottom:654.300000px;}
.yc9{bottom:654.840000px;}
.y100{bottom:655.200000px;}
.y82{bottom:657.000000px;}
.ya8{bottom:658.800000px;}
.y60{bottom:658.980000px;}
.y36{bottom:659.340000px;}
.y26d{bottom:659.642760px;}
.y183{bottom:660.600000px;}
.y18e{bottom:661.680000px;}
.y2e7{bottom:662.755500px;}
.y2eb{bottom:662.760000px;}
.y21{bottom:664.171920px;}
.y1a1{bottom:665.280000px;}
.y235{bottom:669.420000px;}
.y29b{bottom:670.140000px;}
.y16b{bottom:670.500000px;}
.y21e{bottom:674.280000px;}
.y1c2{bottom:675.360000px;}
.y145{bottom:676.260000px;}
.y26c{bottom:676.749060px;}
.yc8{bottom:676.800000px;}
.yff{bottom:677.160000px;}
.y81{bottom:679.140000px;}
.y2e6{bottom:679.320000px;}
.ya7{bottom:680.760000px;}
.y5f{bottom:680.940000px;}
.y35{bottom:681.300000px;}
.y182{bottom:683.460000px;}
.y1a0{bottom:687.420000px;}
.y110{bottom:688.140000px;}
.y234{bottom:691.380000px;}
.y16a{bottom:692.460000px;}
.y20{bottom:693.516240px;}
.y26b{bottom:694.034640px;}
.y21d{bottom:696.240000px;}
.y1c1{bottom:697.320000px;}
.y144{bottom:698.220000px;}
.y18d{bottom:698.400000px;}
.yc7{bottom:698.760000px;}
.yfe{bottom:699.120000px;}
.y28c{bottom:700.200000px;}
.y80{bottom:701.100000px;}
.y4{bottom:701.457480px;}
.ya6{bottom:702.720000px;}
.y5e{bottom:702.900000px;}
.y34{bottom:703.260000px;}
.y181{bottom:705.420000px;}
.y19f{bottom:709.380000px;}
.y10f{bottom:710.100000px;}
.y221{bottom:711.000000px;}
.y26a{bottom:711.320220px;}
.y200{bottom:713.340000px;}
.y169{bottom:714.420000px;}
.y21c{bottom:718.200000px;}
.y1c0{bottom:719.280000px;}
.y143{bottom:720.180000px;}
.y299{bottom:720.355500px;}
.y295{bottom:720.360000px;}
.yc6{bottom:720.720000px;}
.yfd{bottom:721.080000px;}
.y1f{bottom:722.678400px;}
.yda{bottom:723.060000px;}
.ya5{bottom:724.680000px;}
.y5d{bottom:724.860000px;}
.y33{bottom:725.220000px;}
.y180{bottom:727.380000px;}
.y348{bottom:727.882500px;}
.y269{bottom:728.605800px;}
.y2e2{bottom:729.540000px;}
.y2e3{bottom:729.544500px;}
.y19e{bottom:731.700000px;}
.y10e{bottom:732.600000px;}
.y233{bottom:735.300000px;}
.y1ff{bottom:735.480000px;}
.y298{bottom:736.920000px;}
.y294{bottom:736.924500px;}
.y168{bottom:737.280000px;}
.y142{bottom:742.140000px;}
.y1dd{bottom:742.500000px;}
.yc5{bottom:742.680000px;}
.yfc{bottom:743.220000px;}
.y7f{bottom:743.940000px;}
.yd9{bottom:745.020000px;}
.y268{bottom:745.891380px;}
.y2e1{bottom:745.920000px;}
.y5c{bottom:746.460000px;}
.ya4{bottom:746.640000px;}
.y32{bottom:747.360000px;}
.y17f{bottom:749.520000px;}
.y1e{bottom:751.840560px;}
.y293{bottom:753.300000px;}
.y232{bottom:757.260000px;}
.y1fe{bottom:758.340000px;}
.y167{bottom:759.240000px;}
.y21b{bottom:761.220000px;}
.y2dc{bottom:762.484500px;}
.y3{bottom:762.660000px;}
.y267{bottom:763.176960px;}
.y141{bottom:764.100000px;}
.yc4{bottom:764.820000px;}
.yfb{bottom:765.180000px;}
.y7e{bottom:765.900000px;}
.y5b{bottom:766.980000px;}
.ya3{bottom:768.600000px;}
.y31{bottom:769.320000px;}
.y28f{bottom:769.860000px;}
.y292{bottom:769.864500px;}
.y17e{bottom:772.380000px;}
.y1d{bottom:773.434800px;}
.y346{bottom:774.000000px;}
.y19d{bottom:775.620000px;}
.y10d{bottom:776.526480px;}
.y2df{bottom:778.855500px;}
.y2db{bottom:778.860000px;}
.y231{bottom:779.220000px;}
.y266{bottom:780.283260px;}
.y1fd{bottom:781.200000px;}
.y166{bottom:781.380000px;}
.y21a{bottom:783.180000px;}
.y1bf{bottom:785.160000px;}
.y28e{bottom:786.235500px;}
.y291{bottom:786.240000px;}
.yc3{bottom:786.780000px;}
.y1dc{bottom:786.960000px;}
.yfa{bottom:787.140000px;}
.y7d{bottom:787.860000px;}
.y5a{bottom:788.940000px;}
.y30{bottom:791.280000px;}
.y17d{bottom:794.340000px;}
.y2de{bottom:795.420000px;}
.y2e0{bottom:795.424500px;}
.y10c{bottom:796.680000px;}
.y265{bottom:797.568840px;}
.y230{bottom:801.180000px;}
.y28d{bottom:802.800000px;}
.y1c{bottom:802.961280px;}
.y1fc{bottom:803.340000px;}
.y165{bottom:804.240000px;}
.y219{bottom:805.140000px;}
.y140{bottom:807.120000px;}
.yc2{bottom:808.740000px;}
.y1db{bottom:808.920000px;}
.yf9{bottom:809.100000px;}
.y7c{bottom:810.000000px;}
.y59{bottom:810.900000px;}
.y2dd{bottom:811.795500px;}
.y2da{bottom:811.800000px;}
.y19c{bottom:812.520000px;}
.y2f{bottom:813.240000px;}
.ya2{bottom:813.600000px;}
.y264{bottom:814.854420px;}
.y17c{bottom:816.300000px;}
.y34c{bottom:820.117500px;}
.y22f{bottom:823.140000px;}
.y164{bottom:826.200000px;}
.y218{bottom:828.000000px;}
.y2d9{bottom:828.360000px;}
.y13f{bottom:829.080000px;}
.yc1{bottom:830.700000px;}
.y1da{bottom:830.880000px;}
.yf8{bottom:831.060000px;}
.y7b{bottom:831.960000px;}
.y1b{bottom:832.123440px;}
.y263{bottom:832.140000px;}
.y58{bottom:832.860000px;}
.y10b{bottom:833.400000px;}
.y2e{bottom:835.200000px;}
.ya1{bottom:837.180000px;}
.y17b{bottom:839.160000px;}
.y22e{bottom:845.100000px;}
.y1fb{bottom:848.160000px;}
.y163{bottom:849.060000px;}
.y262{bottom:849.322980px;}
.y217{bottom:849.960000px;}
.y1be{bottom:851.580000px;}
.y13e{bottom:851.940000px;}
.yf7{bottom:853.020000px;}
.y7a{bottom:853.920000px;}
.y57{bottom:854.820000px;}
.y2d{bottom:857.160000px;}
.y2c9{bottom:858.420000px;}
.y1a{bottom:861.285600px;}
.y17a{bottom:861.300000px;}
.y261{bottom:866.608560px;}
.y22d{bottom:867.240000px;}
.y288{bottom:869.395500px;}
.y162{bottom:871.020000px;}
.y216{bottom:872.100000px;}
.y13d{bottom:873.900000px;}
.yf6{bottom:874.980000px;}
.yc0{bottom:875.700000px;}
.y79{bottom:875.880000px;}
.y56{bottom:876.780000px;}
.y2c{bottom:879.120000px;}
.ya0{bottom:882.000000px;}
.y260{bottom:883.714860px;}
.y179{bottom:884.160000px;}
.y286{bottom:885.960000px;}
.y22c{bottom:889.200000px;}
.y19{bottom:890.629920px;}
.y161{bottom:892.980000px;}
.y215{bottom:894.960000px;}
.y1bd{bottom:895.860000px;}
.y13c{bottom:896.040000px;}
.yf5{bottom:896.940000px;}
.y344{bottom:896.980500px;}
.y78{bottom:897.840000px;}
.y55{bottom:898.740000px;}
.y25f{bottom:901.000440px;}
.y2b{bottom:901.080000px;}
.y285{bottom:902.335500px;}
.y28a{bottom:902.340000px;}
.y9f{bottom:905.580000px;}
.y178{bottom:906.120000px;}
.y22b{bottom:911.160000px;}
.y2d6{bottom:911.520000px;}
.y1fa{bottom:914.940000px;}
.y160{bottom:915.120000px;}
.y214{bottom:916.920000px;}
.y1bc{bottom:917.820000px;}
.y25e{bottom:918.286020px;}
.yf4{bottom:918.900000px;}
.y18{bottom:919.792080px;}
.y77{bottom:919.800000px;}
.ybf{bottom:920.340000px;}
.y54{bottom:920.700000px;}
.y2a{bottom:923.040000px;}
.y2d7{bottom:928.080000px;}
.y2d5{bottom:928.084500px;}
.y177{bottom:928.980000px;}
.y9e{bottom:929.160000px;}
.y22a{bottom:933.120000px;}
.y284{bottom:935.280000px;}
.y25d{bottom:935.571600px;}
.y1f9{bottom:936.900000px;}
.y15f{bottom:937.980000px;}
.y1bb{bottom:939.780000px;}
.yf3{bottom:940.860000px;}
.y17{bottom:941.386320px;}
.y76{bottom:941.760000px;}
.y2d0{bottom:944.455500px;}
.y2d4{bottom:944.460000px;}
.y29{bottom:945.000000px;}
.y176{bottom:950.940000px;}
.y25c{bottom:952.857180px;}
.y229{bottom:955.080000px;}
.y31d{bottom:958.470000px;}
.y1f8{bottom:959.040000px;}
.y15e{bottom:959.940000px;}
.y2cf{bottom:961.020000px;}
.y2d3{bottom:961.024500px;}
.y1ba{bottom:961.740000px;}
.yf2{bottom:962.820000px;}
.ybe{bottom:963.360000px;}
.y53{bottom:963.720000px;}
.y27e{bottom:965.520000px;}
.y28{bottom:966.960000px;}
.y31c{bottom:968.718000px;}
.y25b{bottom:970.142760px;}
.y16{bottom:970.730640px;}
.y175{bottom:973.080000px;}
.y9d{bottom:974.160000px;}
.y228{bottom:977.040000px;}
.y2ce{bottom:977.395500px;}
.y2cc{bottom:977.400000px;}
.y31b{bottom:978.967500px;}
.y1f7{bottom:981.900000px;}
.y15d{bottom:982.800000px;}
.y1d9{bottom:983.700000px;}
.y213{bottom:983.880000px;}
.yf1{bottom:984.780000px;}
.y280{bottom:985.500000px;}
.y52{bottom:985.680000px;}
.y25a{bottom:987.249060px;}
.y27{bottom:988.920000px;}
.y315{bottom:989.215500px;}
.y15{bottom:992.324880px;}
.y2cb{bottom:993.960000px;}
.y2d2{bottom:993.964500px;}
.y174{bottom:995.940000px;}
.y9c{bottom:997.740000px;}
.y227{bottom:999.000000px;}
.y1f6{bottom:1003.860000px;}
.y259{bottom:1004.534640px;}
.y1b9{bottom:1004.760000px;}
.y15c{bottom:1004.940000px;}
.y1d8{bottom:1005.840000px;}
.yf0{bottom:1006.740000px;}
.y51{bottom:1007.640000px;}
.ybd{bottom:1008.361440px;}
.y2cd{bottom:1010.335500px;}
.y2d1{bottom:1010.340000px;}
.y173{bottom:1018.800000px;}
.y27d{bottom:1020.079440px;}
.y226{bottom:1020.960000px;}
.y9b{bottom:1021.320000px;}
.y258{bottom:1021.820220px;}
.y14{bottom:1021.851360px;}
.y1f5{bottom:1026.720000px;}
.y1b8{bottom:1026.900000px;}
.y15b{bottom:1027.800000px;}
.yef{bottom:1028.700000px;}
.y50{bottom:1029.600000px;}
.y13b{bottom:1029.780000px;}
.y26{bottom:1031.940000px;}
.ybc{bottom:1034.103060px;}
.y257{bottom:1039.105800px;}
.y225{bottom:1042.920000px;}
.y1f4{bottom:1048.860000px;}
.y15a{bottom:1049.760000px;}
.y212{bottom:1050.660000px;}
.yee{bottom:1050.840000px;}
.y13{bottom:1051.013520px;}
.y4f{bottom:1051.560000px;}
.y13a{bottom:1052.640000px;}
.y25{bottom:1053.900000px;}
.y27c{bottom:1054.093680px;}
.y256{bottom:1056.391380px;}
.y2c2{bottom:1056.960000px;}
.y9a{bottom:1064.700000px;}
.y224{bottom:1064.880000px;}
.ybb{bottom:1068.840000px;}
.y159{bottom:1071.720000px;}
.y211{bottom:1072.620000px;}
.yed{bottom:1072.800000px;}
.y255{bottom:1073.497680px;}
.y4e{bottom:1073.520000px;}
.y27b{bottom:1075.687920px;}
.y2c7{bottom:1077.120000px;}
.y314{bottom:1078.888500px;}
.y12{bottom:1080.357840px;}
.y312{bottom:1089.136500px;}
.y254{bottom:1090.783260px;}
.y223{bottom:1090.800000px;}
.y99{bottom:1092.060000px;}
.y2c6{bottom:1093.500000px;}
.y158{bottom:1093.680000px;}
.y210{bottom:1094.580000px;}
.y4d{bottom:1095.480000px;}
.y8f{bottom:1096.560000px;}
.y24{bottom:1099.083060px;}
.y310{bottom:1099.384500px;}
.y35b{bottom:1107.378000px;}
.y253{bottom:1108.068840px;}
.y11{bottom:1109.520000px;}
.y30e{bottom:1109.634000px;}
.y2c5{bottom:1110.060000px;}
.y2c4{bottom:1110.064500px;}
.yec{bottom:1115.640000px;}
.y157{bottom:1116.540000px;}
.y4c{bottom:1117.620000px;}
.y30c{bottom:1119.882000px;}
.y252{bottom:1125.354420px;}
.y2c3{bottom:1126.440000px;}
.y10{bottom:1133.820000px;}
.yeb{bottom:1138.140000px;}
.y156{bottom:1138.680000px;}
.y4b{bottom:1139.580000px;}
.y35a{bottom:1141.210080px;}
.y251{bottom:1142.640000px;}
.y30a{bottom:1145.076000px;}
.h26{height:9.820500px;}
.h24{height:9.822000px;}
.h21{height:11.103000px;}
.h23{height:24.766500px;}
.h16{height:38.759766px;}
.h17{height:39.208008px;}
.h25{height:39.231773px;}
.h22{height:39.685474px;}
.h12{height:43.536094px;}
.h13{height:43.603054px;}
.h14{height:43.924174px;}
.h2c{height:45.690000px;}
.h2b{height:45.691500px;}
.h2{height:47.545312px;}
.hf{height:47.988281px;}
.h8{height:48.095156px;}
.h15{height:49.320000px;}
.h11{height:51.656648px;}
.h5{height:51.679688px;}
.h9{height:52.277344px;}
.h10{height:52.453125px;}
.hc{height:53.763750px;}
.he{height:55.814063px;}
.hb{height:56.459531px;}
.ha{height:56.649375px;}
.h6{height:58.202930px;}
.h2a{height:61.063500px;}
.hd{height:68.728224px;}
.h7{height:69.762656px;}
.h2e{height:76.435500px;}
.h27{height:89.245500px;}
.h3{height:91.035352px;}
.h4{height:95.667539px;}
.h1c{height:98.820000px;}
.h1a{height:115.380000px;}
.h18{height:131.760000px;}
.h19{height:131.940000px;}
.h1f{height:148.318500px;}
.h2f{height:160.984500px;}
.h1e{height:197.820000px;}
.h20{height:214.198500px;}
.h1b{height:214.380000px;}
.h29{height:276.279000px;}
.h1d{height:346.860000px;}
.h2d{height:391.573500px;}
.h28{height:705.427500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:65.340000px;}
.w5{width:80.641500px;}
.w8{width:82.620000px;}
.w6{width:87.298500px;}
.w7{width:90.361500px;}
.w4{width:104.400000px;}
.wb{width:124.443000px;}
.w3{width:128.520000px;}
.wa{width:179.607000px;}
.wc{width:249.312000px;}
.w9{width:679.515000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:1.709700px;}
.x13{left:8.100000px;}
.x24{left:20.340000px;}
.x23{left:42.480000px;}
.x12{left:103.680000px;}
.x1{left:106.200000px;}
.x22{left:111.780000px;}
.x6{left:122.776560px;}
.x11{left:127.440000px;}
.x5{left:133.200000px;}
.xa{left:149.380560px;}
.x4{left:160.200000px;}
.x14{left:169.020000px;}
.x15{left:177.120000px;}
.xb{left:187.200000px;}
.x2{left:197.806140px;}
.x7{left:203.580000px;}
.x2a{left:231.573000px;}
.x27{left:251.450700px;}
.x3{left:271.822320px;}
.x26{left:274.543050px;}
.x16{left:297.540000px;}
.x1e{left:305.640000px;}
.x25{left:317.306850px;}
.x28{left:356.443500px;}
.x17{left:401.940000px;}
.x1f{left:410.040000px;}
.xc{left:415.080000px;}
.x18{left:482.580000px;}
.x19{left:490.680000px;}
.x1a{left:569.880000px;}
.x20{left:577.980000px;}
.xd{left:652.320000px;}
.x1b{left:660.240000px;}
.x21{left:668.340000px;}
.x8{left:734.760000px;}
.x1c{left:742.860000px;}
.x1d{left:750.960000px;}
.x9{left:756.360000px;}
.x10{left:786.600000px;}
.xf{left:840.600000px;}
.xe{left:841.860000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls46{letter-spacing:-0.832000pt;}
.ls2c{letter-spacing:-0.768000pt;}
.ls4c{letter-spacing:-0.704000pt;}
.ls8f{letter-spacing:-0.680183pt;}
.ls8c{letter-spacing:-0.672000pt;}
.ls90{letter-spacing:-0.631599pt;}
.ls8b{letter-spacing:-0.624000pt;}
.ls91{letter-spacing:-0.583014pt;}
.ls2b{letter-spacing:-0.576000pt;}
.ls3b{letter-spacing:-0.552960pt;}
.ls34{letter-spacing:-0.512000pt;}
.ls92{letter-spacing:-0.485845pt;}
.ls3a{letter-spacing:-0.483840pt;}
.ls42{letter-spacing:-0.448000pt;}
.ls78{letter-spacing:-0.424960pt;}
.ls39{letter-spacing:-0.412160pt;}
.ls4d{letter-spacing:-0.384000pt;}
.ls2a{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.299520pt;}
.ls81{letter-spacing:-0.294400pt;}
.ls89{letter-spacing:-0.288000pt;}
.ls50{letter-spacing:-0.276480pt;}
.ls7c{letter-spacing:-0.265600pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.255360pt;}
.ls8e{letter-spacing:-0.242923pt;}
.ls82{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.235520pt;}
.ls3{letter-spacing:-0.234240pt;}
.lsb{letter-spacing:-0.224640pt;}
.ls7b{letter-spacing:-0.212480pt;}
.ls5b{letter-spacing:-0.207360pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls4e{letter-spacing:-0.176640pt;}
.ls8{letter-spacing:-0.149760pt;}
.ls83{letter-spacing:-0.144000pt;}
.ls29{letter-spacing:-0.138240pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.117760pt;}
.ls69{letter-spacing:-0.106240pt;}
.ls84{letter-spacing:-0.096000pt;}
.ls13{letter-spacing:-0.085120pt;}
.ls3f{letter-spacing:-0.069120pt;}
.ls28{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.058880pt;}
.ls6a{letter-spacing:-0.053120pt;}
.ls87{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7d{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.035328pt;}
.ls7e{letter-spacing:0.048000pt;}
.ls7a{letter-spacing:0.053120pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.074880pt;}
.ls3e{letter-spacing:0.085120pt;}
.ls8d{letter-spacing:0.097169pt;}
.ls12{letter-spacing:0.105984pt;}
.ls31{letter-spacing:0.106240pt;}
.lsf{letter-spacing:0.117760pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.138240pt;}
.ls86{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.149760pt;}
.ls16{letter-spacing:0.176640pt;}
.ls5d{letter-spacing:0.185600pt;}
.ls6{letter-spacing:0.192000pt;}
.ls96{letter-spacing:0.194338pt;}
.ls2e{letter-spacing:0.207360pt;}
.ls65{letter-spacing:0.212480pt;}
.ls18{letter-spacing:0.235520pt;}
.ls85{letter-spacing:0.240000pt;}
.ls74{letter-spacing:0.244352pt;}
.ls77{letter-spacing:0.249664pt;}
.ls0{letter-spacing:0.256000pt;}
.ls70{letter-spacing:0.260288pt;}
.ls33{letter-spacing:0.262400pt;}
.ls6c{letter-spacing:0.265600pt;}
.ls36{letter-spacing:0.268800pt;}
.ls5a{letter-spacing:0.281600pt;}
.ls88{letter-spacing:0.288000pt;}
.ls93{letter-spacing:0.291507pt;}
.ls72{letter-spacing:0.297472pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls5f{letter-spacing:0.326400pt;}
.ls5e{letter-spacing:0.332800pt;}
.ls6f{letter-spacing:0.339968pt;}
.lsc{letter-spacing:0.340480pt;}
.ls57{letter-spacing:0.371840pt;}
.ls55{letter-spacing:0.389120pt;}
.ls73{letter-spacing:0.403712pt;}
.ls67{letter-spacing:0.409024pt;}
.ls79{letter-spacing:0.424960pt;}
.ls95{letter-spacing:0.437261pt;}
.ls6e{letter-spacing:0.440896pt;}
.ls6d{letter-spacing:0.446208pt;}
.ls66{letter-spacing:0.462144pt;}
.ls75{letter-spacing:0.531200pt;}
.ls60{letter-spacing:0.552960pt;}
.ls68{letter-spacing:0.584320pt;}
.ls64{letter-spacing:0.626816pt;}
.ls94{letter-spacing:0.728768pt;}
.ls27{letter-spacing:0.832000pt;}
.ls59{letter-spacing:0.896000pt;}
.ls6b{letter-spacing:1.030528pt;}
.ls76{letter-spacing:1.057088pt;}
.ls71{letter-spacing:1.067712pt;}
.ls47{letter-spacing:1.413120pt;}
.ls61{letter-spacing:1.536000pt;}
.ls30{letter-spacing:1.542400pt;}
.ls51{letter-spacing:2.176000pt;}
.ls4b{letter-spacing:2.201600pt;}
.ls40{letter-spacing:2.816000pt;}
.ls38{letter-spacing:3.456000pt;}
.ls2d{letter-spacing:4.096000pt;}
.ls3c{letter-spacing:4.736000pt;}
.ls41{letter-spacing:5.376000pt;}
.ls45{letter-spacing:6.016000pt;}
.ls4a{letter-spacing:7.296000pt;}
.ls54{letter-spacing:8.576000pt;}
.ls21{letter-spacing:9.216000pt;}
.ls1f{letter-spacing:9.856000pt;}
.ls8a{letter-spacing:10.272000pt;}
.ls3d{letter-spacing:10.496000pt;}
.ls24{letter-spacing:11.136000pt;}
.ls48{letter-spacing:11.776000pt;}
.ls37{letter-spacing:12.416000pt;}
.ls44{letter-spacing:13.056000pt;}
.ls5c{letter-spacing:14.976000pt;}
.ls1c{letter-spacing:15.616000pt;}
.ls53{letter-spacing:16.256000pt;}
.ls4f{letter-spacing:17.542400pt;}
.ls2f{letter-spacing:18.176000pt;}
.ls23{letter-spacing:21.376000pt;}
.ls19{letter-spacing:21.786240pt;}
.ls43{letter-spacing:22.016000pt;}
.ls1d{letter-spacing:25.216000pt;}
.ls20{letter-spacing:27.136000pt;}
.ls80{letter-spacing:29.472000pt;}
.ls56{letter-spacing:29.568000pt;}
.ls22{letter-spacing:46.725120pt;}
.lsd{letter-spacing:48.007680pt;}
.ls35{letter-spacing:48.624640pt;}
.ls49{letter-spacing:48.768000pt;}
.ls58{letter-spacing:56.903680pt;}
.ls52{letter-spacing:66.048000pt;}
.ls7f{letter-spacing:72.352000pt;}
.lse{letter-spacing:88.437760pt;}
.ls32{letter-spacing:107.494400pt;}
.ls10{letter-spacing:162.685440pt;}
.ls63{letter-spacing:754.447360pt;}
.ls62{letter-spacing:754.693120pt;}
.ws118{word-spacing:-19.322240pt;}
.ws16{word-spacing:-18.981760pt;}
.ws1{word-spacing:-16.997760pt;}
.ws0{word-spacing:-16.773120pt;}
.ws10a{word-spacing:-16.174080pt;}
.ws93{word-spacing:-15.828480pt;}
.ws1c{word-spacing:-15.482880pt;}
.wsfc{word-spacing:-15.413760pt;}
.ws1a{word-spacing:-15.296000pt;}
.ws121{word-spacing:-15.192320pt;}
.ws82{word-spacing:-15.137280pt;}
.ws21{word-spacing:-14.784000pt;}
.ws11f{word-spacing:-14.767360pt;}
.wsa7{word-spacing:-14.720000pt;}
.ws119{word-spacing:-14.661120pt;}
.ws5c{word-spacing:-14.656000pt;}
.ws17{word-spacing:-14.592000pt;}
.ws18{word-spacing:-14.528000pt;}
.ws19{word-spacing:-14.464000pt;}
.ws1b{word-spacing:-14.400000pt;}
.ws120{word-spacing:-14.342400pt;}
.ws1f{word-spacing:-14.336000pt;}
.ws1d{word-spacing:-14.272000pt;}
.ws74{word-spacing:-14.208000pt;}
.ws20{word-spacing:-14.144000pt;}
.wsbd{word-spacing:-14.080000pt;}
.ws83{word-spacing:-13.952000pt;}
.ws75{word-spacing:-13.888000pt;}
.wsea{word-spacing:-13.760000pt;}
.ws1e{word-spacing:-13.696000pt;}
.wsf{word-spacing:-13.542400pt;}
.wsd{word-spacing:-13.483520pt;}
.wscb{word-spacing:-13.306880pt;}
.wse{word-spacing:-13.248000pt;}
.wsb{word-spacing:-13.189120pt;}
.wscc{word-spacing:-13.130240pt;}
.wsc{word-spacing:-13.071360pt;}
.ws194{word-spacing:-11.271612pt;}
.ws12b{word-spacing:-11.136000pt;}
.ws129{word-spacing:-11.088000pt;}
.ws193{word-spacing:-11.077274pt;}
.ws131{word-spacing:-11.040000pt;}
.ws12a{word-spacing:-10.992000pt;}
.ws12e{word-spacing:-10.896000pt;}
.ws130{word-spacing:-10.848000pt;}
.ws12d{word-spacing:-10.800000pt;}
.ws128{word-spacing:-10.752000pt;}
.ws18f{word-spacing:-10.737182pt;}
.ws12c{word-spacing:-10.704000pt;}
.ws127{word-spacing:-10.656000pt;}
.ws126{word-spacing:-10.608000pt;}
.ws12f{word-spacing:-10.560000pt;}
.ws192{word-spacing:-10.494259pt;}
.ws191{word-spacing:-10.397090pt;}
.ws190{word-spacing:-10.299921pt;}
.wsde{word-spacing:-3.840000pt;}
.ws29{word-spacing:-3.648000pt;}
.ws2a{word-spacing:-3.264000pt;}
.ws41{word-spacing:-3.136000pt;}
.ws42{word-spacing:-3.008000pt;}
.ws9a{word-spacing:-2.880000pt;}
.ws10e{word-spacing:-2.688000pt;}
.ws4a{word-spacing:-2.624000pt;}
.wse8{word-spacing:-2.560000pt;}
.wsaf{word-spacing:-2.496000pt;}
.ws90{word-spacing:-2.432000pt;}
.ws53{word-spacing:-2.368000pt;}
.ws160{word-spacing:-2.352000pt;}
.ws176{word-spacing:-2.304000pt;}
.ws161{word-spacing:-2.256000pt;}
.ws81{word-spacing:-2.178560pt;}
.wsc5{word-spacing:-2.048000pt;}
.wsdf{word-spacing:-1.984000pt;}
.ws24{word-spacing:-1.856000pt;}
.ws9c{word-spacing:-1.792000pt;}
.ws91{word-spacing:-1.728000pt;}
.ws181{word-spacing:-1.632000pt;}
.wsb1{word-spacing:-1.472000pt;}
.wsac{word-spacing:-1.344000pt;}
.wsf3{word-spacing:-1.280000pt;}
.ws46{word-spacing:-1.088000pt;}
.ws19b{word-spacing:-1.068860pt;}
.wsf0{word-spacing:-0.832000pt;}
.ws19e{word-spacing:-0.777353pt;}
.wsbc{word-spacing:-0.768000pt;}
.ws7f{word-spacing:-0.765440pt;}
.ws43{word-spacing:-0.704000pt;}
.ws14{word-spacing:-0.647680pt;}
.ws19a{word-spacing:-0.631599pt;}
.ws25{word-spacing:-0.576000pt;}
.ws97{word-spacing:-0.512000pt;}
.ws15{word-spacing:-0.471040pt;}
.ws45{word-spacing:-0.448000pt;}
.ws19f{word-spacing:-0.437261pt;}
.ws22{word-spacing:-0.414720pt;}
.ws4d{word-spacing:-0.320000pt;}
.ws80{word-spacing:-0.294400pt;}
.ws162{word-spacing:-0.288000pt;}
.ws85{word-spacing:-0.276480pt;}
.ws2d{word-spacing:-0.256000pt;}
.ws9b{word-spacing:-0.235520pt;}
.ws95{word-spacing:-0.207360pt;}
.ws1a0{word-spacing:-0.194338pt;}
.ws8b{word-spacing:-0.192000pt;}
.ws9{word-spacing:-0.149760pt;}
.ws5{word-spacing:-0.128000pt;}
.ws123{word-spacing:-0.106240pt;}
.ws195{word-spacing:-0.097169pt;}
.ws94{word-spacing:-0.085120pt;}
.ws2f{word-spacing:-0.064000pt;}
.ws158{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws138{word-spacing:0.048000pt;}
.ws11d{word-spacing:0.053120pt;}
.ws84{word-spacing:0.058880pt;}
.ws6{word-spacing:0.064000pt;}
.wse0{word-spacing:0.069120pt;}
.ws10{word-spacing:0.085120pt;}
.ws13d{word-spacing:0.096000pt;}
.ws122{word-spacing:0.106240pt;}
.ws11{word-spacing:0.117760pt;}
.ws96{word-spacing:0.128000pt;}
.ws133{word-spacing:0.144000pt;}
.ws19c{word-spacing:0.145754pt;}
.ws124{word-spacing:0.159360pt;}
.ws13{word-spacing:0.176640pt;}
.ws23{word-spacing:0.192000pt;}
.ws125{word-spacing:0.212480pt;}
.wsa{word-spacing:0.224640pt;}
.ws134{word-spacing:0.240000pt;}
.ws199{word-spacing:0.242923pt;}
.ws7a{word-spacing:0.256000pt;}
.ws8d{word-spacing:0.276480pt;}
.ws141{word-spacing:0.288000pt;}
.ws198{word-spacing:0.291507pt;}
.ws8{word-spacing:0.299520pt;}
.ws44{word-spacing:0.320000pt;}
.ws169{word-spacing:0.336000pt;}
.ws196{word-spacing:0.340092pt;}
.ws12{word-spacing:0.353280pt;}
.ws7{word-spacing:0.384000pt;}
.ws132{word-spacing:0.412160pt;}
.ws68{word-spacing:0.448000pt;}
.ws19d{word-spacing:0.485845pt;}
.ws4{word-spacing:0.512000pt;}
.ws7b{word-spacing:0.529920pt;}
.ws39{word-spacing:0.576000pt;}
.ws3{word-spacing:0.585600pt;}
.wsee{word-spacing:0.622080pt;}
.ws172{word-spacing:0.624000pt;}
.ws183{word-spacing:0.672000pt;}
.ws197{word-spacing:0.680183pt;}
.ws11e{word-spacing:0.690560pt;}
.wsa9{word-spacing:0.704000pt;}
.wsd5{word-spacing:0.768000pt;}
.ws173{word-spacing:0.816000pt;}
.ws38{word-spacing:0.832000pt;}
.ws16d{word-spacing:0.912000pt;}
.wsb0{word-spacing:1.088000pt;}
.wsfe{word-spacing:1.152000pt;}
.ws7c{word-spacing:1.177600pt;}
.ws6b{word-spacing:1.216000pt;}
.wsae{word-spacing:1.280000pt;}
.wsbf{word-spacing:1.344000pt;}
.ws72{word-spacing:1.472000pt;}
.ws17a{word-spacing:1.488000pt;}
.wse2{word-spacing:1.600000pt;}
.ws7d{word-spacing:1.648640pt;}
.wsdd{word-spacing:1.728000pt;}
.ws3a{word-spacing:1.856000pt;}
.wsc9{word-spacing:2.048000pt;}
.wse3{word-spacing:2.073600pt;}
.ws3b{word-spacing:2.112000pt;}
.ws7e{word-spacing:2.296320pt;}
.wse4{word-spacing:2.368000pt;}
.ws58{word-spacing:2.496000pt;}
.ws10c{word-spacing:2.560000pt;}
.ws9d{word-spacing:2.624000pt;}
.ws167{word-spacing:2.688000pt;}
.ws27{word-spacing:2.752000pt;}
.wsc3{word-spacing:3.008000pt;}
.ws6a{word-spacing:3.136000pt;}
.wsec{word-spacing:3.200000pt;}
.ws59{word-spacing:3.392000pt;}
.wsb7{word-spacing:3.520000pt;}
.wsbb{word-spacing:3.648000pt;}
.wsd7{word-spacing:3.712000pt;}
.ws6c{word-spacing:3.776000pt;}
.ws186{word-spacing:3.888000pt;}
.wsc6{word-spacing:3.904000pt;}
.wsff{word-spacing:4.008960pt;}
.ws6d{word-spacing:4.032000pt;}
.wsd8{word-spacing:4.224000pt;}
.wsed{word-spacing:4.352000pt;}
.ws89{word-spacing:4.416000pt;}
.wsa3{word-spacing:4.544000pt;}
.ws101{word-spacing:4.608000pt;}
.ws35{word-spacing:4.672000pt;}
.ws166{word-spacing:4.704000pt;}
.ws100{word-spacing:4.928000pt;}
.ws92{word-spacing:5.056000pt;}
.wsd9{word-spacing:5.184000pt;}
.wse9{word-spacing:5.248000pt;}
.ws64{word-spacing:5.312000pt;}
.ws148{word-spacing:5.328000pt;}
.wsc4{word-spacing:5.568000pt;}
.wsf9{word-spacing:5.632000pt;}
.ws62{word-spacing:5.696000pt;}
.ws105{word-spacing:5.824000pt;}
.ws65{word-spacing:5.952000pt;}
.wsf2{word-spacing:6.208000pt;}
.ws69{word-spacing:6.336000pt;}
.wsda{word-spacing:6.464000pt;}
.wsa0{word-spacing:6.528000pt;}
.ws63{word-spacing:6.592000pt;}
.ws9f{word-spacing:6.848000pt;}
.ws54{word-spacing:6.976000pt;}
.ws146{word-spacing:7.008000pt;}
.ws109{word-spacing:7.168000pt;}
.ws55{word-spacing:7.232000pt;}
.ws13e{word-spacing:7.296000pt;}
.ws104{word-spacing:7.488000pt;}
.ws103{word-spacing:7.552000pt;}
.ws47{word-spacing:7.616000pt;}
.ws5a{word-spacing:7.872000pt;}
.ws175{word-spacing:7.920000pt;}
.ws49{word-spacing:8.000000pt;}
.wsb8{word-spacing:8.128000pt;}
.ws48{word-spacing:8.256000pt;}
.wsfd{word-spacing:8.384000pt;}
.ws34{word-spacing:8.512000pt;}
.ws179{word-spacing:8.544000pt;}
.ws98{word-spacing:8.640000pt;}
.ws33{word-spacing:8.832000pt;}
.ws67{word-spacing:8.896000pt;}
.ws37{word-spacing:9.024000pt;}
.ws17b{word-spacing:9.120000pt;}
.ws36{word-spacing:9.152000pt;}
.ws10b{word-spacing:9.408000pt;}
.ws8c{word-spacing:9.472000pt;}
.ws40{word-spacing:9.536000pt;}
.ws17e{word-spacing:9.600000pt;}
.ws32{word-spacing:9.664000pt;}
.ws26{word-spacing:9.792000pt;}
.ws3f{word-spacing:10.048000pt;}
.wse6{word-spacing:10.112000pt;}
.ws5b{word-spacing:10.176000pt;}
.wsb5{word-spacing:10.240000pt;}
.ws88{word-spacing:10.304000pt;}
.wsd2{word-spacing:10.368000pt;}
.ws31{word-spacing:10.432000pt;}
.ws165{word-spacing:10.512000pt;}
.ws66{word-spacing:10.816000pt;}
.ws30{word-spacing:11.072000pt;}
.ws52{word-spacing:11.200000pt;}
.ws51{word-spacing:11.456000pt;}
.wsf7{word-spacing:11.584000pt;}
.ws5e{word-spacing:11.712000pt;}
.ws171{word-spacing:11.760000pt;}
.wsb6{word-spacing:11.968000pt;}
.ws6e{word-spacing:12.096000pt;}
.wscf{word-spacing:12.160000pt;}
.ws156{word-spacing:12.192000pt;}
.ws73{word-spacing:12.352000pt;}
.ws3c{word-spacing:12.736000pt;}
.wsdc{word-spacing:12.800000pt;}
.wsd6{word-spacing:12.864000pt;}
.wsca{word-spacing:12.992000pt;}
.wsef{word-spacing:13.376000pt;}
.wsad{word-spacing:13.504000pt;}
.ws11c{word-spacing:13.632000pt;}
.ws5d{word-spacing:14.016000pt;}
.wsc2{word-spacing:14.272000pt;}
.wsc1{word-spacing:14.528000pt;}
.ws79{word-spacing:14.656000pt;}
.wsc0{word-spacing:14.848000pt;}
.ws10f{word-spacing:14.860800pt;}
.ws57{word-spacing:14.912000pt;}
.ws174{word-spacing:14.976000pt;}
.ws110{word-spacing:15.232000pt;}
.ws2b{word-spacing:15.296000pt;}
.wsb3{word-spacing:15.424000pt;}
.ws2c{word-spacing:15.552000pt;}
.ws152{word-spacing:15.600000pt;}
.wsb2{word-spacing:15.808000pt;}
.ws8a{word-spacing:16.192000pt;}
.wse7{word-spacing:16.512000pt;}
.ws150{word-spacing:16.896000pt;}
.ws99{word-spacing:17.216000pt;}
.wsd4{word-spacing:17.344000pt;}
.wsf1{word-spacing:17.472000pt;}
.wsd3{word-spacing:17.902080pt;}
.ws17f{word-spacing:17.952000pt;}
.wsf4{word-spacing:17.984000pt;}
.wsce{word-spacing:18.112000pt;}
.ws153{word-spacing:18.192000pt;}
.ws117{word-spacing:18.496000pt;}
.ws71{word-spacing:18.752000pt;}
.ws70{word-spacing:19.008000pt;}
.ws8e{word-spacing:19.136000pt;}
.ws8f{word-spacing:19.392000pt;}
.wseb{word-spacing:19.648000pt;}
.wsab{word-spacing:19.776000pt;}
.wsbe{word-spacing:20.032000pt;}
.ws6f{word-spacing:20.416000pt;}
.ws4e{word-spacing:20.608000pt;}
.wse1{word-spacing:20.672000pt;}
.wsaa{word-spacing:20.928000pt;}
.ws4f{word-spacing:21.056000pt;}
.ws9e{word-spacing:21.184000pt;}
.ws50{word-spacing:21.312000pt;}
.wse5{word-spacing:21.696000pt;}
.wscd{word-spacing:21.824000pt;}
.wsa2{word-spacing:21.952000pt;}
.ws149{word-spacing:22.128000pt;}
.wsa8{word-spacing:22.208000pt;}
.wsa1{word-spacing:22.464000pt;}
.wsb4{word-spacing:22.592000pt;}
.ws107{word-spacing:22.976000pt;}
.ws106{word-spacing:23.104000pt;}
.ws108{word-spacing:23.232000pt;}
.ws15d{word-spacing:23.280000pt;}
.ws187{word-spacing:23.952000pt;}
.ws15a{word-spacing:24.480000pt;}
.wsa5{word-spacing:24.896000pt;}
.wsa4{word-spacing:24.960000pt;}
.ws87{word-spacing:25.024000pt;}
.ws86{word-spacing:25.472000pt;}
.wsa6{word-spacing:25.536000pt;}
.ws2e{word-spacing:25.792000pt;}
.ws137{word-spacing:25.824000pt;}
.ws3d{word-spacing:26.816000pt;}
.wsdb{word-spacing:27.008000pt;}
.ws3e{word-spacing:27.072000pt;}
.ws56{word-spacing:27.456000pt;}
.wsfa{word-spacing:27.520000pt;}
.ws77{word-spacing:27.712000pt;}
.wsfb{word-spacing:28.096000pt;}
.wsd0{word-spacing:28.224000pt;}
.wsd1{word-spacing:28.352000pt;}
.ws14c{word-spacing:28.368000pt;}
.ws15b{word-spacing:28.560000pt;}
.ws182{word-spacing:28.848000pt;}
.ws159{word-spacing:29.712000pt;}
.wsf8{word-spacing:30.016000pt;}
.wsb9{word-spacing:30.144000pt;}
.wsba{word-spacing:30.272000pt;}
.ws113{word-spacing:30.656000pt;}
.ws10d{word-spacing:30.912000pt;}
.ws112{word-spacing:32.576000pt;}
.ws116{word-spacing:32.832000pt;}
.ws111{word-spacing:33.088000pt;}
.ws13c{word-spacing:33.504000pt;}
.ws18e{word-spacing:33.888000pt;}
.ws178{word-spacing:34.032000pt;}
.ws14e{word-spacing:34.128000pt;}
.ws13f{word-spacing:34.560000pt;}
.ws14d{word-spacing:34.608000pt;}
.ws170{word-spacing:34.848000pt;}
.ws76{word-spacing:35.392000pt;}
.ws102{word-spacing:36.032000pt;}
.ws185{word-spacing:36.720000pt;}
.ws189{word-spacing:36.768000pt;}
.ws13b{word-spacing:37.344000pt;}
.ws61{word-spacing:37.696000pt;}
.ws157{word-spacing:37.776000pt;}
.ws5f{word-spacing:37.952000pt;}
.ws60{word-spacing:38.080000pt;}
.ws184{word-spacing:38.592000pt;}
.ws11a{word-spacing:39.616000pt;}
.ws16b{word-spacing:40.560000pt;}
.ws16f{word-spacing:42.528000pt;}
.ws139{word-spacing:43.104000pt;}
.wsc7{word-spacing:43.683840pt;}
.ws135{word-spacing:43.728000pt;}
.ws11b{word-spacing:44.096000pt;}
.ws15e{word-spacing:44.160000pt;}
.wsc8{word-spacing:44.288000pt;}
.ws28{word-spacing:44.736000pt;}
.ws78{word-spacing:44.992000pt;}
.ws144{word-spacing:46.320000pt;}
.ws4b{word-spacing:46.912000pt;}
.ws4c{word-spacing:47.552000pt;}
.wsf6{word-spacing:51.392000pt;}
.wsf5{word-spacing:51.584000pt;}
.ws163{word-spacing:52.128000pt;}
.ws18a{word-spacing:52.656000pt;}
.ws164{word-spacing:53.760000pt;}
.ws114{word-spacing:53.824000pt;}
.ws115{word-spacing:53.952000pt;}
.ws140{word-spacing:55.968000pt;}
.ws13a{word-spacing:57.744000pt;}
.ws16e{word-spacing:58.416000pt;}
.ws143{word-spacing:59.136000pt;}
.ws18d{word-spacing:64.608000pt;}
.ws18c{word-spacing:66.528000pt;}
.ws151{word-spacing:68.736000pt;}
.ws136{word-spacing:71.280000pt;}
.ws154{word-spacing:72.576000pt;}
.ws17c{word-spacing:76.992000pt;}
.ws168{word-spacing:77.424000pt;}
.ws14b{word-spacing:77.664000pt;}
.ws18b{word-spacing:78.288000pt;}
.ws177{word-spacing:84.624000pt;}
.ws188{word-spacing:86.016000pt;}
.ws14f{word-spacing:91.776000pt;}
.ws15f{word-spacing:95.328000pt;}
.ws16a{word-spacing:96.048000pt;}
.ws142{word-spacing:109.056000pt;}
.ws16c{word-spacing:110.208000pt;}
.ws15c{word-spacing:110.832000pt;}
.ws147{word-spacing:110.976000pt;}
.ws145{word-spacing:121.008000pt;}
.ws180{word-spacing:128.640000pt;}
.ws17d{word-spacing:129.552000pt;}
.ws14a{word-spacing:136.464000pt;}
.ws155{word-spacing:187.680000pt;}
._6{margin-left:-12.827136pt;}
._4{margin-left:-8.269696pt;}
._5{margin-left:-6.378432pt;}
._3{margin-left:-4.557696pt;}
._7{margin-left:-3.639552pt;}
._9{margin-left:-2.368000pt;}
._1{margin-left:-1.071488pt;}
._0{width:0.925248pt;}
._18{width:1.841216pt;}
._11{width:3.214464pt;}
._13{width:4.576704pt;}
._14{width:6.077952pt;}
._15{width:7.279488pt;}
._d{width:9.166464pt;}
._12{width:10.365696pt;}
._e{width:11.408768pt;}
._1b{width:12.574976pt;}
._1d{width:13.504000pt;}
._22{width:16.896000pt;}
._17{width:17.894080pt;}
._c{width:18.880000pt;}
._f{width:20.797952pt;}
._10{width:22.480512pt;}
._1a{width:31.850880pt;}
._19{width:33.007488pt;}
._1f{width:35.263488pt;}
._b{width:38.319488pt;}
._16{width:43.803008pt;}
._a{width:47.173504pt;}
._1c{width:53.646464pt;}
._21{width:67.473600pt;}
._2{width:73.953280pt;}
._20{width:80.818752pt;}
._23{width:92.864000pt;}
._25{width:94.800000pt;}
._24{width:120.384000pt;}
._8{width:753.536000pt;}
._1e{width:754.664960pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.584533pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y30f{bottom:-0.000400pt;}
.y0{bottom:0.000000pt;}
.y313{bottom:0.000267pt;}
.y31e{bottom:0.000400pt;}
.y311{bottom:0.000667pt;}
.y30b{bottom:0.379333pt;}
.y340{bottom:2.658533pt;}
.y281{bottom:3.200000pt;}
.y31a{bottom:3.416667pt;}
.y30d{bottom:6.832133pt;}
.y34f{bottom:14.044400pt;}
.y349{bottom:16.321467pt;}
.y347{bottom:16.321600pt;}
.y353{bottom:16.322400pt;}
.y33f{bottom:16.322933pt;}
.y282{bottom:17.760000pt;}
.y2d8{bottom:17.920000pt;}
.y319{bottom:19.358400pt;}
.y352{bottom:22.014400pt;}
.y345{bottom:23.153467pt;}
.y34e{bottom:29.986133pt;}
.y355{bottom:29.986267pt;}
.y357{bottom:29.986933pt;}
.y33e{bottom:29.987333pt;}
.y27f{bottom:32.480000pt;}
.y318{bottom:35.300133pt;}
.y351{bottom:37.956267pt;}
.y33d{bottom:43.651867pt;}
.y34d{bottom:45.928000pt;}
.y297{bottom:47.200000pt;}
.y2{bottom:51.205760pt;}
.y317{bottom:51.241867pt;}
.y33c{bottom:57.316267pt;}
.y359{bottom:59.592533pt;}
.y28b{bottom:61.760000pt;}
.y296{bottom:61.920000pt;}
.y316{bottom:67.183600pt;}
.y1{bottom:69.120000pt;}
.y33b{bottom:70.980667pt;}
.y358{bottom:75.534533pt;}
.y289{bottom:76.480000pt;}
.y33a{bottom:84.645067pt;}
.y287{bottom:91.040000pt;}
.y290{bottom:91.200000pt;}
.y339{bottom:98.309600pt;}
.y98{bottom:99.531520pt;}
.y250{bottom:100.120320pt;}
.y309{bottom:104.330240pt;}
.y283{bottom:105.760000pt;}
.y343{bottom:110.834933pt;}
.y338{bottom:111.974000pt;}
.y155{bottom:113.760000pt;}
.y1b7{bottom:115.040000pt;}
.y24f{bottom:115.485280pt;}
.y97{bottom:117.445760pt;}
.y4a{bottom:117.600000pt;}
.yba{bottom:118.720000pt;}
.y2ee{bottom:120.320000pt;}
.y2b5{bottom:120.480000pt;}
.y2bb{bottom:121.760000pt;}
.yd8{bottom:122.720000pt;}
.y1d7{bottom:123.840000pt;}
.y20f{bottom:124.800000pt;}
.y1f3{bottom:125.600000pt;}
.y337{bottom:125.638400pt;}
.y8e{bottom:125.760000pt;}
.y342{bottom:126.776800pt;}
.y139{bottom:129.120000pt;}
.y24e{bottom:130.850240pt;}
.y154{bottom:133.280000pt;}
.y308{bottom:134.403200pt;}
.y1b6{bottom:134.560000pt;}
.y2b0{bottom:135.040000pt;}
.y96{bottom:135.360000pt;}
.y75{bottom:136.640000pt;}
.y49{bottom:137.120000pt;}
.yf{bottom:137.920000pt;}
.yb9{bottom:138.240000pt;}
.y336{bottom:139.302800pt;}
.y2c1{bottom:139.680000pt;}
.y1d6{bottom:143.520000pt;}
.y20e{bottom:144.320000pt;}
.y1f2{bottom:145.120000pt;}
.y125{bottom:145.600000pt;}
.y24d{bottom:146.374560pt;}
.y138{bottom:148.640000pt;}
.y2f8{bottom:149.600000pt;}
.y2af{bottom:149.760000pt;}
.y335{bottom:152.967200pt;}
.y153{bottom:153.760000pt;}
.y2c0{bottom:154.236000pt;}
.y2be{bottom:154.240000pt;}
.y1b5{bottom:154.880000pt;}
.y74{bottom:156.160000pt;}
.y48{bottom:156.640000pt;}
.yb8{bottom:157.760000pt;}
.y172{bottom:158.080000pt;}
.yd7{bottom:160.960000pt;}
.y24c{bottom:161.739520pt;}
.y34b{bottom:162.075867pt;}
.y8d{bottom:163.840000pt;}
.y2ca{bottom:164.320000pt;}
.y307{bottom:164.328960pt;}
.y1f1{bottom:164.640000pt;}
.y124{bottom:165.120000pt;}
.y334{bottom:166.631733pt;}
.y95{bottom:168.000000pt;}
.y137{bottom:168.160000pt;}
.y2bf{bottom:168.960000pt;}
.y2bd{bottom:168.964000pt;}
.y152{bottom:173.280000pt;}
.y1b4{bottom:174.400000pt;}
.y73{bottom:175.680000pt;}
.ye{bottom:176.000000pt;}
.y47{bottom:176.160000pt;}
.y24b{bottom:177.104480pt;}
.y34a{bottom:178.017600pt;}
.y2e5{bottom:178.880000pt;}
.y2a9{bottom:179.040000pt;}
.y333{bottom:180.296000pt;}
.yd6{bottom:180.480000pt;}
.y1d5{bottom:183.360000pt;}
.y2bc{bottom:183.520000pt;}
.y1f0{bottom:184.160000pt;}
.y123{bottom:184.640000pt;}
.y136{bottom:188.480000pt;}
.y171{bottom:190.720000pt;}
.y24a{bottom:192.469440pt;}
.y151{bottom:192.800000pt;}
.y332{bottom:193.960400pt;}
.y1b3{bottom:194.080000pt;}
.y306{bottom:194.401920pt;}
.y72{bottom:195.200000pt;}
.y46{bottom:195.680000pt;}
.yb7{bottom:196.000000pt;}
.yd5{bottom:200.320000pt;}
.y8c{bottom:202.080000pt;}
.y1d4{bottom:203.680000pt;}
.y20d{bottom:203.840000pt;}
.y122{bottom:204.160000pt;}
.y1ef{bottom:204.640000pt;}
.y331{bottom:207.624933pt;}
.y249{bottom:207.834400pt;}
.y135{bottom:208.000000pt;}
.y2a8{bottom:210.240000pt;}
.y150{bottom:213.120000pt;}
.y1b2{bottom:213.600000pt;}
.yd{bottom:214.240000pt;}
.y71{bottom:214.720000pt;}
.y45{bottom:215.200000pt;}
.yb6{bottom:215.520000pt;}
.y330{bottom:221.289333pt;}
.y248{bottom:223.040000pt;}
.y1d3{bottom:223.200000pt;}
.y121{bottom:223.680000pt;}
.y1ee{bottom:224.160000pt;}
.y305{bottom:224.327680pt;}
.y134{bottom:227.680000pt;}
.y2ba{bottom:228.156000pt;}
.yea{bottom:233.440000pt;}
.y1b1{bottom:233.920000pt;}
.y70{bottom:234.240000pt;}
.y44{bottom:234.720000pt;}
.y32f{bottom:234.953733pt;}
.yb5{bottom:235.040000pt;}
.y247{bottom:238.400000pt;}
.yd4{bottom:239.840000pt;}
.y8b{bottom:240.320000pt;}
.y1d2{bottom:242.880000pt;}
.y120{bottom:243.200000pt;}
.y20c{bottom:243.680000pt;}
.y1ed{bottom:244.480000pt;}
.y133{bottom:248.000000pt;}
.y32e{bottom:248.618133pt;}
.y14f{bottom:251.360000pt;}
.ye9{bottom:252.960000pt;}
.yc{bottom:253.113920pt;}
.y1b0{bottom:253.440000pt;}
.y246{bottom:253.745120pt;}
.y6f{bottom:253.760000pt;}
.y43{bottom:254.240000pt;}
.y304{bottom:254.253440pt;}
.yb4{bottom:254.560000pt;}
.y2b9{bottom:257.436000pt;}
.y19b{bottom:257.920000pt;}
.yd3{bottom:259.360000pt;}
.y32d{bottom:262.282533pt;}
.y11f{bottom:262.720000pt;}
.y1d1{bottom:263.200000pt;}
.y1ec{bottom:264.000000pt;}
.y132{bottom:267.520000pt;}
.y245{bottom:269.110080pt;}
.y14e{bottom:270.880000pt;}
.y2b8{bottom:272.160000pt;}
.ye8{bottom:272.480000pt;}
.y6e{bottom:273.280000pt;}
.y42{bottom:273.760000pt;}
.yb3{bottom:274.080000pt;}
.y32c{bottom:275.946933pt;}
.y8a{bottom:278.560000pt;}
.yd2{bottom:278.880000pt;}
.y1d0{bottom:282.720000pt;}
.y1eb{bottom:284.320000pt;}
.y303{bottom:284.326400pt;}
.y244{bottom:284.475040pt;}
.y2b7{bottom:286.716000pt;}
.y2b1{bottom:286.720000pt;}
.y131{bottom:287.040000pt;}
.y32b{bottom:289.611333pt;}
.y14d{bottom:290.400000pt;}
.ye7{bottom:292.000000pt;}
.y6d{bottom:292.800000pt;}
.y1af{bottom:293.440000pt;}
.yb2{bottom:293.600000pt;}
.yb{bottom:294.560000pt;}
.y19a{bottom:294.880000pt;}
.y2c8{bottom:296.800000pt;}
.y243{bottom:299.840000pt;}
.y11e{bottom:300.960000pt;}
.y2b6{bottom:301.440000pt;}
.y1cf{bottom:302.240000pt;}
.y20b{bottom:303.040000pt;}
.y32a{bottom:303.275733pt;}
.y1ea{bottom:304.000000pt;}
.y2fe{bottom:305.122560pt;}
.y14c{bottom:310.240000pt;}
.ye6{bottom:311.520000pt;}
.y41{bottom:312.000000pt;}
.y6c{bottom:312.320000pt;}
.yb1{bottom:313.120000pt;}
.y1ae{bottom:313.760000pt;}
.y302{bottom:314.252160pt;}
.y199{bottom:314.400000pt;}
.y2ae{bottom:315.996000pt;}
.y89{bottom:316.640000pt;}
.yd1{bottom:316.803840pt;}
.y329{bottom:316.940133pt;}
.y242{bottom:320.000000pt;}
.y11d{bottom:320.480000pt;}
.y1ce{bottom:321.760000pt;}
.y20a{bottom:322.560000pt;}
.y1e9{bottom:324.320000pt;}
.y130{bottom:326.080000pt;}
.y328{bottom:330.604667pt;}
.y2b4{bottom:330.716000pt;}
.y2ad{bottom:330.720000pt;}
.ye5{bottom:331.040000pt;}
.y40{bottom:331.520000pt;}
.y6b{bottom:331.840000pt;}
.yb0{bottom:332.640000pt;}
.y1ad{bottom:333.280000pt;}
.y198{bottom:333.920000pt;}
.y2fd{bottom:335.048320pt;}
.ya{bottom:335.360000pt;}
.y11c{bottom:340.000000pt;}
.y1cd{bottom:342.080000pt;}
.y209{bottom:342.240000pt;}
.y1e8{bottom:343.840000pt;}
.y327{bottom:344.269067pt;}
.y301{bottom:344.325120pt;}
.y2b3{bottom:345.272000pt;}
.y2ac{bottom:345.276000pt;}
.y12f{bottom:345.600000pt;}
.y14b{bottom:349.760000pt;}
.ye4{bottom:350.560000pt;}
.y3f{bottom:351.040000pt;}
.yaf{bottom:352.160000pt;}
.yd0{bottom:353.280000pt;}
.y197{bottom:353.440000pt;}
.y1ac{bottom:353.600000pt;}
.y88{bottom:354.880000pt;}
.y326{bottom:357.933600pt;}
.y11b{bottom:359.520000pt;}
.y2b2{bottom:359.996000pt;}
.y2ab{bottom:360.000000pt;}
.y241{bottom:360.640000pt;}
.y1cc{bottom:361.760000pt;}
.y208{bottom:362.560000pt;}
.y1e7{bottom:363.360000pt;}
.y12e{bottom:365.120000pt;}
.y2fc{bottom:365.121280pt;}
.y10a{bottom:368.480000pt;}
.y14a{bottom:369.280000pt;}
.ye3{bottom:370.080000pt;}
.y6a{bottom:370.400000pt;}
.y3e{bottom:370.560000pt;}
.y325{bottom:371.598000pt;}
.yae{bottom:371.680000pt;}
.y196{bottom:372.960000pt;}
.y1ab{bottom:373.120000pt;}
.y300{bottom:374.250880pt;}
.y2aa{bottom:374.720000pt;}
.y11a{bottom:379.040000pt;}
.y240{bottom:380.160000pt;}
.y1cb{bottom:382.080000pt;}
.y1e6{bottom:382.880000pt;}
.y12d{bottom:384.640000pt;}
.y324{bottom:385.262400pt;}
.y27a{bottom:386.923360pt;}
.y109{bottom:388.000000pt;}
.ye2{bottom:389.600000pt;}
.y18c{bottom:390.080000pt;}
.ycf{bottom:390.240000pt;}
.yad{bottom:391.200000pt;}
.y195{bottom:392.480000pt;}
.y1aa{bottom:392.800000pt;}
.y87{bottom:393.120000pt;}
.y2fb{bottom:395.047040pt;}
.y119{bottom:398.560000pt;}
.y323{bottom:398.926800pt;}
.y23f{bottom:399.680000pt;}
.y2ff{bottom:400.172800pt;}
.y31f{bottom:400.666667pt;}
.y207{bottom:400.800000pt;}
.y341{bottom:401.045333pt;}
.y2a3{bottom:401.440000pt;}
.y1ca{bottom:401.600000pt;}
.y279{bottom:402.288320pt;}
.y1e5{bottom:403.360000pt;}
.y12c{bottom:404.160000pt;}
.y108{bottom:407.520000pt;}
.ye1{bottom:409.120000pt;}
.y69{bottom:409.920000pt;}
.y3d{bottom:410.560000pt;}
.y194{bottom:412.000000pt;}
.y1a9{bottom:412.320000pt;}
.y322{bottom:412.591200pt;}
.y9{bottom:412.640000pt;}
.y278{bottom:417.653280pt;}
.y118{bottom:418.080000pt;}
.y23e{bottom:419.200000pt;}
.y206{bottom:420.320000pt;}
.y1c9{bottom:421.920000pt;}
.y1e4{bottom:422.880000pt;}
.y12b{bottom:423.680000pt;}
.y2fa{bottom:425.120000pt;}
.y321{bottom:426.255600pt;}
.y107{bottom:427.040000pt;}
.y18b{bottom:428.320000pt;}
.yce{bottom:428.480000pt;}
.ye0{bottom:428.640000pt;}
.y68{bottom:429.440000pt;}
.yac{bottom:429.760000pt;}
.y86{bottom:431.200000pt;}
.y193{bottom:431.520000pt;}
.y1a8{bottom:432.640000pt;}
.y277{bottom:432.858880pt;}
.y2a6{bottom:433.924000pt;}
.y23d{bottom:438.720000pt;}
.y2e4{bottom:439.520000pt;}
.y205{bottom:439.840000pt;}
.y320{bottom:439.919867pt;}
.y1c8{bottom:441.600000pt;}
.y356{bottom:442.038667pt;}
.y1e3{bottom:443.200000pt;}
.y106{bottom:446.560000pt;}
.y18a{bottom:448.000000pt;}
.ydf{bottom:448.160000pt;}
.y276{bottom:448.223840pt;}
.y2a5{bottom:448.480000pt;}
.y67{bottom:448.960000pt;}
.y3c{bottom:450.240000pt;}
.y8{bottom:450.880000pt;}
.y192{bottom:451.040000pt;}
.y1a7{bottom:453.120000pt;}
.y117{bottom:456.320000pt;}
.y2f7{bottom:457.280000pt;}
.y23c{bottom:458.240000pt;}
.y204{bottom:459.680000pt;}
.y12a{bottom:461.920000pt;}
.y1e2{bottom:462.720000pt;}
.y2a7{bottom:463.196000pt;}
.y2a4{bottom:463.200000pt;}
.y275{bottom:463.588800pt;}
.y149{bottom:466.080000pt;}
.ycd{bottom:466.720000pt;}
.yde{bottom:467.680000pt;}
.y189{bottom:468.320000pt;}
.y66{bottom:468.480000pt;}
.yab{bottom:469.280000pt;}
.y85{bottom:469.440000pt;}
.y3b{bottom:469.760000pt;}
.y191{bottom:470.560000pt;}
.y2f6{bottom:472.004000pt;}
.y1a6{bottom:473.440000pt;}
.y116{bottom:475.840000pt;}
.y23b{bottom:477.920000pt;}
.y274{bottom:478.953760pt;}
.y170{bottom:479.680000pt;}
.y129{bottom:481.440000pt;}
.y1e1{bottom:483.040000pt;}
.y105{bottom:484.800000pt;}
.y148{bottom:485.600000pt;}
.y2f3{bottom:486.552000pt;}
.y2f5{bottom:486.560000pt;}
.ydd{bottom:487.200000pt;}
.y188{bottom:487.840000pt;}
.y65{bottom:488.000000pt;}
.yaa{bottom:488.800000pt;}
.y7{bottom:488.960000pt;}
.y1a5{bottom:492.960000pt;}
.y94{bottom:493.600000pt;}
.y273{bottom:494.318720pt;}
.y115{bottom:495.360000pt;}
.y23a{bottom:497.440000pt;}
.y16f{bottom:499.200000pt;}
.y1c7{bottom:500.960000pt;}
.y2f2{bottom:501.276000pt;}
.y1e0{bottom:502.720000pt;}
.y104{bottom:504.320000pt;}
.y29a{bottom:504.640000pt;}
.ycc{bottom:504.800000pt;}
.ydc{bottom:506.880000pt;}
.y64{bottom:507.520000pt;}
.y84{bottom:507.680000pt;}
.y3a{bottom:508.000000pt;}
.y187{bottom:508.160000pt;}
.y272{bottom:509.683680pt;}
.y350{bottom:510.362667pt;}
.y190{bottom:510.720000pt;}
.y93{bottom:512.811520pt;}
.y1a4{bottom:513.280000pt;}
.y114{bottom:514.880000pt;}
.y2f1{bottom:516.000000pt;}
.y2f4{bottom:516.004000pt;}
.y239{bottom:516.960000pt;}
.y16e{bottom:518.720000pt;}
.y128{bottom:519.205760pt;}
.y1c6{bottom:520.480000pt;}
.y2a1{bottom:522.396000pt;}
.y1df{bottom:523.040000pt;}
.y103{bottom:523.840000pt;}
.y271{bottom:524.889280pt;}
.ydb{bottom:526.400000pt;}
.y63{bottom:527.040000pt;}
.y6{bottom:527.200000pt;}
.y39{bottom:527.520000pt;}
.y186{bottom:527.680000pt;}
.y2f0{bottom:530.556000pt;}
.y2ef{bottom:530.560000pt;}
.y92{bottom:530.725760pt;}
.y1a3{bottom:532.960000pt;}
.y23{bottom:533.120000pt;}
.y113{bottom:534.400000pt;}
.y238{bottom:536.480000pt;}
.y127{bottom:537.120000pt;}
.y203{bottom:537.280000pt;}
.y16d{bottom:538.240000pt;}
.y1c5{bottom:540.000000pt;}
.y270{bottom:540.254240pt;}
.y220{bottom:540.800000pt;}
.y1de{bottom:542.560000pt;}
.ycb{bottom:543.040000pt;}
.y102{bottom:543.360000pt;}
.y2ea{bottom:545.280000pt;}
.y2f9{bottom:545.284000pt;}
.y83{bottom:545.920000pt;}
.y62{bottom:546.560000pt;}
.y38{bottom:547.040000pt;}
.y185{bottom:547.360000pt;}
.y91{bottom:548.640000pt;}
.y18f{bottom:550.240000pt;}
.y29c{bottom:551.840000pt;}
.y2a2{bottom:551.844000pt;}
.y1a2{bottom:553.280000pt;}
.y112{bottom:553.920000pt;}
.y26f{bottom:555.619200pt;}
.y237{bottom:556.000000pt;}
.y202{bottom:556.800000pt;}
.y16c{bottom:557.760000pt;}
.y2e9{bottom:559.836000pt;}
.y2ed{bottom:559.840000pt;}
.y1c4{bottom:560.320000pt;}
.y147{bottom:561.920000pt;}
.yca{bottom:562.560000pt;}
.y101{bottom:562.880000pt;}
.y22{bottom:564.453120pt;}
.ya9{bottom:566.080000pt;}
.y61{bottom:566.240000pt;}
.y2a0{bottom:566.396000pt;}
.y29e{bottom:566.400000pt;}
.y37{bottom:566.560000pt;}
.y184{bottom:567.680000pt;}
.y5{bottom:568.969120pt;}
.y126{bottom:569.920000pt;}
.y26e{bottom:570.984160pt;}
.y111{bottom:573.600000pt;}
.y2e8{bottom:574.560000pt;}
.y2ec{bottom:574.564000pt;}
.y236{bottom:575.520000pt;}
.y201{bottom:576.480000pt;}
.y354{bottom:578.684000pt;}
.y21f{bottom:579.840000pt;}
.y1c3{bottom:580.000000pt;}
.y222{bottom:580.165120pt;}
.y29f{bottom:581.120000pt;}
.y29d{bottom:581.124000pt;}
.y90{bottom:581.280000pt;}
.y146{bottom:581.600000pt;}
.yc9{bottom:582.080000pt;}
.y100{bottom:582.400000pt;}
.y82{bottom:584.000000pt;}
.ya8{bottom:585.600000pt;}
.y60{bottom:585.760000pt;}
.y36{bottom:586.080000pt;}
.y26d{bottom:586.349120pt;}
.y183{bottom:587.200000pt;}
.y18e{bottom:588.160000pt;}
.y2e7{bottom:589.116000pt;}
.y2eb{bottom:589.120000pt;}
.y21{bottom:590.375040pt;}
.y1a1{bottom:591.360000pt;}
.y235{bottom:595.040000pt;}
.y29b{bottom:595.680000pt;}
.y16b{bottom:596.000000pt;}
.y21e{bottom:599.360000pt;}
.y1c2{bottom:600.320000pt;}
.y145{bottom:601.120000pt;}
.y26c{bottom:601.554720pt;}
.yc8{bottom:601.600000pt;}
.yff{bottom:601.920000pt;}
.y81{bottom:603.680000pt;}
.y2e6{bottom:603.840000pt;}
.ya7{bottom:605.120000pt;}
.y5f{bottom:605.280000pt;}
.y35{bottom:605.600000pt;}
.y182{bottom:607.520000pt;}
.y1a0{bottom:611.040000pt;}
.y110{bottom:611.680000pt;}
.y234{bottom:614.560000pt;}
.y16a{bottom:615.520000pt;}
.y20{bottom:616.458880pt;}
.y26b{bottom:616.919680pt;}
.y21d{bottom:618.880000pt;}
.y1c1{bottom:619.840000pt;}
.y144{bottom:620.640000pt;}
.y18d{bottom:620.800000pt;}
.yc7{bottom:621.120000pt;}
.yfe{bottom:621.440000pt;}
.y28c{bottom:622.400000pt;}
.y80{bottom:623.200000pt;}
.y4{bottom:623.517760pt;}
.ya6{bottom:624.640000pt;}
.y5e{bottom:624.800000pt;}
.y34{bottom:625.120000pt;}
.y181{bottom:627.040000pt;}
.y19f{bottom:630.560000pt;}
.y10f{bottom:631.200000pt;}
.y221{bottom:632.000000pt;}
.y26a{bottom:632.284640pt;}
.y200{bottom:634.080000pt;}
.y169{bottom:635.040000pt;}
.y21c{bottom:638.400000pt;}
.y1c0{bottom:639.360000pt;}
.y143{bottom:640.160000pt;}
.y299{bottom:640.316000pt;}
.y295{bottom:640.320000pt;}
.yc6{bottom:640.640000pt;}
.yfd{bottom:640.960000pt;}
.y1f{bottom:642.380800pt;}
.yda{bottom:642.720000pt;}
.ya5{bottom:644.160000pt;}
.y5d{bottom:644.320000pt;}
.y33{bottom:644.640000pt;}
.y180{bottom:646.560000pt;}
.y348{bottom:647.006667pt;}
.y269{bottom:647.649600pt;}
.y2e2{bottom:648.480000pt;}
.y2e3{bottom:648.484000pt;}
.y19e{bottom:650.400000pt;}
.y10e{bottom:651.200000pt;}
.y233{bottom:653.600000pt;}
.y1ff{bottom:653.760000pt;}
.y298{bottom:655.040000pt;}
.y294{bottom:655.044000pt;}
.y168{bottom:655.360000pt;}
.y142{bottom:659.680000pt;}
.y1dd{bottom:660.000000pt;}
.yc5{bottom:660.160000pt;}
.yfc{bottom:660.640000pt;}
.y7f{bottom:661.280000pt;}
.yd9{bottom:662.240000pt;}
.y268{bottom:663.014560pt;}
.y2e1{bottom:663.040000pt;}
.y5c{bottom:663.520000pt;}
.ya4{bottom:663.680000pt;}
.y32{bottom:664.320000pt;}
.y17f{bottom:666.240000pt;}
.y1e{bottom:668.302720pt;}
.y293{bottom:669.600000pt;}
.y232{bottom:673.120000pt;}
.y1fe{bottom:674.080000pt;}
.y167{bottom:674.880000pt;}
.y21b{bottom:676.640000pt;}
.y2dc{bottom:677.764000pt;}
.y3{bottom:677.920000pt;}
.y267{bottom:678.379520pt;}
.y141{bottom:679.200000pt;}
.yc4{bottom:679.840000pt;}
.yfb{bottom:680.160000pt;}
.y7e{bottom:680.800000pt;}
.y5b{bottom:681.760000pt;}
.ya3{bottom:683.200000pt;}
.y31{bottom:683.840000pt;}
.y28f{bottom:684.320000pt;}
.y292{bottom:684.324000pt;}
.y17e{bottom:686.560000pt;}
.y1d{bottom:687.497600pt;}
.y346{bottom:688.000000pt;}
.y19d{bottom:689.440000pt;}
.y10d{bottom:690.245760pt;}
.y2df{bottom:692.316000pt;}
.y2db{bottom:692.320000pt;}
.y231{bottom:692.640000pt;}
.y266{bottom:693.585120pt;}
.y1fd{bottom:694.400000pt;}
.y166{bottom:694.560000pt;}
.y21a{bottom:696.160000pt;}
.y1bf{bottom:697.920000pt;}
.y28e{bottom:698.876000pt;}
.y291{bottom:698.880000pt;}
.yc3{bottom:699.360000pt;}
.y1dc{bottom:699.520000pt;}
.yfa{bottom:699.680000pt;}
.y7d{bottom:700.320000pt;}
.y5a{bottom:701.280000pt;}
.y30{bottom:703.360000pt;}
.y17d{bottom:706.080000pt;}
.y2de{bottom:707.040000pt;}
.y2e0{bottom:707.044000pt;}
.y10c{bottom:708.160000pt;}
.y265{bottom:708.950080pt;}
.y230{bottom:712.160000pt;}
.y28d{bottom:713.600000pt;}
.y1c{bottom:713.743360pt;}
.y1fc{bottom:714.080000pt;}
.y165{bottom:714.880000pt;}
.y219{bottom:715.680000pt;}
.y140{bottom:717.440000pt;}
.yc2{bottom:718.880000pt;}
.y1db{bottom:719.040000pt;}
.yf9{bottom:719.200000pt;}
.y7c{bottom:720.000000pt;}
.y59{bottom:720.800000pt;}
.y2dd{bottom:721.596000pt;}
.y2da{bottom:721.600000pt;}
.y19c{bottom:722.240000pt;}
.y2f{bottom:722.880000pt;}
.ya2{bottom:723.200000pt;}
.y264{bottom:724.315040pt;}
.y17c{bottom:725.600000pt;}
.y34c{bottom:728.993333pt;}
.y22f{bottom:731.680000pt;}
.y164{bottom:734.400000pt;}
.y218{bottom:736.000000pt;}
.y2d9{bottom:736.320000pt;}
.y13f{bottom:736.960000pt;}
.yc1{bottom:738.400000pt;}
.y1da{bottom:738.560000pt;}
.yf8{bottom:738.720000pt;}
.y7b{bottom:739.520000pt;}
.y1b{bottom:739.665280pt;}
.y263{bottom:739.680000pt;}
.y58{bottom:740.320000pt;}
.y10b{bottom:740.800000pt;}
.y2e{bottom:742.400000pt;}
.ya1{bottom:744.160000pt;}
.y17b{bottom:745.920000pt;}
.y22e{bottom:751.200000pt;}
.y1fb{bottom:753.920000pt;}
.y163{bottom:754.720000pt;}
.y262{bottom:754.953760pt;}
.y217{bottom:755.520000pt;}
.y1be{bottom:756.960000pt;}
.y13e{bottom:757.280000pt;}
.yf7{bottom:758.240000pt;}
.y7a{bottom:759.040000pt;}
.y57{bottom:759.840000pt;}
.y2d{bottom:761.920000pt;}
.y2c9{bottom:763.040000pt;}
.y1a{bottom:765.587200pt;}
.y17a{bottom:765.600000pt;}
.y261{bottom:770.318720pt;}
.y22d{bottom:770.880000pt;}
.y288{bottom:772.796000pt;}
.y162{bottom:774.240000pt;}
.y216{bottom:775.200000pt;}
.y13d{bottom:776.800000pt;}
.yf6{bottom:777.760000pt;}
.yc0{bottom:778.400000pt;}
.y79{bottom:778.560000pt;}
.y56{bottom:779.360000pt;}
.y2c{bottom:781.440000pt;}
.ya0{bottom:784.000000pt;}
.y260{bottom:785.524320pt;}
.y179{bottom:785.920000pt;}
.y286{bottom:787.520000pt;}
.y22c{bottom:790.400000pt;}
.y19{bottom:791.671040pt;}
.y161{bottom:793.760000pt;}
.y215{bottom:795.520000pt;}
.y1bd{bottom:796.320000pt;}
.y13c{bottom:796.480000pt;}
.yf5{bottom:797.280000pt;}
.y344{bottom:797.316000pt;}
.y78{bottom:798.080000pt;}
.y55{bottom:798.880000pt;}
.y25f{bottom:800.889280pt;}
.y2b{bottom:800.960000pt;}
.y285{bottom:802.076000pt;}
.y28a{bottom:802.080000pt;}
.y9f{bottom:804.960000pt;}
.y178{bottom:805.440000pt;}
.y22b{bottom:809.920000pt;}
.y2d6{bottom:810.240000pt;}
.y1fa{bottom:813.280000pt;}
.y160{bottom:813.440000pt;}
.y214{bottom:815.040000pt;}
.y1bc{bottom:815.840000pt;}
.y25e{bottom:816.254240pt;}
.yf4{bottom:816.800000pt;}
.y18{bottom:817.592960pt;}
.y77{bottom:817.600000pt;}
.ybf{bottom:818.080000pt;}
.y54{bottom:818.400000pt;}
.y2a{bottom:820.480000pt;}
.y2d7{bottom:824.960000pt;}
.y2d5{bottom:824.964000pt;}
.y177{bottom:825.760000pt;}
.y9e{bottom:825.920000pt;}
.y22a{bottom:829.440000pt;}
.y284{bottom:831.360000pt;}
.y25d{bottom:831.619200pt;}
.y1f9{bottom:832.800000pt;}
.y15f{bottom:833.760000pt;}
.y1bb{bottom:835.360000pt;}
.yf3{bottom:836.320000pt;}
.y17{bottom:836.787840pt;}
.y76{bottom:837.120000pt;}
.y2d0{bottom:839.516000pt;}
.y2d4{bottom:839.520000pt;}
.y29{bottom:840.000000pt;}
.y176{bottom:845.280000pt;}
.y25c{bottom:846.984160pt;}
.y229{bottom:848.960000pt;}
.y31d{bottom:851.973333pt;}
.y1f8{bottom:852.480000pt;}
.y15e{bottom:853.280000pt;}
.y2cf{bottom:854.240000pt;}
.y2d3{bottom:854.244000pt;}
.y1ba{bottom:854.880000pt;}
.yf2{bottom:855.840000pt;}
.ybe{bottom:856.320000pt;}
.y53{bottom:856.640000pt;}
.y27e{bottom:858.240000pt;}
.y28{bottom:859.520000pt;}
.y31c{bottom:861.082667pt;}
.y25b{bottom:862.349120pt;}
.y16{bottom:862.871680pt;}
.y175{bottom:864.960000pt;}
.y9d{bottom:865.920000pt;}
.y228{bottom:868.480000pt;}
.y2ce{bottom:868.796000pt;}
.y2cc{bottom:868.800000pt;}
.y31b{bottom:870.193333pt;}
.y1f7{bottom:872.800000pt;}
.y15d{bottom:873.600000pt;}
.y1d9{bottom:874.400000pt;}
.y213{bottom:874.560000pt;}
.yf1{bottom:875.360000pt;}
.y280{bottom:876.000000pt;}
.y52{bottom:876.160000pt;}
.y25a{bottom:877.554720pt;}
.y27{bottom:879.040000pt;}
.y315{bottom:879.302667pt;}
.y15{bottom:882.066560pt;}
.y2cb{bottom:883.520000pt;}
.y2d2{bottom:883.524000pt;}
.y174{bottom:885.280000pt;}
.y9c{bottom:886.880000pt;}
.y227{bottom:888.000000pt;}
.y1f6{bottom:892.320000pt;}
.y259{bottom:892.919680pt;}
.y1b9{bottom:893.120000pt;}
.y15c{bottom:893.280000pt;}
.y1d8{bottom:894.080000pt;}
.yf0{bottom:894.880000pt;}
.y51{bottom:895.680000pt;}
.ybd{bottom:896.321280pt;}
.y2cd{bottom:898.076000pt;}
.y2d1{bottom:898.080000pt;}
.y173{bottom:905.600000pt;}
.y27d{bottom:906.737280pt;}
.y226{bottom:907.520000pt;}
.y9b{bottom:907.840000pt;}
.y258{bottom:908.284640pt;}
.y14{bottom:908.312320pt;}
.y1f5{bottom:912.640000pt;}
.y1b8{bottom:912.800000pt;}
.y15b{bottom:913.600000pt;}
.yef{bottom:914.400000pt;}
.y50{bottom:915.200000pt;}
.y13b{bottom:915.360000pt;}
.y26{bottom:917.280000pt;}
.ybc{bottom:919.202720pt;}
.y257{bottom:923.649600pt;}
.y225{bottom:927.040000pt;}
.y1f4{bottom:932.320000pt;}
.y15a{bottom:933.120000pt;}
.y212{bottom:933.920000pt;}
.yee{bottom:934.080000pt;}
.y13{bottom:934.234240pt;}
.y4f{bottom:934.720000pt;}
.y13a{bottom:935.680000pt;}
.y25{bottom:936.800000pt;}
.y27c{bottom:936.972160pt;}
.y256{bottom:939.014560pt;}
.y2c2{bottom:939.520000pt;}
.y9a{bottom:946.400000pt;}
.y224{bottom:946.560000pt;}
.ybb{bottom:950.080000pt;}
.y159{bottom:952.640000pt;}
.y211{bottom:953.440000pt;}
.yed{bottom:953.600000pt;}
.y255{bottom:954.220160pt;}
.y4e{bottom:954.240000pt;}
.y27b{bottom:956.167040pt;}
.y2c7{bottom:957.440000pt;}
.y314{bottom:959.012000pt;}
.y12{bottom:960.318080pt;}
.y312{bottom:968.121333pt;}
.y254{bottom:969.585120pt;}
.y223{bottom:969.600000pt;}
.y99{bottom:970.720000pt;}
.y2c6{bottom:972.000000pt;}
.y158{bottom:972.160000pt;}
.y210{bottom:972.960000pt;}
.y4d{bottom:973.760000pt;}
.y8f{bottom:974.720000pt;}
.y24{bottom:976.962720pt;}
.y310{bottom:977.230667pt;}
.y35b{bottom:984.336000pt;}
.y253{bottom:984.950080pt;}
.y11{bottom:986.240000pt;}
.y30e{bottom:986.341333pt;}
.y2c5{bottom:986.720000pt;}
.y2c4{bottom:986.724000pt;}
.yec{bottom:991.680000pt;}
.y157{bottom:992.480000pt;}
.y4c{bottom:993.440000pt;}
.y30c{bottom:995.450667pt;}
.y252{bottom:1000.315040pt;}
.y2c3{bottom:1001.280000pt;}
.y10{bottom:1007.840000pt;}
.yeb{bottom:1011.680000pt;}
.y156{bottom:1012.160000pt;}
.y4b{bottom:1012.960000pt;}
.y35a{bottom:1014.408960pt;}
.y251{bottom:1015.680000pt;}
.y30a{bottom:1017.845333pt;}
.h26{height:8.729333pt;}
.h24{height:8.730667pt;}
.h21{height:9.869333pt;}
.h23{height:22.014667pt;}
.h16{height:34.453125pt;}
.h17{height:34.851562pt;}
.h25{height:34.872687pt;}
.h22{height:35.275977pt;}
.h12{height:38.698750pt;}
.h13{height:38.758270pt;}
.h14{height:39.043710pt;}
.h2c{height:40.613333pt;}
.h2b{height:40.614667pt;}
.h2{height:42.262500pt;}
.hf{height:42.656250pt;}
.h8{height:42.751250pt;}
.h15{height:43.840000pt;}
.h11{height:45.917020pt;}
.h5{height:45.937500pt;}
.h9{height:46.468750pt;}
.h10{height:46.625000pt;}
.hc{height:47.790000pt;}
.he{height:49.612500pt;}
.hb{height:50.186250pt;}
.ha{height:50.355000pt;}
.h6{height:51.735937pt;}
.h2a{height:54.278667pt;}
.hd{height:61.091755pt;}
.h7{height:62.011250pt;}
.h2e{height:67.942667pt;}
.h27{height:79.329333pt;}
.h3{height:80.920312pt;}
.h4{height:85.037812pt;}
.h1c{height:87.840000pt;}
.h1a{height:102.560000pt;}
.h18{height:117.120000pt;}
.h19{height:117.280000pt;}
.h1f{height:131.838667pt;}
.h2f{height:143.097333pt;}
.h1e{height:175.840000pt;}
.h20{height:190.398667pt;}
.h1b{height:190.560000pt;}
.h29{height:245.581333pt;}
.h1d{height:308.320000pt;}
.h2d{height:348.065333pt;}
.h28{height:627.046667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:58.080000pt;}
.w5{width:71.681333pt;}
.w8{width:73.440000pt;}
.w6{width:77.598667pt;}
.w7{width:80.321333pt;}
.w4{width:92.800000pt;}
.wb{width:110.616000pt;}
.w3{width:114.240000pt;}
.wa{width:159.650667pt;}
.wc{width:221.610667pt;}
.w9{width:604.013333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:1.519733pt;}
.x13{left:7.200000pt;}
.x24{left:18.080000pt;}
.x23{left:37.760000pt;}
.x12{left:92.160000pt;}
.x1{left:94.400000pt;}
.x22{left:99.360000pt;}
.x6{left:109.134720pt;}
.x11{left:113.280000pt;}
.x5{left:118.400000pt;}
.xa{left:132.782720pt;}
.x4{left:142.400000pt;}
.x14{left:150.240000pt;}
.x15{left:157.440000pt;}
.xb{left:166.400000pt;}
.x2{left:175.827680pt;}
.x7{left:180.960000pt;}
.x2a{left:205.842667pt;}
.x27{left:223.511733pt;}
.x3{left:241.619840pt;}
.x26{left:244.038267pt;}
.x16{left:264.480000pt;}
.x1e{left:271.680000pt;}
.x25{left:282.050533pt;}
.x28{left:316.838667pt;}
.x17{left:357.280000pt;}
.x1f{left:364.480000pt;}
.xc{left:368.960000pt;}
.x18{left:428.960000pt;}
.x19{left:436.160000pt;}
.x1a{left:506.560000pt;}
.x20{left:513.760000pt;}
.xd{left:579.840000pt;}
.x1b{left:586.880000pt;}
.x21{left:594.080000pt;}
.x8{left:653.120000pt;}
.x1c{left:660.320000pt;}
.x1d{left:667.520000pt;}
.x9{left:672.320000pt;}
.x10{left:699.200000pt;}
.xf{left:747.200000pt;}
.xe{left:748.320000pt;}
}




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