
    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_25627816c29af16dba8fa6ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.027000;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_01cb80c6239ffbc66631ed91.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_859b1a35a182f71dc88e621a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5e675106821495dd98b738f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.587000;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_5ae664b1f04c29547453fc33.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.789000;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_8a9e3bd0f7485752c35a89e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.253000;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_50aeefaf93493733f0a01877.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_12fddc94111a74e605096197.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689000;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_3571f062cd81200ce51fead4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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_c4ded67b942cbc85ac867cd1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.709000;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_231762726301db430f415eaa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_bfae5399feb1f0c4f21c4b92.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.579000;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_b571737b1176648ae2275a22.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_982c485c03168badf904f1f0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.909000;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_85da72c7747c2959decfdb37.woff2')format("woff");}.fff{font-family:fff;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b21130e9ceaab91d3663f073.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.110000;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;}
.mb{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);}
.md{transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.259987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259987,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.259987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259987,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.259991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259991,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.259993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259993,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.259993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259993,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.259999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259999,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.278729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278729,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.278742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278742,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-5.241204px;}
.ls15{letter-spacing:-4.901673px;}
.ls17{letter-spacing:-4.562142px;}
.ls2c{letter-spacing:-4.222612px;}
.ls13{letter-spacing:-3.684104px;}
.ls18{letter-spacing:-3.543551px;}
.ls21{letter-spacing:-3.204020px;}
.ls14{letter-spacing:-2.864490px;}
.ls20{letter-spacing:-2.859708px;}
.ls1b{letter-spacing:-2.520177px;}
.ls1f{letter-spacing:-2.180647px;}
.ls16{letter-spacing:-1.841116px;}
.ls1a{letter-spacing:-1.501586px;}
.ls19{letter-spacing:-0.822525px;}
.ls10{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008070px;}
.ls25{letter-spacing:0.034430px;}
.ls45{letter-spacing:0.061210px;}
.ls5{letter-spacing:0.068862px;}
.lsc{letter-spacing:0.076514px;}
.ls4b{letter-spacing:0.077708px;}
.ls31{letter-spacing:0.081296px;}
.ls27{letter-spacing:0.103291px;}
.ls37{letter-spacing:0.138681px;}
.ls26{letter-spacing:0.198931px;}
.ls6{letter-spacing:0.223801px;}
.ls2b{letter-spacing:0.277363px;}
.ls2a{letter-spacing:0.497340px;}
.ls1d{letter-spacing:0.540380px;}
.ls1c{letter-spacing:1.219441px;}
.ls1{letter-spacing:3.724020px;}
.ls11{letter-spacing:5.146664px;}
.lse{letter-spacing:5.336846px;}
.ls30{letter-spacing:7.986140px;}
.ls47{letter-spacing:10.000118px;}
.ls46{letter-spacing:10.340597px;}
.ls36{letter-spacing:10.606742px;}
.ls3d{letter-spacing:11.101891px;}
.ls43{letter-spacing:11.411765px;}
.ls3c{letter-spacing:11.427067px;}
.ls42{letter-spacing:11.618347px;}
.ls9{letter-spacing:11.672068px;}
.ls44{letter-spacing:11.756069px;}
.ls32{letter-spacing:11.893132px;}
.ls8{letter-spacing:11.994858px;}
.ls48{letter-spacing:12.199188px;}
.ls2f{letter-spacing:12.223099px;}
.ls34{letter-spacing:12.242227px;}
.ls4a{letter-spacing:12.502061px;}
.ls23{letter-spacing:12.892596px;}
.lsf{letter-spacing:12.915226px;}
.ls22{letter-spacing:13.222562px;}
.ls3b{letter-spacing:13.389600px;}
.ls2e{letter-spacing:13.877712px;}
.lsa{letter-spacing:13.957418px;}
.ls35{letter-spacing:14.183768px;}
.ls49{letter-spacing:14.202896px;}
.lsb{letter-spacing:14.366285px;}
.ls29{letter-spacing:14.838918px;}
.ls24{letter-spacing:14.858047px;}
.ls7{letter-spacing:15.592885px;}
.ls33{letter-spacing:16.144437px;}
.ls2d{letter-spacing:17.779922px;}
.ls3a{letter-spacing:18.297845px;}
.ls3{letter-spacing:20.814746px;}
.ls39{letter-spacing:21.070021px;}
.ls2{letter-spacing:21.144233px;}
.ls4{letter-spacing:24.521037px;}
.ls12{letter-spacing:24.553316px;}
.ls38{letter-spacing:24.977013px;}
.ls28{letter-spacing:33.696816px;}
.lsd{letter-spacing:36.492358px;}
.ls3e{letter-spacing:91.615469px;}
.ls40{letter-spacing:194.910494px;}
.ls3f{letter-spacing:212.776046px;}
.ls41{letter-spacing:267.726965px;}
.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;}
}
.ws197{word-spacing:-12.540317px;}
.wsf1{word-spacing:-12.247009px;}
.wsf{word-spacing:-6.654788px;}
.ws3{word-spacing:-3.753908px;}
.ws133{word-spacing:-0.588201px;}
.ws5{word-spacing:-0.063363px;}
.ws1ad{word-spacing:-0.059776px;}
.ws36{word-spacing:-0.047821px;}
.ws1d{word-spacing:-0.043039px;}
.ws16{word-spacing:-0.038256px;}
.ws6e{word-spacing:0.000000px;}
.wsb8{word-spacing:0.774703px;}
.ws131{word-spacing:1.453764px;}
.ws6b{word-spacing:1.793295px;}
.ws6a{word-spacing:2.132826px;}
.ws132{word-spacing:2.472356px;}
.ws6c{word-spacing:2.811887px;}
.ws67{word-spacing:2.816669px;}
.ws6d{word-spacing:3.156199px;}
.wsb7{word-spacing:3.495730px;}
.ws2a{word-spacing:3.641066px;}
.wsb6{word-spacing:4.174791px;}
.wsb5{word-spacing:4.514321px;}
.ws68{word-spacing:4.853852px;}
.ws69{word-spacing:5.193382px;}
.wsab{word-spacing:7.658851px;}
.ws42{word-spacing:8.010051px;}
.ws41{word-spacing:8.622162px;}
.ws4f{word-spacing:8.655637px;}
.ws189{word-spacing:8.672635px;}
.ws17f{word-spacing:8.691763px;}
.ws153{word-spacing:8.904307px;}
.ws1a0{word-spacing:8.936602px;}
.ws165{word-spacing:9.100374px;}
.ws190{word-spacing:9.101102px;}
.ws40{word-spacing:9.253402px;}
.ws4e{word-spacing:9.282095px;}
.ws3d{word-spacing:9.602497px;}
.ws194{word-spacing:9.636686px;}
.ws12f{word-spacing:9.663466px;}
.wsad{word-spacing:9.801187px;}
.ws12e{word-spacing:9.843269px;}
.ws130{word-spacing:9.858571px;}
.wsdc{word-spacing:9.894206px;}
.ws14b{word-spacing:9.908553px;}
.wsac{word-spacing:9.973339px;}
.ws13b{word-spacing:9.994631px;}
.ws16c{word-spacing:9.999413px;}
.wsaf{word-spacing:10.000118px;}
.wsae{word-spacing:10.053677px;}
.ws138{word-spacing:10.128530px;}
.ws1f{word-spacing:10.225971px;}
.ws49{word-spacing:10.233737px;}
.ws11d{word-spacing:10.332946px;}
.wsd9{word-spacing:10.472843px;}
.ws61{word-spacing:10.511100px;}
.ws10e{word-spacing:10.531877px;}
.ws173{word-spacing:10.535010px;}
.ws3f{word-spacing:10.573267px;}
.ws11e{word-spacing:10.688726px;}
.wsb0{word-spacing:10.730808px;}
.wsdb{word-spacing:10.735859px;}
.ws186{word-spacing:10.807320px;}
.ws23{word-spacing:10.837119px;}
.ws88{word-spacing:10.855412px;}
.ws172{word-spacing:10.893669px;}
.ws15b{word-spacing:10.908016px;}
.ws137{word-spacing:10.912798px;}
.ws136{word-spacing:10.946273px;}
.ws146{word-spacing:11.065826px;}
.ws12b{word-spacing:11.101891px;}
.ws171{word-spacing:11.161468px;}
.ws184{word-spacing:11.193706px;}
.ws7c{word-spacing:11.223636px;}
.ws128{word-spacing:11.266392px;}
.ws129{word-spacing:11.285520px;}
.ws34{word-spacing:11.304932px;}
.ws170{word-spacing:11.319278px;}
.ws10c{word-spacing:11.327602px;}
.ws114{word-spacing:11.339078px;}
.ws10f{word-spacing:11.342904px;}
.ws10d{word-spacing:11.384986px;}
.ws124{word-spacing:11.392637px;}
.ws123{word-spacing:11.400288px;}
.ws126{word-spacing:11.423242px;}
.ws113{word-spacing:11.442370px;}
.ws27{word-spacing:11.456875px;}
.ws107{word-spacing:11.507405px;}
.wsec{word-spacing:11.539256px;}
.ws110{word-spacing:11.560963px;}
.ws16d{word-spacing:11.567948px;}
.ws111{word-spacing:11.568614px;}
.ws115{word-spacing:11.576266px;}
.ws118{word-spacing:11.580091px;}
.ws119{word-spacing:11.583917px;}
.wsbf{word-spacing:11.591859px;}
.ws154{word-spacing:11.601423px;}
.ws127{word-spacing:11.614522px;}
.ws116{word-spacing:11.618347px;}
.ws28{word-spacing:11.646245px;}
.ws125{word-spacing:11.648952px;}
.ws12a{word-spacing:11.740766px;}
.ws15{word-spacing:11.759894px;}
.wsda{word-spacing:11.802272px;}
.ws19d{word-spacing:11.824930px;}
.ws185{word-spacing:11.840232px;}
.ws4d{word-spacing:11.850093px;}
.wsbd{word-spacing:11.854875px;}
.ws4a{word-spacing:11.859658px;}
.ws11c{word-spacing:11.886139px;}
.ws18{word-spacing:11.928221px;}
.ws31{word-spacing:12.012685px;}
.ws1a4{word-spacing:12.031512px;}
.ws64{word-spacing:12.085070px;}
.ws48{word-spacing:12.141803px;}
.ws196{word-spacing:12.146280px;}
.ws4c{word-spacing:12.151367px;}
.wsf2{word-spacing:12.189624px;}
.ws32{word-spacing:12.218317px;}
.ws183{word-spacing:12.303130px;}
.ws192{word-spacing:12.326083px;}
.ws62{word-spacing:12.329909px;}
.wse{word-spacing:12.383467px;}
.ws14{word-spacing:12.406421px;}
.ws12{word-spacing:12.417898px;}
.ws5d{word-spacing:12.421723px;}
.ws101{word-spacing:12.428730px;}
.ws188{word-spacing:12.456154px;}
.ws4b{word-spacing:12.471769px;}
.ws1a3{word-spacing:12.475282px;}
.ws16b{word-spacing:12.495680px;}
.ws177{word-spacing:12.500462px;}
.ws195{word-spacing:12.521189px;}
.ws17e{word-spacing:12.536491px;}
.ws63{word-spacing:12.555619px;}
.ws13{word-spacing:12.563270px;}
.ws81{word-spacing:12.581758px;}
.ws5e{word-spacing:12.582398px;}
.ws18a{word-spacing:12.601526px;}
.ws19f{word-spacing:12.609178px;}
.ws18f{word-spacing:12.613003px;}
.ws19{word-spacing:12.628306px;}
.wsb3{word-spacing:12.632131px;}
.ws18c{word-spacing:12.666562px;}
.wsb{word-spacing:12.670387px;}
.ws169{word-spacing:12.672618px;}
.ws5f{word-spacing:12.685690px;}
.wsd{word-spacing:12.708643px;}
.wsb4{word-spacing:12.735422px;}
.ws187{word-spacing:12.743074px;}
.ws74{word-spacing:12.744350px;}
.ws11{word-spacing:12.750725px;}
.ws182{word-spacing:12.777504px;}
.ws22{word-spacing:12.803984px;}
.ws10{word-spacing:12.808109px;}
.ws85{word-spacing:12.839992px;}
.ws80{word-spacing:12.844774px;}
.wsdd{word-spacing:12.854339px;}
.ws5c{word-spacing:12.892272px;}
.ws11b{word-spacing:12.896098px;}
.ws1a5{word-spacing:12.915226px;}
.ws7f{word-spacing:12.926070px;}
.ws17{word-spacing:12.987912px;}
.wsf9{word-spacing:12.997802px;}
.wsc{word-spacing:12.999389px;}
.wsf8{word-spacing:13.093445px;}
.ws56{word-spacing:13.155612px;}
.ws29{word-spacing:13.156900px;}
.ws13c{word-spacing:13.169958px;}
.ws7e{word-spacing:13.189087px;}
.ws199{word-spacing:13.198320px;}
.ws50{word-spacing:13.212998px;}
.ws178{word-spacing:13.241690px;}
.ws10a{word-spacing:13.244227px;}
.wscc{word-spacing:13.284729px;}
.wsc5{word-spacing:13.308640px;}
.ws79{word-spacing:13.351679px;}
.ws10b{word-spacing:13.366646px;}
.ws15e{word-spacing:13.409064px;}
.ws19b{word-spacing:13.469938px;}
.wsc6{word-spacing:13.490361px;}
.ws1c2{word-spacing:13.551129px;}
.ws84{word-spacing:13.562092px;}
.ws2b{word-spacing:13.686275px;}
.wsc1{word-spacing:13.710338px;}
.ws2d{word-spacing:13.746529px;}
.ws8c{word-spacing:13.777288px;}
.wsf5{word-spacing:13.786852px;}
.wsbb{word-spacing:13.810763px;}
.ws168{word-spacing:13.892059px;}
.ws17b{word-spacing:13.920751px;}
.wsc4{word-spacing:13.935098px;}
.ws83{word-spacing:13.939880px;}
.ws162{word-spacing:13.992483px;}
.ws167{word-spacing:14.030740px;}
.ws103{word-spacing:14.068997px;}
.ws15d{word-spacing:14.092908px;}
.wse3{word-spacing:14.102472px;}
.ws166{word-spacing:14.107254px;}
.wsce{word-spacing:14.126382px;}
.ws45{word-spacing:14.159857px;}
.wsdf{word-spacing:14.169422px;}
.ws140{word-spacing:14.183768px;}
.wsd6{word-spacing:14.188550px;}
.ws87{word-spacing:14.217243px;}
.wsd7{word-spacing:14.222025px;}
.wsc2{word-spacing:14.274628px;}
.ws1bf{word-spacing:14.298324px;}
.ws2e{word-spacing:14.306031px;}
.ws1b1{word-spacing:14.334189px;}
.ws82{word-spacing:14.379835px;}
.ws1a1{word-spacing:14.456942px;}
.ws102{word-spacing:14.489824px;}
.ws39{word-spacing:14.504170px;}
.ws144{word-spacing:14.551991px;}
.ws142{word-spacing:14.566338px;}
.ws96{word-spacing:14.571120px;}
.ws1b4{word-spacing:14.579269px;}
.ws19a{word-spacing:14.636746px;}
.wsba{word-spacing:14.661980px;}
.ws193{word-spacing:14.686478px;}
.ws16a{word-spacing:14.719365px;}
.wsb1{word-spacing:14.759165px;}
.ws8a{word-spacing:14.810226px;}
.wsb2{word-spacing:14.812723px;}
.ws8b{word-spacing:14.815008px;}
.wsbe{word-spacing:14.867611px;}
.ws143{word-spacing:14.872393px;}
.ws59{word-spacing:15.116281px;}
.ws14f{word-spacing:15.140192px;}
.ws17a{word-spacing:15.197577px;}
.ws8d{word-spacing:15.283656px;}
.ws164{word-spacing:15.460594px;}
.ws174{word-spacing:15.470158px;}
.ws65{word-spacing:15.561018px;}
.ws1b8{word-spacing:15.661207px;}
.wsf3{word-spacing:15.747521px;}
.ws53{word-spacing:15.780996px;}
.ws3b{word-spacing:15.785778px;}
.wsf7{word-spacing:15.876638px;}
.ws66{word-spacing:15.910113px;}
.ws7a{word-spacing:15.919677px;}
.wsc7{word-spacing:15.943588px;}
.ws18d{word-spacing:15.948926px;}
.ws158{word-spacing:15.972281px;}
.ws1bb{word-spacing:15.989973px;}
.wsb9{word-spacing:16.063141px;}
.ws161{word-spacing:16.096616px;}
.wsf4{word-spacing:16.115744px;}
.ws148{word-spacing:16.177912px;}
.ws14a{word-spacing:16.287901px;}
.ws2c{word-spacing:16.333149px;}
.ws191{word-spacing:16.377394px;}
.ws7d{word-spacing:16.474403px;}
.ws3a{word-spacing:16.593956px;}
.ws5a{word-spacing:17.004792px;}
.wsa2{word-spacing:17.019565px;}
.ws147{word-spacing:17.029129px;}
.ws3c{word-spacing:17.129554px;}
.ws16e{word-spacing:17.225196px;}
.ws24{word-spacing:17.383291px;}
.ws198{word-spacing:17.391178px;}
.ws6f{word-spacing:17.406917px;}
.wse8{word-spacing:17.416481px;}
.ws16f{word-spacing:17.459520px;}
.ws1bd{word-spacing:17.466430px;}
.ws109{word-spacing:17.486818px;}
.ws14d{word-spacing:17.507341px;}
.ws1b9{word-spacing:17.687600px;}
.wsd4{word-spacing:17.712972px;}
.ws1ab{word-spacing:17.729443px;}
.ws71{word-spacing:17.751229px;}
.ws1b7{word-spacing:17.789219px;}
.ws1c0{word-spacing:17.807151px;}
.ws1be{word-spacing:17.813129px;}
.ws1c3{word-spacing:17.831061px;}
.ws26{word-spacing:17.835196px;}
.ws100{word-spacing:17.837308px;}
.ws1ba{word-spacing:17.843017px;}
.ws1b3{word-spacing:17.854972px;}
.ws25{word-spacing:17.856715px;}
.ws1bc{word-spacing:17.872904px;}
.ws17d{word-spacing:17.877029px;}
.ws1b0{word-spacing:17.890837px;}
.ws70{word-spacing:17.894693px;}
.ws1c4{word-spacing:17.896815px;}
.ws1ae{word-spacing:17.908770px;}
.ws1b2{word-spacing:17.914747px;}
.wse7{word-spacing:17.966425px;}
.ws1af{word-spacing:17.980500px;}
.ws1ac{word-spacing:18.010388px;}
.ws13f{word-spacing:18.042939px;}
.ws76{word-spacing:18.100324px;}
.ws1a7{word-spacing:18.106029px;}
.ws1b5{word-spacing:18.117984px;}
.ws1a{word-spacing:18.119251px;}
.ws1c{word-spacing:18.136466px;}
.ws106{word-spacing:18.138581px;}
.ws18e{word-spacing:18.152472px;}
.ws19c{word-spacing:18.206030px;}
.ws1b{word-spacing:18.213936px;}
.ws77{word-spacing:18.258134px;}
.ws1aa{word-spacing:18.303289px;}
.ws20{word-spacing:18.308620px;}
.wsbc{word-spacing:18.411162px;}
.ws139{word-spacing:18.420726px;}
.ws108{word-spacing:18.431741px;}
.ws1e{word-spacing:18.437736px;}
.ws8f{word-spacing:18.439855px;}
.ws12d{word-spacing:18.542683px;}
.ws13d{word-spacing:18.698089px;}
.ws155{word-spacing:18.717218px;}
.wse2{word-spacing:18.726782px;}
.wscb{word-spacing:18.793732px;}
.ws156{word-spacing:18.932413px;}
.ws157{word-spacing:19.018491px;}
.ws13e{word-spacing:19.123698px;}
.ws9a{word-spacing:19.147608px;}
.ws98{word-spacing:19.228905px;}
.ws0{word-spacing:19.275487px;}
.wsef{word-spacing:19.281508px;}
.ws141{word-spacing:19.286290px;}
.ws13a{word-spacing:19.310201px;}
.ws1a8{word-spacing:19.397430px;}
.wsaa{word-spacing:19.568435px;}
.ws1a9{word-spacing:19.574966px;}
.ws95{word-spacing:19.874491px;}
.ws9c{word-spacing:19.879273px;}
.wsee{word-spacing:19.893619px;}
.ws72{word-spacing:20.075340px;}
.ws97{word-spacing:20.123161px;}
.ws181{word-spacing:20.329238px;}
.ws99{word-spacing:20.783094px;}
.ws7{word-spacing:20.802073px;}
.wsa1{word-spacing:20.878736px;}
.wsa{word-spacing:21.049189px;}
.ws6{word-spacing:21.068198px;}
.ws9{word-spacing:21.156906px;}
.ws8{word-spacing:21.232941px;}
.ws5b{word-spacing:21.293290px;}
.ws4{word-spacing:21.302641px;}
.wsd5{word-spacing:21.739518px;}
.wsf6{word-spacing:21.859071px;}
.ws159{word-spacing:21.959495px;}
.wse6{word-spacing:21.997752px;}
.wse4{word-spacing:22.050355px;}
.ws21{word-spacing:22.203614px;}
.ws105{word-spacing:22.284679px;}
.ws17c{word-spacing:22.307074px;}
.wsed{word-spacing:22.337283px;}
.ws1a2{word-spacing:22.517482px;}
.ws145{word-spacing:22.566824px;}
.wse5{word-spacing:22.595517px;}
.ws19e{word-spacing:22.796750px;}
.ws3e{word-spacing:23.016344px;}
.wsf0{word-spacing:23.049818px;}
.ws9f{word-spacing:23.155025px;}
.wsa0{word-spacing:23.470645px;}
.ws35{word-spacing:23.829304px;}
.ws9e{word-spacing:24.125795px;}
.ws52{word-spacing:24.326644px;}
.ws51{word-spacing:24.331427px;}
.ws75{word-spacing:24.470108px;}
.ws12c{word-spacing:24.617736px;}
.ws37{word-spacing:24.690086px;}
.ws93{word-spacing:24.709214px;}
.wsfc{word-spacing:24.819203px;}
.wsfa{word-spacing:24.948320px;}
.wsfb{word-spacing:24.967449px;}
.ws175{word-spacing:25.287851px;}
.ws176{word-spacing:25.297415px;}
.ws90{word-spacing:25.345236px;}
.wsa5{word-spacing:25.780409px;}
.ws104{word-spacing:25.847359px;}
.ws15f{word-spacing:25.880833px;}
.ws1a6{word-spacing:26.201534px;}
.ws94{word-spacing:26.665101px;}
.ws58{word-spacing:26.727269px;}
.wsde{word-spacing:26.765526px;}
.wse9{word-spacing:27.081146px;}
.ws1{word-spacing:27.114192px;}
.ws2{word-spacing:27.162610px;}
.wsa3{word-spacing:27.219827px;}
.ws57{word-spacing:27.243738px;}
.ws89{word-spacing:27.463715px;}
.wsa8{word-spacing:27.597615px;}
.wscd{word-spacing:27.626307px;}
.ws150{word-spacing:27.674128px;}
.wsca{word-spacing:27.745860px;}
.ws152{word-spacing:27.764989px;}
.ws8e{word-spacing:27.851067px;}
.ws46{word-spacing:27.898888px;}
.ws60{word-spacing:27.984465px;}
.ws151{word-spacing:28.032787px;}
.ws78{word-spacing:28.042352px;}
.ws47{word-spacing:28.219290px;}
.wsc8{word-spacing:28.401011px;}
.wsd2{word-spacing:28.448832px;}
.wsd8{word-spacing:28.673592px;}
.ws7b{word-spacing:28.778798px;}
.ws2f{word-spacing:28.884005px;}
.ws38{word-spacing:28.965301px;}
.ws180{word-spacing:28.998048px;}
.wsc9{word-spacing:29.615669px;}
.ws14c{word-spacing:29.845211px;}
.wsc3{word-spacing:29.849993px;}
.wsd1{word-spacing:29.921725px;}
.wsa4{word-spacing:29.940853px;}
.wseb{word-spacing:30.036496px;}
.wsea{word-spacing:30.543400px;}
.ws30{word-spacing:30.572093px;}
.wsa9{word-spacing:30.648607px;}
.ws135{word-spacing:30.787289px;}
.ws73{word-spacing:30.930752px;}
.wsa7{word-spacing:31.059869px;}
.ws14e{word-spacing:31.107691px;}
.ws92{word-spacing:31.251154px;}
.ws134{word-spacing:31.504607px;}
.wsfe{word-spacing:31.676763px;}
.ws160{word-spacing:31.791534px;}
.wsff{word-spacing:31.848919px;}
.ws15a{word-spacing:32.226707px;}
.ws163{word-spacing:32.341478px;}
.ws54{word-spacing:32.542327px;}
.ws55{word-spacing:32.829254px;}
.ws179{word-spacing:32.924896px;}
.wsa6{word-spacing:33.632650px;}
.wse1{word-spacing:34.522124px;}
.ws18b{word-spacing:34.893298px;}
.ws149{word-spacing:35.268135px;}
.ws9d{word-spacing:35.373342px;}
.ws43{word-spacing:35.468984px;}
.wscf{word-spacing:35.521587px;}
.ws9b{word-spacing:35.531152px;}
.wsd0{word-spacing:35.760693px;}
.wsd3{word-spacing:36.248470px;}
.ws44{word-spacing:36.521050px;}
.ws86{word-spacing:36.664514px;}
.wsc0{word-spacing:36.726682px;}
.ws33{word-spacing:37.085341px;}
.wse0{word-spacing:37.874390px;}
.ws15c{word-spacing:38.606055px;}
.ws91{word-spacing:43.335571px;}
.wsfd{word-spacing:59.303070px;}
.ws117{word-spacing:63.906648px;}
.ws112{word-spacing:95.288045px;}
.ws121{word-spacing:124.745165px;}
.ws122{word-spacing:124.760467px;}
.ws120{word-spacing:124.879061px;}
.ws1c1{word-spacing:192.429612px;}
.ws1b6{word-spacing:222.317412px;}
.ws11f{word-spacing:224.226067px;}
.ws11a{word-spacing:250.006786px;}
._1b{margin-left:-1983.821384px;}
._2c{margin-left:-15.811024px;}
._1c{margin-left:-12.117892px;}
._1{margin-left:-4.486753px;}
._a{margin-left:-3.357011px;}
._0{margin-left:-2.332143px;}
._3{margin-left:-1.273596px;}
._4{width:1.698238px;}
._14{width:2.864490px;}
._15{width:4.083930px;}
._11{width:9.717268px;}
._5{width:11.618347px;}
._9{width:12.807739px;}
._6{width:13.818947px;}
._b{width:14.960217px;}
._e{width:16.511129px;}
._f{width:18.049294px;}
._7{width:19.332939px;}
._8{width:21.169995px;}
._18{width:22.815495px;}
._10{width:24.460544px;}
._2{width:25.992504px;}
._17{width:27.130897px;}
._13{width:29.123111px;}
._16{width:31.148388px;}
._c{width:32.408427px;}
._1a{width:33.444106px;}
._19{width:35.154049px;}
._12{width:37.133162px;}
._d{width:38.242614px;}
._29{width:52.390308px;}
._2a{width:53.584243px;}
._1d{width:63.726845px;}
._23{width:92.105146px;}
._20{width:96.198538px;}
._1f{width:102.851256px;}
._1e{width:108.784762px;}
._21{width:121.053461px;}
._28{width:124.496501px;}
._24{width:157.874861px;}
._26{width:245.152099px;}
._22{width:279.479208px;}
._27{width:281.958197px;}
._25{width:317.004518px;}
._2b{width:791.877127px;}
.fc3{color:rgb(0,0,102);}
.fc2{color:rgb(72,118,140);}
.fc1{color:rgb(255,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:26.761800px;}
.fsf{font-size:26.778600px;}
.fs2{font-size:29.887800px;}
.fsa{font-size:30.126000px;}
.fs10{font-size:33.473400px;}
.fse{font-size:35.864400px;}
.fsd{font-size:35.868000px;}
.fs7{font-size:38.256000px;}
.fs5{font-size:41.842800px;}
.fs9{font-size:43.038600px;}
.fs4{font-size:44.327400px;}
.fsb{font-size:47.821200px;}
.fs8{font-size:53.797800px;}
.fs0{font-size:57.384600px;}
.fs11{font-size:59.775600px;}
.fs3{font-size:63.363000px;}
.fs12{font-size:65.754000px;}
.fs1{font-size:80.697000px;}
.fsc{font-size:83.685600px;}
.y0{bottom:0.000000px;}
.y250{bottom:2.040750px;}
.y1c3{bottom:2.125800px;}
.y11{bottom:2.126550px;}
.y5c{bottom:19.048950px;}
.y5a{bottom:40.819254px;}
.y102{bottom:40.904374px;}
.y1ee{bottom:40.904921px;}
.y17f{bottom:41.503908px;}
.y206{bottom:41.504232px;}
.y141{bottom:41.513111px;}
.y2e8{bottom:42.272272px;}
.y1dc{bottom:48.307758px;}
.y90{bottom:48.909190px;}
.yc5{bottom:49.663371px;}
.y59{bottom:53.745000px;}
.y101{bottom:53.745274px;}
.y1ed{bottom:53.745547px;}
.y17e{bottom:57.235888px;}
.y205{bottom:57.236212px;}
.y2e7{bottom:57.239112px;}
.y140{bottom:57.245090px;}
.y1d8{bottom:61.147428px;}
.y1db{bottom:61.148384px;}
.y8f{bottom:64.641170px;}
.yc4{bottom:65.395350px;}
.y100{bottom:66.586174px;}
.y2e6{bottom:72.205952px;}
.y17d{bottom:72.967867px;}
.y204{bottom:72.968191px;}
.y13f{bottom:72.977069px;}
.y1d7{bottom:73.988054px;}
.y1da{bottom:73.989011px;}
.yff{bottom:79.426800px;}
.y8e{bottom:80.288266px;}
.yc3{bottom:81.067752px;}
.y56{bottom:81.468601px;}
.y52{bottom:81.808053px;}
.y1d6{bottom:86.913800px;}
.y1d9{bottom:86.914757px;}
.y2e5{bottom:87.087910px;}
.y17c{bottom:88.614963px;}
.y203{bottom:88.615288px;}
.y13e{bottom:88.624166px;}
.y55{bottom:94.309228px;}
.y8d{bottom:96.020246px;}
.y50{bottom:96.179550px;}
.yc2{bottom:96.799731px;}
.y51{bottom:97.455150px;}
.y4f{bottom:97.461505px;}
.y1d5{bottom:99.754427px;}
.y2e4{bottom:102.054750px;}
.y17b{bottom:104.346943px;}
.y202{bottom:104.347267px;}
.y13d{bottom:104.356145px;}
.y54{bottom:107.149854px;}
.y8c{bottom:111.667342px;}
.yc1{bottom:112.446828px;}
.y1d1{bottom:112.594097px;}
.y1d4{bottom:112.595053px;}
.y4e{bottom:113.193484px;}
.y2e3{bottom:117.021590px;}
.y17a{bottom:119.994039px;}
.y201{bottom:119.994363px;}
.y13c{bottom:120.003242px;}
.y53{bottom:120.075600px;}
.y1d0{bottom:125.434723px;}
.y1d3{bottom:125.435680px;}
.y8b{bottom:127.399321px;}
.yc0{bottom:128.178807px;}
.y4d{bottom:128.925463px;}
.y2e2{bottom:131.988430px;}
.y179{bottom:135.726019px;}
.y200{bottom:135.726343px;}
.y13b{bottom:135.735221px;}
.y1cf{bottom:138.275350px;}
.y1d2{bottom:138.276306px;}
.y30d{bottom:139.306339px;}
.y8a{bottom:143.046418px;}
.ybf{bottom:143.825904px;}
.y4c{bottom:144.572560px;}
.y2e1{bottom:146.870388px;}
.y1ce{bottom:151.115976px;}
.y178{bottom:151.373115px;}
.y1ff{bottom:151.373439px;}
.y13a{bottom:151.382318px;}
.y89{bottom:158.778397px;}
.ybe{bottom:159.557883px;}
.y4b{bottom:160.304539px;}
.y2e0{bottom:161.837228px;}
.y1ca{bottom:163.955646px;}
.y1cd{bottom:163.956602px;}
.y177{bottom:167.105095px;}
.y1fe{bottom:167.105419px;}
.y139{bottom:167.114297px;}
.y88{bottom:174.425494px;}
.ybd{bottom:175.204980px;}
.y3d{bottom:175.948049px;}
.y4a{bottom:175.951636px;}
.y1c9{bottom:176.796272px;}
.y1cc{bottom:176.797229px;}
.y2df{bottom:176.804068px;}
.y176{bottom:182.752191px;}
.y1fd{bottom:182.752515px;}
.y138{bottom:182.761394px;}
.y1c8{bottom:189.722018px;}
.y1cb{bottom:189.722975px;}
.y87{bottom:190.157473px;}
.ybc{bottom:190.936959px;}
.y3c{bottom:191.680028px;}
.y49{bottom:191.683615px;}
.y2de{bottom:191.686025px;}
.y272{bottom:197.807827px;}
.y22f{bottom:197.812973px;}
.y175{bottom:198.484170px;}
.y1fc{bottom:198.484495px;}
.y137{bottom:198.493373px;}
.y30c{bottom:200.193765px;}
.y86{bottom:205.804570px;}
.ybb{bottom:206.584055px;}
.y2a7{bottom:206.648083px;}
.y2dd{bottom:206.652865px;}
.y3b{bottom:207.327125px;}
.y48{bottom:207.330712px;}
.y1c7{bottom:209.451594px;}
.y271{bottom:209.798214px;}
.y22e{bottom:213.460070px;}
.y174{bottom:214.131267px;}
.y1fb{bottom:214.131591px;}
.y136{bottom:214.140470px;}
.y85{bottom:221.536549px;}
.y2a6{bottom:221.614923px;}
.y2dc{bottom:221.619705px;}
.y270{bottom:221.703481px;}
.yba{bottom:222.316035px;}
.y3a{bottom:223.059104px;}
.y47{bottom:223.062691px;}
.y30b{bottom:227.831013px;}
.y1c5{bottom:229.096050px;}
.y22d{bottom:229.192049px;}
.y173{bottom:229.863246px;}
.y1fa{bottom:229.863570px;}
.y135{bottom:229.872449px;}
.y1c6{bottom:232.582650px;}
.y26f{bottom:233.693868px;}
.y2a5{bottom:236.581763px;}
.y2db{bottom:236.586545px;}
.y84{bottom:237.183646px;}
.yb9{bottom:237.963131px;}
.y39{bottom:238.706201px;}
.y46{bottom:238.709787px;}
.y22c{bottom:244.924028px;}
.y172{bottom:245.510343px;}
.y1f9{bottom:245.510667px;}
.y134{bottom:245.519546px;}
.y26e{bottom:245.599135px;}
.y30a{bottom:245.774154px;}
.y1c2{bottom:250.356000px;}
.y1c1{bottom:250.356821px;}
.y2a4{bottom:251.463721px;}
.y2da{bottom:251.468503px;}
.y1c4{bottom:252.481800px;}
.y83{bottom:252.915625px;}
.yb8{bottom:253.695111px;}
.y38{bottom:254.438180px;}
.y45{bottom:254.441767px;}
.y26d{bottom:257.589522px;}
.y22b{bottom:260.571125px;}
.y171{bottom:261.242322px;}
.y1f8{bottom:261.242646px;}
.y133{bottom:261.251525px;}
.y1c0{bottom:263.197447px;}
.y2a3{bottom:266.430561px;}
.y2d9{bottom:266.435343px;}
.y82{bottom:268.647604px;}
.yb7{bottom:269.342207px;}
.y26c{bottom:269.494789px;}
.y37{bottom:270.085277px;}
.y44{bottom:270.088863px;}
.y309{bottom:273.411403px;}
.y1bf{bottom:276.038074px;}
.y22a{bottom:276.303104px;}
.y170{bottom:276.889419px;}
.y1f7{bottom:276.889743px;}
.y132{bottom:276.898621px;}
.y2a2{bottom:281.397401px;}
.y2d8{bottom:281.402183px;}
.y26b{bottom:281.485176px;}
.y81{bottom:284.294701px;}
.yb6{bottom:285.074187px;}
.y36{bottom:285.817256px;}
.y43{bottom:285.820843px;}
.y1be{bottom:288.878700px;}
.y229{bottom:291.950201px;}
.y16f{bottom:292.621398px;}
.y1f6{bottom:292.621722px;}
.y131{bottom:292.630601px;}
.y26a{bottom:293.475563px;}
.y2a1{bottom:296.364241px;}
.y2d7{bottom:296.369023px;}
.y80{bottom:300.026680px;}
.yb5{bottom:300.721283px;}
.y308{bottom:301.048651px;}
.y35{bottom:301.464353px;}
.y42{bottom:301.467939px;}
.y269{bottom:305.380830px;}
.y228{bottom:307.682180px;}
.y16e{bottom:308.268495px;}
.y1f5{bottom:308.268819px;}
.y130{bottom:308.277697px;}
.y2a0{bottom:311.246198px;}
.y2d6{bottom:311.250980px;}
.y7f{bottom:315.673777px;}
.yb4{bottom:316.453262px;}
.y34{bottom:317.196332px;}
.y41{bottom:317.199919px;}
.y268{bottom:317.371217px;}
.y1a0{bottom:321.454856px;}
.y227{bottom:323.329277px;}
.y16d{bottom:324.000474px;}
.y1f4{bottom:324.000798px;}
.y12f{bottom:324.009677px;}
.y29f{bottom:326.213038px;}
.y2d5{bottom:326.217821px;}
.y307{bottom:328.685900px;}
.y267{bottom:329.276484px;}
.y7e{bottom:331.405756px;}
.yb3{bottom:332.100359px;}
.y33{bottom:332.843429px;}
.y40{bottom:332.847015px;}
.y19f{bottom:337.101953px;}
.y226{bottom:339.061256px;}
.y16c{bottom:339.647571px;}
.y1f3{bottom:339.647895px;}
.y12e{bottom:339.656773px;}
.y29e{bottom:341.179878px;}
.y2d4{bottom:341.184661px;}
.y266{bottom:341.266871px;}
.y306{bottom:346.629041px;}
.y7d{bottom:347.052853px;}
.yb2{bottom:347.832338px;}
.y3f{bottom:348.578994px;}
.y1bd{bottom:352.152573px;}
.y19e{bottom:352.833932px;}
.y265{bottom:353.257258px;}
.y225{bottom:354.708353px;}
.y16b{bottom:355.379550px;}
.y1f2{bottom:355.379874px;}
.y12d{bottom:355.388753px;}
.y29d{bottom:356.146719px;}
.y2d3{bottom:356.151501px;}
.y7c{bottom:362.784832px;}
.yb1{bottom:363.479435px;}
.y32{bottom:364.223700px;}
.y3e{bottom:364.226091px;}
.y264{bottom:365.162525px;}
.y1bc{bottom:367.884552px;}
.y19d{bottom:368.481029px;}
.y224{bottom:370.440332px;}
.y1f1{bottom:371.026971px;}
.y29c{bottom:371.028676px;}
.y2d2{bottom:371.033458px;}
.y12c{bottom:371.035849px;}
.y16a{bottom:371.052587px;}
.y305{bottom:374.266290px;}
.y263{bottom:377.152912px;}
.y7b{bottom:378.431929px;}
.yb0{bottom:379.211414px;}
.y1bb{bottom:383.531649px;}
.y19c{bottom:384.213008px;}
.y29b{bottom:385.995516px;}
.y2d1{bottom:386.000298px;}
.y223{bottom:386.087428px;}
.y1f0{bottom:386.758950px;}
.y12b{bottom:386.767828px;}
.y169{bottom:386.784566px;}
.y262{bottom:389.058179px;}
.y304{bottom:392.209430px;}
.y7a{bottom:394.163908px;}
.yaf{bottom:394.858511px;}
.y1ba{bottom:399.263628px;}
.y19b{bottom:399.860105px;}
.y29a{bottom:400.962356px;}
.y2d0{bottom:400.967138px;}
.y261{bottom:401.048566px;}
.y222{bottom:401.819408px;}
.y12a{bottom:402.414925px;}
.y168{bottom:402.431663px;}
.y79{bottom:409.811005px;}
.yae{bottom:410.590490px;}
.y260{bottom:413.038952px;}
.y1b9{bottom:414.910725px;}
.y19a{bottom:415.592084px;}
.y299{bottom:415.844314px;}
.y2cf{bottom:415.849096px;}
.y221{bottom:417.466504px;}
.y129{bottom:418.146904px;}
.y167{bottom:418.163642px;}
.y303{bottom:419.846679px;}
.y25f{bottom:424.944220px;}
.y78{bottom:425.542984px;}
.yad{bottom:426.237587px;}
.y1b8{bottom:430.642704px;}
.y298{bottom:430.811154px;}
.y2ce{bottom:430.815936px;}
.y199{bottom:431.239181px;}
.y220{bottom:433.198484px;}
.y31{bottom:433.445458px;}
.y128{bottom:433.794001px;}
.y166{bottom:433.810738px;}
.y25e{bottom:436.934606px;}
.y302{bottom:437.789820px;}
.y77{bottom:441.190081px;}
.yac{bottom:441.969566px;}
.y297{bottom:445.777994px;}
.y2cd{bottom:445.782776px;}
.y1b7{bottom:446.289801px;}
.y198{bottom:446.971160px;}
.y30{bottom:447.732121px;}
.y25d{bottom:448.839874px;}
.y21{bottom:448.840542px;}
.y21f{bottom:448.845580px;}
.y127{bottom:449.525980px;}
.y165{bottom:449.542718px;}
.y301{bottom:455.732960px;}
.y76{bottom:456.922060px;}
.yab{bottom:457.616663px;}
.y296{bottom:460.744834px;}
.y2cc{bottom:460.749616px;}
.y25c{bottom:460.830260px;}
.y20{bottom:461.681168px;}
.y1b6{bottom:462.021780px;}
.y2f{bottom:462.103785px;}
.y21e{bottom:464.577560px;}
.y126{bottom:465.173077px;}
.y164{bottom:465.189814px;}
.y75{bottom:472.569156px;}
.y25b{bottom:472.735528px;}
.yaa{bottom:473.348642px;}
.y1f{bottom:474.521795px;}
.y295{bottom:475.626791px;}
.y2cb{bottom:475.631573px;}
.y2c{bottom:476.475323px;}
.y2e{bottom:476.475450px;}
.y197{bottom:478.350236px;}
.y21d{bottom:480.224656px;}
.y2d{bottom:480.387300px;}
.y125{bottom:480.905056px;}
.y163{bottom:480.921794px;}
.y300{bottom:483.370209px;}
.y25a{bottom:484.725914px;}
.y1e{bottom:487.362421px;}
.y74{bottom:488.301136px;}
.ya9{bottom:488.995739px;}
.y294{bottom:490.593631px;}
.y2ca{bottom:490.598413px;}
.y2b{bottom:490.846988px;}
.y1b5{bottom:493.400856px;}
.y21c{bottom:495.956635px;}
.y124{bottom:496.552153px;}
.y162{bottom:496.568890px;}
.y259{bottom:496.716301px;}
.y1d{bottom:500.203048px;}
.y2ff{bottom:501.313350px;}
.y73{bottom:503.948232px;}
.ya8{bottom:504.727718px;}
.y2a{bottom:505.133651px;}
.y293{bottom:505.560471px;}
.y2c9{bottom:505.565253px;}
.y258{bottom:508.621568px;}
.y196{bottom:510.665412px;}
.y21b{bottom:511.603732px;}
.y123{bottom:512.284132px;}
.y161{bottom:512.300869px;}
.y1c{bottom:513.043674px;}
.y29{bottom:519.505315px;}
.y72{bottom:519.680212px;}
.ya7{bottom:520.459697px;}
.y292{bottom:520.527311px;}
.y2c8{bottom:520.532094px;}
.y257{bottom:520.611955px;}
.y195{bottom:526.397391px;}
.y21a{bottom:527.335711px;}
.y122{bottom:527.931229px;}
.y160{bottom:527.947966px;}
.y2fe{bottom:528.950598px;}
.y1b4{bottom:531.242967px;}
.y256{bottom:532.517222px;}
.y28{bottom:533.876980px;}
.y71{bottom:535.327308px;}
.y291{bottom:535.409269px;}
.y2c7{bottom:535.414051px;}
.ya6{bottom:536.106794px;}
.y194{bottom:542.044488px;}
.y1b{bottom:542.807798px;}
.y219{bottom:542.982808px;}
.y121{bottom:543.663208px;}
.y15f{bottom:543.679945px;}
.y255{bottom:544.507609px;}
.y1b3{bottom:546.974946px;}
.y27{bottom:548.163643px;}
.y290{bottom:550.376109px;}
.y2c6{bottom:550.380891px;}
.y70{bottom:551.059288px;}
.ya5{bottom:551.838773px;}
.y1a{bottom:555.648425px;}
.y254{bottom:556.497996px;}
.y2fd{bottom:556.587847px;}
.y193{bottom:557.776467px;}
.y218{bottom:558.714787px;}
.y120{bottom:559.310305px;}
.y15e{bottom:559.327042px;}
.y26{bottom:562.535308px;}
.y1b2{bottom:562.622043px;}
.y28f{bottom:565.342949px;}
.y2c5{bottom:565.347731px;}
.y6f{bottom:566.706384px;}
.ya4{bottom:567.485870px;}
.y253{bottom:568.403263px;}
.y19{bottom:568.489051px;}
.y192{bottom:573.423563px;}
.y217{bottom:574.361884px;}
.y11f{bottom:575.042284px;}
.y15d{bottom:575.059021px;}
.y25{bottom:576.906972px;}
.y1b1{bottom:578.354022px;}
.y28e{bottom:580.224906px;}
.y2c4{bottom:580.229689px;}
.y252{bottom:580.393650px;}
.y18{bottom:581.329678px;}
.y6e{bottom:582.438363px;}
.ya3{bottom:583.217849px;}
.y2fc{bottom:584.225096px;}
.y191{bottom:589.155543px;}
.y24f{bottom:589.323000px;}
.y216{bottom:590.093863px;}
.y11e{bottom:590.774263px;}
.y15c{bottom:590.791001px;}
.y24{bottom:591.193635px;}
.y251{bottom:591.363750px;}
.y24e{bottom:592.302412px;}
.y1b0{bottom:594.001119px;}
.y17{bottom:594.255424px;}
.y28d{bottom:595.191747px;}
.y2c3{bottom:595.196529px;}
.y6d{bottom:598.085460px;}
.ya2{bottom:598.864946px;}
.y24d{bottom:604.292798px;}
.y23{bottom:604.374750px;}
.y190{bottom:604.802639px;}
.y22{bottom:605.565300px;}
.ye0{bottom:605.565453px;}
.yfe{bottom:605.737146px;}
.y215{bottom:605.740960px;}
.y2fb{bottom:606.250910px;}
.y11d{bottom:606.421360px;}
.y15b{bottom:606.438097px;}
.y16{bottom:607.096050px;}
.y2f9{bottom:608.546293px;}
.y1af{bottom:609.733098px;}
.y28c{bottom:610.158587px;}
.y2c2{bottom:610.163369px;}
.y6c{bottom:613.817439px;}
.ya1{bottom:614.596925px;}
.y24c{bottom:616.198066px;}
.y18f{bottom:620.534619px;}
.ydf{bottom:621.212550px;}
.ydd{bottom:621.213345px;}
.yfd{bottom:621.469126px;}
.y214{bottom:621.472939px;}
.y11c{bottom:622.153339px;}
.y15a{bottom:622.170076px;}
.y2fa{bottom:624.194051px;}
.y28b{bottom:625.125427px;}
.y2c1{bottom:625.130209px;}
.y1ae{bottom:625.380195px;}
.y2f8{bottom:626.489434px;}
.yde{bottom:626.569950px;}
.y24b{bottom:628.188452px;}
.y6b{bottom:629.464536px;}
.ya0{bottom:630.244022px;}
.y15{bottom:634.903800px;}
.y18e{bottom:636.181715px;}
.ydc{bottom:636.945324px;}
.yfc{bottom:637.116222px;}
.y213{bottom:637.120036px;}
.y11b{bottom:637.800436px;}
.y159{bottom:637.817173px;}
.y28a{bottom:640.007384px;}
.y2c0{bottom:640.012166px;}
.y24a{bottom:640.178839px;}
.y1ad{bottom:641.112174px;}
.y6a{bottom:645.196515px;}
.y9f{bottom:645.976001px;}
.y18d{bottom:651.913695px;}
.y249{bottom:652.084106px;}
.ydb{bottom:652.592421px;}
.yfb{bottom:652.848202px;}
.y212{bottom:652.852015px;}
.y11a{bottom:653.532415px;}
.y158{bottom:653.549152px;}
.y289{bottom:654.974224px;}
.y2bf{bottom:654.979006px;}
.y1ac{bottom:656.759271px;}
.y69{bottom:660.843612px;}
.y9e{bottom:661.623097px;}
.y248{bottom:664.074493px;}
.y2f7{bottom:665.691767px;}
.yd9{bottom:667.048800px;}
.y18c{bottom:667.560791px;}
.yda{bottom:668.324400px;}
.yd8{bottom:668.326955px;}
.yfa{bottom:668.495298px;}
.y211{bottom:668.499112px;}
.y119{bottom:669.179512px;}
.y157{bottom:669.196249px;}
.y288{bottom:669.941064px;}
.y2be{bottom:669.945846px;}
.y1ab{bottom:672.491250px;}
.y1a9{bottom:672.500721px;}
.y247{bottom:675.979760px;}
.y68{bottom:676.575591px;}
.y1aa{bottom:676.828200px;}
.y9d{bottom:677.355077px;}
.y18b{bottom:683.292770px;}
.y2f6{bottom:683.634907px;}
.yd7{bottom:683.974052px;}
.y14{bottom:684.226650px;}
.yf9{bottom:684.227277px;}
.y210{bottom:684.231091px;}
.y287{bottom:684.907904px;}
.y118{bottom:684.911491px;}
.y2bd{bottom:684.912686px;}
.y156{bottom:684.928228px;}
.y246{bottom:687.970147px;}
.y1a8{bottom:688.147818px;}
.y13{bottom:688.393500px;}
.y67{bottom:692.222688px;}
.y9c{bottom:693.002173px;}
.y10{bottom:693.835500px;}
.y12{bottom:695.962050px;}
.yf{bottom:697.067550px;}
.y18a{bottom:698.939867px;}
.yd6{bottom:699.706031px;}
.y286{bottom:699.789862px;}
.y2bc{bottom:699.794644px;}
.yf8{bottom:699.874374px;}
.y20f{bottom:699.878188px;}
.y245{bottom:699.960534px;}
.y117{bottom:700.558588px;}
.y155{bottom:700.575325px;}
.ye{bottom:701.319600px;}
.y1a7{bottom:703.879797px;}
.y66{bottom:707.954667px;}
.y9b{bottom:708.734153px;}
.yd{bottom:709.908450px;}
.y244{bottom:711.865801px;}
.yc{bottom:714.160500px;}
.y189{bottom:714.671846px;}
.y285{bottom:714.756702px;}
.y2bb{bottom:714.761484px;}
.yd5{bottom:715.353128px;}
.yf7{bottom:715.606353px;}
.y20e{bottom:715.610167px;}
.y116{bottom:716.290567px;}
.y154{bottom:716.307304px;}
.y2f5{bottom:719.436009px;}
.y1a6{bottom:719.526894px;}
.yb{bottom:722.749500px;}
.y65{bottom:723.601764px;}
.y243{bottom:723.856188px;}
.y9a{bottom:724.381249px;}
.ya{bottom:727.001400px;}
.y284{bottom:729.723542px;}
.y2ba{bottom:729.728324px;}
.yf5{bottom:729.977850px;}
.y188{bottom:730.318943px;}
.yd4{bottom:731.085107px;}
.yf6{bottom:731.253450px;}
.yf4{bottom:731.253941px;}
.y20d{bottom:731.257263px;}
.y115{bottom:731.937663px;}
.y153{bottom:731.954401px;}
.y1a5{bottom:735.258873px;}
.y242{bottom:735.761455px;}
.y64{bottom:739.333743px;}
.y99{bottom:740.113229px;}
.y9{bottom:743.499000px;}
.y283{bottom:744.605499px;}
.y2b9{bottom:744.610281px;}
.y7{bottom:745.199772px;}
.yd3{bottom:746.732204px;}
.yf3{bottom:746.985921px;}
.y20c{bottom:746.989243px;}
.y114{bottom:747.669643px;}
.y152{bottom:747.686380px;}
.y241{bottom:747.751842px;}
.y1a4{bottom:750.905970px;}
.y8{bottom:752.173050px;}
.y63{bottom:754.980840px;}
.y2f4{bottom:755.322290px;}
.y98{bottom:755.760325px;}
.y282{bottom:759.572339px;}
.y2b8{bottom:759.577122px;}
.y240{bottom:759.657109px;}
.y187{bottom:761.698019px;}
.yd2{bottom:762.464183px;}
.yf2{bottom:762.717900px;}
.y20b{bottom:762.721222px;}
.y4{bottom:762.973050px;}
.y113{bottom:763.316739px;}
.y151{bottom:763.333477px;}
.y5{bottom:764.588850px;}
.y1a3{bottom:766.637949px;}
.y62{bottom:770.712819px;}
.y97{bottom:771.492304px;}
.y6{bottom:771.647100px;}
.y23f{bottom:771.647496px;}
.y2f3{bottom:773.265431px;}
.y281{bottom:774.539179px;}
.y2b7{bottom:774.543962px;}
.yd1{bottom:778.111280px;}
.yf0{bottom:778.365945px;}
.y20a{bottom:778.368319px;}
.y112{bottom:779.048719px;}
.y150{bottom:779.065456px;}
.y1a2{bottom:782.285046px;}
.yf1{bottom:782.702250px;}
.y23e{bottom:783.637883px;}
.y61{bottom:786.359916px;}
.y96{bottom:787.139401px;}
.y280{bottom:789.506020px;}
.y2b6{bottom:789.510802px;}
.y2f2{bottom:791.208572px;}
.yef{bottom:794.097924px;}
.y186{bottom:794.098077px;}
.y209{bottom:794.100298px;}
.y111{bottom:794.695815px;}
.y14f{bottom:794.712553px;}
.y23d{bottom:795.543150px;}
.y1a1{bottom:798.017025px;}
.y3{bottom:798.775366px;}
.y60{bottom:802.091895px;}
.y95{bottom:802.871380px;}
.y27f{bottom:804.387977px;}
.y2b5{bottom:804.392759px;}
.y2f1{bottom:809.151712px;}
.yd0{bottom:809.576434px;}
.yee{bottom:809.745021px;}
.y185{bottom:809.745174px;}
.y208{bottom:809.747395px;}
.y110{bottom:810.427795px;}
.y14e{bottom:810.444532px;}
.y5f{bottom:817.823874px;}
.y94{bottom:818.518477px;}
.y27e{bottom:819.354817px;}
.y2b4{bottom:819.359599px;}
.y23c{bottom:822.671321px;}
.y2{bottom:824.626650px;}
.yed{bottom:825.477000px;}
.y184{bottom:825.477153px;}
.y207{bottom:825.479374px;}
.yeb{bottom:825.480806px;}
.y10f{bottom:826.074891px;}
.y14d{bottom:826.091629px;}
.y1ec{bottom:829.643902px;}
.yec{bottom:829.814100px;}
.y5e{bottom:833.470971px;}
.y93{bottom:834.250456px;}
.y27d{bottom:834.321657px;}
.y2b3{bottom:834.326439px;}
.y182{bottom:839.848650px;}
.ycf{bottom:840.955510px;}
.y183{bottom:841.124250px;}
.y181{bottom:841.126470px;}
.yea{bottom:841.127902px;}
.y10e{bottom:841.806870px;}
.y14c{bottom:841.823608px;}
.y1eb{bottom:842.315245px;}
.y2f0{bottom:845.037994px;}
.y5d{bottom:849.202950px;}
.y27c{bottom:849.288497px;}
.y2b2{bottom:849.293279px;}
.y92{bottom:849.897553px;}
.y23b{bottom:856.857502px;}
.y180{bottom:856.858450px;}
.ye9{bottom:856.859882px;}
.y10d{bottom:857.453967px;}
.y14b{bottom:857.470705px;}
.y1{bottom:857.536800px;}
.y1ea{bottom:862.044821px;}
.y27b{bottom:864.170455px;}
.y2b1{bottom:864.175237px;}
.y91{bottom:865.629532px;}
.y23a{bottom:872.504598px;}
.yce{bottom:872.505546px;}
.ye8{bottom:872.506978px;}
.y10c{bottom:873.185946px;}
.y14a{bottom:873.202684px;}
.y1e9{bottom:874.885447px;}
.y27a{bottom:879.137295px;}
.y2b0{bottom:879.142077px;}
.y1e8{bottom:887.726074px;}
.y239{bottom:888.236577px;}
.ycd{bottom:888.237526px;}
.ye7{bottom:888.238958px;}
.y10b{bottom:888.833043px;}
.y149{bottom:888.849780px;}
.y279{bottom:894.104135px;}
.y2af{bottom:894.108917px;}
.y1e5{bottom:900.565799px;}
.y1e7{bottom:900.566700px;}
.y1e6{bottom:902.692800px;}
.y58{bottom:903.288000px;}
.y238{bottom:903.883674px;}
.ycc{bottom:903.884622px;}
.ye6{bottom:903.886054px;}
.y2ef{bottom:904.054444px;}
.y2ec{bottom:904.223400px;}
.y10a{bottom:904.565022px;}
.y148{bottom:904.581760px;}
.y278{bottom:909.070975px;}
.y2ae{bottom:909.075757px;}
.y237{bottom:919.615653px;}
.ycb{bottom:919.616602px;}
.ye5{bottom:919.618034px;}
.y109{bottom:920.212119px;}
.y147{bottom:920.228856px;}
.y1e4{bottom:920.295374px;}
.y277{bottom:923.952932px;}
.y2ad{bottom:923.957714px;}
.y236{bottom:935.262750px;}
.y235{bottom:935.263071px;}
.yca{bottom:935.263698px;}
.ye4{bottom:935.265130px;}
.y108{bottom:935.944098px;}
.y146{bottom:935.960836px;}
.y276{bottom:938.919772px;}
.y2ac{bottom:938.924554px;}
.y1e3{bottom:940.024950px;}
.y1e1{bottom:940.026055px;}
.y2ee{bottom:943.427137px;}
.y1e2{bottom:943.511700px;}
.y57{bottom:943.766850px;}
.y234{bottom:950.995050px;}
.yc9{bottom:950.995677px;}
.ye3{bottom:950.997109px;}
.y233{bottom:951.010024px;}
.y107{bottom:951.591195px;}
.y145{bottom:951.607932px;}
.y275{bottom:953.886612px;}
.y2ab{bottom:953.891395px;}
.y1e0{bottom:961.200751px;}
.yc8{bottom:966.642774px;}
.ye2{bottom:966.644206px;}
.y232{bottom:966.657120px;}
.y106{bottom:967.323174px;}
.y144{bottom:967.339912px;}
.y274{bottom:968.768570px;}
.y2aa{bottom:968.773352px;}
.y1df{bottom:974.126497px;}
.yc7{bottom:982.374753px;}
.y231{bottom:982.389100px;}
.y2ed{bottom:982.714650px;}
.y105{bottom:982.970271px;}
.y143{bottom:982.987008px;}
.y273{bottom:983.735410px;}
.y2a9{bottom:983.740192px;}
.y2eb{bottom:984.925800px;}
.y1de{bottom:986.967124px;}
.yc6{bottom:998.021850px;}
.ye1{bottom:998.023282px;}
.y230{bottom:998.036196px;}
.y104{bottom:998.702250px;}
.y2a8{bottom:998.707032px;}
.y142{bottom:998.718987px;}
.y1dd{bottom:999.807750px;}
.y5b{bottom:1027.615500px;}
.y103{bottom:1027.621297px;}
.y1ef{bottom:1027.621844px;}
.y2ea{bottom:1029.401400px;}
.y2e9{bottom:1062.651600px;}
.h17{height:17.834548px;}
.he{height:20.063916px;}
.h8{height:21.837629px;}
.h4{height:23.581474px;}
.h15{height:23.885690px;}
.h19{height:27.314294px;}
.h14{height:29.268288px;}
.h9{height:30.183984px;}
.h18{height:30.535939px;}
.hb{height:31.202724px;}
.hc{height:31.216896px;}
.h7{height:33.013969px;}
.h13{height:34.144337px;}
.h12{height:34.479085px;}
.hd{height:35.119498px;}
.h6{height:36.171158px;}
.hf{height:37.730927px;}
.h10{height:39.022099px;}
.h20{height:40.468081px;}
.h1d{height:41.484266px;}
.h1f{height:44.515458px;}
.h1e{height:45.633276px;}
.h2{height:46.825834px;}
.h5{height:51.704208px;}
.h3{height:65.848752px;}
.h11{height:68.287450px;}
.ha{height:413.121000px;}
.h1a{height:517.633500px;}
.h16{height:856.600500px;}
.h0{height:1106.958000px;}
.h1{height:1107.000000px;}
.h1c{height:1190.250000px;}
.h1b{height:1190.551500px;}
.w0{width:810.000000px;}
.w1{width:892.914000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:7.229850px;}
.x2b{left:8.674050px;}
.x20{left:14.118899px;}
.x1f{left:15.137491px;}
.x1e{left:21.259800px;}
.x2{left:31.209450px;}
.xf{left:40.563750px;}
.x1{left:55.275600px;}
.xe{left:60.803100px;}
.x37{left:64.288947px;}
.x17{left:73.219194px;}
.x38{left:76.194548px;}
.x4b{left:83.677292px;}
.x4e{left:94.051143px;}
.x33{left:125.262900px;}
.xd{left:142.781100px;}
.x36{left:154.771517px;}
.x45{left:159.789000px;}
.x4f{left:171.776543px;}
.x47{left:180.708600px;}
.x3{left:183.174750px;}
.x4{left:189.467700px;}
.x1d{left:227.055000px;}
.x1a{left:228.160500px;}
.x48{left:242.362200px;}
.x4d{left:248.908263px;}
.x2a{left:258.689857px;}
.x4c{left:261.748526px;}
.x24{left:265.662900px;}
.x25{left:271.020450px;}
.x1b{left:288.538500px;}
.x1c{left:290.324400px;}
.x49{left:296.447100px;}
.x10{left:301.889700px;}
.x23{left:318.217200px;}
.x5{left:322.214100px;}
.x6{left:329.782650px;}
.x2e{left:348.151050px;}
.x46{left:354.358950px;}
.x34{left:360.141600px;}
.x35{left:364.393650px;}
.x4a{left:367.540050px;}
.x18{left:422.901701px;}
.x42{left:427.833000px;}
.x3c{left:431.915428px;}
.x26{left:440.845529px;}
.x43{left:447.136585px;}
.x11{left:451.644000px;}
.x41{left:458.957400px;}
.x12{left:467.631300px;}
.x13{left:472.308450px;}
.x7{left:487.700700px;}
.x8{left:493.993500px;}
.x39{left:531.410758px;}
.x16{left:550.289948px;}
.x3e{left:591.703800px;}
.x27{left:604.969950px;}
.x2f{left:612.708600px;}
.x28{left:615.599850px;}
.x30{left:618.150900px;}
.x9{left:623.763600px;}
.xa{left:630.821850px;}
.x14{left:673.086450px;}
.x15{left:677.763600px;}
.x3f{left:712.969950px;}
.xb{left:724.620300px;}
.xc{left:730.402950px;}
.x3a{left:731.933700px;}
.x40{left:733.464450px;}
.x3b{left:736.185600px;}
.x31{left:741.883350px;}
.x32{left:747.325800px;}
.x29{left:749.281650px;}
.x19{left:756.850200px;}
.x3d{left:759.231300px;}
.x44{left:766.119450px;}
.x2d{left:778.284532px;}
.x21{left:779.390803px;}
.x22{left:780.666434px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-4.658848pt;}
.ls15{letter-spacing:-4.357043pt;}
.ls17{letter-spacing:-4.055238pt;}
.ls2c{letter-spacing:-3.753433pt;}
.ls13{letter-spacing:-3.274759pt;}
.ls18{letter-spacing:-3.149823pt;}
.ls21{letter-spacing:-2.848018pt;}
.ls14{letter-spacing:-2.546213pt;}
.ls20{letter-spacing:-2.541962pt;}
.ls1b{letter-spacing:-2.240158pt;}
.ls1f{letter-spacing:-1.938353pt;}
.ls16{letter-spacing:-1.636548pt;}
.ls1a{letter-spacing:-1.334743pt;}
.ls19{letter-spacing:-0.731133pt;}
.ls10{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007173pt;}
.ls25{letter-spacing:0.030605pt;}
.ls45{letter-spacing:0.054409pt;}
.ls5{letter-spacing:0.061210pt;}
.lsc{letter-spacing:0.068012pt;}
.ls4b{letter-spacing:0.069074pt;}
.ls31{letter-spacing:0.072263pt;}
.ls27{letter-spacing:0.091814pt;}
.ls37{letter-spacing:0.123272pt;}
.ls26{letter-spacing:0.176828pt;}
.ls6{letter-spacing:0.198934pt;}
.ls2b{letter-spacing:0.246545pt;}
.ls2a{letter-spacing:0.442080pt;}
.ls1d{letter-spacing:0.480337pt;}
.ls1c{letter-spacing:1.083947pt;}
.ls1{letter-spacing:3.310240pt;}
.ls11{letter-spacing:4.574813pt;}
.lse{letter-spacing:4.743863pt;}
.ls30{letter-spacing:7.098791pt;}
.ls47{letter-spacing:8.888994pt;}
.ls46{letter-spacing:9.191642pt;}
.ls36{letter-spacing:9.428215pt;}
.ls3d{letter-spacing:9.868348pt;}
.ls43{letter-spacing:10.143791pt;}
.ls3c{letter-spacing:10.157393pt;}
.ls42{letter-spacing:10.327420pt;}
.ls9{letter-spacing:10.375172pt;}
.ls44{letter-spacing:10.449839pt;}
.ls32{letter-spacing:10.571673pt;}
.ls8{letter-spacing:10.662096pt;}
.ls48{letter-spacing:10.843723pt;}
.ls2f{letter-spacing:10.864977pt;}
.ls34{letter-spacing:10.881980pt;}
.ls4a{letter-spacing:11.112943pt;}
.ls23{letter-spacing:11.460085pt;}
.lsf{letter-spacing:11.480201pt;}
.ls22{letter-spacing:11.753388pt;}
.ls3b{letter-spacing:11.901867pt;}
.ls2e{letter-spacing:12.335744pt;}
.lsa{letter-spacing:12.406594pt;}
.ls35{letter-spacing:12.607794pt;}
.ls49{letter-spacing:12.624797pt;}
.lsb{letter-spacing:12.770031pt;}
.ls29{letter-spacing:13.190150pt;}
.ls24{letter-spacing:13.207153pt;}
.ls7{letter-spacing:13.860342pt;}
.ls33{letter-spacing:14.350611pt;}
.ls2d{letter-spacing:15.804375pt;}
.ls3a{letter-spacing:16.264751pt;}
.ls3{letter-spacing:18.501996pt;}
.ls39{letter-spacing:18.728907pt;}
.ls2{letter-spacing:18.794874pt;}
.ls4{letter-spacing:21.796478pt;}
.ls12{letter-spacing:21.825170pt;}
.ls38{letter-spacing:22.201789pt;}
.ls28{letter-spacing:29.952725pt;}
.lsd{letter-spacing:32.437651pt;}
.ls3e{letter-spacing:81.435972pt;}
.ls40{letter-spacing:173.253773pt;}
.ls3f{letter-spacing:189.134263pt;}
.ls41{letter-spacing:237.979524pt;}
.ws197{word-spacing:-11.146948pt;}
.wsf1{word-spacing:-10.886231pt;}
.wsf{word-spacing:-5.915367pt;}
.ws3{word-spacing:-3.336807pt;}
.ws133{word-spacing:-0.522845pt;}
.ws5{word-spacing:-0.056323pt;}
.ws1ad{word-spacing:-0.053134pt;}
.ws36{word-spacing:-0.042508pt;}
.ws1d{word-spacing:-0.038257pt;}
.ws16{word-spacing:-0.034005pt;}
.ws6e{word-spacing:0.000000pt;}
.wsb8{word-spacing:0.688625pt;}
.ws131{word-spacing:1.292235pt;}
.ws6b{word-spacing:1.594040pt;}
.ws6a{word-spacing:1.895845pt;}
.ws132{word-spacing:2.197650pt;}
.ws6c{word-spacing:2.499455pt;}
.ws67{word-spacing:2.503705pt;}
.ws6d{word-spacing:2.805510pt;}
.wsb7{word-spacing:3.107315pt;}
.ws2a{word-spacing:3.236503pt;}
.wsb6{word-spacing:3.710925pt;}
.wsb5{word-spacing:4.012730pt;}
.ws68{word-spacing:4.314535pt;}
.ws69{word-spacing:4.616340pt;}
.wsab{word-spacing:6.807868pt;}
.ws42{word-spacing:7.120045pt;}
.ws41{word-spacing:7.664144pt;}
.ws4f{word-spacing:7.693900pt;}
.ws189{word-spacing:7.709009pt;}
.ws17f{word-spacing:7.726012pt;}
.ws153{word-spacing:7.914940pt;}
.ws1a0{word-spacing:7.943646pt;}
.ws165{word-spacing:8.089222pt;}
.ws190{word-spacing:8.089869pt;}
.ws40{word-spacing:8.225246pt;}
.ws4e{word-spacing:8.250751pt;}
.ws3d{word-spacing:8.535553pt;}
.ws194{word-spacing:8.565943pt;}
.ws12f{word-spacing:8.589747pt;}
.wsad{word-spacing:8.712166pt;}
.ws12e{word-spacing:8.749572pt;}
.ws130{word-spacing:8.763174pt;}
.wsdc{word-spacing:8.794850pt;}
.ws14b{word-spacing:8.807602pt;}
.wsac{word-spacing:8.865190pt;}
.ws13b{word-spacing:8.884116pt;}
.ws16c{word-spacing:8.888367pt;}
.wsaf{word-spacing:8.888994pt;}
.wsae{word-spacing:8.936602pt;}
.ws138{word-spacing:9.003138pt;}
.ws1f{word-spacing:9.089752pt;}
.ws49{word-spacing:9.096655pt;}
.ws11d{word-spacing:9.184841pt;}
.wsd9{word-spacing:9.309194pt;}
.ws61{word-spacing:9.343200pt;}
.ws10e{word-spacing:9.361668pt;}
.ws173{word-spacing:9.364454pt;}
.ws3f{word-spacing:9.398460pt;}
.ws11e{word-spacing:9.501090pt;}
.wsb0{word-spacing:9.538496pt;}
.wsdb{word-spacing:9.542986pt;}
.ws186{word-spacing:9.606507pt;}
.ws23{word-spacing:9.632995pt;}
.ws88{word-spacing:9.649255pt;}
.ws172{word-spacing:9.683262pt;}
.ws15b{word-spacing:9.696014pt;}
.ws137{word-spacing:9.700265pt;}
.ws136{word-spacing:9.730020pt;}
.ws146{word-spacing:9.836289pt;}
.ws12b{word-spacing:9.868348pt;}
.ws171{word-spacing:9.921305pt;}
.ws184{word-spacing:9.949961pt;}
.ws7c{word-spacing:9.976565pt;}
.ws128{word-spacing:10.014571pt;}
.ws129{word-spacing:10.031573pt;}
.ws34{word-spacing:10.048828pt;}
.ws170{word-spacing:10.061580pt;}
.ws10c{word-spacing:10.068979pt;}
.ws114{word-spacing:10.079181pt;}
.ws10f{word-spacing:10.082581pt;}
.ws10d{word-spacing:10.119987pt;}
.ws124{word-spacing:10.126788pt;}
.ws123{word-spacing:10.133589pt;}
.ws126{word-spacing:10.153993pt;}
.ws113{word-spacing:10.170995pt;}
.ws27{word-spacing:10.183889pt;}
.ws107{word-spacing:10.228804pt;}
.wsec{word-spacing:10.257116pt;}
.ws110{word-spacing:10.276412pt;}
.ws16d{word-spacing:10.282621pt;}
.ws111{word-spacing:10.283213pt;}
.ws115{word-spacing:10.290014pt;}
.ws118{word-spacing:10.293414pt;}
.ws119{word-spacing:10.296815pt;}
.wsbf{word-spacing:10.303875pt;}
.ws154{word-spacing:10.312376pt;}
.ws127{word-spacing:10.324019pt;}
.ws116{word-spacing:10.327420pt;}
.ws28{word-spacing:10.352218pt;}
.ws125{word-spacing:10.354624pt;}
.ws12a{word-spacing:10.436237pt;}
.ws15{word-spacing:10.453239pt;}
.wsda{word-spacing:10.490909pt;}
.ws19d{word-spacing:10.511049pt;}
.ws185{word-spacing:10.524651pt;}
.ws4d{word-spacing:10.533416pt;}
.wsbd{word-spacing:10.537667pt;}
.ws4a{word-spacing:10.541918pt;}
.ws11c{word-spacing:10.565457pt;}
.ws18{word-spacing:10.602863pt;}
.ws31{word-spacing:10.677943pt;}
.ws1a4{word-spacing:10.694677pt;}
.ws64{word-spacing:10.742285pt;}
.ws48{word-spacing:10.792713pt;}
.ws196{word-spacing:10.796693pt;}
.ws4c{word-spacing:10.801215pt;}
.wsf2{word-spacing:10.835221pt;}
.ws32{word-spacing:10.860726pt;}
.ws183{word-spacing:10.936115pt;}
.ws192{word-spacing:10.956518pt;}
.ws62{word-spacing:10.959919pt;}
.wse{word-spacing:11.007526pt;}
.ws14{word-spacing:11.027930pt;}
.ws12{word-spacing:11.038131pt;}
.ws5d{word-spacing:11.041532pt;}
.ws101{word-spacing:11.047760pt;}
.ws188{word-spacing:11.072137pt;}
.ws4b{word-spacing:11.086017pt;}
.ws1a3{word-spacing:11.089139pt;}
.ws16b{word-spacing:11.107271pt;}
.ws177{word-spacing:11.111521pt;}
.ws195{word-spacing:11.129946pt;}
.ws17e{word-spacing:11.143548pt;}
.ws63{word-spacing:11.160550pt;}
.ws13{word-spacing:11.167351pt;}
.ws81{word-spacing:11.183785pt;}
.ws5e{word-spacing:11.184354pt;}
.ws18a{word-spacing:11.201357pt;}
.ws19f{word-spacing:11.208158pt;}
.ws18f{word-spacing:11.211558pt;}
.ws19{word-spacing:11.225161pt;}
.wsb3{word-spacing:11.228561pt;}
.ws18c{word-spacing:11.259166pt;}
.wsb{word-spacing:11.262566pt;}
.ws169{word-spacing:11.264549pt;}
.ws5f{word-spacing:11.276169pt;}
.wsd{word-spacing:11.296572pt;}
.wsb4{word-spacing:11.320375pt;}
.ws187{word-spacing:11.327177pt;}
.ws74{word-spacing:11.328311pt;}
.ws11{word-spacing:11.333978pt;}
.ws182{word-spacing:11.357781pt;}
.ws22{word-spacing:11.381319pt;}
.ws10{word-spacing:11.384986pt;}
.ws85{word-spacing:11.413326pt;}
.ws80{word-spacing:11.417577pt;}
.wsdd{word-spacing:11.426079pt;}
.ws5c{word-spacing:11.459797pt;}
.ws11b{word-spacing:11.463198pt;}
.ws1a5{word-spacing:11.480201pt;}
.ws7f{word-spacing:11.489840pt;}
.ws17{word-spacing:11.544811pt;}
.wsf9{word-spacing:11.553602pt;}
.wsc{word-spacing:11.555012pt;}
.wsf8{word-spacing:11.638617pt;}
.ws56{word-spacing:11.693877pt;}
.ws29{word-spacing:11.695022pt;}
.ws13c{word-spacing:11.706630pt;}
.ws7e{word-spacing:11.723633pt;}
.ws199{word-spacing:11.731840pt;}
.ws50{word-spacing:11.744887pt;}
.ws178{word-spacing:11.770391pt;}
.ws10a{word-spacing:11.772646pt;}
.wscc{word-spacing:11.808648pt;}
.wsc5{word-spacing:11.829902pt;}
.ws79{word-spacing:11.868159pt;}
.ws10b{word-spacing:11.881463pt;}
.ws15e{word-spacing:11.919168pt;}
.ws19b{word-spacing:11.973278pt;}
.wsc6{word-spacing:11.991432pt;}
.ws1c2{word-spacing:12.045448pt;}
.ws84{word-spacing:12.055193pt;}
.ws2b{word-spacing:12.165578pt;}
.wsc1{word-spacing:12.186967pt;}
.ws2d{word-spacing:12.219137pt;}
.ws8c{word-spacing:12.246478pt;}
.wsf5{word-spacing:12.254980pt;}
.wsbb{word-spacing:12.276233pt;}
.ws168{word-spacing:12.348497pt;}
.ws17b{word-spacing:12.374001pt;}
.wsc4{word-spacing:12.386753pt;}
.ws83{word-spacing:12.391004pt;}
.ws162{word-spacing:12.437763pt;}
.ws167{word-spacing:12.471769pt;}
.ws103{word-spacing:12.505775pt;}
.ws15d{word-spacing:12.527029pt;}
.wse3{word-spacing:12.535531pt;}
.ws166{word-spacing:12.539781pt;}
.wsce{word-spacing:12.556784pt;}
.ws45{word-spacing:12.586540pt;}
.wsdf{word-spacing:12.595041pt;}
.ws140{word-spacing:12.607794pt;}
.wsd6{word-spacing:12.612044pt;}
.ws87{word-spacing:12.637549pt;}
.wsd7{word-spacing:12.641800pt;}
.wsc2{word-spacing:12.688558pt;}
.ws1bf{word-spacing:12.709621pt;}
.ws2e{word-spacing:12.716472pt;}
.ws1b1{word-spacing:12.741501pt;}
.ws82{word-spacing:12.782075pt;}
.ws1a1{word-spacing:12.850615pt;}
.ws102{word-spacing:12.879843pt;}
.ws39{word-spacing:12.892596pt;}
.ws144{word-spacing:12.935103pt;}
.ws142{word-spacing:12.947856pt;}
.ws96{word-spacing:12.952106pt;}
.ws1b4{word-spacing:12.959350pt;}
.ws19a{word-spacing:13.010441pt;}
.wsba{word-spacing:13.032871pt;}
.ws193{word-spacing:13.054647pt;}
.ws16a{word-spacing:13.083880pt;}
.wsb1{word-spacing:13.119258pt;}
.ws8a{word-spacing:13.164645pt;}
.wsb2{word-spacing:13.166865pt;}
.ws8b{word-spacing:13.168896pt;}
.wsbe{word-spacing:13.215654pt;}
.ws143{word-spacing:13.219905pt;}
.ws59{word-spacing:13.436695pt;}
.ws14f{word-spacing:13.457948pt;}
.ws17a{word-spacing:13.508958pt;}
.ws8d{word-spacing:13.585472pt;}
.ws164{word-spacing:13.742750pt;}
.ws174{word-spacing:13.751252pt;}
.ws65{word-spacing:13.832016pt;}
.ws1b8{word-spacing:13.921073pt;}
.wsf3{word-spacing:13.997797pt;}
.ws53{word-spacing:14.027552pt;}
.ws3b{word-spacing:14.031803pt;}
.wsf7{word-spacing:14.112567pt;}
.ws66{word-spacing:14.142323pt;}
.ws7a{word-spacing:14.150824pt;}
.wsc7{word-spacing:14.172078pt;}
.ws18d{word-spacing:14.176823pt;}
.ws158{word-spacing:14.197583pt;}
.ws1bb{word-spacing:14.213309pt;}
.wsb9{word-spacing:14.278348pt;}
.ws161{word-spacing:14.308103pt;}
.wsf4{word-spacing:14.325106pt;}
.ws148{word-spacing:14.380366pt;}
.ws14a{word-spacing:14.478134pt;}
.ws2c{word-spacing:14.518354pt;}
.ws191{word-spacing:14.557683pt;}
.ws7d{word-spacing:14.643914pt;}
.ws3a{word-spacing:14.750183pt;}
.ws5a{word-spacing:15.115371pt;}
.wsa2{word-spacing:15.128502pt;}
.ws147{word-spacing:15.137004pt;}
.ws3c{word-spacing:15.226270pt;}
.ws16e{word-spacing:15.311286pt;}
.ws24{word-spacing:15.451814pt;}
.ws198{word-spacing:15.458825pt;}
.ws6f{word-spacing:15.472815pt;}
.wse8{word-spacing:15.481316pt;}
.ws16f{word-spacing:15.519573pt;}
.ws1bd{word-spacing:15.525716pt;}
.ws109{word-spacing:15.543838pt;}
.ws14d{word-spacing:15.562081pt;}
.ws1b9{word-spacing:15.722311pt;}
.wsd4{word-spacing:15.744864pt;}
.ws1ab{word-spacing:15.759505pt;}
.ws71{word-spacing:15.778871pt;}
.ws1b7{word-spacing:15.812639pt;}
.ws1c0{word-spacing:15.828579pt;}
.ws1be{word-spacing:15.833892pt;}
.ws1c3{word-spacing:15.849832pt;}
.ws26{word-spacing:15.853507pt;}
.ws100{word-spacing:15.855385pt;}
.ws1ba{word-spacing:15.860459pt;}
.ws1b3{word-spacing:15.871086pt;}
.ws25{word-spacing:15.872636pt;}
.ws1bc{word-spacing:15.887026pt;}
.ws17d{word-spacing:15.890692pt;}
.ws1b0{word-spacing:15.902966pt;}
.ws70{word-spacing:15.906394pt;}
.ws1c4{word-spacing:15.908280pt;}
.ws1ae{word-spacing:15.918906pt;}
.ws1b2{word-spacing:15.924220pt;}
.wse7{word-spacing:15.970155pt;}
.ws1af{word-spacing:15.982667pt;}
.ws1ac{word-spacing:16.009234pt;}
.ws13f{word-spacing:16.038168pt;}
.ws76{word-spacing:16.089177pt;}
.ws1a7{word-spacing:16.094248pt;}
.ws1b5{word-spacing:16.104875pt;}
.ws1a{word-spacing:16.106001pt;}
.ws1c{word-spacing:16.121303pt;}
.ws106{word-spacing:16.123183pt;}
.ws18e{word-spacing:16.135531pt;}
.ws19c{word-spacing:16.183138pt;}
.ws1b{word-spacing:16.190165pt;}
.ws77{word-spacing:16.229453pt;}
.ws1aa{word-spacing:16.269590pt;}
.ws20{word-spacing:16.274329pt;}
.wsbc{word-spacing:16.365477pt;}
.ws139{word-spacing:16.373979pt;}
.ws108{word-spacing:16.383770pt;}
.ws1e{word-spacing:16.389099pt;}
.ws8f{word-spacing:16.390982pt;}
.ws12d{word-spacing:16.482385pt;}
.ws13d{word-spacing:16.620524pt;}
.ws155{word-spacing:16.637527pt;}
.wse2{word-spacing:16.646028pt;}
.wscb{word-spacing:16.705539pt;}
.ws156{word-spacing:16.828812pt;}
.ws157{word-spacing:16.905326pt;}
.ws13e{word-spacing:16.998843pt;}
.ws9a{word-spacing:17.020096pt;}
.ws98{word-spacing:17.092360pt;}
.ws0{word-spacing:17.133766pt;}
.wsef{word-spacing:17.139118pt;}
.ws141{word-spacing:17.143369pt;}
.ws13a{word-spacing:17.164623pt;}
.ws1a8{word-spacing:17.242160pt;}
.wsaa{word-spacing:17.394164pt;}
.ws1a9{word-spacing:17.399970pt;}
.ws95{word-spacing:17.666214pt;}
.ws9c{word-spacing:17.670465pt;}
.wsee{word-spacing:17.683217pt;}
.ws72{word-spacing:17.844746pt;}
.ws97{word-spacing:17.887254pt;}
.ws181{word-spacing:18.070434pt;}
.ws99{word-spacing:18.473861pt;}
.ws7{word-spacing:18.490731pt;}
.wsa1{word-spacing:18.558876pt;}
.wsa{word-spacing:18.710390pt;}
.ws6{word-spacing:18.727287pt;}
.ws9{word-spacing:18.806138pt;}
.ws8{word-spacing:18.873726pt;}
.ws5b{word-spacing:18.927369pt;}
.ws4{word-spacing:18.935681pt;}
.wsd5{word-spacing:19.324016pt;}
.wsf6{word-spacing:19.430285pt;}
.ws159{word-spacing:19.519551pt;}
.wse6{word-spacing:19.553557pt;}
.wse4{word-spacing:19.600316pt;}
.ws21{word-spacing:19.736546pt;}
.ws105{word-spacing:19.808604pt;}
.ws17c{word-spacing:19.828510pt;}
.wsed{word-spacing:19.855362pt;}
.ws1a2{word-spacing:20.015539pt;}
.ws145{word-spacing:20.059399pt;}
.wse5{word-spacing:20.084904pt;}
.ws19e{word-spacing:20.263778pt;}
.ws3e{word-spacing:20.458972pt;}
.wsf0{word-spacing:20.488727pt;}
.ws9f{word-spacing:20.582244pt;}
.wsa0{word-spacing:20.862796pt;}
.ws35{word-spacing:21.181604pt;}
.ws9e{word-spacing:21.445151pt;}
.ws52{word-spacing:21.623684pt;}
.ws51{word-spacing:21.627935pt;}
.ws75{word-spacing:21.751207pt;}
.ws12c{word-spacing:21.882432pt;}
.ws37{word-spacing:21.946743pt;}
.ws93{word-spacing:21.963746pt;}
.wsfc{word-spacing:22.061514pt;}
.wsfa{word-spacing:22.176284pt;}
.wsfb{word-spacing:22.193288pt;}
.ws175{word-spacing:22.478089pt;}
.ws176{word-spacing:22.486591pt;}
.ws90{word-spacing:22.529099pt;}
.wsa5{word-spacing:22.915919pt;}
.ws104{word-spacing:22.975430pt;}
.ws15f{word-spacing:23.005185pt;}
.ws1a6{word-spacing:23.290253pt;}
.ws94{word-spacing:23.702312pt;}
.ws58{word-spacing:23.757572pt;}
.wsde{word-spacing:23.791578pt;}
.wse9{word-spacing:24.072129pt;}
.ws1{word-spacing:24.101504pt;}
.ws2{word-spacing:24.144542pt;}
.wsa3{word-spacing:24.195402pt;}
.ws57{word-spacing:24.216656pt;}
.ws89{word-spacing:24.412191pt;}
.wsa8{word-spacing:24.531213pt;}
.wscd{word-spacing:24.556718pt;}
.ws150{word-spacing:24.599225pt;}
.wsca{word-spacing:24.662987pt;}
.ws152{word-spacing:24.679990pt;}
.ws8e{word-spacing:24.756504pt;}
.ws46{word-spacing:24.799012pt;}
.ws60{word-spacing:24.875080pt;}
.ws151{word-spacing:24.918033pt;}
.ws78{word-spacing:24.926535pt;}
.ws47{word-spacing:25.083813pt;}
.wsc8{word-spacing:25.245343pt;}
.wsd2{word-spacing:25.287851pt;}
.wsd8{word-spacing:25.487637pt;}
.ws7b{word-spacing:25.581154pt;}
.ws2f{word-spacing:25.674671pt;}
.ws38{word-spacing:25.746934pt;}
.ws180{word-spacing:25.776043pt;}
.wsc9{word-spacing:26.325039pt;}
.ws14c{word-spacing:26.529076pt;}
.wsc3{word-spacing:26.533327pt;}
.wsd1{word-spacing:26.597089pt;}
.wsa4{word-spacing:26.614092pt;}
.wseb{word-spacing:26.699107pt;}
.wsea{word-spacing:27.149689pt;}
.ws30{word-spacing:27.175194pt;}
.wsa9{word-spacing:27.243206pt;}
.ws135{word-spacing:27.366479pt;}
.ws73{word-spacing:27.494002pt;}
.wsa7{word-spacing:27.608773pt;}
.ws14e{word-spacing:27.651281pt;}
.ws92{word-spacing:27.778804pt;}
.ws134{word-spacing:28.004095pt;}
.wsfe{word-spacing:28.157123pt;}
.ws160{word-spacing:28.259141pt;}
.wsff{word-spacing:28.310150pt;}
.ws15a{word-spacing:28.645961pt;}
.ws163{word-spacing:28.747980pt;}
.ws54{word-spacing:28.926513pt;}
.ws55{word-spacing:29.181559pt;}
.ws179{word-spacing:29.266574pt;}
.wsa6{word-spacing:29.895689pt;}
.wse1{word-spacing:30.686333pt;}
.ws18b{word-spacing:31.016265pt;}
.ws149{word-spacing:31.349453pt;}
.ws9d{word-spacing:31.442970pt;}
.ws43{word-spacing:31.527986pt;}
.wscf{word-spacing:31.574744pt;}
.ws9b{word-spacing:31.583246pt;}
.wsd0{word-spacing:31.787283pt;}
.wsd3{word-spacing:32.220862pt;}
.ws44{word-spacing:32.463156pt;}
.ws86{word-spacing:32.590679pt;}
.wsc0{word-spacing:32.645939pt;}
.ws33{word-spacing:32.964747pt;}
.wse0{word-spacing:33.666125pt;}
.ws15c{word-spacing:34.316493pt;}
.ws91{word-spacing:38.520508pt;}
.wsfd{word-spacing:52.713840pt;}
.ws117{word-spacing:56.805909pt;}
.ws112{word-spacing:84.700484pt;}
.ws121{word-spacing:110.884591pt;}
.ws122{word-spacing:110.898193pt;}
.ws120{word-spacing:111.003610pt;}
.ws1c1{word-spacing:171.048544pt;}
.ws1b6{word-spacing:197.615477pt;}
.ws11f{word-spacing:199.312060pt;}
.ws11a{word-spacing:222.228254pt;}
._1b{margin-left:-1763.396786pt;}
._2c{margin-left:-14.054244pt;}
._1c{margin-left:-10.771460pt;}
._1{margin-left:-3.988225pt;}
._a{margin-left:-2.984010pt;}
._0{margin-left:-2.073016pt;}
._3{margin-left:-1.132086pt;}
._4{width:1.509545pt;}
._14{width:2.546213pt;}
._15{width:3.630160pt;}
._11{width:8.637571pt;}
._5{width:10.327420pt;}
._9{width:11.384656pt;}
._6{width:12.283509pt;}
._b{width:13.297971pt;}
._e{width:14.676559pt;}
._f{width:16.043817pt;}
._7{width:17.184835pt;}
._8{width:18.817773pt;}
._18{width:20.280440pt;}
._10{width:21.742706pt;}
._2{width:23.104448pt;}
._17{width:24.116353pt;}
._13{width:25.887210pt;}
._16{width:27.687456pt;}
._c{width:28.807491pt;}
._1a{width:29.728094pt;}
._19{width:31.248044pt;}
._12{width:33.007255pt;}
._d{width:33.993434pt;}
._29{width:46.569163pt;}
._2a{width:47.630438pt;}
._1d{width:56.646084pt;}
._23{width:81.871241pt;}
._20{width:85.509811pt;}
._1f{width:91.423339pt;}
._1e{width:96.697566pt;}
._21{width:107.603076pt;}
._28{width:110.663556pt;}
._24{width:140.333210pt;}
._26{width:217.912977pt;}
._22{width:248.425963pt;}
._27{width:250.629508pt;}
._25{width:281.781794pt;}
._2b{width:703.890779pt;}
.fs6{font-size:23.788267pt;}
.fsf{font-size:23.803200pt;}
.fs2{font-size:26.566933pt;}
.fsa{font-size:26.778667pt;}
.fs10{font-size:29.754133pt;}
.fse{font-size:31.879467pt;}
.fsd{font-size:31.882667pt;}
.fs7{font-size:34.005333pt;}
.fs5{font-size:37.193600pt;}
.fs9{font-size:38.256533pt;}
.fs4{font-size:39.402133pt;}
.fsb{font-size:42.507733pt;}
.fs8{font-size:47.820267pt;}
.fs0{font-size:51.008533pt;}
.fs11{font-size:53.133867pt;}
.fs3{font-size:56.322667pt;}
.fs12{font-size:58.448000pt;}
.fs1{font-size:71.730667pt;}
.fsc{font-size:74.387200pt;}
.y0{bottom:0.000000pt;}
.y250{bottom:1.814000pt;}
.y1c3{bottom:1.889600pt;}
.y11{bottom:1.890267pt;}
.y5c{bottom:16.932400pt;}
.y5a{bottom:36.283781pt;}
.y102{bottom:36.359443pt;}
.y1ee{bottom:36.359930pt;}
.y17f{bottom:36.892363pt;}
.y206{bottom:36.892651pt;}
.y141{bottom:36.900543pt;}
.y2e8{bottom:37.575353pt;}
.y1dc{bottom:42.940229pt;}
.y90{bottom:43.474836pt;}
.yc5{bottom:44.145218pt;}
.y59{bottom:47.773333pt;}
.y101{bottom:47.773577pt;}
.y1ed{bottom:47.773820pt;}
.y17e{bottom:50.876344pt;}
.y205{bottom:50.876633pt;}
.y2e7{bottom:50.879211pt;}
.y140{bottom:50.884525pt;}
.y1d8{bottom:54.353269pt;}
.y1db{bottom:54.354119pt;}
.y8f{bottom:57.458817pt;}
.yc4{bottom:58.129200pt;}
.y100{bottom:59.187710pt;}
.y2e6{bottom:64.183069pt;}
.y17d{bottom:64.860326pt;}
.y204{bottom:64.860614pt;}
.y13f{bottom:64.868506pt;}
.y1d7{bottom:65.767159pt;}
.y1da{bottom:65.768010pt;}
.yff{bottom:70.601600pt;}
.y8e{bottom:71.367348pt;}
.yc3{bottom:72.060224pt;}
.y56{bottom:72.416534pt;}
.y52{bottom:72.718270pt;}
.y1d6{bottom:77.256711pt;}
.y1d9{bottom:77.257562pt;}
.y2e5{bottom:77.411475pt;}
.y17c{bottom:78.768856pt;}
.y203{bottom:78.769144pt;}
.y13e{bottom:78.777036pt;}
.y55{bottom:83.830425pt;}
.y8d{bottom:85.351329pt;}
.y50{bottom:85.492933pt;}
.yc2{bottom:86.044205pt;}
.y51{bottom:86.626800pt;}
.y4f{bottom:86.632448pt;}
.y1d5{bottom:88.670602pt;}
.y2e4{bottom:90.715333pt;}
.y17b{bottom:92.752838pt;}
.y202{bottom:92.753126pt;}
.y13d{bottom:92.761018pt;}
.y54{bottom:95.244315pt;}
.y8c{bottom:99.259860pt;}
.yc1{bottom:99.952736pt;}
.y1d1{bottom:100.083642pt;}
.y1d4{bottom:100.084492pt;}
.y4e{bottom:100.616430pt;}
.y2e3{bottom:104.019191pt;}
.y17a{bottom:106.661368pt;}
.y201{bottom:106.661656pt;}
.y13c{bottom:106.669548pt;}
.y53{bottom:106.733867pt;}
.y1d0{bottom:111.497532pt;}
.y1d3{bottom:111.498382pt;}
.y8b{bottom:113.243841pt;}
.yc0{bottom:113.936717pt;}
.y4d{bottom:114.600412pt;}
.y2e2{bottom:117.323049pt;}
.y179{bottom:120.645350pt;}
.y200{bottom:120.645638pt;}
.y13b{bottom:120.653530pt;}
.y1cf{bottom:122.911422pt;}
.y1d2{bottom:122.912272pt;}
.y30d{bottom:123.827857pt;}
.y8a{bottom:127.152372pt;}
.ybf{bottom:127.845248pt;}
.y4c{bottom:128.508942pt;}
.y2e1{bottom:130.551456pt;}
.y1ce{bottom:134.325312pt;}
.y178{bottom:134.553880pt;}
.y1ff{bottom:134.554168pt;}
.y13a{bottom:134.562060pt;}
.y89{bottom:141.136353pt;}
.ybe{bottom:141.829229pt;}
.y4b{bottom:142.492924pt;}
.y2e0{bottom:143.855313pt;}
.y1ca{bottom:145.738352pt;}
.y1cd{bottom:145.739202pt;}
.y177{bottom:148.537862pt;}
.y1fe{bottom:148.538150pt;}
.y139{bottom:148.546042pt;}
.y88{bottom:155.044884pt;}
.ybd{bottom:155.737760pt;}
.y3d{bottom:156.398266pt;}
.y4a{bottom:156.401454pt;}
.y1c9{bottom:157.152242pt;}
.y1cc{bottom:157.153092pt;}
.y2df{bottom:157.159171pt;}
.y176{bottom:162.446392pt;}
.y1fd{bottom:162.446680pt;}
.y138{bottom:162.454572pt;}
.y1c8{bottom:168.641794pt;}
.y1cb{bottom:168.642644pt;}
.y87{bottom:169.028865pt;}
.ybc{bottom:169.721741pt;}
.y3c{bottom:170.382247pt;}
.y49{bottom:170.385435pt;}
.y2de{bottom:170.387578pt;}
.y272{bottom:175.829180pt;}
.y22f{bottom:175.833754pt;}
.y175{bottom:176.430374pt;}
.y1fc{bottom:176.430662pt;}
.y137{bottom:176.438554pt;}
.y30c{bottom:177.950013pt;}
.y86{bottom:182.937395pt;}
.ybb{bottom:183.630272pt;}
.y2a7{bottom:183.687185pt;}
.y2dd{bottom:183.691436pt;}
.y3b{bottom:184.290778pt;}
.y48{bottom:184.293966pt;}
.y1c7{bottom:186.179195pt;}
.y271{bottom:186.487301pt;}
.y22e{bottom:189.742284pt;}
.y174{bottom:190.338904pt;}
.y1fb{bottom:190.339192pt;}
.y136{bottom:190.347084pt;}
.y85{bottom:196.921377pt;}
.y2a6{bottom:196.991043pt;}
.y2dc{bottom:196.995294pt;}
.y270{bottom:197.069761pt;}
.yba{bottom:197.614253pt;}
.y3a{bottom:198.274759pt;}
.y47{bottom:198.277947pt;}
.y30b{bottom:202.516456pt;}
.y1c5{bottom:203.640933pt;}
.y22d{bottom:203.726266pt;}
.y173{bottom:204.322886pt;}
.y1fa{bottom:204.323174pt;}
.y135{bottom:204.331066pt;}
.y1c6{bottom:206.740133pt;}
.y26f{bottom:207.727883pt;}
.y2a5{bottom:210.294901pt;}
.y2db{bottom:210.299151pt;}
.y84{bottom:210.829907pt;}
.yb9{bottom:211.522783pt;}
.y39{bottom:212.183290pt;}
.y46{bottom:212.186478pt;}
.y22c{bottom:217.710247pt;}
.y172{bottom:218.231416pt;}
.y1f9{bottom:218.231704pt;}
.y134{bottom:218.239596pt;}
.y26e{bottom:218.310342pt;}
.y30a{bottom:218.465915pt;}
.y1c2{bottom:222.538667pt;}
.y1c1{bottom:222.539396pt;}
.y2a4{bottom:223.523307pt;}
.y2da{bottom:223.527558pt;}
.y1c4{bottom:224.428267pt;}
.y83{bottom:224.813889pt;}
.yb8{bottom:225.506765pt;}
.y38{bottom:226.167271pt;}
.y45{bottom:226.170459pt;}
.y26d{bottom:228.968464pt;}
.y22b{bottom:231.618778pt;}
.y171{bottom:232.215398pt;}
.y1f8{bottom:232.215686pt;}
.y133{bottom:232.223578pt;}
.y1c0{bottom:233.953286pt;}
.y2a3{bottom:236.827165pt;}
.y2d9{bottom:236.831416pt;}
.y82{bottom:238.797871pt;}
.yb7{bottom:239.415295pt;}
.y26c{bottom:239.550924pt;}
.y37{bottom:240.075802pt;}
.y44{bottom:240.078990pt;}
.y309{bottom:243.032358pt;}
.y1bf{bottom:245.367177pt;}
.y22a{bottom:245.602759pt;}
.y170{bottom:246.123928pt;}
.y1f7{bottom:246.124216pt;}
.y132{bottom:246.132108pt;}
.y2a2{bottom:250.131023pt;}
.y2d8{bottom:250.135274pt;}
.y26b{bottom:250.209045pt;}
.y81{bottom:252.706401pt;}
.yb6{bottom:253.399277pt;}
.y36{bottom:254.059783pt;}
.y43{bottom:254.062971pt;}
.y1be{bottom:256.781067pt;}
.y229{bottom:259.511290pt;}
.y16f{bottom:260.107909pt;}
.y1f6{bottom:260.108198pt;}
.y131{bottom:260.116090pt;}
.y26a{bottom:260.867167pt;}
.y2a1{bottom:263.434881pt;}
.y2d7{bottom:263.439132pt;}
.y80{bottom:266.690382pt;}
.yb5{bottom:267.307807pt;}
.y308{bottom:267.598801pt;}
.y35{bottom:267.968313pt;}
.y42{bottom:267.971502pt;}
.y269{bottom:271.449627pt;}
.y228{bottom:273.495271pt;}
.y16e{bottom:274.016440pt;}
.y1f5{bottom:274.016728pt;}
.y130{bottom:274.024620pt;}
.y2a0{bottom:276.663287pt;}
.y2d6{bottom:276.667538pt;}
.y7f{bottom:280.598913pt;}
.yb4{bottom:281.291789pt;}
.y34{bottom:281.952295pt;}
.y41{bottom:281.955483pt;}
.y268{bottom:282.107748pt;}
.y1a0{bottom:285.737650pt;}
.y227{bottom:287.403801pt;}
.y16d{bottom:288.000421pt;}
.y1f4{bottom:288.000709pt;}
.y12f{bottom:288.008601pt;}
.y29f{bottom:289.967145pt;}
.y2d5{bottom:289.971396pt;}
.y307{bottom:292.165245pt;}
.y267{bottom:292.690208pt;}
.y7e{bottom:294.582894pt;}
.yb3{bottom:295.200319pt;}
.y33{bottom:295.860825pt;}
.y40{bottom:295.864013pt;}
.y19f{bottom:299.646180pt;}
.y226{bottom:301.387783pt;}
.y16c{bottom:301.908952pt;}
.y1f3{bottom:301.909240pt;}
.y12e{bottom:301.917132pt;}
.y29e{bottom:303.271003pt;}
.y2d4{bottom:303.275254pt;}
.y266{bottom:303.348330pt;}
.y306{bottom:308.114703pt;}
.y7d{bottom:308.491425pt;}
.yb2{bottom:309.184301pt;}
.y3f{bottom:309.847995pt;}
.y1bd{bottom:313.024509pt;}
.y19e{bottom:313.630162pt;}
.y265{bottom:314.006451pt;}
.y225{bottom:315.296313pt;}
.y16b{bottom:315.892933pt;}
.y1f2{bottom:315.893221pt;}
.y12d{bottom:315.901113pt;}
.y29d{bottom:316.574861pt;}
.y2d3{bottom:316.579112pt;}
.y7c{bottom:322.475406pt;}
.yb1{bottom:323.092831pt;}
.y32{bottom:323.754400pt;}
.y3e{bottom:323.756525pt;}
.y264{bottom:324.588911pt;}
.y1bc{bottom:327.008491pt;}
.y19d{bottom:327.538692pt;}
.y224{bottom:329.280295pt;}
.y1f1{bottom:329.801752pt;}
.y29c{bottom:329.803268pt;}
.y2d2{bottom:329.807518pt;}
.y12c{bottom:329.809644pt;}
.y16a{bottom:329.824521pt;}
.y305{bottom:332.681146pt;}
.y263{bottom:335.247033pt;}
.y7b{bottom:336.383937pt;}
.yb0{bottom:337.076813pt;}
.y1bb{bottom:340.917021pt;}
.y19c{bottom:341.522674pt;}
.y29b{bottom:343.107125pt;}
.y2d1{bottom:343.111376pt;}
.y223{bottom:343.188825pt;}
.y1f0{bottom:343.785733pt;}
.y12b{bottom:343.793625pt;}
.y169{bottom:343.808503pt;}
.y262{bottom:345.829492pt;}
.y304{bottom:348.630605pt;}
.y7a{bottom:350.367918pt;}
.yaf{bottom:350.985343pt;}
.y1ba{bottom:354.901003pt;}
.y19b{bottom:355.431204pt;}
.y29a{bottom:356.410983pt;}
.y2d0{bottom:356.415234pt;}
.y261{bottom:356.487614pt;}
.y222{bottom:357.172807pt;}
.y12a{bottom:357.702156pt;}
.y168{bottom:357.717033pt;}
.y79{bottom:364.276449pt;}
.yae{bottom:364.969325pt;}
.y260{bottom:367.145735pt;}
.y1b9{bottom:368.809533pt;}
.y19a{bottom:369.415186pt;}
.y299{bottom:369.639390pt;}
.y2cf{bottom:369.643641pt;}
.y221{bottom:371.081337pt;}
.y129{bottom:371.686137pt;}
.y167{bottom:371.701015pt;}
.y303{bottom:373.197048pt;}
.y25f{bottom:377.728195pt;}
.y78{bottom:378.260430pt;}
.yad{bottom:378.877855pt;}
.y1b8{bottom:382.793515pt;}
.y298{bottom:382.943248pt;}
.y2ce{bottom:382.947498pt;}
.y199{bottom:383.323716pt;}
.y220{bottom:385.065319pt;}
.y31{bottom:385.284851pt;}
.y128{bottom:385.594668pt;}
.y166{bottom:385.609545pt;}
.y25e{bottom:388.386317pt;}
.y302{bottom:389.146506pt;}
.y77{bottom:392.168960pt;}
.yac{bottom:392.861837pt;}
.y297{bottom:396.247106pt;}
.y2cd{bottom:396.251356pt;}
.y1b7{bottom:396.702045pt;}
.y198{bottom:397.307698pt;}
.y30{bottom:397.984108pt;}
.y25d{bottom:398.968777pt;}
.y21{bottom:398.969371pt;}
.y21f{bottom:398.973849pt;}
.y127{bottom:399.578649pt;}
.y165{bottom:399.593527pt;}
.y301{bottom:405.095965pt;}
.y76{bottom:406.152942pt;}
.yab{bottom:406.770367pt;}
.y296{bottom:409.550963pt;}
.y2cc{bottom:409.555214pt;}
.y25c{bottom:409.626898pt;}
.y20{bottom:410.383261pt;}
.y1b6{bottom:410.686027pt;}
.y2f{bottom:410.758920pt;}
.y21e{bottom:412.957831pt;}
.y126{bottom:413.487179pt;}
.y164{bottom:413.502057pt;}
.y75{bottom:420.061472pt;}
.y25b{bottom:420.209358pt;}
.yaa{bottom:420.754348pt;}
.y1f{bottom:421.797151pt;}
.y295{bottom:422.779370pt;}
.y2cb{bottom:422.783621pt;}
.y2c{bottom:423.533621pt;}
.y2e{bottom:423.533733pt;}
.y197{bottom:425.200210pt;}
.y21d{bottom:426.866361pt;}
.y2d{bottom:427.010933pt;}
.y125{bottom:427.471161pt;}
.y163{bottom:427.486039pt;}
.y300{bottom:429.662408pt;}
.y25a{bottom:430.867479pt;}
.y1e{bottom:433.211041pt;}
.y74{bottom:434.045454pt;}
.ya9{bottom:434.662879pt;}
.y294{bottom:436.083228pt;}
.y2ca{bottom:436.087479pt;}
.y2b{bottom:436.308433pt;}
.y1b5{bottom:438.578539pt;}
.y21c{bottom:440.850343pt;}
.y124{bottom:441.379691pt;}
.y162{bottom:441.394569pt;}
.y259{bottom:441.525601pt;}
.y1d{bottom:444.624931pt;}
.y2ff{bottom:445.611866pt;}
.y73{bottom:447.953984pt;}
.ya8{bottom:448.646860pt;}
.y2a{bottom:449.007690pt;}
.y293{bottom:449.387086pt;}
.y2c9{bottom:449.391336pt;}
.y258{bottom:452.108061pt;}
.y196{bottom:453.924810pt;}
.y21b{bottom:454.758873pt;}
.y123{bottom:455.363673pt;}
.y161{bottom:455.378551pt;}
.y1c{bottom:456.038821pt;}
.y29{bottom:461.782503pt;}
.y72{bottom:461.937966pt;}
.ya7{bottom:462.630842pt;}
.y292{bottom:462.690943pt;}
.y2c8{bottom:462.695194pt;}
.y257{bottom:462.766182pt;}
.y195{bottom:467.908792pt;}
.y21a{bottom:468.742855pt;}
.y122{bottom:469.272203pt;}
.y160{bottom:469.287081pt;}
.y2fe{bottom:470.178310pt;}
.y1b4{bottom:472.215971pt;}
.y256{bottom:473.348642pt;}
.y28{bottom:474.557316pt;}
.y71{bottom:475.846496pt;}
.y291{bottom:475.919350pt;}
.y2c7{bottom:475.923601pt;}
.ya6{bottom:476.539372pt;}
.y194{bottom:481.817322pt;}
.y1b{bottom:482.495821pt;}
.y219{bottom:482.651385pt;}
.y121{bottom:483.256185pt;}
.y15f{bottom:483.271063pt;}
.y255{bottom:484.006764pt;}
.y1b3{bottom:486.199952pt;}
.y27{bottom:487.256572pt;}
.y290{bottom:489.223208pt;}
.y2c6{bottom:489.227459pt;}
.y70{bottom:489.830478pt;}
.ya5{bottom:490.523354pt;}
.y1a{bottom:493.909711pt;}
.y254{bottom:494.664885pt;}
.y2fd{bottom:494.744753pt;}
.y193{bottom:495.801304pt;}
.y218{bottom:496.635366pt;}
.y120{bottom:497.164715pt;}
.y15e{bottom:497.179593pt;}
.y26{bottom:500.031385pt;}
.y1b2{bottom:500.108483pt;}
.y28f{bottom:502.527066pt;}
.y2c5{bottom:502.531317pt;}
.y6f{bottom:503.739008pt;}
.ya4{bottom:504.431884pt;}
.y253{bottom:505.247345pt;}
.y19{bottom:505.323601pt;}
.y192{bottom:509.709834pt;}
.y217{bottom:510.543897pt;}
.y11f{bottom:511.148697pt;}
.y15d{bottom:511.163575pt;}
.y25{bottom:512.806198pt;}
.y1b1{bottom:514.092464pt;}
.y28e{bottom:515.755472pt;}
.y2c4{bottom:515.759723pt;}
.y252{bottom:515.905467pt;}
.y18{bottom:516.737491pt;}
.y6e{bottom:517.722990pt;}
.ya3{bottom:518.415866pt;}
.y2fc{bottom:519.311196pt;}
.y191{bottom:523.693816pt;}
.y24f{bottom:523.842667pt;}
.y216{bottom:524.527878pt;}
.y11e{bottom:525.132678pt;}
.y15c{bottom:525.147556pt;}
.y24{bottom:525.505454pt;}
.y251{bottom:525.656667pt;}
.y24e{bottom:526.491033pt;}
.y1b0{bottom:528.000995pt;}
.y17{bottom:528.227043pt;}
.y28d{bottom:529.059330pt;}
.y2c3{bottom:529.063581pt;}
.y6d{bottom:531.631520pt;}
.ya2{bottom:532.324396pt;}
.y24d{bottom:537.149154pt;}
.y23{bottom:537.222000pt;}
.y190{bottom:537.602346pt;}
.y22{bottom:538.280267pt;}
.ye0{bottom:538.280403pt;}
.yfe{bottom:538.433019pt;}
.y215{bottom:538.436409pt;}
.y2fb{bottom:538.889698pt;}
.y11d{bottom:539.041209pt;}
.y15b{bottom:539.056086pt;}
.y16{bottom:539.640933pt;}
.y2f9{bottom:540.930038pt;}
.y1af{bottom:541.984976pt;}
.y28c{bottom:542.363188pt;}
.y2c2{bottom:542.367439pt;}
.y6c{bottom:545.615502pt;}
.ya1{bottom:546.308378pt;}
.y24c{bottom:547.731614pt;}
.y18f{bottom:551.586328pt;}
.ydf{bottom:552.188933pt;}
.ydd{bottom:552.189640pt;}
.yfd{bottom:552.417001pt;}
.y214{bottom:552.420390pt;}
.y11c{bottom:553.025190pt;}
.y15a{bottom:553.040068pt;}
.y2fa{bottom:554.839156pt;}
.y28b{bottom:555.667046pt;}
.y2c1{bottom:555.671297pt;}
.y1ae{bottom:555.893507pt;}
.y2f8{bottom:556.879497pt;}
.yde{bottom:556.951067pt;}
.y24b{bottom:558.389735pt;}
.y6b{bottom:559.524032pt;}
.ya0{bottom:560.216908pt;}
.y15{bottom:564.358933pt;}
.y18e{bottom:565.494858pt;}
.ydc{bottom:566.173621pt;}
.yfc{bottom:566.325531pt;}
.y213{bottom:566.328921pt;}
.y11b{bottom:566.933721pt;}
.y159{bottom:566.948598pt;}
.y28a{bottom:568.895453pt;}
.y2c0{bottom:568.899703pt;}
.y24a{bottom:569.047857pt;}
.y1ad{bottom:569.877488pt;}
.y6a{bottom:573.508014pt;}
.y9f{bottom:574.200890pt;}
.y18d{bottom:579.478840pt;}
.y249{bottom:579.630317pt;}
.ydb{bottom:580.082152pt;}
.yfb{bottom:580.309512pt;}
.y212{bottom:580.312902pt;}
.y11a{bottom:580.917702pt;}
.y158{bottom:580.932580pt;}
.y289{bottom:582.199310pt;}
.y2bf{bottom:582.203561pt;}
.y1ac{bottom:583.786018pt;}
.y69{bottom:587.416544pt;}
.y9e{bottom:588.109420pt;}
.y248{bottom:590.288438pt;}
.y2f7{bottom:591.726015pt;}
.yd9{bottom:592.932267pt;}
.y18c{bottom:593.387370pt;}
.yda{bottom:594.066133pt;}
.yd8{bottom:594.068405pt;}
.yfa{bottom:594.218043pt;}
.y211{bottom:594.221433pt;}
.y119{bottom:594.826233pt;}
.y157{bottom:594.841110pt;}
.y288{bottom:595.503168pt;}
.y2be{bottom:595.507419pt;}
.y1ab{bottom:597.770000pt;}
.y1a9{bottom:597.778419pt;}
.y247{bottom:600.870898pt;}
.y68{bottom:601.400525pt;}
.y1aa{bottom:601.625067pt;}
.y9d{bottom:602.093402pt;}
.y18b{bottom:607.371352pt;}
.y2f6{bottom:607.675473pt;}
.yd7{bottom:607.976935pt;}
.y14{bottom:608.201467pt;}
.yf9{bottom:608.202024pt;}
.y210{bottom:608.205414pt;}
.y287{bottom:608.807026pt;}
.y118{bottom:608.810214pt;}
.y2bd{bottom:608.811277pt;}
.y156{bottom:608.825092pt;}
.y246{bottom:611.529020pt;}
.y1a8{bottom:611.686949pt;}
.y13{bottom:611.905333pt;}
.y67{bottom:615.309056pt;}
.y9c{bottom:616.001932pt;}
.y10{bottom:616.742667pt;}
.y12{bottom:618.632933pt;}
.yf{bottom:619.615600pt;}
.y18a{bottom:621.279882pt;}
.yd6{bottom:621.960917pt;}
.y286{bottom:622.035433pt;}
.y2bc{bottom:622.039683pt;}
.yf8{bottom:622.110555pt;}
.y20f{bottom:622.113944pt;}
.y245{bottom:622.187141pt;}
.y117{bottom:622.718744pt;}
.y155{bottom:622.733622pt;}
.ye{bottom:623.395200pt;}
.y1a7{bottom:625.670931pt;}
.y66{bottom:629.293037pt;}
.y9b{bottom:629.985913pt;}
.yd{bottom:631.029733pt;}
.y244{bottom:632.769601pt;}
.yc{bottom:634.809333pt;}
.y189{bottom:635.263863pt;}
.y285{bottom:635.339291pt;}
.y2bb{bottom:635.343541pt;}
.yd5{bottom:635.869447pt;}
.yf7{bottom:636.094536pt;}
.y20e{bottom:636.097926pt;}
.y116{bottom:636.702726pt;}
.y154{bottom:636.717604pt;}
.y2f5{bottom:639.498674pt;}
.y1a6{bottom:639.579461pt;}
.yb{bottom:642.444000pt;}
.y65{bottom:643.201568pt;}
.y243{bottom:643.427723pt;}
.y9a{bottom:643.894444pt;}
.ya{bottom:646.223467pt;}
.y284{bottom:648.643148pt;}
.y2ba{bottom:648.647399pt;}
.yf5{bottom:648.869200pt;}
.y188{bottom:649.172394pt;}
.yd4{bottom:649.853429pt;}
.yf6{bottom:650.003067pt;}
.yf4{bottom:650.003504pt;}
.y20d{bottom:650.006456pt;}
.y115{bottom:650.611256pt;}
.y153{bottom:650.626134pt;}
.y1a5{bottom:653.563443pt;}
.y242{bottom:654.010182pt;}
.y64{bottom:657.185549pt;}
.y99{bottom:657.878425pt;}
.y9{bottom:660.888000pt;}
.y283{bottom:661.871555pt;}
.y2b9{bottom:661.875806pt;}
.y7{bottom:662.399797pt;}
.yd3{bottom:663.761959pt;}
.yf3{bottom:663.987485pt;}
.y20c{bottom:663.990438pt;}
.y114{bottom:664.595238pt;}
.y152{bottom:664.610116pt;}
.y241{bottom:664.668304pt;}
.y1a4{bottom:667.471973pt;}
.y8{bottom:668.598267pt;}
.y63{bottom:671.094080pt;}
.y2f4{bottom:671.397591pt;}
.y98{bottom:671.786956pt;}
.y282{bottom:675.175413pt;}
.y2b8{bottom:675.179664pt;}
.y240{bottom:675.250764pt;}
.y187{bottom:677.064906pt;}
.yd2{bottom:677.745940pt;}
.yf2{bottom:677.971467pt;}
.y20b{bottom:677.974420pt;}
.y4{bottom:678.198267pt;}
.y113{bottom:678.503768pt;}
.y151{bottom:678.518646pt;}
.y5{bottom:679.634533pt;}
.y1a3{bottom:681.455955pt;}
.y62{bottom:685.078061pt;}
.y97{bottom:685.770937pt;}
.y6{bottom:685.908533pt;}
.y23f{bottom:685.908885pt;}
.y2f3{bottom:687.347050pt;}
.y281{bottom:688.479271pt;}
.y2b7{bottom:688.483521pt;}
.yd1{bottom:691.654471pt;}
.yf0{bottom:691.880840pt;}
.y20a{bottom:691.882950pt;}
.y112{bottom:692.487750pt;}
.y150{bottom:692.502628pt;}
.y1a2{bottom:695.364485pt;}
.yf1{bottom:695.735333pt;}
.y23e{bottom:696.567007pt;}
.y61{bottom:698.986592pt;}
.y96{bottom:699.679468pt;}
.y280{bottom:701.783128pt;}
.y2b6{bottom:701.787379pt;}
.y2f2{bottom:703.296508pt;}
.yef{bottom:705.864821pt;}
.y186{bottom:705.864958pt;}
.y209{bottom:705.866931pt;}
.y111{bottom:706.396280pt;}
.y14f{bottom:706.411158pt;}
.y23d{bottom:707.149467pt;}
.y1a1{bottom:709.348466pt;}
.y3{bottom:710.022548pt;}
.y60{bottom:712.970573pt;}
.y95{bottom:713.663449pt;}
.y27f{bottom:715.011535pt;}
.y2b5{bottom:715.015786pt;}
.y2f1{bottom:719.245966pt;}
.yd0{bottom:719.623497pt;}
.yee{bottom:719.773352pt;}
.y185{bottom:719.773488pt;}
.y208{bottom:719.775462pt;}
.y110{bottom:720.380262pt;}
.y14e{bottom:720.395140pt;}
.y5f{bottom:726.954555pt;}
.y94{bottom:727.571980pt;}
.y27e{bottom:728.315393pt;}
.y2b4{bottom:728.319644pt;}
.y23c{bottom:731.263397pt;}
.y2{bottom:733.001467pt;}
.yed{bottom:733.757333pt;}
.y184{bottom:733.757470pt;}
.y207{bottom:733.759443pt;}
.yeb{bottom:733.760716pt;}
.y10f{bottom:734.288792pt;}
.y14d{bottom:734.303670pt;}
.y1ec{bottom:737.461246pt;}
.yec{bottom:737.612533pt;}
.y5e{bottom:740.863085pt;}
.y93{bottom:741.555961pt;}
.y27d{bottom:741.619251pt;}
.y2b3{bottom:741.623502pt;}
.y182{bottom:746.532133pt;}
.ycf{bottom:747.516009pt;}
.y183{bottom:747.666000pt;}
.y181{bottom:747.667974pt;}
.yea{bottom:747.669247pt;}
.y10e{bottom:748.272774pt;}
.y14c{bottom:748.287651pt;}
.y1eb{bottom:748.724662pt;}
.y2f0{bottom:751.144883pt;}
.y5d{bottom:754.847067pt;}
.y27c{bottom:754.923109pt;}
.y2b2{bottom:754.927359pt;}
.y92{bottom:755.464491pt;}
.y23b{bottom:761.651112pt;}
.y180{bottom:761.651955pt;}
.ye9{bottom:761.653228pt;}
.y10d{bottom:762.181304pt;}
.y14b{bottom:762.196182pt;}
.y1{bottom:762.254933pt;}
.y1ea{bottom:766.262063pt;}
.y27b{bottom:768.151515pt;}
.y2b1{bottom:768.155766pt;}
.y91{bottom:769.448473pt;}
.y23a{bottom:775.559643pt;}
.yce{bottom:775.560486pt;}
.ye8{bottom:775.561759pt;}
.y10c{bottom:776.165286pt;}
.y14a{bottom:776.180163pt;}
.y1e9{bottom:777.675953pt;}
.y27a{bottom:781.455373pt;}
.y2b0{bottom:781.459624pt;}
.y1e8{bottom:789.089843pt;}
.y239{bottom:789.543624pt;}
.ycd{bottom:789.544467pt;}
.ye7{bottom:789.545740pt;}
.y10b{bottom:790.073816pt;}
.y149{bottom:790.088694pt;}
.y279{bottom:794.759231pt;}
.y2af{bottom:794.763482pt;}
.y1e5{bottom:800.502932pt;}
.y1e7{bottom:800.503733pt;}
.y1e6{bottom:802.393600pt;}
.y58{bottom:802.922667pt;}
.y238{bottom:803.452155pt;}
.ycc{bottom:803.452998pt;}
.ye6{bottom:803.454270pt;}
.y2ef{bottom:803.603950pt;}
.y2ec{bottom:803.754133pt;}
.y10a{bottom:804.057798pt;}
.y148{bottom:804.072675pt;}
.y278{bottom:808.063089pt;}
.y2ae{bottom:808.067340pt;}
.y237{bottom:817.436136pt;}
.ycb{bottom:817.436979pt;}
.ye5{bottom:817.438252pt;}
.y109{bottom:817.966328pt;}
.y147{bottom:817.981206pt;}
.y1e4{bottom:818.040333pt;}
.y277{bottom:821.291495pt;}
.y2ad{bottom:821.295746pt;}
.y236{bottom:831.344667pt;}
.y235{bottom:831.344952pt;}
.yca{bottom:831.345509pt;}
.ye4{bottom:831.346782pt;}
.y108{bottom:831.950309pt;}
.y146{bottom:831.965187pt;}
.y276{bottom:834.595353pt;}
.y2ac{bottom:834.599604pt;}
.y1e3{bottom:835.577733pt;}
.y1e1{bottom:835.578716pt;}
.y2ee{bottom:838.601899pt;}
.y1e2{bottom:838.677067pt;}
.y57{bottom:838.903867pt;}
.y234{bottom:845.328933pt;}
.yc9{bottom:845.329491pt;}
.ye3{bottom:845.330764pt;}
.y233{bottom:845.342243pt;}
.y107{bottom:845.858840pt;}
.y145{bottom:845.873718pt;}
.y275{bottom:847.899211pt;}
.y2ab{bottom:847.903462pt;}
.y1e0{bottom:854.400668pt;}
.yc8{bottom:859.238021pt;}
.ye2{bottom:859.239294pt;}
.y232{bottom:859.250774pt;}
.y106{bottom:859.842821pt;}
.y144{bottom:859.857699pt;}
.y274{bottom:861.127618pt;}
.y2aa{bottom:861.131868pt;}
.y1df{bottom:865.890220pt;}
.yc7{bottom:873.222003pt;}
.y231{bottom:873.234755pt;}
.y2ed{bottom:873.524133pt;}
.y105{bottom:873.751352pt;}
.y143{bottom:873.766229pt;}
.y273{bottom:874.431475pt;}
.y2a9{bottom:874.435726pt;}
.y2eb{bottom:875.489600pt;}
.y1de{bottom:877.304110pt;}
.yc6{bottom:887.130533pt;}
.ye1{bottom:887.131806pt;}
.y230{bottom:887.143286pt;}
.y104{bottom:887.735333pt;}
.y2a8{bottom:887.739584pt;}
.y142{bottom:887.750211pt;}
.y1dd{bottom:888.718000pt;}
.y5b{bottom:913.436000pt;}
.y103{bottom:913.441153pt;}
.y1ef{bottom:913.441639pt;}
.y2ea{bottom:915.023467pt;}
.y2e9{bottom:944.579200pt;}
.h17{height:15.852931pt;}
.he{height:17.834592pt;}
.h8{height:19.411226pt;}
.h4{height:20.961310pt;}
.h15{height:21.231725pt;}
.h19{height:24.279373pt;}
.h14{height:26.016256pt;}
.h9{height:26.830208pt;}
.h18{height:27.143057pt;}
.hb{height:27.735755pt;}
.hc{height:27.748352pt;}
.h7{height:29.345750pt;}
.h13{height:30.350522pt;}
.h12{height:30.648076pt;}
.hd{height:31.217331pt;}
.h6{height:32.152141pt;}
.hf{height:33.538602pt;}
.h10{height:34.686310pt;}
.h20{height:35.971628pt;}
.h1d{height:36.874903pt;}
.h1f{height:39.569296pt;}
.h1e{height:40.562912pt;}
.h2{height:41.622963pt;}
.h5{height:45.959296pt;}
.h3{height:58.532224pt;}
.h11{height:60.699955pt;}
.ha{height:367.218667pt;}
.h1a{height:460.118667pt;}
.h16{height:761.422667pt;}
.h0{height:983.962667pt;}
.h1{height:984.000000pt;}
.h1c{height:1058.000000pt;}
.h1b{height:1058.268000pt;}
.w0{width:720.000000pt;}
.w1{width:793.701333pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:6.426533pt;}
.x2b{left:7.710267pt;}
.x20{left:12.550133pt;}
.x1f{left:13.455547pt;}
.x1e{left:18.897600pt;}
.x2{left:27.741733pt;}
.xf{left:36.056667pt;}
.x1{left:49.133867pt;}
.xe{left:54.047200pt;}
.x37{left:57.145730pt;}
.x17{left:65.083728pt;}
.x38{left:67.728487pt;}
.x4b{left:74.379815pt;}
.x4e{left:83.601016pt;}
.x33{left:111.344800pt;}
.xd{left:126.916533pt;}
.x36{left:137.574682pt;}
.x45{left:142.034667pt;}
.x4f{left:152.690260pt;}
.x47{left:160.629867pt;}
.x3{left:162.822000pt;}
.x4{left:168.415733pt;}
.x1d{left:201.826667pt;}
.x1a{left:202.809333pt;}
.x48{left:215.433067pt;}
.x4d{left:221.251789pt;}
.x2a{left:229.946540pt;}
.x4c{left:232.665357pt;}
.x24{left:236.144800pt;}
.x25{left:240.907067pt;}
.x1b{left:256.478667pt;}
.x1c{left:258.066133pt;}
.x49{left:263.508533pt;}
.x10{left:268.346400pt;}
.x23{left:282.859733pt;}
.x5{left:286.412533pt;}
.x6{left:293.140133pt;}
.x2e{left:309.467600pt;}
.x46{left:314.985733pt;}
.x34{left:320.125867pt;}
.x35{left:323.905467pt;}
.x4a{left:326.702267pt;}
.x18{left:375.912623pt;}
.x42{left:380.296000pt;}
.x3c{left:383.924825pt;}
.x26{left:391.862692pt;}
.x43{left:397.454742pt;}
.x11{left:401.461333pt;}
.x41{left:407.962133pt;}
.x12{left:415.672267pt;}
.x13{left:419.829733pt;}
.x7{left:433.511733pt;}
.x8{left:439.105333pt;}
.x39{left:472.365118pt;}
.x16{left:489.146620pt;}
.x3e{left:525.958933pt;}
.x27{left:537.751067pt;}
.x2f{left:544.629867pt;}
.x28{left:547.199867pt;}
.x30{left:549.467467pt;}
.x9{left:554.456533pt;}
.xa{left:560.730533pt;}
.x14{left:598.299067pt;}
.x15{left:602.456533pt;}
.x3f{left:633.751067pt;}
.xb{left:644.106933pt;}
.xc{left:649.247067pt;}
.x3a{left:650.607733pt;}
.x40{left:651.968400pt;}
.x3b{left:654.387200pt;}
.x31{left:659.451867pt;}
.x32{left:664.289600pt;}
.x29{left:666.028133pt;}
.x19{left:672.755733pt;}
.x3d{left:674.872267pt;}
.x44{left:680.995067pt;}
.x2d{left:691.808473pt;}
.x21{left:692.791825pt;}
.x22{left:693.925719pt;}
}




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