
    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_09f9a1a5b88be9c0697fb4fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_a340d6e4488ec4d5bb089676.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7e99f45ac4c56610f2d4ed73.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9bb96a3901ff5443875f0351.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4e357daa488b60d589884e08.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8e675caabde59da810f4a011.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_bf518ab7bfa35eedcc04493e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_1bc2be00aa88627a136ce418.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_2d03437cb7799a362932ee09.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_115d59286ed8560493c8154f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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_dd7a8b9bb28aab06aea6b88a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_0170552f8fd6e17a713407b5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_dd2fa45530a49e9bd29fd419.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_f05ab48e2e7a22a611a89e96.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0170552f8fd6e17a713407b5.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_0b69962330b2835fc478799b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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_6586b331c955eb7c16e10b2c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0170552f8fd6e17a713407b5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_61cacfc248002eefa6300e5d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_0170552f8fd6e17a713407b5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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_a7ad6d67da240f4c7a5c4d90.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910645;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_0170552f8fd6e17a713407b5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;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_8ea2e2a39f8845e8f1fde3c7.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910645;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_0170552f8fd6e17a713407b5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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_3f0862afee2637da7a3d3a3c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910645;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_0170552f8fd6e17a713407b5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;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_6e42ab3c6f4b488aeb1c1069.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.910645;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);}
