
    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_258b846dea629121faab7186.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_c8a3d72438130ea4c2e6fd34.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.465000;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_f887aa8459a944b833377bb2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_b3739d136a3021677aae8506.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.431000;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_c083535375b80773db0e009e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.308000;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_2f0984a4c17dd8266ac5a68a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_b7d245fb38901de880dfe038.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_3506e9f445a34fb22ac4d718.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.693000;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_02d7f035fe013ce9aacf5084.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_b7f3116bdd2d784f5336837f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_286874baccef2e3bdb1f69a6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.482000;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_71d6e5e250ebc6467140cce8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692383;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_e0852367e25e9583fbb6fcf4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_772e94d661a2016d97e57434.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.106000;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_23de4adaa5f6b753d3fc0313.woff2')format("woff");}.fff{font-family:fff;line-height:0.967773;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;}
.ff10{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fe8aa7dbec723573c9bcc859.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.708008;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:ff12;src:url('chunks/assets/font_ab55713606560caa0da3b7da.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.967773;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff14;src:url('chunks/assets/font_fe8aa7dbec723573c9bcc859.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.708008;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:ff15;src:url('chunks/assets/font_ab55713606560caa0da3b7da.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.967773;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;}
.ff16{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff17;src:url('chunks/assets/font_fe8aa7dbec723573c9bcc859.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.708008;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:ff18;src:url('chunks/assets/font_976832754aa882ca638d9ca3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.715000;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:ff19;src:url('chunks/assets/font_0fb15bfa9d9e1f11a53a09b2.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.918000;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:ff1a;src:url('chunks/assets/font_d9ec0dc782823be323d3e30b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.854000;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;}
.m4{transform:matrix(0.000000,-0.248280,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248280,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248280,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.248281,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248281,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248281,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.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);}
.m5{transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-21.696000px;}
.v4{vertical-align:-16.878000px;}
.v5{vertical-align:-9.813230px;}
.va{vertical-align:-8.238000px;}
.v9{vertical-align:-6.642000px;}
.v7{vertical-align:-1.612850px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.777684px;}
.v2{vertical-align:21.690000px;}
.v1{vertical-align:30.372000px;}
.v6{vertical-align:52.484105px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000682px;}
.lsf{letter-spacing:0.002163px;}
.ls5{letter-spacing:1.733492px;}
.ls6{letter-spacing:1.793268px;}
.lse{letter-spacing:2.988532px;}
.lsd{letter-spacing:2.989409px;}
.ls13{letter-spacing:2.994482px;}
.ls11{letter-spacing:3.395263px;}
.ls1{letter-spacing:12.949409px;}
.ls10{letter-spacing:19.926532px;}
.ls14{letter-spacing:19.930441px;}
.ls4{letter-spacing:20.921460px;}
.ls0{letter-spacing:22.915409px;}
.ls2{letter-spacing:25.400915px;}
.ls7{letter-spacing:134.419987px;}
.ls9{letter-spacing:409.891178px;}
.ls8{letter-spacing:522.875107px;}
.lsb{letter-spacing:953.748111px;}
.lsc{letter-spacing:959.339982px;}
.lsa{letter-spacing:978.886912px;}
.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;}
}
.wsc2{word-spacing:-54.652626px;}
.wsfa{word-spacing:-30.551309px;}
.ws145{word-spacing:-29.887800px;}
.ws14a{word-spacing:-26.234381px;}
.ws61{word-spacing:-16.557841px;}
.wsef{word-spacing:-16.438290px;}
.wsee{word-spacing:-16.378514px;}
.ws1b{word-spacing:-16.318739px;}
.ws3a{word-spacing:-16.199188px;}
.ws5d{word-spacing:-16.079636px;}
.wsc6{word-spacing:-16.019861px;}
.ws86{word-spacing:-15.960085px;}
.wse3{word-spacing:-15.840534px;}
.ws28{word-spacing:-15.720983px;}
.ws75{word-spacing:-15.601432px;}
.ws113{word-spacing:-15.541656px;}
.ws47{word-spacing:-15.481880px;}
.wsbb{word-spacing:-15.362329px;}
.ws42{word-spacing:-15.302554px;}
.ws63{word-spacing:-15.123227px;}
.ws3d{word-spacing:-14.943900px;}
.wscf{word-spacing:-14.884124px;}
.ws40{word-spacing:-14.824349px;}
.ws84{word-spacing:-14.764573px;}
.ws6c{word-spacing:-14.704798px;}
.wsde{word-spacing:-14.471673px;}
.ws98{word-spacing:-14.346144px;}
.wsca{word-spacing:-14.107042px;}
.wse9{word-spacing:-14.047266px;}
.wsad{word-spacing:-13.987490px;}
.ws13f{word-spacing:-13.927715px;}
.ws154{word-spacing:-13.882320px;}
.ws38{word-spacing:-13.867939px;}
.ws27{word-spacing:-13.808164px;}
.wse1{word-spacing:-13.748388px;}
.ws146{word-spacing:-13.738858px;}
.ws8d{word-spacing:-13.688612px;}
.ws11d{word-spacing:-13.628837px;}
.ws165{word-spacing:-13.595397px;}
.wsdd{word-spacing:-13.569061px;}
.ws144{word-spacing:-13.509286px;}
.ws9d{word-spacing:-13.389734px;}
.ws138{word-spacing:-13.356294px;}
.ws1c{word-spacing:-13.329959px;}
.wsbe{word-spacing:-13.270183px;}
.ws60{word-spacing:-13.210408px;}
.wsc9{word-spacing:-13.150632px;}
.wsaa{word-spacing:-13.090856px;}
.ws124{word-spacing:-12.971305px;}
.ws5a{word-spacing:-12.911530px;}
.ws31{word-spacing:-12.851754px;}
.ws11a{word-spacing:-12.830267px;}
.wsd8{word-spacing:-12.791978px;}
.wscd{word-spacing:-12.732203px;}
.ws140{word-spacing:-12.672427px;}
.wse{word-spacing:-12.612652px;}
.ws43{word-spacing:-12.552876px;}
.wsff{word-spacing:-12.493100px;}
.ws157{word-spacing:-12.447702px;}
.ws1a{word-spacing:-12.433325px;}
.ws41{word-spacing:-12.373549px;}
.wsb3{word-spacing:-12.313774px;}
.wsb8{word-spacing:-12.253998px;}
.ws1f{word-spacing:-12.194222px;}
.ws3f{word-spacing:-12.134447px;}
.wsbc{word-spacing:-12.074671px;}
.wsab{word-spacing:-12.014896px;}
.ws77{word-spacing:-11.835569px;}
.wsfe{word-spacing:-11.781771px;}
.ws100{word-spacing:-11.716018px;}
.ws102{word-spacing:-11.656242px;}
.ws62{word-spacing:-11.596466px;}
.ws21{word-spacing:-11.536691px;}
.ws78{word-spacing:-11.476915px;}
.wsb5{word-spacing:-11.417140px;}
.ws5f{word-spacing:-11.357364px;}
.ws56{word-spacing:-11.178037px;}
.ws156{word-spacing:-11.060905px;}
.ws10{word-spacing:-11.058486px;}
.ws10f{word-spacing:-10.998710px;}
.ws29{word-spacing:-10.917443px;}
.ws9f{word-spacing:-10.879159px;}
.ws10b{word-spacing:-10.819384px;}
.ws44{word-spacing:-10.759608px;}
.wsa6{word-spacing:-10.699832px;}
.wsf2{word-spacing:-10.646034px;}
.ws2a{word-spacing:-10.582699px;}
.wsbf{word-spacing:-10.580281px;}
.ws12{word-spacing:-10.460730px;}
.ws108{word-spacing:-10.400954px;}
.wsec{word-spacing:-10.281403px;}
.ws96{word-spacing:-10.247955px;}
.ws9b{word-spacing:-10.221628px;}
.ws5e{word-spacing:-10.102076px;}
.ws9e{word-spacing:-10.042301px;}
.ws13{word-spacing:-9.982525px;}
.ws53{word-spacing:-9.922750px;}
.ws2e{word-spacing:-9.913210px;}
.ws1d{word-spacing:-9.862974px;}
.ws173{word-spacing:-9.817569px;}
.ws85{word-spacing:-9.803198px;}
.ws2d{word-spacing:-9.769749px;}
.ws4c{word-spacing:-9.743423px;}
.ws52{word-spacing:-9.683647px;}
.ws57{word-spacing:-9.623872px;}
.ws15c{word-spacing:-9.578466px;}
.ws99{word-spacing:-9.564096px;}
.ws158{word-spacing:-9.530646px;}
.ws73{word-spacing:-9.504320px;}
.wsb9{word-spacing:-9.444545px;}
.wsae{word-spacing:-9.384769px;}
.wsa8{word-spacing:-9.324994px;}
.ws151{word-spacing:-9.291543px;}
.wsed{word-spacing:-9.265218px;}
.ws14{word-spacing:-9.211420px;}
.ws9c{word-spacing:-9.205442px;}
.ws5{word-spacing:-9.151644px;}
.wsd3{word-spacing:-9.145667px;}
.ws174{word-spacing:-9.114606px;}
.ws59{word-spacing:-8.906564px;}
.ws159{word-spacing:-8.875503px;}
.wseb{word-spacing:-8.846789px;}
.wsf0{word-spacing:-8.787013px;}
.wsf8{word-spacing:-8.727238px;}
.ws64{word-spacing:-8.667462px;}
.ws152{word-spacing:-8.636400px;}
.ws23{word-spacing:-8.607686px;}
.ws171{word-spacing:-8.574234px;}
.ws6f{word-spacing:-8.547911px;}
.ws97{word-spacing:-8.526413px;}
.ws7b{word-spacing:-8.488135px;}
.ws128{word-spacing:-8.481185px;}
.ws30{word-spacing:-8.478592px;}
.ws16d{word-spacing:-8.445118px;}
.ws14b{word-spacing:-8.430772px;}
.ws139{word-spacing:-8.382951px;}
.wsd2{word-spacing:-8.374562px;}
.wsa5{word-spacing:-8.368584px;}
.ws163{word-spacing:-8.287310px;}
.ws7d{word-spacing:-8.249033px;}
.ws177{word-spacing:-8.143848px;}
.wsda{word-spacing:-8.129482px;}
.wsf1{word-spacing:-8.009930px;}
.ws12f{word-spacing:-7.964790px;}
.wsa3{word-spacing:-7.890379px;}
.ws14e{word-spacing:-7.871271px;}
.ws14d{word-spacing:-7.856925px;}
.wsaf{word-spacing:-7.830604px;}
.ws7e{word-spacing:-7.770828px;}
.ws164{word-spacing:-7.727809px;}
.ws9a{word-spacing:-7.711052px;}
.wsb2{word-spacing:-7.651277px;}
.wsa9{word-spacing:-7.591501px;}
.ws178{word-spacing:-7.584347px;}
.ws90{word-spacing:-7.531726px;}
.ws115{word-spacing:-7.517883px;}
.wsa1{word-spacing:-7.471950px;}
.ws114{word-spacing:-7.412174px;}
.ws7a{word-spacing:-7.352399px;}
.ws8e{word-spacing:-7.292623px;}
.ws79{word-spacing:-7.232848px;}
.wse2{word-spacing:-7.173072px;}
.wsfc{word-spacing:-7.119274px;}
.ws82{word-spacing:-7.113296px;}
.ws167{word-spacing:-7.091795px;}
.ws122{word-spacing:-7.053521px;}
.ws179{word-spacing:-7.043974px;}
.ws48{word-spacing:-6.993745px;}
.ws13a{word-spacing:-6.900513px;}
.wsc5{word-spacing:-6.874194px;}
.ws172{word-spacing:-6.709230px;}
.wsa0{word-spacing:-6.635092px;}
.wscc{word-spacing:-6.575316px;}
.ws3e{word-spacing:-6.515540px;}
.ws104{word-spacing:-6.461742px;}
.wsc{word-spacing:-6.455765px;}
.ws88{word-spacing:-6.395989px;}
.ws26{word-spacing:-6.336214px;}
.wsa4{word-spacing:-6.276438px;}
.ws67{word-spacing:-6.216662px;}
.ws17a{word-spacing:-6.135383px;}
.ws51{word-spacing:-6.097111px;}
.ws170{word-spacing:-6.087562px;}
.wsa2{word-spacing:-5.977560px;}
.ws148{word-spacing:-5.944101px;}
.ws66{word-spacing:-5.917784px;}
.ws103{word-spacing:-5.858009px;}
.ws16f{word-spacing:-5.848459px;}
.ws5b{word-spacing:-5.798233px;}
.ws6d{word-spacing:-5.678682px;}
.ws149{word-spacing:-5.575882px;}
.ws182{word-spacing:-5.561536px;}
.ws74{word-spacing:-5.559131px;}
.wsd{word-spacing:-5.499355px;}
.ws105{word-spacing:-5.439580px;}
.wsf6{word-spacing:-5.379804px;}
.wse6{word-spacing:-5.320028px;}
.wscb{word-spacing:-5.260253px;}
.wsf7{word-spacing:-5.200477px;}
.wsf3{word-spacing:-5.140702px;}
.wse5{word-spacing:-4.847801px;}
.wsc7{word-spacing:-4.782048px;}
.wsdf{word-spacing:-4.722272px;}
.ws155{word-spacing:-4.700765px;}
.ws101{word-spacing:-4.662497px;}
.ws71{word-spacing:-4.602721px;}
.ws13b{word-spacing:-4.557303px;}
.ws7f{word-spacing:-4.542946px;}
.wsc8{word-spacing:-4.483170px;}
.ws9{word-spacing:-4.423394px;}
.ws36{word-spacing:-4.363619px;}
.ws4a{word-spacing:-4.303843px;}
.wsd5{word-spacing:-4.244068px;}
.ws17{word-spacing:-4.184292px;}
.ws39{word-spacing:-4.124516px;}
.ws3b{word-spacing:-4.064741px;}
.ws87{word-spacing:-3.945190px;}
.ws2f{word-spacing:-3.935635px;}
.ws11e{word-spacing:-3.885414px;}
.ws14f{word-spacing:-3.839994px;}
.ws161{word-spacing:-3.792174px;}
.ws49{word-spacing:-3.765863px;}
.ws15b{word-spacing:-3.744353px;}
.ws17c{word-spacing:-3.600891px;}
.ws72{word-spacing:-3.586536px;}
.ws20{word-spacing:-3.526760px;}
.ws162{word-spacing:-3.519596px;}
.wsce{word-spacing:-3.466985px;}
.ws8c{word-spacing:-3.407209px;}
.ws19{word-spacing:-3.347434px;}
.ws34{word-spacing:-3.287658px;}
.wsb7{word-spacing:-3.227882px;}
.ws141{word-spacing:-3.168107px;}
.ws4d{word-spacing:-3.108331px;}
.ws58{word-spacing:-3.048556px;}
.ws11{word-spacing:-2.988780px;}
.ws121{word-spacing:-2.929004px;}
.ws16a{word-spacing:-2.883582px;}
.ws45{word-spacing:-2.869229px;}
.ws15f{word-spacing:-2.835762px;}
.ws4b{word-spacing:-2.809453px;}
.ws37{word-spacing:-2.749678px;}
.wsd6{word-spacing:-2.689902px;}
.ws109{word-spacing:-2.570351px;}
.ws17e{word-spacing:-2.548838px;}
.ws65{word-spacing:-2.450800px;}
.wsa{word-spacing:-2.391024px;}
.ws176{word-spacing:-2.357556px;}
.wsc1{word-spacing:-2.271473px;}
.wsbd{word-spacing:-2.211697px;}
.wse0{word-spacing:-2.092146px;}
.wsfd{word-spacing:-2.032370px;}
.ws150{word-spacing:-1.974991px;}
.ws76{word-spacing:-1.912819px;}
.ws70{word-spacing:-1.853044px;}
.wsb{word-spacing:-1.793268px;}
.wsf5{word-spacing:-1.733492px;}
.ws8a{word-spacing:-1.613941px;}
.wsb4{word-spacing:-1.494390px;}
.ws8f{word-spacing:-1.434614px;}
.ws17b{word-spacing:-1.401144px;}
.wsa7{word-spacing:-1.374839px;}
.ws4f{word-spacing:-1.315063px;}
.wsac{word-spacing:-1.255288px;}
.ws25{word-spacing:-1.195512px;}
.ws107{word-spacing:-1.135736px;}
.ws2c{word-spacing:-1.114220px;}
.ws50{word-spacing:-1.075961px;}
.ws111{word-spacing:-0.956410px;}
.wsf4{word-spacing:-0.896634px;}
.wsb0{word-spacing:-0.836858px;}
.ws7c{word-spacing:-0.717307px;}
.ws10a{word-spacing:-0.597756px;}
.ws2b{word-spacing:-0.540373px;}
.ws11f{word-spacing:-0.478205px;}
.ws13e{word-spacing:-0.418429px;}
.ws11c{word-spacing:-0.358654px;}
.ws22{word-spacing:-0.298878px;}
.ws16{word-spacing:-0.239102px;}
.wsc0{word-spacing:-0.179327px;}
.wsf{word-spacing:-0.119551px;}
.ws13c{word-spacing:-0.047821px;}
.ws15{word-spacing:0.000000px;}
.ws12b{word-spacing:0.054799px;}
.ws5c{word-spacing:0.059776px;}
.ws6e{word-spacing:0.119551px;}
.ws14c{word-spacing:0.176936px;}
.ws8{word-spacing:0.179327px;}
.wsdc{word-spacing:0.298878px;}
.ws18{word-spacing:0.478205px;}
.ws123{word-spacing:0.537980px;}
.wsb6{word-spacing:0.657532px;}
.wsd4{word-spacing:0.717307px;}
.ws1e{word-spacing:0.836858px;}
.ws15e{word-spacing:0.927720px;}
.ws168{word-spacing:0.942066px;}
.ws15d{word-spacing:0.989886px;}
.ws55{word-spacing:1.075961px;}
.ws8b{word-spacing:1.135736px;}
.ws46{word-spacing:1.195512px;}
.ws16b{word-spacing:1.372451px;}
.wsd0{word-spacing:1.374839px;}
.ws69{word-spacing:1.494390px;}
.ws13d{word-spacing:1.554166px;}
.ws10c{word-spacing:1.613941px;}
.ws83{word-spacing:1.673717px;}
.wsc4{word-spacing:1.733492px;}
.ws11b{word-spacing:1.853044px;}
.ws3c{word-spacing:1.972595px;}
.ws17d{word-spacing:2.089760px;}
.ws10e{word-spacing:2.092146px;}
.wsb1{word-spacing:2.151922px;}
.ws153{word-spacing:2.328863px;}
.wsfb{word-spacing:2.331248px;}
.ws33{word-spacing:2.510575px;}
.ws147{word-spacing:2.663607px;}
.wsc3{word-spacing:2.689902px;}
.ws12c{word-spacing:2.929004px;}
.ws80{word-spacing:3.048556px;}
.ws175{word-spacing:3.093993px;}
.ws110{word-spacing:3.108331px;}
.ws4e{word-spacing:3.168107px;}
.wsd9{word-spacing:3.227882px;}
.wsd7{word-spacing:3.347434px;}
.ws119{word-spacing:3.428737px;}
.ws16e{word-spacing:3.476558px;}
.ws81{word-spacing:3.825638px;}
.ws118{word-spacing:3.906943px;}
.ws35{word-spacing:4.004965px;}
.ws160{word-spacing:4.098225px;}
.ws16c{word-spacing:4.146046px;}
.wsea{word-spacing:4.184292px;}
.ws15a{word-spacing:4.480790px;}
.wse8{word-spacing:4.662497px;}
.ws10d{word-spacing:4.722272px;}
.ws91{word-spacing:4.841824px;}
.ws89{word-spacing:4.961375px;}
.ws180{word-spacing:5.135932px;}
.ws24{word-spacing:5.140702px;}
.ws166{word-spacing:5.293740px;}
.ws17f{word-spacing:5.485023px;}
.wsba{word-spacing:5.499355px;}
.ws181{word-spacing:5.532843px;}
.ws169{word-spacing:5.628485px;}
.wsf9{word-spacing:5.798233px;}
.ws112{word-spacing:6.097111px;}
.wse7{word-spacing:6.216662px;}
.ws68{word-spacing:6.455765px;}
.ws120{word-spacing:6.515540px;}
.ws32{word-spacing:6.635092px;}
.ws106{word-spacing:6.694867px;}
.ws54{word-spacing:7.232848px;}
.wsdb{word-spacing:7.352399px;}
.wsd1{word-spacing:7.651277px;}
.ws143{word-spacing:7.830604px;}
.ws142{word-spacing:8.009930px;}
.wse4{word-spacing:8.189257px;}
.ws6a{word-spacing:9.862974px;}
.ws4{word-spacing:9.917055px;}
.ws3{word-spacing:9.919749px;}
.ws1{word-spacing:9.920935px;}
.ws6b{word-spacing:9.922750px;}
.ws6{word-spacing:12.914976px;}
.ws2{word-spacing:22.875123px;}
.ws0{word-spacing:31.298639px;}
.ws7{word-spacing:34.550297px;}
.ws131{word-spacing:48.503009px;}
.ws130{word-spacing:56.454321px;}
.ws134{word-spacing:114.763949px;}
.ws92{word-spacing:116.266550px;}
.ws117{word-spacing:123.057279px;}
.ws94{word-spacing:131.894587px;}
.ws136{word-spacing:132.733018px;}
.ws132{word-spacing:163.864429px;}
.ws93{word-spacing:230.721155px;}
.ws116{word-spacing:254.314762px;}
.ws133{word-spacing:269.208094px;}
.ws125{word-spacing:317.495776px;}
.ws137{word-spacing:346.834471px;}
.ws135{word-spacing:358.738979px;}
.ws129{word-spacing:361.086474px;}
.ws12d{word-spacing:364.697679px;}
.ws12a{word-spacing:381.616159px;}
.ws12e{word-spacing:388.771536px;}
.ws126{word-spacing:528.044416px;}
.ws127{word-spacing:528.095114px;}
.ws95{word-spacing:659.586180px;}
._3e{margin-left:-1469.963896px;}
._42{margin-left:-1221.721496px;}
._46{margin-left:-1206.308573px;}
._65{margin-left:-1023.215760px;}
._48{margin-left:-959.211308px;}
._41{margin-left:-851.565641px;}
._5e{margin-left:-745.224977px;}
._61{margin-left:-744.072582px;}
._50{margin-left:-740.794092px;}
._53{margin-left:-730.377856px;}
._4d{margin-left:-700.950652px;}
._5c{margin-left:-699.087597px;}
._3c{margin-left:-690.624211px;}
._57{margin-left:-649.805596px;}
._15{margin-left:-551.941583px;}
._5f{margin-left:-470.529949px;}
._51{margin-left:-461.870856px;}
._5d{margin-left:-441.395330px;}
._4e{margin-left:-437.025483px;}
._62{margin-left:-411.087073px;}
._54{margin-left:-403.526501px;}
._2{margin-left:-10.460775px;}
._9{margin-left:-7.268702px;}
._a{margin-left:-6.132965px;}
._17{margin-left:-5.080926px;}
._7{margin-left:-4.016898px;}
._1{margin-left:-2.594272px;}
._8{margin-left:-1.291142px;}
._5{width:1.231366px;}
._0{width:2.594272px;}
._18{width:5.571064px;}
._3a{width:12.780046px;}
._6f{width:14.549393px;}
._3{width:15.723007px;}
._16{width:16.820865px;}
._e{width:18.016377px;}
._f{width:19.295586px;}
._6{width:20.371547px;}
._11{width:21.399665px;}
._71{width:22.535462px;}
._4{width:23.575508px;}
._10{width:24.675390px;}
._3b{width:26.420815px;}
._c{width:28.058678px;}
._d{width:29.887800px;}
._b{width:31.764765px;}
._12{width:33.940608px;}
._13{width:35.769730px;}
._19{width:37.586920px;}
._5b{width:43.796566px;}
._6d{width:48.203165px;}
._70{width:50.594195px;}
._72{width:51.813602px;}
._6e{width:54.623066px;}
._73{width:57.599914px;}
._59{width:60.686806px;}
._58{width:61.875122px;}
._1e{width:63.603072px;}
._1a{width:65.825352px;}
._1b{width:67.606238px;}
._1d{width:73.652357px;}
._20{width:74.839614px;}
._21{width:83.108014px;}
._1f{width:84.973704px;}
._67{width:92.900085px;}
._1c{width:110.033314px;}
._68{width:113.103672px;}
._30{width:131.383315px;}
._49{width:135.276754px;}
._4a{width:136.824020px;}
._38{width:146.782518px;}
._31{width:164.747316px;}
._32{width:165.954988px;}
._45{width:175.802649px;}
._44{width:178.232432px;}
._66{width:179.480926px;}
._43{width:189.688566px;}
._5a{width:193.753362px;}
._24{width:195.261430px;}
._33{width:209.496699px;}
._2e{width:217.571443px;}
._2f{width:218.768475px;}
._25{width:231.599985px;}
._26{width:244.066187px;}
._27{width:250.636798px;}
._2b{width:263.147109px;}
._2c{width:264.334366px;}
._69{width:268.862190px;}
._2a{width:270.519117px;}
._34{width:281.305961px;}
._35{width:282.508313px;}
._6a{width:289.526619px;}
._23{width:298.171200px;}
._6c{width:308.349218px;}
._36{width:310.554826px;}
._64{width:313.618338px;}
._28{width:320.686688px;}
._29{width:321.916347px;}
._6b{width:324.880761px;}
._2d{width:328.375994px;}
._4b{width:342.914257px;}
._14{width:354.688476px;}
._37{width:424.018164px;}
._40{width:432.452594px;}
._39{width:433.473821px;}
._3f{width:466.858861px;}
._55{width:543.731139px;}
._22{width:551.693044px;}
._63{width:553.923389px;}
._56{width:647.331089px;}
._3d{width:839.777343px;}
._4c{width:938.420934px;}
._4f{width:991.769212px;}
._47{width:1029.692521px;}
._52{width:1209.737009px;}
._60{width:1232.416998px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,255,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(13,0,0);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:1.024422px;}
.fs8{font-size:1.045332px;}
.fsc{font-size:26.136898px;}
.fs11{font-size:26.398292px;}
.fs12{font-size:26.581120px;}
.fs9{font-size:26.670392px;}
.fsd{font-size:27.622720px;}
.fsf{font-size:27.648125px;}
.fs7{font-size:28.047826px;}
.fs13{font-size:28.140651px;}
.fs15{font-size:28.259505px;}
.fs14{font-size:28.335501px;}
.fs16{font-size:28.455191px;}
.fsa{font-size:28.521047px;}
.fs19{font-size:35.865600px;}
.fs4{font-size:37.748880px;}
.fs2{font-size:41.842800px;}
.fs6{font-size:42.402048px;}
.fs18{font-size:44.922672px;}
.fs3{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:70.338000px;}
.fs0{font-size:83.686200px;}
.fs10{font-size:112.686420px;}
.fsb{font-size:114.986520px;}
.fs17{font-size:115.028333px;}
.y0{bottom:0.000000px;}
.y22d{bottom:2.946673px;}
.y27d{bottom:3.005329px;}
.y1dd{bottom:3.006741px;}
.yc8{bottom:5.506987px;}
.y225{bottom:22.478252px;}
.y275{bottom:22.720657px;}
.y1d5{bottom:23.437284px;}
.yc6{bottom:32.638625px;}
.y21c{bottom:35.610701px;}
.y267{bottom:36.143661px;}
.y1cc{bottom:36.272236px;}
.y1cd{bottom:47.323748px;}
.y26a{bottom:47.446313px;}
.y21f{bottom:52.490615px;}
.y107{bottom:64.356544px;}
.y26f{bottom:67.757636px;}
.y1ff{bottom:73.182147px;}
.y24a{bottom:73.920652px;}
.y1c5{bottom:74.675905px;}
.y102{bottom:81.543547px;}
.y1cf{bottom:82.465719px;}
.y1e1{bottom:84.112500px;}
.y21d{bottom:85.168140px;}
.y269{bottom:88.069221px;}
.y1e0{bottom:100.551000px;}
.y270{bottom:108.380544px;}
.yee{bottom:112.915500px;}
.y34{bottom:112.917000px;}
.y1d0{bottom:117.607951px;}
.y220{bottom:117.845665px;}
.y33{bottom:127.711500px;}
.y52{bottom:127.926000px;}
.y26b{bottom:128.692391px;}
.yed{bottom:129.354000px;}
.y8c{bottom:129.355500px;}
.y1df{bottom:131.932500px;}
.y105{bottom:135.573500px;}
.y32{bottom:142.506000px;}
.ye6{bottom:143.689500px;}
.y51{bottom:144.364500px;}
.y156{bottom:145.179000px;}
.yec{bottom:145.792500px;}
.y8b{bottom:145.794000px;}
.ybf{bottom:147.586500px;}
.y103{bottom:148.159606px;}
.y271{bottom:149.003453px;}
.y226{bottom:150.398979px;}
.y221{bottom:150.523190px;}
.y1d1{bottom:152.750184px;}
.y276{bottom:153.469895px;}
.y1de{bottom:154.099500px;}
.y1d6{bottom:154.224363px;}
.y27e{bottom:156.712500px;}
.y31{bottom:157.300500px;}
.ye5{bottom:160.128000px;}
.y50{bottom:160.803000px;}
.y155{bottom:161.617500px;}
.y8a{bottom:162.231000px;}
.y11b{bottom:162.232500px;}
.ybe{bottom:164.025000px;}
.y26c{bottom:169.316344px;}
.y30{bottom:172.095000px;}
.y22e{bottom:176.107500px;}
.yca{bottom:176.513763px;}
.ye4{bottom:176.566500px;}
.y4f{bottom:177.241500px;}
.y154{bottom:178.056000px;}
.y89{bottom:178.669500px;}
.y170{bottom:178.671000px;}
.ybd{bottom:180.463500px;}
.y196{bottom:182.493000px;}
.y222{bottom:183.199691px;}
.y22f{bottom:185.106000px;}
.y2f{bottom:186.889500px;}
.y1d2{bottom:187.892416px;}
.y272{bottom:189.627406px;}
.y101{bottom:191.006708px;}
.ye3{bottom:193.005000px;}
.y4e{bottom:193.680000px;}
.y153{bottom:194.494500px;}
.y88{bottom:195.108000px;}
.y16f{bottom:195.109500px;}
.ybc{bottom:196.902000px;}
.y2e{bottom:201.684000px;}
.y195{bottom:204.075000px;}
.y1e2{bottom:204.501000px;}
.yc9{bottom:208.406848px;}
.ye2{bottom:209.443500px;}
.y26d{bottom:209.939252px;}
.y4d{bottom:210.118500px;}
.y152{bottom:210.933000px;}
.yeb{bottom:211.395000px;}
.y87{bottom:211.546500px;}
.ybb{bottom:213.340500px;}
.y223{bottom:215.877216px;}
.y2b5{bottom:216.478500px;}
.y16e{bottom:220.513500px;}
.y2d{bottom:220.698000px;}
.y1ce{bottom:223.034388px;}
.ye1{bottom:225.882000px;}
.y4c{bottom:226.557000px;}
.y151{bottom:227.371500px;}
.y86{bottom:227.985000px;}
.yba{bottom:229.779000px;}
.y273{bottom:230.250314px;}
.y2b4{bottom:231.273000px;}
.y16d{bottom:236.952000px;}
.y2c{bottom:241.210500px;}
.ye0{bottom:242.320500px;}
.yc5{bottom:242.616770px;}
.y4b{bottom:242.995500px;}
.y150{bottom:243.810000px;}
.yea{bottom:244.119000px;}
.y85{bottom:244.423500px;}
.y2b3{bottom:246.067500px;}
.yb9{bottom:246.217500px;}
.y104{bottom:246.235397px;}
.y21e{bottom:248.554485px;}
.y26e{bottom:250.562160px;}
.y229{bottom:252.027455px;}
.y16c{bottom:253.390500px;}
.y279{bottom:257.345633px;}
.y2b{bottom:257.649000px;}
.y1d3{bottom:258.176620px;}
.ydf{bottom:258.759000px;}
.y100{bottom:258.998584px;}
.y4a{bottom:259.434000px;}
.y14f{bottom:260.248500px;}
.y84{bottom:260.862000px;}
.y1d9{bottom:260.948422px;}
.yb8{bottom:262.656000px;}
.y228{bottom:263.086014px;}
.yc3{bottom:267.389473px;}
.yc7{bottom:267.389842px;}
.y278{bottom:268.649305px;}
.y16b{bottom:269.829000px;}
.y274{bottom:270.873222px;}
.y1d8{bottom:271.643684px;}
.y2a{bottom:274.087500px;}
.y227{bottom:274.145571px;}
.yde{bottom:275.197500px;}
.y2b2{bottom:275.656500px;}
.y49{bottom:275.872500px;}
.y11a{bottom:277.300500px;}
.yb7{bottom:279.094500px;}
.y277{bottom:279.952976px;}
.y224{bottom:281.232267px;}
.y1d7{bottom:282.338947px;}
.y106{bottom:285.135305px;}
.y14e{bottom:285.652500px;}
.y83{bottom:286.267500px;}
.y109{bottom:290.215500px;}
.y2b1{bottom:290.452500px;}
.y29{bottom:290.526000px;}
.y268{bottom:291.185069px;}
.ydd{bottom:291.636000px;}
.y48{bottom:292.311000px;}
.y1d4{bottom:293.318853px;}
.yc4{bottom:293.341828px;}
.y119{bottom:293.739000px;}
.yb6{bottom:295.533000px;}
.y22a{bottom:296.540896px;}
.y14d{bottom:302.091000px;}
.y82{bottom:302.706000px;}
.y27a{bottom:302.843186px;}
.y1da{bottom:304.728756px;}
.y2b0{bottom:305.247000px;}
.y108{bottom:306.654000px;}
.ydc{bottom:308.074500px;}
.y47{bottom:308.749500px;}
.y118{bottom:310.177500px;}
.yb5{bottom:311.971500px;}
.y22c{bottom:313.413126px;}
.y28{bottom:315.930000px;}
.y14c{bottom:318.529500px;}
.y81{bottom:319.144500px;}
.y27c{bottom:319.923859px;}
.y2af{bottom:320.041500px;}
.y1dc{bottom:323.730278px;}
.ye9{bottom:324.513000px;}
.y46{bottom:325.186500px;}
.y117{bottom:326.616000px;}
.yb4{bottom:328.410000px;}
.y27{bottom:332.368500px;}
.ydb{bottom:333.478500px;}
.y2ae{bottom:334.836000px;}
.y14b{bottom:334.968000px;}
.yff{bottom:335.047500px;}
.y215{bottom:335.070509px;}
.y80{bottom:335.583000px;}
.ye8{bottom:340.951500px;}
.y45{bottom:341.625000px;}
.y260{bottom:342.672896px;}
.y116{bottom:343.054500px;}
.yb3{bottom:344.848500px;}
.y1a8{bottom:347.429157px;}
.y211{bottom:347.499309px;}
.y26{bottom:348.807000px;}
.y2ad{bottom:349.630500px;}
.yda{bottom:349.917000px;}
.y14a{bottom:351.406500px;}
.y16a{bottom:352.021500px;}
.y25c{bottom:355.337093px;}
.ye7{bottom:357.390000px;}
.y44{bottom:358.063500px;}
.y115{bottom:359.493000px;}
.y1a3{bottom:360.048927px;}
.y7f{bottom:360.987000px;}
.yb2{bottom:361.287000px;}
.y2ac{bottom:364.425000px;}
.y25{bottom:365.245500px;}
.y212{bottom:365.424133px;}
.yd9{bottom:366.355500px;}
.y149{bottom:367.845000px;}
.y169{bottom:368.460000px;}
.y43{bottom:374.502000px;}
.y114{bottom:375.931500px;}
.y7e{bottom:377.425500px;}
.yb1{bottom:377.725500px;}
.y2ab{bottom:379.219500px;}
.y1a4{bottom:379.878875px;}
.y24{bottom:381.684000px;}
.y216{bottom:382.321974px;}
.yd8{bottom:382.794000px;}
.y148{bottom:384.283500px;}
.y168{bottom:384.898500px;}
.y25e{bottom:389.357685px;}
.y261{bottom:390.810435px;}
.y42{bottom:390.940500px;}
.y113{bottom:392.370000px;}
.y7d{bottom:393.864000px;}
.y2aa{bottom:394.014000px;}
.yb0{bottom:394.164000px;}
.y1a9{bottom:395.407282px;}
.y23{bottom:398.122500px;}
.yd7{bottom:399.232500px;}
.y147{bottom:400.722000px;}
.y167{bottom:401.337000px;}
.y214{bottom:401.521947px;}
.y1a6{bottom:402.278014px;}
.yc1{bottom:405.185468px;}
.y41{bottom:407.379000px;}
.y112{bottom:408.808500px;}
.y7c{bottom:410.302500px;}
.yaf{bottom:410.602500px;}
.y22{bottom:414.561000px;}
.yd6{bottom:415.671000px;}
.y146{bottom:417.160500px;}
.y166{bottom:417.775500px;}
.y25f{bottom:418.251445px;}
.y218{bottom:419.804217px;}
.y2e7{bottom:421.477500px;}
.y40{bottom:423.817500px;}
.y1a5{bottom:424.677101px;}
.y111{bottom:425.247000px;}
.y7b{bottom:426.741000px;}
.yae{bottom:427.041000px;}
.y263{bottom:428.996700px;}
.y217{bottom:430.162481px;}
.y21{bottom:430.999500px;}
.y2a9{bottom:431.580000px;}
.yd5{bottom:432.109500px;}
.y1ab{bottom:433.465207px;}
.y145{bottom:433.599000px;}
.y165{bottom:434.214000px;}
.y2e6{bottom:436.272000px;}
.y213{bottom:437.619761px;}
.y262{bottom:439.549039px;}
.y3f{bottom:440.256000px;}
.y110{bottom:441.685500px;}
.y7a{bottom:443.179500px;}
.yad{bottom:443.479500px;}
.y1aa{bottom:443.983860px;}
.y21a{bottom:445.111359px;}
.y21b{bottom:445.134408px;}
.y219{bottom:445.134665px;}
.y1a7{bottom:447.076240px;}
.y25d{bottom:447.145990px;}
.y20{bottom:447.438000px;}
.yd4{bottom:448.548000px;}
.y144{bottom:450.037500px;}
.y164{bottom:450.652500px;}
.y2e5{bottom:451.066500px;}
.y265{bottom:454.458087px;}
.y266{bottom:454.714193px;}
.y264{bottom:454.716571px;}
.y3e{bottom:456.694500px;}
.y10f{bottom:458.124000px;}
.y79{bottom:459.618000px;}
.y20f{bottom:459.781082px;}
.yac{bottom:459.918000px;}
.y1ad{bottom:459.946080px;}
.y1ae{bottom:460.202186px;}
.y1ac{bottom:460.203754px;}
.y2a8{bottom:462.328500px;}
.y1f{bottom:463.876500px;}
.yd3{bottom:464.986500px;}
.y2e4{bottom:465.861000px;}
.y143{bottom:466.476000px;}
.y25a{bottom:470.153747px;}
.y20b{bottom:472.209882px;}
.y10e{bottom:474.562500px;}
.y1a1{bottom:474.578115px;}
.y78{bottom:476.056500px;}
.y2a7{bottom:478.767000px;}
.y1e{bottom:480.315000px;}
.y2e3{bottom:480.655500px;}
.yd2{bottom:481.425000px;}
.y3d{bottom:482.100000px;}
.y256{bottom:482.817944px;}
.y142{bottom:482.914500px;}
.yab{bottom:485.322000px;}
.y163{bottom:485.989500px;}
.y19c{bottom:487.200499px;}
.yc2{bottom:490.343795px;}
.y77{bottom:492.495000px;}
.y210{bottom:493.522982px;}
.y20c{bottom:494.260566px;}
.y2a6{bottom:495.205500px;}
.y2e2{bottom:495.451500px;}
.y1d{bottom:496.753500px;}
.yd1{bottom:497.863500px;}
.y3c{bottom:498.538500px;}
.y141{bottom:499.353000px;}
.yaa{bottom:501.760500px;}
.y19d{bottom:506.131461px;}
.y25b{bottom:508.433805px;}
.y1a2{bottom:508.802284px;}
.y76{bottom:508.933500px;}
.y10d{bottom:510.129000px;}
.y2e1{bottom:510.246000px;}
.y2a5{bottom:511.644000px;}
.y1c{bottom:513.192000px;}
.y258{bottom:513.948454px;}
.yd0{bottom:514.302000px;}
.y3b{bottom:514.977000px;}
.y140{bottom:515.791500px;}
.y194{bottom:517.899000px;}
.ya9{bottom:518.199000px;}
.y20e{bottom:522.623225px;}
.y2e0{bottom:525.040500px;}
.y75{bottom:525.372000px;}
.y162{bottom:525.672000px;}
.y19f{bottom:526.290793px;}
.y2a4{bottom:528.082500px;}
.y1b{bottom:529.630500px;}
.ycf{bottom:530.740500px;}
.y3a{bottom:531.415500px;}
.y13f{bottom:532.230000px;}
.y193{bottom:534.337500px;}
.ya8{bottom:534.637500px;}
.y259{bottom:539.231402px;}
.y2df{bottom:539.835000px;}
.y74{bottom:541.810500px;}
.y161{bottom:542.109000px;}
.y2a3{bottom:544.521000px;}
.y1a{bottom:546.069000px;}
.y19e{bottom:546.450178px;}
.yce{bottom:547.179000px;}
.y39{bottom:547.854000px;}
.y192{bottom:550.776000px;}
.y20d{bottom:550.985885px;}
.ya7{bottom:551.076000px;}
.y2de{bottom:554.629500px;}
.y13e{bottom:557.634000px;}
.y73{bottom:558.249000px;}
.y2a2{bottom:560.959500px;}
.y19{bottom:562.507500px;}
.y38{bottom:564.292500px;}
.y257{bottom:564.513253px;}
.y1a0{bottom:566.609510px;}
.y191{bottom:567.214500px;}
.ya6{bottom:567.514500px;}
.y2dd{bottom:569.424000px;}
.y13d{bottom:574.072500px;}
.y72{bottom:574.687500px;}
.y2a1{bottom:577.398000px;}
.ycd{bottom:578.395500px;}
.y18{bottom:578.946000px;}
.y37{bottom:580.731000px;}
.y207{bottom:581.323630px;}
.y190{bottom:583.653000px;}
.y20a{bottom:583.756632px;}
.ya5{bottom:583.953000px;}
.y2dc{bottom:584.218500px;}
.y13c{bottom:590.511000px;}
.y71{bottom:591.126000px;}
.ycc{bottom:593.190000px;}
.y252{bottom:593.544736px;}
.y2a0{bottom:593.836500px;}
.y17{bottom:595.384500px;}
.y255{bottom:596.011720px;}
.y36{bottom:597.168000px;}
.y197{bottom:597.472571px;}
.y2db{bottom:599.013000px;}
.y18f{bottom:600.091500px;}
.ya4{bottom:600.391500px;}
.y19b{bottom:603.825576px;}
.y13b{bottom:606.949500px;}
.y70{bottom:607.564500px;}
.ycb{bottom:607.984500px;}
.y209{bottom:609.686290px;}
.y29f{bottom:610.275000px;}
.y35{bottom:613.606500px;}
.y2da{bottom:613.807500px;}
.ya3{bottom:616.830000px;}
.y199{bottom:620.511636px;}
.y254{bottom:622.439281px;}
.y13a{bottom:623.388000px;}
.y6f{bottom:624.003000px;}
.y18e{bottom:625.497000px;}
.y2d9{bottom:628.602000px;}
.y16{bottom:630.045000px;}
.ya2{bottom:633.268500px;}
.y29e{bottom:635.679000px;}
.y208{bottom:638.048950px;}
.y6e{bottom:640.441500px;}
.y18d{bottom:641.935500px;}
.y2d8{bottom:643.396500px;}
.y198{bottom:643.550806px;}
.yc0{bottom:648.183000px;}
.y139{bottom:648.793500px;}
.yfe{bottom:649.705500px;}
.y10c{bottom:649.707000px;}
.y253{bottom:651.333041px;}
.y29d{bottom:652.117500px;}
.y6d{bottom:656.880000px;}
.y2d7{bottom:658.191000px;}
.y18c{bottom:658.374000px;}
.ya1{bottom:658.672500px;}
.y22b{bottom:663.698863px;}
.y138{bottom:665.232000px;}
.yfd{bottom:666.144000px;}
.y10b{bottom:666.145500px;}
.y19a{bottom:666.589871px;}
.y15{bottom:667.753500px;}
.y29c{bottom:668.556000px;}
.y2d6{bottom:672.985500px;}
.y6c{bottom:673.318500px;}
.y18b{bottom:674.812500px;}
.ya0{bottom:675.111000px;}
.y27b{bottom:677.487509px;}
.y1db{bottom:681.165876px;}
.y137{bottom:681.669000px;}
.yfc{bottom:682.582500px;}
.y10a{bottom:682.584000px;}
.y29b{bottom:684.994500px;}
.y1f1{bottom:685.701988px;}
.y2d5{bottom:687.780000px;}
.y6b{bottom:689.757000px;}
.y18a{bottom:691.251000px;}
.y9f{bottom:691.549500px;}
.y1e3{bottom:697.462352px;}
.y136{bottom:698.107500px;}
.yfb{bottom:699.021000px;}
.y160{bottom:699.022500px;}
.y29a{bottom:701.433000px;}
.y23e{bottom:702.431744px;}
.y2d4{bottom:702.574500px;}
.y1b8{bottom:703.618196px;}
.y14{bottom:704.865000px;}
.y6a{bottom:706.194000px;}
.y201{bottom:707.589532px;}
.y1e4{bottom:707.591325px;}
.y189{bottom:707.689500px;}
.y9e{bottom:707.988000px;}
.y230{bottom:714.311942px;}
.y135{bottom:714.546000px;}
.yfa{bottom:715.459500px;}
.y15f{bottom:715.461000px;}
.y1af{bottom:715.618607px;}
.y2d3{bottom:717.370500px;}
.y299{bottom:717.871500px;}
.y13{bottom:721.303500px;}
.y69{bottom:722.632500px;}
.y188{bottom:724.128000px;}
.y9d{bottom:724.426500px;}
.y24c{bottom:724.538948px;}
.y242{bottom:724.539209px;}
.y231{bottom:724.540516px;}
.y1b4{bottom:725.952498px;}
.y1bc{bottom:725.954327px;}
.y1eb{bottom:726.376919px;}
.y1f9{bottom:728.085655px;}
.y134{bottom:730.984500px;}
.yf9{bottom:731.898000px;}
.y15e{bottom:731.899500px;}
.y2d2{bottom:732.165000px;}
.y298{bottom:734.310000px;}
.y12{bottom:737.742000px;}
.y187{bottom:740.566500px;}
.y9c{bottom:740.865000px;}
.y238{bottom:743.514598px;}
.y203{bottom:745.162002px;}
.y1e6{bottom:745.163794px;}
.y2d1{bottom:746.959500px;}
.y133{bottom:747.423000px;}
.y68{bottom:748.038000px;}
.yf8{bottom:748.336500px;}
.y15d{bottom:748.338000px;}
.y1f5{bottom:748.579217px;}
.y297{bottom:750.748500px;}
.y11{bottom:754.179000px;}
.y186{bottom:757.003500px;}
.y243{bottom:757.066021px;}
.y9b{bottom:757.303500px;}
.y1b0{bottom:758.814339px;}
.y1c0{bottom:758.815907px;}
.y2d0{bottom:761.754000px;}
.y24e{bottom:762.487374px;}
.y233{bottom:762.488942px;}
.y132{bottom:763.861500px;}
.y1ec{bottom:763.949389px;}
.y1c7{bottom:764.291878px;}
.y67{bottom:764.476500px;}
.yf7{bottom:764.775000px;}
.y15c{bottom:764.776500px;}
.y296{bottom:767.187000px;}
.y1fa{bottom:769.072523px;}
.y10{bottom:770.617500px;}
.y9a{bottom:773.742000px;}
.y2cf{bottom:776.548500px;}
.y131{bottom:780.300000px;}
.y66{bottom:780.915000px;}
.yf6{bottom:781.213500px;}
.y239{bottom:781.461979px;}
.y185{bottom:782.409000px;}
.y1e7{bottom:782.735240px;}
.y295{bottom:783.625500px;}
.y1f2{bottom:786.346327px;}
.yf{bottom:787.056000px;}
.y1f6{bottom:789.566086px;}
.y244{bottom:789.592833px;}
.y99{bottom:790.180500px;}
.y1f3{bottom:790.187910px;}
.y2ce{bottom:791.343000px;}
.y1b5{bottom:791.675657px;}
.y1be{bottom:791.677486px;}
.y130{bottom:796.738500px;}
.y65{bottom:797.353500px;}
.yf5{bottom:797.652000px;}
.y1b9{bottom:798.476848px;}
.y184{bottom:798.847500px;}
.y294{bottom:800.064000px;}
.y234{bottom:800.436323px;}
.y1ed{bottom:801.520834px;}
.ye{bottom:803.494500px;}
.y23f{bottom:803.883828px;}
.y2cd{bottom:806.137500px;}
.y1cb{bottom:806.316838px;}
.y98{bottom:806.619000px;}
.y240{bottom:807.803827px;}
.y1fb{bottom:810.060416px;}
.y12f{bottom:813.177000px;}
.y64{bottom:813.792000px;}
.yf4{bottom:814.090500px;}
.y183{bottom:815.286000px;}
.y293{bottom:816.502500px;}
.y23a{bottom:819.410405px;}
.yd{bottom:819.933000px;}
.y204{bottom:820.304892px;}
.y1e8{bottom:820.306685px;}
.y2cc{bottom:820.932000px;}
.y1ba{bottom:821.892285px;}
.y245{bottom:822.119645px;}
.y97{bottom:823.057500px;}
.y1b2{bottom:824.538543px;}
.y1c1{bottom:824.540111px;}
.y1bb{bottom:826.348013px;}
.y12e{bottom:829.615500px;}
.y63{bottom:830.230500px;}
.yf3{bottom:830.529000px;}
.y1f7{bottom:830.553978px;}
.y182{bottom:831.724500px;}
.y292{bottom:832.941000px;}
.y2cb{bottom:835.726500px;}
.yc{bottom:836.371500px;}
.y24f{bottom:838.382136px;}
.y235{bottom:838.383704px;}
.y1ee{bottom:839.092279px;}
.y96{bottom:839.496000px;}
.y1c8{bottom:840.968549px;}
.y12d{bottom:846.054000px;}
.y291{bottom:849.379500px;}
.y2ca{bottom:850.521000px;}
.y1fc{bottom:851.047284px;}
.yb{bottom:852.810000px;}
.y241{bottom:854.645150px;}
.y95{bottom:855.934500px;}
.y23b{bottom:857.357786px;}
.y1b6{bottom:857.399861px;}
.y1bd{bottom:857.401690px;}
.y202{bottom:857.876337px;}
.y1e9{bottom:857.878130px;}
.y12c{bottom:862.492500px;}
.y2c9{bottom:865.315500px;}
.y62{bottom:865.567500px;}
.y290{bottom:865.818000px;}
.ya{bottom:869.248500px;}
.y1f8{bottom:871.540846px;}
.y94{bottom:872.373000px;}
.y24d{bottom:876.329517px;}
.y236{bottom:876.331085px;}
.y1ef{bottom:876.663725px;}
.y1c6{bottom:879.306884px;}
.y2c8{bottom:880.110000px;}
.y9{bottom:885.687000px;}
.y181{bottom:886.996500px;}
.y246{bottom:887.172223px;}
.y12b{bottom:887.898000px;}
.y93{bottom:888.811500px;}
.y28f{bottom:890.067000px;}
.y1b1{bottom:890.261702px;}
.y1c2{bottom:890.263270px;}
.y1fd{bottom:892.035177px;}
.y2c7{bottom:894.904500px;}
.y23c{bottom:895.305167px;}
.y205{bottom:895.448807px;}
.y1e5{bottom:895.450600px;}
.y180{bottom:901.791000px;}
.y12a{bottom:904.336500px;}
.y28e{bottom:904.861500px;}
.y61{bottom:905.250000px;}
.y2c6{bottom:909.699000px;}
.y1c4{bottom:910.449138px;}
.y249{bottom:911.619580px;}
.y1f4{bottom:912.528739px;}
.y1fe{bottom:914.054093px;}
.y1f0{bottom:914.236194px;}
.y250{bottom:914.276898px;}
.y232{bottom:914.278466px;}
.y17f{bottom:916.585500px;}
.y1c9{bottom:917.646264px;}
.y28d{bottom:919.656000px;}
.y247{bottom:919.699035px;}
.y129{bottom:920.775000px;}
.yf2{bottom:921.687000px;}
.y60{bottom:921.688500px;}
.y1b7{bottom:923.123020px;}
.y1bf{bottom:923.124849px;}
.y2c5{bottom:924.493500px;}
.y8{bottom:927.367500px;}
.y17e{bottom:930.780880px;}
.y200{bottom:933.020508px;}
.y1ea{bottom:933.022045px;}
.y23d{bottom:933.252548px;}
.y28c{bottom:934.450500px;}
.y128{bottom:937.213500px;}
.y5f{bottom:938.125500px;}
.y15b{bottom:938.127000px;}
.y2c4{bottom:939.289500px;}
.y206{bottom:943.474735px;}
.y7{bottom:943.806000px;}
.y17d{bottom:943.899015px;}
.y92{bottom:947.092500px;}
.y28b{bottom:949.245000px;}
.y24b{bottom:952.224279px;}
.y248{bottom:952.225847px;}
.y237{bottom:952.226892px;}
.y127{bottom:953.652000px;}
.y2c3{bottom:954.084000px;}
.y5e{bottom:954.564000px;}
.y15a{bottom:954.565500px;}
.y1b3{bottom:955.984861px;}
.y1c3{bottom:955.986429px;}
.y17c{bottom:957.017150px;}
.y251{bottom:962.784745px;}
.y91{bottom:963.531000px;}
.y28a{bottom:963.706912px;}
.y6{bottom:965.667000px;}
.y1ca{bottom:966.652474px;}
.y2c2{bottom:968.878500px;}
.y126{bottom:970.089000px;}
.y17b{bottom:970.135285px;}
.y5d{bottom:971.002500px;}
.y159{bottom:971.004000px;}
.y5{bottom:976.681500px;}
.y289{bottom:977.604866px;}
.y90{bottom:979.969500px;}
.y17a{bottom:983.253421px;}
.y2c1{bottom:983.673000px;}
.y5c{bottom:987.441000px;}
.y158{bottom:987.442500px;}
.y288{bottom:991.502819px;}
.y125{bottom:995.494500px;}
.y179{bottom:996.371556px;}
.y8f{bottom:996.408000px;}
.y2c0{bottom:998.467500px;}
.y4{bottom:998.544000px;}
.y5b{bottom:1003.879500px;}
.y157{bottom:1003.881000px;}
.y287{bottom:1005.961594px;}
.y178{bottom:1010.020375px;}
.y124{bottom:1011.933000px;}
.y8e{bottom:1012.846500px;}
.y2bf{bottom:1013.262000px;}
.y286{bottom:1019.859547px;}
.y5a{bottom:1020.318000px;}
.y177{bottom:1023.138510px;}
.y3{bottom:1027.492500px;}
.y2be{bottom:1028.056500px;}
.y123{bottom:1028.371500px;}
.y8d{bottom:1029.285000px;}
.y285{bottom:1033.757501px;}
.y176{bottom:1036.256645px;}
.yf1{bottom:1036.756500px;}
.y2bd{bottom:1042.851000px;}
.y122{bottom:1044.810000px;}
.y59{bottom:1045.723500px;}
.y284{bottom:1048.217685px;}
.y175{bottom:1049.374781px;}
.yf0{bottom:1053.195000px;}
.y2bc{bottom:1057.645500px;}
.y121{bottom:1061.248500px;}
.y283{bottom:1062.115638px;}
.y58{bottom:1062.162000px;}
.y174{bottom:1062.492916px;}
.y2{bottom:1064.851500px;}
.yef{bottom:1069.633500px;}
.y2bb{bottom:1072.440000px;}
.y173{bottom:1075.611051px;}
.y282{bottom:1076.013592px;}
.y120{bottom:1077.687000px;}
.y57{bottom:1078.600500px;}
.y2ba{bottom:1087.234500px;}
.y172{bottom:1088.729186px;}
.y281{bottom:1089.911545px;}
.y1{bottom:1091.154000px;}
.y11f{bottom:1094.125500px;}
.y56{bottom:1095.039000px;}
.y2b9{bottom:1102.029000px;}
.y171{bottom:1102.378005px;}
.y280{bottom:1103.809498px;}
.y11e{bottom:1110.564000px;}
.y55{bottom:1111.477500px;}
.y2b8{bottom:1116.823500px;}
.y27f{bottom:1118.269682px;}
.y11d{bottom:1127.002500px;}
.y54{bottom:1127.916000px;}
.y2b7{bottom:1131.618000px;}
.y11c{bottom:1143.441000px;}
.y53{bottom:1144.354500px;}
.y2b6{bottom:1146.412500px;}
.h1d{height:0.973201px;}
.h14{height:0.993065px;}
.h1a{height:19.857917px;}
.h21{height:20.056515px;}
.h22{height:20.195421px;}
.h15{height:20.263247px;}
.h1c{height:20.986793px;}
.h1e{height:21.006095px;}
.h13{height:21.309774px;}
.h24{height:21.380299px;}
.h26{height:21.470601px;}
.h25{height:21.528340px;}
.h27{height:21.619276px;}
.h17{height:21.669311px;}
.h5{height:23.135700px;}
.ha{height:25.565282px;}
.h11{height:31.801536px;}
.h7{height:32.661470px;}
.h29{height:33.692004px;}
.h2a{height:34.143908px;}
.h8{height:35.865450px;}
.h4{height:42.440676px;}
.h6{height:44.831700px;}
.hc{height:48.838201px;}
.he{height:49.835573px;}
.hf{height:50.615885px;}
.h10{height:50.830194px;}
.h2{height:58.580340px;}
.h3{height:70.792435px;}
.h1f{height:78.242231px;}
.h18{height:79.839273px;}
.h28{height:79.868306px;}
.hd{height:101.322307px;}
.h1b{height:225.431744px;}
.h23{height:227.696568px;}
.h16{height:230.033147px;}
.hb{height:297.178050px;}
.h9{height:506.464140px;}
.h19{height:950.151405px;}
.h20{height:969.545430px;}
.h12{height:972.158760px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:298.944267px;}
.w8{width:304.024359px;}
.w5{width:305.046171px;}
.w6{width:368.791920px;}
.w3{width:376.308300px;}
.w4{width:376.319520px;}
.w2{width:773.852040px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:1.576165px;}
.x43{left:2.918194px;}
.x54{left:4.217052px;}
.x39{left:5.417564px;}
.x5c{left:6.981459px;}
.x23{left:9.380417px;}
.x44{left:10.518330px;}
.x37{left:11.732435px;}
.x45{left:12.934327px;}
.x22{left:14.758154px;}
.x3e{left:16.109651px;}
.x56{left:17.268378px;}
.x21{left:18.396406px;}
.x2d{left:19.890905px;}
.x4f{left:21.526287px;}
.x5e{left:25.525325px;}
.x26{left:27.511309px;}
.x16{left:28.643457px;}
.x58{left:30.074724px;}
.x3b{left:32.711924px;}
.x1a{left:43.567357px;}
.x48{left:51.896537px;}
.xd{left:55.054146px;}
.x1c{left:57.635836px;}
.x1d{left:58.955114px;}
.xa{left:61.228500px;}
.x3d{left:64.992000px;}
.x20{left:69.178119px;}
.x64{left:76.168500px;}
.x12{left:85.529604px;}
.x29{left:89.138899px;}
.x17{left:91.116000px;}
.x41{left:96.455073px;}
.x2c{left:97.856926px;}
.x14{left:99.212629px;}
.x5f{left:118.970600px;}
.x60{left:123.358537px;}
.x10{left:126.344479px;}
.xc{left:128.893500px;}
.x61{left:130.319491px;}
.x1f{left:131.611500px;}
.x8{left:138.613500px;}
.x31{left:140.757351px;}
.x62{left:152.859455px;}
.x46{left:158.396130px;}
.x27{left:159.552943px;}
.x33{left:162.077629px;}
.x59{left:163.430080px;}
.x2e{left:164.494750px;}
.x34{left:166.130329px;}
.x32{left:168.078070px;}
.x42{left:169.939061px;}
.x25{left:171.465024px;}
.x4b{left:172.842273px;}
.x53{left:174.076263px;}
.x57{left:175.504448px;}
.x38{left:176.654052px;}
.x4d{left:177.777634px;}
.x9{left:178.809000px;}
.x15{left:180.607943px;}
.x13{left:181.788304px;}
.x19{left:183.198838px;}
.x11{left:187.398888px;}
.x24{left:202.208499px;}
.x63{left:205.741500px;}
.x6{left:219.055500px;}
.xe{left:221.672198px;}
.x1{left:230.874000px;}
.x4{left:237.895500px;}
.x2{left:239.821500px;}
.x3{left:242.656500px;}
.x4e{left:264.050863px;}
.x4c{left:267.374142px;}
.x3a{left:268.969150px;}
.x5d{left:276.756874px;}
.x55{left:279.398950px;}
.x47{left:281.272987px;}
.x28{left:284.301557px;}
.x5a{left:289.499471px;}
.x2a{left:296.612955px;}
.x2b{left:301.225482px;}
.x1b{left:308.027686px;}
.x5{left:315.996000px;}
.x5b{left:330.324912px;}
.x49{left:333.449361px;}
.x40{left:335.744066px;}
.x4a{left:338.028527px;}
.x7{left:340.246500px;}
.x2f{left:341.402818px;}
.x51{left:342.701643px;}
.xf{left:344.580191px;}
.x36{left:359.249248px;}
.x3f{left:361.120766px;}
.x50{left:368.031553px;}
.xb{left:458.787000px;}
.x65{left:473.727000px;}
.x30{left:489.493628px;}
.x52{left:492.036398px;}
.x18{left:501.025500px;}
.x1e{left:546.688500px;}
.x3c{left:586.642500px;}
@media print{
.v3{vertical-align:-19.285333pt;}
.v4{vertical-align:-15.002667pt;}
.v5{vertical-align:-8.722871pt;}
.va{vertical-align:-7.322667pt;}
.v9{vertical-align:-5.904000pt;}
.v7{vertical-align:-1.433645pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.580163pt;}
.v2{vertical-align:19.280000pt;}
.v1{vertical-align:26.997333pt;}
.v6{vertical-align:46.652538pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000606pt;}
.lsf{letter-spacing:0.001923pt;}
.ls5{letter-spacing:1.540882pt;}
.ls6{letter-spacing:1.594016pt;}
.lse{letter-spacing:2.656473pt;}
.lsd{letter-spacing:2.657253pt;}
.ls13{letter-spacing:2.661762pt;}
.ls11{letter-spacing:3.018011pt;}
.ls1{letter-spacing:11.510586pt;}
.ls10{letter-spacing:17.712473pt;}
.ls14{letter-spacing:17.715948pt;}
.ls4{letter-spacing:18.596853pt;}
.ls0{letter-spacing:20.369253pt;}
.ls2{letter-spacing:22.578591pt;}
.ls7{letter-spacing:119.484433pt;}
.ls9{letter-spacing:364.347714pt;}
.ls8{letter-spacing:464.777873pt;}
.lsb{letter-spacing:847.776099pt;}
.lsc{letter-spacing:852.746651pt;}
.lsa{letter-spacing:870.121700pt;}
.wsc2{word-spacing:-48.580112pt;}
.wsfa{word-spacing:-27.156719pt;}
.ws145{word-spacing:-26.566933pt;}
.ws14a{word-spacing:-23.319450pt;}
.ws61{word-spacing:-14.718081pt;}
.wsef{word-spacing:-14.611813pt;}
.wsee{word-spacing:-14.558679pt;}
.ws1b{word-spacing:-14.505546pt;}
.ws3a{word-spacing:-14.399278pt;}
.ws5d{word-spacing:-14.293010pt;}
.wsc6{word-spacing:-14.239876pt;}
.ws86{word-spacing:-14.186742pt;}
.wse3{word-spacing:-14.080475pt;}
.ws28{word-spacing:-13.974207pt;}
.ws75{word-spacing:-13.867939pt;}
.ws113{word-spacing:-13.814805pt;}
.ws47{word-spacing:-13.761671pt;}
.wsbb{word-spacing:-13.655404pt;}
.ws42{word-spacing:-13.602270pt;}
.ws63{word-spacing:-13.442868pt;}
.ws3d{word-spacing:-13.283467pt;}
.wscf{word-spacing:-13.230333pt;}
.ws40{word-spacing:-13.177199pt;}
.ws84{word-spacing:-13.124065pt;}
.ws6c{word-spacing:-13.070931pt;}
.wsde{word-spacing:-12.863709pt;}
.ws98{word-spacing:-12.752128pt;}
.wsca{word-spacing:-12.539593pt;}
.wse9{word-spacing:-12.486459pt;}
.wsad{word-spacing:-12.433325pt;}
.ws13f{word-spacing:-12.380191pt;}
.ws154{word-spacing:-12.339840pt;}
.ws38{word-spacing:-12.327057pt;}
.ws27{word-spacing:-12.273923pt;}
.wse1{word-spacing:-12.220789pt;}
.ws146{word-spacing:-12.212319pt;}
.ws8d{word-spacing:-12.167655pt;}
.ws11d{word-spacing:-12.114522pt;}
.ws165{word-spacing:-12.084797pt;}
.wsdd{word-spacing:-12.061388pt;}
.ws144{word-spacing:-12.008254pt;}
.ws9d{word-spacing:-11.901986pt;}
.ws138{word-spacing:-11.872261pt;}
.ws1c{word-spacing:-11.848852pt;}
.wsbe{word-spacing:-11.795718pt;}
.ws60{word-spacing:-11.742585pt;}
.wsc9{word-spacing:-11.689451pt;}
.wsaa{word-spacing:-11.636317pt;}
.ws124{word-spacing:-11.530049pt;}
.ws5a{word-spacing:-11.476915pt;}
.ws31{word-spacing:-11.423781pt;}
.ws11a{word-spacing:-11.404682pt;}
.wsd8{word-spacing:-11.370647pt;}
.wscd{word-spacing:-11.317514pt;}
.ws140{word-spacing:-11.264380pt;}
.wse{word-spacing:-11.211246pt;}
.ws43{word-spacing:-11.158112pt;}
.wsff{word-spacing:-11.104978pt;}
.ws157{word-spacing:-11.064624pt;}
.ws1a{word-spacing:-11.051844pt;}
.ws41{word-spacing:-10.998710pt;}
.wsb3{word-spacing:-10.945577pt;}
.wsb8{word-spacing:-10.892443pt;}
.ws1f{word-spacing:-10.839309pt;}
.ws3f{word-spacing:-10.786175pt;}
.wsbc{word-spacing:-10.733041pt;}
.wsab{word-spacing:-10.679907pt;}
.ws77{word-spacing:-10.520506pt;}
.wsfe{word-spacing:-10.472685pt;}
.ws100{word-spacing:-10.414238pt;}
.ws102{word-spacing:-10.361104pt;}
.ws62{word-spacing:-10.307970pt;}
.ws21{word-spacing:-10.254836pt;}
.ws78{word-spacing:-10.201702pt;}
.wsb5{word-spacing:-10.148569pt;}
.ws5f{word-spacing:-10.095435pt;}
.ws56{word-spacing:-9.936033pt;}
.ws156{word-spacing:-9.831915pt;}
.ws10{word-spacing:-9.829765pt;}
.ws10f{word-spacing:-9.776631pt;}
.ws29{word-spacing:-9.704394pt;}
.ws9f{word-spacing:-9.670364pt;}
.ws10b{word-spacing:-9.617230pt;}
.ws44{word-spacing:-9.564096pt;}
.wsa6{word-spacing:-9.510962pt;}
.wsf2{word-spacing:-9.463142pt;}
.ws2a{word-spacing:-9.406843pt;}
.wsbf{word-spacing:-9.404694pt;}
.ws12{word-spacing:-9.298427pt;}
.ws108{word-spacing:-9.245293pt;}
.wsec{word-spacing:-9.139025pt;}
.ws96{word-spacing:-9.109293pt;}
.ws9b{word-spacing:-9.085891pt;}
.ws5e{word-spacing:-8.979623pt;}
.ws9e{word-spacing:-8.926490pt;}
.ws13{word-spacing:-8.873356pt;}
.ws53{word-spacing:-8.820222pt;}
.ws2e{word-spacing:-8.811743pt;}
.ws1d{word-spacing:-8.767088pt;}
.ws173{word-spacing:-8.726728pt;}
.ws85{word-spacing:-8.713954pt;}
.ws2d{word-spacing:-8.684221pt;}
.ws4c{word-spacing:-8.660820pt;}
.ws52{word-spacing:-8.607686pt;}
.ws57{word-spacing:-8.554553pt;}
.ws15c{word-spacing:-8.514192pt;}
.ws99{word-spacing:-8.501419pt;}
.ws158{word-spacing:-8.471685pt;}
.ws73{word-spacing:-8.448285pt;}
.wsb9{word-spacing:-8.395151pt;}
.wsae{word-spacing:-8.342017pt;}
.wsa8{word-spacing:-8.288883pt;}
.ws151{word-spacing:-8.259149pt;}
.wsed{word-spacing:-8.235749pt;}
.ws14{word-spacing:-8.187929pt;}
.ws9c{word-spacing:-8.182615pt;}
.ws5{word-spacing:-8.134795pt;}
.wsd3{word-spacing:-8.129482pt;}
.ws174{word-spacing:-8.101872pt;}
.ws59{word-spacing:-7.916946pt;}
.ws159{word-spacing:-7.889336pt;}
.wseb{word-spacing:-7.863812pt;}
.wsf0{word-spacing:-7.810678pt;}
.wsf8{word-spacing:-7.757545pt;}
.ws64{word-spacing:-7.704411pt;}
.ws152{word-spacing:-7.676800pt;}
.ws23{word-spacing:-7.651277pt;}
.ws171{word-spacing:-7.621541pt;}
.ws6f{word-spacing:-7.598143pt;}
.ws97{word-spacing:-7.579034pt;}
.ws7b{word-spacing:-7.545009pt;}
.ws128{word-spacing:-7.538831pt;}
.ws30{word-spacing:-7.536527pt;}
.ws16d{word-spacing:-7.506772pt;}
.ws14b{word-spacing:-7.494019pt;}
.ws139{word-spacing:-7.451512pt;}
.wsd2{word-spacing:-7.444055pt;}
.wsa5{word-spacing:-7.438741pt;}
.ws163{word-spacing:-7.366498pt;}
.ws7d{word-spacing:-7.332474pt;}
.ws177{word-spacing:-7.238976pt;}
.wsda{word-spacing:-7.226206pt;}
.wsf1{word-spacing:-7.119938pt;}
.ws12f{word-spacing:-7.079813pt;}
.wsa3{word-spacing:-7.013670pt;}
.ws14e{word-spacing:-6.996685pt;}
.ws14d{word-spacing:-6.983933pt;}
.wsaf{word-spacing:-6.960537pt;}
.ws7e{word-spacing:-6.907403pt;}
.ws164{word-spacing:-6.869164pt;}
.ws9a{word-spacing:-6.854269pt;}
.wsb2{word-spacing:-6.801135pt;}
.wsa9{word-spacing:-6.748001pt;}
.ws178{word-spacing:-6.741642pt;}
.ws90{word-spacing:-6.694867pt;}
.ws115{word-spacing:-6.682563pt;}
.wsa1{word-spacing:-6.641733pt;}
.ws114{word-spacing:-6.588599pt;}
.ws7a{word-spacing:-6.535466pt;}
.ws8e{word-spacing:-6.482332pt;}
.ws79{word-spacing:-6.429198pt;}
.wse2{word-spacing:-6.376064pt;}
.wsfc{word-spacing:-6.328244pt;}
.ws82{word-spacing:-6.322930pt;}
.ws167{word-spacing:-6.303818pt;}
.ws122{word-spacing:-6.269796pt;}
.ws179{word-spacing:-6.261311pt;}
.ws48{word-spacing:-6.216662pt;}
.ws13a{word-spacing:-6.133789pt;}
.wsc5{word-spacing:-6.110395pt;}
.ws172{word-spacing:-5.963760pt;}
.wsa0{word-spacing:-5.897859pt;}
.wscc{word-spacing:-5.844725pt;}
.ws3e{word-spacing:-5.791591pt;}
.ws104{word-spacing:-5.743771pt;}
.wsc{word-spacing:-5.738458pt;}
.ws88{word-spacing:-5.685324pt;}
.ws26{word-spacing:-5.632190pt;}
.wsa4{word-spacing:-5.579056pt;}
.ws67{word-spacing:-5.525922pt;}
.ws17a{word-spacing:-5.453674pt;}
.ws51{word-spacing:-5.419654pt;}
.ws170{word-spacing:-5.411167pt;}
.wsa2{word-spacing:-5.313387pt;}
.ws148{word-spacing:-5.283645pt;}
.ws66{word-spacing:-5.260253pt;}
.ws103{word-spacing:-5.207119pt;}
.ws16f{word-spacing:-5.198631pt;}
.ws5b{word-spacing:-5.153985pt;}
.ws6d{word-spacing:-5.047717pt;}
.ws149{word-spacing:-4.956340pt;}
.ws182{word-spacing:-4.943587pt;}
.ws74{word-spacing:-4.941450pt;}
.wsd{word-spacing:-4.888316pt;}
.ws105{word-spacing:-4.835182pt;}
.wsf6{word-spacing:-4.782048pt;}
.wse6{word-spacing:-4.728914pt;}
.wscb{word-spacing:-4.675780pt;}
.wsf7{word-spacing:-4.622646pt;}
.wsf3{word-spacing:-4.569513pt;}
.wse5{word-spacing:-4.309157pt;}
.wsc7{word-spacing:-4.250709pt;}
.wsdf{word-spacing:-4.197575pt;}
.ws155{word-spacing:-4.178458pt;}
.ws101{word-spacing:-4.144442pt;}
.ws71{word-spacing:-4.091308pt;}
.ws13b{word-spacing:-4.050936pt;}
.ws7f{word-spacing:-4.038174pt;}
.wsc8{word-spacing:-3.985040pt;}
.ws9{word-spacing:-3.931906pt;}
.ws36{word-spacing:-3.878772pt;}
.ws4a{word-spacing:-3.825638pt;}
.wsd5{word-spacing:-3.772505pt;}
.ws17{word-spacing:-3.719371pt;}
.ws39{word-spacing:-3.666237pt;}
.ws3b{word-spacing:-3.613103pt;}
.ws87{word-spacing:-3.506835pt;}
.ws2f{word-spacing:-3.498343pt;}
.ws11e{word-spacing:-3.453701pt;}
.ws14f{word-spacing:-3.413328pt;}
.ws161{word-spacing:-3.370821pt;}
.ws49{word-spacing:-3.347434pt;}
.ws15b{word-spacing:-3.328314pt;}
.ws17c{word-spacing:-3.200792pt;}
.ws72{word-spacing:-3.188032pt;}
.ws20{word-spacing:-3.134898pt;}
.ws162{word-spacing:-3.128530pt;}
.wsce{word-spacing:-3.081764pt;}
.ws8c{word-spacing:-3.028630pt;}
.ws19{word-spacing:-2.975497pt;}
.ws34{word-spacing:-2.922363pt;}
.wsb7{word-spacing:-2.869229pt;}
.ws141{word-spacing:-2.816095pt;}
.ws4d{word-spacing:-2.762961pt;}
.ws58{word-spacing:-2.709827pt;}
.ws11{word-spacing:-2.656693pt;}
.ws121{word-spacing:-2.603559pt;}
.ws16a{word-spacing:-2.563184pt;}
.ws45{word-spacing:-2.550426pt;}
.ws15f{word-spacing:-2.520677pt;}
.ws4b{word-spacing:-2.497292pt;}
.ws37{word-spacing:-2.444158pt;}
.wsd6{word-spacing:-2.391024pt;}
.ws109{word-spacing:-2.284756pt;}
.ws17e{word-spacing:-2.265634pt;}
.ws65{word-spacing:-2.178489pt;}
.wsa{word-spacing:-2.125355pt;}
.ws176{word-spacing:-2.095605pt;}
.wsc1{word-spacing:-2.019087pt;}
.wsbd{word-spacing:-1.965953pt;}
.wse0{word-spacing:-1.859685pt;}
.wsfd{word-spacing:-1.806551pt;}
.ws150{word-spacing:-1.755547pt;}
.ws76{word-spacing:-1.700284pt;}
.ws70{word-spacing:-1.647150pt;}
.wsb{word-spacing:-1.594016pt;}
.wsf5{word-spacing:-1.540882pt;}
.ws8a{word-spacing:-1.434614pt;}
.wsb4{word-spacing:-1.328347pt;}
.ws8f{word-spacing:-1.275213pt;}
.ws17b{word-spacing:-1.245461pt;}
.wsa7{word-spacing:-1.222079pt;}
.ws4f{word-spacing:-1.168945pt;}
.wsac{word-spacing:-1.115811pt;}
.ws25{word-spacing:-1.062677pt;}
.ws107{word-spacing:-1.009543pt;}
.ws2c{word-spacing:-0.990418pt;}
.ws50{word-spacing:-0.956410pt;}
.ws111{word-spacing:-0.850142pt;}
.wsf4{word-spacing:-0.797008pt;}
.wsb0{word-spacing:-0.743874pt;}
.ws7c{word-spacing:-0.637606pt;}
.ws10a{word-spacing:-0.531339pt;}
.ws2b{word-spacing:-0.480331pt;}
.ws11f{word-spacing:-0.425071pt;}
.ws13e{word-spacing:-0.371937pt;}
.ws11c{word-spacing:-0.318803pt;}
.ws22{word-spacing:-0.265669pt;}
.ws16{word-spacing:-0.212535pt;}
.wsc0{word-spacing:-0.159402pt;}
.wsf{word-spacing:-0.106268pt;}
.ws13c{word-spacing:-0.042507pt;}
.ws15{word-spacing:0.000000pt;}
.ws12b{word-spacing:0.048710pt;}
.ws5c{word-spacing:0.053134pt;}
.ws6e{word-spacing:0.106268pt;}
.ws14c{word-spacing:0.157277pt;}
.ws8{word-spacing:0.159402pt;}
.wsdc{word-spacing:0.265669pt;}
.ws18{word-spacing:0.425071pt;}
.ws123{word-spacing:0.478205pt;}
.wsb6{word-spacing:0.584473pt;}
.wsd4{word-spacing:0.637606pt;}
.ws1e{word-spacing:0.743874pt;}
.ws15e{word-spacing:0.824640pt;}
.ws168{word-spacing:0.837392pt;}
.ws15d{word-spacing:0.879899pt;}
.ws55{word-spacing:0.956410pt;}
.ws8b{word-spacing:1.009543pt;}
.ws46{word-spacing:1.062677pt;}
.ws16b{word-spacing:1.219957pt;}
.wsd0{word-spacing:1.222079pt;}
.ws69{word-spacing:1.328347pt;}
.ws13d{word-spacing:1.381481pt;}
.ws10c{word-spacing:1.434614pt;}
.ws83{word-spacing:1.487748pt;}
.wsc4{word-spacing:1.540882pt;}
.ws11b{word-spacing:1.647150pt;}
.ws3c{word-spacing:1.753418pt;}
.ws17d{word-spacing:1.857565pt;}
.ws10e{word-spacing:1.859685pt;}
.wsb1{word-spacing:1.912819pt;}
.ws153{word-spacing:2.070101pt;}
.wsfb{word-spacing:2.072221pt;}
.ws33{word-spacing:2.231622pt;}
.ws147{word-spacing:2.367651pt;}
.wsc3{word-spacing:2.391024pt;}
.ws12c{word-spacing:2.603559pt;}
.ws80{word-spacing:2.709827pt;}
.ws175{word-spacing:2.750216pt;}
.ws110{word-spacing:2.762961pt;}
.ws4e{word-spacing:2.816095pt;}
.wsd9{word-spacing:2.869229pt;}
.wsd7{word-spacing:2.975497pt;}
.ws119{word-spacing:3.047766pt;}
.ws16e{word-spacing:3.090273pt;}
.ws81{word-spacing:3.400567pt;}
.ws118{word-spacing:3.472838pt;}
.ws35{word-spacing:3.559969pt;}
.ws160{word-spacing:3.642867pt;}
.ws16c{word-spacing:3.685374pt;}
.wsea{word-spacing:3.719371pt;}
.ws15a{word-spacing:3.982925pt;}
.wse8{word-spacing:4.144442pt;}
.ws10d{word-spacing:4.197575pt;}
.ws91{word-spacing:4.303843pt;}
.ws89{word-spacing:4.410111pt;}
.ws180{word-spacing:4.565273pt;}
.ws24{word-spacing:4.569513pt;}
.ws166{word-spacing:4.705547pt;}
.ws17f{word-spacing:4.875576pt;}
.wsba{word-spacing:4.888316pt;}
.ws181{word-spacing:4.918083pt;}
.ws169{word-spacing:5.003097pt;}
.wsf9{word-spacing:5.153985pt;}
.ws112{word-spacing:5.419654pt;}
.wse7{word-spacing:5.525922pt;}
.ws68{word-spacing:5.738458pt;}
.ws120{word-spacing:5.791591pt;}
.ws32{word-spacing:5.897859pt;}
.ws106{word-spacing:5.950993pt;}
.ws54{word-spacing:6.429198pt;}
.wsdb{word-spacing:6.535466pt;}
.wsd1{word-spacing:6.801135pt;}
.ws143{word-spacing:6.960537pt;}
.ws142{word-spacing:7.119938pt;}
.wse4{word-spacing:7.279340pt;}
.ws6a{word-spacing:8.767088pt;}
.ws4{word-spacing:8.815160pt;}
.ws3{word-spacing:8.817555pt;}
.ws1{word-spacing:8.818609pt;}
.ws6b{word-spacing:8.820222pt;}
.ws6{word-spacing:11.479978pt;}
.ws2{word-spacing:20.333442pt;}
.ws0{word-spacing:27.821012pt;}
.ws7{word-spacing:30.711375pt;}
.ws131{word-spacing:43.113785pt;}
.ws130{word-spacing:50.181619pt;}
.ws134{word-spacing:102.012399pt;}
.ws92{word-spacing:103.348045pt;}
.ws117{word-spacing:109.384248pt;}
.ws94{word-spacing:117.239633pt;}
.ws136{word-spacing:117.984905pt;}
.ws132{word-spacing:145.657271pt;}
.ws93{word-spacing:205.085471pt;}
.ws116{word-spacing:226.057566pt;}
.ws133{word-spacing:239.296084pt;}
.ws125{word-spacing:282.218467pt;}
.ws137{word-spacing:308.297307pt;}
.ws135{word-spacing:318.879092pt;}
.ws129{word-spacing:320.965754pt;}
.ws12d{word-spacing:324.175715pt;}
.ws12a{word-spacing:339.214364pt;}
.ws12e{word-spacing:345.574699pt;}
.ws126{word-spacing:469.372814pt;}
.ws127{word-spacing:469.417879pt;}
.ws95{word-spacing:586.298827pt;}
._3e{margin-left:-1306.634575pt;}
._42{margin-left:-1085.974663pt;}
._46{margin-left:-1072.274287pt;}
._65{margin-left:-909.525120pt;}
._48{margin-left:-852.632274pt;}
._41{margin-left:-756.947237pt;}
._5e{margin-left:-662.422202pt;}
._61{margin-left:-661.397851pt;}
._50{margin-left:-658.483638pt;}
._53{margin-left:-649.224761pt;}
._4d{margin-left:-623.067246pt;}
._5c{margin-left:-621.411197pt;}
._3c{margin-left:-613.888187pt;}
._57{margin-left:-577.604974pt;}
._15{margin-left:-490.614740pt;}
._5f{margin-left:-418.248843pt;}
._51{margin-left:-410.551872pt;}
._5d{margin-left:-392.351404pt;}
._4e{margin-left:-388.467096pt;}
._62{margin-left:-365.410731pt;}
._54{margin-left:-358.690223pt;}
._2{margin-left:-9.298467pt;}
._9{margin-left:-6.461068pt;}
._a{margin-left:-5.451525pt;}
._17{margin-left:-4.516379pt;}
._7{margin-left:-3.570576pt;}
._1{margin-left:-2.306020pt;}
._8{margin-left:-1.147682pt;}
._5{width:1.094548pt;}
._0{width:2.306020pt;}
._18{width:4.952057pt;}
._3a{width:11.360041pt;}
._6f{width:12.932794pt;}
._3{width:13.976006pt;}
._16{width:14.951880pt;}
._e{width:16.014557pt;}
._f{width:17.151632pt;}
._6{width:18.108042pt;}
._11{width:19.021924pt;}
._71{width:20.031522pt;}
._4{width:20.956007pt;}
._10{width:21.933680pt;}
._3b{width:23.485169pt;}
._c{width:24.941047pt;}
._d{width:26.566933pt;}
._b{width:28.235347pt;}
._12{width:30.169429pt;}
._13{width:31.795316pt;}
._19{width:33.410595pt;}
._5b{width:38.930281pt;}
._6d{width:42.847258pt;}
._70{width:44.972618pt;}
._72{width:46.056535pt;}
._6e{width:48.553836pt;}
._73{width:51.199924pt;}
._59{width:53.943827pt;}
._58{width:55.000109pt;}
._1e{width:56.536064pt;}
._1a{width:58.511424pt;}
._1b{width:60.094434pt;}
._1d{width:65.468762pt;}
._20{width:66.524102pt;}
._21{width:73.873790pt;}
._1f{width:75.532181pt;}
._67{width:82.577853pt;}
._1c{width:97.807390pt;}
._68{width:100.536597pt;}
._30{width:116.785169pt;}
._49{width:120.246003pt;}
._4a{width:121.621352pt;}
._38{width:130.473350pt;}
._31{width:146.442059pt;}
._32{width:147.515545pt;}
._45{width:156.269021pt;}
._44{width:158.428828pt;}
._66{width:159.538601pt;}
._43{width:168.612059pt;}
._5a{width:172.225211pt;}
._24{width:173.565716pt;}
._33{width:186.219288pt;}
._2e{width:193.396839pt;}
._2f{width:194.460867pt;}
._25{width:205.866653pt;}
._26{width:216.947722pt;}
._27{width:222.788265pt;}
._2b{width:233.908541pt;}
._2c{width:234.963881pt;}
._69{width:238.988613pt;}
._2a{width:240.461437pt;}
._34{width:250.049743pt;}
._35{width:251.118500pt;}
._6a{width:257.356994pt;}
._23{width:265.041067pt;}
._6c{width:274.088194pt;}
._36{width:276.048734pt;}
._64{width:278.771856pt;}
._28{width:285.054833pt;}
._29{width:286.147864pt;}
._6b{width:288.782899pt;}
._2d{width:291.889773pt;}
._4b{width:304.812672pt;}
._14{width:315.278646pt;}
._37{width:376.905035pt;}
._40{width:384.402305pt;}
._39{width:385.310063pt;}
._3f{width:414.985654pt;}
._55{width:483.316568pt;}
._22{width:490.393817pt;}
._63{width:492.376346pt;}
._56{width:575.405412pt;}
._3d{width:746.468749pt;}
._4c{width:834.151941pt;}
._4f{width:881.572633pt;}
._47{width:915.282240pt;}
._52{width:1075.321786pt;}
._60{width:1095.481776pt;}
.fse{font-size:0.910597pt;}
.fs8{font-size:0.929184pt;}
.fsc{font-size:23.232798pt;}
.fs11{font-size:23.465148pt;}
.fs12{font-size:23.627662pt;}
.fs9{font-size:23.707015pt;}
.fsd{font-size:24.553529pt;}
.fsf{font-size:24.576111pt;}
.fs7{font-size:24.931400pt;}
.fs13{font-size:25.013912pt;}
.fs15{font-size:25.119560pt;}
.fs14{font-size:25.187112pt;}
.fs16{font-size:25.293504pt;}
.fsa{font-size:25.352042pt;}
.fs19{font-size:31.880533pt;}
.fs4{font-size:33.554560pt;}
.fs2{font-size:37.193600pt;}
.fs6{font-size:37.690709pt;}
.fs18{font-size:39.931264pt;}
.fs3{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:62.522667pt;}
.fs0{font-size:74.387733pt;}
.fs10{font-size:100.165707pt;}
.fsb{font-size:102.210240pt;}
.fs17{font-size:102.247407pt;}
.y0{bottom:0.000000pt;}
.y22d{bottom:2.619265pt;}
.y27d{bottom:2.671404pt;}
.y1dd{bottom:2.672658pt;}
.yc8{bottom:4.895100pt;}
.y225{bottom:19.980668pt;}
.y275{bottom:20.196139pt;}
.y1d5{bottom:20.833142pt;}
.yc6{bottom:29.012111pt;}
.y21c{bottom:31.653957pt;}
.y267{bottom:32.127698pt;}
.y1cc{bottom:32.241988pt;}
.y1cd{bottom:42.065553pt;}
.y26a{bottom:42.174500pt;}
.y21f{bottom:46.658324pt;}
.y107{bottom:57.205817pt;}
.y26f{bottom:60.229010pt;}
.y1ff{bottom:65.050797pt;}
.y24a{bottom:65.707247pt;}
.y1c5{bottom:66.378582pt;}
.y102{bottom:72.483153pt;}
.y1cf{bottom:73.302861pt;}
.y1e1{bottom:74.766667pt;}
.y21d{bottom:75.705013pt;}
.y269{bottom:78.283752pt;}
.y1e0{bottom:89.378667pt;}
.y270{bottom:96.338262pt;}
.yee{bottom:100.369333pt;}
.y34{bottom:100.370667pt;}
.y1d0{bottom:104.540401pt;}
.y220{bottom:104.751702pt;}
.y33{bottom:113.521333pt;}
.y52{bottom:113.712000pt;}
.y26b{bottom:114.393236pt;}
.yed{bottom:114.981333pt;}
.y8c{bottom:114.982667pt;}
.y1df{bottom:117.273333pt;}
.y105{bottom:120.509778pt;}
.y32{bottom:126.672000pt;}
.ye6{bottom:127.724000pt;}
.y51{bottom:128.324000pt;}
.y156{bottom:129.048000pt;}
.yec{bottom:129.593333pt;}
.y8b{bottom:129.594667pt;}
.ybf{bottom:131.188000pt;}
.y103{bottom:131.697428pt;}
.y271{bottom:132.447513pt;}
.y226{bottom:133.687982pt;}
.y221{bottom:133.798392pt;}
.y1d1{bottom:135.777941pt;}
.y276{bottom:136.417684pt;}
.y1de{bottom:136.977333pt;}
.y1d6{bottom:137.088323pt;}
.y27e{bottom:139.300000pt;}
.y31{bottom:139.822667pt;}
.ye5{bottom:142.336000pt;}
.y50{bottom:142.936000pt;}
.y155{bottom:143.660000pt;}
.y8a{bottom:144.205333pt;}
.y11b{bottom:144.206667pt;}
.ybe{bottom:145.800000pt;}
.y26c{bottom:150.503417pt;}
.y30{bottom:152.973333pt;}
.y22e{bottom:156.540000pt;}
.yca{bottom:156.901123pt;}
.ye4{bottom:156.948000pt;}
.y4f{bottom:157.548000pt;}
.y154{bottom:158.272000pt;}
.y89{bottom:158.817333pt;}
.y170{bottom:158.818667pt;}
.ybd{bottom:160.412000pt;}
.y196{bottom:162.216000pt;}
.y222{bottom:162.844170pt;}
.y22f{bottom:164.538667pt;}
.y2f{bottom:166.124000pt;}
.y1d2{bottom:167.015481pt;}
.y272{bottom:168.557694pt;}
.y101{bottom:169.783740pt;}
.ye3{bottom:171.560000pt;}
.y4e{bottom:172.160000pt;}
.y153{bottom:172.884000pt;}
.y88{bottom:173.429333pt;}
.y16f{bottom:173.430667pt;}
.ybc{bottom:175.024000pt;}
.y2e{bottom:179.274667pt;}
.y195{bottom:181.400000pt;}
.y1e2{bottom:181.778667pt;}
.yc9{bottom:185.250531pt;}
.ye2{bottom:186.172000pt;}
.y26d{bottom:186.612669pt;}
.y4d{bottom:186.772000pt;}
.y152{bottom:187.496000pt;}
.yeb{bottom:187.906667pt;}
.y87{bottom:188.041333pt;}
.ybb{bottom:189.636000pt;}
.y223{bottom:191.890859pt;}
.y2b5{bottom:192.425333pt;}
.y16e{bottom:196.012000pt;}
.y2d{bottom:196.176000pt;}
.y1ce{bottom:198.252789pt;}
.ye1{bottom:200.784000pt;}
.y4c{bottom:201.384000pt;}
.y151{bottom:202.108000pt;}
.y86{bottom:202.653333pt;}
.yba{bottom:204.248000pt;}
.y273{bottom:204.666946pt;}
.y2b4{bottom:205.576000pt;}
.y16d{bottom:210.624000pt;}
.y2c{bottom:214.409333pt;}
.ye0{bottom:215.396000pt;}
.yc5{bottom:215.659351pt;}
.y4b{bottom:215.996000pt;}
.y150{bottom:216.720000pt;}
.yea{bottom:216.994667pt;}
.y85{bottom:217.265333pt;}
.y2b3{bottom:218.726667pt;}
.yb9{bottom:218.860000pt;}
.y104{bottom:218.875908pt;}
.y21e{bottom:220.937320pt;}
.y26e{bottom:222.721920pt;}
.y229{bottom:224.024405pt;}
.y16c{bottom:225.236000pt;}
.y279{bottom:228.751674pt;}
.y2b{bottom:229.021333pt;}
.y1d3{bottom:229.490329pt;}
.ydf{bottom:230.008000pt;}
.y100{bottom:230.220963pt;}
.y4a{bottom:230.608000pt;}
.y14f{bottom:231.332000pt;}
.y84{bottom:231.877333pt;}
.y1d9{bottom:231.954153pt;}
.yb8{bottom:233.472000pt;}
.y228{bottom:233.854235pt;}
.yc3{bottom:237.679531pt;}
.yc7{bottom:237.679860pt;}
.y278{bottom:238.799382pt;}
.y16b{bottom:239.848000pt;}
.y274{bottom:240.776198pt;}
.y1d8{bottom:241.461053pt;}
.y2a{bottom:243.633333pt;}
.y227{bottom:243.684952pt;}
.yde{bottom:244.620000pt;}
.y2b2{bottom:245.028000pt;}
.y49{bottom:245.220000pt;}
.y11a{bottom:246.489333pt;}
.yb7{bottom:248.084000pt;}
.y277{bottom:248.847090pt;}
.y224{bottom:249.984237pt;}
.y1d7{bottom:250.967952pt;}
.y106{bottom:253.453605pt;}
.y14e{bottom:253.913333pt;}
.y83{bottom:254.460000pt;}
.y109{bottom:257.969333pt;}
.y2b1{bottom:258.180000pt;}
.y29{bottom:258.245333pt;}
.y268{bottom:258.831172pt;}
.ydd{bottom:259.232000pt;}
.y48{bottom:259.832000pt;}
.y1d4{bottom:260.727869pt;}
.yc4{bottom:260.748291pt;}
.y119{bottom:261.101333pt;}
.yb6{bottom:262.696000pt;}
.y22a{bottom:263.591908pt;}
.y14d{bottom:268.525333pt;}
.y82{bottom:269.072000pt;}
.y27a{bottom:269.193943pt;}
.y1da{bottom:270.870005pt;}
.y2b0{bottom:271.330667pt;}
.y108{bottom:272.581333pt;}
.ydc{bottom:273.844000pt;}
.y47{bottom:274.444000pt;}
.y118{bottom:275.713333pt;}
.yb5{bottom:277.308000pt;}
.y22c{bottom:278.589446pt;}
.y28{bottom:280.826667pt;}
.y14c{bottom:283.137333pt;}
.y81{bottom:283.684000pt;}
.y27c{bottom:284.376763pt;}
.y2af{bottom:284.481333pt;}
.y1dc{bottom:287.760247pt;}
.ye9{bottom:288.456000pt;}
.y46{bottom:289.054667pt;}
.y117{bottom:290.325333pt;}
.yb4{bottom:291.920000pt;}
.y27{bottom:295.438667pt;}
.ydb{bottom:296.425333pt;}
.y2ae{bottom:297.632000pt;}
.y14b{bottom:297.749333pt;}
.yff{bottom:297.820000pt;}
.y215{bottom:297.840452pt;}
.y80{bottom:298.296000pt;}
.ye8{bottom:303.068000pt;}
.y45{bottom:303.666667pt;}
.y260{bottom:304.598130pt;}
.y116{bottom:304.937333pt;}
.yb3{bottom:306.532000pt;}
.y1a8{bottom:308.825917pt;}
.y211{bottom:308.888274pt;}
.y26{bottom:310.050667pt;}
.y2ad{bottom:310.782667pt;}
.yda{bottom:311.037333pt;}
.y14a{bottom:312.361333pt;}
.y16a{bottom:312.908000pt;}
.y25c{bottom:315.855194pt;}
.ye7{bottom:317.680000pt;}
.y44{bottom:318.278667pt;}
.y115{bottom:319.549333pt;}
.y1a3{bottom:320.043491pt;}
.y7f{bottom:320.877333pt;}
.yb2{bottom:321.144000pt;}
.y2ac{bottom:323.933333pt;}
.y25{bottom:324.662667pt;}
.y212{bottom:324.821451pt;}
.yd9{bottom:325.649333pt;}
.y149{bottom:326.973333pt;}
.y169{bottom:327.520000pt;}
.y43{bottom:332.890667pt;}
.y114{bottom:334.161333pt;}
.y7e{bottom:335.489333pt;}
.yb1{bottom:335.756000pt;}
.y2ab{bottom:337.084000pt;}
.y1a4{bottom:337.670112pt;}
.y24{bottom:339.274667pt;}
.y216{bottom:339.841754pt;}
.yd8{bottom:340.261333pt;}
.y148{bottom:341.585333pt;}
.y168{bottom:342.132000pt;}
.y25e{bottom:346.095720pt;}
.y261{bottom:347.387053pt;}
.y42{bottom:347.502667pt;}
.y113{bottom:348.773333pt;}
.y7d{bottom:350.101333pt;}
.y2aa{bottom:350.234667pt;}
.yb0{bottom:350.368000pt;}
.y1a9{bottom:351.473140pt;}
.y23{bottom:353.886667pt;}
.yd7{bottom:354.873333pt;}
.y147{bottom:356.197333pt;}
.y167{bottom:356.744000pt;}
.y214{bottom:356.908397pt;}
.y1a6{bottom:357.580457pt;}
.yc1{bottom:360.164860pt;}
.y41{bottom:362.114667pt;}
.y112{bottom:363.385333pt;}
.y7c{bottom:364.713333pt;}
.yaf{bottom:364.980000pt;}
.y22{bottom:368.498667pt;}
.yd6{bottom:369.485333pt;}
.y146{bottom:370.809333pt;}
.y166{bottom:371.356000pt;}
.y25f{bottom:371.779062pt;}
.y218{bottom:373.159304pt;}
.y2e7{bottom:374.646667pt;}
.y40{bottom:376.726667pt;}
.y1a5{bottom:377.490756pt;}
.y111{bottom:377.997333pt;}
.y7b{bottom:379.325333pt;}
.yae{bottom:379.592000pt;}
.y263{bottom:381.330400pt;}
.y217{bottom:382.366650pt;}
.y21{bottom:383.110667pt;}
.y2a9{bottom:383.626667pt;}
.yd5{bottom:384.097333pt;}
.y1ab{bottom:385.302406pt;}
.y145{bottom:385.421333pt;}
.y165{bottom:385.968000pt;}
.y2e6{bottom:387.797333pt;}
.y213{bottom:388.995343pt;}
.y262{bottom:390.710257pt;}
.y3f{bottom:391.338667pt;}
.y110{bottom:392.609333pt;}
.y7a{bottom:393.937333pt;}
.yad{bottom:394.204000pt;}
.y1aa{bottom:394.652320pt;}
.y21a{bottom:395.654541pt;}
.y21b{bottom:395.675030pt;}
.y219{bottom:395.675257pt;}
.y1a7{bottom:397.401102pt;}
.y25d{bottom:397.463102pt;}
.y20{bottom:397.722667pt;}
.yd4{bottom:398.709333pt;}
.y144{bottom:400.033333pt;}
.y164{bottom:400.580000pt;}
.y2e5{bottom:400.948000pt;}
.y265{bottom:403.962744pt;}
.y266{bottom:404.190394pt;}
.y264{bottom:404.192508pt;}
.y3e{bottom:405.950667pt;}
.y10f{bottom:407.221333pt;}
.y79{bottom:408.549333pt;}
.y20f{bottom:408.694295pt;}
.yac{bottom:408.816000pt;}
.y1ad{bottom:408.840960pt;}
.y1ae{bottom:409.068610pt;}
.y1ac{bottom:409.070004pt;}
.y2a8{bottom:410.958667pt;}
.y1f{bottom:412.334667pt;}
.yd3{bottom:413.321333pt;}
.y2e4{bottom:414.098667pt;}
.y143{bottom:414.645333pt;}
.y25a{bottom:417.914442pt;}
.y20b{bottom:419.742117pt;}
.y10e{bottom:421.833333pt;}
.y1a1{bottom:421.847213pt;}
.y78{bottom:423.161333pt;}
.y2a7{bottom:425.570667pt;}
.y1e{bottom:426.946667pt;}
.y2e3{bottom:427.249333pt;}
.yd2{bottom:427.933333pt;}
.y3d{bottom:428.533333pt;}
.y256{bottom:429.171506pt;}
.y142{bottom:429.257333pt;}
.yab{bottom:431.397333pt;}
.y163{bottom:431.990667pt;}
.y19c{bottom:433.067110pt;}
.yc2{bottom:435.861151pt;}
.y77{bottom:437.773333pt;}
.y210{bottom:438.687095pt;}
.y20c{bottom:439.342725pt;}
.y2a6{bottom:440.182667pt;}
.y2e2{bottom:440.401333pt;}
.y1d{bottom:441.558667pt;}
.yd1{bottom:442.545333pt;}
.y3c{bottom:443.145333pt;}
.y141{bottom:443.869333pt;}
.yaa{bottom:446.009333pt;}
.y19d{bottom:449.894632pt;}
.y25b{bottom:451.941160pt;}
.y1a2{bottom:452.268697pt;}
.y76{bottom:452.385333pt;}
.y10d{bottom:453.448000pt;}
.y2e1{bottom:453.552000pt;}
.y2a5{bottom:454.794667pt;}
.y1c{bottom:456.170667pt;}
.y258{bottom:456.843070pt;}
.yd0{bottom:457.157333pt;}
.y3b{bottom:457.757333pt;}
.y140{bottom:458.481333pt;}
.y194{bottom:460.354667pt;}
.ya9{bottom:460.621333pt;}
.y20e{bottom:464.553978pt;}
.y2e0{bottom:466.702667pt;}
.y75{bottom:466.997333pt;}
.y162{bottom:467.264000pt;}
.y19f{bottom:467.814038pt;}
.y2a4{bottom:469.406667pt;}
.y1b{bottom:470.782667pt;}
.ycf{bottom:471.769333pt;}
.y3a{bottom:472.369333pt;}
.y13f{bottom:473.093333pt;}
.y193{bottom:474.966667pt;}
.ya8{bottom:475.233333pt;}
.y259{bottom:479.316802pt;}
.y2df{bottom:479.853333pt;}
.y74{bottom:481.609333pt;}
.y161{bottom:481.874667pt;}
.y2a3{bottom:484.018667pt;}
.y1a{bottom:485.394667pt;}
.y19e{bottom:485.733491pt;}
.yce{bottom:486.381333pt;}
.y39{bottom:486.981333pt;}
.y192{bottom:489.578667pt;}
.y20d{bottom:489.765231pt;}
.ya7{bottom:489.845333pt;}
.y2de{bottom:493.004000pt;}
.y13e{bottom:495.674667pt;}
.y73{bottom:496.221333pt;}
.y2a2{bottom:498.630667pt;}
.y19{bottom:500.006667pt;}
.y38{bottom:501.593333pt;}
.y257{bottom:501.789558pt;}
.y1a0{bottom:503.652898pt;}
.y191{bottom:504.190667pt;}
.ya6{bottom:504.457333pt;}
.y2dd{bottom:506.154667pt;}
.y13d{bottom:510.286667pt;}
.y72{bottom:510.833333pt;}
.y2a1{bottom:513.242667pt;}
.ycd{bottom:514.129333pt;}
.y18{bottom:514.618667pt;}
.y37{bottom:516.205333pt;}
.y207{bottom:516.732116pt;}
.y190{bottom:518.802667pt;}
.y20a{bottom:518.894784pt;}
.ya5{bottom:519.069333pt;}
.y2dc{bottom:519.305333pt;}
.y13c{bottom:524.898667pt;}
.y71{bottom:525.445333pt;}
.ycc{bottom:527.280000pt;}
.y252{bottom:527.595321pt;}
.y2a0{bottom:527.854667pt;}
.y17{bottom:529.230667pt;}
.y255{bottom:529.788195pt;}
.y36{bottom:530.816000pt;}
.y197{bottom:531.086730pt;}
.y2db{bottom:532.456000pt;}
.y18f{bottom:533.414667pt;}
.ya4{bottom:533.681333pt;}
.y19b{bottom:536.733846pt;}
.y13b{bottom:539.510667pt;}
.y70{bottom:540.057333pt;}
.ycb{bottom:540.430667pt;}
.y209{bottom:541.943369pt;}
.y29f{bottom:542.466667pt;}
.y35{bottom:545.428000pt;}
.y2da{bottom:545.606667pt;}
.ya3{bottom:548.293333pt;}
.y199{bottom:551.565899pt;}
.y254{bottom:553.279361pt;}
.y13a{bottom:554.122667pt;}
.y6f{bottom:554.669333pt;}
.y18e{bottom:555.997333pt;}
.y2d9{bottom:558.757333pt;}
.y16{bottom:560.040000pt;}
.ya2{bottom:562.905333pt;}
.y29e{bottom:565.048000pt;}
.y208{bottom:567.154622pt;}
.y6e{bottom:569.281333pt;}
.y18d{bottom:570.609333pt;}
.y2d8{bottom:571.908000pt;}
.y198{bottom:572.045161pt;}
.yc0{bottom:576.162667pt;}
.y139{bottom:576.705333pt;}
.yfe{bottom:577.516000pt;}
.y10c{bottom:577.517333pt;}
.y253{bottom:578.962703pt;}
.y29d{bottom:579.660000pt;}
.y6d{bottom:583.893333pt;}
.y2d7{bottom:585.058667pt;}
.y18c{bottom:585.221333pt;}
.ya1{bottom:585.486667pt;}
.y22b{bottom:589.954545pt;}
.y138{bottom:591.317333pt;}
.yfd{bottom:592.128000pt;}
.y10b{bottom:592.129333pt;}
.y19a{bottom:592.524330pt;}
.y15{bottom:593.558667pt;}
.y29c{bottom:594.272000pt;}
.y2d6{bottom:598.209333pt;}
.y6c{bottom:598.505333pt;}
.y18b{bottom:599.833333pt;}
.ya0{bottom:600.098667pt;}
.y27b{bottom:602.211119pt;}
.y1db{bottom:605.480778pt;}
.y137{bottom:605.928000pt;}
.yfc{bottom:606.740000pt;}
.y10a{bottom:606.741333pt;}
.y29b{bottom:608.884000pt;}
.y1f1{bottom:609.512878pt;}
.y2d5{bottom:611.360000pt;}
.y6b{bottom:613.117333pt;}
.y18a{bottom:614.445333pt;}
.y9f{bottom:614.710667pt;}
.y1e3{bottom:619.966535pt;}
.y136{bottom:620.540000pt;}
.yfb{bottom:621.352000pt;}
.y160{bottom:621.353333pt;}
.y29a{bottom:623.496000pt;}
.y23e{bottom:624.383772pt;}
.y2d4{bottom:624.510667pt;}
.y1b8{bottom:625.438396pt;}
.y14{bottom:626.546667pt;}
.y6a{bottom:627.728000pt;}
.y201{bottom:628.968473pt;}
.y1e4{bottom:628.970067pt;}
.y189{bottom:629.057333pt;}
.y9e{bottom:629.322667pt;}
.y230{bottom:634.943949pt;}
.y135{bottom:635.152000pt;}
.yfa{bottom:635.964000pt;}
.y15f{bottom:635.965333pt;}
.y1af{bottom:636.105429pt;}
.y2d3{bottom:637.662667pt;}
.y299{bottom:638.108000pt;}
.y13{bottom:641.158667pt;}
.y69{bottom:642.340000pt;}
.y188{bottom:643.669333pt;}
.y9d{bottom:643.934667pt;}
.y24c{bottom:644.034620pt;}
.y242{bottom:644.034853pt;}
.y231{bottom:644.036014pt;}
.y1b4{bottom:645.291109pt;}
.y1bc{bottom:645.292735pt;}
.y1eb{bottom:645.668373pt;}
.y1f9{bottom:647.187249pt;}
.y134{bottom:649.764000pt;}
.yf9{bottom:650.576000pt;}
.y15e{bottom:650.577333pt;}
.y2d2{bottom:650.813333pt;}
.y298{bottom:652.720000pt;}
.y12{bottom:655.770667pt;}
.y187{bottom:658.281333pt;}
.y9c{bottom:658.546667pt;}
.y238{bottom:660.901865pt;}
.y203{bottom:662.366224pt;}
.y1e6{bottom:662.367817pt;}
.y2d1{bottom:663.964000pt;}
.y133{bottom:664.376000pt;}
.y68{bottom:664.922667pt;}
.yf8{bottom:665.188000pt;}
.y15d{bottom:665.189333pt;}
.y1f5{bottom:665.403749pt;}
.y297{bottom:667.332000pt;}
.y11{bottom:670.381333pt;}
.y186{bottom:672.892000pt;}
.y243{bottom:672.947574pt;}
.y9b{bottom:673.158667pt;}
.y1b0{bottom:674.501634pt;}
.y1c0{bottom:674.503028pt;}
.y2d0{bottom:677.114667pt;}
.y24e{bottom:677.766555pt;}
.y233{bottom:677.767949pt;}
.y132{bottom:678.988000pt;}
.y1ec{bottom:679.066124pt;}
.y1c7{bottom:679.370559pt;}
.y67{bottom:679.534667pt;}
.yf7{bottom:679.800000pt;}
.y15c{bottom:679.801333pt;}
.y296{bottom:681.944000pt;}
.y1fa{bottom:683.620021pt;}
.y10{bottom:684.993333pt;}
.y9a{bottom:687.770667pt;}
.y2cf{bottom:690.265333pt;}
.y131{bottom:693.600000pt;}
.y66{bottom:694.146667pt;}
.yf6{bottom:694.412000pt;}
.y239{bottom:694.632870pt;}
.y185{bottom:695.474667pt;}
.y1e7{bottom:695.764657pt;}
.y295{bottom:696.556000pt;}
.y1f2{bottom:698.974513pt;}
.yf{bottom:699.605333pt;}
.y1f6{bottom:701.836520pt;}
.y244{bottom:701.860296pt;}
.y99{bottom:702.382667pt;}
.y1f3{bottom:702.389253pt;}
.y2ce{bottom:703.416000pt;}
.y1b5{bottom:703.711695pt;}
.y1be{bottom:703.713321pt;}
.y130{bottom:708.212000pt;}
.y65{bottom:708.758667pt;}
.yf5{bottom:709.024000pt;}
.y1b9{bottom:709.757198pt;}
.y184{bottom:710.086667pt;}
.y294{bottom:711.168000pt;}
.y234{bottom:711.498954pt;}
.y1ed{bottom:712.462964pt;}
.ye{bottom:714.217333pt;}
.y23f{bottom:714.563403pt;}
.y2cd{bottom:716.566667pt;}
.y1cb{bottom:716.726078pt;}
.y98{bottom:716.994667pt;}
.y240{bottom:718.047846pt;}
.y1fb{bottom:720.053703pt;}
.y12f{bottom:722.824000pt;}
.y64{bottom:723.370667pt;}
.yf4{bottom:723.636000pt;}
.y183{bottom:724.698667pt;}
.y293{bottom:725.780000pt;}
.y23a{bottom:728.364805pt;}
.yd{bottom:728.829333pt;}
.y204{bottom:729.159904pt;}
.y1e8{bottom:729.161498pt;}
.y2cc{bottom:729.717333pt;}
.y1ba{bottom:730.570920pt;}
.y245{bottom:730.773018pt;}
.y97{bottom:731.606667pt;}
.y1b2{bottom:732.923149pt;}
.y1c1{bottom:732.924543pt;}
.y1bb{bottom:734.531567pt;}
.y12e{bottom:737.436000pt;}
.y63{bottom:737.982667pt;}
.yf3{bottom:738.248000pt;}
.y1f7{bottom:738.270203pt;}
.y182{bottom:739.310667pt;}
.y292{bottom:740.392000pt;}
.y2cb{bottom:742.868000pt;}
.yc{bottom:743.441333pt;}
.y24f{bottom:745.228565pt;}
.y235{bottom:745.229959pt;}
.y1ee{bottom:745.859804pt;}
.y96{bottom:746.218667pt;}
.y1c8{bottom:747.527599pt;}
.y12d{bottom:752.048000pt;}
.y291{bottom:755.004000pt;}
.y2ca{bottom:756.018667pt;}
.y1fc{bottom:756.486475pt;}
.yb{bottom:758.053333pt;}
.y241{bottom:759.684578pt;}
.y95{bottom:760.830667pt;}
.y23b{bottom:762.095810pt;}
.y1b6{bottom:762.133210pt;}
.y1bd{bottom:762.134836pt;}
.y202{bottom:762.556744pt;}
.y1e9{bottom:762.558338pt;}
.y12c{bottom:766.660000pt;}
.y2c9{bottom:769.169333pt;}
.y62{bottom:769.393333pt;}
.y290{bottom:769.616000pt;}
.ya{bottom:772.665333pt;}
.y1f8{bottom:774.702974pt;}
.y94{bottom:775.442667pt;}
.y24d{bottom:778.959571pt;}
.y236{bottom:778.960964pt;}
.y1ef{bottom:779.256644pt;}
.y1c6{bottom:781.606119pt;}
.y2c8{bottom:782.320000pt;}
.y9{bottom:787.277333pt;}
.y181{bottom:788.441333pt;}
.y246{bottom:788.597532pt;}
.y12b{bottom:789.242667pt;}
.y93{bottom:790.054667pt;}
.y28f{bottom:791.170667pt;}
.y1b1{bottom:791.343735pt;}
.y1c2{bottom:791.345129pt;}
.y1fd{bottom:792.920157pt;}
.y2c7{bottom:795.470667pt;}
.y23c{bottom:795.826815pt;}
.y205{bottom:795.954495pt;}
.y1e5{bottom:795.956089pt;}
.y180{bottom:801.592000pt;}
.y12a{bottom:803.854667pt;}
.y28e{bottom:804.321333pt;}
.y61{bottom:804.666667pt;}
.y2c6{bottom:808.621333pt;}
.y1c4{bottom:809.288123pt;}
.y249{bottom:810.328516pt;}
.y1f4{bottom:811.136657pt;}
.y1fe{bottom:812.492527pt;}
.y1f0{bottom:812.654395pt;}
.y250{bottom:812.690576pt;}
.y232{bottom:812.691970pt;}
.y17f{bottom:814.742667pt;}
.y1c9{bottom:815.685568pt;}
.y28d{bottom:817.472000pt;}
.y247{bottom:817.510253pt;}
.y129{bottom:818.466667pt;}
.yf2{bottom:819.277333pt;}
.y60{bottom:819.278667pt;}
.y1b7{bottom:820.553795pt;}
.y1bf{bottom:820.555422pt;}
.y2c5{bottom:821.772000pt;}
.y8{bottom:824.326667pt;}
.y17e{bottom:827.360782pt;}
.y200{bottom:829.351563pt;}
.y1ea{bottom:829.352929pt;}
.y23d{bottom:829.557821pt;}
.y28c{bottom:830.622667pt;}
.y128{bottom:833.078667pt;}
.y5f{bottom:833.889333pt;}
.y15b{bottom:833.890667pt;}
.y2c4{bottom:834.924000pt;}
.y206{bottom:838.644209pt;}
.y7{bottom:838.938667pt;}
.y17d{bottom:839.021347pt;}
.y92{bottom:841.860000pt;}
.y28b{bottom:843.773333pt;}
.y24b{bottom:846.421581pt;}
.y248{bottom:846.422975pt;}
.y237{bottom:846.423904pt;}
.y127{bottom:847.690667pt;}
.y2c3{bottom:848.074667pt;}
.y5e{bottom:848.501333pt;}
.y15a{bottom:848.502667pt;}
.y1b3{bottom:849.764321pt;}
.y1c3{bottom:849.765714pt;}
.y17c{bottom:850.681911pt;}
.y251{bottom:855.808662pt;}
.y91{bottom:856.472000pt;}
.y28a{bottom:856.628367pt;}
.y6{bottom:858.370667pt;}
.y1ca{bottom:859.246643pt;}
.y2c2{bottom:861.225333pt;}
.y126{bottom:862.301333pt;}
.y17b{bottom:862.342476pt;}
.y5d{bottom:863.113333pt;}
.y159{bottom:863.114667pt;}
.y5{bottom:868.161333pt;}
.y289{bottom:868.982103pt;}
.y90{bottom:871.084000pt;}
.y17a{bottom:874.003041pt;}
.y2c1{bottom:874.376000pt;}
.y5c{bottom:877.725333pt;}
.y158{bottom:877.726667pt;}
.y288{bottom:881.335839pt;}
.y125{bottom:884.884000pt;}
.y179{bottom:885.663605pt;}
.y8f{bottom:885.696000pt;}
.y2c0{bottom:887.526667pt;}
.y4{bottom:887.594667pt;}
.y5b{bottom:892.337333pt;}
.y157{bottom:892.338667pt;}
.y287{bottom:894.188084pt;}
.y178{bottom:897.795889pt;}
.y124{bottom:899.496000pt;}
.y8e{bottom:900.308000pt;}
.y2bf{bottom:900.677333pt;}
.y286{bottom:906.541820pt;}
.y5a{bottom:906.949333pt;}
.y177{bottom:909.456454pt;}
.y3{bottom:913.326667pt;}
.y2be{bottom:913.828000pt;}
.y123{bottom:914.108000pt;}
.y8d{bottom:914.920000pt;}
.y285{bottom:918.895556pt;}
.y176{bottom:921.117018pt;}
.yf1{bottom:921.561333pt;}
.y2bd{bottom:926.978667pt;}
.y122{bottom:928.720000pt;}
.y59{bottom:929.532000pt;}
.y284{bottom:931.749053pt;}
.y175{bottom:932.777583pt;}
.yf0{bottom:936.173333pt;}
.y2bc{bottom:940.129333pt;}
.y121{bottom:943.332000pt;}
.y283{bottom:944.102790pt;}
.y58{bottom:944.144000pt;}
.y174{bottom:944.438147pt;}
.y2{bottom:946.534667pt;}
.yef{bottom:950.785333pt;}
.y2bb{bottom:953.280000pt;}
.y173{bottom:956.098712pt;}
.y282{bottom:956.456526pt;}
.y120{bottom:957.944000pt;}
.y57{bottom:958.756000pt;}
.y2ba{bottom:966.430667pt;}
.y172{bottom:967.759277pt;}
.y281{bottom:968.810262pt;}
.y1{bottom:969.914667pt;}
.y11f{bottom:972.556000pt;}
.y56{bottom:973.368000pt;}
.y2b9{bottom:979.581333pt;}
.y171{bottom:979.891560pt;}
.y280{bottom:981.163998pt;}
.y11e{bottom:987.168000pt;}
.y55{bottom:987.980000pt;}
.y2b8{bottom:992.732000pt;}
.y27f{bottom:994.017495pt;}
.y11d{bottom:1001.780000pt;}
.y54{bottom:1002.592000pt;}
.y2b7{bottom:1005.882667pt;}
.y11c{bottom:1016.392000pt;}
.y53{bottom:1017.204000pt;}
.y2b6{bottom:1019.033333pt;}
.h1d{height:0.865067pt;}
.h14{height:0.882725pt;}
.h1a{height:17.651481pt;}
.h21{height:17.828013pt;}
.h22{height:17.951486pt;}
.h15{height:18.011775pt;}
.h1c{height:18.654927pt;}
.h1e{height:18.672085pt;}
.h13{height:18.942021pt;}
.h24{height:19.004711pt;}
.h26{height:19.084978pt;}
.h25{height:19.136302pt;}
.h27{height:19.217134pt;}
.h17{height:19.261610pt;}
.h5{height:20.565067pt;}
.ha{height:22.724695pt;}
.h11{height:28.268032pt;}
.h7{height:29.032418pt;}
.h29{height:29.948448pt;}
.h2a{height:30.350141pt;}
.h8{height:31.880400pt;}
.h4{height:37.725045pt;}
.h6{height:39.850400pt;}
.hc{height:43.411734pt;}
.he{height:44.298287pt;}
.hf{height:44.991898pt;}
.h10{height:45.182395pt;}
.h2{height:52.071413pt;}
.h3{height:62.926609pt;}
.h1f{height:69.548650pt;}
.h18{height:70.968243pt;}
.h28{height:70.994049pt;}
.hd{height:90.064273pt;}
.h1b{height:200.383773pt;}
.h23{height:202.396950pt;}
.h16{height:204.473908pt;}
.hb{height:264.158267pt;}
.h9{height:450.190347pt;}
.h19{height:844.579027pt;}
.h20{height:861.818160pt;}
.h12{height:864.141120pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:265.728237pt;}
.w8{width:270.243875pt;}
.w5{width:271.152152pt;}
.w6{width:327.815040pt;}
.w3{width:334.496267pt;}
.w4{width:334.506240pt;}
.w2{width:687.868480pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:1.401035pt;}
.x43{left:2.593950pt;}
.x54{left:3.748491pt;}
.x39{left:4.815612pt;}
.x5c{left:6.205741pt;}
.x23{left:8.338149pt;}
.x44{left:9.349626pt;}
.x37{left:10.428831pt;}
.x45{left:11.497179pt;}
.x22{left:13.118359pt;}
.x3e{left:14.319689pt;}
.x56{left:15.349669pt;}
.x21{left:16.352361pt;}
.x2d{left:17.680804pt;}
.x4f{left:19.134477pt;}
.x5e{left:22.689178pt;}
.x26{left:24.454497pt;}
.x16{left:25.460851pt;}
.x58{left:26.733088pt;}
.x3b{left:29.077266pt;}
.x1a{left:38.726540pt;}
.x48{left:46.130255pt;}
.xd{left:48.937019pt;}
.x1c{left:51.231855pt;}
.x1d{left:52.404545pt;}
.xa{left:54.425333pt;}
.x3d{left:57.770667pt;}
.x20{left:61.491662pt;}
.x64{left:67.705333pt;}
.x12{left:76.026314pt;}
.x29{left:79.234577pt;}
.x17{left:80.992000pt;}
.x41{left:85.737843pt;}
.x2c{left:86.983934pt;}
.x14{left:88.189003pt;}
.x5f{left:105.751644pt;}
.x60{left:109.652033pt;}
.x10{left:112.306204pt;}
.xc{left:114.572000pt;}
.x61{left:115.839548pt;}
.x1f{left:116.988000pt;}
.x8{left:123.212000pt;}
.x31{left:125.117645pt;}
.x62{left:135.875071pt;}
.x46{left:140.796560pt;}
.x27{left:141.824838pt;}
.x33{left:144.069004pt;}
.x59{left:145.271182pt;}
.x2e{left:146.217556pt;}
.x34{left:147.671403pt;}
.x32{left:149.402729pt;}
.x42{left:151.056943pt;}
.x25{left:152.413355pt;}
.x4b{left:153.637576pt;}
.x53{left:154.734456pt;}
.x57{left:156.003954pt;}
.x38{left:157.025824pt;}
.x4d{left:158.024563pt;}
.x9{left:158.941333pt;}
.x15{left:160.540394pt;}
.x13{left:161.589603pt;}
.x19{left:162.843411pt;}
.x11{left:166.576790pt;}
.x24{left:179.740888pt;}
.x63{left:182.881333pt;}
.x6{left:194.716000pt;}
.xe{left:197.041953pt;}
.x1{left:205.221333pt;}
.x4{left:211.462667pt;}
.x2{left:213.174667pt;}
.x3{left:215.694667pt;}
.x4e{left:234.711878pt;}
.x4c{left:237.665904pt;}
.x3a{left:239.083689pt;}
.x5d{left:246.006110pt;}
.x55{left:248.354622pt;}
.x47{left:250.020433pt;}
.x28{left:252.712495pt;}
.x5a{left:257.332863pt;}
.x2a{left:263.655960pt;}
.x2b{left:267.755984pt;}
.x1b{left:273.802388pt;}
.x5{left:280.885333pt;}
.x5b{left:293.622144pt;}
.x49{left:296.399432pt;}
.x40{left:298.439170pt;}
.x4a{left:300.469802pt;}
.x7{left:302.441333pt;}
.x2f{left:303.469171pt;}
.x51{left:304.623683pt;}
.xf{left:306.293504pt;}
.x36{left:319.332665pt;}
.x3f{left:320.996237pt;}
.x50{left:327.139158pt;}
.xb{left:407.810667pt;}
.x65{left:421.090667pt;}
.x30{left:435.105447pt;}
.x52{left:437.365687pt;}
.x18{left:445.356000pt;}
.x1e{left:485.945333pt;}
.x3c{left:521.460000pt;}
}




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