
    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_8d2f8d69c43adafc15c5c7b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_e17afe607beab911f4e3db79.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_86bb4dfefb8948f1faf0fec0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202000;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_c67f208b586fe0f51b158bf7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_74cb0842703ab73d20670942.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_20f3874d0a7d00a293338d9b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.133000;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_d19bfdde6b26fc4fc82e595f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.770000;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_9184ea193e0491838eddbd05.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.223000;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_fe50b90030ce3f66a480be8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.113000;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_0697a0fc9bc86412231c408e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.483000;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_652b303808d4742216a27fa8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.483000;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_6cca46d389b0953ada964b88.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202000;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_5e20c8fb8db688633b67b3d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.629000;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_d501ee934c89bb0bf55f900f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.772000;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_b196619ec6f0b6dbe0497e31.woff2')format("woff");}.fff{font-family:fff;line-height:0.386786;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_b6c49e4af34702e39c0af17b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.891113;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_99c775d063cf0cdc8fac3dc9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.714000;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_8b0afb64c24c5f19e1287a79.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.005000;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_81ff88486feb56261feb100f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5e8dc3ade6f0bd76c727684e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.027000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,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);}
.v3{vertical-align:-18.000000px;}
.v4{vertical-align:-14.728690px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v7{vertical-align:3.402000px;}
.v6{vertical-align:18.000000px;}
.v5{vertical-align:23.462479px;}
.v2{vertical-align:26.399780px;}
.ls5{letter-spacing:-5.586000px;}
.ls12{letter-spacing:-3.586800px;}
.ls3{letter-spacing:-1.050000px;}
.lsa{letter-spacing:-0.529200px;}
.ls16{letter-spacing:-0.470400px;}
.ls4{letter-spacing:-0.352800px;}
.lsb{letter-spacing:-0.117600px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000002px;}
.ls6{letter-spacing:0.000400px;}
.ls10{letter-spacing:0.000583px;}
.ls18{letter-spacing:0.150130px;}
.ls11{letter-spacing:0.176400px;}
.ls19{letter-spacing:0.225194px;}
.ls14{letter-spacing:0.352800px;}
.lsf{letter-spacing:0.411600px;}
.ls9{letter-spacing:0.575900px;}
.ls15{letter-spacing:0.705600px;}
.lsc{letter-spacing:0.717338px;}
.lse{letter-spacing:0.811439px;}
.ls13{letter-spacing:0.823193px;}
.ls7{letter-spacing:0.823200px;}
.ls8{letter-spacing:0.834960px;}
.ls1a{letter-spacing:1.125972px;}
.ls17{letter-spacing:1.876621px;}
.lsd{letter-spacing:2.234400px;}
.ls1{letter-spacing:5.460000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-30.528000px;}
.ws3{word-spacing:-21.216000px;}
.ws0{word-spacing:-18.984000px;}
.wsb1{word-spacing:-14.641200px;}
.ws133{word-spacing:-14.523600px;}
.ws11a{word-spacing:-14.170800px;}
.wsee{word-spacing:-13.994400px;}
.wsc{word-spacing:-13.818000px;}
.wsb8{word-spacing:-13.700400px;}
.ws132{word-spacing:-13.465200px;}
.ws89{word-spacing:-13.347600px;}
.ws6{word-spacing:-12.483600px;}
.ws7{word-spacing:-12.420000px;}
.ws16d{word-spacing:-12.310630px;}
.ws16c{word-spacing:-11.559982px;}
.ws162{word-spacing:-11.426400px;}
.ws8{word-spacing:-10.800000px;}
.ws16b{word-spacing:-10.659204px;}
.ws16a{word-spacing:-10.584140px;}
.ws116{word-spacing:-10.512000px;}
.ws2{word-spacing:-10.176000px;}
.ws5{word-spacing:-10.117800px;}
.ws166{word-spacing:-9.855000px;}
.ws5c{word-spacing:-9.672600px;}
.ws161{word-spacing:-9.315000px;}
.ws11d{word-spacing:-8.640000px;}
.ws5b{word-spacing:-8.232000px;}
.wsa{word-spacing:-8.148000px;}
.ws163{word-spacing:-8.100000px;}
.ws9{word-spacing:-6.898500px;}
.wsd0{word-spacing:-6.468000px;}
.ws123{word-spacing:-4.512000px;}
.ws16e{word-spacing:-1.876621px;}
.wseb{word-spacing:-1.587600px;}
.wsf1{word-spacing:-1.470000px;}
.ws14a{word-spacing:-1.058400px;}
.ws6d{word-spacing:-0.999600px;}
.wsf9{word-spacing:-0.940800px;}
.ws10b{word-spacing:-0.882000px;}
.wsb3{word-spacing:-0.823200px;}
.wsab{word-spacing:-0.764400px;}
.wsac{word-spacing:-0.705600px;}
.wsfb{word-spacing:-0.646800px;}
.wsb7{word-spacing:-0.588000px;}
.ws113{word-spacing:-0.529200px;}
.ws145{word-spacing:-0.470400px;}
.ws9e{word-spacing:-0.411600px;}
.ws144{word-spacing:-0.352800px;}
.wsb6{word-spacing:-0.294000px;}
.ws5e{word-spacing:-0.235200px;}
.ws19{word-spacing:-0.176400px;}
.ws167{word-spacing:-0.135000px;}
.wsb{word-spacing:-0.120000px;}
.wsf0{word-spacing:-0.117600px;}
.ws169{word-spacing:-0.090000px;}
.ws50{word-spacing:-0.058800px;}
.ws168{word-spacing:-0.045000px;}
.ws1{word-spacing:0.000000px;}
.ws26{word-spacing:0.058800px;}
.ws61{word-spacing:0.117600px;}
.wsa1{word-spacing:0.176400px;}
.wsba{word-spacing:0.235200px;}
.wsa4{word-spacing:0.352800px;}
.wsdf{word-spacing:0.470400px;}
.ws5a{word-spacing:0.529200px;}
.wsfe{word-spacing:0.588000px;}
.ws58{word-spacing:0.705600px;}
.ws14b{word-spacing:0.764400px;}
.ws66{word-spacing:0.823200px;}
.ws4b{word-spacing:0.882000px;}
.ws9a{word-spacing:0.940800px;}
.wscf{word-spacing:0.999600px;}
.ws141{word-spacing:1.058400px;}
.ws28{word-spacing:1.117200px;}
.wsed{word-spacing:1.176000px;}
.ws8d{word-spacing:1.234800px;}
.ws7e{word-spacing:1.293600px;}
.ws79{word-spacing:1.352400px;}
.ws2b{word-spacing:1.411200px;}
.ws34{word-spacing:1.528800px;}
.ws4e{word-spacing:1.587600px;}
.ws3b{word-spacing:1.646400px;}
.ws107{word-spacing:1.705200px;}
.ws8a{word-spacing:1.764000px;}
.ws110{word-spacing:1.822800px;}
.ws43{word-spacing:1.881600px;}
.ws15e{word-spacing:1.940400px;}
.ws27{word-spacing:1.999200px;}
.ws1e{word-spacing:2.058000px;}
.ws44{word-spacing:2.116800px;}
.ws134{word-spacing:2.175600px;}
.ws165{word-spacing:2.234400px;}
.ws120{word-spacing:2.352000px;}
.ws51{word-spacing:2.410800px;}
.ws117{word-spacing:2.528400px;}
.wsfd{word-spacing:2.587200px;}
.wse0{word-spacing:2.646000px;}
.ws7b{word-spacing:2.704800px;}
.ws2c{word-spacing:2.763600px;}
.ws81{word-spacing:2.822400px;}
.ws6b{word-spacing:2.881200px;}
.ws82{word-spacing:2.940000px;}
.ws10f{word-spacing:2.998800px;}
.wsa5{word-spacing:3.057600px;}
.ws122{word-spacing:3.116400px;}
.wsad{word-spacing:3.175200px;}
.ws33{word-spacing:3.234000px;}
.ws1d{word-spacing:3.292800px;}
.ws124{word-spacing:3.351600px;}
.ws54{word-spacing:3.410400px;}
.ws8b{word-spacing:3.469200px;}
.wsb9{word-spacing:3.528000px;}
.ws6a{word-spacing:3.586800px;}
.ws7a{word-spacing:3.763200px;}
.ws2d{word-spacing:3.822000px;}
.ws15f{word-spacing:3.880800px;}
.wsc5{word-spacing:3.939600px;}
.ws5f{word-spacing:3.998400px;}
.ws99{word-spacing:4.057200px;}
.ws158{word-spacing:4.116000px;}
.ws8f{word-spacing:4.174800px;}
.ws8c{word-spacing:4.233600px;}
.wsf4{word-spacing:4.292400px;}
.wsf5{word-spacing:4.351200px;}
.wse4{word-spacing:4.410000px;}
.ws3c{word-spacing:4.468800px;}
.ws148{word-spacing:4.527600px;}
.ws62{word-spacing:4.586400px;}
.ws35{word-spacing:4.645200px;}
.ws138{word-spacing:4.704000px;}
.wsaa{word-spacing:4.762800px;}
.ws4c{word-spacing:4.821600px;}
.ws85{word-spacing:4.880400px;}
.wsa0{word-spacing:4.998000px;}
.ws12c{word-spacing:5.056800px;}
.ws155{word-spacing:5.115600px;}
.ws7d{word-spacing:5.174400px;}
.wse2{word-spacing:5.233200px;}
.ws76{word-spacing:5.292000px;}
.wse5{word-spacing:5.350800px;}
.ws136{word-spacing:5.409600px;}
.ws135{word-spacing:5.468400px;}
.ws22{word-spacing:5.527200px;}
.ws65{word-spacing:5.586000px;}
.ws16{word-spacing:5.644800px;}
.ws7c{word-spacing:5.703600px;}
.ws20{word-spacing:5.762400px;}
.ws2e{word-spacing:5.821200px;}
.ws1a{word-spacing:5.880000px;}
.ws17{word-spacing:5.938800px;}
.ws36{word-spacing:5.997600px;}
.wsa7{word-spacing:6.056400px;}
.ws13f{word-spacing:6.115200px;}
.ws91{word-spacing:6.174000px;}
.ws24{word-spacing:6.232800px;}
.ws13e{word-spacing:6.291600px;}
.wsd9{word-spacing:6.350400px;}
.ws90{word-spacing:6.409200px;}
.wsfa{word-spacing:6.468000px;}
.ws74{word-spacing:6.526800px;}
.wsa8{word-spacing:6.585600px;}
.ws114{word-spacing:6.644400px;}
.ws1c{word-spacing:6.703200px;}
.ws127{word-spacing:6.762000px;}
.ws60{word-spacing:6.820800px;}
.ws75{word-spacing:6.879600px;}
.ws57{word-spacing:6.938400px;}
.ws14c{word-spacing:6.997200px;}
.ws9b{word-spacing:7.056000px;}
.wsd6{word-spacing:7.114800px;}
.ws1b{word-spacing:7.173600px;}
.ws15{word-spacing:7.232400px;}
.ws6e{word-spacing:7.350000px;}
.ws9c{word-spacing:7.408800px;}
.ws84{word-spacing:7.467600px;}
.ws48{word-spacing:7.585200px;}
.wsd8{word-spacing:7.644000px;}
.ws2f{word-spacing:7.702800px;}
.ws4a{word-spacing:7.761600px;}
.ws3d{word-spacing:7.820400px;}
.ws118{word-spacing:7.879200px;}
.ws12f{word-spacing:7.938000px;}
.wsda{word-spacing:7.996800px;}
.ws78{word-spacing:8.055600px;}
.ws15a{word-spacing:8.114400px;}
.ws93{word-spacing:8.173200px;}
.wsde{word-spacing:8.232000px;}
.ws149{word-spacing:8.290800px;}
.wsa3{word-spacing:8.349600px;}
.ws6f{word-spacing:8.408400px;}
.wsc1{word-spacing:8.467200px;}
.ws63{word-spacing:8.526000px;}
.ws14e{word-spacing:8.584800px;}
.ws67{word-spacing:8.643600px;}
.ws11b{word-spacing:8.702400px;}
.ws21{word-spacing:8.761200px;}
.ws68{word-spacing:8.820000px;}
.ws14{word-spacing:8.878800px;}
.wse6{word-spacing:8.937600px;}
.ws77{word-spacing:8.996400px;}
.ws42{word-spacing:9.055200px;}
.ws1f{word-spacing:9.114000px;}
.wsca{word-spacing:9.172800px;}
.ws10d{word-spacing:9.231600px;}
.ws29{word-spacing:9.290400px;}
.ws101{word-spacing:9.349200px;}
.ws106{word-spacing:9.408000px;}
.ws83{word-spacing:9.525600px;}
.wsf2{word-spacing:9.584400px;}
.ws3e{word-spacing:9.643200px;}
.wsa6{word-spacing:9.702000px;}
.ws9d{word-spacing:9.819600px;}
.wsaf{word-spacing:9.878400px;}
.ws41{word-spacing:9.996000px;}
.ws119{word-spacing:10.054800px;}
.ws3f{word-spacing:10.113600px;}
.wsf6{word-spacing:10.172400px;}
.ws18{word-spacing:10.231200px;}
.ws47{word-spacing:10.290000px;}
.ws98{word-spacing:10.348800px;}
.ws52{word-spacing:10.407600px;}
.ws128{word-spacing:10.466400px;}
.ws2a{word-spacing:10.525200px;}
.ws159{word-spacing:10.584000px;}
.wsc7{word-spacing:10.642800px;}
.ws25{word-spacing:10.701600px;}
.wsdc{word-spacing:10.760400px;}
.ws80{word-spacing:10.819200px;}
.wsdb{word-spacing:10.878000px;}
.wsd1{word-spacing:10.995600px;}
.ws115{word-spacing:11.054400px;}
.wsd3{word-spacing:11.113200px;}
.ws88{word-spacing:11.172000px;}
.wse7{word-spacing:11.230800px;}
.ws97{word-spacing:11.289600px;}
.ws143{word-spacing:11.348400px;}
.ws14f{word-spacing:11.407200px;}
.ws12d{word-spacing:11.466000px;}
.ws45{word-spacing:11.524800px;}
.ws64{word-spacing:11.583600px;}
.ws142{word-spacing:11.642400px;}
.ws9f{word-spacing:11.701200px;}
.wsa9{word-spacing:11.760000px;}
.wsf7{word-spacing:11.818800px;}
.wsbc{word-spacing:11.877600px;}
.wse1{word-spacing:11.936400px;}
.ws152{word-spacing:11.995200px;}
.ws40{word-spacing:12.054000px;}
.ws46{word-spacing:12.112800px;}
.ws11{word-spacing:12.171600px;}
.ws23{word-spacing:12.289200px;}
.ws130{word-spacing:12.348000px;}
.ws69{word-spacing:12.406800px;}
.wsef{word-spacing:12.465600px;}
.wse8{word-spacing:12.524400px;}
.ws108{word-spacing:12.583200px;}
.ws4d{word-spacing:12.642000px;}
.ws49{word-spacing:12.700800px;}
.ws94{word-spacing:12.759600px;}
.ws102{word-spacing:12.818400px;}
.wsff{word-spacing:12.877200px;}
.wsf3{word-spacing:12.936000px;}
.ws15b{word-spacing:13.112400px;}
.ws126{word-spacing:13.171200px;}
.ws109{word-spacing:13.230000px;}
.wsec{word-spacing:13.347600px;}
.ws31{word-spacing:13.406400px;}
.ws131{word-spacing:13.465200px;}
.ws56{word-spacing:13.524000px;}
.wsb5{word-spacing:13.582800px;}
.ws73{word-spacing:13.641600px;}
.wsf8{word-spacing:13.700400px;}
.ws59{word-spacing:13.759200px;}
.ws157{word-spacing:13.935600px;}
.ws55{word-spacing:13.994400px;}
.ws87{word-spacing:14.053200px;}
.wsc3{word-spacing:14.112000px;}
.wsc4{word-spacing:14.170800px;}
.ws8e{word-spacing:14.229600px;}
.wsfc{word-spacing:14.288400px;}
.ws112{word-spacing:14.347200px;}
.ws95{word-spacing:14.464800px;}
.ws105{word-spacing:14.523600px;}
.ws86{word-spacing:14.641200px;}
.ws70{word-spacing:14.758800px;}
.ws32{word-spacing:14.817600px;}
.ws15d{word-spacing:14.876400px;}
.ws92{word-spacing:14.935200px;}
.ws11c{word-spacing:14.994000px;}
.ws13c{word-spacing:15.052800px;}
.ws96{word-spacing:15.111600px;}
.ws7f{word-spacing:15.170400px;}
.wsc6{word-spacing:15.229200px;}
.ws103{word-spacing:15.288000px;}
.ws151{word-spacing:15.346800px;}
.ws12{word-spacing:15.405600px;}
.ws53{word-spacing:15.523200px;}
.wsd5{word-spacing:15.582000px;}
.wscd{word-spacing:15.758400px;}
.ws146{word-spacing:15.876000px;}
.ws38{word-spacing:15.934800px;}
.wsbd{word-spacing:16.052400px;}
.ws3a{word-spacing:16.111200px;}
.ws37{word-spacing:16.287600px;}
.ws12e{word-spacing:16.405200px;}
.ws4f{word-spacing:16.464000px;}
.wsa2{word-spacing:16.581600px;}
.wsd4{word-spacing:16.640400px;}
.ws6c{word-spacing:16.758000px;}
.wsc9{word-spacing:16.816800px;}
.wsd{word-spacing:16.860000px;}
.ws140{word-spacing:17.052000px;}
.wse9{word-spacing:17.169600px;}
.wsbb{word-spacing:17.346000px;}
.wse3{word-spacing:17.581200px;}
.ws147{word-spacing:17.640000px;}
.ws164{word-spacing:17.757600px;}
.ws100{word-spacing:17.816400px;}
.ws10a{word-spacing:18.286800px;}
.wse{word-spacing:18.522000px;}
.ws13{word-spacing:18.757200px;}
.ws137{word-spacing:19.110000px;}
.ws139{word-spacing:19.462800px;}
.ws10c{word-spacing:19.521600px;}
.ws121{word-spacing:19.639200px;}
.wsea{word-spacing:19.815600px;}
.ws13a{word-spacing:19.874400px;}
.ws11e{word-spacing:20.109600px;}
.ws129{word-spacing:20.462400px;}
.ws39{word-spacing:21.285600px;}
.ws153{word-spacing:21.344400px;}
.ws12b{word-spacing:21.403200px;}
.ws160{word-spacing:21.638400px;}
.wsce{word-spacing:21.697200px;}
.wsd7{word-spacing:21.814800px;}
.ws71{word-spacing:21.873600px;}
.ws11f{word-spacing:21.932400px;}
.ws10e{word-spacing:21.991200px;}
.wsc0{word-spacing:22.461600px;}
.ws125{word-spacing:22.520400px;}
.ws104{word-spacing:22.696800px;}
.wsd2{word-spacing:23.520000px;}
.ws12a{word-spacing:23.696400px;}
.ws14d{word-spacing:24.166800px;}
.ws15c{word-spacing:24.460800px;}
.wsbe{word-spacing:24.578400px;}
.ws154{word-spacing:25.166400px;}
.wsc8{word-spacing:25.225200px;}
.ws150{word-spacing:25.578000px;}
.wsae{word-spacing:25.989600px;}
.ws30{word-spacing:26.048400px;}
.wsc2{word-spacing:26.342400px;}
.wscc{word-spacing:26.460000px;}
.ws13b{word-spacing:26.871600px;}
.ws10{word-spacing:26.930400px;}
.wscb{word-spacing:27.342000px;}
.ws13d{word-spacing:28.106400px;}
.ws72{word-spacing:28.870800px;}
.wsdd{word-spacing:28.929600px;}
.ws111{word-spacing:29.164800px;}
.ws156{word-spacing:30.340800px;}
.wsbf{word-spacing:30.928800px;}
.wsb4{word-spacing:35.044800px;}
.wsf{word-spacing:35.809200px;}
.wsb0{word-spacing:37.808400px;}
.wsb2{word-spacing:120.246000px;}
.ws5d{word-spacing:399.263982px;}
._13{margin-left:-29.544012px;}
._34{margin-left:-26.454027px;}
._2e{margin-left:-23.370000px;}
._2f{margin-left:-21.691200px;}
._31{margin-left:-18.353029px;}
._b{margin-left:-17.323200px;}
._37{margin-left:-16.274400px;}
._30{margin-left:-14.494825px;}
._36{margin-left:-12.609600px;}
._33{margin-left:-11.520000px;}
._6{margin-left:-10.368000px;}
._12{margin-left:-8.376000px;}
._2{margin-left:-7.353600px;}
._a{margin-left:-5.640000px;}
._3{margin-left:-4.284000px;}
._9{margin-left:-3.061200px;}
._1{margin-left:-1.996800px;}
._4{width:1.320000px;}
._5{width:3.024000px;}
._7{width:4.156800px;}
._0{width:5.587200px;}
._11{width:6.997219px;}
._e{width:8.173181px;}
._c{width:10.231200px;}
._3b{width:11.496000px;}
._f{width:12.497989px;}
._32{width:13.515588px;}
._3a{width:14.524800px;}
._d{width:16.111200px;}
._8{width:17.836790px;}
._38{width:19.023816px;}
._10{width:20.591970px;}
._39{width:23.934434px;}
._35{width:26.657040px;}
._3d{width:28.530000px;}
._3c{width:45.000000px;}
._16{width:94.463982px;}
._2c{width:97.828755px;}
._2b{width:182.927937px;}
._23{width:206.159982px;}
._24{width:213.148800px;}
._2a{width:241.488000px;}
._17{width:262.008000px;}
._1a{width:266.236800px;}
._14{width:291.312000px;}
._1c{width:322.032000px;}
._28{width:331.968000px;}
._27{width:333.023937px;}
._29{width:336.383937px;}
._21{width:361.036800px;}
._1e{width:385.679982px;}
._19{width:409.775982px;}
._22{width:467.572737px;}
._25{width:470.932737px;}
._26{width:479.856000px;}
._20{width:545.390337px;}
._18{width:598.943937px;}
._2d{width:807.153537px;}
._1b{width:894.868737px;}
._1f{width:1172.399937px;}
._15{width:1228.799937px;}
._1d{width:1460.615937px;}
.fc4{color:transparent;}
.fc3{color:rgb(78,78,77);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs14{font-size:14.074549px;}
.fsb{font-size:31.500000px;}
.fs11{font-size:36.000000px;}
.fs13{font-size:37.532410px;}
.fs12{font-size:39.900000px;}
.fsf{font-size:41.160000px;}
.fs5{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs8{font-size:46.199999px;}
.fs3{font-size:48.000000px;}
.fs10{font-size:54.000000px;}
.fse{font-size:55.199999px;}
.fsd{font-size:58.800000px;}
.fsa{font-size:60.000000px;}
.fs9{font-size:61.800000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fs6{font-size:84.779400px;}
.fs0{font-size:96.000000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:5.743927px;}
.yc{bottom:8.040000px;}
.y15{bottom:77.715000px;}
.y25{bottom:91.009799px;}
.y1a{bottom:91.590000px;}
.y3bd{bottom:99.461998px;}
.y14{bottom:99.795000px;}
.yf2{bottom:100.386303px;}
.y35f{bottom:100.842773px;}
.y228{bottom:101.502445px;}
.y257{bottom:101.540855px;}
.y242{bottom:101.736145px;}
.y26c{bottom:102.266845px;}
.y24{bottom:103.011299px;}
.y2f8{bottom:106.987953px;}
.y135{bottom:107.737953px;}
.y160{bottom:107.745153px;}
.y1fc{bottom:107.752353px;}
.y297{bottom:107.759553px;}
.y2d9{bottom:107.766753px;}
.y2b8{bottom:107.795553px;}
.y1c4{bottom:108.167094px;}
.y203{bottom:110.509645px;}
.y209{bottom:110.516845px;}
.y19{bottom:113.670000px;}
.y35e{bottom:114.342773px;}
.y3a5{bottom:114.342808px;}
.y23{bottom:115.012799px;}
.y3bb{bottom:115.974000px;}
.y241{bottom:116.736145px;}
.y227{bottom:119.509645px;}
.y256{bottom:119.533655px;}
.y26b{bottom:120.259645px;}
.y101{bottom:121.726652px;}
.y18f{bottom:124.995153px;}
.y2f7{bottom:125.002353px;}
.y15f{bottom:125.737953px;}
.y134{bottom:125.745153px;}
.y296{bottom:125.752353px;}
.y1db{bottom:125.759553px;}
.y2b7{bottom:125.788353px;}
.y1c3{bottom:126.159894px;}
.y22{bottom:127.014299px;}
.y35d{bottom:127.842773px;}
.y3a4{bottom:127.842808px;}
.y202{bottom:128.502445px;}
.y208{bottom:128.509645px;}
.y240{bottom:131.736145px;}
.y318{bottom:131.737953px;}
.y7d{bottom:133.587753px;}
.y3b9{bottom:133.764149px;}
.y10{bottom:133.935000px;}
.yac{bottom:134.385295px;}
.y18{bottom:135.750000px;}
.y226{bottom:137.502445px;}
.y255{bottom:137.526455px;}
.y26a{bottom:138.252445px;}
.y21{bottom:139.015799px;}
.y3ba{bottom:139.914000px;}
.y100{bottom:139.954652px;}
.y35c{bottom:141.342773px;}
.y3a3{bottom:141.342808px;}
.y18e{bottom:142.987953px;}
.y2f6{bottom:142.995153px;}
.y1fb{bottom:143.737953px;}
.y295{bottom:143.745153px;}
.y133{bottom:143.752353px;}
.y2b6{bottom:143.781153px;}
.y1c2{bottom:144.152694px;}
.y201{bottom:146.502445px;}
.y212{bottom:146.507246px;}
.y20e{bottom:146.516845px;}
.y23f{bottom:146.736145px;}
.y20{bottom:151.017299px;}
.y7c{bottom:151.609353px;}
.y3b6{bottom:151.773148px;}
.yab{bottom:152.378095px;}
.y35b{bottom:154.842773px;}
.y3a2{bottom:154.842808px;}
.y16{bottom:154.950000px;}
.y225{bottom:155.516845px;}
.y254{bottom:155.583906px;}
.yf{bottom:156.015000px;}
.y269{bottom:156.281257px;}
.y17{bottom:157.830000px;}
.yff{bottom:158.098652px;}
.y317{bottom:158.737953px;}
.y2f5{bottom:160.987953px;}
.y18d{bottom:160.995153px;}
.y23e{bottom:161.736145px;}
.y294{bottom:161.737953px;}
.y132{bottom:161.745153px;}
.y1fa{bottom:161.766753px;}
.y2b5{bottom:161.773953px;}
.y1c1{bottom:162.145494px;}
.y1f{bottom:163.018799px;}
.y211{bottom:164.502445px;}
.y20d{bottom:164.509645px;}
.y200{bottom:164.524057px;}
.y207{bottom:164.532145px;}
.y3b8{bottom:167.479649px;}
.y3b7{bottom:168.058205px;}
.y35a{bottom:168.342773px;}
.y3a1{bottom:168.342808px;}
.y3b4{bottom:168.927749px;}
.y7b{bottom:169.602153px;}
.yaa{bottom:170.370895px;}
.y316{bottom:172.237953px;}
.y224{bottom:173.509645px;}
.y253{bottom:173.576706px;}
.y268{bottom:174.274057px;}
.yfe{bottom:176.242652px;}
.y23d{bottom:176.736145px;}
.y18c{bottom:178.987953px;}
.y2f4{bottom:179.009553px;}
.y131{bottom:179.737953px;}
.y1f9{bottom:179.759553px;}
.y2b4{bottom:179.766753px;}
.y1c0{bottom:180.138294px;}
.y359{bottom:181.842773px;}
.y3a0{bottom:181.842808px;}
.y20c{bottom:182.502445px;}
.y1ff{bottom:182.516857px;}
.y206{bottom:182.524945px;}
.y3be{bottom:182.881943px;}
.y3b3{bottom:184.824749px;}
.y315{bottom:185.737953px;}
.y3b5{bottom:185.888248px;}
.y7a{bottom:187.594953px;}
.y3b1{bottom:187.776139px;}
.ya9{bottom:188.392495px;}
.y223{bottom:191.502445px;}
.y252{bottom:191.569506px;}
.y23c{bottom:191.736145px;}
.y267{bottom:192.266857px;}
.yfd{bottom:194.386652px;}
.y358{bottom:195.342773px;}
.y39f{bottom:195.342808px;}
.y2f3{bottom:197.002353px;}
.y18b{bottom:197.009553px;}
.y2d8{bottom:197.737953px;}
.y15e{bottom:197.745153px;}
.y130{bottom:197.752353px;}
.y2b3{bottom:197.759553px;}
.y1bf{bottom:198.131094px;}
.y210{bottom:200.503045px;}
.y1fe{bottom:200.509657px;}
.y205{bottom:200.517745px;}
.y4a{bottom:200.893799px;}
.y3b0{bottom:202.539139px;}
.y314{bottom:203.737953px;}
.y3b2{bottom:204.131400px;}
.y79{bottom:205.587753px;}
.y3ae{bottom:205.759204px;}
.ya8{bottom:206.385295px;}
.y23b{bottom:206.736145px;}
.y357{bottom:208.842773px;}
.y39e{bottom:208.842808px;}
.y222{bottom:209.509657px;}
.y251{bottom:209.562306px;}
.y266{bottom:210.259657px;}
.yfc{bottom:212.530652px;}
.y313{bottom:212.737953px;}
.y49{bottom:214.393799px;}
.y2f2{bottom:214.995153px;}
.y18a{bottom:215.002353px;}
.y15d{bottom:215.737953px;}
.y12f{bottom:215.745153px;}
.y2b2{bottom:215.752353px;}
.y2d7{bottom:215.788353px;}
.y1be{bottom:216.123894px;}
.y20f{bottom:218.495845px;}
.y1fd{bottom:218.502457px;}
.y204{bottom:218.510545px;}
.y3ad{bottom:220.060204px;}
.y3af{bottom:221.440041px;}
.y356{bottom:222.342773px;}
.y39d{bottom:222.342808px;}
.y78{bottom:223.587753px;}
.y3ab{bottom:223.765945px;}
.ya7{bottom:224.378095px;}
.y221{bottom:227.502457px;}
.y250{bottom:227.555106px;}
.y265{bottom:228.252457px;}
.yfb{bottom:230.674652px;}
.y48{bottom:232.393799px;}
.y2f1{bottom:232.987953px;}
.y189{bottom:232.995153px;}
.y12e{bottom:233.737953px;}
.y2b1{bottom:233.745153px;}
.y15c{bottom:233.752353px;}
.y2d6{bottom:233.781153px;}
.y1bd{bottom:234.195917px;}
.y355{bottom:235.842773px;}
.y39c{bottom:235.842808px;}
.y3aa{bottom:237.636445px;}
.y3ac{bottom:238.801346px;}
.y312{bottom:239.737953px;}
.y77{bottom:241.681216px;}
.y3a7{bottom:241.768497px;}
.y3a9{bottom:241.773445px;}
.ya6{bottom:242.370895px;}
.y220{bottom:245.502457px;}
.y24f{bottom:245.547906px;}
.y264{bottom:246.295496px;}
.yfa{bottom:248.818652px;}
.y47{bottom:249.268799px;}
.y354{bottom:249.342773px;}
.y39b{bottom:249.342808px;}
.y188{bottom:250.987953px;}
.y1f8{bottom:251.737953px;}
.y12d{bottom:251.745153px;}
.y2d5{bottom:251.773953px;}
.y293{bottom:251.781153px;}
.y1bc{bottom:252.188717px;}
.y311{bottom:253.237953px;}
.y3a6{bottom:255.859497px;}
.y3a8{bottom:256.813042px;}
.y76{bottom:259.674016px;}
.ya5{bottom:260.385295px;}
.y353{bottom:262.842773px;}
.y39a{bottom:262.842808px;}
.y21f{bottom:263.516696px;}
.y24e{bottom:263.540706px;}
.y263{bottom:264.288296px;}
.yf9{bottom:266.962652px;}
.y214{bottom:268.321060px;}
.y187{bottom:268.987953px;}
.y2f0{bottom:269.002353px;}
.y12c{bottom:269.737953px;}
.y2b0{bottom:269.745153px;}
.y2d4{bottom:269.766753px;}
.y292{bottom:269.773953px;}
.y1f7{bottom:269.781153px;}
.y1bb{bottom:270.181517px;}
.y46{bottom:275.143799px;}
.y352{bottom:276.342773px;}
.y399{bottom:276.342808px;}
.y75{bottom:277.666816px;}
.ya4{bottom:278.378095px;}
.y20b{bottom:279.264908px;}
.y310{bottom:280.237953px;}
.y21e{bottom:281.509496px;}
.y24d{bottom:281.533506px;}
.y262{bottom:282.281096px;}
.y3bc{bottom:282.343941px;}
.y213{bottom:283.321060px;}
.yf8{bottom:285.106652px;}
.y2ef{bottom:286.995153px;}
.y186{bottom:287.009553px;}
.y12b{bottom:287.737953px;}
.y2d3{bottom:287.759553px;}
.y291{bottom:287.766753px;}
.y1f6{bottom:287.773953px;}
.y15b{bottom:287.788330px;}
.y1ba{bottom:288.174317px;}
.y351{bottom:289.842773px;}
.y398{bottom:289.842808px;}
.y30f{bottom:293.737953px;}
.y20a{bottom:294.264908px;}
.y74{bottom:295.659616px;}
.ya3{bottom:296.370895px;}
.y21d{bottom:299.502296px;}
.y24c{bottom:299.526306px;}
.y261{bottom:300.273896px;}
.yf7{bottom:303.250652px;}
.y350{bottom:303.342773px;}
.y397{bottom:303.342808px;}
.y2ee{bottom:304.987953px;}
.y185{bottom:305.002353px;}
.y12a{bottom:305.745153px;}
.y2d2{bottom:305.752353px;}
.y290{bottom:305.759553px;}
.y1f5{bottom:305.766753px;}
.y15a{bottom:305.781130px;}
.y1b9{bottom:306.167117px;}
.y73{bottom:313.652416px;}
.ya2{bottom:314.385295px;}
.y34f{bottom:316.842773px;}
.y396{bottom:316.842808px;}
.y21c{bottom:317.516696px;}
.y24b{bottom:317.547906px;}
.y260{bottom:318.266696px;}
.y30e{bottom:320.737953px;}
.yf6{bottom:321.394652px;}
.y2ed{bottom:322.987953px;}
.y184{bottom:322.995153px;}
.y129{bottom:323.737953px;}
.y2d1{bottom:323.745153px;}
.y28f{bottom:323.752353px;}
.y1f4{bottom:323.759553px;}
.y159{bottom:323.773930px;}
.y1b8{bottom:324.159917px;}
.y45{bottom:325.715103px;}
.y34e{bottom:330.342773px;}
.y395{bottom:330.342808px;}
.y72{bottom:331.645216px;}
.ya1{bottom:332.378095px;}
.y30d{bottom:334.237953px;}
.y21b{bottom:335.509496px;}
.y24a{bottom:335.540706px;}
.y25f{bottom:336.259496px;}
.y183{bottom:340.987953px;}
.y2d0{bottom:341.737953px;}
.y28e{bottom:341.745153px;}
.y1f3{bottom:341.752353px;}
.y158{bottom:341.766730px;}
.y128{bottom:341.802730px;}
.y1b7{bottom:342.152717px;}
.y44{bottom:343.715103px;}
.y34d{bottom:343.842773px;}
.y394{bottom:343.842808px;}
.ya{bottom:344.680500px;}
.yf5{bottom:348.286652px;}
.y71{bottom:349.638016px;}
.ya0{bottom:350.370895px;}
.y21a{bottom:353.502296px;}
.y249{bottom:353.533506px;}
.y25e{bottom:354.252296px;}
.y34c{bottom:357.342773px;}
.y393{bottom:357.342808px;}
.y182{bottom:358.987953px;}
.y28d{bottom:359.737953px;}
.y1f2{bottom:359.745153px;}
.y157{bottom:359.759530px;}
.y127{bottom:359.795530px;}
.y1b6{bottom:360.145517px;}
.y30c{bottom:361.237953px;}
.y43{bottom:361.715103px;}
.yf4{bottom:361.786652px;}
.y70{bottom:367.630816px;}
.y9f{bottom:368.399695px;}
.y34b{bottom:370.842773px;}
.y392{bottom:370.842808px;}
.y248{bottom:371.526306px;}
.y219{bottom:371.531119px;}
.y25d{bottom:372.266719px;}
.yf3{bottom:375.286652px;}
.y181{bottom:377.016730px;}
.y1f1{bottom:377.737953px;}
.y156{bottom:377.752330px;}
.y28c{bottom:377.759530px;}
.y126{bottom:377.788330px;}
.y1b5{bottom:378.138317px;}
.y42{bottom:379.715103px;}
.y34a{bottom:384.342773px;}
.y391{bottom:384.342808px;}
.y6f{bottom:385.623616px;}
.y9e{bottom:386.392495px;}
.yd{bottom:386.490000px;}
.y218{bottom:389.523919px;}
.y247{bottom:389.547906px;}
.y25c{bottom:390.259519px;}
.y180{bottom:395.009530px;}
.y9{bottom:395.689500px;}
.y155{bottom:395.745130px;}
.y28b{bottom:395.752330px;}
.y1f0{bottom:395.766730px;}
.y125{bottom:395.781130px;}
.y2cf{bottom:395.802730px;}
.y1b4{bottom:396.131117px;}
.y30b{bottom:397.234180px;}
.y41{bottom:397.715103px;}
.y349{bottom:397.842773px;}
.y390{bottom:397.842808px;}
.yf1{bottom:399.599396px;}
.y6e{bottom:403.616416px;}
.y9d{bottom:404.385295px;}
.y217{bottom:407.516719px;}
.y246{bottom:407.540706px;}
.y25b{bottom:408.252319px;}
.y30a{bottom:410.734180px;}
.y348{bottom:411.342773px;}
.y38f{bottom:411.342808px;}
.y17f{bottom:413.002330px;}
.y154{bottom:413.737930px;}
.y28a{bottom:413.745130px;}
.y1ef{bottom:413.759530px;}
.y124{bottom:413.773930px;}
.y2ce{bottom:413.795530px;}
.y1b3{bottom:414.123917px;}
.y40{bottom:420.215103px;}
.y6d{bottom:421.609216px;}
.y9c{bottom:422.378095px;}
.y309{bottom:424.234180px;}
.y347{bottom:424.842773px;}
.y38e{bottom:424.842808px;}
.y216{bottom:425.509519px;}
.y245{bottom:425.533506px;}
.y25a{bottom:426.278548px;}
.y17e{bottom:430.995130px;}
.y289{bottom:431.737930px;}
.y2af{bottom:431.745130px;}
.y1ee{bottom:431.752330px;}
.y123{bottom:431.766730px;}
.y2cd{bottom:431.788330px;}
.y153{bottom:431.802730px;}
.y1b2{bottom:432.131117px;}
.yb{bottom:434.850000px;}
.y308{bottom:437.734180px;}
.y3f{bottom:438.215103px;}
.y346{bottom:438.342773px;}
.y38d{bottom:438.342808px;}
.y6c{bottom:439.602016px;}
.y9b{bottom:440.370895px;}
.y215{bottom:443.502319px;}
.y244{bottom:443.526306px;}
.y259{bottom:444.271348px;}
.y8{bottom:446.698500px;}
.y17d{bottom:448.987930px;}
.y2ae{bottom:449.737930px;}
.y1ed{bottom:449.745130px;}
.y122{bottom:449.759530px;}
.y288{bottom:449.773930px;}
.y2cc{bottom:449.781130px;}
.y152{bottom:449.795530px;}
.y2ec{bottom:449.845930px;}
.y1b1{bottom:450.123917px;}
.y307{bottom:451.234180px;}
.y345{bottom:451.842773px;}
.y38c{bottom:451.842808px;}
.y3e{bottom:456.215103px;}
.y6b{bottom:457.594816px;}
.y9a{bottom:458.392495px;}
.y243{bottom:461.526306px;}
.y258{bottom:462.264148px;}
.y306{bottom:464.734180px;}
.y344{bottom:465.342773px;}
.y38b{bottom:465.342808px;}
.ycf{bottom:465.837433px;}
.yf0{bottom:466.685695px;}
.y17c{bottom:466.987930px;}
.y1ec{bottom:467.737930px;}
.y121{bottom:467.752330px;}
.y287{bottom:467.766730px;}
.y2cb{bottom:467.773930px;}
.y151{bottom:467.788330px;}
.y2eb{bottom:467.838730px;}
.y1b0{bottom:468.131117px;}
.y3c1{bottom:469.842728px;}
.y3d{bottom:474.215103px;}
.y6a{bottom:475.587616px;}
.y99{bottom:476.385295px;}
.y343{bottom:478.842773px;}
.y38a{bottom:478.842808px;}
.y3c0{bottom:483.342728px;}
.yce{bottom:483.859033px;}
.yef{bottom:484.678495px;}
.y17b{bottom:485.103176px;}
.y120{bottom:485.745130px;}
.y286{bottom:485.759530px;}
.y2ca{bottom:485.766730px;}
.y150{bottom:485.781130px;}
.y1eb{bottom:485.788330px;}
.y2ea{bottom:485.831530px;}
.y1af{bottom:486.123917px;}
.y11{bottom:488.055000px;}
.y305{bottom:491.734180px;}
.y3c{bottom:492.215103px;}
.y342{bottom:492.342773px;}
.y389{bottom:492.342808px;}
.y69{bottom:493.609216px;}
.y98{bottom:494.378095px;}
.y3bf{bottom:496.842728px;}
.y7{bottom:497.707500px;}
.ycd{bottom:501.851833px;}
.yee{bottom:502.671295px;}
.y17a{bottom:503.095976px;}
.y11f{bottom:503.737930px;}
.y285{bottom:503.752330px;}
.y2c9{bottom:503.759530px;}
.y14f{bottom:503.773930px;}
.y1ea{bottom:503.781130px;}
.y2e9{bottom:503.824330px;}
.y1ae{bottom:504.145517px;}
.y304{bottom:505.234180px;}
.y341{bottom:505.842773px;}
.y388{bottom:505.842808px;}
.y232{bottom:508.064713px;}
.y3b{bottom:510.215103px;}
.y68{bottom:511.602016px;}
.y97{bottom:512.370895px;}
.y270{bottom:513.086243px;}
.y303{bottom:518.734180px;}
.y340{bottom:519.342773px;}
.y387{bottom:519.342808px;}
.ycc{bottom:519.844633px;}
.yed{bottom:520.664095px;}
.y179{bottom:521.088776px;}
.y1da{bottom:521.745130px;}
.y2c8{bottom:521.752330px;}
.y14e{bottom:521.766730px;}
.y1e9{bottom:521.773930px;}
.y11e{bottom:521.795530px;}
.y2e8{bottom:521.817130px;}
.y1ad{bottom:522.138317px;}
.y231{bottom:523.064713px;}
.y26f{bottom:528.086243px;}
.y3a{bottom:528.215103px;}
.y67{bottom:529.594816px;}
.y96{bottom:530.385295px;}
.y33f{bottom:532.842773px;}
.y386{bottom:532.842808px;}
.y23a{bottom:536.739761px;}
.ycb{bottom:537.837433px;}
.y230{bottom:538.064713px;}
.y12{bottom:538.230000px;}
.yec{bottom:538.656895px;}
.y178{bottom:539.081576px;}
.y1d9{bottom:539.737930px;}
.y2c7{bottom:539.745130px;}
.y14d{bottom:539.759530px;}
.y1e8{bottom:539.766730px;}
.y11d{bottom:539.788330px;}
.y2e7{bottom:539.809930px;}
.y1ac{bottom:540.131117px;}
.y26e{bottom:543.086243px;}
.y302{bottom:545.734180px;}
.y39{bottom:546.215103px;}
.y33e{bottom:546.342773px;}
.y385{bottom:546.342808px;}
.y66{bottom:547.587616px;}
.y95{bottom:548.378095px;}
.y6{bottom:548.716500px;}
.y239{bottom:551.739761px;}
.y22f{bottom:553.064713px;}
.yca{bottom:555.837433px;}
.yeb{bottom:556.649695px;}
.y177{bottom:557.074376px;}
.y1d8{bottom:557.737930px;}
.y14c{bottom:557.752330px;}
.y1e7{bottom:557.759530px;}
.y2ad{bottom:557.773930px;}
.y11c{bottom:557.781130px;}
.y2e6{bottom:557.802730px;}
.y284{bottom:557.809930px;}
.y26d{bottom:558.086243px;}
.y1ab{bottom:558.123917px;}
.y301{bottom:559.234180px;}
.y33d{bottom:559.842773px;}
.y384{bottom:559.842808px;}
.y65{bottom:565.638016px;}
.y94{bottom:566.370895px;}
.y238{bottom:566.739761px;}
.y22e{bottom:568.064713px;}
.y38{bottom:568.715103px;}
.y300{bottom:572.734180px;}
.y33c{bottom:573.342773px;}
.y383{bottom:573.342808px;}
.yea{bottom:574.642495px;}
.y176{bottom:575.067176px;}
.y2c6{bottom:575.737930px;}
.y14b{bottom:575.745130px;}
.y1e6{bottom:575.752330px;}
.y2ac{bottom:575.766730px;}
.y11b{bottom:575.773930px;}
.y2e5{bottom:575.795530px;}
.y283{bottom:575.802730px;}
.y1aa{bottom:576.131117px;}
.y237{bottom:581.739761px;}
.y22d{bottom:583.064713px;}
.y64{bottom:583.630816px;}
.y93{bottom:584.385295px;}
.y2ff{bottom:586.234180px;}
.y37{bottom:586.715103px;}
.y33b{bottom:586.842773px;}
.y382{bottom:586.842808px;}
.y1b{bottom:589.605000px;}
.yc9{bottom:591.866233px;}
.ye9{bottom:592.635295px;}
.y175{bottom:593.059976px;}
.y14a{bottom:593.737930px;}
.y1e5{bottom:593.745130px;}
.y2ab{bottom:593.759530px;}
.y11a{bottom:593.766730px;}
.y2e4{bottom:593.788330px;}
.y282{bottom:593.795530px;}
.y1a9{bottom:594.123917px;}
.y236{bottom:596.739761px;}
.y22c{bottom:598.064713px;}
.y5{bottom:599.725500px;}
.y2fe{bottom:599.734180px;}
.y33a{bottom:600.342773px;}
.y381{bottom:600.342808px;}
.y63{bottom:601.623616px;}
.y92{bottom:602.378095px;}
.y36{bottom:604.715103px;}
.yc8{bottom:609.859033px;}
.ye8{bottom:610.628095px;}
.y174{bottom:611.052776px;}
.y149{bottom:611.737930px;}
.y235{bottom:611.739761px;}
.y1d7{bottom:611.745130px;}
.y1e4{bottom:611.752330px;}
.y119{bottom:611.759530px;}
.y2e3{bottom:611.781130px;}
.y281{bottom:611.788330px;}
.y1a8{bottom:612.123917px;}
.y22b{bottom:613.064713px;}
.y339{bottom:613.842773px;}
.y380{bottom:613.842808px;}
.y62{bottom:619.616416px;}
.y91{bottom:620.370895px;}
.y35{bottom:622.715103px;}
.y2fd{bottom:626.734180px;}
.y234{bottom:626.739761px;}
.y338{bottom:627.342773px;}
.y37f{bottom:627.342808px;}
.yc7{bottom:627.851833px;}
.y22a{bottom:628.064713px;}
.ye7{bottom:628.620895px;}
.y173{bottom:629.045576px;}
.y1d6{bottom:629.737930px;}
.y1e3{bottom:629.745130px;}
.y118{bottom:629.752330px;}
.y2e2{bottom:629.773930px;}
.y280{bottom:629.781130px;}
.y1a7{bottom:630.138317px;}
.ye{bottom:631.920000px;}
.y61{bottom:637.609216px;}
.y90{bottom:638.378095px;}
.y2fc{bottom:640.234180px;}
.y34{bottom:640.715103px;}
.y337{bottom:640.842773px;}
.y37e{bottom:640.842808px;}
.y233{bottom:641.739761px;}
.y229{bottom:643.064713px;}
.yc6{bottom:645.844633px;}
.ye6{bottom:646.635295px;}
.y172{bottom:647.038376px;}
.y1d5{bottom:647.737930px;}
.y117{bottom:647.745130px;}
.y2e1{bottom:647.766730px;}
.y27f{bottom:647.773930px;}
.y148{bottom:647.795576px;}
.y1a6{bottom:648.131117px;}
.y2fb{bottom:653.734180px;}
.y336{bottom:654.342773px;}
.y37d{bottom:654.342808px;}
.y60{bottom:655.602016px;}
.y8f{bottom:656.370895px;}
.y33{bottom:658.715103px;}
.yc5{bottom:663.837433px;}
.ye5{bottom:664.628095px;}
.y171{bottom:665.031176px;}
.y1d4{bottom:665.737930px;}
.y2e0{bottom:665.759530px;}
.y27e{bottom:665.766730px;}
.y116{bottom:665.773930px;}
.y2aa{bottom:665.781176px;}
.y147{bottom:665.788376px;}
.y1a5{bottom:666.123917px;}
.y335{bottom:667.842773px;}
.y37c{bottom:667.842808px;}
.y5f{bottom:673.594816px;}
.y8e{bottom:674.421341px;}
.y32{bottom:676.715103px;}
.y334{bottom:681.342773px;}
.y37b{bottom:681.342808px;}
.yc4{bottom:681.837433px;}
.ye4{bottom:682.620895px;}
.y170{bottom:683.023976px;}
.y2c5{bottom:683.737930px;}
.y2df{bottom:683.752330px;}
.y27d{bottom:683.759530px;}
.y115{bottom:683.766730px;}
.y2a9{bottom:683.773976px;}
.y146{bottom:683.781176px;}
.y1a4{bottom:684.131117px;}
.y5e{bottom:691.587616px;}
.y8d{bottom:692.414141px;}
.y2fa{bottom:692.737930px;}
.y31{bottom:694.715103px;}
.y333{bottom:694.842773px;}
.y37a{bottom:694.842808px;}
.yc3{bottom:699.866233px;}
.ye3{bottom:700.628095px;}
.y16f{bottom:701.016776px;}
.y1d3{bottom:701.745130px;}
.y27c{bottom:701.752330px;}
.y114{bottom:701.759530px;}
.y2a8{bottom:701.766776px;}
.y145{bottom:701.773976px;}
.y2c4{bottom:701.824376px;}
.y1a3{bottom:702.123917px;}
.y332{bottom:708.342773px;}
.y379{bottom:708.342808px;}
.y5d{bottom:709.630908px;}
.y8c{bottom:710.406941px;}
.y30{bottom:712.715103px;}
.yc2{bottom:717.859033px;}
.ye2{bottom:718.628095px;}
.y16e{bottom:719.009576px;}
.y1d2{bottom:719.737930px;}
.y27b{bottom:719.745130px;}
.y113{bottom:719.752330px;}
.y2a7{bottom:719.759576px;}
.y144{bottom:719.766776px;}
.y2c3{bottom:719.817176px;}
.y1a2{bottom:720.239071px;}
.y331{bottom:721.842773px;}
.y378{bottom:721.842808px;}
.y2f9{bottom:724.237930px;}
.y5c{bottom:727.623708px;}
.y8b{bottom:728.399741px;}
.y2f{bottom:730.715103px;}
.y330{bottom:735.342773px;}
.y377{bottom:735.342808px;}
.yc1{bottom:735.851833px;}
.ye1{bottom:736.620895px;}
.y16d{bottom:737.002376px;}
.y1d1{bottom:737.737930px;}
.y112{bottom:737.745130px;}
.y2a6{bottom:737.752376px;}
.y143{bottom:737.759576px;}
.y2c2{bottom:737.809976px;}
.y1a1{bottom:738.231871px;}
.y5b{bottom:745.616508px;}
.y8a{bottom:746.392541px;}
.y32f{bottom:748.842773px;}
.y376{bottom:748.842808px;}
.y2e{bottom:753.215103px;}
.yc0{bottom:753.844633px;}
.ye0{bottom:754.628141px;}
.y16c{bottom:754.995176px;}
.y111{bottom:755.737930px;}
.y2a5{bottom:755.745176px;}
.y142{bottom:755.752376px;}
.y2c1{bottom:755.802776px;}
.y1d0{bottom:755.838776px;}
.y1a0{bottom:756.224671px;}
.y32e{bottom:762.342773px;}
.y375{bottom:762.342808px;}
.y5a{bottom:763.609308px;}
.y89{bottom:764.385341px;}
.ybf{bottom:771.837433px;}
.ydf{bottom:772.620941px;}
.y16b{bottom:772.987976px;}
.y110{bottom:773.737976px;}
.y141{bottom:773.745176px;}
.y2c0{bottom:773.795576px;}
.y1cf{bottom:773.831576px;}
.y19f{bottom:774.217471px;}
.y32d{bottom:775.842773px;}
.y374{bottom:775.842808px;}
.y4{bottom:778.225500px;}
.y59{bottom:781.602108px;}
.y88{bottom:782.378141px;}
.y32c{bottom:789.342773px;}
.y373{bottom:789.342808px;}
.ybe{bottom:789.866416px;}
.yde{bottom:790.635341px;}
.y16a{bottom:790.995176px;}
.y10f{bottom:791.737976px;}
.y2a4{bottom:791.759576px;}
.y2bf{bottom:791.788376px;}
.y1ce{bottom:791.824376px;}
.y19e{bottom:792.210271px;}
.y58{bottom:799.594908px;}
.y87{bottom:800.370941px;}
.y32b{bottom:802.842773px;}
.y372{bottom:802.842808px;}
.ybd{bottom:807.859216px;}
.ydd{bottom:808.628141px;}
.y169{bottom:808.987976px;}
.y140{bottom:809.745176px;}
.y2a3{bottom:809.752376px;}
.y2de{bottom:809.759576px;}
.y2be{bottom:809.781176px;}
.y1cd{bottom:809.817176px;}
.y19d{bottom:810.203071px;}
.y13{bottom:815.670000px;}
.y32a{bottom:816.342773px;}
.y371{bottom:816.342808px;}
.y57{bottom:817.587708px;}
.y86{bottom:818.392541px;}
.y2d{bottom:825.552612px;}
.ybc{bottom:825.852016px;}
.ydc{bottom:826.620941px;}
.y168{bottom:826.987976px;}
.y13f{bottom:827.737976px;}
.y2a2{bottom:827.745176px;}
.y2dd{bottom:827.752376px;}
.y2bd{bottom:827.773976px;}
.y10e{bottom:827.795576px;}
.y1cc{bottom:827.809976px;}
.y19c{bottom:828.195871px;}
.y329{bottom:829.842773px;}
.y370{bottom:829.842808px;}
.y56{bottom:835.630908px;}
.y85{bottom:836.385341px;}
.y328{bottom:843.342773px;}
.y36f{bottom:843.342808px;}
.ybb{bottom:843.844816px;}
.ydb{bottom:844.635158px;}
.y13e{bottom:845.737976px;}
.y2dc{bottom:845.745176px;}
.y1e2{bottom:845.752376px;}
.y2bc{bottom:845.766776px;}
.y10d{bottom:845.788376px;}
.y1cb{bottom:845.802776px;}
.y27a{bottom:845.817176px;}
.y19b{bottom:846.188671px;}
.y55{bottom:853.623708px;}
.y84{bottom:854.378141px;}
.y327{bottom:856.842773px;}
.y36e{bottom:856.842808px;}
.y2c{bottom:861.589528px;}
.yba{bottom:861.837616px;}
.yda{bottom:862.627958px;}
.y13d{bottom:863.737976px;}
.y1e1{bottom:863.745176px;}
.y2bb{bottom:863.759576px;}
.y10c{bottom:863.781176px;}
.y1ca{bottom:863.795576px;}
.y279{bottom:863.809976px;}
.y19a{bottom:864.181471px;}
.y326{bottom:870.342773px;}
.y36d{bottom:870.342808px;}
.y54{bottom:871.616508px;}
.y83{bottom:872.370941px;}
.yb9{bottom:879.888016px;}
.yd9{bottom:880.620758px;}
.y1e0{bottom:881.737976px;}
.y2ba{bottom:881.752376px;}
.y167{bottom:881.759576px;}
.y10b{bottom:881.773976px;}
.y1c9{bottom:881.788376px;}
.y278{bottom:881.802776px;}
.y2a1{bottom:881.817453px;}
.y199{bottom:882.174271px;}
.y325{bottom:883.842773px;}
.y36c{bottom:883.842808px;}
.y53{bottom:889.609308px;}
.y82{bottom:890.378141px;}
.y324{bottom:897.342773px;}
.y36b{bottom:897.342808px;}
.yb8{bottom:897.880816px;}
.yd8{bottom:898.627958px;}
.y1df{bottom:899.742776px;}
.y2b9{bottom:899.745176px;}
.y13c{bottom:899.752376px;}
.y10a{bottom:899.766776px;}
.y1c8{bottom:899.781176px;}
.y277{bottom:899.795576px;}
.y2a0{bottom:899.810253px;}
.y198{bottom:900.167071px;}
.y2b{bottom:900.577528px;}
.y3{bottom:905.716500px;}
.y52{bottom:907.602108px;}
.y81{bottom:908.370941px;}
.y323{bottom:910.842773px;}
.y36a{bottom:910.842808px;}
.yb7{bottom:915.873616px;}
.yd7{bottom:916.620758px;}
.y1de{bottom:917.737976px;}
.y13b{bottom:917.745176px;}
.y109{bottom:917.759576px;}
.y1c7{bottom:917.773976px;}
.y276{bottom:917.788376px;}
.y29f{bottom:917.803053px;}
.y197{bottom:918.159871px;}
.y322{bottom:924.342773px;}
.y369{bottom:924.342808px;}
.y51{bottom:925.594908px;}
.y80{bottom:926.388169px;}
.yb6{bottom:933.866416px;}
.yd6{bottom:934.635158px;}
.y166{bottom:935.737976px;}
.y108{bottom:935.752376px;}
.y1c6{bottom:935.766776px;}
.y275{bottom:935.781176px;}
.y29e{bottom:935.795853px;}
.y196{bottom:936.152671px;}
.y321{bottom:937.842773px;}
.y368{bottom:937.842808px;}
.y2a{bottom:939.565528px;}
.y50{bottom:943.587708px;}
.y7f{bottom:944.380969px;}
.y320{bottom:951.342773px;}
.y367{bottom:951.342808px;}
.yb5{bottom:951.859216px;}
.yd5{bottom:952.627958px;}
.y107{bottom:953.745176px;}
.y1c5{bottom:953.759576px;}
.y165{bottom:953.766776px;}
.y274{bottom:953.773976px;}
.y29d{bottom:953.788653px;}
.y195{bottom:954.145471px;}
.y4f{bottom:961.587708px;}
.y7e{bottom:962.373769px;}
.y2{bottom:964.228500px;}
.y31f{bottom:964.842773px;}
.y366{bottom:964.842808px;}
.yb4{bottom:969.852016px;}
.yd4{bottom:970.620758px;}
.y1dd{bottom:971.737976px;}
.y13a{bottom:971.745176px;}
.y106{bottom:971.752376px;}
.y164{bottom:971.759576px;}
.y273{bottom:971.766776px;}
.y29c{bottom:971.781453px;}
.y194{bottom:972.138271px;}
.y31e{bottom:978.342773px;}
.y365{bottom:978.342808px;}
.y29{bottom:978.553528px;}
.yb3{bottom:987.844816px;}
.yd3{bottom:988.627958px;}
.y1{bottom:989.716500px;}
.y139{bottom:989.737976px;}
.y105{bottom:989.745176px;}
.y163{bottom:989.752376px;}
.y1dc{bottom:989.752653px;}
.y272{bottom:989.759576px;}
.y29b{bottom:989.774253px;}
.y193{bottom:990.131071px;}
.y31d{bottom:991.842773px;}
.y364{bottom:991.842808px;}
.y31c{bottom:1005.342773px;}
.y363{bottom:1005.342808px;}
.yb2{bottom:1005.837616px;}
.yd2{bottom:1006.620758px;}
.y104{bottom:1007.737976px;}
.y162{bottom:1007.745176px;}
.y138{bottom:1007.745453px;}
.y271{bottom:1007.752376px;}
.y29a{bottom:1007.767053px;}
.y192{bottom:1008.123871px;}
.y4e{bottom:1012.925079px;}
.y31b{bottom:1018.842773px;}
.y362{bottom:1018.842808px;}
.yb1{bottom:1023.837616px;}
.yd1{bottom:1024.628526px;}
.y161{bottom:1025.737976px;}
.y137{bottom:1025.738253px;}
.y103{bottom:1025.745176px;}
.y299{bottom:1025.759853px;}
.y2db{bottom:1025.767053px;}
.y191{bottom:1026.123871px;}
.y4d{bottom:1030.925079px;}
.y31a{bottom:1032.342773px;}
.y361{bottom:1032.342808px;}
.y1e{bottom:1033.362579px;}
.y26{bottom:1035.750183px;}
.yb0{bottom:1041.837616px;}
.yd0{bottom:1042.621326px;}
.y136{bottom:1043.731053px;}
.y102{bottom:1043.737976px;}
.y298{bottom:1043.752653px;}
.y2da{bottom:1043.759853px;}
.y190{bottom:1044.123871px;}
.y319{bottom:1045.842773px;}
.y360{bottom:1045.842808px;}
.y1d{bottom:1112.297079px;}
.y27{bottom:1113.851990px;}
.yad{bottom:1126.524628px;}
.y4b{bottom:1126.524719px;}
.yaf{bottom:1126.756989px;}
.y1c{bottom:1126.925079px;}
.yae{bottom:1127.300079px;}
.y4c{bottom:1127.304719px;}
.h30{height:10.640359px;}
.h10{height:23.905500px;}
.h2a{height:27.540000px;}
.h17{height:27.814500px;}
.h2e{height:28.374502px;}
.h28{height:29.988000px;}
.h2c{height:30.324000px;}
.h2d{height:30.523500px;}
.h29{height:32.130000px;}
.h4{height:33.000000px;}
.h2b{height:35.532000px;}
.hf{height:37.086000px;}
.h18{height:39.735000px;}
.h1e{height:39.984000px;}
.h27{height:40.100098px;}
.he{height:41.538000px;}
.h20{height:42.384000px;}
.h26{height:42.840000px;}
.h24{height:43.785000px;}
.hc{height:45.696000px;}
.h19{height:45.744000px;}
.h25{height:45.814500px;}
.h1f{height:46.704000px;}
.hb{height:47.232000px;}
.h23{height:47.472000px;}
.h16{height:52.980000px;}
.h1d{height:53.406000px;}
.h1b{height:53.709599px;}
.h1a{height:55.860000px;}
.h15{height:58.380000px;}
.h3{height:58.406250px;}
.h21{height:60.506400px;}
.h1c{height:60.564000px;}
.h14{height:61.120200px;}
.h22{height:62.564479px;}
.h11{height:64.432344px;}
.h2{height:66.750000px;}
.h13{height:67.194379px;}
.h5{height:67.740234px;}
.hd{height:77.142000px;}
.h7{height:115.215000px;}
.h12{height:137.088000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h2f{height:204.143990px;}
.h9{height:1186.299000px;}
.ha{height:1186.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:192.948006px;}
.w8{width:301.170000px;}
.wb{width:344.762993px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x21{left:12.796051px;}
.xa{left:84.933002px;}
.xb{left:92.734348px;}
.xf{left:94.683002px;}
.x11{left:95.880900px;}
.x12{left:97.034552px;}
.x19{left:115.789352px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x23{left:139.550400px;}
.x25{left:140.704651px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xc{left:270.817497px;}
.x13{left:457.096352px;}
.x20{left:463.109985px;}
.x16{left:466.461594px;}
.x14{left:469.091552px;}
.x1f{left:475.906036px;}
.x1e{left:476.938660px;}
.x1a{left:483.529633px;}
.x18{left:487.844094px;}
.x1b{left:490.386133px;}
.x1c{left:493.103989px;}
.x22{left:602.660385px;}
.x24{left:603.814636px;}
.xe{left:615.946518px;}
.x1d{left:660.952332px;}
.xd{left:694.929886px;}
.x17{left:741.068390px;}
.x10{left:747.224258px;}
.x15{left:755.983332px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v4{vertical-align:-13.092169pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v7{vertical-align:3.024000pt;}
.v6{vertical-align:16.000000pt;}
.v5{vertical-align:20.855537pt;}
.v2{vertical-align:23.466471pt;}
.ls5{letter-spacing:-4.965333pt;}
.ls12{letter-spacing:-3.188267pt;}
.ls3{letter-spacing:-0.933333pt;}
.lsa{letter-spacing:-0.470400pt;}
.ls16{letter-spacing:-0.418133pt;}
.ls4{letter-spacing:-0.313600pt;}
.lsb{letter-spacing:-0.104533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000001pt;}
.ls6{letter-spacing:0.000355pt;}
.ls10{letter-spacing:0.000518pt;}
.ls18{letter-spacing:0.133449pt;}
.ls11{letter-spacing:0.156800pt;}
.ls19{letter-spacing:0.200173pt;}
.ls14{letter-spacing:0.313600pt;}
.lsf{letter-spacing:0.365867pt;}
.ls9{letter-spacing:0.511911pt;}
.ls15{letter-spacing:0.627200pt;}
.lsc{letter-spacing:0.637634pt;}
.lse{letter-spacing:0.721279pt;}
.ls13{letter-spacing:0.731727pt;}
.ls7{letter-spacing:0.731733pt;}
.ls8{letter-spacing:0.742187pt;}
.ls1a{letter-spacing:1.000864pt;}
.ls17{letter-spacing:1.668107pt;}
.lsd{letter-spacing:1.986133pt;}
.ls1{letter-spacing:4.853333pt;}
.ws4{word-spacing:-27.136000pt;}
.ws3{word-spacing:-18.858667pt;}
.ws0{word-spacing:-16.874667pt;}
.wsb1{word-spacing:-13.014400pt;}
.ws133{word-spacing:-12.909867pt;}
.ws11a{word-spacing:-12.596267pt;}
.wsee{word-spacing:-12.439467pt;}
.wsc{word-spacing:-12.282667pt;}
.wsb8{word-spacing:-12.178133pt;}
.ws132{word-spacing:-11.969067pt;}
.ws89{word-spacing:-11.864533pt;}
.ws6{word-spacing:-11.096533pt;}
.ws7{word-spacing:-11.040000pt;}
.ws16d{word-spacing:-10.942783pt;}
.ws16c{word-spacing:-10.275540pt;}
.ws162{word-spacing:-10.156800pt;}
.ws8{word-spacing:-9.600000pt;}
.ws16b{word-spacing:-9.474848pt;}
.ws16a{word-spacing:-9.408124pt;}
.ws116{word-spacing:-9.344000pt;}
.ws2{word-spacing:-9.045333pt;}
.ws5{word-spacing:-8.993600pt;}
.ws166{word-spacing:-8.760000pt;}
.ws5c{word-spacing:-8.597867pt;}
.ws161{word-spacing:-8.280000pt;}
.ws11d{word-spacing:-7.680000pt;}
.ws5b{word-spacing:-7.317333pt;}
.wsa{word-spacing:-7.242667pt;}
.ws163{word-spacing:-7.200000pt;}
.ws9{word-spacing:-6.132000pt;}
.wsd0{word-spacing:-5.749333pt;}
.ws123{word-spacing:-4.010667pt;}
.ws16e{word-spacing:-1.668107pt;}
.wseb{word-spacing:-1.411200pt;}
.wsf1{word-spacing:-1.306667pt;}
.ws14a{word-spacing:-0.940800pt;}
.ws6d{word-spacing:-0.888533pt;}
.wsf9{word-spacing:-0.836267pt;}
.ws10b{word-spacing:-0.784000pt;}
.wsb3{word-spacing:-0.731733pt;}
.wsab{word-spacing:-0.679467pt;}
.wsac{word-spacing:-0.627200pt;}
.wsfb{word-spacing:-0.574933pt;}
.wsb7{word-spacing:-0.522667pt;}
.ws113{word-spacing:-0.470400pt;}
.ws145{word-spacing:-0.418133pt;}
.ws9e{word-spacing:-0.365867pt;}
.ws144{word-spacing:-0.313600pt;}
.wsb6{word-spacing:-0.261333pt;}
.ws5e{word-spacing:-0.209067pt;}
.ws19{word-spacing:-0.156800pt;}
.ws167{word-spacing:-0.120000pt;}
.wsb{word-spacing:-0.106667pt;}
.wsf0{word-spacing:-0.104533pt;}
.ws169{word-spacing:-0.080000pt;}
.ws50{word-spacing:-0.052267pt;}
.ws168{word-spacing:-0.040000pt;}
.ws1{word-spacing:0.000000pt;}
.ws26{word-spacing:0.052267pt;}
.ws61{word-spacing:0.104533pt;}
.wsa1{word-spacing:0.156800pt;}
.wsba{word-spacing:0.209067pt;}
.wsa4{word-spacing:0.313600pt;}
.wsdf{word-spacing:0.418133pt;}
.ws5a{word-spacing:0.470400pt;}
.wsfe{word-spacing:0.522667pt;}
.ws58{word-spacing:0.627200pt;}
.ws14b{word-spacing:0.679467pt;}
.ws66{word-spacing:0.731733pt;}
.ws4b{word-spacing:0.784000pt;}
.ws9a{word-spacing:0.836267pt;}
.wscf{word-spacing:0.888533pt;}
.ws141{word-spacing:0.940800pt;}
.ws28{word-spacing:0.993067pt;}
.wsed{word-spacing:1.045333pt;}
.ws8d{word-spacing:1.097600pt;}
.ws7e{word-spacing:1.149867pt;}
.ws79{word-spacing:1.202133pt;}
.ws2b{word-spacing:1.254400pt;}
.ws34{word-spacing:1.358933pt;}
.ws4e{word-spacing:1.411200pt;}
.ws3b{word-spacing:1.463467pt;}
.ws107{word-spacing:1.515733pt;}
.ws8a{word-spacing:1.568000pt;}
.ws110{word-spacing:1.620267pt;}
.ws43{word-spacing:1.672533pt;}
.ws15e{word-spacing:1.724800pt;}
.ws27{word-spacing:1.777067pt;}
.ws1e{word-spacing:1.829333pt;}
.ws44{word-spacing:1.881600pt;}
.ws134{word-spacing:1.933867pt;}
.ws165{word-spacing:1.986133pt;}
.ws120{word-spacing:2.090667pt;}
.ws51{word-spacing:2.142933pt;}
.ws117{word-spacing:2.247467pt;}
.wsfd{word-spacing:2.299733pt;}
.wse0{word-spacing:2.352000pt;}
.ws7b{word-spacing:2.404267pt;}
.ws2c{word-spacing:2.456533pt;}
.ws81{word-spacing:2.508800pt;}
.ws6b{word-spacing:2.561067pt;}
.ws82{word-spacing:2.613333pt;}
.ws10f{word-spacing:2.665600pt;}
.wsa5{word-spacing:2.717867pt;}
.ws122{word-spacing:2.770133pt;}
.wsad{word-spacing:2.822400pt;}
.ws33{word-spacing:2.874667pt;}
.ws1d{word-spacing:2.926933pt;}
.ws124{word-spacing:2.979200pt;}
.ws54{word-spacing:3.031467pt;}
.ws8b{word-spacing:3.083733pt;}
.wsb9{word-spacing:3.136000pt;}
.ws6a{word-spacing:3.188267pt;}
.ws7a{word-spacing:3.345067pt;}
.ws2d{word-spacing:3.397333pt;}
.ws15f{word-spacing:3.449600pt;}
.wsc5{word-spacing:3.501867pt;}
.ws5f{word-spacing:3.554133pt;}
.ws99{word-spacing:3.606400pt;}
.ws158{word-spacing:3.658667pt;}
.ws8f{word-spacing:3.710933pt;}
.ws8c{word-spacing:3.763200pt;}
.wsf4{word-spacing:3.815467pt;}
.wsf5{word-spacing:3.867733pt;}
.wse4{word-spacing:3.920000pt;}
.ws3c{word-spacing:3.972267pt;}
.ws148{word-spacing:4.024533pt;}
.ws62{word-spacing:4.076800pt;}
.ws35{word-spacing:4.129067pt;}
.ws138{word-spacing:4.181333pt;}
.wsaa{word-spacing:4.233600pt;}
.ws4c{word-spacing:4.285867pt;}
.ws85{word-spacing:4.338133pt;}
.wsa0{word-spacing:4.442667pt;}
.ws12c{word-spacing:4.494933pt;}
.ws155{word-spacing:4.547200pt;}
.ws7d{word-spacing:4.599467pt;}
.wse2{word-spacing:4.651733pt;}
.ws76{word-spacing:4.704000pt;}
.wse5{word-spacing:4.756267pt;}
.ws136{word-spacing:4.808533pt;}
.ws135{word-spacing:4.860800pt;}
.ws22{word-spacing:4.913067pt;}
.ws65{word-spacing:4.965333pt;}
.ws16{word-spacing:5.017600pt;}
.ws7c{word-spacing:5.069867pt;}
.ws20{word-spacing:5.122133pt;}
.ws2e{word-spacing:5.174400pt;}
.ws1a{word-spacing:5.226667pt;}
.ws17{word-spacing:5.278933pt;}
.ws36{word-spacing:5.331200pt;}
.wsa7{word-spacing:5.383467pt;}
.ws13f{word-spacing:5.435733pt;}
.ws91{word-spacing:5.488000pt;}
.ws24{word-spacing:5.540267pt;}
.ws13e{word-spacing:5.592533pt;}
.wsd9{word-spacing:5.644800pt;}
.ws90{word-spacing:5.697067pt;}
.wsfa{word-spacing:5.749333pt;}
.ws74{word-spacing:5.801600pt;}
.wsa8{word-spacing:5.853867pt;}
.ws114{word-spacing:5.906133pt;}
.ws1c{word-spacing:5.958400pt;}
.ws127{word-spacing:6.010667pt;}
.ws60{word-spacing:6.062933pt;}
.ws75{word-spacing:6.115200pt;}
.ws57{word-spacing:6.167467pt;}
.ws14c{word-spacing:6.219733pt;}
.ws9b{word-spacing:6.272000pt;}
.wsd6{word-spacing:6.324267pt;}
.ws1b{word-spacing:6.376533pt;}
.ws15{word-spacing:6.428800pt;}
.ws6e{word-spacing:6.533333pt;}
.ws9c{word-spacing:6.585600pt;}
.ws84{word-spacing:6.637867pt;}
.ws48{word-spacing:6.742400pt;}
.wsd8{word-spacing:6.794667pt;}
.ws2f{word-spacing:6.846933pt;}
.ws4a{word-spacing:6.899200pt;}
.ws3d{word-spacing:6.951467pt;}
.ws118{word-spacing:7.003733pt;}
.ws12f{word-spacing:7.056000pt;}
.wsda{word-spacing:7.108267pt;}
.ws78{word-spacing:7.160533pt;}
.ws15a{word-spacing:7.212800pt;}
.ws93{word-spacing:7.265067pt;}
.wsde{word-spacing:7.317333pt;}
.ws149{word-spacing:7.369600pt;}
.wsa3{word-spacing:7.421867pt;}
.ws6f{word-spacing:7.474133pt;}
.wsc1{word-spacing:7.526400pt;}
.ws63{word-spacing:7.578667pt;}
.ws14e{word-spacing:7.630933pt;}
.ws67{word-spacing:7.683200pt;}
.ws11b{word-spacing:7.735467pt;}
.ws21{word-spacing:7.787733pt;}
.ws68{word-spacing:7.840000pt;}
.ws14{word-spacing:7.892267pt;}
.wse6{word-spacing:7.944533pt;}
.ws77{word-spacing:7.996800pt;}
.ws42{word-spacing:8.049067pt;}
.ws1f{word-spacing:8.101333pt;}
.wsca{word-spacing:8.153600pt;}
.ws10d{word-spacing:8.205867pt;}
.ws29{word-spacing:8.258133pt;}
.ws101{word-spacing:8.310400pt;}
.ws106{word-spacing:8.362667pt;}
.ws83{word-spacing:8.467200pt;}
.wsf2{word-spacing:8.519467pt;}
.ws3e{word-spacing:8.571733pt;}
.wsa6{word-spacing:8.624000pt;}
.ws9d{word-spacing:8.728533pt;}
.wsaf{word-spacing:8.780800pt;}
.ws41{word-spacing:8.885333pt;}
.ws119{word-spacing:8.937600pt;}
.ws3f{word-spacing:8.989867pt;}
.wsf6{word-spacing:9.042133pt;}
.ws18{word-spacing:9.094400pt;}
.ws47{word-spacing:9.146667pt;}
.ws98{word-spacing:9.198933pt;}
.ws52{word-spacing:9.251200pt;}
.ws128{word-spacing:9.303467pt;}
.ws2a{word-spacing:9.355733pt;}
.ws159{word-spacing:9.408000pt;}
.wsc7{word-spacing:9.460267pt;}
.ws25{word-spacing:9.512533pt;}
.wsdc{word-spacing:9.564800pt;}
.ws80{word-spacing:9.617067pt;}
.wsdb{word-spacing:9.669333pt;}
.wsd1{word-spacing:9.773867pt;}
.ws115{word-spacing:9.826133pt;}
.wsd3{word-spacing:9.878400pt;}
.ws88{word-spacing:9.930667pt;}
.wse7{word-spacing:9.982933pt;}
.ws97{word-spacing:10.035200pt;}
.ws143{word-spacing:10.087467pt;}
.ws14f{word-spacing:10.139733pt;}
.ws12d{word-spacing:10.192000pt;}
.ws45{word-spacing:10.244267pt;}
.ws64{word-spacing:10.296533pt;}
.ws142{word-spacing:10.348800pt;}
.ws9f{word-spacing:10.401067pt;}
.wsa9{word-spacing:10.453333pt;}
.wsf7{word-spacing:10.505600pt;}
.wsbc{word-spacing:10.557867pt;}
.wse1{word-spacing:10.610133pt;}
.ws152{word-spacing:10.662400pt;}
.ws40{word-spacing:10.714667pt;}
.ws46{word-spacing:10.766933pt;}
.ws11{word-spacing:10.819200pt;}
.ws23{word-spacing:10.923733pt;}
.ws130{word-spacing:10.976000pt;}
.ws69{word-spacing:11.028267pt;}
.wsef{word-spacing:11.080533pt;}
.wse8{word-spacing:11.132800pt;}
.ws108{word-spacing:11.185067pt;}
.ws4d{word-spacing:11.237333pt;}
.ws49{word-spacing:11.289600pt;}
.ws94{word-spacing:11.341867pt;}
.ws102{word-spacing:11.394133pt;}
.wsff{word-spacing:11.446400pt;}
.wsf3{word-spacing:11.498667pt;}
.ws15b{word-spacing:11.655467pt;}
.ws126{word-spacing:11.707733pt;}
.ws109{word-spacing:11.760000pt;}
.wsec{word-spacing:11.864533pt;}
.ws31{word-spacing:11.916800pt;}
.ws131{word-spacing:11.969067pt;}
.ws56{word-spacing:12.021333pt;}
.wsb5{word-spacing:12.073600pt;}
.ws73{word-spacing:12.125867pt;}
.wsf8{word-spacing:12.178133pt;}
.ws59{word-spacing:12.230400pt;}
.ws157{word-spacing:12.387200pt;}
.ws55{word-spacing:12.439467pt;}
.ws87{word-spacing:12.491733pt;}
.wsc3{word-spacing:12.544000pt;}
.wsc4{word-spacing:12.596267pt;}
.ws8e{word-spacing:12.648533pt;}
.wsfc{word-spacing:12.700800pt;}
.ws112{word-spacing:12.753067pt;}
.ws95{word-spacing:12.857600pt;}
.ws105{word-spacing:12.909867pt;}
.ws86{word-spacing:13.014400pt;}
.ws70{word-spacing:13.118933pt;}
.ws32{word-spacing:13.171200pt;}
.ws15d{word-spacing:13.223467pt;}
.ws92{word-spacing:13.275733pt;}
.ws11c{word-spacing:13.328000pt;}
.ws13c{word-spacing:13.380267pt;}
.ws96{word-spacing:13.432533pt;}
.ws7f{word-spacing:13.484800pt;}
.wsc6{word-spacing:13.537067pt;}
.ws103{word-spacing:13.589333pt;}
.ws151{word-spacing:13.641600pt;}
.ws12{word-spacing:13.693867pt;}
.ws53{word-spacing:13.798400pt;}
.wsd5{word-spacing:13.850667pt;}
.wscd{word-spacing:14.007467pt;}
.ws146{word-spacing:14.112000pt;}
.ws38{word-spacing:14.164267pt;}
.wsbd{word-spacing:14.268800pt;}
.ws3a{word-spacing:14.321067pt;}
.ws37{word-spacing:14.477867pt;}
.ws12e{word-spacing:14.582400pt;}
.ws4f{word-spacing:14.634667pt;}
.wsa2{word-spacing:14.739200pt;}
.wsd4{word-spacing:14.791467pt;}
.ws6c{word-spacing:14.896000pt;}
.wsc9{word-spacing:14.948267pt;}
.wsd{word-spacing:14.986667pt;}
.ws140{word-spacing:15.157333pt;}
.wse9{word-spacing:15.261867pt;}
.wsbb{word-spacing:15.418667pt;}
.wse3{word-spacing:15.627733pt;}
.ws147{word-spacing:15.680000pt;}
.ws164{word-spacing:15.784533pt;}
.ws100{word-spacing:15.836800pt;}
.ws10a{word-spacing:16.254933pt;}
.wse{word-spacing:16.464000pt;}
.ws13{word-spacing:16.673067pt;}
.ws137{word-spacing:16.986667pt;}
.ws139{word-spacing:17.300267pt;}
.ws10c{word-spacing:17.352533pt;}
.ws121{word-spacing:17.457067pt;}
.wsea{word-spacing:17.613867pt;}
.ws13a{word-spacing:17.666133pt;}
.ws11e{word-spacing:17.875200pt;}
.ws129{word-spacing:18.188800pt;}
.ws39{word-spacing:18.920533pt;}
.ws153{word-spacing:18.972800pt;}
.ws12b{word-spacing:19.025067pt;}
.ws160{word-spacing:19.234133pt;}
.wsce{word-spacing:19.286400pt;}
.wsd7{word-spacing:19.390933pt;}
.ws71{word-spacing:19.443200pt;}
.ws11f{word-spacing:19.495467pt;}
.ws10e{word-spacing:19.547733pt;}
.wsc0{word-spacing:19.965867pt;}
.ws125{word-spacing:20.018133pt;}
.ws104{word-spacing:20.174933pt;}
.wsd2{word-spacing:20.906667pt;}
.ws12a{word-spacing:21.063467pt;}
.ws14d{word-spacing:21.481600pt;}
.ws15c{word-spacing:21.742933pt;}
.wsbe{word-spacing:21.847467pt;}
.ws154{word-spacing:22.370133pt;}
.wsc8{word-spacing:22.422400pt;}
.ws150{word-spacing:22.736000pt;}
.wsae{word-spacing:23.101867pt;}
.ws30{word-spacing:23.154133pt;}
.wsc2{word-spacing:23.415467pt;}
.wscc{word-spacing:23.520000pt;}
.ws13b{word-spacing:23.885867pt;}
.ws10{word-spacing:23.938133pt;}
.wscb{word-spacing:24.304000pt;}
.ws13d{word-spacing:24.983467pt;}
.ws72{word-spacing:25.662933pt;}
.wsdd{word-spacing:25.715200pt;}
.ws111{word-spacing:25.924267pt;}
.ws156{word-spacing:26.969600pt;}
.wsbf{word-spacing:27.492267pt;}
.wsb4{word-spacing:31.150933pt;}
.wsf{word-spacing:31.830400pt;}
.wsb0{word-spacing:33.607467pt;}
.wsb2{word-spacing:106.885333pt;}
.ws5d{word-spacing:354.901317pt;}
._13{margin-left:-26.261344pt;}
._34{margin-left:-23.514691pt;}
._2e{margin-left:-20.773333pt;}
._2f{margin-left:-19.281067pt;}
._31{margin-left:-16.313804pt;}
._b{margin-left:-15.398400pt;}
._37{margin-left:-14.466133pt;}
._30{margin-left:-12.884289pt;}
._36{margin-left:-11.208533pt;}
._33{margin-left:-10.240000pt;}
._6{margin-left:-9.216000pt;}
._12{margin-left:-7.445333pt;}
._2{margin-left:-6.536533pt;}
._a{margin-left:-5.013333pt;}
._3{margin-left:-3.808000pt;}
._9{margin-left:-2.721067pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.173333pt;}
._5{width:2.688000pt;}
._7{width:3.694933pt;}
._0{width:4.966400pt;}
._11{width:6.219750pt;}
._e{width:7.265050pt;}
._c{width:9.094400pt;}
._3b{width:10.218667pt;}
._f{width:11.109324pt;}
._32{width:12.013856pt;}
._3a{width:12.910933pt;}
._d{width:14.321067pt;}
._8{width:15.854924pt;}
._38{width:16.910058pt;}
._10{width:18.303974pt;}
._39{width:21.275052pt;}
._35{width:23.695146pt;}
._3d{width:25.360000pt;}
._3c{width:40.000000pt;}
._16{width:83.967984pt;}
._2c{width:86.958894pt;}
._2b{width:162.602611pt;}
._23{width:183.253317pt;}
._24{width:189.465600pt;}
._2a{width:214.656000pt;}
._17{width:232.896000pt;}
._1a{width:236.654933pt;}
._14{width:258.944000pt;}
._1c{width:286.250667pt;}
._28{width:295.082667pt;}
._27{width:296.021277pt;}
._29{width:299.007944pt;}
._21{width:320.921600pt;}
._1e{width:342.826650pt;}
._19{width:364.245317pt;}
._22{width:415.620211pt;}
._25{width:418.606877pt;}
._26{width:426.538667pt;}
._20{width:484.791411pt;}
._18{width:532.394611pt;}
._2d{width:717.469811pt;}
._1b{width:795.438877pt;}
._1f{width:1042.133277pt;}
._15{width:1092.266611pt;}
._1d{width:1298.325277pt;}
.fs14{font-size:12.510710pt;}
.fsb{font-size:28.000000pt;}
.fs11{font-size:32.000000pt;}
.fs13{font-size:33.362142pt;}
.fs12{font-size:35.466667pt;}
.fsf{font-size:36.586667pt;}
.fs5{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs8{font-size:41.066666pt;}
.fs3{font-size:42.666667pt;}
.fs10{font-size:48.000000pt;}
.fse{font-size:49.066666pt;}
.fsd{font-size:52.266667pt;}
.fsa{font-size:53.333333pt;}
.fs9{font-size:54.933333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fs6{font-size:75.359467pt;}
.fs0{font-size:85.333333pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:5.105713pt;}
.yc{bottom:7.146667pt;}
.y15{bottom:69.080000pt;}
.y25{bottom:80.897599pt;}
.y1a{bottom:81.413333pt;}
.y3bd{bottom:88.410665pt;}
.y14{bottom:88.706667pt;}
.yf2{bottom:89.232269pt;}
.y35f{bottom:89.638021pt;}
.y228{bottom:90.224396pt;}
.y257{bottom:90.258538pt;}
.y242{bottom:90.432129pt;}
.y26c{bottom:90.903862pt;}
.y24{bottom:91.565599pt;}
.y2f8{bottom:95.100403pt;}
.y135{bottom:95.767069pt;}
.y160{bottom:95.773469pt;}
.y1fc{bottom:95.779869pt;}
.y297{bottom:95.786269pt;}
.y2d9{bottom:95.792669pt;}
.y2b8{bottom:95.818269pt;}
.y1c4{bottom:96.148528pt;}
.y203{bottom:98.230796pt;}
.y209{bottom:98.237196pt;}
.y19{bottom:101.040000pt;}
.y35e{bottom:101.638021pt;}
.y3a5{bottom:101.638051pt;}
.y23{bottom:102.233599pt;}
.y3bb{bottom:103.088000pt;}
.y241{bottom:103.765462pt;}
.y227{bottom:106.230796pt;}
.y256{bottom:106.252138pt;}
.y26b{bottom:106.897462pt;}
.y101{bottom:108.201468pt;}
.y18f{bottom:111.106803pt;}
.y2f7{bottom:111.113203pt;}
.y15f{bottom:111.767069pt;}
.y134{bottom:111.773469pt;}
.y296{bottom:111.779869pt;}
.y1db{bottom:111.786269pt;}
.y2b7{bottom:111.811869pt;}
.y1c3{bottom:112.142128pt;}
.y22{bottom:112.901599pt;}
.y35d{bottom:113.638021pt;}
.y3a4{bottom:113.638051pt;}
.y202{bottom:114.224396pt;}
.y208{bottom:114.230796pt;}
.y240{bottom:117.098796pt;}
.y318{bottom:117.100403pt;}
.y7d{bottom:118.744670pt;}
.y3b9{bottom:118.901465pt;}
.y10{bottom:119.053333pt;}
.yac{bottom:119.453596pt;}
.y18{bottom:120.666667pt;}
.y226{bottom:122.224396pt;}
.y255{bottom:122.245738pt;}
.y26a{bottom:122.891062pt;}
.y21{bottom:123.569599pt;}
.y3ba{bottom:124.368000pt;}
.y100{bottom:124.404135pt;}
.y35c{bottom:125.638021pt;}
.y3a3{bottom:125.638051pt;}
.y18e{bottom:127.100403pt;}
.y2f6{bottom:127.106803pt;}
.y1fb{bottom:127.767069pt;}
.y295{bottom:127.773469pt;}
.y133{bottom:127.779869pt;}
.y2b6{bottom:127.805469pt;}
.y1c2{bottom:128.135728pt;}
.y201{bottom:130.224396pt;}
.y212{bottom:130.228663pt;}
.y20e{bottom:130.237196pt;}
.y23f{bottom:130.432129pt;}
.y20{bottom:134.237599pt;}
.y7c{bottom:134.763870pt;}
.y3b6{bottom:134.909465pt;}
.yab{bottom:135.447196pt;}
.y35b{bottom:137.638021pt;}
.y3a2{bottom:137.638051pt;}
.y16{bottom:137.733333pt;}
.y225{bottom:138.237196pt;}
.y254{bottom:138.296805pt;}
.yf{bottom:138.680000pt;}
.y269{bottom:138.916673pt;}
.y17{bottom:140.293333pt;}
.yff{bottom:140.532135pt;}
.y317{bottom:141.100403pt;}
.y2f5{bottom:143.100403pt;}
.y18d{bottom:143.106803pt;}
.y23e{bottom:143.765462pt;}
.y294{bottom:143.767069pt;}
.y132{bottom:143.773469pt;}
.y1fa{bottom:143.792669pt;}
.y2b5{bottom:143.799069pt;}
.y1c1{bottom:144.129328pt;}
.y1f{bottom:144.905599pt;}
.y211{bottom:146.224396pt;}
.y20d{bottom:146.230796pt;}
.y200{bottom:146.243606pt;}
.y207{bottom:146.250796pt;}
.y3b8{bottom:148.870799pt;}
.y3b7{bottom:149.385071pt;}
.y35a{bottom:149.638021pt;}
.y3a1{bottom:149.638051pt;}
.y3b4{bottom:150.157999pt;}
.y7b{bottom:150.757470pt;}
.yaa{bottom:151.440796pt;}
.y316{bottom:153.100403pt;}
.y224{bottom:154.230796pt;}
.y253{bottom:154.290405pt;}
.y268{bottom:154.910273pt;}
.yfe{bottom:156.660135pt;}
.y23d{bottom:157.098796pt;}
.y18c{bottom:159.100403pt;}
.y2f4{bottom:159.119603pt;}
.y131{bottom:159.767069pt;}
.y1f9{bottom:159.786269pt;}
.y2b4{bottom:159.792669pt;}
.y1c0{bottom:160.122928pt;}
.y359{bottom:161.638021pt;}
.y3a0{bottom:161.638051pt;}
.y20c{bottom:162.224396pt;}
.y1ff{bottom:162.237206pt;}
.y206{bottom:162.244396pt;}
.y3be{bottom:162.561727pt;}
.y3b3{bottom:164.288666pt;}
.y315{bottom:165.100403pt;}
.y3b5{bottom:165.233999pt;}
.y7a{bottom:166.751070pt;}
.y3b1{bottom:166.912123pt;}
.ya9{bottom:167.459996pt;}
.y223{bottom:170.224396pt;}
.y252{bottom:170.284005pt;}
.y23c{bottom:170.432129pt;}
.y267{bottom:170.903873pt;}
.yfd{bottom:172.788135pt;}
.y358{bottom:173.638021pt;}
.y39f{bottom:173.638051pt;}
.y2f3{bottom:175.113203pt;}
.y18b{bottom:175.119603pt;}
.y2d8{bottom:175.767069pt;}
.y15e{bottom:175.773469pt;}
.y130{bottom:175.779869pt;}
.y2b3{bottom:175.786269pt;}
.y1bf{bottom:176.116528pt;}
.y210{bottom:178.224929pt;}
.y1fe{bottom:178.230806pt;}
.y205{bottom:178.237996pt;}
.y4a{bottom:178.572266pt;}
.y3b0{bottom:180.034790pt;}
.y314{bottom:181.100403pt;}
.y3b2{bottom:181.450133pt;}
.y79{bottom:182.744670pt;}
.y3ae{bottom:182.897070pt;}
.ya8{bottom:183.453596pt;}
.y23b{bottom:183.765462pt;}
.y357{bottom:185.638021pt;}
.y39e{bottom:185.638051pt;}
.y222{bottom:186.230806pt;}
.y251{bottom:186.277605pt;}
.y266{bottom:186.897473pt;}
.yfc{bottom:188.916135pt;}
.y313{bottom:189.100403pt;}
.y49{bottom:190.572266pt;}
.y2f2{bottom:191.106803pt;}
.y18a{bottom:191.113203pt;}
.y15d{bottom:191.767069pt;}
.y12f{bottom:191.773469pt;}
.y2b2{bottom:191.779869pt;}
.y2d7{bottom:191.811869pt;}
.y1be{bottom:192.110128pt;}
.y20f{bottom:194.218529pt;}
.y1fd{bottom:194.224406pt;}
.y204{bottom:194.231596pt;}
.y3ad{bottom:195.609070pt;}
.y3af{bottom:196.835592pt;}
.y356{bottom:197.638021pt;}
.y39d{bottom:197.638051pt;}
.y78{bottom:198.744670pt;}
.y3ab{bottom:198.903062pt;}
.ya7{bottom:199.447196pt;}
.y221{bottom:202.224406pt;}
.y250{bottom:202.271205pt;}
.y265{bottom:202.891073pt;}
.yfb{bottom:205.044135pt;}
.y48{bottom:206.572266pt;}
.y2f1{bottom:207.100403pt;}
.y189{bottom:207.106803pt;}
.y12e{bottom:207.767069pt;}
.y2b1{bottom:207.773469pt;}
.y15c{bottom:207.779869pt;}
.y2d6{bottom:207.805469pt;}
.y1bd{bottom:208.174148pt;}
.y355{bottom:209.638021pt;}
.y39c{bottom:209.638051pt;}
.y3aa{bottom:211.232396pt;}
.y3ac{bottom:212.267863pt;}
.y312{bottom:213.100403pt;}
.y77{bottom:214.827748pt;}
.y3a7{bottom:214.905331pt;}
.y3a9{bottom:214.909729pt;}
.ya6{bottom:215.440796pt;}
.y220{bottom:218.224406pt;}
.y24f{bottom:218.264805pt;}
.y264{bottom:218.929330pt;}
.yfa{bottom:221.172135pt;}
.y47{bottom:221.572266pt;}
.y354{bottom:221.638021pt;}
.y39b{bottom:221.638051pt;}
.y188{bottom:223.100403pt;}
.y1f8{bottom:223.767069pt;}
.y12d{bottom:223.773469pt;}
.y2d5{bottom:223.799069pt;}
.y293{bottom:223.805469pt;}
.y1bc{bottom:224.167748pt;}
.y311{bottom:225.100403pt;}
.y3a6{bottom:227.430664pt;}
.y3a8{bottom:228.278259pt;}
.y76{bottom:230.821348pt;}
.ya5{bottom:231.453596pt;}
.y353{bottom:233.638021pt;}
.y39a{bottom:233.638051pt;}
.y21f{bottom:234.237064pt;}
.y24e{bottom:234.258405pt;}
.y263{bottom:234.922930pt;}
.yf9{bottom:237.300135pt;}
.y214{bottom:238.507609pt;}
.y187{bottom:239.100403pt;}
.y2f0{bottom:239.113203pt;}
.y12c{bottom:239.767069pt;}
.y2b0{bottom:239.773469pt;}
.y2d4{bottom:239.792669pt;}
.y292{bottom:239.799069pt;}
.y1f7{bottom:239.805469pt;}
.y1bb{bottom:240.161348pt;}
.y46{bottom:244.572266pt;}
.y352{bottom:245.638021pt;}
.y399{bottom:245.638051pt;}
.y75{bottom:246.814948pt;}
.ya4{bottom:247.447196pt;}
.y20b{bottom:248.235474pt;}
.y310{bottom:249.100403pt;}
.y21e{bottom:250.230664pt;}
.y24d{bottom:250.252005pt;}
.y262{bottom:250.916530pt;}
.y3bc{bottom:250.972392pt;}
.y213{bottom:251.840942pt;}
.yf8{bottom:253.428135pt;}
.y2ef{bottom:255.106803pt;}
.y186{bottom:255.119603pt;}
.y12b{bottom:255.767069pt;}
.y2d3{bottom:255.786269pt;}
.y291{bottom:255.792669pt;}
.y1f6{bottom:255.799069pt;}
.y15b{bottom:255.811849pt;}
.y1ba{bottom:256.154948pt;}
.y351{bottom:257.638021pt;}
.y398{bottom:257.638051pt;}
.y30f{bottom:261.100403pt;}
.y20a{bottom:261.568807pt;}
.y74{bottom:262.808548pt;}
.ya3{bottom:263.440796pt;}
.y21d{bottom:266.224264pt;}
.y24c{bottom:266.245605pt;}
.y261{bottom:266.910130pt;}
.yf7{bottom:269.556135pt;}
.y350{bottom:269.638021pt;}
.y397{bottom:269.638051pt;}
.y2ee{bottom:271.100403pt;}
.y185{bottom:271.113203pt;}
.y12a{bottom:271.773469pt;}
.y2d2{bottom:271.779869pt;}
.y290{bottom:271.786269pt;}
.y1f5{bottom:271.792669pt;}
.y15a{bottom:271.805449pt;}
.y1b9{bottom:272.148548pt;}
.y73{bottom:278.802148pt;}
.ya2{bottom:279.453596pt;}
.y34f{bottom:281.638021pt;}
.y396{bottom:281.638051pt;}
.y21c{bottom:282.237064pt;}
.y24b{bottom:282.264805pt;}
.y260{bottom:282.903730pt;}
.y30e{bottom:285.100403pt;}
.yf6{bottom:285.684135pt;}
.y2ed{bottom:287.100403pt;}
.y184{bottom:287.106803pt;}
.y129{bottom:287.767069pt;}
.y2d1{bottom:287.773469pt;}
.y28f{bottom:287.779869pt;}
.y1f4{bottom:287.786269pt;}
.y159{bottom:287.799049pt;}
.y1b8{bottom:288.142148pt;}
.y45{bottom:289.524536pt;}
.y34e{bottom:293.638021pt;}
.y395{bottom:293.638051pt;}
.y72{bottom:294.795748pt;}
.ya1{bottom:295.447196pt;}
.y30d{bottom:297.100403pt;}
.y21b{bottom:298.230664pt;}
.y24a{bottom:298.258405pt;}
.y25f{bottom:298.897330pt;}
.y183{bottom:303.100403pt;}
.y2d0{bottom:303.767069pt;}
.y28e{bottom:303.773469pt;}
.y1f3{bottom:303.779869pt;}
.y158{bottom:303.792649pt;}
.y128{bottom:303.824649pt;}
.y1b7{bottom:304.135748pt;}
.y44{bottom:305.524536pt;}
.y34d{bottom:305.638021pt;}
.y394{bottom:305.638051pt;}
.ya{bottom:306.382667pt;}
.yf5{bottom:309.588135pt;}
.y71{bottom:310.789348pt;}
.ya0{bottom:311.440796pt;}
.y21a{bottom:314.224264pt;}
.y249{bottom:314.252005pt;}
.y25e{bottom:314.890930pt;}
.y34c{bottom:317.638021pt;}
.y393{bottom:317.638051pt;}
.y182{bottom:319.100403pt;}
.y28d{bottom:319.767069pt;}
.y1f2{bottom:319.773469pt;}
.y157{bottom:319.786249pt;}
.y127{bottom:319.818249pt;}
.y1b6{bottom:320.129348pt;}
.y30c{bottom:321.100403pt;}
.y43{bottom:321.524536pt;}
.yf4{bottom:321.588135pt;}
.y70{bottom:326.782948pt;}
.y9f{bottom:327.466396pt;}
.y34b{bottom:329.638021pt;}
.y392{bottom:329.638051pt;}
.y248{bottom:330.245605pt;}
.y219{bottom:330.249884pt;}
.y25d{bottom:330.903751pt;}
.yf3{bottom:333.588135pt;}
.y181{bottom:335.125982pt;}
.y1f1{bottom:335.767069pt;}
.y156{bottom:335.779849pt;}
.y28c{bottom:335.786249pt;}
.y126{bottom:335.811849pt;}
.y1b5{bottom:336.122948pt;}
.y42{bottom:337.524536pt;}
.y34a{bottom:341.638021pt;}
.y391{bottom:341.638051pt;}
.y6f{bottom:342.776548pt;}
.y9e{bottom:343.459996pt;}
.yd{bottom:343.546667pt;}
.y218{bottom:346.243484pt;}
.y247{bottom:346.264805pt;}
.y25c{bottom:346.897351pt;}
.y180{bottom:351.119582pt;}
.y9{bottom:351.724000pt;}
.y155{bottom:351.773449pt;}
.y28b{bottom:351.779849pt;}
.y1f0{bottom:351.792649pt;}
.y125{bottom:351.805449pt;}
.y2cf{bottom:351.824649pt;}
.y1b4{bottom:352.116548pt;}
.y30b{bottom:353.097049pt;}
.y41{bottom:353.524536pt;}
.y349{bottom:353.638021pt;}
.y390{bottom:353.638051pt;}
.yf1{bottom:355.199463pt;}
.y6e{bottom:358.770148pt;}
.y9d{bottom:359.453596pt;}
.y217{bottom:362.237084pt;}
.y246{bottom:362.258405pt;}
.y25b{bottom:362.890951pt;}
.y30a{bottom:365.097049pt;}
.y348{bottom:365.638021pt;}
.y38f{bottom:365.638051pt;}
.y17f{bottom:367.113182pt;}
.y154{bottom:367.767049pt;}
.y28a{bottom:367.773449pt;}
.y1ef{bottom:367.786249pt;}
.y124{bottom:367.799049pt;}
.y2ce{bottom:367.818249pt;}
.y1b3{bottom:368.110148pt;}
.y40{bottom:373.524536pt;}
.y6d{bottom:374.763748pt;}
.y9c{bottom:375.447196pt;}
.y309{bottom:377.097049pt;}
.y347{bottom:377.638021pt;}
.y38e{bottom:377.638051pt;}
.y216{bottom:378.230684pt;}
.y245{bottom:378.252005pt;}
.y25a{bottom:378.914265pt;}
.y17e{bottom:383.106782pt;}
.y289{bottom:383.767049pt;}
.y2af{bottom:383.773449pt;}
.y1ee{bottom:383.779849pt;}
.y123{bottom:383.792649pt;}
.y2cd{bottom:383.811849pt;}
.y153{bottom:383.824649pt;}
.y1b2{bottom:384.116548pt;}
.yb{bottom:386.533333pt;}
.y308{bottom:389.097049pt;}
.y3f{bottom:389.524536pt;}
.y346{bottom:389.638021pt;}
.y38d{bottom:389.638051pt;}
.y6c{bottom:390.757348pt;}
.y9b{bottom:391.440796pt;}
.y215{bottom:394.224284pt;}
.y244{bottom:394.245605pt;}
.y259{bottom:394.907865pt;}
.y8{bottom:397.065333pt;}
.y17d{bottom:399.100382pt;}
.y2ae{bottom:399.767049pt;}
.y1ed{bottom:399.773449pt;}
.y122{bottom:399.786249pt;}
.y288{bottom:399.799049pt;}
.y2cc{bottom:399.805449pt;}
.y152{bottom:399.818249pt;}
.y2ec{bottom:399.863049pt;}
.y1b1{bottom:400.110148pt;}
.y307{bottom:401.097049pt;}
.y345{bottom:401.638021pt;}
.y38c{bottom:401.638051pt;}
.y3e{bottom:405.524536pt;}
.y6b{bottom:406.750948pt;}
.y9a{bottom:407.459996pt;}
.y243{bottom:410.245605pt;}
.y258{bottom:410.901465pt;}
.y306{bottom:413.097049pt;}
.y344{bottom:413.638021pt;}
.y38b{bottom:413.638051pt;}
.ycf{bottom:414.077718pt;}
.yf0{bottom:414.831729pt;}
.y17c{bottom:415.100382pt;}
.y1ec{bottom:415.767049pt;}
.y121{bottom:415.779849pt;}
.y287{bottom:415.792649pt;}
.y2cb{bottom:415.799049pt;}
.y151{bottom:415.811849pt;}
.y2eb{bottom:415.856649pt;}
.y1b0{bottom:416.116548pt;}
.y3c1{bottom:417.637980pt;}
.y3d{bottom:421.524536pt;}
.y6a{bottom:422.744548pt;}
.y99{bottom:423.453596pt;}
.y343{bottom:425.638021pt;}
.y38a{bottom:425.638051pt;}
.y3c0{bottom:429.637980pt;}
.yce{bottom:430.096918pt;}
.yef{bottom:430.825329pt;}
.y17b{bottom:431.202823pt;}
.y120{bottom:431.773449pt;}
.y286{bottom:431.786249pt;}
.y2ca{bottom:431.792649pt;}
.y150{bottom:431.805449pt;}
.y1eb{bottom:431.811849pt;}
.y2ea{bottom:431.850249pt;}
.y1af{bottom:432.110148pt;}
.y11{bottom:433.826667pt;}
.y305{bottom:437.097049pt;}
.y3c{bottom:437.524536pt;}
.y342{bottom:437.638021pt;}
.y389{bottom:437.638051pt;}
.y69{bottom:438.763748pt;}
.y98{bottom:439.447196pt;}
.y3bf{bottom:441.637980pt;}
.y7{bottom:442.406667pt;}
.ycd{bottom:446.090518pt;}
.yee{bottom:446.818929pt;}
.y17a{bottom:447.196423pt;}
.y11f{bottom:447.767049pt;}
.y285{bottom:447.779849pt;}
.y2c9{bottom:447.786249pt;}
.y14f{bottom:447.799049pt;}
.y1ea{bottom:447.805449pt;}
.y2e9{bottom:447.843849pt;}
.y1ae{bottom:448.129348pt;}
.y304{bottom:449.097049pt;}
.y341{bottom:449.638021pt;}
.y388{bottom:449.638051pt;}
.y232{bottom:451.613078pt;}
.y3b{bottom:453.524536pt;}
.y68{bottom:454.757348pt;}
.y97{bottom:455.440796pt;}
.y270{bottom:456.076660pt;}
.y303{bottom:461.097049pt;}
.y340{bottom:461.638021pt;}
.y387{bottom:461.638051pt;}
.ycc{bottom:462.084118pt;}
.yed{bottom:462.812529pt;}
.y179{bottom:463.190023pt;}
.y1da{bottom:463.773449pt;}
.y2c8{bottom:463.779849pt;}
.y14e{bottom:463.792649pt;}
.y1e9{bottom:463.799049pt;}
.y11e{bottom:463.818249pt;}
.y2e8{bottom:463.837449pt;}
.y1ad{bottom:464.122948pt;}
.y231{bottom:464.946411pt;}
.y26f{bottom:469.409993pt;}
.y3a{bottom:469.524536pt;}
.y67{bottom:470.750948pt;}
.y96{bottom:471.453596pt;}
.y33f{bottom:473.638021pt;}
.y386{bottom:473.638051pt;}
.y23a{bottom:477.102010pt;}
.ycb{bottom:478.077718pt;}
.y230{bottom:478.279744pt;}
.y12{bottom:478.426667pt;}
.yec{bottom:478.806129pt;}
.y178{bottom:479.183623pt;}
.y1d9{bottom:479.767049pt;}
.y2c7{bottom:479.773449pt;}
.y14d{bottom:479.786249pt;}
.y1e8{bottom:479.792649pt;}
.y11d{bottom:479.811849pt;}
.y2e7{bottom:479.831049pt;}
.y1ac{bottom:480.116548pt;}
.y26e{bottom:482.743327pt;}
.y302{bottom:485.097049pt;}
.y39{bottom:485.524536pt;}
.y33e{bottom:485.638021pt;}
.y385{bottom:485.638051pt;}
.y66{bottom:486.744548pt;}
.y95{bottom:487.447196pt;}
.y6{bottom:487.748000pt;}
.y239{bottom:490.435343pt;}
.y22f{bottom:491.613078pt;}
.yca{bottom:494.077718pt;}
.yeb{bottom:494.799729pt;}
.y177{bottom:495.177223pt;}
.y1d8{bottom:495.767049pt;}
.y14c{bottom:495.779849pt;}
.y1e7{bottom:495.786249pt;}
.y2ad{bottom:495.799049pt;}
.y11c{bottom:495.805449pt;}
.y2e6{bottom:495.824649pt;}
.y284{bottom:495.831049pt;}
.y26d{bottom:496.076660pt;}
.y1ab{bottom:496.110148pt;}
.y301{bottom:497.097049pt;}
.y33d{bottom:497.638021pt;}
.y384{bottom:497.638051pt;}
.y65{bottom:502.789348pt;}
.y94{bottom:503.440796pt;}
.y238{bottom:503.768677pt;}
.y22e{bottom:504.946411pt;}
.y38{bottom:505.524536pt;}
.y300{bottom:509.097049pt;}
.y33c{bottom:509.638021pt;}
.y383{bottom:509.638051pt;}
.yea{bottom:510.793329pt;}
.y176{bottom:511.170823pt;}
.y2c6{bottom:511.767049pt;}
.y14b{bottom:511.773449pt;}
.y1e6{bottom:511.779849pt;}
.y2ac{bottom:511.792649pt;}
.y11b{bottom:511.799049pt;}
.y2e5{bottom:511.818249pt;}
.y283{bottom:511.824649pt;}
.y1aa{bottom:512.116548pt;}
.y237{bottom:517.102010pt;}
.y22d{bottom:518.279744pt;}
.y64{bottom:518.782948pt;}
.y93{bottom:519.453596pt;}
.y2ff{bottom:521.097049pt;}
.y37{bottom:521.524536pt;}
.y33b{bottom:521.638021pt;}
.y382{bottom:521.638051pt;}
.y1b{bottom:524.093333pt;}
.yc9{bottom:526.103318pt;}
.ye9{bottom:526.786929pt;}
.y175{bottom:527.164423pt;}
.y14a{bottom:527.767049pt;}
.y1e5{bottom:527.773449pt;}
.y2ab{bottom:527.786249pt;}
.y11a{bottom:527.792649pt;}
.y2e4{bottom:527.811849pt;}
.y282{bottom:527.818249pt;}
.y1a9{bottom:528.110148pt;}
.y236{bottom:530.435343pt;}
.y22c{bottom:531.613078pt;}
.y5{bottom:533.089333pt;}
.y2fe{bottom:533.097049pt;}
.y33a{bottom:533.638021pt;}
.y381{bottom:533.638051pt;}
.y63{bottom:534.776548pt;}
.y92{bottom:535.447196pt;}
.y36{bottom:537.524536pt;}
.yc8{bottom:542.096918pt;}
.ye8{bottom:542.780529pt;}
.y174{bottom:543.158023pt;}
.y149{bottom:543.767049pt;}
.y235{bottom:543.768677pt;}
.y1d7{bottom:543.773449pt;}
.y1e4{bottom:543.779849pt;}
.y119{bottom:543.786249pt;}
.y2e3{bottom:543.805449pt;}
.y281{bottom:543.811849pt;}
.y1a8{bottom:544.110148pt;}
.y22b{bottom:544.946411pt;}
.y339{bottom:545.638021pt;}
.y380{bottom:545.638051pt;}
.y62{bottom:550.770148pt;}
.y91{bottom:551.440796pt;}
.y35{bottom:553.524536pt;}
.y2fd{bottom:557.097049pt;}
.y234{bottom:557.102010pt;}
.y338{bottom:557.638021pt;}
.y37f{bottom:557.638051pt;}
.yc7{bottom:558.090518pt;}
.y22a{bottom:558.279744pt;}
.ye7{bottom:558.774129pt;}
.y173{bottom:559.151623pt;}
.y1d6{bottom:559.767049pt;}
.y1e3{bottom:559.773449pt;}
.y118{bottom:559.779849pt;}
.y2e2{bottom:559.799049pt;}
.y280{bottom:559.805449pt;}
.y1a7{bottom:560.122948pt;}
.ye{bottom:561.706667pt;}
.y61{bottom:566.763748pt;}
.y90{bottom:567.447196pt;}
.y2fc{bottom:569.097049pt;}
.y34{bottom:569.524536pt;}
.y337{bottom:569.638021pt;}
.y37e{bottom:569.638051pt;}
.y233{bottom:570.435343pt;}
.y229{bottom:571.613078pt;}
.yc6{bottom:574.084118pt;}
.ye6{bottom:574.786929pt;}
.y172{bottom:575.145223pt;}
.y1d5{bottom:575.767049pt;}
.y117{bottom:575.773449pt;}
.y2e1{bottom:575.792649pt;}
.y27f{bottom:575.799049pt;}
.y148{bottom:575.818290pt;}
.y1a6{bottom:576.116548pt;}
.y2fb{bottom:581.097049pt;}
.y336{bottom:581.638021pt;}
.y37d{bottom:581.638051pt;}
.y60{bottom:582.757348pt;}
.y8f{bottom:583.440796pt;}
.y33{bottom:585.524536pt;}
.yc5{bottom:590.077718pt;}
.ye5{bottom:590.780529pt;}
.y171{bottom:591.138823pt;}
.y1d4{bottom:591.767049pt;}
.y2e0{bottom:591.786249pt;}
.y27e{bottom:591.792649pt;}
.y116{bottom:591.799049pt;}
.y2aa{bottom:591.805490pt;}
.y147{bottom:591.811890pt;}
.y1a5{bottom:592.110148pt;}
.y335{bottom:593.638021pt;}
.y37c{bottom:593.638051pt;}
.y5f{bottom:598.750948pt;}
.y8e{bottom:599.485637pt;}
.y32{bottom:601.524536pt;}
.y334{bottom:605.638021pt;}
.y37b{bottom:605.638051pt;}
.yc4{bottom:606.077718pt;}
.ye4{bottom:606.774129pt;}
.y170{bottom:607.132423pt;}
.y2c5{bottom:607.767049pt;}
.y2df{bottom:607.779849pt;}
.y27d{bottom:607.786249pt;}
.y115{bottom:607.792649pt;}
.y2a9{bottom:607.799090pt;}
.y146{bottom:607.805490pt;}
.y1a4{bottom:608.116548pt;}
.y5e{bottom:614.744548pt;}
.y8d{bottom:615.479237pt;}
.y2fa{bottom:615.767049pt;}
.y31{bottom:617.524536pt;}
.y333{bottom:617.638021pt;}
.y37a{bottom:617.638051pt;}
.yc3{bottom:622.103318pt;}
.ye3{bottom:622.780529pt;}
.y16f{bottom:623.126023pt;}
.y1d3{bottom:623.773449pt;}
.y27c{bottom:623.779849pt;}
.y114{bottom:623.786249pt;}
.y2a8{bottom:623.792690pt;}
.y145{bottom:623.799090pt;}
.y2c4{bottom:623.843890pt;}
.y1a3{bottom:624.110148pt;}
.y332{bottom:629.638021pt;}
.y379{bottom:629.638051pt;}
.y5d{bottom:630.783029pt;}
.y8c{bottom:631.472837pt;}
.y30{bottom:633.524536pt;}
.yc2{bottom:638.096918pt;}
.ye2{bottom:638.780529pt;}
.y16e{bottom:639.119623pt;}
.y1d2{bottom:639.767049pt;}
.y27b{bottom:639.773449pt;}
.y113{bottom:639.779849pt;}
.y2a7{bottom:639.786290pt;}
.y144{bottom:639.792690pt;}
.y2c3{bottom:639.837490pt;}
.y1a2{bottom:640.212507pt;}
.y331{bottom:641.638021pt;}
.y378{bottom:641.638051pt;}
.y2f9{bottom:643.767049pt;}
.y5c{bottom:646.776629pt;}
.y8b{bottom:647.466437pt;}
.y2f{bottom:649.524536pt;}
.y330{bottom:653.638021pt;}
.y377{bottom:653.638051pt;}
.yc1{bottom:654.090518pt;}
.ye1{bottom:654.774129pt;}
.y16d{bottom:655.113223pt;}
.y1d1{bottom:655.767049pt;}
.y112{bottom:655.773449pt;}
.y2a6{bottom:655.779890pt;}
.y143{bottom:655.786290pt;}
.y2c2{bottom:655.831090pt;}
.y1a1{bottom:656.206107pt;}
.y5b{bottom:662.770229pt;}
.y8a{bottom:663.460037pt;}
.y32f{bottom:665.638021pt;}
.y376{bottom:665.638051pt;}
.y2e{bottom:669.524536pt;}
.yc0{bottom:670.084118pt;}
.ye0{bottom:670.780570pt;}
.y16c{bottom:671.106823pt;}
.y111{bottom:671.767049pt;}
.y2a5{bottom:671.773490pt;}
.y142{bottom:671.779890pt;}
.y2c1{bottom:671.824690pt;}
.y1d0{bottom:671.856690pt;}
.y1a0{bottom:672.199707pt;}
.y32e{bottom:677.638021pt;}
.y375{bottom:677.638051pt;}
.y5a{bottom:678.763829pt;}
.y89{bottom:679.453637pt;}
.ybf{bottom:686.077718pt;}
.ydf{bottom:686.774170pt;}
.y16b{bottom:687.100423pt;}
.y110{bottom:687.767090pt;}
.y141{bottom:687.773490pt;}
.y2c0{bottom:687.818290pt;}
.y1cf{bottom:687.850290pt;}
.y19f{bottom:688.193307pt;}
.y32d{bottom:689.638021pt;}
.y374{bottom:689.638051pt;}
.y4{bottom:691.756000pt;}
.y59{bottom:694.757429pt;}
.y88{bottom:695.447237pt;}
.y32c{bottom:701.638021pt;}
.y373{bottom:701.638051pt;}
.ybe{bottom:702.103481pt;}
.yde{bottom:702.786970pt;}
.y16a{bottom:703.106823pt;}
.y10f{bottom:703.767090pt;}
.y2a4{bottom:703.786290pt;}
.y2bf{bottom:703.811890pt;}
.y1ce{bottom:703.843890pt;}
.y19e{bottom:704.186907pt;}
.y58{bottom:710.751029pt;}
.y87{bottom:711.440837pt;}
.y32b{bottom:713.638021pt;}
.y372{bottom:713.638051pt;}
.ybd{bottom:718.097081pt;}
.ydd{bottom:718.780570pt;}
.y169{bottom:719.100423pt;}
.y140{bottom:719.773490pt;}
.y2a3{bottom:719.779890pt;}
.y2de{bottom:719.786290pt;}
.y2be{bottom:719.805490pt;}
.y1cd{bottom:719.837490pt;}
.y19d{bottom:720.180507pt;}
.y13{bottom:725.040000pt;}
.y32a{bottom:725.638021pt;}
.y371{bottom:725.638051pt;}
.y57{bottom:726.744629pt;}
.y86{bottom:727.460037pt;}
.y2d{bottom:733.824544pt;}
.ybc{bottom:734.090681pt;}
.ydc{bottom:734.774170pt;}
.y168{bottom:735.100423pt;}
.y13f{bottom:735.767090pt;}
.y2a2{bottom:735.773490pt;}
.y2dd{bottom:735.779890pt;}
.y2bd{bottom:735.799090pt;}
.y10e{bottom:735.818290pt;}
.y1cc{bottom:735.831090pt;}
.y19c{bottom:736.174107pt;}
.y329{bottom:737.638021pt;}
.y370{bottom:737.638051pt;}
.y56{bottom:742.783029pt;}
.y85{bottom:743.453637pt;}
.y328{bottom:749.638021pt;}
.y36f{bottom:749.638051pt;}
.ybb{bottom:750.084281pt;}
.ydb{bottom:750.786807pt;}
.y13e{bottom:751.767090pt;}
.y2dc{bottom:751.773490pt;}
.y1e2{bottom:751.779890pt;}
.y2bc{bottom:751.792690pt;}
.y10d{bottom:751.811890pt;}
.y1cb{bottom:751.824690pt;}
.y27a{bottom:751.837490pt;}
.y19b{bottom:752.167707pt;}
.y55{bottom:758.776629pt;}
.y84{bottom:759.447237pt;}
.y327{bottom:761.638021pt;}
.y36e{bottom:761.638051pt;}
.y2c{bottom:765.857358pt;}
.yba{bottom:766.077881pt;}
.yda{bottom:766.780407pt;}
.y13d{bottom:767.767090pt;}
.y1e1{bottom:767.773490pt;}
.y2bb{bottom:767.786290pt;}
.y10c{bottom:767.805490pt;}
.y1ca{bottom:767.818290pt;}
.y279{bottom:767.831090pt;}
.y19a{bottom:768.161307pt;}
.y326{bottom:773.638021pt;}
.y36d{bottom:773.638051pt;}
.y54{bottom:774.770229pt;}
.y83{bottom:775.440837pt;}
.yb9{bottom:782.122681pt;}
.yd9{bottom:782.774007pt;}
.y1e0{bottom:783.767090pt;}
.y2ba{bottom:783.779890pt;}
.y167{bottom:783.786290pt;}
.y10b{bottom:783.799090pt;}
.y1c9{bottom:783.811890pt;}
.y278{bottom:783.824690pt;}
.y2a1{bottom:783.837736pt;}
.y199{bottom:784.154907pt;}
.y325{bottom:785.638021pt;}
.y36c{bottom:785.638051pt;}
.y53{bottom:790.763829pt;}
.y82{bottom:791.447237pt;}
.y324{bottom:797.638021pt;}
.y36b{bottom:797.638051pt;}
.yb8{bottom:798.116281pt;}
.yd8{bottom:798.780407pt;}
.y1df{bottom:799.771357pt;}
.y2b9{bottom:799.773490pt;}
.y13c{bottom:799.779890pt;}
.y10a{bottom:799.792690pt;}
.y1c8{bottom:799.805490pt;}
.y277{bottom:799.818290pt;}
.y2a0{bottom:799.831336pt;}
.y198{bottom:800.148507pt;}
.y2b{bottom:800.513358pt;}
.y3{bottom:805.081333pt;}
.y52{bottom:806.757429pt;}
.y81{bottom:807.440837pt;}
.y323{bottom:809.638021pt;}
.y36a{bottom:809.638051pt;}
.yb7{bottom:814.109881pt;}
.yd7{bottom:814.774007pt;}
.y1de{bottom:815.767090pt;}
.y13b{bottom:815.773490pt;}
.y109{bottom:815.786290pt;}
.y1c7{bottom:815.799090pt;}
.y276{bottom:815.811890pt;}
.y29f{bottom:815.824936pt;}
.y197{bottom:816.142107pt;}
.y322{bottom:821.638021pt;}
.y369{bottom:821.638051pt;}
.y51{bottom:822.751029pt;}
.y80{bottom:823.456150pt;}
.yb6{bottom:830.103481pt;}
.yd6{bottom:830.786807pt;}
.y166{bottom:831.767090pt;}
.y108{bottom:831.779890pt;}
.y1c6{bottom:831.792690pt;}
.y275{bottom:831.805490pt;}
.y29e{bottom:831.818536pt;}
.y196{bottom:832.135707pt;}
.y321{bottom:833.638021pt;}
.y368{bottom:833.638051pt;}
.y2a{bottom:835.169358pt;}
.y50{bottom:838.744629pt;}
.y7f{bottom:839.449750pt;}
.y320{bottom:845.638021pt;}
.y367{bottom:845.638051pt;}
.yb5{bottom:846.097081pt;}
.yd5{bottom:846.780407pt;}
.y107{bottom:847.773490pt;}
.y1c5{bottom:847.786290pt;}
.y165{bottom:847.792690pt;}
.y274{bottom:847.799090pt;}
.y29d{bottom:847.812136pt;}
.y195{bottom:848.129307pt;}
.y4f{bottom:854.744629pt;}
.y7e{bottom:855.443350pt;}
.y2{bottom:857.092000pt;}
.y31f{bottom:857.638021pt;}
.y366{bottom:857.638051pt;}
.yb4{bottom:862.090681pt;}
.yd4{bottom:862.774007pt;}
.y1dd{bottom:863.767090pt;}
.y13a{bottom:863.773490pt;}
.y106{bottom:863.779890pt;}
.y164{bottom:863.786290pt;}
.y273{bottom:863.792690pt;}
.y29c{bottom:863.805736pt;}
.y194{bottom:864.122907pt;}
.y31e{bottom:869.638021pt;}
.y365{bottom:869.638051pt;}
.y29{bottom:869.825358pt;}
.yb3{bottom:878.084281pt;}
.yd3{bottom:878.780407pt;}
.y1{bottom:879.748000pt;}
.y139{bottom:879.767090pt;}
.y105{bottom:879.773490pt;}
.y163{bottom:879.779890pt;}
.y1dc{bottom:879.780136pt;}
.y272{bottom:879.786290pt;}
.y29b{bottom:879.799336pt;}
.y193{bottom:880.116507pt;}
.y31d{bottom:881.638021pt;}
.y364{bottom:881.638051pt;}
.y31c{bottom:893.638021pt;}
.y363{bottom:893.638051pt;}
.yb2{bottom:894.077881pt;}
.yd2{bottom:894.774007pt;}
.y104{bottom:895.767090pt;}
.y162{bottom:895.773490pt;}
.y138{bottom:895.773736pt;}
.y271{bottom:895.779890pt;}
.y29a{bottom:895.792936pt;}
.y192{bottom:896.110107pt;}
.y4e{bottom:900.377848pt;}
.y31b{bottom:905.638021pt;}
.y362{bottom:905.638051pt;}
.yb1{bottom:910.077881pt;}
.yd1{bottom:910.780912pt;}
.y161{bottom:911.767090pt;}
.y137{bottom:911.767336pt;}
.y103{bottom:911.773490pt;}
.y299{bottom:911.786536pt;}
.y2db{bottom:911.792936pt;}
.y191{bottom:912.110107pt;}
.y4d{bottom:916.377848pt;}
.y31a{bottom:917.638021pt;}
.y361{bottom:917.638051pt;}
.y1e{bottom:918.544515pt;}
.y26{bottom:920.666829pt;}
.yb0{bottom:926.077881pt;}
.yd0{bottom:926.774512pt;}
.y136{bottom:927.760936pt;}
.y102{bottom:927.767090pt;}
.y298{bottom:927.780136pt;}
.y2da{bottom:927.786536pt;}
.y190{bottom:928.110107pt;}
.y319{bottom:929.638021pt;}
.y360{bottom:929.638051pt;}
.y1d{bottom:988.708515pt;}
.y27{bottom:990.090658pt;}
.yad{bottom:1001.355225pt;}
.y4b{bottom:1001.355306pt;}
.yaf{bottom:1001.561768pt;}
.y1c{bottom:1001.711182pt;}
.yae{bottom:1002.044515pt;}
.y4c{bottom:1002.048639pt;}
.h30{height:9.458097pt;}
.h10{height:21.249333pt;}
.h2a{height:24.480000pt;}
.h17{height:24.724000pt;}
.h2e{height:25.221780pt;}
.h28{height:26.656000pt;}
.h2c{height:26.954667pt;}
.h2d{height:27.132000pt;}
.h29{height:28.560000pt;}
.h4{height:29.333333pt;}
.h2b{height:31.584000pt;}
.hf{height:32.965333pt;}
.h18{height:35.320000pt;}
.h1e{height:35.541333pt;}
.h27{height:35.644531pt;}
.he{height:36.922667pt;}
.h20{height:37.674667pt;}
.h26{height:38.080000pt;}
.h24{height:38.920000pt;}
.hc{height:40.618667pt;}
.h19{height:40.661333pt;}
.h25{height:40.724000pt;}
.h1f{height:41.514667pt;}
.hb{height:41.984000pt;}
.h23{height:42.197333pt;}
.h16{height:47.093333pt;}
.h1d{height:47.472000pt;}
.h1b{height:47.741866pt;}
.h1a{height:49.653333pt;}
.h15{height:51.893333pt;}
.h3{height:51.916667pt;}
.h21{height:53.783467pt;}
.h1c{height:53.834667pt;}
.h14{height:54.329067pt;}
.h22{height:55.612870pt;}
.h11{height:57.273195pt;}
.h2{height:59.333333pt;}
.h13{height:59.728337pt;}
.h5{height:60.213542pt;}
.hd{height:68.570667pt;}
.h7{height:102.413333pt;}
.h12{height:121.856000pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h2f{height:181.461324pt;}
.h9{height:1054.488000pt;}
.ha{height:1054.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:171.509338pt;}
.w8{width:267.706667pt;}
.wb{width:306.455994pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x21{left:11.374268pt;}
.xa{left:75.496002pt;}
.xb{left:82.430532pt;}
.xf{left:84.162669pt;}
.x11{left:85.227467pt;}
.x12{left:86.252935pt;}
.x19{left:102.923869pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x23{left:124.044800pt;}
.x25{left:125.070801pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xc{left:240.726664pt;}
.x13{left:406.307869pt;}
.x20{left:411.653320pt;}
.x16{left:414.632528pt;}
.x14{left:416.970269pt;}
.x1f{left:423.027588pt;}
.x1e{left:423.945475pt;}
.x1a{left:429.804118pt;}
.x18{left:433.639194pt;}
.x1b{left:435.898785pt;}
.x1c{left:438.314657pt;}
.x22{left:535.698120pt;}
.x24{left:536.724121pt;}
.xe{left:547.508016pt;}
.x1d{left:587.513184pt;}
.xd{left:617.715454pt;}
.x17{left:658.727458pt;}
.x10{left:664.199341pt;}
.x15{left:671.985184pt;}
}




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