
    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_c5b5ab0f7d987a170308c3a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_59b3cdc668f5a0cc0c7c897e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bc93e2454e94a16000e524b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6ce8a3f5c5a3267d7981e601.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.048000;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_a39aa88c74894828214b9032.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_2f7b5ea09be5e334c48c3f93.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.017000;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_82e8619b43690694470fe99b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014000;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_626fc9c024e9bfcf4821ab82.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.048000;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_10c28a6b22fb287ccf171f0b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.025000;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_59b3cdc668f5a0cc0c7c897e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e82d746f64ca46354ee136ad.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.992188;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_8b11e205228a993aaea1b71f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e09097027661284dca5ab331.woff2')format("woff");}.fff{font-family:fff;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_070e631870019ce86c75ac5e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9e8e02b38cf56a08e65b7389.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0ce40265fce629c6eec7fa2a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_85a392771720c18c22fd48a5.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_db7a69a8e768aeb2b7df9f98.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.028000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_2f7b5ea09be5e334c48c3f93.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.017000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_82e8619b43690694470fe99b.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.014000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_7e5f21b515f5b9eb242cba9b.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.048000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_10c28a6b22fb287ccf171f0b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-14.400000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v4{vertical-align:14.400000px;}
.v5{vertical-align:17.280000px;}
.v1{vertical-align:23.760000px;}
.ls1{letter-spacing:-3.120000px;}
.ls36{letter-spacing:-1.296000px;}
.ls3b{letter-spacing:-1.152000px;}
.ls8a{letter-spacing:-0.993600px;}
.ls33{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.864000px;}
.ls76{letter-spacing:-0.861120px;}
.ls48{letter-spacing:-0.792000px;}
.ls18{letter-spacing:-0.720000px;}
.ls6c{letter-spacing:-0.648000px;}
.ls83{letter-spacing:-0.596160px;}
.ls9{letter-spacing:-0.576000px;}
.ls2{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.504000px;}
.ls82{letter-spacing:-0.463680px;}
.ls17{letter-spacing:-0.432000px;}
.ls85{letter-spacing:-0.397440px;}
.ls8e{letter-spacing:-0.358560px;}
.ls7b{letter-spacing:-0.331200px;}
.ls8d{letter-spacing:-0.298800px;}
.ls5a{letter-spacing:-0.288000px;}
.ls84{letter-spacing:-0.264960px;}
.ls3c{letter-spacing:-0.239040px;}
.ls7{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls75{letter-spacing:-0.132480px;}
.ls20{letter-spacing:-0.119520px;}
.ls8{letter-spacing:-0.072000px;}
.ls3d{letter-spacing:-0.059760px;}
.ls5b{letter-spacing:-0.051120px;}
.ls0{letter-spacing:0.000000px;}
.ls89{letter-spacing:0.053280px;}
.ls8c{letter-spacing:0.059760px;}
.ls59{letter-spacing:0.072000px;}
.ls5f{letter-spacing:0.102240px;}
.ls8b{letter-spacing:0.132480px;}
.ls34{letter-spacing:0.136800px;}
.ls5{letter-spacing:0.144000px;}
.ls87{letter-spacing:0.179280px;}
.ls63{letter-spacing:0.208800px;}
.ls11{letter-spacing:0.216000px;}
.ls79{letter-spacing:0.239040px;}
.ls71{letter-spacing:0.258336px;}
.ls88{letter-spacing:0.259920px;}
.ls77{letter-spacing:0.264960px;}
.ls9c{letter-spacing:0.280800px;}
.ls1f{letter-spacing:0.286848px;}
.ls3{letter-spacing:0.288000px;}
.ls73{letter-spacing:0.305280px;}
.ls60{letter-spacing:0.306720px;}
.ls72{letter-spacing:0.331200px;}
.ls92{letter-spacing:0.358560px;}
.ls51{letter-spacing:0.360000px;}
.ls91{letter-spacing:0.397440px;}
.ls95{letter-spacing:0.410688px;}
.ls7a{letter-spacing:0.412344px;}
.ls80{letter-spacing:0.418320px;}
.ls78{letter-spacing:0.450432px;}
.ls98{letter-spacing:0.460080px;}
.ls81{letter-spacing:0.573120px;}
.ls7d{letter-spacing:0.596160px;}
.ls90{letter-spacing:0.597600px;}
.ls7f{letter-spacing:0.599760px;}
.ls74{letter-spacing:0.657360px;}
.ls93{letter-spacing:0.666720px;}
.ls86{letter-spacing:0.702720px;}
.ls1e{letter-spacing:0.758952px;}
.ls7c{letter-spacing:0.776880px;}
.ls6b{letter-spacing:0.856800px;}
.lse{letter-spacing:0.864000px;}
.ls8f{letter-spacing:0.926640px;}
.ls9a{letter-spacing:0.956160px;}
.ls4b{letter-spacing:1.576800px;}
.lsf{letter-spacing:1.584000px;}
.ls56{letter-spacing:2.088000px;}
.ls28{letter-spacing:2.304000px;}
.ls5c{letter-spacing:2.332080px;}
.ls4c{letter-spacing:3.016800px;}
.ls10{letter-spacing:3.024000px;}
.ls53{letter-spacing:3.052080px;}
.ls55{letter-spacing:3.078720px;}
.ls5d{letter-spacing:3.597120px;}
.ls15{letter-spacing:3.736800px;}
.ls16{letter-spacing:3.744000px;}
.ls43{letter-spacing:4.449600px;}
.ls30{letter-spacing:4.464000px;}
.ls5e{letter-spacing:5.176800px;}
.ls1a{letter-spacing:5.184000px;}
.ls94{letter-spacing:5.736960px;}
.ls68{letter-spacing:5.889600px;}
.ls27{letter-spacing:5.904000px;}
.ls31{letter-spacing:6.624000px;}
.ls6a{letter-spacing:7.336800px;}
.ls21{letter-spacing:7.344000px;}
.ls23{letter-spacing:8.064000px;}
.ls69{letter-spacing:8.776800px;}
.ls24{letter-spacing:8.784000px;}
.ls2c{letter-spacing:9.504000px;}
.ls7e{letter-spacing:9.671040px;}
.ls19{letter-spacing:10.224000px;}
.lsd{letter-spacing:10.944000px;}
.ls99{letter-spacing:11.473920px;}
.ls25{letter-spacing:11.649600px;}
.lsc{letter-spacing:11.664000px;}
.ls2b{letter-spacing:12.384000px;}
.ls1d{letter-spacing:12.942720px;}
.ls1c{letter-spacing:13.104000px;}
.ls1b{letter-spacing:13.824000px;}
.ls22{letter-spacing:14.544000px;}
.ls2a{letter-spacing:15.256800px;}
.lsb{letter-spacing:15.264000px;}
.ls54{letter-spacing:15.480000px;}
.ls61{letter-spacing:15.624000px;}
.ls4{letter-spacing:15.984000px;}
.ls50{letter-spacing:16.056000px;}
.ls4f{letter-spacing:16.272000px;}
.ls52{letter-spacing:16.344000px;}
.ls2e{letter-spacing:16.704000px;}
.ls41{letter-spacing:17.424000px;}
.ls2d{letter-spacing:18.144000px;}
.ls4a{letter-spacing:18.864000px;}
.ls62{letter-spacing:18.892080px;}
.ls57{letter-spacing:19.437120px;}
.ls37{letter-spacing:19.584000px;}
.ls4e{letter-spacing:19.656000px;}
.ls14{letter-spacing:20.304000px;}
.ls6d{letter-spacing:21.024000px;}
.ls26{letter-spacing:21.744000px;}
.ls32{letter-spacing:22.464000px;}
.ls3a{letter-spacing:22.858560px;}
.ls3f{letter-spacing:23.184000px;}
.ls45{letter-spacing:23.896800px;}
.ls13{letter-spacing:23.904000px;}
.ls44{letter-spacing:24.624000px;}
.ls39{letter-spacing:25.344000px;}
.ls46{letter-spacing:26.064000px;}
.ls12{letter-spacing:27.504000px;}
.lsa{letter-spacing:28.224000px;}
.ls42{letter-spacing:28.944000px;}
.ls49{letter-spacing:29.664000px;}
.ls47{letter-spacing:30.384000px;}
.ls9b{letter-spacing:31.824000px;}
.ls70{letter-spacing:32.544000px;}
.ls65{letter-spacing:33.264000px;}
.ls6e{letter-spacing:34.696800px;}
.ls6f{letter-spacing:34.704000px;}
.ls2f{letter-spacing:35.424000px;}
.ls35{letter-spacing:36.864000px;}
.ls3e{letter-spacing:39.024000px;}
.ls67{letter-spacing:41.904000px;}
.ls64{letter-spacing:44.064000px;}
.ls66{letter-spacing:70.704000px;}
.ls38{letter-spacing:75.744000px;}
.ls4d{letter-spacing:136.224000px;}
.ls97{letter-spacing:195.773760px;}
.ls58{letter-spacing:195.984000px;}
.ls96{letter-spacing:282.186720px;}
.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;}
}
.wsad{word-spacing:-72.000000px;}
.wsb2{word-spacing:-51.426720px;}
.wsb1{word-spacing:-51.222240px;}
.wsae{word-spacing:-51.120000px;}
.wsab{word-spacing:-51.068880px;}
.wsac{word-spacing:-32.950800px;}
.wsb6{word-spacing:-32.230800px;}
.wsaa{word-spacing:-28.630800px;}
.ws3{word-spacing:-20.304000px;}
.ws55{word-spacing:-20.232000px;}
.ws5{word-spacing:-20.160000px;}
.ws4{word-spacing:-20.016000px;}
.ws19{word-spacing:-19.944000px;}
.ws6{word-spacing:-19.872000px;}
.ws7{word-spacing:-19.800000px;}
.ws1a{word-spacing:-19.584000px;}
.wsc8{word-spacing:-19.512000px;}
.ws43{word-spacing:-19.440000px;}
.ws9f{word-spacing:-19.296000px;}
.ws95{word-spacing:-19.224000px;}
.ws44{word-spacing:-19.152000px;}
.ws9e{word-spacing:-19.080000px;}
.wse7{word-spacing:-18.745920px;}
.wse9{word-spacing:-18.679680px;}
.wsde{word-spacing:-18.414720px;}
.wsda{word-spacing:-18.282240px;}
.wse8{word-spacing:-18.149760px;}
.wsdf{word-spacing:-18.083520px;}
.wseb{word-spacing:-18.017280px;}
.wsed{word-spacing:-17.951040px;}
.wsec{word-spacing:-17.818560px;}
.ws108{word-spacing:-17.569440px;}
.wse4{word-spacing:-17.553600px;}
.wse0{word-spacing:-17.390160px;}
.ws109{word-spacing:-17.210880px;}
.ws103{word-spacing:-16.971840px;}
.wsf5{word-spacing:-16.852320px;}
.wsf6{word-spacing:-16.673040px;}
.wsdb{word-spacing:-16.613280px;}
.wsf4{word-spacing:-16.553520px;}
.ws46{word-spacing:-16.493760px;}
.ws75{word-spacing:-16.374240px;}
.ws100{word-spacing:-16.314480px;}
.ws2f{word-spacing:-13.410720px;}
.wsea{word-spacing:-11.609280px;}
.ws1{word-spacing:-11.178000px;}
.ws45{word-spacing:-10.808640px;}
.ws2{word-spacing:-9.936000px;}
.ws6b{word-spacing:-5.904000px;}
.wsb{word-spacing:-5.184000px;}
.ws92{word-spacing:-5.040000px;}
.ws69{word-spacing:-4.680000px;}
.ws2c{word-spacing:-4.464000px;}
.ws4b{word-spacing:-4.320000px;}
.wsbf{word-spacing:-4.032000px;}
.ws71{word-spacing:-3.960000px;}
.ws68{word-spacing:-3.744000px;}
.wsc3{word-spacing:-3.672000px;}
.ws73{word-spacing:-3.600000px;}
.ws40{word-spacing:-3.525840px;}
.ws6a{word-spacing:-3.456000px;}
.ws94{word-spacing:-3.312000px;}
.ws6c{word-spacing:-3.240000px;}
.ws12{word-spacing:-3.024000px;}
.ws64{word-spacing:-2.592000px;}
.wsbe{word-spacing:-2.520000px;}
.wsd{word-spacing:-2.304000px;}
.ws5e{word-spacing:-2.016000px;}
.ws5d{word-spacing:-1.872000px;}
.wse{word-spacing:-1.584000px;}
.wscd{word-spacing:-1.440000px;}
.ws9d{word-spacing:-1.374480px;}
.ws35{word-spacing:-1.296000px;}
.ws62{word-spacing:-1.152000px;}
.ws9b{word-spacing:-1.080000px;}
.wsf1{word-spacing:-0.993600px;}
.ws9{word-spacing:-0.864000px;}
.ws89{word-spacing:-0.720000px;}
.ws107{word-spacing:-0.657360px;}
.ws5b{word-spacing:-0.576000px;}
.ws76{word-spacing:-0.504000px;}
.ws5c{word-spacing:-0.432000px;}
.wsf0{word-spacing:-0.397440px;}
.wsa1{word-spacing:-0.360000px;}
.wse3{word-spacing:-0.331200px;}
.ws10b{word-spacing:-0.298800px;}
.ws11{word-spacing:-0.288000px;}
.wse2{word-spacing:-0.264960px;}
.wsfb{word-spacing:-0.239040px;}
.ws34{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.144000px;}
.wsf9{word-spacing:-0.132480px;}
.ws105{word-spacing:-0.119520px;}
.wsaf{word-spacing:-0.072000px;}
.ws10e{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.ws42{word-spacing:0.059760px;}
.ws15{word-spacing:0.072000px;}
.ws41{word-spacing:0.119520px;}
.wsdc{word-spacing:0.132480px;}
.ws14{word-spacing:0.144000px;}
.wsfa{word-spacing:0.179280px;}
.ws30{word-spacing:0.216000px;}
.wsfc{word-spacing:0.239040px;}
.wsf2{word-spacing:0.264960px;}
.ws8{word-spacing:0.288000px;}
.ws101{word-spacing:0.298800px;}
.wsef{word-spacing:0.331200px;}
.ws13{word-spacing:0.360000px;}
.ws22{word-spacing:0.432000px;}
.wsdd{word-spacing:0.463680px;}
.ws84{word-spacing:0.504000px;}
.ws16{word-spacing:0.576000px;}
.wsee{word-spacing:0.596160px;}
.wscc{word-spacing:0.648000px;}
.wsf3{word-spacing:0.662400px;}
.ws102{word-spacing:0.717120px;}
.ws24{word-spacing:0.720000px;}
.ws53{word-spacing:0.776880px;}
.wsb7{word-spacing:0.792000px;}
.wse1{word-spacing:0.861120px;}
.ws51{word-spacing:0.864000px;}
.ws67{word-spacing:0.936000px;}
.wsf8{word-spacing:0.993600px;}
.wsd1{word-spacing:1.080000px;}
.ws77{word-spacing:1.152000px;}
.wsf7{word-spacing:1.192320px;}
.ws18{word-spacing:1.296000px;}
.wsd5{word-spacing:1.440000px;}
.ws8d{word-spacing:1.584000px;}
.ws58{word-spacing:1.728000px;}
.ws8c{word-spacing:1.800000px;}
.ws52{word-spacing:2.016000px;}
.ws70{word-spacing:2.160000px;}
.ws7a{word-spacing:2.304000px;}
.wsa2{word-spacing:2.376000px;}
.ws82{word-spacing:2.448000px;}
.ws25{word-spacing:2.736000px;}
.wsd7{word-spacing:3.024000px;}
.ws81{word-spacing:3.168000px;}
.wsa4{word-spacing:3.240000px;}
.wsf{word-spacing:3.456000px;}
.ws5f{word-spacing:3.600000px;}
.ws7c{word-spacing:3.888000px;}
.wsb3{word-spacing:3.960000px;}
.ws10{word-spacing:4.176000px;}
.wscb{word-spacing:4.320000px;}
.wsfd{word-spacing:4.422240px;}
.ws93{word-spacing:4.464000px;}
.wsd2{word-spacing:4.608000px;}
.wsfe{word-spacing:4.661280px;}
.ws23{word-spacing:4.896000px;}
.ws9c{word-spacing:5.184000px;}
.ws86{word-spacing:5.328000px;}
.ws3e{word-spacing:5.400000px;}
.ws31{word-spacing:5.616000px;}
.ws54{word-spacing:5.856480px;}
.ws106{word-spacing:5.976000px;}
.ws83{word-spacing:6.048000px;}
.wsb9{word-spacing:6.120000px;}
.ws29{word-spacing:6.336000px;}
.wsa3{word-spacing:6.480000px;}
.wsc4{word-spacing:6.573600px;}
.wsd0{word-spacing:6.624000px;}
.ws6d{word-spacing:6.768000px;}
.wsc1{word-spacing:6.840000px;}
.ws28{word-spacing:7.056000px;}
.ws6e{word-spacing:7.344000px;}
.ws4a{word-spacing:7.488000px;}
.wsa6{word-spacing:7.560000px;}
.ws6f{word-spacing:7.776000px;}
.ws49{word-spacing:8.064000px;}
.ws8f{word-spacing:8.208000px;}
.wsce{word-spacing:8.280000px;}
.ws10a{word-spacing:8.346240px;}
.ws2e{word-spacing:8.496000px;}
.ws48{word-spacing:8.640000px;}
.wsb0{word-spacing:8.928000px;}
.ws33{word-spacing:9.216000px;}
.ws87{word-spacing:9.648000px;}
.wse6{word-spacing:9.803520px;}
.ws32{word-spacing:9.936000px;}
.wsc6{word-spacing:10.159200px;}
.wsc2{word-spacing:10.224000px;}
.wsa5{word-spacing:10.440000px;}
.wse5{word-spacing:10.532160px;}
.ws3d{word-spacing:10.656000px;}
.wsb8{word-spacing:10.800000px;}
.wsc7{word-spacing:10.876320px;}
.ws88{word-spacing:11.088000px;}
.wsc9{word-spacing:11.160000px;}
.ws21{word-spacing:11.376000px;}
.ws10d{word-spacing:11.414160px;}
.ws85{word-spacing:11.520000px;}
.ws10c{word-spacing:11.593440px;}
.wsba{word-spacing:11.664000px;}
.ws20{word-spacing:11.808000px;}
.wsa9{word-spacing:11.880000px;}
.ws59{word-spacing:12.096000px;}
.wsa7{word-spacing:12.240000px;}
.wsc5{word-spacing:12.310560px;}
.wsa8{word-spacing:12.384000px;}
.ws5a{word-spacing:12.528000px;}
.ws47{word-spacing:12.816000px;}
.wsff{word-spacing:13.027680px;}
.wsd9{word-spacing:13.104000px;}
.ws39{word-spacing:13.536000px;}
.ws1f{word-spacing:14.256000px;}
.ws1e{word-spacing:14.976000px;}
.wsc0{word-spacing:15.264000px;}
.wscf{word-spacing:15.480000px;}
.wsa{word-spacing:15.696000px;}
.ws57{word-spacing:16.128000px;}
.ws17{word-spacing:16.416000px;}
.ws72{word-spacing:16.848000px;}
.ws66{word-spacing:17.136000px;}
.ws8b{word-spacing:17.424000px;}
.ws61{word-spacing:17.856000px;}
.ws8a{word-spacing:18.000000px;}
.wsb5{word-spacing:18.288000px;}
.ws60{word-spacing:18.576000px;}
.ws90{word-spacing:18.864000px;}
.ws1c{word-spacing:19.296000px;}
.wsd8{word-spacing:19.584000px;}
.wsd4{word-spacing:19.728000px;}
.ws2d{word-spacing:20.016000px;}
.ws3f{word-spacing:20.258640px;}
.wsd3{word-spacing:20.520000px;}
.ws1d{word-spacing:20.736000px;}
.ws9a{word-spacing:21.024000px;}
.ws4c{word-spacing:21.456000px;}
.ws65{word-spacing:21.744000px;}
.ws36{word-spacing:22.176000px;}
.wsd6{word-spacing:22.536000px;}
.wsa0{word-spacing:22.608000px;}
.ws37{word-spacing:22.896000px;}
.ws38{word-spacing:23.328000px;}
.ws104{word-spacing:23.515200px;}
.ws2a{word-spacing:23.616000px;}
.ws50{word-spacing:24.336000px;}
.wsb4{word-spacing:24.480000px;}
.ws7f{word-spacing:25.056000px;}
.ws91{word-spacing:25.776000px;}
.ws26{word-spacing:26.496000px;}
.ws56{word-spacing:26.928000px;}
.ws27{word-spacing:27.216000px;}
.wsca{word-spacing:27.360000px;}
.ws79{word-spacing:27.936000px;}
.ws7e{word-spacing:28.656000px;}
.ws8e{word-spacing:29.088000px;}
.ws7d{word-spacing:29.376000px;}
.ws97{word-spacing:30.096000px;}
.ws63{word-spacing:30.816000px;}
.ws98{word-spacing:31.320000px;}
.ws99{word-spacing:31.536000px;}
.ws78{word-spacing:32.256000px;}
.wsbd{word-spacing:32.976000px;}
.ws4d{word-spacing:33.696000px;}
.ws4e{word-spacing:34.416000px;}
.ws4f{word-spacing:35.136000px;}
.ws80{word-spacing:35.856000px;}
.ws1b{word-spacing:36.576000px;}
.ws74{word-spacing:36.864000px;}
.ws96{word-spacing:37.296000px;}
.ws7b{word-spacing:38.016000px;}
.ws3b{word-spacing:39.456000px;}
.ws3a{word-spacing:39.960000px;}
.ws3c{word-spacing:40.464000px;}
.ws2b{word-spacing:40.896000px;}
.wsbb{word-spacing:43.056000px;}
.wsbc{word-spacing:43.776000px;}
._23{margin-left:-40.004640px;}
._4{margin-left:-10.954800px;}
._12{margin-left:-9.504000px;}
._5{margin-left:-7.251600px;}
._2{margin-left:-5.460000px;}
._3{margin-left:-4.399200px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.242000px;}
._7{width:1.080000px;}
._6{width:3.024000px;}
._10{width:4.057200px;}
._c{width:5.130000px;}
._e{width:6.786000px;}
._15{width:8.064000px;}
._16{width:9.090000px;}
._11{width:10.602000px;}
._b{width:11.808000px;}
._a{width:13.626000px;}
._17{width:14.904000px;}
._f{width:15.984000px;}
._1b{width:17.640000px;}
._1f{width:18.882000px;}
._19{width:21.438000px;}
._13{width:22.914000px;}
._20{width:24.858000px;}
._21{width:25.902000px;}
._d{width:27.324000px;}
._1d{width:28.458000px;}
._22{width:29.628000px;}
._18{width:31.068000px;}
._1c{width:32.274000px;}
._24{width:33.300000px;}
._1a{width:34.470000px;}
._9{width:35.550000px;}
._8{width:36.972000px;}
._14{width:39.474000px;}
._1e{width:75.978000px;}
._25{width:843.984000px;}
._27{width:845.553600px;}
._26{width:847.550160px;}
.fc8{color:rgb(5,99,193);}
.fc7{color:rgb(31,56,100);}
.fc3{color:transparent;}
.fc6{color:rgb(0,128,174);}
.fc5{color:rgb(51,51,51);}
.fc4{color:rgb(13,13,13);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:38.880000px;}
.fs12{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.000000px;}
.fsf{font-size:48.240000px;}
.fs11{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fse{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.240000px;}
.fs5{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.000000px;}
.fsa{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.fs7{font-size:156.000000px;}
.fs9{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y13d{bottom:3.240000px;}
.y12f{bottom:3.420000px;}
.y133{bottom:3.600000px;}
.y10e{bottom:3.780000px;}
.y111{bottom:3.960000px;}
.y11e{bottom:4.860000px;}
.y1cf{bottom:5.220000px;}
.y1d9{bottom:5.400000px;}
.y121{bottom:10.260000px;}
.y120{bottom:10.440000px;}
.y1c2{bottom:20.520000px;}
.y123{bottom:24.480000px;}
.y11d{bottom:25.560000px;}
.y27{bottom:40.500000px;}
.y137{bottom:41.580000px;}
.y23{bottom:53.320350px;}
.y198{bottom:56.340000px;}
.y26{bottom:57.000000px;}
.ya9{bottom:57.240000px;}
.y74{bottom:57.420000px;}
.y6{bottom:66.525004px;}
.y155{bottom:72.180000px;}
.y25{bottom:73.500000px;}
.y24{bottom:90.000000px;}
.y5{bottom:97.125005px;}
.yfe{bottom:111.222540px;}
.yc0{bottom:111.228840px;}
.yc8{bottom:111.234420px;}
.ya8{bottom:113.580000px;}
.yc5{bottom:115.740000px;}
.y91{bottom:117.180000px;}
.y250{bottom:117.506880px;}
.yfd{bottom:128.508120px;}
.ybf{bottom:128.514420px;}
.yc4{bottom:128.700000px;}
.yc7{bottom:133.020000px;}
.y296{bottom:137.880000px;}
.y22{bottom:139.264499px;}
.yf9{bottom:140.040000px;}
.y22b{bottom:144.179460px;}
.yfc{bottom:145.793700px;}
.yc6{bottom:145.980000px;}
.y24f{bottom:146.669760px;}
.y197{bottom:146.874420px;}
.y90{bottom:146.880000px;}
.y279{bottom:147.240000px;}
.ye3{bottom:148.320000px;}
.ybe{bottom:150.300000px;}
.yc3{bottom:152.280000px;}
.ya7{bottom:154.980000px;}
.y2a7{bottom:158.580000px;}
.y22a{bottom:162.720000px;}
.ybd{bottom:163.260000px;}
.yfb{bottom:167.400000px;}
.y8f{bottom:167.580000px;}
.y278{bottom:167.940000px;}
.y196{bottom:168.660000px;}
.y295{bottom:173.700000px;}
.ycc{bottom:173.880000px;}
.y24e{bottom:176.011920px;}
.y210{bottom:177.660000px;}
.y2a6{bottom:179.280000px;}
.yfa{bottom:180.540000px;}
.y195{bottom:181.422540px;}
.yf8{bottom:181.440000px;}
.y229{bottom:187.380000px;}
.y8e{bottom:188.280000px;}
.ye2{bottom:189.720000px;}
.yc2{bottom:193.680000px;}
.y294{bottom:194.400000px;}
.ya6{bottom:196.380000px;}
.y19{bottom:196.933500px;}
.y194{bottom:198.528840px;}
.y21b{bottom:202.140000px;}
.y277{bottom:203.580000px;}
.y24d{bottom:205.174800px;}
.y228{bottom:208.080000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y293{bottom:215.100000px;}
.ycb{bottom:215.460000px;}
.y193{bottom:215.814420px;}
.y8d{bottom:217.980000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.yf7{bottom:222.840000px;}
.y276{bottom:224.280000px;}
.y227{bottom:228.780000px;}
.ye1{bottom:231.120000px;}
.y192{bottom:233.100000px;}
.y24c{bottom:234.516960px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yc1{bottom:235.080000px;}
.y2a5{bottom:235.800000px;}
.ya5{bottom:237.780000px;}
.y21a{bottom:243.540000px;}
.y275{bottom:244.980000px;}
.y8c{bottom:247.680000px;}
.y191{bottom:249.300000px;}
.y226{bottom:249.480000px;}
.y292{bottom:250.740000px;}
.y2a4{bottom:256.500000px;}
.y211{bottom:256.860000px;}
.yca{bottom:257.580000px;}
.y10c{bottom:258.120000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y24b{bottom:263.679840px;}
.yf6{bottom:264.240000px;}
.y219{bottom:265.320000px;}
.y274{bottom:265.680000px;}
.y190{bottom:266.580000px;}
.y225{bottom:270.180000px;}
.y291{bottom:271.440000px;}
.y1d{bottom:272.518500px;}
.ye0{bottom:272.520000px;}
.y14{bottom:272.533503px;}
.y10b{bottom:275.580000px;}
.ybc{bottom:276.480000px;}
.y8b{bottom:277.380000px;}
.ya4{bottom:279.180000px;}
.y18f{bottom:283.860000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y218{bottom:286.020000px;}
.y224{bottom:290.880000px;}
.y290{bottom:292.140000px;}
.y24a{bottom:293.022000px;}
.y18d{bottom:295.740000px;}
.y154{bottom:298.080000px;}
.y18e{bottom:301.140000px;}
.y273{bottom:301.500000px;}
.yf5{bottom:305.640000px;}
.y217{bottom:306.720000px;}
.y8a{bottom:307.080000px;}
.yc9{bottom:308.700000px;}
.y10a{bottom:309.060000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y223{bottom:311.580000px;}
.y28f{bottom:312.840000px;}
.ydf{bottom:313.920000px;}
.ybb{bottom:317.880000px;}
.y18c{bottom:318.420000px;}
.y153{bottom:318.780000px;}
.ya3{bottom:320.580000px;}
.y249{bottom:322.184880px;}
.y272{bottom:322.200000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y216{bottom:328.680000px;}
.y18a{bottom:330.300000px;}
.y222{bottom:332.280000px;}
.y2a3{bottom:333.540000px;}
.y18b{bottom:335.700000px;}
.y89{bottom:336.780000px;}
.y44{bottom:341.550150px;}
.y271{bottom:342.900000px;}
.yf4{bottom:347.040000px;}
.y10{bottom:348.133500px;}
.y28e{bottom:348.480000px;}
.y215{bottom:349.380000px;}
.y21d{bottom:350.640000px;}
.y248{bottom:351.527040px;}
.y152{bottom:352.620000px;}
.y189{bottom:352.800000px;}
.y221{bottom:352.980000px;}
.yde{bottom:355.320000px;}
.y43{bottom:357.750150px;}
.yba{bottom:359.280000px;}
.ya2{bottom:361.980000px;}
.y187{bottom:364.680000px;}
.y88{bottom:366.480000px;}
.y28d{bottom:369.180000px;}
.y188{bottom:370.080000px;}
.y214{bottom:371.340000px;}
.y220{bottom:373.680000px;}
.y42{bottom:373.950150px;}
.y270{bottom:378.540000px;}
.y247{bottom:380.689920px;}
.y151{bottom:384.654600px;}
.yf{bottom:386.785499px;}
.y186{bottom:387.360000px;}
.yf3{bottom:388.440000px;}
.y28c{bottom:389.880000px;}
.y41{bottom:390.150150px;}
.y213{bottom:392.040000px;}
.y21c{bottom:393.120000px;}
.y21f{bottom:394.380000px;}
.y87{bottom:396.180000px;}
.ydd{bottom:396.720000px;}
.y184{bottom:399.240000px;}
.yb9{bottom:400.680000px;}
.y54{bottom:403.200150px;}
.y150{bottom:403.374420px;}
.ya1{bottom:403.380000px;}
.y185{bottom:404.640000px;}
.y40{bottom:406.350150px;}
.ye{bottom:408.044999px;}
.y246{bottom:410.032080px;}
.y28b{bottom:410.580000px;}
.y212{bottom:413.820000px;}
.y21e{bottom:415.080000px;}
.y29{bottom:417.900300px;}
.y26f{bottom:419.940000px;}
.y53{bottom:421.200150px;}
.y1ad{bottom:421.560000px;}
.y183{bottom:421.920000px;}
.y3f{bottom:422.550150px;}
.y2b{bottom:423.411150px;}
.y14f{bottom:425.160000px;}
.y2a2{bottom:425.700000px;}
.y86{bottom:425.880000px;}
.y1eb{bottom:426.240000px;}
.y204{bottom:427.500000px;}
.yf2{bottom:429.840000px;}
.y255{bottom:436.140000px;}
.y14e{bottom:437.760000px;}
.ydc{bottom:438.120000px;}
.y3e{bottom:438.750150px;}
.y182{bottom:439.020000px;}
.y245{bottom:439.194960px;}
.y52{bottom:439.200150px;}
.yb8{bottom:442.080000px;}
.y108{bottom:442.800000px;}
.ya0{bottom:444.780000px;}
.y28a{bottom:446.400000px;}
.y105{bottom:448.560000px;}
.y180{bottom:450.900000px;}
.y20f{bottom:453.420000px;}
.y1c1{bottom:453.593700px;}
.y14d{bottom:454.140000px;}
.y3d{bottom:454.950150px;}
.y1ac{bottom:455.034420px;}
.y85{bottom:455.580000px;}
.y181{bottom:456.300000px;}
.y51{bottom:457.200150px;}
.y259{bottom:464.580000px;}
.y289{bottom:467.100000px;}
.y254{bottom:468.180000px;}
.y244{bottom:468.537120px;}
.y28{bottom:468.900300px;}
.y2a{bottom:470.475150px;}
.yf1{bottom:471.240000px;}
.y14c{bottom:473.040000px;}
.y17f{bottom:473.580000px;}
.y1ea{bottom:474.840000px;}
.y1c0{bottom:475.200000px;}
.y50{bottom:475.200150px;}
.y26e{bottom:476.280000px;}
.y107{bottom:476.459280px;}
.y1ab{bottom:476.820000px;}
.ydb{bottom:479.520000px;}
.y2a1{bottom:482.040000px;}
.y73{bottom:482.264100px;}
.y104{bottom:482.940000px;}
.yb7{bottom:483.480000px;}
.y17d{bottom:485.460000px;}
.y9f{bottom:486.180000px;}
.y288{bottom:487.800000px;}
.y1bf{bottom:487.974420px;}
.y84{bottom:488.340000px;}
.y1aa{bottom:489.593700px;}
.y17e{bottom:490.860000px;}
.y14b{bottom:492.120000px;}
.y4f{bottom:493.200150px;}
.y106{bottom:494.999820px;}
.y26d{bottom:496.980000px;}
.y72{bottom:497.264100px;}
.y243{bottom:497.700000px;}
.y253{bottom:498.779460px;}
.y258{bottom:498.960000px;}
.y1fb{bottom:499.320000px;}
.y2a0{bottom:502.740000px;}
.yd{bottom:502.864502px;}
.y103{bottom:503.094420px;}
.y1be{bottom:505.260000px;}
.y1a9{bottom:506.700000px;}
.y17c{bottom:508.140000px;}
.y14a{bottom:511.020000px;}
.y4e{bottom:511.200150px;}
.yf0{bottom:512.640000px;}
.y49{bottom:515.244300px;}
.y12c{bottom:516.060000px;}
.y252{bottom:517.320000px;}
.y17a{bottom:520.020000px;}
.y102{bottom:520.380000px;}
.yc{bottom:520.864502px;}
.yda{bottom:520.920000px;}
.y83{bottom:521.100000px;}
.y1bd{bottom:521.460000px;}
.y1e6{bottom:522.000000px;}
.y1a8{bottom:523.080000px;}
.y287{bottom:523.440000px;}
.yb6{bottom:524.880000px;}
.y71{bottom:525.019950px;}
.y17b{bottom:525.420000px;}
.y9e{bottom:527.580000px;}
.y4d{bottom:529.200150px;}
.y242{bottom:529.740000px;}
.y149{bottom:529.920000px;}
.y257{bottom:532.440000px;}
.y26c{bottom:532.800000px;}
.y29f{bottom:538.380000px;}
.y1bc{bottom:538.740000px;}
.yb{bottom:538.864499px;}
.y1a7{bottom:540.360000px;}
.y1fa{bottom:540.720000px;}
.y179{bottom:542.520000px;}
.y286{bottom:544.140000px;}
.y251{bottom:545.032800px;}
.y48{bottom:546.000150px;}
.y101{bottom:546.300000px;}
.y4c{bottom:547.200150px;}
.y148{bottom:549.000000px;}
.y12b{bottom:549.540180px;}
.y241{bottom:550.440000px;}
.y70{bottom:552.775950px;}
.y26b{bottom:553.500000px;}
.yef{bottom:554.040000px;}
.y178{bottom:554.400000px;}
.y1bb{bottom:556.020000px;}
.ya{bottom:556.864499px;}
.y1a6{bottom:557.460000px;}
.y29e{bottom:559.080000px;}
.y82{bottom:559.800000px;}
.y256{bottom:560.160000px;}
.y1f9{bottom:562.680000px;}
.yd9{bottom:562.860000px;}
.y47{bottom:564.000150px;}
.y285{bottom:564.840000px;}
.y4b{bottom:565.200150px;}
.yb5{bottom:566.280000px;}
.y6f{bottom:567.775950px;}
.y147{bottom:567.900000px;}
.y12a{bottom:568.260000px;}
.y9d{bottom:568.980000px;}
.y1ba{bottom:573.300000px;}
.y1e5{bottom:574.722540px;}
.y1a5{bottom:574.740000px;}
.y177{bottom:577.080000px;}
.y29d{bottom:579.780000px;}
.y81{bottom:580.500000px;}
.y46{bottom:582.000150px;}
.y6e{bottom:582.775950px;}
.y240{bottom:583.200000px;}
.y4a{bottom:583.200150px;}
.y1f8{bottom:583.380000px;}
.y129{bottom:584.460000px;}
.y1b8{bottom:585.180000px;}
.y1a3{bottom:586.620000px;}
.y146{bottom:586.980000px;}
.y175{bottom:588.960000px;}
.y26a{bottom:589.140000px;}
.y1b9{bottom:590.580000px;}
.y1e4{bottom:592.008120px;}
.y1a4{bottom:592.020000px;}
.y176{bottom:594.360000px;}
.yee{bottom:595.440000px;}
.y284{bottom:600.480000px;}
.y23f{bottom:603.900000px;}
.yd8{bottom:604.440000px;}
.y128{bottom:605.160000px;}
.y1f7{bottom:605.340000px;}
.y145{bottom:605.880000px;}
.yb4{bottom:607.680000px;}
.y3c{bottom:608.100300px;}
.y1e3{bottom:609.114420px;}
.y1a2{bottom:609.300000px;}
.y269{bottom:609.840000px;}
.y9c{bottom:610.380000px;}
.y6d{bottom:610.531800px;}
.y174{bottom:611.640000px;}
.y80{bottom:613.080000px;}
.y29c{bottom:615.600000px;}
.y1b6{bottom:619.560000px;}
.y1a0{bottom:621.180000px;}
.y172{bottom:623.520000px;}
.y23e{bottom:624.600000px;}
.y144{bottom:624.780000px;}
.y1b7{bottom:624.960000px;}
.y6c{bottom:625.531800px;}
.y126{bottom:625.860000px;}
.y1f6{bottom:626.040000px;}
.y1a1{bottom:626.580000px;}
.y173{bottom:628.920000px;}
.y268{bottom:630.540000px;}
.y1e2{bottom:630.900000px;}
.y29b{bottom:636.300000px;}
.yed{bottom:636.840000px;}
.y6b{bottom:640.531800px;}
.y143{bottom:643.860000px;}
.y1b0{bottom:644.580000px;}
.y23d{bottom:645.300000px;}
.y9{bottom:645.510000px;}
.yd7{bottom:645.840000px;}
.y171{bottom:646.020000px;}
.y127{bottom:646.560000px;}
.y1f5{bottom:648.000000px;}
.y1e1{bottom:648.180000px;}
.yb3{bottom:649.080000px;}
.y267{bottom:651.240000px;}
.y9b{bottom:651.780000px;}
.y283{bottom:656.820000px;}
.y3b{bottom:660.600300px;}
.y1e0{bottom:660.954420px;}
.y142{bottom:662.760000px;}
.y170{bottom:663.300000px;}
.y1b3{bottom:664.908840px;}
.y1b5{bottom:664.914420px;}
.y23c{bottom:666.000000px;}
.y19d{bottom:666.528120px;}
.y19f{bottom:666.534420px;}
.y7f{bottom:666.540000px;}
.y8{bottom:666.771000px;}
.y125{bottom:667.260000px;}
.y6a{bottom:668.287650px;}
.y1f4{bottom:668.700000px;}
.y20e{bottom:674.640000px;}
.y56{bottom:675.259500px;}
.y282{bottom:677.520000px;}
.yec{bottom:678.960000px;}
.y16f{bottom:680.580000px;}
.y141{bottom:681.840000px;}
.y1b2{bottom:682.194420px;}
.y1b4{bottom:682.200000px;}
.y1df{bottom:682.740000px;}
.y69{bottom:683.287650px;}
.y19c{bottom:683.813700px;}
.y19e{bottom:683.820000px;}
.y23b{bottom:686.700000px;}
.y266{bottom:686.880000px;}
.yd6{bottom:687.240000px;}
.y122{bottom:687.960000px;}
.y1f3{bottom:689.400000px;}
.yb2{bottom:690.480000px;}
.y203{bottom:691.740000px;}
.y1ae{bottom:691.920000px;}
.y16d{bottom:692.460000px;}
.y29a{bottom:692.640000px;}
.y9a{bottom:693.180000px;}
.y19a{bottom:693.540000px;}
.y20d{bottom:695.340000px;}
.y1de{bottom:695.508120px;}
.y16e{bottom:697.860000px;}
.y68{bottom:698.287650px;}
.y1b1{bottom:699.480000px;}
.y1c9{bottom:699.840000px;}
.y140{bottom:700.740000px;}
.y19b{bottom:700.920000px;}
.y3a{bottom:704.100300px;}
.y23a{bottom:707.400000px;}
.y265{bottom:707.580000px;}
.y55{bottom:707.659500px;}
.y7e{bottom:707.940000px;}
.y124{bottom:708.660000px;}
.y1f2{bottom:710.100000px;}
.y202{bottom:712.440000px;}
.y1dd{bottom:712.614420px;}
.y67{bottom:713.287650px;}
.y281{bottom:713.340000px;}
.y16c{bottom:715.140000px;}
.y20c{bottom:716.040000px;}
.y13f{bottom:719.640000px;}
.yeb{bottom:720.540000px;}
.y7{bottom:726.298500px;}
.y16a{bottom:727.020000px;}
.y239{bottom:728.100000px;}
.y264{bottom:728.280000px;}
.yd5{bottom:728.640000px;}
.y1dc{bottom:729.900000px;}
.y11c{bottom:731.700000px;}
.yb1{bottom:731.880000px;}
.y16b{bottom:732.240000px;}
.y1af{bottom:732.960000px;}
.y1c8{bottom:733.314420px;}
.y280{bottom:734.040000px;}
.y201{bottom:734.400000px;}
.y99{bottom:734.580000px;}
.y20b{bottom:736.740000px;}
.y13e{bottom:738.720000px;}
.y66{bottom:741.043650px;}
.y1da{bottom:746.280000px;}
.y11b{bottom:746.820000px;}
.y238{bottom:748.800000px;}
.y263{bottom:748.980000px;}
.y7d{bottom:749.340000px;}
.y169{bottom:749.520000px;}
.y39{bottom:752.100300px;}
.y1f1{bottom:752.580000px;}
.y4{bottom:752.599495px;}
.y11f{bottom:754.560000px;}
.y1db{bottom:754.740000px;}
.y1c7{bottom:755.100000px;}
.y65{bottom:756.043650px;}
.y20a{bottom:757.440000px;}
.y13c{bottom:757.620000px;}
.y37{bottom:759.600150px;}
.y167{bottom:761.400000px;}
.yea{bottom:761.940000px;}
.y168{bottom:766.800000px;}
.y1d8{bottom:767.520000px;}
.y1c6{bottom:767.862540px;}
.y199{bottom:769.500000px;}
.yd4{bottom:770.040000px;}
.yb0{bottom:773.280000px;}
.y200{bottom:775.800000px;}
.y98{bottom:775.980000px;}
.y13b{bottom:776.700000px;}
.y36{bottom:777.600150px;}
.y209{bottom:778.140000px;}
.y237{bottom:781.560000px;}
.y64{bottom:783.799500px;}
.y166{bottom:784.080000px;}
.y262{bottom:784.620000px;}
.y1c5{bottom:784.968840px;}
.y1d7{bottom:788.940000px;}
.y27f{bottom:790.380000px;}
.y7c{bottom:790.740000px;}
.y1f0{bottom:795.240000px;}
.y13a{bottom:795.600000px;}
.y35{bottom:795.600150px;}
.y164{bottom:795.960000px;}
.y1ff{bottom:797.580000px;}
.y63{bottom:798.799500px;}
.y208{bottom:798.840000px;}
.y11a{bottom:799.027200px;}
.y38{bottom:800.100300px;}
.y165{bottom:801.360000px;}
.y1c4{bottom:802.254420px;}
.y236{bottom:802.260000px;}
.ye9{bottom:803.340000px;}
.y261{bottom:805.320000px;}
.y1d6{bottom:806.220000px;}
.y27e{bottom:811.080000px;}
.yd3{bottom:812.160000px;}
.y34{bottom:813.600150px;}
.y62{bottom:813.799500px;}
.yaf{bottom:814.680000px;}
.y1ef{bottom:815.940000px;}
.y97{bottom:817.380000px;}
.y119{bottom:817.922160px;}
.y1fe{bottom:818.280000px;}
.y163{bottom:818.640000px;}
.y1c3{bottom:819.540000px;}
.y235{bottom:822.960000px;}
.y1d5{bottom:823.500000px;}
.y260{bottom:826.020000px;}
.y161{bottom:830.520000px;}
.y27d{bottom:831.780000px;}
.y7b{bottom:832.140000px;}
.y139{bottom:833.580000px;}
.y162{bottom:835.740000px;}
.y1ee{bottom:837.900000px;}
.y1fd{bottom:838.980000px;}
.y207{bottom:840.240000px;}
.y1d4{bottom:840.600000px;}
.y61{bottom:841.555350px;}
.y234{bottom:843.660000px;}
.ye8{bottom:845.280000px;}
.y25f{bottom:846.720000px;}
.y33{bottom:849.600150px;}
.y136{bottom:852.480000px;}
.y160{bottom:853.020000px;}
.yd2{bottom:853.740000px;}
.y118{bottom:855.000000px;}
.yae{bottom:856.080000px;}
.y60{bottom:856.555350px;}
.y1d3{bottom:857.880000px;}
.y1ed{bottom:858.600000px;}
.y96{bottom:858.780000px;}
.y1fc{bottom:859.680000px;}
.y206{bottom:860.940000px;}
.y233{bottom:864.360000px;}
.y15e{bottom:864.900000px;}
.y25e{bottom:867.420000px;}
.y15f{bottom:870.300000px;}
.y7a{bottom:873.540000px;}
.y138{bottom:874.980000px;}
.y1d2{bottom:875.160000px;}
.y3{bottom:879.369000px;}
.y1ec{bottom:880.380000px;}
.y205{bottom:881.640000px;}
.y5f{bottom:884.311350px;}
.y232{bottom:885.060000px;}
.ye7{bottom:886.860000px;}
.y117{bottom:887.039460px;}
.y15d{bottom:887.580000px;}
.y27c{bottom:888.120000px;}
.y1d1{bottom:892.440000px;}
.yd1{bottom:895.140000px;}
.yad{bottom:897.480000px;}
.y5e{bottom:899.311350px;}
.y95{bottom:900.180000px;}
.y45{bottom:901.200300px;}
.y25d{bottom:903.240000px;}
.y15c{bottom:904.860000px;}
.y116{bottom:905.580000px;}
.y299{bottom:908.820000px;}
.y135{bottom:909.540000px;}
.y1d0{bottom:909.720000px;}
.y5d{bottom:914.311350px;}
.y79{bottom:914.940000px;}
.y15a{bottom:916.740000px;}
.y1e9{bottom:919.980000px;}
.y115{bottom:921.960000px;}
.y15b{bottom:922.140000px;}
.y25c{bottom:923.940000px;}
.y231{bottom:926.280000px;}
.ye6{bottom:928.260000px;}
.y134{bottom:928.440000px;}
.y298{bottom:929.520000px;}
.y1ce{bottom:931.140000px;}
.y113{bottom:936.000000px;}
.yd0{bottom:937.080000px;}
.yac{bottom:938.880000px;}
.y32{bottom:939.600150px;}
.y94{bottom:941.580000px;}
.y5c{bottom:942.067200px;}
.y114{bottom:942.660000px;}
.y25b{bottom:944.640000px;}
.y2{bottom:945.126001px;}
.y230{bottom:946.980000px;}
.y132{bottom:947.340000px;}
.y1cc{bottom:952.380000px;}
.y78{bottom:956.340000px;}
.y31{bottom:957.600150px;}
.y1cd{bottom:957.780000px;}
.y158{bottom:962.088120px;}
.y159{bottom:962.094420px;}
.y1e8{bottom:962.100000px;}
.y112{bottom:963.360000px;}
.y27b{bottom:965.340000px;}
.y131{bottom:966.420000px;}
.y1{bottom:966.726000px;}
.y22f{bottom:967.680000px;}
.ye5{bottom:969.660000px;}
.y5b{bottom:969.823200px;}
.y1cb{bottom:973.800000px;}
.y30{bottom:975.600150px;}
.y10f{bottom:977.580000px;}
.y157{bottom:979.373700px;}
.ycf{bottom:979.380000px;}
.yab{bottom:980.280000px;}
.y93{bottom:982.980000px;}
.y110{bottom:984.060000px;}
.y5a{bottom:984.823200px;}
.y297{bottom:986.040000px;}
.y130{bottom:987.660000px;}
.y22e{bottom:988.380000px;}
.y1ca{bottom:993.240000px;}
.y2f{bottom:993.600150px;}
.y156{bottom:996.480000px;}
.y77{bottom:997.740000px;}
.y1e7{bottom:999.180000px;}
.y59{bottom:999.823200px;}
.y25a{bottom:1000.980000px;}
.y12d{bottom:1001.700000px;}
.y10d{bottom:1007.100000px;}
.y12e{bottom:1008.900000px;}
.y22d{bottom:1009.080000px;}
.y2e{bottom:1011.600150px;}
.ye4{bottom:1011.780000px;}
.y58{bottom:1014.823200px;}
.yce{bottom:1020.960000px;}
.yaa{bottom:1021.680000px;}
.y92{bottom:1024.380000px;}
.y109{bottom:1026.180000px;}
.y22c{bottom:1029.960000px;}
.y76{bottom:1030.320000px;}
.y27a{bottom:1042.380000px;}
.y57{bottom:1044.823200px;}
.y100{bottom:1045.625040px;}
.y2d{bottom:1047.600150px;}
.ycd{bottom:1062.900000px;}
.y75{bottom:1063.080000px;}
.yff{bottom:1064.520000px;}
.y2c{bottom:1065.600150px;}
.h2e{height:17.098500px;}
.h31{height:17.100000px;}
.h2f{height:17.280000px;}
.h25{height:18.900000px;}
.h29{height:19.080000px;}
.h27{height:19.081500px;}
.h1e{height:20.700000px;}
.h20{height:20.701500px;}
.h1f{height:20.880000px;}
.h3a{height:21.240000px;}
.h38{height:21.241500px;}
.h37{height:21.418500px;}
.h39{height:21.420000px;}
.h3b{height:28.305703px;}
.h1b{height:30.393984px;}
.h7{height:32.130000px;}
.h35{height:34.378500px;}
.h36{height:34.560000px;}
.h14{height:38.400000px;}
.h15{height:38.544000px;}
.h3c{height:41.398500px;}
.h23{height:41.400000px;}
.h30{height:42.777422px;}
.ha{height:43.200000px;}
.hb{height:43.362000px;}
.h2c{height:43.506914px;}
.h22{height:43.560000px;}
.h6{height:45.900000px;}
.h19{height:46.716680px;}
.hf{height:48.000000px;}
.h10{height:48.180000px;}
.h3{height:48.195000px;}
.h1c{height:48.224531px;}
.h2d{height:48.393984px;}
.h16{height:51.782344px;}
.h17{height:52.417969px;}
.h2{height:55.080000px;}
.h9{height:55.200000px;}
.h24{height:56.284436px;}
.h18{height:56.285156px;}
.h21{height:56.287316px;}
.h1d{height:56.288036px;}
.h2a{height:56.306756px;}
.h26{height:56.405391px;}
.h28{height:57.058500px;}
.he{height:57.600000px;}
.h1a{height:61.471055px;}
.h13{height:67.200000px;}
.h12{height:76.800000px;}
.h5{height:78.030000px;}
.h2b{height:86.218500px;}
.h34{height:86.220000px;}
.hd{height:86.400000px;}
.h4{height:119.055004px;}
.hc{height:124.800000px;}
.h11{height:134.400000px;}
.h3e{height:275.040000px;}
.h3d{height:444.420000px;}
.h32{height:892.980000px;}
.h33{height:893.250000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:16.380000px;}
.wc{width:73.258500px;}
.wf{width:73.260000px;}
.w10{width:76.320000px;}
.wd{width:76.321500px;}
.w24{width:80.100000px;}
.w30{width:80.101500px;}
.w13{width:81.000000px;}
.w17{width:82.620000px;}
.we{width:84.780000px;}
.wb{width:85.320000px;}
.w26{width:85.501500px;}
.w31{width:85.680000px;}
.w2c{width:85.860000px;}
.w3c{width:86.218500px;}
.w16{width:90.000000px;}
.w20{width:93.060000px;}
.w25{width:94.140000px;}
.w27{width:94.858500px;}
.w22{width:94.860000px;}
.w2e{width:95.580000px;}
.w2d{width:97.020000px;}
.w21{width:97.200000px;}
.w11{width:98.280000px;}
.w34{width:98.820000px;}
.w1a{width:99.540000px;}
.w18{width:102.060000px;}
.w3b{width:103.500000px;}
.w33{width:104.580000px;}
.w29{width:104.760000px;}
.w23{width:106.020000px;}
.w28{width:106.021500px;}
.w2f{width:106.560000px;}
.w32{width:106.920000px;}
.w19{width:107.820000px;}
.w37{width:116.280000px;}
.w3a{width:121.140000px;}
.w38{width:123.120000px;}
.w36{width:126.001500px;}
.w7{width:126.180000px;}
.w35{width:131.400000px;}
.w4{width:150.480000px;}
.w12{width:162.000000px;}
.w3d{width:168.480000px;}
.w3e{width:213.840000px;}
.w5{width:217.620000px;}
.w1b{width:219.960000px;}
.wa{width:234.360000px;}
.w8{width:234.900000px;}
.w14{width:243.000000px;}
.w6{width:319.680000px;}
.w3f{width:320.040000px;}
.w39{width:378.900000px;}
.w1f{width:460.620000px;}
.w2b{width:462.421500px;}
.w2a{width:479.160000px;}
.w1e{width:481.140000px;}
.w2{width:637.794021px;}
.w40{width:702.360000px;}
.w15{width:729.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.w1c{width:1262.880000px;}
.w1d{width:1263.000000px;}
.x6{left:-864.000000px;}
.x0{left:0.000000px;}
.x1c{left:8.100000px;}
.x2f{left:11.520000px;}
.x46{left:13.680000px;}
.x3d{left:15.300000px;}
.x56{left:17.460000px;}
.x82{left:18.900000px;}
.x9{left:20.265600px;}
.x3e{left:21.600000px;}
.x5a{left:22.680000px;}
.x3c{left:24.480000px;}
.x2a{left:26.100000px;}
.x57{left:27.360000px;}
.x55{left:28.440000px;}
.x35{left:29.520000px;}
.xac{left:30.600000px;}
.x51{left:31.860000px;}
.x8{left:33.059400px;}
.x5b{left:34.920000px;}
.x45{left:36.540000px;}
.x5c{left:38.160000px;}
.x2b{left:39.600000px;}
.x58{left:41.220000px;}
.x1e{left:42.300000px;}
.xb{left:43.581300px;}
.x5{left:44.644200px;}
.xad{left:46.800000px;}
.xb6{left:48.420000px;}
.x59{left:49.680000px;}
.x37{left:51.120000px;}
.x26{left:53.640000px;}
.xb7{left:55.980000px;}
.xa4{left:57.240000px;}
.x20{left:58.320000px;}
.x3f{left:60.300000px;}
.x27{left:68.220000px;}
.x24{left:76.680000px;}
.x22{left:80.820000px;}
.x1{left:102.045000px;}
.x5f{left:103.500000px;}
.x2{left:106.297500px;}
.xd{left:108.000000px;}
.x17{left:109.260000px;}
.x21{left:116.100000px;}
.xb9{left:118.980000px;}
.x16{left:123.300000px;}
.xc{left:128.250000px;}
.x28{left:132.120000px;}
.x40{left:134.820000px;}
.xb8{left:140.220000px;}
.xbe{left:144.000000px;}
.x18{left:148.500000px;}
.x25{left:149.760000px;}
.x23{left:154.800000px;}
.x83{left:155.880000px;}
.x85{left:158.940000px;}
.x12{left:162.000000px;}
.xa{left:170.802000px;}
.xb3{left:186.660000px;}
.x4{left:203.484001px;}
.x29{left:206.280000px;}
.xf{left:208.505250px;}
.x5e{left:212.760000px;}
.x61{left:220.860000px;}
.x7{left:229.500000px;}
.x9f{left:231.120000px;}
.xa0{left:243.540000px;}
.x15{left:248.040000px;}
.x86{left:255.425220px;}
.x1d{left:258.480000px;}
.xb1{left:272.880000px;}
.xb5{left:276.120000px;}
.xb2{left:277.740000px;}
.xa1{left:280.438200px;}
.xbb{left:287.820000px;}
.x87{left:298.440000px;}
.x62{left:302.760000px;}
.xba{left:309.060000px;}
.x89{left:313.380000px;}
.x64{left:317.160000px;}
.x88{left:321.660000px;}
.x13{left:324.000000px;}
.x63{left:325.620000px;}
.x42{left:327.960000px;}
.xa2{left:329.760000px;}
.x2c{left:332.460000px;}
.x43{left:336.060000px;}
.x8a{left:345.411360px;}
.x65{left:349.370640px;}
.x34{left:351.000000px;}
.xa3{left:363.240000px;}
.x41{left:370.982160px;}
.x44{left:372.958200px;}
.x8b{left:392.580000px;}
.x66{left:395.820000px;}
.xbd{left:397.440000px;}
.x11{left:409.320000px;}
.x67{left:412.740000px;}
.x30{left:417.780000px;}
.x48{left:426.240000px;}
.x39{left:432.000000px;}
.x47{left:433.260000px;}
.x8c{left:441.187740px;}
.x68{left:444.427740px;}
.x14{left:450.540000px;}
.x3{left:454.959000px;}
.x10{left:459.000000px;}
.xa5{left:461.160000px;}
.xb4{left:471.420000px;}
.x1f{left:476.100000px;}
.xa6{left:482.760000px;}
.xe{left:486.000000px;}
.x8d{left:489.600000px;}
.x31{left:491.040000px;}
.x69{left:493.020000px;}
.xbc{left:498.060000px;}
.x49{left:500.580000px;}
.x6b{left:504.720000px;}
.x36{left:513.000000px;}
.xa7{left:514.447740px;}
.x8e{left:518.040000px;}
.x4a{left:520.020000px;}
.x6a{left:521.280000px;}
.xb0{left:528.480000px;}
.x8f{left:537.291180px;}
.x6c{left:540.531180px;}
.x4b{left:551.707740px;}
.x2d{left:567.360000px;}
.x2e{left:584.460000px;}
.x6d{left:587.880000px;}
.x3a{left:594.000000px;}
.x90{left:599.760000px;}
.x4c{left:602.640000px;}
.x6f{left:604.987380px;}
.xae{left:608.040000px;}
.x4e{left:620.640000px;}
.x5d{left:622.980000px;}
.x6e{left:625.500000px;}
.xa8{left:630.711180px;}
.x4d{left:635.940000px;}
.x4f{left:656.451180px;}
.x32{left:669.240000px;}
.x38{left:675.000000px;}
.x84{left:692.460000px;}
.x60{left:694.260000px;}
.x91{left:700.200000px;}
.x70{left:702.000000px;}
.x50{left:710.460000px;}
.xaf{left:711.540000px;}
.xa9{left:712.980000px;}
.xab{left:716.046660px;}
.x52{left:718.560000px;}
.x54{left:724.322340px;}
.x92{left:732.231360px;}
.x71{left:734.031360px;}
.xaa{left:736.380000px;}
.x33{left:742.500000px;}
.x53{left:743.580000px;}
.x1a{left:744.840000px;}
.x3b{left:756.000000px;}
.x93{left:772.560000px;}
.x72{left:774.360000px;}
.x95{left:787.500000px;}
.x74{left:788.580000px;}
.x94{left:795.780000px;}
.x73{left:797.760000px;}
.x1b{left:810.000000px;}
.x96{left:819.531360px;}
.x75{left:821.522700px;}
.x19{left:855.000000px;}
.x97{left:866.700000px;}
.x76{left:868.500000px;}
.x99{left:877.860000px;}
.x78{left:879.480000px;}
.x98{left:892.440000px;}
.x77{left:894.060000px;}
.x9a{left:909.547740px;}
.x79{left:911.167740px;}
.xc2{left:938.265600px;}
.xc1{left:951.059400px;}
.x9b{left:952.380000px;}
.x7a{left:954.000000px;}
.xbf{left:962.644200px;}
.x9d{left:964.260000px;}
.x7c{left:965.700000px;}
.x9c{left:980.820000px;}
.x7b{left:982.260000px;}
.x9e{left:1000.071180px;}
.x7d{left:1001.511180px;}
.x7e{left:1048.860000px;}
.x7f{left:1063.080000px;}
.x81{left:1065.967380px;}
.x80{left:1086.480000px;}
.xc3{left:1088.802000px;}
.xc0{left:1147.500000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.800000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v4{vertical-align:12.800000pt;}
.v5{vertical-align:15.360000pt;}
.v1{vertical-align:21.120000pt;}
.ls1{letter-spacing:-2.773333pt;}
.ls36{letter-spacing:-1.152000pt;}
.ls3b{letter-spacing:-1.024000pt;}
.ls8a{letter-spacing:-0.883200pt;}
.ls33{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.768000pt;}
.ls76{letter-spacing:-0.765440pt;}
.ls48{letter-spacing:-0.704000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls6c{letter-spacing:-0.576000pt;}
.ls83{letter-spacing:-0.529920pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.448000pt;}
.ls82{letter-spacing:-0.412160pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls85{letter-spacing:-0.353280pt;}
.ls8e{letter-spacing:-0.318720pt;}
.ls7b{letter-spacing:-0.294400pt;}
.ls8d{letter-spacing:-0.265600pt;}
.ls5a{letter-spacing:-0.256000pt;}
.ls84{letter-spacing:-0.235520pt;}
.ls3c{letter-spacing:-0.212480pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls75{letter-spacing:-0.117760pt;}
.ls20{letter-spacing:-0.106240pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls3d{letter-spacing:-0.053120pt;}
.ls5b{letter-spacing:-0.045440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls89{letter-spacing:0.047360pt;}
.ls8c{letter-spacing:0.053120pt;}
.ls59{letter-spacing:0.064000pt;}
.ls5f{letter-spacing:0.090880pt;}
.ls8b{letter-spacing:0.117760pt;}
.ls34{letter-spacing:0.121600pt;}
.ls5{letter-spacing:0.128000pt;}
.ls87{letter-spacing:0.159360pt;}
.ls63{letter-spacing:0.185600pt;}
.ls11{letter-spacing:0.192000pt;}
.ls79{letter-spacing:0.212480pt;}
.ls71{letter-spacing:0.229632pt;}
.ls88{letter-spacing:0.231040pt;}
.ls77{letter-spacing:0.235520pt;}
.ls9c{letter-spacing:0.249600pt;}
.ls1f{letter-spacing:0.254976pt;}
.ls3{letter-spacing:0.256000pt;}
.ls73{letter-spacing:0.271360pt;}
.ls60{letter-spacing:0.272640pt;}
.ls72{letter-spacing:0.294400pt;}
.ls92{letter-spacing:0.318720pt;}
.ls51{letter-spacing:0.320000pt;}
.ls91{letter-spacing:0.353280pt;}
.ls95{letter-spacing:0.365056pt;}
.ls7a{letter-spacing:0.366528pt;}
.ls80{letter-spacing:0.371840pt;}
.ls78{letter-spacing:0.400384pt;}
.ls98{letter-spacing:0.408960pt;}
.ls81{letter-spacing:0.509440pt;}
.ls7d{letter-spacing:0.529920pt;}
.ls90{letter-spacing:0.531200pt;}
.ls7f{letter-spacing:0.533120pt;}
.ls74{letter-spacing:0.584320pt;}
.ls93{letter-spacing:0.592640pt;}
.ls86{letter-spacing:0.624640pt;}
.ls1e{letter-spacing:0.674624pt;}
.ls7c{letter-spacing:0.690560pt;}
.ls6b{letter-spacing:0.761600pt;}
.lse{letter-spacing:0.768000pt;}
.ls8f{letter-spacing:0.823680pt;}
.ls9a{letter-spacing:0.849920pt;}
.ls4b{letter-spacing:1.401600pt;}
.lsf{letter-spacing:1.408000pt;}
.ls56{letter-spacing:1.856000pt;}
.ls28{letter-spacing:2.048000pt;}
.ls5c{letter-spacing:2.072960pt;}
.ls4c{letter-spacing:2.681600pt;}
.ls10{letter-spacing:2.688000pt;}
.ls53{letter-spacing:2.712960pt;}
.ls55{letter-spacing:2.736640pt;}
.ls5d{letter-spacing:3.197440pt;}
.ls15{letter-spacing:3.321600pt;}
.ls16{letter-spacing:3.328000pt;}
.ls43{letter-spacing:3.955200pt;}
.ls30{letter-spacing:3.968000pt;}
.ls5e{letter-spacing:4.601600pt;}
.ls1a{letter-spacing:4.608000pt;}
.ls94{letter-spacing:5.099520pt;}
.ls68{letter-spacing:5.235200pt;}
.ls27{letter-spacing:5.248000pt;}
.ls31{letter-spacing:5.888000pt;}
.ls6a{letter-spacing:6.521600pt;}
.ls21{letter-spacing:6.528000pt;}
.ls23{letter-spacing:7.168000pt;}
.ls69{letter-spacing:7.801600pt;}
.ls24{letter-spacing:7.808000pt;}
.ls2c{letter-spacing:8.448000pt;}
.ls7e{letter-spacing:8.596480pt;}
.ls19{letter-spacing:9.088000pt;}
.lsd{letter-spacing:9.728000pt;}
.ls99{letter-spacing:10.199040pt;}
.ls25{letter-spacing:10.355200pt;}
.lsc{letter-spacing:10.368000pt;}
.ls2b{letter-spacing:11.008000pt;}
.ls1d{letter-spacing:11.504640pt;}
.ls1c{letter-spacing:11.648000pt;}
.ls1b{letter-spacing:12.288000pt;}
.ls22{letter-spacing:12.928000pt;}
.ls2a{letter-spacing:13.561600pt;}
.lsb{letter-spacing:13.568000pt;}
.ls54{letter-spacing:13.760000pt;}
.ls61{letter-spacing:13.888000pt;}
.ls4{letter-spacing:14.208000pt;}
.ls50{letter-spacing:14.272000pt;}
.ls4f{letter-spacing:14.464000pt;}
.ls52{letter-spacing:14.528000pt;}
.ls2e{letter-spacing:14.848000pt;}
.ls41{letter-spacing:15.488000pt;}
.ls2d{letter-spacing:16.128000pt;}
.ls4a{letter-spacing:16.768000pt;}
.ls62{letter-spacing:16.792960pt;}
.ls57{letter-spacing:17.277440pt;}
.ls37{letter-spacing:17.408000pt;}
.ls4e{letter-spacing:17.472000pt;}
.ls14{letter-spacing:18.048000pt;}
.ls6d{letter-spacing:18.688000pt;}
.ls26{letter-spacing:19.328000pt;}
.ls32{letter-spacing:19.968000pt;}
.ls3a{letter-spacing:20.318720pt;}
.ls3f{letter-spacing:20.608000pt;}
.ls45{letter-spacing:21.241600pt;}
.ls13{letter-spacing:21.248000pt;}
.ls44{letter-spacing:21.888000pt;}
.ls39{letter-spacing:22.528000pt;}
.ls46{letter-spacing:23.168000pt;}
.ls12{letter-spacing:24.448000pt;}
.lsa{letter-spacing:25.088000pt;}
.ls42{letter-spacing:25.728000pt;}
.ls49{letter-spacing:26.368000pt;}
.ls47{letter-spacing:27.008000pt;}
.ls9b{letter-spacing:28.288000pt;}
.ls70{letter-spacing:28.928000pt;}
.ls65{letter-spacing:29.568000pt;}
.ls6e{letter-spacing:30.841600pt;}
.ls6f{letter-spacing:30.848000pt;}
.ls2f{letter-spacing:31.488000pt;}
.ls35{letter-spacing:32.768000pt;}
.ls3e{letter-spacing:34.688000pt;}
.ls67{letter-spacing:37.248000pt;}
.ls64{letter-spacing:39.168000pt;}
.ls66{letter-spacing:62.848000pt;}
.ls38{letter-spacing:67.328000pt;}
.ls4d{letter-spacing:121.088000pt;}
.ls97{letter-spacing:174.021120pt;}
.ls58{letter-spacing:174.208000pt;}
.ls96{letter-spacing:250.832640pt;}
.wsad{word-spacing:-64.000000pt;}
.wsb2{word-spacing:-45.712640pt;}
.wsb1{word-spacing:-45.530880pt;}
.wsae{word-spacing:-45.440000pt;}
.wsab{word-spacing:-45.394560pt;}
.wsac{word-spacing:-29.289600pt;}
.wsb6{word-spacing:-28.649600pt;}
.wsaa{word-spacing:-25.449600pt;}
.ws3{word-spacing:-18.048000pt;}
.ws55{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.920000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws19{word-spacing:-17.728000pt;}
.ws6{word-spacing:-17.664000pt;}
.ws7{word-spacing:-17.600000pt;}
.ws1a{word-spacing:-17.408000pt;}
.wsc8{word-spacing:-17.344000pt;}
.ws43{word-spacing:-17.280000pt;}
.ws9f{word-spacing:-17.152000pt;}
.ws95{word-spacing:-17.088000pt;}
.ws44{word-spacing:-17.024000pt;}
.ws9e{word-spacing:-16.960000pt;}
.wse7{word-spacing:-16.663040pt;}
.wse9{word-spacing:-16.604160pt;}
.wsde{word-spacing:-16.368640pt;}
.wsda{word-spacing:-16.250880pt;}
.wse8{word-spacing:-16.133120pt;}
.wsdf{word-spacing:-16.074240pt;}
.wseb{word-spacing:-16.015360pt;}
.wsed{word-spacing:-15.956480pt;}
.wsec{word-spacing:-15.838720pt;}
.ws108{word-spacing:-15.617280pt;}
.wse4{word-spacing:-15.603200pt;}
.wse0{word-spacing:-15.457920pt;}
.ws109{word-spacing:-15.298560pt;}
.ws103{word-spacing:-15.086080pt;}
.wsf5{word-spacing:-14.979840pt;}
.wsf6{word-spacing:-14.820480pt;}
.wsdb{word-spacing:-14.767360pt;}
.wsf4{word-spacing:-14.714240pt;}
.ws46{word-spacing:-14.661120pt;}
.ws75{word-spacing:-14.554880pt;}
.ws100{word-spacing:-14.501760pt;}
.ws2f{word-spacing:-11.920640pt;}
.wsea{word-spacing:-10.319360pt;}
.ws1{word-spacing:-9.936000pt;}
.ws45{word-spacing:-9.607680pt;}
.ws2{word-spacing:-8.832000pt;}
.ws6b{word-spacing:-5.248000pt;}
.wsb{word-spacing:-4.608000pt;}
.ws92{word-spacing:-4.480000pt;}
.ws69{word-spacing:-4.160000pt;}
.ws2c{word-spacing:-3.968000pt;}
.ws4b{word-spacing:-3.840000pt;}
.wsbf{word-spacing:-3.584000pt;}
.ws71{word-spacing:-3.520000pt;}
.ws68{word-spacing:-3.328000pt;}
.wsc3{word-spacing:-3.264000pt;}
.ws73{word-spacing:-3.200000pt;}
.ws40{word-spacing:-3.134080pt;}
.ws6a{word-spacing:-3.072000pt;}
.ws94{word-spacing:-2.944000pt;}
.ws6c{word-spacing:-2.880000pt;}
.ws12{word-spacing:-2.688000pt;}
.ws64{word-spacing:-2.304000pt;}
.wsbe{word-spacing:-2.240000pt;}
.wsd{word-spacing:-2.048000pt;}
.ws5e{word-spacing:-1.792000pt;}
.ws5d{word-spacing:-1.664000pt;}
.wse{word-spacing:-1.408000pt;}
.wscd{word-spacing:-1.280000pt;}
.ws9d{word-spacing:-1.221760pt;}
.ws35{word-spacing:-1.152000pt;}
.ws62{word-spacing:-1.024000pt;}
.ws9b{word-spacing:-0.960000pt;}
.wsf1{word-spacing:-0.883200pt;}
.ws9{word-spacing:-0.768000pt;}
.ws89{word-spacing:-0.640000pt;}
.ws107{word-spacing:-0.584320pt;}
.ws5b{word-spacing:-0.512000pt;}
.ws76{word-spacing:-0.448000pt;}
.ws5c{word-spacing:-0.384000pt;}
.wsf0{word-spacing:-0.353280pt;}
.wsa1{word-spacing:-0.320000pt;}
.wse3{word-spacing:-0.294400pt;}
.ws10b{word-spacing:-0.265600pt;}
.ws11{word-spacing:-0.256000pt;}
.wse2{word-spacing:-0.235520pt;}
.wsfb{word-spacing:-0.212480pt;}
.ws34{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.128000pt;}
.wsf9{word-spacing:-0.117760pt;}
.ws105{word-spacing:-0.106240pt;}
.wsaf{word-spacing:-0.064000pt;}
.ws10e{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.ws42{word-spacing:0.053120pt;}
.ws15{word-spacing:0.064000pt;}
.ws41{word-spacing:0.106240pt;}
.wsdc{word-spacing:0.117760pt;}
.ws14{word-spacing:0.128000pt;}
.wsfa{word-spacing:0.159360pt;}
.ws30{word-spacing:0.192000pt;}
.wsfc{word-spacing:0.212480pt;}
.wsf2{word-spacing:0.235520pt;}
.ws8{word-spacing:0.256000pt;}
.ws101{word-spacing:0.265600pt;}
.wsef{word-spacing:0.294400pt;}
.ws13{word-spacing:0.320000pt;}
.ws22{word-spacing:0.384000pt;}
.wsdd{word-spacing:0.412160pt;}
.ws84{word-spacing:0.448000pt;}
.ws16{word-spacing:0.512000pt;}
.wsee{word-spacing:0.529920pt;}
.wscc{word-spacing:0.576000pt;}
.wsf3{word-spacing:0.588800pt;}
.ws102{word-spacing:0.637440pt;}
.ws24{word-spacing:0.640000pt;}
.ws53{word-spacing:0.690560pt;}
.wsb7{word-spacing:0.704000pt;}
.wse1{word-spacing:0.765440pt;}
.ws51{word-spacing:0.768000pt;}
.ws67{word-spacing:0.832000pt;}
.wsf8{word-spacing:0.883200pt;}
.wsd1{word-spacing:0.960000pt;}
.ws77{word-spacing:1.024000pt;}
.wsf7{word-spacing:1.059840pt;}
.ws18{word-spacing:1.152000pt;}
.wsd5{word-spacing:1.280000pt;}
.ws8d{word-spacing:1.408000pt;}
.ws58{word-spacing:1.536000pt;}
.ws8c{word-spacing:1.600000pt;}
.ws52{word-spacing:1.792000pt;}
.ws70{word-spacing:1.920000pt;}
.ws7a{word-spacing:2.048000pt;}
.wsa2{word-spacing:2.112000pt;}
.ws82{word-spacing:2.176000pt;}
.ws25{word-spacing:2.432000pt;}
.wsd7{word-spacing:2.688000pt;}
.ws81{word-spacing:2.816000pt;}
.wsa4{word-spacing:2.880000pt;}
.wsf{word-spacing:3.072000pt;}
.ws5f{word-spacing:3.200000pt;}
.ws7c{word-spacing:3.456000pt;}
.wsb3{word-spacing:3.520000pt;}
.ws10{word-spacing:3.712000pt;}
.wscb{word-spacing:3.840000pt;}
.wsfd{word-spacing:3.930880pt;}
.ws93{word-spacing:3.968000pt;}
.wsd2{word-spacing:4.096000pt;}
.wsfe{word-spacing:4.143360pt;}
.ws23{word-spacing:4.352000pt;}
.ws9c{word-spacing:4.608000pt;}
.ws86{word-spacing:4.736000pt;}
.ws3e{word-spacing:4.800000pt;}
.ws31{word-spacing:4.992000pt;}
.ws54{word-spacing:5.205760pt;}
.ws106{word-spacing:5.312000pt;}
.ws83{word-spacing:5.376000pt;}
.wsb9{word-spacing:5.440000pt;}
.ws29{word-spacing:5.632000pt;}
.wsa3{word-spacing:5.760000pt;}
.wsc4{word-spacing:5.843200pt;}
.wsd0{word-spacing:5.888000pt;}
.ws6d{word-spacing:6.016000pt;}
.wsc1{word-spacing:6.080000pt;}
.ws28{word-spacing:6.272000pt;}
.ws6e{word-spacing:6.528000pt;}
.ws4a{word-spacing:6.656000pt;}
.wsa6{word-spacing:6.720000pt;}
.ws6f{word-spacing:6.912000pt;}
.ws49{word-spacing:7.168000pt;}
.ws8f{word-spacing:7.296000pt;}
.wsce{word-spacing:7.360000pt;}
.ws10a{word-spacing:7.418880pt;}
.ws2e{word-spacing:7.552000pt;}
.ws48{word-spacing:7.680000pt;}
.wsb0{word-spacing:7.936000pt;}
.ws33{word-spacing:8.192000pt;}
.ws87{word-spacing:8.576000pt;}
.wse6{word-spacing:8.714240pt;}
.ws32{word-spacing:8.832000pt;}
.wsc6{word-spacing:9.030400pt;}
.wsc2{word-spacing:9.088000pt;}
.wsa5{word-spacing:9.280000pt;}
.wse5{word-spacing:9.361920pt;}
.ws3d{word-spacing:9.472000pt;}
.wsb8{word-spacing:9.600000pt;}
.wsc7{word-spacing:9.667840pt;}
.ws88{word-spacing:9.856000pt;}
.wsc9{word-spacing:9.920000pt;}
.ws21{word-spacing:10.112000pt;}
.ws10d{word-spacing:10.145920pt;}
.ws85{word-spacing:10.240000pt;}
.ws10c{word-spacing:10.305280pt;}
.wsba{word-spacing:10.368000pt;}
.ws20{word-spacing:10.496000pt;}
.wsa9{word-spacing:10.560000pt;}
.ws59{word-spacing:10.752000pt;}
.wsa7{word-spacing:10.880000pt;}
.wsc5{word-spacing:10.942720pt;}
.wsa8{word-spacing:11.008000pt;}
.ws5a{word-spacing:11.136000pt;}
.ws47{word-spacing:11.392000pt;}
.wsff{word-spacing:11.580160pt;}
.wsd9{word-spacing:11.648000pt;}
.ws39{word-spacing:12.032000pt;}
.ws1f{word-spacing:12.672000pt;}
.ws1e{word-spacing:13.312000pt;}
.wsc0{word-spacing:13.568000pt;}
.wscf{word-spacing:13.760000pt;}
.wsa{word-spacing:13.952000pt;}
.ws57{word-spacing:14.336000pt;}
.ws17{word-spacing:14.592000pt;}
.ws72{word-spacing:14.976000pt;}
.ws66{word-spacing:15.232000pt;}
.ws8b{word-spacing:15.488000pt;}
.ws61{word-spacing:15.872000pt;}
.ws8a{word-spacing:16.000000pt;}
.wsb5{word-spacing:16.256000pt;}
.ws60{word-spacing:16.512000pt;}
.ws90{word-spacing:16.768000pt;}
.ws1c{word-spacing:17.152000pt;}
.wsd8{word-spacing:17.408000pt;}
.wsd4{word-spacing:17.536000pt;}
.ws2d{word-spacing:17.792000pt;}
.ws3f{word-spacing:18.007680pt;}
.wsd3{word-spacing:18.240000pt;}
.ws1d{word-spacing:18.432000pt;}
.ws9a{word-spacing:18.688000pt;}
.ws4c{word-spacing:19.072000pt;}
.ws65{word-spacing:19.328000pt;}
.ws36{word-spacing:19.712000pt;}
.wsd6{word-spacing:20.032000pt;}
.wsa0{word-spacing:20.096000pt;}
.ws37{word-spacing:20.352000pt;}
.ws38{word-spacing:20.736000pt;}
.ws104{word-spacing:20.902400pt;}
.ws2a{word-spacing:20.992000pt;}
.ws50{word-spacing:21.632000pt;}
.wsb4{word-spacing:21.760000pt;}
.ws7f{word-spacing:22.272000pt;}
.ws91{word-spacing:22.912000pt;}
.ws26{word-spacing:23.552000pt;}
.ws56{word-spacing:23.936000pt;}
.ws27{word-spacing:24.192000pt;}
.wsca{word-spacing:24.320000pt;}
.ws79{word-spacing:24.832000pt;}
.ws7e{word-spacing:25.472000pt;}
.ws8e{word-spacing:25.856000pt;}
.ws7d{word-spacing:26.112000pt;}
.ws97{word-spacing:26.752000pt;}
.ws63{word-spacing:27.392000pt;}
.ws98{word-spacing:27.840000pt;}
.ws99{word-spacing:28.032000pt;}
.ws78{word-spacing:28.672000pt;}
.wsbd{word-spacing:29.312000pt;}
.ws4d{word-spacing:29.952000pt;}
.ws4e{word-spacing:30.592000pt;}
.ws4f{word-spacing:31.232000pt;}
.ws80{word-spacing:31.872000pt;}
.ws1b{word-spacing:32.512000pt;}
.ws74{word-spacing:32.768000pt;}
.ws96{word-spacing:33.152000pt;}
.ws7b{word-spacing:33.792000pt;}
.ws3b{word-spacing:35.072000pt;}
.ws3a{word-spacing:35.520000pt;}
.ws3c{word-spacing:35.968000pt;}
.ws2b{word-spacing:36.352000pt;}
.wsbb{word-spacing:38.272000pt;}
.wsbc{word-spacing:38.912000pt;}
._23{margin-left:-35.559680pt;}
._4{margin-left:-9.737600pt;}
._12{margin-left:-8.448000pt;}
._5{margin-left:-6.445867pt;}
._2{margin-left:-4.853333pt;}
._3{margin-left:-3.910400pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.104000pt;}
._7{width:0.960000pt;}
._6{width:2.688000pt;}
._10{width:3.606400pt;}
._c{width:4.560000pt;}
._e{width:6.032000pt;}
._15{width:7.168000pt;}
._16{width:8.080000pt;}
._11{width:9.424000pt;}
._b{width:10.496000pt;}
._a{width:12.112000pt;}
._17{width:13.248000pt;}
._f{width:14.208000pt;}
._1b{width:15.680000pt;}
._1f{width:16.784000pt;}
._19{width:19.056000pt;}
._13{width:20.368000pt;}
._20{width:22.096000pt;}
._21{width:23.024000pt;}
._d{width:24.288000pt;}
._1d{width:25.296000pt;}
._22{width:26.336000pt;}
._18{width:27.616000pt;}
._1c{width:28.688000pt;}
._24{width:29.600000pt;}
._1a{width:30.640000pt;}
._9{width:31.600000pt;}
._8{width:32.864000pt;}
._14{width:35.088000pt;}
._1e{width:67.536000pt;}
._25{width:750.208000pt;}
._27{width:751.603200pt;}
._26{width:753.377920pt;}
.fs10{font-size:34.560000pt;}
.fs12{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.666667pt;}
.fsf{font-size:42.880000pt;}
.fs11{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fse{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.880000pt;}
.fs5{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.666667pt;}
.fsa{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.fs7{font-size:138.666667pt;}
.fs9{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y13d{bottom:2.880000pt;}
.y12f{bottom:3.040000pt;}
.y133{bottom:3.200000pt;}
.y10e{bottom:3.360000pt;}
.y111{bottom:3.520000pt;}
.y11e{bottom:4.320000pt;}
.y1cf{bottom:4.640000pt;}
.y1d9{bottom:4.800000pt;}
.y121{bottom:9.120000pt;}
.y120{bottom:9.280000pt;}
.y1c2{bottom:18.240000pt;}
.y123{bottom:21.760000pt;}
.y11d{bottom:22.720000pt;}
.y27{bottom:36.000000pt;}
.y137{bottom:36.960000pt;}
.y23{bottom:47.395867pt;}
.y198{bottom:50.080000pt;}
.y26{bottom:50.666667pt;}
.ya9{bottom:50.880000pt;}
.y74{bottom:51.040000pt;}
.y6{bottom:59.133337pt;}
.y155{bottom:64.160000pt;}
.y25{bottom:65.333333pt;}
.y24{bottom:80.000000pt;}
.y5{bottom:86.333337pt;}
.yfe{bottom:98.864480pt;}
.yc0{bottom:98.870080pt;}
.yc8{bottom:98.875040pt;}
.ya8{bottom:100.960000pt;}
.yc5{bottom:102.880000pt;}
.y91{bottom:104.160000pt;}
.y250{bottom:104.450560pt;}
.yfd{bottom:114.229440pt;}
.ybf{bottom:114.235040pt;}
.yc4{bottom:114.400000pt;}
.yc7{bottom:118.240000pt;}
.y296{bottom:122.560000pt;}
.y22{bottom:123.790666pt;}
.yf9{bottom:124.480000pt;}
.y22b{bottom:128.159520pt;}
.yfc{bottom:129.594400pt;}
.yc6{bottom:129.760000pt;}
.y24f{bottom:130.373120pt;}
.y197{bottom:130.555040pt;}
.y90{bottom:130.560000pt;}
.y279{bottom:130.880000pt;}
.ye3{bottom:131.840000pt;}
.ybe{bottom:133.600000pt;}
.yc3{bottom:135.360000pt;}
.ya7{bottom:137.760000pt;}
.y2a7{bottom:140.960000pt;}
.y22a{bottom:144.640000pt;}
.ybd{bottom:145.120000pt;}
.yfb{bottom:148.800000pt;}
.y8f{bottom:148.960000pt;}
.y278{bottom:149.280000pt;}
.y196{bottom:149.920000pt;}
.y295{bottom:154.400000pt;}
.ycc{bottom:154.560000pt;}
.y24e{bottom:156.455040pt;}
.y210{bottom:157.920000pt;}
.y2a6{bottom:159.360000pt;}
.yfa{bottom:160.480000pt;}
.y195{bottom:161.264480pt;}
.yf8{bottom:161.280000pt;}
.y229{bottom:166.560000pt;}
.y8e{bottom:167.360000pt;}
.ye2{bottom:168.640000pt;}
.yc2{bottom:172.160000pt;}
.y294{bottom:172.800000pt;}
.ya6{bottom:174.560000pt;}
.y19{bottom:175.052000pt;}
.y194{bottom:176.470080pt;}
.y21b{bottom:179.680000pt;}
.y277{bottom:180.960000pt;}
.y24d{bottom:182.377600pt;}
.y228{bottom:184.960000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y293{bottom:191.200000pt;}
.ycb{bottom:191.520000pt;}
.y193{bottom:191.835040pt;}
.y8d{bottom:193.760000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.yf7{bottom:198.080000pt;}
.y276{bottom:199.360000pt;}
.y227{bottom:203.360000pt;}
.ye1{bottom:205.440000pt;}
.y192{bottom:207.200000pt;}
.y24c{bottom:208.459520pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yc1{bottom:208.960000pt;}
.y2a5{bottom:209.600000pt;}
.ya5{bottom:211.360000pt;}
.y21a{bottom:216.480000pt;}
.y275{bottom:217.760000pt;}
.y8c{bottom:220.160000pt;}
.y191{bottom:221.600000pt;}
.y226{bottom:221.760000pt;}
.y292{bottom:222.880000pt;}
.y2a4{bottom:228.000000pt;}
.y211{bottom:228.320000pt;}
.yca{bottom:228.960000pt;}
.y10c{bottom:229.440000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y24b{bottom:234.382080pt;}
.yf6{bottom:234.880000pt;}
.y219{bottom:235.840000pt;}
.y274{bottom:236.160000pt;}
.y190{bottom:236.960000pt;}
.y225{bottom:240.160000pt;}
.y291{bottom:241.280000pt;}
.y1d{bottom:242.238666pt;}
.ye0{bottom:242.240000pt;}
.y14{bottom:242.252002pt;}
.y10b{bottom:244.960000pt;}
.ybc{bottom:245.760000pt;}
.y8b{bottom:246.560000pt;}
.ya4{bottom:248.160000pt;}
.y18f{bottom:252.320000pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y218{bottom:254.240000pt;}
.y224{bottom:258.560000pt;}
.y290{bottom:259.680000pt;}
.y24a{bottom:260.464000pt;}
.y18d{bottom:262.880000pt;}
.y154{bottom:264.960000pt;}
.y18e{bottom:267.680000pt;}
.y273{bottom:268.000000pt;}
.yf5{bottom:271.680000pt;}
.y217{bottom:272.640000pt;}
.y8a{bottom:272.960000pt;}
.yc9{bottom:274.400000pt;}
.y10a{bottom:274.720000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y223{bottom:276.960000pt;}
.y28f{bottom:278.080000pt;}
.ydf{bottom:279.040000pt;}
.ybb{bottom:282.560000pt;}
.y18c{bottom:283.040000pt;}
.y153{bottom:283.360000pt;}
.ya3{bottom:284.960000pt;}
.y249{bottom:286.386560pt;}
.y272{bottom:286.400000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y216{bottom:292.160000pt;}
.y18a{bottom:293.600000pt;}
.y222{bottom:295.360000pt;}
.y2a3{bottom:296.480000pt;}
.y18b{bottom:298.400000pt;}
.y89{bottom:299.360000pt;}
.y44{bottom:303.600133pt;}
.y271{bottom:304.800000pt;}
.yf4{bottom:308.480000pt;}
.y10{bottom:309.452000pt;}
.y28e{bottom:309.760000pt;}
.y215{bottom:310.560000pt;}
.y21d{bottom:311.680000pt;}
.y248{bottom:312.468480pt;}
.y152{bottom:313.440000pt;}
.y189{bottom:313.600000pt;}
.y221{bottom:313.760000pt;}
.yde{bottom:315.840000pt;}
.y43{bottom:318.000133pt;}
.yba{bottom:319.360000pt;}
.ya2{bottom:321.760000pt;}
.y187{bottom:324.160000pt;}
.y88{bottom:325.760000pt;}
.y28d{bottom:328.160000pt;}
.y188{bottom:328.960000pt;}
.y214{bottom:330.080000pt;}
.y220{bottom:332.160000pt;}
.y42{bottom:332.400133pt;}
.y270{bottom:336.480000pt;}
.y247{bottom:338.391040pt;}
.y151{bottom:341.915200pt;}
.yf{bottom:343.809333pt;}
.y186{bottom:344.320000pt;}
.yf3{bottom:345.280000pt;}
.y28c{bottom:346.560000pt;}
.y41{bottom:346.800133pt;}
.y213{bottom:348.480000pt;}
.y21c{bottom:349.440000pt;}
.y21f{bottom:350.560000pt;}
.y87{bottom:352.160000pt;}
.ydd{bottom:352.640000pt;}
.y184{bottom:354.880000pt;}
.yb9{bottom:356.160000pt;}
.y54{bottom:358.400133pt;}
.y150{bottom:358.555040pt;}
.ya1{bottom:358.560000pt;}
.y185{bottom:359.680000pt;}
.y40{bottom:361.200133pt;}
.ye{bottom:362.706666pt;}
.y246{bottom:364.472960pt;}
.y28b{bottom:364.960000pt;}
.y212{bottom:367.840000pt;}
.y21e{bottom:368.960000pt;}
.y29{bottom:371.466933pt;}
.y26f{bottom:373.280000pt;}
.y53{bottom:374.400133pt;}
.y1ad{bottom:374.720000pt;}
.y183{bottom:375.040000pt;}
.y3f{bottom:375.600133pt;}
.y2b{bottom:376.365467pt;}
.y14f{bottom:377.920000pt;}
.y2a2{bottom:378.400000pt;}
.y86{bottom:378.560000pt;}
.y1eb{bottom:378.880000pt;}
.y204{bottom:380.000000pt;}
.yf2{bottom:382.080000pt;}
.y255{bottom:387.680000pt;}
.y14e{bottom:389.120000pt;}
.ydc{bottom:389.440000pt;}
.y3e{bottom:390.000133pt;}
.y182{bottom:390.240000pt;}
.y245{bottom:390.395520pt;}
.y52{bottom:390.400133pt;}
.yb8{bottom:392.960000pt;}
.y108{bottom:393.600000pt;}
.ya0{bottom:395.360000pt;}
.y28a{bottom:396.800000pt;}
.y105{bottom:398.720000pt;}
.y180{bottom:400.800000pt;}
.y20f{bottom:403.040000pt;}
.y1c1{bottom:403.194400pt;}
.y14d{bottom:403.680000pt;}
.y3d{bottom:404.400133pt;}
.y1ac{bottom:404.475040pt;}
.y85{bottom:404.960000pt;}
.y181{bottom:405.600000pt;}
.y51{bottom:406.400133pt;}
.y259{bottom:412.960000pt;}
.y289{bottom:415.200000pt;}
.y254{bottom:416.160000pt;}
.y244{bottom:416.477440pt;}
.y28{bottom:416.800267pt;}
.y2a{bottom:418.200133pt;}
.yf1{bottom:418.880000pt;}
.y14c{bottom:420.480000pt;}
.y17f{bottom:420.960000pt;}
.y1ea{bottom:422.080000pt;}
.y1c0{bottom:422.400000pt;}
.y50{bottom:422.400133pt;}
.y26e{bottom:423.360000pt;}
.y107{bottom:423.519360pt;}
.y1ab{bottom:423.840000pt;}
.ydb{bottom:426.240000pt;}
.y2a1{bottom:428.480000pt;}
.y73{bottom:428.679200pt;}
.y104{bottom:429.280000pt;}
.yb7{bottom:429.760000pt;}
.y17d{bottom:431.520000pt;}
.y9f{bottom:432.160000pt;}
.y288{bottom:433.600000pt;}
.y1bf{bottom:433.755040pt;}
.y84{bottom:434.080000pt;}
.y1aa{bottom:435.194400pt;}
.y17e{bottom:436.320000pt;}
.y14b{bottom:437.440000pt;}
.y4f{bottom:438.400133pt;}
.y106{bottom:439.999840pt;}
.y26d{bottom:441.760000pt;}
.y72{bottom:442.012533pt;}
.y243{bottom:442.400000pt;}
.y253{bottom:443.359520pt;}
.y258{bottom:443.520000pt;}
.y1fb{bottom:443.840000pt;}
.y2a0{bottom:446.880000pt;}
.yd{bottom:446.990669pt;}
.y103{bottom:447.195040pt;}
.y1be{bottom:449.120000pt;}
.y1a9{bottom:450.400000pt;}
.y17c{bottom:451.680000pt;}
.y14a{bottom:454.240000pt;}
.y4e{bottom:454.400133pt;}
.yf0{bottom:455.680000pt;}
.y49{bottom:457.994933pt;}
.y12c{bottom:458.720000pt;}
.y252{bottom:459.840000pt;}
.y17a{bottom:462.240000pt;}
.y102{bottom:462.560000pt;}
.yc{bottom:462.990669pt;}
.yda{bottom:463.040000pt;}
.y83{bottom:463.200000pt;}
.y1bd{bottom:463.520000pt;}
.y1e6{bottom:464.000000pt;}
.y1a8{bottom:464.960000pt;}
.y287{bottom:465.280000pt;}
.yb6{bottom:466.560000pt;}
.y71{bottom:466.684400pt;}
.y17b{bottom:467.040000pt;}
.y9e{bottom:468.960000pt;}
.y4d{bottom:470.400133pt;}
.y242{bottom:470.880000pt;}
.y149{bottom:471.040000pt;}
.y257{bottom:473.280000pt;}
.y26c{bottom:473.600000pt;}
.y29f{bottom:478.560000pt;}
.y1bc{bottom:478.880000pt;}
.yb{bottom:478.990666pt;}
.y1a7{bottom:480.320000pt;}
.y1fa{bottom:480.640000pt;}
.y179{bottom:482.240000pt;}
.y286{bottom:483.680000pt;}
.y251{bottom:484.473600pt;}
.y48{bottom:485.333467pt;}
.y101{bottom:485.600000pt;}
.y4c{bottom:486.400133pt;}
.y148{bottom:488.000000pt;}
.y12b{bottom:488.480160pt;}
.y241{bottom:489.280000pt;}
.y70{bottom:491.356400pt;}
.y26b{bottom:492.000000pt;}
.yef{bottom:492.480000pt;}
.y178{bottom:492.800000pt;}
.y1bb{bottom:494.240000pt;}
.ya{bottom:494.990666pt;}
.y1a6{bottom:495.520000pt;}
.y29e{bottom:496.960000pt;}
.y82{bottom:497.600000pt;}
.y256{bottom:497.920000pt;}
.y1f9{bottom:500.160000pt;}
.yd9{bottom:500.320000pt;}
.y47{bottom:501.333467pt;}
.y285{bottom:502.080000pt;}
.y4b{bottom:502.400133pt;}
.yb5{bottom:503.360000pt;}
.y6f{bottom:504.689733pt;}
.y147{bottom:504.800000pt;}
.y12a{bottom:505.120000pt;}
.y9d{bottom:505.760000pt;}
.y1ba{bottom:509.600000pt;}
.y1e5{bottom:510.864480pt;}
.y1a5{bottom:510.880000pt;}
.y177{bottom:512.960000pt;}
.y29d{bottom:515.360000pt;}
.y81{bottom:516.000000pt;}
.y46{bottom:517.333467pt;}
.y6e{bottom:518.023067pt;}
.y240{bottom:518.400000pt;}
.y4a{bottom:518.400133pt;}
.y1f8{bottom:518.560000pt;}
.y129{bottom:519.520000pt;}
.y1b8{bottom:520.160000pt;}
.y1a3{bottom:521.440000pt;}
.y146{bottom:521.760000pt;}
.y175{bottom:523.520000pt;}
.y26a{bottom:523.680000pt;}
.y1b9{bottom:524.960000pt;}
.y1e4{bottom:526.229440pt;}
.y1a4{bottom:526.240000pt;}
.y176{bottom:528.320000pt;}
.yee{bottom:529.280000pt;}
.y284{bottom:533.760000pt;}
.y23f{bottom:536.800000pt;}
.yd8{bottom:537.280000pt;}
.y128{bottom:537.920000pt;}
.y1f7{bottom:538.080000pt;}
.y145{bottom:538.560000pt;}
.yb4{bottom:540.160000pt;}
.y3c{bottom:540.533600pt;}
.y1e3{bottom:541.435040pt;}
.y1a2{bottom:541.600000pt;}
.y269{bottom:542.080000pt;}
.y9c{bottom:542.560000pt;}
.y6d{bottom:542.694933pt;}
.y174{bottom:543.680000pt;}
.y80{bottom:544.960000pt;}
.y29c{bottom:547.200000pt;}
.y1b6{bottom:550.720000pt;}
.y1a0{bottom:552.160000pt;}
.y172{bottom:554.240000pt;}
.y23e{bottom:555.200000pt;}
.y144{bottom:555.360000pt;}
.y1b7{bottom:555.520000pt;}
.y6c{bottom:556.028267pt;}
.y126{bottom:556.320000pt;}
.y1f6{bottom:556.480000pt;}
.y1a1{bottom:556.960000pt;}
.y173{bottom:559.040000pt;}
.y268{bottom:560.480000pt;}
.y1e2{bottom:560.800000pt;}
.y29b{bottom:565.600000pt;}
.yed{bottom:566.080000pt;}
.y6b{bottom:569.361600pt;}
.y143{bottom:572.320000pt;}
.y1b0{bottom:572.960000pt;}
.y23d{bottom:573.600000pt;}
.y9{bottom:573.786667pt;}
.yd7{bottom:574.080000pt;}
.y171{bottom:574.240000pt;}
.y127{bottom:574.720000pt;}
.y1f5{bottom:576.000000pt;}
.y1e1{bottom:576.160000pt;}
.yb3{bottom:576.960000pt;}
.y267{bottom:578.880000pt;}
.y9b{bottom:579.360000pt;}
.y283{bottom:583.840000pt;}
.y3b{bottom:587.200267pt;}
.y1e0{bottom:587.515040pt;}
.y142{bottom:589.120000pt;}
.y170{bottom:589.600000pt;}
.y1b3{bottom:591.030080pt;}
.y1b5{bottom:591.035040pt;}
.y23c{bottom:592.000000pt;}
.y19d{bottom:592.469440pt;}
.y19f{bottom:592.475040pt;}
.y7f{bottom:592.480000pt;}
.y8{bottom:592.685334pt;}
.y125{bottom:593.120000pt;}
.y6a{bottom:594.033467pt;}
.y1f4{bottom:594.400000pt;}
.y20e{bottom:599.680000pt;}
.y56{bottom:600.230667pt;}
.y282{bottom:602.240000pt;}
.yec{bottom:603.520000pt;}
.y16f{bottom:604.960000pt;}
.y141{bottom:606.080000pt;}
.y1b2{bottom:606.395040pt;}
.y1b4{bottom:606.400000pt;}
.y1df{bottom:606.880000pt;}
.y69{bottom:607.366800pt;}
.y19c{bottom:607.834400pt;}
.y19e{bottom:607.840000pt;}
.y23b{bottom:610.400000pt;}
.y266{bottom:610.560000pt;}
.yd6{bottom:610.880000pt;}
.y122{bottom:611.520000pt;}
.y1f3{bottom:612.800000pt;}
.yb2{bottom:613.760000pt;}
.y203{bottom:614.880000pt;}
.y1ae{bottom:615.040000pt;}
.y16d{bottom:615.520000pt;}
.y29a{bottom:615.680000pt;}
.y9a{bottom:616.160000pt;}
.y19a{bottom:616.480000pt;}
.y20d{bottom:618.080000pt;}
.y1de{bottom:618.229440pt;}
.y16e{bottom:620.320000pt;}
.y68{bottom:620.700133pt;}
.y1b1{bottom:621.760000pt;}
.y1c9{bottom:622.080000pt;}
.y140{bottom:622.880000pt;}
.y19b{bottom:623.040000pt;}
.y3a{bottom:625.866933pt;}
.y23a{bottom:628.800000pt;}
.y265{bottom:628.960000pt;}
.y55{bottom:629.030667pt;}
.y7e{bottom:629.280000pt;}
.y124{bottom:629.920000pt;}
.y1f2{bottom:631.200000pt;}
.y202{bottom:633.280000pt;}
.y1dd{bottom:633.435040pt;}
.y67{bottom:634.033467pt;}
.y281{bottom:634.080000pt;}
.y16c{bottom:635.680000pt;}
.y20c{bottom:636.480000pt;}
.y13f{bottom:639.680000pt;}
.yeb{bottom:640.480000pt;}
.y7{bottom:645.598667pt;}
.y16a{bottom:646.240000pt;}
.y239{bottom:647.200000pt;}
.y264{bottom:647.360000pt;}
.yd5{bottom:647.680000pt;}
.y1dc{bottom:648.800000pt;}
.y11c{bottom:650.400000pt;}
.yb1{bottom:650.560000pt;}
.y16b{bottom:650.880000pt;}
.y1af{bottom:651.520000pt;}
.y1c8{bottom:651.835040pt;}
.y280{bottom:652.480000pt;}
.y201{bottom:652.800000pt;}
.y99{bottom:652.960000pt;}
.y20b{bottom:654.880000pt;}
.y13e{bottom:656.640000pt;}
.y66{bottom:658.705467pt;}
.y1da{bottom:663.360000pt;}
.y11b{bottom:663.840000pt;}
.y238{bottom:665.600000pt;}
.y263{bottom:665.760000pt;}
.y7d{bottom:666.080000pt;}
.y169{bottom:666.240000pt;}
.y39{bottom:668.533600pt;}
.y1f1{bottom:668.960000pt;}
.y4{bottom:668.977329pt;}
.y11f{bottom:670.720000pt;}
.y1db{bottom:670.880000pt;}
.y1c7{bottom:671.200000pt;}
.y65{bottom:672.038800pt;}
.y20a{bottom:673.280000pt;}
.y13c{bottom:673.440000pt;}
.y37{bottom:675.200133pt;}
.y167{bottom:676.800000pt;}
.yea{bottom:677.280000pt;}
.y168{bottom:681.600000pt;}
.y1d8{bottom:682.240000pt;}
.y1c6{bottom:682.544480pt;}
.y199{bottom:684.000000pt;}
.yd4{bottom:684.480000pt;}
.yb0{bottom:687.360000pt;}
.y200{bottom:689.600000pt;}
.y98{bottom:689.760000pt;}
.y13b{bottom:690.400000pt;}
.y36{bottom:691.200133pt;}
.y209{bottom:691.680000pt;}
.y237{bottom:694.720000pt;}
.y64{bottom:696.710667pt;}
.y166{bottom:696.960000pt;}
.y262{bottom:697.440000pt;}
.y1c5{bottom:697.750080pt;}
.y1d7{bottom:701.280000pt;}
.y27f{bottom:702.560000pt;}
.y7c{bottom:702.880000pt;}
.y1f0{bottom:706.880000pt;}
.y13a{bottom:707.200000pt;}
.y35{bottom:707.200133pt;}
.y164{bottom:707.520000pt;}
.y1ff{bottom:708.960000pt;}
.y63{bottom:710.044000pt;}
.y208{bottom:710.080000pt;}
.y11a{bottom:710.246400pt;}
.y38{bottom:711.200267pt;}
.y165{bottom:712.320000pt;}
.y1c4{bottom:713.115040pt;}
.y236{bottom:713.120000pt;}
.ye9{bottom:714.080000pt;}
.y261{bottom:715.840000pt;}
.y1d6{bottom:716.640000pt;}
.y27e{bottom:720.960000pt;}
.yd3{bottom:721.920000pt;}
.y34{bottom:723.200133pt;}
.y62{bottom:723.377333pt;}
.yaf{bottom:724.160000pt;}
.y1ef{bottom:725.280000pt;}
.y97{bottom:726.560000pt;}
.y119{bottom:727.041920pt;}
.y1fe{bottom:727.360000pt;}
.y163{bottom:727.680000pt;}
.y1c3{bottom:728.480000pt;}
.y235{bottom:731.520000pt;}
.y1d5{bottom:732.000000pt;}
.y260{bottom:734.240000pt;}
.y161{bottom:738.240000pt;}
.y27d{bottom:739.360000pt;}
.y7b{bottom:739.680000pt;}
.y139{bottom:740.960000pt;}
.y162{bottom:742.880000pt;}
.y1ee{bottom:744.800000pt;}
.y1fd{bottom:745.760000pt;}
.y207{bottom:746.880000pt;}
.y1d4{bottom:747.200000pt;}
.y61{bottom:748.049200pt;}
.y234{bottom:749.920000pt;}
.ye8{bottom:751.360000pt;}
.y25f{bottom:752.640000pt;}
.y33{bottom:755.200133pt;}
.y136{bottom:757.760000pt;}
.y160{bottom:758.240000pt;}
.yd2{bottom:758.880000pt;}
.y118{bottom:760.000000pt;}
.yae{bottom:760.960000pt;}
.y60{bottom:761.382533pt;}
.y1d3{bottom:762.560000pt;}
.y1ed{bottom:763.200000pt;}
.y96{bottom:763.360000pt;}
.y1fc{bottom:764.160000pt;}
.y206{bottom:765.280000pt;}
.y233{bottom:768.320000pt;}
.y15e{bottom:768.800000pt;}
.y25e{bottom:771.040000pt;}
.y15f{bottom:773.600000pt;}
.y7a{bottom:776.480000pt;}
.y138{bottom:777.760000pt;}
.y1d2{bottom:777.920000pt;}
.y3{bottom:781.661334pt;}
.y1ec{bottom:782.560000pt;}
.y205{bottom:783.680000pt;}
.y5f{bottom:786.054533pt;}
.y232{bottom:786.720000pt;}
.ye7{bottom:788.320000pt;}
.y117{bottom:788.479520pt;}
.y15d{bottom:788.960000pt;}
.y27c{bottom:789.440000pt;}
.y1d1{bottom:793.280000pt;}
.yd1{bottom:795.680000pt;}
.yad{bottom:797.760000pt;}
.y5e{bottom:799.387867pt;}
.y95{bottom:800.160000pt;}
.y45{bottom:801.066933pt;}
.y25d{bottom:802.880000pt;}
.y15c{bottom:804.320000pt;}
.y116{bottom:804.960000pt;}
.y299{bottom:807.840000pt;}
.y135{bottom:808.480000pt;}
.y1d0{bottom:808.640000pt;}
.y5d{bottom:812.721200pt;}
.y79{bottom:813.280000pt;}
.y15a{bottom:814.880000pt;}
.y1e9{bottom:817.760000pt;}
.y115{bottom:819.520000pt;}
.y15b{bottom:819.680000pt;}
.y25c{bottom:821.280000pt;}
.y231{bottom:823.360000pt;}
.ye6{bottom:825.120000pt;}
.y134{bottom:825.280000pt;}
.y298{bottom:826.240000pt;}
.y1ce{bottom:827.680000pt;}
.y113{bottom:832.000000pt;}
.yd0{bottom:832.960000pt;}
.yac{bottom:834.560000pt;}
.y32{bottom:835.200133pt;}
.y94{bottom:836.960000pt;}
.y5c{bottom:837.393067pt;}
.y114{bottom:837.920000pt;}
.y25b{bottom:839.680000pt;}
.y2{bottom:840.112001pt;}
.y230{bottom:841.760000pt;}
.y132{bottom:842.080000pt;}
.y1cc{bottom:846.560000pt;}
.y78{bottom:850.080000pt;}
.y31{bottom:851.200133pt;}
.y1cd{bottom:851.360000pt;}
.y158{bottom:855.189440pt;}
.y159{bottom:855.195040pt;}
.y1e8{bottom:855.200000pt;}
.y112{bottom:856.320000pt;}
.y27b{bottom:858.080000pt;}
.y131{bottom:859.040000pt;}
.y1{bottom:859.312000pt;}
.y22f{bottom:860.160000pt;}
.ye5{bottom:861.920000pt;}
.y5b{bottom:862.065067pt;}
.y1cb{bottom:865.600000pt;}
.y30{bottom:867.200133pt;}
.y10f{bottom:868.960000pt;}
.y157{bottom:870.554400pt;}
.ycf{bottom:870.560000pt;}
.yab{bottom:871.360000pt;}
.y93{bottom:873.760000pt;}
.y110{bottom:874.720000pt;}
.y5a{bottom:875.398400pt;}
.y297{bottom:876.480000pt;}
.y130{bottom:877.920000pt;}
.y22e{bottom:878.560000pt;}
.y1ca{bottom:882.880000pt;}
.y2f{bottom:883.200133pt;}
.y156{bottom:885.760000pt;}
.y77{bottom:886.880000pt;}
.y1e7{bottom:888.160000pt;}
.y59{bottom:888.731733pt;}
.y25a{bottom:889.760000pt;}
.y12d{bottom:890.400000pt;}
.y10d{bottom:895.200000pt;}
.y12e{bottom:896.800000pt;}
.y22d{bottom:896.960000pt;}
.y2e{bottom:899.200133pt;}
.ye4{bottom:899.360000pt;}
.y58{bottom:902.065067pt;}
.yce{bottom:907.520000pt;}
.yaa{bottom:908.160000pt;}
.y92{bottom:910.560000pt;}
.y109{bottom:912.160000pt;}
.y22c{bottom:915.520000pt;}
.y76{bottom:915.840000pt;}
.y27a{bottom:926.560000pt;}
.y57{bottom:928.731733pt;}
.y100{bottom:929.444480pt;}
.y2d{bottom:931.200133pt;}
.ycd{bottom:944.800000pt;}
.y75{bottom:944.960000pt;}
.yff{bottom:946.240000pt;}
.y2c{bottom:947.200133pt;}
.h2e{height:15.198667pt;}
.h31{height:15.200000pt;}
.h2f{height:15.360000pt;}
.h25{height:16.800000pt;}
.h29{height:16.960000pt;}
.h27{height:16.961333pt;}
.h1e{height:18.400000pt;}
.h20{height:18.401333pt;}
.h1f{height:18.560000pt;}
.h3a{height:18.880000pt;}
.h38{height:18.881333pt;}
.h37{height:19.038667pt;}
.h39{height:19.040000pt;}
.h3b{height:25.160625pt;}
.h1b{height:27.016875pt;}
.h7{height:28.560000pt;}
.h35{height:30.558667pt;}
.h36{height:30.720000pt;}
.h14{height:34.133333pt;}
.h15{height:34.261333pt;}
.h3c{height:36.798667pt;}
.h23{height:36.800000pt;}
.h30{height:38.024375pt;}
.ha{height:38.400000pt;}
.hb{height:38.544000pt;}
.h2c{height:38.672812pt;}
.h22{height:38.720000pt;}
.h6{height:40.800000pt;}
.h19{height:41.525938pt;}
.hf{height:42.666667pt;}
.h10{height:42.826667pt;}
.h3{height:42.840000pt;}
.h1c{height:42.866250pt;}
.h2d{height:43.016875pt;}
.h16{height:46.028750pt;}
.h17{height:46.593750pt;}
.h2{height:48.960000pt;}
.h9{height:49.066667pt;}
.h24{height:50.030610pt;}
.h18{height:50.031250pt;}
.h21{height:50.033170pt;}
.h1d{height:50.033810pt;}
.h2a{height:50.050450pt;}
.h26{height:50.138125pt;}
.h28{height:50.718667pt;}
.he{height:51.200000pt;}
.h1a{height:54.640938pt;}
.h13{height:59.733333pt;}
.h12{height:68.266667pt;}
.h5{height:69.360000pt;}
.h2b{height:76.638667pt;}
.h34{height:76.640000pt;}
.hd{height:76.800000pt;}
.h4{height:105.826671pt;}
.hc{height:110.933333pt;}
.h11{height:119.466667pt;}
.h3e{height:244.480000pt;}
.h3d{height:395.040000pt;}
.h32{height:793.760000pt;}
.h33{height:794.000000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:14.560000pt;}
.wc{width:65.118667pt;}
.wf{width:65.120000pt;}
.w10{width:67.840000pt;}
.wd{width:67.841333pt;}
.w24{width:71.200000pt;}
.w30{width:71.201333pt;}
.w13{width:72.000000pt;}
.w17{width:73.440000pt;}
.we{width:75.360000pt;}
.wb{width:75.840000pt;}
.w26{width:76.001333pt;}
.w31{width:76.160000pt;}
.w2c{width:76.320000pt;}
.w3c{width:76.638667pt;}
.w16{width:80.000000pt;}
.w20{width:82.720000pt;}
.w25{width:83.680000pt;}
.w27{width:84.318667pt;}
.w22{width:84.320000pt;}
.w2e{width:84.960000pt;}
.w2d{width:86.240000pt;}
.w21{width:86.400000pt;}
.w11{width:87.360000pt;}
.w34{width:87.840000pt;}
.w1a{width:88.480000pt;}
.w18{width:90.720000pt;}
.w3b{width:92.000000pt;}
.w33{width:92.960000pt;}
.w29{width:93.120000pt;}
.w23{width:94.240000pt;}
.w28{width:94.241333pt;}
.w2f{width:94.720000pt;}
.w32{width:95.040000pt;}
.w19{width:95.840000pt;}
.w37{width:103.360000pt;}
.w3a{width:107.680000pt;}
.w38{width:109.440000pt;}
.w36{width:112.001333pt;}
.w7{width:112.160000pt;}
.w35{width:116.800000pt;}
.w4{width:133.760000pt;}
.w12{width:144.000000pt;}
.w3d{width:149.760000pt;}
.w3e{width:190.080000pt;}
.w5{width:193.440000pt;}
.w1b{width:195.520000pt;}
.wa{width:208.320000pt;}
.w8{width:208.800000pt;}
.w14{width:216.000000pt;}
.w6{width:284.160000pt;}
.w3f{width:284.480000pt;}
.w39{width:336.800000pt;}
.w1f{width:409.440000pt;}
.w2b{width:411.041333pt;}
.w2a{width:425.920000pt;}
.w1e{width:427.680000pt;}
.w2{width:566.928019pt;}
.w40{width:624.320000pt;}
.w15{width:648.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.w1c{width:1122.560000pt;}
.w1d{width:1122.666667pt;}
.x6{left:-768.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:7.200000pt;}
.x2f{left:10.240000pt;}
.x46{left:12.160000pt;}
.x3d{left:13.600000pt;}
.x56{left:15.520000pt;}
.x82{left:16.800000pt;}
.x9{left:18.013867pt;}
.x3e{left:19.200000pt;}
.x5a{left:20.160000pt;}
.x3c{left:21.760000pt;}
.x2a{left:23.200000pt;}
.x57{left:24.320000pt;}
.x55{left:25.280000pt;}
.x35{left:26.240000pt;}
.xac{left:27.200000pt;}
.x51{left:28.320000pt;}
.x8{left:29.386133pt;}
.x5b{left:31.040000pt;}
.x45{left:32.480000pt;}
.x5c{left:33.920000pt;}
.x2b{left:35.200000pt;}
.x58{left:36.640000pt;}
.x1e{left:37.600000pt;}
.xb{left:38.738933pt;}
.x5{left:39.683733pt;}
.xad{left:41.600000pt;}
.xb6{left:43.040000pt;}
.x59{left:44.160000pt;}
.x37{left:45.440000pt;}
.x26{left:47.680000pt;}
.xb7{left:49.760000pt;}
.xa4{left:50.880000pt;}
.x20{left:51.840000pt;}
.x3f{left:53.600000pt;}
.x27{left:60.640000pt;}
.x24{left:68.160000pt;}
.x22{left:71.840000pt;}
.x1{left:90.706667pt;}
.x5f{left:92.000000pt;}
.x2{left:94.486667pt;}
.xd{left:96.000000pt;}
.x17{left:97.120000pt;}
.x21{left:103.200000pt;}
.xb9{left:105.760000pt;}
.x16{left:109.600000pt;}
.xc{left:114.000000pt;}
.x28{left:117.440000pt;}
.x40{left:119.840000pt;}
.xb8{left:124.640000pt;}
.xbe{left:128.000000pt;}
.x18{left:132.000000pt;}
.x25{left:133.120000pt;}
.x23{left:137.600000pt;}
.x83{left:138.560000pt;}
.x85{left:141.280000pt;}
.x12{left:144.000000pt;}
.xa{left:151.824000pt;}
.xb3{left:165.920000pt;}
.x4{left:180.874667pt;}
.x29{left:183.360000pt;}
.xf{left:185.338000pt;}
.x5e{left:189.120000pt;}
.x61{left:196.320000pt;}
.x7{left:204.000000pt;}
.x9f{left:205.440000pt;}
.xa0{left:216.480000pt;}
.x15{left:220.480000pt;}
.x86{left:227.044640pt;}
.x1d{left:229.760000pt;}
.xb1{left:242.560000pt;}
.xb5{left:245.440000pt;}
.xb2{left:246.880000pt;}
.xa1{left:249.278400pt;}
.xbb{left:255.840000pt;}
.x87{left:265.280000pt;}
.x62{left:269.120000pt;}
.xba{left:274.720000pt;}
.x89{left:278.560000pt;}
.x64{left:281.920000pt;}
.x88{left:285.920000pt;}
.x13{left:288.000000pt;}
.x63{left:289.440000pt;}
.x42{left:291.520000pt;}
.xa2{left:293.120000pt;}
.x2c{left:295.520000pt;}
.x43{left:298.720000pt;}
.x8a{left:307.032320pt;}
.x65{left:310.551680pt;}
.x34{left:312.000000pt;}
.xa3{left:322.880000pt;}
.x41{left:329.761920pt;}
.x44{left:331.518400pt;}
.x8b{left:348.960000pt;}
.x66{left:351.840000pt;}
.xbd{left:353.280000pt;}
.x11{left:363.840000pt;}
.x67{left:366.880000pt;}
.x30{left:371.360000pt;}
.x48{left:378.880000pt;}
.x39{left:384.000000pt;}
.x47{left:385.120000pt;}
.x8c{left:392.166880pt;}
.x68{left:395.046880pt;}
.x14{left:400.480000pt;}
.x3{left:404.408000pt;}
.x10{left:408.000000pt;}
.xa5{left:409.920000pt;}
.xb4{left:419.040000pt;}
.x1f{left:423.200000pt;}
.xa6{left:429.120000pt;}
.xe{left:432.000000pt;}
.x8d{left:435.200000pt;}
.x31{left:436.480000pt;}
.x69{left:438.240000pt;}
.xbc{left:442.720000pt;}
.x49{left:444.960000pt;}
.x6b{left:448.640000pt;}
.x36{left:456.000000pt;}
.xa7{left:457.286880pt;}
.x8e{left:460.480000pt;}
.x4a{left:462.240000pt;}
.x6a{left:463.360000pt;}
.xb0{left:469.760000pt;}
.x8f{left:477.592160pt;}
.x6c{left:480.472160pt;}
.x4b{left:490.406880pt;}
.x2d{left:504.320000pt;}
.x2e{left:519.520000pt;}
.x6d{left:522.560000pt;}
.x3a{left:528.000000pt;}
.x90{left:533.120000pt;}
.x4c{left:535.680000pt;}
.x6f{left:537.766560pt;}
.xae{left:540.480000pt;}
.x4e{left:551.680000pt;}
.x5d{left:553.760000pt;}
.x6e{left:556.000000pt;}
.xa8{left:560.632160pt;}
.x4d{left:565.280000pt;}
.x4f{left:583.512160pt;}
.x32{left:594.880000pt;}
.x38{left:600.000000pt;}
.x84{left:615.520000pt;}
.x60{left:617.120000pt;}
.x91{left:622.400000pt;}
.x70{left:624.000000pt;}
.x50{left:631.520000pt;}
.xaf{left:632.480000pt;}
.xa9{left:633.760000pt;}
.xab{left:636.485920pt;}
.x52{left:638.720000pt;}
.x54{left:643.842080pt;}
.x92{left:650.872320pt;}
.x71{left:652.472320pt;}
.xaa{left:654.560000pt;}
.x33{left:660.000000pt;}
.x53{left:660.960000pt;}
.x1a{left:662.080000pt;}
.x3b{left:672.000000pt;}
.x93{left:686.720000pt;}
.x72{left:688.320000pt;}
.x95{left:700.000000pt;}
.x74{left:700.960000pt;}
.x94{left:707.360000pt;}
.x73{left:709.120000pt;}
.x1b{left:720.000000pt;}
.x96{left:728.472320pt;}
.x75{left:730.242400pt;}
.x19{left:760.000000pt;}
.x97{left:770.400000pt;}
.x76{left:772.000000pt;}
.x99{left:780.320000pt;}
.x78{left:781.760000pt;}
.x98{left:793.280000pt;}
.x77{left:794.720000pt;}
.x9a{left:808.486880pt;}
.x79{left:809.926880pt;}
.xc2{left:834.013867pt;}
.xc1{left:845.386133pt;}
.x9b{left:846.560000pt;}
.x7a{left:848.000000pt;}
.xbf{left:855.683733pt;}
.x9d{left:857.120000pt;}
.x7c{left:858.400000pt;}
.x9c{left:871.840000pt;}
.x7b{left:873.120000pt;}
.x9e{left:888.952160pt;}
.x7d{left:890.232160pt;}
.x7e{left:932.320000pt;}
.x7f{left:944.960000pt;}
.x81{left:947.526560pt;}
.x80{left:965.760000pt;}
.xc3{left:967.824000pt;}
.xc0{left:1020.000000pt;}
}




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