
    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_3a9a2beb4371114b43ab1d78.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_61b22451f30eacc262fab643.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_96bb829dec7798b1d1771056.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_7f2496caa099002d22094f3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_6c46581feb7fbfb41c67296d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7194f8d3d996884da3e20fa1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113281;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_ea500a34e406656e97d3658a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_9fe6e962e5c7767c0845eb3c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bc3eb42d95ee810cf507a4a1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900391;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_4371151d7751a20ecc0f97af.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_b37a5b3f762b0c3f87ccc876.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940918;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_7497b72180cca4f5700c44ba.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740234;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_d0d353bd43d2971058a8e4b2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.239258;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;}
.m8{transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.235425,0.000000,-0.063090,0.241908,0,0);-ms-transform:matrix(0.235425,0.000000,-0.063090,0.241908,0,0);-webkit-transform:matrix(0.235425,0.000000,-0.063090,0.241908,0,0);}
.m6{transform:matrix(0.237463,0.000000,-0.063633,0.241766,0,0);-ms-transform:matrix(0.237463,0.000000,-0.063633,0.241766,0,0);-webkit-transform:matrix(0.237463,0.000000,-0.063633,0.241766,0,0);}
.me{transform:matrix(0.238976,0.000000,-0.064040,0.241659,0,0);-ms-transform:matrix(0.238976,0.000000,-0.064040,0.241659,0,0);-webkit-transform:matrix(0.238976,0.000000,-0.064040,0.241659,0,0);}
.m2{transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);}
.m12{transform:matrix(0.241750,0.000000,-0.064784,0.241460,0,0);-ms-transform:matrix(0.241750,0.000000,-0.064784,0.241460,0,0);-webkit-transform:matrix(0.241750,0.000000,-0.064784,0.241460,0,0);}
.mb{transform:matrix(0.243011,0.000000,-0.065121,0.241369,0,0);-ms-transform:matrix(0.243011,0.000000,-0.065121,0.241369,0,0);-webkit-transform:matrix(0.243011,0.000000,-0.065121,0.241369,0,0);}
.m16{transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-57.600000px;}
.va{vertical-align:-42.000000px;}
.v9{vertical-align:-38.400000px;}
.v8{vertical-align:-35.400000px;}
.v1{vertical-align:-18.000000px;}
.v3{vertical-align:-6.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v4{vertical-align:28.200000px;}
.v5{vertical-align:30.000000px;}
.v7{vertical-align:47.400000px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.048000px;}
.lse{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.168000px;}
.ls8{letter-spacing:0.192000px;}
.ls1e{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.230400px;}
.lsc{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.393600px;}
.ls26{letter-spacing:0.398400px;}
.lsb{letter-spacing:0.408000px;}
.ls16{letter-spacing:0.412800px;}
.ls12{letter-spacing:0.432000px;}
.ls25{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.600000px;}
.ls32{letter-spacing:1.152000px;}
.ls2{letter-spacing:1.200000px;}
.lsd{letter-spacing:1.800000px;}
.lsf{letter-spacing:2.400000px;}
.ls9{letter-spacing:2.952000px;}
.ls33{letter-spacing:2.995200px;}
.ls14{letter-spacing:3.000000px;}
.ls2b{letter-spacing:4.200000px;}
.ls30{letter-spacing:4.771200px;}
.ls2f{letter-spacing:4.800000px;}
.ls31{letter-spacing:4.819200px;}
.ls27{letter-spacing:5.400000px;}
.ls28{letter-spacing:6.000000px;}
.ls5{letter-spacing:6.600000px;}
.ls4{letter-spacing:6.624000px;}
.ls15{letter-spacing:7.200000px;}
.ls7{letter-spacing:7.224000px;}
.ls38{letter-spacing:8.352000px;}
.ls24{letter-spacing:8.400000px;}
.ls23{letter-spacing:9.000000px;}
.ls2a{letter-spacing:9.600000px;}
.ls35{letter-spacing:10.200000px;}
.ls42{letter-spacing:10.800000px;}
.ls43{letter-spacing:11.400000px;}
.ls1a{letter-spacing:12.600000px;}
.ls10{letter-spacing:12.900000px;}
.ls34{letter-spacing:13.185600px;}
.ls19{letter-spacing:13.200000px;}
.ls3c{letter-spacing:15.000000px;}
.ls40{letter-spacing:15.600000px;}
.ls22{letter-spacing:16.200000px;}
.ls37{letter-spacing:16.800000px;}
.ls2e{letter-spacing:17.352000px;}
.ls3f{letter-spacing:18.000000px;}
.ls3a{letter-spacing:18.504000px;}
.ls6{letter-spacing:18.600000px;}
.ls3b{letter-spacing:20.400000px;}
.ls36{letter-spacing:24.000000px;}
.ls21{letter-spacing:25.800000px;}
.ls1c{letter-spacing:27.600000px;}
.ls1b{letter-spacing:28.200000px;}
.ls41{letter-spacing:32.400000px;}
.ls18{letter-spacing:33.000000px;}
.ls17{letter-spacing:33.600000px;}
.ls2d{letter-spacing:34.200000px;}
.ls2c{letter-spacing:34.800000px;}
.ls3d{letter-spacing:36.000000px;}
.ls3e{letter-spacing:36.580800px;}
.ls39{letter-spacing:37.200000px;}
.ls1d{letter-spacing:48.600000px;}
.ls13{letter-spacing:105.938400px;}
.ls11{letter-spacing:241.872000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-29.916000px;}
.ws29{word-spacing:-28.254000px;}
.ws4{word-spacing:-26.592000px;}
.ws6{word-spacing:-23.268000px;}
.ws10{word-spacing:-20.009006px;}
.wse{word-spacing:-19.350000px;}
.wsc{word-spacing:-18.634742px;}
.ws2{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws24{word-spacing:-16.586855px;}
.ws22{word-spacing:-16.050000px;}
.ws26{word-spacing:-15.000000px;}
.ws28{word-spacing:-14.630400px;}
.ws1b{word-spacing:-14.586687px;}
.ws27{word-spacing:-14.400000px;}
.ws19{word-spacing:-14.293443px;}
.ws1d{word-spacing:-14.100000px;}
.wsf{word-spacing:-13.800000px;}
.ws20{word-spacing:-13.350000px;}
.wsd{word-spacing:-10.500000px;}
.ws23{word-spacing:-9.450000px;}
.ws21{word-spacing:-7.800000px;}
.ws8{word-spacing:-0.084000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:6.504000px;}
.ws25{word-spacing:33.360000px;}
.ws5{word-spacing:44.634000px;}
.ws1a{word-spacing:77.196000px;}
.ws1c{word-spacing:79.044000px;}
.ws15{word-spacing:97.077600px;}
.ws18{word-spacing:97.699800px;}
.ws14{word-spacing:98.415600px;}
.ws9{word-spacing:148.824000px;}
.ws17{word-spacing:261.453600px;}
.ws11{word-spacing:310.905600px;}
.ws13{word-spacing:344.160000px;}
.ws12{word-spacing:365.697600px;}
.ws16{word-spacing:409.080000px;}
.wsa{word-spacing:461.700000px;}
.ws1e{word-spacing:517.827600px;}
.ws1f{word-spacing:550.243800px;}
.wsb{word-spacing:553.368000px;}
._80{margin-left:-2291.486400px;}
._7c{margin-left:-2180.920800px;}
._6c{margin-left:-2160.600000px;}
._75{margin-left:-860.433600px;}
._82{margin-left:-776.143200px;}
._3d{margin-left:-741.968400px;}
._46{margin-left:-671.464406px;}
._3f{margin-left:-496.466400px;}
._33{margin-left:-495.155400px;}
._36{margin-left:-479.556000px;}
._2b{margin-left:-442.632000px;}
._41{margin-left:-438.348600px;}
._42{margin-left:-372.372600px;}
._37{margin-left:-370.338000px;}
._6e{margin-left:-323.094000px;}
._5b{margin-left:-315.740319px;}
._3e{margin-left:-312.274800px;}
._57{margin-left:-308.538263px;}
._2f{margin-left:-306.442200px;}
._47{margin-left:-301.288482px;}
._45{margin-left:-288.060823px;}
._43{margin-left:-285.860400px;}
._34{margin-left:-280.372200px;}
._40{margin-left:-278.298600px;}
._54{margin-left:-269.657141px;}
._55{margin-left:-259.584000px;}
._4b{margin-left:-257.928000px;}
._77{margin-left:-249.854400px;}
._7a{margin-left:-248.524800px;}
._2d{margin-left:-246.798524px;}
._24{margin-left:-244.776000px;}
._2a{margin-left:-238.032000px;}
._4f{margin-left:-230.375105px;}
._4c{margin-left:-223.920000px;}
._4d{margin-left:-222.528000px;}
._32{margin-left:-220.360200px;}
._26{margin-left:-219.000000px;}
._44{margin-left:-203.766600px;}
._3c{margin-left:-200.036400px;}
._5c{margin-left:-198.807000px;}
._39{margin-left:-197.160000px;}
._3b{margin-left:-194.742000px;}
._2e{margin-left:-189.279287px;}
._5f{margin-left:-183.223200px;}
._35{margin-left:-182.070000px;}
._2c{margin-left:-180.576000px;}
._5a{margin-left:-178.696800px;}
._29{margin-left:-171.432000px;}
._62{margin-left:-170.406000px;}
._28{margin-left:-162.600000px;}
._4e{margin-left:-160.560000px;}
._63{margin-left:-157.236000px;}
._56{margin-left:-155.455487px;}
._60{margin-left:-153.910800px;}
._25{margin-left:-151.200000px;}
._4a{margin-left:-146.184000px;}
._5e{margin-left:-145.029600px;}
._31{margin-left:-140.538000px;}
._59{margin-left:-136.978800px;}
._61{margin-left:-129.295200px;}
._38{margin-left:-125.958000px;}
._53{margin-left:-114.839704px;}
._3a{margin-left:-95.184000px;}
._65{margin-left:-85.644000px;}
._30{margin-left:-83.678400px;}
._27{margin-left:-82.200000px;}
._58{margin-left:-75.927600px;}
._5d{margin-left:-74.649600px;}
._64{margin-left:-55.662600px;}
._7f{margin-left:-18.528000px;}
._73{margin-left:-17.498400px;}
._79{margin-left:-11.253600px;}
._23{margin-left:-9.504000px;}
._2{margin-left:-7.884000px;}
._3{margin-left:-5.940000px;}
._f{margin-left:-4.860000px;}
._4{margin-left:-3.672000px;}
._0{margin-left:-2.268000px;}
._5{margin-left:-1.260000px;}
._1{width:1.308000px;}
._8{width:2.760000px;}
._e{width:4.008000px;}
._6{width:5.040000px;}
._7{width:6.120000px;}
._9{width:7.224000px;}
._13{width:8.280000px;}
._12{width:9.288000px;}
._10{width:10.944000px;}
._11{width:12.228000px;}
._16{width:13.968000px;}
._15{width:15.264000px;}
._18{width:16.704000px;}
._14{width:19.116000px;}
._19{width:20.808000px;}
._b{width:21.888000px;}
._a{width:22.968000px;}
._66{width:24.048000px;}
._17{width:25.128000px;}
._1f{width:26.928000px;}
._67{width:28.152000px;}
._1c{width:29.352000px;}
._c{width:31.104000px;}
._d{width:32.508000px;}
._6b{width:34.128000px;}
._1e{width:35.544000px;}
._48{width:37.152000px;}
._20{width:38.232000px;}
._21{width:41.448000px;}
._1a{width:42.744000px;}
._71{width:45.160800px;}
._72{width:49.036800px;}
._70{width:54.000000px;}
._1b{width:56.124000px;}
._1d{width:70.992000px;}
._22{width:72.888000px;}
._69{width:108.684000px;}
._7e{width:123.664800px;}
._74{width:124.773600px;}
._68{width:143.580000px;}
._6a{width:144.684000px;}
._52{width:186.261600px;}
._7b{width:212.328000px;}
._78{width:213.552000px;}
._51{width:286.491600px;}
._6f{width:288.381600px;}
._50{width:297.183600px;}
._49{width:359.233200px;}
._83{width:739.728000px;}
._76{width:830.304000px;}
._6d{width:2124.954000px;}
._7d{width:2144.952000px;}
._81{width:2255.328000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs14{font-size:31.200000px;}
.fsd{font-size:32.400000px;}
.fs10{font-size:33.000000px;}
.fs17{font-size:37.800000px;}
.fs6{font-size:42.000000px;}
.fs13{font-size:53.400000px;}
.fs9{font-size:55.200000px;}
.fs15{font-size:55.288599px;}
.fsf{font-size:56.400000px;}
.fse{font-size:57.173772px;}
.fs1a{font-size:57.600000px;}
.fs11{font-size:58.346747px;}
.fs3{font-size:60.000000px;}
.fs16{font-size:64.200000px;}
.fs18{font-size:66.347420px;}
.fs19{font-size:70.200000px;}
.fs12{font-size:70.800000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:74.538968px;}
.fs8{font-size:77.400000px;}
.fsa{font-size:80.036025px;}
.fs5{font-size:84.000000px;}
.fsb{font-size:94.800000px;}
.fsc{font-size:95.400000px;}
.fs2{font-size:96.000000px;}
.fs4{font-size:102.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y231{bottom:3.600000px;}
.y23e{bottom:3.900000px;}
.y1d2{bottom:4.500000px;}
.y21a{bottom:5.250000px;}
.y222{bottom:6.300000px;}
.y1cb{bottom:6.900000px;}
.y1ca{bottom:7.050000px;}
.y235{bottom:7.200000px;}
.y1d4{bottom:7.500000px;}
.y1d3{bottom:7.650000px;}
.y23d{bottom:7.950000px;}
.y1c3{bottom:8.100000px;}
.y1c2{bottom:8.250000px;}
.y18c{bottom:8.850000px;}
.y17e{bottom:9.000000px;}
.y1d1{bottom:9.150000px;}
.y22f{bottom:12.150000px;}
.y18b{bottom:13.650000px;}
.y238{bottom:14.400000px;}
.y21d{bottom:16.050000px;}
.y1c5{bottom:16.200000px;}
.y1ce{bottom:16.500000px;}
.y225{bottom:17.550000px;}
.y233{bottom:17.700000px;}
.y22e{bottom:17.850000px;}
.y1c6{bottom:18.000000px;}
.y230{bottom:18.600000px;}
.y1cd{bottom:21.000000px;}
.y1c9{bottom:21.150000px;}
.y21e{bottom:21.900000px;}
.y1c4{bottom:22.500000px;}
.y234{bottom:23.250000px;}
.y226{bottom:24.750000px;}
.y21c{bottom:24.900000px;}
.y21b{bottom:25.350000px;}
.y237{bottom:26.100000px;}
.y224{bottom:26.550000px;}
.y236{bottom:26.700000px;}
.y232{bottom:27.300000px;}
.y223{bottom:28.200000px;}
.y1cc{bottom:33.000000px;}
.y1c1{bottom:33.900000px;}
.y1e{bottom:57.000000px;}
.ya2{bottom:99.750000px;}
.y174{bottom:102.900000px;}
.y327{bottom:104.400000px;}
.y27d{bottom:104.700000px;}
.y333{bottom:106.050000px;}
.y190{bottom:106.950000px;}
.y12a{bottom:107.100000px;}
.y1af{bottom:107.250000px;}
.y357{bottom:108.000000px;}
.y76{bottom:108.900000px;}
.y103{bottom:109.500000px;}
.y1f0{bottom:112.200000px;}
.y13e{bottom:112.650000px;}
.y277{bottom:112.950000px;}
.y214{bottom:114.150000px;}
.y2fe{bottom:114.300000px;}
.y382{bottom:114.900000px;}
.y2b5{bottom:116.100000px;}
.yba{bottom:117.450000px;}
.ye7{bottom:119.250000px;}
.ya1{bottom:120.450000px;}
.y38c{bottom:123.300000px;}
.y173{bottom:123.600000px;}
.y326{bottom:125.100000px;}
.y27c{bottom:125.400000px;}
.y129{bottom:127.800000px;}
.y1ae{bottom:127.950000px;}
.y356{bottom:128.700000px;}
.y18f{bottom:129.150000px;}
.y75{bottom:129.600000px;}
.y102{bottom:130.200000px;}
.y1c7{bottom:132.600000px;}
.y1c0{bottom:132.750000px;}
.y1ef{bottom:132.900000px;}
.y13d{bottom:133.350000px;}
.y276{bottom:133.650000px;}
.y2fd{bottom:135.000000px;}
.y381{bottom:135.600000px;}
.y213{bottom:136.350000px;}
.y2b4{bottom:136.800000px;}
.y310{bottom:137.700000px;}
.yb9{bottom:138.150000px;}
.ye6{bottom:139.950000px;}
.ya0{bottom:141.150000px;}
.y172{bottom:144.300000px;}
.y27b{bottom:146.100000px;}
.y128{bottom:148.500000px;}
.y1ad{bottom:148.650000px;}
.y355{bottom:149.400000px;}
.y74{bottom:150.300000px;}
.y101{bottom:150.900000px;}
.y18e{bottom:151.200000px;}
.y1ee{bottom:153.600000px;}
.y275{bottom:154.350000px;}
.y2fc{bottom:155.700000px;}
.y380{bottom:156.300000px;}
.y212{bottom:157.050000px;}
.y2b3{bottom:157.500000px;}
.y30f{bottom:158.400000px;}
.yb8{bottom:158.850000px;}
.y249{bottom:160.500000px;}
.ye5{bottom:160.650000px;}
.y9f{bottom:161.850000px;}
.y13c{bottom:163.650000px;}
.y393{bottom:165.300000px;}
.y325{bottom:166.500000px;}
.y27a{bottom:166.800000px;}
.y38e{bottom:167.850000px;}
.y127{bottom:169.200000px;}
.y1ac{bottom:169.350000px;}
.y354{bottom:170.100000px;}
.y73{bottom:171.000000px;}
.y100{bottom:171.600000px;}
.y18d{bottom:173.250000px;}
.y18a{bottom:173.550000px;}
.y274{bottom:175.050000px;}
.y37f{bottom:177.000000px;}
.y211{bottom:177.750000px;}
.y2b2{bottom:178.200000px;}
.y30e{bottom:179.100000px;}
.y248{bottom:181.200000px;}
.ye4{bottom:181.350000px;}
.y392{bottom:182.700000px;}
.y2df{bottom:184.800000px;}
.y171{bottom:185.700000px;}
.y394{bottom:186.000000px;}
.y279{bottom:187.500000px;}
.y126{bottom:189.900000px;}
.y1ab{bottom:190.050000px;}
.yff{bottom:192.300000px;}
.y2fb{bottom:193.050000px;}
.y1ed{bottom:195.000000px;}
.y273{bottom:195.750000px;}
.y388{bottom:197.700000px;}
.y210{bottom:198.450000px;}
.y30d{bottom:199.800000px;}
.y391{bottom:199.950000px;}
.yb7{bottom:200.250000px;}
.y247{bottom:201.900000px;}
.ye3{bottom:202.050000px;}
.y9e{bottom:203.250000px;}
.y2de{bottom:205.500000px;}
.y170{bottom:206.400000px;}
.y324{bottom:207.300000px;}
.y1bf{bottom:208.200000px;}
.y125{bottom:210.600000px;}
.y1aa{bottom:210.750000px;}
.y353{bottom:211.500000px;}
.y72{bottom:212.400000px;}
.yfe{bottom:213.000000px;}
.y1ec{bottom:215.700000px;}
.y2e7{bottom:216.300000px;}
.y272{bottom:216.450000px;}
.y37e{bottom:218.400000px;}
.y20f{bottom:219.150000px;}
.y2b1{bottom:219.600000px;}
.y30c{bottom:220.500000px;}
.yb6{bottom:220.950000px;}
.y31a{bottom:221.100000px;}
.y246{bottom:222.600000px;}
.ye2{bottom:222.750000px;}
.y9d{bottom:223.950000px;}
.y323{bottom:224.700000px;}
.y13b{bottom:225.900000px;}
.y16f{bottom:227.100000px;}
.yd{bottom:228.750000px;}
.y1be{bottom:228.900000px;}
.y124{bottom:231.300000px;}
.y1a9{bottom:231.450000px;}
.y71{bottom:233.100000px;}
.yfd{bottom:233.700000px;}
.y189{bottom:233.850000px;}
.y271{bottom:237.150000px;}
.y37d{bottom:239.100000px;}
.y20e{bottom:239.850000px;}
.y30b{bottom:241.200000px;}
.yb5{bottom:241.650000px;}
.y319{bottom:241.800000px;}
.y245{bottom:243.300000px;}
.ye1{bottom:243.450000px;}
.y9c{bottom:244.650000px;}
.y13a{bottom:246.600000px;}
.y2dd{bottom:246.900000px;}
.y16e{bottom:247.800000px;}
.y1bd{bottom:249.600000px;}
.y123{bottom:252.000000px;}
.y1a8{bottom:252.150000px;}
.y352{bottom:252.900000px;}
.y70{bottom:253.800000px;}
.yfc{bottom:254.400000px;}
.y188{bottom:254.550000px;}
.y1eb{bottom:257.100000px;}
.y270{bottom:257.850000px;}
.y37c{bottom:259.800000px;}
.y20d{bottom:260.550000px;}
.y2b0{bottom:261.000000px;}
.y30a{bottom:261.900000px;}
.yb4{bottom:262.350000px;}
.y318{bottom:262.500000px;}
.y244{bottom:264.000000px;}
.y9b{bottom:265.350000px;}
.y139{bottom:267.300000px;}
.y2dc{bottom:267.600000px;}
.y16d{bottom:268.500000px;}
.y1bc{bottom:270.300000px;}
.y122{bottom:272.700000px;}
.y6f{bottom:274.500000px;}
.yfb{bottom:275.100000px;}
.y187{bottom:275.250000px;}
.y1ea{bottom:277.800000px;}
.y37b{bottom:280.500000px;}
.y20c{bottom:281.250000px;}
.y2af{bottom:281.700000px;}
.yb3{bottom:283.050000px;}
.y317{bottom:283.200000px;}
.y243{bottom:284.700000px;}
.ye0{bottom:284.850000px;}
.y2c2{bottom:285.450000px;}
.y9a{bottom:286.050000px;}
.y138{bottom:288.000000px;}
.y2db{bottom:288.300000px;}
.y16c{bottom:289.200000px;}
.y1bb{bottom:291.000000px;}
.y121{bottom:293.400000px;}
.y351{bottom:294.300000px;}
.y6e{bottom:295.200000px;}
.yfa{bottom:295.800000px;}
.y186{bottom:295.950000px;}
.y1e9{bottom:298.500000px;}
.y26f{bottom:299.250000px;}
.y37a{bottom:301.200000px;}
.y20b{bottom:301.950000px;}
.y2ae{bottom:302.400000px;}
.y1a7{bottom:303.150000px;}
.y309{bottom:303.300000px;}
.yb2{bottom:303.750000px;}
.y316{bottom:303.900000px;}
.y242{bottom:305.400000px;}
.ydf{bottom:305.550000px;}
.y2c1{bottom:306.150000px;}
.y2f4{bottom:306.450000px;}
.y99{bottom:306.750000px;}
.y137{bottom:308.700000px;}
.y2da{bottom:309.000000px;}
.y16b{bottom:309.900000px;}
.y1ba{bottom:311.700000px;}
.y120{bottom:314.100000px;}
.y6d{bottom:315.900000px;}
.yf9{bottom:316.500000px;}
.y185{bottom:316.650000px;}
.y1e8{bottom:319.200000px;}
.y26e{bottom:319.950000px;}
.y379{bottom:321.900000px;}
.y20a{bottom:322.650000px;}
.y28b{bottom:323.550000px;}
.y308{bottom:324.000000px;}
.yb1{bottom:324.450000px;}
.y315{bottom:324.600000px;}
.y241{bottom:326.100000px;}
.yde{bottom:326.250000px;}
.y2c0{bottom:326.850000px;}
.y2b7{bottom:327.150000px;}
.y136{bottom:329.400000px;}
.y2d9{bottom:329.700000px;}
.y16a{bottom:330.600000px;}
.y1b9{bottom:332.400000px;}
.y11f{bottom:334.800000px;}
.y350{bottom:335.700000px;}
.y6c{bottom:336.600000px;}
.yf8{bottom:337.200000px;}
.y1e7{bottom:339.900000px;}
.y26d{bottom:340.650000px;}
.y378{bottom:342.600000px;}
.y209{bottom:343.350000px;}
.y2ad{bottom:343.800000px;}
.y2b6{bottom:344.400000px;}
.y307{bottom:344.700000px;}
.yb0{bottom:345.150000px;}
.y314{bottom:345.300000px;}
.y240{bottom:346.800000px;}
.ydd{bottom:346.950000px;}
.y2bf{bottom:347.550000px;}
.y2f3{bottom:347.850000px;}
.y98{bottom:348.150000px;}
.y135{bottom:350.100000px;}
.y2d8{bottom:350.400000px;}
.y169{bottom:351.300000px;}
.y1b8{bottom:353.100000px;}
.y11e{bottom:355.500000px;}
.y6b{bottom:357.300000px;}
.yf7{bottom:357.900000px;}
.y184{bottom:358.050000px;}
.y1e6{bottom:360.600000px;}
.y26c{bottom:361.350000px;}
.y387{bottom:363.300000px;}
.y208{bottom:364.050000px;}
.y2ac{bottom:364.500000px;}
.y306{bottom:365.400000px;}
.y313{bottom:366.000000px;}
.ydc{bottom:367.650000px;}
.y150{bottom:368.250000px;}
.y2f2{bottom:368.550000px;}
.y97{bottom:368.850000px;}
.y134{bottom:370.800000px;}
.y168{bottom:372.000000px;}
.y1b7{bottom:373.800000px;}
.y11d{bottom:376.200000px;}
.y34f{bottom:377.100000px;}
.yf6{bottom:378.600000px;}
.y183{bottom:378.750000px;}
.y26b{bottom:382.050000px;}
.y377{bottom:384.000000px;}
.y207{bottom:384.750000px;}
.y2be{bottom:385.050000px;}
.y2ab{bottom:385.200000px;}
.y1a6{bottom:386.100000px;}
.yaf{bottom:386.550000px;}
.y23f{bottom:388.200000px;}
.ydb{bottom:388.350000px;}
.y23c{bottom:388.500000px;}
.y14f{bottom:388.950000px;}
.y2f1{bottom:389.250000px;}
.y96{bottom:389.550000px;}
.y2d7{bottom:391.800000px;}
.y1b6{bottom:394.500000px;}
.y11c{bottom:396.900000px;}
.y6a{bottom:398.700000px;}
.yf5{bottom:399.300000px;}
.y182{bottom:399.450000px;}
.y1e5{bottom:402.000000px;}
.y2bd{bottom:402.300000px;}
.y26a{bottom:402.750000px;}
.y376{bottom:404.700000px;}
.y206{bottom:405.450000px;}
.y2aa{bottom:405.900000px;}
.y1a5{bottom:406.800000px;}
.yae{bottom:407.250000px;}
.yda{bottom:409.050000px;}
.y332{bottom:409.200000px;}
.y14e{bottom:409.650000px;}
.y2f0{bottom:409.950000px;}
.y95{bottom:410.250000px;}
.y133{bottom:412.200000px;}
.y2d6{bottom:412.500000px;}
.y1b5{bottom:415.200000px;}
.y28a{bottom:416.100000px;}
.y11b{bottom:417.600000px;}
.y34e{bottom:418.500000px;}
.y69{bottom:419.400000px;}
.yf4{bottom:420.000000px;}
.y181{bottom:421.500000px;}
.y1e4{bottom:422.700000px;}
.y167{bottom:423.000000px;}
.y269{bottom:423.450000px;}
.y312{bottom:424.200000px;}
.y375{bottom:425.400000px;}
.y205{bottom:426.150000px;}
.y2a9{bottom:426.600000px;}
.yad{bottom:427.950000px;}
.y1a4{bottom:428.850000px;}
.yd9{bottom:429.750000px;}
.y331{bottom:429.900000px;}
.y14d{bottom:430.350000px;}
.y2ef{bottom:430.650000px;}
.y94{bottom:430.950000px;}
.y132{bottom:432.900000px;}
.y2d5{bottom:433.200000px;}
.y1b4{bottom:435.900000px;}
.y295{bottom:437.850000px;}
.y11a{bottom:438.300000px;}
.y68{bottom:440.100000px;}
.yf3{bottom:440.700000px;}
.y1e3{bottom:443.400000px;}
.y268{bottom:444.150000px;}
.y159{bottom:444.450000px;}
.y180{bottom:444.900000px;}
.y374{bottom:446.100000px;}
.y2a8{bottom:447.300000px;}
.y305{bottom:448.200000px;}
.yac{bottom:448.650000px;}
.yd8{bottom:450.450000px;}
.y330{bottom:450.600000px;}
.y14c{bottom:451.050000px;}
.y2ee{bottom:451.350000px;}
.y93{bottom:451.650000px;}
.y131{bottom:453.600000px;}
.y278{bottom:456.600000px;}
.y294{bottom:458.550000px;}
.y119{bottom:459.000000px;}
.y34d{bottom:459.900000px;}
.y67{bottom:460.800000px;}
.yf2{bottom:461.400000px;}
.yc{bottom:462.000000px;}
.y1e2{bottom:464.100000px;}
.y48{bottom:464.550000px;}
.y267{bottom:464.850000px;}
.y158{bottom:465.150000px;}
.y373{bottom:466.800000px;}
.y204{bottom:467.550000px;}
.y2a7{bottom:468.000000px;}
.y304{bottom:468.900000px;}
.yab{bottom:469.350000px;}
.yd7{bottom:471.150000px;}
.y32f{bottom:471.300000px;}
.y14b{bottom:471.750000px;}
.y2ed{bottom:472.050000px;}
.y92{bottom:472.350000px;}
.y130{bottom:474.300000px;}
.y2d4{bottom:474.600000px;}
.y1b3{bottom:477.300000px;}
.y293{bottom:479.250000px;}
.y118{bottom:479.700000px;}
.y23b{bottom:481.050000px;}
.y66{bottom:481.500000px;}
.yf1{bottom:482.100000px;}
.yb{bottom:482.700000px;}
.y47{bottom:485.250000px;}
.y266{bottom:485.550000px;}
.y157{bottom:485.850000px;}
.y372{bottom:487.500000px;}
.y17f{bottom:487.800000px;}
.y17d{bottom:487.950000px;}
.y203{bottom:488.250000px;}
.y2a6{bottom:488.700000px;}
.y303{bottom:489.600000px;}
.yaa{bottom:490.050000px;}
.y32e{bottom:492.000000px;}
.y14a{bottom:492.450000px;}
.y2ec{bottom:492.750000px;}
.y91{bottom:493.050000px;}
.y12f{bottom:495.000000px;}
.y2d3{bottom:495.300000px;}
.y1b2{bottom:498.000000px;}
.y289{bottom:499.200000px;}
.y292{bottom:499.950000px;}
.y34c{bottom:501.300000px;}
.y23a{bottom:501.750000px;}
.y65{bottom:502.200000px;}
.ya{bottom:503.400000px;}
.y1e1{bottom:505.500000px;}
.y46{bottom:505.950000px;}
.y265{bottom:506.250000px;}
.y156{bottom:506.550000px;}
.y371{bottom:508.200000px;}
.y202{bottom:508.950000px;}
.y2a5{bottom:509.400000px;}
.y117{bottom:510.000000px;}
.y302{bottom:510.300000px;}
.ya9{bottom:510.750000px;}
.y105{bottom:512.400000px;}
.yd6{bottom:512.550000px;}
.y149{bottom:513.150000px;}
.y90{bottom:513.750000px;}
.y12e{bottom:515.700000px;}
.y1b1{bottom:518.700000px;}
.y288{bottom:519.900000px;}
.y291{bottom:520.650000px;}
.y34b{bottom:522.000000px;}
.y64{bottom:522.900000px;}
.yf0{bottom:523.500000px;}
.y9{bottom:524.100000px;}
.y1e0{bottom:526.200000px;}
.y45{bottom:526.650000px;}
.y264{bottom:526.950000px;}
.y155{bottom:527.250000px;}
.y370{bottom:528.900000px;}
.y201{bottom:529.650000px;}
.y2a4{bottom:530.100000px;}
.y2eb{bottom:530.700000px;}
.y301{bottom:531.000000px;}
.ya8{bottom:531.450000px;}
.yd5{bottom:533.250000px;}
.y32d{bottom:533.400000px;}
.y1a3{bottom:533.850000px;}
.y8f{bottom:534.450000px;}
.y2d2{bottom:536.700000px;}
.y17c{bottom:539.400000px;}
.y287{bottom:540.600000px;}
.y239{bottom:543.150000px;}
.y22d{bottom:543.450000px;}
.y63{bottom:543.600000px;}
.yef{bottom:544.200000px;}
.y12d{bottom:546.000000px;}
.y1df{bottom:546.900000px;}
.y44{bottom:547.350000px;}
.y154{bottom:547.950000px;}
.y36f{bottom:549.600000px;}
.y2a3{bottom:550.800000px;}
.y2ea{bottom:551.400000px;}
.y2fa{bottom:551.700000px;}
.ya7{bottom:552.150000px;}
.yd4{bottom:553.950000px;}
.y32c{bottom:554.100000px;}
.y148{bottom:554.550000px;}
.y8e{bottom:555.150000px;}
.y2d1{bottom:557.400000px;}
.y322{bottom:557.550000px;}
.y17b{bottom:560.100000px;}
.y286{bottom:561.300000px;}
.y34a{bottom:563.400000px;}
.y62{bottom:564.300000px;}
.yee{bottom:564.900000px;}
.y1de{bottom:567.600000px;}
.y43{bottom:568.050000px;}
.y263{bottom:568.350000px;}
.y153{bottom:568.650000px;}
.y36e{bottom:570.300000px;}
.y200{bottom:571.050000px;}
.y290{bottom:571.500000px;}
.y2e9{bottom:572.100000px;}
.y300{bottom:572.400000px;}
.y116{bottom:572.550000px;}
.yd3{bottom:574.650000px;}
.y32b{bottom:574.800000px;}
.y147{bottom:575.250000px;}
.y8d{bottom:575.850000px;}
.y2d0{bottom:578.100000px;}
.y321{bottom:578.250000px;}
.y1b0{bottom:580.800000px;}
.y285{bottom:582.000000px;}
.y349{bottom:584.100000px;}
.yed{bottom:585.600000px;}
.y1dd{bottom:588.300000px;}
.y42{bottom:588.750000px;}
.y262{bottom:589.050000px;}
.y152{bottom:589.350000px;}
.y36d{bottom:591.000000px;}
.y1ff{bottom:591.750000px;}
.y2a2{bottom:592.200000px;}
.y2f9{bottom:593.100000px;}
.y115{bottom:593.250000px;}
.yd2{bottom:595.350000px;}
.y32a{bottom:595.500000px;}
.y146{bottom:595.950000px;}
.y8c{bottom:596.550000px;}
.y2cf{bottom:598.800000px;}
.y17a{bottom:601.500000px;}
.ya6{bottom:603.150000px;}
.y348{bottom:604.800000px;}
.y61{bottom:605.700000px;}
.yec{bottom:606.300000px;}
.y1dc{bottom:609.000000px;}
.y41{bottom:609.450000px;}
.y2e8{bottom:609.600000px;}
.y261{bottom:609.750000px;}
.y151{bottom:610.050000px;}
.y22c{bottom:610.200000px;}
.y36c{bottom:611.700000px;}
.y2a1{bottom:612.900000px;}
.y2f8{bottom:613.800000px;}
.y114{bottom:613.950000px;}
.y2e6{bottom:614.550000px;}
.y320{bottom:615.750000px;}
.yd1{bottom:616.050000px;}
.y38b{bottom:616.500000px;}
.y145{bottom:616.650000px;}
.y12c{bottom:617.850000px;}
.y2ce{bottom:619.500000px;}
.y179{bottom:622.200000px;}
.y347{bottom:625.500000px;}
.y60{bottom:626.400000px;}
.y8b{bottom:626.850000px;}
.yeb{bottom:627.000000px;}
.y1db{bottom:629.700000px;}
.y40{bottom:630.150000px;}
.y260{bottom:630.450000px;}
.y22b{bottom:630.900000px;}
.y36b{bottom:632.400000px;}
.y284{bottom:632.850000px;}
.y31f{bottom:633.000000px;}
.y1fe{bottom:633.150000px;}
.y28f{bottom:633.300000px;}
.y2f7{bottom:634.500000px;}
.y113{bottom:634.650000px;}
.y2e5{bottom:635.250000px;}
.yd0{bottom:636.750000px;}
.y329{bottom:636.900000px;}
.y144{bottom:637.350000px;}
.y2cd{bottom:640.200000px;}
.y178{bottom:642.900000px;}
.y8{bottom:643.200000px;}
.y5f{bottom:647.100000px;}
.yea{bottom:647.700000px;}
.y28e{bottom:650.550000px;}
.y3f{bottom:650.850000px;}
.y31e{bottom:651.000000px;}
.y25f{bottom:651.150000px;}
.y36a{bottom:653.100000px;}
.y1fd{bottom:653.850000px;}
.y2f6{bottom:655.200000px;}
.y112{bottom:655.350000px;}
.y2e4{bottom:655.950000px;}
.y104{bottom:657.450000px;}
.y143{bottom:658.050000px;}
.y177{bottom:663.600000px;}
.y2a0{bottom:663.900000px;}
.y38d{bottom:666.600000px;}
.y346{bottom:666.900000px;}
.y5e{bottom:667.800000px;}
.y28d{bottom:667.950000px;}
.ye9{bottom:668.400000px;}
.y1da{bottom:671.100000px;}
.y3e{bottom:671.550000px;}
.y25e{bottom:671.850000px;}
.y2ff{bottom:672.000000px;}
.y390{bottom:672.900000px;}
.y22a{bottom:673.650000px;}
.y369{bottom:673.800000px;}
.y7{bottom:674.250000px;}
.y1fc{bottom:674.550000px;}
.y111{bottom:676.050000px;}
.y2e3{bottom:676.650000px;}
.ycf{bottom:678.150000px;}
.y142{bottom:678.750000px;}
.y12b{bottom:680.100000px;}
.y166{bottom:681.150000px;}
.y2cc{bottom:681.600000px;}
.y1d{bottom:684.300000px;}
.y2bc{bottom:684.750000px;}
.y28c{bottom:685.200000px;}
.ya5{bottom:685.500000px;}
.y345{bottom:687.600000px;}
.y5d{bottom:688.500000px;}
.y8a{bottom:689.100000px;}
.y38f{bottom:690.150000px;}
.y328{bottom:691.650000px;}
.y1d9{bottom:691.800000px;}
.y3d{bottom:692.250000px;}
.y25d{bottom:692.550000px;}
.y385{bottom:694.500000px;}
.y1fb{bottom:695.250000px;}
.y229{bottom:695.850000px;}
.y2f5{bottom:696.000000px;}
.yce{bottom:698.850000px;}
.y141{bottom:699.450000px;}
.y2cb{bottom:702.300000px;}
.ya4{bottom:702.900000px;}
.y1c{bottom:705.000000px;}
.y6{bottom:705.300000px;}
.y2bb{bottom:705.450000px;}
.y344{bottom:708.300000px;}
.y5c{bottom:709.200000px;}
.y89{bottom:709.800000px;}
.y1d8{bottom:712.500000px;}
.y3c{bottom:712.950000px;}
.y25c{bottom:713.250000px;}
.y368{bottom:715.200000px;}
.y1fa{bottom:715.950000px;}
.y2e2{bottom:718.050000px;}
.ye8{bottom:719.400000px;}
.ycd{bottom:719.550000px;}
.ya3{bottom:720.150000px;}
.y2ca{bottom:723.000000px;}
.y1b{bottom:725.700000px;}
.y2ba{bottom:726.150000px;}
.y27{bottom:728.400000px;}
.y343{bottom:729.000000px;}
.y5b{bottom:729.900000px;}
.y88{bottom:730.500000px;}
.y1d7{bottom:733.200000px;}
.y3b{bottom:733.650000px;}
.y25b{bottom:733.950000px;}
.y367{bottom:735.900000px;}
.y5{bottom:736.350000px;}
.y283{bottom:736.650000px;}
.y228{bottom:737.250000px;}
.y110{bottom:738.750000px;}
.ycc{bottom:740.250000px;}
.y1a2{bottom:740.850000px;}
.y2c9{bottom:743.700000px;}
.y176{bottom:746.400000px;}
.y29f{bottom:746.850000px;}
.y311{bottom:747.150000px;}
.y26{bottom:749.100000px;}
.y342{bottom:749.700000px;}
.y5a{bottom:750.600000px;}
.y87{bottom:751.200000px;}
.y3a{bottom:754.350000px;}
.y366{bottom:756.600000px;}
.y1f9{bottom:757.350000px;}
.y10f{bottom:759.450000px;}
.ycb{bottom:760.950000px;}
.y1a1{bottom:761.550000px;}
.y165{bottom:764.100000px;}
.y2c8{bottom:764.400000px;}
.y1a{bottom:767.100000px;}
.y4{bottom:767.400000px;}
.y140{bottom:767.550000px;}
.y25{bottom:769.800000px;}
.y341{bottom:770.400000px;}
.y86{bottom:771.900000px;}
.y1d6{bottom:774.600000px;}
.y1d5{bottom:774.750000px;}
.y39{bottom:775.050000px;}
.y25a{bottom:775.350000px;}
.y365{bottom:777.300000px;}
.y1f8{bottom:778.050000px;}
.y227{bottom:778.650000px;}
.y221{bottom:778.800000px;}
.yca{bottom:781.650000px;}
.y1a0{bottom:782.250000px;}
.y164{bottom:784.800000px;}
.y19{bottom:787.800000px;}
.y29e{bottom:788.250000px;}
.y24{bottom:790.500000px;}
.y340{bottom:791.100000px;}
.y59{bottom:792.000000px;}
.y85{bottom:792.600000px;}
.y38{bottom:795.750000px;}
.y259{bottom:796.050000px;}
.y386{bottom:798.000000px;}
.y3{bottom:798.450000px;}
.y1f7{bottom:798.750000px;}
.y2e1{bottom:800.850000px;}
.yc9{bottom:802.350000px;}
.y19f{bottom:802.950000px;}
.y163{bottom:805.500000px;}
.y1d0{bottom:805.650000px;}
.y2c7{bottom:805.800000px;}
.y175{bottom:808.500000px;}
.y29d{bottom:808.950000px;}
.y58{bottom:812.700000px;}
.y84{bottom:813.300000px;}
.y37{bottom:816.450000px;}
.y258{bottom:816.750000px;}
.y364{bottom:818.700000px;}
.y1f6{bottom:819.450000px;}
.y2e0{bottom:820.950000px;}
.y10e{bottom:822.150000px;}
.yc8{bottom:823.050000px;}
.y2b9{bottom:825.750000px;}
.y2c6{bottom:826.500000px;}
.y18{bottom:829.200000px;}
.y29c{bottom:829.650000px;}
.y57{bottom:833.400000px;}
.y83{bottom:834.000000px;}
.y36{bottom:837.150000px;}
.y257{bottom:837.450000px;}
.y363{bottom:839.400000px;}
.y1f5{bottom:840.150000px;}
.y10d{bottom:842.850000px;}
.y2b8{bottom:843.000000px;}
.yc7{bottom:843.750000px;}
.y19e{bottom:844.350000px;}
.y220{bottom:845.400000px;}
.y162{bottom:846.900000px;}
.y2c5{bottom:847.200000px;}
.y17{bottom:849.900000px;}
.y33f{bottom:853.200000px;}
.y56{bottom:854.100000px;}
.y82{bottom:854.700000px;}
.y1cf{bottom:857.100000px;}
.y1c8{bottom:857.250000px;}
.y35{bottom:857.850000px;}
.y256{bottom:858.150000px;}
.y362{bottom:860.100000px;}
.y1f4{bottom:860.850000px;}
.y10c{bottom:863.550000px;}
.yc6{bottom:864.450000px;}
.y19d{bottom:865.050000px;}
.y161{bottom:867.600000px;}
.y23{bottom:870.600000px;}
.y29b{bottom:871.050000px;}
.y33e{bottom:873.900000px;}
.y55{bottom:874.800000px;}
.y81{bottom:875.400000px;}
.y34{bottom:878.550000px;}
.y255{bottom:878.850000px;}
.y361{bottom:880.800000px;}
.y1f3{bottom:881.550000px;}
.yc5{bottom:885.150000px;}
.y19c{bottom:885.750000px;}
.y21f{bottom:886.800000px;}
.y219{bottom:886.950000px;}
.y160{bottom:888.300000px;}
.y16{bottom:891.300000px;}
.y29a{bottom:891.750000px;}
.y33d{bottom:894.600000px;}
.y54{bottom:895.500000px;}
.y80{bottom:896.100000px;}
.y31d{bottom:898.050000px;}
.y33{bottom:899.250000px;}
.y254{bottom:899.550000px;}
.y360{bottom:901.500000px;}
.y2c4{bottom:901.950000px;}
.y1f2{bottom:902.250000px;}
.yc4{bottom:905.850000px;}
.y19b{bottom:906.450000px;}
.y15f{bottom:909.000000px;}
.y15{bottom:912.000000px;}
.y299{bottom:912.450000px;}
.y33c{bottom:915.300000px;}
.y31c{bottom:915.450000px;}
.y53{bottom:916.200000px;}
.y7f{bottom:916.800000px;}
.y2c3{bottom:919.350000px;}
.y32{bottom:919.950000px;}
.y253{bottom:920.250000px;}
.y35f{bottom:922.200000px;}
.y282{bottom:922.950000px;}
.y10b{bottom:926.250000px;}
.yc3{bottom:926.550000px;}
.y19a{bottom:927.150000px;}
.y15e{bottom:929.700000px;}
.y218{bottom:929.850000px;}
.y1f1{bottom:932.400000px;}
.y14{bottom:932.700000px;}
.y298{bottom:933.150000px;}
.y31b{bottom:933.300000px;}
.y33b{bottom:936.000000px;}
.y52{bottom:936.900000px;}
.y7e{bottom:937.500000px;}
.y31{bottom:940.650000px;}
.y252{bottom:940.950000px;}
.y384{bottom:942.900000px;}
.y281{bottom:943.650000px;}
.y10a{bottom:946.950000px;}
.yc2{bottom:947.250000px;}
.y199{bottom:947.850000px;}
.y15d{bottom:950.400000px;}
.y217{bottom:950.550000px;}
.y13{bottom:953.400000px;}
.y297{bottom:953.850000px;}
.y33a{bottom:956.700000px;}
.y51{bottom:957.600000px;}
.y7d{bottom:958.200000px;}
.y30{bottom:961.350000px;}
.y251{bottom:961.650000px;}
.y35e{bottom:963.600000px;}
.y280{bottom:964.350000px;}
.y109{bottom:967.650000px;}
.y13f{bottom:967.800000px;}
.yc1{bottom:967.950000px;}
.y198{bottom:968.550000px;}
.y22{bottom:974.100000px;}
.y296{bottom:974.550000px;}
.y50{bottom:978.300000px;}
.y7c{bottom:978.900000px;}
.y2f{bottom:982.050000px;}
.y250{bottom:982.350000px;}
.y35d{bottom:984.300000px;}
.y27f{bottom:985.050000px;}
.y108{bottom:988.350000px;}
.yc0{bottom:988.650000px;}
.y12{bottom:994.800000px;}
.y339{bottom:998.100000px;}
.y4f{bottom:999.000000px;}
.y7b{bottom:999.600000px;}
.y15c{bottom:1001.400000px;}
.y2e{bottom:1002.750000px;}
.y24f{bottom:1003.050000px;}
.y35c{bottom:1005.000000px;}
.y107{bottom:1009.050000px;}
.ybf{bottom:1009.350000px;}
.y197{bottom:1009.950000px;}
.y216{bottom:1012.650000px;}
.y21{bottom:1015.500000px;}
.y338{bottom:1018.800000px;}
.y4e{bottom:1019.700000px;}
.y2d{bottom:1023.450000px;}
.y24e{bottom:1023.750000px;}
.y15b{bottom:1025.550000px;}
.y35b{bottom:1025.700000px;}
.y106{bottom:1029.750000px;}
.ybe{bottom:1030.050000px;}
.y196{bottom:1030.650000px;}
.y215{bottom:1034.700000px;}
.y27e{bottom:1035.900000px;}
.y11{bottom:1036.200000px;}
.y337{bottom:1039.500000px;}
.y4d{bottom:1040.400000px;}
.y2c{bottom:1044.150000px;}
.y24d{bottom:1044.450000px;}
.y35a{bottom:1046.400000px;}
.y7a{bottom:1050.600000px;}
.ybd{bottom:1050.750000px;}
.y195{bottom:1051.350000px;}
.y20{bottom:1056.900000px;}
.y336{bottom:1060.200000px;}
.y4c{bottom:1061.100000px;}
.y2b{bottom:1064.850000px;}
.y24c{bottom:1065.150000px;}
.y359{bottom:1067.100000px;}
.y2{bottom:1067.550000px;}
.ybc{bottom:1071.450000px;}
.y194{bottom:1072.050000px;}
.y10{bottom:1077.600000px;}
.y4b{bottom:1081.800000px;}
.y2a{bottom:1085.550000px;}
.y24b{bottom:1085.850000px;}
.y358{bottom:1087.800000px;}
.ybb{bottom:1092.150000px;}
.y193{bottom:1092.750000px;}
.yf{bottom:1098.300000px;}
.y335{bottom:1101.600000px;}
.y29{bottom:1106.250000px;}
.y79{bottom:1112.850000px;}
.y15a{bottom:1114.500000px;}
.y192{bottom:1114.800000px;}
.y1f{bottom:1119.000000px;}
.y4a{bottom:1129.200000px;}
.y78{bottom:1133.550000px;}
.y24a{bottom:1136.700000px;}
.y28{bottom:1137.150000px;}
.y191{bottom:1138.200000px;}
.ye{bottom:1139.700000px;}
.y334{bottom:1142.400000px;}
.y77{bottom:1154.250000px;}
.y38a{bottom:1178.100000px;}
.y383{bottom:1192.800000px;}
.y389{bottom:1195.500000px;}
.y49{bottom:1195.650000px;}
.h2e{height:21.663281px;}
.h23{height:22.496484px;}
.h27{height:22.913086px;}
.h32{height:24.000000px;}
.h1f{height:25.500000px;}
.h34{height:26.245898px;}
.he{height:27.000000px;}
.h31{height:27.376172px;}
.h21{height:29.162109px;}
.h11{height:36.000000px;}
.h1c{height:36.852539px;}
.h2d{height:37.077539px;}
.h15{height:38.327344px;}
.h22{height:39.000000px;}
.h26{height:39.160547px;}
.h7{height:41.660156px;}
.h25{height:42.150000px;}
.h2a{height:42.300000px;}
.h33{height:44.576367px;}
.h30{height:46.855371px;}
.h13{height:48.434766px;}
.h5{height:48.796875px;}
.h9{height:49.289062px;}
.h2c{height:49.462793px;}
.h29{height:49.487695px;}
.hd{height:49.992188px;}
.h1a{height:51.000000px;}
.h2f{height:51.212145px;}
.hc{height:52.646484px;}
.h24{height:52.958323px;}
.h14{height:53.741602px;}
.h28{height:54.044814px;}
.h1e{height:59.162109px;}
.h36{height:59.466504px;}
.ha{height:61.359375px;}
.h35{height:61.455593px;}
.h3{height:63.175781px;}
.h18{height:65.052539px;}
.h4{height:65.062500px;}
.h2b{height:65.579883px;}
.hf{height:66.691406px;}
.h12{height:67.913965px;}
.h19{height:68.903320px;}
.h10{height:69.043175px;}
.h16{height:71.693262px;}
.h17{height:74.134932px;}
.hb{height:75.837891px;}
.h2{height:78.626953px;}
.h6{height:86.671875px;}
.h1b{height:87.810352px;}
.h20{height:88.366113px;}
.h8{height:92.088867px;}
.h1d{height:135.210352px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w6{width:37.500000px;}
.w7{width:43.500000px;}
.w5{width:58.500000px;}
.wb{width:76.650000px;}
.w4{width:154.500000px;}
.wa{width:176.100000px;}
.w3{width:181.500000px;}
.w1{width:211.500000px;}
.w9{width:223.950000px;}
.w8{width:225.000000px;}
.w2{width:490.650000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2f{left:2.250000px;}
.x44{left:4.197931px;}
.x3c{left:9.747812px;}
.x37{left:10.950000px;}
.x32{left:12.300000px;}
.x23{left:14.850000px;}
.x2d{left:16.050000px;}
.x33{left:17.550000px;}
.x35{left:18.900000px;}
.x36{left:24.300000px;}
.x3b{left:31.198693px;}
.x1e{left:33.300000px;}
.x2e{left:39.900000px;}
.x2a{left:41.250000px;}
.x54{left:44.100000px;}
.x48{left:47.251258px;}
.x1c{left:48.450000px;}
.x4c{left:49.801613px;}
.x53{left:53.550000px;}
.x28{left:55.350000px;}
.x21{left:58.650000px;}
.x52{left:65.700000px;}
.x47{left:68.700499px;}
.x18{left:69.900000px;}
.x43{left:78.449192px;}
.x46{left:84.151072px;}
.x5{left:85.200000px;}
.x29{left:86.400000px;}
.x50{left:88.800000px;}
.x20{left:92.250000px;}
.x19{left:100.052595px;}
.x4b{left:103.952015px;}
.x6{left:106.500000px;}
.x3a{left:109.649052px;}
.x4f{left:111.151344px;}
.x27{left:112.500000px;}
.x4e{left:115.200650px;}
.x26{left:116.400000px;}
.x24{left:125.856270px;}
.x2{left:127.800000px;}
.x1d{left:130.200000px;}
.x25{left:131.250000px;}
.x4{left:133.950000px;}
.xa{left:135.450000px;}
.xf{left:137.250000px;}
.xc{left:141.300000px;}
.x22{left:144.600000px;}
.x42{left:146.099343px;}
.x4d{left:149.700000px;}
.x1a{left:151.650000px;}
.x57{left:154.800000px;}
.x1f{left:156.150000px;}
.x41{left:158.400690px;}
.x8{left:160.200000px;}
.x1b{left:165.000000px;}
.x4a{left:168.600000px;}
.xb{left:171.000000px;}
.xd{left:181.500000px;}
.x40{left:188.850085px;}
.x2c{left:196.050000px;}
.x3f{left:201.001006px;}
.xe{left:203.100000px;}
.x3e{left:205.050000px;}
.x39{left:208.050664px;}
.x38{left:211.950000px;}
.x3d{left:216.300000px;}
.x30{left:254.850000px;}
.x14{left:257.850000px;}
.x55{left:303.300000px;}
.x2b{left:336.300000px;}
.x51{left:358.050000px;}
.x16{left:362.700000px;}
.x10{left:393.300000px;}
.x49{left:405.750000px;}
.x45{left:406.950000px;}
.x56{left:435.450000px;}
.x9{left:437.700000px;}
.x7{left:442.200000px;}
.x15{left:444.750000px;}
.x13{left:459.300000px;}
.x12{left:468.900000px;}
.x11{left:477.900000px;}
.x1{left:479.250000px;}
.x3{left:485.550000px;}
.x31{left:504.900000px;}
.x34{left:542.550000px;}
.x17{left:672.600000px;}
.x58{left:701.100000px;}
@media print{
.v6{vertical-align:-51.200000pt;}
.va{vertical-align:-37.333333pt;}
.v9{vertical-align:-34.133333pt;}
.v8{vertical-align:-31.466667pt;}
.v1{vertical-align:-16.000000pt;}
.v3{vertical-align:-5.866667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v4{vertical-align:25.066667pt;}
.v5{vertical-align:26.666667pt;}
.v7{vertical-align:42.133333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.149333pt;}
.ls8{letter-spacing:0.170667pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.204800pt;}
.lsc{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.349867pt;}
.ls26{letter-spacing:0.354133pt;}
.lsb{letter-spacing:0.362667pt;}
.ls16{letter-spacing:0.366933pt;}
.ls12{letter-spacing:0.384000pt;}
.ls25{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.533333pt;}
.ls32{letter-spacing:1.024000pt;}
.ls2{letter-spacing:1.066667pt;}
.lsd{letter-spacing:1.600000pt;}
.lsf{letter-spacing:2.133333pt;}
.ls9{letter-spacing:2.624000pt;}
.ls33{letter-spacing:2.662400pt;}
.ls14{letter-spacing:2.666667pt;}
.ls2b{letter-spacing:3.733333pt;}
.ls30{letter-spacing:4.241067pt;}
.ls2f{letter-spacing:4.266667pt;}
.ls31{letter-spacing:4.283733pt;}
.ls27{letter-spacing:4.800000pt;}
.ls28{letter-spacing:5.333333pt;}
.ls5{letter-spacing:5.866667pt;}
.ls4{letter-spacing:5.888000pt;}
.ls15{letter-spacing:6.400000pt;}
.ls7{letter-spacing:6.421333pt;}
.ls38{letter-spacing:7.424000pt;}
.ls24{letter-spacing:7.466667pt;}
.ls23{letter-spacing:8.000000pt;}
.ls2a{letter-spacing:8.533333pt;}
.ls35{letter-spacing:9.066667pt;}
.ls42{letter-spacing:9.600000pt;}
.ls43{letter-spacing:10.133333pt;}
.ls1a{letter-spacing:11.200000pt;}
.ls10{letter-spacing:11.466667pt;}
.ls34{letter-spacing:11.720533pt;}
.ls19{letter-spacing:11.733333pt;}
.ls3c{letter-spacing:13.333333pt;}
.ls40{letter-spacing:13.866667pt;}
.ls22{letter-spacing:14.400000pt;}
.ls37{letter-spacing:14.933333pt;}
.ls2e{letter-spacing:15.424000pt;}
.ls3f{letter-spacing:16.000000pt;}
.ls3a{letter-spacing:16.448000pt;}
.ls6{letter-spacing:16.533333pt;}
.ls3b{letter-spacing:18.133333pt;}
.ls36{letter-spacing:21.333333pt;}
.ls21{letter-spacing:22.933333pt;}
.ls1c{letter-spacing:24.533333pt;}
.ls1b{letter-spacing:25.066667pt;}
.ls41{letter-spacing:28.800000pt;}
.ls18{letter-spacing:29.333333pt;}
.ls17{letter-spacing:29.866667pt;}
.ls2d{letter-spacing:30.400000pt;}
.ls2c{letter-spacing:30.933333pt;}
.ls3d{letter-spacing:32.000000pt;}
.ls3e{letter-spacing:32.516267pt;}
.ls39{letter-spacing:33.066667pt;}
.ls1d{letter-spacing:43.200000pt;}
.ls13{letter-spacing:94.167467pt;}
.ls11{letter-spacing:214.997333pt;}
.ws0{word-spacing:-26.592000pt;}
.ws29{word-spacing:-25.114667pt;}
.ws4{word-spacing:-23.637333pt;}
.ws6{word-spacing:-20.682667pt;}
.ws10{word-spacing:-17.785783pt;}
.wse{word-spacing:-17.200000pt;}
.wsc{word-spacing:-16.564215pt;}
.ws2{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws24{word-spacing:-14.743871pt;}
.ws22{word-spacing:-14.266667pt;}
.ws26{word-spacing:-13.333333pt;}
.ws28{word-spacing:-13.004800pt;}
.ws1b{word-spacing:-12.965944pt;}
.ws27{word-spacing:-12.800000pt;}
.ws19{word-spacing:-12.705283pt;}
.ws1d{word-spacing:-12.533333pt;}
.wsf{word-spacing:-12.266667pt;}
.ws20{word-spacing:-11.866667pt;}
.wsd{word-spacing:-9.333333pt;}
.ws23{word-spacing:-8.400000pt;}
.ws21{word-spacing:-6.933333pt;}
.ws8{word-spacing:-0.074667pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:5.781333pt;}
.ws25{word-spacing:29.653333pt;}
.ws5{word-spacing:39.674667pt;}
.ws1a{word-spacing:68.618667pt;}
.ws1c{word-spacing:70.261333pt;}
.ws15{word-spacing:86.291200pt;}
.ws18{word-spacing:86.844267pt;}
.ws14{word-spacing:87.480533pt;}
.ws9{word-spacing:132.288000pt;}
.ws17{word-spacing:232.403200pt;}
.ws11{word-spacing:276.360533pt;}
.ws13{word-spacing:305.920000pt;}
.ws12{word-spacing:325.064533pt;}
.ws16{word-spacing:363.626667pt;}
.wsa{word-spacing:410.400000pt;}
.ws1e{word-spacing:460.291200pt;}
.ws1f{word-spacing:489.105600pt;}
.wsb{word-spacing:491.882667pt;}
._80{margin-left:-2036.876800pt;}
._7c{margin-left:-1938.596267pt;}
._6c{margin-left:-1920.533333pt;}
._75{margin-left:-764.829867pt;}
._82{margin-left:-689.905067pt;}
._3d{margin-left:-659.527467pt;}
._46{margin-left:-596.857250pt;}
._3f{margin-left:-441.303467pt;}
._33{margin-left:-440.138133pt;}
._36{margin-left:-426.272000pt;}
._2b{margin-left:-393.450667pt;}
._41{margin-left:-389.643200pt;}
._42{margin-left:-330.997867pt;}
._37{margin-left:-329.189333pt;}
._6e{margin-left:-287.194667pt;}
._5b{margin-left:-280.658062pt;}
._3e{margin-left:-277.577600pt;}
._57{margin-left:-274.256234pt;}
._2f{margin-left:-272.393067pt;}
._47{margin-left:-267.811984pt;}
._45{margin-left:-256.054065pt;}
._43{margin-left:-254.098133pt;}
._34{margin-left:-249.219733pt;}
._40{margin-left:-247.376533pt;}
._54{margin-left:-239.695237pt;}
._55{margin-left:-230.741333pt;}
._4b{margin-left:-229.269333pt;}
._77{margin-left:-222.092800pt;}
._7a{margin-left:-220.910933pt;}
._2d{margin-left:-219.376466pt;}
._24{margin-left:-217.578667pt;}
._2a{margin-left:-211.584000pt;}
._4f{margin-left:-204.777871pt;}
._4c{margin-left:-199.040000pt;}
._4d{margin-left:-197.802667pt;}
._32{margin-left:-195.875733pt;}
._26{margin-left:-194.666667pt;}
._44{margin-left:-181.125867pt;}
._3c{margin-left:-177.810133pt;}
._5c{margin-left:-176.717333pt;}
._39{margin-left:-175.253333pt;}
._3b{margin-left:-173.104000pt;}
._2e{margin-left:-168.248255pt;}
._5f{margin-left:-162.865067pt;}
._35{margin-left:-161.840000pt;}
._2c{margin-left:-160.512000pt;}
._5a{margin-left:-158.841600pt;}
._29{margin-left:-152.384000pt;}
._62{margin-left:-151.472000pt;}
._28{margin-left:-144.533333pt;}
._4e{margin-left:-142.720000pt;}
._63{margin-left:-139.765333pt;}
._56{margin-left:-138.182655pt;}
._60{margin-left:-136.809600pt;}
._25{margin-left:-134.400000pt;}
._4a{margin-left:-129.941333pt;}
._5e{margin-left:-128.915200pt;}
._31{margin-left:-124.922667pt;}
._59{margin-left:-121.758933pt;}
._61{margin-left:-114.929067pt;}
._38{margin-left:-111.962667pt;}
._53{margin-left:-102.079737pt;}
._3a{margin-left:-84.608000pt;}
._65{margin-left:-76.128000pt;}
._30{margin-left:-74.380800pt;}
._27{margin-left:-73.066667pt;}
._58{margin-left:-67.491200pt;}
._5d{margin-left:-66.355200pt;}
._64{margin-left:-49.477867pt;}
._7f{margin-left:-16.469333pt;}
._73{margin-left:-15.554133pt;}
._79{margin-left:-10.003200pt;}
._23{margin-left:-8.448000pt;}
._2{margin-left:-7.008000pt;}
._3{margin-left:-5.280000pt;}
._f{margin-left:-4.320000pt;}
._4{margin-left:-3.264000pt;}
._0{margin-left:-2.016000pt;}
._5{margin-left:-1.120000pt;}
._1{width:1.162667pt;}
._8{width:2.453333pt;}
._e{width:3.562667pt;}
._6{width:4.480000pt;}
._7{width:5.440000pt;}
._9{width:6.421333pt;}
._13{width:7.360000pt;}
._12{width:8.256000pt;}
._10{width:9.728000pt;}
._11{width:10.869333pt;}
._16{width:12.416000pt;}
._15{width:13.568000pt;}
._18{width:14.848000pt;}
._14{width:16.992000pt;}
._19{width:18.496000pt;}
._b{width:19.456000pt;}
._a{width:20.416000pt;}
._66{width:21.376000pt;}
._17{width:22.336000pt;}
._1f{width:23.936000pt;}
._67{width:25.024000pt;}
._1c{width:26.090667pt;}
._c{width:27.648000pt;}
._d{width:28.896000pt;}
._6b{width:30.336000pt;}
._1e{width:31.594667pt;}
._48{width:33.024000pt;}
._20{width:33.984000pt;}
._21{width:36.842667pt;}
._1a{width:37.994667pt;}
._71{width:40.142933pt;}
._72{width:43.588267pt;}
._70{width:48.000000pt;}
._1b{width:49.888000pt;}
._1d{width:63.104000pt;}
._22{width:64.789333pt;}
._69{width:96.608000pt;}
._7e{width:109.924267pt;}
._74{width:110.909867pt;}
._68{width:127.626667pt;}
._6a{width:128.608000pt;}
._52{width:165.565867pt;}
._7b{width:188.736000pt;}
._78{width:189.824000pt;}
._51{width:254.659200pt;}
._6f{width:256.339200pt;}
._50{width:264.163200pt;}
._49{width:319.318400pt;}
._83{width:657.536000pt;}
._76{width:738.048000pt;}
._6d{width:1888.848000pt;}
._7d{width:1906.624000pt;}
._81{width:2004.736000pt;}
.fs14{font-size:27.733333pt;}
.fsd{font-size:28.800000pt;}
.fs10{font-size:29.333333pt;}
.fs17{font-size:33.600000pt;}
.fs6{font-size:37.333333pt;}
.fs13{font-size:47.466667pt;}
.fs9{font-size:49.066667pt;}
.fs15{font-size:49.145422pt;}
.fsf{font-size:50.133333pt;}
.fse{font-size:50.821131pt;}
.fs1a{font-size:51.200000pt;}
.fs11{font-size:51.863775pt;}
.fs3{font-size:53.333333pt;}
.fs16{font-size:57.066667pt;}
.fs18{font-size:58.975484pt;}
.fs19{font-size:62.400000pt;}
.fs12{font-size:62.933333pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:66.256861pt;}
.fs8{font-size:68.800000pt;}
.fsa{font-size:71.143134pt;}
.fs5{font-size:74.666667pt;}
.fsb{font-size:84.266667pt;}
.fsc{font-size:84.800000pt;}
.fs2{font-size:85.333333pt;}
.fs4{font-size:90.666667pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y231{bottom:3.200000pt;}
.y23e{bottom:3.466667pt;}
.y1d2{bottom:4.000000pt;}
.y21a{bottom:4.666667pt;}
.y222{bottom:5.600000pt;}
.y1cb{bottom:6.133333pt;}
.y1ca{bottom:6.266667pt;}
.y235{bottom:6.400000pt;}
.y1d4{bottom:6.666667pt;}
.y1d3{bottom:6.800000pt;}
.y23d{bottom:7.066667pt;}
.y1c3{bottom:7.200000pt;}
.y1c2{bottom:7.333333pt;}
.y18c{bottom:7.866667pt;}
.y17e{bottom:8.000000pt;}
.y1d1{bottom:8.133333pt;}
.y22f{bottom:10.800000pt;}
.y18b{bottom:12.133333pt;}
.y238{bottom:12.800000pt;}
.y21d{bottom:14.266667pt;}
.y1c5{bottom:14.400000pt;}
.y1ce{bottom:14.666667pt;}
.y225{bottom:15.600000pt;}
.y233{bottom:15.733333pt;}
.y22e{bottom:15.866667pt;}
.y1c6{bottom:16.000000pt;}
.y230{bottom:16.533333pt;}
.y1cd{bottom:18.666667pt;}
.y1c9{bottom:18.800000pt;}
.y21e{bottom:19.466667pt;}
.y1c4{bottom:20.000000pt;}
.y234{bottom:20.666667pt;}
.y226{bottom:22.000000pt;}
.y21c{bottom:22.133333pt;}
.y21b{bottom:22.533333pt;}
.y237{bottom:23.200000pt;}
.y224{bottom:23.600000pt;}
.y236{bottom:23.733333pt;}
.y232{bottom:24.266667pt;}
.y223{bottom:25.066667pt;}
.y1cc{bottom:29.333333pt;}
.y1c1{bottom:30.133333pt;}
.y1e{bottom:50.666667pt;}
.ya2{bottom:88.666667pt;}
.y174{bottom:91.466667pt;}
.y327{bottom:92.800000pt;}
.y27d{bottom:93.066667pt;}
.y333{bottom:94.266667pt;}
.y190{bottom:95.066667pt;}
.y12a{bottom:95.200000pt;}
.y1af{bottom:95.333333pt;}
.y357{bottom:96.000000pt;}
.y76{bottom:96.800000pt;}
.y103{bottom:97.333333pt;}
.y1f0{bottom:99.733333pt;}
.y13e{bottom:100.133333pt;}
.y277{bottom:100.400000pt;}
.y214{bottom:101.466667pt;}
.y2fe{bottom:101.600000pt;}
.y382{bottom:102.133333pt;}
.y2b5{bottom:103.200000pt;}
.yba{bottom:104.400000pt;}
.ye7{bottom:106.000000pt;}
.ya1{bottom:107.066667pt;}
.y38c{bottom:109.600000pt;}
.y173{bottom:109.866667pt;}
.y326{bottom:111.200000pt;}
.y27c{bottom:111.466667pt;}
.y129{bottom:113.600000pt;}
.y1ae{bottom:113.733333pt;}
.y356{bottom:114.400000pt;}
.y18f{bottom:114.800000pt;}
.y75{bottom:115.200000pt;}
.y102{bottom:115.733333pt;}
.y1c7{bottom:117.866667pt;}
.y1c0{bottom:118.000000pt;}
.y1ef{bottom:118.133333pt;}
.y13d{bottom:118.533333pt;}
.y276{bottom:118.800000pt;}
.y2fd{bottom:120.000000pt;}
.y381{bottom:120.533333pt;}
.y213{bottom:121.200000pt;}
.y2b4{bottom:121.600000pt;}
.y310{bottom:122.400000pt;}
.yb9{bottom:122.800000pt;}
.ye6{bottom:124.400000pt;}
.ya0{bottom:125.466667pt;}
.y172{bottom:128.266667pt;}
.y27b{bottom:129.866667pt;}
.y128{bottom:132.000000pt;}
.y1ad{bottom:132.133333pt;}
.y355{bottom:132.800000pt;}
.y74{bottom:133.600000pt;}
.y101{bottom:134.133333pt;}
.y18e{bottom:134.400000pt;}
.y1ee{bottom:136.533333pt;}
.y275{bottom:137.200000pt;}
.y2fc{bottom:138.400000pt;}
.y380{bottom:138.933333pt;}
.y212{bottom:139.600000pt;}
.y2b3{bottom:140.000000pt;}
.y30f{bottom:140.800000pt;}
.yb8{bottom:141.200000pt;}
.y249{bottom:142.666667pt;}
.ye5{bottom:142.800000pt;}
.y9f{bottom:143.866667pt;}
.y13c{bottom:145.466667pt;}
.y393{bottom:146.933333pt;}
.y325{bottom:148.000000pt;}
.y27a{bottom:148.266667pt;}
.y38e{bottom:149.200000pt;}
.y127{bottom:150.400000pt;}
.y1ac{bottom:150.533333pt;}
.y354{bottom:151.200000pt;}
.y73{bottom:152.000000pt;}
.y100{bottom:152.533333pt;}
.y18d{bottom:154.000000pt;}
.y18a{bottom:154.266667pt;}
.y274{bottom:155.600000pt;}
.y37f{bottom:157.333333pt;}
.y211{bottom:158.000000pt;}
.y2b2{bottom:158.400000pt;}
.y30e{bottom:159.200000pt;}
.y248{bottom:161.066667pt;}
.ye4{bottom:161.200000pt;}
.y392{bottom:162.400000pt;}
.y2df{bottom:164.266667pt;}
.y171{bottom:165.066667pt;}
.y394{bottom:165.333333pt;}
.y279{bottom:166.666667pt;}
.y126{bottom:168.800000pt;}
.y1ab{bottom:168.933333pt;}
.yff{bottom:170.933333pt;}
.y2fb{bottom:171.600000pt;}
.y1ed{bottom:173.333333pt;}
.y273{bottom:174.000000pt;}
.y388{bottom:175.733333pt;}
.y210{bottom:176.400000pt;}
.y30d{bottom:177.600000pt;}
.y391{bottom:177.733333pt;}
.yb7{bottom:178.000000pt;}
.y247{bottom:179.466667pt;}
.ye3{bottom:179.600000pt;}
.y9e{bottom:180.666667pt;}
.y2de{bottom:182.666667pt;}
.y170{bottom:183.466667pt;}
.y324{bottom:184.266667pt;}
.y1bf{bottom:185.066667pt;}
.y125{bottom:187.200000pt;}
.y1aa{bottom:187.333333pt;}
.y353{bottom:188.000000pt;}
.y72{bottom:188.800000pt;}
.yfe{bottom:189.333333pt;}
.y1ec{bottom:191.733333pt;}
.y2e7{bottom:192.266667pt;}
.y272{bottom:192.400000pt;}
.y37e{bottom:194.133333pt;}
.y20f{bottom:194.800000pt;}
.y2b1{bottom:195.200000pt;}
.y30c{bottom:196.000000pt;}
.yb6{bottom:196.400000pt;}
.y31a{bottom:196.533333pt;}
.y246{bottom:197.866667pt;}
.ye2{bottom:198.000000pt;}
.y9d{bottom:199.066667pt;}
.y323{bottom:199.733333pt;}
.y13b{bottom:200.800000pt;}
.y16f{bottom:201.866667pt;}
.yd{bottom:203.333333pt;}
.y1be{bottom:203.466667pt;}
.y124{bottom:205.600000pt;}
.y1a9{bottom:205.733333pt;}
.y71{bottom:207.200000pt;}
.yfd{bottom:207.733333pt;}
.y189{bottom:207.866667pt;}
.y271{bottom:210.800000pt;}
.y37d{bottom:212.533333pt;}
.y20e{bottom:213.200000pt;}
.y30b{bottom:214.400000pt;}
.yb5{bottom:214.800000pt;}
.y319{bottom:214.933333pt;}
.y245{bottom:216.266667pt;}
.ye1{bottom:216.400000pt;}
.y9c{bottom:217.466667pt;}
.y13a{bottom:219.200000pt;}
.y2dd{bottom:219.466667pt;}
.y16e{bottom:220.266667pt;}
.y1bd{bottom:221.866667pt;}
.y123{bottom:224.000000pt;}
.y1a8{bottom:224.133333pt;}
.y352{bottom:224.800000pt;}
.y70{bottom:225.600000pt;}
.yfc{bottom:226.133333pt;}
.y188{bottom:226.266667pt;}
.y1eb{bottom:228.533333pt;}
.y270{bottom:229.200000pt;}
.y37c{bottom:230.933333pt;}
.y20d{bottom:231.600000pt;}
.y2b0{bottom:232.000000pt;}
.y30a{bottom:232.800000pt;}
.yb4{bottom:233.200000pt;}
.y318{bottom:233.333333pt;}
.y244{bottom:234.666667pt;}
.y9b{bottom:235.866667pt;}
.y139{bottom:237.600000pt;}
.y2dc{bottom:237.866667pt;}
.y16d{bottom:238.666667pt;}
.y1bc{bottom:240.266667pt;}
.y122{bottom:242.400000pt;}
.y6f{bottom:244.000000pt;}
.yfb{bottom:244.533333pt;}
.y187{bottom:244.666667pt;}
.y1ea{bottom:246.933333pt;}
.y37b{bottom:249.333333pt;}
.y20c{bottom:250.000000pt;}
.y2af{bottom:250.400000pt;}
.yb3{bottom:251.600000pt;}
.y317{bottom:251.733333pt;}
.y243{bottom:253.066667pt;}
.ye0{bottom:253.200000pt;}
.y2c2{bottom:253.733333pt;}
.y9a{bottom:254.266667pt;}
.y138{bottom:256.000000pt;}
.y2db{bottom:256.266667pt;}
.y16c{bottom:257.066667pt;}
.y1bb{bottom:258.666667pt;}
.y121{bottom:260.800000pt;}
.y351{bottom:261.600000pt;}
.y6e{bottom:262.400000pt;}
.yfa{bottom:262.933333pt;}
.y186{bottom:263.066667pt;}
.y1e9{bottom:265.333333pt;}
.y26f{bottom:266.000000pt;}
.y37a{bottom:267.733333pt;}
.y20b{bottom:268.400000pt;}
.y2ae{bottom:268.800000pt;}
.y1a7{bottom:269.466667pt;}
.y309{bottom:269.600000pt;}
.yb2{bottom:270.000000pt;}
.y316{bottom:270.133333pt;}
.y242{bottom:271.466667pt;}
.ydf{bottom:271.600000pt;}
.y2c1{bottom:272.133333pt;}
.y2f4{bottom:272.400000pt;}
.y99{bottom:272.666667pt;}
.y137{bottom:274.400000pt;}
.y2da{bottom:274.666667pt;}
.y16b{bottom:275.466667pt;}
.y1ba{bottom:277.066667pt;}
.y120{bottom:279.200000pt;}
.y6d{bottom:280.800000pt;}
.yf9{bottom:281.333333pt;}
.y185{bottom:281.466667pt;}
.y1e8{bottom:283.733333pt;}
.y26e{bottom:284.400000pt;}
.y379{bottom:286.133333pt;}
.y20a{bottom:286.800000pt;}
.y28b{bottom:287.600000pt;}
.y308{bottom:288.000000pt;}
.yb1{bottom:288.400000pt;}
.y315{bottom:288.533333pt;}
.y241{bottom:289.866667pt;}
.yde{bottom:290.000000pt;}
.y2c0{bottom:290.533333pt;}
.y2b7{bottom:290.800000pt;}
.y136{bottom:292.800000pt;}
.y2d9{bottom:293.066667pt;}
.y16a{bottom:293.866667pt;}
.y1b9{bottom:295.466667pt;}
.y11f{bottom:297.600000pt;}
.y350{bottom:298.400000pt;}
.y6c{bottom:299.200000pt;}
.yf8{bottom:299.733333pt;}
.y1e7{bottom:302.133333pt;}
.y26d{bottom:302.800000pt;}
.y378{bottom:304.533333pt;}
.y209{bottom:305.200000pt;}
.y2ad{bottom:305.600000pt;}
.y2b6{bottom:306.133333pt;}
.y307{bottom:306.400000pt;}
.yb0{bottom:306.800000pt;}
.y314{bottom:306.933333pt;}
.y240{bottom:308.266667pt;}
.ydd{bottom:308.400000pt;}
.y2bf{bottom:308.933333pt;}
.y2f3{bottom:309.200000pt;}
.y98{bottom:309.466667pt;}
.y135{bottom:311.200000pt;}
.y2d8{bottom:311.466667pt;}
.y169{bottom:312.266667pt;}
.y1b8{bottom:313.866667pt;}
.y11e{bottom:316.000000pt;}
.y6b{bottom:317.600000pt;}
.yf7{bottom:318.133333pt;}
.y184{bottom:318.266667pt;}
.y1e6{bottom:320.533333pt;}
.y26c{bottom:321.200000pt;}
.y387{bottom:322.933333pt;}
.y208{bottom:323.600000pt;}
.y2ac{bottom:324.000000pt;}
.y306{bottom:324.800000pt;}
.y313{bottom:325.333333pt;}
.ydc{bottom:326.800000pt;}
.y150{bottom:327.333333pt;}
.y2f2{bottom:327.600000pt;}
.y97{bottom:327.866667pt;}
.y134{bottom:329.600000pt;}
.y168{bottom:330.666667pt;}
.y1b7{bottom:332.266667pt;}
.y11d{bottom:334.400000pt;}
.y34f{bottom:335.200000pt;}
.yf6{bottom:336.533333pt;}
.y183{bottom:336.666667pt;}
.y26b{bottom:339.600000pt;}
.y377{bottom:341.333333pt;}
.y207{bottom:342.000000pt;}
.y2be{bottom:342.266667pt;}
.y2ab{bottom:342.400000pt;}
.y1a6{bottom:343.200000pt;}
.yaf{bottom:343.600000pt;}
.y23f{bottom:345.066667pt;}
.ydb{bottom:345.200000pt;}
.y23c{bottom:345.333333pt;}
.y14f{bottom:345.733333pt;}
.y2f1{bottom:346.000000pt;}
.y96{bottom:346.266667pt;}
.y2d7{bottom:348.266667pt;}
.y1b6{bottom:350.666667pt;}
.y11c{bottom:352.800000pt;}
.y6a{bottom:354.400000pt;}
.yf5{bottom:354.933333pt;}
.y182{bottom:355.066667pt;}
.y1e5{bottom:357.333333pt;}
.y2bd{bottom:357.600000pt;}
.y26a{bottom:358.000000pt;}
.y376{bottom:359.733333pt;}
.y206{bottom:360.400000pt;}
.y2aa{bottom:360.800000pt;}
.y1a5{bottom:361.600000pt;}
.yae{bottom:362.000000pt;}
.yda{bottom:363.600000pt;}
.y332{bottom:363.733333pt;}
.y14e{bottom:364.133333pt;}
.y2f0{bottom:364.400000pt;}
.y95{bottom:364.666667pt;}
.y133{bottom:366.400000pt;}
.y2d6{bottom:366.666667pt;}
.y1b5{bottom:369.066667pt;}
.y28a{bottom:369.866667pt;}
.y11b{bottom:371.200000pt;}
.y34e{bottom:372.000000pt;}
.y69{bottom:372.800000pt;}
.yf4{bottom:373.333333pt;}
.y181{bottom:374.666667pt;}
.y1e4{bottom:375.733333pt;}
.y167{bottom:376.000000pt;}
.y269{bottom:376.400000pt;}
.y312{bottom:377.066667pt;}
.y375{bottom:378.133333pt;}
.y205{bottom:378.800000pt;}
.y2a9{bottom:379.200000pt;}
.yad{bottom:380.400000pt;}
.y1a4{bottom:381.200000pt;}
.yd9{bottom:382.000000pt;}
.y331{bottom:382.133333pt;}
.y14d{bottom:382.533333pt;}
.y2ef{bottom:382.800000pt;}
.y94{bottom:383.066667pt;}
.y132{bottom:384.800000pt;}
.y2d5{bottom:385.066667pt;}
.y1b4{bottom:387.466667pt;}
.y295{bottom:389.200000pt;}
.y11a{bottom:389.600000pt;}
.y68{bottom:391.200000pt;}
.yf3{bottom:391.733333pt;}
.y1e3{bottom:394.133333pt;}
.y268{bottom:394.800000pt;}
.y159{bottom:395.066667pt;}
.y180{bottom:395.466667pt;}
.y374{bottom:396.533333pt;}
.y2a8{bottom:397.600000pt;}
.y305{bottom:398.400000pt;}
.yac{bottom:398.800000pt;}
.yd8{bottom:400.400000pt;}
.y330{bottom:400.533333pt;}
.y14c{bottom:400.933333pt;}
.y2ee{bottom:401.200000pt;}
.y93{bottom:401.466667pt;}
.y131{bottom:403.200000pt;}
.y278{bottom:405.866667pt;}
.y294{bottom:407.600000pt;}
.y119{bottom:408.000000pt;}
.y34d{bottom:408.800000pt;}
.y67{bottom:409.600000pt;}
.yf2{bottom:410.133333pt;}
.yc{bottom:410.666667pt;}
.y1e2{bottom:412.533333pt;}
.y48{bottom:412.933333pt;}
.y267{bottom:413.200000pt;}
.y158{bottom:413.466667pt;}
.y373{bottom:414.933333pt;}
.y204{bottom:415.600000pt;}
.y2a7{bottom:416.000000pt;}
.y304{bottom:416.800000pt;}
.yab{bottom:417.200000pt;}
.yd7{bottom:418.800000pt;}
.y32f{bottom:418.933333pt;}
.y14b{bottom:419.333333pt;}
.y2ed{bottom:419.600000pt;}
.y92{bottom:419.866667pt;}
.y130{bottom:421.600000pt;}
.y2d4{bottom:421.866667pt;}
.y1b3{bottom:424.266667pt;}
.y293{bottom:426.000000pt;}
.y118{bottom:426.400000pt;}
.y23b{bottom:427.600000pt;}
.y66{bottom:428.000000pt;}
.yf1{bottom:428.533333pt;}
.yb{bottom:429.066667pt;}
.y47{bottom:431.333333pt;}
.y266{bottom:431.600000pt;}
.y157{bottom:431.866667pt;}
.y372{bottom:433.333333pt;}
.y17f{bottom:433.600000pt;}
.y17d{bottom:433.733333pt;}
.y203{bottom:434.000000pt;}
.y2a6{bottom:434.400000pt;}
.y303{bottom:435.200000pt;}
.yaa{bottom:435.600000pt;}
.y32e{bottom:437.333333pt;}
.y14a{bottom:437.733333pt;}
.y2ec{bottom:438.000000pt;}
.y91{bottom:438.266667pt;}
.y12f{bottom:440.000000pt;}
.y2d3{bottom:440.266667pt;}
.y1b2{bottom:442.666667pt;}
.y289{bottom:443.733333pt;}
.y292{bottom:444.400000pt;}
.y34c{bottom:445.600000pt;}
.y23a{bottom:446.000000pt;}
.y65{bottom:446.400000pt;}
.ya{bottom:447.466667pt;}
.y1e1{bottom:449.333333pt;}
.y46{bottom:449.733333pt;}
.y265{bottom:450.000000pt;}
.y156{bottom:450.266667pt;}
.y371{bottom:451.733333pt;}
.y202{bottom:452.400000pt;}
.y2a5{bottom:452.800000pt;}
.y117{bottom:453.333333pt;}
.y302{bottom:453.600000pt;}
.ya9{bottom:454.000000pt;}
.y105{bottom:455.466667pt;}
.yd6{bottom:455.600000pt;}
.y149{bottom:456.133333pt;}
.y90{bottom:456.666667pt;}
.y12e{bottom:458.400000pt;}
.y1b1{bottom:461.066667pt;}
.y288{bottom:462.133333pt;}
.y291{bottom:462.800000pt;}
.y34b{bottom:464.000000pt;}
.y64{bottom:464.800000pt;}
.yf0{bottom:465.333333pt;}
.y9{bottom:465.866667pt;}
.y1e0{bottom:467.733333pt;}
.y45{bottom:468.133333pt;}
.y264{bottom:468.400000pt;}
.y155{bottom:468.666667pt;}
.y370{bottom:470.133333pt;}
.y201{bottom:470.800000pt;}
.y2a4{bottom:471.200000pt;}
.y2eb{bottom:471.733333pt;}
.y301{bottom:472.000000pt;}
.ya8{bottom:472.400000pt;}
.yd5{bottom:474.000000pt;}
.y32d{bottom:474.133333pt;}
.y1a3{bottom:474.533333pt;}
.y8f{bottom:475.066667pt;}
.y2d2{bottom:477.066667pt;}
.y17c{bottom:479.466667pt;}
.y287{bottom:480.533333pt;}
.y239{bottom:482.800000pt;}
.y22d{bottom:483.066667pt;}
.y63{bottom:483.200000pt;}
.yef{bottom:483.733333pt;}
.y12d{bottom:485.333333pt;}
.y1df{bottom:486.133333pt;}
.y44{bottom:486.533333pt;}
.y154{bottom:487.066667pt;}
.y36f{bottom:488.533333pt;}
.y2a3{bottom:489.600000pt;}
.y2ea{bottom:490.133333pt;}
.y2fa{bottom:490.400000pt;}
.ya7{bottom:490.800000pt;}
.yd4{bottom:492.400000pt;}
.y32c{bottom:492.533333pt;}
.y148{bottom:492.933333pt;}
.y8e{bottom:493.466667pt;}
.y2d1{bottom:495.466667pt;}
.y322{bottom:495.600000pt;}
.y17b{bottom:497.866667pt;}
.y286{bottom:498.933333pt;}
.y34a{bottom:500.800000pt;}
.y62{bottom:501.600000pt;}
.yee{bottom:502.133333pt;}
.y1de{bottom:504.533333pt;}
.y43{bottom:504.933333pt;}
.y263{bottom:505.200000pt;}
.y153{bottom:505.466667pt;}
.y36e{bottom:506.933333pt;}
.y200{bottom:507.600000pt;}
.y290{bottom:508.000000pt;}
.y2e9{bottom:508.533333pt;}
.y300{bottom:508.800000pt;}
.y116{bottom:508.933333pt;}
.yd3{bottom:510.800000pt;}
.y32b{bottom:510.933333pt;}
.y147{bottom:511.333333pt;}
.y8d{bottom:511.866667pt;}
.y2d0{bottom:513.866667pt;}
.y321{bottom:514.000000pt;}
.y1b0{bottom:516.266667pt;}
.y285{bottom:517.333333pt;}
.y349{bottom:519.200000pt;}
.yed{bottom:520.533333pt;}
.y1dd{bottom:522.933333pt;}
.y42{bottom:523.333333pt;}
.y262{bottom:523.600000pt;}
.y152{bottom:523.866667pt;}
.y36d{bottom:525.333333pt;}
.y1ff{bottom:526.000000pt;}
.y2a2{bottom:526.400000pt;}
.y2f9{bottom:527.200000pt;}
.y115{bottom:527.333333pt;}
.yd2{bottom:529.200000pt;}
.y32a{bottom:529.333333pt;}
.y146{bottom:529.733333pt;}
.y8c{bottom:530.266667pt;}
.y2cf{bottom:532.266667pt;}
.y17a{bottom:534.666667pt;}
.ya6{bottom:536.133333pt;}
.y348{bottom:537.600000pt;}
.y61{bottom:538.400000pt;}
.yec{bottom:538.933333pt;}
.y1dc{bottom:541.333333pt;}
.y41{bottom:541.733333pt;}
.y2e8{bottom:541.866667pt;}
.y261{bottom:542.000000pt;}
.y151{bottom:542.266667pt;}
.y22c{bottom:542.400000pt;}
.y36c{bottom:543.733333pt;}
.y2a1{bottom:544.800000pt;}
.y2f8{bottom:545.600000pt;}
.y114{bottom:545.733333pt;}
.y2e6{bottom:546.266667pt;}
.y320{bottom:547.333333pt;}
.yd1{bottom:547.600000pt;}
.y38b{bottom:548.000000pt;}
.y145{bottom:548.133333pt;}
.y12c{bottom:549.200000pt;}
.y2ce{bottom:550.666667pt;}
.y179{bottom:553.066667pt;}
.y347{bottom:556.000000pt;}
.y60{bottom:556.800000pt;}
.y8b{bottom:557.200000pt;}
.yeb{bottom:557.333333pt;}
.y1db{bottom:559.733333pt;}
.y40{bottom:560.133333pt;}
.y260{bottom:560.400000pt;}
.y22b{bottom:560.800000pt;}
.y36b{bottom:562.133333pt;}
.y284{bottom:562.533333pt;}
.y31f{bottom:562.666667pt;}
.y1fe{bottom:562.800000pt;}
.y28f{bottom:562.933333pt;}
.y2f7{bottom:564.000000pt;}
.y113{bottom:564.133333pt;}
.y2e5{bottom:564.666667pt;}
.yd0{bottom:566.000000pt;}
.y329{bottom:566.133333pt;}
.y144{bottom:566.533333pt;}
.y2cd{bottom:569.066667pt;}
.y178{bottom:571.466667pt;}
.y8{bottom:571.733333pt;}
.y5f{bottom:575.200000pt;}
.yea{bottom:575.733333pt;}
.y28e{bottom:578.266667pt;}
.y3f{bottom:578.533333pt;}
.y31e{bottom:578.666667pt;}
.y25f{bottom:578.800000pt;}
.y36a{bottom:580.533333pt;}
.y1fd{bottom:581.200000pt;}
.y2f6{bottom:582.400000pt;}
.y112{bottom:582.533333pt;}
.y2e4{bottom:583.066667pt;}
.y104{bottom:584.400000pt;}
.y143{bottom:584.933333pt;}
.y177{bottom:589.866667pt;}
.y2a0{bottom:590.133333pt;}
.y38d{bottom:592.533333pt;}
.y346{bottom:592.800000pt;}
.y5e{bottom:593.600000pt;}
.y28d{bottom:593.733333pt;}
.ye9{bottom:594.133333pt;}
.y1da{bottom:596.533333pt;}
.y3e{bottom:596.933333pt;}
.y25e{bottom:597.200000pt;}
.y2ff{bottom:597.333333pt;}
.y390{bottom:598.133333pt;}
.y22a{bottom:598.800000pt;}
.y369{bottom:598.933333pt;}
.y7{bottom:599.333333pt;}
.y1fc{bottom:599.600000pt;}
.y111{bottom:600.933333pt;}
.y2e3{bottom:601.466667pt;}
.ycf{bottom:602.800000pt;}
.y142{bottom:603.333333pt;}
.y12b{bottom:604.533333pt;}
.y166{bottom:605.466667pt;}
.y2cc{bottom:605.866667pt;}
.y1d{bottom:608.266667pt;}
.y2bc{bottom:608.666667pt;}
.y28c{bottom:609.066667pt;}
.ya5{bottom:609.333333pt;}
.y345{bottom:611.200000pt;}
.y5d{bottom:612.000000pt;}
.y8a{bottom:612.533333pt;}
.y38f{bottom:613.466667pt;}
.y328{bottom:614.800000pt;}
.y1d9{bottom:614.933333pt;}
.y3d{bottom:615.333333pt;}
.y25d{bottom:615.600000pt;}
.y385{bottom:617.333333pt;}
.y1fb{bottom:618.000000pt;}
.y229{bottom:618.533333pt;}
.y2f5{bottom:618.666667pt;}
.yce{bottom:621.200000pt;}
.y141{bottom:621.733333pt;}
.y2cb{bottom:624.266667pt;}
.ya4{bottom:624.800000pt;}
.y1c{bottom:626.666667pt;}
.y6{bottom:626.933333pt;}
.y2bb{bottom:627.066667pt;}
.y344{bottom:629.600000pt;}
.y5c{bottom:630.400000pt;}
.y89{bottom:630.933333pt;}
.y1d8{bottom:633.333333pt;}
.y3c{bottom:633.733333pt;}
.y25c{bottom:634.000000pt;}
.y368{bottom:635.733333pt;}
.y1fa{bottom:636.400000pt;}
.y2e2{bottom:638.266667pt;}
.ye8{bottom:639.466667pt;}
.ycd{bottom:639.600000pt;}
.ya3{bottom:640.133333pt;}
.y2ca{bottom:642.666667pt;}
.y1b{bottom:645.066667pt;}
.y2ba{bottom:645.466667pt;}
.y27{bottom:647.466667pt;}
.y343{bottom:648.000000pt;}
.y5b{bottom:648.800000pt;}
.y88{bottom:649.333333pt;}
.y1d7{bottom:651.733333pt;}
.y3b{bottom:652.133333pt;}
.y25b{bottom:652.400000pt;}
.y367{bottom:654.133333pt;}
.y5{bottom:654.533333pt;}
.y283{bottom:654.800000pt;}
.y228{bottom:655.333333pt;}
.y110{bottom:656.666667pt;}
.ycc{bottom:658.000000pt;}
.y1a2{bottom:658.533333pt;}
.y2c9{bottom:661.066667pt;}
.y176{bottom:663.466667pt;}
.y29f{bottom:663.866667pt;}
.y311{bottom:664.133333pt;}
.y26{bottom:665.866667pt;}
.y342{bottom:666.400000pt;}
.y5a{bottom:667.200000pt;}
.y87{bottom:667.733333pt;}
.y3a{bottom:670.533333pt;}
.y366{bottom:672.533333pt;}
.y1f9{bottom:673.200000pt;}
.y10f{bottom:675.066667pt;}
.ycb{bottom:676.400000pt;}
.y1a1{bottom:676.933333pt;}
.y165{bottom:679.200000pt;}
.y2c8{bottom:679.466667pt;}
.y1a{bottom:681.866667pt;}
.y4{bottom:682.133333pt;}
.y140{bottom:682.266667pt;}
.y25{bottom:684.266667pt;}
.y341{bottom:684.800000pt;}
.y86{bottom:686.133333pt;}
.y1d6{bottom:688.533333pt;}
.y1d5{bottom:688.666667pt;}
.y39{bottom:688.933333pt;}
.y25a{bottom:689.200000pt;}
.y365{bottom:690.933333pt;}
.y1f8{bottom:691.600000pt;}
.y227{bottom:692.133333pt;}
.y221{bottom:692.266667pt;}
.yca{bottom:694.800000pt;}
.y1a0{bottom:695.333333pt;}
.y164{bottom:697.600000pt;}
.y19{bottom:700.266667pt;}
.y29e{bottom:700.666667pt;}
.y24{bottom:702.666667pt;}
.y340{bottom:703.200000pt;}
.y59{bottom:704.000000pt;}
.y85{bottom:704.533333pt;}
.y38{bottom:707.333333pt;}
.y259{bottom:707.600000pt;}
.y386{bottom:709.333333pt;}
.y3{bottom:709.733333pt;}
.y1f7{bottom:710.000000pt;}
.y2e1{bottom:711.866667pt;}
.yc9{bottom:713.200000pt;}
.y19f{bottom:713.733333pt;}
.y163{bottom:716.000000pt;}
.y1d0{bottom:716.133333pt;}
.y2c7{bottom:716.266667pt;}
.y175{bottom:718.666667pt;}
.y29d{bottom:719.066667pt;}
.y58{bottom:722.400000pt;}
.y84{bottom:722.933333pt;}
.y37{bottom:725.733333pt;}
.y258{bottom:726.000000pt;}
.y364{bottom:727.733333pt;}
.y1f6{bottom:728.400000pt;}
.y2e0{bottom:729.733333pt;}
.y10e{bottom:730.800000pt;}
.yc8{bottom:731.600000pt;}
.y2b9{bottom:734.000000pt;}
.y2c6{bottom:734.666667pt;}
.y18{bottom:737.066667pt;}
.y29c{bottom:737.466667pt;}
.y57{bottom:740.800000pt;}
.y83{bottom:741.333333pt;}
.y36{bottom:744.133333pt;}
.y257{bottom:744.400000pt;}
.y363{bottom:746.133333pt;}
.y1f5{bottom:746.800000pt;}
.y10d{bottom:749.200000pt;}
.y2b8{bottom:749.333333pt;}
.yc7{bottom:750.000000pt;}
.y19e{bottom:750.533333pt;}
.y220{bottom:751.466667pt;}
.y162{bottom:752.800000pt;}
.y2c5{bottom:753.066667pt;}
.y17{bottom:755.466667pt;}
.y33f{bottom:758.400000pt;}
.y56{bottom:759.200000pt;}
.y82{bottom:759.733333pt;}
.y1cf{bottom:761.866667pt;}
.y1c8{bottom:762.000000pt;}
.y35{bottom:762.533333pt;}
.y256{bottom:762.800000pt;}
.y362{bottom:764.533333pt;}
.y1f4{bottom:765.200000pt;}
.y10c{bottom:767.600000pt;}
.yc6{bottom:768.400000pt;}
.y19d{bottom:768.933333pt;}
.y161{bottom:771.200000pt;}
.y23{bottom:773.866667pt;}
.y29b{bottom:774.266667pt;}
.y33e{bottom:776.800000pt;}
.y55{bottom:777.600000pt;}
.y81{bottom:778.133333pt;}
.y34{bottom:780.933333pt;}
.y255{bottom:781.200000pt;}
.y361{bottom:782.933333pt;}
.y1f3{bottom:783.600000pt;}
.yc5{bottom:786.800000pt;}
.y19c{bottom:787.333333pt;}
.y21f{bottom:788.266667pt;}
.y219{bottom:788.400000pt;}
.y160{bottom:789.600000pt;}
.y16{bottom:792.266667pt;}
.y29a{bottom:792.666667pt;}
.y33d{bottom:795.200000pt;}
.y54{bottom:796.000000pt;}
.y80{bottom:796.533333pt;}
.y31d{bottom:798.266667pt;}
.y33{bottom:799.333333pt;}
.y254{bottom:799.600000pt;}
.y360{bottom:801.333333pt;}
.y2c4{bottom:801.733333pt;}
.y1f2{bottom:802.000000pt;}
.yc4{bottom:805.200000pt;}
.y19b{bottom:805.733333pt;}
.y15f{bottom:808.000000pt;}
.y15{bottom:810.666667pt;}
.y299{bottom:811.066667pt;}
.y33c{bottom:813.600000pt;}
.y31c{bottom:813.733333pt;}
.y53{bottom:814.400000pt;}
.y7f{bottom:814.933333pt;}
.y2c3{bottom:817.200000pt;}
.y32{bottom:817.733333pt;}
.y253{bottom:818.000000pt;}
.y35f{bottom:819.733333pt;}
.y282{bottom:820.400000pt;}
.y10b{bottom:823.333333pt;}
.yc3{bottom:823.600000pt;}
.y19a{bottom:824.133333pt;}
.y15e{bottom:826.400000pt;}
.y218{bottom:826.533333pt;}
.y1f1{bottom:828.800000pt;}
.y14{bottom:829.066667pt;}
.y298{bottom:829.466667pt;}
.y31b{bottom:829.600000pt;}
.y33b{bottom:832.000000pt;}
.y52{bottom:832.800000pt;}
.y7e{bottom:833.333333pt;}
.y31{bottom:836.133333pt;}
.y252{bottom:836.400000pt;}
.y384{bottom:838.133333pt;}
.y281{bottom:838.800000pt;}
.y10a{bottom:841.733333pt;}
.yc2{bottom:842.000000pt;}
.y199{bottom:842.533333pt;}
.y15d{bottom:844.800000pt;}
.y217{bottom:844.933333pt;}
.y13{bottom:847.466667pt;}
.y297{bottom:847.866667pt;}
.y33a{bottom:850.400000pt;}
.y51{bottom:851.200000pt;}
.y7d{bottom:851.733333pt;}
.y30{bottom:854.533333pt;}
.y251{bottom:854.800000pt;}
.y35e{bottom:856.533333pt;}
.y280{bottom:857.200000pt;}
.y109{bottom:860.133333pt;}
.y13f{bottom:860.266667pt;}
.yc1{bottom:860.400000pt;}
.y198{bottom:860.933333pt;}
.y22{bottom:865.866667pt;}
.y296{bottom:866.266667pt;}
.y50{bottom:869.600000pt;}
.y7c{bottom:870.133333pt;}
.y2f{bottom:872.933333pt;}
.y250{bottom:873.200000pt;}
.y35d{bottom:874.933333pt;}
.y27f{bottom:875.600000pt;}
.y108{bottom:878.533333pt;}
.yc0{bottom:878.800000pt;}
.y12{bottom:884.266667pt;}
.y339{bottom:887.200000pt;}
.y4f{bottom:888.000000pt;}
.y7b{bottom:888.533333pt;}
.y15c{bottom:890.133333pt;}
.y2e{bottom:891.333333pt;}
.y24f{bottom:891.600000pt;}
.y35c{bottom:893.333333pt;}
.y107{bottom:896.933333pt;}
.ybf{bottom:897.200000pt;}
.y197{bottom:897.733333pt;}
.y216{bottom:900.133333pt;}
.y21{bottom:902.666667pt;}
.y338{bottom:905.600000pt;}
.y4e{bottom:906.400000pt;}
.y2d{bottom:909.733333pt;}
.y24e{bottom:910.000000pt;}
.y15b{bottom:911.600000pt;}
.y35b{bottom:911.733333pt;}
.y106{bottom:915.333333pt;}
.ybe{bottom:915.600000pt;}
.y196{bottom:916.133333pt;}
.y215{bottom:919.733333pt;}
.y27e{bottom:920.800000pt;}
.y11{bottom:921.066667pt;}
.y337{bottom:924.000000pt;}
.y4d{bottom:924.800000pt;}
.y2c{bottom:928.133333pt;}
.y24d{bottom:928.400000pt;}
.y35a{bottom:930.133333pt;}
.y7a{bottom:933.866667pt;}
.ybd{bottom:934.000000pt;}
.y195{bottom:934.533333pt;}
.y20{bottom:939.466667pt;}
.y336{bottom:942.400000pt;}
.y4c{bottom:943.200000pt;}
.y2b{bottom:946.533333pt;}
.y24c{bottom:946.800000pt;}
.y359{bottom:948.533333pt;}
.y2{bottom:948.933333pt;}
.ybc{bottom:952.400000pt;}
.y194{bottom:952.933333pt;}
.y10{bottom:957.866667pt;}
.y4b{bottom:961.600000pt;}
.y2a{bottom:964.933333pt;}
.y24b{bottom:965.200000pt;}
.y358{bottom:966.933333pt;}
.ybb{bottom:970.800000pt;}
.y193{bottom:971.333333pt;}
.yf{bottom:976.266667pt;}
.y335{bottom:979.200000pt;}
.y29{bottom:983.333333pt;}
.y79{bottom:989.200000pt;}
.y15a{bottom:990.666667pt;}
.y192{bottom:990.933333pt;}
.y1f{bottom:994.666667pt;}
.y4a{bottom:1003.733333pt;}
.y78{bottom:1007.600000pt;}
.y24a{bottom:1010.400000pt;}
.y28{bottom:1010.800000pt;}
.y191{bottom:1011.733333pt;}
.ye{bottom:1013.066667pt;}
.y334{bottom:1015.466667pt;}
.y77{bottom:1026.000000pt;}
.y38a{bottom:1047.200000pt;}
.y383{bottom:1060.266667pt;}
.y389{bottom:1062.666667pt;}
.y49{bottom:1062.800000pt;}
.h2e{height:19.256250pt;}
.h23{height:19.996875pt;}
.h27{height:20.367188pt;}
.h32{height:21.333333pt;}
.h1f{height:22.666667pt;}
.h34{height:23.329687pt;}
.he{height:24.000000pt;}
.h31{height:24.334375pt;}
.h21{height:25.921875pt;}
.h11{height:32.000000pt;}
.h1c{height:32.757812pt;}
.h2d{height:32.957813pt;}
.h15{height:34.068750pt;}
.h22{height:34.666667pt;}
.h26{height:34.809375pt;}
.h7{height:37.031250pt;}
.h25{height:37.466667pt;}
.h2a{height:37.600000pt;}
.h33{height:39.623437pt;}
.h30{height:41.649219pt;}
.h13{height:43.053125pt;}
.h5{height:43.375000pt;}
.h9{height:43.812500pt;}
.h2c{height:43.966927pt;}
.h29{height:43.989063pt;}
.hd{height:44.437500pt;}
.h1a{height:45.333333pt;}
.h2f{height:45.521907pt;}
.hc{height:46.796875pt;}
.h24{height:47.074065pt;}
.h14{height:47.770312pt;}
.h28{height:48.039835pt;}
.h1e{height:52.588542pt;}
.h36{height:52.859115pt;}
.ha{height:54.541667pt;}
.h35{height:54.627194pt;}
.h3{height:56.156250pt;}
.h18{height:57.824479pt;}
.h4{height:57.833333pt;}
.h2b{height:58.293229pt;}
.hf{height:59.281250pt;}
.h12{height:60.367969pt;}
.h19{height:61.247396pt;}
.h10{height:61.371711pt;}
.h16{height:63.727344pt;}
.h17{height:65.897717pt;}
.hb{height:67.411458pt;}
.h2{height:69.890625pt;}
.h6{height:77.041667pt;}
.h1b{height:78.053646pt;}
.h20{height:78.547656pt;}
.h8{height:81.856771pt;}
.h1d{height:120.186979pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w6{width:33.333333pt;}
.w7{width:38.666667pt;}
.w5{width:52.000000pt;}
.wb{width:68.133333pt;}
.w4{width:137.333333pt;}
.wa{width:156.533333pt;}
.w3{width:161.333333pt;}
.w1{width:188.000000pt;}
.w9{width:199.066667pt;}
.w8{width:200.000000pt;}
.w2{width:436.133333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2f{left:2.000000pt;}
.x44{left:3.731494pt;}
.x3c{left:8.664722pt;}
.x37{left:9.733333pt;}
.x32{left:10.933333pt;}
.x23{left:13.200000pt;}
.x2d{left:14.266667pt;}
.x33{left:15.600000pt;}
.x35{left:16.800000pt;}
.x36{left:21.600000pt;}
.x3b{left:27.732171pt;}
.x1e{left:29.600000pt;}
.x2e{left:35.466667pt;}
.x2a{left:36.666667pt;}
.x54{left:39.200000pt;}
.x48{left:42.001118pt;}
.x1c{left:43.066667pt;}
.x4c{left:44.268100pt;}
.x53{left:47.600000pt;}
.x28{left:49.200000pt;}
.x21{left:52.133333pt;}
.x52{left:58.400000pt;}
.x47{left:61.067110pt;}
.x18{left:62.133333pt;}
.x43{left:69.732615pt;}
.x46{left:74.800953pt;}
.x5{left:75.733333pt;}
.x29{left:76.800000pt;}
.x50{left:78.933333pt;}
.x20{left:82.000000pt;}
.x19{left:88.935640pt;}
.x4b{left:92.401791pt;}
.x6{left:94.666667pt;}
.x3a{left:97.465824pt;}
.x4f{left:98.801195pt;}
.x27{left:100.000000pt;}
.x4e{left:102.400578pt;}
.x26{left:103.466667pt;}
.x24{left:111.872240pt;}
.x2{left:113.600000pt;}
.x1d{left:115.733333pt;}
.x25{left:116.666667pt;}
.x4{left:119.066667pt;}
.xa{left:120.400000pt;}
.xf{left:122.000000pt;}
.xc{left:125.600000pt;}
.x22{left:128.533333pt;}
.x42{left:129.866083pt;}
.x4d{left:133.066667pt;}
.x1a{left:134.800000pt;}
.x57{left:137.600000pt;}
.x1f{left:138.800000pt;}
.x41{left:140.800613pt;}
.x8{left:142.400000pt;}
.x1b{left:146.666667pt;}
.x4a{left:149.866667pt;}
.xb{left:152.000000pt;}
.xd{left:161.333333pt;}
.x40{left:167.866742pt;}
.x2c{left:174.266667pt;}
.x3f{left:178.667561pt;}
.xe{left:180.533333pt;}
.x3e{left:182.266667pt;}
.x39{left:184.933923pt;}
.x38{left:188.400000pt;}
.x3d{left:192.266667pt;}
.x30{left:226.533333pt;}
.x14{left:229.200000pt;}
.x55{left:269.600000pt;}
.x2b{left:298.933333pt;}
.x51{left:318.266667pt;}
.x16{left:322.400000pt;}
.x10{left:349.600000pt;}
.x49{left:360.666667pt;}
.x45{left:361.733333pt;}
.x56{left:387.066667pt;}
.x9{left:389.066667pt;}
.x7{left:393.066667pt;}
.x15{left:395.333333pt;}
.x13{left:408.266667pt;}
.x12{left:416.800000pt;}
.x11{left:424.800000pt;}
.x1{left:426.000000pt;}
.x3{left:431.600000pt;}
.x31{left:448.800000pt;}
.x34{left:482.266667pt;}
.x17{left:597.866667pt;}
.x58{left:623.200000pt;}
}




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