
    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_b9363849e4239b6ddfd97146.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e45cafe8b82460072ec5f1fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7f2c1d64f7eb7fa918e24226.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4bd354cff46d6aaba202449a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_145f8f7b81817eebcd3193e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.222000;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_93329e48a95226ca3f63a1ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.920000;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_a108d611d1d250febbfe1aab.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b6b7d2a24f8bc122698e9e7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688000;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_61ae7e2b38014d41585c74f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722000;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_b1ce1c96e8416738c18aec4a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.762000;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_d065996abb943a204da92db8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.728000;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_098ef228bf65f0b1729277bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.701000;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_9dcd4eced99fbd7013e5c747.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9b221e27d756ab1c2c05f7c0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_55b14171bf97e0364f53e38d.woff2')format("woff");}.fff{font-family:fff;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_69364b6eee7f43e4567d5b73.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.834000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9e6abc35311f376f65c474bd.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.799000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ee14811083dd4a2c4c99c20d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.459000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1a64162eaf99fc704f21e292.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_3299161c92a4f273793f925e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a56e81fdc534eea3ba68ba80.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.701000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_34eee9ce87d6d182f25c7233.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_9d918d274fc76a970e1d1efd.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.701000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_1a64162eaf99fc704f21e292.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_2db6ca29206b533cf1adb8bf.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.668000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_5bc61f6eaf59a23cf8a09774.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.700000;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:ff1b;src:url('chunks/assets/font_08f458318e9dc886d5dd59cc.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.668000;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:ff1c;src:url('chunks/assets/font_9d2c4a9e9c02d182427db6b3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.000000px;}
.v3{vertical-align:-15.000000px;}
.v9{vertical-align:-13.500000px;}
.vb{vertical-align:-12.000000px;}
.v8{vertical-align:-8.540405px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v6{vertical-align:8.540405px;}
.v5{vertical-align:14.700073px;}
.vc{vertical-align:18.000000px;}
.v7{vertical-align:23.575195px;}
.v2{vertical-align:26.399760px;}
.va{vertical-align:54.000000px;}
.ls24{letter-spacing:-4.752000px;}
.ls36{letter-spacing:-2.205000px;}
.ls1c{letter-spacing:-0.946680px;}
.ls19{letter-spacing:-0.823200px;}
.ls1a{letter-spacing:-0.782040px;}
.ls21{letter-spacing:-0.768000px;}
.ls22{letter-spacing:-0.672000px;}
.ls1b{letter-spacing:-0.576240px;}
.ls35{letter-spacing:-0.529200px;}
.ls23{letter-spacing:-0.384000px;}
.ls1e{letter-spacing:-0.352800px;}
.ls18{letter-spacing:-0.235200px;}
.ls27{letter-spacing:-0.205800px;}
.ls1f{letter-spacing:-0.151200px;}
.ls20{letter-spacing:-0.134400px;}
.ls5{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.000070px;}
.ls34{letter-spacing:0.000076px;}
.ls1{letter-spacing:0.000180px;}
.ls2d{letter-spacing:0.002512px;}
.ls32{letter-spacing:0.010800px;}
.ls2b{letter-spacing:0.016135px;}
.ls2c{letter-spacing:0.018593px;}
.ls14{letter-spacing:0.020340px;}
.ls30{letter-spacing:0.023245px;}
.ls2a{letter-spacing:0.023312px;}
.ls25{letter-spacing:0.023388px;}
.ls29{letter-spacing:0.023408px;}
.ls1d{letter-spacing:0.025392px;}
.ls2e{letter-spacing:0.093509px;}
.ls28{letter-spacing:0.106621px;}
.ls31{letter-spacing:0.370440px;}
.ls8{letter-spacing:0.787920px;}
.lsa{letter-spacing:0.823174px;}
.ls2{letter-spacing:0.823200px;}
.ls2f{letter-spacing:0.856765px;}
.ls3{letter-spacing:0.893760px;}
.ls9{letter-spacing:0.905520px;}
.ls13{letter-spacing:2.849325px;}
.lsd{letter-spacing:3.557628px;}
.lsf{letter-spacing:3.560557px;}
.ls0{letter-spacing:5.460000px;}
.ls7{letter-spacing:6.543953px;}
.ls12{letter-spacing:7.454041px;}
.ls6{letter-spacing:7.533794px;}
.ls17{letter-spacing:9.529822px;}
.ls16{letter-spacing:9.558354px;}
.ls4{letter-spacing:10.393337px;}
.lse{letter-spacing:12.668386px;}
.ls26{letter-spacing:13.488000px;}
.lsc{letter-spacing:15.864014px;}
.ls15{letter-spacing:16.719986px;}
.lsb{letter-spacing:19.379039px;}
.ls11{letter-spacing:19.431773px;}
.ls10{letter-spacing:66.594622px;}
.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;}
}
.ws8b{word-spacing:-15.984000px;}
.ws7c{word-spacing:-14.641200px;}
.ws6{word-spacing:-13.818000px;}
.ws119{word-spacing:-13.288800px;}
.ws2{word-spacing:-12.483600px;}
.ws3{word-spacing:-12.420000px;}
.ws8e{word-spacing:-11.348400px;}
.wsca{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.448328px;}
.ws0{word-spacing:-10.176000px;}
.ws1{word-spacing:-10.117800px;}
.wseb{word-spacing:-10.043040px;}
.ws82{word-spacing:-9.936000px;}
.wsb{word-spacing:-9.855000px;}
.ws28{word-spacing:-9.672600px;}
.ws2d{word-spacing:-9.615419px;}
.wsa5{word-spacing:-9.466800px;}
.ws11b{word-spacing:-9.315000px;}
.ws5{word-spacing:-9.198000px;}
.ws26{word-spacing:-9.096360px;}
.ws25{word-spacing:-8.890560px;}
.ws27{word-spacing:-8.725920px;}
.ws22{word-spacing:-7.533794px;}
.ws7e{word-spacing:-7.484400px;}
.wscb{word-spacing:-7.358400px;}
.wsa{word-spacing:-6.898500px;}
.ws81{word-spacing:-6.652800px;}
.ws23{word-spacing:-6.543953px;}
.ws95{word-spacing:-6.468000px;}
.wsa3{word-spacing:-4.512000px;}
.wsa1{word-spacing:-4.158000px;}
.wsa2{word-spacing:-3.936000px;}
.ws128{word-spacing:-3.870000px;}
.ws126{word-spacing:-1.800000px;}
.wsb2{word-spacing:-1.117200px;}
.ws31{word-spacing:-0.823200px;}
.wsd{word-spacing:-0.780000px;}
.wsda{word-spacing:-0.705600px;}
.ws5e{word-spacing:-0.411600px;}
.ws6e{word-spacing:-0.352800px;}
.wsb7{word-spacing:-0.235200px;}
.wsf7{word-spacing:-0.117600px;}
.ws9{word-spacing:-0.073321px;}
.ws4{word-spacing:-0.060000px;}
.ws7b{word-spacing:-0.058820px;}
.ws7{word-spacing:-0.058800px;}
.ws2a{word-spacing:-0.057065px;}
.ws7d{word-spacing:-0.054000px;}
.ws80{word-spacing:-0.048000px;}
.ws11a{word-spacing:-0.045000px;}
.wsc{word-spacing:0.000000px;}
.wscd{word-spacing:0.058800px;}
.wsc9{word-spacing:0.117600px;}
.ws24{word-spacing:0.176400px;}
.ws3d{word-spacing:0.235200px;}
.ws8f{word-spacing:0.294000px;}
.ws67{word-spacing:0.352800px;}
.wsce{word-spacing:0.411600px;}
.ws103{word-spacing:0.588000px;}
.ws46{word-spacing:0.705600px;}
.ws29{word-spacing:0.764400px;}
.wsa4{word-spacing:0.768000px;}
.ws5c{word-spacing:0.823200px;}
.ws100{word-spacing:0.882000px;}
.wsed{word-spacing:0.940800px;}
.ws33{word-spacing:1.117200px;}
.ws7a{word-spacing:1.234800px;}
.ws2e{word-spacing:1.411200px;}
.ws11{word-spacing:1.470000px;}
.ws35{word-spacing:1.528800px;}
.ws4a{word-spacing:1.587600px;}
.ws6d{word-spacing:1.646400px;}
.ws120{word-spacing:1.705200px;}
.ws79{word-spacing:1.822800px;}
.ws1e{word-spacing:1.881600px;}
.ws1d{word-spacing:1.940400px;}
.ws9d{word-spacing:1.999200px;}
.wsa0{word-spacing:2.106000px;}
.ws5b{word-spacing:2.116800px;}
.wsbf{word-spacing:2.175600px;}
.ws127{word-spacing:2.205000px;}
.ws45{word-spacing:2.234400px;}
.ws8d{word-spacing:2.293200px;}
.ws1f{word-spacing:2.352000px;}
.ws60{word-spacing:2.410800px;}
.ws48{word-spacing:2.469600px;}
.ws64{word-spacing:2.646000px;}
.ws32{word-spacing:2.704800px;}
.ws6f{word-spacing:2.763600px;}
.ws47{word-spacing:2.881200px;}
.ws108{word-spacing:2.940000px;}
.wsb9{word-spacing:2.998800px;}
.ws112{word-spacing:3.057600px;}
.ws105{word-spacing:3.116400px;}
.ws49{word-spacing:3.292800px;}
.ws9b{word-spacing:3.351600px;}
.wsba{word-spacing:3.410400px;}
.ws3b{word-spacing:3.469200px;}
.ws77{word-spacing:3.528000px;}
.wsec{word-spacing:3.586800px;}
.wsc7{word-spacing:3.645600px;}
.wsb6{word-spacing:3.704400px;}
.ws9e{word-spacing:3.763200px;}
.ws90{word-spacing:3.822000px;}
.wsd8{word-spacing:3.939600px;}
.wsb4{word-spacing:3.998400px;}
.ws20{word-spacing:4.057200px;}
.wsff{word-spacing:4.116000px;}
.ws15{word-spacing:4.233600px;}
.ws68{word-spacing:4.292400px;}
.ws65{word-spacing:4.527600px;}
.ws122{word-spacing:4.586400px;}
.ws36{word-spacing:4.645200px;}
.ws78{word-spacing:4.704000px;}
.ws94{word-spacing:4.762800px;}
.ws4d{word-spacing:4.939200px;}
.wsf4{word-spacing:4.998000px;}
.ws8c{word-spacing:5.115600px;}
.ws11f{word-spacing:5.174400px;}
.ws93{word-spacing:5.233200px;}
.wsa9{word-spacing:5.292000px;}
.ws106{word-spacing:5.350800px;}
.wsc0{word-spacing:5.468400px;}
.wsf5{word-spacing:5.586000px;}
.wsd0{word-spacing:5.644800px;}
.ws10{word-spacing:5.703600px;}
.ws11c{word-spacing:5.821200px;}
.wsc6{word-spacing:5.880000px;}
.ws76{word-spacing:5.997600px;}
.ws18{word-spacing:6.056400px;}
.ws71{word-spacing:6.115200px;}
.ws53{word-spacing:6.291600px;}
.ws10f{word-spacing:6.350400px;}
.wsea{word-spacing:6.409200px;}
.ws52{word-spacing:6.468000px;}
.ws91{word-spacing:6.526800px;}
.ws104{word-spacing:6.585600px;}
.ws44{word-spacing:6.644400px;}
.ws6a{word-spacing:6.762000px;}
.ws10a{word-spacing:6.820800px;}
.wsef{word-spacing:6.879600px;}
.ws57{word-spacing:6.938400px;}
.ws41{word-spacing:6.997200px;}
.ws10e{word-spacing:7.114800px;}
.wsde{word-spacing:7.173600px;}
.ws99{word-spacing:7.232400px;}
.ws58{word-spacing:7.291200px;}
.ws56{word-spacing:7.350000px;}
.wse5{word-spacing:7.408800px;}
.ws92{word-spacing:7.467600px;}
.wsb5{word-spacing:7.526400px;}
.ws113{word-spacing:7.644000px;}
.wsdd{word-spacing:7.702800px;}
.wse9{word-spacing:7.761600px;}
.wse1{word-spacing:7.820400px;}
.wsd9{word-spacing:7.938000px;}
.wsd4{word-spacing:8.055600px;}
.ws6c{word-spacing:8.114400px;}
.wsf{word-spacing:8.173200px;}
.ws1a{word-spacing:8.290800px;}
.ws111{word-spacing:8.349600px;}
.wsc4{word-spacing:8.408400px;}
.ws54{word-spacing:8.526000px;}
.wsaf{word-spacing:8.643600px;}
.wsd6{word-spacing:8.702400px;}
.ws38{word-spacing:8.878800px;}
.ws30{word-spacing:8.937600px;}
.ws5f{word-spacing:8.996400px;}
.ws6b{word-spacing:9.114000px;}
.wsfd{word-spacing:9.172800px;}
.ws17{word-spacing:9.231600px;}
.ws98{word-spacing:9.290400px;}
.wsbd{word-spacing:9.466800px;}
.ws2b{word-spacing:9.472757px;}
.ws115{word-spacing:9.525600px;}
.wsa8{word-spacing:9.584400px;}
.ws74{word-spacing:9.702000px;}
.wsc5{word-spacing:9.996000px;}
.ws66{word-spacing:10.231200px;}
.wsdf{word-spacing:10.290000px;}
.ws63{word-spacing:10.348800px;}
.ws4b{word-spacing:10.407600px;}
.ws43{word-spacing:10.466400px;}
.ws10c{word-spacing:10.525200px;}
.wsaa{word-spacing:10.584000px;}
.ws96{word-spacing:10.642800px;}
.ws4f{word-spacing:10.760400px;}
.wse3{word-spacing:10.819200px;}
.ws2f{word-spacing:10.878000px;}
.wsd1{word-spacing:10.936800px;}
.wsbc{word-spacing:11.054400px;}
.wsb1{word-spacing:11.289600px;}
.wsbb{word-spacing:11.407200px;}
.wsf1{word-spacing:11.466000px;}
.wsfa{word-spacing:11.524800px;}
.ws37{word-spacing:11.583600px;}
.ws118{word-spacing:11.642400px;}
.ws125{word-spacing:11.818800px;}
.wsad{word-spacing:11.877600px;}
.wsfb{word-spacing:12.112800px;}
.wsd7{word-spacing:12.171600px;}
.wsa6{word-spacing:12.230400px;}
.wsd2{word-spacing:12.289200px;}
.ws14{word-spacing:12.524400px;}
.wsf0{word-spacing:12.583200px;}
.ws97{word-spacing:12.642000px;}
.ws13{word-spacing:12.700800px;}
.ws1b{word-spacing:12.759600px;}
.wse8{word-spacing:12.877200px;}
.wse0{word-spacing:12.936000px;}
.wsdb{word-spacing:13.053600px;}
.wsf3{word-spacing:13.112400px;}
.ws116{word-spacing:13.171200px;}
.ws73{word-spacing:13.230000px;}
.ws55{word-spacing:13.288800px;}
.ws50{word-spacing:13.406400px;}
.wsb3{word-spacing:13.524000px;}
.ws9a{word-spacing:13.582800px;}
.wsbe{word-spacing:13.700400px;}
.ws114{word-spacing:13.759200px;}
.ws3f{word-spacing:13.818000px;}
.ws42{word-spacing:13.876800px;}
.ws39{word-spacing:13.935600px;}
.ws9c{word-spacing:13.994400px;}
.ws40{word-spacing:14.112000px;}
.ws5a{word-spacing:14.170800px;}
.wsc1{word-spacing:14.229600px;}
.wse4{word-spacing:14.406000px;}
.ws19{word-spacing:14.523600px;}
.wsb8{word-spacing:14.582400px;}
.ws3a{word-spacing:14.700000px;}
.wsb0{word-spacing:14.817600px;}
.ws1c{word-spacing:14.876400px;}
.ws12{word-spacing:15.170400px;}
.ws75{word-spacing:15.229200px;}
.ws16{word-spacing:15.523200px;}
.ws109{word-spacing:15.640800px;}
.ws101{word-spacing:15.758400px;}
.wsc8{word-spacing:15.817200px;}
.wsd5{word-spacing:16.346400px;}
.wsf8{word-spacing:16.405200px;}
.ws5d{word-spacing:16.464000px;}
.ws62{word-spacing:16.875600px;}
.wsab{word-spacing:17.110800px;}
.wsee{word-spacing:17.228400px;}
.wscf{word-spacing:17.404800px;}
.ws11e{word-spacing:17.640000px;}
.ws61{word-spacing:17.875200px;}
.ws11d{word-spacing:17.934000px;}
.wsdc{word-spacing:18.169200px;}
.wsf6{word-spacing:18.228000px;}
.ws123{word-spacing:18.286800px;}
.wsa7{word-spacing:18.463200px;}
.wsc3{word-spacing:18.757200px;}
.ws110{word-spacing:18.933600px;}
.wsfe{word-spacing:18.992400px;}
.wsac{word-spacing:19.051200px;}
.ws9f{word-spacing:19.110000px;}
.ws102{word-spacing:19.227600px;}
.ws107{word-spacing:19.698000px;}
.ws69{word-spacing:19.992000px;}
.ws3c{word-spacing:20.227200px;}
.ws124{word-spacing:20.697600px;}
.wsd3{word-spacing:20.756400px;}
.wse6{word-spacing:20.874000px;}
.wsf9{word-spacing:21.756000px;}
.wsfc{word-spacing:21.932400px;}
.ws121{word-spacing:22.050000px;}
.ws4c{word-spacing:22.402800px;}
.wse2{word-spacing:22.461600px;}
.ws10d{word-spacing:22.755600px;}
.wscc{word-spacing:23.872800px;}
.wse7{word-spacing:23.990400px;}
.wsf2{word-spacing:24.754800px;}
.ws10b{word-spacing:24.872400px;}
.wse{word-spacing:24.931200px;}
.ws117{word-spacing:25.519200px;}
.wsae{word-spacing:25.695600px;}
.wsc2{word-spacing:26.048400px;}
.ws51{word-spacing:26.342400px;}
.ws4e{word-spacing:26.930400px;}
.ws72{word-spacing:27.871200px;}
.ws59{word-spacing:28.282800px;}
.ws34{word-spacing:28.812000px;}
.ws70{word-spacing:28.988400px;}
.ws3e{word-spacing:29.282400px;}
.ws7f{word-spacing:29.750992px;}
.ws21{word-spacing:35.397600px;}
.ws2c{word-spacing:56.950670px;}
.ws8a{word-spacing:115.584000px;}
.ws89{word-spacing:157.391990px;}
.ws85{word-spacing:175.631992px;}
.ws87{word-spacing:177.791992px;}
.ws86{word-spacing:180.575990px;}
.ws84{word-spacing:184.176000px;}
.ws88{word-spacing:201.119992px;}
.ws83{word-spacing:201.983990px;}
._5d{margin-left:-31.827395px;}
._5c{margin-left:-28.006815px;}
._5e{margin-left:-25.492629px;}
._5f{margin-left:-21.638774px;}
._17{margin-left:-19.470060px;}
._f{margin-left:-17.556000px;}
._10{margin-left:-16.472985px;}
._60{margin-left:-15.269900px;}
._11{margin-left:-14.189943px;}
._15{margin-left:-11.877606px;}
._14{margin-left:-10.760400px;}
._13{margin-left:-9.702000px;}
._4{margin-left:-7.014000px;}
._8{margin-left:-5.284740px;}
._1{margin-left:-3.744000px;}
._6{margin-left:-2.664720px;}
._0{margin-left:-1.540800px;}
._3{width:1.396800px;}
._2{width:3.110400px;}
._c{width:4.609200px;}
._d{width:5.974713px;}
._e{width:7.850040px;}
._a{width:9.108359px;}
._b{width:10.560480px;}
._16{width:12.177487px;}
._12{width:13.277040px;}
._18{width:14.724720px;}
._9{width:15.829200px;}
._7{width:17.380800px;}
._5b{width:18.565920px;}
._61{width:20.594391px;}
._64{width:22.284000px;}
._4a{width:30.964740px;}
._5{width:38.644740px;}
._27{width:39.844740px;}
._58{width:41.719363px;}
._23{width:43.012740px;}
._62{width:44.244000px;}
._51{width:45.744000px;}
._63{width:48.240000px;}
._31{width:51.460790px;}
._25{width:54.388740px;}
._49{width:58.848000px;}
._36{width:62.640008px;}
._4f{width:65.035190px;}
._2c{width:66.436740px;}
._4e{width:72.192000px;}
._26{width:74.352000px;}
._3c{width:82.224000px;}
._19{width:88.608052px;}
._33{width:97.728000px;}
._41{width:98.735990px;}
._1f{width:99.936000px;}
._3b{width:102.143990px;}
._24{width:105.696000px;}
._4b{width:108.475200px;}
._53{width:120.619260px;}
._2a{width:121.915190px;}
._46{width:124.080000px;}
._21{width:125.519989px;}
._3f{width:129.072000px;}
._1d{width:135.359995px;}
._38{width:144.624000px;}
._29{width:146.832000px;}
._5a{width:149.856000px;}
._2d{width:152.544000px;}
._3e{width:156.719990px;}
._52{width:161.423990px;}
._1a{width:164.495990px;}
._37{width:175.920000px;}
._50{width:177.263992px;}
._28{width:178.271992px;}
._4c{width:179.472002px;}
._1e{width:180.767990px;}
._54{width:182.159992px;}
._2e{width:183.983992px;}
._59{width:186.527992px;}
._40{width:188.447992px;}
._4d{width:189.935992px;}
._35{width:192.379200px;}
._3d{width:194.591992px;}
._20{width:197.232002px;}
._34{width:201.071992px;}
._43{width:204.335992px;}
._45{width:205.348790px;}
._42{width:208.127992px;}
._47{width:212.063992px;}
._44{width:214.276800px;}
._48{width:215.663989px;}
._30{width:224.351989px;}
._55{width:226.703990px;}
._3a{width:227.760000px;}
._39{width:229.151990px;}
._56{width:232.084790px;}
._2f{width:233.520000px;}
._22{width:238.560000px;}
._57{width:244.416000px;}
._32{width:252.907190px;}
._2b{width:261.936000px;}
._1c{width:270.153605px;}
._1b{width:476.406557px;}
.fc4{color:transparent;}
.fc3{color:rgb(36,43,100);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:31.500000px;}
.fs15{font-size:33.600000px;}
.fs14{font-size:37.800000px;}
.fse{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fs10{font-size:43.368599px;}
.fs12{font-size:44.702399px;}
.fsb{font-size:45.000000px;}
.fs4{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs13{font-size:54.000000px;}
.fsa{font-size:54.991200px;}
.fsd{font-size:55.199999px;}
.fsf{font-size:57.064800px;}
.fs8{font-size:58.800000px;}
.fs11{font-size:58.819800px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:73.321200px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:2.294243px;}
.yb7{bottom:2.894394px;}
.y3d{bottom:4.582755px;}
.yaf{bottom:9.269096px;}
.y3c{bottom:22.149990px;}
.yb1{bottom:25.103405px;}
.y39{bottom:39.715575px;}
.y1f{bottom:75.191250px;}
.y1e{bottom:87.192750px;}
.yae{bottom:96.896999px;}
.y1d{bottom:99.194250px;}
.y169{bottom:99.447145px;}
.y178{bottom:99.461545px;}
.yc7{bottom:100.968752px;}
.yb0{bottom:104.030994px;}
.y7a{bottom:105.899695px;}
.yb2{bottom:106.166096px;}
.y19f{bottom:106.635295px;}
.y125{bottom:107.502445px;}
.y113{bottom:107.538457px;}
.y202{bottom:107.737953px;}
.y1c{bottom:111.195750px;}
.yd2{bottom:115.774799px;}
.y149{bottom:115.939945px;}
.y168{bottom:117.439945px;}
.y177{bottom:117.454345px;}
.yc6{bottom:118.961552px;}
.y201{bottom:121.237953px;}
.y1b{bottom:123.197250px;}
.y79{bottom:123.892495px;}
.y19e{bottom:124.628095px;}
.y112{bottom:125.531257px;}
.y124{bottom:125.545657px;}
.yd1{bottom:133.767599px;}
.y153{bottom:133.947145px;}
.y148{bottom:133.961545px;}
.y200{bottom:134.737953px;}
.y167{bottom:135.439945px;}
.y176{bottom:135.447145px;}
.yc5{bottom:136.968752px;}
.y23a{bottom:138.342750px;}
.y78{bottom:141.885295px;}
.y19d{bottom:142.620895px;}
.yad{bottom:143.082300px;}
.y111{bottom:143.524057px;}
.y123{bottom:143.538457px;}
.y1ff{bottom:148.249203px;}
.yd0{bottom:151.760399px;}
.y152{bottom:151.939945px;}
.y147{bottom:151.954345px;}
.y175{bottom:153.439945px;}
.y166{bottom:153.447145px;}
.yc4{bottom:154.961552px;}
.y45{bottom:158.893800px;}
.y77{bottom:159.878095px;}
.y1ce{bottom:160.635295px;}
.y19c{bottom:160.685695px;}
.yac{bottom:161.125649px;}
.y110{bottom:161.516857px;}
.y122{bottom:161.531257px;}
.y1fe{bottom:161.749203px;}
.y13a{bottom:162.759293px;}
.y239{bottom:165.342750px;}
.ycf{bottom:169.767599px;}
.y146{bottom:169.947145px;}
.y151{bottom:169.961557px;}
.y165{bottom:171.439945px;}
.y174{bottom:171.461557px;}
.y44{bottom:172.393800px;}
.yc3{bottom:172.961552px;}
.y36{bottom:173.977050px;}
.y139{bottom:177.759293px;}
.y76{bottom:177.870895px;}
.y1cd{bottom:178.628095px;}
.y19b{bottom:178.678495px;}
.y238{bottom:178.842750px;}
.yab{bottom:179.118449px;}
.y10f{bottom:179.509657px;}
.y121{bottom:179.524057px;}
.y1fd{bottom:181.245453px;}
.yce{bottom:187.760399px;}
.y145{bottom:187.947157px;}
.y150{bottom:187.954357px;}
.y164{bottom:189.447157px;}
.y173{bottom:189.454357px;}
.y43{bottom:190.393800px;}
.y35{bottom:191.969850px;}
.y237{bottom:192.342750px;}
.y138{bottom:192.759293px;}
.y1fc{bottom:194.745453px;}
.y75{bottom:195.928495px;}
.y1cc{bottom:196.620895px;}
.y19a{bottom:196.671295px;}
.yaa{bottom:197.111249px;}
.y10e{bottom:197.502457px;}
.y120{bottom:197.516857px;}
.y42{bottom:199.393800px;}
.ycd{bottom:205.796399px;}
.y144{bottom:205.947157px;}
.y163{bottom:207.447157px;}
.y137{bottom:207.759293px;}
.y1fb{bottom:208.245453px;}
.y34{bottom:209.962650px;}
.y41{bottom:212.893800px;}
.y74{bottom:213.921295px;}
.y1cb{bottom:214.656895px;}
.y199{bottom:214.664095px;}
.ya9{bottom:215.104049px;}
.y10d{bottom:215.509657px;}
.y1fa{bottom:221.745453px;}
.y136{bottom:222.759293px;}
.yc2{bottom:223.760399px;}
.ycc{bottom:223.789199px;}
.y14f{bottom:223.947157px;}
.y143{bottom:223.990196px;}
.y162{bottom:225.439957px;}
.y33{bottom:227.955450px;}
.y236{bottom:228.342728px;}
.y40{bottom:230.893800px;}
.y73{bottom:231.914095px;}
.y1ca{bottom:232.649695px;}
.y198{bottom:232.656895px;}
.ya8{bottom:233.096849px;}
.y11f{bottom:233.502457px;}
.y10c{bottom:233.574319px;}
.y1f9{bottom:235.245453px;}
.y135{bottom:237.759293px;}
.yc1{bottom:241.781999px;}
.y235{bottom:241.842728px;}
.y14e{bottom:241.939957px;}
.y142{bottom:241.982996px;}
.y161{bottom:243.447157px;}
.y172{bottom:243.507131px;}
.y3f{bottom:244.393800px;}
.y32{bottom:245.948250px;}
.y72{bottom:249.906895px;}
.y1c9{bottom:250.642495px;}
.y197{bottom:250.649695px;}
.ya7{bottom:251.089649px;}
.y11e{bottom:251.502457px;}
.y10b{bottom:251.567119px;}
.y134{bottom:252.759293px;}
.y3e{bottom:253.393800px;}
.y1f8{bottom:254.741703px;}
.y234{bottom:255.342728px;}
.yc0{bottom:259.774799px;}
.y14d{bottom:259.947157px;}
.y141{bottom:259.975796px;}
.y160{bottom:261.439957px;}
.y171{bottom:261.499931px;}
.y275{bottom:262.842773px;}
.y31{bottom:264.005880px;}
.y133{bottom:267.759293px;}
.y71{bottom:267.899695px;}
.y1f7{bottom:268.241703px;}
.y1c8{bottom:268.635295px;}
.y196{bottom:268.642495px;}
.y233{bottom:268.842728px;}
.ya6{bottom:269.082449px;}
.y11d{bottom:269.509496px;}
.y10a{bottom:269.559919px;}
.y274{bottom:276.342773px;}
.ybf{bottom:277.767599px;}
.y14c{bottom:277.939957px;}
.y140{bottom:277.968596px;}
.y15f{bottom:279.439957px;}
.y170{bottom:279.492731px;}
.y1f6{bottom:281.741703px;}
.y30{bottom:281.998680px;}
.y232{bottom:282.342728px;}
.y13b{bottom:282.759293px;}
.y70{bottom:285.892495px;}
.y1c7{bottom:286.628095px;}
.y195{bottom:286.635295px;}
.ya5{bottom:287.075249px;}
.y11c{bottom:287.516696px;}
.y109{bottom:287.552719px;}
.y273{bottom:289.842773px;}
.y1f5{bottom:295.241703px;}
.ybe{bottom:295.760399px;}
.y231{bottom:295.842728px;}
.y14b{bottom:295.939796px;}
.y13f{bottom:295.961396px;}
.y16f{bottom:297.485531px;}
.y27{bottom:299.172315px;}
.y2f{bottom:299.991480px;}
.y2ad{bottom:303.342756px;}
.y272{bottom:303.342773px;}
.y6f{bottom:303.885295px;}
.y1c6{bottom:304.620895px;}
.y194{bottom:304.628095px;}
.ya4{bottom:305.089649px;}
.y11b{bottom:305.509496px;}
.y108{bottom:305.545519px;}
.y1f4{bottom:308.741703px;}
.y230{bottom:309.342728px;}
.ycb{bottom:313.760399px;}
.ybd{bottom:313.767599px;}
.y13e{bottom:313.954196px;}
.y15e{bottom:315.468619px;}
.y16e{bottom:315.478331px;}
.y2ac{bottom:316.842756px;}
.y271{bottom:316.842773px;}
.y26{bottom:317.165115px;}
.y2e{bottom:317.984280px;}
.y6e{bottom:321.878095px;}
.y193{bottom:322.620895px;}
.y1c5{bottom:322.628095px;}
.y22f{bottom:322.842728px;}
.ya3{bottom:323.082449px;}
.y11a{bottom:323.509496px;}
.y107{bottom:323.538319px;}
.y1f3{bottom:328.237953px;}
.y2ab{bottom:330.342756px;}
.y270{bottom:330.342773px;}
.ybc{bottom:331.760399px;}
.yca{bottom:331.788146px;}
.y13d{bottom:331.946996px;}
.y15d{bottom:333.461419px;}
.y16d{bottom:333.471131px;}
.y25{bottom:335.172315px;}
.y2d{bottom:335.977080px;}
.y22e{bottom:336.342728px;}
.y6d{bottom:339.870895px;}
.y1c4{bottom:340.620895px;}
.y192{bottom:340.628095px;}
.ya2{bottom:341.075249px;}
.y119{bottom:341.509496px;}
.y106{bottom:341.531119px;}
.y1f2{bottom:341.737953px;}
.y2aa{bottom:343.842756px;}
.y26f{bottom:343.842773px;}
.ybb{bottom:346.899010px;}
.yb8{bottom:347.493004px;}
.y132{bottom:348.560257px;}
.yba{bottom:349.760399px;}
.yc9{bottom:349.780946px;}
.y22d{bottom:349.842728px;}
.y14a{bottom:349.934545px;}
.y13c{bottom:349.939796px;}
.y15c{bottom:351.454219px;}
.y16c{bottom:351.463931px;}
.y24{bottom:353.165115px;}
.y2c{bottom:353.969880px;}
.y1f1{bottom:355.237953px;}
.y2a9{bottom:357.342756px;}
.y26e{bottom:357.342773px;}
.y6c{bottom:357.885295px;}
.y191{bottom:358.620895px;}
.ya1{bottom:359.104072px;}
.y118{bottom:359.502296px;}
.y105{bottom:359.523919px;}
.y131{bottom:363.560257px;}
.yb6{bottom:364.899010px;}
.yb5{bottom:367.760399px;}
.yc8{bottom:367.773746px;}
.y1f0{bottom:368.737953px;}
.y15b{bottom:369.447019px;}
.y16b{bottom:369.456731px;}
.y2a8{bottom:370.842756px;}
.y26d{bottom:370.842773px;}
.y23{bottom:371.179485px;}
.y2b{bottom:371.962680px;}
.y6b{bottom:375.878095px;}
.y190{bottom:376.642495px;}
.y1c3{bottom:376.649695px;}
.y22c{bottom:376.842728px;}
.ya0{bottom:377.096872px;}
.y104{bottom:377.516719px;}
.y117{bottom:377.588719px;}
.y130{bottom:378.560257px;}
.y1ef{bottom:382.237953px;}
.y2a7{bottom:384.342756px;}
.y26c{bottom:384.342773px;}
.y15a{bottom:387.439819px;}
.y16a{bottom:387.449531px;}
.y22{bottom:389.172285px;}
.y2a{bottom:389.955480px;}
.y22b{bottom:390.342728px;}
.y12f{bottom:393.560257px;}
.y6a{bottom:393.870895px;}
.y18f{bottom:394.635295px;}
.y1c2{bottom:394.642495px;}
.y9f{bottom:395.089672px;}
.y103{bottom:395.509519px;}
.y116{bottom:395.581519px;}
.y2a6{bottom:397.842756px;}
.y26b{bottom:397.842773px;}
.y22a{bottom:403.842728px;}
.y159{bottom:406.707733px;}
.y21{bottom:407.165085px;}
.y29{bottom:407.948280px;}
.y12e{bottom:408.560257px;}
.y2a5{bottom:411.342756px;}
.y26a{bottom:411.342773px;}
.y69{bottom:411.870895px;}
.y18e{bottom:412.628095px;}
.y1c1{bottom:412.635295px;}
.y9e{bottom:413.082472px;}
.y102{bottom:413.502319px;}
.y115{bottom:413.574319px;}
.y1ee{bottom:419.737930px;}
.yf7{bottom:421.572018px;}
.y158{bottom:421.707733px;}
.y12d{bottom:423.560257px;}
.y2a4{bottom:424.842756px;}
.y269{bottom:424.842773px;}
.y20{bottom:425.165085px;}
.y28{bottom:425.959815px;}
.y68{bottom:429.870895px;}
.y1c0{bottom:430.628095px;}
.y18d{bottom:430.635295px;}
.y229{bottom:430.842728px;}
.y9d{bottom:431.075272px;}
.y101{bottom:431.567119px;}
.y157{bottom:436.707733px;}
.y2a3{bottom:438.342756px;}
.y268{bottom:438.342773px;}
.y12c{bottom:438.560257px;}
.yf6{bottom:439.813482px;}
.y228{bottom:444.342728px;}
.y67{bottom:447.870895px;}
.y1bf{bottom:448.620895px;}
.y18c{bottom:448.628095px;}
.y9c{bottom:449.082472px;}
.y17e{bottom:449.547729px;}
.y100{bottom:449.559919px;}
.y156{bottom:451.707733px;}
.y2a2{bottom:451.842756px;}
.y267{bottom:451.842773px;}
.y12b{bottom:453.560257px;}
.yf5{bottom:457.957482px;}
.y17d{bottom:464.547729px;}
.y2a1{bottom:465.342756px;}
.y266{bottom:465.342773px;}
.y66{bottom:465.870895px;}
.y18b{bottom:466.620895px;}
.y1be{bottom:466.635295px;}
.y155{bottom:466.707733px;}
.y9b{bottom:467.111272px;}
.yff{bottom:467.552719px;}
.y12a{bottom:468.560257px;}
.y227{bottom:471.342728px;}
.yf4{bottom:476.113482px;}
.y1a{bottom:477.815100px;}
.y2a0{bottom:478.842756px;}
.y265{bottom:478.842773px;}
.y17c{bottom:479.547729px;}
.y154{bottom:481.707733px;}
.y1bd{bottom:484.628095px;}
.y18a{bottom:484.714495px;}
.y226{bottom:484.842728px;}
.y9a{bottom:485.104072px;}
.yfe{bottom:485.545519px;}
.y1ed{bottom:485.737930px;}
.yf3{bottom:489.613482px;}
.y29f{bottom:492.342756px;}
.y264{bottom:492.342773px;}
.y17b{bottom:494.547729px;}
.y19{bottom:495.815100px;}
.y225{bottom:498.342728px;}
.y1bc{bottom:502.620895px;}
.y189{bottom:502.707295px;}
.y99{bottom:503.096872px;}
.yfd{bottom:503.538319px;}
.y1ec{bottom:503.737930px;}
.y29e{bottom:505.842756px;}
.y263{bottom:505.842773px;}
.yf2{bottom:507.769482px;}
.y17a{bottom:509.547729px;}
.y18{bottom:513.815100px;}
.y29d{bottom:519.342756px;}
.y262{bottom:519.342773px;}
.y1bb{bottom:520.628095px;}
.y65{bottom:520.700095px;}
.y98{bottom:521.089672px;}
.yf1{bottom:521.269482px;}
.yfc{bottom:521.531119px;}
.y1eb{bottom:521.759530px;}
.y179{bottom:524.547729px;}
.y224{bottom:525.342728px;}
.y17{bottom:531.815100px;}
.y29c{bottom:532.842756px;}
.y261{bottom:532.842773px;}
.y1ba{bottom:538.628095px;}
.y64{bottom:538.692895px;}
.y223{bottom:538.842728px;}
.y97{bottom:539.082472px;}
.yf0{bottom:539.413482px;}
.yfb{bottom:539.523919px;}
.y1ea{bottom:539.752330px;}
.y29b{bottom:546.342756px;}
.y260{bottom:546.342773px;}
.y16{bottom:549.815100px;}
.y1b9{bottom:556.620895px;}
.y63{bottom:556.685695px;}
.y96{bottom:557.075272px;}
.yfa{bottom:557.516719px;}
.yef{bottom:557.557482px;}
.y1e9{bottom:557.745130px;}
.y29a{bottom:559.842756px;}
.y25f{bottom:559.842773px;}
.y222{bottom:565.842728px;}
.y15{bottom:572.315100px;}
.y299{bottom:573.342756px;}
.y25e{bottom:573.342773px;}
.y1b8{bottom:574.642495px;}
.y62{bottom:574.678495px;}
.y95{bottom:575.082472px;}
.yf9{bottom:575.509519px;}
.yee{bottom:575.701482px;}
.y1e8{bottom:575.737930px;}
.y221{bottom:579.342728px;}
.y298{bottom:586.842756px;}
.y25d{bottom:586.842773px;}
.y14{bottom:590.315100px;}
.y1b7{bottom:592.635295px;}
.y61{bottom:592.671295px;}
.y220{bottom:592.842728px;}
.y94{bottom:593.082472px;}
.y114{bottom:593.499145px;}
.yf8{bottom:593.502319px;}
.y1e7{bottom:593.766730px;}
.yed{bottom:593.857482px;}
.y297{bottom:600.342756px;}
.y25c{bottom:600.342773px;}
.y13{bottom:608.315100px;}
.y1b6{bottom:610.628095px;}
.y60{bottom:610.664095px;}
.y93{bottom:611.075272px;}
.y1e6{bottom:611.759530px;}
.yec{bottom:612.001482px;}
.y296{bottom:613.842756px;}
.y25b{bottom:613.842773px;}
.y21f{bottom:619.842728px;}
.y12{bottom:626.315100px;}
.y295{bottom:627.342756px;}
.y25a{bottom:627.342773px;}
.y1b5{bottom:628.620895px;}
.y5f{bottom:628.656895px;}
.y92{bottom:629.096872px;}
.y1e5{bottom:629.752330px;}
.yeb{bottom:630.157482px;}
.y21e{bottom:633.342728px;}
.y294{bottom:640.842756px;}
.y259{bottom:640.842773px;}
.yea{bottom:643.657482px;}
.y11{bottom:644.315100px;}
.y1b4{bottom:646.628095px;}
.y5e{bottom:646.649695px;}
.y21d{bottom:646.842728px;}
.y91{bottom:647.089672px;}
.y1e4{bottom:647.745130px;}
.y129{bottom:650.360229px;}
.y293{bottom:654.342756px;}
.y258{bottom:654.342773px;}
.y21c{bottom:660.342728px;}
.ye9{bottom:661.801482px;}
.y10{bottom:662.315100px;}
.y1b3{bottom:664.620895px;}
.y5d{bottom:664.642495px;}
.y90{bottom:665.082472px;}
.y128{bottom:665.360229px;}
.y1e3{bottom:665.737930px;}
.y292{bottom:667.842756px;}
.y257{bottom:667.842773px;}
.y21b{bottom:673.842728px;}
.ye8{bottom:679.945482px;}
.yf{bottom:680.315100px;}
.y127{bottom:680.360229px;}
.y291{bottom:681.342756px;}
.y256{bottom:681.342773px;}
.y5c{bottom:682.635295px;}
.y1b2{bottom:682.685741px;}
.y8f{bottom:683.075272px;}
.y1e2{bottom:683.745130px;}
.y21a{bottom:687.342728px;}
.y290{bottom:694.842756px;}
.y255{bottom:694.842773px;}
.y126{bottom:695.360229px;}
.ye7{bottom:698.101482px;}
.ye{bottom:698.315100px;}
.y5b{bottom:700.628095px;}
.y1b1{bottom:700.678541px;}
.y219{bottom:700.842728px;}
.y8e{bottom:701.075272px;}
.y1e1{bottom:701.737930px;}
.y28f{bottom:708.342756px;}
.y254{bottom:708.342773px;}
.ye6{bottom:716.257482px;}
.y5a{bottom:718.620895px;}
.y1b0{bottom:718.671341px;}
.y218{bottom:718.842728px;}
.y8d{bottom:719.103934px;}
.y1e0{bottom:719.737930px;}
.yd{bottom:720.815100px;}
.y28e{bottom:721.842756px;}
.y253{bottom:721.842773px;}
.y217{bottom:727.842728px;}
.ye5{bottom:729.757482px;}
.y28d{bottom:735.342756px;}
.y252{bottom:735.342773px;}
.y59{bottom:736.656941px;}
.y1af{bottom:736.664141px;}
.y8c{bottom:737.096734px;}
.yc{bottom:738.815100px;}
.y216{bottom:741.342728px;}
.ye4{bottom:747.901482px;}
.y28c{bottom:748.842756px;}
.y251{bottom:748.842773px;}
.y58{bottom:754.649741px;}
.y1ae{bottom:754.656941px;}
.y215{bottom:754.842773px;}
.y8b{bottom:755.089534px;}
.y1df{bottom:755.759576px;}
.yb{bottom:756.815100px;}
.ye3{bottom:761.401482px;}
.y28b{bottom:762.342756px;}
.y250{bottom:762.342773px;}
.y214{bottom:768.342773px;}
.y57{bottom:772.642541px;}
.y1ad{bottom:772.649741px;}
.y8a{bottom:773.082334px;}
.y1de{bottom:773.752376px;}
.ya{bottom:774.815100px;}
.y28a{bottom:775.842756px;}
.y24f{bottom:775.842773px;}
.ye2{bottom:779.557482px;}
.y213{bottom:781.842773px;}
.y289{bottom:789.342756px;}
.y24e{bottom:789.342773px;}
.y56{bottom:790.635341px;}
.y1ac{bottom:790.642541px;}
.y89{bottom:791.082334px;}
.y1dd{bottom:791.745176px;}
.ye1{bottom:793.057482px;}
.y212{bottom:795.342773px;}
.y9{bottom:797.315100px;}
.y288{bottom:802.842756px;}
.y24d{bottom:802.842773px;}
.y55{bottom:808.628141px;}
.y1ab{bottom:808.635341px;}
.y211{bottom:808.842773px;}
.y88{bottom:809.082334px;}
.y1dc{bottom:809.737976px;}
.ye0{bottom:811.201482px;}
.y287{bottom:816.342756px;}
.y24c{bottom:816.342773px;}
.y54{bottom:826.620941px;}
.y1aa{bottom:826.628141px;}
.y210{bottom:826.842773px;}
.y87{bottom:827.075134px;}
.y1db{bottom:827.737976px;}
.ydf{bottom:829.357482px;}
.y286{bottom:829.842756px;}
.y24b{bottom:829.842773px;}
.y20f{bottom:835.839023px;}
.yde{bottom:842.857482px;}
.y285{bottom:843.342756px;}
.y24a{bottom:843.342773px;}
.y53{bottom:844.628141px;}
.y188{bottom:844.649741px;}
.y86{bottom:845.082334px;}
.y1da{bottom:845.809976px;}
.y284{bottom:856.842756px;}
.y249{bottom:856.842773px;}
.ydd{bottom:861.001482px;}
.y8{bottom:861.548115px;}
.y52{bottom:862.620941px;}
.y187{bottom:862.642541px;}
.y20e{bottom:862.839023px;}
.y85{bottom:863.082334px;}
.y1d9{bottom:863.802776px;}
.y283{bottom:870.342756px;}
.y248{bottom:870.342773px;}
.y20d{bottom:876.339023px;}
.ydc{bottom:879.145482px;}
.y51{bottom:880.628141px;}
.y186{bottom:880.635341px;}
.y1a9{bottom:880.693195px;}
.y84{bottom:881.075134px;}
.y1d8{bottom:881.795576px;}
.y7{bottom:882.548115px;}
.y282{bottom:883.842756px;}
.y247{bottom:883.842773px;}
.y20c{bottom:889.839023px;}
.ydb{bottom:897.301482px;}
.y281{bottom:897.342756px;}
.y246{bottom:897.342773px;}
.y50{bottom:898.620941px;}
.y185{bottom:898.628141px;}
.y1a8{bottom:898.685995px;}
.y83{bottom:899.089534px;}
.y1d7{bottom:899.788376px;}
.y20b{bottom:903.339023px;}
.y6{bottom:903.552615px;}
.y280{bottom:910.842756px;}
.y245{bottom:910.842773px;}
.yda{bottom:915.445482px;}
.y4f{bottom:916.620941px;}
.y184{bottom:916.635341px;}
.y1a7{bottom:916.678795px;}
.y20a{bottom:916.839023px;}
.y82{bottom:917.082334px;}
.y1d6{bottom:917.781176px;}
.y27f{bottom:924.342756px;}
.y244{bottom:924.342773px;}
.y209{bottom:930.339023px;}
.yd9{bottom:933.601482px;}
.y183{bottom:934.628141px;}
.y4e{bottom:934.635341px;}
.y1a6{bottom:934.671595px;}
.y81{bottom:935.075134px;}
.y1d5{bottom:935.773976px;}
.y27e{bottom:937.842756px;}
.y243{bottom:937.842773px;}
.y5{bottom:939.565530px;}
.y208{bottom:943.839023px;}
.y27d{bottom:951.342756px;}
.y242{bottom:951.342773px;}
.yd8{bottom:951.745482px;}
.y182{bottom:952.620941px;}
.y4d{bottom:952.628141px;}
.y1a5{bottom:952.664395px;}
.y80{bottom:953.082334px;}
.y1d4{bottom:953.766776px;}
.y207{bottom:957.339023px;}
.y27c{bottom:964.842756px;}
.y241{bottom:964.842773px;}
.y4c{bottom:970.620941px;}
.y181{bottom:970.635341px;}
.y1a4{bottom:970.657195px;}
.y7f{bottom:971.075134px;}
.y1d3{bottom:971.759576px;}
.y27b{bottom:978.342756px;}
.y240{bottom:978.342773px;}
.y4{bottom:978.553530px;}
.yd7{bottom:978.637482px;}
.y180{bottom:988.628141px;}
.y4b{bottom:988.635341px;}
.y1a3{bottom:988.649995px;}
.yd6{bottom:988.987518px;}
.y7e{bottom:989.089534px;}
.y1d2{bottom:989.752376px;}
.y27a{bottom:991.842756px;}
.y23f{bottom:991.842773px;}
.y206{bottom:996.342773px;}
.yd5{bottom:1002.487518px;}
.y279{bottom:1005.342756px;}
.y23e{bottom:1005.342773px;}
.y17f{bottom:1006.620941px;}
.y4a{bottom:1006.628141px;}
.y1a2{bottom:1006.642795px;}
.y7d{bottom:1007.082334px;}
.y1d1{bottom:1007.745176px;}
.y205{bottom:1009.842773px;}
.y278{bottom:1018.842756px;}
.y23d{bottom:1018.842773px;}
.y204{bottom:1023.342773px;}
.y49{bottom:1024.620941px;}
.y1a1{bottom:1024.635595px;}
.y7c{bottom:1025.075134px;}
.y1d0{bottom:1025.737976px;}
.yd4{bottom:1026.803079px;}
.y277{bottom:1032.342756px;}
.y23c{bottom:1032.342773px;}
.y3{bottom:1033.362585px;}
.y37{bottom:1035.750180px;}
.y203{bottom:1036.842773px;}
.y48{bottom:1042.620941px;}
.y1a0{bottom:1042.628395px;}
.y7b{bottom:1043.075134px;}
.yd3{bottom:1043.300079px;}
.y1cf{bottom:1043.737976px;}
.y276{bottom:1045.842756px;}
.y23b{bottom:1045.842773px;}
.y38{bottom:1078.510530px;}
.y3b{bottom:1100.660520px;}
.y2{bottom:1112.297085px;}
.y3a{bottom:1118.226105px;}
.yb3{bottom:1126.524628px;}
.y46{bottom:1126.524719px;}
.y1{bottom:1126.925085px;}
.yb4{bottom:1127.300079px;}
.y47{bottom:1127.304719px;}
.h17{height:2.282592px;}
.h1c{height:12.000000px;}
.h1f{height:12.300000px;}
.h1e{height:13.198500px;}
.h1a{height:13.200000px;}
.h14{height:25.758000px;}
.h11{height:27.814500px;}
.hb{height:37.086000px;}
.h10{height:39.735000px;}
.h15{height:39.945360px;}
.h20{height:40.173923px;}
.h19{height:40.516008px;}
.h1b{height:41.115040px;}
.h1d{height:41.173860px;}
.hf{height:41.243400px;}
.h24{height:42.384000px;}
.h2f{height:42.840000px;}
.h2c{height:43.740000px;}
.h3{height:45.696000px;}
.h12{height:45.744000px;}
.h2e{height:45.814317px;}
.h2d{height:45.814500px;}
.h22{height:46.656000px;}
.h2{height:47.232000px;}
.h27{height:47.472000px;}
.h16{height:49.056413px;}
.he{height:52.058052px;}
.ha{height:52.980000px;}
.h21{height:53.406000px;}
.h13{height:53.654399px;}
.h18{height:54.366901px;}
.hd{height:55.276500px;}
.h28{height:55.659041px;}
.h2a{height:55.773600px;}
.h29{height:55.831154px;}
.hc{height:55.860000px;}
.h26{height:55.872696px;}
.h2b{height:55.881005px;}
.h9{height:58.320000px;}
.h8{height:61.120200px;}
.h6{height:67.194360px;}
.h7{height:67.212360px;}
.h4{height:77.142000px;}
.h25{height:96.384000px;}
.h23{height:100.656000px;}
.h5{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w4{width:5.955000px;}
.w6{width:12.705000px;}
.w5{width:13.380000px;}
.w7{width:13.755000px;}
.w2{width:133.503000px;}
.w3{width:320.038490px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:58.459035px;}
.xc{left:69.146535px;}
.x1{left:84.933000px;}
.x2{left:92.734350px;}
.x3{left:94.683150px;}
.xd{left:97.049246px;}
.x16{left:98.419350px;}
.x23{left:107.539352px;}
.x14{left:127.174496px;}
.x15{left:133.128754px;}
.x10{left:144.079193px;}
.x20{left:161.920852px;}
.x12{left:196.192932px;}
.x1f{left:246.256906px;}
.x4{left:270.817500px;}
.x17{left:292.960510px;}
.x18{left:305.665192px;}
.x13{left:317.511475px;}
.x1d{left:320.251348px;}
.x19{left:326.050507px;}
.x1a{left:332.005646px;}
.x1b{left:366.644989px;}
.x1c{left:380.399849px;}
.x1e{left:383.645096px;}
.x5{left:457.092900px;}
.x22{left:466.086594px;}
.x6{left:469.081800px;}
.x24{left:479.588104px;}
.xe{left:487.085999px;}
.xf{left:496.433853px;}
.x11{left:639.678314px;}
.x8{left:674.056500px;}
.x7{left:694.929885px;}
.xb{left:732.515535px;}
.x21{left:741.068390px;}
.xa{left:747.124335px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v3{vertical-align:-13.333333pt;}
.v9{vertical-align:-12.000000pt;}
.vb{vertical-align:-10.666667pt;}
.v8{vertical-align:-7.591471pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v6{vertical-align:7.591471pt;}
.v5{vertical-align:13.066732pt;}
.vc{vertical-align:16.000000pt;}
.v7{vertical-align:20.955729pt;}
.v2{vertical-align:23.466453pt;}
.va{vertical-align:48.000000pt;}
.ls24{letter-spacing:-4.224000pt;}
.ls36{letter-spacing:-1.960000pt;}
.ls1c{letter-spacing:-0.841493pt;}
.ls19{letter-spacing:-0.731733pt;}
.ls1a{letter-spacing:-0.695147pt;}
.ls21{letter-spacing:-0.682667pt;}
.ls22{letter-spacing:-0.597333pt;}
.ls1b{letter-spacing:-0.512213pt;}
.ls35{letter-spacing:-0.470400pt;}
.ls23{letter-spacing:-0.341333pt;}
.ls1e{letter-spacing:-0.313600pt;}
.ls18{letter-spacing:-0.209067pt;}
.ls27{letter-spacing:-0.182933pt;}
.ls1f{letter-spacing:-0.134400pt;}
.ls20{letter-spacing:-0.119467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.000063pt;}
.ls34{letter-spacing:0.000068pt;}
.ls1{letter-spacing:0.000160pt;}
.ls2d{letter-spacing:0.002233pt;}
.ls32{letter-spacing:0.009600pt;}
.ls2b{letter-spacing:0.014343pt;}
.ls2c{letter-spacing:0.016527pt;}
.ls14{letter-spacing:0.018080pt;}
.ls30{letter-spacing:0.020663pt;}
.ls2a{letter-spacing:0.020722pt;}
.ls25{letter-spacing:0.020789pt;}
.ls29{letter-spacing:0.020807pt;}
.ls1d{letter-spacing:0.022571pt;}
.ls2e{letter-spacing:0.083119pt;}
.ls28{letter-spacing:0.094774pt;}
.ls31{letter-spacing:0.329280pt;}
.ls8{letter-spacing:0.700373pt;}
.lsa{letter-spacing:0.731711pt;}
.ls2{letter-spacing:0.731733pt;}
.ls2f{letter-spacing:0.761568pt;}
.ls3{letter-spacing:0.794453pt;}
.ls9{letter-spacing:0.804907pt;}
.ls13{letter-spacing:2.532733pt;}
.lsd{letter-spacing:3.162336pt;}
.lsf{letter-spacing:3.164940pt;}
.ls0{letter-spacing:4.853333pt;}
.ls7{letter-spacing:5.816847pt;}
.ls12{letter-spacing:6.625814pt;}
.ls6{letter-spacing:6.696706pt;}
.ls17{letter-spacing:8.470953pt;}
.ls16{letter-spacing:8.496315pt;}
.ls4{letter-spacing:9.238522pt;}
.lse{letter-spacing:11.260787pt;}
.ls26{letter-spacing:11.989333pt;}
.lsc{letter-spacing:14.101346pt;}
.ls15{letter-spacing:14.862210pt;}
.lsb{letter-spacing:17.225812pt;}
.ls11{letter-spacing:17.272687pt;}
.ls10{letter-spacing:59.195219pt;}
.ws8b{word-spacing:-14.208000pt;}
.ws7c{word-spacing:-13.014400pt;}
.ws6{word-spacing:-12.282667pt;}
.ws119{word-spacing:-11.812267pt;}
.ws2{word-spacing:-11.096533pt;}
.ws3{word-spacing:-11.040000pt;}
.ws8e{word-spacing:-10.087467pt;}
.wsca{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.287403pt;}
.ws0{word-spacing:-9.045333pt;}
.ws1{word-spacing:-8.993600pt;}
.wseb{word-spacing:-8.927147pt;}
.ws82{word-spacing:-8.832000pt;}
.wsb{word-spacing:-8.760000pt;}
.ws28{word-spacing:-8.597867pt;}
.ws2d{word-spacing:-8.547039pt;}
.wsa5{word-spacing:-8.414933pt;}
.ws11b{word-spacing:-8.280000pt;}
.ws5{word-spacing:-8.176000pt;}
.ws26{word-spacing:-8.085653pt;}
.ws25{word-spacing:-7.902720pt;}
.ws27{word-spacing:-7.756373pt;}
.ws22{word-spacing:-6.696706pt;}
.ws7e{word-spacing:-6.652800pt;}
.wscb{word-spacing:-6.540800pt;}
.wsa{word-spacing:-6.132000pt;}
.ws81{word-spacing:-5.913600pt;}
.ws23{word-spacing:-5.816847pt;}
.ws95{word-spacing:-5.749333pt;}
.wsa3{word-spacing:-4.010667pt;}
.wsa1{word-spacing:-3.696000pt;}
.wsa2{word-spacing:-3.498667pt;}
.ws128{word-spacing:-3.440000pt;}
.ws126{word-spacing:-1.600000pt;}
.wsb2{word-spacing:-0.993067pt;}
.ws31{word-spacing:-0.731733pt;}
.wsd{word-spacing:-0.693333pt;}
.wsda{word-spacing:-0.627200pt;}
.ws5e{word-spacing:-0.365867pt;}
.ws6e{word-spacing:-0.313600pt;}
.wsb7{word-spacing:-0.209067pt;}
.wsf7{word-spacing:-0.104533pt;}
.ws9{word-spacing:-0.065174pt;}
.ws4{word-spacing:-0.053333pt;}
.ws7b{word-spacing:-0.052284pt;}
.ws7{word-spacing:-0.052267pt;}
.ws2a{word-spacing:-0.050724pt;}
.ws7d{word-spacing:-0.048000pt;}
.ws80{word-spacing:-0.042667pt;}
.ws11a{word-spacing:-0.040000pt;}
.wsc{word-spacing:0.000000pt;}
.wscd{word-spacing:0.052267pt;}
.wsc9{word-spacing:0.104533pt;}
.ws24{word-spacing:0.156800pt;}
.ws3d{word-spacing:0.209067pt;}
.ws8f{word-spacing:0.261333pt;}
.ws67{word-spacing:0.313600pt;}
.wsce{word-spacing:0.365867pt;}
.ws103{word-spacing:0.522667pt;}
.ws46{word-spacing:0.627200pt;}
.ws29{word-spacing:0.679467pt;}
.wsa4{word-spacing:0.682667pt;}
.ws5c{word-spacing:0.731733pt;}
.ws100{word-spacing:0.784000pt;}
.wsed{word-spacing:0.836267pt;}
.ws33{word-spacing:0.993067pt;}
.ws7a{word-spacing:1.097600pt;}
.ws2e{word-spacing:1.254400pt;}
.ws11{word-spacing:1.306667pt;}
.ws35{word-spacing:1.358933pt;}
.ws4a{word-spacing:1.411200pt;}
.ws6d{word-spacing:1.463467pt;}
.ws120{word-spacing:1.515733pt;}
.ws79{word-spacing:1.620267pt;}
.ws1e{word-spacing:1.672533pt;}
.ws1d{word-spacing:1.724800pt;}
.ws9d{word-spacing:1.777067pt;}
.wsa0{word-spacing:1.872000pt;}
.ws5b{word-spacing:1.881600pt;}
.wsbf{word-spacing:1.933867pt;}
.ws127{word-spacing:1.960000pt;}
.ws45{word-spacing:1.986133pt;}
.ws8d{word-spacing:2.038400pt;}
.ws1f{word-spacing:2.090667pt;}
.ws60{word-spacing:2.142933pt;}
.ws48{word-spacing:2.195200pt;}
.ws64{word-spacing:2.352000pt;}
.ws32{word-spacing:2.404267pt;}
.ws6f{word-spacing:2.456533pt;}
.ws47{word-spacing:2.561067pt;}
.ws108{word-spacing:2.613333pt;}
.wsb9{word-spacing:2.665600pt;}
.ws112{word-spacing:2.717867pt;}
.ws105{word-spacing:2.770133pt;}
.ws49{word-spacing:2.926933pt;}
.ws9b{word-spacing:2.979200pt;}
.wsba{word-spacing:3.031467pt;}
.ws3b{word-spacing:3.083733pt;}
.ws77{word-spacing:3.136000pt;}
.wsec{word-spacing:3.188267pt;}
.wsc7{word-spacing:3.240533pt;}
.wsb6{word-spacing:3.292800pt;}
.ws9e{word-spacing:3.345067pt;}
.ws90{word-spacing:3.397333pt;}
.wsd8{word-spacing:3.501867pt;}
.wsb4{word-spacing:3.554133pt;}
.ws20{word-spacing:3.606400pt;}
.wsff{word-spacing:3.658667pt;}
.ws15{word-spacing:3.763200pt;}
.ws68{word-spacing:3.815467pt;}
.ws65{word-spacing:4.024533pt;}
.ws122{word-spacing:4.076800pt;}
.ws36{word-spacing:4.129067pt;}
.ws78{word-spacing:4.181333pt;}
.ws94{word-spacing:4.233600pt;}
.ws4d{word-spacing:4.390400pt;}
.wsf4{word-spacing:4.442667pt;}
.ws8c{word-spacing:4.547200pt;}
.ws11f{word-spacing:4.599467pt;}
.ws93{word-spacing:4.651733pt;}
.wsa9{word-spacing:4.704000pt;}
.ws106{word-spacing:4.756267pt;}
.wsc0{word-spacing:4.860800pt;}
.wsf5{word-spacing:4.965333pt;}
.wsd0{word-spacing:5.017600pt;}
.ws10{word-spacing:5.069867pt;}
.ws11c{word-spacing:5.174400pt;}
.wsc6{word-spacing:5.226667pt;}
.ws76{word-spacing:5.331200pt;}
.ws18{word-spacing:5.383467pt;}
.ws71{word-spacing:5.435733pt;}
.ws53{word-spacing:5.592533pt;}
.ws10f{word-spacing:5.644800pt;}
.wsea{word-spacing:5.697067pt;}
.ws52{word-spacing:5.749333pt;}
.ws91{word-spacing:5.801600pt;}
.ws104{word-spacing:5.853867pt;}
.ws44{word-spacing:5.906133pt;}
.ws6a{word-spacing:6.010667pt;}
.ws10a{word-spacing:6.062933pt;}
.wsef{word-spacing:6.115200pt;}
.ws57{word-spacing:6.167467pt;}
.ws41{word-spacing:6.219733pt;}
.ws10e{word-spacing:6.324267pt;}
.wsde{word-spacing:6.376533pt;}
.ws99{word-spacing:6.428800pt;}
.ws58{word-spacing:6.481067pt;}
.ws56{word-spacing:6.533333pt;}
.wse5{word-spacing:6.585600pt;}
.ws92{word-spacing:6.637867pt;}
.wsb5{word-spacing:6.690133pt;}
.ws113{word-spacing:6.794667pt;}
.wsdd{word-spacing:6.846933pt;}
.wse9{word-spacing:6.899200pt;}
.wse1{word-spacing:6.951467pt;}
.wsd9{word-spacing:7.056000pt;}
.wsd4{word-spacing:7.160533pt;}
.ws6c{word-spacing:7.212800pt;}
.wsf{word-spacing:7.265067pt;}
.ws1a{word-spacing:7.369600pt;}
.ws111{word-spacing:7.421867pt;}
.wsc4{word-spacing:7.474133pt;}
.ws54{word-spacing:7.578667pt;}
.wsaf{word-spacing:7.683200pt;}
.wsd6{word-spacing:7.735467pt;}
.ws38{word-spacing:7.892267pt;}
.ws30{word-spacing:7.944533pt;}
.ws5f{word-spacing:7.996800pt;}
.ws6b{word-spacing:8.101333pt;}
.wsfd{word-spacing:8.153600pt;}
.ws17{word-spacing:8.205867pt;}
.ws98{word-spacing:8.258133pt;}
.wsbd{word-spacing:8.414933pt;}
.ws2b{word-spacing:8.420228pt;}
.ws115{word-spacing:8.467200pt;}
.wsa8{word-spacing:8.519467pt;}
.ws74{word-spacing:8.624000pt;}
.wsc5{word-spacing:8.885333pt;}
.ws66{word-spacing:9.094400pt;}
.wsdf{word-spacing:9.146667pt;}
.ws63{word-spacing:9.198933pt;}
.ws4b{word-spacing:9.251200pt;}
.ws43{word-spacing:9.303467pt;}
.ws10c{word-spacing:9.355733pt;}
.wsaa{word-spacing:9.408000pt;}
.ws96{word-spacing:9.460267pt;}
.ws4f{word-spacing:9.564800pt;}
.wse3{word-spacing:9.617067pt;}
.ws2f{word-spacing:9.669333pt;}
.wsd1{word-spacing:9.721600pt;}
.wsbc{word-spacing:9.826133pt;}
.wsb1{word-spacing:10.035200pt;}
.wsbb{word-spacing:10.139733pt;}
.wsf1{word-spacing:10.192000pt;}
.wsfa{word-spacing:10.244267pt;}
.ws37{word-spacing:10.296533pt;}
.ws118{word-spacing:10.348800pt;}
.ws125{word-spacing:10.505600pt;}
.wsad{word-spacing:10.557867pt;}
.wsfb{word-spacing:10.766933pt;}
.wsd7{word-spacing:10.819200pt;}
.wsa6{word-spacing:10.871467pt;}
.wsd2{word-spacing:10.923733pt;}
.ws14{word-spacing:11.132800pt;}
.wsf0{word-spacing:11.185067pt;}
.ws97{word-spacing:11.237333pt;}
.ws13{word-spacing:11.289600pt;}
.ws1b{word-spacing:11.341867pt;}
.wse8{word-spacing:11.446400pt;}
.wse0{word-spacing:11.498667pt;}
.wsdb{word-spacing:11.603200pt;}
.wsf3{word-spacing:11.655467pt;}
.ws116{word-spacing:11.707733pt;}
.ws73{word-spacing:11.760000pt;}
.ws55{word-spacing:11.812267pt;}
.ws50{word-spacing:11.916800pt;}
.wsb3{word-spacing:12.021333pt;}
.ws9a{word-spacing:12.073600pt;}
.wsbe{word-spacing:12.178133pt;}
.ws114{word-spacing:12.230400pt;}
.ws3f{word-spacing:12.282667pt;}
.ws42{word-spacing:12.334933pt;}
.ws39{word-spacing:12.387200pt;}
.ws9c{word-spacing:12.439467pt;}
.ws40{word-spacing:12.544000pt;}
.ws5a{word-spacing:12.596267pt;}
.wsc1{word-spacing:12.648533pt;}
.wse4{word-spacing:12.805333pt;}
.ws19{word-spacing:12.909867pt;}
.wsb8{word-spacing:12.962133pt;}
.ws3a{word-spacing:13.066667pt;}
.wsb0{word-spacing:13.171200pt;}
.ws1c{word-spacing:13.223467pt;}
.ws12{word-spacing:13.484800pt;}
.ws75{word-spacing:13.537067pt;}
.ws16{word-spacing:13.798400pt;}
.ws109{word-spacing:13.902933pt;}
.ws101{word-spacing:14.007467pt;}
.wsc8{word-spacing:14.059733pt;}
.wsd5{word-spacing:14.530133pt;}
.wsf8{word-spacing:14.582400pt;}
.ws5d{word-spacing:14.634667pt;}
.ws62{word-spacing:15.000533pt;}
.wsab{word-spacing:15.209600pt;}
.wsee{word-spacing:15.314133pt;}
.wscf{word-spacing:15.470933pt;}
.ws11e{word-spacing:15.680000pt;}
.ws61{word-spacing:15.889067pt;}
.ws11d{word-spacing:15.941333pt;}
.wsdc{word-spacing:16.150400pt;}
.wsf6{word-spacing:16.202667pt;}
.ws123{word-spacing:16.254933pt;}
.wsa7{word-spacing:16.411733pt;}
.wsc3{word-spacing:16.673067pt;}
.ws110{word-spacing:16.829867pt;}
.wsfe{word-spacing:16.882133pt;}
.wsac{word-spacing:16.934400pt;}
.ws9f{word-spacing:16.986667pt;}
.ws102{word-spacing:17.091200pt;}
.ws107{word-spacing:17.509333pt;}
.ws69{word-spacing:17.770667pt;}
.ws3c{word-spacing:17.979733pt;}
.ws124{word-spacing:18.397867pt;}
.wsd3{word-spacing:18.450133pt;}
.wse6{word-spacing:18.554667pt;}
.wsf9{word-spacing:19.338667pt;}
.wsfc{word-spacing:19.495467pt;}
.ws121{word-spacing:19.600000pt;}
.ws4c{word-spacing:19.913600pt;}
.wse2{word-spacing:19.965867pt;}
.ws10d{word-spacing:20.227200pt;}
.wscc{word-spacing:21.220267pt;}
.wse7{word-spacing:21.324800pt;}
.wsf2{word-spacing:22.004267pt;}
.ws10b{word-spacing:22.108800pt;}
.wse{word-spacing:22.161067pt;}
.ws117{word-spacing:22.683733pt;}
.wsae{word-spacing:22.840533pt;}
.wsc2{word-spacing:23.154133pt;}
.ws51{word-spacing:23.415467pt;}
.ws4e{word-spacing:23.938133pt;}
.ws72{word-spacing:24.774400pt;}
.ws59{word-spacing:25.140267pt;}
.ws34{word-spacing:25.610667pt;}
.ws70{word-spacing:25.767467pt;}
.ws3e{word-spacing:26.028800pt;}
.ws7f{word-spacing:26.445326pt;}
.ws21{word-spacing:31.464533pt;}
.ws2c{word-spacing:50.622818pt;}
.ws8a{word-spacing:102.741333pt;}
.ws89{word-spacing:139.903991pt;}
.ws85{word-spacing:156.117326pt;}
.ws87{word-spacing:158.037326pt;}
.ws86{word-spacing:160.511991pt;}
.ws84{word-spacing:163.712000pt;}
.ws88{word-spacing:178.773326pt;}
.ws83{word-spacing:179.541324pt;}
._5d{margin-left:-28.291017pt;}
._5c{margin-left:-24.894947pt;}
._5e{margin-left:-22.660115pt;}
._5f{margin-left:-19.234465pt;}
._17{margin-left:-17.306720pt;}
._f{margin-left:-15.605333pt;}
._10{margin-left:-14.642654pt;}
._60{margin-left:-13.573244pt;}
._11{margin-left:-12.613282pt;}
._15{margin-left:-10.557872pt;}
._14{margin-left:-9.564800pt;}
._13{margin-left:-8.624000pt;}
._4{margin-left:-6.234667pt;}
._8{margin-left:-4.697547pt;}
._1{margin-left:-3.328000pt;}
._6{margin-left:-2.368640pt;}
._0{margin-left:-1.369600pt;}
._3{width:1.241600pt;}
._2{width:2.764800pt;}
._c{width:4.097067pt;}
._d{width:5.310856pt;}
._e{width:6.977813pt;}
._a{width:8.096319pt;}
._b{width:9.387093pt;}
._16{width:10.824433pt;}
._12{width:11.801813pt;}
._18{width:13.088640pt;}
._9{width:14.070400pt;}
._7{width:15.449600pt;}
._5b{width:16.503040pt;}
._61{width:18.306125pt;}
._64{width:19.808000pt;}
._4a{width:27.524213pt;}
._5{width:34.350880pt;}
._27{width:35.417547pt;}
._58{width:37.083878pt;}
._23{width:38.233547pt;}
._62{width:39.328000pt;}
._51{width:40.661333pt;}
._63{width:42.880000pt;}
._31{width:45.742925pt;}
._25{width:48.345547pt;}
._49{width:52.309333pt;}
._36{width:55.680007pt;}
._4f{width:57.809058pt;}
._2c{width:59.054880pt;}
._4e{width:64.170667pt;}
._26{width:66.090667pt;}
._3c{width:73.088000pt;}
._19{width:78.762713pt;}
._33{width:86.869333pt;}
._41{width:87.765324pt;}
._1f{width:88.832000pt;}
._3b{width:90.794658pt;}
._24{width:93.952000pt;}
._4b{width:96.422400pt;}
._53{width:107.217120pt;}
._2a{width:108.369058pt;}
._46{width:110.293333pt;}
._21{width:111.573324pt;}
._3f{width:114.730667pt;}
._1d{width:120.319996pt;}
._38{width:128.554667pt;}
._29{width:130.517333pt;}
._5a{width:133.205333pt;}
._2d{width:135.594667pt;}
._3e{width:139.306658pt;}
._52{width:143.487991pt;}
._1a{width:146.218658pt;}
._37{width:156.373333pt;}
._50{width:157.567993pt;}
._28{width:158.463993pt;}
._4c{width:159.530668pt;}
._1e{width:160.682658pt;}
._54{width:161.919993pt;}
._2e{width:163.541326pt;}
._59{width:165.802660pt;}
._40{width:167.509326pt;}
._4d{width:168.831993pt;}
._35{width:171.003733pt;}
._3d{width:172.970660pt;}
._20{width:175.317335pt;}
._34{width:178.730660pt;}
._43{width:181.631993pt;}
._45{width:182.532258pt;}
._42{width:185.002660pt;}
._47{width:188.501326pt;}
._44{width:190.468267pt;}
._48{width:191.701323pt;}
._30{width:199.423990pt;}
._55{width:201.514658pt;}
._3a{width:202.453333pt;}
._39{width:203.690658pt;}
._56{width:206.297592pt;}
._2f{width:207.573333pt;}
._22{width:212.053333pt;}
._57{width:217.258667pt;}
._32{width:224.806391pt;}
._2b{width:232.832000pt;}
._1c{width:240.136538pt;}
._1b{width:423.472495pt;}
.fsc{font-size:28.000000pt;}
.fs15{font-size:29.866667pt;}
.fs14{font-size:33.600000pt;}
.fse{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fs10{font-size:38.549866pt;}
.fs12{font-size:39.735466pt;}
.fsb{font-size:40.000000pt;}
.fs4{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs13{font-size:48.000000pt;}
.fsa{font-size:48.881067pt;}
.fsd{font-size:49.066666pt;}
.fsf{font-size:50.724267pt;}
.fs8{font-size:52.266667pt;}
.fs11{font-size:52.284267pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:65.174400pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:2.039327pt;}
.yb7{bottom:2.572795pt;}
.y3d{bottom:4.073560pt;}
.yaf{bottom:8.239197pt;}
.y3c{bottom:19.688880pt;}
.yb1{bottom:22.314138pt;}
.y39{bottom:35.302733pt;}
.y1f{bottom:66.836667pt;}
.y1e{bottom:77.504667pt;}
.yae{bottom:86.130666pt;}
.y1d{bottom:88.172667pt;}
.y169{bottom:88.397462pt;}
.y178{bottom:88.410262pt;}
.yc7{bottom:89.750001pt;}
.yb0{bottom:92.471995pt;}
.y7a{bottom:94.133063pt;}
.yb2{bottom:94.369863pt;}
.y19f{bottom:94.786929pt;}
.y125{bottom:95.557729pt;}
.y113{bottom:95.589739pt;}
.y202{bottom:95.767069pt;}
.y1c{bottom:98.840667pt;}
.yd2{bottom:102.910932pt;}
.y149{bottom:103.057729pt;}
.y168{bottom:104.391062pt;}
.y177{bottom:104.403862pt;}
.yc6{bottom:105.743601pt;}
.y201{bottom:107.767069pt;}
.y1b{bottom:109.508667pt;}
.y79{bottom:110.126663pt;}
.y19e{bottom:110.780529pt;}
.y112{bottom:111.583339pt;}
.y124{bottom:111.596139pt;}
.yd1{bottom:118.904532pt;}
.y153{bottom:119.064129pt;}
.y148{bottom:119.076929pt;}
.y200{bottom:119.767069pt;}
.y167{bottom:120.391062pt;}
.y176{bottom:120.397462pt;}
.yc5{bottom:121.750001pt;}
.y23a{bottom:122.971333pt;}
.y78{bottom:126.120263pt;}
.y19d{bottom:126.774129pt;}
.yad{bottom:127.184267pt;}
.y111{bottom:127.576939pt;}
.y123{bottom:127.589739pt;}
.y1ff{bottom:131.777069pt;}
.yd0{bottom:134.898132pt;}
.y152{bottom:135.057729pt;}
.y147{bottom:135.070529pt;}
.y175{bottom:136.391062pt;}
.y166{bottom:136.397462pt;}
.yc4{bottom:137.743601pt;}
.y45{bottom:141.238933pt;}
.y77{bottom:142.113863pt;}
.y1ce{bottom:142.786929pt;}
.y19c{bottom:142.831729pt;}
.yac{bottom:143.222799pt;}
.y110{bottom:143.570539pt;}
.y122{bottom:143.583339pt;}
.y1fe{bottom:143.777069pt;}
.y13a{bottom:144.674927pt;}
.y239{bottom:146.971333pt;}
.ycf{bottom:150.904532pt;}
.y146{bottom:151.064129pt;}
.y151{bottom:151.076939pt;}
.y165{bottom:152.391062pt;}
.y174{bottom:152.410273pt;}
.y44{bottom:153.238933pt;}
.yc3{bottom:153.743601pt;}
.y36{bottom:154.646267pt;}
.y139{bottom:158.008260pt;}
.y76{bottom:158.107463pt;}
.y1cd{bottom:158.780529pt;}
.y19b{bottom:158.825329pt;}
.y238{bottom:158.971333pt;}
.yab{bottom:159.216399pt;}
.y10f{bottom:159.564139pt;}
.y121{bottom:159.576939pt;}
.y1fd{bottom:161.107069pt;}
.yce{bottom:166.898132pt;}
.y145{bottom:167.064139pt;}
.y150{bottom:167.070539pt;}
.y164{bottom:168.397473pt;}
.y173{bottom:168.403873pt;}
.y43{bottom:169.238933pt;}
.y35{bottom:170.639867pt;}
.y237{bottom:170.971333pt;}
.y138{bottom:171.341593pt;}
.y1fc{bottom:173.107069pt;}
.y75{bottom:174.158663pt;}
.y1cc{bottom:174.774129pt;}
.y19a{bottom:174.818929pt;}
.yaa{bottom:175.209999pt;}
.y10e{bottom:175.557739pt;}
.y120{bottom:175.570539pt;}
.y42{bottom:177.238933pt;}
.ycd{bottom:182.930132pt;}
.y144{bottom:183.064139pt;}
.y163{bottom:184.397473pt;}
.y137{bottom:184.674927pt;}
.y1fb{bottom:185.107069pt;}
.y34{bottom:186.633467pt;}
.y41{bottom:189.238933pt;}
.y74{bottom:190.152263pt;}
.y1cb{bottom:190.806129pt;}
.y199{bottom:190.812529pt;}
.ya9{bottom:191.203599pt;}
.y10d{bottom:191.564139pt;}
.y1fa{bottom:197.107069pt;}
.y136{bottom:198.008260pt;}
.yc2{bottom:198.898132pt;}
.ycc{bottom:198.923732pt;}
.y14f{bottom:199.064139pt;}
.y143{bottom:199.102397pt;}
.y162{bottom:200.391073pt;}
.y33{bottom:202.627067pt;}
.y236{bottom:202.971313pt;}
.y40{bottom:205.238933pt;}
.y73{bottom:206.145863pt;}
.y1ca{bottom:206.799729pt;}
.y198{bottom:206.806129pt;}
.ya8{bottom:207.197199pt;}
.y11f{bottom:207.557739pt;}
.y10c{bottom:207.621617pt;}
.y1f9{bottom:209.107069pt;}
.y135{bottom:211.341593pt;}
.yc1{bottom:214.917332pt;}
.y235{bottom:214.971313pt;}
.y14e{bottom:215.057739pt;}
.y142{bottom:215.095997pt;}
.y161{bottom:216.397473pt;}
.y172{bottom:216.450783pt;}
.y3f{bottom:217.238933pt;}
.y32{bottom:218.620667pt;}
.y72{bottom:222.139463pt;}
.y1c9{bottom:222.793329pt;}
.y197{bottom:222.799729pt;}
.ya7{bottom:223.190799pt;}
.y11e{bottom:223.557739pt;}
.y10b{bottom:223.615217pt;}
.y134{bottom:224.674927pt;}
.y3e{bottom:225.238933pt;}
.y1f8{bottom:226.437069pt;}
.y234{bottom:226.971313pt;}
.yc0{bottom:230.910932pt;}
.y14d{bottom:231.064139pt;}
.y141{bottom:231.089597pt;}
.y160{bottom:232.391073pt;}
.y171{bottom:232.444383pt;}
.y275{bottom:233.638021pt;}
.y31{bottom:234.671893pt;}
.y133{bottom:238.008260pt;}
.y71{bottom:238.133063pt;}
.y1f7{bottom:238.437069pt;}
.y1c8{bottom:238.786929pt;}
.y196{bottom:238.793329pt;}
.y233{bottom:238.971313pt;}
.ya6{bottom:239.184399pt;}
.y11d{bottom:239.563997pt;}
.y10a{bottom:239.608817pt;}
.y274{bottom:245.638021pt;}
.ybf{bottom:246.904532pt;}
.y14c{bottom:247.057739pt;}
.y140{bottom:247.083197pt;}
.y15f{bottom:248.391073pt;}
.y170{bottom:248.437983pt;}
.y1f6{bottom:250.437069pt;}
.y30{bottom:250.665493pt;}
.y232{bottom:250.971313pt;}
.y13b{bottom:251.341593pt;}
.y70{bottom:254.126663pt;}
.y1c7{bottom:254.780529pt;}
.y195{bottom:254.786929pt;}
.ya5{bottom:255.177999pt;}
.y11c{bottom:255.570397pt;}
.y109{bottom:255.602417pt;}
.y273{bottom:257.638021pt;}
.y1f5{bottom:262.437069pt;}
.ybe{bottom:262.898132pt;}
.y231{bottom:262.971313pt;}
.y14b{bottom:263.057597pt;}
.y13f{bottom:263.076797pt;}
.y16f{bottom:264.431583pt;}
.y27{bottom:265.930947pt;}
.y2f{bottom:266.659093pt;}
.y2ad{bottom:269.638006pt;}
.y272{bottom:269.638021pt;}
.y6f{bottom:270.120263pt;}
.y1c6{bottom:270.774129pt;}
.y194{bottom:270.780529pt;}
.ya4{bottom:271.190799pt;}
.y11b{bottom:271.563997pt;}
.y108{bottom:271.596017pt;}
.y1f4{bottom:274.437069pt;}
.y230{bottom:274.971313pt;}
.ycb{bottom:278.898132pt;}
.ybd{bottom:278.904532pt;}
.y13e{bottom:279.070397pt;}
.y15e{bottom:280.416551pt;}
.y16e{bottom:280.425183pt;}
.y2ac{bottom:281.638006pt;}
.y271{bottom:281.638021pt;}
.y26{bottom:281.924547pt;}
.y2e{bottom:282.652693pt;}
.y6e{bottom:286.113863pt;}
.y193{bottom:286.774129pt;}
.y1c5{bottom:286.780529pt;}
.y22f{bottom:286.971313pt;}
.ya3{bottom:287.184399pt;}
.y11a{bottom:287.563997pt;}
.y107{bottom:287.589617pt;}
.y1f3{bottom:291.767069pt;}
.y2ab{bottom:293.638006pt;}
.y270{bottom:293.638021pt;}
.ybc{bottom:294.898132pt;}
.yca{bottom:294.922796pt;}
.y13d{bottom:295.063997pt;}
.y15d{bottom:296.410151pt;}
.y16d{bottom:296.418783pt;}
.y25{bottom:297.930947pt;}
.y2d{bottom:298.646293pt;}
.y22e{bottom:298.971313pt;}
.y6d{bottom:302.107463pt;}
.y1c4{bottom:302.774129pt;}
.y192{bottom:302.780529pt;}
.ya2{bottom:303.177999pt;}
.y119{bottom:303.563997pt;}
.y106{bottom:303.583217pt;}
.y1f2{bottom:303.767069pt;}
.y2aa{bottom:305.638006pt;}
.y26f{bottom:305.638021pt;}
.ybb{bottom:308.354675pt;}
.yb8{bottom:308.882670pt;}
.y132{bottom:309.831340pt;}
.yba{bottom:310.898132pt;}
.yc9{bottom:310.916396pt;}
.y22d{bottom:310.971313pt;}
.y14a{bottom:311.052929pt;}
.y13c{bottom:311.057597pt;}
.y15c{bottom:312.403751pt;}
.y16c{bottom:312.412383pt;}
.y24{bottom:313.924547pt;}
.y2c{bottom:314.639893pt;}
.y1f1{bottom:315.767069pt;}
.y2a9{bottom:317.638006pt;}
.y26e{bottom:317.638021pt;}
.y6c{bottom:318.120263pt;}
.y191{bottom:318.774129pt;}
.ya1{bottom:319.203619pt;}
.y118{bottom:319.557597pt;}
.y105{bottom:319.576817pt;}
.y131{bottom:323.164673pt;}
.yb6{bottom:324.354675pt;}
.yb5{bottom:326.898132pt;}
.yc8{bottom:326.909996pt;}
.y1f0{bottom:327.767069pt;}
.y15b{bottom:328.397351pt;}
.y16b{bottom:328.405983pt;}
.y2a8{bottom:329.638006pt;}
.y26d{bottom:329.638021pt;}
.y23{bottom:329.937320pt;}
.y2b{bottom:330.633493pt;}
.y6b{bottom:334.113863pt;}
.y190{bottom:334.793329pt;}
.y1c3{bottom:334.799729pt;}
.y22c{bottom:334.971313pt;}
.ya0{bottom:335.197219pt;}
.y104{bottom:335.570417pt;}
.y117{bottom:335.634417pt;}
.y130{bottom:336.498006pt;}
.y1ef{bottom:339.767069pt;}
.y2a7{bottom:341.638006pt;}
.y26c{bottom:341.638021pt;}
.y15a{bottom:344.390951pt;}
.y16a{bottom:344.399583pt;}
.y22{bottom:345.930920pt;}
.y2a{bottom:346.627093pt;}
.y22b{bottom:346.971313pt;}
.y12f{bottom:349.831340pt;}
.y6a{bottom:350.107463pt;}
.y18f{bottom:350.786929pt;}
.y1c2{bottom:350.793329pt;}
.y9f{bottom:351.190819pt;}
.y103{bottom:351.564017pt;}
.y116{bottom:351.628017pt;}
.y2a6{bottom:353.638006pt;}
.y26b{bottom:353.638021pt;}
.y22a{bottom:358.971313pt;}
.y159{bottom:361.517985pt;}
.y21{bottom:361.924520pt;}
.y29{bottom:362.620693pt;}
.y12e{bottom:363.164673pt;}
.y2a5{bottom:365.638006pt;}
.y26a{bottom:365.638021pt;}
.y69{bottom:366.107463pt;}
.y18e{bottom:366.780529pt;}
.y1c1{bottom:366.786929pt;}
.y9e{bottom:367.184419pt;}
.y102{bottom:367.557617pt;}
.y115{bottom:367.621617pt;}
.y1ee{bottom:373.100382pt;}
.yf7{bottom:374.730683pt;}
.y158{bottom:374.851318pt;}
.y12d{bottom:376.498006pt;}
.y2a4{bottom:377.638006pt;}
.y269{bottom:377.638021pt;}
.y20{bottom:377.924520pt;}
.y28{bottom:378.630947pt;}
.y68{bottom:382.107463pt;}
.y1c0{bottom:382.780529pt;}
.y18d{bottom:382.786929pt;}
.y229{bottom:382.971313pt;}
.y9d{bottom:383.178019pt;}
.y101{bottom:383.615217pt;}
.y157{bottom:388.184652pt;}
.y2a3{bottom:389.638006pt;}
.y268{bottom:389.638021pt;}
.y12c{bottom:389.831340pt;}
.yf6{bottom:390.945317pt;}
.y228{bottom:394.971313pt;}
.y67{bottom:398.107463pt;}
.y1bf{bottom:398.774129pt;}
.y18c{bottom:398.780529pt;}
.y9c{bottom:399.184419pt;}
.y17e{bottom:399.597982pt;}
.y100{bottom:399.608817pt;}
.y156{bottom:401.517985pt;}
.y2a2{bottom:401.638006pt;}
.y267{bottom:401.638021pt;}
.y12b{bottom:403.164673pt;}
.yf5{bottom:407.073317pt;}
.y17d{bottom:412.931315pt;}
.y2a1{bottom:413.638006pt;}
.y266{bottom:413.638021pt;}
.y66{bottom:414.107463pt;}
.y18b{bottom:414.774129pt;}
.y1be{bottom:414.786929pt;}
.y155{bottom:414.851318pt;}
.y9b{bottom:415.210019pt;}
.yff{bottom:415.602417pt;}
.y12a{bottom:416.498006pt;}
.y227{bottom:418.971313pt;}
.yf4{bottom:423.211984pt;}
.y1a{bottom:424.724533pt;}
.y2a0{bottom:425.638006pt;}
.y265{bottom:425.638021pt;}
.y17c{bottom:426.264648pt;}
.y154{bottom:428.184652pt;}
.y1bd{bottom:430.780529pt;}
.y18a{bottom:430.857329pt;}
.y226{bottom:430.971313pt;}
.y9a{bottom:431.203619pt;}
.yfe{bottom:431.596017pt;}
.y1ed{bottom:431.767049pt;}
.yf3{bottom:435.211984pt;}
.y29f{bottom:437.638006pt;}
.y264{bottom:437.638021pt;}
.y17b{bottom:439.597982pt;}
.y19{bottom:440.724533pt;}
.y225{bottom:442.971313pt;}
.y1bc{bottom:446.774129pt;}
.y189{bottom:446.850929pt;}
.y99{bottom:447.197219pt;}
.yfd{bottom:447.589617pt;}
.y1ec{bottom:447.767049pt;}
.y29e{bottom:449.638006pt;}
.y263{bottom:449.638021pt;}
.yf2{bottom:451.350650pt;}
.y17a{bottom:452.931315pt;}
.y18{bottom:456.724533pt;}
.y29d{bottom:461.638006pt;}
.y262{bottom:461.638021pt;}
.y1bb{bottom:462.780529pt;}
.y65{bottom:462.844529pt;}
.y98{bottom:463.190819pt;}
.yf1{bottom:463.350650pt;}
.yfc{bottom:463.583217pt;}
.y1eb{bottom:463.786249pt;}
.y179{bottom:466.264648pt;}
.y224{bottom:466.971313pt;}
.y17{bottom:472.724533pt;}
.y29c{bottom:473.638006pt;}
.y261{bottom:473.638021pt;}
.y1ba{bottom:478.780529pt;}
.y64{bottom:478.838129pt;}
.y223{bottom:478.971313pt;}
.y97{bottom:479.184419pt;}
.yf0{bottom:479.478650pt;}
.yfb{bottom:479.576817pt;}
.y1ea{bottom:479.779849pt;}
.y29b{bottom:485.638006pt;}
.y260{bottom:485.638021pt;}
.y16{bottom:488.724533pt;}
.y1b9{bottom:494.774129pt;}
.y63{bottom:494.831729pt;}
.y96{bottom:495.178019pt;}
.yfa{bottom:495.570417pt;}
.yef{bottom:495.606650pt;}
.y1e9{bottom:495.773449pt;}
.y29a{bottom:497.638006pt;}
.y25f{bottom:497.638021pt;}
.y222{bottom:502.971313pt;}
.y15{bottom:508.724533pt;}
.y299{bottom:509.638006pt;}
.y25e{bottom:509.638021pt;}
.y1b8{bottom:510.793329pt;}
.y62{bottom:510.825329pt;}
.y95{bottom:511.184419pt;}
.yf9{bottom:511.564017pt;}
.yee{bottom:511.734650pt;}
.y1e8{bottom:511.767049pt;}
.y221{bottom:514.971313pt;}
.y298{bottom:521.638006pt;}
.y25d{bottom:521.638021pt;}
.y14{bottom:524.724533pt;}
.y1b7{bottom:526.786929pt;}
.y61{bottom:526.818929pt;}
.y220{bottom:526.971313pt;}
.y94{bottom:527.184419pt;}
.y114{bottom:527.554796pt;}
.yf8{bottom:527.557617pt;}
.y1e7{bottom:527.792649pt;}
.yed{bottom:527.873317pt;}
.y297{bottom:533.638006pt;}
.y25c{bottom:533.638021pt;}
.y13{bottom:540.724533pt;}
.y1b6{bottom:542.780529pt;}
.y60{bottom:542.812529pt;}
.y93{bottom:543.178019pt;}
.y1e6{bottom:543.786249pt;}
.yec{bottom:544.001317pt;}
.y296{bottom:545.638006pt;}
.y25b{bottom:545.638021pt;}
.y21f{bottom:550.971313pt;}
.y12{bottom:556.724533pt;}
.y295{bottom:557.638006pt;}
.y25a{bottom:557.638021pt;}
.y1b5{bottom:558.774129pt;}
.y5f{bottom:558.806129pt;}
.y92{bottom:559.197219pt;}
.y1e5{bottom:559.779849pt;}
.yeb{bottom:560.139984pt;}
.y21e{bottom:562.971313pt;}
.y294{bottom:569.638006pt;}
.y259{bottom:569.638021pt;}
.yea{bottom:572.139984pt;}
.y11{bottom:572.724533pt;}
.y1b4{bottom:574.780529pt;}
.y5e{bottom:574.799729pt;}
.y21d{bottom:574.971313pt;}
.y91{bottom:575.190819pt;}
.y1e4{bottom:575.773449pt;}
.y129{bottom:578.097982pt;}
.y293{bottom:581.638006pt;}
.y258{bottom:581.638021pt;}
.y21c{bottom:586.971313pt;}
.ye9{bottom:588.267984pt;}
.y10{bottom:588.724533pt;}
.y1b3{bottom:590.774129pt;}
.y5d{bottom:590.793329pt;}
.y90{bottom:591.184419pt;}
.y128{bottom:591.431315pt;}
.y1e3{bottom:591.767049pt;}
.y292{bottom:593.638006pt;}
.y257{bottom:593.638021pt;}
.y21b{bottom:598.971313pt;}
.ye8{bottom:604.395984pt;}
.yf{bottom:604.724533pt;}
.y127{bottom:604.764648pt;}
.y291{bottom:605.638006pt;}
.y256{bottom:605.638021pt;}
.y5c{bottom:606.786929pt;}
.y1b2{bottom:606.831770pt;}
.y8f{bottom:607.178019pt;}
.y1e2{bottom:607.773449pt;}
.y21a{bottom:610.971313pt;}
.y290{bottom:617.638006pt;}
.y255{bottom:617.638021pt;}
.y126{bottom:618.097982pt;}
.ye7{bottom:620.534650pt;}
.ye{bottom:620.724533pt;}
.y5b{bottom:622.780529pt;}
.y1b1{bottom:622.825370pt;}
.y219{bottom:622.971313pt;}
.y8e{bottom:623.178019pt;}
.y1e1{bottom:623.767049pt;}
.y28f{bottom:629.638006pt;}
.y254{bottom:629.638021pt;}
.ye6{bottom:636.673317pt;}
.y5a{bottom:638.774129pt;}
.y1b0{bottom:638.818970pt;}
.y218{bottom:638.971313pt;}
.y8d{bottom:639.203497pt;}
.y1e0{bottom:639.767049pt;}
.yd{bottom:640.724533pt;}
.y28e{bottom:641.638006pt;}
.y253{bottom:641.638021pt;}
.y217{bottom:646.971313pt;}
.ye5{bottom:648.673317pt;}
.y28d{bottom:653.638006pt;}
.y252{bottom:653.638021pt;}
.y59{bottom:654.806170pt;}
.y1af{bottom:654.812570pt;}
.y8c{bottom:655.197097pt;}
.yc{bottom:656.724533pt;}
.y216{bottom:658.971313pt;}
.ye4{bottom:664.801317pt;}
.y28c{bottom:665.638006pt;}
.y251{bottom:665.638021pt;}
.y58{bottom:670.799770pt;}
.y1ae{bottom:670.806170pt;}
.y215{bottom:670.971354pt;}
.y8b{bottom:671.190697pt;}
.y1df{bottom:671.786290pt;}
.yb{bottom:672.724533pt;}
.ye3{bottom:676.801317pt;}
.y28b{bottom:677.638006pt;}
.y250{bottom:677.638021pt;}
.y214{bottom:682.971354pt;}
.y57{bottom:686.793370pt;}
.y1ad{bottom:686.799770pt;}
.y8a{bottom:687.184297pt;}
.y1de{bottom:687.779890pt;}
.ya{bottom:688.724533pt;}
.y28a{bottom:689.638006pt;}
.y24f{bottom:689.638021pt;}
.ye2{bottom:692.939984pt;}
.y213{bottom:694.971354pt;}
.y289{bottom:701.638006pt;}
.y24e{bottom:701.638021pt;}
.y56{bottom:702.786970pt;}
.y1ac{bottom:702.793370pt;}
.y89{bottom:703.184297pt;}
.y1dd{bottom:703.773490pt;}
.ye1{bottom:704.939984pt;}
.y212{bottom:706.971354pt;}
.y9{bottom:708.724533pt;}
.y288{bottom:713.638006pt;}
.y24d{bottom:713.638021pt;}
.y55{bottom:718.780570pt;}
.y1ab{bottom:718.786970pt;}
.y211{bottom:718.971354pt;}
.y88{bottom:719.184297pt;}
.y1dc{bottom:719.767090pt;}
.ye0{bottom:721.067984pt;}
.y287{bottom:725.638006pt;}
.y24c{bottom:725.638021pt;}
.y54{bottom:734.774170pt;}
.y1aa{bottom:734.780570pt;}
.y210{bottom:734.971354pt;}
.y87{bottom:735.177897pt;}
.y1db{bottom:735.767090pt;}
.ydf{bottom:737.206650pt;}
.y286{bottom:737.638006pt;}
.y24b{bottom:737.638021pt;}
.y20f{bottom:742.968021pt;}
.yde{bottom:749.206650pt;}
.y285{bottom:749.638006pt;}
.y24a{bottom:749.638021pt;}
.y53{bottom:750.780570pt;}
.y188{bottom:750.799770pt;}
.y86{bottom:751.184297pt;}
.y1da{bottom:751.831090pt;}
.y284{bottom:761.638006pt;}
.y249{bottom:761.638021pt;}
.ydd{bottom:765.334650pt;}
.y8{bottom:765.820547pt;}
.y52{bottom:766.774170pt;}
.y187{bottom:766.793370pt;}
.y20e{bottom:766.968021pt;}
.y85{bottom:767.184297pt;}
.y1d9{bottom:767.824690pt;}
.y283{bottom:773.638006pt;}
.y248{bottom:773.638021pt;}
.y20d{bottom:778.968021pt;}
.ydc{bottom:781.462650pt;}
.y51{bottom:782.780570pt;}
.y186{bottom:782.786970pt;}
.y1a9{bottom:782.838396pt;}
.y84{bottom:783.177897pt;}
.y1d8{bottom:783.818290pt;}
.y7{bottom:784.487213pt;}
.y282{bottom:785.638006pt;}
.y247{bottom:785.638021pt;}
.y20c{bottom:790.968021pt;}
.ydb{bottom:797.601317pt;}
.y281{bottom:797.638006pt;}
.y246{bottom:797.638021pt;}
.y50{bottom:798.774170pt;}
.y185{bottom:798.780570pt;}
.y1a8{bottom:798.831996pt;}
.y83{bottom:799.190697pt;}
.y1d7{bottom:799.811890pt;}
.y20b{bottom:802.968021pt;}
.y6{bottom:803.157880pt;}
.y280{bottom:809.638006pt;}
.y245{bottom:809.638021pt;}
.yda{bottom:813.729317pt;}
.y4f{bottom:814.774170pt;}
.y184{bottom:814.786970pt;}
.y1a7{bottom:814.825596pt;}
.y20a{bottom:814.968021pt;}
.y82{bottom:815.184297pt;}
.y1d6{bottom:815.805490pt;}
.y27f{bottom:821.638006pt;}
.y244{bottom:821.638021pt;}
.y209{bottom:826.968021pt;}
.yd9{bottom:829.867984pt;}
.y183{bottom:830.780570pt;}
.y4e{bottom:830.786970pt;}
.y1a6{bottom:830.819196pt;}
.y81{bottom:831.177897pt;}
.y1d5{bottom:831.799090pt;}
.y27e{bottom:833.638006pt;}
.y243{bottom:833.638021pt;}
.y5{bottom:835.169360pt;}
.y208{bottom:838.968021pt;}
.y27d{bottom:845.638006pt;}
.y242{bottom:845.638021pt;}
.yd8{bottom:845.995984pt;}
.y182{bottom:846.774170pt;}
.y4d{bottom:846.780570pt;}
.y1a5{bottom:846.812796pt;}
.y80{bottom:847.184297pt;}
.y1d4{bottom:847.792690pt;}
.y207{bottom:850.968021pt;}
.y27c{bottom:857.638006pt;}
.y241{bottom:857.638021pt;}
.y4c{bottom:862.774170pt;}
.y181{bottom:862.786970pt;}
.y1a4{bottom:862.806396pt;}
.y7f{bottom:863.177897pt;}
.y1d3{bottom:863.786290pt;}
.y27b{bottom:869.638006pt;}
.y240{bottom:869.638021pt;}
.y4{bottom:869.825360pt;}
.yd7{bottom:869.899984pt;}
.y180{bottom:878.780570pt;}
.y4b{bottom:878.786970pt;}
.y1a3{bottom:878.799996pt;}
.yd6{bottom:879.100016pt;}
.y7e{bottom:879.190697pt;}
.y1d2{bottom:879.779890pt;}
.y27a{bottom:881.638006pt;}
.y23f{bottom:881.638021pt;}
.y206{bottom:885.638021pt;}
.yd5{bottom:891.100016pt;}
.y279{bottom:893.638006pt;}
.y23e{bottom:893.638021pt;}
.y17f{bottom:894.774170pt;}
.y4a{bottom:894.780570pt;}
.y1a2{bottom:894.793596pt;}
.y7d{bottom:895.184297pt;}
.y1d1{bottom:895.773490pt;}
.y205{bottom:897.638021pt;}
.y278{bottom:905.638006pt;}
.y23d{bottom:905.638021pt;}
.y204{bottom:909.638021pt;}
.y49{bottom:910.774170pt;}
.y1a1{bottom:910.787196pt;}
.y7c{bottom:911.177897pt;}
.y1d0{bottom:911.767090pt;}
.yd4{bottom:912.713848pt;}
.y277{bottom:917.638006pt;}
.y23c{bottom:917.638021pt;}
.y3{bottom:918.544520pt;}
.y37{bottom:920.666827pt;}
.y203{bottom:921.638021pt;}
.y48{bottom:926.774170pt;}
.y1a0{bottom:926.780796pt;}
.y7b{bottom:927.177897pt;}
.yd3{bottom:927.377848pt;}
.y1cf{bottom:927.767090pt;}
.y276{bottom:929.638006pt;}
.y23b{bottom:929.638021pt;}
.y38{bottom:958.676027pt;}
.y3b{bottom:978.364907pt;}
.y2{bottom:988.708520pt;}
.y3a{bottom:993.978760pt;}
.yb3{bottom:1001.355225pt;}
.y46{bottom:1001.355306pt;}
.y1{bottom:1001.711187pt;}
.yb4{bottom:1002.044515pt;}
.y47{bottom:1002.048639pt;}
.h17{height:2.028971pt;}
.h1c{height:10.666667pt;}
.h1f{height:10.933333pt;}
.h1e{height:11.732000pt;}
.h1a{height:11.733333pt;}
.h14{height:22.896000pt;}
.h11{height:24.724000pt;}
.hb{height:32.965333pt;}
.h10{height:35.320000pt;}
.h15{height:35.506987pt;}
.h20{height:35.710154pt;}
.h19{height:36.014229pt;}
.h1b{height:36.546702pt;}
.h1d{height:36.598987pt;}
.hf{height:36.660800pt;}
.h24{height:37.674667pt;}
.h2f{height:38.080000pt;}
.h2c{height:38.880000pt;}
.h3{height:40.618667pt;}
.h12{height:40.661333pt;}
.h2e{height:40.723837pt;}
.h2d{height:40.724000pt;}
.h22{height:41.472000pt;}
.h2{height:41.984000pt;}
.h27{height:42.197333pt;}
.h16{height:43.605701pt;}
.he{height:46.273824pt;}
.ha{height:47.093333pt;}
.h21{height:47.472000pt;}
.h13{height:47.692799pt;}
.h18{height:48.326134pt;}
.hd{height:49.134667pt;}
.h28{height:49.474703pt;}
.h2a{height:49.576533pt;}
.h29{height:49.627693pt;}
.hc{height:49.653333pt;}
.h26{height:49.664619pt;}
.h2b{height:49.672004pt;}
.h9{height:51.840000pt;}
.h8{height:54.329067pt;}
.h6{height:59.728320pt;}
.h7{height:59.744320pt;}
.h4{height:68.570667pt;}
.h25{height:85.674667pt;}
.h23{height:89.472000pt;}
.h5{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w4{width:5.293333pt;}
.w6{width:11.293333pt;}
.w5{width:11.893333pt;}
.w7{width:12.226667pt;}
.w2{width:118.669333pt;}
.w3{width:284.478658pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:51.963587pt;}
.xc{left:61.463587pt;}
.x1{left:75.496000pt;}
.x2{left:82.430533pt;}
.x3{left:84.162800pt;}
.xd{left:86.265996pt;}
.x16{left:87.483866pt;}
.x23{left:95.590535pt;}
.x14{left:113.043996pt;}
.x15{left:118.336670pt;}
.x10{left:128.070394pt;}
.x20{left:143.929646pt;}
.x12{left:174.393717pt;}
.x1f{left:218.895028pt;}
.x4{left:240.726667pt;}
.x17{left:260.409342pt;}
.x18{left:271.702393pt;}
.x13{left:282.232422pt;}
.x1d{left:284.667865pt;}
.x19{left:289.822673pt;}
.x1a{left:295.116130pt;}
.x1b{left:325.906657pt;}
.x1c{left:338.133199pt;}
.x1e{left:341.017863pt;}
.x5{left:406.304800pt;}
.x22{left:414.299194pt;}
.x6{left:416.961600pt;}
.x24{left:426.300537pt;}
.xe{left:432.965332pt;}
.xf{left:441.274536pt;}
.x11{left:568.602946pt;}
.x8{left:599.161333pt;}
.x7{left:617.715453pt;}
.xb{left:651.124920pt;}
.x21{left:658.727458pt;}
.xa{left:664.110520pt;}
}




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