
    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_a3ac09cee1d19fa0b519107d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_362887073562c53c7c9e07ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_3eedd6fb048733962cf096e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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;}
.m6{transform:matrix(0.246136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246136,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247576,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252597,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.780000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.831000px;}
.ls95{letter-spacing:-2.527800px;}
.lse7{letter-spacing:-2.490750px;}
.lsd5{letter-spacing:-1.881000px;}
.lsda{letter-spacing:-1.630200px;}
.ls67{letter-spacing:-1.617000px;}
.ls11c{letter-spacing:-1.606500px;}
.ls48{letter-spacing:-1.511400px;}
.ls49{letter-spacing:-1.504800px;}
.ls7c{letter-spacing:-1.462050px;}
.ls76{letter-spacing:-1.458600px;}
.lsd9{letter-spacing:-1.392600px;}
.ls3a{letter-spacing:-1.386000px;}
.lse3{letter-spacing:-1.333200px;}
.ls94{letter-spacing:-1.273800px;}
.ls96{letter-spacing:-1.267200px;}
.lse9{letter-spacing:-1.221000px;}
.lsd2{letter-spacing:-1.207800px;}
.lsac{letter-spacing:-1.204200px;}
.lsea{letter-spacing:-1.161600px;}
.lsb9{letter-spacing:-1.155000px;}
.lsdb{letter-spacing:-1.148400px;}
.ls58{letter-spacing:-1.144800px;}
.ls75{letter-spacing:-1.122000px;}
.ls4c{letter-spacing:-1.089000px;}
.ls9f{letter-spacing:-1.085400px;}
.ls74{letter-spacing:-1.082400px;}
.lsbb{letter-spacing:-1.075800px;}
.lsaf{letter-spacing:-1.062600px;}
.lsb2{letter-spacing:-1.029600px;}
.ls9b{letter-spacing:-1.023000px;}
.lse4{letter-spacing:-0.983400px;}
.lsd{letter-spacing:-0.966600px;}
.ls43{letter-spacing:-0.963600px;}
.ls89{letter-spacing:-0.957000px;}
.lsc0{letter-spacing:-0.910800px;}
.lsc9{letter-spacing:-0.904200px;}
.lsef{letter-spacing:-0.897600px;}
.lsd0{letter-spacing:-0.858000px;}
.lsc6{letter-spacing:-0.851400px;}
.ls8a{letter-spacing:-0.844800px;}
.lsb6{letter-spacing:-0.838200px;}
.lsc5{letter-spacing:-0.792000px;}
.ls6c{letter-spacing:-0.788400px;}
.ls54{letter-spacing:-0.785400px;}
.ls6b{letter-spacing:-0.783000px;}
.lsb7{letter-spacing:-0.778800px;}
.ls41{letter-spacing:-0.739200px;}
.ls7d{letter-spacing:-0.737100px;}
.lsb4{letter-spacing:-0.732600px;}
.lsec{letter-spacing:-0.729000px;}
.ls3f{letter-spacing:-0.726000px;}
.ls59{letter-spacing:-0.723600px;}
.lsbf{letter-spacing:-0.719400px;}
.ls40{letter-spacing:-0.706200px;}
.lsd4{letter-spacing:-0.688050px;}
.ls55{letter-spacing:-0.680400px;}
.lsd3{letter-spacing:-0.673200px;}
.ls7b{letter-spacing:-0.669600px;}
.lsab{letter-spacing:-0.666600px;}
.ls56{letter-spacing:-0.664200px;}
.lsc1{letter-spacing:-0.660000px;}
.ls7a{letter-spacing:-0.658800px;}
.lscf{letter-spacing:-0.628650px;}
.lsb8{letter-spacing:-0.627000px;}
.lsa9{letter-spacing:-0.620400px;}
.lsa2{letter-spacing:-0.613800px;}
.ls2d{letter-spacing:-0.607200px;}
.lsbe{letter-spacing:-0.600600px;}
.lsf0{letter-spacing:-0.587400px;}
.lsa4{letter-spacing:-0.561000px;}
.lsb3{letter-spacing:-0.554400px;}
.ls44{letter-spacing:-0.547800px;}
.lseb{letter-spacing:-0.545400px;}
.ls29{letter-spacing:-0.488400px;}
.lsc{letter-spacing:-0.484500px;}
.ls88{letter-spacing:-0.481800px;}
.lsdc{letter-spacing:-0.480480px;}
.lsa3{letter-spacing:-0.435600px;}
.ls3b{letter-spacing:-0.429000px;}
.ls9{letter-spacing:-0.427500px;}
.lsc7{letter-spacing:-0.426600px;}
.ls3e{letter-spacing:-0.422400px;}
.lsb{letter-spacing:-0.421800px;}
.ls98{letter-spacing:-0.402600px;}
.ls112{letter-spacing:-0.373500px;}
.lse{letter-spacing:-0.372600px;}
.ls113{letter-spacing:-0.372000px;}
.ls23{letter-spacing:-0.369600px;}
.ls6a{letter-spacing:-0.367200px;}
.ls11e{letter-spacing:-0.366000px;}
.ls9c{letter-spacing:-0.363000px;}
.lsa8{letter-spacing:-0.360360px;}
.lse6{letter-spacing:-0.343200px;}
.lsa7{letter-spacing:-0.316800px;}
.ls99{letter-spacing:-0.310200px;}
.ls5a{letter-spacing:-0.307800px;}
.ls114{letter-spacing:-0.306000px;}
.ls2f{letter-spacing:-0.303600px;}
.lse2{letter-spacing:-0.297000px;}
.ls78{letter-spacing:-0.257400px;}
.ls11a{letter-spacing:-0.252000px;}
.ls4b{letter-spacing:-0.250800px;}
.ls118{letter-spacing:-0.247500px;}
.ls11b{letter-spacing:-0.246000px;}
.ls8{letter-spacing:-0.245100px;}
.ls2a{letter-spacing:-0.244200px;}
.ls119{letter-spacing:-0.240000px;}
.ls115{letter-spacing:-0.238500px;}
.ls2e{letter-spacing:-0.237600px;}
.lscb{letter-spacing:-0.231000px;}
.ls97{letter-spacing:-0.198000px;}
.lsaa{letter-spacing:-0.191400px;}
.ls6e{letter-spacing:-0.189000px;}
.ls3c{letter-spacing:-0.184800px;}
.ls6d{letter-spacing:-0.183600px;}
.ls9e{letter-spacing:-0.182250px;}
.ls9a{letter-spacing:-0.180180px;}
.lsa1{letter-spacing:-0.175560px;}
.ls4a{letter-spacing:-0.145200px;}
.lsc2{letter-spacing:-0.138600px;}
.ls79{letter-spacing:-0.132000px;}
.ls69{letter-spacing:-0.129600px;}
.ls28{letter-spacing:-0.125400px;}
.ls9d{letter-spacing:-0.124200px;}
.ls42{letter-spacing:-0.118800px;}
.lsc3{letter-spacing:-0.112200px;}
.lse8{letter-spacing:-0.099000px;}
.ls3d{letter-spacing:-0.072600px;}
.ls39{letter-spacing:-0.066000px;}
.ls57{letter-spacing:-0.064800px;}
.ls116{letter-spacing:-0.063000px;}
.lse5{letter-spacing:-0.052800px;}
.lsd8{letter-spacing:-0.028800px;}
.lsa{letter-spacing:-0.028500px;}
.ls30{letter-spacing:-0.026400px;}
.ls31{letter-spacing:-0.024000px;}
.lsb5{letter-spacing:-0.019800px;}
.ls110{letter-spacing:-0.018000px;}
.lsd6{letter-spacing:-0.016200px;}
.ls2{letter-spacing:-0.014400px;}
.ls111{letter-spacing:-0.013500px;}
.ls21{letter-spacing:-0.013200px;}
.ls8c{letter-spacing:-0.012150px;}
.lsf7{letter-spacing:-0.012000px;}
.lsf{letter-spacing:-0.011400px;}
.ls68{letter-spacing:-0.010800px;}
.lsce{letter-spacing:-0.009900px;}
.ls3{letter-spacing:-0.009600px;}
.ls11d{letter-spacing:-0.009000px;}
.ls8d{letter-spacing:-0.008100px;}
.ls4{letter-spacing:-0.007200px;}
.ls22{letter-spacing:-0.006600px;}
.lsf6{letter-spacing:-0.006000px;}
.ls7{letter-spacing:-0.005700px;}
.ls5{letter-spacing:-0.005400px;}
.ls1{letter-spacing:-0.004800px;}
.lsf5{letter-spacing:-0.004500px;}
.lsd7{letter-spacing:-0.004050px;}
.ls6{letter-spacing:0.000000px;}
.ls103{letter-spacing:0.004500px;}
.lsad{letter-spacing:0.006600px;}
.lsee{letter-spacing:0.013200px;}
.ls2b{letter-spacing:0.019800px;}
.lsd1{letter-spacing:0.033000px;}
.ls1e{letter-spacing:0.039600px;}
.ls5b{letter-spacing:0.043200px;}
.lsa5{letter-spacing:0.046200px;}
.ls65{letter-spacing:0.048600px;}
.ls5e{letter-spacing:0.052650px;}
.ls1d{letter-spacing:0.052800px;}
.ls51{letter-spacing:0.054000px;}
.ls38{letter-spacing:0.059400px;}
.lsdf{letter-spacing:0.066000px;}
.lsed{letter-spacing:0.099000px;}
.ls2c{letter-spacing:0.105600px;}
.ls1f{letter-spacing:0.112200px;}
.ls52{letter-spacing:0.113400px;}
.ls10f{letter-spacing:0.114000px;}
.ls61{letter-spacing:0.118800px;}
.ls10d{letter-spacing:0.120000px;}
.lsc4{letter-spacing:0.120120px;}
.ls10e{letter-spacing:0.121500px;}
.lsca{letter-spacing:0.125400px;}
.lsae{letter-spacing:0.138600px;}
.ls92{letter-spacing:0.156000px;}
.ls90{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.165000px;}
.ls19{letter-spacing:0.171600px;}
.ls8f{letter-spacing:0.172800px;}
.ls93{letter-spacing:0.174150px;}
.ls10{letter-spacing:0.178200px;}
.ls7f{letter-spacing:0.217800px;}
.ls71{letter-spacing:0.224400px;}
.ls72{letter-spacing:0.226800px;}
.ls73{letter-spacing:0.228000px;}
.ls18{letter-spacing:0.231000px;}
.ls64{letter-spacing:0.232200px;}
.ls36{letter-spacing:0.237600px;}
.ls7e{letter-spacing:0.238950px;}
.lse0{letter-spacing:0.244200px;}
.ls27{letter-spacing:0.250800px;}
.ls91{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.283800px;}
.ls62{letter-spacing:0.286200px;}
.ls10a{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.290400px;}
.ls63{letter-spacing:0.291600px;}
.ls12{letter-spacing:0.297000px;}
.ls109{letter-spacing:0.300000px;}
.ls25{letter-spacing:0.303600px;}
.lsa6{letter-spacing:0.303750px;}
.ls24{letter-spacing:0.310200px;}
.lsde{letter-spacing:0.316800px;}
.ls102{letter-spacing:0.342000px;}
.ls32{letter-spacing:0.349800px;}
.ls87{letter-spacing:0.351000px;}
.ls0{letter-spacing:0.353400px;}
.ls33{letter-spacing:0.356400px;}
.ls101{letter-spacing:0.360000px;}
.lsdd{letter-spacing:0.369600px;}
.lsc8{letter-spacing:0.402600px;}
.lsb1{letter-spacing:0.409200px;}
.lsf3{letter-spacing:0.414000px;}
.ls46{letter-spacing:0.415800px;}
.lsf2{letter-spacing:0.420000px;}
.ls17{letter-spacing:0.462000px;}
.ls1c{letter-spacing:0.468600px;}
.ls105{letter-spacing:0.474000px;}
.ls16{letter-spacing:0.475200px;}
.ls106{letter-spacing:0.477000px;}
.ls104{letter-spacing:0.480000px;}
.ls117{letter-spacing:0.481500px;}
.ls6f{letter-spacing:0.481800px;}
.ls26{letter-spacing:0.488400px;}
.ls53{letter-spacing:0.491400px;}
.ls45{letter-spacing:0.528000px;}
.ls1b{letter-spacing:0.534600px;}
.ls107{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.587400px;}
.ls108{letter-spacing:0.589500px;}
.ls35{letter-spacing:0.594000px;}
.lsfe{letter-spacing:0.600000px;}
.ls70{letter-spacing:0.600600px;}
.lse1{letter-spacing:0.613800px;}
.ls84{letter-spacing:0.640200px;}
.ls14{letter-spacing:0.646800px;}
.ls4e{letter-spacing:0.653400px;}
.ls100{letter-spacing:0.654000px;}
.lsff{letter-spacing:0.661500px;}
.lsa0{letter-spacing:0.706200px;}
.ls34{letter-spacing:0.712800px;}
.lsb0{letter-spacing:0.765600px;}
.ls15{letter-spacing:0.772200px;}
.lsf9{letter-spacing:0.778500px;}
.lsf8{letter-spacing:0.780000px;}
.lsfc{letter-spacing:0.816000px;}
.ls47{letter-spacing:0.831600px;}
.lsfd{letter-spacing:0.834000px;}
.lsfb{letter-spacing:0.837000px;}
.lsfa{letter-spacing:0.840000px;}
.lscc{letter-spacing:0.844800px;}
.ls37{letter-spacing:0.891000px;}
.ls50{letter-spacing:0.897600px;}
.ls81{letter-spacing:0.943800px;}
.lscd{letter-spacing:0.950400px;}
.lsf1{letter-spacing:0.957000px;}
.ls10c{letter-spacing:1.008000px;}
.ls4d{letter-spacing:1.009800px;}
.ls60{letter-spacing:1.012500px;}
.ls5f{letter-spacing:1.015200px;}
.ls8e{letter-spacing:1.016400px;}
.ls10b{letter-spacing:1.020000px;}
.ls66{letter-spacing:1.075800px;}
.lsbc{letter-spacing:1.181400px;}
.lsf4{letter-spacing:1.194600px;}
.ls80{letter-spacing:1.240800px;}
.lsba{letter-spacing:1.247400px;}
.ls83{letter-spacing:1.372800px;}
.ls77{letter-spacing:1.630200px;}
.lsbd{letter-spacing:1.656600px;}
.ls85{letter-spacing:1.669800px;}
.ls8b{letter-spacing:1.676400px;}
.ls82{letter-spacing:15.120000px;}
.ls5c{letter-spacing:15.360000px;}
.ls5d{letter-spacing:15.540000px;}
.ls4f{letter-spacing:16.860000px;}
.ls86{letter-spacing:21.540000px;}
.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;}
}
.wsa4{word-spacing:-17.140200px;}
.ws8a{word-spacing:-16.915800px;}
.ws101{word-spacing:-16.902600px;}
.ws132{word-spacing:-16.816800px;}
.ws13{word-spacing:-16.783800px;}
.ws119{word-spacing:-16.744200px;}
.ws10d{word-spacing:-16.671600px;}
.wsfa{word-spacing:-16.665000px;}
.ws17{word-spacing:-16.612200px;}
.ws6f{word-spacing:-16.500000px;}
.wsc7{word-spacing:-16.493400px;}
.ws59{word-spacing:-16.486800px;}
.wse2{word-spacing:-16.480200px;}
.ws18{word-spacing:-16.473600px;}
.wseb{word-spacing:-16.434000px;}
.ws12d{word-spacing:-16.427400px;}
.ws4b{word-spacing:-16.374600px;}
.ws111{word-spacing:-16.315200px;}
.wsd5{word-spacing:-16.308600px;}
.ws70{word-spacing:-16.249200px;}
.wsdb{word-spacing:-16.189800px;}
.ws11a{word-spacing:-16.156800px;}
.ws118{word-spacing:-16.137000px;}
.wsd3{word-spacing:-16.071000px;}
.ws6e{word-spacing:-16.011600px;}
.wsa5{word-spacing:-15.892800px;}
.wse3{word-spacing:-15.873000px;}
.ws10f{word-spacing:-15.833400px;}
.ws39{word-spacing:-15.774000px;}
.ws3a{word-spacing:-15.760800px;}
.ws12f{word-spacing:-15.589200px;}
.wsb5{word-spacing:-15.232800px;}
.ws133{word-spacing:-15.000000px;}
.ws13d{word-spacing:-14.994000px;}
.ws135{word-spacing:-14.988000px;}
.ws13c{word-spacing:-14.982000px;}
.ws110{word-spacing:-14.619000px;}
.ws1{word-spacing:-14.529300px;}
.ws3{word-spacing:-14.238600px;}
.ws77{word-spacing:-13.791600px;}
.ws0{word-spacing:-13.500000px;}
.ws72{word-spacing:-13.494600px;}
.ws8b{word-spacing:-13.489200px;}
.wsfc{word-spacing:-13.435200px;}
.ws76{word-spacing:-13.370400px;}
.ws78{word-spacing:-13.311000px;}
.ws79{word-spacing:-13.132800px;}
.ws8c{word-spacing:-12.830400px;}
.ws10b{word-spacing:-12.365100px;}
.ws150{word-spacing:-12.262500px;}
.ws140{word-spacing:-12.087000px;}
.ws139{word-spacing:-12.028500px;}
.ws142{word-spacing:-11.911500px;}
.ws14a{word-spacing:-11.839500px;}
.ws146{word-spacing:-11.731500px;}
.ws147{word-spacing:-11.727000px;}
.ws10c{word-spacing:-11.686950px;}
.ws136{word-spacing:-11.664000px;}
.ws144{word-spacing:-11.601000px;}
.ws14b{word-spacing:-11.538000px;}
.ws151{word-spacing:-11.371500px;}
.ws145{word-spacing:-11.254500px;}
.ws13a{word-spacing:-11.250000px;}
.ws134{word-spacing:-11.245500px;}
.ws152{word-spacing:-11.241000px;}
.ws13b{word-spacing:-11.236500px;}
.ws143{word-spacing:-11.187000px;}
.ws13e{word-spacing:-10.876500px;}
.wsd6{word-spacing:-10.428750px;}
.ws14f{word-spacing:-9.643500px;}
.ws105{word-spacing:-0.844800px;}
.ws9a{word-spacing:-0.838200px;}
.ws9e{word-spacing:-0.831600px;}
.ws127{word-spacing:-0.792000px;}
.ws61{word-spacing:-0.778800px;}
.ws40{word-spacing:-0.772200px;}
.ws32{word-spacing:-0.765600px;}
.ws128{word-spacing:-0.745800px;}
.wsfe{word-spacing:-0.732600px;}
.ws44{word-spacing:-0.726000px;}
.ws28{word-spacing:-0.719400px;}
.ws15c{word-spacing:-0.714000px;}
.ws1c{word-spacing:-0.712800px;}
.ws54{word-spacing:-0.706200px;}
.ws98{word-spacing:-0.666600px;}
.ws1b{word-spacing:-0.660000px;}
.wsf{word-spacing:-0.658800px;}
.ws49{word-spacing:-0.653400px;}
.ws36{word-spacing:-0.607200px;}
.ws7b{word-spacing:-0.604800px;}
.ws3f{word-spacing:-0.600600px;}
.ws63{word-spacing:-0.599400px;}
.ws6{word-spacing:-0.598500px;}
.ws55{word-spacing:-0.594000px;}
.ws9b{word-spacing:-0.587400px;}
.ws71{word-spacing:-0.567000px;}
.wsf9{word-spacing:-0.554400px;}
.ws123{word-spacing:-0.547800px;}
.wsc2{word-spacing:-0.545400px;}
.ws37{word-spacing:-0.541200px;}
.ws80{word-spacing:-0.540000px;}
.ws2d{word-spacing:-0.534600px;}
.wsd8{word-spacing:-0.528000px;}
.ws161{word-spacing:-0.516000px;}
.ws11c{word-spacing:-0.488400px;}
.ws90{word-spacing:-0.481800px;}
.ws69{word-spacing:-0.480600px;}
.ws5{word-spacing:-0.478800px;}
.ws29{word-spacing:-0.475200px;}
.wsc3{word-spacing:-0.469800px;}
.wsbe{word-spacing:-0.468600px;}
.ws42{word-spacing:-0.422400px;}
.ws157{word-spacing:-0.420000px;}
.ws53{word-spacing:-0.415800px;}
.ws156{word-spacing:-0.414000px;}
.wscb{word-spacing:-0.409200px;}
.ws167{word-spacing:-0.408000px;}
.ws155{word-spacing:-0.402000px;}
.wsab{word-spacing:-0.363000px;}
.ws3e{word-spacing:-0.356400px;}
.ws159{word-spacing:-0.354000px;}
.ws2c{word-spacing:-0.349800px;}
.ws1e{word-spacing:-0.303600px;}
.ws9{word-spacing:-0.302100px;}
.ws82{word-spacing:-0.297000px;}
.ws7{word-spacing:-0.296400px;}
.wse{word-spacing:-0.291600px;}
.ws1f{word-spacing:-0.290400px;}
.wscc{word-spacing:-0.283800px;}
.wsbf{word-spacing:-0.264000px;}
.ws108{word-spacing:-0.250800px;}
.ws129{word-spacing:-0.244200px;}
.wsa{word-spacing:-0.239400px;}
.ws34{word-spacing:-0.237600px;}
.ws26{word-spacing:-0.231000px;}
.ws104{word-spacing:-0.224400px;}
.wsf5{word-spacing:-0.184800px;}
.ws35{word-spacing:-0.178200px;}
.wsd9{word-spacing:-0.171600px;}
.ws11{word-spacing:-0.151800px;}
.wsf7{word-spacing:-0.132000px;}
.ws43{word-spacing:-0.118800px;}
.ws1d{word-spacing:-0.112200px;}
.wsd4{word-spacing:-0.072600px;}
.ws5a{word-spacing:-0.059400px;}
.wsbc{word-spacing:-0.052800px;}
.ws164{word-spacing:-0.006000px;}
.wsc6{word-spacing:-0.005400px;}
.ws4{word-spacing:0.000000px;}
.ws10{word-spacing:0.005400px;}
.wsc{word-spacing:0.005700px;}
.ws138{word-spacing:0.006000px;}
.ws1a{word-spacing:0.006600px;}
.wsb3{word-spacing:0.010800px;}
.ws15b{word-spacing:0.012000px;}
.wsdd{word-spacing:0.013200px;}
.ws2{word-spacing:0.016200px;}
.ws154{word-spacing:0.018000px;}
.ws38{word-spacing:0.019200px;}
.wse1{word-spacing:0.039600px;}
.wsde{word-spacing:0.052800px;}
.ws68{word-spacing:0.059400px;}
.wsa3{word-spacing:0.066000px;}
.ws12c{word-spacing:0.085800px;}
.ws131{word-spacing:0.112200px;}
.ws7c{word-spacing:0.118800px;}
.wsf4{word-spacing:0.125400px;}
.ws47{word-spacing:0.178200px;}
.wsc1{word-spacing:0.184800px;}
.ws124{word-spacing:0.198000px;}
.ws94{word-spacing:0.224400px;}
.ws96{word-spacing:0.231000px;}
.ws102{word-spacing:0.237600px;}
.ws56{word-spacing:0.244200px;}
.wsd7{word-spacing:0.250800px;}
.ws95{word-spacing:0.264000px;}
.wse0{word-spacing:0.277200px;}
.wsea{word-spacing:0.283800px;}
.ws2b{word-spacing:0.297000px;}
.wse8{word-spacing:0.303600px;}
.wsd{word-spacing:0.307800px;}
.wse9{word-spacing:0.310200px;}
.ws81{word-spacing:0.324000px;}
.wsec{word-spacing:0.343200px;}
.ws57{word-spacing:0.356400px;}
.ws137{word-spacing:0.360000px;}
.ws7d{word-spacing:0.361800px;}
.ws117{word-spacing:0.363000px;}
.ws103{word-spacing:0.369600px;}
.ws73{word-spacing:0.394200px;}
.ws3d{word-spacing:0.415800px;}
.wse4{word-spacing:0.422400px;}
.ws12b{word-spacing:0.429000px;}
.wsf1{word-spacing:0.475200px;}
.ws67{word-spacing:0.480600px;}
.ws8f{word-spacing:0.481800px;}
.ws165{word-spacing:0.486000px;}
.wsa1{word-spacing:0.534600px;}
.wsa0{word-spacing:0.540000px;}
.ws3b{word-spacing:0.541200px;}
.ws60{word-spacing:0.547800px;}
.wsdc{word-spacing:0.561000px;}
.wsef{word-spacing:0.594000px;}
.ws7e{word-spacing:0.599400px;}
.ws62{word-spacing:0.600600px;}
.wsbb{word-spacing:0.613800px;}
.wsc0{word-spacing:0.653400px;}
.ws9f{word-spacing:0.658800px;}
.ws51{word-spacing:0.660000px;}
.ws100{word-spacing:0.664200px;}
.ws4d{word-spacing:0.666600px;}
.ws158{word-spacing:0.672000px;}
.wsac{word-spacing:0.706200px;}
.ws5c{word-spacing:0.712800px;}
.ws8{word-spacing:0.718200px;}
.wsda{word-spacing:0.719400px;}
.ws153{word-spacing:0.720000px;}
.ws10a{word-spacing:0.726000px;}
.ws5f{word-spacing:0.772200px;}
.ws4e{word-spacing:0.778800px;}
.ws6d{word-spacing:0.783000px;}
.ws46{word-spacing:0.785400px;}
.ws20{word-spacing:0.838200px;}
.ws15a{word-spacing:0.840000px;}
.ws52{word-spacing:0.844800px;}
.ws130{word-spacing:0.851400px;}
.wsf3{word-spacing:0.891000px;}
.ws58{word-spacing:0.897600px;}
.ws162{word-spacing:0.900000px;}
.ws6a{word-spacing:0.901800px;}
.wscd{word-spacing:0.904200px;}
.wsce{word-spacing:0.910800px;}
.wsd0{word-spacing:0.937200px;}
.wsb2{word-spacing:0.950400px;}
.ws41{word-spacing:0.957000px;}
.wsb1{word-spacing:0.961200px;}
.ws50{word-spacing:0.963600px;}
.ws115{word-spacing:1.009800px;}
.ws15f{word-spacing:1.014000px;}
.ws65{word-spacing:1.015200px;}
.ws5e{word-spacing:1.016400px;}
.ws160{word-spacing:1.020000px;}
.ws85{word-spacing:1.020600px;}
.ws30{word-spacing:1.023000px;}
.ws99{word-spacing:1.029600px;}
.ws84{word-spacing:1.031400px;}
.ws126{word-spacing:1.036200px;}
.ws5d{word-spacing:1.075800px;}
.wsb{word-spacing:1.077300px;}
.ws86{word-spacing:1.080000px;}
.ws4c{word-spacing:1.082400px;}
.wsa2{word-spacing:1.085400px;}
.wsae{word-spacing:1.122000px;}
.wsee{word-spacing:1.128600px;}
.ws5b{word-spacing:1.135200px;}
.wsc5{word-spacing:1.139400px;}
.ws15d{word-spacing:1.140000px;}
.ws27{word-spacing:1.141800px;}
.wsc4{word-spacing:1.144800px;}
.ws92{word-spacing:1.148400px;}
.ws93{word-spacing:1.155000px;}
.ws15e{word-spacing:1.158000px;}
.ws89{word-spacing:1.168200px;}
.ws14{word-spacing:1.181400px;}
.wsad{word-spacing:1.188000px;}
.ws9c{word-spacing:1.194600px;}
.ws66{word-spacing:1.198800px;}
.ws22{word-spacing:1.201200px;}
.ws83{word-spacing:1.204200px;}
.ws163{word-spacing:1.206000px;}
.ws9d{word-spacing:1.207800px;}
.ws15{word-spacing:1.234200px;}
.wsed{word-spacing:1.247400px;}
.ws4f{word-spacing:1.254000px;}
.ws88{word-spacing:1.258200px;}
.ws3c{word-spacing:1.260600px;}
.ws87{word-spacing:1.263600px;}
.ws7f{word-spacing:1.269000px;}
.ws97{word-spacing:1.273800px;}
.ws11d{word-spacing:1.280400px;}
.wsff{word-spacing:1.313400px;}
.ws64{word-spacing:1.317600px;}
.ws21{word-spacing:1.320000px;}
.ws6c{word-spacing:1.323000px;}
.ws31{word-spacing:1.326600px;}
.ws12a{word-spacing:1.333200px;}
.ws6b{word-spacing:1.333800px;}
.ws11e{word-spacing:1.339800px;}
.ws11f{word-spacing:1.346400px;}
.wse7{word-spacing:1.359600px;}
.wse6{word-spacing:1.366200px;}
.wsfd{word-spacing:1.371600px;}
.ws48{word-spacing:1.372800px;}
.ws25{word-spacing:1.379400px;}
.ws166{word-spacing:1.380000px;}
.ws23{word-spacing:1.386000px;}
.wsaa{word-spacing:1.399200px;}
.ws125{word-spacing:1.405800px;}
.ws45{word-spacing:1.432200px;}
.wsbd{word-spacing:1.438800px;}
.wscf{word-spacing:1.445400px;}
.ws12{word-spacing:1.452000px;}
.ws109{word-spacing:1.458600px;}
.ws12e{word-spacing:1.471800px;}
.ws7a{word-spacing:1.474200px;}
.wsdf{word-spacing:1.478400px;}
.ws2a{word-spacing:1.498200px;}
.ws24{word-spacing:1.504800px;}
.wsf8{word-spacing:1.511400px;}
.ws122{word-spacing:1.524600px;}
.wse5{word-spacing:1.537800px;}
.wsb7{word-spacing:1.544400px;}
.ws4a{word-spacing:1.551000px;}
.ws16{word-spacing:1.557600px;}
.ws2f{word-spacing:1.564200px;}
.ws91{word-spacing:1.577400px;}
.ws120{word-spacing:1.584000px;}
.wsf0{word-spacing:1.603800px;}
.ws33{word-spacing:1.617000px;}
.ws2e{word-spacing:1.623600px;}
.ws107{word-spacing:1.636800px;}
.ws121{word-spacing:1.643400px;}
.wsd2{word-spacing:1.742400px;}
.wsb0{word-spacing:2.217600px;}
.wsaf{word-spacing:2.224200px;}
.wsb8{word-spacing:2.718750px;}
.wsb4{word-spacing:3.135000px;}
.ws149{word-spacing:3.300000px;}
.ws148{word-spacing:3.345000px;}
.wsa8{word-spacing:3.369000px;}
.wsa9{word-spacing:3.371700px;}
.ws112{word-spacing:3.379800px;}
.ws116{word-spacing:3.384000px;}
.wsf6{word-spacing:3.384300px;}
.wsca{word-spacing:3.393300px;}
.ws13f{word-spacing:3.412500px;}
.ws113{word-spacing:3.451500px;}
.wsa6{word-spacing:3.452550px;}
.wsa7{word-spacing:3.567000px;}
.ws14e{word-spacing:3.750000px;}
.ws14d{word-spacing:3.751500px;}
.ws75{word-spacing:3.861000px;}
.ws106{word-spacing:4.080900px;}
.ws10e{word-spacing:4.276680px;}
.wsc8{word-spacing:4.336680px;}
.wsb6{word-spacing:4.410540px;}
.wsd1{word-spacing:4.531080px;}
.ws74{word-spacing:4.639950px;}
.wsb9{word-spacing:4.698600px;}
.ws14c{word-spacing:5.037000px;}
.wsc9{word-spacing:5.610000px;}
.wsba{word-spacing:6.295650px;}
.ws8d{word-spacing:6.356400px;}
.ws8e{word-spacing:6.464400px;}
.wsfb{word-spacing:6.509640px;}
.ws141{word-spacing:6.625500px;}
.wsf2{word-spacing:7.959600px;}
.ws11b{word-spacing:8.356200px;}
.ws19{word-spacing:35.760000px;}
.ws114{word-spacing:35.812800px;}
._19{margin-left:-10.785000px;}
._18{margin-left:-7.935600px;}
._3{margin-left:-6.840000px;}
._4{margin-left:-5.044500px;}
._2{margin-left:-3.446400px;}
._0{margin-left:-2.049600px;}
._6{margin-left:-1.041600px;}
._5{width:1.983600px;}
._7{width:3.151800px;}
._e{width:12.328200px;}
._d{width:13.854000px;}
._12{width:15.147000px;}
._9{width:16.351800px;}
._13{width:18.829800px;}
._11{width:21.076200px;}
._f{width:22.620600px;}
._10{width:24.130800px;}
._16{width:39.580200px;}
._17{width:46.569600px;}
._1{width:48.033600px;}
._c{width:49.507200px;}
._b{width:50.862600px;}
._15{width:901.886400px;}
._a{width:926.366400px;}
._14{width:1051.065600px;}
._8{width:1075.488000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:40.500000px;}
.fsa{font-size:45.000000px;}
.fs6{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:49.500000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2b9{bottom:41.332425px;}
.y204{bottom:41.687625px;}
.y105{bottom:41.691225px;}
.y1ef{bottom:41.692425px;}
.y96{bottom:41.698125px;}
.yc2{bottom:41.699625px;}
.y16e{bottom:41.705625px;}
.y153{bottom:41.707425px;}
.y12f{bottom:41.709675px;}
.y287{bottom:41.714625px;}
.ye4{bottom:41.737425px;}
.y79{bottom:42.051075px;}
.y4d{bottom:42.052725px;}
.y20f{bottom:42.059325px;}
.y2a8{bottom:42.070575px;}
.y197{bottom:42.074175px;}
.y229{bottom:42.075675px;}
.y1be{bottom:42.076425px;}
.y1b4{bottom:42.077175px;}
.y1d5{bottom:42.194175px;}
.y1a{bottom:43.370775px;}
.y203{bottom:55.938225px;}
.y104{bottom:55.941825px;}
.y95{bottom:55.948725px;}
.yc1{bottom:55.950225px;}
.y16d{bottom:55.956225px;}
.y152{bottom:55.958025px;}
.y12e{bottom:55.960275px;}
.y286{bottom:55.965225px;}
.ye3{bottom:55.986825px;}
.y2b8{bottom:57.082425px;}
.y78{bottom:59.301825px;}
.y4c{bottom:59.303475px;}
.y20e{bottom:59.310075px;}
.y2a7{bottom:59.321325px;}
.y196{bottom:59.324925px;}
.y228{bottom:59.326425px;}
.y1bd{bottom:59.327175px;}
.y1b3{bottom:59.327925px;}
.y1d4{bottom:59.444925px;}
.y202{bottom:70.188825px;}
.y243{bottom:70.192425px;}
.y103{bottom:70.192575px;}
.y94{bottom:70.199325px;}
.yc0{bottom:70.200825px;}
.y151{bottom:70.206825px;}
.y12d{bottom:70.209525px;}
.y285{bottom:70.215825px;}
.ye2{bottom:70.236375px;}
.y19{bottom:71.870625px;}
.y2b7{bottom:72.832425px;}
.y77{bottom:76.552575px;}
.y4b{bottom:76.554225px;}
.y20d{bottom:76.560825px;}
.y2a6{bottom:76.572075px;}
.y195{bottom:76.575675px;}
.y227{bottom:76.577175px;}
.y1bc{bottom:76.577925px;}
.y1b2{bottom:76.578675px;}
.y2e7{bottom:76.582425px;}
.y1d3{bottom:76.695675px;}
.y201{bottom:84.439425px;}
.y102{bottom:84.443175px;}
.y93{bottom:84.449925px;}
.ybf{bottom:84.451425px;}
.y150{bottom:84.457425px;}
.y12c{bottom:84.458775px;}
.y284{bottom:84.466425px;}
.ye1{bottom:84.486975px;}
.y18{bottom:86.121225px;}
.y2b6{bottom:88.582425px;}
.y2e6{bottom:92.332425px;}
.y76{bottom:93.803325px;}
.y4a{bottom:93.804975px;}
.y1ee{bottom:93.806475px;}
.y20c{bottom:93.811575px;}
.y2a5{bottom:93.822825px;}
.y194{bottom:93.826425px;}
.y26c{bottom:93.827175px;}
.y226{bottom:93.827925px;}
.y1bb{bottom:93.828675px;}
.y1b1{bottom:93.829425px;}
.y253{bottom:93.830925px;}
.y1d2{bottom:93.946425px;}
.y200{bottom:98.690025px;}
.y101{bottom:98.692425px;}
.y92{bottom:98.699175px;}
.ybe{bottom:98.702025px;}
.y12b{bottom:98.708025px;}
.y16c{bottom:98.708175px;}
.y283{bottom:98.717025px;}
.ye0{bottom:98.737575px;}
.y17{bottom:100.371825px;}
.y2b5{bottom:104.332425px;}
.y2e5{bottom:108.082425px;}
.y75{bottom:111.054075px;}
.y49{bottom:111.055725px;}
.y1ed{bottom:111.057225px;}
.y20b{bottom:111.062325px;}
.y2a4{bottom:111.073575px;}
.y193{bottom:111.077175px;}
.y26b{bottom:111.077925px;}
.y225{bottom:111.078675px;}
.y1ba{bottom:111.079425px;}
.y1b0{bottom:111.080175px;}
.y252{bottom:111.081675px;}
.y1d1{bottom:111.197175px;}
.y1ff{bottom:112.940625px;}
.y91{bottom:112.948425px;}
.ybd{bottom:112.952625px;}
.y16b{bottom:112.957425px;}
.y12a{bottom:112.958925px;}
.y282{bottom:112.967625px;}
.ydf{bottom:112.988175px;}
.y16{bottom:114.622425px;}
.y2b4{bottom:120.082425px;}
.y2e4{bottom:123.832425px;}
.y1fe{bottom:127.191225px;}
.y90{bottom:127.197675px;}
.ybc{bottom:127.203225px;}
.y129{bottom:127.209525px;}
.y281{bottom:127.218225px;}
.yde{bottom:127.237425px;}
.y74{bottom:128.304825px;}
.y48{bottom:128.306475px;}
.y14f{bottom:128.311425px;}
.y20a{bottom:128.313075px;}
.y2a3{bottom:128.324325px;}
.y192{bottom:128.327925px;}
.y26a{bottom:128.328675px;}
.y224{bottom:128.329425px;}
.y1b9{bottom:128.330175px;}
.y1af{bottom:128.330925px;}
.y251{bottom:128.332425px;}
.y2b3{bottom:135.832425px;}
.y1ec{bottom:136.932525px;}
.y1d0{bottom:137.072475px;}
.y2e3{bottom:139.582425px;}
.y1fd{bottom:141.441825px;}
.y8f{bottom:141.446925px;}
.ybb{bottom:141.453825px;}
.y128{bottom:141.458775px;}
.y280{bottom:141.468825px;}
.y73{bottom:145.555575px;}
.y47{bottom:145.557225px;}
.y14e{bottom:145.562175px;}
.y209{bottom:145.563825px;}
.y2a2{bottom:145.575075px;}
.y191{bottom:145.578675px;}
.y269{bottom:145.579425px;}
.y223{bottom:145.580175px;}
.y1b8{bottom:145.580925px;}
.y1ae{bottom:145.581675px;}
.y250{bottom:145.581975px;}
.y2b2{bottom:151.582425px;}
.y1eb{bottom:154.183275px;}
.y2e2{bottom:155.332275px;}
.y1fc{bottom:155.692425px;}
.y8e{bottom:155.696175px;}
.yba{bottom:155.704425px;}
.y127{bottom:155.708025px;}
.y27f{bottom:155.719425px;}
.y72{bottom:162.806325px;}
.y46{bottom:162.807975px;}
.y14d{bottom:162.812925px;}
.y208{bottom:162.814575px;}
.y2a1{bottom:162.825825px;}
.y190{bottom:162.829425px;}
.y268{bottom:162.830175px;}
.y222{bottom:162.830925px;}
.y1b7{bottom:162.831675px;}
.y1ad{bottom:162.832425px;}
.y24f{bottom:162.832725px;}
.y1cf{bottom:162.947775px;}
.y8d{bottom:169.945425px;}
.yb9{bottom:169.955025px;}
.y126{bottom:169.956825px;}
.y27e{bottom:169.970025px;}
.y2e1{bottom:171.082275px;}
.y2b1{bottom:175.937025px;}
.y71{bottom:180.057075px;}
.y45{bottom:180.058725px;}
.y14c{bottom:180.063675px;}
.y207{bottom:180.065325px;}
.y16a{bottom:180.066825px;}
.y100{bottom:180.074175px;}
.y2a0{bottom:180.076575px;}
.y18f{bottom:180.080175px;}
.y267{bottom:180.080925px;}
.y221{bottom:180.081675px;}
.y1b6{bottom:180.082425px;}
.ydd{bottom:180.082875px;}
.y242{bottom:180.083325px;}
.y24e{bottom:180.083475px;}
.y1ce{bottom:180.198525px;}
.y8c{bottom:184.194675px;}
.yb8{bottom:184.205625px;}
.y125{bottom:184.207425px;}
.y27d{bottom:184.220625px;}
.y2e0{bottom:186.832275px;}
.y20{bottom:188.663550px;}
.y1ea{bottom:197.307675px;}
.y70{bottom:197.307825px;}
.y44{bottom:197.309475px;}
.y14b{bottom:197.314425px;}
.y169{bottom:197.317575px;}
.yff{bottom:197.324925px;}
.y29f{bottom:197.327325px;}
.y18e{bottom:197.330925px;}
.y266{bottom:197.331675px;}
.y220{bottom:197.332425px;}
.y24d{bottom:197.332575px;}
.ydc{bottom:197.333625px;}
.y241{bottom:197.334075px;}
.y8b{bottom:198.443925px;}
.yb7{bottom:198.456225px;}
.y27c{bottom:198.471225px;}
.y2df{bottom:202.582275px;}
.y1f{bottom:203.663100px;}
.y8a{bottom:212.693175px;}
.yb6{bottom:212.706825px;}
.y27b{bottom:212.721825px;}
.y1e9{bottom:214.558425px;}
.y6f{bottom:214.558575px;}
.y43{bottom:214.560225px;}
.y1fb{bottom:214.563675px;}
.y14a{bottom:214.565175px;}
.y168{bottom:214.568325px;}
.yfe{bottom:214.575675px;}
.y29e{bottom:214.578075px;}
.y21f{bottom:214.578675px;}
.y18d{bottom:214.581675px;}
.y265{bottom:214.582425px;}
.y240{bottom:214.583175px;}
.ydb{bottom:214.584375px;}
.y2de{bottom:218.332275px;}
.y1e{bottom:218.662650px;}
.y89{bottom:226.942425px;}
.yb5{bottom:226.957425px;}
.y27a{bottom:226.972425px;}
.y1e8{bottom:231.809175px;}
.y6e{bottom:231.809325px;}
.y42{bottom:231.810975px;}
.y2b0{bottom:231.812625px;}
.y23f{bottom:231.812925px;}
.y1fa{bottom:231.814425px;}
.y149{bottom:231.815925px;}
.y264{bottom:231.816675px;}
.y167{bottom:231.819075px;}
.yfd{bottom:231.826425px;}
.y1cd{bottom:231.828675px;}
.y29d{bottom:231.828825px;}
.y21e{bottom:231.829425px;}
.y24c{bottom:231.830775px;}
.y18c{bottom:231.832425px;}
.yda{bottom:231.835125px;}
.y22{bottom:233.663625px;}
.y2dd{bottom:234.082275px;}
.y1d{bottom:239.662875px;}
.yb4{bottom:241.208025px;}
.y1e7{bottom:249.059925px;}
.y6d{bottom:249.060075px;}
.y41{bottom:249.061725px;}
.y2af{bottom:249.063375px;}
.y23e{bottom:249.063675px;}
.y1f9{bottom:249.065175px;}
.y148{bottom:249.066675px;}
.y263{bottom:249.067425px;}
.y124{bottom:249.068925px;}
.y166{bottom:249.069825px;}
.yfc{bottom:249.077175px;}
.y1cc{bottom:249.079425px;}
.y29c{bottom:249.079575px;}
.y24b{bottom:249.079875px;}
.y21d{bottom:249.080175px;}
.y18b{bottom:249.083175px;}
.yd9{bottom:249.085875px;}
.y2dc{bottom:249.832275px;}
.y1c{bottom:254.662425px;}
.y21{bottom:254.663850px;}
.yb3{bottom:255.456225px;}
.y2db{bottom:265.582275px;}
.y1e6{bottom:266.310675px;}
.y6c{bottom:266.310825px;}
.y40{bottom:266.312475px;}
.y2ae{bottom:266.314125px;}
.y23d{bottom:266.314425px;}
.y1f8{bottom:266.315925px;}
.y147{bottom:266.317425px;}
.y262{bottom:266.318175px;}
.y123{bottom:266.319675px;}
.y165{bottom:266.320575px;}
.yfb{bottom:266.327925px;}
.y24a{bottom:266.328975px;}
.y1cb{bottom:266.330175px;}
.y29b{bottom:266.330325px;}
.y21c{bottom:266.330925px;}
.y18a{bottom:266.333925px;}
.yb2{bottom:269.706825px;}
.y1b{bottom:279.742425px;}
.y2da{bottom:281.332275px;}
.y1e5{bottom:283.561425px;}
.y6b{bottom:283.561575px;}
.y3f{bottom:283.563225px;}
.y2ad{bottom:283.564875px;}
.y23c{bottom:283.565175px;}
.y1f7{bottom:283.566675px;}
.y146{bottom:283.568175px;}
.y261{bottom:283.568925px;}
.y122{bottom:283.570425px;}
.y164{bottom:283.571325px;}
.y88{bottom:283.574325px;}
.y249{bottom:283.578075px;}
.yfa{bottom:283.578675px;}
.y1ca{bottom:283.580925px;}
.y29a{bottom:283.581075px;}
.y21b{bottom:283.581675px;}
.yd8{bottom:283.585725px;}
.yb1{bottom:283.954425px;}
.y189{bottom:292.209225px;}
.y2d9{bottom:297.082275px;}
.yb0{bottom:298.205025px;}
.y1e4{bottom:300.812175px;}
.y6a{bottom:300.812325px;}
.y3e{bottom:300.813975px;}
.y2ac{bottom:300.815625px;}
.y23b{bottom:300.815925px;}
.y1f6{bottom:300.817425px;}
.y145{bottom:300.818925px;}
.y260{bottom:300.819675px;}
.y121{bottom:300.821175px;}
.y163{bottom:300.822075px;}
.y278{bottom:300.824175px;}
.y87{bottom:300.825075px;}
.y248{bottom:300.827175px;}
.yf9{bottom:300.829425px;}
.y1c9{bottom:300.831675px;}
.y299{bottom:300.831825px;}
.y21a{bottom:300.832425px;}
.yd7{bottom:300.836475px;}
.y279{bottom:306.277425px;}
.yaf{bottom:312.455625px;}
.y2d8{bottom:312.832275px;}
.y1e3{bottom:318.062925px;}
.y69{bottom:318.063075px;}
.y3d{bottom:318.064725px;}
.y2ab{bottom:318.066375px;}
.y23a{bottom:318.066675px;}
.y1f5{bottom:318.068175px;}
.y144{bottom:318.069675px;}
.y25f{bottom:318.070425px;}
.y120{bottom:318.071925px;}
.y162{bottom:318.072825px;}
.y277{bottom:318.074925px;}
.y86{bottom:318.075825px;}
.y247{bottom:318.076275px;}
.yf8{bottom:318.080175px;}
.y1c8{bottom:318.082425px;}
.y298{bottom:318.082575px;}
.yd6{bottom:318.087225px;}
.y15{bottom:323.872425px;}
.yae{bottom:326.706225px;}
.y2d7{bottom:328.582425px;}
.y1e2{bottom:335.313675px;}
.y68{bottom:335.313825px;}
.y3c{bottom:335.315475px;}
.y2aa{bottom:335.317125px;}
.y239{bottom:335.317425px;}
.y1f4{bottom:335.318925px;}
.y143{bottom:335.320425px;}
.y25e{bottom:335.321175px;}
.y11f{bottom:335.322675px;}
.y161{bottom:335.323575px;}
.y246{bottom:335.325375px;}
.y276{bottom:335.325675px;}
.y85{bottom:335.326575px;}
.yf7{bottom:335.330925px;}
.y297{bottom:335.331675px;}
.y188{bottom:335.333625px;}
.yd5{bottom:335.337975px;}
.yad{bottom:340.956825px;}
.y2d6{bottom:344.332425px;}
.y14{bottom:344.873700px;}
.y1e1{bottom:352.564425px;}
.y67{bottom:352.564575px;}
.y3b{bottom:352.566225px;}
.y2a9{bottom:352.567875px;}
.y238{bottom:352.568175px;}
.y1f3{bottom:352.569675px;}
.y142{bottom:352.571175px;}
.y25d{bottom:352.571925px;}
.y11e{bottom:352.573425px;}
.y160{bottom:352.574325px;}
.y245{bottom:352.574475px;}
.y275{bottom:352.576425px;}
.y84{bottom:352.577325px;}
.y296{bottom:352.580775px;}
.yf6{bottom:352.581675px;}
.y187{bottom:352.582725px;}
.yd4{bottom:352.587075px;}
.yac{bottom:355.207425px;}
.y13{bottom:359.873250px;}
.y2d5{bottom:360.082425px;}
.y1e0{bottom:369.815175px;}
.y66{bottom:369.815325px;}
.y3a{bottom:369.816975px;}
.y237{bottom:369.818925px;}
.y1f2{bottom:369.820425px;}
.y141{bottom:369.821925px;}
.y25c{bottom:369.822675px;}
.y244{bottom:369.823575px;}
.y11d{bottom:369.824175px;}
.y15f{bottom:369.825075px;}
.y274{bottom:369.827175px;}
.y83{bottom:369.828075px;}
.y295{bottom:369.829875px;}
.yf5{bottom:369.831675px;}
.y186{bottom:369.831825px;}
.y1ac{bottom:369.832425px;}
.yd3{bottom:369.836175px;}
.y12{bottom:374.872800px;}
.y2d4{bottom:375.832425px;}
.y1df{bottom:387.065925px;}
.y65{bottom:387.066075px;}
.y39{bottom:387.067725px;}
.y236{bottom:387.069675px;}
.y1f1{bottom:387.071175px;}
.y140{bottom:387.072675px;}
.y25b{bottom:387.073425px;}
.y1ab{bottom:387.074325px;}
.y11c{bottom:387.074925px;}
.y219{bottom:387.075675px;}
.y15e{bottom:387.075825px;}
.y273{bottom:387.077925px;}
.y82{bottom:387.078825px;}
.y294{bottom:387.078975px;}
.y185{bottom:387.080925px;}
.yf4{bottom:387.082425px;}
.yd2{bottom:387.085275px;}
.y11{bottom:389.872350px;}
.y2d3{bottom:391.582425px;}
.y1b5{bottom:395.692275px;}
.y1de{bottom:404.316675px;}
.y64{bottom:404.316825px;}
.y38{bottom:404.318475px;}
.y235{bottom:404.320425px;}
.y206{bottom:404.321775px;}
.y1f0{bottom:404.321925px;}
.y13f{bottom:404.323425px;}
.y25a{bottom:404.324175px;}
.y11b{bottom:404.325675px;}
.y218{bottom:404.326425px;}
.y15d{bottom:404.326575px;}
.y293{bottom:404.328075px;}
.y272{bottom:404.328675px;}
.y81{bottom:404.329575px;}
.y184{bottom:404.330025px;}
.yab{bottom:404.331675px;}
.yd1{bottom:404.334375px;}
.y10{bottom:404.871900px;}
.y2d2{bottom:407.332425px;}
.y1dd{bottom:421.567425px;}
.y63{bottom:421.567575px;}
.y37{bottom:421.569225px;}
.y205{bottom:421.570875px;}
.y234{bottom:421.571175px;}
.y1aa{bottom:421.572525px;}
.yf2{bottom:421.572675px;}
.yaa{bottom:421.573575px;}
.y13e{bottom:421.574175px;}
.y259{bottom:421.574925px;}
.y11a{bottom:421.576425px;}
.y217{bottom:421.577175px;}
.y15c{bottom:421.577325px;}
.y183{bottom:421.579125px;}
.y271{bottom:421.579425px;}
.y80{bottom:421.580325px;}
.yd0{bottom:421.583475px;}
.y2d1{bottom:423.082425px;}
.yf3{bottom:427.027425px;}
.yf{bottom:434.872425px;}
.y62{bottom:438.816675px;}
.y1dc{bottom:438.818175px;}
.y7b{bottom:438.818325px;}
.y36{bottom:438.819975px;}
.y1a9{bottom:438.821625px;}
.y233{bottom:438.821925px;}
.ya9{bottom:438.822675px;}
.yf1{bottom:438.823425px;}
.y13d{bottom:438.824925px;}
.y258{bottom:438.825675px;}
.y292{bottom:438.826275px;}
.y15b{bottom:438.826425px;}
.y119{bottom:438.827175px;}
.y216{bottom:438.827925px;}
.y182{bottom:438.828225px;}
.y7f{bottom:438.829425px;}
.y270{bottom:438.830175px;}
.y2d0{bottom:438.832425px;}
.ycf{bottom:438.832575px;}
.y2cf{bottom:454.582425px;}
.y61{bottom:456.067425px;}
.y1db{bottom:456.068925px;}
.y7a{bottom:456.069075px;}
.y35{bottom:456.070725px;}
.y232{bottom:456.072675px;}
.ya8{bottom:456.073425px;}
.yf0{bottom:456.074175px;}
.y13c{bottom:456.075675px;}
.y257{bottom:456.076425px;}
.y291{bottom:456.077025px;}
.y15a{bottom:456.077175px;}
.y118{bottom:456.077925px;}
.y215{bottom:456.078675px;}
.y181{bottom:456.078975px;}
.y7e{bottom:456.080175px;}
.y26f{bottom:456.080925px;}
.yce{bottom:456.083325px;}
.y2ce{bottom:470.332425px;}
.ye{bottom:470.873475px;}
.y60{bottom:473.318175px;}
.y1da{bottom:473.319675px;}
.y1a8{bottom:473.319825px;}
.y34{bottom:473.321475px;}
.y231{bottom:473.323425px;}
.ya7{bottom:473.324175px;}
.yef{bottom:473.324925px;}
.y13b{bottom:473.326425px;}
.y256{bottom:473.327175px;}
.y290{bottom:473.327775px;}
.y159{bottom:473.327925px;}
.y180{bottom:473.328075px;}
.y117{bottom:473.328675px;}
.y214{bottom:473.329425px;}
.y7d{bottom:473.330925px;}
.y26e{bottom:473.331675px;}
.ycd{bottom:473.332425px;}
.y2cd{bottom:486.082425px;}
.y5f{bottom:490.568925px;}
.y1d9{bottom:490.570425px;}
.y1a7{bottom:490.570575px;}
.y33{bottom:490.572225px;}
.y230{bottom:490.574175px;}
.ya6{bottom:490.574925px;}
.yee{bottom:490.575675px;}
.y13a{bottom:490.577175px;}
.y255{bottom:490.577925px;}
.y28f{bottom:490.578525px;}
.y158{bottom:490.578675px;}
.y17f{bottom:490.578825px;}
.y116{bottom:490.579425px;}
.y213{bottom:490.580175px;}
.y7c{bottom:490.581675px;}
.y26d{bottom:490.582425px;}
.yd{bottom:491.873700px;}
.y2cc{bottom:501.832425px;}
.yc{bottom:506.873250px;}
.y5e{bottom:507.819675px;}
.y1d8{bottom:507.821175px;}
.y1a6{bottom:507.821325px;}
.y32{bottom:507.822975px;}
.y22f{bottom:507.824925px;}
.ya5{bottom:507.825675px;}
.yed{bottom:507.826425px;}
.y139{bottom:507.827925px;}
.y254{bottom:507.828675px;}
.y28e{bottom:507.829275px;}
.y157{bottom:507.829425px;}
.y17e{bottom:507.829575px;}
.y115{bottom:507.830175px;}
.y212{bottom:507.830925px;}
.ycc{bottom:507.832425px;}
.y2cb{bottom:517.582425px;}
.yb{bottom:521.872800px;}
.y5d{bottom:525.070425px;}
.y1d7{bottom:525.071925px;}
.y1a5{bottom:525.072075px;}
.y31{bottom:525.073725px;}
.y22e{bottom:525.075675px;}
.ya4{bottom:525.076425px;}
.yec{bottom:525.077175px;}
.y138{bottom:525.078675px;}
.yca{bottom:525.079425px;}
.y28d{bottom:525.080025px;}
.y156{bottom:525.080175px;}
.y17d{bottom:525.080325px;}
.y114{bottom:525.080925px;}
.y211{bottom:525.081675px;}
.ycb{bottom:530.527425px;}
.y2ca{bottom:533.332425px;}
.ya{bottom:536.872350px;}
.y5c{bottom:542.321175px;}
.y1d6{bottom:542.322675px;}
.y1a4{bottom:542.322825px;}
.y30{bottom:542.324475px;}
.y22d{bottom:542.326425px;}
.ya3{bottom:542.327175px;}
.yeb{bottom:542.327925px;}
.y137{bottom:542.329425px;}
.yc9{bottom:542.330175px;}
.y155{bottom:542.330925px;}
.y17c{bottom:542.331075px;}
.y113{bottom:542.331675px;}
.y2c9{bottom:549.082425px;}
.y9{bottom:551.871900px;}
.y5b{bottom:559.571925px;}
.y112{bottom:559.573425px;}
.y1a3{bottom:559.573575px;}
.y2f{bottom:559.575225px;}
.y22c{bottom:559.577175px;}
.ya2{bottom:559.577925px;}
.yea{bottom:559.578675px;}
.y28c{bottom:559.579875px;}
.y136{bottom:559.580175px;}
.yc8{bottom:559.580925px;}
.y154{bottom:559.581675px;}
.y17b{bottom:559.581825px;}
.y1c7{bottom:559.582425px;}
.y2c8{bottom:564.832425px;}
.y5a{bottom:576.822675px;}
.y111{bottom:576.824175px;}
.y1a2{bottom:576.824325px;}
.y2e{bottom:576.825975px;}
.y1c6{bottom:576.827175px;}
.y22b{bottom:576.827925px;}
.ya1{bottom:576.828675px;}
.ye9{bottom:576.829425px;}
.y28b{bottom:576.830625px;}
.y135{bottom:576.830925px;}
.yc7{bottom:576.831675px;}
.y17a{bottom:576.832575px;}
.y2c7{bottom:580.582425px;}
.y8{bottom:581.872425px;}
.y59{bottom:594.073425px;}
.y110{bottom:594.074925px;}
.y1a1{bottom:594.075075px;}
.y2d{bottom:594.076725px;}
.y1c5{bottom:594.077925px;}
.y22a{bottom:594.078675px;}
.ya0{bottom:594.079425px;}
.ye8{bottom:594.080175px;}
.y28a{bottom:594.081375px;}
.y134{bottom:594.081675px;}
.yc6{bottom:594.082425px;}
.y179{bottom:594.083325px;}
.y2c6{bottom:596.332425px;}
.y58{bottom:611.324175px;}
.y10f{bottom:611.325675px;}
.y1a0{bottom:611.325825px;}
.y2c{bottom:611.327475px;}
.y1c4{bottom:611.328675px;}
.y133{bottom:611.329425px;}
.y9f{bottom:611.330175px;}
.ye7{bottom:611.330925px;}
.yc4{bottom:611.331675px;}
.y289{bottom:611.332125px;}
.y178{bottom:611.334075px;}
.y2c5{bottom:612.082425px;}
.yc5{bottom:616.777425px;}
.y2c4{bottom:627.832425px;}
.y57{bottom:628.574925px;}
.y10e{bottom:628.576425px;}
.y19f{bottom:628.576575px;}
.y2b{bottom:628.578225px;}
.y1c3{bottom:628.579425px;}
.y132{bottom:628.580175px;}
.y9e{bottom:628.580925px;}
.ye6{bottom:628.581675px;}
.yc3{bottom:628.582425px;}
.y177{bottom:628.584825px;}
.y288{bottom:637.207425px;}
.y2c3{bottom:643.582425px;}
.y56{bottom:645.825675px;}
.y10d{bottom:645.827175px;}
.y19e{bottom:645.827325px;}
.y2a{bottom:645.828975px;}
.y1c2{bottom:645.830175px;}
.y131{bottom:645.830925px;}
.y9d{bottom:645.831675px;}
.ye5{bottom:645.832425px;}
.y176{bottom:645.835575px;}
.y2c2{bottom:659.332425px;}
.y55{bottom:663.076425px;}
.y10c{bottom:663.077925px;}
.y19d{bottom:663.078075px;}
.y29{bottom:663.079725px;}
.y9c{bottom:663.080475px;}
.y1c1{bottom:663.080925px;}
.y130{bottom:663.081675px;}
.y175{bottom:663.086325px;}
.y2c1{bottom:675.082425px;}
.y7{bottom:675.291825px;}
.y54{bottom:680.327175px;}
.y10b{bottom:680.328675px;}
.y19c{bottom:680.328825px;}
.y28{bottom:680.330475px;}
.y9b{bottom:680.331225px;}
.y1c0{bottom:680.331675px;}
.y174{bottom:680.337075px;}
.y6{bottom:689.542425px;}
.y2c0{bottom:690.832425px;}
.y53{bottom:697.577925px;}
.y10a{bottom:697.579425px;}
.y19b{bottom:697.579575px;}
.y27{bottom:697.581225px;}
.y9a{bottom:697.581975px;}
.y1bf{bottom:697.582425px;}
.y173{bottom:697.586175px;}
.y2bf{bottom:706.582425px;}
.y5{bottom:708.037425px;}
.y52{bottom:714.828675px;}
.y109{bottom:714.830175px;}
.y19a{bottom:714.830325px;}
.y26{bottom:714.831975px;}
.y99{bottom:714.832725px;}
.y172{bottom:714.835275px;}
.y2be{bottom:722.332425px;}
.y210{bottom:723.456525px;}
.y51{bottom:732.079425px;}
.y108{bottom:732.080925px;}
.y199{bottom:732.081075px;}
.y25{bottom:732.082725px;}
.y171{bottom:732.084375px;}
.y2bd{bottom:738.082425px;}
.y98{bottom:740.708025px;}
.y4{bottom:749.287425px;}
.y50{bottom:749.330175px;}
.y107{bottom:749.331675px;}
.y198{bottom:749.331825px;}
.y170{bottom:749.333475px;}
.y2bc{bottom:753.832425px;}
.y24{bottom:757.958025px;}
.y4f{bottom:766.580925px;}
.y106{bottom:766.582425px;}
.y16f{bottom:766.582575px;}
.y2bb{bottom:769.582425px;}
.y3{bottom:773.287425px;}
.y4e{bottom:783.831675px;}
.y97{bottom:783.832425px;}
.y2ba{bottom:785.332425px;}
.y2{bottom:797.287425px;}
.y23{bottom:801.082425px;}
.y1{bottom:848.287425px;}
.hf{height:49.295400px;}
.h2{height:51.216000px;}
.h1b{height:52.816500px;}
.h5{height:57.618000px;}
.h14{height:57.619800px;}
.h10{height:57.620400px;}
.he{height:57.622200px;}
.h13{height:57.622800px;}
.hd{height:57.630000px;}
.h8{height:58.536000px;}
.h6{height:60.819000px;}
.h7{height:61.788000px;}
.h20{height:64.020000px;}
.h21{height:65.039400px;}
.h1f{height:65.040000px;}
.h22{height:65.040600px;}
.h9{height:70.422000px;}
.h1c{height:70.443000px;}
.h1a{height:70.453800px;}
.h1d{height:70.499400px;}
.hc{height:71.075400px;}
.h1e{height:71.077200px;}
.h11{height:71.078400px;}
.h16{height:71.087400px;}
.h15{height:71.096400px;}
.h19{height:71.102400px;}
.h12{height:71.108400px;}
.h17{height:71.114400px;}
.hb{height:71.126400px;}
.h18{height:71.137800px;}
.ha{height:71.544000px;}
.h4{height:76.824000px;}
.h3{height:102.432000px;}
.h1{height:894.750000px;}
.h0{height:894.826770px;}
.w0{width:581.896020px;}
.w1{width:582.000000px;}
.x0{left:0.000000px;}
.x2{left:48.842115px;}
.x10{left:65.537415px;}
.xc{left:70.533165px;}
.x11{left:76.907715px;}
.x16{left:93.017715px;}
.x8{left:94.081290px;}
.x17{left:115.520415px;}
.x7{left:120.406740px;}
.x9{left:124.516440px;}
.xf{left:134.012115px;}
.xa{left:143.416215px;}
.x6{left:148.442190px;}
.x3{left:210.842115px;}
.x4{left:263.536665px;}
.x5{left:268.172115px;}
.xb{left:305.326140px;}
.x14{left:324.347115px;}
.x15{left:339.572115px;}
.x1{left:412.532115px;}
.x12{left:430.097115px;}
.x13{left:453.422115px;}
.xe{left:455.057115px;}
.xd{left:529.097115px;}
@media print{
.v2{vertical-align:-19.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.405333pt;}
.ls95{letter-spacing:-2.246933pt;}
.lse7{letter-spacing:-2.214000pt;}
.lsd5{letter-spacing:-1.672000pt;}
.lsda{letter-spacing:-1.449067pt;}
.ls67{letter-spacing:-1.437333pt;}
.ls11c{letter-spacing:-1.428000pt;}
.ls48{letter-spacing:-1.343467pt;}
.ls49{letter-spacing:-1.337600pt;}
.ls7c{letter-spacing:-1.299600pt;}
.ls76{letter-spacing:-1.296533pt;}
.lsd9{letter-spacing:-1.237867pt;}
.ls3a{letter-spacing:-1.232000pt;}
.lse3{letter-spacing:-1.185067pt;}
.ls94{letter-spacing:-1.132267pt;}
.ls96{letter-spacing:-1.126400pt;}
.lse9{letter-spacing:-1.085333pt;}
.lsd2{letter-spacing:-1.073600pt;}
.lsac{letter-spacing:-1.070400pt;}
.lsea{letter-spacing:-1.032533pt;}
.lsb9{letter-spacing:-1.026667pt;}
.lsdb{letter-spacing:-1.020800pt;}
.ls58{letter-spacing:-1.017600pt;}
.ls75{letter-spacing:-0.997333pt;}
.ls4c{letter-spacing:-0.968000pt;}
.ls9f{letter-spacing:-0.964800pt;}
.ls74{letter-spacing:-0.962133pt;}
.lsbb{letter-spacing:-0.956267pt;}
.lsaf{letter-spacing:-0.944533pt;}
.lsb2{letter-spacing:-0.915200pt;}
.ls9b{letter-spacing:-0.909333pt;}
.lse4{letter-spacing:-0.874133pt;}
.lsd{letter-spacing:-0.859200pt;}
.ls43{letter-spacing:-0.856533pt;}
.ls89{letter-spacing:-0.850667pt;}
.lsc0{letter-spacing:-0.809600pt;}
.lsc9{letter-spacing:-0.803733pt;}
.lsef{letter-spacing:-0.797867pt;}
.lsd0{letter-spacing:-0.762667pt;}
.lsc6{letter-spacing:-0.756800pt;}
.ls8a{letter-spacing:-0.750933pt;}
.lsb6{letter-spacing:-0.745067pt;}
.lsc5{letter-spacing:-0.704000pt;}
.ls6c{letter-spacing:-0.700800pt;}
.ls54{letter-spacing:-0.698133pt;}
.ls6b{letter-spacing:-0.696000pt;}
.lsb7{letter-spacing:-0.692267pt;}
.ls41{letter-spacing:-0.657067pt;}
.ls7d{letter-spacing:-0.655200pt;}
.lsb4{letter-spacing:-0.651200pt;}
.lsec{letter-spacing:-0.648000pt;}
.ls3f{letter-spacing:-0.645333pt;}
.ls59{letter-spacing:-0.643200pt;}
.lsbf{letter-spacing:-0.639467pt;}
.ls40{letter-spacing:-0.627733pt;}
.lsd4{letter-spacing:-0.611600pt;}
.ls55{letter-spacing:-0.604800pt;}
.lsd3{letter-spacing:-0.598400pt;}
.ls7b{letter-spacing:-0.595200pt;}
.lsab{letter-spacing:-0.592533pt;}
.ls56{letter-spacing:-0.590400pt;}
.lsc1{letter-spacing:-0.586667pt;}
.ls7a{letter-spacing:-0.585600pt;}
.lscf{letter-spacing:-0.558800pt;}
.lsb8{letter-spacing:-0.557333pt;}
.lsa9{letter-spacing:-0.551467pt;}
.lsa2{letter-spacing:-0.545600pt;}
.ls2d{letter-spacing:-0.539733pt;}
.lsbe{letter-spacing:-0.533867pt;}
.lsf0{letter-spacing:-0.522133pt;}
.lsa4{letter-spacing:-0.498667pt;}
.lsb3{letter-spacing:-0.492800pt;}
.ls44{letter-spacing:-0.486933pt;}
.lseb{letter-spacing:-0.484800pt;}
.ls29{letter-spacing:-0.434133pt;}
.lsc{letter-spacing:-0.430667pt;}
.ls88{letter-spacing:-0.428267pt;}
.lsdc{letter-spacing:-0.427093pt;}
.lsa3{letter-spacing:-0.387200pt;}
.ls3b{letter-spacing:-0.381333pt;}
.ls9{letter-spacing:-0.380000pt;}
.lsc7{letter-spacing:-0.379200pt;}
.ls3e{letter-spacing:-0.375467pt;}
.lsb{letter-spacing:-0.374933pt;}
.ls98{letter-spacing:-0.357867pt;}
.ls112{letter-spacing:-0.332000pt;}
.lse{letter-spacing:-0.331200pt;}
.ls113{letter-spacing:-0.330667pt;}
.ls23{letter-spacing:-0.328533pt;}
.ls6a{letter-spacing:-0.326400pt;}
.ls11e{letter-spacing:-0.325333pt;}
.ls9c{letter-spacing:-0.322667pt;}
.lsa8{letter-spacing:-0.320320pt;}
.lse6{letter-spacing:-0.305067pt;}
.lsa7{letter-spacing:-0.281600pt;}
.ls99{letter-spacing:-0.275733pt;}
.ls5a{letter-spacing:-0.273600pt;}
.ls114{letter-spacing:-0.272000pt;}
.ls2f{letter-spacing:-0.269867pt;}
.lse2{letter-spacing:-0.264000pt;}
.ls78{letter-spacing:-0.228800pt;}
.ls11a{letter-spacing:-0.224000pt;}
.ls4b{letter-spacing:-0.222933pt;}
.ls118{letter-spacing:-0.220000pt;}
.ls11b{letter-spacing:-0.218667pt;}
.ls8{letter-spacing:-0.217867pt;}
.ls2a{letter-spacing:-0.217067pt;}
.ls119{letter-spacing:-0.213333pt;}
.ls115{letter-spacing:-0.212000pt;}
.ls2e{letter-spacing:-0.211200pt;}
.lscb{letter-spacing:-0.205333pt;}
.ls97{letter-spacing:-0.176000pt;}
.lsaa{letter-spacing:-0.170133pt;}
.ls6e{letter-spacing:-0.168000pt;}
.ls3c{letter-spacing:-0.164267pt;}
.ls6d{letter-spacing:-0.163200pt;}
.ls9e{letter-spacing:-0.162000pt;}
.ls9a{letter-spacing:-0.160160pt;}
.lsa1{letter-spacing:-0.156053pt;}
.ls4a{letter-spacing:-0.129067pt;}
.lsc2{letter-spacing:-0.123200pt;}
.ls79{letter-spacing:-0.117333pt;}
.ls69{letter-spacing:-0.115200pt;}
.ls28{letter-spacing:-0.111467pt;}
.ls9d{letter-spacing:-0.110400pt;}
.ls42{letter-spacing:-0.105600pt;}
.lsc3{letter-spacing:-0.099733pt;}
.lse8{letter-spacing:-0.088000pt;}
.ls3d{letter-spacing:-0.064533pt;}
.ls39{letter-spacing:-0.058667pt;}
.ls57{letter-spacing:-0.057600pt;}
.ls116{letter-spacing:-0.056000pt;}
.lse5{letter-spacing:-0.046933pt;}
.lsd8{letter-spacing:-0.025600pt;}
.lsa{letter-spacing:-0.025333pt;}
.ls30{letter-spacing:-0.023467pt;}
.ls31{letter-spacing:-0.021333pt;}
.lsb5{letter-spacing:-0.017600pt;}
.ls110{letter-spacing:-0.016000pt;}
.lsd6{letter-spacing:-0.014400pt;}
.ls2{letter-spacing:-0.012800pt;}
.ls111{letter-spacing:-0.012000pt;}
.ls21{letter-spacing:-0.011733pt;}
.ls8c{letter-spacing:-0.010800pt;}
.lsf7{letter-spacing:-0.010667pt;}
.lsf{letter-spacing:-0.010133pt;}
.ls68{letter-spacing:-0.009600pt;}
.lsce{letter-spacing:-0.008800pt;}
.ls3{letter-spacing:-0.008533pt;}
.ls11d{letter-spacing:-0.008000pt;}
.ls8d{letter-spacing:-0.007200pt;}
.ls4{letter-spacing:-0.006400pt;}
.ls22{letter-spacing:-0.005867pt;}
.lsf6{letter-spacing:-0.005333pt;}
.ls7{letter-spacing:-0.005067pt;}
.ls5{letter-spacing:-0.004800pt;}
.ls1{letter-spacing:-0.004267pt;}
.lsf5{letter-spacing:-0.004000pt;}
.lsd7{letter-spacing:-0.003600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls103{letter-spacing:0.004000pt;}
.lsad{letter-spacing:0.005867pt;}
.lsee{letter-spacing:0.011733pt;}
.ls2b{letter-spacing:0.017600pt;}
.lsd1{letter-spacing:0.029333pt;}
.ls1e{letter-spacing:0.035200pt;}
.ls5b{letter-spacing:0.038400pt;}
.lsa5{letter-spacing:0.041067pt;}
.ls65{letter-spacing:0.043200pt;}
.ls5e{letter-spacing:0.046800pt;}
.ls1d{letter-spacing:0.046933pt;}
.ls51{letter-spacing:0.048000pt;}
.ls38{letter-spacing:0.052800pt;}
.lsdf{letter-spacing:0.058667pt;}
.lsed{letter-spacing:0.088000pt;}
.ls2c{letter-spacing:0.093867pt;}
.ls1f{letter-spacing:0.099733pt;}
.ls52{letter-spacing:0.100800pt;}
.ls10f{letter-spacing:0.101333pt;}
.ls61{letter-spacing:0.105600pt;}
.ls10d{letter-spacing:0.106667pt;}
.lsc4{letter-spacing:0.106773pt;}
.ls10e{letter-spacing:0.108000pt;}
.lsca{letter-spacing:0.111467pt;}
.lsae{letter-spacing:0.123200pt;}
.ls92{letter-spacing:0.138667pt;}
.ls90{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.146667pt;}
.ls19{letter-spacing:0.152533pt;}
.ls8f{letter-spacing:0.153600pt;}
.ls93{letter-spacing:0.154800pt;}
.ls10{letter-spacing:0.158400pt;}
.ls7f{letter-spacing:0.193600pt;}
.ls71{letter-spacing:0.199467pt;}
.ls72{letter-spacing:0.201600pt;}
.ls73{letter-spacing:0.202667pt;}
.ls18{letter-spacing:0.205333pt;}
.ls64{letter-spacing:0.206400pt;}
.ls36{letter-spacing:0.211200pt;}
.ls7e{letter-spacing:0.212400pt;}
.lse0{letter-spacing:0.217067pt;}
.ls27{letter-spacing:0.222933pt;}
.ls91{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.252267pt;}
.ls62{letter-spacing:0.254400pt;}
.ls10a{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.258133pt;}
.ls63{letter-spacing:0.259200pt;}
.ls12{letter-spacing:0.264000pt;}
.ls109{letter-spacing:0.266667pt;}
.ls25{letter-spacing:0.269867pt;}
.lsa6{letter-spacing:0.270000pt;}
.ls24{letter-spacing:0.275733pt;}
.lsde{letter-spacing:0.281600pt;}
.ls102{letter-spacing:0.304000pt;}
.ls32{letter-spacing:0.310933pt;}
.ls87{letter-spacing:0.312000pt;}
.ls0{letter-spacing:0.314133pt;}
.ls33{letter-spacing:0.316800pt;}
.ls101{letter-spacing:0.320000pt;}
.lsdd{letter-spacing:0.328533pt;}
.lsc8{letter-spacing:0.357867pt;}
.lsb1{letter-spacing:0.363733pt;}
.lsf3{letter-spacing:0.368000pt;}
.ls46{letter-spacing:0.369600pt;}
.lsf2{letter-spacing:0.373333pt;}
.ls17{letter-spacing:0.410667pt;}
.ls1c{letter-spacing:0.416533pt;}
.ls105{letter-spacing:0.421333pt;}
.ls16{letter-spacing:0.422400pt;}
.ls106{letter-spacing:0.424000pt;}
.ls104{letter-spacing:0.426667pt;}
.ls117{letter-spacing:0.428000pt;}
.ls6f{letter-spacing:0.428267pt;}
.ls26{letter-spacing:0.434133pt;}
.ls53{letter-spacing:0.436800pt;}
.ls45{letter-spacing:0.469333pt;}
.ls1b{letter-spacing:0.475200pt;}
.ls107{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.522133pt;}
.ls108{letter-spacing:0.524000pt;}
.ls35{letter-spacing:0.528000pt;}
.lsfe{letter-spacing:0.533333pt;}
.ls70{letter-spacing:0.533867pt;}
.lse1{letter-spacing:0.545600pt;}
.ls84{letter-spacing:0.569067pt;}
.ls14{letter-spacing:0.574933pt;}
.ls4e{letter-spacing:0.580800pt;}
.ls100{letter-spacing:0.581333pt;}
.lsff{letter-spacing:0.588000pt;}
.lsa0{letter-spacing:0.627733pt;}
.ls34{letter-spacing:0.633600pt;}
.lsb0{letter-spacing:0.680533pt;}
.ls15{letter-spacing:0.686400pt;}
.lsf9{letter-spacing:0.692000pt;}
.lsf8{letter-spacing:0.693333pt;}
.lsfc{letter-spacing:0.725333pt;}
.ls47{letter-spacing:0.739200pt;}
.lsfd{letter-spacing:0.741333pt;}
.lsfb{letter-spacing:0.744000pt;}
.lsfa{letter-spacing:0.746667pt;}
.lscc{letter-spacing:0.750933pt;}
.ls37{letter-spacing:0.792000pt;}
.ls50{letter-spacing:0.797867pt;}
.ls81{letter-spacing:0.838933pt;}
.lscd{letter-spacing:0.844800pt;}
.lsf1{letter-spacing:0.850667pt;}
.ls10c{letter-spacing:0.896000pt;}
.ls4d{letter-spacing:0.897600pt;}
.ls60{letter-spacing:0.900000pt;}
.ls5f{letter-spacing:0.902400pt;}
.ls8e{letter-spacing:0.903467pt;}
.ls10b{letter-spacing:0.906667pt;}
.ls66{letter-spacing:0.956267pt;}
.lsbc{letter-spacing:1.050133pt;}
.lsf4{letter-spacing:1.061867pt;}
.ls80{letter-spacing:1.102933pt;}
.lsba{letter-spacing:1.108800pt;}
.ls83{letter-spacing:1.220267pt;}
.ls77{letter-spacing:1.449067pt;}
.lsbd{letter-spacing:1.472533pt;}
.ls85{letter-spacing:1.484267pt;}
.ls8b{letter-spacing:1.490133pt;}
.ls82{letter-spacing:13.440000pt;}
.ls5c{letter-spacing:13.653333pt;}
.ls5d{letter-spacing:13.813333pt;}
.ls4f{letter-spacing:14.986667pt;}
.ls86{letter-spacing:19.146667pt;}
.wsa4{word-spacing:-15.235733pt;}
.ws8a{word-spacing:-15.036267pt;}
.ws101{word-spacing:-15.024533pt;}
.ws132{word-spacing:-14.948267pt;}
.ws13{word-spacing:-14.918933pt;}
.ws119{word-spacing:-14.883733pt;}
.ws10d{word-spacing:-14.819200pt;}
.wsfa{word-spacing:-14.813333pt;}
.ws17{word-spacing:-14.766400pt;}
.ws6f{word-spacing:-14.666667pt;}
.wsc7{word-spacing:-14.660800pt;}
.ws59{word-spacing:-14.654933pt;}
.wse2{word-spacing:-14.649067pt;}
.ws18{word-spacing:-14.643200pt;}
.wseb{word-spacing:-14.608000pt;}
.ws12d{word-spacing:-14.602133pt;}
.ws4b{word-spacing:-14.555200pt;}
.ws111{word-spacing:-14.502400pt;}
.wsd5{word-spacing:-14.496533pt;}
.ws70{word-spacing:-14.443733pt;}
.wsdb{word-spacing:-14.390933pt;}
.ws11a{word-spacing:-14.361600pt;}
.ws118{word-spacing:-14.344000pt;}
.wsd3{word-spacing:-14.285333pt;}
.ws6e{word-spacing:-14.232533pt;}
.wsa5{word-spacing:-14.126933pt;}
.wse3{word-spacing:-14.109333pt;}
.ws10f{word-spacing:-14.074133pt;}
.ws39{word-spacing:-14.021333pt;}
.ws3a{word-spacing:-14.009600pt;}
.ws12f{word-spacing:-13.857067pt;}
.wsb5{word-spacing:-13.540267pt;}
.ws133{word-spacing:-13.333333pt;}
.ws13d{word-spacing:-13.328000pt;}
.ws135{word-spacing:-13.322667pt;}
.ws13c{word-spacing:-13.317333pt;}
.ws110{word-spacing:-12.994667pt;}
.ws1{word-spacing:-12.914933pt;}
.ws3{word-spacing:-12.656533pt;}
.ws77{word-spacing:-12.259200pt;}
.ws0{word-spacing:-12.000000pt;}
.ws72{word-spacing:-11.995200pt;}
.ws8b{word-spacing:-11.990400pt;}
.wsfc{word-spacing:-11.942400pt;}
.ws76{word-spacing:-11.884800pt;}
.ws78{word-spacing:-11.832000pt;}
.ws79{word-spacing:-11.673600pt;}
.ws8c{word-spacing:-11.404800pt;}
.ws10b{word-spacing:-10.991200pt;}
.ws150{word-spacing:-10.900000pt;}
.ws140{word-spacing:-10.744000pt;}
.ws139{word-spacing:-10.692000pt;}
.ws142{word-spacing:-10.588000pt;}
.ws14a{word-spacing:-10.524000pt;}
.ws146{word-spacing:-10.428000pt;}
.ws147{word-spacing:-10.424000pt;}
.ws10c{word-spacing:-10.388400pt;}
.ws136{word-spacing:-10.368000pt;}
.ws144{word-spacing:-10.312000pt;}
.ws14b{word-spacing:-10.256000pt;}
.ws151{word-spacing:-10.108000pt;}
.ws145{word-spacing:-10.004000pt;}
.ws13a{word-spacing:-10.000000pt;}
.ws134{word-spacing:-9.996000pt;}
.ws152{word-spacing:-9.992000pt;}
.ws13b{word-spacing:-9.988000pt;}
.ws143{word-spacing:-9.944000pt;}
.ws13e{word-spacing:-9.668000pt;}
.wsd6{word-spacing:-9.270000pt;}
.ws14f{word-spacing:-8.572000pt;}
.ws105{word-spacing:-0.750933pt;}
.ws9a{word-spacing:-0.745067pt;}
.ws9e{word-spacing:-0.739200pt;}
.ws127{word-spacing:-0.704000pt;}
.ws61{word-spacing:-0.692267pt;}
.ws40{word-spacing:-0.686400pt;}
.ws32{word-spacing:-0.680533pt;}
.ws128{word-spacing:-0.662933pt;}
.wsfe{word-spacing:-0.651200pt;}
.ws44{word-spacing:-0.645333pt;}
.ws28{word-spacing:-0.639467pt;}
.ws15c{word-spacing:-0.634667pt;}
.ws1c{word-spacing:-0.633600pt;}
.ws54{word-spacing:-0.627733pt;}
.ws98{word-spacing:-0.592533pt;}
.ws1b{word-spacing:-0.586667pt;}
.wsf{word-spacing:-0.585600pt;}
.ws49{word-spacing:-0.580800pt;}
.ws36{word-spacing:-0.539733pt;}
.ws7b{word-spacing:-0.537600pt;}
.ws3f{word-spacing:-0.533867pt;}
.ws63{word-spacing:-0.532800pt;}
.ws6{word-spacing:-0.532000pt;}
.ws55{word-spacing:-0.528000pt;}
.ws9b{word-spacing:-0.522133pt;}
.ws71{word-spacing:-0.504000pt;}
.wsf9{word-spacing:-0.492800pt;}
.ws123{word-spacing:-0.486933pt;}
.wsc2{word-spacing:-0.484800pt;}
.ws37{word-spacing:-0.481067pt;}
.ws80{word-spacing:-0.480000pt;}
.ws2d{word-spacing:-0.475200pt;}
.wsd8{word-spacing:-0.469333pt;}
.ws161{word-spacing:-0.458667pt;}
.ws11c{word-spacing:-0.434133pt;}
.ws90{word-spacing:-0.428267pt;}
.ws69{word-spacing:-0.427200pt;}
.ws5{word-spacing:-0.425600pt;}
.ws29{word-spacing:-0.422400pt;}
.wsc3{word-spacing:-0.417600pt;}
.wsbe{word-spacing:-0.416533pt;}
.ws42{word-spacing:-0.375467pt;}
.ws157{word-spacing:-0.373333pt;}
.ws53{word-spacing:-0.369600pt;}
.ws156{word-spacing:-0.368000pt;}
.wscb{word-spacing:-0.363733pt;}
.ws167{word-spacing:-0.362667pt;}
.ws155{word-spacing:-0.357333pt;}
.wsab{word-spacing:-0.322667pt;}
.ws3e{word-spacing:-0.316800pt;}
.ws159{word-spacing:-0.314667pt;}
.ws2c{word-spacing:-0.310933pt;}
.ws1e{word-spacing:-0.269867pt;}
.ws9{word-spacing:-0.268533pt;}
.ws82{word-spacing:-0.264000pt;}
.ws7{word-spacing:-0.263467pt;}
.wse{word-spacing:-0.259200pt;}
.ws1f{word-spacing:-0.258133pt;}
.wscc{word-spacing:-0.252267pt;}
.wsbf{word-spacing:-0.234667pt;}
.ws108{word-spacing:-0.222933pt;}
.ws129{word-spacing:-0.217067pt;}
.wsa{word-spacing:-0.212800pt;}
.ws34{word-spacing:-0.211200pt;}
.ws26{word-spacing:-0.205333pt;}
.ws104{word-spacing:-0.199467pt;}
.wsf5{word-spacing:-0.164267pt;}
.ws35{word-spacing:-0.158400pt;}
.wsd9{word-spacing:-0.152533pt;}
.ws11{word-spacing:-0.134933pt;}
.wsf7{word-spacing:-0.117333pt;}
.ws43{word-spacing:-0.105600pt;}
.ws1d{word-spacing:-0.099733pt;}
.wsd4{word-spacing:-0.064533pt;}
.ws5a{word-spacing:-0.052800pt;}
.wsbc{word-spacing:-0.046933pt;}
.ws164{word-spacing:-0.005333pt;}
.wsc6{word-spacing:-0.004800pt;}
.ws4{word-spacing:0.000000pt;}
.ws10{word-spacing:0.004800pt;}
.wsc{word-spacing:0.005067pt;}
.ws138{word-spacing:0.005333pt;}
.ws1a{word-spacing:0.005867pt;}
.wsb3{word-spacing:0.009600pt;}
.ws15b{word-spacing:0.010667pt;}
.wsdd{word-spacing:0.011733pt;}
.ws2{word-spacing:0.014400pt;}
.ws154{word-spacing:0.016000pt;}
.ws38{word-spacing:0.017067pt;}
.wse1{word-spacing:0.035200pt;}
.wsde{word-spacing:0.046933pt;}
.ws68{word-spacing:0.052800pt;}
.wsa3{word-spacing:0.058667pt;}
.ws12c{word-spacing:0.076267pt;}
.ws131{word-spacing:0.099733pt;}
.ws7c{word-spacing:0.105600pt;}
.wsf4{word-spacing:0.111467pt;}
.ws47{word-spacing:0.158400pt;}
.wsc1{word-spacing:0.164267pt;}
.ws124{word-spacing:0.176000pt;}
.ws94{word-spacing:0.199467pt;}
.ws96{word-spacing:0.205333pt;}
.ws102{word-spacing:0.211200pt;}
.ws56{word-spacing:0.217067pt;}
.wsd7{word-spacing:0.222933pt;}
.ws95{word-spacing:0.234667pt;}
.wse0{word-spacing:0.246400pt;}
.wsea{word-spacing:0.252267pt;}
.ws2b{word-spacing:0.264000pt;}
.wse8{word-spacing:0.269867pt;}
.wsd{word-spacing:0.273600pt;}
.wse9{word-spacing:0.275733pt;}
.ws81{word-spacing:0.288000pt;}
.wsec{word-spacing:0.305067pt;}
.ws57{word-spacing:0.316800pt;}
.ws137{word-spacing:0.320000pt;}
.ws7d{word-spacing:0.321600pt;}
.ws117{word-spacing:0.322667pt;}
.ws103{word-spacing:0.328533pt;}
.ws73{word-spacing:0.350400pt;}
.ws3d{word-spacing:0.369600pt;}
.wse4{word-spacing:0.375467pt;}
.ws12b{word-spacing:0.381333pt;}
.wsf1{word-spacing:0.422400pt;}
.ws67{word-spacing:0.427200pt;}
.ws8f{word-spacing:0.428267pt;}
.ws165{word-spacing:0.432000pt;}
.wsa1{word-spacing:0.475200pt;}
.wsa0{word-spacing:0.480000pt;}
.ws3b{word-spacing:0.481067pt;}
.ws60{word-spacing:0.486933pt;}
.wsdc{word-spacing:0.498667pt;}
.wsef{word-spacing:0.528000pt;}
.ws7e{word-spacing:0.532800pt;}
.ws62{word-spacing:0.533867pt;}
.wsbb{word-spacing:0.545600pt;}
.wsc0{word-spacing:0.580800pt;}
.ws9f{word-spacing:0.585600pt;}
.ws51{word-spacing:0.586667pt;}
.ws100{word-spacing:0.590400pt;}
.ws4d{word-spacing:0.592533pt;}
.ws158{word-spacing:0.597333pt;}
.wsac{word-spacing:0.627733pt;}
.ws5c{word-spacing:0.633600pt;}
.ws8{word-spacing:0.638400pt;}
.wsda{word-spacing:0.639467pt;}
.ws153{word-spacing:0.640000pt;}
.ws10a{word-spacing:0.645333pt;}
.ws5f{word-spacing:0.686400pt;}
.ws4e{word-spacing:0.692267pt;}
.ws6d{word-spacing:0.696000pt;}
.ws46{word-spacing:0.698133pt;}
.ws20{word-spacing:0.745067pt;}
.ws15a{word-spacing:0.746667pt;}
.ws52{word-spacing:0.750933pt;}
.ws130{word-spacing:0.756800pt;}
.wsf3{word-spacing:0.792000pt;}
.ws58{word-spacing:0.797867pt;}
.ws162{word-spacing:0.800000pt;}
.ws6a{word-spacing:0.801600pt;}
.wscd{word-spacing:0.803733pt;}
.wsce{word-spacing:0.809600pt;}
.wsd0{word-spacing:0.833067pt;}
.wsb2{word-spacing:0.844800pt;}
.ws41{word-spacing:0.850667pt;}
.wsb1{word-spacing:0.854400pt;}
.ws50{word-spacing:0.856533pt;}
.ws115{word-spacing:0.897600pt;}
.ws15f{word-spacing:0.901333pt;}
.ws65{word-spacing:0.902400pt;}
.ws5e{word-spacing:0.903467pt;}
.ws160{word-spacing:0.906667pt;}
.ws85{word-spacing:0.907200pt;}
.ws30{word-spacing:0.909333pt;}
.ws99{word-spacing:0.915200pt;}
.ws84{word-spacing:0.916800pt;}
.ws126{word-spacing:0.921067pt;}
.ws5d{word-spacing:0.956267pt;}
.wsb{word-spacing:0.957600pt;}
.ws86{word-spacing:0.960000pt;}
.ws4c{word-spacing:0.962133pt;}
.wsa2{word-spacing:0.964800pt;}
.wsae{word-spacing:0.997333pt;}
.wsee{word-spacing:1.003200pt;}
.ws5b{word-spacing:1.009067pt;}
.wsc5{word-spacing:1.012800pt;}
.ws15d{word-spacing:1.013333pt;}
.ws27{word-spacing:1.014933pt;}
.wsc4{word-spacing:1.017600pt;}
.ws92{word-spacing:1.020800pt;}
.ws93{word-spacing:1.026667pt;}
.ws15e{word-spacing:1.029333pt;}
.ws89{word-spacing:1.038400pt;}
.ws14{word-spacing:1.050133pt;}
.wsad{word-spacing:1.056000pt;}
.ws9c{word-spacing:1.061867pt;}
.ws66{word-spacing:1.065600pt;}
.ws22{word-spacing:1.067733pt;}
.ws83{word-spacing:1.070400pt;}
.ws163{word-spacing:1.072000pt;}
.ws9d{word-spacing:1.073600pt;}
.ws15{word-spacing:1.097067pt;}
.wsed{word-spacing:1.108800pt;}
.ws4f{word-spacing:1.114667pt;}
.ws88{word-spacing:1.118400pt;}
.ws3c{word-spacing:1.120533pt;}
.ws87{word-spacing:1.123200pt;}
.ws7f{word-spacing:1.128000pt;}
.ws97{word-spacing:1.132267pt;}
.ws11d{word-spacing:1.138133pt;}
.wsff{word-spacing:1.167467pt;}
.ws64{word-spacing:1.171200pt;}
.ws21{word-spacing:1.173333pt;}
.ws6c{word-spacing:1.176000pt;}
.ws31{word-spacing:1.179200pt;}
.ws12a{word-spacing:1.185067pt;}
.ws6b{word-spacing:1.185600pt;}
.ws11e{word-spacing:1.190933pt;}
.ws11f{word-spacing:1.196800pt;}
.wse7{word-spacing:1.208533pt;}
.wse6{word-spacing:1.214400pt;}
.wsfd{word-spacing:1.219200pt;}
.ws48{word-spacing:1.220267pt;}
.ws25{word-spacing:1.226133pt;}
.ws166{word-spacing:1.226667pt;}
.ws23{word-spacing:1.232000pt;}
.wsaa{word-spacing:1.243733pt;}
.ws125{word-spacing:1.249600pt;}
.ws45{word-spacing:1.273067pt;}
.wsbd{word-spacing:1.278933pt;}
.wscf{word-spacing:1.284800pt;}
.ws12{word-spacing:1.290667pt;}
.ws109{word-spacing:1.296533pt;}
.ws12e{word-spacing:1.308267pt;}
.ws7a{word-spacing:1.310400pt;}
.wsdf{word-spacing:1.314133pt;}
.ws2a{word-spacing:1.331733pt;}
.ws24{word-spacing:1.337600pt;}
.wsf8{word-spacing:1.343467pt;}
.ws122{word-spacing:1.355200pt;}
.wse5{word-spacing:1.366933pt;}
.wsb7{word-spacing:1.372800pt;}
.ws4a{word-spacing:1.378667pt;}
.ws16{word-spacing:1.384533pt;}
.ws2f{word-spacing:1.390400pt;}
.ws91{word-spacing:1.402133pt;}
.ws120{word-spacing:1.408000pt;}
.wsf0{word-spacing:1.425600pt;}
.ws33{word-spacing:1.437333pt;}
.ws2e{word-spacing:1.443200pt;}
.ws107{word-spacing:1.454933pt;}
.ws121{word-spacing:1.460800pt;}
.wsd2{word-spacing:1.548800pt;}
.wsb0{word-spacing:1.971200pt;}
.wsaf{word-spacing:1.977067pt;}
.wsb8{word-spacing:2.416667pt;}
.wsb4{word-spacing:2.786667pt;}
.ws149{word-spacing:2.933333pt;}
.ws148{word-spacing:2.973333pt;}
.wsa8{word-spacing:2.994667pt;}
.wsa9{word-spacing:2.997067pt;}
.ws112{word-spacing:3.004267pt;}
.ws116{word-spacing:3.008000pt;}
.wsf6{word-spacing:3.008267pt;}
.wsca{word-spacing:3.016267pt;}
.ws13f{word-spacing:3.033333pt;}
.ws113{word-spacing:3.068000pt;}
.wsa6{word-spacing:3.068933pt;}
.wsa7{word-spacing:3.170667pt;}
.ws14e{word-spacing:3.333333pt;}
.ws14d{word-spacing:3.334667pt;}
.ws75{word-spacing:3.432000pt;}
.ws106{word-spacing:3.627467pt;}
.ws10e{word-spacing:3.801493pt;}
.wsc8{word-spacing:3.854827pt;}
.wsb6{word-spacing:3.920480pt;}
.wsd1{word-spacing:4.027627pt;}
.ws74{word-spacing:4.124400pt;}
.wsb9{word-spacing:4.176533pt;}
.ws14c{word-spacing:4.477333pt;}
.wsc9{word-spacing:4.986667pt;}
.wsba{word-spacing:5.596133pt;}
.ws8d{word-spacing:5.650133pt;}
.ws8e{word-spacing:5.746133pt;}
.wsfb{word-spacing:5.786347pt;}
.ws141{word-spacing:5.889333pt;}
.wsf2{word-spacing:7.075200pt;}
.ws11b{word-spacing:7.427733pt;}
.ws19{word-spacing:31.786667pt;}
.ws114{word-spacing:31.833600pt;}
._19{margin-left:-9.586667pt;}
._18{margin-left:-7.053867pt;}
._3{margin-left:-6.080000pt;}
._4{margin-left:-4.484000pt;}
._2{margin-left:-3.063467pt;}
._0{margin-left:-1.821867pt;}
._6{margin-left:-0.925867pt;}
._5{width:1.763200pt;}
._7{width:2.801600pt;}
._e{width:10.958400pt;}
._d{width:12.314667pt;}
._12{width:13.464000pt;}
._9{width:14.534933pt;}
._13{width:16.737600pt;}
._11{width:18.734400pt;}
._f{width:20.107200pt;}
._10{width:21.449600pt;}
._16{width:35.182400pt;}
._17{width:41.395200pt;}
._1{width:42.696533pt;}
._c{width:44.006400pt;}
._b{width:45.211200pt;}
._15{width:801.676800pt;}
._a{width:823.436800pt;}
._14{width:934.280533pt;}
._8{width:955.989333pt;}
.fs7{font-size:36.000000pt;}
.fsa{font-size:40.000000pt;}
.fs6{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:44.000000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2b9{bottom:36.739933pt;}
.y204{bottom:37.055667pt;}
.y105{bottom:37.058867pt;}
.y1ef{bottom:37.059933pt;}
.y96{bottom:37.065000pt;}
.yc2{bottom:37.066333pt;}
.y16e{bottom:37.071667pt;}
.y153{bottom:37.073267pt;}
.y12f{bottom:37.075267pt;}
.y287{bottom:37.079667pt;}
.ye4{bottom:37.099933pt;}
.y79{bottom:37.378733pt;}
.y4d{bottom:37.380200pt;}
.y20f{bottom:37.386067pt;}
.y2a8{bottom:37.396067pt;}
.y197{bottom:37.399267pt;}
.y229{bottom:37.400600pt;}
.y1be{bottom:37.401267pt;}
.y1b4{bottom:37.401933pt;}
.y1d5{bottom:37.505933pt;}
.y1a{bottom:38.551800pt;}
.y203{bottom:49.722867pt;}
.y104{bottom:49.726067pt;}
.y95{bottom:49.732200pt;}
.yc1{bottom:49.733533pt;}
.y16d{bottom:49.738867pt;}
.y152{bottom:49.740467pt;}
.y12e{bottom:49.742467pt;}
.y286{bottom:49.746867pt;}
.ye3{bottom:49.766067pt;}
.y2b8{bottom:50.739933pt;}
.y78{bottom:52.712733pt;}
.y4c{bottom:52.714200pt;}
.y20e{bottom:52.720067pt;}
.y2a7{bottom:52.730067pt;}
.y196{bottom:52.733267pt;}
.y228{bottom:52.734600pt;}
.y1bd{bottom:52.735267pt;}
.y1b3{bottom:52.735933pt;}
.y1d4{bottom:52.839933pt;}
.y202{bottom:62.390067pt;}
.y243{bottom:62.393267pt;}
.y103{bottom:62.393400pt;}
.y94{bottom:62.399400pt;}
.yc0{bottom:62.400733pt;}
.y151{bottom:62.406067pt;}
.y12d{bottom:62.408467pt;}
.y285{bottom:62.414067pt;}
.ye2{bottom:62.432333pt;}
.y19{bottom:63.885000pt;}
.y2b7{bottom:64.739933pt;}
.y77{bottom:68.046733pt;}
.y4b{bottom:68.048200pt;}
.y20d{bottom:68.054067pt;}
.y2a6{bottom:68.064067pt;}
.y195{bottom:68.067267pt;}
.y227{bottom:68.068600pt;}
.y1bc{bottom:68.069267pt;}
.y1b2{bottom:68.069933pt;}
.y2e7{bottom:68.073267pt;}
.y1d3{bottom:68.173933pt;}
.y201{bottom:75.057267pt;}
.y102{bottom:75.060600pt;}
.y93{bottom:75.066600pt;}
.ybf{bottom:75.067933pt;}
.y150{bottom:75.073267pt;}
.y12c{bottom:75.074467pt;}
.y284{bottom:75.081267pt;}
.ye1{bottom:75.099533pt;}
.y18{bottom:76.552200pt;}
.y2b6{bottom:78.739933pt;}
.y2e6{bottom:82.073267pt;}
.y76{bottom:83.380733pt;}
.y4a{bottom:83.382200pt;}
.y1ee{bottom:83.383533pt;}
.y20c{bottom:83.388067pt;}
.y2a5{bottom:83.398067pt;}
.y194{bottom:83.401267pt;}
.y26c{bottom:83.401933pt;}
.y226{bottom:83.402600pt;}
.y1bb{bottom:83.403267pt;}
.y1b1{bottom:83.403933pt;}
.y253{bottom:83.405267pt;}
.y1d2{bottom:83.507933pt;}
.y200{bottom:87.724467pt;}
.y101{bottom:87.726600pt;}
.y92{bottom:87.732600pt;}
.ybe{bottom:87.735133pt;}
.y12b{bottom:87.740467pt;}
.y16c{bottom:87.740600pt;}
.y283{bottom:87.748467pt;}
.ye0{bottom:87.766733pt;}
.y17{bottom:89.219400pt;}
.y2b5{bottom:92.739933pt;}
.y2e5{bottom:96.073267pt;}
.y75{bottom:98.714733pt;}
.y49{bottom:98.716200pt;}
.y1ed{bottom:98.717533pt;}
.y20b{bottom:98.722067pt;}
.y2a4{bottom:98.732067pt;}
.y193{bottom:98.735267pt;}
.y26b{bottom:98.735933pt;}
.y225{bottom:98.736600pt;}
.y1ba{bottom:98.737267pt;}
.y1b0{bottom:98.737933pt;}
.y252{bottom:98.739267pt;}
.y1d1{bottom:98.841933pt;}
.y1ff{bottom:100.391667pt;}
.y91{bottom:100.398600pt;}
.ybd{bottom:100.402333pt;}
.y16b{bottom:100.406600pt;}
.y12a{bottom:100.407933pt;}
.y282{bottom:100.415667pt;}
.ydf{bottom:100.433933pt;}
.y16{bottom:101.886600pt;}
.y2b4{bottom:106.739933pt;}
.y2e4{bottom:110.073267pt;}
.y1fe{bottom:113.058867pt;}
.y90{bottom:113.064600pt;}
.ybc{bottom:113.069533pt;}
.y129{bottom:113.075133pt;}
.y281{bottom:113.082867pt;}
.yde{bottom:113.099933pt;}
.y74{bottom:114.048733pt;}
.y48{bottom:114.050200pt;}
.y14f{bottom:114.054600pt;}
.y20a{bottom:114.056067pt;}
.y2a3{bottom:114.066067pt;}
.y192{bottom:114.069267pt;}
.y26a{bottom:114.069933pt;}
.y224{bottom:114.070600pt;}
.y1b9{bottom:114.071267pt;}
.y1af{bottom:114.071933pt;}
.y251{bottom:114.073267pt;}
.y2b3{bottom:120.739933pt;}
.y1ec{bottom:121.717800pt;}
.y1d0{bottom:121.842200pt;}
.y2e3{bottom:124.073267pt;}
.y1fd{bottom:125.726067pt;}
.y8f{bottom:125.730600pt;}
.ybb{bottom:125.736733pt;}
.y128{bottom:125.741133pt;}
.y280{bottom:125.750067pt;}
.y73{bottom:129.382733pt;}
.y47{bottom:129.384200pt;}
.y14e{bottom:129.388600pt;}
.y209{bottom:129.390067pt;}
.y2a2{bottom:129.400067pt;}
.y191{bottom:129.403267pt;}
.y269{bottom:129.403933pt;}
.y223{bottom:129.404600pt;}
.y1b8{bottom:129.405267pt;}
.y1ae{bottom:129.405933pt;}
.y250{bottom:129.406200pt;}
.y2b2{bottom:134.739933pt;}
.y1eb{bottom:137.051800pt;}
.y2e2{bottom:138.073133pt;}
.y1fc{bottom:138.393267pt;}
.y8e{bottom:138.396600pt;}
.yba{bottom:138.403933pt;}
.y127{bottom:138.407133pt;}
.y27f{bottom:138.417267pt;}
.y72{bottom:144.716733pt;}
.y46{bottom:144.718200pt;}
.y14d{bottom:144.722600pt;}
.y208{bottom:144.724067pt;}
.y2a1{bottom:144.734067pt;}
.y190{bottom:144.737267pt;}
.y268{bottom:144.737933pt;}
.y222{bottom:144.738600pt;}
.y1b7{bottom:144.739267pt;}
.y1ad{bottom:144.739933pt;}
.y24f{bottom:144.740200pt;}
.y1cf{bottom:144.842467pt;}
.y8d{bottom:151.062600pt;}
.yb9{bottom:151.071133pt;}
.y126{bottom:151.072733pt;}
.y27e{bottom:151.084467pt;}
.y2e1{bottom:152.073133pt;}
.y2b1{bottom:156.388467pt;}
.y71{bottom:160.050733pt;}
.y45{bottom:160.052200pt;}
.y14c{bottom:160.056600pt;}
.y207{bottom:160.058067pt;}
.y16a{bottom:160.059400pt;}
.y100{bottom:160.065933pt;}
.y2a0{bottom:160.068067pt;}
.y18f{bottom:160.071267pt;}
.y267{bottom:160.071933pt;}
.y221{bottom:160.072600pt;}
.y1b6{bottom:160.073267pt;}
.ydd{bottom:160.073667pt;}
.y242{bottom:160.074067pt;}
.y24e{bottom:160.074200pt;}
.y1ce{bottom:160.176467pt;}
.y8c{bottom:163.728600pt;}
.yb8{bottom:163.738333pt;}
.y125{bottom:163.739933pt;}
.y27d{bottom:163.751667pt;}
.y2e0{bottom:166.073133pt;}
.y20{bottom:167.700933pt;}
.y1ea{bottom:175.384600pt;}
.y70{bottom:175.384733pt;}
.y44{bottom:175.386200pt;}
.y14b{bottom:175.390600pt;}
.y169{bottom:175.393400pt;}
.yff{bottom:175.399933pt;}
.y29f{bottom:175.402067pt;}
.y18e{bottom:175.405267pt;}
.y266{bottom:175.405933pt;}
.y220{bottom:175.406600pt;}
.y24d{bottom:175.406733pt;}
.ydc{bottom:175.407667pt;}
.y241{bottom:175.408067pt;}
.y8b{bottom:176.394600pt;}
.yb7{bottom:176.405533pt;}
.y27c{bottom:176.418867pt;}
.y2df{bottom:180.073133pt;}
.y1f{bottom:181.033867pt;}
.y8a{bottom:189.060600pt;}
.yb6{bottom:189.072733pt;}
.y27b{bottom:189.086067pt;}
.y1e9{bottom:190.718600pt;}
.y6f{bottom:190.718733pt;}
.y43{bottom:190.720200pt;}
.y1fb{bottom:190.723267pt;}
.y14a{bottom:190.724600pt;}
.y168{bottom:190.727400pt;}
.yfe{bottom:190.733933pt;}
.y29e{bottom:190.736067pt;}
.y21f{bottom:190.736600pt;}
.y18d{bottom:190.739267pt;}
.y265{bottom:190.739933pt;}
.y240{bottom:190.740600pt;}
.ydb{bottom:190.741667pt;}
.y2de{bottom:194.073133pt;}
.y1e{bottom:194.366800pt;}
.y89{bottom:201.726600pt;}
.yb5{bottom:201.739933pt;}
.y27a{bottom:201.753267pt;}
.y1e8{bottom:206.052600pt;}
.y6e{bottom:206.052733pt;}
.y42{bottom:206.054200pt;}
.y2b0{bottom:206.055667pt;}
.y23f{bottom:206.055933pt;}
.y1fa{bottom:206.057267pt;}
.y149{bottom:206.058600pt;}
.y264{bottom:206.059267pt;}
.y167{bottom:206.061400pt;}
.yfd{bottom:206.067933pt;}
.y1cd{bottom:206.069933pt;}
.y29d{bottom:206.070067pt;}
.y21e{bottom:206.070600pt;}
.y24c{bottom:206.071800pt;}
.y18c{bottom:206.073267pt;}
.yda{bottom:206.075667pt;}
.y22{bottom:207.701000pt;}
.y2dd{bottom:208.073133pt;}
.y1d{bottom:213.033667pt;}
.yb4{bottom:214.407133pt;}
.y1e7{bottom:221.386600pt;}
.y6d{bottom:221.386733pt;}
.y41{bottom:221.388200pt;}
.y2af{bottom:221.389667pt;}
.y23e{bottom:221.389933pt;}
.y1f9{bottom:221.391267pt;}
.y148{bottom:221.392600pt;}
.y263{bottom:221.393267pt;}
.y124{bottom:221.394600pt;}
.y166{bottom:221.395400pt;}
.yfc{bottom:221.401933pt;}
.y1cc{bottom:221.403933pt;}
.y29c{bottom:221.404067pt;}
.y24b{bottom:221.404333pt;}
.y21d{bottom:221.404600pt;}
.y18b{bottom:221.407267pt;}
.yd9{bottom:221.409667pt;}
.y2dc{bottom:222.073133pt;}
.y1c{bottom:226.366600pt;}
.y21{bottom:226.367867pt;}
.yb3{bottom:227.072200pt;}
.y2db{bottom:236.073133pt;}
.y1e6{bottom:236.720600pt;}
.y6c{bottom:236.720733pt;}
.y40{bottom:236.722200pt;}
.y2ae{bottom:236.723667pt;}
.y23d{bottom:236.723933pt;}
.y1f8{bottom:236.725267pt;}
.y147{bottom:236.726600pt;}
.y262{bottom:236.727267pt;}
.y123{bottom:236.728600pt;}
.y165{bottom:236.729400pt;}
.yfb{bottom:236.735933pt;}
.y24a{bottom:236.736867pt;}
.y1cb{bottom:236.737933pt;}
.y29b{bottom:236.738067pt;}
.y21c{bottom:236.738600pt;}
.y18a{bottom:236.741267pt;}
.yb2{bottom:239.739400pt;}
.y1b{bottom:248.659933pt;}
.y2da{bottom:250.073133pt;}
.y1e5{bottom:252.054600pt;}
.y6b{bottom:252.054733pt;}
.y3f{bottom:252.056200pt;}
.y2ad{bottom:252.057667pt;}
.y23c{bottom:252.057933pt;}
.y1f7{bottom:252.059267pt;}
.y146{bottom:252.060600pt;}
.y261{bottom:252.061267pt;}
.y122{bottom:252.062600pt;}
.y164{bottom:252.063400pt;}
.y88{bottom:252.066067pt;}
.y249{bottom:252.069400pt;}
.yfa{bottom:252.069933pt;}
.y1ca{bottom:252.071933pt;}
.y29a{bottom:252.072067pt;}
.y21b{bottom:252.072600pt;}
.yd8{bottom:252.076200pt;}
.yb1{bottom:252.403933pt;}
.y189{bottom:259.741533pt;}
.y2d9{bottom:264.073133pt;}
.yb0{bottom:265.071133pt;}
.y1e4{bottom:267.388600pt;}
.y6a{bottom:267.388733pt;}
.y3e{bottom:267.390200pt;}
.y2ac{bottom:267.391667pt;}
.y23b{bottom:267.391933pt;}
.y1f6{bottom:267.393267pt;}
.y145{bottom:267.394600pt;}
.y260{bottom:267.395267pt;}
.y121{bottom:267.396600pt;}
.y163{bottom:267.397400pt;}
.y278{bottom:267.399267pt;}
.y87{bottom:267.400067pt;}
.y248{bottom:267.401933pt;}
.yf9{bottom:267.403933pt;}
.y1c9{bottom:267.405933pt;}
.y299{bottom:267.406067pt;}
.y21a{bottom:267.406600pt;}
.yd7{bottom:267.410200pt;}
.y279{bottom:272.246600pt;}
.yaf{bottom:277.738333pt;}
.y2d8{bottom:278.073133pt;}
.y1e3{bottom:282.722600pt;}
.y69{bottom:282.722733pt;}
.y3d{bottom:282.724200pt;}
.y2ab{bottom:282.725667pt;}
.y23a{bottom:282.725933pt;}
.y1f5{bottom:282.727267pt;}
.y144{bottom:282.728600pt;}
.y25f{bottom:282.729267pt;}
.y120{bottom:282.730600pt;}
.y162{bottom:282.731400pt;}
.y277{bottom:282.733267pt;}
.y86{bottom:282.734067pt;}
.y247{bottom:282.734467pt;}
.yf8{bottom:282.737933pt;}
.y1c8{bottom:282.739933pt;}
.y298{bottom:282.740067pt;}
.yd6{bottom:282.744200pt;}
.y15{bottom:287.886600pt;}
.yae{bottom:290.405533pt;}
.y2d7{bottom:292.073267pt;}
.y1e2{bottom:298.056600pt;}
.y68{bottom:298.056733pt;}
.y3c{bottom:298.058200pt;}
.y2aa{bottom:298.059667pt;}
.y239{bottom:298.059933pt;}
.y1f4{bottom:298.061267pt;}
.y143{bottom:298.062600pt;}
.y25e{bottom:298.063267pt;}
.y11f{bottom:298.064600pt;}
.y161{bottom:298.065400pt;}
.y246{bottom:298.067000pt;}
.y276{bottom:298.067267pt;}
.y85{bottom:298.068067pt;}
.yf7{bottom:298.071933pt;}
.y297{bottom:298.072600pt;}
.y188{bottom:298.074333pt;}
.yd5{bottom:298.078200pt;}
.yad{bottom:303.072733pt;}
.y2d6{bottom:306.073267pt;}
.y14{bottom:306.554400pt;}
.y1e1{bottom:313.390600pt;}
.y67{bottom:313.390733pt;}
.y3b{bottom:313.392200pt;}
.y2a9{bottom:313.393667pt;}
.y238{bottom:313.393933pt;}
.y1f3{bottom:313.395267pt;}
.y142{bottom:313.396600pt;}
.y25d{bottom:313.397267pt;}
.y11e{bottom:313.398600pt;}
.y160{bottom:313.399400pt;}
.y245{bottom:313.399533pt;}
.y275{bottom:313.401267pt;}
.y84{bottom:313.402067pt;}
.y296{bottom:313.405133pt;}
.yf6{bottom:313.405933pt;}
.y187{bottom:313.406867pt;}
.yd4{bottom:313.410733pt;}
.yac{bottom:315.739933pt;}
.y13{bottom:319.887333pt;}
.y2d5{bottom:320.073267pt;}
.y1e0{bottom:328.724600pt;}
.y66{bottom:328.724733pt;}
.y3a{bottom:328.726200pt;}
.y237{bottom:328.727933pt;}
.y1f2{bottom:328.729267pt;}
.y141{bottom:328.730600pt;}
.y25c{bottom:328.731267pt;}
.y244{bottom:328.732067pt;}
.y11d{bottom:328.732600pt;}
.y15f{bottom:328.733400pt;}
.y274{bottom:328.735267pt;}
.y83{bottom:328.736067pt;}
.y295{bottom:328.737667pt;}
.yf5{bottom:328.739267pt;}
.y186{bottom:328.739400pt;}
.y1ac{bottom:328.739933pt;}
.yd3{bottom:328.743267pt;}
.y12{bottom:333.220267pt;}
.y2d4{bottom:334.073267pt;}
.y1df{bottom:344.058600pt;}
.y65{bottom:344.058733pt;}
.y39{bottom:344.060200pt;}
.y236{bottom:344.061933pt;}
.y1f1{bottom:344.063267pt;}
.y140{bottom:344.064600pt;}
.y25b{bottom:344.065267pt;}
.y1ab{bottom:344.066067pt;}
.y11c{bottom:344.066600pt;}
.y219{bottom:344.067267pt;}
.y15e{bottom:344.067400pt;}
.y273{bottom:344.069267pt;}
.y82{bottom:344.070067pt;}
.y294{bottom:344.070200pt;}
.y185{bottom:344.071933pt;}
.yf4{bottom:344.073267pt;}
.yd2{bottom:344.075800pt;}
.y11{bottom:346.553200pt;}
.y2d3{bottom:348.073267pt;}
.y1b5{bottom:351.726467pt;}
.y1de{bottom:359.392600pt;}
.y64{bottom:359.392733pt;}
.y38{bottom:359.394200pt;}
.y235{bottom:359.395933pt;}
.y206{bottom:359.397133pt;}
.y1f0{bottom:359.397267pt;}
.y13f{bottom:359.398600pt;}
.y25a{bottom:359.399267pt;}
.y11b{bottom:359.400600pt;}
.y218{bottom:359.401267pt;}
.y15d{bottom:359.401400pt;}
.y293{bottom:359.402733pt;}
.y272{bottom:359.403267pt;}
.y81{bottom:359.404067pt;}
.y184{bottom:359.404467pt;}
.yab{bottom:359.405933pt;}
.yd1{bottom:359.408333pt;}
.y10{bottom:359.886133pt;}
.y2d2{bottom:362.073267pt;}
.y1dd{bottom:374.726600pt;}
.y63{bottom:374.726733pt;}
.y37{bottom:374.728200pt;}
.y205{bottom:374.729667pt;}
.y234{bottom:374.729933pt;}
.y1aa{bottom:374.731133pt;}
.yf2{bottom:374.731267pt;}
.yaa{bottom:374.732067pt;}
.y13e{bottom:374.732600pt;}
.y259{bottom:374.733267pt;}
.y11a{bottom:374.734600pt;}
.y217{bottom:374.735267pt;}
.y15c{bottom:374.735400pt;}
.y183{bottom:374.737000pt;}
.y271{bottom:374.737267pt;}
.y80{bottom:374.738067pt;}
.yd0{bottom:374.740867pt;}
.y2d1{bottom:376.073267pt;}
.yf3{bottom:379.579933pt;}
.yf{bottom:386.553267pt;}
.y62{bottom:390.059267pt;}
.y1dc{bottom:390.060600pt;}
.y7b{bottom:390.060733pt;}
.y36{bottom:390.062200pt;}
.y1a9{bottom:390.063667pt;}
.y233{bottom:390.063933pt;}
.ya9{bottom:390.064600pt;}
.yf1{bottom:390.065267pt;}
.y13d{bottom:390.066600pt;}
.y258{bottom:390.067267pt;}
.y292{bottom:390.067800pt;}
.y15b{bottom:390.067933pt;}
.y119{bottom:390.068600pt;}
.y216{bottom:390.069267pt;}
.y182{bottom:390.069533pt;}
.y7f{bottom:390.070600pt;}
.y270{bottom:390.071267pt;}
.y2d0{bottom:390.073267pt;}
.ycf{bottom:390.073400pt;}
.y2cf{bottom:404.073267pt;}
.y61{bottom:405.393267pt;}
.y1db{bottom:405.394600pt;}
.y7a{bottom:405.394733pt;}
.y35{bottom:405.396200pt;}
.y232{bottom:405.397933pt;}
.ya8{bottom:405.398600pt;}
.yf0{bottom:405.399267pt;}
.y13c{bottom:405.400600pt;}
.y257{bottom:405.401267pt;}
.y291{bottom:405.401800pt;}
.y15a{bottom:405.401933pt;}
.y118{bottom:405.402600pt;}
.y215{bottom:405.403267pt;}
.y181{bottom:405.403533pt;}
.y7e{bottom:405.404600pt;}
.y26f{bottom:405.405267pt;}
.yce{bottom:405.407400pt;}
.y2ce{bottom:418.073267pt;}
.ye{bottom:418.554200pt;}
.y60{bottom:420.727267pt;}
.y1da{bottom:420.728600pt;}
.y1a8{bottom:420.728733pt;}
.y34{bottom:420.730200pt;}
.y231{bottom:420.731933pt;}
.ya7{bottom:420.732600pt;}
.yef{bottom:420.733267pt;}
.y13b{bottom:420.734600pt;}
.y256{bottom:420.735267pt;}
.y290{bottom:420.735800pt;}
.y159{bottom:420.735933pt;}
.y180{bottom:420.736067pt;}
.y117{bottom:420.736600pt;}
.y214{bottom:420.737267pt;}
.y7d{bottom:420.738600pt;}
.y26e{bottom:420.739267pt;}
.ycd{bottom:420.739933pt;}
.y2cd{bottom:432.073267pt;}
.y5f{bottom:436.061267pt;}
.y1d9{bottom:436.062600pt;}
.y1a7{bottom:436.062733pt;}
.y33{bottom:436.064200pt;}
.y230{bottom:436.065933pt;}
.ya6{bottom:436.066600pt;}
.yee{bottom:436.067267pt;}
.y13a{bottom:436.068600pt;}
.y255{bottom:436.069267pt;}
.y28f{bottom:436.069800pt;}
.y158{bottom:436.069933pt;}
.y17f{bottom:436.070067pt;}
.y116{bottom:436.070600pt;}
.y213{bottom:436.071267pt;}
.y7c{bottom:436.072600pt;}
.y26d{bottom:436.073267pt;}
.yd{bottom:437.221067pt;}
.y2cc{bottom:446.073267pt;}
.yc{bottom:450.554000pt;}
.y5e{bottom:451.395267pt;}
.y1d8{bottom:451.396600pt;}
.y1a6{bottom:451.396733pt;}
.y32{bottom:451.398200pt;}
.y22f{bottom:451.399933pt;}
.ya5{bottom:451.400600pt;}
.yed{bottom:451.401267pt;}
.y139{bottom:451.402600pt;}
.y254{bottom:451.403267pt;}
.y28e{bottom:451.403800pt;}
.y157{bottom:451.403933pt;}
.y17e{bottom:451.404067pt;}
.y115{bottom:451.404600pt;}
.y212{bottom:451.405267pt;}
.ycc{bottom:451.406600pt;}
.y2cb{bottom:460.073267pt;}
.yb{bottom:463.886933pt;}
.y5d{bottom:466.729267pt;}
.y1d7{bottom:466.730600pt;}
.y1a5{bottom:466.730733pt;}
.y31{bottom:466.732200pt;}
.y22e{bottom:466.733933pt;}
.ya4{bottom:466.734600pt;}
.yec{bottom:466.735267pt;}
.y138{bottom:466.736600pt;}
.yca{bottom:466.737267pt;}
.y28d{bottom:466.737800pt;}
.y156{bottom:466.737933pt;}
.y17d{bottom:466.738067pt;}
.y114{bottom:466.738600pt;}
.y211{bottom:466.739267pt;}
.ycb{bottom:471.579933pt;}
.y2ca{bottom:474.073267pt;}
.ya{bottom:477.219867pt;}
.y5c{bottom:482.063267pt;}
.y1d6{bottom:482.064600pt;}
.y1a4{bottom:482.064733pt;}
.y30{bottom:482.066200pt;}
.y22d{bottom:482.067933pt;}
.ya3{bottom:482.068600pt;}
.yeb{bottom:482.069267pt;}
.y137{bottom:482.070600pt;}
.yc9{bottom:482.071267pt;}
.y155{bottom:482.071933pt;}
.y17c{bottom:482.072067pt;}
.y113{bottom:482.072600pt;}
.y2c9{bottom:488.073267pt;}
.y9{bottom:490.552800pt;}
.y5b{bottom:497.397267pt;}
.y112{bottom:497.398600pt;}
.y1a3{bottom:497.398733pt;}
.y2f{bottom:497.400200pt;}
.y22c{bottom:497.401933pt;}
.ya2{bottom:497.402600pt;}
.yea{bottom:497.403267pt;}
.y28c{bottom:497.404333pt;}
.y136{bottom:497.404600pt;}
.yc8{bottom:497.405267pt;}
.y154{bottom:497.405933pt;}
.y17b{bottom:497.406067pt;}
.y1c7{bottom:497.406600pt;}
.y2c8{bottom:502.073267pt;}
.y5a{bottom:512.731267pt;}
.y111{bottom:512.732600pt;}
.y1a2{bottom:512.732733pt;}
.y2e{bottom:512.734200pt;}
.y1c6{bottom:512.735267pt;}
.y22b{bottom:512.735933pt;}
.ya1{bottom:512.736600pt;}
.ye9{bottom:512.737267pt;}
.y28b{bottom:512.738333pt;}
.y135{bottom:512.738600pt;}
.yc7{bottom:512.739267pt;}
.y17a{bottom:512.740067pt;}
.y2c7{bottom:516.073267pt;}
.y8{bottom:517.219933pt;}
.y59{bottom:528.065267pt;}
.y110{bottom:528.066600pt;}
.y1a1{bottom:528.066733pt;}
.y2d{bottom:528.068200pt;}
.y1c5{bottom:528.069267pt;}
.y22a{bottom:528.069933pt;}
.ya0{bottom:528.070600pt;}
.ye8{bottom:528.071267pt;}
.y28a{bottom:528.072333pt;}
.y134{bottom:528.072600pt;}
.yc6{bottom:528.073267pt;}
.y179{bottom:528.074067pt;}
.y2c6{bottom:530.073267pt;}
.y58{bottom:543.399267pt;}
.y10f{bottom:543.400600pt;}
.y1a0{bottom:543.400733pt;}
.y2c{bottom:543.402200pt;}
.y1c4{bottom:543.403267pt;}
.y133{bottom:543.403933pt;}
.y9f{bottom:543.404600pt;}
.ye7{bottom:543.405267pt;}
.yc4{bottom:543.405933pt;}
.y289{bottom:543.406333pt;}
.y178{bottom:543.408067pt;}
.y2c5{bottom:544.073267pt;}
.yc5{bottom:548.246600pt;}
.y2c4{bottom:558.073267pt;}
.y57{bottom:558.733267pt;}
.y10e{bottom:558.734600pt;}
.y19f{bottom:558.734733pt;}
.y2b{bottom:558.736200pt;}
.y1c3{bottom:558.737267pt;}
.y132{bottom:558.737933pt;}
.y9e{bottom:558.738600pt;}
.ye6{bottom:558.739267pt;}
.yc3{bottom:558.739933pt;}
.y177{bottom:558.742067pt;}
.y288{bottom:566.406600pt;}
.y2c3{bottom:572.073267pt;}
.y56{bottom:574.067267pt;}
.y10d{bottom:574.068600pt;}
.y19e{bottom:574.068733pt;}
.y2a{bottom:574.070200pt;}
.y1c2{bottom:574.071267pt;}
.y131{bottom:574.071933pt;}
.y9d{bottom:574.072600pt;}
.ye5{bottom:574.073267pt;}
.y176{bottom:574.076067pt;}
.y2c2{bottom:586.073267pt;}
.y55{bottom:589.401267pt;}
.y10c{bottom:589.402600pt;}
.y19d{bottom:589.402733pt;}
.y29{bottom:589.404200pt;}
.y9c{bottom:589.404867pt;}
.y1c1{bottom:589.405267pt;}
.y130{bottom:589.405933pt;}
.y175{bottom:589.410067pt;}
.y2c1{bottom:600.073267pt;}
.y7{bottom:600.259400pt;}
.y54{bottom:604.735267pt;}
.y10b{bottom:604.736600pt;}
.y19c{bottom:604.736733pt;}
.y28{bottom:604.738200pt;}
.y9b{bottom:604.738867pt;}
.y1c0{bottom:604.739267pt;}
.y174{bottom:604.744067pt;}
.y6{bottom:612.926600pt;}
.y2c0{bottom:614.073267pt;}
.y53{bottom:620.069267pt;}
.y10a{bottom:620.070600pt;}
.y19b{bottom:620.070733pt;}
.y27{bottom:620.072200pt;}
.y9a{bottom:620.072867pt;}
.y1bf{bottom:620.073267pt;}
.y173{bottom:620.076600pt;}
.y2bf{bottom:628.073267pt;}
.y5{bottom:629.366600pt;}
.y52{bottom:635.403267pt;}
.y109{bottom:635.404600pt;}
.y19a{bottom:635.404733pt;}
.y26{bottom:635.406200pt;}
.y99{bottom:635.406867pt;}
.y172{bottom:635.409133pt;}
.y2be{bottom:642.073267pt;}
.y210{bottom:643.072467pt;}
.y51{bottom:650.737267pt;}
.y108{bottom:650.738600pt;}
.y199{bottom:650.738733pt;}
.y25{bottom:650.740200pt;}
.y171{bottom:650.741667pt;}
.y2bd{bottom:656.073267pt;}
.y98{bottom:658.407133pt;}
.y4{bottom:666.033267pt;}
.y50{bottom:666.071267pt;}
.y107{bottom:666.072600pt;}
.y198{bottom:666.072733pt;}
.y170{bottom:666.074200pt;}
.y2bc{bottom:670.073267pt;}
.y24{bottom:673.740467pt;}
.y4f{bottom:681.405267pt;}
.y106{bottom:681.406600pt;}
.y16f{bottom:681.406733pt;}
.y2bb{bottom:684.073267pt;}
.y3{bottom:687.366600pt;}
.y4e{bottom:696.739267pt;}
.y97{bottom:696.739933pt;}
.y2ba{bottom:698.073267pt;}
.y2{bottom:708.699933pt;}
.y23{bottom:712.073267pt;}
.y1{bottom:754.033267pt;}
.hf{height:43.818133pt;}
.h2{height:45.525333pt;}
.h1b{height:46.948000pt;}
.h5{height:51.216000pt;}
.h14{height:51.217600pt;}
.h10{height:51.218133pt;}
.he{height:51.219733pt;}
.h13{height:51.220267pt;}
.hd{height:51.226667pt;}
.h8{height:52.032000pt;}
.h6{height:54.061333pt;}
.h7{height:54.922667pt;}
.h20{height:56.906667pt;}
.h21{height:57.812800pt;}
.h1f{height:57.813333pt;}
.h22{height:57.813867pt;}
.h9{height:62.597333pt;}
.h1c{height:62.616000pt;}
.h1a{height:62.625600pt;}
.h1d{height:62.666133pt;}
.hc{height:63.178133pt;}
.h1e{height:63.179733pt;}
.h11{height:63.180800pt;}
.h16{height:63.188800pt;}
.h15{height:63.196800pt;}
.h19{height:63.202133pt;}
.h12{height:63.207467pt;}
.h17{height:63.212800pt;}
.hb{height:63.223467pt;}
.h18{height:63.233600pt;}
.ha{height:63.594667pt;}
.h4{height:68.288000pt;}
.h3{height:91.050667pt;}
.h1{height:795.333333pt;}
.h0{height:795.401573pt;}
.w0{width:517.240907pt;}
.w1{width:517.333333pt;}
.x0{left:0.000000pt;}
.x2{left:43.415213pt;}
.x10{left:58.255480pt;}
.xc{left:62.696147pt;}
.x11{left:68.362413pt;}
.x16{left:82.682413pt;}
.x8{left:83.627813pt;}
.x17{left:102.684813pt;}
.x7{left:107.028213pt;}
.x9{left:110.681280pt;}
.xf{left:119.121880pt;}
.xa{left:127.481080pt;}
.x6{left:131.948613pt;}
.x3{left:187.415213pt;}
.x4{left:234.254813pt;}
.x5{left:238.375213pt;}
.xb{left:271.401013pt;}
.x14{left:288.308547pt;}
.x15{left:301.841880pt;}
.x1{left:366.695213pt;}
.x12{left:382.308547pt;}
.x13{left:403.041880pt;}
.xe{left:404.495213pt;}
.xd{left:470.308547pt;}
}




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