
    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_5d68e6084b29a30b01a24381.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.190918;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_19c49b8593425e374522630c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.190918;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_e8f899fc8e9fa0e9afeeff77.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.191406;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_ec71d8bd218ddb2c606b8354.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_323a5d294fc2ee0d1aed7847.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.191406;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_ef53040e56c95099587c89a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.021484;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_80fb4faf45a743c80a1ec7f8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.349000;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_f1dc3b2bdbf962b9f1e0a591.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.200885;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_aa17e6410e0ccf976ba86b41.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;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_e4a3c0ddd4862a3c7623bfd0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e31e4c30b67ed8459f923e7d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.203000;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_9c507c2aea686cc885d87494.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.362000;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_e8f899fc8e9fa0e9afeeff77.woff2')format("woff");}.fff{font-family:fff;line-height:1.191406;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_e31e4c30b67ed8459f923e7d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1533894d6a2521eb7123fe3d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d79061ad67f75ff7913eba6f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958496;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:ff13;src:url('chunks/assets/font_f1dc3b2bdbf962b9f1e0a591.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.200885;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:ff14;src:url('chunks/assets/font_07bb4e6c2e2620eba05c0270.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.349000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d79061ad67f75ff7913eba6f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958496;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:ff16;src:url('chunks/assets/font_73a6a96f6837f2a107383b86.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.225182;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:ff17;src:url('chunks/assets/font_683a4455d7697bd218fb2fa0.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_401eafaeebe2408d04dbde69.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.268000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_806cf4dee9ccdd0b037cb09a.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.392000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-48.371904px;}
.va{vertical-align:-34.556544px;}
.v2{vertical-align:-20.400000px;}
.v5{vertical-align:-18.360000px;}
.v4{vertical-align:-17.340000px;}
.v6{vertical-align:-10.842000px;}
.vb{vertical-align:-8.400000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:10.800600px;}
.v3{vertical-align:18.186000px;}
.v1{vertical-align:20.400000px;}
.v9{vertical-align:44.943552px;}
.lsb2{letter-spacing:-5.832000px;}
.ls41{letter-spacing:-4.968000px;}
.ls16{letter-spacing:-4.080000px;}
.ls8c{letter-spacing:-3.864000px;}
.ls9b{letter-spacing:-3.780000px;}
.ls52{letter-spacing:-1.782000px;}
.lsd0{letter-spacing:-1.755000px;}
.ls92{letter-spacing:-1.620000px;}
.lsba{letter-spacing:-1.566000px;}
.lsce{letter-spacing:-1.530000px;}
.ls8b{letter-spacing:-1.470000px;}
.lsda{letter-spacing:-1.350000px;}
.ls87{letter-spacing:-1.344000px;}
.lsd4{letter-spacing:-1.305000px;}
.ls7c{letter-spacing:-1.296000px;}
.ls9a{letter-spacing:-1.218000px;}
.ls7a{letter-spacing:-1.134000px;}
.ls88{letter-spacing:-1.092000px;}
.ls89{letter-spacing:-1.050000px;}
.ls8a{letter-spacing:-0.966000px;}
.ls15{letter-spacing:-0.960000px;}
.ls79{letter-spacing:-0.918000px;}
.ls97{letter-spacing:-0.882000px;}
.ls72{letter-spacing:-0.803520px;}
.ls99{letter-spacing:-0.798000px;}
.lscd{letter-spacing:-0.765000px;}
.ls3d{letter-spacing:-0.756000px;}
.ls7b{letter-spacing:-0.737100px;}
.lsc7{letter-spacing:-0.720000px;}
.ls56{letter-spacing:-0.702000px;}
.ls6d{letter-spacing:-0.696384px;}
.ls8d{letter-spacing:-0.666900px;}
.ls71{letter-spacing:-0.642816px;}
.lsd7{letter-spacing:-0.630000px;}
.ls55{letter-spacing:-0.594000px;}
.lsd2{letter-spacing:-0.585000px;}
.lsb9{letter-spacing:-0.561600px;}
.ls86{letter-spacing:-0.546000px;}
.ls93{letter-spacing:-0.540000px;}
.lsa4{letter-spacing:-0.504000px;}
.lscb{letter-spacing:-0.495000px;}
.ls67{letter-spacing:-0.486000px;}
.lsc9{letter-spacing:-0.450000px;}
.ls3b{letter-spacing:-0.432000px;}
.ls51{letter-spacing:-0.421200px;}
.ls36{letter-spacing:-0.378000px;}
.lscc{letter-spacing:-0.360000px;}
.ls84{letter-spacing:-0.336000px;}
.ls65{letter-spacing:-0.324000px;}
.ls70{letter-spacing:-0.321408px;}
.lsca{letter-spacing:-0.315000px;}
.lsb3{letter-spacing:-0.294000px;}
.ls37{letter-spacing:-0.270000px;}
.ls85{letter-spacing:-0.218400px;}
.ls38{letter-spacing:-0.216000px;}
.ls68{letter-spacing:-0.210600px;}
.ls9c{letter-spacing:-0.210000px;}
.lsd8{letter-spacing:-0.180000px;}
.ls66{letter-spacing:-0.175500px;}
.ls35{letter-spacing:-0.162000px;}
.ls57{letter-spacing:-0.140400px;}
.lsd1{letter-spacing:-0.135000px;}
.ls98{letter-spacing:-0.126000px;}
.ls34{letter-spacing:-0.108000px;}
.ls3e{letter-spacing:-0.105300px;}
.lsc8{letter-spacing:-0.090000px;}
.ls96{letter-spacing:-0.070200px;}
.ls40{letter-spacing:-0.060000px;}
.ls18{letter-spacing:-0.054000px;}
.ls1a{letter-spacing:-0.051000px;}
.lsd9{letter-spacing:-0.045000px;}
.ls74{letter-spacing:-0.038016px;}
.ls53{letter-spacing:-0.035100px;}
.ls14{letter-spacing:0.000000px;}
.ls9e{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.013200px;}
.ls2{letter-spacing:0.013800px;}
.ls22{letter-spacing:0.024000px;}
.ls48{letter-spacing:0.032400px;}
.ls4f{letter-spacing:0.035100px;}
.lsbd{letter-spacing:0.045000px;}
.ls81{letter-spacing:0.048600px;}
.lsaa{letter-spacing:0.050400px;}
.ls5{letter-spacing:0.054000px;}
.lsa7{letter-spacing:0.054900px;}
.ls9d{letter-spacing:0.060000px;}
.ls3a{letter-spacing:0.070200px;}
.ls4c{letter-spacing:0.073800px;}
.lsbc{letter-spacing:0.090000px;}
.lsad{letter-spacing:0.092400px;}
.ls1c{letter-spacing:0.102000px;}
.lsb7{letter-spacing:0.103200px;}
.ls3c{letter-spacing:0.105300px;}
.ls30{letter-spacing:0.108000px;}
.lsbb{letter-spacing:0.135000px;}
.ls25{letter-spacing:0.140400px;}
.lsa9{letter-spacing:0.144900px;}
.lsb6{letter-spacing:0.149700px;}
.lsb{letter-spacing:0.154650px;}
.ls26{letter-spacing:0.159600px;}
.ls2b{letter-spacing:0.162000px;}
.lsa1{letter-spacing:0.162600px;}
.lsa0{letter-spacing:0.172800px;}
.ls33{letter-spacing:0.175500px;}
.ls2a{letter-spacing:0.177000px;}
.ls29{letter-spacing:0.177600px;}
.ls58{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.184800px;}
.ls7f{letter-spacing:0.189000px;}
.lsc6{letter-spacing:0.193500px;}
.lsa8{letter-spacing:0.207000px;}
.lsb4{letter-spacing:0.210000px;}
.ls28{letter-spacing:0.210600px;}
.ls23{letter-spacing:0.216000px;}
.lsb5{letter-spacing:0.216600px;}
.lsd3{letter-spacing:0.225000px;}
.ls21{letter-spacing:0.230400px;}
.ls42{letter-spacing:0.240000px;}
.ls61{letter-spacing:0.243300px;}
.ls39{letter-spacing:0.245700px;}
.lsc{letter-spacing:0.255000px;}
.ls7d{letter-spacing:0.264600px;}
.ls5a{letter-spacing:0.267840px;}
.ls4{letter-spacing:0.270000px;}
.ls49{letter-spacing:0.270900px;}
.ls7e{letter-spacing:0.275400px;}
.lsc2{letter-spacing:0.279000px;}
.ls91{letter-spacing:0.279600px;}
.ls69{letter-spacing:0.280800px;}
.ls6f{letter-spacing:0.321408px;}
.ls17{letter-spacing:0.324000px;}
.ls32{letter-spacing:0.334800px;}
.ls60{letter-spacing:0.349200px;}
.ls3f{letter-spacing:0.351000px;}
.ls47{letter-spacing:0.351600px;}
.ls2d{letter-spacing:0.355200px;}
.lsbe{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.361800px;}
.ls80{letter-spacing:0.372600px;}
.ls5b{letter-spacing:0.374976px;}
.ls6{letter-spacing:0.375600px;}
.ls19{letter-spacing:0.378000px;}
.ls27{letter-spacing:0.385800px;}
.ls50{letter-spacing:0.386100px;}
.ls1e{letter-spacing:0.387600px;}
.ls20{letter-spacing:0.388200px;}
.lsf{letter-spacing:0.401850px;}
.ls62{letter-spacing:0.403800px;}
.lsc5{letter-spacing:0.405000px;}
.ls54{letter-spacing:0.421200px;}
.ls5c{letter-spacing:0.428544px;}
.ls2e{letter-spacing:0.432000px;}
.lsc0{letter-spacing:0.450000px;}
.ls4e{letter-spacing:0.456300px;}
.ls6e{letter-spacing:0.482112px;}
.ls2c{letter-spacing:0.486000px;}
.ls64{letter-spacing:0.491400px;}
.lsc1{letter-spacing:0.495000px;}
.ls77{letter-spacing:0.526500px;}
.ls6b{letter-spacing:0.535680px;}
.ls9{letter-spacing:0.540000px;}
.lsa6{letter-spacing:0.550500px;}
.ls11{letter-spacing:0.563850px;}
.ls83{letter-spacing:0.572400px;}
.ls1f{letter-spacing:0.583800px;}
.ls7{letter-spacing:0.594000px;}
.ls46{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.612000px;}
.lsac{letter-spacing:0.621000px;}
.ls13{letter-spacing:0.625650px;}
.lsc4{letter-spacing:0.630000px;}
.ls8{letter-spacing:0.648000px;}
.ls44{letter-spacing:0.660000px;}
.ls43{letter-spacing:0.673800px;}
.lsc3{letter-spacing:0.675000px;}
.ls75{letter-spacing:0.684288px;}
.ls45{letter-spacing:0.702000px;}
.lsa3{letter-spacing:0.720000px;}
.lsbf{letter-spacing:0.751500px;}
.ls8e{letter-spacing:0.756000px;}
.lsd5{letter-spacing:0.765000px;}
.lsd{letter-spacing:0.770850px;}
.ls63{letter-spacing:0.780000px;}
.ls76{letter-spacing:0.810000px;}
.ls2f{letter-spacing:0.820800px;}
.lscf{letter-spacing:0.855000px;}
.lsa2{letter-spacing:0.864000px;}
.lse{letter-spacing:0.867000px;}
.lsa5{letter-spacing:0.913200px;}
.ls4a{letter-spacing:0.918000px;}
.ls12{letter-spacing:0.969000px;}
.lsb0{letter-spacing:0.972000px;}
.lsb1{letter-spacing:1.020000px;}
.ls4b{letter-spacing:1.026000px;}
.ls90{letter-spacing:1.080000px;}
.ls82{letter-spacing:1.134000px;}
.ls9f{letter-spacing:1.140000px;}
.lsa{letter-spacing:1.188000px;}
.ls1b{letter-spacing:1.224000px;}
.lsae{letter-spacing:1.242000px;}
.ls78{letter-spacing:1.296000px;}
.ls8f{letter-spacing:1.350000px;}
.lsaf{letter-spacing:1.458000px;}
.ls4d{letter-spacing:1.674000px;}
.lsd6{letter-spacing:1.890000px;}
.ls0{letter-spacing:2.592000px;}
.ls1d{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.lsb8{letter-spacing:4.620000px;}
.lsab{letter-spacing:6.120000px;}
.ls59{letter-spacing:41.247360px;}
.ls5f{letter-spacing:75.955968px;}
.ls95{letter-spacing:81.270000px;}
.ls94{letter-spacing:96.936000px;}
.ls6c{letter-spacing:113.349888px;}
.ls5d{letter-spacing:149.079744px;}
.ls5e{letter-spacing:243.834624px;}
.ls73{letter-spacing:415.476864px;}
.ls6a{letter-spacing:440.436096px;}
.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;}
}
.ws85{word-spacing:-440.436096px;}
.ws88{word-spacing:-415.476864px;}
.ws68{word-spacing:-125.509824px;}
.wsba{word-spacing:-72.240000px;}
.ws4e{word-spacing:-21.792000px;}
.ws2{word-spacing:-15.067500px;}
.ws27{word-spacing:-14.700000px;}
.ws80{word-spacing:-13.596000px;}
.ws33{word-spacing:-13.500000px;}
.wsd0{word-spacing:-13.122000px;}
.wsd4{word-spacing:-13.014000px;}
.ws7b{word-spacing:-12.960000px;}
.ws53{word-spacing:-12.906000px;}
.ws6{word-spacing:-12.798000px;}
.wsd3{word-spacing:-12.744000px;}
.ws67{word-spacing:-12.695616px;}
.ws6b{word-spacing:-12.642048px;}
.ws72{word-spacing:-12.588480px;}
.ws7c{word-spacing:-12.582000px;}
.ws6f{word-spacing:-12.534912px;}
.ws76{word-spacing:-12.528000px;}
.ws6c{word-spacing:-12.481344px;}
.ws1{word-spacing:-12.480000px;}
.ws69{word-spacing:-12.427776px;}
.ws32{word-spacing:-12.366000px;}
.ws4{word-spacing:-12.360000px;}
.ws2f{word-spacing:-12.258000px;}
.ws5{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.wsd1{word-spacing:-12.150000px;}
.ws34{word-spacing:-12.096000px;}
.ws58{word-spacing:-12.042000px;}
.ws77{word-spacing:-11.988000px;}
.ws78{word-spacing:-11.934000px;}
.ws29{word-spacing:-11.880000px;}
.wsa9{word-spacing:-11.826000px;}
.wsa8{word-spacing:-11.772000px;}
.ws92{word-spacing:-11.718000px;}
.wse7{word-spacing:-11.664000px;}
.ws57{word-spacing:-11.556000px;}
.ws6a{word-spacing:-11.463552px;}
.ws71{word-spacing:-11.356416px;}
.ws7d{word-spacing:-11.124000px;}
.ws7f{word-spacing:-10.962000px;}
.wse6{word-spacing:-10.800000px;}
.wsa7{word-spacing:-10.746000px;}
.ws54{word-spacing:-10.584000px;}
.ws109{word-spacing:-10.350000px;}
.ws8{word-spacing:-10.200000px;}
.ws105{word-spacing:-10.170000px;}
.ws10f{word-spacing:-10.080000px;}
.wsec{word-spacing:-9.990000px;}
.wsee{word-spacing:-9.855000px;}
.ws116{word-spacing:-9.810000px;}
.wsfa{word-spacing:-9.765000px;}
.wsef{word-spacing:-9.720000px;}
.wsf7{word-spacing:-9.675000px;}
.ws112{word-spacing:-9.540000px;}
.ws96{word-spacing:-9.534000px;}
.ws75{word-spacing:-9.313920px;}
.wsc4{word-spacing:-9.114000px;}
.wsf0{word-spacing:-9.000000px;}
.wsd8{word-spacing:-8.820000px;}
.wsed{word-spacing:-8.775000px;}
.ws74{word-spacing:-8.591616px;}
.ws79{word-spacing:-8.494200px;}
.wsa6{word-spacing:-8.459100px;}
.ws4f{word-spacing:-8.424000px;}
.ws56{word-spacing:-8.388900px;}
.ws51{word-spacing:-8.353800px;}
.ws31{word-spacing:-8.318700px;}
.ws66{word-spacing:-8.248500px;}
.ws2b{word-spacing:-8.213400px;}
.ws2c{word-spacing:-8.178300px;}
.ws2a{word-spacing:-8.143200px;}
.ws7a{word-spacing:-8.108100px;}
.ws2e{word-spacing:-8.073000px;}
.ws2d{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.ws50{word-spacing:-8.002800px;}
.ws28{word-spacing:-7.967700px;}
.ws55{word-spacing:-7.932600px;}
.wsaf{word-spacing:-7.897500px;}
.ws30{word-spacing:-7.862400px;}
.ws59{word-spacing:-7.827300px;}
.ws64{word-spacing:-7.792200px;}
.ws65{word-spacing:-7.757100px;}
.ws52{word-spacing:-7.616700px;}
.wse5{word-spacing:-7.476300px;}
.wsa0{word-spacing:-7.300800px;}
.ws7e{word-spacing:-7.230600px;}
.ws7{word-spacing:-6.630000px;}
.wsd2{word-spacing:-6.120000px;}
.ws4a{word-spacing:-5.508000px;}
.wse8{word-spacing:-4.620000px;}
.wsa4{word-spacing:-4.284000px;}
.ws11b{word-spacing:-3.960000px;}
.wse{word-spacing:-3.840000px;}
.wsa2{word-spacing:-3.318000px;}
.wsb{word-spacing:-3.276000px;}
.wscb{word-spacing:-3.240000px;}
.ws49{word-spacing:-1.890000px;}
.ws48{word-spacing:-1.860000px;}
.ws18{word-spacing:-1.836000px;}
.ws61{word-spacing:-1.782000px;}
.ws42{word-spacing:-1.728000px;}
.ws20{word-spacing:-1.632000px;}
.ws84{word-spacing:-1.620000px;}
.wse2{word-spacing:-1.566000px;}
.ws1b{word-spacing:-1.530000px;}
.ws19{word-spacing:-1.512000px;}
.wseb{word-spacing:-1.458000px;}
.wsfc{word-spacing:-1.440000px;}
.ws5b{word-spacing:-1.404000px;}
.ws47{word-spacing:-1.386000px;}
.ws82{word-spacing:-1.350000px;}
.ws3c{word-spacing:-1.296000px;}
.ws26{word-spacing:-1.275000px;}
.wsc{word-spacing:-1.260000px;}
.ws16{word-spacing:-1.242000px;}
.ws1d{word-spacing:-1.224000px;}
.ws81{word-spacing:-1.188000px;}
.wsff{word-spacing:-1.170000px;}
.wscc{word-spacing:-1.140000px;}
.wsf{word-spacing:-1.134000px;}
.ws114{word-spacing:-1.125000px;}
.ws60{word-spacing:-1.080000px;}
.wsf1{word-spacing:-1.035000px;}
.ws8b{word-spacing:-1.026000px;}
.wsfb{word-spacing:-0.990000px;}
.ws91{word-spacing:-0.972000px;}
.ws23{word-spacing:-0.969000px;}
.wsa3{word-spacing:-0.966000px;}
.ws10d{word-spacing:-0.945000px;}
.wsc1{word-spacing:-0.924000px;}
.wsc3{word-spacing:-0.918000px;}
.ws21{word-spacing:-0.867000px;}
.ws41{word-spacing:-0.864000px;}
.ws8a{word-spacing:-0.810000px;}
.ws118{word-spacing:-0.765000px;}
.wsea{word-spacing:-0.756000px;}
.wsca{word-spacing:-0.720000px;}
.ws43{word-spacing:-0.702000px;}
.wsfd{word-spacing:-0.675000px;}
.ws3b{word-spacing:-0.648000px;}
.ws101{word-spacing:-0.630000px;}
.ws12{word-spacing:-0.594000px;}
.wsf3{word-spacing:-0.585000px;}
.ws10{word-spacing:-0.540000px;}
.ws8e{word-spacing:-0.526500px;}
.wsf4{word-spacing:-0.495000px;}
.ws3d{word-spacing:-0.486000px;}
.ws86{word-spacing:-0.482112px;}
.wscf{word-spacing:-0.462000px;}
.ws108{word-spacing:-0.450000px;}
.ws11{word-spacing:-0.432000px;}
.ws1a{word-spacing:-0.408000px;}
.ws104{word-spacing:-0.405000px;}
.ws36{word-spacing:-0.378000px;}
.ws111{word-spacing:-0.360000px;}
.ws15{word-spacing:-0.324000px;}
.wsf2{word-spacing:-0.315000px;}
.ws40{word-spacing:-0.270000px;}
.ws5a{word-spacing:-0.240000px;}
.wsfe{word-spacing:-0.225000px;}
.ws35{word-spacing:-0.216000px;}
.ws62{word-spacing:-0.180000px;}
.ws4d{word-spacing:-0.175500px;}
.ws4b{word-spacing:-0.162000px;}
.wsf5{word-spacing:-0.135000px;}
.ws46{word-spacing:-0.108000px;}
.wse9{word-spacing:-0.105300px;}
.ws25{word-spacing:-0.102000px;}
.ws3a{word-spacing:-0.054000px;}
.wsf6{word-spacing:-0.045000px;}
.ws9{word-spacing:0.000000px;}
.ws103{word-spacing:0.045000px;}
.ws37{word-spacing:0.054000px;}
.wsc0{word-spacing:0.070200px;}
.ws115{word-spacing:0.090000px;}
.ws45{word-spacing:0.105300px;}
.ws89{word-spacing:0.108000px;}
.wsa5{word-spacing:0.126000px;}
.ws10c{word-spacing:0.135000px;}
.ws44{word-spacing:0.162000px;}
.ws107{word-spacing:0.180000px;}
.ws13{word-spacing:0.216000px;}
.ws5f{word-spacing:0.240000px;}
.ws38{word-spacing:0.270000px;}
.wsf8{word-spacing:0.315000px;}
.ws3f{word-spacing:0.324000px;}
.ws113{word-spacing:0.360000px;}
.ws14{word-spacing:0.378000px;}
.ws3e{word-spacing:0.432000px;}
.ws110{word-spacing:0.450000px;}
.ws5d{word-spacing:0.480000px;}
.ws5e{word-spacing:0.486000px;}
.ws10e{word-spacing:0.495000px;}
.ws83{word-spacing:0.540000px;}
.wsce{word-spacing:0.546000px;}
.ws8f{word-spacing:0.594000px;}
.ws1f{word-spacing:0.612000px;}
.ws117{word-spacing:0.630000px;}
.wsc2{word-spacing:0.648000px;}
.ws106{word-spacing:0.675000px;}
.ws87{word-spacing:0.696384px;}
.wsab{word-spacing:0.702000px;}
.ws10b{word-spacing:0.720000px;}
.ws8d{word-spacing:0.756000px;}
.ws8c{word-spacing:0.780000px;}
.wsf9{word-spacing:0.810000px;}
.ws73{word-spacing:0.857088px;}
.ws39{word-spacing:0.864000px;}
.wsa{word-spacing:0.960000px;}
.ws11d{word-spacing:0.972000px;}
.ws100{word-spacing:1.035000px;}
.ws63{word-spacing:1.080000px;}
.ws1e{word-spacing:1.122000px;}
.ws102{word-spacing:1.125000px;}
.ws11c{word-spacing:1.188000px;}
.ws10a{word-spacing:1.215000px;}
.ws22{word-spacing:1.224000px;}
.wsde{word-spacing:1.242000px;}
.wsdf{word-spacing:1.260000px;}
.wse0{word-spacing:1.296000px;}
.ws24{word-spacing:1.428000px;}
.wsad{word-spacing:1.512000px;}
.wsac{word-spacing:1.560000px;}
.wsa1{word-spacing:1.620000px;}
.wscd{word-spacing:1.674000px;}
.ws17{word-spacing:1.728000px;}
.wse3{word-spacing:1.890000px;}
.ws1c{word-spacing:1.938000px;}
.ws90{word-spacing:1.944000px;}
.wsaa{word-spacing:2.106000px;}
.wse4{word-spacing:2.484000px;}
.ws119{word-spacing:2.916000px;}
.ws5c{word-spacing:2.970000px;}
.ws11a{word-spacing:3.456000px;}
.wsd{word-spacing:4.080000px;}
.ws6d{word-spacing:4.339008px;}
.ws4c{word-spacing:4.374000px;}
.wse1{word-spacing:5.832000px;}
.ws70{word-spacing:10.499328px;}
.wsae{word-spacing:14.742000px;}
.wsb1{word-spacing:26.922000px;}
.wsb3{word-spacing:40.404000px;}
.wsb0{word-spacing:52.584000px;}
.wsb7{word-spacing:54.982200px;}
.ws95{word-spacing:67.205100px;}
.ws94{word-spacing:70.644000px;}
.ws6e{word-spacing:77.191488px;}
.wsdd{word-spacing:77.826000px;}
.wsb5{word-spacing:80.094000px;}
.ws9a{word-spacing:88.200000px;}
.wsda{word-spacing:94.374000px;}
.wsdb{word-spacing:97.986000px;}
.wsc5{word-spacing:98.154000px;}
.wsc9{word-spacing:102.396000px;}
.ws93{word-spacing:111.724200px;}
.wsb6{word-spacing:113.904000px;}
.wsc8{word-spacing:122.556000px;}
.wsb2{word-spacing:130.620000px;}
.wsc6{word-spacing:138.096000px;}
.wsb4{word-spacing:145.950000px;}
.wsc7{word-spacing:150.318000px;}
.wsb8{word-spacing:164.896200px;}
.ws97{word-spacing:196.131600px;}
.ws9c{word-spacing:199.235400px;}
.ws98{word-spacing:199.794000px;}
.ws9d{word-spacing:205.199400px;}
.wsd6{word-spacing:207.942000px;}
.wsd7{word-spacing:208.992000px;}
.wsbc{word-spacing:211.680000px;}
.ws9b{word-spacing:213.700200px;}
.wsbd{word-spacing:217.476000px;}
.wsbb{word-spacing:223.608000px;}
.ws9f{word-spacing:224.364000px;}
.ws99{word-spacing:227.505600px;}
.wsdc{word-spacing:232.377600px;}
.wsbf{word-spacing:234.570000px;}
.wsb9{word-spacing:240.072000px;}
.ws9e{word-spacing:245.309400px;}
.wsbe{word-spacing:258.174000px;}
.wsd5{word-spacing:300.384000px;}
.wsd9{word-spacing:336.113400px;}
._e{margin-left:-114.046272px;}
._33{margin-left:-80.484000px;}
._1{margin-left:-11.044800px;}
._6{margin-left:-9.859800px;}
._3c{margin-left:-8.537400px;}
._a{margin-left:-7.279800px;}
._3{margin-left:-5.739000px;}
._2{margin-left:-4.188000px;}
._8{margin-left:-2.887800px;}
._0{margin-left:-1.776000px;}
._9{width:1.028400px;}
._7{width:2.160600px;}
._4{width:4.110000px;}
._c{width:5.766000px;}
._40{width:7.200000px;}
._41{width:8.370000px;}
._3f{width:10.170000px;}
._43{width:11.388000px;}
._3e{width:12.960000px;}
._35{width:15.282000px;}
._28{width:16.647000px;}
._42{width:17.751000px;}
._39{width:39.999600px;}
._5{width:43.944000px;}
._d{width:47.440800px;}
._b{width:49.312200px;}
._f{width:50.389800px;}
._30{width:59.064000px;}
._2e{width:60.240000px;}
._16{width:68.754000px;}
._34{width:70.591800px;}
._15{width:75.978000px;}
._31{width:79.285800px;}
._19{width:80.670000px;}
._17{width:83.034000px;}
._29{width:84.378000px;}
._18{width:86.298000px;}
._2b{width:88.032000px;}
._2c{width:89.220000px;}
._2a{width:91.266000px;}
._2d{width:92.316000px;}
._1c{width:96.138000px;}
._24{width:100.086000px;}
._1d{width:103.194000px;}
._25{width:104.790000px;}
._1b{width:106.933800px;}
._10{width:112.779000px;}
._11{width:114.912000px;}
._23{width:116.298000px;}
._21{width:118.974000px;}
._3d{width:136.867800px;}
._2f{width:139.944000px;}
._14{width:143.052000px;}
._3a{width:152.250000px;}
._1a{width:153.680400px;}
._1f{width:159.580800px;}
._22{width:172.684800px;}
._1e{width:176.526000px;}
._38{width:181.986000px;}
._32{width:183.720000px;}
._12{width:185.340900px;}
._20{width:191.952000px;}
._13{width:214.650000px;}
._26{width:271.278000px;}
._3b{width:272.814000px;}
._27{width:305.970000px;}
._37{width:351.079200px;}
._36{width:370.998000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs10{font-size:27.300000px;}
.fse{font-size:29.376000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fsd{font-size:38.016000px;}
.fs4{font-size:39.000000px;}
.fsf{font-size:42.000000px;}
.fs11{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsc{font-size:53.568000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsb{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177600px;}
.y1{bottom:27.197850px;}
.yc7{bottom:51.407700px;}
.y2d{bottom:68.313900px;}
.y146{bottom:68.551500px;}
.y76{bottom:68.553000px;}
.yb1{bottom:68.556000px;}
.y23a{bottom:68.794800px;}
.y116{bottom:70.324800px;}
.y284{bottom:71.070000px;}
.y1f9{bottom:71.806800px;}
.y154{bottom:74.217300px;}
.y1ed{bottom:76.053000px;}
.y16d{bottom:83.047800px;}
.y2c{bottom:83.307900px;}
.y75{bottom:83.551500px;}
.yb0{bottom:83.554500px;}
.y283{bottom:83.816250px;}
.y239{bottom:83.817300px;}
.y115{bottom:85.323300px;}
.y1bc{bottom:86.044800px;}
.y1f8{bottom:86.805300px;}
.y153{bottom:89.224800px;}
.y1ec{bottom:91.051500px;}
.y1ab{bottom:94.801500px;}
.y282{bottom:96.562500px;}
.y16c{bottom:98.046300px;}
.y2b{bottom:98.307900px;}
.yf4{bottom:98.550000px;}
.yaf{bottom:98.553000px;}
.y145{bottom:98.554500px;}
.y74{bottom:98.559000px;}
.y238{bottom:98.815800px;}
.y114{bottom:100.321800px;}
.y1bb{bottom:101.044800px;}
.y1f7{bottom:101.803800px;}
.y152{bottom:104.223300px;}
.y1eb{bottom:106.051500px;}
.y281{bottom:109.308750px;}
.y1aa{bottom:109.810500px;}
.y16b{bottom:113.044800px;}
.y2a{bottom:113.307900px;}
.yf3{bottom:113.550000px;}
.yae{bottom:113.551500px;}
.y144{bottom:113.553000px;}
.y73{bottom:113.557500px;}
.y237{bottom:113.814300px;}
.y113{bottom:115.320300px;}
.y1ba{bottom:116.044800px;}
.y1f6{bottom:116.802300px;}
.y151{bottom:119.221800px;}
.y1ea{bottom:121.062000px;}
.y280{bottom:122.055000px;}
.y1a9{bottom:124.809000px;}
.y16a{bottom:128.043300px;}
.yad{bottom:128.551500px;}
.y72{bottom:128.556000px;}
.y236{bottom:128.812800px;}
.y112{bottom:130.318800px;}
.y1b9{bottom:131.046300px;}
.y1f5{bottom:131.800800px;}
.y29{bottom:132.636900px;}
.y150{bottom:134.220300px;}
.y27f{bottom:134.801250px;}
.y1e9{bottom:136.060500px;}
.y1a8{bottom:139.807500px;}
.yf2{bottom:140.814600px;}
.y28{bottom:143.307900px;}
.yac{bottom:143.553000px;}
.y71{bottom:143.554500px;}
.y143{bottom:143.557500px;}
.y235{bottom:143.811300px;}
.y111{bottom:145.317300px;}
.y1b8{bottom:146.044800px;}
.y1f4{bottom:146.799300px;}
.y27e{bottom:147.547500px;}
.y14f{bottom:149.218800px;}
.y1e8{bottom:151.059000px;}
.y1a7{bottom:154.806000px;}
.yf1{bottom:155.814600px;}
.y27{bottom:158.307900px;}
.yab{bottom:158.551500px;}
.y70{bottom:158.553000px;}
.y142{bottom:158.556000px;}
.y234{bottom:158.809800px;}
.y27d{bottom:160.293750px;}
.y110{bottom:160.315800px;}
.y1b7{bottom:161.046300px;}
.y1f3{bottom:161.797800px;}
.y14e{bottom:164.217300px;}
.y1e7{bottom:166.057500px;}
.y1a6{bottom:169.804500px;}
.yf0{bottom:170.823600px;}
.y27c{bottom:173.040000px;}
.y26{bottom:173.307900px;}
.y6f{bottom:173.551500px;}
.y141{bottom:173.554500px;}
.y233{bottom:173.808300px;}
.y10f{bottom:175.314300px;}
.y1b6{bottom:176.044800px;}
.y1f2{bottom:176.796300px;}
.y176{bottom:177.489450px;}
.y14d{bottom:179.215800px;}
.y1e6{bottom:181.056000px;}
.y1a5{bottom:184.803000px;}
.y27b{bottom:185.786250px;}
.yef{bottom:185.822100px;}
.y6e{bottom:188.550000px;}
.yaa{bottom:188.551500px;}
.y140{bottom:188.553000px;}
.y232{bottom:188.806800px;}
.y10e{bottom:190.312800px;}
.y1b5{bottom:191.043300px;}
.y1f1{bottom:191.794800px;}
.y175{bottom:192.487950px;}
.y25{bottom:192.636900px;}
.y1e5{bottom:196.054500px;}
.y27a{bottom:198.532500px;}
.y1a4{bottom:199.801500px;}
.y2c1{bottom:200.056800px;}
.yee{bottom:200.820600px;}
.y6d{bottom:203.550000px;}
.ya9{bottom:203.551500px;}
.y231{bottom:203.805300px;}
.y10d{bottom:205.311300px;}
.y1f0{bottom:206.793300px;}
.y174{bottom:207.486450px;}
.y1e4{bottom:211.053000px;}
.y279{bottom:211.278750px;}
.y1a3{bottom:214.800000px;}
.y2c0{bottom:215.055300px;}
.yed{bottom:215.819100px;}
.ya8{bottom:218.550000px;}
.y230{bottom:218.803800px;}
.y10c{bottom:220.309800px;}
.y173{bottom:222.484950px;}
.y278{bottom:224.025000px;}
.y24{bottom:225.694800px;}
.y1e3{bottom:226.051500px;}
.y2bf{bottom:230.053800px;}
.yec{bottom:230.817600px;}
.y6c{bottom:233.800800px;}
.y22f{bottom:233.802300px;}
.y10b{bottom:235.308300px;}
.y169{bottom:236.215800px;}
.y277{bottom:236.771250px;}
.y172{bottom:237.483450px;}
.y23{bottom:240.693300px;}
.y1e2{bottom:241.051500px;}
.y1a2{bottom:241.891650px;}
.y2be{bottom:245.052300px;}
.ya7{bottom:245.601600px;}
.yeb{bottom:245.816100px;}
.y13f{bottom:248.049300px;}
.y6b{bottom:248.799300px;}
.y22e{bottom:248.800800px;}
.y276{bottom:249.517500px;}
.y10a{bottom:250.306800px;}
.y1c0{bottom:251.220450px;}
.y171{bottom:252.481950px;}
.y22{bottom:255.691800px;}
.y1e1{bottom:256.050000px;}
.y1a1{bottom:256.890150px;}
.y2bd{bottom:260.050800px;}
.ya6{bottom:260.600100px;}
.yea{bottom:260.814600px;}
.y275{bottom:262.263750px;}
.y13e{bottom:263.047800px;}
.y6a{bottom:263.797800px;}
.y22d{bottom:263.799300px;}
.y109{bottom:265.305300px;}
.y1bf{bottom:266.221950px;}
.y202{bottom:266.230950px;}
.y168{bottom:266.355300px;}
.y170{bottom:267.480450px;}
.y21{bottom:270.690300px;}
.y1e0{bottom:271.050000px;}
.y1a0{bottom:271.888650px;}
.y274{bottom:275.010000px;}
.y2bc{bottom:275.049300px;}
.ya5{bottom:275.600100px;}
.ye9{bottom:275.819100px;}
.y13d{bottom:278.046300px;}
.y69{bottom:278.796300px;}
.y22c{bottom:278.797800px;}
.y108{bottom:280.303800px;}
.y1be{bottom:281.220450px;}
.y201{bottom:281.229450px;}
.y16f{bottom:282.480450px;}
.y167{bottom:283.795800px;}
.y20{bottom:285.688800px;}
.y19f{bottom:286.887150px;}
.y273{bottom:287.756250px;}
.y2bb{bottom:290.047800px;}
.ya4{bottom:290.601600px;}
.ye8{bottom:290.817600px;}
.y13c{bottom:293.044800px;}
.y68{bottom:293.794800px;}
.y22b{bottom:293.796300px;}
.y107{bottom:295.302300px;}
.y1bd{bottom:296.218950px;}
.y200{bottom:296.227950px;}
.y16e{bottom:297.478950px;}
.y1df{bottom:300.082650px;}
.y272{bottom:300.502500px;}
.y1f{bottom:300.687300px;}
.y166{bottom:301.236300px;}
.y19e{bottom:301.885650px;}
.y2ba{bottom:305.046300px;}
.ya3{bottom:305.600100px;}
.ye7{bottom:305.816100px;}
.y13b{bottom:308.056800px;}
.y67{bottom:308.794800px;}
.y106{bottom:310.300800px;}
.y1ff{bottom:311.226450px;}
.y271{bottom:313.248750px;}
.y1de{bottom:315.081150px;}
.y1e{bottom:315.685800px;}
.y19d{bottom:316.884150px;}
.y165{bottom:318.676800px;}
.y2b9{bottom:320.044800px;}
.ya2{bottom:320.598600px;}
.ye6{bottom:320.814600px;}
.y13a{bottom:323.055300px;}
.y66{bottom:323.794800px;}
.y22a{bottom:323.802300px;}
.y105{bottom:325.299300px;}
.y270{bottom:325.995000px;}
.y1fe{bottom:326.224950px;}
.y1dd{bottom:330.079650px;}
.y1d{bottom:330.727800px;}
.y19c{bottom:331.882650px;}
.y2b8{bottom:335.043300px;}
.ye5{bottom:335.822100px;}
.y164{bottom:336.117300px;}
.y139{bottom:338.053800px;}
.y26f{bottom:338.741250px;}
.y65{bottom:338.797800px;}
.y229{bottom:338.800800px;}
.y104{bottom:340.297800px;}
.y1fd{bottom:341.223450px;}
.y1dc{bottom:345.078150px;}
.y1c{bottom:345.726300px;}
.y19b{bottom:346.897650px;}
.ya1{bottom:347.651850px;}
.ye4{bottom:350.820600px;}
.y26e{bottom:351.487500px;}
.y138{bottom:353.052300px;}
.y163{bottom:353.557800px;}
.y64{bottom:353.796300px;}
.y228{bottom:353.799300px;}
.y103{bottom:355.296300px;}
.y1fc{bottom:356.221950px;}
.y2b7{bottom:356.797800px;}
.y1db{bottom:360.076650px;}
.y1b{bottom:360.724800px;}
.y19a{bottom:361.896150px;}
.ya0{bottom:362.650350px;}
.y26d{bottom:364.233750px;}
.ye3{bottom:365.819100px;}
.y137{bottom:368.050800px;}
.y63{bottom:368.794800px;}
.y227{bottom:368.797800px;}
.y102{bottom:370.294800px;}
.y162{bottom:370.998300px;}
.y1fb{bottom:371.220450px;}
.y2b6{bottom:371.796300px;}
.y1da{bottom:375.075150px;}
.y1a{bottom:375.723300px;}
.y199{bottom:376.894650px;}
.y26c{bottom:376.980000px;}
.y9f{bottom:377.648850px;}
.ye2{bottom:380.817600px;}
.y136{bottom:383.049300px;}
.y226{bottom:383.796300px;}
.y62{bottom:383.800800px;}
.y101{bottom:385.293300px;}
.y1fa{bottom:386.218950px;}
.y161{bottom:388.438800px;}
.y26b{bottom:389.726250px;}
.y1d9{bottom:390.073650px;}
.y198{bottom:391.893150px;}
.y9e{bottom:392.648850px;}
.y2b5{bottom:393.544800px;}
.ye1{bottom:395.816100px;}
.y135{bottom:398.047800px;}
.y225{bottom:398.794800px;}
.y61{bottom:398.799300px;}
.y26a{bottom:402.472500px;}
.y1d8{bottom:405.072150px;}
.y160{bottom:405.879300px;}
.y197{bottom:406.891650px;}
.y9d{bottom:407.648850px;}
.ye0{bottom:410.814600px;}
.y134{bottom:413.046300px;}
.y60{bottom:413.797800px;}
.y224{bottom:413.799300px;}
.y269{bottom:415.218750px;}
.y2b4{bottom:415.293300px;}
.y100{bottom:418.303800px;}
.y1d7{bottom:420.070650px;}
.y196{bottom:421.890150px;}
.y9c{bottom:422.656350px;}
.y19{bottom:422.973300px;}
.y15f{bottom:423.319800px;}
.ydf{bottom:425.814600px;}
.y268{bottom:427.965000px;}
.y133{bottom:428.044800px;}
.y5f{bottom:428.796300px;}
.y223{bottom:428.797800px;}
.y2b3{bottom:430.293300px;}
.yff{bottom:433.302300px;}
.y1d6{bottom:435.069150px;}
.y195{bottom:436.888650px;}
.y9b{bottom:437.654850px;}
.y18{bottom:439.470300px;}
.y267{bottom:440.711250px;}
.y15e{bottom:440.760300px;}
.yde{bottom:440.817600px;}
.y132{bottom:443.043300px;}
.y5e{bottom:443.794800px;}
.y222{bottom:443.796300px;}
.yfe{bottom:448.300800px;}
.y1d5{bottom:450.067650px;}
.y194{bottom:451.887150px;}
.y9a{bottom:452.653350px;}
.y266{bottom:453.457500px;}
.ydd{bottom:455.816100px;}
.y17{bottom:455.967300px;}
.y2b2{bottom:457.299300px;}
.y15d{bottom:458.200800px;}
.y221{bottom:458.794800px;}
.y5d{bottom:458.797800px;}
.yfd{bottom:463.299300px;}
.y1d4{bottom:465.066150px;}
.y265{bottom:466.203750px;}
.y193{bottom:466.885650px;}
.y99{bottom:467.651850px;}
.ydc{bottom:470.814600px;}
.y2b1{bottom:472.297800px;}
.y16{bottom:472.464300px;}
.y220{bottom:473.794800px;}
.y5c{bottom:473.796300px;}
.y15c{bottom:475.641300px;}
.yfc{bottom:478.297800px;}
.y264{bottom:478.950000px;}
.y1d3{bottom:480.064650px;}
.y192{bottom:481.884150px;}
.y98{bottom:482.650350px;}
.ydb{bottom:485.813100px;}
.y2b0{bottom:487.296300px;}
.y5b{bottom:488.794800px;}
.y21f{bottom:488.797800px;}
.y15{bottom:488.961300px;}
.y263{bottom:491.696250px;}
.y15b{bottom:493.081800px;}
.yfb{bottom:493.296300px;}
.y1d2{bottom:495.063150px;}
.y191{bottom:496.882650px;}
.y97{bottom:497.648850px;}
.y2af{bottom:502.294800px;}
.y5a{bottom:503.796300px;}
.y262{bottom:504.442500px;}
.y14{bottom:505.458300px;}
.y14c{bottom:505.806450px;}
.yfa{bottom:508.294800px;}
.y1d1{bottom:510.061650px;}
.y15a{bottom:510.522300px;}
.y190{bottom:511.881150px;}
.y96{bottom:512.648850px;}
.yda{bottom:513.086700px;}
.y261{bottom:517.188750px;}
.y2ae{bottom:517.293300px;}
.y59{bottom:518.794800px;}
.y14b{bottom:520.804950px;}
.y13{bottom:521.955300px;}
.yf9{bottom:523.299300px;}
.y1d0{bottom:525.060150px;}
.y95{bottom:527.650350px;}
.y159{bottom:527.962800px;}
.yd9{bottom:528.085200px;}
.y260{bottom:529.935000px;}
.y2ad{bottom:532.293300px;}
.y58{bottom:533.796300px;}
.y21e{bottom:533.802300px;}
.y14a{bottom:535.803450px;}
.yf8{bottom:538.297800px;}
.y12{bottom:538.452300px;}
.y18f{bottom:538.968150px;}
.y1cf{bottom:540.058650px;}
.y94{bottom:542.648850px;}
.y25f{bottom:542.681250px;}
.yd8{bottom:543.083700px;}
.y158{bottom:545.403300px;}
.y57{bottom:548.794800px;}
.y21d{bottom:548.800800px;}
.y149{bottom:550.801950px;}
.yf7{bottom:553.296300px;}
.y18e{bottom:553.966650px;}
.y11{bottom:554.949300px;}
.y1ce{bottom:555.057150px;}
.y25e{bottom:555.427500px;}
.y93{bottom:557.648850px;}
.yd7{bottom:558.082200px;}
.y2ac{bottom:559.305300px;}
.y56{bottom:563.796300px;}
.y21c{bottom:563.799300px;}
.y148{bottom:565.800450px;}
.y25d{bottom:568.173750px;}
.yf6{bottom:568.294800px;}
.y18d{bottom:568.965150px;}
.y1cd{bottom:570.055650px;}
.y10{bottom:571.446300px;}
.y92{bottom:572.647350px;}
.yd6{bottom:573.080700px;}
.y2ab{bottom:574.303800px;}
.y55{bottom:578.794800px;}
.y21b{bottom:578.797800px;}
.y147{bottom:580.798950px;}
.y25c{bottom:580.920000px;}
.yf5{bottom:583.293300px;}
.y18c{bottom:583.963650px;}
.y1cc{bottom:585.054150px;}
.yf{bottom:587.943300px;}
.yd5{bottom:588.079200px;}
.y2aa{bottom:589.302300px;}
.y25b{bottom:593.666250px;}
.y21a{bottom:593.796300px;}
.y54{bottom:593.797800px;}
.y18b{bottom:598.962150px;}
.y91{bottom:599.698950px;}
.y1cb{bottom:600.052650px;}
.yd4{bottom:603.077700px;}
.y2a9{bottom:604.300800px;}
.ye{bottom:604.440300px;}
.y25a{bottom:606.412500px;}
.y219{bottom:608.794800px;}
.y53{bottom:608.796300px;}
.y157{bottom:609.301950px;}
.y90{bottom:614.697450px;}
.y1ca{bottom:615.051150px;}
.yd3{bottom:618.080700px;}
.y259{bottom:619.158750px;}
.y2a8{bottom:619.299300px;}
.yd{bottom:620.937300px;}
.y52{bottom:623.794800px;}
.y218{bottom:623.799300px;}
.y156{bottom:624.300450px;}
.y18a{bottom:626.068800px;}
.y8f{bottom:629.698950px;}
.y1c9{bottom:630.049650px;}
.y258{bottom:631.905000px;}
.yd2{bottom:633.079200px;}
.y2a7{bottom:634.297800px;}
.yc{bottom:637.434300px;}
.y131{bottom:638.232300px;}
.y51{bottom:638.794800px;}
.y217{bottom:638.797800px;}
.y155{bottom:639.298950px;}
.y189{bottom:641.067300px;}
.y257{bottom:644.651250px;}
.y8e{bottom:644.697450px;}
.y1c8{bottom:645.048150px;}
.yd1{bottom:648.077700px;}
.y2a6{bottom:649.296300px;}
.y130{bottom:653.236800px;}
.y216{bottom:653.796300px;}
.y50{bottom:653.797800px;}
.y188{bottom:656.065800px;}
.y256{bottom:657.397500px;}
.y8d{bottom:659.700450px;}
.y1c7{bottom:660.046650px;}
.yd0{bottom:663.076200px;}
.y2a5{bottom:664.294800px;}
.yb{bottom:667.434300px;}
.y12f{bottom:668.235300px;}
.y215{bottom:668.794800px;}
.y4f{bottom:668.796300px;}
.y255{bottom:670.143750px;}
.y187{bottom:671.064300px;}
.y8c{bottom:674.698950px;}
.y2a4{bottom:679.293300px;}
.y254{bottom:682.890000px;}
.yc6{bottom:683.187000px;}
.y12e{bottom:683.233800px;}
.y4e{bottom:683.794800px;}
.y214{bottom:683.796300px;}
.ya{bottom:685.434300px;}
.y186{bottom:686.062800px;}
.ycf{bottom:687.938700px;}
.y1c6{bottom:689.047800px;}
.y8b{bottom:689.697450px;}
.ycc{bottom:690.100428px;}
.yc9{bottom:693.992748px;}
.y2a3{bottom:694.293300px;}
.y253{bottom:695.636250px;}
.y12d{bottom:698.232300px;}
.y4d{bottom:698.794800px;}
.ycd{bottom:699.176748px;}
.y185{bottom:701.061300px;}
.ycb{bottom:701.334156px;}
.y9{bottom:703.434300px;}
.y1c5{bottom:704.046300px;}
.y8a{bottom:704.695950px;}
.yc8{bottom:704.786700px;}
.y252{bottom:708.382500px;}
.yce{bottom:709.970700px;}
.y12c{bottom:713.230800px;}
.y213{bottom:713.794800px;}
.y4c{bottom:713.796300px;}
.y184{bottom:716.059800px;}
.y1c4{bottom:719.044800px;}
.y251{bottom:721.128750px;}
.y2a2{bottom:721.402050px;}
.y4b{bottom:728.794800px;}
.y212{bottom:728.797800px;}
.y183{bottom:731.058300px;}
.yca{bottom:731.138700px;}
.y89{bottom:731.749050px;}
.y250{bottom:733.875000px;}
.y1c3{bottom:734.046300px;}
.y2a1{bottom:734.148300px;}
.y8{bottom:736.410300px;}
.y12b{bottom:743.358300px;}
.y211{bottom:743.796300px;}
.y4a{bottom:743.799300px;}
.y182{bottom:746.056800px;}
.y24f{bottom:746.621250px;}
.y88{bottom:746.747550px;}
.y2a0{bottom:746.894550px;}
.y1c2{bottom:749.044800px;}
.y30{bottom:757.145400px;}
.y210{bottom:758.794800px;}
.y49{bottom:758.797800px;}
.y24e{bottom:759.367500px;}
.y29f{bottom:759.640800px;}
.y12a{bottom:760.798800px;}
.y181{bottom:761.055300px;}
.yc5{bottom:761.531700px;}
.y87{bottom:761.746050px;}
.y1c1{bottom:764.043300px;}
.y24d{bottom:772.113750px;}
.y29e{bottom:772.387050px;}
.y48{bottom:773.796300px;}
.y20f{bottom:773.800800px;}
.y180{bottom:776.053800px;}
.yc4{bottom:776.534700px;}
.y86{bottom:776.750550px;}
.y2f{bottom:778.144650px;}
.y129{bottom:778.239300px;}
.y7{bottom:781.416300px;}
.y24c{bottom:784.860000px;}
.y29d{bottom:785.133300px;}
.y47{bottom:788.794800px;}
.y20e{bottom:788.799300px;}
.y17f{bottom:791.052300px;}
.yc3{bottom:791.533200px;}
.y85{bottom:791.749050px;}
.y128{bottom:795.679800px;}
.y24b{bottom:797.606250px;}
.y29c{bottom:797.879550px;}
.y2e{bottom:799.143900px;}
.y46{bottom:803.796300px;}
.y20d{bottom:803.797800px;}
.y17e{bottom:806.050800px;}
.yc2{bottom:806.531700px;}
.y84{bottom:806.747550px;}
.y24a{bottom:810.352500px;}
.y29b{bottom:810.625800px;}
.y127{bottom:813.120300px;}
.y45{bottom:818.794800px;}
.y20c{bottom:818.796300px;}
.y1ef{bottom:820.294800px;}
.y17d{bottom:821.049300px;}
.yc1{bottom:821.531700px;}
.y83{bottom:821.746050px;}
.y249{bottom:823.098750px;}
.y29a{bottom:823.372050px;}
.y6{bottom:826.422300px;}
.y126{bottom:830.560800px;}
.y20b{bottom:833.794800px;}
.y44{bottom:833.796300px;}
.y1ee{bottom:835.293300px;}
.y248{bottom:835.845000px;}
.y17c{bottom:836.047800px;}
.y299{bottom:836.118300px;}
.yc0{bottom:836.539200px;}
.y82{bottom:836.747550px;}
.y125{bottom:848.001300px;}
.y247{bottom:848.591250px;}
.y43{bottom:848.794800px;}
.y20a{bottom:848.805300px;}
.y298{bottom:848.864550px;}
.y17b{bottom:851.046300px;}
.ybf{bottom:851.537700px;}
.y81{bottom:851.746050px;}
.y246{bottom:861.337500px;}
.y297{bottom:861.610800px;}
.y42{bottom:863.796300px;}
.y209{bottom:863.803800px;}
.y124{bottom:865.441800px;}
.y17a{bottom:866.044800px;}
.ybe{bottom:866.536200px;}
.y80{bottom:866.755050px;}
.y5{bottom:871.428300px;}
.y245{bottom:874.083750px;}
.y296{bottom:874.357050px;}
.y41{bottom:878.794800px;}
.y208{bottom:878.802300px;}
.y179{bottom:881.046300px;}
.ybd{bottom:881.534700px;}
.y7f{bottom:881.753550px;}
.y123{bottom:882.882300px;}
.y244{bottom:886.830000px;}
.y295{bottom:887.103300px;}
.y40{bottom:893.796300px;}
.y207{bottom:893.800800px;}
.y178{bottom:896.044800px;}
.ybc{bottom:896.533200px;}
.y7e{bottom:896.752050px;}
.y243{bottom:899.576250px;}
.y294{bottom:899.849550px;}
.y122{bottom:900.322800px;}
.y3f{bottom:908.794800px;}
.y206{bottom:908.799300px;}
.y177{bottom:911.043300px;}
.ybb{bottom:911.531700px;}
.y7d{bottom:911.750550px;}
.y242{bottom:912.322500px;}
.y293{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y121{bottom:917.763300px;}
.y3e{bottom:923.797800px;}
.y241{bottom:925.068750px;}
.y292{bottom:925.342050px;}
.y31{bottom:926.409600px;}
.yba{bottom:926.534700px;}
.y7c{bottom:926.749050px;}
.y120{bottom:935.203800px;}
.y240{bottom:937.815000px;}
.y291{bottom:938.088300px;}
.y3d{bottom:938.796300px;}
.yb9{bottom:941.533200px;}
.y7b{bottom:941.747550px;}
.y23f{bottom:950.561250px;}
.y290{bottom:950.834550px;}
.y11f{bottom:952.644300px;}
.y3c{bottom:953.794800px;}
.yb8{bottom:956.531700px;}
.y7a{bottom:956.746050px;}
.y1b4{bottom:959.794800px;}
.y23e{bottom:963.307500px;}
.y28f{bottom:963.580800px;}
.y3b{bottom:968.796300px;}
.y205{bottom:968.805300px;}
.y11e{bottom:970.084800px;}
.yb7{bottom:971.534700px;}
.y79{bottom:971.746050px;}
.y1b3{bottom:974.793300px;}
.y23d{bottom:976.053750px;}
.y28e{bottom:976.327050px;}
.y3a{bottom:983.794800px;}
.y204{bottom:983.803800px;}
.yb6{bottom:986.533200px;}
.y78{bottom:986.744550px;}
.y11d{bottom:987.525300px;}
.y23c{bottom:988.800000px;}
.y28d{bottom:989.073300px;}
.y39{bottom:998.796300px;}
.y203{bottom:998.802300px;}
.yb5{bottom:1001.531700px;}
.y23b{bottom:1001.550000px;}
.y28c{bottom:1001.819550px;}
.y1b2{bottom:1004.961300px;}
.y11c{bottom:1004.965800px;}
.y38{bottom:1013.794800px;}
.y77{bottom:1013.800800px;}
.y28b{bottom:1014.565800px;}
.yb4{bottom:1016.530200px;}
.y1b1{bottom:1022.401800px;}
.y11b{bottom:1022.406300px;}
.y28a{bottom:1027.312050px;}
.y37{bottom:1028.799300px;}
.y1b0{bottom:1039.842300px;}
.y11a{bottom:1039.846800px;}
.y289{bottom:1040.058300px;}
.yb3{bottom:1043.796300px;}
.y36{bottom:1043.797800px;}
.y288{bottom:1052.804550px;}
.y1af{bottom:1057.282800px;}
.y119{bottom:1057.287300px;}
.y1ac{bottom:1057.293300px;}
.yb2{bottom:1058.794800px;}
.y35{bottom:1058.796300px;}
.y287{bottom:1065.550800px;}
.y34{bottom:1073.794800px;}
.y1ae{bottom:1074.723300px;}
.y118{bottom:1074.727800px;}
.y286{bottom:1078.297050px;}
.y33{bottom:1088.793300px;}
.y285{bottom:1091.043300px;}
.y1ad{bottom:1092.163800px;}
.y117{bottom:1092.168300px;}
.y32{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.h1c{height:29.052864px;}
.ha{height:31.194668px;}
.he{height:35.411133px;}
.hd{height:36.681152px;}
.h1a{height:37.597824px;}
.h20{height:41.538000px;}
.h21{height:42.084000px;}
.h7{height:42.240234px;}
.h1f{height:43.008000px;}
.h4{height:44.233154px;}
.h26{height:44.505000px;}
.h24{height:45.090000px;}
.h3{height:45.744000px;}
.h25{height:46.080000px;}
.hc{height:48.510668px;}
.hb{height:48.534668px;}
.h17{height:50.889600px;}
.h8{height:51.416016px;}
.h1d{height:51.626953px;}
.h18{height:52.978752px;}
.h9{height:53.406000px;}
.h23{height:54.060000px;}
.h10{height:54.096000px;}
.h15{height:54.102000px;}
.h11{height:54.108000px;}
.h1e{height:55.296000px;}
.h2{height:57.099609px;}
.h6{height:57.128906px;}
.h12{height:62.841797px;}
.h16{height:63.504000px;}
.h14{height:76.920000px;}
.h13{height:76.932000px;}
.h1b{height:82.532736px;}
.hf{height:84.480469px;}
.h22{height:87.990000px;}
.h19{height:97.922304px;}
.h5{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:599.184000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:14.061750px;}
.x2{left:61.191450px;}
.x7{left:140.952750px;}
.xb{left:193.967550px;}
.x9{left:225.071700px;}
.x4{left:233.456400px;}
.x13{left:238.143900px;}
.x5{left:251.457750px;}
.x18{left:300.594750px;}
.xc{left:377.402550px;}
.x15{left:388.146750px;}
.xf{left:442.630380px;}
.xa{left:458.186700px;}
.x10{left:491.452428px;}
.xd{left:495.761046px;}
.x11{left:530.762550px;}
.x12{left:539.399094px;}
.xe{left:561.002700px;}
.x3{left:584.586600px;}
.x14{left:643.128900px;}
.x16{left:816.003600px;}
.x17{left:817.278150px;}
.x8{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v8{vertical-align:-42.997248pt;}
.va{vertical-align:-30.716928pt;}
.v2{vertical-align:-18.133333pt;}
.v5{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.v6{vertical-align:-9.637333pt;}
.vb{vertical-align:-7.466667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:9.600533pt;}
.v3{vertical-align:16.165333pt;}
.v1{vertical-align:18.133333pt;}
.v9{vertical-align:39.949824pt;}
.lsb2{letter-spacing:-5.184000pt;}
.ls41{letter-spacing:-4.416000pt;}
.ls16{letter-spacing:-3.626667pt;}
.ls8c{letter-spacing:-3.434667pt;}
.ls9b{letter-spacing:-3.360000pt;}
.ls52{letter-spacing:-1.584000pt;}
.lsd0{letter-spacing:-1.560000pt;}
.ls92{letter-spacing:-1.440000pt;}
.lsba{letter-spacing:-1.392000pt;}
.lsce{letter-spacing:-1.360000pt;}
.ls8b{letter-spacing:-1.306667pt;}
.lsda{letter-spacing:-1.200000pt;}
.ls87{letter-spacing:-1.194667pt;}
.lsd4{letter-spacing:-1.160000pt;}
.ls7c{letter-spacing:-1.152000pt;}
.ls9a{letter-spacing:-1.082667pt;}
.ls7a{letter-spacing:-1.008000pt;}
.ls88{letter-spacing:-0.970667pt;}
.ls89{letter-spacing:-0.933333pt;}
.ls8a{letter-spacing:-0.858667pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls79{letter-spacing:-0.816000pt;}
.ls97{letter-spacing:-0.784000pt;}
.ls72{letter-spacing:-0.714240pt;}
.ls99{letter-spacing:-0.709333pt;}
.lscd{letter-spacing:-0.680000pt;}
.ls3d{letter-spacing:-0.672000pt;}
.ls7b{letter-spacing:-0.655200pt;}
.lsc7{letter-spacing:-0.640000pt;}
.ls56{letter-spacing:-0.624000pt;}
.ls6d{letter-spacing:-0.619008pt;}
.ls8d{letter-spacing:-0.592800pt;}
.ls71{letter-spacing:-0.571392pt;}
.lsd7{letter-spacing:-0.560000pt;}
.ls55{letter-spacing:-0.528000pt;}
.lsd2{letter-spacing:-0.520000pt;}
.lsb9{letter-spacing:-0.499200pt;}
.ls86{letter-spacing:-0.485333pt;}
.ls93{letter-spacing:-0.480000pt;}
.lsa4{letter-spacing:-0.448000pt;}
.lscb{letter-spacing:-0.440000pt;}
.ls67{letter-spacing:-0.432000pt;}
.lsc9{letter-spacing:-0.400000pt;}
.ls3b{letter-spacing:-0.384000pt;}
.ls51{letter-spacing:-0.374400pt;}
.ls36{letter-spacing:-0.336000pt;}
.lscc{letter-spacing:-0.320000pt;}
.ls84{letter-spacing:-0.298667pt;}
.ls65{letter-spacing:-0.288000pt;}
.ls70{letter-spacing:-0.285696pt;}
.lsca{letter-spacing:-0.280000pt;}
.lsb3{letter-spacing:-0.261333pt;}
.ls37{letter-spacing:-0.240000pt;}
.ls85{letter-spacing:-0.194133pt;}
.ls38{letter-spacing:-0.192000pt;}
.ls68{letter-spacing:-0.187200pt;}
.ls9c{letter-spacing:-0.186667pt;}
.lsd8{letter-spacing:-0.160000pt;}
.ls66{letter-spacing:-0.156000pt;}
.ls35{letter-spacing:-0.144000pt;}
.ls57{letter-spacing:-0.124800pt;}
.lsd1{letter-spacing:-0.120000pt;}
.ls98{letter-spacing:-0.112000pt;}
.ls34{letter-spacing:-0.096000pt;}
.ls3e{letter-spacing:-0.093600pt;}
.lsc8{letter-spacing:-0.080000pt;}
.ls96{letter-spacing:-0.062400pt;}
.ls40{letter-spacing:-0.053333pt;}
.ls18{letter-spacing:-0.048000pt;}
.ls1a{letter-spacing:-0.045333pt;}
.lsd9{letter-spacing:-0.040000pt;}
.ls74{letter-spacing:-0.033792pt;}
.ls53{letter-spacing:-0.031200pt;}
.ls14{letter-spacing:0.000000pt;}
.ls9e{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.011733pt;}
.ls2{letter-spacing:0.012267pt;}
.ls22{letter-spacing:0.021333pt;}
.ls48{letter-spacing:0.028800pt;}
.ls4f{letter-spacing:0.031200pt;}
.lsbd{letter-spacing:0.040000pt;}
.ls81{letter-spacing:0.043200pt;}
.lsaa{letter-spacing:0.044800pt;}
.ls5{letter-spacing:0.048000pt;}
.lsa7{letter-spacing:0.048800pt;}
.ls9d{letter-spacing:0.053333pt;}
.ls3a{letter-spacing:0.062400pt;}
.ls4c{letter-spacing:0.065600pt;}
.lsbc{letter-spacing:0.080000pt;}
.lsad{letter-spacing:0.082133pt;}
.ls1c{letter-spacing:0.090667pt;}
.lsb7{letter-spacing:0.091733pt;}
.ls3c{letter-spacing:0.093600pt;}
.ls30{letter-spacing:0.096000pt;}
.lsbb{letter-spacing:0.120000pt;}
.ls25{letter-spacing:0.124800pt;}
.lsa9{letter-spacing:0.128800pt;}
.lsb6{letter-spacing:0.133067pt;}
.lsb{letter-spacing:0.137467pt;}
.ls26{letter-spacing:0.141867pt;}
.ls2b{letter-spacing:0.144000pt;}
.lsa1{letter-spacing:0.144533pt;}
.lsa0{letter-spacing:0.153600pt;}
.ls33{letter-spacing:0.156000pt;}
.ls2a{letter-spacing:0.157333pt;}
.ls29{letter-spacing:0.157867pt;}
.ls58{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.164267pt;}
.ls7f{letter-spacing:0.168000pt;}
.lsc6{letter-spacing:0.172000pt;}
.lsa8{letter-spacing:0.184000pt;}
.lsb4{letter-spacing:0.186667pt;}
.ls28{letter-spacing:0.187200pt;}
.ls23{letter-spacing:0.192000pt;}
.lsb5{letter-spacing:0.192533pt;}
.lsd3{letter-spacing:0.200000pt;}
.ls21{letter-spacing:0.204800pt;}
.ls42{letter-spacing:0.213333pt;}
.ls61{letter-spacing:0.216267pt;}
.ls39{letter-spacing:0.218400pt;}
.lsc{letter-spacing:0.226667pt;}
.ls7d{letter-spacing:0.235200pt;}
.ls5a{letter-spacing:0.238080pt;}
.ls4{letter-spacing:0.240000pt;}
.ls49{letter-spacing:0.240800pt;}
.ls7e{letter-spacing:0.244800pt;}
.lsc2{letter-spacing:0.248000pt;}
.ls91{letter-spacing:0.248533pt;}
.ls69{letter-spacing:0.249600pt;}
.ls6f{letter-spacing:0.285696pt;}
.ls17{letter-spacing:0.288000pt;}
.ls32{letter-spacing:0.297600pt;}
.ls60{letter-spacing:0.310400pt;}
.ls3f{letter-spacing:0.312000pt;}
.ls47{letter-spacing:0.312533pt;}
.ls2d{letter-spacing:0.315733pt;}
.lsbe{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.321600pt;}
.ls80{letter-spacing:0.331200pt;}
.ls5b{letter-spacing:0.333312pt;}
.ls6{letter-spacing:0.333867pt;}
.ls19{letter-spacing:0.336000pt;}
.ls27{letter-spacing:0.342933pt;}
.ls50{letter-spacing:0.343200pt;}
.ls1e{letter-spacing:0.344533pt;}
.ls20{letter-spacing:0.345067pt;}
.lsf{letter-spacing:0.357200pt;}
.ls62{letter-spacing:0.358933pt;}
.lsc5{letter-spacing:0.360000pt;}
.ls54{letter-spacing:0.374400pt;}
.ls5c{letter-spacing:0.380928pt;}
.ls2e{letter-spacing:0.384000pt;}
.lsc0{letter-spacing:0.400000pt;}
.ls4e{letter-spacing:0.405600pt;}
.ls6e{letter-spacing:0.428544pt;}
.ls2c{letter-spacing:0.432000pt;}
.ls64{letter-spacing:0.436800pt;}
.lsc1{letter-spacing:0.440000pt;}
.ls77{letter-spacing:0.468000pt;}
.ls6b{letter-spacing:0.476160pt;}
.ls9{letter-spacing:0.480000pt;}
.lsa6{letter-spacing:0.489333pt;}
.ls11{letter-spacing:0.501200pt;}
.ls83{letter-spacing:0.508800pt;}
.ls1f{letter-spacing:0.518933pt;}
.ls7{letter-spacing:0.528000pt;}
.ls46{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.544000pt;}
.lsac{letter-spacing:0.552000pt;}
.ls13{letter-spacing:0.556133pt;}
.lsc4{letter-spacing:0.560000pt;}
.ls8{letter-spacing:0.576000pt;}
.ls44{letter-spacing:0.586667pt;}
.ls43{letter-spacing:0.598933pt;}
.lsc3{letter-spacing:0.600000pt;}
.ls75{letter-spacing:0.608256pt;}
.ls45{letter-spacing:0.624000pt;}
.lsa3{letter-spacing:0.640000pt;}
.lsbf{letter-spacing:0.668000pt;}
.ls8e{letter-spacing:0.672000pt;}
.lsd5{letter-spacing:0.680000pt;}
.lsd{letter-spacing:0.685200pt;}
.ls63{letter-spacing:0.693333pt;}
.ls76{letter-spacing:0.720000pt;}
.ls2f{letter-spacing:0.729600pt;}
.lscf{letter-spacing:0.760000pt;}
.lsa2{letter-spacing:0.768000pt;}
.lse{letter-spacing:0.770667pt;}
.lsa5{letter-spacing:0.811733pt;}
.ls4a{letter-spacing:0.816000pt;}
.ls12{letter-spacing:0.861333pt;}
.lsb0{letter-spacing:0.864000pt;}
.lsb1{letter-spacing:0.906667pt;}
.ls4b{letter-spacing:0.912000pt;}
.ls90{letter-spacing:0.960000pt;}
.ls82{letter-spacing:1.008000pt;}
.ls9f{letter-spacing:1.013333pt;}
.lsa{letter-spacing:1.056000pt;}
.ls1b{letter-spacing:1.088000pt;}
.lsae{letter-spacing:1.104000pt;}
.ls78{letter-spacing:1.152000pt;}
.ls8f{letter-spacing:1.200000pt;}
.lsaf{letter-spacing:1.296000pt;}
.ls4d{letter-spacing:1.488000pt;}
.lsd6{letter-spacing:1.680000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1d{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.lsb8{letter-spacing:4.106667pt;}
.lsab{letter-spacing:5.440000pt;}
.ls59{letter-spacing:36.664320pt;}
.ls5f{letter-spacing:67.516416pt;}
.ls95{letter-spacing:72.240000pt;}
.ls94{letter-spacing:86.165333pt;}
.ls6c{letter-spacing:100.755456pt;}
.ls5d{letter-spacing:132.515328pt;}
.ls5e{letter-spacing:216.741888pt;}
.ls73{letter-spacing:369.312768pt;}
.ls6a{letter-spacing:391.498752pt;}
.ws85{word-spacing:-391.498752pt;}
.ws88{word-spacing:-369.312768pt;}
.ws68{word-spacing:-111.564288pt;}
.wsba{word-spacing:-64.213333pt;}
.ws4e{word-spacing:-19.370667pt;}
.ws2{word-spacing:-13.393333pt;}
.ws27{word-spacing:-13.066667pt;}
.ws80{word-spacing:-12.085333pt;}
.ws33{word-spacing:-12.000000pt;}
.wsd0{word-spacing:-11.664000pt;}
.wsd4{word-spacing:-11.568000pt;}
.ws7b{word-spacing:-11.520000pt;}
.ws53{word-spacing:-11.472000pt;}
.ws6{word-spacing:-11.376000pt;}
.wsd3{word-spacing:-11.328000pt;}
.ws67{word-spacing:-11.284992pt;}
.ws6b{word-spacing:-11.237376pt;}
.ws72{word-spacing:-11.189760pt;}
.ws7c{word-spacing:-11.184000pt;}
.ws6f{word-spacing:-11.142144pt;}
.ws76{word-spacing:-11.136000pt;}
.ws6c{word-spacing:-11.094528pt;}
.ws1{word-spacing:-11.093333pt;}
.ws69{word-spacing:-11.046912pt;}
.ws32{word-spacing:-10.992000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws2f{word-spacing:-10.896000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.wsd1{word-spacing:-10.800000pt;}
.ws34{word-spacing:-10.752000pt;}
.ws58{word-spacing:-10.704000pt;}
.ws77{word-spacing:-10.656000pt;}
.ws78{word-spacing:-10.608000pt;}
.ws29{word-spacing:-10.560000pt;}
.wsa9{word-spacing:-10.512000pt;}
.wsa8{word-spacing:-10.464000pt;}
.ws92{word-spacing:-10.416000pt;}
.wse7{word-spacing:-10.368000pt;}
.ws57{word-spacing:-10.272000pt;}
.ws6a{word-spacing:-10.189824pt;}
.ws71{word-spacing:-10.094592pt;}
.ws7d{word-spacing:-9.888000pt;}
.ws7f{word-spacing:-9.744000pt;}
.wse6{word-spacing:-9.600000pt;}
.wsa7{word-spacing:-9.552000pt;}
.ws54{word-spacing:-9.408000pt;}
.ws109{word-spacing:-9.200000pt;}
.ws8{word-spacing:-9.066667pt;}
.ws105{word-spacing:-9.040000pt;}
.ws10f{word-spacing:-8.960000pt;}
.wsec{word-spacing:-8.880000pt;}
.wsee{word-spacing:-8.760000pt;}
.ws116{word-spacing:-8.720000pt;}
.wsfa{word-spacing:-8.680000pt;}
.wsef{word-spacing:-8.640000pt;}
.wsf7{word-spacing:-8.600000pt;}
.ws112{word-spacing:-8.480000pt;}
.ws96{word-spacing:-8.474667pt;}
.ws75{word-spacing:-8.279040pt;}
.wsc4{word-spacing:-8.101333pt;}
.wsf0{word-spacing:-8.000000pt;}
.wsd8{word-spacing:-7.840000pt;}
.wsed{word-spacing:-7.800000pt;}
.ws74{word-spacing:-7.636992pt;}
.ws79{word-spacing:-7.550400pt;}
.wsa6{word-spacing:-7.519200pt;}
.ws4f{word-spacing:-7.488000pt;}
.ws56{word-spacing:-7.456800pt;}
.ws51{word-spacing:-7.425600pt;}
.ws31{word-spacing:-7.394400pt;}
.ws66{word-spacing:-7.332000pt;}
.ws2b{word-spacing:-7.300800pt;}
.ws2c{word-spacing:-7.269600pt;}
.ws2a{word-spacing:-7.238400pt;}
.ws7a{word-spacing:-7.207200pt;}
.ws2e{word-spacing:-7.176000pt;}
.ws2d{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.ws50{word-spacing:-7.113600pt;}
.ws28{word-spacing:-7.082400pt;}
.ws55{word-spacing:-7.051200pt;}
.wsaf{word-spacing:-7.020000pt;}
.ws30{word-spacing:-6.988800pt;}
.ws59{word-spacing:-6.957600pt;}
.ws64{word-spacing:-6.926400pt;}
.ws65{word-spacing:-6.895200pt;}
.ws52{word-spacing:-6.770400pt;}
.wse5{word-spacing:-6.645600pt;}
.wsa0{word-spacing:-6.489600pt;}
.ws7e{word-spacing:-6.427200pt;}
.ws7{word-spacing:-5.893333pt;}
.wsd2{word-spacing:-5.440000pt;}
.ws4a{word-spacing:-4.896000pt;}
.wse8{word-spacing:-4.106667pt;}
.wsa4{word-spacing:-3.808000pt;}
.ws11b{word-spacing:-3.520000pt;}
.wse{word-spacing:-3.413333pt;}
.wsa2{word-spacing:-2.949333pt;}
.wsb{word-spacing:-2.912000pt;}
.wscb{word-spacing:-2.880000pt;}
.ws49{word-spacing:-1.680000pt;}
.ws48{word-spacing:-1.653333pt;}
.ws18{word-spacing:-1.632000pt;}
.ws61{word-spacing:-1.584000pt;}
.ws42{word-spacing:-1.536000pt;}
.ws20{word-spacing:-1.450667pt;}
.ws84{word-spacing:-1.440000pt;}
.wse2{word-spacing:-1.392000pt;}
.ws1b{word-spacing:-1.360000pt;}
.ws19{word-spacing:-1.344000pt;}
.wseb{word-spacing:-1.296000pt;}
.wsfc{word-spacing:-1.280000pt;}
.ws5b{word-spacing:-1.248000pt;}
.ws47{word-spacing:-1.232000pt;}
.ws82{word-spacing:-1.200000pt;}
.ws3c{word-spacing:-1.152000pt;}
.ws26{word-spacing:-1.133333pt;}
.wsc{word-spacing:-1.120000pt;}
.ws16{word-spacing:-1.104000pt;}
.ws1d{word-spacing:-1.088000pt;}
.ws81{word-spacing:-1.056000pt;}
.wsff{word-spacing:-1.040000pt;}
.wscc{word-spacing:-1.013333pt;}
.wsf{word-spacing:-1.008000pt;}
.ws114{word-spacing:-1.000000pt;}
.ws60{word-spacing:-0.960000pt;}
.wsf1{word-spacing:-0.920000pt;}
.ws8b{word-spacing:-0.912000pt;}
.wsfb{word-spacing:-0.880000pt;}
.ws91{word-spacing:-0.864000pt;}
.ws23{word-spacing:-0.861333pt;}
.wsa3{word-spacing:-0.858667pt;}
.ws10d{word-spacing:-0.840000pt;}
.wsc1{word-spacing:-0.821333pt;}
.wsc3{word-spacing:-0.816000pt;}
.ws21{word-spacing:-0.770667pt;}
.ws41{word-spacing:-0.768000pt;}
.ws8a{word-spacing:-0.720000pt;}
.ws118{word-spacing:-0.680000pt;}
.wsea{word-spacing:-0.672000pt;}
.wsca{word-spacing:-0.640000pt;}
.ws43{word-spacing:-0.624000pt;}
.wsfd{word-spacing:-0.600000pt;}
.ws3b{word-spacing:-0.576000pt;}
.ws101{word-spacing:-0.560000pt;}
.ws12{word-spacing:-0.528000pt;}
.wsf3{word-spacing:-0.520000pt;}
.ws10{word-spacing:-0.480000pt;}
.ws8e{word-spacing:-0.468000pt;}
.wsf4{word-spacing:-0.440000pt;}
.ws3d{word-spacing:-0.432000pt;}
.ws86{word-spacing:-0.428544pt;}
.wscf{word-spacing:-0.410667pt;}
.ws108{word-spacing:-0.400000pt;}
.ws11{word-spacing:-0.384000pt;}
.ws1a{word-spacing:-0.362667pt;}
.ws104{word-spacing:-0.360000pt;}
.ws36{word-spacing:-0.336000pt;}
.ws111{word-spacing:-0.320000pt;}
.ws15{word-spacing:-0.288000pt;}
.wsf2{word-spacing:-0.280000pt;}
.ws40{word-spacing:-0.240000pt;}
.ws5a{word-spacing:-0.213333pt;}
.wsfe{word-spacing:-0.200000pt;}
.ws35{word-spacing:-0.192000pt;}
.ws62{word-spacing:-0.160000pt;}
.ws4d{word-spacing:-0.156000pt;}
.ws4b{word-spacing:-0.144000pt;}
.wsf5{word-spacing:-0.120000pt;}
.ws46{word-spacing:-0.096000pt;}
.wse9{word-spacing:-0.093600pt;}
.ws25{word-spacing:-0.090667pt;}
.ws3a{word-spacing:-0.048000pt;}
.wsf6{word-spacing:-0.040000pt;}
.ws9{word-spacing:0.000000pt;}
.ws103{word-spacing:0.040000pt;}
.ws37{word-spacing:0.048000pt;}
.wsc0{word-spacing:0.062400pt;}
.ws115{word-spacing:0.080000pt;}
.ws45{word-spacing:0.093600pt;}
.ws89{word-spacing:0.096000pt;}
.wsa5{word-spacing:0.112000pt;}
.ws10c{word-spacing:0.120000pt;}
.ws44{word-spacing:0.144000pt;}
.ws107{word-spacing:0.160000pt;}
.ws13{word-spacing:0.192000pt;}
.ws5f{word-spacing:0.213333pt;}
.ws38{word-spacing:0.240000pt;}
.wsf8{word-spacing:0.280000pt;}
.ws3f{word-spacing:0.288000pt;}
.ws113{word-spacing:0.320000pt;}
.ws14{word-spacing:0.336000pt;}
.ws3e{word-spacing:0.384000pt;}
.ws110{word-spacing:0.400000pt;}
.ws5d{word-spacing:0.426667pt;}
.ws5e{word-spacing:0.432000pt;}
.ws10e{word-spacing:0.440000pt;}
.ws83{word-spacing:0.480000pt;}
.wsce{word-spacing:0.485333pt;}
.ws8f{word-spacing:0.528000pt;}
.ws1f{word-spacing:0.544000pt;}
.ws117{word-spacing:0.560000pt;}
.wsc2{word-spacing:0.576000pt;}
.ws106{word-spacing:0.600000pt;}
.ws87{word-spacing:0.619008pt;}
.wsab{word-spacing:0.624000pt;}
.ws10b{word-spacing:0.640000pt;}
.ws8d{word-spacing:0.672000pt;}
.ws8c{word-spacing:0.693333pt;}
.wsf9{word-spacing:0.720000pt;}
.ws73{word-spacing:0.761856pt;}
.ws39{word-spacing:0.768000pt;}
.wsa{word-spacing:0.853333pt;}
.ws11d{word-spacing:0.864000pt;}
.ws100{word-spacing:0.920000pt;}
.ws63{word-spacing:0.960000pt;}
.ws1e{word-spacing:0.997333pt;}
.ws102{word-spacing:1.000000pt;}
.ws11c{word-spacing:1.056000pt;}
.ws10a{word-spacing:1.080000pt;}
.ws22{word-spacing:1.088000pt;}
.wsde{word-spacing:1.104000pt;}
.wsdf{word-spacing:1.120000pt;}
.wse0{word-spacing:1.152000pt;}
.ws24{word-spacing:1.269333pt;}
.wsad{word-spacing:1.344000pt;}
.wsac{word-spacing:1.386667pt;}
.wsa1{word-spacing:1.440000pt;}
.wscd{word-spacing:1.488000pt;}
.ws17{word-spacing:1.536000pt;}
.wse3{word-spacing:1.680000pt;}
.ws1c{word-spacing:1.722667pt;}
.ws90{word-spacing:1.728000pt;}
.wsaa{word-spacing:1.872000pt;}
.wse4{word-spacing:2.208000pt;}
.ws119{word-spacing:2.592000pt;}
.ws5c{word-spacing:2.640000pt;}
.ws11a{word-spacing:3.072000pt;}
.wsd{word-spacing:3.626667pt;}
.ws6d{word-spacing:3.856896pt;}
.ws4c{word-spacing:3.888000pt;}
.wse1{word-spacing:5.184000pt;}
.ws70{word-spacing:9.332736pt;}
.wsae{word-spacing:13.104000pt;}
.wsb1{word-spacing:23.930667pt;}
.wsb3{word-spacing:35.914667pt;}
.wsb0{word-spacing:46.741333pt;}
.wsb7{word-spacing:48.873067pt;}
.ws95{word-spacing:59.737867pt;}
.ws94{word-spacing:62.794667pt;}
.ws6e{word-spacing:68.614656pt;}
.wsdd{word-spacing:69.178667pt;}
.wsb5{word-spacing:71.194667pt;}
.ws9a{word-spacing:78.400000pt;}
.wsda{word-spacing:83.888000pt;}
.wsdb{word-spacing:87.098667pt;}
.wsc5{word-spacing:87.248000pt;}
.wsc9{word-spacing:91.018667pt;}
.ws93{word-spacing:99.310400pt;}
.wsb6{word-spacing:101.248000pt;}
.wsc8{word-spacing:108.938667pt;}
.wsb2{word-spacing:116.106667pt;}
.wsc6{word-spacing:122.752000pt;}
.wsb4{word-spacing:129.733333pt;}
.wsc7{word-spacing:133.616000pt;}
.wsb8{word-spacing:146.574400pt;}
.ws97{word-spacing:174.339200pt;}
.ws9c{word-spacing:177.098133pt;}
.ws98{word-spacing:177.594667pt;}
.ws9d{word-spacing:182.399467pt;}
.wsd6{word-spacing:184.837333pt;}
.wsd7{word-spacing:185.770667pt;}
.wsbc{word-spacing:188.160000pt;}
.ws9b{word-spacing:189.955733pt;}
.wsbd{word-spacing:193.312000pt;}
.wsbb{word-spacing:198.762667pt;}
.ws9f{word-spacing:199.434667pt;}
.ws99{word-spacing:202.227200pt;}
.wsdc{word-spacing:206.557867pt;}
.wsbf{word-spacing:208.506667pt;}
.wsb9{word-spacing:213.397333pt;}
.ws9e{word-spacing:218.052800pt;}
.wsbe{word-spacing:229.488000pt;}
.wsd5{word-spacing:267.008000pt;}
.wsd9{word-spacing:298.767467pt;}
._e{margin-left:-101.374464pt;}
._33{margin-left:-71.541333pt;}
._1{margin-left:-9.817600pt;}
._6{margin-left:-8.764267pt;}
._3c{margin-left:-7.588800pt;}
._a{margin-left:-6.470933pt;}
._3{margin-left:-5.101333pt;}
._2{margin-left:-3.722667pt;}
._8{margin-left:-2.566933pt;}
._0{margin-left:-1.578667pt;}
._9{width:0.914133pt;}
._7{width:1.920533pt;}
._4{width:3.653333pt;}
._c{width:5.125333pt;}
._40{width:6.400000pt;}
._41{width:7.440000pt;}
._3f{width:9.040000pt;}
._43{width:10.122667pt;}
._3e{width:11.520000pt;}
._35{width:13.584000pt;}
._28{width:14.797333pt;}
._42{width:15.778667pt;}
._39{width:35.555200pt;}
._5{width:39.061333pt;}
._d{width:42.169600pt;}
._b{width:43.833067pt;}
._f{width:44.790933pt;}
._30{width:52.501333pt;}
._2e{width:53.546667pt;}
._16{width:61.114667pt;}
._34{width:62.748267pt;}
._15{width:67.536000pt;}
._31{width:70.476267pt;}
._19{width:71.706667pt;}
._17{width:73.808000pt;}
._29{width:75.002667pt;}
._18{width:76.709333pt;}
._2b{width:78.250667pt;}
._2c{width:79.306667pt;}
._2a{width:81.125333pt;}
._2d{width:82.058667pt;}
._1c{width:85.456000pt;}
._24{width:88.965333pt;}
._1d{width:91.728000pt;}
._25{width:93.146667pt;}
._1b{width:95.052267pt;}
._10{width:100.248000pt;}
._11{width:102.144000pt;}
._23{width:103.376000pt;}
._21{width:105.754667pt;}
._3d{width:121.660267pt;}
._2f{width:124.394667pt;}
._14{width:127.157333pt;}
._3a{width:135.333333pt;}
._1a{width:136.604800pt;}
._1f{width:141.849600pt;}
._22{width:153.497600pt;}
._1e{width:156.912000pt;}
._38{width:161.765333pt;}
._32{width:163.306667pt;}
._12{width:164.747467pt;}
._20{width:170.624000pt;}
._13{width:190.800000pt;}
._26{width:241.136000pt;}
._3b{width:242.501333pt;}
._27{width:271.973333pt;}
._37{width:312.070400pt;}
._36{width:329.776000pt;}
.fs10{font-size:24.266667pt;}
.fse{font-size:26.112000pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fsd{font-size:33.792000pt;}
.fs4{font-size:34.666667pt;}
.fsf{font-size:37.333333pt;}
.fs11{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsc{font-size:47.616000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsb{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175867pt;}
.yc7{bottom:45.695733pt;}
.y2d{bottom:60.723467pt;}
.y146{bottom:60.934667pt;}
.y76{bottom:60.936000pt;}
.yb1{bottom:60.938667pt;}
.y23a{bottom:61.150933pt;}
.y116{bottom:62.510933pt;}
.y284{bottom:63.173333pt;}
.y1f9{bottom:63.828267pt;}
.y154{bottom:65.970933pt;}
.y1ed{bottom:67.602667pt;}
.y16d{bottom:73.820267pt;}
.y2c{bottom:74.051467pt;}
.y75{bottom:74.268000pt;}
.yb0{bottom:74.270667pt;}
.y283{bottom:74.503333pt;}
.y239{bottom:74.504267pt;}
.y115{bottom:75.842933pt;}
.y1bc{bottom:76.484267pt;}
.y1f8{bottom:77.160267pt;}
.y153{bottom:79.310933pt;}
.y1ec{bottom:80.934667pt;}
.y1ab{bottom:84.268000pt;}
.y282{bottom:85.833333pt;}
.y16c{bottom:87.152267pt;}
.y2b{bottom:87.384800pt;}
.yf4{bottom:87.600000pt;}
.yaf{bottom:87.602667pt;}
.y145{bottom:87.604000pt;}
.y74{bottom:87.608000pt;}
.y238{bottom:87.836267pt;}
.y114{bottom:89.174933pt;}
.y1bb{bottom:89.817600pt;}
.y1f7{bottom:90.492267pt;}
.y152{bottom:92.642933pt;}
.y1eb{bottom:94.268000pt;}
.y281{bottom:97.163333pt;}
.y1aa{bottom:97.609333pt;}
.y16b{bottom:100.484267pt;}
.y2a{bottom:100.718133pt;}
.yf3{bottom:100.933333pt;}
.yae{bottom:100.934667pt;}
.y144{bottom:100.936000pt;}
.y73{bottom:100.940000pt;}
.y237{bottom:101.168267pt;}
.y113{bottom:102.506933pt;}
.y1ba{bottom:103.150933pt;}
.y1f6{bottom:103.824267pt;}
.y151{bottom:105.974933pt;}
.y1ea{bottom:107.610667pt;}
.y280{bottom:108.493333pt;}
.y1a9{bottom:110.941333pt;}
.y16a{bottom:113.816267pt;}
.yad{bottom:114.268000pt;}
.y72{bottom:114.272000pt;}
.y236{bottom:114.500267pt;}
.y112{bottom:115.838933pt;}
.y1b9{bottom:116.485600pt;}
.y1f5{bottom:117.156267pt;}
.y29{bottom:117.899467pt;}
.y150{bottom:119.306933pt;}
.y27f{bottom:119.823333pt;}
.y1e9{bottom:120.942667pt;}
.y1a8{bottom:124.273333pt;}
.yf2{bottom:125.168533pt;}
.y28{bottom:127.384800pt;}
.yac{bottom:127.602667pt;}
.y71{bottom:127.604000pt;}
.y143{bottom:127.606667pt;}
.y235{bottom:127.832267pt;}
.y111{bottom:129.170933pt;}
.y1b8{bottom:129.817600pt;}
.y1f4{bottom:130.488267pt;}
.y27e{bottom:131.153333pt;}
.y14f{bottom:132.638933pt;}
.y1e8{bottom:134.274667pt;}
.y1a7{bottom:137.605333pt;}
.yf1{bottom:138.501867pt;}
.y27{bottom:140.718133pt;}
.yab{bottom:140.934667pt;}
.y70{bottom:140.936000pt;}
.y142{bottom:140.938667pt;}
.y234{bottom:141.164267pt;}
.y27d{bottom:142.483333pt;}
.y110{bottom:142.502933pt;}
.y1b7{bottom:143.152267pt;}
.y1f3{bottom:143.820267pt;}
.y14e{bottom:145.970933pt;}
.y1e7{bottom:147.606667pt;}
.y1a6{bottom:150.937333pt;}
.yf0{bottom:151.843200pt;}
.y27c{bottom:153.813333pt;}
.y26{bottom:154.051467pt;}
.y6f{bottom:154.268000pt;}
.y141{bottom:154.270667pt;}
.y233{bottom:154.496267pt;}
.y10f{bottom:155.834933pt;}
.y1b6{bottom:156.484267pt;}
.y1f2{bottom:157.152267pt;}
.y176{bottom:157.768400pt;}
.y14d{bottom:159.302933pt;}
.y1e6{bottom:160.938667pt;}
.y1a5{bottom:164.269333pt;}
.y27b{bottom:165.143333pt;}
.yef{bottom:165.175200pt;}
.y6e{bottom:167.600000pt;}
.yaa{bottom:167.601333pt;}
.y140{bottom:167.602667pt;}
.y232{bottom:167.828267pt;}
.y10e{bottom:169.166933pt;}
.y1b5{bottom:169.816267pt;}
.y1f1{bottom:170.484267pt;}
.y175{bottom:171.100400pt;}
.y25{bottom:171.232800pt;}
.y1e5{bottom:174.270667pt;}
.y27a{bottom:176.473333pt;}
.y1a4{bottom:177.601333pt;}
.y2c1{bottom:177.828267pt;}
.yee{bottom:178.507200pt;}
.y6d{bottom:180.933333pt;}
.ya9{bottom:180.934667pt;}
.y231{bottom:181.160267pt;}
.y10d{bottom:182.498933pt;}
.y1f0{bottom:183.816267pt;}
.y174{bottom:184.432400pt;}
.y1e4{bottom:187.602667pt;}
.y279{bottom:187.803333pt;}
.y1a3{bottom:190.933333pt;}
.y2c0{bottom:191.160267pt;}
.yed{bottom:191.839200pt;}
.ya8{bottom:194.266667pt;}
.y230{bottom:194.492267pt;}
.y10c{bottom:195.830933pt;}
.y173{bottom:197.764400pt;}
.y278{bottom:199.133333pt;}
.y24{bottom:200.617600pt;}
.y1e3{bottom:200.934667pt;}
.y2bf{bottom:204.492267pt;}
.yec{bottom:205.171200pt;}
.y6c{bottom:207.822933pt;}
.y22f{bottom:207.824267pt;}
.y10b{bottom:209.162933pt;}
.y169{bottom:209.969600pt;}
.y277{bottom:210.463333pt;}
.y172{bottom:211.096400pt;}
.y23{bottom:213.949600pt;}
.y1e2{bottom:214.268000pt;}
.y1a2{bottom:215.014800pt;}
.y2be{bottom:217.824267pt;}
.ya7{bottom:218.312533pt;}
.yeb{bottom:218.503200pt;}
.y13f{bottom:220.488267pt;}
.y6b{bottom:221.154933pt;}
.y22e{bottom:221.156267pt;}
.y276{bottom:221.793333pt;}
.y10a{bottom:222.494933pt;}
.y1c0{bottom:223.307067pt;}
.y171{bottom:224.428400pt;}
.y22{bottom:227.281600pt;}
.y1e1{bottom:227.600000pt;}
.y1a1{bottom:228.346800pt;}
.y2bd{bottom:231.156267pt;}
.ya6{bottom:231.644533pt;}
.yea{bottom:231.835200pt;}
.y275{bottom:233.123333pt;}
.y13e{bottom:233.820267pt;}
.y6a{bottom:234.486933pt;}
.y22d{bottom:234.488267pt;}
.y109{bottom:235.826933pt;}
.y1bf{bottom:236.641733pt;}
.y202{bottom:236.649733pt;}
.y168{bottom:236.760267pt;}
.y170{bottom:237.760400pt;}
.y21{bottom:240.613600pt;}
.y1e0{bottom:240.933333pt;}
.y1a0{bottom:241.678800pt;}
.y274{bottom:244.453333pt;}
.y2bc{bottom:244.488267pt;}
.ya5{bottom:244.977867pt;}
.ye9{bottom:245.172533pt;}
.y13d{bottom:247.152267pt;}
.y69{bottom:247.818933pt;}
.y22c{bottom:247.820267pt;}
.y108{bottom:249.158933pt;}
.y1be{bottom:249.973733pt;}
.y201{bottom:249.981733pt;}
.y16f{bottom:251.093733pt;}
.y167{bottom:252.262933pt;}
.y20{bottom:253.945600pt;}
.y19f{bottom:255.010800pt;}
.y273{bottom:255.783333pt;}
.y2bb{bottom:257.820267pt;}
.ya4{bottom:258.312533pt;}
.ye8{bottom:258.504533pt;}
.y13c{bottom:260.484267pt;}
.y68{bottom:261.150933pt;}
.y22b{bottom:261.152267pt;}
.y107{bottom:262.490933pt;}
.y1bd{bottom:263.305733pt;}
.y200{bottom:263.313733pt;}
.y16e{bottom:264.425733pt;}
.y1df{bottom:266.740133pt;}
.y272{bottom:267.113333pt;}
.y1f{bottom:267.277600pt;}
.y166{bottom:267.765600pt;}
.y19e{bottom:268.342800pt;}
.y2ba{bottom:271.152267pt;}
.ya3{bottom:271.644533pt;}
.ye7{bottom:271.836533pt;}
.y13b{bottom:273.828267pt;}
.y67{bottom:274.484267pt;}
.y106{bottom:275.822933pt;}
.y1ff{bottom:276.645733pt;}
.y271{bottom:278.443333pt;}
.y1de{bottom:280.072133pt;}
.y1e{bottom:280.609600pt;}
.y19d{bottom:281.674800pt;}
.y165{bottom:283.268267pt;}
.y2b9{bottom:284.484267pt;}
.ya2{bottom:284.976533pt;}
.ye6{bottom:285.168533pt;}
.y13a{bottom:287.160267pt;}
.y66{bottom:287.817600pt;}
.y22a{bottom:287.824267pt;}
.y105{bottom:289.154933pt;}
.y270{bottom:289.773333pt;}
.y1fe{bottom:289.977733pt;}
.y1dd{bottom:293.404133pt;}
.y1d{bottom:293.980267pt;}
.y19c{bottom:295.006800pt;}
.y2b8{bottom:297.816267pt;}
.ye5{bottom:298.508533pt;}
.y164{bottom:298.770933pt;}
.y139{bottom:300.492267pt;}
.y26f{bottom:301.103333pt;}
.y65{bottom:301.153600pt;}
.y229{bottom:301.156267pt;}
.y104{bottom:302.486933pt;}
.y1fd{bottom:303.309733pt;}
.y1dc{bottom:306.736133pt;}
.y1c{bottom:307.312267pt;}
.y19b{bottom:308.353467pt;}
.ya1{bottom:309.023867pt;}
.ye4{bottom:311.840533pt;}
.y26e{bottom:312.433333pt;}
.y138{bottom:313.824267pt;}
.y163{bottom:314.273600pt;}
.y64{bottom:314.485600pt;}
.y228{bottom:314.488267pt;}
.y103{bottom:315.818933pt;}
.y1fc{bottom:316.641733pt;}
.y2b7{bottom:317.153600pt;}
.y1db{bottom:320.068133pt;}
.y1b{bottom:320.644267pt;}
.y19a{bottom:321.685467pt;}
.ya0{bottom:322.355867pt;}
.y26d{bottom:323.763333pt;}
.ye3{bottom:325.172533pt;}
.y137{bottom:327.156267pt;}
.y63{bottom:327.817600pt;}
.y227{bottom:327.820267pt;}
.y102{bottom:329.150933pt;}
.y162{bottom:329.776267pt;}
.y1fb{bottom:329.973733pt;}
.y2b6{bottom:330.485600pt;}
.y1da{bottom:333.400133pt;}
.y1a{bottom:333.976267pt;}
.y199{bottom:335.017467pt;}
.y26c{bottom:335.093333pt;}
.y9f{bottom:335.687867pt;}
.ye2{bottom:338.504533pt;}
.y136{bottom:340.488267pt;}
.y226{bottom:341.152267pt;}
.y62{bottom:341.156267pt;}
.y101{bottom:342.482933pt;}
.y1fa{bottom:343.305733pt;}
.y161{bottom:345.278933pt;}
.y26b{bottom:346.423333pt;}
.y1d9{bottom:346.732133pt;}
.y198{bottom:348.349467pt;}
.y9e{bottom:349.021200pt;}
.y2b5{bottom:349.817600pt;}
.ye1{bottom:351.836533pt;}
.y135{bottom:353.820267pt;}
.y225{bottom:354.484267pt;}
.y61{bottom:354.488267pt;}
.y26a{bottom:357.753333pt;}
.y1d8{bottom:360.064133pt;}
.y160{bottom:360.781600pt;}
.y197{bottom:361.681467pt;}
.y9d{bottom:362.354533pt;}
.ye0{bottom:365.168533pt;}
.y134{bottom:367.152267pt;}
.y60{bottom:367.820267pt;}
.y224{bottom:367.821600pt;}
.y269{bottom:369.083333pt;}
.y2b4{bottom:369.149600pt;}
.y100{bottom:371.825600pt;}
.y1d7{bottom:373.396133pt;}
.y196{bottom:375.013467pt;}
.y9c{bottom:375.694533pt;}
.y19{bottom:375.976267pt;}
.y15f{bottom:376.284267pt;}
.ydf{bottom:378.501867pt;}
.y268{bottom:380.413333pt;}
.y133{bottom:380.484267pt;}
.y5f{bottom:381.152267pt;}
.y223{bottom:381.153600pt;}
.y2b3{bottom:382.482933pt;}
.yff{bottom:385.157600pt;}
.y1d6{bottom:386.728133pt;}
.y195{bottom:388.345467pt;}
.y9b{bottom:389.026533pt;}
.y18{bottom:390.640267pt;}
.y267{bottom:391.743333pt;}
.y15e{bottom:391.786933pt;}
.yde{bottom:391.837867pt;}
.y132{bottom:393.816267pt;}
.y5e{bottom:394.484267pt;}
.y222{bottom:394.485600pt;}
.yfe{bottom:398.489600pt;}
.y1d5{bottom:400.060133pt;}
.y194{bottom:401.677467pt;}
.y9a{bottom:402.358533pt;}
.y266{bottom:403.073333pt;}
.ydd{bottom:405.169867pt;}
.y17{bottom:405.304267pt;}
.y2b2{bottom:406.488267pt;}
.y15d{bottom:407.289600pt;}
.y221{bottom:407.817600pt;}
.y5d{bottom:407.820267pt;}
.yfd{bottom:411.821600pt;}
.y1d4{bottom:413.392133pt;}
.y265{bottom:414.403333pt;}
.y193{bottom:415.009467pt;}
.y99{bottom:415.690533pt;}
.ydc{bottom:418.501867pt;}
.y2b1{bottom:419.820267pt;}
.y16{bottom:419.968267pt;}
.y220{bottom:421.150933pt;}
.y5c{bottom:421.152267pt;}
.y15c{bottom:422.792267pt;}
.yfc{bottom:425.153600pt;}
.y264{bottom:425.733333pt;}
.y1d3{bottom:426.724133pt;}
.y192{bottom:428.341467pt;}
.y98{bottom:429.022533pt;}
.ydb{bottom:431.833867pt;}
.y2b0{bottom:433.152267pt;}
.y5b{bottom:434.484267pt;}
.y21f{bottom:434.486933pt;}
.y15{bottom:434.632267pt;}
.y263{bottom:437.063333pt;}
.y15b{bottom:438.294933pt;}
.yfb{bottom:438.485600pt;}
.y1d2{bottom:440.056133pt;}
.y191{bottom:441.673467pt;}
.y97{bottom:442.354533pt;}
.y2af{bottom:446.484267pt;}
.y5a{bottom:447.818933pt;}
.y262{bottom:448.393333pt;}
.y14{bottom:449.296267pt;}
.y14c{bottom:449.605733pt;}
.yfa{bottom:451.817600pt;}
.y1d1{bottom:453.388133pt;}
.y15a{bottom:453.797600pt;}
.y190{bottom:455.005467pt;}
.y96{bottom:455.687867pt;}
.yda{bottom:456.077067pt;}
.y261{bottom:459.723333pt;}
.y2ae{bottom:459.816267pt;}
.y59{bottom:461.150933pt;}
.y14b{bottom:462.937733pt;}
.y13{bottom:463.960267pt;}
.yf9{bottom:465.154933pt;}
.y1d0{bottom:466.720133pt;}
.y95{bottom:469.022533pt;}
.y159{bottom:469.300267pt;}
.yd9{bottom:469.409067pt;}
.y260{bottom:471.053333pt;}
.y2ad{bottom:473.149600pt;}
.y58{bottom:474.485600pt;}
.y21e{bottom:474.490933pt;}
.y14a{bottom:476.269733pt;}
.yf8{bottom:478.486933pt;}
.y12{bottom:478.624267pt;}
.y18f{bottom:479.082800pt;}
.y1cf{bottom:480.052133pt;}
.y94{bottom:482.354533pt;}
.y25f{bottom:482.383333pt;}
.yd8{bottom:482.741067pt;}
.y158{bottom:484.802933pt;}
.y57{bottom:487.817600pt;}
.y21d{bottom:487.822933pt;}
.y149{bottom:489.601733pt;}
.yf7{bottom:491.818933pt;}
.y18e{bottom:492.414800pt;}
.y11{bottom:493.288267pt;}
.y1ce{bottom:493.384133pt;}
.y25e{bottom:493.713333pt;}
.y93{bottom:495.687867pt;}
.yd7{bottom:496.073067pt;}
.y2ac{bottom:497.160267pt;}
.y56{bottom:501.152267pt;}
.y21c{bottom:501.154933pt;}
.y148{bottom:502.933733pt;}
.y25d{bottom:505.043333pt;}
.yf6{bottom:505.150933pt;}
.y18d{bottom:505.746800pt;}
.y1cd{bottom:506.716133pt;}
.y10{bottom:507.952267pt;}
.y92{bottom:509.019867pt;}
.yd6{bottom:509.405067pt;}
.y2ab{bottom:510.492267pt;}
.y55{bottom:514.484267pt;}
.y21b{bottom:514.486933pt;}
.y147{bottom:516.265733pt;}
.y25c{bottom:516.373333pt;}
.yf5{bottom:518.482933pt;}
.y18c{bottom:519.078800pt;}
.y1cc{bottom:520.048133pt;}
.yf{bottom:522.616267pt;}
.yd5{bottom:522.737067pt;}
.y2aa{bottom:523.824267pt;}
.y25b{bottom:527.703333pt;}
.y21a{bottom:527.818933pt;}
.y54{bottom:527.820267pt;}
.y18b{bottom:532.410800pt;}
.y91{bottom:533.065733pt;}
.y1cb{bottom:533.380133pt;}
.yd4{bottom:536.069067pt;}
.y2a9{bottom:537.156267pt;}
.ye{bottom:537.280267pt;}
.y25a{bottom:539.033333pt;}
.y219{bottom:541.150933pt;}
.y53{bottom:541.152267pt;}
.y157{bottom:541.601733pt;}
.y90{bottom:546.397733pt;}
.y1ca{bottom:546.712133pt;}
.yd3{bottom:549.405067pt;}
.y259{bottom:550.363333pt;}
.y2a8{bottom:550.488267pt;}
.yd{bottom:551.944267pt;}
.y52{bottom:554.484267pt;}
.y218{bottom:554.488267pt;}
.y156{bottom:554.933733pt;}
.y18a{bottom:556.505600pt;}
.y8f{bottom:559.732400pt;}
.y1c9{bottom:560.044133pt;}
.y258{bottom:561.693333pt;}
.yd2{bottom:562.737067pt;}
.y2a7{bottom:563.820267pt;}
.yc{bottom:566.608267pt;}
.y131{bottom:567.317600pt;}
.y51{bottom:567.817600pt;}
.y217{bottom:567.820267pt;}
.y155{bottom:568.265733pt;}
.y189{bottom:569.837600pt;}
.y257{bottom:573.023333pt;}
.y8e{bottom:573.064400pt;}
.y1c8{bottom:573.376133pt;}
.yd1{bottom:576.069067pt;}
.y2a6{bottom:577.152267pt;}
.y130{bottom:580.654933pt;}
.y216{bottom:581.152267pt;}
.y50{bottom:581.153600pt;}
.y188{bottom:583.169600pt;}
.y256{bottom:584.353333pt;}
.y8d{bottom:586.400400pt;}
.y1c7{bottom:586.708133pt;}
.yd0{bottom:589.401067pt;}
.y2a5{bottom:590.484267pt;}
.yb{bottom:593.274933pt;}
.y12f{bottom:593.986933pt;}
.y215{bottom:594.484267pt;}
.y4f{bottom:594.485600pt;}
.y255{bottom:595.683333pt;}
.y187{bottom:596.501600pt;}
.y8c{bottom:599.732400pt;}
.y2a4{bottom:603.816267pt;}
.y254{bottom:607.013333pt;}
.yc6{bottom:607.277333pt;}
.y12e{bottom:607.318933pt;}
.y4e{bottom:607.817600pt;}
.y214{bottom:607.818933pt;}
.ya{bottom:609.274933pt;}
.y186{bottom:609.833600pt;}
.ycf{bottom:611.501067pt;}
.y1c6{bottom:612.486933pt;}
.y8b{bottom:613.064400pt;}
.ycc{bottom:613.422603pt;}
.yc9{bottom:616.882443pt;}
.y2a3{bottom:617.149600pt;}
.y253{bottom:618.343333pt;}
.y12d{bottom:620.650933pt;}
.y4d{bottom:621.150933pt;}
.ycd{bottom:621.490443pt;}
.y185{bottom:623.165600pt;}
.ycb{bottom:623.408139pt;}
.y9{bottom:625.274933pt;}
.y1c5{bottom:625.818933pt;}
.y8a{bottom:626.396400pt;}
.yc8{bottom:626.477067pt;}
.y252{bottom:629.673333pt;}
.yce{bottom:631.085067pt;}
.y12c{bottom:633.982933pt;}
.y213{bottom:634.484267pt;}
.y4c{bottom:634.485600pt;}
.y184{bottom:636.497600pt;}
.y1c4{bottom:639.150933pt;}
.y251{bottom:641.003333pt;}
.y2a2{bottom:641.246267pt;}
.y4b{bottom:647.817600pt;}
.y212{bottom:647.820267pt;}
.y183{bottom:649.829600pt;}
.yca{bottom:649.901067pt;}
.y89{bottom:650.443600pt;}
.y250{bottom:652.333333pt;}
.y1c3{bottom:652.485600pt;}
.y2a1{bottom:652.576267pt;}
.y8{bottom:654.586933pt;}
.y12b{bottom:660.762933pt;}
.y211{bottom:661.152267pt;}
.y4a{bottom:661.154933pt;}
.y182{bottom:663.161600pt;}
.y24f{bottom:663.663333pt;}
.y88{bottom:663.775600pt;}
.y2a0{bottom:663.906267pt;}
.y1c2{bottom:665.817600pt;}
.y30{bottom:673.018133pt;}
.y210{bottom:674.484267pt;}
.y49{bottom:674.486933pt;}
.y24e{bottom:674.993333pt;}
.y29f{bottom:675.236267pt;}
.y12a{bottom:676.265600pt;}
.y181{bottom:676.493600pt;}
.yc5{bottom:676.917067pt;}
.y87{bottom:677.107600pt;}
.y1c1{bottom:679.149600pt;}
.y24d{bottom:686.323333pt;}
.y29e{bottom:686.566267pt;}
.y48{bottom:687.818933pt;}
.y20f{bottom:687.822933pt;}
.y180{bottom:689.825600pt;}
.yc4{bottom:690.253067pt;}
.y86{bottom:690.444933pt;}
.y2f{bottom:691.684133pt;}
.y129{bottom:691.768267pt;}
.y7{bottom:694.592267pt;}
.y24c{bottom:697.653333pt;}
.y29d{bottom:697.896267pt;}
.y47{bottom:701.150933pt;}
.y20e{bottom:701.154933pt;}
.y17f{bottom:703.157600pt;}
.yc3{bottom:703.585067pt;}
.y85{bottom:703.776933pt;}
.y128{bottom:707.270933pt;}
.y24b{bottom:708.983333pt;}
.y29c{bottom:709.226267pt;}
.y2e{bottom:710.350133pt;}
.y46{bottom:714.485600pt;}
.y20d{bottom:714.486933pt;}
.y17e{bottom:716.489600pt;}
.yc2{bottom:716.917067pt;}
.y84{bottom:717.108933pt;}
.y24a{bottom:720.313333pt;}
.y29b{bottom:720.556267pt;}
.y127{bottom:722.773600pt;}
.y45{bottom:727.817600pt;}
.y20c{bottom:727.818933pt;}
.y1ef{bottom:729.150933pt;}
.y17d{bottom:729.821600pt;}
.yc1{bottom:730.250400pt;}
.y83{bottom:730.440933pt;}
.y249{bottom:731.643333pt;}
.y29a{bottom:731.886267pt;}
.y6{bottom:734.597600pt;}
.y126{bottom:738.276267pt;}
.y20b{bottom:741.150933pt;}
.y44{bottom:741.152267pt;}
.y1ee{bottom:742.482933pt;}
.y248{bottom:742.973333pt;}
.y17c{bottom:743.153600pt;}
.y299{bottom:743.216267pt;}
.yc0{bottom:743.590400pt;}
.y82{bottom:743.775600pt;}
.y125{bottom:753.778933pt;}
.y247{bottom:754.303333pt;}
.y43{bottom:754.484267pt;}
.y20a{bottom:754.493600pt;}
.y298{bottom:754.546267pt;}
.y17b{bottom:756.485600pt;}
.ybf{bottom:756.922400pt;}
.y81{bottom:757.107600pt;}
.y246{bottom:765.633333pt;}
.y297{bottom:765.876267pt;}
.y42{bottom:767.818933pt;}
.y209{bottom:767.825600pt;}
.y124{bottom:769.281600pt;}
.y17a{bottom:769.817600pt;}
.ybe{bottom:770.254400pt;}
.y80{bottom:770.448933pt;}
.y5{bottom:774.602933pt;}
.y245{bottom:776.963333pt;}
.y296{bottom:777.206267pt;}
.y41{bottom:781.150933pt;}
.y208{bottom:781.157600pt;}
.y179{bottom:783.152267pt;}
.ybd{bottom:783.586400pt;}
.y7f{bottom:783.780933pt;}
.y123{bottom:784.784267pt;}
.y244{bottom:788.293333pt;}
.y295{bottom:788.536267pt;}
.y40{bottom:794.485600pt;}
.y207{bottom:794.489600pt;}
.y178{bottom:796.484267pt;}
.ybc{bottom:796.918400pt;}
.y7e{bottom:797.112933pt;}
.y243{bottom:799.623333pt;}
.y294{bottom:799.866267pt;}
.y122{bottom:800.286933pt;}
.y3f{bottom:807.817600pt;}
.y206{bottom:807.821600pt;}
.y177{bottom:809.816267pt;}
.ybb{bottom:810.250400pt;}
.y7d{bottom:810.444933pt;}
.y242{bottom:810.953333pt;}
.y293{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y121{bottom:815.789600pt;}
.y3e{bottom:821.153600pt;}
.y241{bottom:822.283333pt;}
.y292{bottom:822.526267pt;}
.y31{bottom:823.475200pt;}
.yba{bottom:823.586400pt;}
.y7c{bottom:823.776933pt;}
.y120{bottom:831.292267pt;}
.y240{bottom:833.613333pt;}
.y291{bottom:833.856267pt;}
.y3d{bottom:834.485600pt;}
.yb9{bottom:836.918400pt;}
.y7b{bottom:837.108933pt;}
.y23f{bottom:844.943333pt;}
.y290{bottom:845.186267pt;}
.y11f{bottom:846.794933pt;}
.y3c{bottom:847.817600pt;}
.yb8{bottom:850.250400pt;}
.y7a{bottom:850.440933pt;}
.y1b4{bottom:853.150933pt;}
.y23e{bottom:856.273333pt;}
.y28f{bottom:856.516267pt;}
.y3b{bottom:861.152267pt;}
.y205{bottom:861.160267pt;}
.y11e{bottom:862.297600pt;}
.yb7{bottom:863.586400pt;}
.y79{bottom:863.774267pt;}
.y1b3{bottom:866.482933pt;}
.y23d{bottom:867.603333pt;}
.y28e{bottom:867.846267pt;}
.y3a{bottom:874.484267pt;}
.y204{bottom:874.492267pt;}
.yb6{bottom:876.918400pt;}
.y78{bottom:877.106267pt;}
.y11d{bottom:877.800267pt;}
.y23c{bottom:878.933333pt;}
.y28d{bottom:879.176267pt;}
.y39{bottom:887.818933pt;}
.y203{bottom:887.824267pt;}
.yb5{bottom:890.250400pt;}
.y23b{bottom:890.266667pt;}
.y28c{bottom:890.506267pt;}
.y1b2{bottom:893.298933pt;}
.y11c{bottom:893.302933pt;}
.y38{bottom:901.150933pt;}
.y77{bottom:901.156267pt;}
.y28b{bottom:901.836267pt;}
.yb4{bottom:903.582400pt;}
.y1b1{bottom:908.801600pt;}
.y11b{bottom:908.805600pt;}
.y28a{bottom:913.166267pt;}
.y37{bottom:914.488267pt;}
.y1b0{bottom:924.304267pt;}
.y11a{bottom:924.308267pt;}
.y289{bottom:924.496267pt;}
.yb3{bottom:927.818933pt;}
.y36{bottom:927.820267pt;}
.y288{bottom:935.826267pt;}
.y1af{bottom:939.806933pt;}
.y119{bottom:939.810933pt;}
.y1ac{bottom:939.816267pt;}
.yb2{bottom:941.150933pt;}
.y35{bottom:941.152267pt;}
.y287{bottom:947.156267pt;}
.y34{bottom:954.484267pt;}
.y1ae{bottom:955.309600pt;}
.y118{bottom:955.313600pt;}
.y286{bottom:958.486267pt;}
.y33{bottom:967.816267pt;}
.y285{bottom:969.816267pt;}
.y1ad{bottom:970.812267pt;}
.y117{bottom:970.816267pt;}
.y32{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.h1c{height:25.824768pt;}
.ha{height:27.728594pt;}
.he{height:31.476562pt;}
.hd{height:32.605469pt;}
.h1a{height:33.420288pt;}
.h20{height:36.922667pt;}
.h21{height:37.408000pt;}
.h7{height:37.546875pt;}
.h1f{height:38.229333pt;}
.h4{height:39.318359pt;}
.h26{height:39.560000pt;}
.h24{height:40.080000pt;}
.h3{height:40.661333pt;}
.h25{height:40.960000pt;}
.hc{height:43.120594pt;}
.hb{height:43.141927pt;}
.h17{height:45.235200pt;}
.h8{height:45.703125pt;}
.h1d{height:45.890625pt;}
.h18{height:47.092224pt;}
.h9{height:47.472000pt;}
.h23{height:48.053333pt;}
.h10{height:48.085333pt;}
.h15{height:48.090667pt;}
.h11{height:48.096000pt;}
.h1e{height:49.152000pt;}
.h2{height:50.755208pt;}
.h6{height:50.781250pt;}
.h12{height:55.859375pt;}
.h16{height:56.448000pt;}
.h14{height:68.373333pt;}
.h13{height:68.384000pt;}
.h1b{height:73.362432pt;}
.hf{height:75.093750pt;}
.h22{height:78.213333pt;}
.h19{height:87.042048pt;}
.h5{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:532.608000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:12.499333pt;}
.x2{left:54.392400pt;}
.x7{left:125.291333pt;}
.xb{left:172.415600pt;}
.x9{left:200.063733pt;}
.x4{left:207.516800pt;}
.x13{left:211.683467pt;}
.x5{left:223.518000pt;}
.x18{left:267.195333pt;}
.xc{left:335.468933pt;}
.x15{left:345.019333pt;}
.xf{left:393.449227pt;}
.xa{left:407.277067pt;}
.x10{left:436.846603pt;}
.xd{left:440.676485pt;}
.x11{left:471.788933pt;}
.x12{left:479.465861pt;}
.xe{left:498.669067pt;}
.x3{left:519.632533pt;}
.x14{left:571.670133pt;}
.x16{left:725.336533pt;}
.x17{left:726.469467pt;}
.x8{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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