
    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_7fa03df2dde6fbd4a004b170.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_7e9ca4a1860721cd7c1e413b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_eebaa4ca820c04c041de726b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5cb932cb20b662bd2e81e8d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_f8763267fbb42990fe02a285.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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_e9a8970686acc948b34f27b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_e936539a4e69a4b5b7409ffe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.328000;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_7eda79207ef4dde463683d7f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_ba48cd3ade95c385af474d14.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.144000;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_c0ff5a7b0ab1732466e574e1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.607000;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_e47557a1c62d9635f9a726b0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.888000;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_3b95bf2df858d516a25e5f02.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.590000;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_d47c7b23dfe3f974b9abc436.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.890000;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_26ba93778fa42364c46321a6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.698000;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_2f2761ddf970e78fb8561614.woff2')format("woff");}.fff{font-family:fff;line-height:0.932000;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_0d9eec643cb2df57a20201d2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.888000;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_6e8d2e8ac1808dc855aae540.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.817000;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_b855d21d12fb60a3c188e391.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.932000;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);}
.v2{vertical-align:-20.400055px;}
.v3{vertical-align:-15.000183px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v4{vertical-align:41.230303px;}
.ls69{letter-spacing:-3.360000px;}
.ls52{letter-spacing:-2.820000px;}
.ls97{letter-spacing:-2.700000px;}
.ls54{letter-spacing:-2.400000px;}
.ls70{letter-spacing:-2.340000px;}
.ls8f{letter-spacing:-2.220000px;}
.ls6a{letter-spacing:-2.040000px;}
.ls6e{letter-spacing:-1.980000px;}
.ls6f{letter-spacing:-1.860465px;}
.ls6b{letter-spacing:-1.440000px;}
.ls6c{letter-spacing:-1.380000px;}
.ls3a{letter-spacing:-1.320000px;}
.ls68{letter-spacing:-1.260000px;}
.ls51{letter-spacing:-1.200000px;}
.ls50{letter-spacing:-1.140000px;}
.ls4e{letter-spacing:-1.080000px;}
.ls6d{letter-spacing:-1.020000px;}
.lsa2{letter-spacing:-0.960000px;}
.ls53{letter-spacing:-0.900000px;}
.lsa1{letter-spacing:-0.840000px;}
.ls3b{letter-spacing:-0.780000px;}
.ls3d{letter-spacing:-0.720000px;}
.lsac{letter-spacing:-0.714000px;}
.lsa7{letter-spacing:-0.663000px;}
.ls67{letter-spacing:-0.660000px;}
.lsaa{letter-spacing:-0.612000px;}
.ls39{letter-spacing:-0.600000px;}
.ls4f{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.480000px;}
.ls38{letter-spacing:-0.420000px;}
.lsa4{letter-spacing:-0.408000px;}
.ls35{letter-spacing:-0.360000px;}
.lsab{letter-spacing:-0.357000px;}
.lsc8{letter-spacing:-0.306000px;}
.ls37{letter-spacing:-0.300000px;}
.lsa9{letter-spacing:-0.255000px;}
.ls4c{letter-spacing:-0.240000px;}
.lsa6{letter-spacing:-0.204000px;}
.ls34{letter-spacing:-0.180000px;}
.lsa3{letter-spacing:-0.153000px;}
.ls36{letter-spacing:-0.120000px;}
.lsa5{letter-spacing:-0.102000px;}
.ls8e{letter-spacing:-0.084000px;}
.ls3c{letter-spacing:-0.060000px;}
.lsa8{letter-spacing:-0.051000px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000037px;}
.ls30{letter-spacing:0.030000px;}
.ls8d{letter-spacing:0.045593px;}
.ls8c{letter-spacing:0.046143px;}
.lsae{letter-spacing:0.051000px;}
.ls40{letter-spacing:0.060000px;}
.ls5d{letter-spacing:0.060015px;}
.ls8b{letter-spacing:0.090000px;}
.lsb0{letter-spacing:0.102000px;}
.ls32{letter-spacing:0.120000px;}
.lsc0{letter-spacing:0.127500px;}
.ls98{letter-spacing:0.150000px;}
.lsb3{letter-spacing:0.153000px;}
.lsba{letter-spacing:0.178500px;}
.ls6{letter-spacing:0.178791px;}
.ls5f{letter-spacing:0.180000px;}
.ls9c{letter-spacing:0.204000px;}
.ls8a{letter-spacing:0.209930px;}
.ls99{letter-spacing:0.210000px;}
.ls89{letter-spacing:0.210022px;}
.ls48{letter-spacing:0.214783px;}
.ls47{letter-spacing:0.215332px;}
.ls44{letter-spacing:0.230896px;}
.ls45{letter-spacing:0.231445px;}
.ls1{letter-spacing:0.240000px;}
.ls91{letter-spacing:0.246007px;}
.ls7{letter-spacing:0.255000px;}
.lsad{letter-spacing:0.264000px;}
.lsb1{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.lsb4{letter-spacing:0.306000px;}
.ls43{letter-spacing:0.330000px;}
.lsaf{letter-spacing:0.357000px;}
.ls4{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.390000px;}
.ls4a{letter-spacing:0.399536px;}
.lsa0{letter-spacing:0.408000px;}
.ls7e{letter-spacing:0.420000px;}
.ls26{letter-spacing:0.430801px;}
.ls3e{letter-spacing:0.450000px;}
.lsb5{letter-spacing:0.459000px;}
.ls3{letter-spacing:0.480000px;}
.lsb9{letter-spacing:0.484500px;}
.ls85{letter-spacing:0.510000px;}
.ls81{letter-spacing:0.526794px;}
.ls3f{letter-spacing:0.540000px;}
.ls9d{letter-spacing:0.561000px;}
.ls61{letter-spacing:0.565796px;}
.ls49{letter-spacing:0.570000px;}
.lsc1{letter-spacing:0.586500px;}
.lsf{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.605992px;}
.ls46{letter-spacing:0.630000px;}
.lsc3{letter-spacing:0.637500px;}
.ls41{letter-spacing:0.660000px;}
.lsb8{letter-spacing:0.663000px;}
.ls87{letter-spacing:0.678000px;}
.ls42{letter-spacing:0.690000px;}
.ls7c{letter-spacing:0.696000px;}
.ls92{letter-spacing:0.705505px;}
.ls9e{letter-spacing:0.714000px;}
.ls5{letter-spacing:0.720000px;}
.ls86{letter-spacing:0.726563px;}
.ls90{letter-spacing:0.731961px;}
.ls94{letter-spacing:0.749403px;}
.ls93{letter-spacing:0.749410px;}
.lse{letter-spacing:0.750000px;}
.lsbf{letter-spacing:0.765000px;}
.ls17{letter-spacing:0.780000px;}
.ls64{letter-spacing:0.797974px;}
.ls7f{letter-spacing:0.798019px;}
.ls80{letter-spacing:0.798065px;}
.ls65{letter-spacing:0.798157px;}
.ls60{letter-spacing:0.810000px;}
.ls9f{letter-spacing:0.816000px;}
.ls16{letter-spacing:0.840000px;}
.lsc2{letter-spacing:0.867000px;}
.ls7b{letter-spacing:0.870000px;}
.ls10{letter-spacing:0.900000px;}
.lsb6{letter-spacing:0.918000px;}
.ls28{letter-spacing:0.925140px;}
.ls29{letter-spacing:0.925232px;}
.ls2b{letter-spacing:0.960000px;}
.lsc4{letter-spacing:0.969000px;}
.ls25{letter-spacing:1.012207px;}
.ls15{letter-spacing:1.020000px;}
.ls2f{letter-spacing:1.050000px;}
.lsc7{letter-spacing:1.071000px;}
.ls14{letter-spacing:1.080000px;}
.lsbe{letter-spacing:1.096500px;}
.ls66{letter-spacing:1.110000px;}
.lsb2{letter-spacing:1.122000px;}
.ls9a{letter-spacing:1.139979px;}
.lsd{letter-spacing:1.140000px;}
.ls13{letter-spacing:1.170000px;}
.lsc5{letter-spacing:1.173000px;}
.lsa{letter-spacing:1.200000px;}
.lsc6{letter-spacing:1.224000px;}
.ls95{letter-spacing:1.230000px;}
.ls9b{letter-spacing:1.247949px;}
.ls82{letter-spacing:1.260000px;}
.lsb7{letter-spacing:1.275000px;}
.ls83{letter-spacing:1.289429px;}
.ls5e{letter-spacing:1.290000px;}
.lsbc{letter-spacing:1.300500px;}
.ls18{letter-spacing:1.320000px;}
.lsbb{letter-spacing:1.326000px;}
.ls24{letter-spacing:1.380000px;}
.ls23{letter-spacing:1.440000px;}
.ls72{letter-spacing:1.441132px;}
.ls1c{letter-spacing:1.441772px;}
.ls1b{letter-spacing:1.441822px;}
.ls73{letter-spacing:1.441864px;}
.ls4d{letter-spacing:1.500000px;}
.ls7d{letter-spacing:1.547987px;}
.ls63{letter-spacing:1.560000px;}
.ls11{letter-spacing:1.590000px;}
.ls88{letter-spacing:1.607992px;}
.ls22{letter-spacing:1.619990px;}
.lsb{letter-spacing:1.620000px;}
.lsbd{letter-spacing:1.632000px;}
.ls1f{letter-spacing:1.680000px;}
.ls19{letter-spacing:1.710000px;}
.ls2a{letter-spacing:1.740000px;}
.ls77{letter-spacing:1.799378px;}
.ls2c{letter-spacing:1.800000px;}
.ls21{letter-spacing:1.806000px;}
.ls27{letter-spacing:1.860000px;}
.ls20{letter-spacing:1.920000px;}
.ls96{letter-spacing:1.980000px;}
.ls1a{letter-spacing:2.040000px;}
.ls84{letter-spacing:2.100000px;}
.ls62{letter-spacing:2.160000px;}
.ls2d{letter-spacing:2.220000px;}
.ls1d{letter-spacing:2.340000px;}
.ls7a{letter-spacing:2.400000px;}
.ls2e{letter-spacing:2.460000px;}
.ls74{letter-spacing:2.520000px;}
.ls76{letter-spacing:2.580000px;}
.ls78{letter-spacing:2.640000px;}
.ls1e{letter-spacing:2.801991px;}
.ls71{letter-spacing:2.820000px;}
.ls79{letter-spacing:2.940000px;}
.lsc{letter-spacing:3.000000px;}
.ls75{letter-spacing:3.240000px;}
.ls0{letter-spacing:3.990000px;}
.ls58{letter-spacing:13.323329px;}
.ls59{letter-spacing:13.383344px;}
.ls56{letter-spacing:16.684169px;}
.ls57{letter-spacing:19.656307px;}
.ls55{letter-spacing:19.656885px;}
.ls5a{letter-spacing:19.656903px;}
.ls5c{letter-spacing:19.656948px;}
.ls5b{letter-spacing:19.658779px;}
.ls4b{letter-spacing:23.825954px;}
.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;}
}
.ws26{word-spacing:-17.040000px;}
.ws9e{word-spacing:-16.620000px;}
.ws9d{word-spacing:-16.110000px;}
.ws31{word-spacing:-15.600000px;}
.ws42{word-spacing:-15.390000px;}
.wsb4{word-spacing:-15.360000px;}
.ws6{word-spacing:-15.300000px;}
.ws41{word-spacing:-15.000000px;}
.ws6e{word-spacing:-14.760000px;}
.ws6d{word-spacing:-14.700000px;}
.wsb9{word-spacing:-14.640000px;}
.ws6f{word-spacing:-14.460000px;}
.wsb7{word-spacing:-13.800000px;}
.ws6c{word-spacing:-13.740000px;}
.wsc2{word-spacing:-13.005000px;}
.wsad{word-spacing:-12.780000px;}
.ws7e{word-spacing:-12.660000px;}
.ws1b{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.wsb5{word-spacing:-12.300000px;}
.ws61{word-spacing:-12.180000px;}
.ws5{word-spacing:-11.760000px;}
.ws77{word-spacing:-11.640000px;}
.ws7{word-spacing:-11.520000px;}
.ws1c{word-spacing:-10.500000px;}
.wsa6{word-spacing:-10.416000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.ws8{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws15{word-spacing:-7.500000px;}
.ws9b{word-spacing:-6.375000px;}
.ws85{word-spacing:-3.000000px;}
.ws8a{word-spacing:-2.940000px;}
.ws87{word-spacing:-2.520000px;}
.ws29{word-spacing:-2.340000px;}
.ws3a{word-spacing:-2.220000px;}
.ws8b{word-spacing:-2.040000px;}
.ws2c{word-spacing:-1.920000px;}
.ws9{word-spacing:-1.890000px;}
.wsbd{word-spacing:-1.800000px;}
.wsa1{word-spacing:-1.740000px;}
.ws3d{word-spacing:-1.560000px;}
.ws20{word-spacing:-1.500000px;}
.ws2e{word-spacing:-1.440000px;}
.ws79{word-spacing:-1.380000px;}
.wsc5{word-spacing:-1.326000px;}
.ws30{word-spacing:-1.320000px;}
.wsc1{word-spacing:-1.275000px;}
.ws75{word-spacing:-1.260000px;}
.wsc7{word-spacing:-1.224000px;}
.wsd{word-spacing:-1.200000px;}
.wsf9{word-spacing:-1.173000px;}
.ws21{word-spacing:-1.140000px;}
.wsdd{word-spacing:-1.122000px;}
.ws37{word-spacing:-1.080000px;}
.wsd0{word-spacing:-1.071000px;}
.ws83{word-spacing:-1.020000px;}
.wscf{word-spacing:-0.969000px;}
.wse{word-spacing:-0.960000px;}
.wsef{word-spacing:-0.918000px;}
.ws25{word-spacing:-0.900000px;}
.ws4f{word-spacing:-0.840000px;}
.wsdc{word-spacing:-0.816000px;}
.ws22{word-spacing:-0.780000px;}
.wsd1{word-spacing:-0.765000px;}
.wsf{word-spacing:-0.720000px;}
.wsd2{word-spacing:-0.714000px;}
.wscc{word-spacing:-0.663000px;}
.ws81{word-spacing:-0.660000px;}
.ws18{word-spacing:-0.612000px;}
.ws2d{word-spacing:-0.600000px;}
.wsb{word-spacing:-0.570000px;}
.ws78{word-spacing:-0.540000px;}
.wsf8{word-spacing:-0.510000px;}
.ws8f{word-spacing:-0.480000px;}
.ws54{word-spacing:-0.420000px;}
.ws11{word-spacing:-0.360000px;}
.wse4{word-spacing:-0.306000px;}
.ws4{word-spacing:-0.300000px;}
.wsce{word-spacing:-0.264000px;}
.wsd4{word-spacing:-0.255000px;}
.ws10{word-spacing:-0.240000px;}
.wse3{word-spacing:-0.204000px;}
.ws16{word-spacing:-0.120000px;}
.ws1a{word-spacing:-0.072000px;}
.ws44{word-spacing:-0.060015px;}
.wsaa{word-spacing:-0.060000px;}
.ws19{word-spacing:-0.051000px;}
.wsa{word-spacing:0.000000px;}
.wsa7{word-spacing:0.060000px;}
.wsfa{word-spacing:0.102000px;}
.ws23{word-spacing:0.120000px;}
.ws62{word-spacing:0.180000px;}
.ws9a{word-spacing:0.204000px;}
.ws13{word-spacing:0.240000px;}
.wsbf{word-spacing:0.255000px;}
.ws7b{word-spacing:0.300000px;}
.wscb{word-spacing:0.306000px;}
.wsc0{word-spacing:0.357000px;}
.ws5f{word-spacing:0.360000px;}
.ws12{word-spacing:0.420000px;}
.wse6{word-spacing:0.459000px;}
.ws34{word-spacing:0.480000px;}
.ws76{word-spacing:0.540000px;}
.ws1f{word-spacing:0.600000px;}
.ws9c{word-spacing:0.612000px;}
.ws84{word-spacing:0.660000px;}
.wse7{word-spacing:0.663000px;}
.ws3c{word-spacing:0.720000px;}
.wsaf{word-spacing:0.765000px;}
.wsa2{word-spacing:0.780000px;}
.ws8c{word-spacing:0.840000px;}
.wscd{word-spacing:0.867000px;}
.ws56{word-spacing:0.900000px;}
.ws5e{word-spacing:0.960000px;}
.wsee{word-spacing:0.969000px;}
.ws4e{word-spacing:1.020000px;}
.ws94{word-spacing:1.071000px;}
.wsa0{word-spacing:1.080000px;}
.ws69{word-spacing:1.122000px;}
.wsca{word-spacing:1.173000px;}
.ws2f{word-spacing:1.200000px;}
.wsc3{word-spacing:1.224000px;}
.ws58{word-spacing:1.260000px;}
.wsc9{word-spacing:1.275000px;}
.wsb8{word-spacing:1.320000px;}
.ws14{word-spacing:1.380000px;}
.wsf4{word-spacing:1.428000px;}
.ws48{word-spacing:1.440000px;}
.wsd9{word-spacing:1.479000px;}
.wsc{word-spacing:1.500000px;}
.wsdb{word-spacing:1.530000px;}
.ws33{word-spacing:1.560000px;}
.wsfb{word-spacing:1.581000px;}
.ws4d{word-spacing:1.620000px;}
.wsc4{word-spacing:1.632000px;}
.ws1d{word-spacing:1.680000px;}
.ws95{word-spacing:1.683000px;}
.wsd5{word-spacing:1.734000px;}
.ws7d{word-spacing:1.740000px;}
.wsea{word-spacing:1.785000px;}
.ws52{word-spacing:1.800000px;}
.ws70{word-spacing:1.800450px;}
.wsfc{word-spacing:1.836000px;}
.ws5c{word-spacing:1.860000px;}
.wsa5{word-spacing:1.887000px;}
.ws2a{word-spacing:1.920000px;}
.wsa9{word-spacing:1.980000px;}
.ws90{word-spacing:1.989000px;}
.ws40{word-spacing:2.040000px;}
.ws24{word-spacing:2.100000px;}
.ws63{word-spacing:2.142000px;}
.ws35{word-spacing:2.160000px;}
.ws55{word-spacing:2.220000px;}
.wsc6{word-spacing:2.244000px;}
.ws8e{word-spacing:2.280000px;}
.ws36{word-spacing:2.340000px;}
.ws96{word-spacing:2.346000px;}
.ws53{word-spacing:2.400000px;}
.ws7a{word-spacing:2.460000px;}
.wseb{word-spacing:2.499000px;}
.ws5b{word-spacing:2.520000px;}
.ws38{word-spacing:2.580000px;}
.wsc8{word-spacing:2.601000px;}
.wsbe{word-spacing:2.640000px;}
.wsd7{word-spacing:2.652000px;}
.ws50{word-spacing:2.700000px;}
.wse5{word-spacing:2.703000px;}
.wsf0{word-spacing:2.754000px;}
.ws4b{word-spacing:2.760000px;}
.wsab{word-spacing:2.820000px;}
.ws3e{word-spacing:2.880000px;}
.wsec{word-spacing:2.907000px;}
.wsbc{word-spacing:2.940000px;}
.wsf2{word-spacing:2.958000px;}
.ws32{word-spacing:3.000000px;}
.wsf6{word-spacing:3.009000px;}
.ws86{word-spacing:3.060000px;}
.wsd6{word-spacing:3.111000px;}
.ws2b{word-spacing:3.120000px;}
.wsb6{word-spacing:3.180000px;}
.wsda{word-spacing:3.264000px;}
.ws4a{word-spacing:3.300000px;}
.ws51{word-spacing:3.360000px;}
.wsf5{word-spacing:3.366000px;}
.wsf7{word-spacing:3.468000px;}
.ws5d{word-spacing:3.480000px;}
.wse9{word-spacing:3.519000px;}
.ws3f{word-spacing:3.540000px;}
.wse2{word-spacing:3.570000px;}
.ws59{word-spacing:3.600000px;}
.wsde{word-spacing:3.621000px;}
.ws89{word-spacing:3.660000px;}
.wsac{word-spacing:3.720000px;}
.wsb3{word-spacing:3.780000px;}
.wsd3{word-spacing:3.825000px;}
.ws27{word-spacing:3.840000px;}
.ws57{word-spacing:3.900000px;}
.wsbb{word-spacing:3.960000px;}
.wsed{word-spacing:3.978000px;}
.ws6b{word-spacing:4.080000px;}
.wsb0{word-spacing:4.131000px;}
.ws49{word-spacing:4.140000px;}
.ws82{word-spacing:4.200000px;}
.ws80{word-spacing:4.260000px;}
.wsf1{word-spacing:4.284000px;}
.wsf3{word-spacing:4.335000px;}
.ws7f{word-spacing:4.440000px;}
.wsd8{word-spacing:4.488000px;}
.wse0{word-spacing:4.590000px;}
.ws39{word-spacing:4.620000px;}
.wsdf{word-spacing:4.692000px;}
.ws91{word-spacing:4.743000px;}
.wse8{word-spacing:4.794000px;}
.ws60{word-spacing:4.800000px;}
.ws5a{word-spacing:5.100000px;}
.ws88{word-spacing:5.280000px;}
.ws65{word-spacing:5.304000px;}
.ws28{word-spacing:5.400000px;}
.wsb1{word-spacing:5.610000px;}
.wsa4{word-spacing:5.661000px;}
.ws97{word-spacing:5.814000px;}
.ws7c{word-spacing:5.820000px;}
.ws67{word-spacing:5.967000px;}
.ws3b{word-spacing:6.000000px;}
.wsa3{word-spacing:6.222000px;}
.ws4c{word-spacing:6.300000px;}
.wse1{word-spacing:6.324000px;}
.wsb2{word-spacing:6.426000px;}
.wsa8{word-spacing:6.480000px;}
.wsba{word-spacing:6.840000px;}
.ws68{word-spacing:7.089000px;}
.ws93{word-spacing:7.752000px;}
.ws6a{word-spacing:8.058000px;}
.ws1e{word-spacing:8.460000px;}
.ws66{word-spacing:8.976000px;}
.ws8d{word-spacing:9.600000px;}
.wsae{word-spacing:9.741000px;}
.ws45{word-spacing:9.914477px;}
.ws98{word-spacing:10.302000px;}
.ws92{word-spacing:11.016000px;}
.ws47{word-spacing:11.618904px;}
.ws43{word-spacing:11.672917px;}
.ws99{word-spacing:11.934000px;}
.ws64{word-spacing:14.739000px;}
.ws74{word-spacing:16.612151px;}
.ws72{word-spacing:17.758437px;}
.ws73{word-spacing:18.316578px;}
.ws71{word-spacing:21.557388px;}
.ws46{word-spacing:21.665414px;}
.ws17{word-spacing:72.267000px;}
.ws9f{word-spacing:231.540000px;}
._f{margin-left:-19.831212px;}
._11{margin-left:-18.002400px;}
._a{margin-left:-16.575000px;}
._15{margin-left:-15.069641px;}
._2f{margin-left:-13.980000px;}
._14{margin-left:-12.864098px;}
._18{margin-left:-11.457641px;}
._8{margin-left:-9.803938px;}
._6{margin-left:-8.136062px;}
._7{margin-left:-6.979138px;}
._19{margin-left:-5.779264px;}
._5{margin-left:-4.620041px;}
._3{margin-left:-2.678359px;}
._0{margin-left:-1.632000px;}
._1{width:1.411200px;}
._12{width:2.840351px;}
._10{width:4.254000px;}
._13{width:5.387962px;}
._1a{width:7.088359px;}
._30{width:8.803459px;}
._31{width:11.219977px;}
._4{width:12.900000px;}
._9{width:14.159991px;}
._16{width:15.269506px;}
._17{width:16.652359px;}
._b{width:18.360000px;}
._1b{width:19.483179px;}
._e{width:21.000000px;}
._36{width:22.133141px;}
._34{width:23.937038px;}
._35{width:25.002098px;}
._32{width:27.030641px;}
._33{width:29.019023px;}
._2{width:40.573181px;}
._c{width:54.621000px;}
._22{width:63.291000px;}
._1d{width:93.687000px;}
._2b{width:94.707006px;}
._2a{width:143.003970px;}
._21{width:190.688970px;}
._26{width:194.921976px;}
._1e{width:196.502994px;}
._25{width:220.421976px;}
._2c{width:242.504976px;}
._1f{width:244.290000px;}
._2e{width:245.921976px;}
._29{width:265.149000px;}
._20{width:312.834000px;}
._23{width:316.149000px;}
._24{width:337.415994px;}
._27{width:341.649000px;}
._28{width:362.915994px;}
._2d{width:367.149000px;}
._1c{width:1003.749609px;}
._d{width:2371.704000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fsb{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:60.014997px;}
.fs9{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:0.315296px;}
.y114{bottom:3.718803px;}
.y112{bottom:3.720245px;}
.yd7{bottom:10.815296px;}
.ydb{bottom:21.115940px;}
.yd9{bottom:26.367153px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y2c{bottom:112.938300px;}
.y1b5{bottom:114.735306px;}
.y142{bottom:114.874947px;}
.ybf{bottom:114.874969px;}
.y1e0{bottom:118.712688px;}
.yd4{bottom:120.124798px;}
.y218{bottom:127.555191px;}
.y6c{bottom:129.915298px;}
.y259{bottom:131.826428px;}
.y2b{bottom:133.032303px;}
.y98{bottom:133.182289px;}
.y1b4{bottom:133.485306px;}
.y141{bottom:133.624947px;}
.ybe{bottom:133.624969px;}
.y1df{bottom:133.706688px;}
.yd3{bottom:138.874809px;}
.y217{bottom:142.549191px;}
.y38{bottom:142.968753px;}
.y258{bottom:146.820428px;}
.y6b{bottom:148.665298px;}
.y1de{bottom:148.700688px;}
.y113{bottom:149.086498px;}
.y2a{bottom:150.485553px;}
.y97{bottom:151.932289px;}
.y1b3{bottom:152.235306px;}
.y162{bottom:152.374786px;}
.y18e{bottom:152.374809px;}
.y140{bottom:152.374947px;}
.ybd{bottom:152.374969px;}
.y216{bottom:157.543191px;}
.y257{bottom:161.814428px;}
.yd5{bottom:162.124798px;}
.y37{bottom:163.062756px;}
.y1dd{bottom:163.694688px;}
.y6a{bottom:167.415298px;}
.y29{bottom:170.579556px;}
.y96{bottom:170.682289px;}
.y1b2{bottom:170.985306px;}
.y161{bottom:171.124786px;}
.y18d{bottom:171.124809px;}
.y13f{bottom:171.124947px;}
.ybc{bottom:171.124969px;}
.y215{bottom:172.537191px;}
.yd6{bottom:176.374500px;}
.y256{bottom:176.808428px;}
.y1dc{bottom:178.688688px;}
.y36{bottom:180.527995px;}
.y10f{bottom:184.710434px;}
.y69{bottom:186.165298px;}
.yd8{bottom:187.189796px;}
.y214{bottom:187.531191px;}
.y28{bottom:188.050794px;}
.y95{bottom:189.432289px;}
.y1b1{bottom:189.735306px;}
.y15e{bottom:189.874786px;}
.y18c{bottom:189.874809px;}
.y13e{bottom:189.874947px;}
.ybb{bottom:189.874969px;}
.y255{bottom:191.802428px;}
.y1db{bottom:193.682688px;}
.y35{bottom:195.521995px;}
.yda{bottom:197.490440px;}
.y213{bottom:202.525191px;}
.y27{bottom:203.044794px;}
.y10e{bottom:203.460434px;}
.y68{bottom:204.915298px;}
.y254{bottom:206.796428px;}
.y94{bottom:208.182289px;}
.y139{bottom:208.485306px;}
.y15d{bottom:208.624786px;}
.y18b{bottom:208.624809px;}
.y13d{bottom:208.624947px;}
.yba{bottom:208.624969px;}
.y1da{bottom:208.676688px;}
.y34{bottom:210.515995px;}
.y212{bottom:217.519191px;}
.y26{bottom:218.038794px;}
.y253{bottom:221.790428px;}
.y10d{bottom:222.210434px;}
.y67{bottom:223.665298px;}
.y1d9{bottom:223.670688px;}
.y93{bottom:226.932289px;}
.y138{bottom:227.235306px;}
.y15c{bottom:227.374786px;}
.yd2{bottom:227.374809px;}
.y13c{bottom:227.374947px;}
.yb9{bottom:227.374969px;}
.y33{bottom:230.609848px;}
.y211{bottom:232.513191px;}
.y25{bottom:233.032794px;}
.y252{bottom:236.784428px;}
.y1d8{bottom:238.664688px;}
.y10c{bottom:240.960434px;}
.y66{bottom:242.415298px;}
.y92{bottom:245.682289px;}
.y137{bottom:245.985306px;}
.y15b{bottom:246.124786px;}
.yd1{bottom:246.124809px;}
.y19e{bottom:246.124947px;}
.yb8{bottom:246.124969px;}
.y210{bottom:247.507191px;}
.y32{bottom:248.069259px;}
.y251{bottom:251.778428px;}
.y24{bottom:253.126808px;}
.y1d7{bottom:253.658688px;}
.y10b{bottom:259.710434px;}
.y65{bottom:261.165298px;}
.y20f{bottom:262.501191px;}
.y31{bottom:263.063259px;}
.y91{bottom:264.432289px;}
.y136{bottom:264.735306px;}
.y15a{bottom:264.874786px;}
.yd0{bottom:264.874809px;}
.y19d{bottom:264.874947px;}
.yb7{bottom:264.874969px;}
.y250{bottom:266.772428px;}
.y1d6{bottom:268.652688px;}
.y20e{bottom:277.495191px;}
.y23{bottom:278.138541px;}
.y10a{bottom:278.460434px;}
.y64{bottom:279.915298px;}
.y24f{bottom:281.766428px;}
.y30{bottom:283.157249px;}
.y90{bottom:283.182289px;}
.y135{bottom:283.485306px;}
.y159{bottom:283.624786px;}
.ycf{bottom:283.624809px;}
.y14b{bottom:283.624947px;}
.yb6{bottom:283.624969px;}
.y1d5{bottom:283.646688px;}
.y20d{bottom:292.489191px;}
.y22{bottom:293.132541px;}
.y24e{bottom:296.760428px;}
.y109{bottom:297.210434px;}
.y63{bottom:298.665298px;}
.y2f{bottom:300.616500px;}
.y8f{bottom:301.932289px;}
.y1b0{bottom:302.235306px;}
.yce{bottom:302.374786px;}
.y13b{bottom:302.374809px;}
.y14a{bottom:302.374947px;}
.yb5{bottom:302.374969px;}
.y20c{bottom:307.483191px;}
.y24d{bottom:311.754428px;}
.y2e{bottom:315.610500px;}
.y21{bottom:315.674541px;}
.y108{bottom:315.960434px;}
.y1d4{bottom:317.357688px;}
.y62{bottom:317.415298px;}
.y8e{bottom:320.682289px;}
.y134{bottom:320.985306px;}
.ycd{bottom:321.124786px;}
.y13a{bottom:321.124809px;}
.y149{bottom:321.124947px;}
.yb4{bottom:321.124969px;}
.y20b{bottom:322.477191px;}
.y24c{bottom:326.748428px;}
.y20{bottom:330.668541px;}
.y1d3{bottom:332.351688px;}
.y2d{bottom:335.704491px;}
.y61{bottom:336.165298px;}
.y20a{bottom:337.471191px;}
.y8d{bottom:339.432289px;}
.y1af{bottom:339.735306px;}
.ycc{bottom:339.874786px;}
.y18a{bottom:339.874809px;}
.y148{bottom:339.874947px;}
.yb3{bottom:339.874969px;}
.y24b{bottom:341.742428px;}
.y1d2{bottom:347.345688px;}
.y209{bottom:352.465191px;}
.y107{bottom:353.460434px;}
.y60{bottom:354.915298px;}
.y24a{bottom:356.736428px;}
.y1ae{bottom:358.485306px;}
.ycb{bottom:358.624786px;}
.y189{bottom:358.624809px;}
.y147{bottom:358.624947px;}
.yb2{bottom:358.624969px;}
.y1d1{bottom:362.339688px;}
.y208{bottom:367.459191px;}
.y28a{bottom:371.512823px;}
.y249{bottom:371.730428px;}
.y2bb{bottom:371.806073px;}
.y5f{bottom:373.665298px;}
.y8c{bottom:376.932289px;}
.y133{bottom:377.235306px;}
.y1d0{bottom:377.333688px;}
.yca{bottom:377.374786px;}
.y146{bottom:377.374947px;}
.yb1{bottom:377.374969px;}
.y207{bottom:382.453191px;}
.y289{bottom:386.506823px;}
.y248{bottom:386.724428px;}
.y2ba{bottom:386.800073px;}
.y106{bottom:390.960434px;}
.y1cf{bottom:392.327688px;}
.y5e{bottom:392.415298px;}
.y132{bottom:395.985306px;}
.yc9{bottom:396.124786px;}
.y145{bottom:396.124947px;}
.yb0{bottom:396.124969px;}
.y206{bottom:397.447191px;}
.y288{bottom:401.500823px;}
.y247{bottom:401.718428px;}
.y2b9{bottom:401.794073px;}
.y1ce{bottom:407.321688px;}
.y105{bottom:409.710434px;}
.y5d{bottom:411.165298px;}
.y205{bottom:412.441191px;}
.y8b{bottom:414.432312px;}
.y131{bottom:414.735306px;}
.yc8{bottom:414.874786px;}
.y144{bottom:414.874947px;}
.yaf{bottom:414.874969px;}
.y287{bottom:416.494823px;}
.y246{bottom:416.712428px;}
.y2b8{bottom:416.788073px;}
.y204{bottom:427.435191px;}
.y104{bottom:428.460434px;}
.y5c{bottom:429.915298px;}
.y286{bottom:431.488823px;}
.y245{bottom:431.706428px;}
.y2b7{bottom:431.782073px;}
.y130{bottom:433.485306px;}
.yc7{bottom:433.624786px;}
.y143{bottom:433.624947px;}
.yae{bottom:433.624969px;}
.y1cd{bottom:441.032688px;}
.y1f{bottom:441.211395px;}
.y203{bottom:442.429191px;}
.y285{bottom:446.482823px;}
.y244{bottom:446.700428px;}
.y2b6{bottom:446.776073px;}
.y103{bottom:447.210434px;}
.y5b{bottom:448.665298px;}
.y12f{bottom:452.235306px;}
.yc6{bottom:452.374786px;}
.y19c{bottom:452.374947px;}
.yad{bottom:452.374969px;}
.y1cc{bottom:456.026688px;}
.y202{bottom:457.423191px;}
.y8a{bottom:460.798782px;}
.y284{bottom:461.476823px;}
.y243{bottom:461.694428px;}
.y2b5{bottom:461.770073px;}
.y102{bottom:465.960434px;}
.y5a{bottom:467.415298px;}
.y12e{bottom:470.985306px;}
.yc5{bottom:471.124786px;}
.y160{bottom:471.124947px;}
.yac{bottom:471.124969px;}
.y201{bottom:472.417191px;}
.y283{bottom:476.470823px;}
.y242{bottom:476.688428px;}
.y2b4{bottom:476.764073px;}
.y1e{bottom:478.711395px;}
.y89{bottom:479.548782px;}
.y152{bottom:483.946812px;}
.y101{bottom:484.710434px;}
.y59{bottom:486.165298px;}
.y200{bottom:487.411191px;}
.y12d{bottom:489.735306px;}
.yc4{bottom:489.874786px;}
.y15f{bottom:489.874947px;}
.yab{bottom:489.874969px;}
.y282{bottom:491.464823px;}
.y241{bottom:491.682428px;}
.y2b3{bottom:491.758073px;}
.y1d{bottom:497.461395px;}
.y88{bottom:498.298782px;}
.y151{bottom:498.940812px;}
.y158{bottom:498.979062px;}
.y1ff{bottom:502.405191px;}
.y100{bottom:503.460434px;}
.y58{bottom:504.915298px;}
.y281{bottom:506.458823px;}
.y240{bottom:506.676428px;}
.y2b2{bottom:506.752073px;}
.y12c{bottom:508.485306px;}
.yc3{bottom:508.624786px;}
.y19b{bottom:508.624947px;}
.yaa{bottom:508.624969px;}
.y150{bottom:513.934812px;}
.y157{bottom:513.973062px;}
.y1c{bottom:516.211395px;}
.y87{bottom:517.048782px;}
.y1fe{bottom:517.399191px;}
.y280{bottom:521.452823px;}
.y23f{bottom:521.670428px;}
.y2b1{bottom:521.746073px;}
.yff{bottom:522.210434px;}
.y57{bottom:523.665298px;}
.y12b{bottom:527.235306px;}
.y188{bottom:527.374786px;}
.y19a{bottom:527.374947px;}
.ya9{bottom:527.374969px;}
.y14f{bottom:528.928812px;}
.y156{bottom:528.967062px;}
.y1fd{bottom:532.393191px;}
.y1b{bottom:534.961395px;}
.y86{bottom:535.798782px;}
.y27f{bottom:536.446823px;}
.y23e{bottom:536.664428px;}
.y2b0{bottom:536.740073px;}
.yfe{bottom:540.960434px;}
.y56{bottom:542.415298px;}
.y14e{bottom:543.922812px;}
.y155{bottom:543.961062px;}
.y167{bottom:545.881867px;}
.y1ad{bottom:545.985306px;}
.yc2{bottom:546.124786px;}
.y199{bottom:546.124947px;}
.ya8{bottom:546.124969px;}
.y1fc{bottom:547.387191px;}
.y27e{bottom:551.440823px;}
.y23d{bottom:551.658428px;}
.y2af{bottom:551.734073px;}
.y1a{bottom:553.711395px;}
.y85{bottom:554.548782px;}
.y14d{bottom:558.916812px;}
.y154{bottom:558.955062px;}
.y166{bottom:560.875867px;}
.y55{bottom:561.165298px;}
.y1fb{bottom:562.381191px;}
.y12a{bottom:564.735306px;}
.y187{bottom:564.874786px;}
.y198{bottom:564.874947px;}
.ya7{bottom:564.874969px;}
.y27d{bottom:566.434823px;}
.y23c{bottom:566.652428px;}
.y2ae{bottom:566.728073px;}
.y19{bottom:572.461395px;}
.y84{bottom:573.298782px;}
.y14c{bottom:573.910812px;}
.y153{bottom:573.949062px;}
.y165{bottom:575.869867px;}
.y1fa{bottom:577.375191px;}
.yfd{bottom:578.460434px;}
.y54{bottom:579.915298px;}
.y27c{bottom:581.428823px;}
.y23b{bottom:581.646428px;}
.y2ad{bottom:581.722073px;}
.y1ac{bottom:583.485306px;}
.yc1{bottom:583.624786px;}
.y197{bottom:583.624947px;}
.ya6{bottom:583.624969px;}
.y18{bottom:591.211395px;}
.y83{bottom:592.048782px;}
.y1f9{bottom:592.369191px;}
.y27b{bottom:596.422823px;}
.y23a{bottom:596.640428px;}
.y2ac{bottom:596.716073px;}
.y53{bottom:598.665344px;}
.y1ab{bottom:602.235306px;}
.yc0{bottom:602.374786px;}
.y196{bottom:602.374947px;}
.ya5{bottom:602.374969px;}
.y17f{bottom:604.713774px;}
.y1f8{bottom:607.363191px;}
.y17{bottom:609.961395px;}
.y82{bottom:610.798782px;}
.y27a{bottom:611.416823px;}
.y239{bottom:611.634428px;}
.y2ab{bottom:611.710073px;}
.yfc{bottom:615.960434px;}
.y52{bottom:617.415344px;}
.y129{bottom:620.985306px;}
.y186{bottom:621.124786px;}
.y195{bottom:621.124947px;}
.ya4{bottom:621.124969px;}
.y1f7{bottom:622.357191px;}
.y17e{bottom:623.507274px;}
.y279{bottom:626.410823px;}
.y238{bottom:626.628428px;}
.y2aa{bottom:626.704073px;}
.y16{bottom:628.711395px;}
.y81{bottom:629.548782px;}
.yfb{bottom:634.710434px;}
.y51{bottom:636.165344px;}
.y1f6{bottom:637.351191px;}
.y128{bottom:639.735306px;}
.y185{bottom:639.874786px;}
.y194{bottom:639.874947px;}
.ya3{bottom:639.874969px;}
.y278{bottom:641.404823px;}
.y237{bottom:641.622428px;}
.y2a9{bottom:641.698073px;}
.y17d{bottom:642.224274px;}
.y15{bottom:647.461395px;}
.y80{bottom:648.298782px;}
.y1f5{bottom:652.345191px;}
.yfa{bottom:653.460434px;}
.y50{bottom:654.915344px;}
.y277{bottom:656.398823px;}
.y236{bottom:656.616428px;}
.y2a8{bottom:656.692073px;}
.y1cb{bottom:658.485260px;}
.y127{bottom:658.485306px;}
.y184{bottom:658.624786px;}
.y193{bottom:658.624947px;}
.ya2{bottom:658.624969px;}
.y17c{bottom:660.941274px;}
.y14{bottom:666.211395px;}
.y7f{bottom:667.048782px;}
.y1f4{bottom:667.339191px;}
.y276{bottom:671.392823px;}
.y235{bottom:671.610428px;}
.y2a7{bottom:671.686073px;}
.yf9{bottom:672.210480px;}
.y4f{bottom:673.665344px;}
.y1aa{bottom:677.235260px;}
.y126{bottom:677.235306px;}
.y183{bottom:677.374786px;}
.y192{bottom:677.374947px;}
.ya1{bottom:677.374969px;}
.y17b{bottom:679.658274px;}
.y1f3{bottom:682.333191px;}
.y13{bottom:684.961395px;}
.y7e{bottom:685.798782px;}
.y275{bottom:686.386823px;}
.y234{bottom:686.604428px;}
.y2a6{bottom:686.680073px;}
.yf8{bottom:690.960480px;}
.y4e{bottom:692.415344px;}
.y1a9{bottom:695.985260px;}
.y125{bottom:695.985306px;}
.y182{bottom:696.124786px;}
.y191{bottom:696.124947px;}
.ya0{bottom:696.124969px;}
.y17a{bottom:698.375274px;}
.y274{bottom:701.380823px;}
.y233{bottom:701.598428px;}
.y2a5{bottom:701.674073px;}
.y12{bottom:703.711395px;}
.y7d{bottom:704.548782px;}
.yf7{bottom:709.710480px;}
.y4d{bottom:711.165344px;}
.y124{bottom:714.735260px;}
.y1ca{bottom:714.735306px;}
.y181{bottom:714.874786px;}
.y190{bottom:714.874947px;}
.y9f{bottom:714.874969px;}
.y1f2{bottom:716.083191px;}
.y273{bottom:716.374823px;}
.y232{bottom:716.592428px;}
.y2a4{bottom:716.668073px;}
.y179{bottom:717.092274px;}
.y11{bottom:722.461395px;}
.y7c{bottom:723.298782px;}
.yf6{bottom:728.460480px;}
.y4c{bottom:729.915344px;}
.y272{bottom:731.368823px;}
.y231{bottom:731.586428px;}
.y2a3{bottom:731.662073px;}
.y123{bottom:733.485260px;}
.y1c9{bottom:733.485306px;}
.y180{bottom:733.624786px;}
.y18f{bottom:733.624947px;}
.y9e{bottom:733.624969px;}
.y178{bottom:735.809274px;}
.y10{bottom:741.211395px;}
.y7b{bottom:742.048782px;}
.y271{bottom:746.362823px;}
.y230{bottom:746.580428px;}
.y2a2{bottom:746.656073px;}
.yf5{bottom:747.210480px;}
.y4b{bottom:748.665344px;}
.y122{bottom:752.235260px;}
.y1c8{bottom:752.235306px;}
.y9d{bottom:752.374969px;}
.y177{bottom:754.526274px;}
.yf{bottom:759.961395px;}
.y7a{bottom:760.798782px;}
.y270{bottom:761.356823px;}
.y22f{bottom:761.574428px;}
.y2a1{bottom:761.650073px;}
.yf4{bottom:765.960480px;}
.y4a{bottom:767.415344px;}
.y121{bottom:770.985260px;}
.y1c7{bottom:770.985306px;}
.y9c{bottom:771.124969px;}
.y176{bottom:773.243274px;}
.y26f{bottom:776.350823px;}
.y22e{bottom:776.568428px;}
.y2a0{bottom:776.644073px;}
.y1a2{bottom:776.968836px;}
.ye{bottom:778.711395px;}
.yf3{bottom:784.710480px;}
.y49{bottom:786.165344px;}
.y120{bottom:789.735260px;}
.y1c6{bottom:789.735306px;}
.y9b{bottom:789.874969px;}
.y1f1{bottom:791.146809px;}
.y26e{bottom:791.344823px;}
.y22d{bottom:791.562428px;}
.y29f{bottom:791.638073px;}
.y175{bottom:791.960274px;}
.y1a1{bottom:791.962836px;}
.y1a5{bottom:791.975586px;}
.yd{bottom:797.461395px;}
.y79{bottom:798.298828px;}
.yf2{bottom:803.460480px;}
.y48{bottom:804.915344px;}
.y1f0{bottom:806.140809px;}
.y26d{bottom:806.338823px;}
.y22c{bottom:806.556428px;}
.y29e{bottom:806.632073px;}
.y1a0{bottom:806.956836px;}
.y1a4{bottom:806.969586px;}
.y11f{bottom:808.485260px;}
.y1c5{bottom:808.485306px;}
.y9a{bottom:808.624969px;}
.y174{bottom:810.677274px;}
.yc{bottom:816.211395px;}
.y1ef{bottom:821.134809px;}
.y26c{bottom:821.332823px;}
.y22b{bottom:821.550428px;}
.y29d{bottom:821.626073px;}
.y19f{bottom:821.950836px;}
.y1a3{bottom:821.963586px;}
.yf1{bottom:822.210480px;}
.y47{bottom:823.665344px;}
.y11e{bottom:827.235260px;}
.y1c4{bottom:827.235306px;}
.y99{bottom:827.374969px;}
.y173{bottom:829.394274px;}
.y78{bottom:835.798828px;}
.y1ee{bottom:836.128809px;}
.y26b{bottom:836.326823px;}
.y22a{bottom:836.544428px;}
.y29c{bottom:836.620073px;}
.yf0{bottom:840.960480px;}
.y46{bottom:842.415344px;}
.y11d{bottom:845.985260px;}
.y1c3{bottom:845.985306px;}
.y172{bottom:848.111274px;}
.y1ed{bottom:851.122809px;}
.y26a{bottom:851.320823px;}
.y229{bottom:851.538428px;}
.y29b{bottom:851.614073px;}
.yef{bottom:859.710480px;}
.yb{bottom:860.394153px;}
.y45{bottom:861.165344px;}
.y11c{bottom:864.735260px;}
.y1c2{bottom:864.735306px;}
.y1ec{bottom:866.116809px;}
.y269{bottom:866.314823px;}
.y228{bottom:866.532428px;}
.y29a{bottom:866.608073px;}
.y171{bottom:866.828274px;}
.ye1{bottom:874.474836px;}
.ye6{bottom:874.500334px;}
.ya{bottom:875.388153px;}
.yee{bottom:878.460480px;}
.y44{bottom:879.915344px;}
.y1eb{bottom:881.110809px;}
.y268{bottom:881.308823px;}
.y227{bottom:881.526428px;}
.y299{bottom:881.602073px;}
.y11b{bottom:883.485260px;}
.y1c1{bottom:883.485306px;}
.y170{bottom:885.545274px;}
.ye0{bottom:889.468836px;}
.ye5{bottom:889.494334px;}
.y1ea{bottom:896.104809px;}
.y267{bottom:896.302823px;}
.y226{bottom:896.520428px;}
.y298{bottom:896.596073px;}
.yed{bottom:897.210480px;}
.y43{bottom:898.665344px;}
.y77{bottom:900.915321px;}
.y11a{bottom:902.235260px;}
.y1c0{bottom:902.235306px;}
.y16f{bottom:904.262274px;}
.ydf{bottom:904.462836px;}
.ye4{bottom:904.488334px;}
.y1e9{bottom:911.098809px;}
.y266{bottom:911.296823px;}
.y225{bottom:911.514428px;}
.y297{bottom:911.590073px;}
.yec{bottom:915.960480px;}
.y42{bottom:917.415344px;}
.y9{bottom:917.988190px;}
.yde{bottom:919.456836px;}
.ye3{bottom:919.482334px;}
.y76{bottom:919.665321px;}
.y119{bottom:920.985260px;}
.y1bf{bottom:920.985306px;}
.y16e{bottom:922.979274px;}
.y1e8{bottom:926.092809px;}
.y265{bottom:926.290823px;}
.y224{bottom:926.508428px;}
.y296{bottom:926.584073px;}
.ydd{bottom:934.450836px;}
.ye2{bottom:934.476334px;}
.yeb{bottom:934.710480px;}
.y41{bottom:936.165344px;}
.y8{bottom:936.738190px;}
.y75{bottom:938.415321px;}
.y118{bottom:939.735260px;}
.y1be{bottom:939.735306px;}
.y1e7{bottom:941.086809px;}
.y264{bottom:941.284823px;}
.y223{bottom:941.502428px;}
.y295{bottom:941.578073px;}
.y16d{bottom:941.696274px;}
.yea{bottom:953.460260px;}
.y40{bottom:954.915344px;}
.y1e6{bottom:956.080809px;}
.y263{bottom:956.278823px;}
.y222{bottom:956.496428px;}
.y294{bottom:956.572073px;}
.y74{bottom:957.165321px;}
.y1a8{bottom:958.485260px;}
.y1bd{bottom:958.485306px;}
.y16c{bottom:960.413274px;}
.y262{bottom:971.272823px;}
.y221{bottom:971.490428px;}
.y293{bottom:971.566073px;}
.y3f{bottom:973.665344px;}
.y73{bottom:975.915321px;}
.y117{bottom:977.235260px;}
.y1bc{bottom:977.235306px;}
.y16b{bottom:979.130274px;}
.y7{bottom:981.424622px;}
.y261{bottom:986.266823px;}
.y220{bottom:986.484428px;}
.y292{bottom:986.560073px;}
.y1e5{bottom:989.791809px;}
.ye9{bottom:990.960260px;}
.y3e{bottom:992.415344px;}
.y72{bottom:994.665321px;}
.y1a7{bottom:995.985260px;}
.y1bb{bottom:995.985306px;}
.y16a{bottom:997.847274px;}
.y260{bottom:1001.260823px;}
.y21f{bottom:1001.478428px;}
.y291{bottom:1001.554073px;}
.y6{bottom:1008.424622px;}
.y3d{bottom:1011.165344px;}
.y71{bottom:1013.415321px;}
.y1a6{bottom:1014.735260px;}
.y1ba{bottom:1014.735306px;}
.y25f{bottom:1016.254823px;}
.y21e{bottom:1016.472428px;}
.y290{bottom:1016.548073px;}
.y1e4{bottom:1023.541809px;}
.y169{bottom:1025.196024px;}
.y3c{bottom:1029.915344px;}
.y25e{bottom:1031.248823px;}
.y21d{bottom:1031.466428px;}
.y28f{bottom:1031.542073px;}
.y70{bottom:1032.165321px;}
.y116{bottom:1033.485260px;}
.y1b9{bottom:1033.485306px;}
.y111{bottom:1037.835022px;}
.y110{bottom:1039.410427px;}
.y25d{bottom:1046.242823px;}
.y21c{bottom:1046.460428px;}
.y28e{bottom:1046.536073px;}
.y3b{bottom:1048.665344px;}
.y168{bottom:1049.612274px;}
.y6f{bottom:1050.915321px;}
.y115{bottom:1052.235260px;}
.y1b8{bottom:1052.235306px;}
.y1e3{bottom:1061.083838px;}
.y25c{bottom:1061.236823px;}
.y21b{bottom:1061.454428px;}
.y28d{bottom:1061.530073px;}
.y6e{bottom:1069.665321px;}
.ye8{bottom:1070.985260px;}
.y1b7{bottom:1070.985306px;}
.y164{bottom:1075.108844px;}
.y1e2{bottom:1076.077838px;}
.y5{bottom:1076.132080px;}
.y25b{bottom:1076.230823px;}
.y21a{bottom:1076.448428px;}
.y28c{bottom:1076.524073px;}
.y3a{bottom:1086.165344px;}
.y6d{bottom:1088.415321px;}
.ye7{bottom:1089.735260px;}
.y1b6{bottom:1089.735306px;}
.y163{bottom:1090.102844px;}
.y1e1{bottom:1091.071838px;}
.y25a{bottom:1091.224823px;}
.y219{bottom:1091.442428px;}
.y28b{bottom:1091.518073px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y39{bottom:1127.482361px;}
.h1c{height:14.398500px;}
.h1a{height:14.400000px;}
.h17{height:23.735763px;}
.he{height:25.204199px;}
.h14{height:32.250000px;}
.hd{height:36.006000px;}
.hc{height:36.855469px;}
.h15{height:40.990243px;}
.h2{height:42.048000px;}
.ha{height:42.360000px;}
.h13{height:42.360092px;}
.h1e{height:42.360183px;}
.h1f{height:42.360549px;}
.h22{height:42.360641px;}
.h19{height:42.360879px;}
.h1b{height:42.597526px;}
.h1d{height:42.610648px;}
.h8{height:43.260000px;}
.h4{height:44.676000px;}
.h18{height:45.186000px;}
.hf{height:51.912000px;}
.h21{height:52.173000px;}
.h9{height:53.160000px;}
.h11{height:53.652000px;}
.h24{height:53.652183px;}
.h23{height:53.652549px;}
.h20{height:53.805000px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h10{height:59.004000px;}
.hb{height:61.380000px;}
.h12{height:63.300000px;}
.h7{height:64.866000px;}
.h16{height:82.220547px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w3{width:283.905006px;}
.w2{width:347.551506px;}
.w4{width:604.529984px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x12{left:-1.137600px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x8{left:78.746400px;}
.x14{left:81.058067px;}
.x4{left:85.181849px;}
.x9{left:93.545395px;}
.x5{left:97.796100px;}
.x15{left:102.048152px;}
.x13{left:170.090847px;}
.xd{left:182.183853px;}
.x10{left:184.681046px;}
.xf{left:257.621704px;}
.x11{left:416.214293px;}
.x6{left:459.212540px;}
.xa{left:476.220457px;}
.x7{left:480.466799px;}
.x16{left:484.726654px;}
.xc{left:557.883911px;}
.xe{left:645.728394px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.xb{left:798.887421px;}
@media print{
.v2{vertical-align:-18.133382pt;}
.v3{vertical-align:-13.333496pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v4{vertical-align:36.649158pt;}
.ls69{letter-spacing:-2.986667pt;}
.ls52{letter-spacing:-2.506667pt;}
.ls97{letter-spacing:-2.400000pt;}
.ls54{letter-spacing:-2.133333pt;}
.ls70{letter-spacing:-2.080000pt;}
.ls8f{letter-spacing:-1.973333pt;}
.ls6a{letter-spacing:-1.813333pt;}
.ls6e{letter-spacing:-1.760000pt;}
.ls6f{letter-spacing:-1.653747pt;}
.ls6b{letter-spacing:-1.280000pt;}
.ls6c{letter-spacing:-1.226667pt;}
.ls3a{letter-spacing:-1.173333pt;}
.ls68{letter-spacing:-1.120000pt;}
.ls51{letter-spacing:-1.066667pt;}
.ls50{letter-spacing:-1.013333pt;}
.ls4e{letter-spacing:-0.960000pt;}
.ls6d{letter-spacing:-0.906667pt;}
.lsa2{letter-spacing:-0.853333pt;}
.ls53{letter-spacing:-0.800000pt;}
.lsa1{letter-spacing:-0.746667pt;}
.ls3b{letter-spacing:-0.693333pt;}
.ls3d{letter-spacing:-0.640000pt;}
.lsac{letter-spacing:-0.634667pt;}
.lsa7{letter-spacing:-0.589333pt;}
.ls67{letter-spacing:-0.586667pt;}
.lsaa{letter-spacing:-0.544000pt;}
.ls39{letter-spacing:-0.533333pt;}
.ls4f{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.426667pt;}
.ls38{letter-spacing:-0.373333pt;}
.lsa4{letter-spacing:-0.362667pt;}
.ls35{letter-spacing:-0.320000pt;}
.lsab{letter-spacing:-0.317333pt;}
.lsc8{letter-spacing:-0.272000pt;}
.ls37{letter-spacing:-0.266667pt;}
.lsa9{letter-spacing:-0.226667pt;}
.ls4c{letter-spacing:-0.213333pt;}
.lsa6{letter-spacing:-0.181333pt;}
.ls34{letter-spacing:-0.160000pt;}
.lsa3{letter-spacing:-0.136000pt;}
.ls36{letter-spacing:-0.106667pt;}
.lsa5{letter-spacing:-0.090667pt;}
.ls8e{letter-spacing:-0.074667pt;}
.ls3c{letter-spacing:-0.053333pt;}
.lsa8{letter-spacing:-0.045333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000033pt;}
.ls30{letter-spacing:0.026667pt;}
.ls8d{letter-spacing:0.040527pt;}
.ls8c{letter-spacing:0.041016pt;}
.lsae{letter-spacing:0.045333pt;}
.ls40{letter-spacing:0.053333pt;}
.ls5d{letter-spacing:0.053347pt;}
.ls8b{letter-spacing:0.080000pt;}
.lsb0{letter-spacing:0.090667pt;}
.ls32{letter-spacing:0.106667pt;}
.lsc0{letter-spacing:0.113333pt;}
.ls98{letter-spacing:0.133333pt;}
.lsb3{letter-spacing:0.136000pt;}
.lsba{letter-spacing:0.158667pt;}
.ls6{letter-spacing:0.158926pt;}
.ls5f{letter-spacing:0.160000pt;}
.ls9c{letter-spacing:0.181333pt;}
.ls8a{letter-spacing:0.186605pt;}
.ls99{letter-spacing:0.186667pt;}
.ls89{letter-spacing:0.186686pt;}
.ls48{letter-spacing:0.190918pt;}
.ls47{letter-spacing:0.191406pt;}
.ls44{letter-spacing:0.205241pt;}
.ls45{letter-spacing:0.205729pt;}
.ls1{letter-spacing:0.213333pt;}
.ls91{letter-spacing:0.218673pt;}
.ls7{letter-spacing:0.226667pt;}
.lsad{letter-spacing:0.234667pt;}
.lsb1{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.lsb4{letter-spacing:0.272000pt;}
.ls43{letter-spacing:0.293333pt;}
.lsaf{letter-spacing:0.317333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.346667pt;}
.ls4a{letter-spacing:0.355143pt;}
.lsa0{letter-spacing:0.362667pt;}
.ls7e{letter-spacing:0.373333pt;}
.ls26{letter-spacing:0.382935pt;}
.ls3e{letter-spacing:0.400000pt;}
.lsb5{letter-spacing:0.408000pt;}
.ls3{letter-spacing:0.426667pt;}
.lsb9{letter-spacing:0.430667pt;}
.ls85{letter-spacing:0.453333pt;}
.ls81{letter-spacing:0.468262pt;}
.ls3f{letter-spacing:0.480000pt;}
.ls9d{letter-spacing:0.498667pt;}
.ls61{letter-spacing:0.502930pt;}
.ls49{letter-spacing:0.506667pt;}
.lsc1{letter-spacing:0.521333pt;}
.lsf{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.538659pt;}
.ls46{letter-spacing:0.560000pt;}
.lsc3{letter-spacing:0.566667pt;}
.ls41{letter-spacing:0.586667pt;}
.lsb8{letter-spacing:0.589333pt;}
.ls87{letter-spacing:0.602667pt;}
.ls42{letter-spacing:0.613333pt;}
.ls7c{letter-spacing:0.618667pt;}
.ls92{letter-spacing:0.627116pt;}
.ls9e{letter-spacing:0.634667pt;}
.ls5{letter-spacing:0.640000pt;}
.ls86{letter-spacing:0.645833pt;}
.ls90{letter-spacing:0.650632pt;}
.ls94{letter-spacing:0.666136pt;}
.ls93{letter-spacing:0.666142pt;}
.lse{letter-spacing:0.666667pt;}
.lsbf{letter-spacing:0.680000pt;}
.ls17{letter-spacing:0.693333pt;}
.ls64{letter-spacing:0.709310pt;}
.ls7f{letter-spacing:0.709351pt;}
.ls80{letter-spacing:0.709391pt;}
.ls65{letter-spacing:0.709473pt;}
.ls60{letter-spacing:0.720000pt;}
.ls9f{letter-spacing:0.725333pt;}
.ls16{letter-spacing:0.746667pt;}
.lsc2{letter-spacing:0.770667pt;}
.ls7b{letter-spacing:0.773333pt;}
.ls10{letter-spacing:0.800000pt;}
.lsb6{letter-spacing:0.816000pt;}
.ls28{letter-spacing:0.822347pt;}
.ls29{letter-spacing:0.822428pt;}
.ls2b{letter-spacing:0.853333pt;}
.lsc4{letter-spacing:0.861333pt;}
.ls25{letter-spacing:0.899740pt;}
.ls15{letter-spacing:0.906667pt;}
.ls2f{letter-spacing:0.933333pt;}
.lsc7{letter-spacing:0.952000pt;}
.ls14{letter-spacing:0.960000pt;}
.lsbe{letter-spacing:0.974667pt;}
.ls66{letter-spacing:0.986667pt;}
.lsb2{letter-spacing:0.997333pt;}
.ls9a{letter-spacing:1.013315pt;}
.lsd{letter-spacing:1.013333pt;}
.ls13{letter-spacing:1.040000pt;}
.lsc5{letter-spacing:1.042667pt;}
.lsa{letter-spacing:1.066667pt;}
.lsc6{letter-spacing:1.088000pt;}
.ls95{letter-spacing:1.093333pt;}
.ls9b{letter-spacing:1.109288pt;}
.ls82{letter-spacing:1.120000pt;}
.lsb7{letter-spacing:1.133333pt;}
.ls83{letter-spacing:1.146159pt;}
.ls5e{letter-spacing:1.146667pt;}
.lsbc{letter-spacing:1.156000pt;}
.ls18{letter-spacing:1.173333pt;}
.lsbb{letter-spacing:1.178667pt;}
.ls24{letter-spacing:1.226667pt;}
.ls23{letter-spacing:1.280000pt;}
.ls72{letter-spacing:1.281006pt;}
.ls1c{letter-spacing:1.281576pt;}
.ls1b{letter-spacing:1.281619pt;}
.ls73{letter-spacing:1.281657pt;}
.ls4d{letter-spacing:1.333333pt;}
.ls7d{letter-spacing:1.375989pt;}
.ls63{letter-spacing:1.386667pt;}
.ls11{letter-spacing:1.413333pt;}
.ls88{letter-spacing:1.429326pt;}
.ls22{letter-spacing:1.439991pt;}
.lsb{letter-spacing:1.440000pt;}
.lsbd{letter-spacing:1.450667pt;}
.ls1f{letter-spacing:1.493333pt;}
.ls19{letter-spacing:1.520000pt;}
.ls2a{letter-spacing:1.546667pt;}
.ls77{letter-spacing:1.599447pt;}
.ls2c{letter-spacing:1.600000pt;}
.ls21{letter-spacing:1.605333pt;}
.ls27{letter-spacing:1.653333pt;}
.ls20{letter-spacing:1.706667pt;}
.ls96{letter-spacing:1.760000pt;}
.ls1a{letter-spacing:1.813333pt;}
.ls84{letter-spacing:1.866667pt;}
.ls62{letter-spacing:1.920000pt;}
.ls2d{letter-spacing:1.973333pt;}
.ls1d{letter-spacing:2.080000pt;}
.ls7a{letter-spacing:2.133333pt;}
.ls2e{letter-spacing:2.186667pt;}
.ls74{letter-spacing:2.240000pt;}
.ls76{letter-spacing:2.293333pt;}
.ls78{letter-spacing:2.346667pt;}
.ls1e{letter-spacing:2.490659pt;}
.ls71{letter-spacing:2.506667pt;}
.ls79{letter-spacing:2.613333pt;}
.lsc{letter-spacing:2.666667pt;}
.ls75{letter-spacing:2.880000pt;}
.ls0{letter-spacing:3.546667pt;}
.ls58{letter-spacing:11.842960pt;}
.ls59{letter-spacing:11.896306pt;}
.ls56{letter-spacing:14.830373pt;}
.ls57{letter-spacing:17.472273pt;}
.ls55{letter-spacing:17.472787pt;}
.ls5a{letter-spacing:17.472802pt;}
.ls5c{letter-spacing:17.472843pt;}
.ls5b{letter-spacing:17.474471pt;}
.ls4b{letter-spacing:21.178626pt;}
.ws26{word-spacing:-15.146667pt;}
.ws9e{word-spacing:-14.773333pt;}
.ws9d{word-spacing:-14.320000pt;}
.ws31{word-spacing:-13.866667pt;}
.ws42{word-spacing:-13.680000pt;}
.wsb4{word-spacing:-13.653333pt;}
.ws6{word-spacing:-13.600000pt;}
.ws41{word-spacing:-13.333333pt;}
.ws6e{word-spacing:-13.120000pt;}
.ws6d{word-spacing:-13.066667pt;}
.wsb9{word-spacing:-13.013333pt;}
.ws6f{word-spacing:-12.853333pt;}
.wsb7{word-spacing:-12.266667pt;}
.ws6c{word-spacing:-12.213333pt;}
.wsc2{word-spacing:-11.560000pt;}
.wsad{word-spacing:-11.360000pt;}
.ws7e{word-spacing:-11.253333pt;}
.ws1b{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.wsb5{word-spacing:-10.933333pt;}
.ws61{word-spacing:-10.826667pt;}
.ws5{word-spacing:-10.453333pt;}
.ws77{word-spacing:-10.346667pt;}
.ws7{word-spacing:-10.240000pt;}
.ws1c{word-spacing:-9.333333pt;}
.wsa6{word-spacing:-9.258667pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws8{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws15{word-spacing:-6.666667pt;}
.ws9b{word-spacing:-5.666667pt;}
.ws85{word-spacing:-2.666667pt;}
.ws8a{word-spacing:-2.613333pt;}
.ws87{word-spacing:-2.240000pt;}
.ws29{word-spacing:-2.080000pt;}
.ws3a{word-spacing:-1.973333pt;}
.ws8b{word-spacing:-1.813333pt;}
.ws2c{word-spacing:-1.706667pt;}
.ws9{word-spacing:-1.680000pt;}
.wsbd{word-spacing:-1.600000pt;}
.wsa1{word-spacing:-1.546667pt;}
.ws3d{word-spacing:-1.386667pt;}
.ws20{word-spacing:-1.333333pt;}
.ws2e{word-spacing:-1.280000pt;}
.ws79{word-spacing:-1.226667pt;}
.wsc5{word-spacing:-1.178667pt;}
.ws30{word-spacing:-1.173333pt;}
.wsc1{word-spacing:-1.133333pt;}
.ws75{word-spacing:-1.120000pt;}
.wsc7{word-spacing:-1.088000pt;}
.wsd{word-spacing:-1.066667pt;}
.wsf9{word-spacing:-1.042667pt;}
.ws21{word-spacing:-1.013333pt;}
.wsdd{word-spacing:-0.997333pt;}
.ws37{word-spacing:-0.960000pt;}
.wsd0{word-spacing:-0.952000pt;}
.ws83{word-spacing:-0.906667pt;}
.wscf{word-spacing:-0.861333pt;}
.wse{word-spacing:-0.853333pt;}
.wsef{word-spacing:-0.816000pt;}
.ws25{word-spacing:-0.800000pt;}
.ws4f{word-spacing:-0.746667pt;}
.wsdc{word-spacing:-0.725333pt;}
.ws22{word-spacing:-0.693333pt;}
.wsd1{word-spacing:-0.680000pt;}
.wsf{word-spacing:-0.640000pt;}
.wsd2{word-spacing:-0.634667pt;}
.wscc{word-spacing:-0.589333pt;}
.ws81{word-spacing:-0.586667pt;}
.ws18{word-spacing:-0.544000pt;}
.ws2d{word-spacing:-0.533333pt;}
.wsb{word-spacing:-0.506667pt;}
.ws78{word-spacing:-0.480000pt;}
.wsf8{word-spacing:-0.453333pt;}
.ws8f{word-spacing:-0.426667pt;}
.ws54{word-spacing:-0.373333pt;}
.ws11{word-spacing:-0.320000pt;}
.wse4{word-spacing:-0.272000pt;}
.ws4{word-spacing:-0.266667pt;}
.wsce{word-spacing:-0.234667pt;}
.wsd4{word-spacing:-0.226667pt;}
.ws10{word-spacing:-0.213333pt;}
.wse3{word-spacing:-0.181333pt;}
.ws16{word-spacing:-0.106667pt;}
.ws1a{word-spacing:-0.064000pt;}
.ws44{word-spacing:-0.053347pt;}
.wsaa{word-spacing:-0.053333pt;}
.ws19{word-spacing:-0.045333pt;}
.wsa{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.053333pt;}
.wsfa{word-spacing:0.090667pt;}
.ws23{word-spacing:0.106667pt;}
.ws62{word-spacing:0.160000pt;}
.ws9a{word-spacing:0.181333pt;}
.ws13{word-spacing:0.213333pt;}
.wsbf{word-spacing:0.226667pt;}
.ws7b{word-spacing:0.266667pt;}
.wscb{word-spacing:0.272000pt;}
.wsc0{word-spacing:0.317333pt;}
.ws5f{word-spacing:0.320000pt;}
.ws12{word-spacing:0.373333pt;}
.wse6{word-spacing:0.408000pt;}
.ws34{word-spacing:0.426667pt;}
.ws76{word-spacing:0.480000pt;}
.ws1f{word-spacing:0.533333pt;}
.ws9c{word-spacing:0.544000pt;}
.ws84{word-spacing:0.586667pt;}
.wse7{word-spacing:0.589333pt;}
.ws3c{word-spacing:0.640000pt;}
.wsaf{word-spacing:0.680000pt;}
.wsa2{word-spacing:0.693333pt;}
.ws8c{word-spacing:0.746667pt;}
.wscd{word-spacing:0.770667pt;}
.ws56{word-spacing:0.800000pt;}
.ws5e{word-spacing:0.853333pt;}
.wsee{word-spacing:0.861333pt;}
.ws4e{word-spacing:0.906667pt;}
.ws94{word-spacing:0.952000pt;}
.wsa0{word-spacing:0.960000pt;}
.ws69{word-spacing:0.997333pt;}
.wsca{word-spacing:1.042667pt;}
.ws2f{word-spacing:1.066667pt;}
.wsc3{word-spacing:1.088000pt;}
.ws58{word-spacing:1.120000pt;}
.wsc9{word-spacing:1.133333pt;}
.wsb8{word-spacing:1.173333pt;}
.ws14{word-spacing:1.226667pt;}
.wsf4{word-spacing:1.269333pt;}
.ws48{word-spacing:1.280000pt;}
.wsd9{word-spacing:1.314667pt;}
.wsc{word-spacing:1.333333pt;}
.wsdb{word-spacing:1.360000pt;}
.ws33{word-spacing:1.386667pt;}
.wsfb{word-spacing:1.405333pt;}
.ws4d{word-spacing:1.440000pt;}
.wsc4{word-spacing:1.450667pt;}
.ws1d{word-spacing:1.493333pt;}
.ws95{word-spacing:1.496000pt;}
.wsd5{word-spacing:1.541333pt;}
.ws7d{word-spacing:1.546667pt;}
.wsea{word-spacing:1.586667pt;}
.ws52{word-spacing:1.600000pt;}
.ws70{word-spacing:1.600400pt;}
.wsfc{word-spacing:1.632000pt;}
.ws5c{word-spacing:1.653333pt;}
.wsa5{word-spacing:1.677333pt;}
.ws2a{word-spacing:1.706667pt;}
.wsa9{word-spacing:1.760000pt;}
.ws90{word-spacing:1.768000pt;}
.ws40{word-spacing:1.813333pt;}
.ws24{word-spacing:1.866667pt;}
.ws63{word-spacing:1.904000pt;}
.ws35{word-spacing:1.920000pt;}
.ws55{word-spacing:1.973333pt;}
.wsc6{word-spacing:1.994667pt;}
.ws8e{word-spacing:2.026667pt;}
.ws36{word-spacing:2.080000pt;}
.ws96{word-spacing:2.085333pt;}
.ws53{word-spacing:2.133333pt;}
.ws7a{word-spacing:2.186667pt;}
.wseb{word-spacing:2.221333pt;}
.ws5b{word-spacing:2.240000pt;}
.ws38{word-spacing:2.293333pt;}
.wsc8{word-spacing:2.312000pt;}
.wsbe{word-spacing:2.346667pt;}
.wsd7{word-spacing:2.357333pt;}
.ws50{word-spacing:2.400000pt;}
.wse5{word-spacing:2.402667pt;}
.wsf0{word-spacing:2.448000pt;}
.ws4b{word-spacing:2.453333pt;}
.wsab{word-spacing:2.506667pt;}
.ws3e{word-spacing:2.560000pt;}
.wsec{word-spacing:2.584000pt;}
.wsbc{word-spacing:2.613333pt;}
.wsf2{word-spacing:2.629333pt;}
.ws32{word-spacing:2.666667pt;}
.wsf6{word-spacing:2.674667pt;}
.ws86{word-spacing:2.720000pt;}
.wsd6{word-spacing:2.765333pt;}
.ws2b{word-spacing:2.773333pt;}
.wsb6{word-spacing:2.826667pt;}
.wsda{word-spacing:2.901333pt;}
.ws4a{word-spacing:2.933333pt;}
.ws51{word-spacing:2.986667pt;}
.wsf5{word-spacing:2.992000pt;}
.wsf7{word-spacing:3.082667pt;}
.ws5d{word-spacing:3.093333pt;}
.wse9{word-spacing:3.128000pt;}
.ws3f{word-spacing:3.146667pt;}
.wse2{word-spacing:3.173333pt;}
.ws59{word-spacing:3.200000pt;}
.wsde{word-spacing:3.218667pt;}
.ws89{word-spacing:3.253333pt;}
.wsac{word-spacing:3.306667pt;}
.wsb3{word-spacing:3.360000pt;}
.wsd3{word-spacing:3.400000pt;}
.ws27{word-spacing:3.413333pt;}
.ws57{word-spacing:3.466667pt;}
.wsbb{word-spacing:3.520000pt;}
.wsed{word-spacing:3.536000pt;}
.ws6b{word-spacing:3.626667pt;}
.wsb0{word-spacing:3.672000pt;}
.ws49{word-spacing:3.680000pt;}
.ws82{word-spacing:3.733333pt;}
.ws80{word-spacing:3.786667pt;}
.wsf1{word-spacing:3.808000pt;}
.wsf3{word-spacing:3.853333pt;}
.ws7f{word-spacing:3.946667pt;}
.wsd8{word-spacing:3.989333pt;}
.wse0{word-spacing:4.080000pt;}
.ws39{word-spacing:4.106667pt;}
.wsdf{word-spacing:4.170667pt;}
.ws91{word-spacing:4.216000pt;}
.wse8{word-spacing:4.261333pt;}
.ws60{word-spacing:4.266667pt;}
.ws5a{word-spacing:4.533333pt;}
.ws88{word-spacing:4.693333pt;}
.ws65{word-spacing:4.714667pt;}
.ws28{word-spacing:4.800000pt;}
.wsb1{word-spacing:4.986667pt;}
.wsa4{word-spacing:5.032000pt;}
.ws97{word-spacing:5.168000pt;}
.ws7c{word-spacing:5.173333pt;}
.ws67{word-spacing:5.304000pt;}
.ws3b{word-spacing:5.333333pt;}
.wsa3{word-spacing:5.530667pt;}
.ws4c{word-spacing:5.600000pt;}
.wse1{word-spacing:5.621333pt;}
.wsb2{word-spacing:5.712000pt;}
.wsa8{word-spacing:5.760000pt;}
.wsba{word-spacing:6.080000pt;}
.ws68{word-spacing:6.301333pt;}
.ws93{word-spacing:6.890667pt;}
.ws6a{word-spacing:7.162667pt;}
.ws1e{word-spacing:7.520000pt;}
.ws66{word-spacing:7.978667pt;}
.ws8d{word-spacing:8.533333pt;}
.wsae{word-spacing:8.658667pt;}
.ws45{word-spacing:8.812869pt;}
.ws98{word-spacing:9.157333pt;}
.ws92{word-spacing:9.792000pt;}
.ws47{word-spacing:10.327915pt;}
.ws43{word-spacing:10.375926pt;}
.ws99{word-spacing:10.608000pt;}
.ws64{word-spacing:13.101333pt;}
.ws74{word-spacing:14.766357pt;}
.ws72{word-spacing:15.785278pt;}
.ws73{word-spacing:16.281403pt;}
.ws71{word-spacing:19.162123pt;}
.ws46{word-spacing:19.258146pt;}
.ws17{word-spacing:64.237333pt;}
.ws9f{word-spacing:205.813333pt;}
._f{margin-left:-17.627744pt;}
._11{margin-left:-16.002133pt;}
._a{margin-left:-14.733333pt;}
._15{margin-left:-13.395237pt;}
._2f{margin-left:-12.426667pt;}
._14{margin-left:-11.434754pt;}
._18{margin-left:-10.184570pt;}
._8{margin-left:-8.714612pt;}
._6{margin-left:-7.232055pt;}
._7{margin-left:-6.203678pt;}
._19{margin-left:-5.137124pt;}
._5{margin-left:-4.106703pt;}
._3{margin-left:-2.380763pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.254400pt;}
._12{width:2.524756pt;}
._10{width:3.781333pt;}
._13{width:4.789299pt;}
._1a{width:6.300763pt;}
._30{width:7.825297pt;}
._31{width:9.973313pt;}
._4{width:11.466667pt;}
._9{width:12.586659pt;}
._16{width:13.572894pt;}
._17{width:14.802097pt;}
._b{width:16.320000pt;}
._1b{width:17.318381pt;}
._e{width:18.666667pt;}
._36{width:19.673903pt;}
._34{width:21.277368pt;}
._35{width:22.224087pt;}
._32{width:24.027237pt;}
._33{width:25.794687pt;}
._2{width:36.065050pt;}
._c{width:48.552000pt;}
._22{width:56.258667pt;}
._1d{width:83.277333pt;}
._2b{width:84.184005pt;}
._2a{width:127.114640pt;}
._21{width:169.501307pt;}
._26{width:173.263979pt;}
._1e{width:174.669328pt;}
._25{width:195.930645pt;}
._2c{width:215.559979pt;}
._1f{width:217.146667pt;}
._2e{width:218.597312pt;}
._29{width:235.688000pt;}
._20{width:278.074667pt;}
._23{width:281.021333pt;}
._24{width:299.925328pt;}
._27{width:303.688000pt;}
._28{width:322.591995pt;}
._2d{width:326.354667pt;}
._1c{width:892.221874pt;}
._d{width:2108.181333pt;}
.fs7{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fsb{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:53.346664pt;}
.fs9{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:0.280264pt;}
.y114{bottom:3.305603pt;}
.y112{bottom:3.306885pt;}
.yd7{bottom:9.613597pt;}
.ydb{bottom:18.769725pt;}
.yd9{bottom:23.437470pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y2c{bottom:100.389600pt;}
.y1b5{bottom:101.986938pt;}
.y142{bottom:102.111064pt;}
.ybf{bottom:102.111084pt;}
.y1e0{bottom:105.522389pt;}
.yd4{bottom:106.777598pt;}
.y218{bottom:113.382392pt;}
.y6c{bottom:115.480265pt;}
.y259{bottom:117.179048pt;}
.y2b{bottom:118.250936pt;}
.y98{bottom:118.384257pt;}
.y1b4{bottom:118.653605pt;}
.y141{bottom:118.777730pt;}
.ybe{bottom:118.777751pt;}
.y1df{bottom:118.850389pt;}
.yd3{bottom:123.444275pt;}
.y217{bottom:126.710392pt;}
.y38{bottom:127.083336pt;}
.y258{bottom:130.507048pt;}
.y6b{bottom:132.146932pt;}
.y1de{bottom:132.178389pt;}
.y113{bottom:132.521332pt;}
.y2a{bottom:133.764936pt;}
.y97{bottom:135.050924pt;}
.y1b3{bottom:135.320272pt;}
.y162{bottom:135.444255pt;}
.y18e{bottom:135.444275pt;}
.y140{bottom:135.444397pt;}
.ybd{bottom:135.444417pt;}
.y216{bottom:140.038392pt;}
.y257{bottom:143.835048pt;}
.yd5{bottom:144.110931pt;}
.y37{bottom:144.944672pt;}
.y1dd{bottom:145.506389pt;}
.y6a{bottom:148.813599pt;}
.y29{bottom:151.626272pt;}
.y96{bottom:151.717590pt;}
.y1b2{bottom:151.986938pt;}
.y161{bottom:152.110921pt;}
.y18d{bottom:152.110942pt;}
.y13f{bottom:152.111064pt;}
.ybc{bottom:152.111084pt;}
.y215{bottom:153.366392pt;}
.yd6{bottom:156.777333pt;}
.y256{bottom:157.163048pt;}
.y1dc{bottom:158.834389pt;}
.y36{bottom:160.469328pt;}
.y10f{bottom:164.187052pt;}
.y69{bottom:165.480265pt;}
.yd8{bottom:166.390930pt;}
.y214{bottom:166.694392pt;}
.y28{bottom:167.156262pt;}
.y95{bottom:168.384257pt;}
.y1b1{bottom:168.653605pt;}
.y15e{bottom:168.777588pt;}
.y18c{bottom:168.777608pt;}
.y13e{bottom:168.777730pt;}
.ybb{bottom:168.777751pt;}
.y255{bottom:170.491048pt;}
.y1db{bottom:172.162389pt;}
.y35{bottom:173.797328pt;}
.yda{bottom:175.547058pt;}
.y213{bottom:180.022392pt;}
.y27{bottom:180.484262pt;}
.y10e{bottom:180.853719pt;}
.y68{bottom:182.146932pt;}
.y254{bottom:183.819048pt;}
.y94{bottom:185.050924pt;}
.y139{bottom:185.320272pt;}
.y15d{bottom:185.444255pt;}
.y18b{bottom:185.444275pt;}
.y13d{bottom:185.444397pt;}
.yba{bottom:185.444417pt;}
.y1da{bottom:185.490389pt;}
.y34{bottom:187.125328pt;}
.y212{bottom:193.350392pt;}
.y26{bottom:193.812262pt;}
.y253{bottom:197.147048pt;}
.y10d{bottom:197.520386pt;}
.y67{bottom:198.813599pt;}
.y1d9{bottom:198.818389pt;}
.y93{bottom:201.717590pt;}
.y138{bottom:201.986938pt;}
.y15c{bottom:202.110921pt;}
.yd2{bottom:202.110942pt;}
.y13c{bottom:202.111064pt;}
.yb9{bottom:202.111084pt;}
.y33{bottom:204.986532pt;}
.y211{bottom:206.678392pt;}
.y25{bottom:207.140262pt;}
.y252{bottom:210.475048pt;}
.y1d8{bottom:212.146389pt;}
.y10c{bottom:214.187052pt;}
.y66{bottom:215.480265pt;}
.y92{bottom:218.384257pt;}
.y137{bottom:218.653605pt;}
.y15b{bottom:218.777588pt;}
.yd1{bottom:218.777608pt;}
.y19e{bottom:218.777730pt;}
.yb8{bottom:218.777751pt;}
.y210{bottom:220.006392pt;}
.y32{bottom:220.506008pt;}
.y251{bottom:223.803048pt;}
.y24{bottom:225.001607pt;}
.y1d7{bottom:225.474389pt;}
.y10b{bottom:230.853719pt;}
.y65{bottom:232.146932pt;}
.y20f{bottom:233.334392pt;}
.y31{bottom:233.834008pt;}
.y91{bottom:235.050924pt;}
.y136{bottom:235.320272pt;}
.y15a{bottom:235.444255pt;}
.yd0{bottom:235.444275pt;}
.y19d{bottom:235.444397pt;}
.yb7{bottom:235.444417pt;}
.y250{bottom:237.131048pt;}
.y1d6{bottom:238.802389pt;}
.y20e{bottom:246.662392pt;}
.y23{bottom:247.234259pt;}
.y10a{bottom:247.520386pt;}
.y64{bottom:248.813599pt;}
.y24f{bottom:250.459048pt;}
.y30{bottom:251.695333pt;}
.y90{bottom:251.717590pt;}
.y135{bottom:251.986938pt;}
.y159{bottom:252.110921pt;}
.ycf{bottom:252.110942pt;}
.y14b{bottom:252.111064pt;}
.yb6{bottom:252.111084pt;}
.y1d5{bottom:252.130389pt;}
.y20d{bottom:259.990392pt;}
.y22{bottom:260.562259pt;}
.y24e{bottom:263.787048pt;}
.y109{bottom:264.187052pt;}
.y63{bottom:265.480265pt;}
.y2f{bottom:267.214667pt;}
.y8f{bottom:268.384257pt;}
.y1b0{bottom:268.653605pt;}
.yce{bottom:268.777588pt;}
.y13b{bottom:268.777608pt;}
.y14a{bottom:268.777730pt;}
.yb5{bottom:268.777751pt;}
.y20c{bottom:273.318392pt;}
.y24d{bottom:277.115048pt;}
.y2e{bottom:280.542667pt;}
.y21{bottom:280.599592pt;}
.y108{bottom:280.853719pt;}
.y1d4{bottom:282.095722pt;}
.y62{bottom:282.146932pt;}
.y8e{bottom:285.050924pt;}
.y134{bottom:285.320272pt;}
.ycd{bottom:285.444255pt;}
.y13a{bottom:285.444275pt;}
.y149{bottom:285.444397pt;}
.yb4{bottom:285.444417pt;}
.y20b{bottom:286.646392pt;}
.y24c{bottom:290.443048pt;}
.y20{bottom:293.927592pt;}
.y1d3{bottom:295.423722pt;}
.y2d{bottom:298.403992pt;}
.y61{bottom:298.813599pt;}
.y20a{bottom:299.974392pt;}
.y8d{bottom:301.717590pt;}
.y1af{bottom:301.986938pt;}
.ycc{bottom:302.110921pt;}
.y18a{bottom:302.110942pt;}
.y148{bottom:302.111064pt;}
.yb3{bottom:302.111084pt;}
.y24b{bottom:303.771048pt;}
.y1d2{bottom:308.751722pt;}
.y209{bottom:313.302392pt;}
.y107{bottom:314.187052pt;}
.y60{bottom:315.480265pt;}
.y24a{bottom:317.099048pt;}
.y1ae{bottom:318.653605pt;}
.ycb{bottom:318.777588pt;}
.y189{bottom:318.777608pt;}
.y147{bottom:318.777730pt;}
.yb2{bottom:318.777751pt;}
.y1d1{bottom:322.079722pt;}
.y208{bottom:326.630392pt;}
.y28a{bottom:330.233620pt;}
.y249{bottom:330.427048pt;}
.y2bb{bottom:330.494287pt;}
.y5f{bottom:332.146932pt;}
.y8c{bottom:335.050924pt;}
.y133{bottom:335.320272pt;}
.y1d0{bottom:335.407722pt;}
.yca{bottom:335.444255pt;}
.y146{bottom:335.444397pt;}
.yb1{bottom:335.444417pt;}
.y207{bottom:339.958392pt;}
.y289{bottom:343.561620pt;}
.y248{bottom:343.755048pt;}
.y2ba{bottom:343.822287pt;}
.y106{bottom:347.520386pt;}
.y1cf{bottom:348.735722pt;}
.y5e{bottom:348.813599pt;}
.y132{bottom:351.986938pt;}
.yc9{bottom:352.110921pt;}
.y145{bottom:352.111064pt;}
.yb0{bottom:352.111084pt;}
.y206{bottom:353.286392pt;}
.y288{bottom:356.889620pt;}
.y247{bottom:357.083048pt;}
.y2b9{bottom:357.150287pt;}
.y1ce{bottom:362.063722pt;}
.y105{bottom:364.187052pt;}
.y5d{bottom:365.480265pt;}
.y205{bottom:366.614392pt;}
.y8b{bottom:368.384277pt;}
.y131{bottom:368.653605pt;}
.yc8{bottom:368.777588pt;}
.y144{bottom:368.777730pt;}
.yaf{bottom:368.777751pt;}
.y287{bottom:370.217620pt;}
.y246{bottom:370.411048pt;}
.y2b8{bottom:370.478287pt;}
.y204{bottom:379.942392pt;}
.y104{bottom:380.853719pt;}
.y5c{bottom:382.146932pt;}
.y286{bottom:383.545620pt;}
.y245{bottom:383.739048pt;}
.y2b7{bottom:383.806287pt;}
.y130{bottom:385.320272pt;}
.yc7{bottom:385.444255pt;}
.y143{bottom:385.444397pt;}
.yae{bottom:385.444417pt;}
.y1cd{bottom:392.029056pt;}
.y1f{bottom:392.187907pt;}
.y203{bottom:393.270392pt;}
.y285{bottom:396.873620pt;}
.y244{bottom:397.067048pt;}
.y2b6{bottom:397.134287pt;}
.y103{bottom:397.520386pt;}
.y5b{bottom:398.813599pt;}
.y12f{bottom:401.986938pt;}
.yc6{bottom:402.110921pt;}
.y19c{bottom:402.111064pt;}
.yad{bottom:402.111084pt;}
.y1cc{bottom:405.357056pt;}
.y202{bottom:406.598392pt;}
.y8a{bottom:409.598918pt;}
.y284{bottom:410.201620pt;}
.y243{bottom:410.395048pt;}
.y2b5{bottom:410.462287pt;}
.y102{bottom:414.187052pt;}
.y5a{bottom:415.480265pt;}
.y12e{bottom:418.653605pt;}
.yc5{bottom:418.777588pt;}
.y160{bottom:418.777730pt;}
.yac{bottom:418.777751pt;}
.y201{bottom:419.926392pt;}
.y283{bottom:423.529620pt;}
.y242{bottom:423.723048pt;}
.y2b4{bottom:423.790287pt;}
.y1e{bottom:425.521240pt;}
.y89{bottom:426.265584pt;}
.y152{bottom:430.174944pt;}
.y101{bottom:430.853719pt;}
.y59{bottom:432.146932pt;}
.y200{bottom:433.254392pt;}
.y12d{bottom:435.320272pt;}
.yc4{bottom:435.444255pt;}
.y15f{bottom:435.444397pt;}
.yab{bottom:435.444417pt;}
.y282{bottom:436.857620pt;}
.y241{bottom:437.051048pt;}
.y2b3{bottom:437.118287pt;}
.y1d{bottom:442.187907pt;}
.y88{bottom:442.932251pt;}
.y151{bottom:443.502944pt;}
.y158{bottom:443.536944pt;}
.y1ff{bottom:446.582392pt;}
.y100{bottom:447.520386pt;}
.y58{bottom:448.813599pt;}
.y281{bottom:450.185620pt;}
.y240{bottom:450.379048pt;}
.y2b2{bottom:450.446287pt;}
.y12c{bottom:451.986938pt;}
.yc3{bottom:452.110921pt;}
.y19b{bottom:452.111064pt;}
.yaa{bottom:452.111084pt;}
.y150{bottom:456.830944pt;}
.y157{bottom:456.864944pt;}
.y1c{bottom:458.854574pt;}
.y87{bottom:459.598918pt;}
.y1fe{bottom:459.910392pt;}
.y280{bottom:463.513620pt;}
.y23f{bottom:463.707048pt;}
.y2b1{bottom:463.774287pt;}
.yff{bottom:464.187052pt;}
.y57{bottom:465.480265pt;}
.y12b{bottom:468.653605pt;}
.y188{bottom:468.777588pt;}
.y19a{bottom:468.777730pt;}
.ya9{bottom:468.777751pt;}
.y14f{bottom:470.158944pt;}
.y156{bottom:470.192944pt;}
.y1fd{bottom:473.238392pt;}
.y1b{bottom:475.521240pt;}
.y86{bottom:476.265584pt;}
.y27f{bottom:476.841620pt;}
.y23e{bottom:477.035048pt;}
.y2b0{bottom:477.102287pt;}
.yfe{bottom:480.853719pt;}
.y56{bottom:482.146932pt;}
.y14e{bottom:483.486944pt;}
.y155{bottom:483.520944pt;}
.y167{bottom:485.228326pt;}
.y1ad{bottom:485.320272pt;}
.yc2{bottom:485.444255pt;}
.y199{bottom:485.444397pt;}
.ya8{bottom:485.444417pt;}
.y1fc{bottom:486.566392pt;}
.y27e{bottom:490.169620pt;}
.y23d{bottom:490.363048pt;}
.y2af{bottom:490.430287pt;}
.y1a{bottom:492.187907pt;}
.y85{bottom:492.932251pt;}
.y14d{bottom:496.814944pt;}
.y154{bottom:496.848944pt;}
.y166{bottom:498.556326pt;}
.y55{bottom:498.813599pt;}
.y1fb{bottom:499.894392pt;}
.y12a{bottom:501.986938pt;}
.y187{bottom:502.110921pt;}
.y198{bottom:502.111064pt;}
.ya7{bottom:502.111084pt;}
.y27d{bottom:503.497620pt;}
.y23c{bottom:503.691048pt;}
.y2ae{bottom:503.758287pt;}
.y19{bottom:508.854574pt;}
.y84{bottom:509.598918pt;}
.y14c{bottom:510.142944pt;}
.y153{bottom:510.176944pt;}
.y165{bottom:511.884326pt;}
.y1fa{bottom:513.222392pt;}
.yfd{bottom:514.187052pt;}
.y54{bottom:515.480265pt;}
.y27c{bottom:516.825620pt;}
.y23b{bottom:517.019048pt;}
.y2ad{bottom:517.086287pt;}
.y1ac{bottom:518.653605pt;}
.yc1{bottom:518.777588pt;}
.y197{bottom:518.777730pt;}
.ya6{bottom:518.777751pt;}
.y18{bottom:525.521240pt;}
.y83{bottom:526.265584pt;}
.y1f9{bottom:526.550392pt;}
.y27b{bottom:530.153620pt;}
.y23a{bottom:530.347048pt;}
.y2ac{bottom:530.414287pt;}
.y53{bottom:532.146973pt;}
.y1ab{bottom:535.320272pt;}
.yc0{bottom:535.444255pt;}
.y196{bottom:535.444397pt;}
.ya5{bottom:535.444417pt;}
.y17f{bottom:537.523355pt;}
.y1f8{bottom:539.878392pt;}
.y17{bottom:542.187907pt;}
.y82{bottom:542.932251pt;}
.y27a{bottom:543.481620pt;}
.y239{bottom:543.675048pt;}
.y2ab{bottom:543.742287pt;}
.yfc{bottom:547.520386pt;}
.y52{bottom:548.813639pt;}
.y129{bottom:551.986938pt;}
.y186{bottom:552.110921pt;}
.y195{bottom:552.111064pt;}
.ya4{bottom:552.111084pt;}
.y1f7{bottom:553.206392pt;}
.y17e{bottom:554.228688pt;}
.y279{bottom:556.809620pt;}
.y238{bottom:557.003048pt;}
.y2aa{bottom:557.070287pt;}
.y16{bottom:558.854574pt;}
.y81{bottom:559.598918pt;}
.yfb{bottom:564.187052pt;}
.y51{bottom:565.480306pt;}
.y1f6{bottom:566.534392pt;}
.y128{bottom:568.653605pt;}
.y185{bottom:568.777588pt;}
.y194{bottom:568.777730pt;}
.ya3{bottom:568.777751pt;}
.y278{bottom:570.137620pt;}
.y237{bottom:570.331048pt;}
.y2a9{bottom:570.398287pt;}
.y17d{bottom:570.866021pt;}
.y15{bottom:575.521240pt;}
.y80{bottom:576.265584pt;}
.y1f5{bottom:579.862392pt;}
.yfa{bottom:580.853719pt;}
.y50{bottom:582.146973pt;}
.y277{bottom:583.465620pt;}
.y236{bottom:583.659048pt;}
.y2a8{bottom:583.726287pt;}
.y1cb{bottom:585.320231pt;}
.y127{bottom:585.320272pt;}
.y184{bottom:585.444255pt;}
.y193{bottom:585.444397pt;}
.ya2{bottom:585.444417pt;}
.y17c{bottom:587.503355pt;}
.y14{bottom:592.187907pt;}
.y7f{bottom:592.932251pt;}
.y1f4{bottom:593.190392pt;}
.y276{bottom:596.793620pt;}
.y235{bottom:596.987048pt;}
.y2a7{bottom:597.054287pt;}
.yf9{bottom:597.520426pt;}
.y4f{bottom:598.813639pt;}
.y1aa{bottom:601.986898pt;}
.y126{bottom:601.986938pt;}
.y183{bottom:602.110921pt;}
.y192{bottom:602.111064pt;}
.ya1{bottom:602.111084pt;}
.y17b{bottom:604.140688pt;}
.y1f3{bottom:606.518392pt;}
.y13{bottom:608.854574pt;}
.y7e{bottom:609.598918pt;}
.y275{bottom:610.121620pt;}
.y234{bottom:610.315048pt;}
.y2a6{bottom:610.382287pt;}
.yf8{bottom:614.187093pt;}
.y4e{bottom:615.480306pt;}
.y1a9{bottom:618.653564pt;}
.y125{bottom:618.653605pt;}
.y182{bottom:618.777588pt;}
.y191{bottom:618.777730pt;}
.ya0{bottom:618.777751pt;}
.y17a{bottom:620.778021pt;}
.y274{bottom:623.449620pt;}
.y233{bottom:623.643048pt;}
.y2a5{bottom:623.710287pt;}
.y12{bottom:625.521240pt;}
.y7d{bottom:626.265584pt;}
.yf7{bottom:630.853760pt;}
.y4d{bottom:632.146973pt;}
.y124{bottom:635.320231pt;}
.y1ca{bottom:635.320272pt;}
.y181{bottom:635.444255pt;}
.y190{bottom:635.444397pt;}
.y9f{bottom:635.444417pt;}
.y1f2{bottom:636.518392pt;}
.y273{bottom:636.777620pt;}
.y232{bottom:636.971048pt;}
.y2a4{bottom:637.038287pt;}
.y179{bottom:637.415355pt;}
.y11{bottom:642.187907pt;}
.y7c{bottom:642.932251pt;}
.yf6{bottom:647.520426pt;}
.y4c{bottom:648.813639pt;}
.y272{bottom:650.105620pt;}
.y231{bottom:650.299048pt;}
.y2a3{bottom:650.366287pt;}
.y123{bottom:651.986898pt;}
.y1c9{bottom:651.986938pt;}
.y180{bottom:652.110921pt;}
.y18f{bottom:652.111064pt;}
.y9e{bottom:652.111084pt;}
.y178{bottom:654.052688pt;}
.y10{bottom:658.854574pt;}
.y7b{bottom:659.598918pt;}
.y271{bottom:663.433620pt;}
.y230{bottom:663.627048pt;}
.y2a2{bottom:663.694287pt;}
.yf5{bottom:664.187093pt;}
.y4b{bottom:665.480306pt;}
.y122{bottom:668.653564pt;}
.y1c8{bottom:668.653605pt;}
.y9d{bottom:668.777751pt;}
.y177{bottom:670.690021pt;}
.yf{bottom:675.521240pt;}
.y7a{bottom:676.265584pt;}
.y270{bottom:676.761620pt;}
.y22f{bottom:676.955048pt;}
.y2a1{bottom:677.022287pt;}
.yf4{bottom:680.853760pt;}
.y4a{bottom:682.146973pt;}
.y121{bottom:685.320231pt;}
.y1c7{bottom:685.320272pt;}
.y9c{bottom:685.444417pt;}
.y176{bottom:687.327355pt;}
.y26f{bottom:690.089620pt;}
.y22e{bottom:690.283048pt;}
.y2a0{bottom:690.350287pt;}
.y1a2{bottom:690.638965pt;}
.ye{bottom:692.187907pt;}
.yf3{bottom:697.520426pt;}
.y49{bottom:698.813639pt;}
.y120{bottom:701.986898pt;}
.y1c6{bottom:701.986938pt;}
.y9b{bottom:702.111084pt;}
.y1f1{bottom:703.241608pt;}
.y26e{bottom:703.417620pt;}
.y22d{bottom:703.611048pt;}
.y29f{bottom:703.678287pt;}
.y175{bottom:703.964688pt;}
.y1a1{bottom:703.966965pt;}
.y1a5{bottom:703.978299pt;}
.yd{bottom:708.854574pt;}
.y79{bottom:709.598958pt;}
.yf2{bottom:714.187093pt;}
.y48{bottom:715.480306pt;}
.y1f0{bottom:716.569608pt;}
.y26d{bottom:716.745620pt;}
.y22c{bottom:716.939048pt;}
.y29e{bottom:717.006287pt;}
.y1a0{bottom:717.294965pt;}
.y1a4{bottom:717.306299pt;}
.y11f{bottom:718.653564pt;}
.y1c5{bottom:718.653605pt;}
.y9a{bottom:718.777751pt;}
.y174{bottom:720.602021pt;}
.yc{bottom:725.521240pt;}
.y1ef{bottom:729.897608pt;}
.y26c{bottom:730.073620pt;}
.y22b{bottom:730.267048pt;}
.y29d{bottom:730.334287pt;}
.y19f{bottom:730.622965pt;}
.y1a3{bottom:730.634299pt;}
.yf1{bottom:730.853760pt;}
.y47{bottom:732.146973pt;}
.y11e{bottom:735.320231pt;}
.y1c4{bottom:735.320272pt;}
.y99{bottom:735.444417pt;}
.y173{bottom:737.239355pt;}
.y78{bottom:742.932292pt;}
.y1ee{bottom:743.225608pt;}
.y26b{bottom:743.401620pt;}
.y22a{bottom:743.595048pt;}
.y29c{bottom:743.662287pt;}
.yf0{bottom:747.520426pt;}
.y46{bottom:748.813639pt;}
.y11d{bottom:751.986898pt;}
.y1c3{bottom:751.986938pt;}
.y172{bottom:753.876688pt;}
.y1ed{bottom:756.553608pt;}
.y26a{bottom:756.729620pt;}
.y229{bottom:756.923048pt;}
.y29b{bottom:756.990287pt;}
.yef{bottom:764.187093pt;}
.yb{bottom:764.794803pt;}
.y45{bottom:765.480306pt;}
.y11c{bottom:768.653564pt;}
.y1c2{bottom:768.653605pt;}
.y1ec{bottom:769.881608pt;}
.y269{bottom:770.057620pt;}
.y228{bottom:770.251048pt;}
.y29a{bottom:770.318287pt;}
.y171{bottom:770.514021pt;}
.ye1{bottom:777.310965pt;}
.ye6{bottom:777.333630pt;}
.ya{bottom:778.122803pt;}
.yee{bottom:780.853760pt;}
.y44{bottom:782.146973pt;}
.y1eb{bottom:783.209608pt;}
.y268{bottom:783.385620pt;}
.y227{bottom:783.579048pt;}
.y299{bottom:783.646287pt;}
.y11b{bottom:785.320231pt;}
.y1c1{bottom:785.320272pt;}
.y170{bottom:787.151355pt;}
.ye0{bottom:790.638965pt;}
.ye5{bottom:790.661630pt;}
.y1ea{bottom:796.537608pt;}
.y267{bottom:796.713620pt;}
.y226{bottom:796.907048pt;}
.y298{bottom:796.974287pt;}
.yed{bottom:797.520426pt;}
.y43{bottom:798.813639pt;}
.y77{bottom:800.813619pt;}
.y11a{bottom:801.986898pt;}
.y1c0{bottom:801.986938pt;}
.y16f{bottom:803.788688pt;}
.ydf{bottom:803.966965pt;}
.ye4{bottom:803.989630pt;}
.y1e9{bottom:809.865608pt;}
.y266{bottom:810.041620pt;}
.y225{bottom:810.235048pt;}
.y297{bottom:810.302287pt;}
.yec{bottom:814.187093pt;}
.y42{bottom:815.480306pt;}
.y9{bottom:815.989502pt;}
.yde{bottom:817.294965pt;}
.ye3{bottom:817.317630pt;}
.y76{bottom:817.480286pt;}
.y119{bottom:818.653564pt;}
.y1bf{bottom:818.653605pt;}
.y16e{bottom:820.426021pt;}
.y1e8{bottom:823.193608pt;}
.y265{bottom:823.369620pt;}
.y224{bottom:823.563048pt;}
.y296{bottom:823.630287pt;}
.ydd{bottom:830.622965pt;}
.ye2{bottom:830.645630pt;}
.yeb{bottom:830.853760pt;}
.y41{bottom:832.146973pt;}
.y8{bottom:832.656169pt;}
.y75{bottom:834.146952pt;}
.y118{bottom:835.320231pt;}
.y1be{bottom:835.320272pt;}
.y1e7{bottom:836.521608pt;}
.y264{bottom:836.697620pt;}
.y223{bottom:836.891048pt;}
.y295{bottom:836.958287pt;}
.y16d{bottom:837.063355pt;}
.yea{bottom:847.520231pt;}
.y40{bottom:848.813639pt;}
.y1e6{bottom:849.849608pt;}
.y263{bottom:850.025620pt;}
.y222{bottom:850.219048pt;}
.y294{bottom:850.286287pt;}
.y74{bottom:850.813619pt;}
.y1a8{bottom:851.986898pt;}
.y1bd{bottom:851.986938pt;}
.y16c{bottom:853.700688pt;}
.y262{bottom:863.353620pt;}
.y221{bottom:863.547048pt;}
.y293{bottom:863.614287pt;}
.y3f{bottom:865.480306pt;}
.y73{bottom:867.480286pt;}
.y117{bottom:868.653564pt;}
.y1bc{bottom:868.653605pt;}
.y16b{bottom:870.338021pt;}
.y7{bottom:872.377441pt;}
.y261{bottom:876.681620pt;}
.y220{bottom:876.875048pt;}
.y292{bottom:876.942287pt;}
.y1e5{bottom:879.814941pt;}
.ye9{bottom:880.853564pt;}
.y3e{bottom:882.146973pt;}
.y72{bottom:884.146952pt;}
.y1a7{bottom:885.320231pt;}
.y1bb{bottom:885.320272pt;}
.y16a{bottom:886.975355pt;}
.y260{bottom:890.009620pt;}
.y21f{bottom:890.203048pt;}
.y291{bottom:890.270287pt;}
.y6{bottom:896.377441pt;}
.y3d{bottom:898.813639pt;}
.y71{bottom:900.813619pt;}
.y1a6{bottom:901.986898pt;}
.y1ba{bottom:901.986938pt;}
.y25f{bottom:903.337620pt;}
.y21e{bottom:903.531048pt;}
.y290{bottom:903.598287pt;}
.y1e4{bottom:909.814941pt;}
.y169{bottom:911.285355pt;}
.y3c{bottom:915.480306pt;}
.y25e{bottom:916.665620pt;}
.y21d{bottom:916.859048pt;}
.y28f{bottom:916.926287pt;}
.y70{bottom:917.480286pt;}
.y116{bottom:918.653564pt;}
.y1b9{bottom:918.653605pt;}
.y111{bottom:922.520020pt;}
.y110{bottom:923.920380pt;}
.y25d{bottom:929.993620pt;}
.y21c{bottom:930.187048pt;}
.y28e{bottom:930.254287pt;}
.y3b{bottom:932.146973pt;}
.y168{bottom:932.988688pt;}
.y6f{bottom:934.146952pt;}
.y115{bottom:935.320231pt;}
.y1b8{bottom:935.320272pt;}
.y1e3{bottom:943.185634pt;}
.y25c{bottom:943.321620pt;}
.y21b{bottom:943.515048pt;}
.y28d{bottom:943.582287pt;}
.y6e{bottom:950.813619pt;}
.ye8{bottom:951.986898pt;}
.y1b7{bottom:951.986938pt;}
.y164{bottom:955.652306pt;}
.y1e2{bottom:956.513634pt;}
.y5{bottom:956.561849pt;}
.y25b{bottom:956.649620pt;}
.y21a{bottom:956.843048pt;}
.y28c{bottom:956.910287pt;}
.y3a{bottom:965.480306pt;}
.y6d{bottom:967.480286pt;}
.ye7{bottom:968.653564pt;}
.y1b6{bottom:968.653605pt;}
.y163{bottom:968.980306pt;}
.y1e1{bottom:969.841634pt;}
.y25a{bottom:969.977620pt;}
.y219{bottom:970.171048pt;}
.y28b{bottom:970.238287pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y39{bottom:1002.206543pt;}
.h1c{height:12.798667pt;}
.h1a{height:12.800000pt;}
.h17{height:21.098456pt;}
.he{height:22.403733pt;}
.h14{height:28.666667pt;}
.hd{height:32.005333pt;}
.hc{height:32.760417pt;}
.h15{height:36.435772pt;}
.h2{height:37.376000pt;}
.ha{height:37.653333pt;}
.h13{height:37.653415pt;}
.h1e{height:37.653496pt;}
.h1f{height:37.653822pt;}
.h22{height:37.653903pt;}
.h19{height:37.654115pt;}
.h1b{height:37.864467pt;}
.h1d{height:37.876132pt;}
.h8{height:38.453333pt;}
.h4{height:39.712000pt;}
.h18{height:40.165333pt;}
.hf{height:46.144000pt;}
.h21{height:46.376000pt;}
.h9{height:47.253333pt;}
.h11{height:47.690667pt;}
.h24{height:47.690829pt;}
.h23{height:47.691155pt;}
.h20{height:47.826667pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h10{height:52.448000pt;}
.hb{height:54.560000pt;}
.h12{height:56.266667pt;}
.h7{height:57.658667pt;}
.h16{height:73.084930pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w3{width:252.360006pt;}
.w2{width:308.934672pt;}
.w4{width:537.359985pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x12{left:-1.011200pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x8{left:69.996800pt;}
.x14{left:72.051615pt;}
.x4{left:75.717199pt;}
.x9{left:83.151463pt;}
.x5{left:86.929867pt;}
.x15{left:90.709469pt;}
.x13{left:151.191864pt;}
.xd{left:161.941203pt;}
.x10{left:164.160929pt;}
.xf{left:228.997070pt;}
.x11{left:369.968260pt;}
.x6{left:408.188924pt;}
.xa{left:423.307073pt;}
.x7{left:427.081599pt;}
.x16{left:430.868137pt;}
.xc{left:495.896810pt;}
.xe{left:573.980794pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.xb{left:710.122152pt;}
}




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