.v5{vertical-align:-18.000000px;}
.v1{vertical-align:-1.701000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.v6{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls24{letter-spacing:-1.776000px;}
.ls40{letter-spacing:-1.314720px;}
.ls54{letter-spacing:-1.061280px;}
.ls26{letter-spacing:-1.013040px;}
.lsd{letter-spacing:-0.964800px;}
.ls42{letter-spacing:-0.956160px;}
.lsf{letter-spacing:-0.936000px;}
.ls31{letter-spacing:-0.836640px;}
.ls33{letter-spacing:-0.776880px;}
.ls55{letter-spacing:-0.771840px;}
.ls2c{letter-spacing:-0.597600px;}
.ls41{letter-spacing:-0.537840px;}
.ls11{letter-spacing:-0.530640px;}
.lsa{letter-spacing:-0.486000px;}
.ls2a{letter-spacing:-0.478080px;}
.ls17{letter-spacing:-0.434160px;}
.ls32{letter-spacing:-0.418320px;}
.ls15{letter-spacing:-0.378000px;}
.ls29{letter-spacing:-0.358560px;}
.lsc{letter-spacing:-0.337680px;}
.ls56{letter-spacing:-0.289440px;}
.lse{letter-spacing:-0.288000px;}
.ls4b{letter-spacing:-0.241200px;}
.ls2b{letter-spacing:-0.239040px;}
.ls12{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.179280px;}
.ls43{letter-spacing:-0.119520px;}
.ls2d{letter-spacing:-0.059760px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls3e{letter-spacing:0.059760px;}
.ls3b{letter-spacing:0.106560px;}
.ls14{letter-spacing:0.108000px;}
.ls30{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.144720px;}
.ls9{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.178560px;}
.ls1b{letter-spacing:0.179280px;}
.ls47{letter-spacing:0.179400px;}
.ls0{letter-spacing:0.180000px;}
.ls4c{letter-spacing:0.180600px;}
.ls6{letter-spacing:0.192960px;}
.ls7{letter-spacing:0.209040px;}
.ls1c{letter-spacing:0.239040px;}
.ls16{letter-spacing:0.241200px;}
.ls4{letter-spacing:0.253440px;}
.ls48{letter-spacing:0.259320px;}
.ls35{letter-spacing:0.259920px;}
.ls34{letter-spacing:0.260520px;}
.lsb{letter-spacing:0.289440px;}
.ls23{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.342720px;}
.ls18{letter-spacing:0.343320px;}
.ls27{letter-spacing:0.358560px;}
.ls46{letter-spacing:0.360000px;}
.ls52{letter-spacing:0.361800px;}
.ls13{letter-spacing:0.378000px;}
.ls25{letter-spacing:0.385920px;}
.ls3f{letter-spacing:0.418320px;}
.ls4f{letter-spacing:0.482400px;}
.ls19{letter-spacing:0.896400px;}
.ls1f{letter-spacing:1.613520px;}
.ls3c{letter-spacing:1.619400px;}
.ls37{letter-spacing:1.620000px;}
.ls3d{letter-spacing:1.620600px;}
.ls4a{letter-spacing:2.330640px;}
.ls50{letter-spacing:2.363760px;}
.ls51{letter-spacing:3.039120px;}
.ls2e{letter-spacing:3.047760px;}
.ls36{letter-spacing:3.060000px;}
.ls4d{letter-spacing:3.227040px;}
.ls1a{letter-spacing:3.764880px;}
.ls44{letter-spacing:3.780600px;}
.ls1e{letter-spacing:4.482000px;}
.ls45{letter-spacing:4.500000px;}
.ls2f{letter-spacing:5.916240px;}
.ls3a{letter-spacing:5.940000px;}
.ls21{letter-spacing:6.633360px;}
.ls39{letter-spacing:6.660600px;}
.ls49{letter-spacing:7.350480px;}
.ls38{letter-spacing:8.280000px;}
.ls1d{letter-spacing:8.306640px;}
.ls4e{letter-spacing:10.995840px;}
.ls20{letter-spacing:11.115360px;}
.ls53{letter-spacing:13.844880px;}
.ls22{letter-spacing:16.732800px;}
.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;}
}
.ws8{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.064000px;}
.wsb{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.984000px;}
.ws33{word-spacing:-15.298560px;}
.ws37{word-spacing:-15.238800px;}
.ws35{word-spacing:-15.119280px;}
.ws97{word-spacing:-15.059520px;}
.ws1{word-spacing:-15.012000px;}
.ws7f{word-spacing:-14.999760px;}
.ws34{word-spacing:-14.940000px;}
.ws36{word-spacing:-14.880240px;}
.ws6c{word-spacing:-14.581440px;}
.ws5{word-spacing:-14.526000px;}
.ws6b{word-spacing:-14.521680px;}
.ws10{word-spacing:-13.878000px;}
.ws11{word-spacing:-13.608000px;}
.ws4{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.122000px;}
.ws30{word-spacing:-12.445920px;}
.ws9{word-spacing:-12.349440px;}
.wse{word-spacing:-12.204720px;}
.ws7{word-spacing:-12.060000px;}
.ws6a{word-spacing:-12.000000px;}
.ws98{word-spacing:-11.818800px;}
.ws9a{word-spacing:-11.770560px;}
.ws6{word-spacing:-11.722320px;}
.ws99{word-spacing:-11.625840px;}
.wsf{word-spacing:-11.529360px;}
.ws32{word-spacing:-11.046960px;}
.wsc{word-spacing:-10.440000px;}
.wsd{word-spacing:-7.560000px;}
.ws84{word-spacing:-4.123440px;}
.ws4a{word-spacing:-3.705120px;}
.ws47{word-spacing:-3.406320px;}
.ws4b{word-spacing:-3.346560px;}
.ws9e{word-spacing:-3.047760px;}
.ws5a{word-spacing:-2.689200px;}
.ws5b{word-spacing:-2.569680px;}
.wsb4{word-spacing:-2.363760px;}
.ws82{word-spacing:-2.151360px;}
.wsb3{word-spacing:-2.122560px;}
.ws29{word-spacing:-1.998000px;}
.ws4d{word-spacing:-1.972080px;}
.ws91{word-spacing:-1.852560px;}
.ws79{word-spacing:-1.553760px;}
.ws95{word-spacing:-1.314720px;}
.ws72{word-spacing:-1.254960px;}
.ws90{word-spacing:-1.075680px;}
.ws94{word-spacing:-0.896400px;}
.ws41{word-spacing:-0.836640px;}
.ws16{word-spacing:-0.820080px;}
.ws3b{word-spacing:-0.771840px;}
.ws93{word-spacing:-0.675360px;}
.ws21{word-spacing:-0.648000px;}
.ws61{word-spacing:-0.597600px;}
.ws22{word-spacing:-0.540000px;}
.ws40{word-spacing:-0.537840px;}
.ws3c{word-spacing:-0.530640px;}
.ws5f{word-spacing:-0.418320px;}
.ws1b{word-spacing:-0.408960px;}
.wsb7{word-spacing:-0.385920px;}
.ws1d{word-spacing:-0.362880px;}
.ws28{word-spacing:-0.324000px;}
.ws58{word-spacing:-0.298800px;}
.ws6d{word-spacing:-0.289440px;}
.ws2e{word-spacing:-0.241200px;}
.ws3a{word-spacing:-0.192960px;}
.ws4c{word-spacing:-0.179280px;}
.ws15{word-spacing:-0.162000px;}
.ws1e{word-spacing:-0.144720px;}
.ws9d{word-spacing:-0.119520px;}
.ws0{word-spacing:-0.099000px;}
.ws8e{word-spacing:-0.096480px;}
.ws8f{word-spacing:-0.059760px;}
.ws31{word-spacing:-0.048240px;}
.ws13{word-spacing:0.000000px;}
.ws60{word-spacing:0.059760px;}
.ws14{word-spacing:0.108000px;}
.ws4e{word-spacing:0.119520px;}
.ws39{word-spacing:0.144720px;}
.ws1f{word-spacing:0.162000px;}
.ws3d{word-spacing:0.179280px;}
.ws54{word-spacing:0.239040px;}
.wsb6{word-spacing:0.241200px;}
.ws19{word-spacing:0.288000px;}
.ws81{word-spacing:0.298800px;}
.ws1a{word-spacing:0.306720px;}
.ws27{word-spacing:0.324000px;}
.ws42{word-spacing:0.358560px;}
.ws8d{word-spacing:0.385920px;}
.ws2f{word-spacing:0.434160px;}
.ws44{word-spacing:0.478080px;}
.ws17{word-spacing:0.482400px;}
.ws6e{word-spacing:0.530640px;}
.ws56{word-spacing:0.537840px;}
.ws77{word-spacing:0.597600px;}
.wsa0{word-spacing:0.675360px;}
.ws1c{word-spacing:0.699840px;}
.wsa4{word-spacing:0.723600px;}
.wsa9{word-spacing:0.771840px;}
.ws7d{word-spacing:0.776880px;}
.ws3e{word-spacing:0.836640px;}
.ws20{word-spacing:0.864000px;}
.ws49{word-spacing:0.956160px;}
.ws48{word-spacing:1.075680px;}
.ws18{word-spacing:1.109520px;}
.ws9f{word-spacing:1.157760px;}
.ws80{word-spacing:1.254960px;}
.wsa7{word-spacing:1.302480px;}
.ws87{word-spacing:1.314720px;}
.ws92{word-spacing:1.374480px;}
.ws7e{word-spacing:1.434240px;}
.wsa1{word-spacing:1.447200px;}
.ws78{word-spacing:1.494000px;}
.ws3f{word-spacing:1.553760px;}
.ws38{word-spacing:1.776000px;}
.ws9c{word-spacing:1.972080px;}
.wsa3{word-spacing:2.026080px;}
.wsa6{word-spacing:2.170800px;}
.ws23{word-spacing:2.268000px;}
.ws4f{word-spacing:2.270880px;}
.wsb5{word-spacing:2.315520px;}
.ws50{word-spacing:2.390400px;}
.wsa2{word-spacing:2.653200px;}
.ws70{word-spacing:2.689200px;}
.wsab{word-spacing:2.701440px;}
.wsac{word-spacing:2.749680px;}
.wsa5{word-spacing:2.846160px;}
.ws9b{word-spacing:2.868480px;}
.ws6f{word-spacing:2.988000px;}
.ws2d{word-spacing:3.024000px;}
.wsa8{word-spacing:3.425040px;}
.wsaa{word-spacing:3.521520px;}
.ws46{word-spacing:3.645360px;}
.ws43{word-spacing:3.705120px;}
.ws2b{word-spacing:3.726000px;}
.ws8c{word-spacing:3.764880px;}
.ws45{word-spacing:3.824640px;}
.wsad{word-spacing:4.052160px;}
.ws96{word-spacing:4.123440px;}
.ws55{word-spacing:4.422240px;}
.ws8b{word-spacing:4.840560px;}
.ws7c{word-spacing:5.079600px;}
.ws76{word-spacing:5.139360px;}
.ws25{word-spacing:5.184000px;}
.ws7a{word-spacing:5.557680px;}
.ws62{word-spacing:5.856480px;}
.ws24{word-spacing:5.886000px;}
.ws75{word-spacing:5.976000px;}
.ws2c{word-spacing:6.102000px;}
.wsb2{word-spacing:6.319440px;}
.ws74{word-spacing:6.513840px;}
.ws64{word-spacing:6.573600px;}
.ws63{word-spacing:6.693120px;}
.wsb1{word-spacing:6.946560px;}
.wsb0{word-spacing:7.091280px;}
.wsaf{word-spacing:7.187760px;}
.ws69{word-spacing:7.290720px;}
.wsae{word-spacing:7.573680px;}
.ws51{word-spacing:7.768800px;}
.ws59{word-spacing:8.007840px;}
.ws53{word-spacing:8.067600px;}
.ws52{word-spacing:8.246880px;}
.ws26{word-spacing:8.748000px;}
.ws83{word-spacing:8.784720px;}
.ws89{word-spacing:9.262800px;}
.ws73{word-spacing:9.501840px;}
.ws88{word-spacing:9.860400px;}
.ws5d{word-spacing:10.039680px;}
.ws71{word-spacing:10.218960px;}
.ws5e{word-spacing:10.697040px;}
.ws5c{word-spacing:10.936080px;}
.ws8a{word-spacing:11.653200px;}
.ws7b{word-spacing:12.370320px;}
.wsb8{word-spacing:13.651920px;}
.ws57{word-spacing:13.804560px;}
.ws66{word-spacing:16.673040px;}
.ws65{word-spacing:18.107280px;}
.ws86{word-spacing:20.975760px;}
.ws85{word-spacing:21.692880px;}
.ws68{word-spacing:31.075200px;}
.ws2a{word-spacing:35.424000px;}
.ws67{word-spacing:52.708320px;}
.ws3{word-spacing:1361.383800px;}
._3{margin-left:-7.462200px;}
._2{margin-left:-6.211200px;}
._1{margin-left:-3.510600px;}
._0{margin-left:-1.791900px;}
._5{width:1.518300px;}
._4{width:2.931300px;}
._8{width:4.420260px;}
._c{width:6.155280px;}
._e{width:7.600680px;}
._9{width:8.724060px;}
._a{width:10.838880px;}
._b{width:12.407760px;}
._d{width:17.650620px;}
._f{width:30.344040px;}
._11{width:497.287200px;}
._7{width:499.068600px;}
._10{width:802.702200px;}
._6{width:850.701600px;}
.fc5{color:transparent;}
.fc4{color:rgb(49,41,42);}
.fc3{color:rgb(0,57,255);}
.fc2{color:rgb(0,158,227);}
.fc1{color:rgb(0,150,189);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:30.240000px;}
.fsb{font-size:41.760000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs0{font-size:99.000000px;}
.fs7{font-size:102.240000px;}
.fs4{font-size:108.000000px;}
.yd2{bottom:-686.381850px;}
.y183{bottom:-686.381700px;}
.yd1{bottom:-671.441850px;}
.y182{bottom:-671.441700px;}
.yd0{bottom:-656.141850px;}
.y181{bottom:-656.141700px;}
.ycf{bottom:-624.281850px;}
.y180{bottom:-624.281700px;}
.yce{bottom:-594.761850px;}
.y17f{bottom:-594.761700px;}
.ycd{bottom:-578.201850px;}
.y17e{bottom:-578.201700px;}
.ycc{bottom:-561.641850px;}
.y17d{bottom:-561.641700px;}
.ycb{bottom:-545.261850px;}
.y17c{bottom:-545.261700px;}
.yca{bottom:-528.701850px;}
.y17b{bottom:-528.701700px;}
.yac{bottom:-513.113850px;}
.y161{bottom:-513.113700px;}
.yc9{bottom:-512.141850px;}
.y17a{bottom:-512.141700px;}
.yab{bottom:-498.173850px;}
.y160{bottom:-498.173700px;}
.yc8{bottom:-495.761850px;}
.y179{bottom:-495.761700px;}
.yaa{bottom:-482.873850px;}
.y15f{bottom:-482.873700px;}
.yc7{bottom:-479.201850px;}
.y178{bottom:-479.201700px;}
.yc6{bottom:-462.596850px;}
.y177{bottom:-462.596700px;}
.ya9{bottom:-451.013850px;}
.y15e{bottom:-451.013700px;}
.yc5{bottom:-446.216850px;}
.y176{bottom:-446.216700px;}
.yc4{bottom:-429.656850px;}
.y175{bottom:-429.656700px;}
.ya8{bottom:-421.493850px;}
.y15d{bottom:-421.493700px;}
.yc3{bottom:-413.096850px;}
.y174{bottom:-413.096700px;}
.ya7{bottom:-404.933850px;}
.y15c{bottom:-404.933700px;}
.yc2{bottom:-396.716850px;}
.y173{bottom:-396.716700px;}
.ya6{bottom:-388.373850px;}
.y15b{bottom:-388.373700px;}
.yc1{bottom:-380.156850px;}
.y172{bottom:-380.156700px;}
.ya5{bottom:-371.993850px;}
.y15a{bottom:-371.993700px;}
.yc0{bottom:-363.596850px;}
.y171{bottom:-363.596700px;}
.ya4{bottom:-355.433850px;}
.y159{bottom:-355.433700px;}
.ybf{bottom:-347.216850px;}
.y170{bottom:-347.216700px;}
.ya3{bottom:-338.873850px;}
.y158{bottom:-338.873700px;}
.ybe{bottom:-330.656850px;}
.y16f{bottom:-330.656700px;}
.ya2{bottom:-322.493850px;}
.y157{bottom:-322.493700px;}
.ybd{bottom:-314.096850px;}
.y16e{bottom:-314.096700px;}
.ya1{bottom:-305.933850px;}
.y156{bottom:-305.933700px;}
.ya0{bottom:-289.328850px;}
.y155{bottom:-289.328700px;}
.ybc{bottom:-281.156850px;}
.y16d{bottom:-281.156700px;}
.y9f{bottom:-272.948850px;}
.y154{bottom:-272.948700px;}
.y9e{bottom:-256.388850px;}
.y153{bottom:-256.388700px;}
.ybb{bottom:-249.266850px;}
.y16c{bottom:-249.266700px;}
.y9d{bottom:-239.828850px;}
.y152{bottom:-239.828700px;}
.yba{bottom:-234.146850px;}
.y16b{bottom:-234.146700px;}
.y9c{bottom:-223.448850px;}
.y151{bottom:-223.448700px;}
.yb9{bottom:-214.706850px;}
.y16a{bottom:-214.706700px;}
.y9b{bottom:-206.888850px;}
.y150{bottom:-206.888700px;}
.yb8{bottom:-199.766850px;}
.y169{bottom:-199.766700px;}
.y9a{bottom:-190.328850px;}
.y14f{bottom:-190.328700px;}
.y99{bottom:-173.948850px;}
.y14e{bottom:-173.948700px;}
.yb7{bottom:-164.126850px;}
.y168{bottom:-164.126700px;}
.y98{bottom:-157.388850px;}
.y14d{bottom:-157.388700px;}
.yb6{bottom:-141.626850px;}
.y167{bottom:-141.626700px;}
.y97{bottom:-140.828850px;}
.y14c{bottom:-140.828700px;}
.y96{bottom:-107.888850px;}
.y14b{bottom:-107.888700px;}
.yb5{bottom:-99.326850px;}
.y166{bottom:-99.326700px;}
.y86{bottom:-87.916350px;}
.y13f{bottom:-87.916200px;}
.y95{bottom:-75.998850px;}
.y14a{bottom:-75.998700px;}
.y85{bottom:-72.976350px;}
.y13e{bottom:-72.976200px;}
.yb4{bottom:-69.266850px;}
.y165{bottom:-69.266700px;}
.y94{bottom:-60.878850px;}
.y149{bottom:-60.878700px;}
.y5e{bottom:-60.184350px;}
.y11d{bottom:-60.184200px;}
.y84{bottom:-57.676350px;}
.y13d{bottom:-57.676200px;}
.y5d{bottom:-45.244350px;}
.y11c{bottom:-45.244200px;}
.y93{bottom:-41.438850px;}
.y148{bottom:-41.438700px;}
.yb3{bottom:-39.341850px;}
.y164{bottom:-39.341700px;}
.y9{bottom:-31.889700px;}
.y5c{bottom:-29.944350px;}
.y11b{bottom:-29.944200px;}
.y92{bottom:-26.498850px;}
.y147{bottom:-26.498700px;}
.y83{bottom:-25.816350px;}
.y13c{bottom:-25.816200px;}
.y0{bottom:0.000000px;}
.y13{bottom:0.000150px;}
.yd7{bottom:0.000300px;}
.y297{bottom:0.898800px;}
.y5b{bottom:1.915650px;}
.y11a{bottom:1.915800px;}
.y14{bottom:2.520150px;}
.yfa{bottom:2.520300px;}
.y12{bottom:3.060150px;}
.yd6{bottom:3.060300px;}
.y29a{bottom:3.240300px;}
.y82{bottom:3.703650px;}
.y13b{bottom:3.703800px;}
.yf{bottom:3.780150px;}
.yd4{bottom:3.780300px;}
.y298{bottom:7.198800px;}
.y163{bottom:8.718300px;}
.y146{bottom:9.141300px;}
.yf9{bottom:10.594800px;}
.y29f{bottom:11.815500px;}
.y13a{bottom:20.263800px;}
.yf8{bottom:25.534800px;}
.y5a{bottom:31.435650px;}
.y119{bottom:31.435800px;}
.y145{bottom:31.641300px;}
.y139{bottom:36.823800px;}
.y162{bottom:38.778300px;}
.y36{bottom:40.834650px;}
.yf7{bottom:40.834800px;}
.y11{bottom:47.010150px;}
.yd5{bottom:47.010300px;}
.y59{bottom:47.995650px;}
.y118{bottom:47.995800px;}
.y138{bottom:53.203800px;}
.y184{bottom:56.215500px;}
.y58{bottom:64.555650px;}
.y117{bottom:64.555800px;}
.y8{bottom:68.015850px;}
.y137{bottom:69.763800px;}
.y35{bottom:72.694650px;}
.yf6{bottom:72.694800px;}
.y144{bottom:73.941300px;}
.y57{bottom:80.935650px;}
.y116{bottom:80.935800px;}
.y7{bottom:81.515850px;}
.yb0{bottom:83.598300px;}
.y136{bottom:86.323800px;}
.y6{bottom:95.015850px;}
.y56{bottom:97.495650px;}
.y115{bottom:97.495800px;}
.y34{bottom:102.214650px;}
.yf5{bottom:102.214800px;}
.y135{bottom:102.703800px;}
.y143{bottom:104.001300px;}
.y5{bottom:108.515850px;}
.y55{bottom:114.055650px;}
.y114{bottom:114.055800px;}
.y33{bottom:118.774650px;}
.yf4{bottom:118.774800px;}
.y134{bottom:119.263800px;}
.y4{bottom:122.015850px;}
.y54{bottom:130.435650px;}
.y113{bottom:130.435800px;}
.y8d{bottom:133.926150px;}
.y142{bottom:133.926300px;}
.y32{bottom:135.334650px;}
.yf3{bottom:135.334800px;}
.y133{bottom:135.868800px;}
.y15{bottom:139.011000px;}
.y53{bottom:146.995650px;}
.y112{bottom:146.995800px;}
.y38{bottom:149.603310px;}
.y31{bottom:151.714650px;}
.yf2{bottom:151.714800px;}
.y132{bottom:152.248800px;}
.y1e1{bottom:158.922810px;}
.y20f{bottom:159.025800px;}
.y2ff{bottom:160.464840px;}
.y52{bottom:163.600650px;}
.y111{bottom:163.600800px;}
.y2cb{bottom:163.650300px;}
.y233{bottom:164.419140px;}
.y37{bottom:164.545650px;}
.y30{bottom:168.274650px;}
.yf1{bottom:168.274800px;}
.y131{bottom:168.808800px;}
.y29e{bottom:171.085800px;}
.y2fe{bottom:175.045380px;}
.y2b6{bottom:175.441500px;}
.y1e0{bottom:177.104790px;}
.y20e{bottom:177.205800px;}
.y51{bottom:179.980650px;}
.y110{bottom:179.980800px;}
.y2ca{bottom:180.930300px;}
.y8c{bottom:181.986150px;}
.y141{bottom:181.986300px;}
.y232{bottom:182.601120px;}
.y29d{bottom:183.325800px;}
.y2f{bottom:184.834650px;}
.yf0{bottom:184.834800px;}
.y130{bottom:185.368800px;}
.y3b{bottom:185.790000px;}
.y2fd{bottom:189.445020px;}
.y25d{bottom:192.071220px;}
.y285{bottom:192.145800px;}
.y2b5{bottom:192.727080px;}
.y1df{bottom:195.286770px;}
.y20d{bottom:195.385800px;}
.y50{bottom:196.540650px;}
.y10f{bottom:196.540800px;}
.y2c9{bottom:198.210300px;}
.y231{bottom:200.603820px;}
.y2e{bottom:201.214650px;}
.yef{bottom:201.214800px;}
.y12f{bottom:201.748800px;}
.y2fc{bottom:204.025560px;}
.y2b4{bottom:210.012660px;}
.y25c{bottom:210.253200px;}
.y284{bottom:210.325800px;}
.y8b{bottom:212.046150px;}
.y140{bottom:212.046300px;}
.y4f{bottom:213.100650px;}
.y10e{bottom:213.100800px;}
.y1de{bottom:213.289470px;}
.y20c{bottom:213.385800px;}
.y2c8{bottom:215.310300px;}
.yd{bottom:215.497800px;}
.y2d{bottom:217.774650px;}
.yee{bottom:217.774800px;}
.y12e{bottom:218.308800px;}
.y2fb{bottom:218.425200px;}
.y230{bottom:218.785800px;}
.y2b3{bottom:227.118960px;}
.y25b{bottom:228.435180px;}
.y283{bottom:228.505800px;}
.y4e{bottom:229.480650px;}
.y10d{bottom:229.480800px;}
.yc{bottom:230.497800px;}
.y1dd{bottom:231.471450px;}
.y20b{bottom:231.565800px;}
.y2fa{bottom:233.005740px;}
.y2c{bottom:234.379650px;}
.yed{bottom:234.379800px;}
.y1b1{bottom:234.730320px;}
.y12d{bottom:234.868800px;}
.y22f{bottom:235.345800px;}
.yb{bottom:245.497800px;}
.y4d{bottom:246.040650px;}
.y10c{bottom:246.040800px;}
.y25a{bottom:246.437880px;}
.y282{bottom:246.505800px;}
.y2f9{bottom:247.405380px;}
.y1dc{bottom:249.474150px;}
.y20a{bottom:249.565800px;}
.y2b{bottom:250.759650px;}
.yec{bottom:250.759800px;}
.y2c7{bottom:250.950300px;}
.y12c{bottom:251.248800px;}
.y1b0{bottom:252.912300px;}
.y8a{bottom:256.866300px;}
.ya{bottom:260.497800px;}
.y2f8{bottom:261.985920px;}
.y4c{bottom:262.600650px;}
.y10b{bottom:262.600800px;}
.y2b2{bottom:262.765800px;}
.y259{bottom:264.619860px;}
.y281{bottom:264.685800px;}
.y2a{bottom:267.319650px;}
.yeb{bottom:267.319800px;}
.y1db{bottom:267.656130px;}
.y209{bottom:267.745800px;}
.y12b{bottom:267.808800px;}
.y1af{bottom:270.915000px;}
.y2f7{bottom:276.385560px;}
.y4b{bottom:278.980650px;}
.y10a{bottom:278.980800px;}
.y258{bottom:282.622560px;}
.y280{bottom:282.685800px;}
.y61{bottom:283.122000px;}
.y29{bottom:283.879650px;}
.yea{bottom:283.879800px;}
.y12a{bottom:284.368800px;}
.y1da{bottom:285.838110px;}
.y2c6{bottom:285.870300px;}
.y208{bottom:285.925800px;}
.y1ae{bottom:289.096980px;}
.y2f6{bottom:290.966100px;}
.y4a{bottom:295.540650px;}
.y109{bottom:295.540800px;}
.y2c5{bottom:297.210300px;}
.y2b1{bottom:297.689400px;}
.y28{bottom:300.259650px;}
.ye9{bottom:300.259800px;}
.y257{bottom:300.804540px;}
.y27f{bottom:300.865800px;}
.y81{bottom:303.363150px;}
.y1d9{bottom:303.840810px;}
.y207{bottom:303.925800px;}
.y2f5{bottom:305.365740px;}
.y1ad{bottom:307.099680px;}
.y2b0{bottom:309.025800px;}
.y49{bottom:312.100650px;}
.y108{bottom:312.100800px;}
.y27{bottom:316.819650px;}
.ye8{bottom:316.819800px;}
.y129{bottom:317.308800px;}
.y256{bottom:318.986520px;}
.y27e{bottom:319.045800px;}
.y80{bottom:319.927650px;}
.y2f4{bottom:319.946280px;}
.y1d8{bottom:322.022790px;}
.y206{bottom:322.105800px;}
.y1ac{bottom:325.281660px;}
.y26{bottom:333.379650px;}
.ye7{bottom:333.379800px;}
.y2f3{bottom:334.345920px;}
.y7f{bottom:336.303150px;}
.y255{bottom:336.989220px;}
.y27d{bottom:337.045800px;}
.y1d7{bottom:340.204770px;}
.y205{bottom:340.285800px;}
.y1ab{bottom:343.463640px;}
.y48{bottom:345.040650px;}
.y107{bottom:345.040800px;}
.y2f2{bottom:348.926460px;}
.y128{bottom:349.198800px;}
.y25{bottom:349.759650px;}
.ye6{bottom:349.759800px;}
.y7e{bottom:352.867650px;}
.y254{bottom:355.171200px;}
.y27c{bottom:355.225800px;}
.y1d6{bottom:358.207470px;}
.y204{bottom:358.285800px;}
.y1aa{bottom:361.466340px;}
.y2f1{bottom:363.326100px;}
.y127{bottom:364.318800px;}
.y24{bottom:366.319650px;}
.ye5{bottom:366.319800px;}
.y7d{bottom:369.432150px;}
.y253{bottom:373.218720px;}
.y27b{bottom:373.270800px;}
.y1d5{bottom:376.434270px;}
.y203{bottom:376.510800px;}
.y47{bottom:376.930650px;}
.y106{bottom:376.930800px;}
.y2f0{bottom:377.954880px;}
.y1a9{bottom:379.648320px;}
.y23{bottom:382.879650px;}
.ye4{bottom:382.879800px;}
.y126{bottom:383.758800px;}
.y7c{bottom:385.807650px;}
.y252{bottom:391.400700px;}
.y27a{bottom:391.450800px;}
.y46{bottom:392.050650px;}
.y105{bottom:392.050800px;}
.y2ef{bottom:392.354520px;}
.y1d4{bottom:394.436970px;}
.y202{bottom:394.510800px;}
.y1a8{bottom:397.830300px;}
.y125{bottom:398.698800px;}
.y6b{bottom:401.038650px;}
.y7b{bottom:402.372150px;}
.y2ee{bottom:406.935060px;}
.y251{bottom:409.582680px;}
.y279{bottom:409.630800px;}
.y45{bottom:411.490650px;}
.y104{bottom:411.490800px;}
.y1d3{bottom:412.618950px;}
.y201{bottom:412.690800px;}
.y22{bottom:415.819650px;}
.ye3{bottom:415.819800px;}
.y1a7{bottom:415.833000px;}
.y7a{bottom:418.977150px;}
.y2ed{bottom:421.334700px;}
.y44{bottom:426.430650px;}
.y103{bottom:426.430800px;}
.y1d2{bottom:430.800930px;}
.y200{bottom:430.870800px;}
.y22e{bottom:431.339640px;}
.y1a6{bottom:434.059800px;}
.y69{bottom:434.338650px;}
.y124{bottom:434.338800px;}
.y79{bottom:435.352650px;}
.y2ec{bottom:435.915240px;}
.y29c{bottom:441.134760px;}
.y250{bottom:445.229520px;}
.y278{bottom:445.270800px;}
.y21{bottom:447.709650px;}
.ye2{bottom:447.709800px;}
.y1d1{bottom:448.803630px;}
.y1ff{bottom:448.870800px;}
.y22d{bottom:449.521620px;}
.y2eb{bottom:450.314880px;}
.y78{bottom:451.917150px;}
.y1a5{bottom:452.062500px;}
.y29b{bottom:454.810800px;}
.y68{bottom:456.838650px;}
.y123{bottom:456.838800px;}
.y43{bottom:462.070650px;}
.y102{bottom:462.070800px;}
.y20{bottom:462.829650px;}
.ye1{bottom:462.829800px;}
.y2ea{bottom:464.895420px;}
.y299{bottom:466.150500px;}
.y1d0{bottom:466.985610px;}
.y1fe{bottom:467.050800px;}
.y22c{bottom:467.524320px;}
.y77{bottom:468.481650px;}
.y1a4{bottom:470.244480px;}
.y2e9{bottom:479.295060px;}
.y296{bottom:480.552000px;}
.y24f{bottom:481.593480px;}
.y277{bottom:481.630800px;}
.y1f{bottom:482.269650px;}
.ye0{bottom:482.269800px;}
.y42{bottom:484.570650px;}
.y101{bottom:484.570800px;}
.y76{bottom:484.857150px;}
.y1cf{bottom:484.988310px;}
.y1fd{bottom:485.050800px;}
.y22b{bottom:485.706300px;}
.y1a3{bottom:488.426460px;}
.y2e8{bottom:493.875600px;}
.y1e{bottom:497.209650px;}
.ydf{bottom:497.209800px;}
.y67{bottom:499.138650px;}
.y122{bottom:499.138800px;}
.y24e{bottom:499.775460px;}
.y276{bottom:499.810800px;}
.y75{bottom:501.421650px;}
.y1ce{bottom:503.170290px;}
.y1fc{bottom:503.230800px;}
.y22a{bottom:503.888280px;}
.y1a2{bottom:506.429160px;}
.y2e7{bottom:508.275240px;}
.y24d{bottom:517.957440px;}
.y74{bottom:517.986150px;}
.y275{bottom:517.990800px;}
.y1cd{bottom:521.352270px;}
.y1fb{bottom:521.410800px;}
.y229{bottom:521.890980px;}
.y2e6{bottom:522.855780px;}
.y1a1{bottom:524.611140px;}
.y41{bottom:526.870650px;}
.y100{bottom:526.870800px;}
.y66{bottom:529.198650px;}
.y121{bottom:529.198800px;}
.y2c4{bottom:529.275300px;}
.y1d{bottom:532.849650px;}
.yde{bottom:532.849800px;}
.y73{bottom:534.361650px;}
.y24c{bottom:535.960140px;}
.y274{bottom:535.990800px;}
.y2e5{bottom:537.255420px;}
.y1cc{bottom:539.354970px;}
.y1fa{bottom:539.410800px;}
.y228{bottom:540.072960px;}
.y2c3{bottom:540.615300px;}
.y2af{bottom:541.090800px;}
.y1a0{bottom:542.613840px;}
.y72{bottom:550.926150px;}
.y2e4{bottom:551.835960px;}
.y2ae{bottom:552.430800px;}
.y24b{bottom:554.142120px;}
.y273{bottom:554.170800px;}
.y1c{bottom:555.349650px;}
.ydd{bottom:555.349800px;}
.y40{bottom:556.930650px;}
.yff{bottom:556.930800px;}
.y1cb{bottom:557.536950px;}
.y1f9{bottom:557.590800px;}
.y227{bottom:558.075660px;}
.y65{bottom:559.123650px;}
.y120{bottom:559.123800px;}
.y19f{bottom:560.795820px;}
.y2e3{bottom:566.235600px;}
.y71{bottom:567.490650px;}
.y24a{bottom:572.144820px;}
.y272{bottom:572.170800px;}
.y1ca{bottom:575.718930px;}
.y1f8{bottom:575.770800px;}
.y226{bottom:576.257640px;}
.y19e{bottom:578.977800px;}
.y2e2{bottom:580.840260px;}
.y3f{bottom:586.855650px;}
.yfe{bottom:586.855800px;}
.y249{bottom:590.356680px;}
.y271{bottom:590.380800px;}
.y1c9{bottom:593.751510px;}
.y1f7{bottom:593.800800px;}
.y225{bottom:594.469500px;}
.y2e1{bottom:595.239900px;}
.y19d{bottom:596.980500px;}
.y1b{bottom:597.649650px;}
.ydc{bottom:597.649800px;}
.y70{bottom:600.430650px;}
.y64{bottom:607.183650px;}
.y11f{bottom:607.183800px;}
.y248{bottom:608.538660px;}
.y270{bottom:608.560800px;}
.y2e0{bottom:609.820440px;}
.y1c8{bottom:611.933490px;}
.y1f6{bottom:611.980800px;}
.y224{bottom:612.472200px;}
.y19c{bottom:615.162480px;}
.y2df{bottom:624.220080px;}
.y247{bottom:626.541360px;}
.y26f{bottom:626.560800px;}
.y1a{bottom:627.709650px;}
.ydb{bottom:627.709800px;}
.y1c7{bottom:629.936190px;}
.y1f5{bottom:629.980800px;}
.y223{bottom:630.654180px;}
.y6f{bottom:632.317410px;}
.y19b{bottom:633.344460px;}
.y3e{bottom:634.915650px;}
.yfd{bottom:634.915800px;}
.y63{bottom:637.243650px;}
.y11e{bottom:637.243800px;}
.y2de{bottom:638.800620px;}
.y246{bottom:644.723340px;}
.y26e{bottom:644.740800px;}
.y6e{bottom:647.438310px;}
.y1c6{bottom:648.118170px;}
.y1f4{bottom:648.160800px;}
.y222{bottom:648.836160px;}
.y19a{bottom:651.377040px;}
.y2dd{bottom:653.200260px;}
.y19{bottom:657.634650px;}
.yda{bottom:657.634800px;}
.y3d{bottom:664.975650px;}
.yfc{bottom:664.975800px;}
.y1c5{bottom:666.300150px;}
.y1f3{bottom:666.340800px;}
.y245{bottom:666.505860px;}
.y26d{bottom:666.520800px;}
.y221{bottom:666.838860px;}
.y6d{bottom:666.880650px;}
.y2dc{bottom:667.780800px;}
.y199{bottom:669.559020px;}
.y6c{bottom:677.320650px;}
.y6a{bottom:681.820650px;}
.y62{bottom:682.063800px;}
.y1c4{bottom:684.302850px;}
.y1f2{bottom:684.340800px;}
.y220{bottom:685.020840px;}
.y198{bottom:687.561720px;}
.y244{bottom:693.502440px;}
.y26c{bottom:693.520800px;}
.y89{bottom:696.319500px;}
.y2db{bottom:697.048260px;}
.y1c3{bottom:702.484830px;}
.y1f1{bottom:702.520800px;}
.y21f{bottom:703.023540px;}
.y91{bottom:705.468570px;}
.y18{bottom:705.694650px;}
.y197{bottom:705.743700px;}
.y3c{bottom:709.795650px;}
.yfb{bottom:709.795950px;}
.y243{bottom:711.684420px;}
.y26b{bottom:711.700800px;}
.y295{bottom:715.033860px;}
.y1c2{bottom:720.666810px;}
.y1f0{bottom:720.700800px;}
.y21e{bottom:721.205520px;}
.y196{bottom:723.925680px;}
.y90{bottom:727.960650px;}
.y242{bottom:729.866400px;}
.y26a{bottom:729.880800px;}
.y294{bottom:732.319440px;}
.y17{bottom:735.754650px;}
.yd9{bottom:735.754800px;}
.y1c1{bottom:738.669510px;}
.y1ef{bottom:738.700800px;}
.y21d{bottom:739.387500px;}
.y195{bottom:741.928380px;}
.y241{bottom:747.869100px;}
.y269{bottom:747.880800px;}
.y293{bottom:749.605020px;}
.y2da{bottom:749.965740px;}
.y1c0{bottom:756.851490px;}
.y1ee{bottom:756.880800px;}
.y21c{bottom:757.390200px;}
.y194{bottom:760.110360px;}
.y240{bottom:766.051080px;}
.y268{bottom:766.060800px;}
.y292{bottom:766.890600px;}
.y2d9{bottom:767.968440px;}
.y8f{bottom:770.262090px;}
.y1bf{bottom:774.854190px;}
.y1ed{bottom:774.880800px;}
.y21b{bottom:775.572180px;}
.y193{bottom:778.113060px;}
.y16{bottom:780.574650px;}
.yd8{bottom:780.574800px;}
.y2c2{bottom:781.665300px;}
.y291{bottom:783.996900px;}
.y23f{bottom:784.053780px;}
.y267{bottom:784.060800px;}
.y2d8{bottom:785.612580px;}
.y1be{bottom:793.080990px;}
.y1ec{bottom:793.105800px;}
.y2ad{bottom:793.456320px;}
.y21a{bottom:793.619700px;}
.y192{bottom:796.295040px;}
.y2c1{bottom:799.890300px;}
.y8e{bottom:800.320650px;}
.y290{bottom:801.327300px;}
.y2d7{bottom:802.942980px;}
.y23e{bottom:805.881120px;}
.y266{bottom:805.885800px;}
.y1bd{bottom:811.262970px;}
.y1eb{bottom:811.285800px;}
.y2ac{bottom:811.683120px;}
.y219{bottom:811.801680px;}
.y191{bottom:814.477020px;}
.y2c0{bottom:818.070300px;}
.y28f{bottom:818.612880px;}
.y2d6{bottom:820.049280px;}
.y1bc{bottom:829.265670px;}
.y1ea{bottom:829.285800px;}
.y2ab{bottom:829.865100px;}
.y218{bottom:829.983660px;}
.y190{bottom:832.479720px;}
.y23d{bottom:833.056980px;}
.y265{bottom:833.065800px;}
.y28e{bottom:835.898460px;}
.y2bf{bottom:836.070300px;}
.y2d5{bottom:837.334860px;}
.y1bb{bottom:847.447650px;}
.y1e9{bottom:847.465800px;}
.y2aa{bottom:847.867800px;}
.y217{bottom:847.986360px;}
.y18f{bottom:850.661700px;}
.y23c{bottom:851.059680px;}
.y264{bottom:851.065800px;}
.y28d{bottom:853.184040px;}
.y2be{bottom:854.250300px;}
.y2d4{bottom:854.620440px;}
.yaf{bottom:862.087500px;}
.y1ba{bottom:865.450350px;}
.y1e8{bottom:865.465800px;}
.y2a9{bottom:866.049780px;}
.y216{bottom:866.168340px;}
.y18e{bottom:868.888500px;}
.y23b{bottom:869.241660px;}
.y263{bottom:869.245800px;}
.y28c{bottom:870.290340px;}
.yb2{bottom:870.805650px;}
.y2d3{bottom:871.906020px;}
.y2bd{bottom:872.250300px;}
.y1b9{bottom:883.632330px;}
.y1e7{bottom:883.645800px;}
.y2a8{bottom:884.052480px;}
.y18d{bottom:886.891200px;}
.y28b{bottom:887.575920px;}
.y2d2{bottom:889.191600px;}
.y2bc{bottom:890.430300px;}
.y23a{bottom:891.920580px;}
.y262{bottom:891.925800px;}
.yb1{bottom:900.865650px;}
.y1b8{bottom:901.814310px;}
.y215{bottom:901.815180px;}
.y1e6{bottom:901.825800px;}
.y2a7{bottom:902.234460px;}
.y28a{bottom:904.861500px;}
.y18c{bottom:905.073180px;}
.y2d1{bottom:906.297900px;}
.y39{bottom:908.185500px;}
.y2bb{bottom:908.610300px;}
.y239{bottom:918.917160px;}
.y261{bottom:918.925800px;}
.y1b7{bottom:919.817010px;}
.y1e5{bottom:919.825800px;}
.y2a6{bottom:920.416440px;}
.y289{bottom:922.147080px;}
.y2d0{bottom:923.583480px;}
.y2ba{bottom:926.610300px;}
.ye{bottom:932.185500px;}
.y238{bottom:937.099140px;}
.y260{bottom:937.105800px;}
.y1b6{bottom:937.998990px;}
.y1e4{bottom:938.005800px;}
.y214{bottom:938.358420px;}
.y2a5{bottom:938.419140px;}
.y288{bottom:939.432660px;}
.y18b{bottom:940.525800px;}
.y2cf{bottom:940.869060px;}
.y2b9{bottom:944.790300px;}
.y3a{bottom:946.705500px;}
.y189{bottom:950.910300px;}
.y237{bottom:955.281120px;}
.y25f{bottom:955.285800px;}
.y1b5{bottom:956.180970px;}
.y1e3{bottom:956.185800px;}
.y213{bottom:956.361120px;}
.y2a4{bottom:956.601120px;}
.y287{bottom:956.718240px;}
.y2ce{bottom:958.154640px;}
.yad{bottom:958.285500px;}
.y3{bottom:961.130850px;}
.y2b8{bottom:962.970300px;}
.y87{bottom:965.785500px;}
.y188{bottom:967.290300px;}
.y10{bottom:970.705500px;}
.y236{bottom:973.283820px;}
.y25e{bottom:973.285800px;}
.y1b4{bottom:974.183670px;}
.y1e2{bottom:974.185800px;}
.y212{bottom:974.543100px;}
.y2a3{bottom:974.783100px;}
.y2cd{bottom:975.440220px;}
.y5f{bottom:977.785500px;}
.y2b7{bottom:980.970300px;}
.y187{bottom:983.850450px;}
.y1{bottom:988.999500px;}
.y235{bottom:991.465800px;}
.y18a{bottom:991.825800px;}
.y286{bottom:992.185800px;}
.y1b3{bottom:992.365650px;}
.y211{bottom:992.545800px;}
.y2cc{bottom:992.725800px;}
.y2a2{bottom:992.785800px;}
.yae{bottom:996.805500px;}
.y2a1{bottom:999.150300px;}
.y186{bottom:1000.410300px;}
.y88{bottom:1004.305500px;}
.y60{bottom:1016.305500px;}
.y234{bottom:1026.055800px;}
.y1b2{bottom:1026.955650px;}
.y210{bottom:1027.135800px;}
.y2{bottom:1033.378950px;}
.y2a0{bottom:1033.740300px;}
.y185{bottom:1034.820300px;}
.yd3{bottom:1035.561750px;}
.h9{height:-791.742000px;}
.h7{height:-753.222000px;}
.h18{height:-752.317500px;}
.h17{height:-713.797500px;}
.h1b{height:-324.994500px;}
.h1a{height:-286.474500px;}
.h21{height:-148.537500px;}
.h20{height:-110.017500px;}
.h25{height:-70.194000px;}
.h24{height:-31.674000px;}
.h19{height:8.598000px;}
.h2e{height:14.400000px;}
.h14{height:21.011484px;}
.h4{height:33.328125px;}
.h28{height:33.494766px;}
.hc{height:33.518320px;}
.h1d{height:35.494453px;}
.h5{height:36.000000px;}
.h16{height:36.571289px;}
.h6{height:37.494141px;}
.he{height:37.520508px;}
.ha{height:38.654297px;}
.h3{height:38.664000px;}
.h15{height:39.011484px;}
.h1e{height:39.020844px;}
.h1f{height:39.024444px;}
.hd{height:39.952500px;}
.h30{height:40.472227px;}
.h2c{height:41.493516px;}
.h8{height:41.522695px;}
.h29{height:42.777422px;}
.h13{height:44.854453px;}
.h10{height:50.027344px;}
.hf{height:60.878320px;}
.h23{height:62.847734px;}
.h12{height:62.879414px;}
.h26{height:64.524000px;}
.h11{height:71.038828px;}
.h2{height:74.646000px;}
.hb{height:75.041016px;}
.h22{height:159.448500px;}
.h2d{height:231.330000px;}
.h1c{height:408.189000px;}
.h27{height:953.910000px;}
.h2f{height:1005.468000px;}
.h2b{height:1015.807500px;}
.h2a{height:1016.706000px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w6{width:-652.542000px;}
.w7{width:-238.437000px;}
.w8{width:-67.398000px;}
.w9{width:18.102000px;}
.w2{width:90.576000px;}
.w4{width:171.030000px;}
.wa{width:331.845000px;}
.wb{width:340.275000px;}
.w3{width:414.105000px;}
.w5{width:798.378000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x2f{left:-743.118000px;}
.x30{left:-740.958000px;}
.x29{left:-737.538000px;}
.x2b{left:-726.018000px;}
.x2c{left:-712.122000px;}
.x31{left:-686.202000px;}
.x32{left:-680.981850px;}
.x33{left:-676.481850px;}
.x23{left:-653.081850px;}
.x24{left:-630.227850px;}
.x35{left:-567.003000px;}
.x27{left:-559.623000px;}
.x2e{left:-549.722850px;}
.x3f{left:-540.722850px;}
.x2a{left:-486.003000px;}
.x2d{left:-450.362850px;}
.x25{left:-307.952850px;}
.x28{left:-258.588000px;}
.x3e{left:-184.608000px;}
.x26{left:-65.237850px;}
.x0{left:0.000000px;}
.xe{left:18.000000px;}
.x9{left:22.314000px;}
.x38{left:26.136000px;}
.x5{left:56.125950px;}
.x4{left:58.401900px;}
.x10{left:60.840000px;}
.x6{left:73.260000px;}
.x1b{left:75.420000px;}
.x20{left:78.300000px;}
.x12{left:86.256000px;}
.x7{left:90.036000px;}
.x18{left:91.260000px;}
.xd{left:92.919000px;}
.x19{left:94.356000px;}
.x1e{left:104.256000px;}
.x15{left:112.176000px;}
.x1a{left:115.596000px;}
.x16{left:117.396000px;}
.x17{left:121.896000px;}
.x1c{left:130.189680px;}
.x1d{left:135.388740px;}
.x8{left:163.836000px;}
.xc{left:173.190000px;}
.x34{left:231.375000px;}
.x2{left:236.123100px;}
.x14{left:248.655000px;}
.x3{left:260.268750px;}
.x21{left:266.654880px;}
.x3d{left:275.655000px;}
.x3b{left:281.415000px;}
.x1{left:292.179600px;}
.x11{left:312.375000px;}
.x22{left:330.372000px;}
.x36{left:339.045000px;}
.xa{left:344.589000px;}
.x13{left:348.015000px;}
.x1f{left:366.015960px;}
.x37{left:405.105000px;}
.x39{left:409.245000px;}
.xf{left:539.790000px;}
.xb{left:577.950000px;}
.x3c{left:631.770000px;}
.x3a{left:651.750000px;}
@media print{
.v5{vertical-align:-16.000000pt;}
.v1{vertical-align:-1.512000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.v6{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls24{letter-spacing:-1.578667pt;}
.ls40{letter-spacing:-1.168640pt;}
.ls54{letter-spacing:-0.943360pt;}
.ls26{letter-spacing:-0.900480pt;}
.lsd{letter-spacing:-0.857600pt;}
.ls42{letter-spacing:-0.849920pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls31{letter-spacing:-0.743680pt;}
.ls33{letter-spacing:-0.690560pt;}
.ls55{letter-spacing:-0.686080pt;}
.ls2c{letter-spacing:-0.531200pt;}
.ls41{letter-spacing:-0.478080pt;}
.ls11{letter-spacing:-0.471680pt;}
.lsa{letter-spacing:-0.432000pt;}
.ls2a{letter-spacing:-0.424960pt;}
.ls17{letter-spacing:-0.385920pt;}
.ls32{letter-spacing:-0.371840pt;}
.ls15{letter-spacing:-0.336000pt;}
.ls29{letter-spacing:-0.318720pt;}
.lsc{letter-spacing:-0.300160pt;}
.ls56{letter-spacing:-0.257280pt;}
.lse{letter-spacing:-0.256000pt;}
.ls4b{letter-spacing:-0.214400pt;}
.ls2b{letter-spacing:-0.212480pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.159360pt;}
.ls43{letter-spacing:-0.106240pt;}
.ls2d{letter-spacing:-0.053120pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls3e{letter-spacing:0.053120pt;}
.ls3b{letter-spacing:0.094720pt;}
.ls14{letter-spacing:0.096000pt;}
.ls30{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.128640pt;}
.ls9{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.158720pt;}
.ls1b{letter-spacing:0.159360pt;}
.ls47{letter-spacing:0.159467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4c{letter-spacing:0.160533pt;}
.ls6{letter-spacing:0.171520pt;}
.ls7{letter-spacing:0.185813pt;}
.ls1c{letter-spacing:0.212480pt;}
.ls16{letter-spacing:0.214400pt;}
.ls4{letter-spacing:0.225280pt;}
.ls48{letter-spacing:0.230507pt;}
.ls35{letter-spacing:0.231040pt;}
.ls34{letter-spacing:0.231573pt;}
.lsb{letter-spacing:0.257280pt;}
.ls23{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.304640pt;}
.ls18{letter-spacing:0.305173pt;}
.ls27{letter-spacing:0.318720pt;}
.ls46{letter-spacing:0.320000pt;}
.ls52{letter-spacing:0.321600pt;}
.ls13{letter-spacing:0.336000pt;}
.ls25{letter-spacing:0.343040pt;}
.ls3f{letter-spacing:0.371840pt;}
.ls4f{letter-spacing:0.428800pt;}
.ls19{letter-spacing:0.796800pt;}
.ls1f{letter-spacing:1.434240pt;}
.ls3c{letter-spacing:1.439467pt;}
.ls37{letter-spacing:1.440000pt;}
.ls3d{letter-spacing:1.440533pt;}
.ls4a{letter-spacing:2.071680pt;}
.ls50{letter-spacing:2.101120pt;}
.ls51{letter-spacing:2.701440pt;}
.ls2e{letter-spacing:2.709120pt;}
.ls36{letter-spacing:2.720000pt;}
.ls4d{letter-spacing:2.868480pt;}
.ls1a{letter-spacing:3.346560pt;}
.ls44{letter-spacing:3.360533pt;}
.ls1e{letter-spacing:3.984000pt;}
.ls45{letter-spacing:4.000000pt;}
.ls2f{letter-spacing:5.258880pt;}
.ls3a{letter-spacing:5.280000pt;}
.ls21{letter-spacing:5.896320pt;}
.ls39{letter-spacing:5.920533pt;}
.ls49{letter-spacing:6.533760pt;}
.ls38{letter-spacing:7.360000pt;}
.ls1d{letter-spacing:7.383680pt;}
.ls4e{letter-spacing:9.774080pt;}
.ls20{letter-spacing:9.880320pt;}
.ls53{letter-spacing:12.306560pt;}
.ls22{letter-spacing:14.873600pt;}
.ws8{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.168000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.208000pt;}
.ws33{word-spacing:-13.598720pt;}
.ws37{word-spacing:-13.545600pt;}
.ws35{word-spacing:-13.439360pt;}
.ws97{word-spacing:-13.386240pt;}
.ws1{word-spacing:-13.344000pt;}
.ws7f{word-spacing:-13.333120pt;}
.ws34{word-spacing:-13.280000pt;}
.ws36{word-spacing:-13.226880pt;}
.ws6c{word-spacing:-12.961280pt;}
.ws5{word-spacing:-12.912000pt;}
.ws6b{word-spacing:-12.908160pt;}
.ws10{word-spacing:-12.336000pt;}
.ws11{word-spacing:-12.096000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.664000pt;}
.ws30{word-spacing:-11.063040pt;}
.ws9{word-spacing:-10.977280pt;}
.wse{word-spacing:-10.848640pt;}
.ws7{word-spacing:-10.720000pt;}
.ws6a{word-spacing:-10.666667pt;}
.ws98{word-spacing:-10.505600pt;}
.ws9a{word-spacing:-10.462720pt;}
.ws6{word-spacing:-10.419840pt;}
.ws99{word-spacing:-10.334080pt;}
.wsf{word-spacing:-10.248320pt;}
.ws32{word-spacing:-9.819520pt;}
.wsc{word-spacing:-9.280000pt;}
.wsd{word-spacing:-6.720000pt;}
.ws84{word-spacing:-3.665280pt;}
.ws4a{word-spacing:-3.293440pt;}
.ws47{word-spacing:-3.027840pt;}
.ws4b{word-spacing:-2.974720pt;}
.ws9e{word-spacing:-2.709120pt;}
.ws5a{word-spacing:-2.390400pt;}
.ws5b{word-spacing:-2.284160pt;}
.wsb4{word-spacing:-2.101120pt;}
.ws82{word-spacing:-1.912320pt;}
.wsb3{word-spacing:-1.886720pt;}
.ws29{word-spacing:-1.776000pt;}
.ws4d{word-spacing:-1.752960pt;}
.ws91{word-spacing:-1.646720pt;}
.ws79{word-spacing:-1.381120pt;}
.ws95{word-spacing:-1.168640pt;}
.ws72{word-spacing:-1.115520pt;}
.ws90{word-spacing:-0.956160pt;}
.ws94{word-spacing:-0.796800pt;}
.ws41{word-spacing:-0.743680pt;}
.ws16{word-spacing:-0.728960pt;}
.ws3b{word-spacing:-0.686080pt;}
.ws93{word-spacing:-0.600320pt;}
.ws21{word-spacing:-0.576000pt;}
.ws61{word-spacing:-0.531200pt;}
.ws22{word-spacing:-0.480000pt;}
.ws40{word-spacing:-0.478080pt;}
.ws3c{word-spacing:-0.471680pt;}
.ws5f{word-spacing:-0.371840pt;}
.ws1b{word-spacing:-0.363520pt;}
.wsb7{word-spacing:-0.343040pt;}
.ws1d{word-spacing:-0.322560pt;}
.ws28{word-spacing:-0.288000pt;}
.ws58{word-spacing:-0.265600pt;}
.ws6d{word-spacing:-0.257280pt;}
.ws2e{word-spacing:-0.214400pt;}
.ws3a{word-spacing:-0.171520pt;}
.ws4c{word-spacing:-0.159360pt;}
.ws15{word-spacing:-0.144000pt;}
.ws1e{word-spacing:-0.128640pt;}
.ws9d{word-spacing:-0.106240pt;}
.ws0{word-spacing:-0.088000pt;}
.ws8e{word-spacing:-0.085760pt;}
.ws8f{word-spacing:-0.053120pt;}
.ws31{word-spacing:-0.042880pt;}
.ws13{word-spacing:0.000000pt;}
.ws60{word-spacing:0.053120pt;}
.ws14{word-spacing:0.096000pt;}
.ws4e{word-spacing:0.106240pt;}
.ws39{word-spacing:0.128640pt;}
.ws1f{word-spacing:0.144000pt;}
.ws3d{word-spacing:0.159360pt;}
.ws54{word-spacing:0.212480pt;}
.wsb6{word-spacing:0.214400pt;}
.ws19{word-spacing:0.256000pt;}
.ws81{word-spacing:0.265600pt;}
.ws1a{word-spacing:0.272640pt;}
.ws27{word-spacing:0.288000pt;}
.ws42{word-spacing:0.318720pt;}
.ws8d{word-spacing:0.343040pt;}
.ws2f{word-spacing:0.385920pt;}
.ws44{word-spacing:0.424960pt;}
.ws17{word-spacing:0.428800pt;}
.ws6e{word-spacing:0.471680pt;}
.ws56{word-spacing:0.478080pt;}
.ws77{word-spacing:0.531200pt;}
.wsa0{word-spacing:0.600320pt;}
.ws1c{word-spacing:0.622080pt;}
.wsa4{word-spacing:0.643200pt;}
.wsa9{word-spacing:0.686080pt;}
.ws7d{word-spacing:0.690560pt;}
.ws3e{word-spacing:0.743680pt;}
.ws20{word-spacing:0.768000pt;}
.ws49{word-spacing:0.849920pt;}
.ws48{word-spacing:0.956160pt;}
.ws18{word-spacing:0.986240pt;}
.ws9f{word-spacing:1.029120pt;}
.ws80{word-spacing:1.115520pt;}
.wsa7{word-spacing:1.157760pt;}
.ws87{word-spacing:1.168640pt;}
.ws92{word-spacing:1.221760pt;}
.ws7e{word-spacing:1.274880pt;}
.wsa1{word-spacing:1.286400pt;}
.ws78{word-spacing:1.328000pt;}
.ws3f{word-spacing:1.381120pt;}
.ws38{word-spacing:1.578667pt;}
.ws9c{word-spacing:1.752960pt;}
.wsa3{word-spacing:1.800960pt;}
.wsa6{word-spacing:1.929600pt;}
.ws23{word-spacing:2.016000pt;}
.ws4f{word-spacing:2.018560pt;}
.wsb5{word-spacing:2.058240pt;}
.ws50{word-spacing:2.124800pt;}
.wsa2{word-spacing:2.358400pt;}
.ws70{word-spacing:2.390400pt;}
.wsab{word-spacing:2.401280pt;}
.wsac{word-spacing:2.444160pt;}
.wsa5{word-spacing:2.529920pt;}
.ws9b{word-spacing:2.549760pt;}
.ws6f{word-spacing:2.656000pt;}
.ws2d{word-spacing:2.688000pt;}
.wsa8{word-spacing:3.044480pt;}
.wsaa{word-spacing:3.130240pt;}
.ws46{word-spacing:3.240320pt;}
.ws43{word-spacing:3.293440pt;}
.ws2b{word-spacing:3.312000pt;}
.ws8c{word-spacing:3.346560pt;}
.ws45{word-spacing:3.399680pt;}
.wsad{word-spacing:3.601920pt;}
.ws96{word-spacing:3.665280pt;}
.ws55{word-spacing:3.930880pt;}
.ws8b{word-spacing:4.302720pt;}
.ws7c{word-spacing:4.515200pt;}
.ws76{word-spacing:4.568320pt;}
.ws25{word-spacing:4.608000pt;}
.ws7a{word-spacing:4.940160pt;}
.ws62{word-spacing:5.205760pt;}
.ws24{word-spacing:5.232000pt;}
.ws75{word-spacing:5.312000pt;}
.ws2c{word-spacing:5.424000pt;}
.wsb2{word-spacing:5.617280pt;}
.ws74{word-spacing:5.790080pt;}
.ws64{word-spacing:5.843200pt;}
.ws63{word-spacing:5.949440pt;}
.wsb1{word-spacing:6.174720pt;}
.wsb0{word-spacing:6.303360pt;}
.wsaf{word-spacing:6.389120pt;}
.ws69{word-spacing:6.480640pt;}
.wsae{word-spacing:6.732160pt;}
.ws51{word-spacing:6.905600pt;}
.ws59{word-spacing:7.118080pt;}
.ws53{word-spacing:7.171200pt;}
.ws52{word-spacing:7.330560pt;}
.ws26{word-spacing:7.776000pt;}
.ws83{word-spacing:7.808640pt;}
.ws89{word-spacing:8.233600pt;}
.ws73{word-spacing:8.446080pt;}
.ws88{word-spacing:8.764800pt;}
.ws5d{word-spacing:8.924160pt;}
.ws71{word-spacing:9.083520pt;}
.ws5e{word-spacing:9.508480pt;}
.ws5c{word-spacing:9.720960pt;}
.ws8a{word-spacing:10.358400pt;}
.ws7b{word-spacing:10.995840pt;}
.wsb8{word-spacing:12.135040pt;}
.ws57{word-spacing:12.270720pt;}
.ws66{word-spacing:14.820480pt;}
.ws65{word-spacing:16.095360pt;}
.ws86{word-spacing:18.645120pt;}
.ws85{word-spacing:19.282560pt;}
.ws68{word-spacing:27.622400pt;}
.ws2a{word-spacing:31.488000pt;}
.ws67{word-spacing:46.851840pt;}
.ws3{word-spacing:1210.118933pt;}
._3{margin-left:-6.633067pt;}
._2{margin-left:-5.521067pt;}
._1{margin-left:-3.120533pt;}
._0{margin-left:-1.592800pt;}
._5{width:1.349600pt;}
._4{width:2.605600pt;}
._8{width:3.929120pt;}
._c{width:5.471360pt;}
._e{width:6.756160pt;}
._9{width:7.754720pt;}
._a{width:9.634560pt;}
._b{width:11.029120pt;}
._d{width:15.689440pt;}
._f{width:26.972480pt;}
._11{width:442.033067pt;}
._7{width:443.616533pt;}
._10{width:713.513067pt;}
._6{width:756.179200pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:37.120000pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs0{font-size:88.000000pt;}
.fs7{font-size:90.880000pt;}
.fs4{font-size:96.000000pt;}
.yd2{bottom:-610.117200pt;}
.y183{bottom:-610.117067pt;}
.yd1{bottom:-596.837200pt;}
.y182{bottom:-596.837067pt;}
.yd0{bottom:-583.237200pt;}
.y181{bottom:-583.237067pt;}
.ycf{bottom:-554.917200pt;}
.y180{bottom:-554.917067pt;}
.yce{bottom:-528.677200pt;}
.y17f{bottom:-528.677067pt;}
.ycd{bottom:-513.957200pt;}
.y17e{bottom:-513.957067pt;}
.ycc{bottom:-499.237200pt;}
.y17d{bottom:-499.237067pt;}
.ycb{bottom:-484.677200pt;}
.y17c{bottom:-484.677067pt;}
.yca{bottom:-469.957200pt;}
.y17b{bottom:-469.957067pt;}
.yac{bottom:-456.101200pt;}
.y161{bottom:-456.101067pt;}
.yc9{bottom:-455.237200pt;}
.y17a{bottom:-455.237067pt;}
.yab{bottom:-442.821200pt;}
.y160{bottom:-442.821067pt;}
.yc8{bottom:-440.677200pt;}
.y179{bottom:-440.677067pt;}
.yaa{bottom:-429.221200pt;}
.y15f{bottom:-429.221067pt;}
.yc7{bottom:-425.957200pt;}
.y178{bottom:-425.957067pt;}
.yc6{bottom:-411.197200pt;}
.y177{bottom:-411.197067pt;}
.ya9{bottom:-400.901200pt;}
.y15e{bottom:-400.901067pt;}
.yc5{bottom:-396.637200pt;}
.y176{bottom:-396.637067pt;}
.yc4{bottom:-381.917200pt;}
.y175{bottom:-381.917067pt;}
.ya8{bottom:-374.661200pt;}
.y15d{bottom:-374.661067pt;}
.yc3{bottom:-367.197200pt;}
.y174{bottom:-367.197067pt;}
.ya7{bottom:-359.941200pt;}
.y15c{bottom:-359.941067pt;}
.yc2{bottom:-352.637200pt;}
.y173{bottom:-352.637067pt;}
.ya6{bottom:-345.221200pt;}
.y15b{bottom:-345.221067pt;}
.yc1{bottom:-337.917200pt;}
.y172{bottom:-337.917067pt;}
.ya5{bottom:-330.661200pt;}
.y15a{bottom:-330.661067pt;}
.yc0{bottom:-323.197200pt;}
.y171{bottom:-323.197067pt;}
.ya4{bottom:-315.941200pt;}
.y159{bottom:-315.941067pt;}
.ybf{bottom:-308.637200pt;}
.y170{bottom:-308.637067pt;}
.ya3{bottom:-301.221200pt;}
.y158{bottom:-301.221067pt;}
.ybe{bottom:-293.917200pt;}
.y16f{bottom:-293.917067pt;}
.ya2{bottom:-286.661200pt;}
.y157{bottom:-286.661067pt;}
.ybd{bottom:-279.197200pt;}
.y16e{bottom:-279.197067pt;}
.ya1{bottom:-271.941200pt;}
.y156{bottom:-271.941067pt;}
.ya0{bottom:-257.181200pt;}
.y155{bottom:-257.181067pt;}
.ybc{bottom:-249.917200pt;}
.y16d{bottom:-249.917067pt;}
.y9f{bottom:-242.621200pt;}
.y154{bottom:-242.621067pt;}
.y9e{bottom:-227.901200pt;}
.y153{bottom:-227.901067pt;}
.ybb{bottom:-221.570533pt;}
.y16c{bottom:-221.570400pt;}
.y9d{bottom:-213.181200pt;}
.y152{bottom:-213.181067pt;}
.yba{bottom:-208.130533pt;}
.y16b{bottom:-208.130400pt;}
.y9c{bottom:-198.621200pt;}
.y151{bottom:-198.621067pt;}
.yb9{bottom:-190.850533pt;}
.y16a{bottom:-190.850400pt;}
.y9b{bottom:-183.901200pt;}
.y150{bottom:-183.901067pt;}
.yb8{bottom:-177.570533pt;}
.y169{bottom:-177.570400pt;}
.y9a{bottom:-169.181200pt;}
.y14f{bottom:-169.181067pt;}
.y99{bottom:-154.621200pt;}
.y14e{bottom:-154.621067pt;}
.yb7{bottom:-145.890533pt;}
.y168{bottom:-145.890400pt;}
.y98{bottom:-139.901200pt;}
.y14d{bottom:-139.901067pt;}
.yb6{bottom:-125.890533pt;}
.y167{bottom:-125.890400pt;}
.y97{bottom:-125.181200pt;}
.y14c{bottom:-125.181067pt;}
.y96{bottom:-95.901200pt;}
.y14b{bottom:-95.901067pt;}
.yb5{bottom:-88.290533pt;}
.y166{bottom:-88.290400pt;}
.y86{bottom:-78.147867pt;}
.y13f{bottom:-78.147733pt;}
.y95{bottom:-67.554533pt;}
.y14a{bottom:-67.554400pt;}
.y85{bottom:-64.867867pt;}
.y13e{bottom:-64.867733pt;}
.yb4{bottom:-61.570533pt;}
.y165{bottom:-61.570400pt;}
.y94{bottom:-54.114533pt;}
.y149{bottom:-54.114400pt;}
.y5e{bottom:-53.497200pt;}
.y11d{bottom:-53.497067pt;}
.y84{bottom:-51.267867pt;}
.y13d{bottom:-51.267733pt;}
.y5d{bottom:-40.217200pt;}
.y11c{bottom:-40.217067pt;}
.y93{bottom:-36.834533pt;}
.y148{bottom:-36.834400pt;}
.yb3{bottom:-34.970533pt;}
.y164{bottom:-34.970400pt;}
.y9{bottom:-28.346400pt;}
.y5c{bottom:-26.617200pt;}
.y11b{bottom:-26.617067pt;}
.y92{bottom:-23.554533pt;}
.y147{bottom:-23.554400pt;}
.y83{bottom:-22.947867pt;}
.y13c{bottom:-22.947733pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:0.000133pt;}
.yd7{bottom:0.000267pt;}
.y297{bottom:0.798933pt;}
.y5b{bottom:1.702800pt;}
.y11a{bottom:1.702933pt;}
.y14{bottom:2.240133pt;}
.yfa{bottom:2.240267pt;}
.y12{bottom:2.720133pt;}
.yd6{bottom:2.720267pt;}
.y29a{bottom:2.880267pt;}
.y82{bottom:3.292133pt;}
.y13b{bottom:3.292267pt;}
.yf{bottom:3.360133pt;}
.yd4{bottom:3.360267pt;}
.y298{bottom:6.398933pt;}
.y163{bottom:7.749600pt;}
.y146{bottom:8.125600pt;}
.yf9{bottom:9.417600pt;}
.y29f{bottom:10.502667pt;}
.y13a{bottom:18.012267pt;}
.yf8{bottom:22.697600pt;}
.y5a{bottom:27.942800pt;}
.y119{bottom:27.942933pt;}
.y145{bottom:28.125600pt;}
.y139{bottom:32.732267pt;}
.y162{bottom:34.469600pt;}
.y36{bottom:36.297467pt;}
.yf7{bottom:36.297600pt;}
.y11{bottom:41.786800pt;}
.yd5{bottom:41.786933pt;}
.y59{bottom:42.662800pt;}
.y118{bottom:42.662933pt;}
.y138{bottom:47.292267pt;}
.y184{bottom:49.969333pt;}
.y58{bottom:57.382800pt;}
.y117{bottom:57.382933pt;}
.y8{bottom:60.458533pt;}
.y137{bottom:62.012267pt;}
.y35{bottom:64.617467pt;}
.yf6{bottom:64.617600pt;}
.y144{bottom:65.725600pt;}
.y57{bottom:71.942800pt;}
.y116{bottom:71.942933pt;}
.y7{bottom:72.458533pt;}
.yb0{bottom:74.309600pt;}
.y136{bottom:76.732267pt;}
.y6{bottom:84.458533pt;}
.y56{bottom:86.662800pt;}
.y115{bottom:86.662933pt;}
.y34{bottom:90.857467pt;}
.yf5{bottom:90.857600pt;}
.y135{bottom:91.292267pt;}
.y143{bottom:92.445600pt;}
.y5{bottom:96.458533pt;}
.y55{bottom:101.382800pt;}
.y114{bottom:101.382933pt;}
.y33{bottom:105.577467pt;}
.yf4{bottom:105.577600pt;}
.y134{bottom:106.012267pt;}
.y4{bottom:108.458533pt;}
.y54{bottom:115.942800pt;}
.y113{bottom:115.942933pt;}
.y8d{bottom:119.045467pt;}
.y142{bottom:119.045600pt;}
.y32{bottom:120.297467pt;}
.yf3{bottom:120.297600pt;}
.y133{bottom:120.772267pt;}
.y15{bottom:123.565333pt;}
.y53{bottom:130.662800pt;}
.y112{bottom:130.662933pt;}
.y38{bottom:132.980720pt;}
.y31{bottom:134.857467pt;}
.yf2{bottom:134.857600pt;}
.y132{bottom:135.332267pt;}
.y1e1{bottom:141.264720pt;}
.y20f{bottom:141.356267pt;}
.y2ff{bottom:142.635413pt;}
.y52{bottom:145.422800pt;}
.y111{bottom:145.422933pt;}
.y2cb{bottom:145.466933pt;}
.y233{bottom:146.150347pt;}
.y37{bottom:146.262800pt;}
.y30{bottom:149.577467pt;}
.yf1{bottom:149.577600pt;}
.y131{bottom:150.052267pt;}
.y29e{bottom:152.076267pt;}
.y2fe{bottom:155.595893pt;}
.y2b6{bottom:155.948000pt;}
.y1e0{bottom:157.426480pt;}
.y20e{bottom:157.516267pt;}
.y51{bottom:159.982800pt;}
.y110{bottom:159.982933pt;}
.y2ca{bottom:160.826933pt;}
.y8c{bottom:161.765467pt;}
.y141{bottom:161.765600pt;}
.y232{bottom:162.312107pt;}
.y29d{bottom:162.956267pt;}
.y2f{bottom:164.297467pt;}
.yf0{bottom:164.297600pt;}
.y130{bottom:164.772267pt;}
.y3b{bottom:165.146667pt;}
.y2fd{bottom:168.395573pt;}
.y25d{bottom:170.729973pt;}
.y285{bottom:170.796267pt;}
.y2b5{bottom:171.312960pt;}
.y1df{bottom:173.588240pt;}
.y20d{bottom:173.676267pt;}
.y50{bottom:174.702800pt;}
.y10f{bottom:174.702933pt;}
.y2c9{bottom:176.186933pt;}
.y231{bottom:178.314507pt;}
.y2e{bottom:178.857467pt;}
.yef{bottom:178.857600pt;}
.y12f{bottom:179.332267pt;}
.y2fc{bottom:181.356053pt;}
.y2b4{bottom:186.677920pt;}
.y25c{bottom:186.891733pt;}
.y284{bottom:186.956267pt;}
.y8b{bottom:188.485467pt;}
.y140{bottom:188.485600pt;}
.y4f{bottom:189.422800pt;}
.y10e{bottom:189.422933pt;}
.y1de{bottom:189.590640pt;}
.y20c{bottom:189.676267pt;}
.y2c8{bottom:191.386933pt;}
.yd{bottom:191.553600pt;}
.y2d{bottom:193.577467pt;}
.yee{bottom:193.577600pt;}
.y12e{bottom:194.052267pt;}
.y2fb{bottom:194.155733pt;}
.y230{bottom:194.476267pt;}
.y2b3{bottom:201.883520pt;}
.y25b{bottom:203.053493pt;}
.y283{bottom:203.116267pt;}
.y4e{bottom:203.982800pt;}
.y10d{bottom:203.982933pt;}
.yc{bottom:204.886933pt;}
.y1dd{bottom:205.752400pt;}
.y20b{bottom:205.836267pt;}
.y2fa{bottom:207.116213pt;}
.y2c{bottom:208.337467pt;}
.yed{bottom:208.337600pt;}
.y1b1{bottom:208.649173pt;}
.y12d{bottom:208.772267pt;}
.y22f{bottom:209.196267pt;}
.yb{bottom:218.220267pt;}
.y4d{bottom:218.702800pt;}
.y10c{bottom:218.702933pt;}
.y25a{bottom:219.055893pt;}
.y282{bottom:219.116267pt;}
.y2f9{bottom:219.915893pt;}
.y1dc{bottom:221.754800pt;}
.y20a{bottom:221.836267pt;}
.y2b{bottom:222.897467pt;}
.yec{bottom:222.897600pt;}
.y2c7{bottom:223.066933pt;}
.y12c{bottom:223.332267pt;}
.y1b0{bottom:224.810933pt;}
.y8a{bottom:228.325600pt;}
.ya{bottom:231.553600pt;}
.y2f8{bottom:232.876373pt;}
.y4c{bottom:233.422800pt;}
.y10b{bottom:233.422933pt;}
.y2b2{bottom:233.569600pt;}
.y259{bottom:235.217653pt;}
.y281{bottom:235.276267pt;}
.y2a{bottom:237.617467pt;}
.yeb{bottom:237.617600pt;}
.y1db{bottom:237.916560pt;}
.y209{bottom:237.996267pt;}
.y12b{bottom:238.052267pt;}
.y1af{bottom:240.813333pt;}
.y2f7{bottom:245.676053pt;}
.y4b{bottom:247.982800pt;}
.y10a{bottom:247.982933pt;}
.y258{bottom:251.220053pt;}
.y280{bottom:251.276267pt;}
.y61{bottom:251.664000pt;}
.y29{bottom:252.337467pt;}
.yea{bottom:252.337600pt;}
.y12a{bottom:252.772267pt;}
.y1da{bottom:254.078320pt;}
.y2c6{bottom:254.106933pt;}
.y208{bottom:254.156267pt;}
.y1ae{bottom:256.975093pt;}
.y2f6{bottom:258.636533pt;}
.y4a{bottom:262.702800pt;}
.y109{bottom:262.702933pt;}
.y2c5{bottom:264.186933pt;}
.y2b1{bottom:264.612800pt;}
.y28{bottom:266.897467pt;}
.ye9{bottom:266.897600pt;}
.y257{bottom:267.381813pt;}
.y27f{bottom:267.436267pt;}
.y81{bottom:269.656133pt;}
.y1d9{bottom:270.080720pt;}
.y207{bottom:270.156267pt;}
.y2f5{bottom:271.436213pt;}
.y1ad{bottom:272.977493pt;}
.y2b0{bottom:274.689600pt;}
.y49{bottom:277.422800pt;}
.y108{bottom:277.422933pt;}
.y27{bottom:281.617467pt;}
.ye8{bottom:281.617600pt;}
.y129{bottom:282.052267pt;}
.y256{bottom:283.543573pt;}
.y27e{bottom:283.596267pt;}
.y80{bottom:284.380133pt;}
.y2f4{bottom:284.396693pt;}
.y1d8{bottom:286.242480pt;}
.y206{bottom:286.316267pt;}
.y1ac{bottom:289.139253pt;}
.y26{bottom:296.337467pt;}
.ye7{bottom:296.337600pt;}
.y2f3{bottom:297.196373pt;}
.y7f{bottom:298.936133pt;}
.y255{bottom:299.545973pt;}
.y27d{bottom:299.596267pt;}
.y1d7{bottom:302.404240pt;}
.y205{bottom:302.476267pt;}
.y1ab{bottom:305.301013pt;}
.y48{bottom:306.702800pt;}
.y107{bottom:306.702933pt;}
.y2f2{bottom:310.156853pt;}
.y128{bottom:310.398933pt;}
.y25{bottom:310.897467pt;}
.ye6{bottom:310.897600pt;}
.y7e{bottom:313.660133pt;}
.y254{bottom:315.707733pt;}
.y27c{bottom:315.756267pt;}
.y1d6{bottom:318.406640pt;}
.y204{bottom:318.476267pt;}
.y1aa{bottom:321.303413pt;}
.y2f1{bottom:322.956533pt;}
.y127{bottom:323.838933pt;}
.y24{bottom:325.617467pt;}
.ye5{bottom:325.617600pt;}
.y7d{bottom:328.384133pt;}
.y253{bottom:331.749973pt;}
.y27b{bottom:331.796267pt;}
.y1d5{bottom:334.608240pt;}
.y203{bottom:334.676267pt;}
.y47{bottom:335.049467pt;}
.y106{bottom:335.049600pt;}
.y2f0{bottom:335.959893pt;}
.y1a9{bottom:337.465173pt;}
.y23{bottom:340.337467pt;}
.ye4{bottom:340.337600pt;}
.y126{bottom:341.118933pt;}
.y7c{bottom:342.940133pt;}
.y252{bottom:347.911733pt;}
.y27a{bottom:347.956267pt;}
.y46{bottom:348.489467pt;}
.y105{bottom:348.489600pt;}
.y2ef{bottom:348.759573pt;}
.y1d4{bottom:350.610640pt;}
.y202{bottom:350.676267pt;}
.y1a8{bottom:353.626933pt;}
.y125{bottom:354.398933pt;}
.y6b{bottom:356.478800pt;}
.y7b{bottom:357.664133pt;}
.y2ee{bottom:361.720053pt;}
.y251{bottom:364.073493pt;}
.y279{bottom:364.116267pt;}
.y45{bottom:365.769467pt;}
.y104{bottom:365.769600pt;}
.y1d3{bottom:366.772400pt;}
.y201{bottom:366.836267pt;}
.y22{bottom:369.617467pt;}
.ye3{bottom:369.617600pt;}
.y1a7{bottom:369.629333pt;}
.y7a{bottom:372.424133pt;}
.y2ed{bottom:374.519733pt;}
.y44{bottom:379.049467pt;}
.y103{bottom:379.049600pt;}
.y1d2{bottom:382.934160pt;}
.y200{bottom:382.996267pt;}
.y22e{bottom:383.413013pt;}
.y1a6{bottom:385.830933pt;}
.y69{bottom:386.078800pt;}
.y124{bottom:386.078933pt;}
.y79{bottom:386.980133pt;}
.y2ec{bottom:387.480213pt;}
.y29c{bottom:392.119787pt;}
.y250{bottom:395.759573pt;}
.y278{bottom:395.796267pt;}
.y21{bottom:397.964133pt;}
.ye2{bottom:397.964267pt;}
.y1d1{bottom:398.936560pt;}
.y1ff{bottom:398.996267pt;}
.y22d{bottom:399.574773pt;}
.y2eb{bottom:400.279893pt;}
.y78{bottom:401.704133pt;}
.y1a5{bottom:401.833333pt;}
.y29b{bottom:404.276267pt;}
.y68{bottom:406.078800pt;}
.y123{bottom:406.078933pt;}
.y43{bottom:410.729467pt;}
.y102{bottom:410.729600pt;}
.y20{bottom:411.404133pt;}
.ye1{bottom:411.404267pt;}
.y2ea{bottom:413.240373pt;}
.y299{bottom:414.356000pt;}
.y1d0{bottom:415.098320pt;}
.y1fe{bottom:415.156267pt;}
.y22c{bottom:415.577173pt;}
.y77{bottom:416.428133pt;}
.y1a4{bottom:417.995093pt;}
.y2e9{bottom:426.040053pt;}
.y296{bottom:427.157333pt;}
.y24f{bottom:428.083093pt;}
.y277{bottom:428.116267pt;}
.y1f{bottom:428.684133pt;}
.ye0{bottom:428.684267pt;}
.y42{bottom:430.729467pt;}
.y101{bottom:430.729600pt;}
.y76{bottom:430.984133pt;}
.y1cf{bottom:431.100720pt;}
.y1fd{bottom:431.156267pt;}
.y22b{bottom:431.738933pt;}
.y1a3{bottom:434.156853pt;}
.y2e8{bottom:439.000533pt;}
.y1e{bottom:441.964133pt;}
.ydf{bottom:441.964267pt;}
.y67{bottom:443.678800pt;}
.y122{bottom:443.678933pt;}
.y24e{bottom:444.244853pt;}
.y276{bottom:444.276267pt;}
.y75{bottom:445.708133pt;}
.y1ce{bottom:447.262480pt;}
.y1fc{bottom:447.316267pt;}
.y22a{bottom:447.900693pt;}
.y1a2{bottom:450.159253pt;}
.y2e7{bottom:451.800213pt;}
.y24d{bottom:460.406613pt;}
.y74{bottom:460.432133pt;}
.y275{bottom:460.436267pt;}
.y1cd{bottom:463.424240pt;}
.y1fb{bottom:463.476267pt;}
.y229{bottom:463.903093pt;}
.y2e6{bottom:464.760693pt;}
.y1a1{bottom:466.321013pt;}
.y41{bottom:468.329467pt;}
.y100{bottom:468.329600pt;}
.y66{bottom:470.398800pt;}
.y121{bottom:470.398933pt;}
.y2c4{bottom:470.466933pt;}
.y1d{bottom:473.644133pt;}
.yde{bottom:473.644267pt;}
.y73{bottom:474.988133pt;}
.y24c{bottom:476.409013pt;}
.y274{bottom:476.436267pt;}
.y2e5{bottom:477.560373pt;}
.y1cc{bottom:479.426640pt;}
.y1fa{bottom:479.476267pt;}
.y228{bottom:480.064853pt;}
.y2c3{bottom:480.546933pt;}
.y2af{bottom:480.969600pt;}
.y1a0{bottom:482.323413pt;}
.y72{bottom:489.712133pt;}
.y2e4{bottom:490.520853pt;}
.y2ae{bottom:491.049600pt;}
.y24b{bottom:492.570773pt;}
.y273{bottom:492.596267pt;}
.y1c{bottom:493.644133pt;}
.ydd{bottom:493.644267pt;}
.y40{bottom:495.049467pt;}
.yff{bottom:495.049600pt;}
.y1cb{bottom:495.588400pt;}
.y1f9{bottom:495.636267pt;}
.y227{bottom:496.067253pt;}
.y65{bottom:496.998800pt;}
.y120{bottom:496.998933pt;}
.y19f{bottom:498.485173pt;}
.y2e3{bottom:503.320533pt;}
.y71{bottom:504.436133pt;}
.y24a{bottom:508.573173pt;}
.y272{bottom:508.596267pt;}
.y1ca{bottom:511.750160pt;}
.y1f8{bottom:511.796267pt;}
.y226{bottom:512.229013pt;}
.y19e{bottom:514.646933pt;}
.y2e2{bottom:516.302453pt;}
.y3f{bottom:521.649467pt;}
.yfe{bottom:521.649600pt;}
.y249{bottom:524.761493pt;}
.y271{bottom:524.782933pt;}
.y1c9{bottom:527.779120pt;}
.y1f7{bottom:527.822933pt;}
.y225{bottom:528.417333pt;}
.y2e1{bottom:529.102133pt;}
.y19d{bottom:530.649333pt;}
.y1b{bottom:531.244133pt;}
.ydc{bottom:531.244267pt;}
.y70{bottom:533.716133pt;}
.y64{bottom:539.718800pt;}
.y11f{bottom:539.718933pt;}
.y248{bottom:540.923253pt;}
.y270{bottom:540.942933pt;}
.y2e0{bottom:542.062613pt;}
.y1c8{bottom:543.940880pt;}
.y1f6{bottom:543.982933pt;}
.y224{bottom:544.419733pt;}
.y19c{bottom:546.811093pt;}
.y2df{bottom:554.862293pt;}
.y247{bottom:556.925653pt;}
.y26f{bottom:556.942933pt;}
.y1a{bottom:557.964133pt;}
.ydb{bottom:557.964267pt;}
.y1c7{bottom:559.943280pt;}
.y1f5{bottom:559.982933pt;}
.y223{bottom:560.581493pt;}
.y6f{bottom:562.059920pt;}
.y19b{bottom:562.972853pt;}
.y3e{bottom:564.369467pt;}
.yfd{bottom:564.369600pt;}
.y63{bottom:566.438800pt;}
.y11e{bottom:566.438933pt;}
.y2de{bottom:567.822773pt;}
.y246{bottom:573.087413pt;}
.y26e{bottom:573.102933pt;}
.y6e{bottom:575.500720pt;}
.y1c6{bottom:576.105040pt;}
.y1f4{bottom:576.142933pt;}
.y222{bottom:576.743253pt;}
.y19a{bottom:579.001813pt;}
.y2dd{bottom:580.622453pt;}
.y19{bottom:584.564133pt;}
.yda{bottom:584.564267pt;}
.y3d{bottom:591.089467pt;}
.yfc{bottom:591.089600pt;}
.y1c5{bottom:592.266800pt;}
.y1f3{bottom:592.302933pt;}
.y245{bottom:592.449653pt;}
.y26d{bottom:592.462933pt;}
.y221{bottom:592.745653pt;}
.y6d{bottom:592.782800pt;}
.y2dc{bottom:593.582933pt;}
.y199{bottom:595.163573pt;}
.y6c{bottom:602.062800pt;}
.y6a{bottom:606.062800pt;}
.y62{bottom:606.278933pt;}
.y1c4{bottom:608.269200pt;}
.y1f2{bottom:608.302933pt;}
.y220{bottom:608.907413pt;}
.y198{bottom:611.165973pt;}
.y244{bottom:616.446613pt;}
.y26c{bottom:616.462933pt;}
.y89{bottom:618.950667pt;}
.y2db{bottom:619.598453pt;}
.y1c3{bottom:624.430960pt;}
.y1f1{bottom:624.462933pt;}
.y21f{bottom:624.909813pt;}
.y91{bottom:627.083173pt;}
.y18{bottom:627.284133pt;}
.y197{bottom:627.327733pt;}
.y3c{bottom:630.929467pt;}
.yfb{bottom:630.929733pt;}
.y243{bottom:632.608373pt;}
.y26b{bottom:632.622933pt;}
.y295{bottom:635.585653pt;}
.y1c2{bottom:640.592720pt;}
.y1f0{bottom:640.622933pt;}
.y21e{bottom:641.071573pt;}
.y196{bottom:643.489493pt;}
.y90{bottom:647.076133pt;}
.y242{bottom:648.770133pt;}
.y26a{bottom:648.782933pt;}
.y294{bottom:650.950613pt;}
.y17{bottom:654.004133pt;}
.yd9{bottom:654.004267pt;}
.y1c1{bottom:656.595120pt;}
.y1ef{bottom:656.622933pt;}
.y21d{bottom:657.233333pt;}
.y195{bottom:659.491893pt;}
.y241{bottom:664.772533pt;}
.y269{bottom:664.782933pt;}
.y293{bottom:666.315573pt;}
.y2da{bottom:666.636213pt;}
.y1c0{bottom:672.756880pt;}
.y1ee{bottom:672.782933pt;}
.y21c{bottom:673.235733pt;}
.y194{bottom:675.653653pt;}
.y240{bottom:680.934293pt;}
.y268{bottom:680.942933pt;}
.y292{bottom:681.680533pt;}
.y2d9{bottom:682.638613pt;}
.y8f{bottom:684.677413pt;}
.y1bf{bottom:688.759280pt;}
.y1ed{bottom:688.782933pt;}
.y21b{bottom:689.397493pt;}
.y193{bottom:691.656053pt;}
.y16{bottom:693.844133pt;}
.yd8{bottom:693.844267pt;}
.y2c2{bottom:694.813600pt;}
.y291{bottom:696.886133pt;}
.y23f{bottom:696.936693pt;}
.y267{bottom:696.942933pt;}
.y2d8{bottom:698.322293pt;}
.y1be{bottom:704.960880pt;}
.y1ec{bottom:704.982933pt;}
.y2ad{bottom:705.294507pt;}
.y21a{bottom:705.439733pt;}
.y192{bottom:707.817813pt;}
.y2c1{bottom:711.013600pt;}
.y8e{bottom:711.396133pt;}
.y290{bottom:712.290933pt;}
.y2d7{bottom:713.727093pt;}
.y23e{bottom:716.338773pt;}
.y266{bottom:716.342933pt;}
.y1bd{bottom:721.122640pt;}
.y1eb{bottom:721.142933pt;}
.y2ac{bottom:721.496107pt;}
.y219{bottom:721.601493pt;}
.y191{bottom:723.979573pt;}
.y2c0{bottom:727.173600pt;}
.y28f{bottom:727.655893pt;}
.y2d6{bottom:728.932693pt;}
.y1bc{bottom:737.125040pt;}
.y1ea{bottom:737.142933pt;}
.y2ab{bottom:737.657867pt;}
.y218{bottom:737.763253pt;}
.y190{bottom:739.981973pt;}
.y23d{bottom:740.495093pt;}
.y265{bottom:740.502933pt;}
.y28e{bottom:743.020853pt;}
.y2bf{bottom:743.173600pt;}
.y2d5{bottom:744.297653pt;}
.y1bb{bottom:753.286800pt;}
.y1e9{bottom:753.302933pt;}
.y2aa{bottom:753.660267pt;}
.y217{bottom:753.765653pt;}
.y18f{bottom:756.143733pt;}
.y23c{bottom:756.497493pt;}
.y264{bottom:756.502933pt;}
.y28d{bottom:758.385813pt;}
.y2be{bottom:759.333600pt;}
.y2d4{bottom:759.662613pt;}
.yaf{bottom:766.300000pt;}
.y1ba{bottom:769.289200pt;}
.y1e8{bottom:769.302933pt;}
.y2a9{bottom:769.822027pt;}
.y216{bottom:769.927413pt;}
.y18e{bottom:772.345333pt;}
.y23b{bottom:772.659253pt;}
.y263{bottom:772.662933pt;}
.y28c{bottom:773.591413pt;}
.yb2{bottom:774.049467pt;}
.y2d3{bottom:775.027573pt;}
.y2bd{bottom:775.333600pt;}
.y1b9{bottom:785.450960pt;}
.y1e7{bottom:785.462933pt;}
.y2a8{bottom:785.824427pt;}
.y18d{bottom:788.347733pt;}
.y28b{bottom:788.956373pt;}
.y2d2{bottom:790.392533pt;}
.y2bc{bottom:791.493600pt;}
.y23a{bottom:792.818293pt;}
.y262{bottom:792.822933pt;}
.yb1{bottom:800.769467pt;}
.y1b8{bottom:801.612720pt;}
.y215{bottom:801.613493pt;}
.y1e6{bottom:801.622933pt;}
.y2a7{bottom:801.986187pt;}
.y28a{bottom:804.321333pt;}
.y18c{bottom:804.509493pt;}
.y2d1{bottom:805.598133pt;}
.y39{bottom:807.276000pt;}
.y2bb{bottom:807.653600pt;}
.y239{bottom:816.815253pt;}
.y261{bottom:816.822933pt;}
.y1b7{bottom:817.615120pt;}
.y1e5{bottom:817.622933pt;}
.y2a6{bottom:818.147947pt;}
.y289{bottom:819.686293pt;}
.y2d0{bottom:820.963093pt;}
.y2ba{bottom:823.653600pt;}
.ye{bottom:828.609333pt;}
.y238{bottom:832.977013pt;}
.y260{bottom:832.982933pt;}
.y1b6{bottom:833.776880pt;}
.y1e4{bottom:833.782933pt;}
.y214{bottom:834.096373pt;}
.y2a5{bottom:834.150347pt;}
.y288{bottom:835.051253pt;}
.y18b{bottom:836.022933pt;}
.y2cf{bottom:836.328053pt;}
.y2b9{bottom:839.813600pt;}
.y3a{bottom:841.516000pt;}
.y189{bottom:845.253600pt;}
.y237{bottom:849.138773pt;}
.y25f{bottom:849.142933pt;}
.y1b5{bottom:849.938640pt;}
.y1e3{bottom:849.942933pt;}
.y213{bottom:850.098773pt;}
.y2a4{bottom:850.312107pt;}
.y287{bottom:850.416213pt;}
.y2ce{bottom:851.693013pt;}
.yad{bottom:851.809333pt;}
.y3{bottom:854.338533pt;}
.y2b8{bottom:855.973600pt;}
.y87{bottom:858.476000pt;}
.y188{bottom:859.813600pt;}
.y10{bottom:862.849333pt;}
.y236{bottom:865.141173pt;}
.y25e{bottom:865.142933pt;}
.y1b4{bottom:865.941040pt;}
.y1e2{bottom:865.942933pt;}
.y212{bottom:866.260533pt;}
.y2a3{bottom:866.473867pt;}
.y2cd{bottom:867.057973pt;}
.y5f{bottom:869.142667pt;}
.y2b7{bottom:871.973600pt;}
.y187{bottom:874.533733pt;}
.y1{bottom:879.110667pt;}
.y235{bottom:881.302933pt;}
.y18a{bottom:881.622933pt;}
.y286{bottom:881.942933pt;}
.y1b3{bottom:882.102800pt;}
.y211{bottom:882.262933pt;}
.y2cc{bottom:882.422933pt;}
.y2a2{bottom:882.476267pt;}
.yae{bottom:886.049333pt;}
.y2a1{bottom:888.133600pt;}
.y186{bottom:889.253600pt;}
.y88{bottom:892.716000pt;}
.y60{bottom:903.382667pt;}
.y234{bottom:912.049600pt;}
.y1b2{bottom:912.849467pt;}
.y210{bottom:913.009600pt;}
.y2{bottom:918.559067pt;}
.y2a0{bottom:918.880267pt;}
.y185{bottom:919.840267pt;}
.yd3{bottom:920.499333pt;}
.h9{height:-703.770667pt;}
.h7{height:-669.530667pt;}
.h18{height:-668.726667pt;}
.h17{height:-634.486667pt;}
.h1b{height:-288.884000pt;}
.h1a{height:-254.644000pt;}
.h21{height:-132.033333pt;}
.h20{height:-97.793333pt;}
.h25{height:-62.394667pt;}
.h24{height:-28.154667pt;}
.h19{height:7.642667pt;}
.h2e{height:12.800000pt;}
.h14{height:18.676875pt;}
.h4{height:29.625000pt;}
.h28{height:29.773125pt;}
.hc{height:29.794062pt;}
.h1d{height:31.550625pt;}
.h5{height:32.000000pt;}
.h16{height:32.507812pt;}
.h6{height:33.328125pt;}
.he{height:33.351562pt;}
.ha{height:34.359375pt;}
.h3{height:34.368000pt;}
.h15{height:34.676875pt;}
.h1e{height:34.685195pt;}
.h1f{height:34.688395pt;}
.hd{height:35.513333pt;}
.h30{height:35.975313pt;}
.h2c{height:36.883125pt;}
.h8{height:36.909063pt;}
.h29{height:38.024375pt;}
.h13{height:39.870625pt;}
.h10{height:44.468750pt;}
.hf{height:54.114062pt;}
.h23{height:55.864653pt;}
.h12{height:55.892813pt;}
.h26{height:57.354667pt;}
.h11{height:63.145625pt;}
.h2{height:66.352000pt;}
.hb{height:66.703125pt;}
.h22{height:141.732000pt;}
.h2d{height:205.626667pt;}
.h1c{height:362.834667pt;}
.h27{height:847.920000pt;}
.h2f{height:893.749333pt;}
.h2b{height:902.940000pt;}
.h2a{height:903.738667pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w6{width:-580.037333pt;}
.w7{width:-211.944000pt;}
.w8{width:-59.909333pt;}
.w9{width:16.090667pt;}
.w2{width:80.512000pt;}
.w4{width:152.026667pt;}
.wa{width:294.973333pt;}
.wb{width:302.466667pt;}
.w3{width:368.093333pt;}
.w5{width:709.669333pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x2f{left:-660.549333pt;}
.x30{left:-658.629333pt;}
.x29{left:-655.589333pt;}
.x2b{left:-645.349333pt;}
.x2c{left:-632.997333pt;}
.x31{left:-609.957333pt;}
.x32{left:-605.317200pt;}
.x33{left:-601.317200pt;}
.x23{left:-580.517200pt;}
.x24{left:-560.202533pt;}
.x35{left:-504.002667pt;}
.x27{left:-497.442667pt;}
.x2e{left:-488.642533pt;}
.x3f{left:-480.642533pt;}
.x2a{left:-432.002667pt;}
.x2d{left:-400.322533pt;}
.x25{left:-273.735867pt;}
.x28{left:-229.856000pt;}
.x3e{left:-164.096000pt;}
.x26{left:-57.989200pt;}
.x0{left:0.000000pt;}
.xe{left:16.000000pt;}
.x9{left:19.834667pt;}
.x38{left:23.232000pt;}
.x5{left:49.889733pt;}
.x4{left:51.912800pt;}
.x10{left:54.080000pt;}
.x6{left:65.120000pt;}
.x1b{left:67.040000pt;}
.x20{left:69.600000pt;}
.x12{left:76.672000pt;}
.x7{left:80.032000pt;}
.x18{left:81.120000pt;}
.xd{left:82.594667pt;}
.x19{left:83.872000pt;}
.x1e{left:92.672000pt;}
.x15{left:99.712000pt;}
.x1a{left:102.752000pt;}
.x16{left:104.352000pt;}
.x17{left:108.352000pt;}
.x1c{left:115.724160pt;}
.x1d{left:120.345547pt;}
.x8{left:145.632000pt;}
.xc{left:153.946667pt;}
.x34{left:205.666667pt;}
.x2{left:209.887200pt;}
.x14{left:221.026667pt;}
.x3{left:231.350000pt;}
.x21{left:237.026560pt;}
.x3d{left:245.026667pt;}
.x3b{left:250.146667pt;}
.x1{left:259.715200pt;}
.x11{left:277.666667pt;}
.x22{left:293.664000pt;}
.x36{left:301.373333pt;}
.xa{left:306.301333pt;}
.x13{left:309.346667pt;}
.x1f{left:325.347520pt;}
.x37{left:360.093333pt;}
.x39{left:363.773333pt;}
.xf{left:479.813333pt;}
.xb{left:513.733333pt;}
.x3c{left:561.573333pt;}
.x3a{left:579.333333pt;}
}




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