
    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_01a75a3196e967b4a48335d7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_587c015d1152c643e7003482.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899902;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_244c0a98a6a025f41946d27f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_8723b652c69d58edba1fac5c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_c137fc5236ff5b2122fb0696.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_c9fdbc0eb61191d9bdbfff89.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_06512ab90dc97bf8ccd42e0e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899902;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_4df766b8ae03eaa995a3b299.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_8c14dca1d1bcd3646ed2869a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.902344;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_9af7fa3debb2890eb3872909.woff')format("woff");}.ffa{font-family:ffa;line-height:0.881836;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_56ce3a8dff3a4d91bb9a5dae.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666992;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_3403c0924b2b3d1837bdbba8.woff')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_d4b6d264832a43718643e6ae.woff')format("woff");}.ffd{font-family:ffd;line-height:0.899414;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_f880cb19a8674e95bb275870.woff')format("woff");}.ffe{font-family:ffe;line-height:0.750000;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_216021e37cc5d22af02e3ad0.woff')format("woff");}.fff{font-family:fff;line-height:0.750000;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(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);}
.vc{vertical-align:-55.968000px;}
.v9{vertical-align:-33.600000px;}
.v3{vertical-align:-22.200000px;}
.v8{vertical-align:-14.400000px;}
.v5{vertical-align:-13.188000px;}
.va{vertical-align:-11.400000px;}
.v4{vertical-align:-1.110000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.vd{vertical-align:14.400000px;}
.v7{vertical-align:22.200000px;}
.v6{vertical-align:24.432000px;}
.v2{vertical-align:26.496000px;}
.vb{vertical-align:55.968000px;}
.lsa1{letter-spacing:-7.260000px;}
.ls95{letter-spacing:-6.600000px;}
.ls25{letter-spacing:-6.138000px;}
.ls8a{letter-spacing:-5.700000px;}
.ls3f{letter-spacing:-3.168000px;}
.ls7d{letter-spacing:-2.808000px;}
.ls97{letter-spacing:-2.574000px;}
.ls58{letter-spacing:-2.565000px;}
.ls57{letter-spacing:-2.223000px;}
.ls6f{letter-spacing:-1.656000px;}
.ls94{letter-spacing:-1.188000px;}
.ls7c{letter-spacing:-1.152000px;}
.ls81{letter-spacing:-1.140000px;}
.ls80{letter-spacing:-1.083000px;}
.ls2e{letter-spacing:-1.080000px;}
.ls78{letter-spacing:-1.008000px;}
.ls43{letter-spacing:-0.936000px;}
.ls44{letter-spacing:-0.864000px;}
.lsab{letter-spacing:-0.858000px;}
.ls60{letter-spacing:-0.792000px;}
.ls33{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.660000px;}
.ls6a{letter-spacing:-0.648000px;}
.ls41{letter-spacing:-0.627000px;}
.lsa0{letter-spacing:-0.594000px;}
.ls3c{letter-spacing:-0.576000px;}
.ls62{letter-spacing:-0.570000px;}
.lsb{letter-spacing:-0.528000px;}
.ls3d{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.462000px;}
.ls42{letter-spacing:-0.432000px;}
.ls40{letter-spacing:-0.399000px;}
.ls9{letter-spacing:-0.396000px;}
.ls20{letter-spacing:-0.360000px;}
.ls3e{letter-spacing:-0.345600px;}
.ls64{letter-spacing:-0.342000px;}
.lsa{letter-spacing:-0.330000px;}
.ls21{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.285000px;}
.ls93{letter-spacing:-0.264000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls96{letter-spacing:-0.198000px;}
.ls61{letter-spacing:-0.171000px;}
.ls1f{letter-spacing:-0.144000px;}
.lsa2{letter-spacing:-0.132000px;}
.ls7e{letter-spacing:-0.129600px;}
.ls63{letter-spacing:-0.114000px;}
.ls22{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.066000px;}
.ls65{letter-spacing:-0.057000px;}
.ls7{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.006000px;}
.ls9b{letter-spacing:0.010800px;}
.ls2b{letter-spacing:0.024600px;}
.ls4{letter-spacing:0.066000px;}
.ls29{letter-spacing:0.072000px;}
.ls76{letter-spacing:0.100800px;}
.ls68{letter-spacing:0.114000px;}
.ls36{letter-spacing:0.126000px;}
.lsa3{letter-spacing:0.132000px;}
.ls39{letter-spacing:0.140400px;}
.ls15{letter-spacing:0.144000px;}
.ls67{letter-spacing:0.171000px;}
.ls70{letter-spacing:0.187200px;}
.ls5{letter-spacing:0.198000px;}
.ls6c{letter-spacing:0.201600px;}
.ls14{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.244800px;}
.lsa8{letter-spacing:0.264000px;}
.ls1a{letter-spacing:0.285000px;}
.ls3a{letter-spacing:0.288000px;}
.ls59{letter-spacing:0.302400px;}
.lsae{letter-spacing:0.316800px;}
.ls90{letter-spacing:0.330000px;}
.ls32{letter-spacing:0.342000px;}
.ls74{letter-spacing:0.352800px;}
.ls11{letter-spacing:0.360000px;}
.ls7f{letter-spacing:0.388800px;}
.ls8b{letter-spacing:0.396000px;}
.ls7b{letter-spacing:0.410400px;}
.ls12{letter-spacing:0.432000px;}
.ls91{letter-spacing:0.462000px;}
.ls5b{letter-spacing:0.475200px;}
.ls17{letter-spacing:0.504000px;}
.ls99{letter-spacing:0.528000px;}
.ls18{letter-spacing:0.576000px;}
.ls30{letter-spacing:0.581400px;}
.ls98{letter-spacing:0.594000px;}
.ls73{letter-spacing:0.604800px;}
.ls31{letter-spacing:0.627000px;}
.ls13{letter-spacing:0.648000px;}
.ls9c{letter-spacing:0.660000px;}
.lse{letter-spacing:0.720000px;}
.ls8c{letter-spacing:0.726000px;}
.ls71{letter-spacing:0.770400px;}
.lsf{letter-spacing:0.792000px;}
.lsd{letter-spacing:0.858000px;}
.ls1c{letter-spacing:0.864000px;}
.ls9d{letter-spacing:0.924000px;}
.ls5d{letter-spacing:0.936000px;}
.ls92{letter-spacing:0.990000px;}
.ls5f{letter-spacing:1.008000px;}
.ls53{letter-spacing:1.083000px;}
.lsad{letter-spacing:1.152000px;}
.ls8e{letter-spacing:1.452000px;}
.ls8d{letter-spacing:1.584000px;}
.ls54{letter-spacing:1.728000px;}
.ls66{letter-spacing:2.520000px;}
.ls4f{letter-spacing:2.539800px;}
.ls52{letter-spacing:2.540400px;}
.ls24{letter-spacing:2.794800px;}
.ls1b{letter-spacing:3.600000px;}
.ls8f{letter-spacing:3.788400px;}
.ls2f{letter-spacing:3.790500px;}
.ls55{letter-spacing:4.018500px;}
.ls84{letter-spacing:4.026000px;}
.ls5a{letter-spacing:4.032000px;}
.ls56{letter-spacing:4.047000px;}
.ls38{letter-spacing:4.176900px;}
.ls0{letter-spacing:4.200000px;}
.ls72{letter-spacing:4.240800px;}
.ls5c{letter-spacing:4.392000px;}
.ls83{letter-spacing:4.639200px;}
.ls82{letter-spacing:4.669200px;}
.ls26{letter-spacing:4.686000px;}
.ls86{letter-spacing:4.689000px;}
.ls85{letter-spacing:4.717800px;}
.ls89{letter-spacing:4.815000px;}
.ls79{letter-spacing:5.256000px;}
.ls9a{letter-spacing:5.329800px;}
.ls50{letter-spacing:5.346000px;}
.ls23{letter-spacing:5.400000px;}
.ls6b{letter-spacing:5.544000px;}
.ls3{letter-spacing:6.000000px;}
.ls6d{letter-spacing:6.321600px;}
.ls1{letter-spacing:6.600000px;}
.ls10{letter-spacing:6.696000px;}
.ls45{letter-spacing:7.081200px;}
.ls6{letter-spacing:7.200000px;}
.ls9f{letter-spacing:7.590000px;}
.lsa6{letter-spacing:7.788000px;}
.lsac{letter-spacing:8.025600px;}
.ls88{letter-spacing:8.250000px;}
.ls9e{letter-spacing:8.844000px;}
.ls37{letter-spacing:9.090900px;}
.ls2c{letter-spacing:9.160800px;}
.ls51{letter-spacing:9.163800px;}
.ls2d{letter-spacing:9.180000px;}
.ls69{letter-spacing:9.256800px;}
.ls19{letter-spacing:9.360000px;}
.ls7a{letter-spacing:9.507600px;}
.ls77{letter-spacing:9.655200px;}
.ls2{letter-spacing:10.200000px;}
.ls75{letter-spacing:10.432800px;}
.lsa5{letter-spacing:10.956000px;}
.lsa7{letter-spacing:11.418000px;}
.lsa9{letter-spacing:11.577600px;}
.ls6e{letter-spacing:11.877600px;}
.lsa4{letter-spacing:11.880000px;}
.ls87{letter-spacing:12.870000px;}
.lsaa{letter-spacing:19.800000px;}
.ls2a{letter-spacing:38.789400px;}
.ls5e{letter-spacing:38.923200px;}
.ls3b{letter-spacing:38.923800px;}
.ls27{letter-spacing:44.923200px;}
.ls1d{letter-spacing:57.429000px;}
.ls4b{letter-spacing:139.854000px;}
.ls4a{letter-spacing:155.892000px;}
.ls4c{letter-spacing:158.202000px;}
.ls49{letter-spacing:172.854000px;}
.ls48{letter-spacing:191.202000px;}
.ls47{letter-spacing:232.386000px;}
.ls4d{letter-spacing:284.724000px;}
.ls4e{letter-spacing:326.304000px;}
.ls46{letter-spacing:453.354000px;}
.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;}
}
.ws6a{word-spacing:-172.920000px;}
.ws6e{word-spacing:-139.920000px;}
.ws3b{word-spacing:-66.000000px;}
.wsbd{word-spacing:-38.346000px;}
.ws2{word-spacing:-27.432000px;}
.wsa2{word-spacing:-22.860000px;}
.ws15{word-spacing:-21.024000px;}
.ws91{word-spacing:-20.520000px;}
.ws47{word-spacing:-20.448000px;}
.ws53{word-spacing:-20.232000px;}
.ws92{word-spacing:-20.160000px;}
.ws88{word-spacing:-20.088000px;}
.ws8f{word-spacing:-19.944000px;}
.ws4a{word-spacing:-19.872000px;}
.ws93{word-spacing:-19.800000px;}
.ws48{word-spacing:-19.656000px;}
.ws84{word-spacing:-19.512000px;}
.ws59{word-spacing:-19.296000px;}
.ws6{word-spacing:-18.546000px;}
.ws90{word-spacing:-18.504000px;}
.ws56{word-spacing:-18.360000px;}
.ws17{word-spacing:-18.288000px;}
.ws77{word-spacing:-18.216000px;}
.ws8e{word-spacing:-18.144000px;}
.ws89{word-spacing:-18.072000px;}
.wsbb{word-spacing:-17.952000px;}
.ws3e{word-spacing:-17.928000px;}
.ws8a{word-spacing:-17.856000px;}
.ws44{word-spacing:-17.829000px;}
.ws24{word-spacing:-17.784000px;}
.ws8b{word-spacing:-17.712000px;}
.ws45{word-spacing:-17.703000px;}
.wsbc{word-spacing:-17.688000px;}
.ws54{word-spacing:-17.640000px;}
.ws98{word-spacing:-17.568000px;}
.ws3f{word-spacing:-17.424000px;}
.ws55{word-spacing:-17.280000px;}
.ws5a{word-spacing:-17.064000px;}
.ws99{word-spacing:-16.992000px;}
.ws2e{word-spacing:-16.860000px;}
.ws57{word-spacing:-16.848000px;}
.wsbf{word-spacing:-16.764000px;}
.ws5d{word-spacing:-16.644000px;}
.wsc1{word-spacing:-16.566000px;}
.wsc2{word-spacing:-16.368000px;}
.ws41{word-spacing:-16.359000px;}
.ws19{word-spacing:-16.302000px;}
.ws40{word-spacing:-16.017000px;}
.ws5{word-spacing:-15.972000px;}
.ws94{word-spacing:-15.960000px;}
.wsc0{word-spacing:-15.906000px;}
.ws46{word-spacing:-15.561000px;}
.wsc4{word-spacing:-14.820000px;}
.ws27{word-spacing:-14.079000px;}
.ws8c{word-spacing:-13.338000px;}
.ws9a{word-spacing:-12.996000px;}
.ws97{word-spacing:-12.528000px;}
.ws78{word-spacing:-12.441600px;}
.ws30{word-spacing:-12.408000px;}
.ws18{word-spacing:-12.139200px;}
.wsb8{word-spacing:-11.880000px;}
.ws5b{word-spacing:-11.707200px;}
.wsba{word-spacing:-11.418000px;}
.ws31{word-spacing:-11.127600px;}
.wsb9{word-spacing:-10.956000px;}
.wsa0{word-spacing:-10.317000px;}
.ws1{word-spacing:-10.302000px;}
.wsb{word-spacing:-10.200000px;}
.ws26{word-spacing:-10.116000px;}
.ws4c{word-spacing:-9.610200px;}
.ws3d{word-spacing:-9.180000px;}
.wsbe{word-spacing:-9.000000px;}
.wsaf{word-spacing:-8.844000px;}
.wsa1{word-spacing:-8.250000px;}
.wsb7{word-spacing:-7.788000px;}
.wsb1{word-spacing:-7.590000px;}
.wsc3{word-spacing:-7.272000px;}
.ws1a{word-spacing:-7.200000px;}
.wsa{word-spacing:-6.600000px;}
.wsc{word-spacing:-6.000000px;}
.ws32{word-spacing:-5.400000px;}
.ws8{word-spacing:-4.200000px;}
.ws60{word-spacing:-3.888000px;}
.ws33{word-spacing:-3.600000px;}
.wsc5{word-spacing:-1.152000px;}
.ws7c{word-spacing:-1.008000px;}
.wsa6{word-spacing:-0.990000px;}
.ws7e{word-spacing:-0.936000px;}
.wsb2{word-spacing:-0.924000px;}
.ws2b{word-spacing:-0.864000px;}
.ws13{word-spacing:-0.858000px;}
.ws1c{word-spacing:-0.792000px;}
.wsa8{word-spacing:-0.726000px;}
.ws1b{word-spacing:-0.720000px;}
.wsb0{word-spacing:-0.660000px;}
.ws20{word-spacing:-0.648000px;}
.wsad{word-spacing:-0.594000px;}
.ws29{word-spacing:-0.576000px;}
.wsae{word-spacing:-0.528000px;}
.ws7b{word-spacing:-0.518400px;}
.ws1f{word-spacing:-0.504000px;}
.wsa3{word-spacing:-0.462000px;}
.ws1e{word-spacing:-0.432000px;}
.wsa4{word-spacing:-0.396000px;}
.ws1d{word-spacing:-0.360000px;}
.wsaa{word-spacing:-0.330000px;}
.ws16{word-spacing:-0.288000px;}
.ws86{word-spacing:-0.285000px;}
.ws3{word-spacing:-0.264000px;}
.ws22{word-spacing:-0.216000px;}
.wsf{word-spacing:-0.198000px;}
.ws85{word-spacing:-0.171000px;}
.ws21{word-spacing:-0.144000px;}
.wsb6{word-spacing:-0.132000px;}
.ws4d{word-spacing:-0.126000px;}
.ws87{word-spacing:-0.114000px;}
.ws3c{word-spacing:-0.072000px;}
.wse{word-spacing:-0.066000px;}
.ws14{word-spacing:-0.060000px;}
.ws76{word-spacing:-0.057000px;}
.ws0{word-spacing:-0.048000px;}
.ws25{word-spacing:-0.043200px;}
.ws9{word-spacing:0.000000px;}
.ws83{word-spacing:0.057000px;}
.wsd{word-spacing:0.066000px;}
.ws23{word-spacing:0.072000px;}
.ws81{word-spacing:0.114000px;}
.ws9d{word-spacing:0.129600px;}
.wsb5{word-spacing:0.132000px;}
.ws3a{word-spacing:0.144000px;}
.ws7f{word-spacing:0.171000px;}
.ws4b{word-spacing:0.172800px;}
.wsab{word-spacing:0.198000px;}
.ws28{word-spacing:0.216000px;}
.ws7{word-spacing:0.264000px;}
.ws43{word-spacing:0.285000px;}
.ws2d{word-spacing:0.288000px;}
.ws49{word-spacing:0.302400px;}
.ws4{word-spacing:0.330000px;}
.ws82{word-spacing:0.342000px;}
.ws2c{word-spacing:0.360000px;}
.ws10{word-spacing:0.396000px;}
.ws51{word-spacing:0.399000px;}
.ws5e{word-spacing:0.432000px;}
.ws12{word-spacing:0.462000px;}
.ws4f{word-spacing:0.504000px;}
.ws11{word-spacing:0.528000px;}
.ws80{word-spacing:0.570000px;}
.ws4e{word-spacing:0.576000px;}
.wsb3{word-spacing:0.594000px;}
.ws52{word-spacing:0.627000px;}
.ws5c{word-spacing:0.648000px;}
.ws39{word-spacing:0.660000px;}
.ws42{word-spacing:0.720000px;}
.ws7d{word-spacing:0.792000px;}
.ws58{word-spacing:0.864000px;}
.ws96{word-spacing:0.936000px;}
.ws95{word-spacing:1.008000px;}
.ws5f{word-spacing:1.080000px;}
.ws9f{word-spacing:1.083000px;}
.ws9e{word-spacing:1.140000px;}
.ws9b{word-spacing:1.152000px;}
.wsa7{word-spacing:1.188000px;}
.ws8d{word-spacing:1.656000px;}
.ws79{word-spacing:2.223000px;}
.ws7a{word-spacing:2.565000px;}
.wsac{word-spacing:2.574000px;}
.ws9c{word-spacing:2.808000px;}
.ws50{word-spacing:3.168000px;}
.ws2a{word-spacing:5.040000px;}
.wsa5{word-spacing:6.138000px;}
.wsa9{word-spacing:6.600000px;}
.wsb4{word-spacing:7.260000px;}
.ws6f{word-spacing:96.822000px;}
.ws35{word-spacing:106.920000px;}
.ws36{word-spacing:115.698000px;}
.ws69{word-spacing:129.822000px;}
.ws62{word-spacing:138.798000px;}
.ws71{word-spacing:139.788000px;}
.ws63{word-spacing:154.308000px;}
.ws37{word-spacing:161.416200px;}
.ws38{word-spacing:164.010000px;}
.ws34{word-spacing:165.640200px;}
.ws6b{word-spacing:191.136000px;}
.ws6d{word-spacing:213.840000px;}
.ws61{word-spacing:263.736000px;}
.ws73{word-spacing:292.182000px;}
.ws75{word-spacing:299.970000px;}
.ws74{word-spacing:306.834000px;}
.ws6c{word-spacing:310.530000px;}
.ws68{word-spacing:379.632000px;}
.ws66{word-spacing:383.922000px;}
.ws67{word-spacing:394.482000px;}
.ws65{word-spacing:412.962000px;}
.ws64{word-spacing:486.486000px;}
.ws70{word-spacing:608.850000px;}
.ws2f{word-spacing:699.138000px;}
.ws72{word-spacing:897.732000px;}
._2e{margin-left:-139.788000px;}
._39{margin-left:-20.698133px;}
._1a{margin-left:-19.536000px;}
._12{margin-left:-16.632000px;}
._10{margin-left:-15.611867px;}
._21{margin-left:-13.219200px;}
._38{margin-left:-11.711700px;}
._3a{margin-left:-10.692000px;}
._9{margin-left:-9.298800px;}
._20{margin-left:-8.051400px;}
._4{margin-left:-6.738600px;}
._3{margin-left:-5.583600px;}
._0{margin-left:-3.565800px;}
._d{margin-left:-2.138400px;}
._11{margin-left:-1.009800px;}
._c{width:1.199933px;}
._2{width:2.228133px;}
._1{width:3.452400px;}
._6{width:4.989600px;}
._b{width:6.242400px;}
._f{width:7.570200px;}
._e{width:9.075600px;}
._a{width:10.200000px;}
._5{width:11.259600px;}
._14{width:13.032300px;}
._3d{width:14.054100px;}
._7{width:16.500000px;}
._8{width:18.292200px;}
._3b{width:21.146400px;}
._3c{width:22.177800px;}
._32{width:26.391000px;}
._22{width:38.923200px;}
._13{width:56.923200px;}
._36{width:109.671600px;}
._35{width:134.487600px;}
._27{width:148.368000px;}
._37{width:151.251600px;}
._28{width:155.892000px;}
._25{width:164.472000px;}
._26{width:168.498000px;}
._1d{width:179.520000px;}
._1f{width:182.556000px;}
._19{width:187.968000px;}
._18{width:191.004000px;}
._34{width:216.282000px;}
._33{width:220.572000px;}
._2d{width:232.386000px;}
._31{width:257.367667px;}
._1e{width:281.682067px;}
._30{width:326.259867px;}
._24{width:330.363000px;}
._23{width:362.382267px;}
._2b{width:380.028000px;}
._2c{width:461.142000px;}
._17{width:483.780000px;}
._1c{width:488.070000px;}
._16{width:490.476333px;}
._1b{width:541.494333px;}
._2f{width:592.838400px;}
._2a{width:644.160000px;}
._15{width:744.942000px;}
._29{width:858.528000px;}
.fc6{color:rgb(192,37,37);}
.fc5{color:rgb(188,77,75);}
.fc7{color:rgb(102,102,156);}
.fc3{color:rgb(58,64,71);}
.fc2{color:rgb(5,7,20);}
.fc1{color:rgb(0,0,255);}
.fc8{color:rgb(0,0,143);}
.fc4{color:rgb(129,129,129);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.200000px;}
.fs7{font-size:36.000000px;}
.fsb{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:76.339350px;}
.y1{bottom:78.334500px;}
.y20a{bottom:140.295450px;}
.y154{bottom:140.308950px;}
.y286{bottom:140.310450px;}
.y44{bottom:140.311950px;}
.y195{bottom:140.313450px;}
.ydc{bottom:141.045450px;}
.y365{bottom:142.266900px;}
.y318{bottom:142.518900px;}
.y340{bottom:142.654800px;}
.y3a9{bottom:143.269800px;}
.y2f2{bottom:143.522850px;}
.yb2{bottom:143.547900px;}
.y387{bottom:144.628800px;}
.y134{bottom:145.100400px;}
.y22{bottom:145.863600px;}
.y8b{bottom:149.016300px;}
.y1b2{bottom:149.349300px;}
.y114{bottom:149.569350px;}
.y2cc{bottom:149.932350px;}
.y2a7{bottom:150.616800px;}
.y209{bottom:156.796950px;}
.y153{bottom:156.810450px;}
.y285{bottom:156.811950px;}
.y43{bottom:156.813450px;}
.ydb{bottom:157.546950px;}
.y33f{bottom:162.306300px;}
.y317{bottom:162.318900px;}
.y194{bottom:162.364950px;}
.y364{bottom:162.512400px;}
.y386{bottom:164.280300px;}
.y3a8{bottom:164.869800px;}
.yb1{bottom:165.147900px;}
.y21{bottom:166.406100px;}
.y133{bottom:167.150400px;}
.y113{bottom:168.775350px;}
.y8a{bottom:168.816300px;}
.y2cb{bottom:170.029350px;}
.y1b1{bottom:170.650800px;}
.y2a6{bottom:170.713800px;}
.y208{bottom:173.298450px;}
.y1e6{bottom:173.310450px;}
.y152{bottom:173.311950px;}
.y193{bottom:173.313450px;}
.yda{bottom:174.048450px;}
.y2f1{bottom:177.632850px;}
.y42{bottom:178.864950px;}
.y33e{bottom:181.957800px;}
.y316{bottom:182.118900px;}
.y363{bottom:182.757900px;}
.y385{bottom:183.931800px;}
.y3a7{bottom:186.469800px;}
.yb0{bottom:186.747900px;}
.y20{bottom:186.948600px;}
.y112{bottom:187.981350px;}
.y89{bottom:188.616300px;}
.y132{bottom:189.200400px;}
.y22c{bottom:189.796950px;}
.y207{bottom:189.799950px;}
.y1e5{bottom:189.811950px;}
.y41{bottom:189.813450px;}
.y2ca{bottom:190.126350px;}
.y2a5{bottom:190.810800px;}
.y1b0{bottom:191.952300px;}
.y63{bottom:195.364950px;}
.y2f0{bottom:197.432850px;}
.y267{bottom:198.270300px;}
.y33d{bottom:201.609300px;}
.y315{bottom:201.918900px;}
.y362{bottom:203.003400px;}
.y384{bottom:203.583300px;}
.yd8{bottom:204.166800px;}
.y22b{bottom:206.298450px;}
.y206{bottom:206.301450px;}
.y62{bottom:206.307450px;}
.y24b{bottom:206.311950px;}
.y1e4{bottom:206.313450px;}
.y111{bottom:207.187350px;}
.y1f{bottom:207.491100px;}
.y3a6{bottom:207.925800px;}
.yaf{bottom:208.347900px;}
.y88{bottom:208.416300px;}
.y2c9{bottom:210.223350px;}
.y2a4{bottom:210.907800px;}
.y131{bottom:211.250400px;}
.y40{bottom:211.864950px;}
.y1af{bottom:213.253800px;}
.y2ef{bottom:217.232850px;}
.y266{bottom:219.726300px;}
.y33c{bottom:221.260800px;}
.y314{bottom:221.718900px;}
.y22a{bottom:222.799950px;}
.y205{bottom:222.802950px;}
.y61{bottom:222.808950px;}
.y173{bottom:222.813450px;}
.y383{bottom:223.234800px;}
.y361{bottom:223.248900px;}
.yd7{bottom:224.263800px;}
.y115{bottom:226.376850px;}
.y110{bottom:226.393350px;}
.y1e{bottom:228.033600px;}
.y87{bottom:228.216300px;}
.y151{bottom:228.364950px;}
.y3a5{bottom:229.381800px;}
.yae{bottom:229.947900px;}
.y2c8{bottom:230.320350px;}
.y2a3{bottom:231.004800px;}
.y192{bottom:233.110350px;}
.y130{bottom:233.300400px;}
.y1ae{bottom:234.555300px;}
.y3c2{bottom:236.514300px;}
.y2ee{bottom:237.032850px;}
.y229{bottom:239.301450px;}
.y204{bottom:239.304450px;}
.y60{bottom:239.310450px;}
.y33b{bottom:240.912300px;}
.y265{bottom:241.182300px;}
.y313{bottom:241.518900px;}
.y382{bottom:242.886300px;}
.y360{bottom:243.494400px;}
.yd6{bottom:244.360800px;}
.y172{bottom:244.864950px;}
.y1d1{bottom:247.437000px;}
.y86{bottom:248.016300px;}
.y1d{bottom:248.576100px;}
.y2c7{bottom:250.445850px;}
.y3a4{bottom:250.837800px;}
.y2a2{bottom:251.101800px;}
.y3f{bottom:251.375850px;}
.y191{bottom:253.810350px;}
.y10e{bottom:254.377350px;}
.y3c1{bottom:254.514300px;}
.y12f{bottom:255.350400px;}
.y228{bottom:255.802950px;}
.y203{bottom:255.805950px;}
.y5f{bottom:255.811950px;}
.y171{bottom:255.813450px;}
.y2ed{bottom:256.832850px;}
.y33a{bottom:260.563800px;}
.y312{bottom:261.318900px;}
.y381{bottom:262.537800px;}
.y1ad{bottom:262.539300px;}
.y264{bottom:262.638300px;}
.y284{bottom:263.560350px;}
.y35f{bottom:263.739900px;}
.yd5{bottom:264.457800px;}
.yad{bottom:266.547900px;}
.y85{bottom:267.816300px;}
.y1d0{bottom:269.037000px;}
.y1c{bottom:269.118600px;}
.y150{bottom:270.390300px;}
.y1e3{bottom:270.690300px;}
.y2a1{bottom:271.198800px;}
.y3a3{bottom:272.293800px;}
.y227{bottom:272.304450px;}
.y202{bottom:272.307450px;}
.y5e{bottom:272.313450px;}
.y3c0{bottom:272.514300px;}
.y3e{bottom:273.119850px;}
.y10d{bottom:273.583350px;}
.y190{bottom:274.510350px;}
.y2ec{bottom:276.632850px;}
.y12e{bottom:277.400400px;}
.y170{bottom:277.864950px;}
.y339{bottom:280.215300px;}
.y311{bottom:281.118900px;}
.y380{bottom:282.189300px;}
.y1ac{bottom:283.840800px;}
.y35e{bottom:283.985400px;}
.y263{bottom:284.094300px;}
.y24a{bottom:284.208300px;}
.yd4{bottom:284.554800px;}
.y283{bottom:284.710350px;}
.y2c6{bottom:285.541350px;}
.y84{bottom:287.616300px;}
.y226{bottom:288.805950px;}
.y201{bottom:288.808950px;}
.y1b{bottom:289.661100px;}
.y3bf{bottom:290.514300px;}
.y1cf{bottom:290.637000px;}
.y2a0{bottom:291.295800px;}
.y14f{bottom:292.296300px;}
.y1e2{bottom:292.596300px;}
.y10f{bottom:292.772850px;}
.y10c{bottom:292.789350px;}
.y3a2{bottom:293.749800px;}
.y5d{bottom:294.364950px;}
.y3d{bottom:294.863850px;}
.y18f{bottom:295.210350px;}
.y2eb{bottom:296.432850px;}
.y12d{bottom:299.450400px;}
.y338{bottom:299.866800px;}
.y310{bottom:300.918900px;}
.y37f{bottom:301.840800px;}
.y35d{bottom:304.230900px;}
.yd3{bottom:304.651800px;}
.y1ab{bottom:305.142300px;}
.y225{bottom:305.307450px;}
.y200{bottom:305.310450px;}
.y262{bottom:305.550300px;}
.y2c5{bottom:305.638350px;}
.y249{bottom:305.646300px;}
.y282{bottom:305.860350px;}
.y83{bottom:307.416300px;}
.y1a{bottom:310.203600px;}
.y1ce{bottom:312.237000px;}
.y14e{bottom:314.202300px;}
.y1e1{bottom:314.502300px;}
.y3a1{bottom:315.205800px;}
.y18e{bottom:315.910350px;}
.y2ea{bottom:316.232850px;}
.y3c{bottom:316.698000px;}
.y337{bottom:319.518300px;}
.y30f{bottom:320.718900px;}
.y10b{bottom:320.756850px;}
.yaa{bottom:321.004350px;}
.y37e{bottom:321.492300px;}
.y12c{bottom:321.500400px;}
.y224{bottom:321.808950px;}
.y1ff{bottom:321.811950px;}
.y35c{bottom:324.476400px;}
.yd2{bottom:324.748800px;}
.y16f{bottom:325.070100px;}
.y2c4{bottom:325.735350px;}
.y261{bottom:327.006300px;}
.y281{bottom:327.010350px;}
.y248{bottom:327.102300px;}
.y82{bottom:327.216300px;}
.y8c{bottom:327.810300px;}
.y3be{bottom:330.114300px;}
.y19{bottom:330.746100px;}
.y29f{bottom:331.990350px;}
.y1aa{bottom:333.126300px;}
.y1cd{bottom:333.837000px;}
.y2e9{bottom:336.032850px;}
.y14d{bottom:336.108300px;}
.y1e0{bottom:336.408300px;}
.y18d{bottom:336.610350px;}
.y3a0{bottom:336.661800px;}
.y5c{bottom:337.410300px;}
.y223{bottom:338.310450px;}
.y1fe{bottom:338.313450px;}
.y3b{bottom:338.442000px;}
.y336{bottom:339.169800px;}
.y10a{bottom:339.962850px;}
.y30e{bottom:340.518900px;}
.y37d{bottom:341.143800px;}
.ya9{bottom:341.398350px;}
.y35b{bottom:344.721900px;}
.yd1{bottom:344.845800px;}
.y2c3{bottom:345.832350px;}
.y16e{bottom:346.976100px;}
.y81{bottom:347.016300px;}
.y280{bottom:348.160350px;}
.y260{bottom:348.462300px;}
.y247{bottom:348.558300px;}
.y3bd{bottom:349.914300px;}
.y18{bottom:351.288600px;}
.y29e{bottom:353.734350px;}
.y222{bottom:354.811950px;}
.y1cc{bottom:355.437000px;}
.y2e8{bottom:355.832850px;}
.y18c{bottom:357.310350px;}
.y14c{bottom:357.972300px;}
.y1df{bottom:358.230300px;}
.y335{bottom:358.821300px;}
.y12b{bottom:359.000400px;}
.y5b{bottom:359.766300px;}
.y3a{bottom:360.186000px;}
.y30d{bottom:360.318900px;}
.y1fd{bottom:360.364950px;}
.y37c{bottom:360.795300px;}
.y1a9{bottom:361.110300px;}
.ya8{bottom:361.792350px;}
.yd0{bottom:364.942800px;}
.yd9{bottom:364.959300px;}
.y35a{bottom:364.967400px;}
.y2c2{bottom:365.929350px;}
.y107{bottom:367.946850px;}
.y104{bottom:367.963350px;}
.y16d{bottom:368.882100px;}
.y27f{bottom:369.310350px;}
.y25f{bottom:369.918300px;}
.y246{bottom:369.942300px;}
.y221{bottom:371.313450px;}
.y7e{bottom:374.997300px;}
.y29d{bottom:375.478350px;}
.y2e7{bottom:375.632850px;}
.y39f{bottom:376.111800px;}
.y1cb{bottom:377.037000px;}
.y18b{bottom:378.010350px;}
.y334{bottom:378.472800px;}
.y14b{bottom:379.878300px;}
.y30c{bottom:380.118900px;}
.y1de{bottom:380.136300px;}
.y17{bottom:380.342550px;}
.y37b{bottom:380.446800px;}
.y39{bottom:381.930000px;}
.y5a{bottom:382.122300px;}
.ya7{bottom:382.186350px;}
.y359{bottom:385.212900px;}
.y2c1{bottom:386.026350px;}
.y109{bottom:387.136350px;}
.y106{bottom:387.152850px;}
.y103{bottom:387.169350px;}
.y3bc{bottom:387.714300px;}
.y220{bottom:387.814950px;}
.y1a8{bottom:389.094300px;}
.y27e{bottom:390.460350px;}
.y16c{bottom:390.788100px;}
.y25e{bottom:391.374300px;}
.y245{bottom:391.398300px;}
.ycc{bottom:392.910300px;}
.y7d{bottom:394.797300px;}
.y2e6{bottom:395.432850px;}
.y29c{bottom:397.222350px;}
.y333{bottom:398.124300px;}
.y1ca{bottom:398.637000px;}
.y18a{bottom:398.710350px;}
.y30b{bottom:399.918900px;}
.y37a{bottom:400.098300px;}
.y1fc{bottom:400.810350px;}
.y14a{bottom:401.784300px;}
.y1dd{bottom:402.042300px;}
.ya6{bottom:402.580350px;}
.y38{bottom:403.674000px;}
.y59{bottom:404.478300px;}
.y358{bottom:405.458400px;}
.y2c0{bottom:406.123350px;}
.y108{bottom:406.342350px;}
.y105{bottom:406.358850px;}
.y102{bottom:406.375350px;}
.y3bb{bottom:409.314300px;}
.y27d{bottom:411.610350px;}
.y16b{bottom:412.694100px;}
.y25d{bottom:412.830300px;}
.y244{bottom:412.854300px;}
.ycb{bottom:413.007300px;}
.y39e{bottom:413.911800px;}
.y7c{bottom:414.597300px;}
.y2e5{bottom:415.232850px;}
.y1a7{bottom:417.078300px;}
.y332{bottom:417.775800px;}
.y29b{bottom:418.966350px;}
.y189{bottom:419.410350px;}
.y30a{bottom:419.718900px;}
.y379{bottom:419.749800px;}
.y1c9{bottom:420.237000px;}
.y12a{bottom:420.454350px;}
.y1fb{bottom:422.410350px;}
.ya5{bottom:422.974350px;}
.y149{bottom:423.690300px;}
.y1dc{bottom:423.948300px;}
.y16{bottom:425.125050px;}
.y37{bottom:425.418000px;}
.y357{bottom:425.703900px;}
.y2bf{bottom:426.257850px;}
.y58{bottom:426.834300px;}
.y21f{bottom:429.208350px;}
.y3ba{bottom:430.914300px;}
.y27c{bottom:432.760350px;}
.yca{bottom:433.104300px;}
.ycf{bottom:433.120800px;}
.y25c{bottom:434.286300px;}
.y243{bottom:434.310300px;}
.yff{bottom:434.359350px;}
.y7b{bottom:434.397300px;}
.y16a{bottom:434.552100px;}
.y2e4{bottom:435.032850px;}
.y39d{bottom:435.511800px;}
.y331{bottom:437.427300px;}
.y378{bottom:439.401300px;}
.y309{bottom:439.518900px;}
.y188{bottom:440.110350px;}
.y29a{bottom:440.710350px;}
.y1c8{bottom:441.837000px;}
.ya4{bottom:443.368350px;}
.y1fa{bottom:444.010350px;}
.y1a6{bottom:445.062300px;}
.y148{bottom:445.596300px;}
.y15{bottom:445.667550px;}
.y1db{bottom:445.854300px;}
.y36{bottom:447.162000px;}
.y57{bottom:449.190300px;}
.y21e{bottom:450.664350px;}
.y129{bottom:451.902600px;}
.y3b9{bottom:452.514300px;}
.yc9{bottom:453.201300px;}
.yce{bottom:453.217800px;}
.yfe{bottom:453.565350px;}
.y27b{bottom:453.910350px;}
.y7a{bottom:454.197300px;}
.y356{bottom:454.458000px;}
.y80{bottom:454.794300px;}
.y2e3{bottom:454.832850px;}
.y25b{bottom:455.742300px;}
.y242{bottom:455.766300px;}
.y169{bottom:456.458100px;}
.y330{bottom:457.078800px;}
.y39c{bottom:457.111800px;}
.y377{bottom:459.052800px;}
.y308{bottom:459.318900px;}
.y187{bottom:460.810350px;}
.y2be{bottom:461.204850px;}
.y1c7{bottom:463.437000px;}
.ya3{bottom:463.762350px;}
.y1f9{bottom:465.610350px;}
.y14{bottom:466.210050px;}
.y147{bottom:467.502300px;}
.y1da{bottom:467.760300px;}
.y35{bottom:468.906000px;}
.y299{bottom:470.964300px;}
.y56{bottom:471.546300px;}
.y21d{bottom:471.958350px;}
.y128{bottom:472.005750px;}
.yfd{bottom:472.771350px;}
.yfa{bottom:472.787850px;}
.yf7{bottom:472.804350px;}
.yc8{bottom:473.298300px;}
.ycd{bottom:473.314800px;}
.y79{bottom:473.997300px;}
.y7f{bottom:474.000300px;}
.y3b8{bottom:474.114300px;}
.y2e2{bottom:474.631350px;}
.y27a{bottom:475.060350px;}
.y32f{bottom:476.730300px;}
.y25a{bottom:477.198300px;}
.y241{bottom:477.222300px;}
.y168{bottom:478.364100px;}
.y376{bottom:478.704300px;}
.y307{bottom:479.118900px;}
.y1a5{bottom:479.230800px;}
.y2bd{bottom:481.153350px;}
.y186{bottom:481.510350px;}
.ya2{bottom:484.156350px;}
.y1c6{bottom:485.037000px;}
.y13{bottom:486.752550px;}
.y1f8{bottom:487.210350px;}
.y146{bottom:489.408300px;}
.y1d9{bottom:489.666300px;}
.y34{bottom:490.650000px;}
.y101{bottom:491.960850px;}
.yfc{bottom:491.977350px;}
.yf9{bottom:491.993850px;}
.yf6{bottom:492.010350px;}
.y127{bottom:492.102750px;}
.y21c{bottom:493.252350px;}
.y55{bottom:493.902300px;}
.y3b7{bottom:495.714300px;}
.y279{bottom:496.210350px;}
.y32e{bottom:496.381800px;}
.y375{bottom:498.355800px;}
.y259{bottom:498.654300px;}
.y240{bottom:498.678300px;}
.y306{bottom:498.918900px;}
.y167{bottom:500.270100px;}
.y2bc{bottom:501.101850px;}
.yc5{bottom:501.265800px;}
.y78{bottom:501.981300px;}
.y185{bottom:502.210350px;}
.y355{bottom:503.556300px;}
.ya1{bottom:504.550350px;}
.y39b{bottom:505.111800px;}
.y1c5{bottom:506.637000px;}
.y12{bottom:507.295050px;}
.y1f7{bottom:508.810350px;}
.y2e1{bottom:509.132850px;}
.y100{bottom:511.166850px;}
.yfb{bottom:511.183350px;}
.yf8{bottom:511.199850px;}
.yf5{bottom:511.216350px;}
.y145{bottom:511.302300px;}
.y1d8{bottom:511.572300px;}
.y126{bottom:512.199750px;}
.y33{bottom:512.394000px;}
.y21b{bottom:514.546350px;}
.y32d{bottom:516.033300px;}
.y54{bottom:516.258300px;}
.y3b6{bottom:517.314300px;}
.y278{bottom:517.360350px;}
.y374{bottom:518.007300px;}
.y305{bottom:518.718900px;}
.y258{bottom:520.110300px;}
.y23f{bottom:520.134300px;}
.y1a4{bottom:520.629300px;}
.y2bb{bottom:521.050350px;}
.yc4{bottom:521.362800px;}
.y77{bottom:521.781300px;}
.y166{bottom:522.176100px;}
.y184{bottom:522.910350px;}
.y39a{bottom:523.111800px;}
.y354{bottom:523.801800px;}
.ya0{bottom:524.944350px;}
.y11{bottom:527.837550px;}
.y1c4{bottom:528.237000px;}
.y2e0{bottom:528.932850px;}
.y1f6{bottom:530.410350px;}
.y125{bottom:532.292100px;}
.y144{bottom:533.208300px;}
.y1d7{bottom:533.478300px;}
.y32{bottom:534.138000px;}
.y32c{bottom:535.684800px;}
.y21a{bottom:535.840350px;}
.y298{bottom:536.322300px;}
.y1a3{bottom:537.130800px;}
.y373{bottom:537.658800px;}
.y304{bottom:538.518900px;}
.y53{bottom:538.614300px;}
.y3b5{bottom:538.914300px;}
.yf2{bottom:539.200350px;}
.y2ba{bottom:540.998850px;}
.y399{bottom:541.111800px;}
.yc3{bottom:541.459800px;}
.yc7{bottom:541.476300px;}
.y257{bottom:541.566300px;}
.y76{bottom:541.581300px;}
.y23e{bottom:541.590300px;}
.y353{bottom:544.047300px;}
.y165{bottom:544.082100px;}
.y9f{bottom:545.338350px;}
.y277{bottom:547.014300px;}
.y10{bottom:548.380050px;}
.y2df{bottom:548.732850px;}
.y1c3{bottom:549.837000px;}
.y1f5{bottom:552.010350px;}
.y183{bottom:552.114300px;}
.y143{bottom:555.114300px;}
.y32b{bottom:555.336300px;}
.y1d6{bottom:555.384300px;}
.y31{bottom:555.882000px;}
.y219{bottom:557.134350px;}
.y372{bottom:557.310300px;}
.y297{bottom:558.066300px;}
.y303{bottom:558.318900px;}
.yf1{bottom:558.406350px;}
.yee{bottom:558.422850px;}
.y398{bottom:559.111800px;}
.y3b4{bottom:560.514300px;}
.y2b9{bottom:560.947350px;}
.y75{bottom:561.381300px;}
.yc2{bottom:561.556800px;}
.yc6{bottom:561.573300px;}
.y124{bottom:562.908750px;}
.y256{bottom:563.022300px;}
.y23d{bottom:563.046300px;}
.y352{bottom:564.292800px;}
.y9e{bottom:565.732350px;}
.y164{bottom:565.988100px;}
.y1a2{bottom:566.920800px;}
.y2de{bottom:568.532850px;}
.yf{bottom:568.922550px;}
.y1c2{bottom:571.437000px;}
.y182{bottom:572.814300px;}
.y1f4{bottom:573.610350px;}
.y32a{bottom:574.987800px;}
.y52{bottom:576.696300px;}
.y371{bottom:576.961800px;}
.y142{bottom:577.014300px;}
.y1d5{bottom:577.290300px;}
.yf4{bottom:577.595850px;}
.yf0{bottom:577.612350px;}
.y30{bottom:577.626000px;}
.yed{bottom:577.628850px;}
.y302{bottom:578.118900px;}
.y218{bottom:578.428350px;}
.y296{bottom:579.810300px;}
.y2b8{bottom:580.895850px;}
.y74{bottom:581.181300px;}
.y3b3{bottom:582.114300px;}
.y123{bottom:583.005750px;}
.y255{bottom:584.478300px;}
.y23c{bottom:584.502300px;}
.y351{bottom:584.538300px;}
.y9d{bottom:586.126350px;}
.y163{bottom:587.894100px;}
.y2dd{bottom:588.332850px;}
.ye{bottom:589.465050px;}
.yc1{bottom:589.540800px;}
.y1c1{bottom:593.037000px;}
.y329{bottom:594.639300px;}
.y1a1{bottom:594.904800px;}
.y1f3{bottom:595.210350px;}
.yf3{bottom:596.801850px;}
.yef{bottom:596.818350px;}
.yec{bottom:596.834850px;}
.y301{bottom:597.918900px;}
.y397{bottom:598.560300px;}
.y1d4{bottom:599.196300px;}
.y2f{bottom:599.370000px;}
.y217{bottom:599.722350px;}
.y2b7{bottom:600.844350px;}
.y73{bottom:600.978300px;}
.y295{bottom:601.554300px;}
.y122{bottom:603.102750px;}
.y3b2{bottom:603.714300px;}
.y350{bottom:604.783800px;}
.y254{bottom:605.934300px;}
.y23b{bottom:605.958300px;}
.y9c{bottom:606.520350px;}
.y2dc{bottom:608.132850px;}
.yc0{bottom:609.637800px;}
.y162{bottom:609.794100px;}
.yd{bottom:610.007550px;}
.y276{bottom:610.464300px;}
.y141{bottom:612.414300px;}
.y328{bottom:614.290800px;}
.y370{bottom:614.461800px;}
.y51{bottom:614.802300px;}
.y1f2{bottom:616.810350px;}
.y300{bottom:617.718900px;}
.y396{bottom:618.211800px;}
.y72{bottom:620.778300px;}
.y2b6{bottom:620.792850px;}
.y216{bottom:621.016350px;}
.y1d3{bottom:621.102300px;}
.y2e{bottom:621.114000px;}
.y1a0{bottom:622.888800px;}
.y121{bottom:623.198250px;}
.y294{bottom:623.298300px;}
.y181{bottom:624.114300px;}
.yeb{bottom:624.802350px;}
.y34f{bottom:625.029300px;}
.y3b1{bottom:625.314300px;}
.y9b{bottom:626.914350px;}
.y23a{bottom:627.330300px;}
.y253{bottom:627.390300px;}
.y2db{bottom:627.932850px;}
.yc{bottom:630.550050px;}
.y275{bottom:631.614300px;}
.y161{bottom:631.676100px;}
.y327{bottom:633.942300px;}
.y1c0{bottom:636.219000px;}
.y50{bottom:637.158300px;}
.y2ff{bottom:637.518900px;}
.ybe{bottom:637.621800px;}
.y1f1{bottom:638.410350px;}
.y71{bottom:640.578300px;}
.y2b5{bottom:640.741350px;}
.y215{bottom:642.310350px;}
.y2d{bottom:642.894000px;}
.y1d2{bottom:643.008300px;}
.y120{bottom:643.295250px;}
.yea{bottom:644.008350px;}
.y180{bottom:644.814300px;}
.y293{bottom:645.042300px;}
.y34e{bottom:645.274800px;}
.y3b0{bottom:646.914300px;}
.y9a{bottom:647.308350px;}
.y2da{bottom:647.732850px;}
.y239{bottom:648.786300px;}
.y252{bottom:648.846300px;}
.y19f{bottom:650.872800px;}
.yb{bottom:651.092550px;}
.y36f{bottom:651.955800px;}
.y1bf{bottom:652.720500px;}
.y274{bottom:652.764300px;}
.y160{bottom:653.582100px;}
.y326{bottom:653.593800px;}
.y395{bottom:655.669800px;}
.y2fe{bottom:657.318900px;}
.ybd{bottom:657.718800px;}
.y4f{bottom:659.514300px;}
.y1f0{bottom:660.010350px;}
.y70{bottom:660.378300px;}
.y2b4{bottom:660.689850px;}
.y2c{bottom:664.638000px;}
.y140{bottom:664.842300px;}
.y17f{bottom:665.514300px;}
.y34d{bottom:665.520300px;}
.y292{bottom:666.786300px;}
.y2d9{bottom:667.532850px;}
.y99{bottom:667.702350px;}
.y3af{bottom:668.514300px;}
.y1be{bottom:669.222000px;}
.y238{bottom:670.242300px;}
.y251{bottom:670.302300px;}
.ye8{bottom:671.992350px;}
.y214{bottom:672.114300px;}
.y325{bottom:673.245300px;}
.y36e{bottom:673.411800px;}
.y11f{bottom:673.902750px;}
.y273{bottom:673.914300px;}
.y394{bottom:675.172800px;}
.y15f{bottom:675.488100px;}
.y2fd{bottom:677.118900px;}
.ybc{bottom:677.815800px;}
.y19e{bottom:678.856800px;}
.ya{bottom:680.146500px;}
.y6f{bottom:680.178300px;}
.y2b3{bottom:680.638350px;}
.y1ef{bottom:681.610350px;}
.y1bd{bottom:685.723500px;}
.y34c{bottom:685.765800px;}
.y17e{bottom:686.214300px;}
.y2b{bottom:686.382000px;}
.y13f{bottom:686.748300px;}
.y2d8{bottom:687.331350px;}
.y98{bottom:688.096350px;}
.y291{bottom:688.530300px;}
.y3ae{bottom:690.114300px;}
.ye7{bottom:691.198350px;}
.y237{bottom:691.698300px;}
.y250{bottom:691.758300px;}
.y324{bottom:692.896800px;}
.y11e{bottom:694.005750px;}
.y393{bottom:694.675800px;}
.y36d{bottom:694.861800px;}
.y272{bottom:695.064300px;}
.y2fc{bottom:696.918900px;}
.y15e{bottom:697.394100px;}
.ybb{bottom:697.912800px;}
.y6e{bottom:699.978300px;}
.y2b2{bottom:700.586850px;}
.y1bc{bottom:702.225000px;}
.y1ee{bottom:703.210350px;}
.y34b{bottom:706.011300px;}
.y19d{bottom:706.840800px;}
.y17d{bottom:706.914300px;}
.y2a{bottom:708.126000px;}
.y97{bottom:708.490350px;}
.y13e{bottom:708.654300px;}
.y290{bottom:710.274300px;}
.ye6{bottom:710.404350px;}
.y3ad{bottom:711.714300px;}
.y323{bottom:712.548300px;}
.y236{bottom:713.154300px;}
.y24f{bottom:713.202300px;}
.y11d{bottom:714.102750px;}
.y392{bottom:714.178800px;}
.y271{bottom:716.214300px;}
.y2fb{bottom:716.718900px;}
.yba{bottom:718.009800px;}
.y1bb{bottom:718.726500px;}
.y15d{bottom:719.300100px;}
.y2b1{bottom:720.535350px;}
.y2d7{bottom:721.832850px;}
.y1ed{bottom:724.810350px;}
.y34a{bottom:726.256800px;}
.y4e{bottom:726.552300px;}
.y17c{bottom:727.614300px;}
.y6c{bottom:727.959300px;}
.y96{bottom:728.884350px;}
.ye5{bottom:729.610350px;}
.y29{bottom:729.870000px;}
.y13d{bottom:730.560300px;}
.y28f{bottom:732.018300px;}
.y322{bottom:732.199800px;}
.y9{bottom:733.104000px;}
.y3ac{bottom:733.314300px;}
.y391{bottom:733.681800px;}
.y11c{bottom:734.199750px;}
.y235{bottom:734.610300px;}
.y24e{bottom:734.658300px;}
.y19c{bottom:734.824800px;}
.y1ba{bottom:735.228000px;}
.y213{bottom:736.038300px;}
.y2fa{bottom:736.518900px;}
.y270{bottom:737.364300px;}
.yb9{bottom:738.106800px;}
.y2b0{bottom:740.483850px;}
.y2d6{bottom:741.632850px;}
.y349{bottom:746.502300px;}
.y6b{bottom:747.759300px;}
.y17b{bottom:748.314300px;}
.ye4{bottom:748.816350px;}
.y4d{bottom:748.908300px;}
.y95{bottom:749.278350px;}
.y28{bottom:751.614000px;}
.y1b9{bottom:751.729500px;}
.y321{bottom:751.851300px;}
.y13c{bottom:752.466300px;}
.y390{bottom:753.184800px;}
.y8{bottom:753.646500px;}
.y28e{bottom:753.762300px;}
.y15c{bottom:753.976200px;}
.y11b{bottom:754.299750px;}
.y1ec{bottom:754.914300px;}
.y234{bottom:756.066300px;}
.y24d{bottom:756.102300px;}
.y2f9{bottom:756.318900px;}
.y36c{bottom:757.268550px;}
.y212{bottom:757.332300px;}
.yb8{bottom:758.203800px;}
.y26f{bottom:758.514300px;}
.y2af{bottom:760.432350px;}
.y2d5{bottom:761.432850px;}
.y19b{bottom:762.808800px;}
.y348{bottom:766.747800px;}
.y6a{bottom:767.559300px;}
.ye9{bottom:767.989350px;}
.ye3{bottom:768.022350px;}
.y1b8{bottom:768.231000px;}
.y17a{bottom:769.014300px;}
.y94{bottom:769.672350px;}
.y4c{bottom:771.240300px;}
.y320{bottom:771.502800px;}
.y15b{bottom:772.419450px;}
.y38f{bottom:772.687800px;}
.y27{bottom:773.358000px;}
.y36b{bottom:774.211800px;}
.y13b{bottom:774.372300px;}
.y28d{bottom:775.506300px;}
.y3ab{bottom:776.514300px;}
.y233{bottom:777.522300px;}
.y24c{bottom:777.558300px;}
.yb7{bottom:778.300800px;}
.ybf{bottom:778.317300px;}
.y211{bottom:778.626300px;}
.y26e{bottom:779.664300px;}
.y2ae{bottom:780.380850px;}
.y2d4{bottom:781.232850px;}
.y2f8{bottom:784.622850px;}
.y1b7{bottom:784.732500px;}
.y347{bottom:786.993300px;}
.y69{bottom:787.359300px;}
.y179{bottom:789.714300px;}
.y93{bottom:790.066350px;}
.y19a{bottom:790.792800px;}
.y15a{bottom:790.862700px;}
.y36a{bottom:791.151300px;}
.y31f{bottom:791.154300px;}
.y38e{bottom:792.190800px;}
.y4b{bottom:793.596300px;}
.ye1{bottom:796.006350px;}
.y13a{bottom:796.278300px;}
.y7{bottom:796.557000px;}
.y28c{bottom:797.250300px;}
.y3aa{bottom:798.114300px;}
.y232{bottom:798.978300px;}
.y210{bottom:799.920300px;}
.y2ad{bottom:800.329350px;}
.y26d{bottom:800.814300px;}
.y2d3{bottom:801.032850px;}
.y1b6{bottom:801.234000px;}
.y11a{bottom:802.014300px;}
.y26{bottom:803.611800px;}
.yb5{bottom:806.268300px;}
.y68{bottom:807.159300px;}
.y346{bottom:807.238800px;}
.y159{bottom:809.305950px;}
.y178{bottom:810.414300px;}
.y92{bottom:810.460350px;}
.y369{bottom:810.802800px;}
.y31e{bottom:810.805800px;}
.y38d{bottom:811.693800px;}
.ye0{bottom:815.212350px;}
.y4a{bottom:815.952300px;}
.y1b5{bottom:817.735500px;}
.y139{bottom:818.184300px;}
.y199{bottom:818.776800px;}
.y28b{bottom:818.994300px;}
.y1eb{bottom:819.714300px;}
.y2ac{bottom:820.277850px;}
.y231{bottom:820.434300px;}
.y2d2{bottom:820.832850px;}
.y20f{bottom:821.244300px;}
.y26c{bottom:821.964300px;}
.y119{bottom:824.064300px;}
.yb4{bottom:826.365300px;}
.y67{bottom:826.959300px;}
.y345{bottom:827.484300px;}
.y6{bottom:827.896500px;}
.y368{bottom:830.454300px;}
.y31d{bottom:830.457300px;}
.y91{bottom:830.854350px;}
.y177{bottom:831.114300px;}
.y38c{bottom:831.196800px;}
.y1b4{bottom:834.237000px;}
.ydf{bottom:834.418350px;}
.y49{bottom:838.308300px;}
.y138{bottom:840.090300px;}
.y2ab{bottom:840.226350px;}
.y158{bottom:840.511800px;}
.y2d1{bottom:840.632850px;}
.y28a{bottom:840.738300px;}
.y2f7{bottom:841.126800px;}
.y1ea{bottom:841.314300px;}
.y230{bottom:841.890300px;}
.y20e{bottom:842.538300px;}
.y26b{bottom:843.114300px;}
.y118{bottom:846.114300px;}
.yb3{bottom:846.462300px;}
.y66{bottom:846.759300px;}
.y198{bottom:846.760800px;}
.y6d{bottom:847.356300px;}
.y344{bottom:847.729800px;}
.y367{bottom:850.105800px;}
.y31c{bottom:850.108800px;}
.y38b{bottom:850.699800px;}
.y90{bottom:851.248350px;}
.y176{bottom:851.814300px;}
.yde{bottom:853.624350px;}
.y2aa{bottom:860.174850px;}
.y2d0{bottom:860.432850px;}
.y48{bottom:860.646300px;}
.y197{bottom:860.752800px;}
.y137{bottom:861.996300px;}
.y289{bottom:862.482300px;}
.y157{bottom:862.561800px;}
.y2f6{bottom:862.726800px;}
.y1e9{bottom:862.914300px;}
.y22f{bottom:863.346300px;}
.y20d{bottom:863.832300px;}
.y1b3{bottom:864.052350px;}
.y26a{bottom:864.264300px;}
.y65{bottom:866.559300px;}
.yb6{bottom:866.575800px;}
.y343{bottom:867.975300px;}
.y117{bottom:868.164300px;}
.y25{bottom:868.866300px;}
.y366{bottom:869.757300px;}
.y31b{bottom:869.760300px;}
.y38a{bottom:870.202800px;}
.y8f{bottom:871.642350px;}
.yac{bottom:871.807350px;}
.y175{bottom:872.514300px;}
.ydd{bottom:872.830350px;}
.y2a9{bottom:880.123350px;}
.y2cf{bottom:880.232850px;}
.y47{bottom:883.002300px;}
.y136{bottom:883.902300px;}
.y5{bottom:883.906950px;}
.y288{bottom:884.226300px;}
.y2f5{bottom:884.326800px;}
.y1e8{bottom:884.514300px;}
.y156{bottom:884.611800px;}
.y22e{bottom:884.802300px;}
.y20c{bottom:885.126300px;}
.y269{bottom:885.414300px;}
.y342{bottom:888.220800px;}
.y24{bottom:888.814800px;}
.y31a{bottom:889.408800px;}
.y389{bottom:889.705800px;}
.y116{bottom:890.214300px;}
.ye2{bottom:892.003350px;}
.y8e{bottom:892.036350px;}
.yab{bottom:892.201350px;}
.y174{bottom:893.214300px;}
.y64{bottom:894.543300px;}
.y2ce{bottom:900.032850px;}
.y2a8{bottom:900.071850px;}
.y46{bottom:905.358300px;}
.y135{bottom:905.808300px;}
.y2f4{bottom:905.926800px;}
.y287{bottom:905.970300px;}
.y1e7{bottom:906.114300px;}
.y22d{bottom:906.258300px;}
.y20b{bottom:906.420300px;}
.y268{bottom:906.564300px;}
.y155{bottom:906.661800px;}
.y341{bottom:908.466300px;}
.y23{bottom:908.763300px;}
.y196{bottom:908.911800px;}
.y319{bottom:909.060300px;}
.y388{bottom:909.208800px;}
.y4{bottom:910.561950px;}
.y2cd{bottom:919.832850px;}
.y8d{bottom:920.020350px;}
.y2f3{bottom:927.526800px;}
.y45{bottom:927.714300px;}
.y3{bottom:928.711800px;}
.ha{height:30.568359px;}
.h8{height:35.663086px;}
.h3{height:39.990234px;}
.h2{height:40.757812px;}
.h10{height:43.989258px;}
.he{height:47.988281px;}
.hb{height:48.399902px;}
.h23{height:48.405902px;}
.h5{height:50.947266px;}
.h13{height:52.768359px;}
.h1b{height:53.494629px;}
.h16{height:56.005392px;}
.h17{height:56.017392px;}
.h14{height:56.017992px;}
.h4{height:56.041992px;}
.h15{height:56.047992px;}
.h11{height:56.053992px;}
.h12{height:58.057195px;}
.h7{height:61.136719px;}
.h1c{height:61.160719px;}
.h18{height:61.184719px;}
.h24{height:61.280719px;}
.h19{height:61.304719px;}
.h1d{height:61.328719px;}
.hf{height:61.352719px;}
.h1f{height:61.424719px;}
.h20{height:61.472719px;}
.h9{height:62.961431px;}
.h21{height:63.202031px;}
.h1a{height:63.322031px;}
.h25{height:63.370031px;}
.hc{height:63.394031px;}
.hd{height:63.418031px;}
.h22{height:63.658031px;}
.h6{height:86.610352px;}
.h1e{height:112.009992px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x10{left:84.826950px;}
.x18{left:90.547650px;}
.xf{left:93.571950px;}
.x5{left:97.795350px;}
.x9{left:106.086750px;}
.x14{left:111.807600px;}
.x8{left:114.831750px;}
.x7{left:119.068050px;}
.x24{left:125.461650px;}
.x1c{left:127.342650px;}
.x1e{left:140.301900px;}
.x22{left:146.721600px;}
.x1d{left:148.602450px;}
.x6{left:150.670350px;}
.x20{left:152.568000px;}
.x11{left:156.915450px;}
.x1{left:172.049850px;}
.x19{left:174.400650px;}
.xa{left:178.175250px;}
.x1f{left:191.338650px;}
.x15{left:195.644100px;}
.x4{left:238.359300px;}
.x23{left:241.959600px;}
.x27{left:259.619250px;}
.x1a{left:271.750650px;}
.x16{left:295.106100px;}
.x21{left:348.538500px;}
.x26{left:531.240300px;}
.x25{left:540.203550px;}
.x17{left:543.843600px;}
.x1b{left:548.125650px;}
.x12{left:560.505450px;}
.x13{left:568.144950px;}
.xe{left:581.714550px;}
.xb{left:586.880250px;}
.xd{left:587.951550px;}
.xc{left:589.390350px;}
.x2{left:602.539350px;}
@media print{
.vc{vertical-align:-49.749333pt;}
.v9{vertical-align:-29.866667pt;}
.v3{vertical-align:-19.733333pt;}
.v8{vertical-align:-12.800000pt;}
.v5{vertical-align:-11.722667pt;}
.va{vertical-align:-10.133333pt;}
.v4{vertical-align:-0.986667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.vd{vertical-align:12.800000pt;}
.v7{vertical-align:19.733333pt;}
.v6{vertical-align:21.717333pt;}
.v2{vertical-align:23.552000pt;}
.vb{vertical-align:49.749333pt;}
.lsa1{letter-spacing:-6.453333pt;}
.ls95{letter-spacing:-5.866667pt;}
.ls25{letter-spacing:-5.456000pt;}
.ls8a{letter-spacing:-5.066667pt;}
.ls3f{letter-spacing:-2.816000pt;}
.ls7d{letter-spacing:-2.496000pt;}
.ls97{letter-spacing:-2.288000pt;}
.ls58{letter-spacing:-2.280000pt;}
.ls57{letter-spacing:-1.976000pt;}
.ls6f{letter-spacing:-1.472000pt;}
.ls94{letter-spacing:-1.056000pt;}
.ls7c{letter-spacing:-1.024000pt;}
.ls81{letter-spacing:-1.013333pt;}
.ls80{letter-spacing:-0.962667pt;}
.ls2e{letter-spacing:-0.960000pt;}
.ls78{letter-spacing:-0.896000pt;}
.ls43{letter-spacing:-0.832000pt;}
.ls44{letter-spacing:-0.768000pt;}
.lsab{letter-spacing:-0.762667pt;}
.ls60{letter-spacing:-0.704000pt;}
.ls33{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.586667pt;}
.ls6a{letter-spacing:-0.576000pt;}
.ls41{letter-spacing:-0.557333pt;}
.lsa0{letter-spacing:-0.528000pt;}
.ls3c{letter-spacing:-0.512000pt;}
.ls62{letter-spacing:-0.506667pt;}
.lsb{letter-spacing:-0.469333pt;}
.ls3d{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.410667pt;}
.ls42{letter-spacing:-0.384000pt;}
.ls40{letter-spacing:-0.354667pt;}
.ls9{letter-spacing:-0.352000pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls3e{letter-spacing:-0.307200pt;}
.ls64{letter-spacing:-0.304000pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls21{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.253333pt;}
.ls93{letter-spacing:-0.234667pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls96{letter-spacing:-0.176000pt;}
.ls61{letter-spacing:-0.152000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.lsa2{letter-spacing:-0.117333pt;}
.ls7e{letter-spacing:-0.115200pt;}
.ls63{letter-spacing:-0.101333pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.058667pt;}
.ls65{letter-spacing:-0.050667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.005333pt;}
.ls9b{letter-spacing:0.009600pt;}
.ls2b{letter-spacing:0.021867pt;}
.ls4{letter-spacing:0.058667pt;}
.ls29{letter-spacing:0.064000pt;}
.ls76{letter-spacing:0.089600pt;}
.ls68{letter-spacing:0.101333pt;}
.ls36{letter-spacing:0.112000pt;}
.lsa3{letter-spacing:0.117333pt;}
.ls39{letter-spacing:0.124800pt;}
.ls15{letter-spacing:0.128000pt;}
.ls67{letter-spacing:0.152000pt;}
.ls70{letter-spacing:0.166400pt;}
.ls5{letter-spacing:0.176000pt;}
.ls6c{letter-spacing:0.179200pt;}
.ls14{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.217600pt;}
.lsa8{letter-spacing:0.234667pt;}
.ls1a{letter-spacing:0.253333pt;}
.ls3a{letter-spacing:0.256000pt;}
.ls59{letter-spacing:0.268800pt;}
.lsae{letter-spacing:0.281600pt;}
.ls90{letter-spacing:0.293333pt;}
.ls32{letter-spacing:0.304000pt;}
.ls74{letter-spacing:0.313600pt;}
.ls11{letter-spacing:0.320000pt;}
.ls7f{letter-spacing:0.345600pt;}
.ls8b{letter-spacing:0.352000pt;}
.ls7b{letter-spacing:0.364800pt;}
.ls12{letter-spacing:0.384000pt;}
.ls91{letter-spacing:0.410667pt;}
.ls5b{letter-spacing:0.422400pt;}
.ls17{letter-spacing:0.448000pt;}
.ls99{letter-spacing:0.469333pt;}
.ls18{letter-spacing:0.512000pt;}
.ls30{letter-spacing:0.516800pt;}
.ls98{letter-spacing:0.528000pt;}
.ls73{letter-spacing:0.537600pt;}
.ls31{letter-spacing:0.557333pt;}
.ls13{letter-spacing:0.576000pt;}
.ls9c{letter-spacing:0.586667pt;}
.lse{letter-spacing:0.640000pt;}
.ls8c{letter-spacing:0.645333pt;}
.ls71{letter-spacing:0.684800pt;}
.lsf{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.762667pt;}
.ls1c{letter-spacing:0.768000pt;}
.ls9d{letter-spacing:0.821333pt;}
.ls5d{letter-spacing:0.832000pt;}
.ls92{letter-spacing:0.880000pt;}
.ls5f{letter-spacing:0.896000pt;}
.ls53{letter-spacing:0.962667pt;}
.lsad{letter-spacing:1.024000pt;}
.ls8e{letter-spacing:1.290667pt;}
.ls8d{letter-spacing:1.408000pt;}
.ls54{letter-spacing:1.536000pt;}
.ls66{letter-spacing:2.240000pt;}
.ls4f{letter-spacing:2.257600pt;}
.ls52{letter-spacing:2.258133pt;}
.ls24{letter-spacing:2.484267pt;}
.ls1b{letter-spacing:3.200000pt;}
.ls8f{letter-spacing:3.367467pt;}
.ls2f{letter-spacing:3.369333pt;}
.ls55{letter-spacing:3.572000pt;}
.ls84{letter-spacing:3.578667pt;}
.ls5a{letter-spacing:3.584000pt;}
.ls56{letter-spacing:3.597333pt;}
.ls38{letter-spacing:3.712800pt;}
.ls0{letter-spacing:3.733333pt;}
.ls72{letter-spacing:3.769600pt;}
.ls5c{letter-spacing:3.904000pt;}
.ls83{letter-spacing:4.123733pt;}
.ls82{letter-spacing:4.150400pt;}
.ls26{letter-spacing:4.165333pt;}
.ls86{letter-spacing:4.168000pt;}
.ls85{letter-spacing:4.193600pt;}
.ls89{letter-spacing:4.280000pt;}
.ls79{letter-spacing:4.672000pt;}
.ls9a{letter-spacing:4.737600pt;}
.ls50{letter-spacing:4.752000pt;}
.ls23{letter-spacing:4.800000pt;}
.ls6b{letter-spacing:4.928000pt;}
.ls3{letter-spacing:5.333333pt;}
.ls6d{letter-spacing:5.619200pt;}
.ls1{letter-spacing:5.866667pt;}
.ls10{letter-spacing:5.952000pt;}
.ls45{letter-spacing:6.294400pt;}
.ls6{letter-spacing:6.400000pt;}
.ls9f{letter-spacing:6.746667pt;}
.lsa6{letter-spacing:6.922667pt;}
.lsac{letter-spacing:7.133867pt;}
.ls88{letter-spacing:7.333333pt;}
.ls9e{letter-spacing:7.861333pt;}
.ls37{letter-spacing:8.080800pt;}
.ls2c{letter-spacing:8.142933pt;}
.ls51{letter-spacing:8.145600pt;}
.ls2d{letter-spacing:8.160000pt;}
.ls69{letter-spacing:8.228267pt;}
.ls19{letter-spacing:8.320000pt;}
.ls7a{letter-spacing:8.451200pt;}
.ls77{letter-spacing:8.582400pt;}
.ls2{letter-spacing:9.066667pt;}
.ls75{letter-spacing:9.273600pt;}
.lsa5{letter-spacing:9.738667pt;}
.lsa7{letter-spacing:10.149333pt;}
.lsa9{letter-spacing:10.291200pt;}
.ls6e{letter-spacing:10.557867pt;}
.lsa4{letter-spacing:10.560000pt;}
.ls87{letter-spacing:11.440000pt;}
.lsaa{letter-spacing:17.600000pt;}
.ls2a{letter-spacing:34.479467pt;}
.ls5e{letter-spacing:34.598400pt;}
.ls3b{letter-spacing:34.598933pt;}
.ls27{letter-spacing:39.931733pt;}
.ls1d{letter-spacing:51.048000pt;}
.ls4b{letter-spacing:124.314667pt;}
.ls4a{letter-spacing:138.570667pt;}
.ls4c{letter-spacing:140.624000pt;}
.ls49{letter-spacing:153.648000pt;}
.ls48{letter-spacing:169.957333pt;}
.ls47{letter-spacing:206.565333pt;}
.ls4d{letter-spacing:253.088000pt;}
.ls4e{letter-spacing:290.048000pt;}
.ls46{letter-spacing:402.981333pt;}
.ws6a{word-spacing:-153.706667pt;}
.ws6e{word-spacing:-124.373333pt;}
.ws3b{word-spacing:-58.666667pt;}
.wsbd{word-spacing:-34.085333pt;}
.ws2{word-spacing:-24.384000pt;}
.wsa2{word-spacing:-20.320000pt;}
.ws15{word-spacing:-18.688000pt;}
.ws91{word-spacing:-18.240000pt;}
.ws47{word-spacing:-18.176000pt;}
.ws53{word-spacing:-17.984000pt;}
.ws92{word-spacing:-17.920000pt;}
.ws88{word-spacing:-17.856000pt;}
.ws8f{word-spacing:-17.728000pt;}
.ws4a{word-spacing:-17.664000pt;}
.ws93{word-spacing:-17.600000pt;}
.ws48{word-spacing:-17.472000pt;}
.ws84{word-spacing:-17.344000pt;}
.ws59{word-spacing:-17.152000pt;}
.ws6{word-spacing:-16.485333pt;}
.ws90{word-spacing:-16.448000pt;}
.ws56{word-spacing:-16.320000pt;}
.ws17{word-spacing:-16.256000pt;}
.ws77{word-spacing:-16.192000pt;}
.ws8e{word-spacing:-16.128000pt;}
.ws89{word-spacing:-16.064000pt;}
.wsbb{word-spacing:-15.957333pt;}
.ws3e{word-spacing:-15.936000pt;}
.ws8a{word-spacing:-15.872000pt;}
.ws44{word-spacing:-15.848000pt;}
.ws24{word-spacing:-15.808000pt;}
.ws8b{word-spacing:-15.744000pt;}
.ws45{word-spacing:-15.736000pt;}
.wsbc{word-spacing:-15.722667pt;}
.ws54{word-spacing:-15.680000pt;}
.ws98{word-spacing:-15.616000pt;}
.ws3f{word-spacing:-15.488000pt;}
.ws55{word-spacing:-15.360000pt;}
.ws5a{word-spacing:-15.168000pt;}
.ws99{word-spacing:-15.104000pt;}
.ws2e{word-spacing:-14.986667pt;}
.ws57{word-spacing:-14.976000pt;}
.wsbf{word-spacing:-14.901333pt;}
.ws5d{word-spacing:-14.794667pt;}
.wsc1{word-spacing:-14.725333pt;}
.wsc2{word-spacing:-14.549333pt;}
.ws41{word-spacing:-14.541333pt;}
.ws19{word-spacing:-14.490667pt;}
.ws40{word-spacing:-14.237333pt;}
.ws5{word-spacing:-14.197333pt;}
.ws94{word-spacing:-14.186667pt;}
.wsc0{word-spacing:-14.138667pt;}
.ws46{word-spacing:-13.832000pt;}
.wsc4{word-spacing:-13.173333pt;}
.ws27{word-spacing:-12.514667pt;}
.ws8c{word-spacing:-11.856000pt;}
.ws9a{word-spacing:-11.552000pt;}
.ws97{word-spacing:-11.136000pt;}
.ws78{word-spacing:-11.059200pt;}
.ws30{word-spacing:-11.029333pt;}
.ws18{word-spacing:-10.790400pt;}
.wsb8{word-spacing:-10.560000pt;}
.ws5b{word-spacing:-10.406400pt;}
.wsba{word-spacing:-10.149333pt;}
.ws31{word-spacing:-9.891200pt;}
.wsb9{word-spacing:-9.738667pt;}
.wsa0{word-spacing:-9.170667pt;}
.ws1{word-spacing:-9.157333pt;}
.wsb{word-spacing:-9.066667pt;}
.ws26{word-spacing:-8.992000pt;}
.ws4c{word-spacing:-8.542400pt;}
.ws3d{word-spacing:-8.160000pt;}
.wsbe{word-spacing:-8.000000pt;}
.wsaf{word-spacing:-7.861333pt;}
.wsa1{word-spacing:-7.333333pt;}
.wsb7{word-spacing:-6.922667pt;}
.wsb1{word-spacing:-6.746667pt;}
.wsc3{word-spacing:-6.464000pt;}
.ws1a{word-spacing:-6.400000pt;}
.wsa{word-spacing:-5.866667pt;}
.wsc{word-spacing:-5.333333pt;}
.ws32{word-spacing:-4.800000pt;}
.ws8{word-spacing:-3.733333pt;}
.ws60{word-spacing:-3.456000pt;}
.ws33{word-spacing:-3.200000pt;}
.wsc5{word-spacing:-1.024000pt;}
.ws7c{word-spacing:-0.896000pt;}
.wsa6{word-spacing:-0.880000pt;}
.ws7e{word-spacing:-0.832000pt;}
.wsb2{word-spacing:-0.821333pt;}
.ws2b{word-spacing:-0.768000pt;}
.ws13{word-spacing:-0.762667pt;}
.ws1c{word-spacing:-0.704000pt;}
.wsa8{word-spacing:-0.645333pt;}
.ws1b{word-spacing:-0.640000pt;}
.wsb0{word-spacing:-0.586667pt;}
.ws20{word-spacing:-0.576000pt;}
.wsad{word-spacing:-0.528000pt;}
.ws29{word-spacing:-0.512000pt;}
.wsae{word-spacing:-0.469333pt;}
.ws7b{word-spacing:-0.460800pt;}
.ws1f{word-spacing:-0.448000pt;}
.wsa3{word-spacing:-0.410667pt;}
.ws1e{word-spacing:-0.384000pt;}
.wsa4{word-spacing:-0.352000pt;}
.ws1d{word-spacing:-0.320000pt;}
.wsaa{word-spacing:-0.293333pt;}
.ws16{word-spacing:-0.256000pt;}
.ws86{word-spacing:-0.253333pt;}
.ws3{word-spacing:-0.234667pt;}
.ws22{word-spacing:-0.192000pt;}
.wsf{word-spacing:-0.176000pt;}
.ws85{word-spacing:-0.152000pt;}
.ws21{word-spacing:-0.128000pt;}
.wsb6{word-spacing:-0.117333pt;}
.ws4d{word-spacing:-0.112000pt;}
.ws87{word-spacing:-0.101333pt;}
.ws3c{word-spacing:-0.064000pt;}
.wse{word-spacing:-0.058667pt;}
.ws14{word-spacing:-0.053333pt;}
.ws76{word-spacing:-0.050667pt;}
.ws0{word-spacing:-0.042667pt;}
.ws25{word-spacing:-0.038400pt;}
.ws9{word-spacing:0.000000pt;}
.ws83{word-spacing:0.050667pt;}
.wsd{word-spacing:0.058667pt;}
.ws23{word-spacing:0.064000pt;}
.ws81{word-spacing:0.101333pt;}
.ws9d{word-spacing:0.115200pt;}
.wsb5{word-spacing:0.117333pt;}
.ws3a{word-spacing:0.128000pt;}
.ws7f{word-spacing:0.152000pt;}
.ws4b{word-spacing:0.153600pt;}
.wsab{word-spacing:0.176000pt;}
.ws28{word-spacing:0.192000pt;}
.ws7{word-spacing:0.234667pt;}
.ws43{word-spacing:0.253333pt;}
.ws2d{word-spacing:0.256000pt;}
.ws49{word-spacing:0.268800pt;}
.ws4{word-spacing:0.293333pt;}
.ws82{word-spacing:0.304000pt;}
.ws2c{word-spacing:0.320000pt;}
.ws10{word-spacing:0.352000pt;}
.ws51{word-spacing:0.354667pt;}
.ws5e{word-spacing:0.384000pt;}
.ws12{word-spacing:0.410667pt;}
.ws4f{word-spacing:0.448000pt;}
.ws11{word-spacing:0.469333pt;}
.ws80{word-spacing:0.506667pt;}
.ws4e{word-spacing:0.512000pt;}
.wsb3{word-spacing:0.528000pt;}
.ws52{word-spacing:0.557333pt;}
.ws5c{word-spacing:0.576000pt;}
.ws39{word-spacing:0.586667pt;}
.ws42{word-spacing:0.640000pt;}
.ws7d{word-spacing:0.704000pt;}
.ws58{word-spacing:0.768000pt;}
.ws96{word-spacing:0.832000pt;}
.ws95{word-spacing:0.896000pt;}
.ws5f{word-spacing:0.960000pt;}
.ws9f{word-spacing:0.962667pt;}
.ws9e{word-spacing:1.013333pt;}
.ws9b{word-spacing:1.024000pt;}
.wsa7{word-spacing:1.056000pt;}
.ws8d{word-spacing:1.472000pt;}
.ws79{word-spacing:1.976000pt;}
.ws7a{word-spacing:2.280000pt;}
.wsac{word-spacing:2.288000pt;}
.ws9c{word-spacing:2.496000pt;}
.ws50{word-spacing:2.816000pt;}
.ws2a{word-spacing:4.480000pt;}
.wsa5{word-spacing:5.456000pt;}
.wsa9{word-spacing:5.866667pt;}
.wsb4{word-spacing:6.453333pt;}
.ws6f{word-spacing:86.064000pt;}
.ws35{word-spacing:95.040000pt;}
.ws36{word-spacing:102.842667pt;}
.ws69{word-spacing:115.397333pt;}
.ws62{word-spacing:123.376000pt;}
.ws71{word-spacing:124.256000pt;}
.ws63{word-spacing:137.162667pt;}
.ws37{word-spacing:143.481067pt;}
.ws38{word-spacing:145.786667pt;}
.ws34{word-spacing:147.235733pt;}
.ws6b{word-spacing:169.898667pt;}
.ws6d{word-spacing:190.080000pt;}
.ws61{word-spacing:234.432000pt;}
.ws73{word-spacing:259.717333pt;}
.ws75{word-spacing:266.640000pt;}
.ws74{word-spacing:272.741333pt;}
.ws6c{word-spacing:276.026667pt;}
.ws68{word-spacing:337.450667pt;}
.ws66{word-spacing:341.264000pt;}
.ws67{word-spacing:350.650667pt;}
.ws65{word-spacing:367.077333pt;}
.ws64{word-spacing:432.432000pt;}
.ws70{word-spacing:541.200000pt;}
.ws2f{word-spacing:621.456000pt;}
.ws72{word-spacing:797.984000pt;}
._2e{margin-left:-124.256000pt;}
._39{margin-left:-18.398341pt;}
._1a{margin-left:-17.365333pt;}
._12{margin-left:-14.784000pt;}
._10{margin-left:-13.877215pt;}
._21{margin-left:-11.750400pt;}
._38{margin-left:-10.410400pt;}
._3a{margin-left:-9.504000pt;}
._9{margin-left:-8.265600pt;}
._20{margin-left:-7.156800pt;}
._4{margin-left:-5.989867pt;}
._3{margin-left:-4.963200pt;}
._0{margin-left:-3.169600pt;}
._d{margin-left:-1.900800pt;}
._11{margin-left:-0.897600pt;}
._c{width:1.066607pt;}
._2{width:1.980563pt;}
._1{width:3.068800pt;}
._6{width:4.435200pt;}
._b{width:5.548800pt;}
._f{width:6.729067pt;}
._e{width:8.067200pt;}
._a{width:9.066667pt;}
._5{width:10.008533pt;}
._14{width:11.584267pt;}
._3d{width:12.492533pt;}
._7{width:14.666667pt;}
._8{width:16.259733pt;}
._3b{width:18.796800pt;}
._3c{width:19.713600pt;}
._32{width:23.458667pt;}
._22{width:34.598400pt;}
._13{width:50.598400pt;}
._36{width:97.485867pt;}
._35{width:119.544533pt;}
._27{width:131.882667pt;}
._37{width:134.445867pt;}
._28{width:138.570667pt;}
._25{width:146.197333pt;}
._26{width:149.776000pt;}
._1d{width:159.573333pt;}
._1f{width:162.272000pt;}
._19{width:167.082667pt;}
._18{width:169.781333pt;}
._34{width:192.250667pt;}
._33{width:196.064000pt;}
._2d{width:206.565333pt;}
._31{width:228.771259pt;}
._1e{width:250.384059pt;}
._30{width:290.008770pt;}
._24{width:293.656000pt;}
._23{width:322.117570pt;}
._2b{width:337.802667pt;}
._2c{width:409.904000pt;}
._17{width:430.026667pt;}
._1c{width:433.840000pt;}
._16{width:435.978963pt;}
._1b{width:481.328296pt;}
._2f{width:526.967467pt;}
._2a{width:572.586667pt;}
._15{width:662.170667pt;}
._29{width:763.136000pt;}
.fs9{font-size:30.400000pt;}
.fs7{font-size:32.000000pt;}
.fsb{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:67.857200pt;}
.y1{bottom:69.630667pt;}
.y20a{bottom:124.707067pt;}
.y154{bottom:124.719067pt;}
.y286{bottom:124.720400pt;}
.y44{bottom:124.721733pt;}
.y195{bottom:124.723067pt;}
.ydc{bottom:125.373733pt;}
.y365{bottom:126.459467pt;}
.y318{bottom:126.683467pt;}
.y340{bottom:126.804267pt;}
.y3a9{bottom:127.350933pt;}
.y2f2{bottom:127.575867pt;}
.yb2{bottom:127.598133pt;}
.y387{bottom:128.558933pt;}
.y134{bottom:128.978133pt;}
.y22{bottom:129.656533pt;}
.y8b{bottom:132.458933pt;}
.y1b2{bottom:132.754933pt;}
.y114{bottom:132.950533pt;}
.y2cc{bottom:133.273200pt;}
.y2a7{bottom:133.881600pt;}
.y209{bottom:139.375067pt;}
.y153{bottom:139.387067pt;}
.y285{bottom:139.388400pt;}
.y43{bottom:139.389733pt;}
.ydb{bottom:140.041733pt;}
.y33f{bottom:144.272267pt;}
.y317{bottom:144.283467pt;}
.y194{bottom:144.324400pt;}
.y364{bottom:144.455467pt;}
.y386{bottom:146.026933pt;}
.y3a8{bottom:146.550933pt;}
.yb1{bottom:146.798133pt;}
.y21{bottom:147.916533pt;}
.y133{bottom:148.578133pt;}
.y113{bottom:150.022533pt;}
.y8a{bottom:150.058933pt;}
.y2cb{bottom:151.137200pt;}
.y1b1{bottom:151.689600pt;}
.y2a6{bottom:151.745600pt;}
.y208{bottom:154.043067pt;}
.y1e6{bottom:154.053733pt;}
.y152{bottom:154.055067pt;}
.y193{bottom:154.056400pt;}
.yda{bottom:154.709733pt;}
.y2f1{bottom:157.895867pt;}
.y42{bottom:158.991067pt;}
.y33e{bottom:161.740267pt;}
.y316{bottom:161.883467pt;}
.y363{bottom:162.451467pt;}
.y385{bottom:163.494933pt;}
.y3a7{bottom:165.750933pt;}
.yb0{bottom:165.998133pt;}
.y20{bottom:166.176533pt;}
.y112{bottom:167.094533pt;}
.y89{bottom:167.658933pt;}
.y132{bottom:168.178133pt;}
.y22c{bottom:168.708400pt;}
.y207{bottom:168.711067pt;}
.y1e5{bottom:168.721733pt;}
.y41{bottom:168.723067pt;}
.y2ca{bottom:169.001200pt;}
.y2a5{bottom:169.609600pt;}
.y1b0{bottom:170.624267pt;}
.y63{bottom:173.657733pt;}
.y2f0{bottom:175.495867pt;}
.y267{bottom:176.240267pt;}
.y33d{bottom:179.208267pt;}
.y315{bottom:179.483467pt;}
.y362{bottom:180.447467pt;}
.y384{bottom:180.962933pt;}
.yd8{bottom:181.481600pt;}
.y22b{bottom:183.376400pt;}
.y206{bottom:183.379067pt;}
.y62{bottom:183.384400pt;}
.y24b{bottom:183.388400pt;}
.y1e4{bottom:183.389733pt;}
.y111{bottom:184.166533pt;}
.y1f{bottom:184.436533pt;}
.y3a6{bottom:184.822933pt;}
.yaf{bottom:185.198133pt;}
.y88{bottom:185.258933pt;}
.y2c9{bottom:186.865200pt;}
.y2a4{bottom:187.473600pt;}
.y131{bottom:187.778133pt;}
.y40{bottom:188.324400pt;}
.y1af{bottom:189.558933pt;}
.y2ef{bottom:193.095867pt;}
.y266{bottom:195.312267pt;}
.y33c{bottom:196.676267pt;}
.y314{bottom:197.083467pt;}
.y22a{bottom:198.044400pt;}
.y205{bottom:198.047067pt;}
.y61{bottom:198.052400pt;}
.y173{bottom:198.056400pt;}
.y383{bottom:198.430933pt;}
.y361{bottom:198.443467pt;}
.yd7{bottom:199.345600pt;}
.y115{bottom:201.223867pt;}
.y110{bottom:201.238533pt;}
.y1e{bottom:202.696533pt;}
.y87{bottom:202.858933pt;}
.y151{bottom:202.991067pt;}
.y3a5{bottom:203.894933pt;}
.yae{bottom:204.398133pt;}
.y2c8{bottom:204.729200pt;}
.y2a3{bottom:205.337600pt;}
.y192{bottom:207.209200pt;}
.y130{bottom:207.378133pt;}
.y1ae{bottom:208.493600pt;}
.y3c2{bottom:210.234933pt;}
.y2ee{bottom:210.695867pt;}
.y229{bottom:212.712400pt;}
.y204{bottom:212.715067pt;}
.y60{bottom:212.720400pt;}
.y33b{bottom:214.144267pt;}
.y265{bottom:214.384267pt;}
.y313{bottom:214.683467pt;}
.y382{bottom:215.898933pt;}
.y360{bottom:216.439467pt;}
.yd6{bottom:217.209600pt;}
.y172{bottom:217.657733pt;}
.y1d1{bottom:219.944000pt;}
.y86{bottom:220.458933pt;}
.y1d{bottom:220.956533pt;}
.y2c7{bottom:222.618533pt;}
.y3a4{bottom:222.966933pt;}
.y2a2{bottom:223.201600pt;}
.y3f{bottom:223.445200pt;}
.y191{bottom:225.609200pt;}
.y10e{bottom:226.113200pt;}
.y3c1{bottom:226.234933pt;}
.y12f{bottom:226.978133pt;}
.y228{bottom:227.380400pt;}
.y203{bottom:227.383067pt;}
.y5f{bottom:227.388400pt;}
.y171{bottom:227.389733pt;}
.y2ed{bottom:228.295867pt;}
.y33a{bottom:231.612267pt;}
.y312{bottom:232.283467pt;}
.y381{bottom:233.366933pt;}
.y1ad{bottom:233.368267pt;}
.y264{bottom:233.456267pt;}
.y284{bottom:234.275867pt;}
.y35f{bottom:234.435467pt;}
.yd5{bottom:235.073600pt;}
.yad{bottom:236.931467pt;}
.y85{bottom:238.058933pt;}
.y1d0{bottom:239.144000pt;}
.y1c{bottom:239.216533pt;}
.y150{bottom:240.346933pt;}
.y1e3{bottom:240.613600pt;}
.y2a1{bottom:241.065600pt;}
.y3a3{bottom:242.038933pt;}
.y227{bottom:242.048400pt;}
.y202{bottom:242.051067pt;}
.y5e{bottom:242.056400pt;}
.y3c0{bottom:242.234933pt;}
.y3e{bottom:242.773200pt;}
.y10d{bottom:243.185200pt;}
.y190{bottom:244.009200pt;}
.y2ec{bottom:245.895867pt;}
.y12e{bottom:246.578133pt;}
.y170{bottom:246.991067pt;}
.y339{bottom:249.080267pt;}
.y311{bottom:249.883467pt;}
.y380{bottom:250.834933pt;}
.y1ac{bottom:252.302933pt;}
.y35e{bottom:252.431467pt;}
.y263{bottom:252.528267pt;}
.y24a{bottom:252.629600pt;}
.yd4{bottom:252.937600pt;}
.y283{bottom:253.075867pt;}
.y2c6{bottom:253.814533pt;}
.y84{bottom:255.658933pt;}
.y226{bottom:256.716400pt;}
.y201{bottom:256.719067pt;}
.y1b{bottom:257.476533pt;}
.y3bf{bottom:258.234933pt;}
.y1cf{bottom:258.344000pt;}
.y2a0{bottom:258.929600pt;}
.y14f{bottom:259.818933pt;}
.y1e2{bottom:260.085600pt;}
.y10f{bottom:260.242533pt;}
.y10c{bottom:260.257200pt;}
.y3a2{bottom:261.110933pt;}
.y5d{bottom:261.657733pt;}
.y3d{bottom:262.101200pt;}
.y18f{bottom:262.409200pt;}
.y2eb{bottom:263.495867pt;}
.y12d{bottom:266.178133pt;}
.y338{bottom:266.548267pt;}
.y310{bottom:267.483467pt;}
.y37f{bottom:268.302933pt;}
.y35d{bottom:270.427467pt;}
.yd3{bottom:270.801600pt;}
.y1ab{bottom:271.237600pt;}
.y225{bottom:271.384400pt;}
.y200{bottom:271.387067pt;}
.y262{bottom:271.600267pt;}
.y2c5{bottom:271.678533pt;}
.y249{bottom:271.685600pt;}
.y282{bottom:271.875867pt;}
.y83{bottom:273.258933pt;}
.y1a{bottom:275.736533pt;}
.y1ce{bottom:277.544000pt;}
.y14e{bottom:279.290933pt;}
.y1e1{bottom:279.557600pt;}
.y3a1{bottom:280.182933pt;}
.y18e{bottom:280.809200pt;}
.y2ea{bottom:281.095867pt;}
.y3c{bottom:281.509333pt;}
.y337{bottom:284.016267pt;}
.y30f{bottom:285.083467pt;}
.y10b{bottom:285.117200pt;}
.yaa{bottom:285.337200pt;}
.y37e{bottom:285.770933pt;}
.y12c{bottom:285.778133pt;}
.y224{bottom:286.052400pt;}
.y1ff{bottom:286.055067pt;}
.y35c{bottom:288.423467pt;}
.yd2{bottom:288.665600pt;}
.y16f{bottom:288.951200pt;}
.y2c4{bottom:289.542533pt;}
.y261{bottom:290.672267pt;}
.y281{bottom:290.675867pt;}
.y248{bottom:290.757600pt;}
.y82{bottom:290.858933pt;}
.y8c{bottom:291.386933pt;}
.y3be{bottom:293.434933pt;}
.y19{bottom:293.996533pt;}
.y29f{bottom:295.102533pt;}
.y1aa{bottom:296.112267pt;}
.y1cd{bottom:296.744000pt;}
.y2e9{bottom:298.695867pt;}
.y14d{bottom:298.762933pt;}
.y1e0{bottom:299.029600pt;}
.y18d{bottom:299.209200pt;}
.y3a0{bottom:299.254933pt;}
.y5c{bottom:299.920267pt;}
.y223{bottom:300.720400pt;}
.y1fe{bottom:300.723067pt;}
.y3b{bottom:300.837333pt;}
.y336{bottom:301.484267pt;}
.y10a{bottom:302.189200pt;}
.y30e{bottom:302.683467pt;}
.y37d{bottom:303.238933pt;}
.ya9{bottom:303.465200pt;}
.y35b{bottom:306.419467pt;}
.yd1{bottom:306.529600pt;}
.y2c3{bottom:307.406533pt;}
.y16e{bottom:308.423200pt;}
.y81{bottom:308.458933pt;}
.y280{bottom:309.475867pt;}
.y260{bottom:309.744267pt;}
.y247{bottom:309.829600pt;}
.y3bd{bottom:311.034933pt;}
.y18{bottom:312.256533pt;}
.y29e{bottom:314.430533pt;}
.y222{bottom:315.388400pt;}
.y1cc{bottom:315.944000pt;}
.y2e8{bottom:316.295867pt;}
.y18c{bottom:317.609200pt;}
.y14c{bottom:318.197600pt;}
.y1df{bottom:318.426933pt;}
.y335{bottom:318.952267pt;}
.y12b{bottom:319.111467pt;}
.y5b{bottom:319.792267pt;}
.y3a{bottom:320.165333pt;}
.y30d{bottom:320.283467pt;}
.y1fd{bottom:320.324400pt;}
.y37c{bottom:320.706933pt;}
.y1a9{bottom:320.986933pt;}
.ya8{bottom:321.593200pt;}
.yd0{bottom:324.393600pt;}
.yd9{bottom:324.408267pt;}
.y35a{bottom:324.415467pt;}
.y2c2{bottom:325.270533pt;}
.y107{bottom:327.063867pt;}
.y104{bottom:327.078533pt;}
.y16d{bottom:327.895200pt;}
.y27f{bottom:328.275867pt;}
.y25f{bottom:328.816267pt;}
.y246{bottom:328.837600pt;}
.y221{bottom:330.056400pt;}
.y7e{bottom:333.330933pt;}
.y29d{bottom:333.758533pt;}
.y2e7{bottom:333.895867pt;}
.y39f{bottom:334.321600pt;}
.y1cb{bottom:335.144000pt;}
.y18b{bottom:336.009200pt;}
.y334{bottom:336.420267pt;}
.y14b{bottom:337.669600pt;}
.y30c{bottom:337.883467pt;}
.y1de{bottom:337.898933pt;}
.y17{bottom:338.082267pt;}
.y37b{bottom:338.174933pt;}
.y39{bottom:339.493333pt;}
.y5a{bottom:339.664267pt;}
.ya7{bottom:339.721200pt;}
.y359{bottom:342.411467pt;}
.y2c1{bottom:343.134533pt;}
.y109{bottom:344.121200pt;}
.y106{bottom:344.135867pt;}
.y103{bottom:344.150533pt;}
.y3bc{bottom:344.634933pt;}
.y220{bottom:344.724400pt;}
.y1a8{bottom:345.861600pt;}
.y27e{bottom:347.075867pt;}
.y16c{bottom:347.367200pt;}
.y25e{bottom:347.888267pt;}
.y245{bottom:347.909600pt;}
.ycc{bottom:349.253600pt;}
.y7d{bottom:350.930933pt;}
.y2e6{bottom:351.495867pt;}
.y29c{bottom:353.086533pt;}
.y333{bottom:353.888267pt;}
.y1ca{bottom:354.344000pt;}
.y18a{bottom:354.409200pt;}
.y30b{bottom:355.483467pt;}
.y37a{bottom:355.642933pt;}
.y1fc{bottom:356.275867pt;}
.y14a{bottom:357.141600pt;}
.y1dd{bottom:357.370933pt;}
.ya6{bottom:357.849200pt;}
.y38{bottom:358.821333pt;}
.y59{bottom:359.536267pt;}
.y358{bottom:360.407467pt;}
.y2c0{bottom:360.998533pt;}
.y108{bottom:361.193200pt;}
.y105{bottom:361.207867pt;}
.y102{bottom:361.222533pt;}
.y3bb{bottom:363.834933pt;}
.y27d{bottom:365.875867pt;}
.y16b{bottom:366.839200pt;}
.y25d{bottom:366.960267pt;}
.y244{bottom:366.981600pt;}
.ycb{bottom:367.117600pt;}
.y39e{bottom:367.921600pt;}
.y7c{bottom:368.530933pt;}
.y2e5{bottom:369.095867pt;}
.y1a7{bottom:370.736267pt;}
.y332{bottom:371.356267pt;}
.y29b{bottom:372.414533pt;}
.y189{bottom:372.809200pt;}
.y30a{bottom:373.083467pt;}
.y379{bottom:373.110933pt;}
.y1c9{bottom:373.544000pt;}
.y12a{bottom:373.737200pt;}
.y1fb{bottom:375.475867pt;}
.ya5{bottom:375.977200pt;}
.y149{bottom:376.613600pt;}
.y1dc{bottom:376.842933pt;}
.y16{bottom:377.888933pt;}
.y37{bottom:378.149333pt;}
.y357{bottom:378.403467pt;}
.y2bf{bottom:378.895867pt;}
.y58{bottom:379.408267pt;}
.y21f{bottom:381.518533pt;}
.y3ba{bottom:383.034933pt;}
.y27c{bottom:384.675867pt;}
.yca{bottom:384.981600pt;}
.ycf{bottom:384.996267pt;}
.y25c{bottom:386.032267pt;}
.y243{bottom:386.053600pt;}
.yff{bottom:386.097200pt;}
.y7b{bottom:386.130933pt;}
.y16a{bottom:386.268533pt;}
.y2e4{bottom:386.695867pt;}
.y39d{bottom:387.121600pt;}
.y331{bottom:388.824267pt;}
.y378{bottom:390.578933pt;}
.y309{bottom:390.683467pt;}
.y188{bottom:391.209200pt;}
.y29a{bottom:391.742533pt;}
.y1c8{bottom:392.744000pt;}
.ya4{bottom:394.105200pt;}
.y1fa{bottom:394.675867pt;}
.y1a6{bottom:395.610933pt;}
.y148{bottom:396.085600pt;}
.y15{bottom:396.148933pt;}
.y1db{bottom:396.314933pt;}
.y36{bottom:397.477333pt;}
.y57{bottom:399.280267pt;}
.y21e{bottom:400.590533pt;}
.y129{bottom:401.691200pt;}
.y3b9{bottom:402.234933pt;}
.yc9{bottom:402.845600pt;}
.yce{bottom:402.860267pt;}
.yfe{bottom:403.169200pt;}
.y27b{bottom:403.475867pt;}
.y7a{bottom:403.730933pt;}
.y356{bottom:403.962667pt;}
.y80{bottom:404.261600pt;}
.y2e3{bottom:404.295867pt;}
.y25b{bottom:405.104267pt;}
.y242{bottom:405.125600pt;}
.y169{bottom:405.740533pt;}
.y330{bottom:406.292267pt;}
.y39c{bottom:406.321600pt;}
.y377{bottom:408.046933pt;}
.y308{bottom:408.283467pt;}
.y187{bottom:409.609200pt;}
.y2be{bottom:409.959867pt;}
.y1c7{bottom:411.944000pt;}
.ya3{bottom:412.233200pt;}
.y1f9{bottom:413.875867pt;}
.y14{bottom:414.408933pt;}
.y147{bottom:415.557600pt;}
.y1da{bottom:415.786933pt;}
.y35{bottom:416.805333pt;}
.y299{bottom:418.634933pt;}
.y56{bottom:419.152267pt;}
.y21d{bottom:419.518533pt;}
.y128{bottom:419.560667pt;}
.yfd{bottom:420.241200pt;}
.yfa{bottom:420.255867pt;}
.yf7{bottom:420.270533pt;}
.yc8{bottom:420.709600pt;}
.ycd{bottom:420.724267pt;}
.y79{bottom:421.330933pt;}
.y7f{bottom:421.333600pt;}
.y3b8{bottom:421.434933pt;}
.y2e2{bottom:421.894533pt;}
.y27a{bottom:422.275867pt;}
.y32f{bottom:423.760267pt;}
.y25a{bottom:424.176267pt;}
.y241{bottom:424.197600pt;}
.y168{bottom:425.212533pt;}
.y376{bottom:425.514933pt;}
.y307{bottom:425.883467pt;}
.y1a5{bottom:425.982933pt;}
.y2bd{bottom:427.691867pt;}
.y186{bottom:428.009200pt;}
.ya2{bottom:430.361200pt;}
.y1c6{bottom:431.144000pt;}
.y13{bottom:432.668933pt;}
.y1f8{bottom:433.075867pt;}
.y146{bottom:435.029600pt;}
.y1d9{bottom:435.258933pt;}
.y34{bottom:436.133333pt;}
.y101{bottom:437.298533pt;}
.yfc{bottom:437.313200pt;}
.yf9{bottom:437.327867pt;}
.yf6{bottom:437.342533pt;}
.y127{bottom:437.424667pt;}
.y21c{bottom:438.446533pt;}
.y55{bottom:439.024267pt;}
.y3b7{bottom:440.634933pt;}
.y279{bottom:441.075867pt;}
.y32e{bottom:441.228267pt;}
.y375{bottom:442.982933pt;}
.y259{bottom:443.248267pt;}
.y240{bottom:443.269600pt;}
.y306{bottom:443.483467pt;}
.y167{bottom:444.684533pt;}
.y2bc{bottom:445.423867pt;}
.yc5{bottom:445.569600pt;}
.y78{bottom:446.205600pt;}
.y185{bottom:446.409200pt;}
.y355{bottom:447.605600pt;}
.ya1{bottom:448.489200pt;}
.y39b{bottom:448.988267pt;}
.y1c5{bottom:450.344000pt;}
.y12{bottom:450.928933pt;}
.y1f7{bottom:452.275867pt;}
.y2e1{bottom:452.562533pt;}
.y100{bottom:454.370533pt;}
.yfb{bottom:454.385200pt;}
.yf8{bottom:454.399867pt;}
.yf5{bottom:454.414533pt;}
.y145{bottom:454.490933pt;}
.y1d8{bottom:454.730933pt;}
.y126{bottom:455.288667pt;}
.y33{bottom:455.461333pt;}
.y21b{bottom:457.374533pt;}
.y32d{bottom:458.696267pt;}
.y54{bottom:458.896267pt;}
.y3b6{bottom:459.834933pt;}
.y278{bottom:459.875867pt;}
.y374{bottom:460.450933pt;}
.y305{bottom:461.083467pt;}
.y258{bottom:462.320267pt;}
.y23f{bottom:462.341600pt;}
.y1a4{bottom:462.781600pt;}
.y2bb{bottom:463.155867pt;}
.yc4{bottom:463.433600pt;}
.y77{bottom:463.805600pt;}
.y166{bottom:464.156533pt;}
.y184{bottom:464.809200pt;}
.y39a{bottom:464.988267pt;}
.y354{bottom:465.601600pt;}
.ya0{bottom:466.617200pt;}
.y11{bottom:469.188933pt;}
.y1c4{bottom:469.544000pt;}
.y2e0{bottom:470.162533pt;}
.y1f6{bottom:471.475867pt;}
.y125{bottom:473.148533pt;}
.y144{bottom:473.962933pt;}
.y1d7{bottom:474.202933pt;}
.y32{bottom:474.789333pt;}
.y32c{bottom:476.164267pt;}
.y21a{bottom:476.302533pt;}
.y298{bottom:476.730933pt;}
.y1a3{bottom:477.449600pt;}
.y373{bottom:477.918933pt;}
.y304{bottom:478.683467pt;}
.y53{bottom:478.768267pt;}
.y3b5{bottom:479.034933pt;}
.yf2{bottom:479.289200pt;}
.y2ba{bottom:480.887867pt;}
.y399{bottom:480.988267pt;}
.yc3{bottom:481.297600pt;}
.yc7{bottom:481.312267pt;}
.y257{bottom:481.392267pt;}
.y76{bottom:481.405600pt;}
.y23e{bottom:481.413600pt;}
.y353{bottom:483.597600pt;}
.y165{bottom:483.628533pt;}
.y9f{bottom:484.745200pt;}
.y277{bottom:486.234933pt;}
.y10{bottom:487.448933pt;}
.y2df{bottom:487.762533pt;}
.y1c3{bottom:488.744000pt;}
.y1f5{bottom:490.675867pt;}
.y183{bottom:490.768267pt;}
.y143{bottom:493.434933pt;}
.y32b{bottom:493.632267pt;}
.y1d6{bottom:493.674933pt;}
.y31{bottom:494.117333pt;}
.y219{bottom:495.230533pt;}
.y372{bottom:495.386933pt;}
.y297{bottom:496.058933pt;}
.y303{bottom:496.283467pt;}
.yf1{bottom:496.361200pt;}
.yee{bottom:496.375867pt;}
.y398{bottom:496.988267pt;}
.y3b4{bottom:498.234933pt;}
.y2b9{bottom:498.619867pt;}
.y75{bottom:499.005600pt;}
.yc2{bottom:499.161600pt;}
.yc6{bottom:499.176267pt;}
.y124{bottom:500.363333pt;}
.y256{bottom:500.464267pt;}
.y23d{bottom:500.485600pt;}
.y352{bottom:501.593600pt;}
.y9e{bottom:502.873200pt;}
.y164{bottom:503.100533pt;}
.y1a2{bottom:503.929600pt;}
.y2de{bottom:505.362533pt;}
.yf{bottom:505.708933pt;}
.y1c2{bottom:507.944000pt;}
.y182{bottom:509.168267pt;}
.y1f4{bottom:509.875867pt;}
.y32a{bottom:511.100267pt;}
.y52{bottom:512.618933pt;}
.y371{bottom:512.854933pt;}
.y142{bottom:512.901600pt;}
.y1d5{bottom:513.146933pt;}
.yf4{bottom:513.418533pt;}
.yf0{bottom:513.433200pt;}
.y30{bottom:513.445333pt;}
.yed{bottom:513.447867pt;}
.y302{bottom:513.883467pt;}
.y218{bottom:514.158533pt;}
.y296{bottom:515.386933pt;}
.y2b8{bottom:516.351867pt;}
.y74{bottom:516.605600pt;}
.y3b3{bottom:517.434933pt;}
.y123{bottom:518.227333pt;}
.y255{bottom:519.536267pt;}
.y23c{bottom:519.557600pt;}
.y351{bottom:519.589600pt;}
.y9d{bottom:521.001200pt;}
.y163{bottom:522.572533pt;}
.y2dd{bottom:522.962533pt;}
.ye{bottom:523.968933pt;}
.yc1{bottom:524.036267pt;}
.y1c1{bottom:527.144000pt;}
.y329{bottom:528.568267pt;}
.y1a1{bottom:528.804267pt;}
.y1f3{bottom:529.075867pt;}
.yf3{bottom:530.490533pt;}
.yef{bottom:530.505200pt;}
.yec{bottom:530.519867pt;}
.y301{bottom:531.483467pt;}
.y397{bottom:532.053600pt;}
.y1d4{bottom:532.618933pt;}
.y2f{bottom:532.773333pt;}
.y217{bottom:533.086533pt;}
.y2b7{bottom:534.083867pt;}
.y73{bottom:534.202933pt;}
.y295{bottom:534.714933pt;}
.y122{bottom:536.091333pt;}
.y3b2{bottom:536.634933pt;}
.y350{bottom:537.585600pt;}
.y254{bottom:538.608267pt;}
.y23b{bottom:538.629600pt;}
.y9c{bottom:539.129200pt;}
.y2dc{bottom:540.562533pt;}
.yc0{bottom:541.900267pt;}
.y162{bottom:542.039200pt;}
.yd{bottom:542.228933pt;}
.y276{bottom:542.634933pt;}
.y141{bottom:544.368267pt;}
.y328{bottom:546.036267pt;}
.y370{bottom:546.188267pt;}
.y51{bottom:546.490933pt;}
.y1f2{bottom:548.275867pt;}
.y300{bottom:549.083467pt;}
.y396{bottom:549.521600pt;}
.y72{bottom:551.802933pt;}
.y2b6{bottom:551.815867pt;}
.y216{bottom:552.014533pt;}
.y1d3{bottom:552.090933pt;}
.y2e{bottom:552.101333pt;}
.y1a0{bottom:553.678933pt;}
.y121{bottom:553.954000pt;}
.y294{bottom:554.042933pt;}
.y181{bottom:554.768267pt;}
.yeb{bottom:555.379867pt;}
.y34f{bottom:555.581600pt;}
.y3b1{bottom:555.834933pt;}
.y9b{bottom:557.257200pt;}
.y23a{bottom:557.626933pt;}
.y253{bottom:557.680267pt;}
.y2db{bottom:558.162533pt;}
.yc{bottom:560.488933pt;}
.y275{bottom:561.434933pt;}
.y161{bottom:561.489867pt;}
.y327{bottom:563.504267pt;}
.y1c0{bottom:565.528000pt;}
.y50{bottom:566.362933pt;}
.y2ff{bottom:566.683467pt;}
.ybe{bottom:566.774933pt;}
.y1f1{bottom:567.475867pt;}
.y71{bottom:569.402933pt;}
.y2b5{bottom:569.547867pt;}
.y215{bottom:570.942533pt;}
.y2d{bottom:571.461333pt;}
.y1d2{bottom:571.562933pt;}
.y120{bottom:571.818000pt;}
.yea{bottom:572.451867pt;}
.y180{bottom:573.168267pt;}
.y293{bottom:573.370933pt;}
.y34e{bottom:573.577600pt;}
.y3b0{bottom:575.034933pt;}
.y9a{bottom:575.385200pt;}
.y2da{bottom:575.762533pt;}
.y239{bottom:576.698933pt;}
.y252{bottom:576.752267pt;}
.y19f{bottom:578.553600pt;}
.yb{bottom:578.748933pt;}
.y36f{bottom:579.516267pt;}
.y1bf{bottom:580.196000pt;}
.y274{bottom:580.234933pt;}
.y160{bottom:580.961867pt;}
.y326{bottom:580.972267pt;}
.y395{bottom:582.817600pt;}
.y2fe{bottom:584.283467pt;}
.ybd{bottom:584.638933pt;}
.y4f{bottom:586.234933pt;}
.y1f0{bottom:586.675867pt;}
.y70{bottom:587.002933pt;}
.y2b4{bottom:587.279867pt;}
.y2c{bottom:590.789333pt;}
.y140{bottom:590.970933pt;}
.y17f{bottom:591.568267pt;}
.y34d{bottom:591.573600pt;}
.y292{bottom:592.698933pt;}
.y2d9{bottom:593.362533pt;}
.y99{bottom:593.513200pt;}
.y3af{bottom:594.234933pt;}
.y1be{bottom:594.864000pt;}
.y238{bottom:595.770933pt;}
.y251{bottom:595.824267pt;}
.ye8{bottom:597.326533pt;}
.y214{bottom:597.434933pt;}
.y325{bottom:598.440267pt;}
.y36e{bottom:598.588267pt;}
.y11f{bottom:599.024667pt;}
.y273{bottom:599.034933pt;}
.y394{bottom:600.153600pt;}
.y15f{bottom:600.433867pt;}
.y2fd{bottom:601.883467pt;}
.ybc{bottom:602.502933pt;}
.y19e{bottom:603.428267pt;}
.ya{bottom:604.574667pt;}
.y6f{bottom:604.602933pt;}
.y2b3{bottom:605.011867pt;}
.y1ef{bottom:605.875867pt;}
.y1bd{bottom:609.532000pt;}
.y34c{bottom:609.569600pt;}
.y17e{bottom:609.968267pt;}
.y2b{bottom:610.117333pt;}
.y13f{bottom:610.442933pt;}
.y2d8{bottom:610.961200pt;}
.y98{bottom:611.641200pt;}
.y291{bottom:612.026933pt;}
.y3ae{bottom:613.434933pt;}
.ye7{bottom:614.398533pt;}
.y237{bottom:614.842933pt;}
.y250{bottom:614.896267pt;}
.y324{bottom:615.908267pt;}
.y11e{bottom:616.894000pt;}
.y393{bottom:617.489600pt;}
.y36d{bottom:617.654933pt;}
.y272{bottom:617.834933pt;}
.y2fc{bottom:619.483467pt;}
.y15e{bottom:619.905867pt;}
.ybb{bottom:620.366933pt;}
.y6e{bottom:622.202933pt;}
.y2b2{bottom:622.743867pt;}
.y1bc{bottom:624.200000pt;}
.y1ee{bottom:625.075867pt;}
.y34b{bottom:627.565600pt;}
.y19d{bottom:628.302933pt;}
.y17d{bottom:628.368267pt;}
.y2a{bottom:629.445333pt;}
.y97{bottom:629.769200pt;}
.y13e{bottom:629.914933pt;}
.y290{bottom:631.354933pt;}
.ye6{bottom:631.470533pt;}
.y3ad{bottom:632.634933pt;}
.y323{bottom:633.376267pt;}
.y236{bottom:633.914933pt;}
.y24f{bottom:633.957600pt;}
.y11d{bottom:634.758000pt;}
.y392{bottom:634.825600pt;}
.y271{bottom:636.634933pt;}
.y2fb{bottom:637.083467pt;}
.yba{bottom:638.230933pt;}
.y1bb{bottom:638.868000pt;}
.y15d{bottom:639.377867pt;}
.y2b1{bottom:640.475867pt;}
.y2d7{bottom:641.629200pt;}
.y1ed{bottom:644.275867pt;}
.y34a{bottom:645.561600pt;}
.y4e{bottom:645.824267pt;}
.y17c{bottom:646.768267pt;}
.y6c{bottom:647.074933pt;}
.y96{bottom:647.897200pt;}
.ye5{bottom:648.542533pt;}
.y29{bottom:648.773333pt;}
.y13d{bottom:649.386933pt;}
.y28f{bottom:650.682933pt;}
.y322{bottom:650.844267pt;}
.y9{bottom:651.648000pt;}
.y3ac{bottom:651.834933pt;}
.y391{bottom:652.161600pt;}
.y11c{bottom:652.622000pt;}
.y235{bottom:652.986933pt;}
.y24e{bottom:653.029600pt;}
.y19c{bottom:653.177600pt;}
.y1ba{bottom:653.536000pt;}
.y213{bottom:654.256267pt;}
.y2fa{bottom:654.683467pt;}
.y270{bottom:655.434933pt;}
.yb9{bottom:656.094933pt;}
.y2b0{bottom:658.207867pt;}
.y2d6{bottom:659.229200pt;}
.y349{bottom:663.557600pt;}
.y6b{bottom:664.674933pt;}
.y17b{bottom:665.168267pt;}
.ye4{bottom:665.614533pt;}
.y4d{bottom:665.696267pt;}
.y95{bottom:666.025200pt;}
.y28{bottom:668.101333pt;}
.y1b9{bottom:668.204000pt;}
.y321{bottom:668.312267pt;}
.y13c{bottom:668.858933pt;}
.y390{bottom:669.497600pt;}
.y8{bottom:669.908000pt;}
.y28e{bottom:670.010933pt;}
.y15c{bottom:670.201067pt;}
.y11b{bottom:670.488667pt;}
.y1ec{bottom:671.034933pt;}
.y234{bottom:672.058933pt;}
.y24d{bottom:672.090933pt;}
.y2f9{bottom:672.283467pt;}
.y36c{bottom:673.127600pt;}
.y212{bottom:673.184267pt;}
.yb8{bottom:673.958933pt;}
.y26f{bottom:674.234933pt;}
.y2af{bottom:675.939867pt;}
.y2d5{bottom:676.829200pt;}
.y19b{bottom:678.052267pt;}
.y348{bottom:681.553600pt;}
.y6a{bottom:682.274933pt;}
.ye9{bottom:682.657200pt;}
.ye3{bottom:682.686533pt;}
.y1b8{bottom:682.872000pt;}
.y17a{bottom:683.568267pt;}
.y94{bottom:684.153200pt;}
.y4c{bottom:685.546933pt;}
.y320{bottom:685.780267pt;}
.y15b{bottom:686.595067pt;}
.y38f{bottom:686.833600pt;}
.y27{bottom:687.429333pt;}
.y36b{bottom:688.188267pt;}
.y13b{bottom:688.330933pt;}
.y28d{bottom:689.338933pt;}
.y3ab{bottom:690.234933pt;}
.y233{bottom:691.130933pt;}
.y24c{bottom:691.162933pt;}
.yb7{bottom:691.822933pt;}
.ybf{bottom:691.837600pt;}
.y211{bottom:692.112267pt;}
.y26e{bottom:693.034933pt;}
.y2ae{bottom:693.671867pt;}
.y2d4{bottom:694.429200pt;}
.y2f8{bottom:697.442533pt;}
.y1b7{bottom:697.540000pt;}
.y347{bottom:699.549600pt;}
.y69{bottom:699.874933pt;}
.y179{bottom:701.968267pt;}
.y93{bottom:702.281200pt;}
.y19a{bottom:702.926933pt;}
.y15a{bottom:702.989067pt;}
.y36a{bottom:703.245600pt;}
.y31f{bottom:703.248267pt;}
.y38e{bottom:704.169600pt;}
.y4b{bottom:705.418933pt;}
.ye1{bottom:707.561200pt;}
.y13a{bottom:707.802933pt;}
.y7{bottom:708.050667pt;}
.y28c{bottom:708.666933pt;}
.y3aa{bottom:709.434933pt;}
.y232{bottom:710.202933pt;}
.y210{bottom:711.040267pt;}
.y2ad{bottom:711.403867pt;}
.y26d{bottom:711.834933pt;}
.y2d3{bottom:712.029200pt;}
.y1b6{bottom:712.208000pt;}
.y11a{bottom:712.901600pt;}
.y26{bottom:714.321600pt;}
.yb5{bottom:716.682933pt;}
.y68{bottom:717.474933pt;}
.y346{bottom:717.545600pt;}
.y159{bottom:719.383067pt;}
.y178{bottom:720.368267pt;}
.y92{bottom:720.409200pt;}
.y369{bottom:720.713600pt;}
.y31e{bottom:720.716267pt;}
.y38d{bottom:721.505600pt;}
.ye0{bottom:724.633200pt;}
.y4a{bottom:725.290933pt;}
.y1b5{bottom:726.876000pt;}
.y139{bottom:727.274933pt;}
.y199{bottom:727.801600pt;}
.y28b{bottom:727.994933pt;}
.y1eb{bottom:728.634933pt;}
.y2ac{bottom:729.135867pt;}
.y231{bottom:729.274933pt;}
.y2d2{bottom:729.629200pt;}
.y20f{bottom:729.994933pt;}
.y26c{bottom:730.634933pt;}
.y119{bottom:732.501600pt;}
.yb4{bottom:734.546933pt;}
.y67{bottom:735.074933pt;}
.y345{bottom:735.541600pt;}
.y6{bottom:735.908000pt;}
.y368{bottom:738.181600pt;}
.y31d{bottom:738.184267pt;}
.y91{bottom:738.537200pt;}
.y177{bottom:738.768267pt;}
.y38c{bottom:738.841600pt;}
.y1b4{bottom:741.544000pt;}
.ydf{bottom:741.705200pt;}
.y49{bottom:745.162933pt;}
.y138{bottom:746.746933pt;}
.y2ab{bottom:746.867867pt;}
.y158{bottom:747.121600pt;}
.y2d1{bottom:747.229200pt;}
.y28a{bottom:747.322933pt;}
.y2f7{bottom:747.668267pt;}
.y1ea{bottom:747.834933pt;}
.y230{bottom:748.346933pt;}
.y20e{bottom:748.922933pt;}
.y26b{bottom:749.434933pt;}
.y118{bottom:752.101600pt;}
.yb3{bottom:752.410933pt;}
.y66{bottom:752.674933pt;}
.y198{bottom:752.676267pt;}
.y6d{bottom:753.205600pt;}
.y344{bottom:753.537600pt;}
.y367{bottom:755.649600pt;}
.y31c{bottom:755.652267pt;}
.y38b{bottom:756.177600pt;}
.y90{bottom:756.665200pt;}
.y176{bottom:757.168267pt;}
.yde{bottom:758.777200pt;}
.y2aa{bottom:764.599867pt;}
.y2d0{bottom:764.829200pt;}
.y48{bottom:765.018933pt;}
.y197{bottom:765.113600pt;}
.y137{bottom:766.218933pt;}
.y289{bottom:766.650933pt;}
.y157{bottom:766.721600pt;}
.y2f6{bottom:766.868267pt;}
.y1e9{bottom:767.034933pt;}
.y22f{bottom:767.418933pt;}
.y20d{bottom:767.850933pt;}
.y1b3{bottom:768.046533pt;}
.y26a{bottom:768.234933pt;}
.y65{bottom:770.274933pt;}
.yb6{bottom:770.289600pt;}
.y343{bottom:771.533600pt;}
.y117{bottom:771.701600pt;}
.y25{bottom:772.325600pt;}
.y366{bottom:773.117600pt;}
.y31b{bottom:773.120267pt;}
.y38a{bottom:773.513600pt;}
.y8f{bottom:774.793200pt;}
.yac{bottom:774.939867pt;}
.y175{bottom:775.568267pt;}
.ydd{bottom:775.849200pt;}
.y2a9{bottom:782.331867pt;}
.y2cf{bottom:782.429200pt;}
.y47{bottom:784.890933pt;}
.y136{bottom:785.690933pt;}
.y5{bottom:785.695067pt;}
.y288{bottom:785.978933pt;}
.y2f5{bottom:786.068267pt;}
.y1e8{bottom:786.234933pt;}
.y156{bottom:786.321600pt;}
.y22e{bottom:786.490933pt;}
.y20c{bottom:786.778933pt;}
.y269{bottom:787.034933pt;}
.y342{bottom:789.529600pt;}
.y24{bottom:790.057600pt;}
.y31a{bottom:790.585600pt;}
.y389{bottom:790.849600pt;}
.y116{bottom:791.301600pt;}
.ye2{bottom:792.891867pt;}
.y8e{bottom:792.921200pt;}
.yab{bottom:793.067867pt;}
.y174{bottom:793.968267pt;}
.y64{bottom:795.149600pt;}
.y2ce{bottom:800.029200pt;}
.y2a8{bottom:800.063867pt;}
.y46{bottom:804.762933pt;}
.y135{bottom:805.162933pt;}
.y2f4{bottom:805.268267pt;}
.y287{bottom:805.306933pt;}
.y1e7{bottom:805.434933pt;}
.y22d{bottom:805.562933pt;}
.y20b{bottom:805.706933pt;}
.y268{bottom:805.834933pt;}
.y155{bottom:805.921600pt;}
.y341{bottom:807.525600pt;}
.y23{bottom:807.789600pt;}
.y196{bottom:807.921600pt;}
.y319{bottom:808.053600pt;}
.y388{bottom:808.185600pt;}
.y4{bottom:809.388400pt;}
.y2cd{bottom:817.629200pt;}
.y8d{bottom:817.795867pt;}
.y2f3{bottom:824.468267pt;}
.y45{bottom:824.634933pt;}
.y3{bottom:825.521600pt;}
.ha{height:27.171875pt;}
.h8{height:31.700521pt;}
.h3{height:35.546875pt;}
.h2{height:36.229167pt;}
.h10{height:39.101562pt;}
.he{height:42.656250pt;}
.hb{height:43.022135pt;}
.h23{height:43.027469pt;}
.h5{height:45.286458pt;}
.h13{height:46.905208pt;}
.h1b{height:47.550781pt;}
.h16{height:49.782571pt;}
.h17{height:49.793238pt;}
.h14{height:49.793771pt;}
.h4{height:49.815104pt;}
.h15{height:49.820437pt;}
.h11{height:49.825771pt;}
.h12{height:51.606396pt;}
.h7{height:54.343750pt;}
.h1c{height:54.365083pt;}
.h18{height:54.386417pt;}
.h24{height:54.471750pt;}
.h19{height:54.493083pt;}
.h1d{height:54.514417pt;}
.hf{height:54.535750pt;}
.h1f{height:54.599750pt;}
.h20{height:54.642417pt;}
.h9{height:55.965717pt;}
.h21{height:56.179583pt;}
.h1a{height:56.286250pt;}
.h25{height:56.328917pt;}
.hc{height:56.350250pt;}
.hd{height:56.371583pt;}
.h22{height:56.584917pt;}
.h6{height:76.986979pt;}
.h1e{height:99.564437pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x10{left:75.401733pt;}
.x18{left:80.486800pt;}
.xf{left:83.175067pt;}
.x5{left:86.929200pt;}
.x9{left:94.299333pt;}
.x14{left:99.384533pt;}
.x8{left:102.072667pt;}
.x7{left:105.838267pt;}
.x24{left:111.521467pt;}
.x1c{left:113.193467pt;}
.x1e{left:124.712800pt;}
.x22{left:130.419200pt;}
.x1d{left:132.091067pt;}
.x6{left:133.929200pt;}
.x20{left:135.616000pt;}
.x11{left:139.480400pt;}
.x1{left:152.933200pt;}
.x19{left:155.022800pt;}
.xa{left:158.378000pt;}
.x1f{left:170.078800pt;}
.x15{left:173.905867pt;}
.x4{left:211.874933pt;}
.x23{left:215.075200pt;}
.x27{left:230.772667pt;}
.x1a{left:241.556133pt;}
.x16{left:262.316533pt;}
.x21{left:309.812000pt;}
.x26{left:472.213600pt;}
.x25{left:480.180933pt;}
.x17{left:483.416533pt;}
.x1b{left:487.222800pt;}
.x12{left:498.227067pt;}
.x13{left:505.017733pt;}
.xe{left:517.079600pt;}
.xb{left:521.671333pt;}
.xd{left:522.623600pt;}
.xc{left:523.902533pt;}
.x2{left:535.590533pt;}
}




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