
    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_a0ffe72d6e61ba8bd49c08b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_ba9c15e803532e5db250bdc3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.015000;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_246881b372f8248379b090bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;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_8e8c7967eaaae2f1522d1ccb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.724609;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_ac4f3356afd27c2a26ae4693.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.711426;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_6261f0b21de8bf9f815a6796.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927246;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_502c6cc737a5ca6364babf85.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.392000;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_cdd9bdd20de7ca60c1e25b59.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.277000;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_9a5c6ef71e2cba83788744c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.094000;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_3c171154692fb6c30b00bb0c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064000;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_1e4d0ab780c9d3b3a45ac962.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_7b692c7d0d1c3ca295e7e088.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.063000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_da068fe42855923159c2c49a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_791690b06beafdd7a9b47a3d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.279000;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:fff;src:url('chunks/assets/font_07c19eafe554fa960a097ef6.woff2')format("woff");}.fff{font-family:fff;line-height:0.998000;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:ff10;src:url('chunks/assets/font_1a6914c3c931013dd0bc2e98.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.277000;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:ff11;src:url('chunks/assets/font_94d0f7541da49df396caa18a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-1.695600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.765600px;}
.lsc{letter-spacing:-1.199985px;}
.ls27{letter-spacing:-0.600000px;}
.ls28{letter-spacing:-0.531939px;}
.lsb{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.531939px;}
.ls11{letter-spacing:0.600000px;}
.ls35{letter-spacing:1.020000px;}
.ls34{letter-spacing:1.063878px;}
.ls2e{letter-spacing:1.200000px;}
.ls8{letter-spacing:2.726366px;}
.lsa{letter-spacing:3.067162px;}
.ls5{letter-spacing:4.766340px;}
.ls4b{letter-spacing:5.107136px;}
.ls1{letter-spacing:5.486400px;}
.ls2{letter-spacing:5.826600px;}
.ls0{letter-spacing:7.192800px;}
.ls9{letter-spacing:8.764690px;}
.ls41{letter-spacing:9.340683px;}
.ls3d{letter-spacing:9.460682px;}
.ls42{letter-spacing:9.532681px;}
.ls37{letter-spacing:9.537481px;}
.ls48{letter-spacing:9.618000px;}
.ls36{letter-spacing:9.681479px;}
.ls3e{letter-spacing:9.878277px;}
.ls44{letter-spacing:10.012675px;}
.ls39{letter-spacing:10.041474px;}
.ls7{letter-spacing:10.046274px;}
.ls3f{letter-spacing:10.204672px;}
.ls43{letter-spacing:10.238272px;}
.ls1f{letter-spacing:10.382270px;}
.ls20{letter-spacing:10.387070px;}
.ls38{letter-spacing:10.391870px;}
.ls25{letter-spacing:10.406270px;}
.ls4e{letter-spacing:10.492669px;}
.ls26{letter-spacing:10.579068px;}
.ls45{letter-spacing:10.583868px;}
.ls21{letter-spacing:10.723066px;}
.ls1e{letter-spacing:10.727866px;}
.ls23{letter-spacing:10.747066px;}
.ls22{letter-spacing:10.919863px;}
.ls3b{letter-spacing:11.001462px;}
.ls3c{letter-spacing:11.260659px;}
.ls31{letter-spacing:11.832000px;}
.ls14{letter-spacing:11.844000px;}
.ls47{letter-spacing:12.162000px;}
.ls12{letter-spacing:12.168000px;}
.ls40{letter-spacing:12.336000px;}
.ls1b{letter-spacing:12.444000px;}
.ls10{letter-spacing:12.450000px;}
.ls49{letter-spacing:12.510000px;}
.ls24{letter-spacing:12.558000px;}
.lsf{letter-spacing:12.630000px;}
.ls2b{letter-spacing:12.648000px;}
.ls1d{letter-spacing:12.666000px;}
.lsd{letter-spacing:12.672000px;}
.lse{letter-spacing:12.678000px;}
.ls17{letter-spacing:12.684000px;}
.ls46{letter-spacing:12.738000px;}
.ls32{letter-spacing:12.786000px;}
.ls13{letter-spacing:12.792000px;}
.ls2a{letter-spacing:12.990000px;}
.ls1c{letter-spacing:13.020000px;}
.ls2c{letter-spacing:13.092000px;}
.ls16{letter-spacing:13.122000px;}
.ls15{letter-spacing:13.182000px;}
.ls18{letter-spacing:13.326000px;}
.ls2d{letter-spacing:13.356000px;}
.ls29{letter-spacing:13.374000px;}
.ls30{letter-spacing:13.476000px;}
.ls2f{letter-spacing:14.424000px;}
.ls4c{letter-spacing:14.971013px;}
.ls4a{letter-spacing:15.311809px;}
.ls1a{letter-spacing:15.564000px;}
.ls4d{letter-spacing:15.652604px;}
.ls19{letter-spacing:17.886000px;}
.ls6{letter-spacing:20.783740px;}
.ls3{letter-spacing:21.124536px;}
.ls4{letter-spacing:21.129336px;}
.ls3a{letter-spacing:200.704691px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws195{word-spacing:-45.660000px;}
.ws193{word-spacing:-41.998800px;}
.ws150{word-spacing:-35.999550px;}
.ws199{word-spacing:-34.164000px;}
.ws19e{word-spacing:-34.032000px;}
.ws190{word-spacing:-33.888000px;}
.ws198{word-spacing:-33.474000px;}
.ws19c{word-spacing:-33.216000px;}
.ws197{word-spacing:-32.964000px;}
.ws18f{word-spacing:-32.832000px;}
.ws19a{word-spacing:-32.718000px;}
.ws19d{word-spacing:-32.442000px;}
.ws9f{word-spacing:-30.000000px;}
.ws136{word-spacing:-29.520000px;}
.ws19b{word-spacing:-29.250000px;}
.ws128{word-spacing:-28.920000px;}
.ws59{word-spacing:-28.320000px;}
.ws111{word-spacing:-27.720000px;}
.ws28{word-spacing:-26.447669px;}
.ws127{word-spacing:-19.409768px;}
.ws139{word-spacing:-17.916000px;}
.ws138{word-spacing:-17.730000px;}
.ws13f{word-spacing:-17.700000px;}
.ws133{word-spacing:-17.664000px;}
.ws13d{word-spacing:-17.574000px;}
.ws13e{word-spacing:-17.514000px;}
.ws13a{word-spacing:-17.502000px;}
.ws137{word-spacing:-17.478000px;}
.ws135{word-spacing:-17.388000px;}
.ws12c{word-spacing:-17.382000px;}
.wsf8{word-spacing:-17.340000px;}
.ws125{word-spacing:-17.328000px;}
.ws121{word-spacing:-17.322000px;}
.ws122{word-spacing:-17.316000px;}
.ws6f{word-spacing:-17.310000px;}
.ws123{word-spacing:-17.298000px;}
.ws12a{word-spacing:-17.274000px;}
.ws71{word-spacing:-17.202000px;}
.ws124{word-spacing:-17.196000px;}
.ws6e{word-spacing:-17.184000px;}
.ws6d{word-spacing:-17.178000px;}
.ws72{word-spacing:-17.154000px;}
.ws13b{word-spacing:-17.136000px;}
.ws132{word-spacing:-17.118000px;}
.ws13c{word-spacing:-17.112000px;}
.ws142{word-spacing:-17.088000px;}
.ws134{word-spacing:-16.968000px;}
.ws126{word-spacing:-16.962000px;}
.ws73{word-spacing:-16.896000px;}
.ws70{word-spacing:-16.860000px;}
.ws166{word-spacing:-16.836000px;}
.ws93{word-spacing:-16.824000px;}
.wsbb{word-spacing:-16.818000px;}
.ws8b{word-spacing:-16.812000px;}
.ws25{word-spacing:-16.806000px;}
.wsc2{word-spacing:-16.800000px;}
.ws99{word-spacing:-16.794000px;}
.ws15f{word-spacing:-16.788000px;}
.ws17b{word-spacing:-16.782000px;}
.ws22{word-spacing:-16.776000px;}
.wsf5{word-spacing:-16.764000px;}
.ws5d{word-spacing:-16.758000px;}
.ws5a{word-spacing:-16.752000px;}
.ws5e{word-spacing:-16.746000px;}
.wsa3{word-spacing:-16.740000px;}
.ws58{word-spacing:-16.734000px;}
.ws14d{word-spacing:-16.728000px;}
.ws192{word-spacing:-16.727400px;}
.ws18d{word-spacing:-16.722000px;}
.ws17e{word-spacing:-16.716000px;}
.ws60{word-spacing:-16.710000px;}
.ws26{word-spacing:-16.704000px;}
.ws6b{word-spacing:-16.698000px;}
.ws61{word-spacing:-16.692000px;}
.ws6a{word-spacing:-16.686000px;}
.ws52{word-spacing:-16.680000px;}
.wsad{word-spacing:-16.674000px;}
.ws68{word-spacing:-16.668000px;}
.ws160{word-spacing:-16.662000px;}
.ws51{word-spacing:-16.656000px;}
.ws102{word-spacing:-16.650000px;}
.ws17a{word-spacing:-16.644000px;}
.ws130{word-spacing:-16.638000px;}
.wsbf{word-spacing:-16.632000px;}
.ws69{word-spacing:-16.626000px;}
.ws145{word-spacing:-16.620000px;}
.ws185{word-spacing:-16.614000px;}
.wsac{word-spacing:-16.608000px;}
.wscf{word-spacing:-16.602000px;}
.ws94{word-spacing:-16.596000px;}
.wsc4{word-spacing:-16.590000px;}
.ws9a{word-spacing:-16.584000px;}
.ws83{word-spacing:-16.578000px;}
.ws113{word-spacing:-16.572000px;}
.ws89{word-spacing:-16.566000px;}
.ws16d{word-spacing:-16.560000px;}
.ws17f{word-spacing:-16.554000px;}
.ws66{word-spacing:-16.548000px;}
.wsb0{word-spacing:-16.542000px;}
.wsc6{word-spacing:-16.530000px;}
.ws24{word-spacing:-16.524000px;}
.wsf9{word-spacing:-16.518000px;}
.wsf1{word-spacing:-16.512000px;}
.wsf4{word-spacing:-16.506000px;}
.ws147{word-spacing:-16.500000px;}
.wsd8{word-spacing:-16.494000px;}
.wsc5{word-spacing:-16.488000px;}
.wsa6{word-spacing:-16.476000px;}
.wsf7{word-spacing:-16.470000px;}
.wsc7{word-spacing:-16.464000px;}
.wsf6{word-spacing:-16.458000px;}
.wsd7{word-spacing:-16.452000px;}
.ws162{word-spacing:-16.440000px;}
.wsb2{word-spacing:-16.434000px;}
.wsd0{word-spacing:-16.422000px;}
.ws57{word-spacing:-16.416000px;}
.ws179{word-spacing:-16.410000px;}
.ws23{word-spacing:-16.404000px;}
.ws67{word-spacing:-16.398000px;}
.ws112{word-spacing:-16.392000px;}
.ws18c{word-spacing:-16.386000px;}
.ws143{word-spacing:-16.380000px;}
.wsab{word-spacing:-16.374000px;}
.ws189{word-spacing:-16.368000px;}
.ws16e{word-spacing:-16.362000px;}
.wsb3{word-spacing:-16.356000px;}
.ws12b{word-spacing:-16.350000px;}
.wsc3{word-spacing:-16.344000px;}
.wsb5{word-spacing:-16.338000px;}
.wsd3{word-spacing:-16.326000px;}
.ws9d{word-spacing:-16.320000px;}
.ws182{word-spacing:-16.314000px;}
.ws183{word-spacing:-16.308000px;}
.ws172{word-spacing:-16.302000px;}
.ws175{word-spacing:-16.296000px;}
.wsd5{word-spacing:-16.290000px;}
.ws50{word-spacing:-16.284000px;}
.ws62{word-spacing:-16.278000px;}
.wsf2{word-spacing:-16.272000px;}
.ws149{word-spacing:-16.266000px;}
.ws171{word-spacing:-16.260000px;}
.ws77{word-spacing:-16.242000px;}
.wsd4{word-spacing:-16.236000px;}
.ws98{word-spacing:-16.230000px;}
.ws148{word-spacing:-16.218000px;}
.ws101{word-spacing:-16.206000px;}
.ws8a{word-spacing:-16.200000px;}
.ws10b{word-spacing:-16.194000px;}
.wsb6{word-spacing:-16.182000px;}
.ws17c{word-spacing:-16.164000px;}
.ws97{word-spacing:-16.158000px;}
.wsbc{word-spacing:-16.152000px;}
.wsa4{word-spacing:-16.146000px;}
.ws116{word-spacing:-16.140000px;}
.ws170{word-spacing:-16.134000px;}
.ws8c{word-spacing:-16.122000px;}
.ws10c{word-spacing:-16.116000px;}
.ws188{word-spacing:-16.110000px;}
.ws17d{word-spacing:-16.098000px;}
.wsb8{word-spacing:-16.086000px;}
.ws18b{word-spacing:-16.080000px;}
.wsd2{word-spacing:-16.068000px;}
.ws56{word-spacing:-16.062000px;}
.ws53{word-spacing:-16.056000px;}
.ws141{word-spacing:-16.050000px;}
.wsf3{word-spacing:-16.044000px;}
.ws8e{word-spacing:-16.020000px;}
.ws131{word-spacing:-16.014000px;}
.ws12e{word-spacing:-16.008000px;}
.ws14b{word-spacing:-16.002000px;}
.ws173{word-spacing:-15.996000px;}
.ws10a{word-spacing:-15.960000px;}
.ws144{word-spacing:-15.954000px;}
.ws5c{word-spacing:-15.936000px;}
.ws91{word-spacing:-15.930000px;}
.ws5f{word-spacing:-15.924000px;}
.ws6c{word-spacing:-15.912000px;}
.ws129{word-spacing:-15.876000px;}
.ws187{word-spacing:-15.870000px;}
.wscd{word-spacing:-15.852000px;}
.wsa9{word-spacing:-15.846000px;}
.ws84{word-spacing:-15.840000px;}
.wsb9{word-spacing:-15.834000px;}
.ws15e{word-spacing:-15.828000px;}
.ws54{word-spacing:-15.822000px;}
.wsc0{word-spacing:-15.816000px;}
.wsbe{word-spacing:-15.810000px;}
.ws96{word-spacing:-15.804000px;}
.wsb7{word-spacing:-15.798000px;}
.ws14c{word-spacing:-15.792000px;}
.ws164{word-spacing:-15.774000px;}
.wsa2{word-spacing:-15.768000px;}
.ws177{word-spacing:-15.762000px;}
.ws184{word-spacing:-15.744000px;}
.wscc{word-spacing:-15.738000px;}
.wsce{word-spacing:-15.732000px;}
.ws178{word-spacing:-15.726000px;}
.ws76{word-spacing:-15.720000px;}
.ws55{word-spacing:-15.714000px;}
.ws100{word-spacing:-15.660000px;}
.wsae{word-spacing:-15.648000px;}
.ws65{word-spacing:-15.636000px;}
.wsa8{word-spacing:-15.624000px;}
.ws167{word-spacing:-15.606000px;}
.ws5b{word-spacing:-15.594000px;}
.ws64{word-spacing:-15.588000px;}
.ws181{word-spacing:-15.582000px;}
.ws191{word-spacing:-15.570000px;}
.ws16f{word-spacing:-15.558000px;}
.ws9b{word-spacing:-15.552000px;}
.ws10d{word-spacing:-15.546000px;}
.wsd9{word-spacing:-15.534000px;}
.wsa0{word-spacing:-15.504000px;}
.wsa5{word-spacing:-15.498000px;}
.ws85{word-spacing:-15.486000px;}
.ws90{word-spacing:-15.480000px;}
.ws63{word-spacing:-15.474000px;}
.ws8f{word-spacing:-15.468000px;}
.ws88{word-spacing:-15.462000px;}
.ws87{word-spacing:-15.456000px;}
.ws146{word-spacing:-15.426000px;}
.ws174{word-spacing:-15.408000px;}
.ws14a{word-spacing:-15.396000px;}
.wscb{word-spacing:-15.390000px;}
.wsc8{word-spacing:-15.378000px;}
.ws92{word-spacing:-15.372000px;}
.ws163{word-spacing:-15.360000px;}
.ws161{word-spacing:-15.294000px;}
.ws186{word-spacing:-15.288000px;}
.ws95{word-spacing:-15.282000px;}
.wsd1{word-spacing:-15.180000px;}
.ws12d{word-spacing:-15.168000px;}
.ws9e{word-spacing:-15.138000px;}
.wsaf{word-spacing:-15.132000px;}
.ws18a{word-spacing:-15.120000px;}
.ws9c{word-spacing:-15.054000px;}
.wsbd{word-spacing:-15.036000px;}
.ws180{word-spacing:-15.030000px;}
.ws176{word-spacing:-14.874000px;}
.ws10e{word-spacing:-14.772000px;}
.ws10f{word-spacing:-14.694000px;}
.wsc9{word-spacing:-14.688000px;}
.ws110{word-spacing:-14.682000px;}
.ws12f{word-spacing:-14.664000px;}
.wsca{word-spacing:-14.586000px;}
.ws196{word-spacing:-14.058000px;}
.ws18{word-spacing:-13.487831px;}
.wsb4{word-spacing:-11.142000px;}
.ws165{word-spacing:-11.112000px;}
.ws140{word-spacing:-11.058000px;}
.wsf0{word-spacing:-10.799865px;}
.wsc1{word-spacing:-10.044000px;}
.wsba{word-spacing:-9.702000px;}
.ws115{word-spacing:-4.809560px;}
.wsa7{word-spacing:-4.737561px;}
.ws75{word-spacing:-4.622361px;}
.wsa1{word-spacing:-4.615162px;}
.wsaa{word-spacing:-4.600762px;}
.ws194{word-spacing:-4.535962px;}
.ws74{word-spacing:-4.499963px;}
.ws8d{word-spacing:-4.463963px;}
.wsd6{word-spacing:-4.456763px;}
.ws18e{word-spacing:-4.312764px;}
.wsb1{word-spacing:-4.305564px;}
.ws114{word-spacing:-4.298364px;}
.ws86{word-spacing:-4.283964px;}
.ws1c7{word-spacing:-3.887951px;}
.ws1d0{word-spacing:-3.777553px;}
.ws1d1{word-spacing:-3.724753px;}
.ws119{word-spacing:-3.705554px;}
.ws1c8{word-spacing:-3.700754px;}
.ws1d5{word-spacing:-3.695954px;}
.ws1a5{word-spacing:-3.691154px;}
.ws16a{word-spacing:-3.686354px;}
.ws1d3{word-spacing:-3.681554px;}
.wsda{word-spacing:-3.662354px;}
.ws16b{word-spacing:-3.657554px;}
.ws1c9{word-spacing:-3.652754px;}
.ws1c4{word-spacing:-3.647954px;}
.ws152{word-spacing:-3.643154px;}
.ws11c{word-spacing:-3.638355px;}
.ws1a{word-spacing:-3.630900px;}
.ws1cc{word-spacing:-3.619155px;}
.ws1b7{word-spacing:-3.614355px;}
.ws1aa{word-spacing:-3.609555px;}
.wse{word-spacing:-3.604755px;}
.ws109{word-spacing:-3.585555px;}
.wsfe{word-spacing:-3.580755px;}
.ws1b5{word-spacing:-3.575955px;}
.ws1d2{word-spacing:-3.566355px;}
.ws169{word-spacing:-3.556756px;}
.wsd{word-spacing:-3.553200px;}
.ws155{word-spacing:-3.551956px;}
.ws1a7{word-spacing:-3.547156px;}
.ws1a6{word-spacing:-3.537556px;}
.ws1b{word-spacing:-3.528300px;}
.ws159{word-spacing:-3.527956px;}
.ws168{word-spacing:-3.513556px;}
.ws1a9{word-spacing:-3.508756px;}
.ws8{word-spacing:-3.499200px;}
.ws1c2{word-spacing:-3.499156px;}
.wsc{word-spacing:-3.493800px;}
.wsf{word-spacing:-3.489556px;}
.ws1b2{word-spacing:-3.479957px;}
.ws7{word-spacing:-3.477600px;}
.ws15a{word-spacing:-3.475157px;}
.ws5{word-spacing:-3.472200px;}
.ws1f{word-spacing:-3.471300px;}
.wsff{word-spacing:-3.470357px;}
.ws1b8{word-spacing:-3.465557px;}
.ws1d7{word-spacing:-3.460757px;}
.ws1c{word-spacing:-3.459900px;}
.ws11f{word-spacing:-3.441557px;}
.ws103{word-spacing:-3.436757px;}
.ws1a1{word-spacing:-3.431957px;}
.ws11e{word-spacing:-3.422357px;}
.ws6{word-spacing:-3.407400px;}
.ws1d{word-spacing:-3.397200px;}
.ws154{word-spacing:-3.393558px;}
.ws1ad{word-spacing:-3.388758px;}
.ws1c0{word-spacing:-3.383958px;}
.ws1b6{word-spacing:-3.379158px;}
.ws104{word-spacing:-3.374358px;}
.ws1c6{word-spacing:-3.369558px;}
.ws11d{word-spacing:-3.359958px;}
.ws108{word-spacing:-3.355158px;}
.ws1c5{word-spacing:-3.350358px;}
.ws1a0{word-spacing:-3.345558px;}
.ws1d6{word-spacing:-3.340758px;}
.ws120{word-spacing:-3.335958px;}
.ws1a3{word-spacing:-3.331158px;}
.ws11b{word-spacing:-3.326358px;}
.ws1ab{word-spacing:-3.321558px;}
.ws15c{word-spacing:-3.316759px;}
.ws117{word-spacing:-3.311959px;}
.ws27{word-spacing:-3.307159px;}
.ws1cf{word-spacing:-3.302359px;}
.ws19{word-spacing:-3.288900px;}
.ws1ac{word-spacing:-3.283159px;}
.ws106{word-spacing:-3.278359px;}
.ws14e{word-spacing:-3.273559px;}
.ws15{word-spacing:-3.268759px;}
.ws14{word-spacing:-3.263959px;}
.ws20{word-spacing:-3.260400px;}
.ws1ca{word-spacing:-3.249559px;}
.ws1cb{word-spacing:-3.244759px;}
.ws9{word-spacing:-3.240000px;}
.wsfc{word-spacing:-3.239959px;}
.ws15d{word-spacing:-3.235160px;}
.wsfa{word-spacing:-3.230360px;}
.ws13{word-spacing:-3.211160px;}
.ws1b0{word-spacing:-3.206360px;}
.ws16c{word-spacing:-3.201560px;}
.ws14f{word-spacing:-3.196760px;}
.ws1ba{word-spacing:-3.191960px;}
.ws1b4{word-spacing:-3.187160px;}
.ws1b1{word-spacing:-3.182360px;}
.ws11a{word-spacing:-3.177560px;}
.ws105{word-spacing:-3.172760px;}
.ws1bc{word-spacing:-3.167960px;}
.ws153{word-spacing:-3.163160px;}
.ws0{word-spacing:-3.158361px;}
.wsb{word-spacing:-3.153600px;}
.ws78{word-spacing:-3.153561px;}
.ws1cd{word-spacing:-3.139161px;}
.wsa{word-spacing:-3.137400px;}
.ws1e{word-spacing:-3.135000px;}
.ws1ae{word-spacing:-3.134361px;}
.ws16{word-spacing:-3.129561px;}
.ws151{word-spacing:-3.124761px;}
.ws1c3{word-spacing:-3.119961px;}
.ws15b{word-spacing:-3.115161px;}
.ws1c1{word-spacing:-3.100761px;}
.ws1d4{word-spacing:-3.095961px;}
.ws107{word-spacing:-3.091161px;}
.ws1be{word-spacing:-3.086361px;}
.wse4{word-spacing:-3.076762px;}
.wse0{word-spacing:-3.071962px;}
.ws12{word-spacing:-3.057562px;}
.ws21{word-spacing:-3.055200px;}
.wsef{word-spacing:-3.052762px;}
.ws10{word-spacing:-3.047962px;}
.ws1a4{word-spacing:-3.043162px;}
.wse5{word-spacing:-3.019162px;}
.wsfd{word-spacing:-3.014362px;}
.ws1a8{word-spacing:-3.009562px;}
.wsec{word-spacing:-2.995163px;}
.ws1b3{word-spacing:-2.990363px;}
.wse2{word-spacing:-2.951963px;}
.ws1bd{word-spacing:-2.942363px;}
.wsde{word-spacing:-2.932763px;}
.ws118{word-spacing:-2.927963px;}
.ws1ce{word-spacing:-2.923163px;}
.ws1bb{word-spacing:-2.908764px;}
.ws1bf{word-spacing:-2.903964px;}
.wsea{word-spacing:-2.894364px;}
.wse1{word-spacing:-2.884764px;}
.wsfb{word-spacing:-2.870364px;}
.wsed{word-spacing:-2.865564px;}
.ws1a2{word-spacing:-2.827165px;}
.ws11{word-spacing:-2.822365px;}
.wse3{word-spacing:-2.817565px;}
.wsdc{word-spacing:-2.807965px;}
.wsdf{word-spacing:-2.798365px;}
.ws17{word-spacing:-2.788765px;}
.wseb{word-spacing:-2.759965px;}
.ws157{word-spacing:-2.755166px;}
.wsdb{word-spacing:-2.750366px;}
.wse6{word-spacing:-2.716766px;}
.wse8{word-spacing:-2.711966px;}
.wsdd{word-spacing:-2.707166px;}
.ws158{word-spacing:-2.692766px;}
.wse7{word-spacing:-2.683166px;}
.wsee{word-spacing:-2.495969px;}
.wse9{word-spacing:-2.409570px;}
.ws1{word-spacing:-1.236006px;}
.ws2{word-spacing:-1.188006px;}
.ws3{word-spacing:-1.080005px;}
.ws3d{word-spacing:-1.055987px;}
.ws2c{word-spacing:-1.003187px;}
.ws7d{word-spacing:-0.945588px;}
.ws38{word-spacing:-0.921588px;}
.ws40{word-spacing:-0.916789px;}
.ws4c{word-spacing:-0.897589px;}
.ws39{word-spacing:-0.892789px;}
.ws4{word-spacing:-0.888004px;}
.ws36{word-spacing:-0.878389px;}
.ws7f{word-spacing:-0.863989px;}
.ws2b{word-spacing:-0.830390px;}
.ws7c{word-spacing:-0.825590px;}
.ws42{word-spacing:-0.815990px;}
.ws4b{word-spacing:-0.806390px;}
.ws34{word-spacing:-0.791990px;}
.ws4e{word-spacing:-0.787190px;}
.ws79{word-spacing:-0.782390px;}
.ws30{word-spacing:-0.767990px;}
.ws2f{word-spacing:-0.763190px;}
.ws2a{word-spacing:-0.758391px;}
.ws2d{word-spacing:-0.743991px;}
.ws45{word-spacing:-0.739191px;}
.ws3c{word-spacing:-0.724791px;}
.ws4d{word-spacing:-0.705591px;}
.ws81{word-spacing:-0.695991px;}
.ws3e{word-spacing:-0.676792px;}
.ws41{word-spacing:-0.671992px;}
.ws32{word-spacing:-0.652792px;}
.ws80{word-spacing:-0.647992px;}
.ws29{word-spacing:-0.623992px;}
.ws2e{word-spacing:-0.604792px;}
.ws7b{word-spacing:-0.590393px;}
.ws46{word-spacing:-0.575993px;}
.ws31{word-spacing:-0.571193px;}
.ws37{word-spacing:-0.547193px;}
.ws33{word-spacing:-0.537593px;}
.ws35{word-spacing:-0.527993px;}
.ws3b{word-spacing:-0.518394px;}
.ws49{word-spacing:-0.513594px;}
.ws47{word-spacing:-0.503994px;}
.ws44{word-spacing:-0.499194px;}
.ws3f{word-spacing:-0.470394px;}
.ws4a{word-spacing:-0.465594px;}
.ws82{word-spacing:-0.460794px;}
.ws48{word-spacing:-0.451194px;}
.ws43{word-spacing:-0.446394px;}
.ws7e{word-spacing:-0.417595px;}
.ws7a{word-spacing:-0.307196px;}
.ws3a{word-spacing:-0.292796px;}
.ws4f{word-spacing:0.000000px;}
.ws1af{word-spacing:46.223422px;}
.ws1b9{word-spacing:46.228222px;}
.ws19f{word-spacing:46.530618px;}
.ws156{word-spacing:301.801027px;}
._27{margin-left:-21.772528px;}
._10{margin-left:-6.892824px;}
._12{margin-left:-5.740748px;}
._6{margin-left:-4.726416px;}
._14{margin-left:-3.451252px;}
._a{margin-left:-2.288010px;}
._3{margin-left:-1.075187px;}
._5{width:1.824000px;}
._26{width:2.924778px;}
._28{width:4.761540px;}
._d{width:7.797197px;}
._2{width:9.345483px;}
._1{width:11.054262px;}
._15{width:12.447026px;}
._4{width:13.548900px;}
._b{width:14.639207px;}
._7{width:16.614000px;}
._c{width:18.075622px;}
._f{width:20.537204px;}
._11{width:21.863392px;}
._13{width:23.357657px;}
._0{width:27.672138px;}
._8{width:47.423407px;}
._e{width:48.636231px;}
._21{width:171.641054px;}
._18{width:212.061349px;}
._1c{width:225.630780px;}
._16{width:277.345333px;}
._19{width:279.730903px;}
._22{width:304.296996px;}
._1a{width:309.356133px;}
._23{width:313.628080px;}
._20{width:324.648742px;}
._25{width:333.135036px;}
._24{width:344.323696px;}
._1d{width:357.427532px;}
._17{width:372.052949px;}
._1b{width:385.319983px;}
._1f{width:432.522593px;}
._1e{width:1645.693029px;}
._9{width:1671.881501px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs8{font-size:39.995400px;}
.fsa{font-size:41.998800px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:71.999400px;}
.fs4{font-size:95.998800px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y2b{bottom:54.000000px;}
.y1ba{bottom:119.651746px;}
.yee{bottom:124.497600px;}
.y2a{bottom:124.498200px;}
.y24e{bottom:124.498378px;}
.y7b{bottom:124.498650px;}
.ybf{bottom:124.499100px;}
.y10d{bottom:124.499250px;}
.y4d{bottom:124.500720px;}
.y20a{bottom:125.093400px;}
.y1d7{bottom:127.220400px;}
.y142{bottom:128.581050px;}
.yed{bottom:131.130600px;}
.y24d{bottom:138.785400px;}
.y1a0{bottom:140.146350px;}
.y4c{bottom:140.998114px;}
.y1b9{bottom:142.866656px;}
.ybe{bottom:143.972100px;}
.y29{bottom:143.972700px;}
.y7a{bottom:143.973150px;}
.y10c{bottom:143.973750px;}
.y209{bottom:144.567900px;}
.y1d6{bottom:146.778900px;}
.y141{bottom:148.054050px;}
.y24c{bottom:152.986022px;}
.y2aa{bottom:154.861303px;}
.y1b8{bottom:157.153678px;}
.y4b{bottom:157.495508px;}
.y19f{bottom:159.619350px;}
.ybd{bottom:163.530600px;}
.y28{bottom:163.531200px;}
.y79{bottom:163.531650px;}
.y10b{bottom:163.532250px;}
.y2cf{bottom:163.875590px;}
.y208{bottom:164.126400px;}
.y19c{bottom:164.130150px;}
.y287{bottom:165.321572px;}
.y1d5{bottom:166.251900px;}
.y1d3{bottom:166.252500px;}
.y134{bottom:166.847700px;}
.y140{bottom:167.528550px;}
.y2a9{bottom:169.063125px;}
.y1b7{bottom:171.354300px;}
.y24b{bottom:172.460579px;}
.y1d4{bottom:172.884900px;}
.y4a{bottom:173.992902px;}
.y2ce{bottom:178.077413px;}
.y19e{bottom:179.177850px;}
.y286{bottom:179.607394px;}
.y78{bottom:183.004650px;}
.y27{bottom:183.005700px;}
.yec{bottom:183.006150px;}
.y10a{bottom:183.006750px;}
.y2a7{bottom:183.348947px;}
.y207{bottom:183.600900px;}
.y19b{bottom:183.603150px;}
.y2a8{bottom:183.689742px;}
.y1d2{bottom:185.727000px;}
.y133{bottom:186.322200px;}
.y24a{bottom:186.746400px;}
.y13f{bottom:187.087050px;}
.ybc{bottom:188.957400px;}
.y15e{bottom:188.958175px;}
.y49{bottom:190.491495px;}
.y2cd{bottom:192.363234px;}
.y285{bottom:193.809216px;}
.y26{bottom:202.478700px;}
.yeb{bottom:202.479150px;}
.y109{bottom:202.479750px;}
.y2a6{bottom:202.823503px;}
.y206{bottom:203.073900px;}
.y204{bottom:203.075100px;}
.y19a{bottom:203.077650px;}
.y19d{bottom:204.604650px;}
.y1d1{bottom:205.285500px;}
.y132{bottom:205.795200px;}
.y130{bottom:205.796250px;}
.y13e{bottom:206.561550px;}
.y249{bottom:206.985750px;}
.y48{bottom:206.988889px;}
.y77{bottom:208.517325px;}
.y205{bottom:209.792100px;}
.y15d{bottom:209.962200px;}
.y2cc{bottom:211.837791px;}
.y131{bottom:212.513250px;}
.y284{bottom:213.367771px;}
.y2a5{bottom:217.110525px;}
.yea{bottom:222.037650px;}
.y108{bottom:222.038250px;}
.y203{bottom:222.633600px;}
.y199{bottom:222.636150px;}
.y47{bottom:223.486283px;}
.y1d0{bottom:224.760000px;}
.y12f{bottom:225.354750px;}
.y13d{bottom:226.034550px;}
.y2cb{bottom:226.123612px;}
.y283{bottom:227.569594px;}
.y25{bottom:227.990550px;}
.ybb{bottom:229.948050px;}
.y2a4{bottom:231.311147px;}
.y76{bottom:235.473900px;}
.y1ab{bottom:238.621594px;}
.y46{bottom:239.983677px;}
.ye9{bottom:241.511700px;}
.ye7{bottom:241.512750px;}
.y282{bottom:241.856615px;}
.y202{bottom:242.108100px;}
.y198{bottom:242.110650px;}
.y1cf{bottom:244.233000px;}
.y1cd{bottom:244.234200px;}
.y12e{bottom:244.829250px;}
.y2ca{bottom:245.598169px;}
.ye8{bottom:248.144850px;}
.yba{bottom:249.422550px;}
.y2a3{bottom:250.870903px;}
.y1ce{bottom:250.951050px;}
.y13c{bottom:251.546400px;}
.y15c{bottom:252.143250px;}
.y248{bottom:256.311900px;}
.y45{bottom:256.481070px;}
.y2c9{bottom:259.799991px;}
.ye6{bottom:260.987250px;}
.y281{bottom:261.329972px;}
.y201{bottom:261.582600px;}
.y197{bottom:261.583650px;}
.y1aa{bottom:261.922903px;}
.y1cc{bottom:263.708700px;}
.y12d{bottom:264.302250px;}
.y12b{bottom:264.303900px;}
.y2a2{bottom:265.071525px;}
.yb9{bottom:268.895550px;}
.y12c{bottom:271.020450px;}
.y15b{bottom:271.616250px;}
.y43{bottom:272.978464px;}
.y44{bottom:273.404459px;}
.y280{bottom:275.616993px;}
.y1a9{bottom:276.123525px;}
.y2c8{bottom:279.358547px;}
.ye5{bottom:280.460250px;}
.y200{bottom:281.141100px;}
.y196{bottom:281.143650px;}
.y22c{bottom:281.144400px;}
.y1cb{bottom:283.267200px;}
.y12a{bottom:283.776900px;}
.y2a1{bottom:284.546082px;}
.y247{bottom:284.799900px;}
.y149{bottom:285.563681px;}
.yb8{bottom:288.370050px;}
.y27f{bottom:289.818816px;}
.y1a8{bottom:290.410547px;}
.y15a{bottom:291.090750px;}
.y2c7{bottom:293.560369px;}
.y42{bottom:298.490145px;}
.y2a0{bottom:298.831903px;}
.ye4{bottom:300.018750px;}
.ye2{bottom:300.019500px;}
.y1ff{bottom:300.614100px;}
.y1fd{bottom:300.616350px;}
.y195{bottom:300.616650px;}
.y22b{bottom:300.618900px;}
.y75{bottom:300.619650px;}
.y1ca{bottom:302.741700px;}
.y129{bottom:303.335400px;}
.y127{bottom:303.336300px;}
.y1a7{bottom:304.612369px;}
.ye3{bottom:306.651900px;}
.y1fe{bottom:307.247100px;}
.y2c6{bottom:307.846191px;}
.yb7{bottom:307.928550px;}
.y148{bottom:308.778591px;}
.y27e{bottom:309.292172px;}
.y128{bottom:309.968400px;}
.y159{bottom:310.649250px;}
.y246{bottom:313.287900px;}
.y41{bottom:314.987539px;}
.y29f{bottom:318.306460px;}
.y1a6{bottom:318.898191px;}
.ye1{bottom:319.494000px;}
.y1fc{bottom:320.089350px;}
.y194{bottom:320.091150px;}
.y22a{bottom:320.091900px;}
.y74{bottom:320.094150px;}
.y1c9{bottom:322.214700px;}
.y126{bottom:322.809300px;}
.y147{bottom:323.065612px;}
.y27d{bottom:323.579194px;}
.y107{bottom:325.530600px;}
.y2c5{bottom:327.320747px;}
.yb6{bottom:327.403050px;}
.y158{bottom:330.123750px;}
.y24{bottom:330.975075px;}
.y29e{bottom:332.593481px;}
.y1a5{bottom:333.185212px;}
.y146{bottom:337.351434px;}
.y27c{bottom:337.865015px;}
.ye0{bottom:338.968500px;}
.y1fb{bottom:339.563850px;}
.y193{bottom:339.565650px;}
.y229{bottom:339.566400px;}
.y73{bottom:339.567150px;}
.y40{bottom:340.499220px;}
.y2c4{bottom:341.606568px;}
.y1c8{bottom:341.773200px;}
.y1c6{bottom:341.775450px;}
.y245{bottom:341.775900px;}
.y29d{bottom:346.794104px;}
.yb5{bottom:346.876050px;}
.y1a4{bottom:347.387035px;}
.y1c7{bottom:348.406200px;}
.y157{bottom:349.596750px;}
.y155{bottom:349.597950px;}
.y145{bottom:351.553256px;}
.y23{bottom:351.979575px;}
.y156{bottom:356.229900px;}
.y3f{bottom:356.997814px;}
.y27b{bottom:357.339572px;}
.ydf{bottom:358.527000px;}
.y1fa{bottom:359.122350px;}
.y192{bottom:359.124150px;}
.y228{bottom:359.124900px;}
.y72{bottom:359.125650px;}
.y2c3{bottom:361.081125px;}
.y1c5{bottom:361.248450px;}
.y1a3{bottom:361.672856px;}
.y144{bottom:365.840278px;}
.y29c{bottom:366.353859px;}
.yb4{bottom:366.434550px;}
.y154{bottom:369.072450px;}
.y244{bottom:370.263900px;}
.y27a{bottom:371.540194px;}
.y22{bottom:372.984075px;}
.y3e{bottom:373.495208px;}
.y2c2{bottom:375.366946px;}
.y1a2{bottom:375.874679px;}
.yde{bottom:378.000000px;}
.ydc{bottom:378.001050px;}
.y1f9{bottom:378.596850px;}
.y191{bottom:378.597150px;}
.y227{bottom:378.599400px;}
.y71{bottom:378.600150px;}
.y106{bottom:378.938850px;}
.y143{bottom:380.040900px;}
.y13b{bottom:380.212332px;}
.y29b{bottom:380.554482px;}
.y1c4{bottom:380.722950px;}
.ydd{bottom:384.633000px;}
.y279{bottom:385.827216px;}
.y153{bottom:388.630950px;}
.y3d{bottom:389.992601px;}
.y1a1{bottom:390.160500px;}
.yb3{bottom:391.946400px;}
.y21{bottom:393.988575px;}
.y2c1{bottom:394.841503px;}
.ydb{bottom:397.475550px;}
.y1f8{bottom:398.071350px;}
.y190{bottom:398.071650px;}
.y226{bottom:398.072400px;}
.y70{bottom:398.074650px;}
.y105{bottom:398.411850px;}
.y243{bottom:398.751900px;}
.y29a{bottom:400.114237px;}
.y1c3{bottom:400.281450px;}
.y13a{bottom:403.512441px;}
.y278{bottom:405.301772px;}
.y3c{bottom:406.489995px;}
.y152{bottom:408.105450px;}
.y2c0{bottom:409.043326px;}
.y299{bottom:414.314860px;}
.y20{bottom:414.993075px;}
.yda{bottom:417.034050px;}
.y1f7{bottom:417.629850px;}
.y18f{bottom:417.630150px;}
.y225{bottom:417.632400px;}
.y6f{bottom:417.633150px;}
.y139{bottom:417.714263px;}
.y104{bottom:417.886350px;}
.y277{bottom:419.587594px;}
.y1c2{bottom:419.755950px;}
.y3a{bottom:422.987389px;}
.y2bf{bottom:423.329147px;}
.y3b{bottom:423.412184px;}
.y242{bottom:427.239900px;}
.y151{bottom:427.578450px;}
.y298{bottom:428.601881px;}
.y138{bottom:432.001285px;}
.yb2{bottom:432.852000px;}
.y276{bottom:433.874615px;}
.y1f{bottom:435.997575px;}
.yd9{bottom:436.508550px;}
.y1f6{bottom:437.102850px;}
.y18e{bottom:437.104650px;}
.y224{bottom:437.105400px;}
.y6e{bottom:437.107650px;}
.y103{bottom:437.444850px;}
.y1c1{bottom:439.230450px;}
.y2be{bottom:442.803704px;}
.y137{bottom:446.287106px;}
.y150{bottom:447.136950px;}
.y14e{bottom:447.138000px;}
.y275{bottom:448.076438px;}
.y39{bottom:448.499070px;}
.yb1{bottom:452.326500px;}
.y14f{bottom:453.769950px;}
.y241{bottom:455.811900px;}
.yd8{bottom:455.981550px;}
.y1f5{bottom:456.577350px;}
.y18d{bottom:456.577650px;}
.y223{bottom:456.579900px;}
.y6d{bottom:456.580650px;}
.y102{bottom:456.919350px;}
.y1e{bottom:457.002075px;}
.y2bd{bottom:457.089525px;}
.y1c0{bottom:458.788950px;}
.y136{bottom:460.488929px;}
.y297{bottom:462.362259px;}
.y14d{bottom:466.611000px;}
.y14b{bottom:466.611900px;}
.y274{bottom:467.549794px;}
.y2bc{bottom:471.291347px;}
.yb0{bottom:471.799500px;}
.y14c{bottom:473.244000px;}
.y38{bottom:474.010751px;}
.y135{bottom:474.774750px;}
.yd7{bottom:475.540050px;}
.y1f4{bottom:476.135850px;}
.y18c{bottom:476.137650px;}
.y222{bottom:476.138400px;}
.y6c{bottom:476.139150px;}
.y101{bottom:476.392350px;}
.y1d{bottom:477.922500px;}
.y1bf{bottom:478.261950px;}
.y273{bottom:481.836816px;}
.y240{bottom:484.299900px;}
.y14a{bottom:486.084900px;}
.y2bb{bottom:490.849903px;}
.yaf{bottom:491.274000px;}
.y1f3{bottom:495.610350px;}
.y18b{bottom:495.610650px;}
.y221{bottom:495.612900px;}
.y6b{bottom:495.613650px;}
.y100{bottom:495.952350px;}
.y272{bottom:496.122637px;}
.y1be{bottom:497.736450px;}
.y1c{bottom:498.927000px;}
.y37{bottom:499.522432px;}
.yd6{bottom:500.968125px;}
.y2ba{bottom:505.051725px;}
.y271{bottom:510.324459px;}
.yae{bottom:510.832500px;}
.y23f{bottom:512.787900px;}
.y1f2{bottom:515.083350px;}
.y1f0{bottom:515.083950px;}
.y18a{bottom:515.085150px;}
.y220{bottom:515.085900px;}
.y6a{bottom:515.088150px;}
.yff{bottom:515.425350px;}
.y296{bottom:515.597194px;}
.y1bd{bottom:517.210950px;}
.y169{bottom:518.146246px;}
.y2b9{bottom:519.338747px;}
.y1b{bottom:519.931500px;}
.y1f1{bottom:521.801550px;}
.y36{bottom:525.034113px;}
.yd5{bottom:528.009300px;}
.y270{bottom:529.797816px;}
.yad{bottom:530.307000px;}
.y189{bottom:534.643650px;}
.y1ef{bottom:534.643950px;}
.y21f{bottom:534.645900px;}
.y69{bottom:534.646650px;}
.yfe{bottom:534.899850px;}
.y1bc{bottom:536.769450px;}
.y2b8{bottom:538.812103px;}
.y1a{bottom:540.936000px;}
.y23e{bottom:541.275900px;}
.y168{bottom:541.361156px;}
.y35{bottom:541.531507px;}
.y26f{bottom:544.084837px;}
.y295{bottom:549.357572px;}
.yac{bottom:549.780000px;}
.y2b7{bottom:553.099125px;}
.y1ee{bottom:554.116950px;}
.y188{bottom:554.118150px;}
.y21e{bottom:554.118900px;}
.y68{bottom:554.119650px;}
.yfd{bottom:554.372850px;}
.y167{bottom:555.648178px;}
.y1bb{bottom:556.242450px;}
.y26e{bottom:558.371859px;}
.y19{bottom:561.940500px;}
.y294{bottom:563.559394px;}
.y34{bottom:567.043188px;}
.yab{bottom:569.338500px;}
.ya9{bottom:569.339550px;}
.y23d{bottom:569.763900px;}
.y166{bottom:569.848800px;}
.y164{bottom:569.849579px;}
.yd4{bottom:571.721850px;}
.y2b6{bottom:572.572481px;}
.y187{bottom:573.591150px;}
.y1ed{bottom:573.591450px;}
.y21d{bottom:573.593400px;}
.y67{bottom:573.594150px;}
.yfc{bottom:573.932850px;}
.y165{bottom:575.206200px;}
.yaa{bottom:575.971650px;}
.y26d{bottom:577.845215px;}
.y18{bottom:582.945000px;}
.y33{bottom:583.540582px;}
.y163{bottom:584.135400px;}
.y161{bottom:584.135906px;}
.y2b5{bottom:586.859503px;}
.y1e0{bottom:588.303187px;}
.ya8{bottom:588.814050px;}
.y162{bottom:589.492800px;}
.yd3{bottom:591.194850px;}
.y26c{bottom:592.047038px;}
.y1ec{bottom:593.064450px;}
.y186{bottom:593.065650px;}
.y21c{bottom:593.067900px;}
.y66{bottom:593.068650px;}
.yfb{bottom:593.405850px;}
.y293{bottom:597.319772px;}
.y23c{bottom:598.251900px;}
.y160{bottom:598.422928px;}
.y1eb{bottom:599.782650px;}
.y32{bottom:600.039176px;}
.y17{bottom:603.949500px;}
.y2b4{bottom:606.332859px;}
.ya7{bottom:608.287050px;}
.yd2{bottom:610.669350px;}
.y1df{bottom:611.519297px;}
.y26b{bottom:611.605593px;}
.y15f{bottom:612.623550px;}
.y185{bottom:612.624150px;}
.y1ea{bottom:612.625650px;}
.y21b{bottom:612.626400px;}
.y65{bottom:612.627150px;}
.yfa{bottom:612.880350px;}
.y31{bottom:616.536570px;}
.y2b3{bottom:620.619881px;}
.y1de{bottom:625.805118px;}
.y26a{bottom:625.807416px;}
.y23b{bottom:626.740050px;}
.ya6{bottom:627.845550px;}
.ya4{bottom:627.846150px;}
.yd1{bottom:630.227850px;}
.y292{bottom:631.080150px;}
.y184{bottom:632.098650px;}
.y21a{bottom:632.099400px;}
.y64{bottom:632.101650px;}
.yf9{bottom:632.438850px;}
.y30{bottom:633.033963px;}
.ya5{bottom:634.478700px;}
.y2b1{bottom:634.821703px;}
.y2b2{bottom:635.246498px;}
.y16{bottom:636.944850px;}
.y1dd{bottom:640.006941px;}
.y269{bottom:640.094437px;}
.y291{bottom:645.365971px;}
.ya3{bottom:647.320650px;}
.y2e{bottom:649.531357px;}
.yd0{bottom:649.702350px;}
.y2f{bottom:649.870953px;}
.y183{bottom:651.571650px;}
.y1e9{bottom:651.573150px;}
.y219{bottom:651.573900px;}
.y181{bottom:651.574500px;}
.y63{bottom:651.574650px;}
.yf8{bottom:651.913350px;}
.y1dc{bottom:654.293962px;}
.y2b0{bottom:654.295060px;}
.y182{bottom:658.289700px;}
.y268{bottom:659.567794px;}
.y290{bottom:659.823391px;}
.ya2{bottom:666.793650px;}
.ya0{bottom:666.794700px;}
.y23a{bottom:667.050300px;}
.y1db{bottom:668.495785px;}
.y2af{bottom:668.582081px;}
.ycf{bottom:669.175350px;}
.y1e8{bottom:671.131650px;}
.y218{bottom:671.132400px;}
.y180{bottom:671.133000px;}
.y62{bottom:671.133150px;}
.yf7{bottom:671.386350px;}
.ya1{bottom:673.511700px;}
.y267{bottom:673.854815px;}
.y2d{bottom:674.107050px;}
.y28f{bottom:679.041151px;}
.y1da{bottom:682.781606px;}
.y9f{bottom:686.267700px;}
.y9d{bottom:686.268750px;}
.y239{bottom:686.523300px;}
.y266{bottom:688.055438px;}
.yce{bottom:688.733850px;}
.y1e7{bottom:690.606150px;}
.y217{bottom:690.606900px;}
.y17f{bottom:690.607500px;}
.y61{bottom:690.607650px;}
.yf6{bottom:690.946350px;}
.y9e{bottom:692.985750px;}
.y28e{bottom:693.328172px;}
.y1d9{bottom:696.983429px;}
.y15{bottom:699.959963px;}
.y265{bottom:702.342459px;}
.y9c{bottom:705.827250px;}
.y238{bottom:706.081800px;}
.y28d{bottom:707.615193px;}
.y1e6{bottom:710.079150px;}
.y216{bottom:710.079900px;}
.y17e{bottom:710.080500px;}
.y60{bottom:710.082150px;}
.yf5{bottom:710.419350px;}
.y1d8{bottom:711.269250px;}
.ycd{bottom:714.160500px;}
.y264{bottom:721.815816px;}
.y9b{bottom:725.301750px;}
.y28c{bottom:727.088550px;}
.y1e5{bottom:729.637650px;}
.y1e3{bottom:729.638700px;}
.y17d{bottom:729.639000px;}
.y215{bottom:729.639900px;}
.y5f{bottom:729.640650px;}
.yf4{bottom:729.893850px;}
.y14{bottom:729.978788px;}
.y237{bottom:731.508600px;}
.y263{bottom:736.102837px;}
.y1e4{bottom:736.270800px;}
.y28b{bottom:741.290372px;}
.y9a{bottom:744.776250px;}
.y13{bottom:744.946200px;}
.y1e2{bottom:749.111700px;}
.y214{bottom:749.112900px;}
.y17c{bottom:749.113500px;}
.y5e{bottom:749.115150px;}
.yf3{bottom:749.366850px;}
.yf1{bottom:749.368500px;}
.y262{bottom:750.304660px;}
.y28a{bottom:755.577394px;}
.y1e1{bottom:755.744850px;}
.yf2{bottom:756.084900px;}
.ycc{bottom:757.872600px;}
.y12{bottom:759.997612px;}
.y99{bottom:764.334750px;}
.y213{bottom:768.587400px;}
.y17b{bottom:768.588000px;}
.y5d{bottom:768.588150px;}
.yf0{bottom:768.927000px;}
.y261{bottom:769.863215px;}
.yf{bottom:774.965025px;}
.y11{bottom:775.219422px;}
.y10{bottom:775.304621px;}
.ycb{bottom:777.431100px;}
.y236{bottom:780.832950px;}
.y97{bottom:783.807750px;}
.y260{bottom:784.065038px;}
.y17a{bottom:788.061000px;}
.y212{bottom:788.061900px;}
.y5c{bottom:788.062650px;}
.yef{bottom:788.400000px;}
.y289{bottom:789.337772px;}
.ye{bottom:789.931238px;}
.y98{bottom:790.440900px;}
.yca{bottom:796.905600px;}
.y235{bottom:800.305950px;}
.y2c{bottom:802.091250px;}
.y25f{bottom:803.623593px;}
.yd{bottom:804.982650px;}
.y211{bottom:807.620400px;}
.y179{bottom:807.621000px;}
.y5b{bottom:807.621150px;}
.y96{bottom:809.319600px;}
.yc9{bottom:816.380100px;}
.y25e{bottom:817.825416px;}
.y234{bottom:819.865650px;}
.y2ae{bottom:823.098150px;}
.y210{bottom:827.093400px;}
.y178{bottom:827.094000px;}
.y5a{bottom:827.095650px;}
.yb{bottom:831.940050px;}
.y9{bottom:831.940650px;}
.yc{bottom:832.363950px;}
.yc8{bottom:835.938600px;}
.y125{bottom:836.448038px;}
.y25d{bottom:837.298772px;}
.ya{bottom:837.977850px;}
.y233{bottom:839.340150px;}
.y20f{bottom:846.567900px;}
.y177{bottom:846.568500px;}
.y59{bottom:846.568650px;}
.y94{bottom:847.757400px;}
.y6{bottom:848.437650px;}
.y7{bottom:848.861550px;}
.y95{bottom:850.223550px;}
.y93{bottom:850.224600px;}
.y25c{bottom:851.585794px;}
.y8{bottom:854.475450px;}
.yc7{bottom:855.413100px;}
.y2ad{bottom:856.858528px;}
.y232{bottom:858.813150px;}
.y124{bottom:863.489700px;}
.y20e{bottom:866.126400px;}
.y176{bottom:866.127000px;}
.y58{bottom:866.127150px;}
.y123{bottom:868.762200px;}
.y92{bottom:869.699100px;}
.y25b{bottom:871.059150px;}
.y88{bottom:872.584168px;}
.yc6{bottom:874.886100px;}
.y231{bottom:878.287650px;}
.y122{bottom:881.433000px;}
.y259{bottom:885.346172px;}
.y20d{bottom:885.600900px;}
.y175{bottom:885.601500px;}
.y57{bottom:885.601650px;}
.y25a{bottom:885.686967px;}
.y5{bottom:885.940537px;}
.y121{bottom:886.790550px;}
.y87{bottom:889.081561px;}
.y91{bottom:889.257600px;}
.yc5{bottom:894.360600px;}
.y230{bottom:897.846150px;}
.y120{bottom:899.461350px;}
.y11f{bottom:904.819364px;}
.y258{bottom:904.820728px;}
.y20c{bottom:905.073900px;}
.y174{bottom:905.074500px;}
.y56{bottom:905.076150px;}
.y86{bottom:905.580155px;}
.y8f{bottom:908.730600px;}
.y1b6{bottom:909.922088px;}
.y20b{bottom:911.792100px;}
.yc4{bottom:913.919100px;}
.y90{bottom:915.363750px;}
.y22f{bottom:917.320650px;}
.y257{bottom:919.106550px;}
.y85{bottom:922.077549px;}
.y4{bottom:923.443725px;}
.y173{bottom:924.633000px;}
.y171{bottom:924.634050px;}
.y55{bottom:924.634650px;}
.y11d{bottom:930.586219px;}
.y172{bottom:931.266000px;}
.y256{bottom:933.308372px;}
.yc3{bottom:933.393600px;}
.y8e{bottom:934.242450px;}
.y11e{bottom:935.943300px;}
.y22e{bottom:936.793650px;}
.y1b5{bottom:936.963750px;}
.y84{bottom:938.574943px;}
.y288{bottom:938.581106px;}
.y1b4{bottom:942.321150px;}
.y170{bottom:944.107050px;}
.y16e{bottom:944.108100px;}
.y54{bottom:944.109150px;}
.y2ac{bottom:947.595394px;}
.y11c{bottom:949.295185px;}
.y16f{bottom:950.740050px;}
.yc2{bottom:952.866600px;}
.y255{bottom:952.866928px;}
.y1b3{bottom:954.992100px;}
.y83{bottom:955.072336px;}
.y1b2{bottom:960.264450px;}
.y3{bottom:960.946912px;}
.y22d{bottom:962.305500px;}
.y53{bottom:963.582150px;}
.y16d{bottom:963.582600px;}
.y254{bottom:967.068750px;}
.y11b{bottom:968.088150px;}
.y119{bottom:968.088984px;}
.y82{bottom:971.569730px;}
.yc1{bottom:972.425100px;}
.y11a{bottom:973.445550px;}
.y8d{bottom:975.147450px;}
.y2ab{bottom:981.355772px;}
.y1b1{bottom:983.055000px;}
.y1af{bottom:983.056150px;}
.y52{bottom:983.140650px;}
.y16c{bottom:983.141100px;}
.y253{bottom:986.542107px;}
.y118{bottom:986.796750px;}
.y116{bottom:986.797210px;}
.y1b0{bottom:988.412550px;}
.y117{bottom:992.154300px;}
.y8c{bottom:994.621950px;}
.y81{bottom:997.081411px;}
.yc0{bottom:997.936950px;}
.y2{bottom:998.447100px;}
.y252{bottom:1000.829128px;}
.y1ae{bottom:1001.849115px;}
.y16b{bottom:1002.614100px;}
.y51{bottom:1002.615150px;}
.y16a{bottom:1009.247100px;}
.y114{bottom:1009.332929px;}
.y111{bottom:1009.333422px;}
.y80{bottom:1013.578805px;}
.y8b{bottom:1014.094950px;}
.y251{bottom:1015.116150px;}
.y1ad{bottom:1021.323672px;}
.y50{bottom:1022.089650px;}
.y113{bottom:1023.618750px;}
.y110{bottom:1023.619243px;}
.y112{bottom:1028.891250px;}
.y7f{bottom:1030.076199px;}
.y8a{bottom:1033.653450px;}
.y250{bottom:1034.589506px;}
.y1{bottom:1035.949500px;}
.y115{bottom:1037.819372px;}
.y10f{bottom:1037.821066px;}
.y1ac{bottom:1040.797029px;}
.y4f{bottom:1041.562650px;}
.y7e{bottom:1046.574793px;}
.y24f{bottom:1048.791329px;}
.y89{bottom:1059.080250px;}
.y4e{bottom:1061.121150px;}
.y7d{bottom:1063.072186px;}
.y10e{bottom:1063.077150px;}
.y7c{bottom:1118.692800px;}
.h14{height:24.796125px;}
.h12{height:24.828120px;}
.h4{height:27.932275px;}
.hf{height:28.716697px;}
.h13{height:34.218322px;}
.hb{height:34.968313px;}
.h10{height:36.675782px;}
.h1{height:37.199535px;}
.h6{height:37.247534px;}
.h5{height:38.416992px;}
.hd{height:39.119511px;}
.hc{height:40.559493px;}
.h3{height:41.904000px;}
.h8{height:44.175000px;}
.ha{height:55.020000px;}
.h15{height:55.135200px;}
.h11{height:55.140000px;}
.he{height:55.799535px;}
.h9{height:55.871534px;}
.h7{height:76.415045px;}
.h2{height:95.520478px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:54.000000px;}
.x3c{left:59.271534px;}
.x55{left:61.738500px;}
.x3d{left:65.224660px;}
.x18{left:71.433000px;}
.x4e{left:79.855159px;}
.x52{left:82.066162px;}
.x17{left:84.018750px;}
.x53{left:85.297722px;}
.x4f{left:105.618750px;}
.x77{left:108.000000px;}
.x19{left:117.778821px;}
.x73{left:120.414370px;}
.x72{left:127.133086px;}
.x3e{left:148.647617px;}
.x3f{left:159.107886px;}
.x1a{left:160.893082px;}
.x40{left:169.481756px;}
.x1b{left:175.094904px;}
.x56{left:202.563750px;}
.x57{left:210.217200px;}
.x71{left:225.948251px;}
.x41{left:257.157460px;}
.x58{left:258.604650px;}
.x5d{left:263.877150px;}
.x59{left:266.343300px;}
.x43{left:283.859527px;}
.x42{left:286.666292px;}
.x1{left:300.018750px;}
.x8c{left:307.247100px;}
.x78{left:314.390550px;}
.x1c{left:317.962200px;}
.x79{left:323.064450px;}
.x2d{left:324.425100px;}
.x60{left:329.357400px;}
.x2e{left:333.099150px;}
.x7b{left:337.351050px;}
.x50{left:349.766850px;}
.x82{left:354.358950px;}
.x8e{left:358.779624px;}
.x8d{left:360.820798px;}
.x74{left:362.182650px;}
.x14{left:369.069487px;}
.x2{left:378.339000px;}
.x3{left:401.896050px;}
.x44{left:407.421982px;}
.xb{left:408.869250px;}
.xc{left:414.481800px;}
.x4{left:415.927500px;}
.x2f{left:418.903800px;}
.x1e{left:420.349500px;}
.x3a{left:424.006200px;}
.x61{left:428.428200px;}
.x5a{left:429.533850px;}
.xd{left:431.829300px;}
.x1f{left:434.891250px;}
.x62{left:435.996750px;}
.x5b{left:438.292800px;}
.x46{left:439.990775px;}
.x7a{left:441.014100px;}
.x51{left:443.480250px;}
.x45{left:445.263509px;}
.x65{left:457.511700px;}
.x66{left:465.080250px;}
.x3b{left:485.064450px;}
.x20{left:486.169950px;}
.x15{left:488.039600px;}
.x31{left:493.738500px;}
.x1d{left:494.844000px;}
.x7c{left:500.456550px;}
.x32{left:502.412550px;}
.x30{left:505.388850px;}
.x7d{left:509.130600px;}
.x63{left:510.491250px;}
.xe{left:514.062900px;}
.x64{left:515.423550px;}
.x67{left:518.655000px;}
.x28{left:522.141600px;}
.x68{left:526.223550px;}
.xf{left:528.094350px;}
.x5{left:531.411000px;}
.x21{left:539.574750px;}
.x33{left:542.211000px;}
.x6e{left:543.826650px;}
.x6{left:545.442450px;}
.x6f{left:549.524400px;}
.x34{left:550.884900px;}
.x47{left:556.239322px;}
.x69{left:562.705500px;}
.x48{left:566.529193px;}
.x6a{left:568.233000px;}
.x8a{left:573.165300px;}
.x8b{left:581.839350px;}
.x29{left:583.200000px;}
.x22{left:586.771650px;}
.x2a{left:588.557400px;}
.x23{left:592.129050px;}
.x4b{left:603.865809px;}
.x35{left:605.395200px;}
.x10{left:608.201550px;}
.x11{left:613.814100px;}
.x7{left:624.699150px;}
.x24{left:633.968400px;}
.x8{left:638.730600px;}
.x25{left:642.642450px;}
.x49{left:656.929050px;}
.x83{left:662.541600px;}
.x4a{left:664.582650px;}
.x84{left:671.215650px;}
.x75{left:678.273900px;}
.x6c{left:680.995200px;}
.x2b{left:682.525950px;}
.x2c{left:687.968400px;}
.x6d{left:693.921150px;}
.x36{left:696.897600px;}
.x4c{left:700.553400px;}
.x26{left:710.929050px;}
.x27{left:719.603100px;}
.x5c{left:731.083350px;}
.x85{left:734.825100px;}
.x4d{left:738.310928px;}
.x38{left:739.332150px;}
.x12{left:741.118050px;}
.x39{left:744.774750px;}
.x9{left:754.044000px;}
.x13{left:755.234550px;}
.x80{left:758.466000px;}
.xa{left:759.656550px;}
.x81{left:767.140050px;}
.x76{left:769.521150px;}
.x86{left:782.702250px;}
.x87{left:792.481800px;}
.x54{left:804.472350px;}
.x7e{left:806.003100px;}
.x7f{left:814.677150px;}
.x6b{left:818.333850px;}
.x88{left:821.055000px;}
.x5e{left:828.793650px;}
.x89{left:830.834550px;}
.x5f{left:834.066000px;}
.x37{left:847.587300px;}
.x70{left:852.944850px;}
@media print{
.v1{vertical-align:-1.507200pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.347200pt;}
.lsc{letter-spacing:-1.066653pt;}
.ls27{letter-spacing:-0.533333pt;}
.ls28{letter-spacing:-0.472835pt;}
.lsb{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.472835pt;}
.ls11{letter-spacing:0.533333pt;}
.ls35{letter-spacing:0.906667pt;}
.ls34{letter-spacing:0.945669pt;}
.ls2e{letter-spacing:1.066667pt;}
.ls8{letter-spacing:2.423436pt;}
.lsa{letter-spacing:2.726366pt;}
.ls5{letter-spacing:4.236747pt;}
.ls4b{letter-spacing:4.539677pt;}
.ls1{letter-spacing:4.876800pt;}
.ls2{letter-spacing:5.179200pt;}
.ls0{letter-spacing:6.393600pt;}
.ls9{letter-spacing:7.790836pt;}
.ls41{letter-spacing:8.302830pt;}
.ls3d{letter-spacing:8.409495pt;}
.ls42{letter-spacing:8.473494pt;}
.ls37{letter-spacing:8.477761pt;}
.ls48{letter-spacing:8.549333pt;}
.ls36{letter-spacing:8.605759pt;}
.ls3e{letter-spacing:8.780690pt;}
.ls44{letter-spacing:8.900155pt;}
.ls39{letter-spacing:8.925755pt;}
.ls7{letter-spacing:8.930022pt;}
.ls3f{letter-spacing:9.070820pt;}
.ls43{letter-spacing:9.100686pt;}
.ls1f{letter-spacing:9.228685pt;}
.ls20{letter-spacing:9.232951pt;}
.ls38{letter-spacing:9.237218pt;}
.ls25{letter-spacing:9.250018pt;}
.ls4e{letter-spacing:9.326817pt;}
.ls26{letter-spacing:9.403616pt;}
.ls45{letter-spacing:9.407882pt;}
.ls21{letter-spacing:9.531614pt;}
.ls1e{letter-spacing:9.535881pt;}
.ls23{letter-spacing:9.552947pt;}
.ls22{letter-spacing:9.706545pt;}
.ls3b{letter-spacing:9.779078pt;}
.ls3c{letter-spacing:10.009475pt;}
.ls31{letter-spacing:10.517333pt;}
.ls14{letter-spacing:10.528000pt;}
.ls47{letter-spacing:10.810667pt;}
.ls12{letter-spacing:10.816000pt;}
.ls40{letter-spacing:10.965333pt;}
.ls1b{letter-spacing:11.061333pt;}
.ls10{letter-spacing:11.066667pt;}
.ls49{letter-spacing:11.120000pt;}
.ls24{letter-spacing:11.162667pt;}
.lsf{letter-spacing:11.226667pt;}
.ls2b{letter-spacing:11.242667pt;}
.ls1d{letter-spacing:11.258667pt;}
.lsd{letter-spacing:11.264000pt;}
.lse{letter-spacing:11.269333pt;}
.ls17{letter-spacing:11.274667pt;}
.ls46{letter-spacing:11.322667pt;}
.ls32{letter-spacing:11.365333pt;}
.ls13{letter-spacing:11.370667pt;}
.ls2a{letter-spacing:11.546667pt;}
.ls1c{letter-spacing:11.573333pt;}
.ls2c{letter-spacing:11.637333pt;}
.ls16{letter-spacing:11.664000pt;}
.ls15{letter-spacing:11.717333pt;}
.ls18{letter-spacing:11.845333pt;}
.ls2d{letter-spacing:11.872000pt;}
.ls29{letter-spacing:11.888000pt;}
.ls30{letter-spacing:11.978667pt;}
.ls2f{letter-spacing:12.821333pt;}
.ls4c{letter-spacing:13.307567pt;}
.ls4a{letter-spacing:13.610497pt;}
.ls1a{letter-spacing:13.834667pt;}
.ls4d{letter-spacing:13.913426pt;}
.ls19{letter-spacing:15.898667pt;}
.ls6{letter-spacing:18.474436pt;}
.ls3{letter-spacing:18.777365pt;}
.ls4{letter-spacing:18.781632pt;}
.ls3a{letter-spacing:178.404170pt;}
.ws195{word-spacing:-40.586667pt;}
.ws193{word-spacing:-37.332267pt;}
.ws150{word-spacing:-31.999600pt;}
.ws199{word-spacing:-30.368000pt;}
.ws19e{word-spacing:-30.250667pt;}
.ws190{word-spacing:-30.122667pt;}
.ws198{word-spacing:-29.754667pt;}
.ws19c{word-spacing:-29.525333pt;}
.ws197{word-spacing:-29.301333pt;}
.ws18f{word-spacing:-29.184000pt;}
.ws19a{word-spacing:-29.082667pt;}
.ws19d{word-spacing:-28.837333pt;}
.ws9f{word-spacing:-26.666667pt;}
.ws136{word-spacing:-26.240000pt;}
.ws19b{word-spacing:-26.000000pt;}
.ws128{word-spacing:-25.706667pt;}
.ws59{word-spacing:-25.173333pt;}
.ws111{word-spacing:-24.640000pt;}
.ws28{word-spacing:-23.509039pt;}
.ws127{word-spacing:-17.253127pt;}
.ws139{word-spacing:-15.925333pt;}
.ws138{word-spacing:-15.760000pt;}
.ws13f{word-spacing:-15.733333pt;}
.ws133{word-spacing:-15.701333pt;}
.ws13d{word-spacing:-15.621333pt;}
.ws13e{word-spacing:-15.568000pt;}
.ws13a{word-spacing:-15.557333pt;}
.ws137{word-spacing:-15.536000pt;}
.ws135{word-spacing:-15.456000pt;}
.ws12c{word-spacing:-15.450667pt;}
.wsf8{word-spacing:-15.413333pt;}
.ws125{word-spacing:-15.402667pt;}
.ws121{word-spacing:-15.397333pt;}
.ws122{word-spacing:-15.392000pt;}
.ws6f{word-spacing:-15.386667pt;}
.ws123{word-spacing:-15.376000pt;}
.ws12a{word-spacing:-15.354667pt;}
.ws71{word-spacing:-15.290667pt;}
.ws124{word-spacing:-15.285333pt;}
.ws6e{word-spacing:-15.274667pt;}
.ws6d{word-spacing:-15.269333pt;}
.ws72{word-spacing:-15.248000pt;}
.ws13b{word-spacing:-15.232000pt;}
.ws132{word-spacing:-15.216000pt;}
.ws13c{word-spacing:-15.210667pt;}
.ws142{word-spacing:-15.189333pt;}
.ws134{word-spacing:-15.082667pt;}
.ws126{word-spacing:-15.077333pt;}
.ws73{word-spacing:-15.018667pt;}
.ws70{word-spacing:-14.986667pt;}
.ws166{word-spacing:-14.965333pt;}
.ws93{word-spacing:-14.954667pt;}
.wsbb{word-spacing:-14.949333pt;}
.ws8b{word-spacing:-14.944000pt;}
.ws25{word-spacing:-14.938667pt;}
.wsc2{word-spacing:-14.933333pt;}
.ws99{word-spacing:-14.928000pt;}
.ws15f{word-spacing:-14.922667pt;}
.ws17b{word-spacing:-14.917333pt;}
.ws22{word-spacing:-14.912000pt;}
.wsf5{word-spacing:-14.901333pt;}
.ws5d{word-spacing:-14.896000pt;}
.ws5a{word-spacing:-14.890667pt;}
.ws5e{word-spacing:-14.885333pt;}
.wsa3{word-spacing:-14.880000pt;}
.ws58{word-spacing:-14.874667pt;}
.ws14d{word-spacing:-14.869333pt;}
.ws192{word-spacing:-14.868800pt;}
.ws18d{word-spacing:-14.864000pt;}
.ws17e{word-spacing:-14.858667pt;}
.ws60{word-spacing:-14.853333pt;}
.ws26{word-spacing:-14.848000pt;}
.ws6b{word-spacing:-14.842667pt;}
.ws61{word-spacing:-14.837333pt;}
.ws6a{word-spacing:-14.832000pt;}
.ws52{word-spacing:-14.826667pt;}
.wsad{word-spacing:-14.821333pt;}
.ws68{word-spacing:-14.816000pt;}
.ws160{word-spacing:-14.810667pt;}
.ws51{word-spacing:-14.805333pt;}
.ws102{word-spacing:-14.800000pt;}
.ws17a{word-spacing:-14.794667pt;}
.ws130{word-spacing:-14.789333pt;}
.wsbf{word-spacing:-14.784000pt;}
.ws69{word-spacing:-14.778667pt;}
.ws145{word-spacing:-14.773333pt;}
.ws185{word-spacing:-14.768000pt;}
.wsac{word-spacing:-14.762667pt;}
.wscf{word-spacing:-14.757333pt;}
.ws94{word-spacing:-14.752000pt;}
.wsc4{word-spacing:-14.746667pt;}
.ws9a{word-spacing:-14.741333pt;}
.ws83{word-spacing:-14.736000pt;}
.ws113{word-spacing:-14.730667pt;}
.ws89{word-spacing:-14.725333pt;}
.ws16d{word-spacing:-14.720000pt;}
.ws17f{word-spacing:-14.714667pt;}
.ws66{word-spacing:-14.709333pt;}
.wsb0{word-spacing:-14.704000pt;}
.wsc6{word-spacing:-14.693333pt;}
.ws24{word-spacing:-14.688000pt;}
.wsf9{word-spacing:-14.682667pt;}
.wsf1{word-spacing:-14.677333pt;}
.wsf4{word-spacing:-14.672000pt;}
.ws147{word-spacing:-14.666667pt;}
.wsd8{word-spacing:-14.661333pt;}
.wsc5{word-spacing:-14.656000pt;}
.wsa6{word-spacing:-14.645333pt;}
.wsf7{word-spacing:-14.640000pt;}
.wsc7{word-spacing:-14.634667pt;}
.wsf6{word-spacing:-14.629333pt;}
.wsd7{word-spacing:-14.624000pt;}
.ws162{word-spacing:-14.613333pt;}
.wsb2{word-spacing:-14.608000pt;}
.wsd0{word-spacing:-14.597333pt;}
.ws57{word-spacing:-14.592000pt;}
.ws179{word-spacing:-14.586667pt;}
.ws23{word-spacing:-14.581333pt;}
.ws67{word-spacing:-14.576000pt;}
.ws112{word-spacing:-14.570667pt;}
.ws18c{word-spacing:-14.565333pt;}
.ws143{word-spacing:-14.560000pt;}
.wsab{word-spacing:-14.554667pt;}
.ws189{word-spacing:-14.549333pt;}
.ws16e{word-spacing:-14.544000pt;}
.wsb3{word-spacing:-14.538667pt;}
.ws12b{word-spacing:-14.533333pt;}
.wsc3{word-spacing:-14.528000pt;}
.wsb5{word-spacing:-14.522667pt;}
.wsd3{word-spacing:-14.512000pt;}
.ws9d{word-spacing:-14.506667pt;}
.ws182{word-spacing:-14.501333pt;}
.ws183{word-spacing:-14.496000pt;}
.ws172{word-spacing:-14.490667pt;}
.ws175{word-spacing:-14.485333pt;}
.wsd5{word-spacing:-14.480000pt;}
.ws50{word-spacing:-14.474667pt;}
.ws62{word-spacing:-14.469333pt;}
.wsf2{word-spacing:-14.464000pt;}
.ws149{word-spacing:-14.458667pt;}
.ws171{word-spacing:-14.453333pt;}
.ws77{word-spacing:-14.437333pt;}
.wsd4{word-spacing:-14.432000pt;}
.ws98{word-spacing:-14.426667pt;}
.ws148{word-spacing:-14.416000pt;}
.ws101{word-spacing:-14.405333pt;}
.ws8a{word-spacing:-14.400000pt;}
.ws10b{word-spacing:-14.394667pt;}
.wsb6{word-spacing:-14.384000pt;}
.ws17c{word-spacing:-14.368000pt;}
.ws97{word-spacing:-14.362667pt;}
.wsbc{word-spacing:-14.357333pt;}
.wsa4{word-spacing:-14.352000pt;}
.ws116{word-spacing:-14.346667pt;}
.ws170{word-spacing:-14.341333pt;}
.ws8c{word-spacing:-14.330667pt;}
.ws10c{word-spacing:-14.325333pt;}
.ws188{word-spacing:-14.320000pt;}
.ws17d{word-spacing:-14.309333pt;}
.wsb8{word-spacing:-14.298667pt;}
.ws18b{word-spacing:-14.293333pt;}
.wsd2{word-spacing:-14.282667pt;}
.ws56{word-spacing:-14.277333pt;}
.ws53{word-spacing:-14.272000pt;}
.ws141{word-spacing:-14.266667pt;}
.wsf3{word-spacing:-14.261333pt;}
.ws8e{word-spacing:-14.240000pt;}
.ws131{word-spacing:-14.234667pt;}
.ws12e{word-spacing:-14.229333pt;}
.ws14b{word-spacing:-14.224000pt;}
.ws173{word-spacing:-14.218667pt;}
.ws10a{word-spacing:-14.186667pt;}
.ws144{word-spacing:-14.181333pt;}
.ws5c{word-spacing:-14.165333pt;}
.ws91{word-spacing:-14.160000pt;}
.ws5f{word-spacing:-14.154667pt;}
.ws6c{word-spacing:-14.144000pt;}
.ws129{word-spacing:-14.112000pt;}
.ws187{word-spacing:-14.106667pt;}
.wscd{word-spacing:-14.090667pt;}
.wsa9{word-spacing:-14.085333pt;}
.ws84{word-spacing:-14.080000pt;}
.wsb9{word-spacing:-14.074667pt;}
.ws15e{word-spacing:-14.069333pt;}
.ws54{word-spacing:-14.064000pt;}
.wsc0{word-spacing:-14.058667pt;}
.wsbe{word-spacing:-14.053333pt;}
.ws96{word-spacing:-14.048000pt;}
.wsb7{word-spacing:-14.042667pt;}
.ws14c{word-spacing:-14.037333pt;}
.ws164{word-spacing:-14.021333pt;}
.wsa2{word-spacing:-14.016000pt;}
.ws177{word-spacing:-14.010667pt;}
.ws184{word-spacing:-13.994667pt;}
.wscc{word-spacing:-13.989333pt;}
.wsce{word-spacing:-13.984000pt;}
.ws178{word-spacing:-13.978667pt;}
.ws76{word-spacing:-13.973333pt;}
.ws55{word-spacing:-13.968000pt;}
.ws100{word-spacing:-13.920000pt;}
.wsae{word-spacing:-13.909333pt;}
.ws65{word-spacing:-13.898667pt;}
.wsa8{word-spacing:-13.888000pt;}
.ws167{word-spacing:-13.872000pt;}
.ws5b{word-spacing:-13.861333pt;}
.ws64{word-spacing:-13.856000pt;}
.ws181{word-spacing:-13.850667pt;}
.ws191{word-spacing:-13.840000pt;}
.ws16f{word-spacing:-13.829333pt;}
.ws9b{word-spacing:-13.824000pt;}
.ws10d{word-spacing:-13.818667pt;}
.wsd9{word-spacing:-13.808000pt;}
.wsa0{word-spacing:-13.781333pt;}
.wsa5{word-spacing:-13.776000pt;}
.ws85{word-spacing:-13.765333pt;}
.ws90{word-spacing:-13.760000pt;}
.ws63{word-spacing:-13.754667pt;}
.ws8f{word-spacing:-13.749333pt;}
.ws88{word-spacing:-13.744000pt;}
.ws87{word-spacing:-13.738667pt;}
.ws146{word-spacing:-13.712000pt;}
.ws174{word-spacing:-13.696000pt;}
.ws14a{word-spacing:-13.685333pt;}
.wscb{word-spacing:-13.680000pt;}
.wsc8{word-spacing:-13.669333pt;}
.ws92{word-spacing:-13.664000pt;}
.ws163{word-spacing:-13.653333pt;}
.ws161{word-spacing:-13.594667pt;}
.ws186{word-spacing:-13.589333pt;}
.ws95{word-spacing:-13.584000pt;}
.wsd1{word-spacing:-13.493333pt;}
.ws12d{word-spacing:-13.482667pt;}
.ws9e{word-spacing:-13.456000pt;}
.wsaf{word-spacing:-13.450667pt;}
.ws18a{word-spacing:-13.440000pt;}
.ws9c{word-spacing:-13.381333pt;}
.wsbd{word-spacing:-13.365333pt;}
.ws180{word-spacing:-13.360000pt;}
.ws176{word-spacing:-13.221333pt;}
.ws10e{word-spacing:-13.130667pt;}
.ws10f{word-spacing:-13.061333pt;}
.wsc9{word-spacing:-13.056000pt;}
.ws110{word-spacing:-13.050667pt;}
.ws12f{word-spacing:-13.034667pt;}
.wsca{word-spacing:-12.965333pt;}
.ws196{word-spacing:-12.496000pt;}
.ws18{word-spacing:-11.989183pt;}
.wsb4{word-spacing:-9.904000pt;}
.ws165{word-spacing:-9.877333pt;}
.ws140{word-spacing:-9.829333pt;}
.wsf0{word-spacing:-9.599880pt;}
.wsc1{word-spacing:-8.928000pt;}
.wsba{word-spacing:-8.624000pt;}
.ws115{word-spacing:-4.275164pt;}
.wsa7{word-spacing:-4.211165pt;}
.ws75{word-spacing:-4.108766pt;}
.wsa1{word-spacing:-4.102366pt;}
.wsaa{word-spacing:-4.089566pt;}
.ws194{word-spacing:-4.031966pt;}
.ws74{word-spacing:-3.999967pt;}
.ws8d{word-spacing:-3.967967pt;}
.wsd6{word-spacing:-3.961567pt;}
.ws18e{word-spacing:-3.833568pt;}
.wsb1{word-spacing:-3.827168pt;}
.ws114{word-spacing:-3.820768pt;}
.ws86{word-spacing:-3.807968pt;}
.ws1c7{word-spacing:-3.455957pt;}
.ws1d0{word-spacing:-3.357825pt;}
.ws1d1{word-spacing:-3.310892pt;}
.ws119{word-spacing:-3.293825pt;}
.ws1c8{word-spacing:-3.289559pt;}
.ws1d5{word-spacing:-3.285292pt;}
.ws1a5{word-spacing:-3.281026pt;}
.ws16a{word-spacing:-3.276759pt;}
.ws1d3{word-spacing:-3.272492pt;}
.wsda{word-spacing:-3.255426pt;}
.ws16b{word-spacing:-3.251159pt;}
.ws1c9{word-spacing:-3.246893pt;}
.ws1c4{word-spacing:-3.242626pt;}
.ws152{word-spacing:-3.238360pt;}
.ws11c{word-spacing:-3.234093pt;}
.ws1a{word-spacing:-3.227467pt;}
.ws1cc{word-spacing:-3.217026pt;}
.ws1b7{word-spacing:-3.212760pt;}
.ws1aa{word-spacing:-3.208493pt;}
.wse{word-spacing:-3.204227pt;}
.ws109{word-spacing:-3.187160pt;}
.wsfe{word-spacing:-3.182894pt;}
.ws1b5{word-spacing:-3.178627pt;}
.ws1d2{word-spacing:-3.170094pt;}
.ws169{word-spacing:-3.161560pt;}
.wsd{word-spacing:-3.158400pt;}
.ws155{word-spacing:-3.157294pt;}
.ws1a7{word-spacing:-3.153027pt;}
.ws1a6{word-spacing:-3.144494pt;}
.ws1b{word-spacing:-3.136267pt;}
.ws159{word-spacing:-3.135961pt;}
.ws168{word-spacing:-3.123161pt;}
.ws1a9{word-spacing:-3.118894pt;}
.ws8{word-spacing:-3.110400pt;}
.ws1c2{word-spacing:-3.110361pt;}
.wsc{word-spacing:-3.105600pt;}
.wsf{word-spacing:-3.101828pt;}
.ws1b2{word-spacing:-3.093295pt;}
.ws7{word-spacing:-3.091200pt;}
.ws15a{word-spacing:-3.089028pt;}
.ws5{word-spacing:-3.086400pt;}
.ws1f{word-spacing:-3.085600pt;}
.wsff{word-spacing:-3.084761pt;}
.ws1b8{word-spacing:-3.080495pt;}
.ws1d7{word-spacing:-3.076228pt;}
.ws1c{word-spacing:-3.075467pt;}
.ws11f{word-spacing:-3.059162pt;}
.ws103{word-spacing:-3.054895pt;}
.ws1a1{word-spacing:-3.050629pt;}
.ws11e{word-spacing:-3.042095pt;}
.ws6{word-spacing:-3.028800pt;}
.ws1d{word-spacing:-3.019733pt;}
.ws154{word-spacing:-3.016496pt;}
.ws1ad{word-spacing:-3.012229pt;}
.ws1c0{word-spacing:-3.007962pt;}
.ws1b6{word-spacing:-3.003696pt;}
.ws104{word-spacing:-2.999429pt;}
.ws1c6{word-spacing:-2.995163pt;}
.ws11d{word-spacing:-2.986629pt;}
.ws108{word-spacing:-2.982363pt;}
.ws1c5{word-spacing:-2.978096pt;}
.ws1a0{word-spacing:-2.973829pt;}
.ws1d6{word-spacing:-2.969563pt;}
.ws120{word-spacing:-2.965296pt;}
.ws1a3{word-spacing:-2.961030pt;}
.ws11b{word-spacing:-2.956763pt;}
.ws1ab{word-spacing:-2.952496pt;}
.ws15c{word-spacing:-2.948230pt;}
.ws117{word-spacing:-2.943963pt;}
.ws27{word-spacing:-2.939697pt;}
.ws1cf{word-spacing:-2.935430pt;}
.ws19{word-spacing:-2.923467pt;}
.ws1ac{word-spacing:-2.918364pt;}
.ws106{word-spacing:-2.914097pt;}
.ws14e{word-spacing:-2.909830pt;}
.ws15{word-spacing:-2.905564pt;}
.ws14{word-spacing:-2.901297pt;}
.ws20{word-spacing:-2.898133pt;}
.ws1ca{word-spacing:-2.888497pt;}
.ws1cb{word-spacing:-2.884231pt;}
.ws9{word-spacing:-2.880000pt;}
.wsfc{word-spacing:-2.879964pt;}
.ws15d{word-spacing:-2.875697pt;}
.wsfa{word-spacing:-2.871431pt;}
.ws13{word-spacing:-2.854364pt;}
.ws1b0{word-spacing:-2.850098pt;}
.ws16c{word-spacing:-2.845831pt;}
.ws14f{word-spacing:-2.841564pt;}
.ws1ba{word-spacing:-2.837298pt;}
.ws1b4{word-spacing:-2.833031pt;}
.ws1b1{word-spacing:-2.828765pt;}
.ws11a{word-spacing:-2.824498pt;}
.ws105{word-spacing:-2.820231pt;}
.ws1bc{word-spacing:-2.815965pt;}
.ws153{word-spacing:-2.811698pt;}
.ws0{word-spacing:-2.807432pt;}
.wsb{word-spacing:-2.803200pt;}
.ws78{word-spacing:-2.803165pt;}
.ws1cd{word-spacing:-2.790365pt;}
.wsa{word-spacing:-2.788800pt;}
.ws1e{word-spacing:-2.786667pt;}
.ws1ae{word-spacing:-2.786099pt;}
.ws16{word-spacing:-2.781832pt;}
.ws151{word-spacing:-2.777565pt;}
.ws1c3{word-spacing:-2.773299pt;}
.ws15b{word-spacing:-2.769032pt;}
.ws1c1{word-spacing:-2.756232pt;}
.ws1d4{word-spacing:-2.751966pt;}
.ws107{word-spacing:-2.747699pt;}
.ws1be{word-spacing:-2.743432pt;}
.wse4{word-spacing:-2.734899pt;}
.wse0{word-spacing:-2.730633pt;}
.ws12{word-spacing:-2.717833pt;}
.ws21{word-spacing:-2.715733pt;}
.wsef{word-spacing:-2.713566pt;}
.ws10{word-spacing:-2.709299pt;}
.ws1a4{word-spacing:-2.705033pt;}
.wse5{word-spacing:-2.683700pt;}
.wsfd{word-spacing:-2.679433pt;}
.ws1a8{word-spacing:-2.675167pt;}
.wsec{word-spacing:-2.662367pt;}
.ws1b3{word-spacing:-2.658100pt;}
.wse2{word-spacing:-2.623967pt;}
.ws1bd{word-spacing:-2.615434pt;}
.wsde{word-spacing:-2.606901pt;}
.ws118{word-spacing:-2.602634pt;}
.ws1ce{word-spacing:-2.598368pt;}
.ws1bb{word-spacing:-2.585568pt;}
.ws1bf{word-spacing:-2.581301pt;}
.wsea{word-spacing:-2.572768pt;}
.wse1{word-spacing:-2.564235pt;}
.wsfb{word-spacing:-2.551435pt;}
.wsed{word-spacing:-2.547168pt;}
.ws1a2{word-spacing:-2.513035pt;}
.ws11{word-spacing:-2.508769pt;}
.wse3{word-spacing:-2.504502pt;}
.wsdc{word-spacing:-2.495969pt;}
.wsdf{word-spacing:-2.487436pt;}
.ws17{word-spacing:-2.478902pt;}
.wseb{word-spacing:-2.453303pt;}
.ws157{word-spacing:-2.449036pt;}
.wsdb{word-spacing:-2.444769pt;}
.wse6{word-spacing:-2.414903pt;}
.wse8{word-spacing:-2.410637pt;}
.wsdd{word-spacing:-2.406370pt;}
.ws158{word-spacing:-2.393570pt;}
.wse7{word-spacing:-2.385037pt;}
.wsee{word-spacing:-2.218639pt;}
.wse9{word-spacing:-2.141840pt;}
.ws1{word-spacing:-1.098672pt;}
.ws2{word-spacing:-1.056005pt;}
.ws3{word-spacing:-0.960005pt;}
.ws3d{word-spacing:-0.938655pt;}
.ws2c{word-spacing:-0.891722pt;}
.ws7d{word-spacing:-0.840523pt;}
.ws38{word-spacing:-0.819190pt;}
.ws40{word-spacing:-0.814923pt;}
.ws4c{word-spacing:-0.797857pt;}
.ws39{word-spacing:-0.793590pt;}
.ws4{word-spacing:-0.789337pt;}
.ws36{word-spacing:-0.780790pt;}
.ws7f{word-spacing:-0.767990pt;}
.ws2b{word-spacing:-0.738124pt;}
.ws7c{word-spacing:-0.733857pt;}
.ws42{word-spacing:-0.725324pt;}
.ws4b{word-spacing:-0.716791pt;}
.ws34{word-spacing:-0.703991pt;}
.ws4e{word-spacing:-0.699725pt;}
.ws79{word-spacing:-0.695458pt;}
.ws30{word-spacing:-0.682658pt;}
.ws2f{word-spacing:-0.678392pt;}
.ws2a{word-spacing:-0.674125pt;}
.ws2d{word-spacing:-0.661325pt;}
.ws45{word-spacing:-0.657058pt;}
.ws3c{word-spacing:-0.644259pt;}
.ws4d{word-spacing:-0.627192pt;}
.ws81{word-spacing:-0.618659pt;}
.ws3e{word-spacing:-0.601592pt;}
.ws41{word-spacing:-0.597326pt;}
.ws32{word-spacing:-0.580259pt;}
.ws80{word-spacing:-0.575993pt;}
.ws29{word-spacing:-0.554660pt;}
.ws2e{word-spacing:-0.537593pt;}
.ws7b{word-spacing:-0.524793pt;}
.ws46{word-spacing:-0.511994pt;}
.ws31{word-spacing:-0.507727pt;}
.ws37{word-spacing:-0.486394pt;}
.ws33{word-spacing:-0.477861pt;}
.ws35{word-spacing:-0.469327pt;}
.ws3b{word-spacing:-0.460794pt;}
.ws49{word-spacing:-0.456528pt;}
.ws47{word-spacing:-0.447994pt;}
.ws44{word-spacing:-0.443728pt;}
.ws3f{word-spacing:-0.418128pt;}
.ws4a{word-spacing:-0.413861pt;}
.ws82{word-spacing:-0.409595pt;}
.ws48{word-spacing:-0.401062pt;}
.ws43{word-spacing:-0.396795pt;}
.ws7e{word-spacing:-0.371195pt;}
.ws7a{word-spacing:-0.273063pt;}
.ws3a{word-spacing:-0.260263pt;}
.ws4f{word-spacing:0.000000pt;}
.ws1af{word-spacing:41.087486pt;}
.ws1b9{word-spacing:41.091753pt;}
.ws19f{word-spacing:41.360550pt;}
.ws156{word-spacing:268.267580pt;}
._27{margin-left:-19.353358pt;}
._10{margin-left:-6.126954pt;}
._12{margin-left:-5.102888pt;}
._6{margin-left:-4.201258pt;}
._14{margin-left:-3.067779pt;}
._a{margin-left:-2.033787pt;}
._3{margin-left:-0.955721pt;}
._5{width:1.621333pt;}
._26{width:2.599803pt;}
._28{width:4.232480pt;}
._d{width:6.930841pt;}
._2{width:8.307096pt;}
._1{width:9.826011pt;}
._15{width:11.064023pt;}
._4{width:12.043467pt;}
._b{width:13.012628pt;}
._7{width:14.768000pt;}
._c{width:16.067220pt;}
._f{width:18.255293pt;}
._11{width:19.434126pt;}
._13{width:20.762362pt;}
._0{width:24.597456pt;}
._8{width:42.154140pt;}
._e{width:43.232205pt;}
._21{width:152.569826pt;}
._18{width:188.498977pt;}
._1c{width:200.560693pt;}
._16{width:246.529185pt;}
._19{width:248.649692pt;}
._22{width:270.486219pt;}
._1a{width:274.983229pt;}
._23{width:278.780515pt;}
._20{width:288.576659pt;}
._25{width:296.120032pt;}
._24{width:306.065507pt;}
._1d{width:317.713362pt;}
._17{width:330.713733pt;}
._1b{width:342.506652pt;}
._1f{width:384.464527pt;}
._1e{width:1462.838248pt;}
._9{width:1486.116890pt;}
.fs9{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:35.551467pt;}
.fsa{font-size:37.332267pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:63.999467pt;}
.fs4{font-size:85.332267pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:48.000000pt;}
.y1ba{bottom:106.357108pt;}
.yee{bottom:110.664533pt;}
.y2a{bottom:110.665067pt;}
.y24e{bottom:110.665225pt;}
.y7b{bottom:110.665467pt;}
.ybf{bottom:110.665867pt;}
.y10d{bottom:110.666000pt;}
.y4d{bottom:110.667307pt;}
.y20a{bottom:111.194133pt;}
.y1d7{bottom:113.084800pt;}
.y142{bottom:114.294267pt;}
.yed{bottom:116.560533pt;}
.y24d{bottom:123.364800pt;}
.y1a0{bottom:124.574533pt;}
.y4c{bottom:125.331657pt;}
.y1b9{bottom:126.992583pt;}
.ybe{bottom:127.975200pt;}
.y29{bottom:127.975733pt;}
.y7a{bottom:127.976133pt;}
.y10c{bottom:127.976667pt;}
.y209{bottom:128.504800pt;}
.y1d6{bottom:130.470133pt;}
.y141{bottom:131.603600pt;}
.y24c{bottom:135.987575pt;}
.y2aa{bottom:137.654491pt;}
.y1b8{bottom:139.692158pt;}
.y4b{bottom:139.996007pt;}
.y19f{bottom:141.883867pt;}
.ybd{bottom:145.360533pt;}
.y28{bottom:145.361067pt;}
.y79{bottom:145.361467pt;}
.y10b{bottom:145.362000pt;}
.y2cf{bottom:145.667191pt;}
.y208{bottom:145.890133pt;}
.y19c{bottom:145.893467pt;}
.y287{bottom:146.952509pt;}
.y1d5{bottom:147.779467pt;}
.y1d3{bottom:147.780000pt;}
.y134{bottom:148.309067pt;}
.y140{bottom:148.914267pt;}
.y2a9{bottom:150.278334pt;}
.y1b7{bottom:152.314933pt;}
.y24b{bottom:153.298292pt;}
.y1d4{bottom:153.675467pt;}
.y4a{bottom:154.660357pt;}
.y2ce{bottom:158.291033pt;}
.y19e{bottom:159.269200pt;}
.y286{bottom:159.651016pt;}
.y78{bottom:162.670800pt;}
.y27{bottom:162.671733pt;}
.yec{bottom:162.672133pt;}
.y10a{bottom:162.672667pt;}
.y2a7{bottom:162.976842pt;}
.y207{bottom:163.200800pt;}
.y19b{bottom:163.202800pt;}
.y2a8{bottom:163.279771pt;}
.y1d2{bottom:165.090667pt;}
.y133{bottom:165.619733pt;}
.y24a{bottom:165.996800pt;}
.y13f{bottom:166.299600pt;}
.ybc{bottom:167.962133pt;}
.y15e{bottom:167.962822pt;}
.y49{bottom:169.325774pt;}
.y2cd{bottom:170.989541pt;}
.y285{bottom:172.274859pt;}
.y26{bottom:179.981067pt;}
.yeb{bottom:179.981467pt;}
.y109{bottom:179.982000pt;}
.y2a6{bottom:180.287558pt;}
.y206{bottom:180.510133pt;}
.y204{bottom:180.511200pt;}
.y19a{bottom:180.513467pt;}
.y19d{bottom:181.870800pt;}
.y1d1{bottom:182.476000pt;}
.y132{bottom:182.929067pt;}
.y130{bottom:182.930000pt;}
.y13e{bottom:183.610267pt;}
.y249{bottom:183.987333pt;}
.y48{bottom:183.990124pt;}
.y77{bottom:185.348733pt;}
.y205{bottom:186.481867pt;}
.y15d{bottom:186.633067pt;}
.y2cc{bottom:188.300258pt;}
.y131{bottom:188.900667pt;}
.y284{bottom:189.660241pt;}
.y2a5{bottom:192.987133pt;}
.yea{bottom:197.366800pt;}
.y108{bottom:197.367333pt;}
.y203{bottom:197.896533pt;}
.y199{bottom:197.898800pt;}
.y47{bottom:198.654474pt;}
.y1d0{bottom:199.786667pt;}
.y12f{bottom:200.315333pt;}
.y13d{bottom:200.919600pt;}
.y2cb{bottom:200.998766pt;}
.y283{bottom:202.284084pt;}
.y25{bottom:202.658267pt;}
.ybb{bottom:204.398267pt;}
.y2a4{bottom:205.609909pt;}
.y76{bottom:209.310133pt;}
.y1ab{bottom:212.108084pt;}
.y46{bottom:213.318824pt;}
.ye9{bottom:214.677067pt;}
.ye7{bottom:214.678000pt;}
.y282{bottom:214.983658pt;}
.y202{bottom:215.207200pt;}
.y198{bottom:215.209467pt;}
.y1cf{bottom:217.096000pt;}
.y1cd{bottom:217.097067pt;}
.y12e{bottom:217.626000pt;}
.y2ca{bottom:218.309483pt;}
.ye8{bottom:220.573200pt;}
.yba{bottom:221.708933pt;}
.y2a3{bottom:222.996358pt;}
.y1ce{bottom:223.067600pt;}
.y13c{bottom:223.596800pt;}
.y15c{bottom:224.127333pt;}
.y248{bottom:227.832800pt;}
.y45{bottom:227.983174pt;}
.y2c9{bottom:230.933325pt;}
.ye6{bottom:231.988667pt;}
.y281{bottom:232.293308pt;}
.y201{bottom:232.517867pt;}
.y197{bottom:232.518800pt;}
.y1aa{bottom:232.820358pt;}
.y1cc{bottom:234.407733pt;}
.y12d{bottom:234.935333pt;}
.y12b{bottom:234.936800pt;}
.y2a2{bottom:235.619134pt;}
.yb9{bottom:239.018267pt;}
.y12c{bottom:240.907067pt;}
.y15b{bottom:241.436667pt;}
.y43{bottom:242.647524pt;}
.y44{bottom:243.026186pt;}
.y280{bottom:244.992883pt;}
.y1a9{bottom:245.443134pt;}
.y2c8{bottom:248.318708pt;}
.ye5{bottom:249.298000pt;}
.y200{bottom:249.903200pt;}
.y196{bottom:249.905467pt;}
.y22c{bottom:249.906133pt;}
.y1cb{bottom:251.793067pt;}
.y12a{bottom:252.246133pt;}
.y2a1{bottom:252.929850pt;}
.y247{bottom:253.155467pt;}
.y149{bottom:253.834383pt;}
.yb8{bottom:256.328933pt;}
.y27f{bottom:257.616725pt;}
.y1a8{bottom:258.142708pt;}
.y15a{bottom:258.747333pt;}
.y2c7{bottom:260.942550pt;}
.y42{bottom:265.324574pt;}
.y2a0{bottom:265.628358pt;}
.ye4{bottom:266.683333pt;}
.ye2{bottom:266.684000pt;}
.y1ff{bottom:267.212533pt;}
.y1fd{bottom:267.214533pt;}
.y195{bottom:267.214800pt;}
.y22b{bottom:267.216800pt;}
.y75{bottom:267.217467pt;}
.y1ca{bottom:269.103733pt;}
.y129{bottom:269.631467pt;}
.y127{bottom:269.632267pt;}
.y1a7{bottom:270.766551pt;}
.ye3{bottom:272.579467pt;}
.y1fe{bottom:273.108533pt;}
.y2c6{bottom:273.641058pt;}
.yb7{bottom:273.714267pt;}
.y148{bottom:274.469858pt;}
.y27e{bottom:274.926375pt;}
.y128{bottom:275.527467pt;}
.y159{bottom:276.132667pt;}
.y246{bottom:278.478133pt;}
.y41{bottom:279.988924pt;}
.y29f{bottom:282.939075pt;}
.y1a6{bottom:283.465058pt;}
.ye1{bottom:283.994667pt;}
.y1fc{bottom:284.523867pt;}
.y194{bottom:284.525467pt;}
.y22a{bottom:284.526133pt;}
.y74{bottom:284.528133pt;}
.y1c9{bottom:286.413067pt;}
.y126{bottom:286.941600pt;}
.y147{bottom:287.169433pt;}
.y27d{bottom:287.625950pt;}
.y107{bottom:289.360533pt;}
.y2c5{bottom:290.951775pt;}
.yb6{bottom:291.024933pt;}
.y158{bottom:293.443333pt;}
.y24{bottom:294.200067pt;}
.y29e{bottom:295.638650pt;}
.y1a5{bottom:296.164633pt;}
.y146{bottom:299.867941pt;}
.y27c{bottom:300.324458pt;}
.ye0{bottom:301.305333pt;}
.y1fb{bottom:301.834533pt;}
.y193{bottom:301.836133pt;}
.y229{bottom:301.836800pt;}
.y73{bottom:301.837467pt;}
.y40{bottom:302.665973pt;}
.y2c4{bottom:303.650283pt;}
.y1c8{bottom:303.798400pt;}
.y1c6{bottom:303.800400pt;}
.y245{bottom:303.800800pt;}
.y29d{bottom:308.261425pt;}
.yb5{bottom:308.334267pt;}
.y1a4{bottom:308.788475pt;}
.y1c7{bottom:309.694400pt;}
.y157{bottom:310.752667pt;}
.y155{bottom:310.753733pt;}
.y145{bottom:312.491783pt;}
.y23{bottom:312.870733pt;}
.y156{bottom:316.648800pt;}
.y3f{bottom:317.331390pt;}
.y27b{bottom:317.635175pt;}
.ydf{bottom:318.690667pt;}
.y1fa{bottom:319.219867pt;}
.y192{bottom:319.221467pt;}
.y228{bottom:319.222133pt;}
.y72{bottom:319.222800pt;}
.y2c3{bottom:320.961000pt;}
.y1c5{bottom:321.109733pt;}
.y1a3{bottom:321.486983pt;}
.y144{bottom:325.191358pt;}
.y29c{bottom:325.647875pt;}
.yb4{bottom:325.719600pt;}
.y154{bottom:328.064400pt;}
.y244{bottom:329.123467pt;}
.y27a{bottom:330.257951pt;}
.y22{bottom:331.541400pt;}
.y3e{bottom:331.995740pt;}
.y2c2{bottom:333.659508pt;}
.y1a2{bottom:334.110825pt;}
.yde{bottom:336.000000pt;}
.ydc{bottom:336.000933pt;}
.y1f9{bottom:336.530533pt;}
.y191{bottom:336.530800pt;}
.y227{bottom:336.532800pt;}
.y71{bottom:336.533467pt;}
.y106{bottom:336.834533pt;}
.y143{bottom:337.814133pt;}
.y13b{bottom:337.966517pt;}
.y29b{bottom:338.270650pt;}
.y1c4{bottom:338.420400pt;}
.ydd{bottom:341.896000pt;}
.y279{bottom:342.957525pt;}
.y153{bottom:345.449733pt;}
.y3d{bottom:346.660090pt;}
.y1a1{bottom:346.809333pt;}
.yb3{bottom:348.396800pt;}
.y21{bottom:350.212067pt;}
.y2c1{bottom:350.970225pt;}
.ydb{bottom:353.311600pt;}
.y1f8{bottom:353.841200pt;}
.y190{bottom:353.841467pt;}
.y226{bottom:353.842133pt;}
.y70{bottom:353.844133pt;}
.y105{bottom:354.143867pt;}
.y243{bottom:354.446133pt;}
.y29a{bottom:355.657100pt;}
.y1c3{bottom:355.805733pt;}
.y13a{bottom:358.677725pt;}
.y278{bottom:360.268242pt;}
.y3c{bottom:361.324440pt;}
.y152{bottom:362.760400pt;}
.y2c0{bottom:363.594067pt;}
.y299{bottom:368.279875pt;}
.y20{bottom:368.882733pt;}
.yda{bottom:370.696933pt;}
.y1f7{bottom:371.226533pt;}
.y18f{bottom:371.226800pt;}
.y225{bottom:371.228800pt;}
.y6f{bottom:371.229467pt;}
.y139{bottom:371.301567pt;}
.y104{bottom:371.454533pt;}
.y277{bottom:372.966750pt;}
.y1c2{bottom:373.116400pt;}
.y3a{bottom:375.988790pt;}
.y2bf{bottom:376.292575pt;}
.y3b{bottom:376.366386pt;}
.y242{bottom:379.768800pt;}
.y151{bottom:380.069733pt;}
.y298{bottom:380.979450pt;}
.y138{bottom:384.001142pt;}
.yb2{bottom:384.757333pt;}
.y276{bottom:385.666325pt;}
.y1f{bottom:387.553400pt;}
.yd9{bottom:388.007600pt;}
.y1f6{bottom:388.535867pt;}
.y18e{bottom:388.537467pt;}
.y224{bottom:388.538133pt;}
.y6e{bottom:388.540133pt;}
.y103{bottom:388.839867pt;}
.y1c1{bottom:390.427067pt;}
.y2be{bottom:393.603292pt;}
.y137{bottom:396.699650pt;}
.y150{bottom:397.455067pt;}
.y14e{bottom:397.456000pt;}
.y275{bottom:398.290167pt;}
.y39{bottom:398.665840pt;}
.yb1{bottom:402.068000pt;}
.y14f{bottom:403.351067pt;}
.y241{bottom:405.166133pt;}
.yd8{bottom:405.316933pt;}
.y1f5{bottom:405.846533pt;}
.y18d{bottom:405.846800pt;}
.y223{bottom:405.848800pt;}
.y6d{bottom:405.849467pt;}
.y102{bottom:406.150533pt;}
.y1e{bottom:406.224067pt;}
.y2bd{bottom:406.301800pt;}
.y1c0{bottom:407.812400pt;}
.y136{bottom:409.323492pt;}
.y297{bottom:410.988675pt;}
.y14d{bottom:414.765333pt;}
.y14b{bottom:414.766133pt;}
.y274{bottom:415.599817pt;}
.y2bc{bottom:418.925642pt;}
.yb0{bottom:419.377333pt;}
.y14c{bottom:420.661333pt;}
.y38{bottom:421.342890pt;}
.y135{bottom:422.022000pt;}
.yd7{bottom:422.702267pt;}
.y1f4{bottom:423.231867pt;}
.y18c{bottom:423.233467pt;}
.y222{bottom:423.234133pt;}
.y6c{bottom:423.234800pt;}
.y101{bottom:423.459867pt;}
.y1d{bottom:424.820000pt;}
.y1bf{bottom:425.121733pt;}
.y273{bottom:428.299392pt;}
.y240{bottom:430.488800pt;}
.y14a{bottom:432.075467pt;}
.y2bb{bottom:436.311025pt;}
.yaf{bottom:436.688000pt;}
.y1f3{bottom:440.542533pt;}
.y18b{bottom:440.542800pt;}
.y221{bottom:440.544800pt;}
.y6b{bottom:440.545467pt;}
.y100{bottom:440.846533pt;}
.y272{bottom:440.997900pt;}
.y1be{bottom:442.432400pt;}
.y1c{bottom:443.490667pt;}
.y37{bottom:444.019940pt;}
.yd6{bottom:445.305000pt;}
.y2ba{bottom:448.934867pt;}
.y271{bottom:453.621742pt;}
.yae{bottom:454.073333pt;}
.y23f{bottom:455.811467pt;}
.y1f2{bottom:457.851867pt;}
.y1f0{bottom:457.852400pt;}
.y18a{bottom:457.853467pt;}
.y220{bottom:457.854133pt;}
.y6a{bottom:457.856133pt;}
.yff{bottom:458.155867pt;}
.y296{bottom:458.308617pt;}
.y1bd{bottom:459.743067pt;}
.y169{bottom:460.574441pt;}
.y2b9{bottom:461.634442pt;}
.y1b{bottom:462.161333pt;}
.y1f1{bottom:463.823600pt;}
.y36{bottom:466.696990pt;}
.yd5{bottom:469.341600pt;}
.y270{bottom:470.931392pt;}
.yad{bottom:471.384000pt;}
.y189{bottom:475.238800pt;}
.y1ef{bottom:475.239067pt;}
.y21f{bottom:475.240800pt;}
.y69{bottom:475.241467pt;}
.yfe{bottom:475.466533pt;}
.y1bc{bottom:477.128400pt;}
.y2b8{bottom:478.944092pt;}
.y1a{bottom:480.832000pt;}
.y23e{bottom:481.134133pt;}
.y168{bottom:481.209917pt;}
.y35{bottom:481.361340pt;}
.y26f{bottom:483.630967pt;}
.y295{bottom:488.317841pt;}
.yac{bottom:488.693333pt;}
.y2b7{bottom:491.643666pt;}
.y1ee{bottom:492.548400pt;}
.y188{bottom:492.549467pt;}
.y21e{bottom:492.550133pt;}
.y68{bottom:492.550800pt;}
.yfd{bottom:492.775867pt;}
.y167{bottom:493.909491pt;}
.y1bb{bottom:494.437733pt;}
.y26e{bottom:496.330541pt;}
.y19{bottom:499.502667pt;}
.y294{bottom:500.941684pt;}
.y34{bottom:504.038390pt;}
.yab{bottom:506.078667pt;}
.ya9{bottom:506.079600pt;}
.y23d{bottom:506.456800pt;}
.y166{bottom:506.532267pt;}
.y164{bottom:506.532959pt;}
.yd4{bottom:508.197200pt;}
.y2b6{bottom:508.953317pt;}
.y187{bottom:509.858800pt;}
.y1ed{bottom:509.859067pt;}
.y21d{bottom:509.860800pt;}
.y67{bottom:509.861467pt;}
.yfc{bottom:510.162533pt;}
.y165{bottom:511.294400pt;}
.yaa{bottom:511.974800pt;}
.y26d{bottom:513.640192pt;}
.y18{bottom:518.173333pt;}
.y33{bottom:518.702740pt;}
.y163{bottom:519.231467pt;}
.y161{bottom:519.231917pt;}
.y2b5{bottom:521.652891pt;}
.y1e0{bottom:522.936166pt;}
.ya8{bottom:523.390267pt;}
.y162{bottom:523.993600pt;}
.yd3{bottom:525.506533pt;}
.y26c{bottom:526.264034pt;}
.y1ec{bottom:527.168400pt;}
.y186{bottom:527.169467pt;}
.y21c{bottom:527.171467pt;}
.y66{bottom:527.172133pt;}
.yfb{bottom:527.471867pt;}
.y293{bottom:530.950908pt;}
.y23c{bottom:531.779467pt;}
.y160{bottom:531.931491pt;}
.y1eb{bottom:533.140133pt;}
.y32{bottom:533.368156pt;}
.y17{bottom:536.844000pt;}
.y2b4{bottom:538.962542pt;}
.ya7{bottom:540.699600pt;}
.yd2{bottom:542.817200pt;}
.y1df{bottom:543.572708pt;}
.y26b{bottom:543.649416pt;}
.y15f{bottom:544.554267pt;}
.y185{bottom:544.554800pt;}
.y1ea{bottom:544.556133pt;}
.y21b{bottom:544.556800pt;}
.y65{bottom:544.557467pt;}
.yfa{bottom:544.782533pt;}
.y31{bottom:548.032506pt;}
.y2b3{bottom:551.662116pt;}
.y1de{bottom:556.271216pt;}
.y26a{bottom:556.273259pt;}
.y23b{bottom:557.102267pt;}
.ya6{bottom:558.084933pt;}
.ya4{bottom:558.085467pt;}
.yd1{bottom:560.202533pt;}
.y292{bottom:560.960133pt;}
.y184{bottom:561.865467pt;}
.y21a{bottom:561.866133pt;}
.y64{bottom:561.868133pt;}
.yf9{bottom:562.167867pt;}
.y30{bottom:562.696856pt;}
.ya5{bottom:563.981067pt;}
.y2b1{bottom:564.285958pt;}
.y2b2{bottom:564.663554pt;}
.y16{bottom:566.173200pt;}
.y1dd{bottom:568.895058pt;}
.y269{bottom:568.972833pt;}
.y291{bottom:573.658641pt;}
.ya3{bottom:575.396133pt;}
.y2e{bottom:577.361206pt;}
.yd0{bottom:577.513200pt;}
.y2f{bottom:577.663069pt;}
.y183{bottom:579.174800pt;}
.y1e9{bottom:579.176133pt;}
.y219{bottom:579.176800pt;}
.y181{bottom:579.177333pt;}
.y63{bottom:579.177467pt;}
.yf8{bottom:579.478533pt;}
.y1dc{bottom:581.594633pt;}
.y2b0{bottom:581.595609pt;}
.y182{bottom:585.146400pt;}
.y268{bottom:586.282483pt;}
.y290{bottom:586.509681pt;}
.ya2{bottom:592.705467pt;}
.ya0{bottom:592.706400pt;}
.y23a{bottom:592.933600pt;}
.y1db{bottom:594.218475pt;}
.y2af{bottom:594.295183pt;}
.ycf{bottom:594.822533pt;}
.y1e8{bottom:596.561467pt;}
.y218{bottom:596.562133pt;}
.y180{bottom:596.562667pt;}
.y62{bottom:596.562800pt;}
.yf7{bottom:596.787867pt;}
.ya1{bottom:598.677067pt;}
.y267{bottom:598.982058pt;}
.y2d{bottom:599.206267pt;}
.y28f{bottom:603.592134pt;}
.y1da{bottom:606.916983pt;}
.y9f{bottom:610.015733pt;}
.y9d{bottom:610.016667pt;}
.y239{bottom:610.242933pt;}
.y266{bottom:611.604834pt;}
.yce{bottom:612.207867pt;}
.y1e7{bottom:613.872133pt;}
.y217{bottom:613.872800pt;}
.y17f{bottom:613.873333pt;}
.y61{bottom:613.873467pt;}
.yf6{bottom:614.174533pt;}
.y9e{bottom:615.987333pt;}
.y28e{bottom:616.291708pt;}
.y1d9{bottom:619.540825pt;}
.y15{bottom:622.186634pt;}
.y265{bottom:624.304408pt;}
.y9c{bottom:627.402000pt;}
.y238{bottom:627.628267pt;}
.y28d{bottom:628.991283pt;}
.y1e6{bottom:631.181467pt;}
.y216{bottom:631.182133pt;}
.y17e{bottom:631.182667pt;}
.y60{bottom:631.184133pt;}
.yf5{bottom:631.483867pt;}
.y1d8{bottom:632.239333pt;}
.ycd{bottom:634.809333pt;}
.y264{bottom:641.614059pt;}
.y9b{bottom:644.712667pt;}
.y28c{bottom:646.300933pt;}
.y1e5{bottom:648.566800pt;}
.y1e3{bottom:648.567733pt;}
.y17d{bottom:648.568000pt;}
.y215{bottom:648.568800pt;}
.y5f{bottom:648.569467pt;}
.yf4{bottom:648.794533pt;}
.y14{bottom:648.870033pt;}
.y237{bottom:650.229867pt;}
.y263{bottom:654.313633pt;}
.y1e4{bottom:654.462933pt;}
.y28b{bottom:658.924775pt;}
.y9a{bottom:662.023333pt;}
.y13{bottom:662.174400pt;}
.y1e2{bottom:665.877067pt;}
.y214{bottom:665.878133pt;}
.y17c{bottom:665.878667pt;}
.y5e{bottom:665.880133pt;}
.yf3{bottom:666.103867pt;}
.yf1{bottom:666.105333pt;}
.y262{bottom:666.937475pt;}
.y28a{bottom:671.624350pt;}
.y1e1{bottom:671.773200pt;}
.yf2{bottom:672.075467pt;}
.ycc{bottom:673.664533pt;}
.y12{bottom:675.553433pt;}
.y99{bottom:679.408667pt;}
.y213{bottom:683.188800pt;}
.y17b{bottom:683.189333pt;}
.y5d{bottom:683.189467pt;}
.yf0{bottom:683.490667pt;}
.y261{bottom:684.322858pt;}
.yf{bottom:688.857800pt;}
.y11{bottom:689.083931pt;}
.y10{bottom:689.159663pt;}
.ycb{bottom:691.049867pt;}
.y236{bottom:694.073733pt;}
.y97{bottom:696.718000pt;}
.y260{bottom:696.946700pt;}
.y17a{bottom:700.498667pt;}
.y212{bottom:700.499467pt;}
.y5c{bottom:700.500133pt;}
.yef{bottom:700.800000pt;}
.y289{bottom:701.633575pt;}
.ye{bottom:702.161101pt;}
.y98{bottom:702.614133pt;}
.yca{bottom:708.360533pt;}
.y235{bottom:711.383067pt;}
.y2c{bottom:712.970000pt;}
.y25f{bottom:714.332083pt;}
.yd{bottom:715.540133pt;}
.y211{bottom:717.884800pt;}
.y179{bottom:717.885333pt;}
.y5b{bottom:717.885467pt;}
.y96{bottom:719.395200pt;}
.yc9{bottom:725.671200pt;}
.y25e{bottom:726.955925pt;}
.y234{bottom:728.769467pt;}
.y2ae{bottom:731.642800pt;}
.y210{bottom:735.194133pt;}
.y178{bottom:735.194667pt;}
.y5a{bottom:735.196133pt;}
.yb{bottom:739.502267pt;}
.y9{bottom:739.502800pt;}
.yc{bottom:739.879067pt;}
.yc8{bottom:743.056533pt;}
.y125{bottom:743.509367pt;}
.y25d{bottom:744.265575pt;}
.ya{bottom:744.869200pt;}
.y233{bottom:746.080133pt;}
.y20f{bottom:752.504800pt;}
.y177{bottom:752.505333pt;}
.y59{bottom:752.505467pt;}
.y94{bottom:753.562133pt;}
.y6{bottom:754.166800pt;}
.y7{bottom:754.543600pt;}
.y95{bottom:755.754267pt;}
.y93{bottom:755.755200pt;}
.y25c{bottom:756.965150pt;}
.y8{bottom:759.533733pt;}
.yc7{bottom:760.367200pt;}
.y2ad{bottom:761.652025pt;}
.y232{bottom:763.389467pt;}
.y124{bottom:767.546400pt;}
.y20e{bottom:769.890133pt;}
.y176{bottom:769.890667pt;}
.y58{bottom:769.890800pt;}
.y123{bottom:772.233067pt;}
.y92{bottom:773.065867pt;}
.y25b{bottom:774.274800pt;}
.y88{bottom:775.630371pt;}
.yc6{bottom:777.676533pt;}
.y231{bottom:780.700133pt;}
.y122{bottom:783.496000pt;}
.y259{bottom:786.974375pt;}
.y20d{bottom:787.200800pt;}
.y175{bottom:787.201333pt;}
.y57{bottom:787.201467pt;}
.y25a{bottom:787.277304pt;}
.y5{bottom:787.502700pt;}
.y121{bottom:788.258267pt;}
.y87{bottom:790.294721pt;}
.y91{bottom:790.451200pt;}
.yc5{bottom:794.987200pt;}
.y230{bottom:798.085467pt;}
.y120{bottom:799.521200pt;}
.y11f{bottom:804.283879pt;}
.y258{bottom:804.285092pt;}
.y20c{bottom:804.510133pt;}
.y174{bottom:804.510667pt;}
.y56{bottom:804.512133pt;}
.y86{bottom:804.960138pt;}
.y8f{bottom:807.760533pt;}
.y1b6{bottom:808.819634pt;}
.y20b{bottom:810.481867pt;}
.yc4{bottom:812.372533pt;}
.y90{bottom:813.656667pt;}
.y22f{bottom:815.396133pt;}
.y257{bottom:816.983600pt;}
.y85{bottom:819.624488pt;}
.y4{bottom:820.838867pt;}
.y173{bottom:821.896000pt;}
.y171{bottom:821.896933pt;}
.y55{bottom:821.897467pt;}
.y11d{bottom:827.187750pt;}
.y172{bottom:827.792000pt;}
.y256{bottom:829.607442pt;}
.yc3{bottom:829.683200pt;}
.y8e{bottom:830.437733pt;}
.y11e{bottom:831.949600pt;}
.y22e{bottom:832.705467pt;}
.y1b5{bottom:832.856667pt;}
.y84{bottom:834.288838pt;}
.y288{bottom:834.294317pt;}
.y1b4{bottom:837.618800pt;}
.y170{bottom:839.206267pt;}
.y16e{bottom:839.207200pt;}
.y54{bottom:839.208133pt;}
.y2ac{bottom:842.307016pt;}
.y11c{bottom:843.817942pt;}
.y16f{bottom:845.102267pt;}
.yc2{bottom:846.992533pt;}
.y255{bottom:846.992825pt;}
.y1b3{bottom:848.881867pt;}
.y83{bottom:848.953188pt;}
.y1b2{bottom:853.568400pt;}
.y3{bottom:854.175033pt;}
.y22d{bottom:855.382667pt;}
.y53{bottom:856.517467pt;}
.y16d{bottom:856.517867pt;}
.y254{bottom:859.616667pt;}
.y11b{bottom:860.522800pt;}
.y119{bottom:860.523541pt;}
.y82{bottom:863.617538pt;}
.yc1{bottom:864.377867pt;}
.y11a{bottom:865.284933pt;}
.y8d{bottom:866.797733pt;}
.y2ab{bottom:872.316241pt;}
.y1b1{bottom:873.826667pt;}
.y1af{bottom:873.827689pt;}
.y52{bottom:873.902800pt;}
.y16c{bottom:873.903200pt;}
.y253{bottom:876.926317pt;}
.y118{bottom:877.152667pt;}
.y116{bottom:877.153076pt;}
.y1b0{bottom:878.588933pt;}
.y117{bottom:881.914933pt;}
.y8c{bottom:884.108400pt;}
.y81{bottom:886.294588pt;}
.yc0{bottom:887.055067pt;}
.y2{bottom:887.508533pt;}
.y252{bottom:889.625892pt;}
.y1ae{bottom:890.532547pt;}
.y16b{bottom:891.212533pt;}
.y51{bottom:891.213467pt;}
.y16a{bottom:897.108533pt;}
.y114{bottom:897.184825pt;}
.y111{bottom:897.185264pt;}
.y80{bottom:900.958938pt;}
.y8b{bottom:901.417733pt;}
.y251{bottom:902.325466pt;}
.y1ad{bottom:907.843264pt;}
.y50{bottom:908.524133pt;}
.y113{bottom:909.883333pt;}
.y110{bottom:909.883772pt;}
.y112{bottom:914.570000pt;}
.y7f{bottom:915.623288pt;}
.y8a{bottom:918.803067pt;}
.y250{bottom:919.635117pt;}
.y1{bottom:920.844000pt;}
.y115{bottom:922.506109pt;}
.y10f{bottom:922.507614pt;}
.y1ac{bottom:925.152914pt;}
.y4f{bottom:925.833467pt;}
.y7e{bottom:930.288705pt;}
.y24f{bottom:932.258959pt;}
.y89{bottom:941.404667pt;}
.y4e{bottom:943.218800pt;}
.y7d{bottom:944.953055pt;}
.y10e{bottom:944.957467pt;}
.y7c{bottom:994.393600pt;}
.h14{height:22.041000pt;}
.h12{height:22.069440pt;}
.h4{height:24.828689pt;}
.hf{height:25.525953pt;}
.h13{height:30.416286pt;}
.hb{height:31.082945pt;}
.h10{height:32.600695pt;}
.h1{height:33.066253pt;}
.h6{height:33.108919pt;}
.h5{height:34.148438pt;}
.hd{height:34.772899pt;}
.hc{height:36.052883pt;}
.h3{height:37.248000pt;}
.h8{height:39.266667pt;}
.ha{height:48.906667pt;}
.h15{height:49.009067pt;}
.h11{height:49.013333pt;}
.he{height:49.599587pt;}
.h9{height:49.663586pt;}
.h7{height:67.924484pt;}
.h2{height:84.907091pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:48.000000pt;}
.x3c{left:52.685808pt;}
.x55{left:54.878667pt;}
.x3d{left:57.977475pt;}
.x18{left:63.496000pt;}
.x4e{left:70.982364pt;}
.x52{left:72.947700pt;}
.x17{left:74.683333pt;}
.x53{left:75.820197pt;}
.x4f{left:93.883333pt;}
.x77{left:96.000000pt;}
.x19{left:104.692285pt;}
.x73{left:107.034995pt;}
.x72{left:113.007187pt;}
.x3e{left:132.131215pt;}
.x3f{left:141.429232pt;}
.x1a{left:143.016073pt;}
.x40{left:150.650450pt;}
.x1b{left:155.639915pt;}
.x56{left:180.056667pt;}
.x57{left:186.859733pt;}
.x71{left:200.842889pt;}
.x41{left:228.584409pt;}
.x58{left:229.870800pt;}
.x5d{left:234.557467pt;}
.x59{left:236.749600pt;}
.x43{left:252.319579pt;}
.x42{left:254.814481pt;}
.x1{left:266.683333pt;}
.x8c{left:273.108533pt;}
.x78{left:279.458267pt;}
.x1c{left:282.633067pt;}
.x79{left:287.168400pt;}
.x2d{left:288.377867pt;}
.x60{left:292.762133pt;}
.x2e{left:296.088133pt;}
.x7b{left:299.867600pt;}
.x50{left:310.903867pt;}
.x82{left:314.985733pt;}
.x8e{left:318.915221pt;}
.x8d{left:320.729599pt;}
.x74{left:321.940133pt;}
.x14{left:328.061766pt;}
.x2{left:336.301333pt;}
.x3{left:357.240933pt;}
.x44{left:362.152873pt;}
.xb{left:363.439333pt;}
.xc{left:368.428267pt;}
.x4{left:369.713333pt;}
.x2f{left:372.358933pt;}
.x1e{left:373.644000pt;}
.x3a{left:376.894400pt;}
.x61{left:380.825067pt;}
.x5a{left:381.807867pt;}
.xd{left:383.848267pt;}
.x1f{left:386.570000pt;}
.x62{left:387.552667pt;}
.x5b{left:389.593600pt;}
.x46{left:391.102911pt;}
.x7a{left:392.012533pt;}
.x51{left:394.204667pt;}
.x45{left:395.789786pt;}
.x65{left:406.677067pt;}
.x66{left:413.404667pt;}
.x3b{left:431.168400pt;}
.x20{left:432.151067pt;}
.x15{left:433.812978pt;}
.x31{left:438.878667pt;}
.x1d{left:439.861333pt;}
.x7c{left:444.850267pt;}
.x32{left:446.588933pt;}
.x30{left:449.234533pt;}
.x7d{left:452.560533pt;}
.x63{left:453.770000pt;}
.xe{left:456.944800pt;}
.x64{left:458.154267pt;}
.x67{left:461.026667pt;}
.x28{left:464.125867pt;}
.x68{left:467.754267pt;}
.xf{left:469.417200pt;}
.x5{left:472.365333pt;}
.x21{left:479.622000pt;}
.x33{left:481.965333pt;}
.x6e{left:483.401467pt;}
.x6{left:484.837733pt;}
.x6f{left:488.466133pt;}
.x34{left:489.675467pt;}
.x47{left:494.434953pt;}
.x69{left:500.182667pt;}
.x48{left:503.581505pt;}
.x6a{left:505.096000pt;}
.x8a{left:509.480267pt;}
.x8b{left:517.190533pt;}
.x29{left:518.400000pt;}
.x22{left:521.574800pt;}
.x2a{left:523.162133pt;}
.x23{left:526.336933pt;}
.x4b{left:536.769608pt;}
.x35{left:538.129067pt;}
.x10{left:540.623600pt;}
.x11{left:545.612533pt;}
.x7{left:555.288133pt;}
.x24{left:563.527467pt;}
.x8{left:567.760533pt;}
.x25{left:571.237733pt;}
.x49{left:583.936933pt;}
.x83{left:588.925867pt;}
.x4a{left:590.740133pt;}
.x84{left:596.636133pt;}
.x75{left:602.910133pt;}
.x6c{left:605.329067pt;}
.x2b{left:606.689733pt;}
.x2c{left:611.527467pt;}
.x6d{left:616.818800pt;}
.x36{left:619.464533pt;}
.x4c{left:622.714134pt;}
.x26{left:631.936933pt;}
.x27{left:639.647200pt;}
.x5c{left:649.851867pt;}
.x85{left:653.177867pt;}
.x4d{left:656.276381pt;}
.x38{left:657.184133pt;}
.x12{left:658.771600pt;}
.x39{left:662.022000pt;}
.x9{left:670.261333pt;}
.x13{left:671.319600pt;}
.x80{left:674.192000pt;}
.xa{left:675.250267pt;}
.x81{left:681.902267pt;}
.x76{left:684.018800pt;}
.x86{left:695.735333pt;}
.x87{left:704.428267pt;}
.x54{left:715.086533pt;}
.x7e{left:716.447200pt;}
.x7f{left:724.157467pt;}
.x6b{left:727.407867pt;}
.x88{left:729.826667pt;}
.x5e{left:736.705467pt;}
.x89{left:738.519600pt;}
.x5f{left:741.392000pt;}
.x37{left:753.410933pt;}
.x70{left:758.173200pt;}
}




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