
    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_a9fab0c279dbcbcd6522933b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.123047;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_67ed3012852ea03f8a56460b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.163574;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_05484f391a30570cc86c0955.woff')format("woff");}.ff3{font-family:ff3;line-height:1.145996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3313c036ebeb4367e32f0756.woff')format("woff");}.ff4{font-family:ff4;line-height:1.163574;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b5eb230f45a0b9bbb99af3c2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.123047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fa3c22e6a31fc47491ffbcc9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.163574;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f8de8aa1fd9640f2f8d41f55.woff')format("woff");}.ff7{font-family:ff7;line-height:1.145996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ca85fd17ef17157ffcd60cf4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.145996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ff7d5fc63e440f89b55eda81.woff')format("woff");}.ff9{font-family:ff9;line-height:0.964844;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_67ed3012852ea03f8a56460b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.163574;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_77a7e164986aceea0805b760.woff')format("woff");}.ffb{font-family:ffb;line-height:1.123047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3313c036ebeb4367e32f0756.woff')format("woff");}.ffc{font-family:ffc;line-height:1.163574;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b5eb230f45a0b9bbb99af3c2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.123047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cc23e0847de9ee5d68376784.woff')format("woff");}.ffe{font-family:ffe;line-height:1.149902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_56afbc948432fbfd56acfb0c.woff')format("woff");}.fff{font-family:fff;line-height:1.135742;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_26c296a28cfe5f420fa1d3f0.woff')format("woff");}.ff10{font-family:ff10;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0367a8f516abdd1487d6cc7a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.988770;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;}
.mc{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.ls32{letter-spacing:-2.226000px;}
.ls2f{letter-spacing:-1.638000px;}
.ls2e{letter-spacing:-1.134000px;}
.ls2d{letter-spacing:-1.026000px;}
.lse{letter-spacing:-0.972000px;}
.ls77{letter-spacing:-0.960000px;}
.ls50{letter-spacing:-0.945000px;}
.ls11{letter-spacing:-0.918000px;}
.ls6f{letter-spacing:-0.912000px;}
.ls2c{letter-spacing:-0.864000px;}
.ls51{letter-spacing:-0.855000px;}
.ls1a{letter-spacing:-0.810000px;}
.ls67{letter-spacing:-0.765000px;}
.ls26{letter-spacing:-0.756000px;}
.ls66{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.702000px;}
.ls54{letter-spacing:-0.675000px;}
.ls6c{letter-spacing:-0.672000px;}
.ls16{letter-spacing:-0.648000px;}
.ls52{letter-spacing:-0.630000px;}
.ls2b{letter-spacing:-0.594000px;}
.ls4a{letter-spacing:-0.585000px;}
.ls23{letter-spacing:-0.540000px;}
.ls4c{letter-spacing:-0.495000px;}
.ls15{letter-spacing:-0.486000px;}
.ls36{letter-spacing:-0.480000px;}
.ls53{letter-spacing:-0.450000px;}
.ls27{letter-spacing:-0.432000px;}
.ls55{letter-spacing:-0.405000px;}
.lsf{letter-spacing:-0.378000px;}
.ls49{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.324000px;}
.ls69{letter-spacing:-0.315000px;}
.ls73{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.270000px;}
.ls78{letter-spacing:-0.240000px;}
.ls4d{letter-spacing:-0.225000px;}
.ls24{letter-spacing:-0.216000px;}
.ls6e{letter-spacing:-0.192000px;}
.ls63{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.162000px;}
.ls76{letter-spacing:-0.144000px;}
.ls64{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.108000px;}
.ls70{letter-spacing:-0.096000px;}
.ls4b{letter-spacing:-0.090000px;}
.ls19{letter-spacing:-0.054000px;}
.ls6d{letter-spacing:-0.048000px;}
.ls4f{letter-spacing:-0.045000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000341px;}
.ls5b{letter-spacing:0.045000px;}
.lsa{letter-spacing:0.054000px;}
.ls59{letter-spacing:0.090000px;}
.ls6a{letter-spacing:0.096000px;}
.ls9{letter-spacing:0.108000px;}
.ls43{letter-spacing:0.113400px;}
.ls60{letter-spacing:0.135000px;}
.ls8{letter-spacing:0.162000px;}
.ls56{letter-spacing:0.180000px;}
.ls74{letter-spacing:0.192000px;}
.lsd{letter-spacing:0.216000px;}
.ls4e{letter-spacing:0.225000px;}
.ls72{letter-spacing:0.240000px;}
.ls18{letter-spacing:0.270000px;}
.ls37{letter-spacing:0.288000px;}
.ls65{letter-spacing:0.315000px;}
.ls7{letter-spacing:0.324000px;}
.ls6b{letter-spacing:0.336000px;}
.ls5a{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.378000px;}
.ls71{letter-spacing:0.384000px;}
.ls57{letter-spacing:0.405000px;}
.ls1b{letter-spacing:0.432000px;}
.ls62{letter-spacing:0.450000px;}
.ls20{letter-spacing:0.486000px;}
.ls58{letter-spacing:0.495000px;}
.ls1d{letter-spacing:0.540000px;}
.ls38{letter-spacing:0.576000px;}
.ls45{letter-spacing:0.585000px;}
.ls5{letter-spacing:0.594000px;}
.ls48{letter-spacing:0.630000px;}
.ls13{letter-spacing:0.648000px;}
.ls68{letter-spacing:0.675000px;}
.ls3{letter-spacing:0.702000px;}
.ls5d{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.756000px;}
.ls61{letter-spacing:0.765000px;}
.ls44{letter-spacing:0.766800px;}
.ls33{letter-spacing:0.768000px;}
.ls6{letter-spacing:0.810000px;}
.ls47{letter-spacing:0.855000px;}
.ls22{letter-spacing:0.864000px;}
.ls46{letter-spacing:0.900000px;}
.lsb{letter-spacing:0.918000px;}
.ls5f{letter-spacing:0.945000px;}
.ls75{letter-spacing:0.960000px;}
.ls1f{letter-spacing:0.972000px;}
.ls28{letter-spacing:1.026000px;}
.ls5e{letter-spacing:1.035000px;}
.ls21{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.242000px;}
.ls41{letter-spacing:1.296000px;}
.ls42{letter-spacing:1.350000px;}
.ls1c{letter-spacing:1.458000px;}
.lsc{letter-spacing:1.906200px;}
.ls5c{letter-spacing:2.070000px;}
.ls0{letter-spacing:6.595992px;}
.ls34{letter-spacing:187.236000px;}
.ls3a{letter-spacing:264.432000px;}
.ls3d{letter-spacing:264.726000px;}
.ls39{letter-spacing:264.894000px;}
.ls3c{letter-spacing:269.850000px;}
.ls3e{letter-spacing:273.126000px;}
.ls40{letter-spacing:273.168000px;}
.ls3f{letter-spacing:273.588000px;}
.ls35{letter-spacing:312.228000px;}
.ls30{letter-spacing:313.026000px;}
.ls31{letter-spacing:313.068000px;}
.ls29{letter-spacing:397.278000px;}
.ls3b{letter-spacing:1011.570000px;}
.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;}
}
.ws7e{word-spacing:-283.794000px;}
.ws4{word-spacing:-23.904000px;}
.ws9{word-spacing:-14.256000px;}
.ws8{word-spacing:-14.040000px;}
.wsb{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.446000px;}
.wsc{word-spacing:-13.122000px;}
.ws7{word-spacing:-13.068000px;}
.ws9d{word-spacing:-13.005000px;}
.wsa{word-spacing:-12.798000px;}
.ws3{word-spacing:-11.952000px;}
.wsb9{word-spacing:-11.664000px;}
.wsb7{word-spacing:-11.610000px;}
.wsb3{word-spacing:-11.475000px;}
.ws97{word-spacing:-11.340000px;}
.ws9f{word-spacing:-11.205000px;}
.ws9e{word-spacing:-11.070000px;}
.ws82{word-spacing:-10.935000px;}
.ws83{word-spacing:-10.890000px;}
.wsb2{word-spacing:-10.845000px;}
.wsb8{word-spacing:-10.800000px;}
.ws99{word-spacing:-10.755000px;}
.ws96{word-spacing:-10.710000px;}
.wsb4{word-spacing:-10.665000px;}
.ws98{word-spacing:-10.575000px;}
.ws9b{word-spacing:-10.530000px;}
.wsb0{word-spacing:-10.395000px;}
.ws9a{word-spacing:-10.215000px;}
.ws60{word-spacing:-10.206000px;}
.wsb1{word-spacing:-10.170000px;}
.ws9c{word-spacing:-10.125000px;}
.ws85{word-spacing:-10.080000px;}
.ws84{word-spacing:-9.990000px;}
.ws46{word-spacing:-8.820000px;}
.ws52{word-spacing:-8.232000px;}
.ws1{word-spacing:-7.839018px;}
.ws2{word-spacing:-6.968016px;}
.ws6{word-spacing:-6.595992px;}
.ws2a{word-spacing:-1.458000px;}
.ws2b{word-spacing:-1.350000px;}
.ws21{word-spacing:-1.296000px;}
.ws11{word-spacing:-1.242000px;}
.ws59{word-spacing:-1.200000px;}
.ws81{word-spacing:-1.134000px;}
.wsb6{word-spacing:-1.125000px;}
.ws25{word-spacing:-1.080000px;}
.wsac{word-spacing:-1.035000px;}
.ws30{word-spacing:-1.026000px;}
.ws31{word-spacing:-0.972000px;}
.wsc8{word-spacing:-0.960000px;}
.wsad{word-spacing:-0.945000px;}
.ws1f{word-spacing:-0.918000px;}
.ws91{word-spacing:-0.900000px;}
.ws3d{word-spacing:-0.864000px;}
.ws92{word-spacing:-0.855000px;}
.ws2f{word-spacing:-0.810000px;}
.ws5b{word-spacing:-0.768000px;}
.wsae{word-spacing:-0.765000px;}
.wsf{word-spacing:-0.756000px;}
.wsa4{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.702000px;}
.wsab{word-spacing:-0.675000px;}
.ws17{word-spacing:-0.648000px;}
.ws94{word-spacing:-0.630000px;}
.ws15{word-spacing:-0.594000px;}
.ws89{word-spacing:-0.585000px;}
.ws6c{word-spacing:-0.576000px;}
.ws2d{word-spacing:-0.540000px;}
.wsa1{word-spacing:-0.495000px;}
.ws33{word-spacing:-0.486000px;}
.ws27{word-spacing:-0.432000px;}
.wsa5{word-spacing:-0.405000px;}
.wsc2{word-spacing:-0.384000px;}
.ws2c{word-spacing:-0.378000px;}
.wsa2{word-spacing:-0.360000px;}
.wsbf{word-spacing:-0.336000px;}
.ws1a{word-spacing:-0.324000px;}
.wsa7{word-spacing:-0.315000px;}
.ws5c{word-spacing:-0.288000px;}
.ws23{word-spacing:-0.270000px;}
.wsc3{word-spacing:-0.240000px;}
.ws87{word-spacing:-0.225000px;}
.ws22{word-spacing:-0.216000px;}
.wsc6{word-spacing:-0.192000px;}
.wsa0{word-spacing:-0.180000px;}
.ws1b{word-spacing:-0.162000px;}
.wsba{word-spacing:-0.135000px;}
.ws1c{word-spacing:-0.108000px;}
.wsbd{word-spacing:-0.096000px;}
.wsa8{word-spacing:-0.090000px;}
.ws10{word-spacing:-0.054000px;}
.wsa9{word-spacing:-0.045000px;}
.ws5{word-spacing:0.000000px;}
.ws95{word-spacing:0.045000px;}
.wsbc{word-spacing:0.048000px;}
.ws32{word-spacing:0.054000px;}
.ws8a{word-spacing:0.090000px;}
.wsc1{word-spacing:0.096000px;}
.ws16{word-spacing:0.108000px;}
.wsa6{word-spacing:0.135000px;}
.wsc5{word-spacing:0.144000px;}
.ws18{word-spacing:0.162000px;}
.wsa3{word-spacing:0.180000px;}
.wsbe{word-spacing:0.192000px;}
.ws29{word-spacing:0.216000px;}
.ws8c{word-spacing:0.225000px;}
.wsc9{word-spacing:0.240000px;}
.ws13{word-spacing:0.270000px;}
.wsc4{word-spacing:0.288000px;}
.wsb5{word-spacing:0.315000px;}
.ws24{word-spacing:0.324000px;}
.ws86{word-spacing:0.360000px;}
.ws12{word-spacing:0.378000px;}
.ws90{word-spacing:0.405000px;}
.ws2e{word-spacing:0.432000px;}
.ws8e{word-spacing:0.450000px;}
.ws5a{word-spacing:0.480000px;}
.ws1d{word-spacing:0.486000px;}
.ws8b{word-spacing:0.495000px;}
.ws5d{word-spacing:0.528000px;}
.ws28{word-spacing:0.540000px;}
.ws88{word-spacing:0.585000px;}
.ws3e{word-spacing:0.594000px;}
.ws8d{word-spacing:0.630000px;}
.ws20{word-spacing:0.648000px;}
.ws8f{word-spacing:0.675000px;}
.ws1e{word-spacing:0.702000px;}
.wsaa{word-spacing:0.720000px;}
.ws19{word-spacing:0.756000px;}
.wsaf{word-spacing:0.765000px;}
.ws26{word-spacing:0.810000px;}
.ws93{word-spacing:0.855000px;}
.ws3f{word-spacing:0.864000px;}
.wsc0{word-spacing:0.912000px;}
.ws14{word-spacing:0.918000px;}
.wsc7{word-spacing:0.960000px;}
.wse{word-spacing:0.972000px;}
.ws40{word-spacing:1.026000px;}
.ws41{word-spacing:1.134000px;}
.wsbb{word-spacing:1.485000px;}
.ws5e{word-spacing:134.563800px;}
.ws6e{word-spacing:139.519800px;}
.ws7a{word-spacing:143.257800px;}
.ws51{word-spacing:182.317800px;}
.ws45{word-spacing:182.624400px;}
.ws5f{word-spacing:201.070800px;}
.ws6f{word-spacing:206.026800px;}
.ws7b{word-spacing:209.764800px;}
.ws43{word-spacing:234.276000px;}
.ws44{word-spacing:247.892400px;}
.ws50{word-spacing:248.866800px;}
.ws6a{word-spacing:249.564000px;}
.ws78{word-spacing:254.520000px;}
.ws69{word-spacing:254.688000px;}
.ws71{word-spacing:259.644000px;}
.ws7d{word-spacing:263.382000px;}
.ws54{word-spacing:278.040000px;}
.ws48{word-spacing:278.880000px;}
.ws53{word-spacing:289.674000px;}
.ws4a{word-spacing:290.514000px;}
.ws56{word-spacing:302.442000px;}
.ws4d{word-spacing:302.862000px;}
.ws4c{word-spacing:303.240000px;}
.ws35{word-spacing:363.804000px;}
.ws3c{word-spacing:378.462000px;}
.ws37{word-spacing:387.072000px;}
.ws73{word-spacing:440.916000px;}
.ws7c{word-spacing:447.846000px;}
.ws34{word-spacing:460.601400px;}
.ws74{word-spacing:461.496000px;}
.ws70{word-spacing:466.914000px;}
.ws77{word-spacing:468.157200px;}
.ws47{word-spacing:468.917400px;}
.ws38{word-spacing:473.424000px;}
.ws64{word-spacing:478.128000px;}
.ws55{word-spacing:484.050000px;}
.ws76{word-spacing:488.825400px;}
.ws7f{word-spacing:490.896000px;}
.ws72{word-spacing:491.400000px;}
.ws80{word-spacing:491.752800px;}
.ws65{word-spacing:498.708000px;}
.ws62{word-spacing:504.126000px;}
.ws68{word-spacing:505.369200px;}
.ws79{word-spacing:508.124400px;}
.ws75{word-spacing:509.964000px;}
.ws3b{word-spacing:514.634400px;}
.ws39{word-spacing:516.474000px;}
.ws49{word-spacing:521.220000px;}
.ws4e{word-spacing:524.790000px;}
.ws4f{word-spacing:525.646800px;}
.ws67{word-spacing:526.037400px;}
.ws57{word-spacing:527.100000px;}
.ws58{word-spacing:527.998800px;}
.ws63{word-spacing:528.612000px;}
.ws66{word-spacing:547.176000px;}
.ws36{word-spacing:558.390000px;}
.ws6b{word-spacing:560.086800px;}
.ws3a{word-spacing:564.425400px;}
.ws4b{word-spacing:566.706000px;}
.ws61{word-spacing:589.092000px;}
.ws6d{word-spacing:971.460000px;}
.ws42{word-spacing:1025.220000px;}
._9{margin-left:-3216.384000px;}
._4f{margin-left:-273.588000px;}
._42{margin-left:-264.726000px;}
._56{margin-left:-13.408200px;}
._5{margin-left:-10.640520px;}
._8{margin-left:-9.590400px;}
._7{margin-left:-8.048260px;}
._3{margin-left:-6.928688px;}
._1{margin-left:-4.665600px;}
._6{margin-left:-3.538730px;}
._2{margin-left:-2.525400px;}
._4{margin-left:-1.174270px;}
._0{width:1.090800px;}
._a{width:2.122200px;}
._b{width:3.839400px;}
._60{width:8.710270px;}
._59{width:18.900000px;}
._58{width:22.950000px;}
._5b{width:25.065000px;}
._5a{width:26.190000px;}
._5c{width:28.485000px;}
._22{width:32.688000px;}
._5f{width:34.560000px;}
._21{width:35.856000px;}
._57{width:47.880000px;}
._5e{width:52.368000px;}
._5d{width:55.776000px;}
._34{width:57.888000px;}
._2b{width:167.748000px;}
._38{width:177.618000px;}
._3e{width:181.944000px;}
._47{width:186.312000px;}
._2a{width:187.782000px;}
._27{width:190.302000px;}
._33{width:210.756000px;}
._4e{width:219.786000px;}
._26{width:225.564000px;}
._18{width:227.383200px;}
._37{width:239.778000px;}
._11{width:245.364000px;}
._46{width:248.472000px;}
._1c{width:253.680000px;}
._2d{width:255.990000px;}
._3a{width:259.350000px;}
._3c{width:264.894000px;}
._4d{width:268.044000px;}
._d{width:269.895670px;}
._4c{width:273.588000px;}
._3b{width:276.066000px;}
._25{width:287.532000px;}
._17{width:288.834000px;}
._2f{width:307.146000px;}
._1b{width:313.446000px;}
._10{width:397.278000px;}
._51{width:432.054000px;}
._4b{width:434.868000px;}
._52{width:452.634000px;}
._41{width:453.936000px;}
._48{width:456.498000px;}
._13{width:457.632000px;}
._54{width:458.682000px;}
._f{width:460.446000px;}
._1e{width:465.948000px;}
._1a{width:468.762000px;}
._2c{width:471.072000px;}
._3f{width:475.566000px;}
._14{width:478.212000px;}
._53{width:479.724000px;}
._50{width:482.160000px;}
._16{width:484.260000px;}
._c{width:486.538730px;}
._30{width:488.838000px;}
._19{width:491.946000px;}
._31{width:494.886000px;}
._49{width:497.532000px;}
._15{width:505.302000px;}
._12{width:507.738000px;}
._e{width:511.476000px;}
._1f{width:513.618000px;}
._1d{width:516.054000px;}
._2e{width:518.364000px;}
._28{width:533.736000px;}
._4a{width:543.018000px;}
._55{width:548.772000px;}
._39{width:553.812000px;}
._40{width:562.086000px;}
._43{width:567.840000px;}
._29{width:579.222000px;}
._20{width:582.666000px;}
._32{width:584.976000px;}
._3d{width:605.052000px;}
._45{width:874.104000px;}
._23{width:936.348000px;}
._44{width:946.386000px;}
._36{width:1009.722000px;}
._24{width:1032.780000px;}
._35{width:1052.730000px;}
.fc9{color:rgb(112,111,111);}
.fc8{color:transparent;}
.fc7{color:rgb(16,64,96);}
.fc5{color:rgb(96,124,180);}
.fc4{color:rgb(76,112,136);}
.fc2{color:rgb(107,189,222);}
.fc6{color:rgb(33,33,33);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:27.984000px;}
.fs7{font-size:31.482000px;}
.fsb{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:73.288800px;}
.fs0{font-size:78.000000px;}
.fsa{font-size:84.000000px;}
.fs9{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:17.007900px;}
.y1{bottom:58.960650px;}
.y20{bottom:78.094500px;}
.ya{bottom:85.801200px;}
.y9{bottom:103.553100px;}
.y35c{bottom:128.551200px;}
.y1ad{bottom:128.555700px;}
.y13c{bottom:128.560200px;}
.y119{bottom:128.564700px;}
.ydd{bottom:128.578200px;}
.y164{bottom:128.591700px;}
.y10d{bottom:128.605200px;}
.yf0{bottom:128.659200px;}
.y89{bottom:128.686200px;}
.y1eb{bottom:128.749200px;}
.y1da{bottom:128.758200px;}
.yb5{bottom:128.875200px;}
.y218{bottom:128.951700px;}
.y33a{bottom:133.467750px;}
.y2dc{bottom:133.471950px;}
.y26c{bottom:135.774150px;}
.y2a4{bottom:137.718150px;}
.y30b{bottom:142.713150px;}
.y1ac{bottom:146.551200px;}
.y13b{bottom:146.555700px;}
.y118{bottom:146.560200px;}
.ydc{bottom:146.573700px;}
.y163{bottom:146.587200px;}
.y10c{bottom:146.600700px;}
.yef{bottom:146.654700px;}
.y88{bottom:146.681700px;}
.y1ea{bottom:146.744700px;}
.y1d9{bottom:146.753700px;}
.yb4{bottom:146.870700px;}
.y217{bottom:146.947200px;}
.y339{bottom:146.967750px;}
.y2db{bottom:146.971950px;}
.y26b{bottom:149.274150px;}
.y2a3{bottom:151.218150px;}
.y30a{bottom:156.213150px;}
.y2da{bottom:160.471950px;}
.y13a{bottom:164.551200px;}
.y117{bottom:164.555700px;}
.ydb{bottom:164.569200px;}
.y162{bottom:164.582700px;}
.y1ab{bottom:164.591700px;}
.y10b{bottom:164.596200px;}
.yee{bottom:164.650200px;}
.y87{bottom:164.677200px;}
.y2a2{bottom:164.718150px;}
.y338{bottom:164.720250px;}
.y1e9{bottom:164.740200px;}
.y1d8{bottom:164.749200px;}
.yb3{bottom:164.866200px;}
.y216{bottom:164.942700px;}
.y26a{bottom:167.026650px;}
.y309{bottom:169.713150px;}
.y2d9{bottom:173.971950px;}
.y2a1{bottom:178.218150px;}
.y337{bottom:178.220250px;}
.y269{bottom:180.526650px;}
.y116{bottom:182.551200px;}
.yda{bottom:182.564700px;}
.y22f{bottom:182.569200px;}
.y161{bottom:182.578200px;}
.y1aa{bottom:182.587200px;}
.y10a{bottom:182.591700px;}
.yed{bottom:182.645700px;}
.y86{bottom:182.672700px;}
.y1e8{bottom:182.735700px;}
.y1d7{bottom:182.744700px;}
.y215{bottom:182.938200px;}
.y308{bottom:183.213150px;}
.y2d8{bottom:187.471950px;}
.y2a0{bottom:191.718150px;}
.y336{bottom:191.720250px;}
.y268{bottom:194.026650px;}
.y307{bottom:196.713150px;}
.y166{bottom:200.551200px;}
.yd9{bottom:200.560200px;}
.y22e{bottom:200.564700px;}
.y160{bottom:200.573700px;}
.y1a9{bottom:200.582700px;}
.y109{bottom:200.587200px;}
.y23b{bottom:200.623200px;}
.y188{bottom:200.641200px;}
.y85{bottom:200.668200px;}
.y1e7{bottom:200.731200px;}
.y1d6{bottom:200.740200px;}
.yb2{bottom:200.870700px;}
.y214{bottom:200.933700px;}
.y2d7{bottom:200.971950px;}
.y335{bottom:205.220250px;}
.y29f{bottom:209.470650px;}
.y267{bottom:211.779150px;}
.y306{bottom:214.465650px;}
.y2d6{bottom:214.471950px;}
.y19{bottom:215.111250px;}
.y165{bottom:218.551200px;}
.yd8{bottom:218.555700px;}
.y115{bottom:218.560200px;}
.y15f{bottom:218.569200px;}
.y1a8{bottom:218.578200px;}
.y108{bottom:218.582700px;}
.y23a{bottom:218.618700px;}
.y187{bottom:218.636700px;}
.yec{bottom:218.650200px;}
.y84{bottom:218.663700px;}
.y1e6{bottom:218.726700px;}
.y1d5{bottom:218.735700px;}
.yb1{bottom:218.866200px;}
.y213{bottom:218.929200px;}
.y29e{bottom:222.970650px;}
.y334{bottom:222.972750px;}
.y266{bottom:225.279150px;}
.y305{bottom:227.965650px;}
.y18{bottom:230.111100px;}
.y2d5{bottom:232.206900px;}
.y29d{bottom:236.470650px;}
.y333{bottom:236.472750px;}
.yd7{bottom:236.551200px;}
.y114{bottom:236.555700px;}
.y15e{bottom:236.564700px;}
.y1a7{bottom:236.573700px;}
.y107{bottom:236.578200px;}
.y239{bottom:236.614200px;}
.y186{bottom:236.632200px;}
.yeb{bottom:236.645700px;}
.y83{bottom:236.659200px;}
.y1e5{bottom:236.722200px;}
.y1d4{bottom:236.731200px;}
.yb0{bottom:236.861700px;}
.y212{bottom:236.924700px;}
.y265{bottom:238.779150px;}
.y304{bottom:241.465650px;}
.y2d4{bottom:245.706900px;}
.y29c{bottom:249.970650px;}
.y332{bottom:249.972750px;}
.y264{bottom:252.279150px;}
.y113{bottom:254.551200px;}
.y139{bottom:254.560200px;}
.y1a6{bottom:254.569200px;}
.y106{bottom:254.573700px;}
.y238{bottom:254.609700px;}
.y185{bottom:254.627700px;}
.yea{bottom:254.641200px;}
.y82{bottom:254.654700px;}
.y1e4{bottom:254.717700px;}
.y1d3{bottom:254.726700px;}
.yaf{bottom:254.857200px;}
.y211{bottom:254.920200px;}
.y303{bottom:254.965650px;}
.y17{bottom:257.867100px;}
.y2d3{bottom:259.206900px;}
.y29b{bottom:263.470650px;}
.y331{bottom:267.725250px;}
.y302{bottom:268.465650px;}
.y263{bottom:270.031650px;}
.y13e{bottom:272.551200px;}
.y138{bottom:272.555700px;}
.y112{bottom:272.560200px;}
.y1a5{bottom:272.564700px;}
.y105{bottom:272.569200px;}
.y22d{bottom:272.605200px;}
.yd6{bottom:272.614200px;}
.y184{bottom:272.623200px;}
.ye9{bottom:272.636700px;}
.y81{bottom:272.650200px;}
.y1e3{bottom:272.713200px;}
.y1d2{bottom:272.722200px;}
.yae{bottom:272.852700px;}
.y210{bottom:272.915700px;}
.y16{bottom:275.867100px;}
.y2d2{bottom:276.959400px;}
.y29a{bottom:276.970650px;}
.y330{bottom:281.225250px;}
.y301{bottom:281.965650px;}
.y262{bottom:283.531650px;}
.y2d1{bottom:290.459400px;}
.y299{bottom:290.470650px;}
.y137{bottom:290.551200px;}
.y111{bottom:290.555700px;}
.y1a4{bottom:290.560200px;}
.y104{bottom:290.564700px;}
.y22c{bottom:290.600700px;}
.yd5{bottom:290.609700px;}
.y183{bottom:290.618700px;}
.ye8{bottom:290.632200px;}
.y80{bottom:290.645700px;}
.y1e2{bottom:290.708700px;}
.y1d1{bottom:290.717700px;}
.yad{bottom:290.848200px;}
.y20f{bottom:290.911200px;}
.y15{bottom:293.867100px;}
.y32f{bottom:294.725250px;}
.y261{bottom:297.031650px;}
.y300{bottom:299.718150px;}
.y2d0{bottom:303.959400px;}
.y298{bottom:308.223150px;}
.y110{bottom:308.551200px;}
.y1a3{bottom:308.555700px;}
.y103{bottom:308.560200px;}
.y22b{bottom:308.596200px;}
.yd4{bottom:308.605200px;}
.y182{bottom:308.614200px;}
.ye7{bottom:308.627700px;}
.y7f{bottom:308.641200px;}
.y1e1{bottom:308.704200px;}
.y1d0{bottom:308.713200px;}
.yac{bottom:308.843700px;}
.y20e{bottom:308.906700px;}
.y260{bottom:310.531650px;}
.y14{bottom:311.867100px;}
.y41{bottom:311.980200px;}
.y32e{bottom:312.477750px;}
.y2ff{bottom:313.218150px;}
.y2cf{bottom:317.459400px;}
.y297{bottom:321.723150px;}
.y32d{bottom:325.977750px;}
.y13d{bottom:326.551200px;}
.y102{bottom:326.555700px;}
.y22a{bottom:326.591700px;}
.yd3{bottom:326.600700px;}
.y10f{bottom:326.609700px;}
.ye6{bottom:326.623200px;}
.y7e{bottom:326.636700px;}
.y1e0{bottom:326.699700px;}
.y1cf{bottom:326.708700px;}
.y2fe{bottom:326.718150px;}
.yab{bottom:326.839200px;}
.y20d{bottom:326.902200px;}
.y25f{bottom:328.284150px;}
.y40{bottom:328.477200px;}
.y13{bottom:329.867100px;}
.y2ce{bottom:330.959400px;}
.y296{bottom:335.223150px;}
.y32c{bottom:339.477750px;}
.y2fd{bottom:340.218150px;}
.y25e{bottom:341.784150px;}
.y2cd{bottom:344.459400px;}
.y101{bottom:344.551200px;}
.y1a2{bottom:344.560200px;}
.y229{bottom:344.587200px;}
.yd2{bottom:344.596200px;}
.y10e{bottom:344.605200px;}
.ye5{bottom:344.618700px;}
.y7d{bottom:344.632200px;}
.y1df{bottom:344.695200px;}
.y1ce{bottom:344.704200px;}
.yaa{bottom:344.834700px;}
.y20c{bottom:344.897700px;}
.y12{bottom:351.863100px;}
.y295{bottom:352.975650px;}
.y32b{bottom:352.977750px;}
.y25d{bottom:355.284150px;}
.y2fc{bottom:357.970650px;}
.y3f{bottom:361.984200px;}
.y2cc{bottom:362.211900px;}
.y373{bottom:362.551200px;}
.y1a1{bottom:362.555700px;}
.y228{bottom:362.582700px;}
.yd1{bottom:362.591700px;}
.ye4{bottom:362.614200px;}
.y7c{bottom:362.627700px;}
.y1de{bottom:362.690700px;}
.y1cd{bottom:362.699700px;}
.ya9{bottom:362.830200px;}
.y20b{bottom:362.893200px;}
.y11{bottom:365.867100px;}
.y294{bottom:366.475650px;}
.y25c{bottom:368.784150px;}
.y32a{bottom:370.730250px;}
.y2fb{bottom:371.470650px;}
.y35b{bottom:371.475900px;}
.y2cb{bottom:375.711900px;}
.y293{bottom:379.975650px;}
.y3e{bottom:379.993200px;}
.y1a0{bottom:380.551200px;}
.y227{bottom:380.578200px;}
.yd0{bottom:380.587200px;}
.ye3{bottom:380.609700px;}
.y7b{bottom:380.623200px;}
.y1dd{bottom:380.686200px;}
.y1cc{bottom:380.695200px;}
.ya8{bottom:380.825700px;}
.y20a{bottom:380.888700px;}
.y25b{bottom:382.284150px;}
.y10{bottom:383.867100px;}
.y5c{bottom:383.984700px;}
.y329{bottom:384.230250px;}
.y35a{bottom:384.975900px;}
.y2ca{bottom:389.211900px;}
.y2fa{bottom:389.223150px;}
.y15d{bottom:392.796900px;}
.y292{bottom:393.475650px;}
.y136{bottom:395.799900px;}
.y181{bottom:395.894400px;}
.y328{bottom:397.730250px;}
.y3d{bottom:397.988700px;}
.y19f{bottom:398.551200px;}
.y226{bottom:398.573700px;}
.ycf{bottom:398.582700px;}
.ye2{bottom:398.605200px;}
.y7a{bottom:398.618700px;}
.y1dc{bottom:398.681700px;}
.y1cb{bottom:398.690700px;}
.ya7{bottom:398.821200px;}
.y209{bottom:398.884200px;}
.y25a{bottom:400.036650px;}
.y5b{bottom:400.481700px;}
.yf{bottom:401.867100px;}
.y2c9{bottom:402.711900px;}
.y2f9{bottom:402.723150px;}
.y359{bottom:402.724800px;}
.y15c{bottom:406.299900px;}
.y291{bottom:406.975650px;}
.y135{bottom:409.302900px;}
.y180{bottom:409.397400px;}
.y327{bottom:411.230250px;}
.y259{bottom:413.536650px;}
.y3c{bottom:415.984200px;}
.y2c8{bottom:416.211900px;}
.y2f8{bottom:416.223150px;}
.y358{bottom:416.224800px;}
.y19e{bottom:416.551200px;}
.y225{bottom:416.569200px;}
.yce{bottom:416.578200px;}
.ye1{bottom:416.600700px;}
.y79{bottom:416.614200px;}
.y1db{bottom:416.677200px;}
.y1ca{bottom:416.686200px;}
.ya6{bottom:416.816700px;}
.y208{bottom:416.879700px;}
.ye{bottom:423.863100px;}
.y290{bottom:424.728150px;}
.y326{bottom:424.730250px;}
.y15b{bottom:426.081900px;}
.y258{bottom:427.036650px;}
.y134{bottom:429.084900px;}
.y17f{bottom:429.179400px;}
.y2f7{bottom:429.723150px;}
.y357{bottom:429.724800px;}
.y2c7{bottom:433.964400px;}
.y5a{bottom:433.988700px;}
.y3b{bottom:433.997700px;}
.y372{bottom:434.551200px;}
.y224{bottom:434.564700px;}
.ycd{bottom:434.573700px;}
.ye0{bottom:434.596200px;}
.y78{bottom:434.609700px;}
.y19d{bottom:434.672700px;}
.y1c9{bottom:434.681700px;}
.ya5{bottom:434.812200px;}
.y207{bottom:434.875200px;}
.y28f{bottom:438.228150px;}
.y325{bottom:438.230250px;}
.y15a{bottom:439.584900px;}
.y257{bottom:440.536650px;}
.yd{bottom:442.113150px;}
.y133{bottom:442.587900px;}
.y17e{bottom:442.682400px;}
.y2f6{bottom:443.223150px;}
.y356{bottom:443.224800px;}
.y2c6{bottom:447.464400px;}
.y28e{bottom:451.728150px;}
.y324{bottom:451.730250px;}
.y59{bottom:451.984200px;}
.y3a{bottom:451.993200px;}
.y223{bottom:452.560200px;}
.ycc{bottom:452.569200px;}
.ydf{bottom:452.591700px;}
.y77{bottom:452.605200px;}
.y371{bottom:452.618700px;}
.y19c{bottom:452.668200px;}
.y1c8{bottom:452.677200px;}
.ya4{bottom:452.807700px;}
.y206{bottom:452.870700px;}
.y2f5{bottom:456.723150px;}
.y256{bottom:458.289150px;}
.y159{bottom:459.366900px;}
.y2c5{bottom:460.964400px;}
.y355{bottom:460.977300px;}
.y132{bottom:462.369900px;}
.y17d{bottom:462.464400px;}
.yc{bottom:463.119150px;}
.y28d{bottom:465.228150px;}
.y323{bottom:465.230250px;}
.y39{bottom:469.988700px;}
.y58{bottom:470.020200px;}
.y2f4{bottom:470.223150px;}
.y222{bottom:470.555700px;}
.ycb{bottom:470.564700px;}
.yde{bottom:470.587200px;}
.y76{bottom:470.600700px;}
.y19b{bottom:470.663700px;}
.y1c7{bottom:470.672700px;}
.ya3{bottom:470.803200px;}
.y205{bottom:470.866200px;}
.y255{bottom:471.789150px;}
.y158{bottom:472.869900px;}
.y2c4{bottom:474.464400px;}
.y354{bottom:474.477300px;}
.y131{bottom:475.872900px;}
.y17c{bottom:475.967400px;}
.y322{bottom:478.730250px;}
.y28c{bottom:482.980650px;}
.y254{bottom:485.289150px;}
.y2f3{bottom:487.975650px;}
.y353{bottom:487.977300px;}
.y38{bottom:487.984200px;}
.y57{bottom:488.015700px;}
.y221{bottom:488.551200px;}
.yca{bottom:488.560200px;}
.y75{bottom:488.596200px;}
.y370{bottom:488.623200px;}
.y19a{bottom:488.659200px;}
.y1c6{bottom:488.668200px;}
.ya2{bottom:488.798700px;}
.y204{bottom:488.861700px;}
.y2c3{bottom:492.216900px;}
.y321{bottom:492.230250px;}
.y157{bottom:492.651900px;}
.y130{bottom:495.654900px;}
.y17b{bottom:495.749400px;}
.y28b{bottom:496.480650px;}
.y253{bottom:498.789150px;}
.y2f2{bottom:501.475650px;}
.y352{bottom:501.477300px;}
.y2c2{bottom:505.716900px;}
.y320{bottom:505.730250px;}
.y56{bottom:506.011200px;}
.y37{bottom:506.015700px;}
.y156{bottom:506.154900px;}
.yc9{bottom:506.555700px;}
.y237{bottom:506.560200px;}
.y74{bottom:506.591700px;}
.y36f{bottom:506.618700px;}
.y199{bottom:506.654700px;}
.y1c5{bottom:506.663700px;}
.ya1{bottom:506.794200px;}
.y203{bottom:506.857200px;}
.y12f{bottom:509.157900px;}
.y17a{bottom:509.252400px;}
.y28a{bottom:509.980650px;}
.y252{bottom:512.289150px;}
.y2f1{bottom:514.975650px;}
.y351{bottom:514.977300px;}
.y2c1{bottom:519.216900px;}
.y31f{bottom:519.230250px;}
.y289{bottom:523.480650px;}
.y55{bottom:524.006700px;}
.y36{bottom:524.011200px;}
.yc8{bottom:524.551200px;}
.y236{bottom:524.555700px;}
.y73{bottom:524.587200px;}
.y36e{bottom:524.614200px;}
.y198{bottom:524.650200px;}
.y1c4{bottom:524.659200px;}
.ya0{bottom:524.789700px;}
.y202{bottom:524.852700px;}
.y155{bottom:525.936900px;}
.y2f0{bottom:528.475650px;}
.y350{bottom:528.477300px;}
.y12e{bottom:528.939900px;}
.y179{bottom:529.034400px;}
.y251{bottom:530.041650px;}
.y2c0{bottom:532.716900px;}
.y288{bottom:536.980650px;}
.y31e{bottom:536.982750px;}
.y154{bottom:539.439900px;}
.y54{bottom:542.002200px;}
.y35{bottom:542.006700px;}
.y12d{bottom:542.442900px;}
.y178{bottom:542.537400px;}
.y235{bottom:542.551200px;}
.y220{bottom:542.560200px;}
.y72{bottom:542.582700px;}
.yc7{bottom:542.605200px;}
.y36d{bottom:542.609700px;}
.y197{bottom:542.645700px;}
.y1c3{bottom:542.654700px;}
.y9f{bottom:542.785200px;}
.y201{bottom:542.848200px;}
.y250{bottom:543.541650px;}
.y1e{bottom:544.460100px;}
.y2ef{bottom:546.228150px;}
.y34f{bottom:546.229800px;}
.y2bf{bottom:550.469400px;}
.y287{bottom:550.480650px;}
.y31d{bottom:550.482750px;}
.y24f{bottom:557.041650px;}
.y153{bottom:559.221900px;}
.y2ee{bottom:559.728150px;}
.y34e{bottom:559.729800px;}
.y53{bottom:559.997700px;}
.y34{bottom:560.002200px;}
.y21f{bottom:560.555700px;}
.y234{bottom:560.564700px;}
.y71{bottom:560.578200px;}
.y36c{bottom:560.605200px;}
.y196{bottom:560.641200px;}
.y1c2{bottom:560.650200px;}
.y9e{bottom:560.780700px;}
.y200{bottom:560.843700px;}
.y12c{bottom:562.224900px;}
.y177{bottom:562.319400px;}
.y2be{bottom:563.969400px;}
.y286{bottom:563.980650px;}
.y31c{bottom:563.982750px;}
.y1d{bottom:568.463100px;}
.y24e{bottom:570.541650px;}
.y152{bottom:572.724900px;}
.y2ed{bottom:573.228150px;}
.y34d{bottom:573.229800px;}
.y12b{bottom:575.727900px;}
.y176{bottom:575.822400px;}
.y2bd{bottom:577.469400px;}
.y52{bottom:577.993200px;}
.y33{bottom:577.997700px;}
.y21e{bottom:578.551200px;}
.y233{bottom:578.560200px;}
.y70{bottom:578.573700px;}
.y36b{bottom:578.600700px;}
.yc6{bottom:578.609700px;}
.y195{bottom:578.636700px;}
.y1c1{bottom:578.645700px;}
.y9d{bottom:578.776200px;}
.y1ff{bottom:578.839200px;}
.y285{bottom:581.733150px;}
.y31b{bottom:581.735250px;}
.y24d{bottom:584.041650px;}
.y2bc{bottom:590.969400px;}
.y2ec{bottom:590.980650px;}
.y34c{bottom:590.982300px;}
.y151{bottom:592.506900px;}
.y284{bottom:595.233150px;}
.y31a{bottom:595.235250px;}
.y12a{bottom:595.509900px;}
.y175{bottom:595.604400px;}
.y51{bottom:595.988700px;}
.y32{bottom:595.993200px;}
.y232{bottom:596.555700px;}
.y6f{bottom:596.569200px;}
.y21d{bottom:596.582700px;}
.y36a{bottom:596.596200px;}
.yc5{bottom:596.605200px;}
.y194{bottom:596.632200px;}
.y1c0{bottom:596.641200px;}
.y9c{bottom:596.771700px;}
.y1fe{bottom:596.834700px;}
.y24c{bottom:601.794150px;}
.y2eb{bottom:604.480650px;}
.y34b{bottom:604.482300px;}
.y150{bottom:606.009900px;}
.y2bb{bottom:608.721900px;}
.y283{bottom:608.733150px;}
.y319{bottom:608.735250px;}
.y129{bottom:609.012900px;}
.y174{bottom:609.107400px;}
.y1c{bottom:613.722900px;}
.y50{bottom:613.984200px;}
.y31{bottom:613.988700px;}
.y231{bottom:614.551200px;}
.y6e{bottom:614.564700px;}
.y21c{bottom:614.578200px;}
.y369{bottom:614.591700px;}
.yc4{bottom:614.600700px;}
.y193{bottom:614.627700px;}
.y1bf{bottom:614.636700px;}
.y9b{bottom:614.767200px;}
.y1fd{bottom:614.830200px;}
.y24b{bottom:615.294150px;}
.y2ea{bottom:617.980650px;}
.y2ba{bottom:622.221900px;}
.y282{bottom:622.233150px;}
.y34a{bottom:622.234800px;}
.y100{bottom:624.500400px;}
.y14f{bottom:625.791900px;}
.y318{bottom:626.487750px;}
.y24a{bottom:628.794150px;}
.y128{bottom:628.794900px;}
.y173{bottom:628.889400px;}
.y2e9{bottom:631.480650px;}
.y30{bottom:631.984200px;}
.y4f{bottom:631.988700px;}
.y6d{bottom:632.560200px;}
.y21b{bottom:632.573700px;}
.y368{bottom:632.587200px;}
.yc3{bottom:632.596200px;}
.y230{bottom:632.609700px;}
.y192{bottom:632.623200px;}
.y1be{bottom:632.632200px;}
.y9a{bottom:632.762700px;}
.y1fc{bottom:632.825700px;}
.y281{bottom:635.733150px;}
.y349{bottom:635.734800px;}
.y14e{bottom:639.294900px;}
.y2b9{bottom:639.974400px;}
.y317{bottom:639.987750px;}
.y1b{bottom:640.722900px;}
.y249{bottom:642.294150px;}
.y127{bottom:642.297900px;}
.y172{bottom:642.392400px;}
.yff{bottom:644.282400px;}
.y2e8{bottom:649.233150px;}
.y348{bottom:649.234800px;}
.y4e{bottom:649.984200px;}
.y2f{bottom:650.015700px;}
.y6c{bottom:650.555700px;}
.y21a{bottom:650.569200px;}
.y367{bottom:650.582700px;}
.yc2{bottom:650.591700px;}
.y191{bottom:650.618700px;}
.y1bd{bottom:650.627700px;}
.y99{bottom:650.758200px;}
.y1fb{bottom:650.821200px;}
.y2b8{bottom:653.474400px;}
.y280{bottom:653.485650px;}
.y316{bottom:653.487750px;}
.y248{bottom:655.794150px;}
.y14d{bottom:659.076900px;}
.y126{bottom:662.079900px;}
.y171{bottom:662.174400px;}
.y2e7{bottom:662.733150px;}
.yfe{bottom:664.064400px;}
.y2b7{bottom:666.974400px;}
.y27f{bottom:666.985650px;}
.y347{bottom:666.987300px;}
.y1a{bottom:667.722900px;}
.y2e{bottom:668.011200px;}
.y4d{bottom:668.015700px;}
.y6b{bottom:668.551200px;}
.y219{bottom:668.564700px;}
.y366{bottom:668.578200px;}
.yc1{bottom:668.587200px;}
.y190{bottom:668.614200px;}
.y1bc{bottom:668.623200px;}
.y98{bottom:668.753700px;}
.y1fa{bottom:668.816700px;}
.y247{bottom:669.294150px;}
.y315{bottom:671.239650px;}
.y14c{bottom:672.579900px;}
.y125{bottom:675.582900px;}
.y170{bottom:675.677400px;}
.y2e6{bottom:676.233150px;}
.y2b6{bottom:680.474400px;}
.y27e{bottom:680.485650px;}
.y346{bottom:680.487300px;}
.yfd{bottom:683.846400px;}
.y314{bottom:684.739650px;}
.y2d{bottom:686.006700px;}
.y4c{bottom:686.011200px;}
.y376{bottom:686.551200px;}
.y6a{bottom:686.560200px;}
.y365{bottom:686.573700px;}
.yc0{bottom:686.582700px;}
.y18f{bottom:686.609700px;}
.y1bb{bottom:686.618700px;}
.y97{bottom:686.749200px;}
.y1f9{bottom:686.812200px;}
.y246{bottom:687.046650px;}
.y2e5{bottom:689.733150px;}
.y14b{bottom:692.361900px;}
.y2b5{bottom:693.974400px;}
.y27d{bottom:693.985650px;}
.y345{bottom:693.987300px;}
.y124{bottom:695.364900px;}
.y16f{bottom:695.459400px;}
.y313{bottom:698.239650px;}
.y245{bottom:700.546650px;}
.yfc{bottom:703.628400px;}
.y2c{bottom:704.002200px;}
.y4b{bottom:704.006700px;}
.y375{bottom:704.551200px;}
.y69{bottom:704.555700px;}
.y364{bottom:704.569200px;}
.ybf{bottom:704.578200px;}
.y18e{bottom:704.605200px;}
.y1ba{bottom:704.614200px;}
.y96{bottom:704.744700px;}
.y1f8{bottom:704.807700px;}
.y14a{bottom:705.864900px;}
.y2e4{bottom:707.485650px;}
.y344{bottom:707.487300px;}
.y123{bottom:708.867900px;}
.y16e{bottom:708.962400px;}
.y2b4{bottom:711.726900px;}
.y27c{bottom:711.738150px;}
.y312{bottom:711.739650px;}
.y244{bottom:714.046650px;}
.y2e3{bottom:720.985650px;}
.y343{bottom:720.987300px;}
.y2b{bottom:721.997700px;}
.y4a{bottom:722.002200px;}
.y68{bottom:722.551200px;}
.y363{bottom:722.564700px;}
.ybe{bottom:722.573700px;}
.y18d{bottom:722.600700px;}
.y1b9{bottom:722.609700px;}
.y95{bottom:722.740200px;}
.y1f7{bottom:722.803200px;}
.yb{bottom:723.401550px;}
.yfb{bottom:723.410400px;}
.y2b3{bottom:725.226900px;}
.y27b{bottom:725.238150px;}
.y311{bottom:725.239650px;}
.y149{bottom:725.646900px;}
.y122{bottom:728.649900px;}
.y16d{bottom:728.744400px;}
.y243{bottom:731.799150px;}
.y2e2{bottom:734.485650px;}
.y342{bottom:734.487300px;}
.y2b2{bottom:738.726900px;}
.y27a{bottom:738.738150px;}
.y310{bottom:738.739650px;}
.y148{bottom:739.149900px;}
.y2a{bottom:739.993200px;}
.y49{bottom:739.997700px;}
.y67{bottom:740.551200px;}
.y362{bottom:740.560200px;}
.ybd{bottom:740.569200px;}
.y18c{bottom:740.596200px;}
.y1b8{bottom:740.605200px;}
.y94{bottom:740.735700px;}
.y1f6{bottom:740.798700px;}
.y121{bottom:742.152900px;}
.y16c{bottom:742.247400px;}
.yfa{bottom:743.192400px;}
.y242{bottom:745.299150px;}
.y2b1{bottom:752.226900px;}
.y279{bottom:752.238150px;}
.y30f{bottom:752.239650px;}
.y341{bottom:752.239800px;}
.y29{bottom:757.988700px;}
.y48{bottom:757.993200px;}
.y374{bottom:758.551200px;}
.y361{bottom:758.555700px;}
.y66{bottom:758.560200px;}
.y18b{bottom:758.591700px;}
.y1b7{bottom:758.600700px;}
.y93{bottom:758.731200px;}
.y1f5{bottom:758.794200px;}
.y241{bottom:758.799150px;}
.y147{bottom:758.931900px;}
.y120{bottom:761.934900px;}
.y16b{bottom:762.029400px;}
.yf9{bottom:762.974400px;}
.y2e1{bottom:765.738150px;}
.y340{bottom:765.739800px;}
.y2b0{bottom:769.979400px;}
.y278{bottom:769.990650px;}
.y146{bottom:772.434900px;}
.y11f{bottom:775.437900px;}
.y16a{bottom:775.532400px;}
.y28{bottom:775.984200px;}
.y47{bottom:775.988700px;}
.y360{bottom:776.551200px;}
.y65{bottom:776.555700px;}
.ybc{bottom:776.573700px;}
.y18a{bottom:776.587200px;}
.y1b6{bottom:776.596200px;}
.y92{bottom:776.726700px;}
.y1f4{bottom:776.789700px;}
.y2e0{bottom:779.238150px;}
.y33f{bottom:779.239800px;}
.yf8{bottom:782.756400px;}
.y2af{bottom:783.479400px;}
.y277{bottom:783.490650px;}
.y145{bottom:792.216900px;}
.y33e{bottom:792.739800px;}
.y46{bottom:793.984200px;}
.y27{bottom:794.006700px;}
.y64{bottom:794.551200px;}
.y189{bottom:794.582700px;}
.y1b5{bottom:794.591700px;}
.y91{bottom:794.722200px;}
.y1f3{bottom:794.785200px;}
.y11e{bottom:795.219900px;}
.y169{bottom:795.314400px;}
.y5{bottom:795.650850px;}
.y2ae{bottom:796.979400px;}
.y276{bottom:796.990650px;}
.yf7{bottom:802.538400px;}
.y144{bottom:805.719900px;}
.y11d{bottom:808.722900px;}
.y168{bottom:808.817400px;}
.y2ad{bottom:810.479400px;}
.y275{bottom:810.490650px;}
.y33d{bottom:810.491700px;}
.y45{bottom:811.997700px;}
.y26{bottom:812.002200px;}
.y35f{bottom:812.551200px;}
.y240{bottom:812.560200px;}
.y63{bottom:812.569200px;}
.ybb{bottom:812.578200px;}
.y1b4{bottom:812.587200px;}
.y90{bottom:812.717700px;}
.y1f2{bottom:812.780700px;}
.yf6{bottom:822.320400px;}
.y2ac{bottom:823.979400px;}
.y274{bottom:823.990650px;}
.y33c{bottom:823.991700px;}
.y143{bottom:825.501900px;}
.y2df{bottom:828.243150px;}
.y11c{bottom:828.504900px;}
.y167{bottom:828.599400px;}
.y44{bottom:829.993200px;}
.y25{bottom:829.997700px;}
.y35e{bottom:830.551200px;}
.y23f{bottom:830.555700px;}
.y62{bottom:830.564700px;}
.yba{bottom:830.573700px;}
.y1b3{bottom:830.582700px;}
.y8f{bottom:830.713200px;}
.y1f1{bottom:830.776200px;}
.y2ab{bottom:837.479400px;}
.y33b{bottom:837.491700px;}
.y142{bottom:839.004900px;}
.y30e{bottom:841.731900px;}
.y273{bottom:841.743150px;}
.y11b{bottom:842.007900px;}
.yf5{bottom:842.102400px;}
.y4{bottom:843.386850px;}
.y43{bottom:847.988700px;}
.y24{bottom:847.993200px;}
.y23e{bottom:848.551200px;}
.y61{bottom:848.560200px;}
.yb9{bottom:848.569200px;}
.y1b2{bottom:848.578200px;}
.y8e{bottom:848.708700px;}
.y1f0{bottom:848.771700px;}
.y2aa{bottom:855.231900px;}
.y272{bottom:855.243150px;}
.y141{bottom:858.786900px;}
.y11a{bottom:861.789900px;}
.yf4{bottom:861.884400px;}
.y42{bottom:865.984200px;}
.y23{bottom:865.988700px;}
.y35d{bottom:866.551200px;}
.y60{bottom:866.555700px;}
.yb8{bottom:866.564700px;}
.y1b1{bottom:866.573700px;}
.y8d{bottom:866.704200px;}
.y1ef{bottom:866.767200px;}
.y2a9{bottom:868.731900px;}
.y271{bottom:868.743150px;}
.y140{bottom:878.568900px;}
.yf3{bottom:881.666400px;}
.y2a8{bottom:882.231900px;}
.y270{bottom:882.243150px;}
.y22{bottom:883.984200px;}
.y5f{bottom:884.551200px;}
.yb7{bottom:884.560200px;}
.y1b0{bottom:884.569200px;}
.y8c{bottom:884.699700px;}
.y1ee{bottom:884.762700px;}
.y30d{bottom:886.484400px;}
.y2de{bottom:886.495650px;}
.y2a7{bottom:895.731900px;}
.y26f{bottom:895.743150px;}
.y13f{bottom:898.350900px;}
.y30c{bottom:899.984400px;}
.y2dd{bottom:899.995650px;}
.yf2{bottom:901.448400px;}
.y5e{bottom:902.551200px;}
.yb6{bottom:902.555700px;}
.y1af{bottom:902.564700px;}
.y23d{bottom:902.569200px;}
.y8b{bottom:902.695200px;}
.y1ed{bottom:902.758200px;}
.y21{bottom:910.488150px;}
.y2a6{bottom:913.484400px;}
.y26e{bottom:913.495650px;}
.y5d{bottom:920.551200px;}
.y1ae{bottom:920.560200px;}
.y23c{bottom:920.564700px;}
.y8a{bottom:920.690700px;}
.y1ec{bottom:920.753700px;}
.yf1{bottom:921.230400px;}
.y2a5{bottom:926.984400px;}
.y26d{bottom:926.995650px;}
.y1f{bottom:984.259950px;}
.y8{bottom:1059.431250px;}
.y3{bottom:1067.359050px;}
.y7{bottom:1075.631250px;}
.y2{bottom:1098.868050px;}
.hb{height:28.172250px;}
.h16{height:33.058594px;}
.h15{height:38.206055px;}
.h14{height:38.636719px;}
.h13{height:39.416016px;}
.h18{height:40.935059px;}
.h17{height:41.396484px;}
.he{height:43.664062px;}
.h9{height:44.156250px;}
.hf{height:45.046875px;}
.h7{height:49.122070px;}
.h10{height:49.675781px;}
.h12{height:50.414062px;}
.h8{height:50.677734px;}
.ha{height:50.701734px;}
.h6{height:56.308594px;}
.h5{height:66.668474px;}
.h2{height:70.954102px;}
.h11{height:71.753906px;}
.hd{height:78.832031px;}
.hc{height:90.093750px;}
.h4{height:93.832031px;}
.h3{height:101.355469px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:42.519750px;}
.x1d{left:85.039350px;}
.xf{left:86.187000px;}
.xd{left:87.583050px;}
.x84{left:89.514300px;}
.xe{left:90.642300px;}
.xa{left:91.861050px;}
.x10{left:94.739550px;}
.x15{left:96.092100px;}
.xc{left:101.303400px;}
.x1a{left:106.486650px;}
.x17{left:129.887850px;}
.x14{left:134.732100px;}
.x11{left:149.378250px;}
.x12{left:152.056650px;}
.x18{left:165.398850px;}
.x2{left:171.141750px;}
.xb{left:175.732350px;}
.x97{left:230.067300px;}
.x8c{left:231.085800px;}
.x95{left:235.065300px;}
.x71{left:236.424600px;}
.x6a{left:237.705600px;}
.x3a{left:238.737600px;}
.x22{left:241.047600px;}
.x80{left:243.270600px;}
.x81{left:244.551600px;}
.x66{left:245.969100px;}
.x2f{left:247.872600px;}
.x64{left:250.977600px;}
.x5a{left:252.594600px;}
.x21{left:256.188600px;}
.x49{left:262.086600px;}
.x3e{left:263.126100px;}
.x4{left:271.840200px;}
.x48{left:308.097600px;}
.x93{left:309.258300px;}
.x72{left:310.974600px;}
.x7c{left:313.641600px;}
.x75{left:316.539600px;}
.x1f{left:318.044100px;}
.x8d{left:319.621800px;}
.x4b{left:321.989100px;}
.x61{left:323.018100px;}
.x24{left:325.226100px;}
.x20{left:327.315600px;}
.x33{left:329.142600px;}
.x30{left:332.051100px;}
.x4a{left:333.098100px;}
.x57{left:336.006600px;}
.x3b{left:339.138600px;}
.x23{left:342.152100px;}
.x16{left:373.508100px;}
.x13{left:375.943200px;}
.x85{left:377.203800px;}
.x98{left:378.474300px;}
.x87{left:379.513800px;}
.x69{left:382.007100px;}
.x6c{left:384.264600px;}
.x79{left:386.900100px;}
.x76{left:391.089600px;}
.x4d{left:392.748600px;}
.x58{left:394.029600px;}
.x94{left:395.200800px;}
.x86{left:396.439800px;}
.x82{left:398.208600px;}
.x7d{left:399.930600px;}
.x6b{left:401.190600px;}
.x5b{left:405.443100px;}
.x62{left:406.787100px;}
.x4c{left:408.047100px;}
.x3c{left:411.473100px;}
.x45{left:413.286600px;}
.x25{left:423.222600px;}
.x31{left:426.236100px;}
.x1{left:435.649800px;}
.x89{left:456.993300px;}
.x1b{left:459.212550px;}
.x6d{left:461.460600px;}
.x1e{left:465.727800px;}
.x88{left:467.535300px;}
.x8f{left:470.548800px;}
.x8{left:472.213950px;}
.x77{left:474.470100px;}
.x4e{left:476.958600px;}
.x1c{left:480.472350px;}
.x34{left:492.312600px;}
.x26{left:493.593600px;}
.x32{left:496.229100px;}
.x37{left:497.510100px;}
.x43{left:500.772600px;}
.x3d{left:507.506100px;}
.x38{left:510.918600px;}
.x73{left:530.813100px;}
.x6f{left:532.451100px;}
.x7f{left:533.469600px;}
.x90{left:534.756300px;}
.x59{left:536.819100px;}
.x50{left:538.089600px;}
.x65{left:539.118600px;}
.x5c{left:540.735600px;}
.x8a{left:541.948800px;}
.x7a{left:545.145600px;}
.x6e{left:547.749600px;}
.x5f{left:549.513600px;}
.x4f{left:552.107100px;}
.x3f{left:576.635100px;}
.x28{left:577.772100px;}
.x2d{left:580.680600px;}
.x39{left:581.730600px;}
.x44{left:584.751600px;}
.x46{left:591.776100px;}
.x27{left:594.698100px;}
.x99{left:601.084800px;}
.x74{left:604.092600px;}
.x70{left:605.720100px;}
.x7e{left:606.749100px;}
.x96{left:609.022800px;}
.x52{left:610.130100px;}
.x92{left:612.655800px;}
.x8e{left:616.456800px;}
.x60{left:617.721600px;}
.x8b{left:619.060800px;}
.x9{left:621.490200px;}
.x51{left:624.147600px;}
.x40{left:651.321600px;}
.x47{left:656.519100px;}
.x35{left:660.428100px;}
.x2a{left:661.950600px;}
.x2e{left:664.859100px;}
.x41{left:673.592100px;}
.x9b{left:675.288300px;}
.x42{left:677.519100px;}
.x29{left:678.876600px;}
.x7b{left:680.018100px;}
.x68{left:681.162600px;}
.x54{left:682.170600px;}
.x91{left:683.184300px;}
.x78{left:684.186600px;}
.x5d{left:686.087100px;}
.x9a{left:690.198300px;}
.x83{left:691.326600px;}
.x67{left:693.059100px;}
.x63{left:694.928100px;}
.x53{left:696.188100px;}
.x7{left:706.867200px;}
.x19{left:714.466500px;}
.x6{left:716.731800px;}
.x2c{left:749.405100px;}
.x5{left:751.062600px;}
.x56{left:754.557600px;}
.x2b{left:759.947100px;}
.x36{left:762.960600px;}
.x55{left:765.099600px;}
.x5e{left:768.123600px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.ls32{letter-spacing:-1.978667pt;}
.ls2f{letter-spacing:-1.456000pt;}
.ls2e{letter-spacing:-1.008000pt;}
.ls2d{letter-spacing:-0.912000pt;}
.lse{letter-spacing:-0.864000pt;}
.ls77{letter-spacing:-0.853333pt;}
.ls50{letter-spacing:-0.840000pt;}
.ls11{letter-spacing:-0.816000pt;}
.ls6f{letter-spacing:-0.810667pt;}
.ls2c{letter-spacing:-0.768000pt;}
.ls51{letter-spacing:-0.760000pt;}
.ls1a{letter-spacing:-0.720000pt;}
.ls67{letter-spacing:-0.680000pt;}
.ls26{letter-spacing:-0.672000pt;}
.ls66{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.624000pt;}
.ls54{letter-spacing:-0.600000pt;}
.ls6c{letter-spacing:-0.597333pt;}
.ls16{letter-spacing:-0.576000pt;}
.ls52{letter-spacing:-0.560000pt;}
.ls2b{letter-spacing:-0.528000pt;}
.ls4a{letter-spacing:-0.520000pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls4c{letter-spacing:-0.440000pt;}
.ls15{letter-spacing:-0.432000pt;}
.ls36{letter-spacing:-0.426667pt;}
.ls53{letter-spacing:-0.400000pt;}
.ls27{letter-spacing:-0.384000pt;}
.ls55{letter-spacing:-0.360000pt;}
.lsf{letter-spacing:-0.336000pt;}
.ls49{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.288000pt;}
.ls69{letter-spacing:-0.280000pt;}
.ls73{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.240000pt;}
.ls78{letter-spacing:-0.213333pt;}
.ls4d{letter-spacing:-0.200000pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls6e{letter-spacing:-0.170667pt;}
.ls63{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls76{letter-spacing:-0.128000pt;}
.ls64{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls70{letter-spacing:-0.085333pt;}
.ls4b{letter-spacing:-0.080000pt;}
.ls19{letter-spacing:-0.048000pt;}
.ls6d{letter-spacing:-0.042667pt;}
.ls4f{letter-spacing:-0.040000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000303pt;}
.ls5b{letter-spacing:0.040000pt;}
.lsa{letter-spacing:0.048000pt;}
.ls59{letter-spacing:0.080000pt;}
.ls6a{letter-spacing:0.085333pt;}
.ls9{letter-spacing:0.096000pt;}
.ls43{letter-spacing:0.100800pt;}
.ls60{letter-spacing:0.120000pt;}
.ls8{letter-spacing:0.144000pt;}
.ls56{letter-spacing:0.160000pt;}
.ls74{letter-spacing:0.170667pt;}
.lsd{letter-spacing:0.192000pt;}
.ls4e{letter-spacing:0.200000pt;}
.ls72{letter-spacing:0.213333pt;}
.ls18{letter-spacing:0.240000pt;}
.ls37{letter-spacing:0.256000pt;}
.ls65{letter-spacing:0.280000pt;}
.ls7{letter-spacing:0.288000pt;}
.ls6b{letter-spacing:0.298667pt;}
.ls5a{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.336000pt;}
.ls71{letter-spacing:0.341333pt;}
.ls57{letter-spacing:0.360000pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls62{letter-spacing:0.400000pt;}
.ls20{letter-spacing:0.432000pt;}
.ls58{letter-spacing:0.440000pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls38{letter-spacing:0.512000pt;}
.ls45{letter-spacing:0.520000pt;}
.ls5{letter-spacing:0.528000pt;}
.ls48{letter-spacing:0.560000pt;}
.ls13{letter-spacing:0.576000pt;}
.ls68{letter-spacing:0.600000pt;}
.ls3{letter-spacing:0.624000pt;}
.ls5d{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.672000pt;}
.ls61{letter-spacing:0.680000pt;}
.ls44{letter-spacing:0.681600pt;}
.ls33{letter-spacing:0.682667pt;}
.ls6{letter-spacing:0.720000pt;}
.ls47{letter-spacing:0.760000pt;}
.ls22{letter-spacing:0.768000pt;}
.ls46{letter-spacing:0.800000pt;}
.lsb{letter-spacing:0.816000pt;}
.ls5f{letter-spacing:0.840000pt;}
.ls75{letter-spacing:0.853333pt;}
.ls1f{letter-spacing:0.864000pt;}
.ls28{letter-spacing:0.912000pt;}
.ls5e{letter-spacing:0.920000pt;}
.ls21{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.104000pt;}
.ls41{letter-spacing:1.152000pt;}
.ls42{letter-spacing:1.200000pt;}
.ls1c{letter-spacing:1.296000pt;}
.lsc{letter-spacing:1.694400pt;}
.ls5c{letter-spacing:1.840000pt;}
.ls0{letter-spacing:5.863104pt;}
.ls34{letter-spacing:166.432000pt;}
.ls3a{letter-spacing:235.050667pt;}
.ls3d{letter-spacing:235.312000pt;}
.ls39{letter-spacing:235.461333pt;}
.ls3c{letter-spacing:239.866667pt;}
.ls3e{letter-spacing:242.778667pt;}
.ls40{letter-spacing:242.816000pt;}
.ls3f{letter-spacing:243.189333pt;}
.ls35{letter-spacing:277.536000pt;}
.ls30{letter-spacing:278.245333pt;}
.ls31{letter-spacing:278.282667pt;}
.ls29{letter-spacing:353.136000pt;}
.ls3b{letter-spacing:899.173333pt;}
.ws7e{word-spacing:-252.261333pt;}
.ws4{word-spacing:-21.248000pt;}
.ws9{word-spacing:-12.672000pt;}
.ws8{word-spacing:-12.480000pt;}
.wsb{word-spacing:-12.096000pt;}
.ws0{word-spacing:-11.952000pt;}
.wsc{word-spacing:-11.664000pt;}
.ws7{word-spacing:-11.616000pt;}
.ws9d{word-spacing:-11.560000pt;}
.wsa{word-spacing:-11.376000pt;}
.ws3{word-spacing:-10.624000pt;}
.wsb9{word-spacing:-10.368000pt;}
.wsb7{word-spacing:-10.320000pt;}
.wsb3{word-spacing:-10.200000pt;}
.ws97{word-spacing:-10.080000pt;}
.ws9f{word-spacing:-9.960000pt;}
.ws9e{word-spacing:-9.840000pt;}
.ws82{word-spacing:-9.720000pt;}
.ws83{word-spacing:-9.680000pt;}
.wsb2{word-spacing:-9.640000pt;}
.wsb8{word-spacing:-9.600000pt;}
.ws99{word-spacing:-9.560000pt;}
.ws96{word-spacing:-9.520000pt;}
.wsb4{word-spacing:-9.480000pt;}
.ws98{word-spacing:-9.400000pt;}
.ws9b{word-spacing:-9.360000pt;}
.wsb0{word-spacing:-9.240000pt;}
.ws9a{word-spacing:-9.080000pt;}
.ws60{word-spacing:-9.072000pt;}
.wsb1{word-spacing:-9.040000pt;}
.ws9c{word-spacing:-9.000000pt;}
.ws85{word-spacing:-8.960000pt;}
.ws84{word-spacing:-8.880000pt;}
.ws46{word-spacing:-7.840000pt;}
.ws52{word-spacing:-7.317333pt;}
.ws1{word-spacing:-6.968016pt;}
.ws2{word-spacing:-6.193792pt;}
.ws6{word-spacing:-5.863104pt;}
.ws2a{word-spacing:-1.296000pt;}
.ws2b{word-spacing:-1.200000pt;}
.ws21{word-spacing:-1.152000pt;}
.ws11{word-spacing:-1.104000pt;}
.ws59{word-spacing:-1.066667pt;}
.ws81{word-spacing:-1.008000pt;}
.wsb6{word-spacing:-1.000000pt;}
.ws25{word-spacing:-0.960000pt;}
.wsac{word-spacing:-0.920000pt;}
.ws30{word-spacing:-0.912000pt;}
.ws31{word-spacing:-0.864000pt;}
.wsc8{word-spacing:-0.853333pt;}
.wsad{word-spacing:-0.840000pt;}
.ws1f{word-spacing:-0.816000pt;}
.ws91{word-spacing:-0.800000pt;}
.ws3d{word-spacing:-0.768000pt;}
.ws92{word-spacing:-0.760000pt;}
.ws2f{word-spacing:-0.720000pt;}
.ws5b{word-spacing:-0.682667pt;}
.wsae{word-spacing:-0.680000pt;}
.wsf{word-spacing:-0.672000pt;}
.wsa4{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.624000pt;}
.wsab{word-spacing:-0.600000pt;}
.ws17{word-spacing:-0.576000pt;}
.ws94{word-spacing:-0.560000pt;}
.ws15{word-spacing:-0.528000pt;}
.ws89{word-spacing:-0.520000pt;}
.ws6c{word-spacing:-0.512000pt;}
.ws2d{word-spacing:-0.480000pt;}
.wsa1{word-spacing:-0.440000pt;}
.ws33{word-spacing:-0.432000pt;}
.ws27{word-spacing:-0.384000pt;}
.wsa5{word-spacing:-0.360000pt;}
.wsc2{word-spacing:-0.341333pt;}
.ws2c{word-spacing:-0.336000pt;}
.wsa2{word-spacing:-0.320000pt;}
.wsbf{word-spacing:-0.298667pt;}
.ws1a{word-spacing:-0.288000pt;}
.wsa7{word-spacing:-0.280000pt;}
.ws5c{word-spacing:-0.256000pt;}
.ws23{word-spacing:-0.240000pt;}
.wsc3{word-spacing:-0.213333pt;}
.ws87{word-spacing:-0.200000pt;}
.ws22{word-spacing:-0.192000pt;}
.wsc6{word-spacing:-0.170667pt;}
.wsa0{word-spacing:-0.160000pt;}
.ws1b{word-spacing:-0.144000pt;}
.wsba{word-spacing:-0.120000pt;}
.ws1c{word-spacing:-0.096000pt;}
.wsbd{word-spacing:-0.085333pt;}
.wsa8{word-spacing:-0.080000pt;}
.ws10{word-spacing:-0.048000pt;}
.wsa9{word-spacing:-0.040000pt;}
.ws5{word-spacing:0.000000pt;}
.ws95{word-spacing:0.040000pt;}
.wsbc{word-spacing:0.042667pt;}
.ws32{word-spacing:0.048000pt;}
.ws8a{word-spacing:0.080000pt;}
.wsc1{word-spacing:0.085333pt;}
.ws16{word-spacing:0.096000pt;}
.wsa6{word-spacing:0.120000pt;}
.wsc5{word-spacing:0.128000pt;}
.ws18{word-spacing:0.144000pt;}
.wsa3{word-spacing:0.160000pt;}
.wsbe{word-spacing:0.170667pt;}
.ws29{word-spacing:0.192000pt;}
.ws8c{word-spacing:0.200000pt;}
.wsc9{word-spacing:0.213333pt;}
.ws13{word-spacing:0.240000pt;}
.wsc4{word-spacing:0.256000pt;}
.wsb5{word-spacing:0.280000pt;}
.ws24{word-spacing:0.288000pt;}
.ws86{word-spacing:0.320000pt;}
.ws12{word-spacing:0.336000pt;}
.ws90{word-spacing:0.360000pt;}
.ws2e{word-spacing:0.384000pt;}
.ws8e{word-spacing:0.400000pt;}
.ws5a{word-spacing:0.426667pt;}
.ws1d{word-spacing:0.432000pt;}
.ws8b{word-spacing:0.440000pt;}
.ws5d{word-spacing:0.469333pt;}
.ws28{word-spacing:0.480000pt;}
.ws88{word-spacing:0.520000pt;}
.ws3e{word-spacing:0.528000pt;}
.ws8d{word-spacing:0.560000pt;}
.ws20{word-spacing:0.576000pt;}
.ws8f{word-spacing:0.600000pt;}
.ws1e{word-spacing:0.624000pt;}
.wsaa{word-spacing:0.640000pt;}
.ws19{word-spacing:0.672000pt;}
.wsaf{word-spacing:0.680000pt;}
.ws26{word-spacing:0.720000pt;}
.ws93{word-spacing:0.760000pt;}
.ws3f{word-spacing:0.768000pt;}
.wsc0{word-spacing:0.810667pt;}
.ws14{word-spacing:0.816000pt;}
.wsc7{word-spacing:0.853333pt;}
.wse{word-spacing:0.864000pt;}
.ws40{word-spacing:0.912000pt;}
.ws41{word-spacing:1.008000pt;}
.wsbb{word-spacing:1.320000pt;}
.ws5e{word-spacing:119.612267pt;}
.ws6e{word-spacing:124.017600pt;}
.ws7a{word-spacing:127.340267pt;}
.ws51{word-spacing:162.060267pt;}
.ws45{word-spacing:162.332800pt;}
.ws5f{word-spacing:178.729600pt;}
.ws6f{word-spacing:183.134933pt;}
.ws7b{word-spacing:186.457600pt;}
.ws43{word-spacing:208.245333pt;}
.ws44{word-spacing:220.348800pt;}
.ws50{word-spacing:221.214933pt;}
.ws6a{word-spacing:221.834667pt;}
.ws78{word-spacing:226.240000pt;}
.ws69{word-spacing:226.389333pt;}
.ws71{word-spacing:230.794667pt;}
.ws7d{word-spacing:234.117333pt;}
.ws54{word-spacing:247.146667pt;}
.ws48{word-spacing:247.893333pt;}
.ws53{word-spacing:257.488000pt;}
.ws4a{word-spacing:258.234667pt;}
.ws56{word-spacing:268.837333pt;}
.ws4d{word-spacing:269.210667pt;}
.ws4c{word-spacing:269.546667pt;}
.ws35{word-spacing:323.381333pt;}
.ws3c{word-spacing:336.410667pt;}
.ws37{word-spacing:344.064000pt;}
.ws73{word-spacing:391.925333pt;}
.ws7c{word-spacing:398.085333pt;}
.ws34{word-spacing:409.423467pt;}
.ws74{word-spacing:410.218667pt;}
.ws70{word-spacing:415.034667pt;}
.ws77{word-spacing:416.139733pt;}
.ws47{word-spacing:416.815467pt;}
.ws38{word-spacing:420.821333pt;}
.ws64{word-spacing:425.002667pt;}
.ws55{word-spacing:430.266667pt;}
.ws76{word-spacing:434.511467pt;}
.ws7f{word-spacing:436.352000pt;}
.ws72{word-spacing:436.800000pt;}
.ws80{word-spacing:437.113600pt;}
.ws65{word-spacing:443.296000pt;}
.ws62{word-spacing:448.112000pt;}
.ws68{word-spacing:449.217067pt;}
.ws79{word-spacing:451.666133pt;}
.ws75{word-spacing:453.301333pt;}
.ws3b{word-spacing:457.452800pt;}
.ws39{word-spacing:459.088000pt;}
.ws49{word-spacing:463.306667pt;}
.ws4e{word-spacing:466.480000pt;}
.ws4f{word-spacing:467.241600pt;}
.ws67{word-spacing:467.588800pt;}
.ws57{word-spacing:468.533333pt;}
.ws58{word-spacing:469.332267pt;}
.ws63{word-spacing:469.877333pt;}
.ws66{word-spacing:486.378667pt;}
.ws36{word-spacing:496.346667pt;}
.ws6b{word-spacing:497.854933pt;}
.ws3a{word-spacing:501.711467pt;}
.ws4b{word-spacing:503.738667pt;}
.ws61{word-spacing:523.637333pt;}
.ws6d{word-spacing:863.520000pt;}
.ws42{word-spacing:911.306667pt;}
._9{margin-left:-2859.008000pt;}
._4f{margin-left:-243.189333pt;}
._42{margin-left:-235.312000pt;}
._56{margin-left:-11.918400pt;}
._5{margin-left:-9.458240pt;}
._8{margin-left:-8.524800pt;}
._7{margin-left:-7.154009pt;}
._3{margin-left:-6.158834pt;}
._1{margin-left:-4.147200pt;}
._6{margin-left:-3.145538pt;}
._2{margin-left:-2.244800pt;}
._4{margin-left:-1.043795pt;}
._0{width:0.969600pt;}
._a{width:1.886400pt;}
._b{width:3.412800pt;}
._60{width:7.742462pt;}
._59{width:16.800000pt;}
._58{width:20.400000pt;}
._5b{width:22.280000pt;}
._5a{width:23.280000pt;}
._5c{width:25.320000pt;}
._22{width:29.056000pt;}
._5f{width:30.720000pt;}
._21{width:31.872000pt;}
._57{width:42.560000pt;}
._5e{width:46.549333pt;}
._5d{width:49.578667pt;}
._34{width:51.456000pt;}
._2b{width:149.109333pt;}
._38{width:157.882667pt;}
._3e{width:161.728000pt;}
._47{width:165.610667pt;}
._2a{width:166.917333pt;}
._27{width:169.157333pt;}
._33{width:187.338667pt;}
._4e{width:195.365333pt;}
._26{width:200.501333pt;}
._18{width:202.118400pt;}
._37{width:213.136000pt;}
._11{width:218.101333pt;}
._46{width:220.864000pt;}
._1c{width:225.493333pt;}
._2d{width:227.546667pt;}
._3a{width:230.533333pt;}
._3c{width:235.461333pt;}
._4d{width:238.261333pt;}
._d{width:239.907262pt;}
._4c{width:243.189333pt;}
._3b{width:245.392000pt;}
._25{width:255.584000pt;}
._17{width:256.741333pt;}
._2f{width:273.018667pt;}
._1b{width:278.618667pt;}
._10{width:353.136000pt;}
._51{width:384.048000pt;}
._4b{width:386.549333pt;}
._52{width:402.341333pt;}
._41{width:403.498667pt;}
._48{width:405.776000pt;}
._13{width:406.784000pt;}
._54{width:407.717333pt;}
._f{width:409.285333pt;}
._1e{width:414.176000pt;}
._1a{width:416.677333pt;}
._2c{width:418.730667pt;}
._3f{width:422.725333pt;}
._14{width:425.077333pt;}
._53{width:426.421333pt;}
._50{width:428.586667pt;}
._16{width:430.453333pt;}
._c{width:432.478871pt;}
._30{width:434.522667pt;}
._19{width:437.285333pt;}
._31{width:439.898667pt;}
._49{width:442.250667pt;}
._15{width:449.157333pt;}
._12{width:451.322667pt;}
._e{width:454.645333pt;}
._1f{width:456.549333pt;}
._1d{width:458.714667pt;}
._2e{width:460.768000pt;}
._28{width:474.432000pt;}
._4a{width:482.682667pt;}
._55{width:487.797333pt;}
._39{width:492.277333pt;}
._40{width:499.632000pt;}
._43{width:504.746667pt;}
._29{width:514.864000pt;}
._20{width:517.925333pt;}
._32{width:519.978667pt;}
._3d{width:537.824000pt;}
._45{width:776.981333pt;}
._23{width:832.309333pt;}
._44{width:841.232000pt;}
._36{width:897.530667pt;}
._24{width:918.026667pt;}
._35{width:935.760000pt;}
.fs8{font-size:24.874667pt;}
.fs7{font-size:27.984000pt;}
.fsb{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:65.145600pt;}
.fs0{font-size:69.333333pt;}
.fsa{font-size:74.666667pt;}
.fs9{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:15.118133pt;}
.y1{bottom:52.409467pt;}
.y20{bottom:69.417333pt;}
.ya{bottom:76.267733pt;}
.y9{bottom:92.047200pt;}
.y35c{bottom:114.267733pt;}
.y1ad{bottom:114.271733pt;}
.y13c{bottom:114.275733pt;}
.y119{bottom:114.279733pt;}
.ydd{bottom:114.291733pt;}
.y164{bottom:114.303733pt;}
.y10d{bottom:114.315733pt;}
.yf0{bottom:114.363733pt;}
.y89{bottom:114.387733pt;}
.y1eb{bottom:114.443733pt;}
.y1da{bottom:114.451733pt;}
.yb5{bottom:114.555733pt;}
.y218{bottom:114.623733pt;}
.y33a{bottom:118.638000pt;}
.y2dc{bottom:118.641733pt;}
.y26c{bottom:120.688133pt;}
.y2a4{bottom:122.416133pt;}
.y30b{bottom:126.856133pt;}
.y1ac{bottom:130.267733pt;}
.y13b{bottom:130.271733pt;}
.y118{bottom:130.275733pt;}
.ydc{bottom:130.287733pt;}
.y163{bottom:130.299733pt;}
.y10c{bottom:130.311733pt;}
.yef{bottom:130.359733pt;}
.y88{bottom:130.383733pt;}
.y1ea{bottom:130.439733pt;}
.y1d9{bottom:130.447733pt;}
.yb4{bottom:130.551733pt;}
.y217{bottom:130.619733pt;}
.y339{bottom:130.638000pt;}
.y2db{bottom:130.641733pt;}
.y26b{bottom:132.688133pt;}
.y2a3{bottom:134.416133pt;}
.y30a{bottom:138.856133pt;}
.y2da{bottom:142.641733pt;}
.y13a{bottom:146.267733pt;}
.y117{bottom:146.271733pt;}
.ydb{bottom:146.283733pt;}
.y162{bottom:146.295733pt;}
.y1ab{bottom:146.303733pt;}
.y10b{bottom:146.307733pt;}
.yee{bottom:146.355733pt;}
.y87{bottom:146.379733pt;}
.y2a2{bottom:146.416133pt;}
.y338{bottom:146.418000pt;}
.y1e9{bottom:146.435733pt;}
.y1d8{bottom:146.443733pt;}
.yb3{bottom:146.547733pt;}
.y216{bottom:146.615733pt;}
.y26a{bottom:148.468133pt;}
.y309{bottom:150.856133pt;}
.y2d9{bottom:154.641733pt;}
.y2a1{bottom:158.416133pt;}
.y337{bottom:158.418000pt;}
.y269{bottom:160.468133pt;}
.y116{bottom:162.267733pt;}
.yda{bottom:162.279733pt;}
.y22f{bottom:162.283733pt;}
.y161{bottom:162.291733pt;}
.y1aa{bottom:162.299733pt;}
.y10a{bottom:162.303733pt;}
.yed{bottom:162.351733pt;}
.y86{bottom:162.375733pt;}
.y1e8{bottom:162.431733pt;}
.y1d7{bottom:162.439733pt;}
.y215{bottom:162.611733pt;}
.y308{bottom:162.856133pt;}
.y2d8{bottom:166.641733pt;}
.y2a0{bottom:170.416133pt;}
.y336{bottom:170.418000pt;}
.y268{bottom:172.468133pt;}
.y307{bottom:174.856133pt;}
.y166{bottom:178.267733pt;}
.yd9{bottom:178.275733pt;}
.y22e{bottom:178.279733pt;}
.y160{bottom:178.287733pt;}
.y1a9{bottom:178.295733pt;}
.y109{bottom:178.299733pt;}
.y23b{bottom:178.331733pt;}
.y188{bottom:178.347733pt;}
.y85{bottom:178.371733pt;}
.y1e7{bottom:178.427733pt;}
.y1d6{bottom:178.435733pt;}
.yb2{bottom:178.551733pt;}
.y214{bottom:178.607733pt;}
.y2d7{bottom:178.641733pt;}
.y335{bottom:182.418000pt;}
.y29f{bottom:186.196133pt;}
.y267{bottom:188.248133pt;}
.y306{bottom:190.636133pt;}
.y2d6{bottom:190.641733pt;}
.y19{bottom:191.210000pt;}
.y165{bottom:194.267733pt;}
.yd8{bottom:194.271733pt;}
.y115{bottom:194.275733pt;}
.y15f{bottom:194.283733pt;}
.y1a8{bottom:194.291733pt;}
.y108{bottom:194.295733pt;}
.y23a{bottom:194.327733pt;}
.y187{bottom:194.343733pt;}
.yec{bottom:194.355733pt;}
.y84{bottom:194.367733pt;}
.y1e6{bottom:194.423733pt;}
.y1d5{bottom:194.431733pt;}
.yb1{bottom:194.547733pt;}
.y213{bottom:194.603733pt;}
.y29e{bottom:198.196133pt;}
.y334{bottom:198.198000pt;}
.y266{bottom:200.248133pt;}
.y305{bottom:202.636133pt;}
.y18{bottom:204.543200pt;}
.y2d5{bottom:206.406133pt;}
.y29d{bottom:210.196133pt;}
.y333{bottom:210.198000pt;}
.yd7{bottom:210.267733pt;}
.y114{bottom:210.271733pt;}
.y15e{bottom:210.279733pt;}
.y1a7{bottom:210.287733pt;}
.y107{bottom:210.291733pt;}
.y239{bottom:210.323733pt;}
.y186{bottom:210.339733pt;}
.yeb{bottom:210.351733pt;}
.y83{bottom:210.363733pt;}
.y1e5{bottom:210.419733pt;}
.y1d4{bottom:210.427733pt;}
.yb0{bottom:210.543733pt;}
.y212{bottom:210.599733pt;}
.y265{bottom:212.248133pt;}
.y304{bottom:214.636133pt;}
.y2d4{bottom:218.406133pt;}
.y29c{bottom:222.196133pt;}
.y332{bottom:222.198000pt;}
.y264{bottom:224.248133pt;}
.y113{bottom:226.267733pt;}
.y139{bottom:226.275733pt;}
.y1a6{bottom:226.283733pt;}
.y106{bottom:226.287733pt;}
.y238{bottom:226.319733pt;}
.y185{bottom:226.335733pt;}
.yea{bottom:226.347733pt;}
.y82{bottom:226.359733pt;}
.y1e4{bottom:226.415733pt;}
.y1d3{bottom:226.423733pt;}
.yaf{bottom:226.539733pt;}
.y211{bottom:226.595733pt;}
.y303{bottom:226.636133pt;}
.y17{bottom:229.215200pt;}
.y2d3{bottom:230.406133pt;}
.y29b{bottom:234.196133pt;}
.y331{bottom:237.978000pt;}
.y302{bottom:238.636133pt;}
.y263{bottom:240.028133pt;}
.y13e{bottom:242.267733pt;}
.y138{bottom:242.271733pt;}
.y112{bottom:242.275733pt;}
.y1a5{bottom:242.279733pt;}
.y105{bottom:242.283733pt;}
.y22d{bottom:242.315733pt;}
.yd6{bottom:242.323733pt;}
.y184{bottom:242.331733pt;}
.ye9{bottom:242.343733pt;}
.y81{bottom:242.355733pt;}
.y1e3{bottom:242.411733pt;}
.y1d2{bottom:242.419733pt;}
.yae{bottom:242.535733pt;}
.y210{bottom:242.591733pt;}
.y16{bottom:245.215200pt;}
.y2d2{bottom:246.186133pt;}
.y29a{bottom:246.196133pt;}
.y330{bottom:249.978000pt;}
.y301{bottom:250.636133pt;}
.y262{bottom:252.028133pt;}
.y2d1{bottom:258.186133pt;}
.y299{bottom:258.196133pt;}
.y137{bottom:258.267733pt;}
.y111{bottom:258.271733pt;}
.y1a4{bottom:258.275733pt;}
.y104{bottom:258.279733pt;}
.y22c{bottom:258.311733pt;}
.yd5{bottom:258.319733pt;}
.y183{bottom:258.327733pt;}
.ye8{bottom:258.339733pt;}
.y80{bottom:258.351733pt;}
.y1e2{bottom:258.407733pt;}
.y1d1{bottom:258.415733pt;}
.yad{bottom:258.531733pt;}
.y20f{bottom:258.587733pt;}
.y15{bottom:261.215200pt;}
.y32f{bottom:261.978000pt;}
.y261{bottom:264.028133pt;}
.y300{bottom:266.416133pt;}
.y2d0{bottom:270.186133pt;}
.y298{bottom:273.976133pt;}
.y110{bottom:274.267733pt;}
.y1a3{bottom:274.271733pt;}
.y103{bottom:274.275733pt;}
.y22b{bottom:274.307733pt;}
.yd4{bottom:274.315733pt;}
.y182{bottom:274.323733pt;}
.ye7{bottom:274.335733pt;}
.y7f{bottom:274.347733pt;}
.y1e1{bottom:274.403733pt;}
.y1d0{bottom:274.411733pt;}
.yac{bottom:274.527733pt;}
.y20e{bottom:274.583733pt;}
.y260{bottom:276.028133pt;}
.y14{bottom:277.215200pt;}
.y41{bottom:277.315733pt;}
.y32e{bottom:277.758000pt;}
.y2ff{bottom:278.416133pt;}
.y2cf{bottom:282.186133pt;}
.y297{bottom:285.976133pt;}
.y32d{bottom:289.758000pt;}
.y13d{bottom:290.267733pt;}
.y102{bottom:290.271733pt;}
.y22a{bottom:290.303733pt;}
.yd3{bottom:290.311733pt;}
.y10f{bottom:290.319733pt;}
.ye6{bottom:290.331733pt;}
.y7e{bottom:290.343733pt;}
.y1e0{bottom:290.399733pt;}
.y1cf{bottom:290.407733pt;}
.y2fe{bottom:290.416133pt;}
.yab{bottom:290.523733pt;}
.y20d{bottom:290.579733pt;}
.y25f{bottom:291.808133pt;}
.y40{bottom:291.979733pt;}
.y13{bottom:293.215200pt;}
.y2ce{bottom:294.186133pt;}
.y296{bottom:297.976133pt;}
.y32c{bottom:301.758000pt;}
.y2fd{bottom:302.416133pt;}
.y25e{bottom:303.808133pt;}
.y2cd{bottom:306.186133pt;}
.y101{bottom:306.267733pt;}
.y1a2{bottom:306.275733pt;}
.y229{bottom:306.299733pt;}
.yd2{bottom:306.307733pt;}
.y10e{bottom:306.315733pt;}
.ye5{bottom:306.327733pt;}
.y7d{bottom:306.339733pt;}
.y1df{bottom:306.395733pt;}
.y1ce{bottom:306.403733pt;}
.yaa{bottom:306.519733pt;}
.y20c{bottom:306.575733pt;}
.y12{bottom:312.767200pt;}
.y295{bottom:313.756133pt;}
.y32b{bottom:313.758000pt;}
.y25d{bottom:315.808133pt;}
.y2fc{bottom:318.196133pt;}
.y3f{bottom:321.763733pt;}
.y2cc{bottom:321.966133pt;}
.y373{bottom:322.267733pt;}
.y1a1{bottom:322.271733pt;}
.y228{bottom:322.295733pt;}
.yd1{bottom:322.303733pt;}
.ye4{bottom:322.323733pt;}
.y7c{bottom:322.335733pt;}
.y1de{bottom:322.391733pt;}
.y1cd{bottom:322.399733pt;}
.ya9{bottom:322.515733pt;}
.y20b{bottom:322.571733pt;}
.y11{bottom:325.215200pt;}
.y294{bottom:325.756133pt;}
.y25c{bottom:327.808133pt;}
.y32a{bottom:329.538000pt;}
.y2fb{bottom:330.196133pt;}
.y35b{bottom:330.200800pt;}
.y2cb{bottom:333.966133pt;}
.y293{bottom:337.756133pt;}
.y3e{bottom:337.771733pt;}
.y1a0{bottom:338.267733pt;}
.y227{bottom:338.291733pt;}
.yd0{bottom:338.299733pt;}
.ye3{bottom:338.319733pt;}
.y7b{bottom:338.331733pt;}
.y1dd{bottom:338.387733pt;}
.y1cc{bottom:338.395733pt;}
.ya8{bottom:338.511733pt;}
.y20a{bottom:338.567733pt;}
.y25b{bottom:339.808133pt;}
.y10{bottom:341.215200pt;}
.y5c{bottom:341.319733pt;}
.y329{bottom:341.538000pt;}
.y35a{bottom:342.200800pt;}
.y2ca{bottom:345.966133pt;}
.y2fa{bottom:345.976133pt;}
.y15d{bottom:349.152800pt;}
.y292{bottom:349.756133pt;}
.y136{bottom:351.822133pt;}
.y181{bottom:351.906133pt;}
.y328{bottom:353.538000pt;}
.y3d{bottom:353.767733pt;}
.y19f{bottom:354.267733pt;}
.y226{bottom:354.287733pt;}
.ycf{bottom:354.295733pt;}
.ye2{bottom:354.315733pt;}
.y7a{bottom:354.327733pt;}
.y1dc{bottom:354.383733pt;}
.y1cb{bottom:354.391733pt;}
.ya7{bottom:354.507733pt;}
.y209{bottom:354.563733pt;}
.y25a{bottom:355.588133pt;}
.y5b{bottom:355.983733pt;}
.yf{bottom:357.215200pt;}
.y2c9{bottom:357.966133pt;}
.y2f9{bottom:357.976133pt;}
.y359{bottom:357.977600pt;}
.y15c{bottom:361.155467pt;}
.y291{bottom:361.756133pt;}
.y135{bottom:363.824800pt;}
.y180{bottom:363.908800pt;}
.y327{bottom:365.538000pt;}
.y259{bottom:367.588133pt;}
.y3c{bottom:369.763733pt;}
.y2c8{bottom:369.966133pt;}
.y2f8{bottom:369.976133pt;}
.y358{bottom:369.977600pt;}
.y19e{bottom:370.267733pt;}
.y225{bottom:370.283733pt;}
.yce{bottom:370.291733pt;}
.ye1{bottom:370.311733pt;}
.y79{bottom:370.323733pt;}
.y1db{bottom:370.379733pt;}
.y1ca{bottom:370.387733pt;}
.ya6{bottom:370.503733pt;}
.y208{bottom:370.559733pt;}
.ye{bottom:376.767200pt;}
.y290{bottom:377.536133pt;}
.y326{bottom:377.538000pt;}
.y15b{bottom:378.739467pt;}
.y258{bottom:379.588133pt;}
.y134{bottom:381.408800pt;}
.y17f{bottom:381.492800pt;}
.y2f7{bottom:381.976133pt;}
.y357{bottom:381.977600pt;}
.y2c7{bottom:385.746133pt;}
.y5a{bottom:385.767733pt;}
.y3b{bottom:385.775733pt;}
.y372{bottom:386.267733pt;}
.y224{bottom:386.279733pt;}
.ycd{bottom:386.287733pt;}
.ye0{bottom:386.307733pt;}
.y78{bottom:386.319733pt;}
.y19d{bottom:386.375733pt;}
.y1c9{bottom:386.383733pt;}
.ya5{bottom:386.499733pt;}
.y207{bottom:386.555733pt;}
.y28f{bottom:389.536133pt;}
.y325{bottom:389.538000pt;}
.y15a{bottom:390.742133pt;}
.y257{bottom:391.588133pt;}
.yd{bottom:392.989467pt;}
.y133{bottom:393.411467pt;}
.y17e{bottom:393.495467pt;}
.y2f6{bottom:393.976133pt;}
.y356{bottom:393.977600pt;}
.y2c6{bottom:397.746133pt;}
.y28e{bottom:401.536133pt;}
.y324{bottom:401.538000pt;}
.y59{bottom:401.763733pt;}
.y3a{bottom:401.771733pt;}
.y223{bottom:402.275733pt;}
.ycc{bottom:402.283733pt;}
.ydf{bottom:402.303733pt;}
.y77{bottom:402.315733pt;}
.y371{bottom:402.327733pt;}
.y19c{bottom:402.371733pt;}
.y1c8{bottom:402.379733pt;}
.ya4{bottom:402.495733pt;}
.y206{bottom:402.551733pt;}
.y2f5{bottom:405.976133pt;}
.y256{bottom:407.368133pt;}
.y159{bottom:408.326133pt;}
.y2c5{bottom:409.746133pt;}
.y355{bottom:409.757600pt;}
.y132{bottom:410.995467pt;}
.y17d{bottom:411.079467pt;}
.yc{bottom:411.661467pt;}
.y28d{bottom:413.536133pt;}
.y323{bottom:413.538000pt;}
.y39{bottom:417.767733pt;}
.y58{bottom:417.795733pt;}
.y2f4{bottom:417.976133pt;}
.y222{bottom:418.271733pt;}
.ycb{bottom:418.279733pt;}
.yde{bottom:418.299733pt;}
.y76{bottom:418.311733pt;}
.y19b{bottom:418.367733pt;}
.y1c7{bottom:418.375733pt;}
.ya3{bottom:418.491733pt;}
.y205{bottom:418.547733pt;}
.y255{bottom:419.368133pt;}
.y158{bottom:420.328800pt;}
.y2c4{bottom:421.746133pt;}
.y354{bottom:421.757600pt;}
.y131{bottom:422.998133pt;}
.y17c{bottom:423.082133pt;}
.y322{bottom:425.538000pt;}
.y28c{bottom:429.316133pt;}
.y254{bottom:431.368133pt;}
.y2f3{bottom:433.756133pt;}
.y353{bottom:433.757600pt;}
.y38{bottom:433.763733pt;}
.y57{bottom:433.791733pt;}
.y221{bottom:434.267733pt;}
.yca{bottom:434.275733pt;}
.y75{bottom:434.307733pt;}
.y370{bottom:434.331733pt;}
.y19a{bottom:434.363733pt;}
.y1c6{bottom:434.371733pt;}
.ya2{bottom:434.487733pt;}
.y204{bottom:434.543733pt;}
.y2c3{bottom:437.526133pt;}
.y321{bottom:437.538000pt;}
.y157{bottom:437.912800pt;}
.y130{bottom:440.582133pt;}
.y17b{bottom:440.666133pt;}
.y28b{bottom:441.316133pt;}
.y253{bottom:443.368133pt;}
.y2f2{bottom:445.756133pt;}
.y352{bottom:445.757600pt;}
.y2c2{bottom:449.526133pt;}
.y320{bottom:449.538000pt;}
.y56{bottom:449.787733pt;}
.y37{bottom:449.791733pt;}
.y156{bottom:449.915467pt;}
.yc9{bottom:450.271733pt;}
.y237{bottom:450.275733pt;}
.y74{bottom:450.303733pt;}
.y36f{bottom:450.327733pt;}
.y199{bottom:450.359733pt;}
.y1c5{bottom:450.367733pt;}
.ya1{bottom:450.483733pt;}
.y203{bottom:450.539733pt;}
.y12f{bottom:452.584800pt;}
.y17a{bottom:452.668800pt;}
.y28a{bottom:453.316133pt;}
.y252{bottom:455.368133pt;}
.y2f1{bottom:457.756133pt;}
.y351{bottom:457.757600pt;}
.y2c1{bottom:461.526133pt;}
.y31f{bottom:461.538000pt;}
.y289{bottom:465.316133pt;}
.y55{bottom:465.783733pt;}
.y36{bottom:465.787733pt;}
.yc8{bottom:466.267733pt;}
.y236{bottom:466.271733pt;}
.y73{bottom:466.299733pt;}
.y36e{bottom:466.323733pt;}
.y198{bottom:466.355733pt;}
.y1c4{bottom:466.363733pt;}
.ya0{bottom:466.479733pt;}
.y202{bottom:466.535733pt;}
.y155{bottom:467.499467pt;}
.y2f0{bottom:469.756133pt;}
.y350{bottom:469.757600pt;}
.y12e{bottom:470.168800pt;}
.y179{bottom:470.252800pt;}
.y251{bottom:471.148133pt;}
.y2c0{bottom:473.526133pt;}
.y288{bottom:477.316133pt;}
.y31e{bottom:477.318000pt;}
.y154{bottom:479.502133pt;}
.y54{bottom:481.779733pt;}
.y35{bottom:481.783733pt;}
.y12d{bottom:482.171467pt;}
.y178{bottom:482.255467pt;}
.y235{bottom:482.267733pt;}
.y220{bottom:482.275733pt;}
.y72{bottom:482.295733pt;}
.yc7{bottom:482.315733pt;}
.y36d{bottom:482.319733pt;}
.y197{bottom:482.351733pt;}
.y1c3{bottom:482.359733pt;}
.y9f{bottom:482.475733pt;}
.y201{bottom:482.531733pt;}
.y250{bottom:483.148133pt;}
.y1e{bottom:483.964533pt;}
.y2ef{bottom:485.536133pt;}
.y34f{bottom:485.537600pt;}
.y2bf{bottom:489.306133pt;}
.y287{bottom:489.316133pt;}
.y31d{bottom:489.318000pt;}
.y24f{bottom:495.148133pt;}
.y153{bottom:497.086133pt;}
.y2ee{bottom:497.536133pt;}
.y34e{bottom:497.537600pt;}
.y53{bottom:497.775733pt;}
.y34{bottom:497.779733pt;}
.y21f{bottom:498.271733pt;}
.y234{bottom:498.279733pt;}
.y71{bottom:498.291733pt;}
.y36c{bottom:498.315733pt;}
.y196{bottom:498.347733pt;}
.y1c2{bottom:498.355733pt;}
.y9e{bottom:498.471733pt;}
.y200{bottom:498.527733pt;}
.y12c{bottom:499.755467pt;}
.y177{bottom:499.839467pt;}
.y2be{bottom:501.306133pt;}
.y286{bottom:501.316133pt;}
.y31c{bottom:501.318000pt;}
.y1d{bottom:505.300533pt;}
.y24e{bottom:507.148133pt;}
.y152{bottom:509.088800pt;}
.y2ed{bottom:509.536133pt;}
.y34d{bottom:509.537600pt;}
.y12b{bottom:511.758133pt;}
.y176{bottom:511.842133pt;}
.y2bd{bottom:513.306133pt;}
.y52{bottom:513.771733pt;}
.y33{bottom:513.775733pt;}
.y21e{bottom:514.267733pt;}
.y233{bottom:514.275733pt;}
.y70{bottom:514.287733pt;}
.y36b{bottom:514.311733pt;}
.yc6{bottom:514.319733pt;}
.y195{bottom:514.343733pt;}
.y1c1{bottom:514.351733pt;}
.y9d{bottom:514.467733pt;}
.y1ff{bottom:514.523733pt;}
.y285{bottom:517.096133pt;}
.y31b{bottom:517.098000pt;}
.y24d{bottom:519.148133pt;}
.y2bc{bottom:525.306133pt;}
.y2ec{bottom:525.316133pt;}
.y34c{bottom:525.317600pt;}
.y151{bottom:526.672800pt;}
.y284{bottom:529.096133pt;}
.y31a{bottom:529.098000pt;}
.y12a{bottom:529.342133pt;}
.y175{bottom:529.426133pt;}
.y51{bottom:529.767733pt;}
.y32{bottom:529.771733pt;}
.y232{bottom:530.271733pt;}
.y6f{bottom:530.283733pt;}
.y21d{bottom:530.295733pt;}
.y36a{bottom:530.307733pt;}
.yc5{bottom:530.315733pt;}
.y194{bottom:530.339733pt;}
.y1c0{bottom:530.347733pt;}
.y9c{bottom:530.463733pt;}
.y1fe{bottom:530.519733pt;}
.y24c{bottom:534.928133pt;}
.y2eb{bottom:537.316133pt;}
.y34b{bottom:537.317600pt;}
.y150{bottom:538.675467pt;}
.y2bb{bottom:541.086133pt;}
.y283{bottom:541.096133pt;}
.y319{bottom:541.098000pt;}
.y129{bottom:541.344800pt;}
.y174{bottom:541.428800pt;}
.y1c{bottom:545.531467pt;}
.y50{bottom:545.763733pt;}
.y31{bottom:545.767733pt;}
.y231{bottom:546.267733pt;}
.y6e{bottom:546.279733pt;}
.y21c{bottom:546.291733pt;}
.y369{bottom:546.303733pt;}
.yc4{bottom:546.311733pt;}
.y193{bottom:546.335733pt;}
.y1bf{bottom:546.343733pt;}
.y9b{bottom:546.459733pt;}
.y1fd{bottom:546.515733pt;}
.y24b{bottom:546.928133pt;}
.y2ea{bottom:549.316133pt;}
.y2ba{bottom:553.086133pt;}
.y282{bottom:553.096133pt;}
.y34a{bottom:553.097600pt;}
.y100{bottom:555.111467pt;}
.y14f{bottom:556.259467pt;}
.y318{bottom:556.878000pt;}
.y24a{bottom:558.928133pt;}
.y128{bottom:558.928800pt;}
.y173{bottom:559.012800pt;}
.y2e9{bottom:561.316133pt;}
.y30{bottom:561.763733pt;}
.y4f{bottom:561.767733pt;}
.y6d{bottom:562.275733pt;}
.y21b{bottom:562.287733pt;}
.y368{bottom:562.299733pt;}
.yc3{bottom:562.307733pt;}
.y230{bottom:562.319733pt;}
.y192{bottom:562.331733pt;}
.y1be{bottom:562.339733pt;}
.y9a{bottom:562.455733pt;}
.y1fc{bottom:562.511733pt;}
.y281{bottom:565.096133pt;}
.y349{bottom:565.097600pt;}
.y14e{bottom:568.262133pt;}
.y2b9{bottom:568.866133pt;}
.y317{bottom:568.878000pt;}
.y1b{bottom:569.531467pt;}
.y249{bottom:570.928133pt;}
.y127{bottom:570.931467pt;}
.y172{bottom:571.015467pt;}
.yff{bottom:572.695467pt;}
.y2e8{bottom:577.096133pt;}
.y348{bottom:577.097600pt;}
.y4e{bottom:577.763733pt;}
.y2f{bottom:577.791733pt;}
.y6c{bottom:578.271733pt;}
.y21a{bottom:578.283733pt;}
.y367{bottom:578.295733pt;}
.yc2{bottom:578.303733pt;}
.y191{bottom:578.327733pt;}
.y1bd{bottom:578.335733pt;}
.y99{bottom:578.451733pt;}
.y1fb{bottom:578.507733pt;}
.y2b8{bottom:580.866133pt;}
.y280{bottom:580.876133pt;}
.y316{bottom:580.878000pt;}
.y248{bottom:582.928133pt;}
.y14d{bottom:585.846133pt;}
.y126{bottom:588.515467pt;}
.y171{bottom:588.599467pt;}
.y2e7{bottom:589.096133pt;}
.yfe{bottom:590.279467pt;}
.y2b7{bottom:592.866133pt;}
.y27f{bottom:592.876133pt;}
.y347{bottom:592.877600pt;}
.y1a{bottom:593.531467pt;}
.y2e{bottom:593.787733pt;}
.y4d{bottom:593.791733pt;}
.y6b{bottom:594.267733pt;}
.y219{bottom:594.279733pt;}
.y366{bottom:594.291733pt;}
.yc1{bottom:594.299733pt;}
.y190{bottom:594.323733pt;}
.y1bc{bottom:594.331733pt;}
.y98{bottom:594.447733pt;}
.y1fa{bottom:594.503733pt;}
.y247{bottom:594.928133pt;}
.y315{bottom:596.657467pt;}
.y14c{bottom:597.848800pt;}
.y125{bottom:600.518133pt;}
.y170{bottom:600.602133pt;}
.y2e6{bottom:601.096133pt;}
.y2b6{bottom:604.866133pt;}
.y27e{bottom:604.876133pt;}
.y346{bottom:604.877600pt;}
.yfd{bottom:607.863467pt;}
.y314{bottom:608.657467pt;}
.y2d{bottom:609.783733pt;}
.y4c{bottom:609.787733pt;}
.y376{bottom:610.267733pt;}
.y6a{bottom:610.275733pt;}
.y365{bottom:610.287733pt;}
.yc0{bottom:610.295733pt;}
.y18f{bottom:610.319733pt;}
.y1bb{bottom:610.327733pt;}
.y97{bottom:610.443733pt;}
.y1f9{bottom:610.499733pt;}
.y246{bottom:610.708133pt;}
.y2e5{bottom:613.096133pt;}
.y14b{bottom:615.432800pt;}
.y2b5{bottom:616.866133pt;}
.y27d{bottom:616.876133pt;}
.y345{bottom:616.877600pt;}
.y124{bottom:618.102133pt;}
.y16f{bottom:618.186133pt;}
.y313{bottom:620.657467pt;}
.y245{bottom:622.708133pt;}
.yfc{bottom:625.447467pt;}
.y2c{bottom:625.779733pt;}
.y4b{bottom:625.783733pt;}
.y375{bottom:626.267733pt;}
.y69{bottom:626.271733pt;}
.y364{bottom:626.283733pt;}
.ybf{bottom:626.291733pt;}
.y18e{bottom:626.315733pt;}
.y1ba{bottom:626.323733pt;}
.y96{bottom:626.439733pt;}
.y1f8{bottom:626.495733pt;}
.y14a{bottom:627.435467pt;}
.y2e4{bottom:628.876133pt;}
.y344{bottom:628.877600pt;}
.y123{bottom:630.104800pt;}
.y16e{bottom:630.188800pt;}
.y2b4{bottom:632.646133pt;}
.y27c{bottom:632.656133pt;}
.y312{bottom:632.657467pt;}
.y244{bottom:634.708133pt;}
.y2e3{bottom:640.876133pt;}
.y343{bottom:640.877600pt;}
.y2b{bottom:641.775733pt;}
.y4a{bottom:641.779733pt;}
.y68{bottom:642.267733pt;}
.y363{bottom:642.279733pt;}
.ybe{bottom:642.287733pt;}
.y18d{bottom:642.311733pt;}
.y1b9{bottom:642.319733pt;}
.y95{bottom:642.435733pt;}
.y1f7{bottom:642.491733pt;}
.yb{bottom:643.023600pt;}
.yfb{bottom:643.031467pt;}
.y2b3{bottom:644.646133pt;}
.y27b{bottom:644.656133pt;}
.y311{bottom:644.657467pt;}
.y149{bottom:645.019467pt;}
.y122{bottom:647.688800pt;}
.y16d{bottom:647.772800pt;}
.y243{bottom:650.488133pt;}
.y2e2{bottom:652.876133pt;}
.y342{bottom:652.877600pt;}
.y2b2{bottom:656.646133pt;}
.y27a{bottom:656.656133pt;}
.y310{bottom:656.657467pt;}
.y148{bottom:657.022133pt;}
.y2a{bottom:657.771733pt;}
.y49{bottom:657.775733pt;}
.y67{bottom:658.267733pt;}
.y362{bottom:658.275733pt;}
.ybd{bottom:658.283733pt;}
.y18c{bottom:658.307733pt;}
.y1b8{bottom:658.315733pt;}
.y94{bottom:658.431733pt;}
.y1f6{bottom:658.487733pt;}
.y121{bottom:659.691467pt;}
.y16c{bottom:659.775467pt;}
.yfa{bottom:660.615467pt;}
.y242{bottom:662.488133pt;}
.y2b1{bottom:668.646133pt;}
.y279{bottom:668.656133pt;}
.y30f{bottom:668.657467pt;}
.y341{bottom:668.657600pt;}
.y29{bottom:673.767733pt;}
.y48{bottom:673.771733pt;}
.y374{bottom:674.267733pt;}
.y361{bottom:674.271733pt;}
.y66{bottom:674.275733pt;}
.y18b{bottom:674.303733pt;}
.y1b7{bottom:674.311733pt;}
.y93{bottom:674.427733pt;}
.y1f5{bottom:674.483733pt;}
.y241{bottom:674.488133pt;}
.y147{bottom:674.606133pt;}
.y120{bottom:677.275467pt;}
.y16b{bottom:677.359467pt;}
.yf9{bottom:678.199467pt;}
.y2e1{bottom:680.656133pt;}
.y340{bottom:680.657600pt;}
.y2b0{bottom:684.426133pt;}
.y278{bottom:684.436133pt;}
.y146{bottom:686.608800pt;}
.y11f{bottom:689.278133pt;}
.y16a{bottom:689.362133pt;}
.y28{bottom:689.763733pt;}
.y47{bottom:689.767733pt;}
.y360{bottom:690.267733pt;}
.y65{bottom:690.271733pt;}
.ybc{bottom:690.287733pt;}
.y18a{bottom:690.299733pt;}
.y1b6{bottom:690.307733pt;}
.y92{bottom:690.423733pt;}
.y1f4{bottom:690.479733pt;}
.y2e0{bottom:692.656133pt;}
.y33f{bottom:692.657600pt;}
.yf8{bottom:695.783467pt;}
.y2af{bottom:696.426133pt;}
.y277{bottom:696.436133pt;}
.y145{bottom:704.192800pt;}
.y33e{bottom:704.657600pt;}
.y46{bottom:705.763733pt;}
.y27{bottom:705.783733pt;}
.y64{bottom:706.267733pt;}
.y189{bottom:706.295733pt;}
.y1b5{bottom:706.303733pt;}
.y91{bottom:706.419733pt;}
.y1f3{bottom:706.475733pt;}
.y11e{bottom:706.862133pt;}
.y169{bottom:706.946133pt;}
.y5{bottom:707.245200pt;}
.y2ae{bottom:708.426133pt;}
.y276{bottom:708.436133pt;}
.yf7{bottom:713.367467pt;}
.y144{bottom:716.195467pt;}
.y11d{bottom:718.864800pt;}
.y168{bottom:718.948800pt;}
.y2ad{bottom:720.426133pt;}
.y275{bottom:720.436133pt;}
.y33d{bottom:720.437067pt;}
.y45{bottom:721.775733pt;}
.y26{bottom:721.779733pt;}
.y35f{bottom:722.267733pt;}
.y240{bottom:722.275733pt;}
.y63{bottom:722.283733pt;}
.ybb{bottom:722.291733pt;}
.y1b4{bottom:722.299733pt;}
.y90{bottom:722.415733pt;}
.y1f2{bottom:722.471733pt;}
.yf6{bottom:730.951467pt;}
.y2ac{bottom:732.426133pt;}
.y274{bottom:732.436133pt;}
.y33c{bottom:732.437067pt;}
.y143{bottom:733.779467pt;}
.y2df{bottom:736.216133pt;}
.y11c{bottom:736.448800pt;}
.y167{bottom:736.532800pt;}
.y44{bottom:737.771733pt;}
.y25{bottom:737.775733pt;}
.y35e{bottom:738.267733pt;}
.y23f{bottom:738.271733pt;}
.y62{bottom:738.279733pt;}
.yba{bottom:738.287733pt;}
.y1b3{bottom:738.295733pt;}
.y8f{bottom:738.411733pt;}
.y1f1{bottom:738.467733pt;}
.y2ab{bottom:744.426133pt;}
.y33b{bottom:744.437067pt;}
.y142{bottom:745.782133pt;}
.y30e{bottom:748.206133pt;}
.y273{bottom:748.216133pt;}
.y11b{bottom:748.451467pt;}
.yf5{bottom:748.535467pt;}
.y4{bottom:749.677200pt;}
.y43{bottom:753.767733pt;}
.y24{bottom:753.771733pt;}
.y23e{bottom:754.267733pt;}
.y61{bottom:754.275733pt;}
.yb9{bottom:754.283733pt;}
.y1b2{bottom:754.291733pt;}
.y8e{bottom:754.407733pt;}
.y1f0{bottom:754.463733pt;}
.y2aa{bottom:760.206133pt;}
.y272{bottom:760.216133pt;}
.y141{bottom:763.366133pt;}
.y11a{bottom:766.035467pt;}
.yf4{bottom:766.119467pt;}
.y42{bottom:769.763733pt;}
.y23{bottom:769.767733pt;}
.y35d{bottom:770.267733pt;}
.y60{bottom:770.271733pt;}
.yb8{bottom:770.279733pt;}
.y1b1{bottom:770.287733pt;}
.y8d{bottom:770.403733pt;}
.y1ef{bottom:770.459733pt;}
.y2a9{bottom:772.206133pt;}
.y271{bottom:772.216133pt;}
.y140{bottom:780.950133pt;}
.yf3{bottom:783.703467pt;}
.y2a8{bottom:784.206133pt;}
.y270{bottom:784.216133pt;}
.y22{bottom:785.763733pt;}
.y5f{bottom:786.267733pt;}
.yb7{bottom:786.275733pt;}
.y1b0{bottom:786.283733pt;}
.y8c{bottom:786.399733pt;}
.y1ee{bottom:786.455733pt;}
.y30d{bottom:787.986133pt;}
.y2de{bottom:787.996133pt;}
.y2a7{bottom:796.206133pt;}
.y26f{bottom:796.216133pt;}
.y13f{bottom:798.534133pt;}
.y30c{bottom:799.986133pt;}
.y2dd{bottom:799.996133pt;}
.yf2{bottom:801.287467pt;}
.y5e{bottom:802.267733pt;}
.yb6{bottom:802.271733pt;}
.y1af{bottom:802.279733pt;}
.y23d{bottom:802.283733pt;}
.y8b{bottom:802.395733pt;}
.y1ed{bottom:802.451733pt;}
.y21{bottom:809.322800pt;}
.y2a6{bottom:811.986133pt;}
.y26e{bottom:811.996133pt;}
.y5d{bottom:818.267733pt;}
.y1ae{bottom:818.275733pt;}
.y23c{bottom:818.279733pt;}
.y8a{bottom:818.391733pt;}
.y1ec{bottom:818.447733pt;}
.yf1{bottom:818.871467pt;}
.y2a5{bottom:823.986133pt;}
.y26d{bottom:823.996133pt;}
.y1f{bottom:874.897733pt;}
.y8{bottom:941.716667pt;}
.y3{bottom:948.763600pt;}
.y7{bottom:956.116667pt;}
.y2{bottom:976.771600pt;}
.hb{height:25.042000pt;}
.h16{height:29.385417pt;}
.h15{height:33.960938pt;}
.h14{height:34.343750pt;}
.h13{height:35.036458pt;}
.h18{height:36.386719pt;}
.h17{height:36.796875pt;}
.he{height:38.812500pt;}
.h9{height:39.250000pt;}
.hf{height:40.041667pt;}
.h7{height:43.664062pt;}
.h10{height:44.156250pt;}
.h12{height:44.812500pt;}
.h8{height:45.046875pt;}
.ha{height:45.068208pt;}
.h6{height:50.052083pt;}
.h5{height:59.260866pt;}
.h2{height:63.070312pt;}
.h11{height:63.781250pt;}
.hd{height:70.072917pt;}
.hc{height:80.083333pt;}
.h4{height:83.406250pt;}
.h3{height:90.093750pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:37.795333pt;}
.x1d{left:75.590533pt;}
.xf{left:76.610667pt;}
.xd{left:77.851600pt;}
.x84{left:79.568267pt;}
.xe{left:80.570933pt;}
.xa{left:81.654267pt;}
.x10{left:84.212933pt;}
.x15{left:85.415200pt;}
.xc{left:90.047467pt;}
.x1a{left:94.654800pt;}
.x17{left:115.455867pt;}
.x14{left:119.761867pt;}
.x11{left:132.780667pt;}
.x12{left:135.161467pt;}
.x18{left:147.021200pt;}
.x2{left:152.126000pt;}
.xb{left:156.206533pt;}
.x97{left:204.504267pt;}
.x8c{left:205.409600pt;}
.x95{left:208.946933pt;}
.x71{left:210.155200pt;}
.x6a{left:211.293867pt;}
.x3a{left:212.211200pt;}
.x22{left:214.264533pt;}
.x80{left:216.240533pt;}
.x81{left:217.379200pt;}
.x66{left:218.639200pt;}
.x2f{left:220.331200pt;}
.x64{left:223.091200pt;}
.x5a{left:224.528533pt;}
.x21{left:227.723200pt;}
.x49{left:232.965867pt;}
.x3e{left:233.889867pt;}
.x4{left:241.635733pt;}
.x48{left:273.864533pt;}
.x93{left:274.896267pt;}
.x72{left:276.421867pt;}
.x7c{left:278.792533pt;}
.x75{left:281.368533pt;}
.x1f{left:282.705867pt;}
.x8d{left:284.108267pt;}
.x4b{left:286.212533pt;}
.x61{left:287.127200pt;}
.x24{left:289.089867pt;}
.x20{left:290.947200pt;}
.x33{left:292.571200pt;}
.x30{left:295.156533pt;}
.x4a{left:296.087200pt;}
.x57{left:298.672533pt;}
.x3b{left:301.456533pt;}
.x23{left:304.135200pt;}
.x16{left:332.007200pt;}
.x13{left:334.171733pt;}
.x85{left:335.292267pt;}
.x98{left:336.421600pt;}
.x87{left:337.345600pt;}
.x69{left:339.561867pt;}
.x6c{left:341.568533pt;}
.x79{left:343.911200pt;}
.x76{left:347.635200pt;}
.x4d{left:349.109867pt;}
.x58{left:350.248533pt;}
.x94{left:351.289600pt;}
.x86{left:352.390933pt;}
.x82{left:353.963200pt;}
.x7d{left:355.493867pt;}
.x6b{left:356.613867pt;}
.x5b{left:360.393867pt;}
.x62{left:361.588533pt;}
.x4c{left:362.708533pt;}
.x3c{left:365.753867pt;}
.x45{left:367.365867pt;}
.x25{left:376.197867pt;}
.x31{left:378.876533pt;}
.x1{left:387.244267pt;}
.x89{left:406.216267pt;}
.x1b{left:408.188933pt;}
.x6d{left:410.187200pt;}
.x1e{left:413.980267pt;}
.x88{left:415.586933pt;}
.x8f{left:418.265600pt;}
.x8{left:419.745733pt;}
.x77{left:421.751200pt;}
.x4e{left:423.963200pt;}
.x1c{left:427.086533pt;}
.x34{left:437.611200pt;}
.x26{left:438.749867pt;}
.x32{left:441.092533pt;}
.x37{left:442.231200pt;}
.x43{left:445.131200pt;}
.x3d{left:451.116533pt;}
.x38{left:454.149867pt;}
.x73{left:471.833867pt;}
.x6f{left:473.289867pt;}
.x7f{left:474.195200pt;}
.x90{left:475.338933pt;}
.x59{left:477.172533pt;}
.x50{left:478.301867pt;}
.x65{left:479.216533pt;}
.x5c{left:480.653867pt;}
.x8a{left:481.732267pt;}
.x7a{left:484.573867pt;}
.x6e{left:486.888533pt;}
.x5f{left:488.456533pt;}
.x4f{left:490.761867pt;}
.x3f{left:512.564533pt;}
.x28{left:513.575200pt;}
.x2d{left:516.160533pt;}
.x39{left:517.093867pt;}
.x44{left:519.779200pt;}
.x46{left:526.023200pt;}
.x27{left:528.620533pt;}
.x99{left:534.297600pt;}
.x74{left:536.971200pt;}
.x70{left:538.417867pt;}
.x7e{left:539.332533pt;}
.x96{left:541.353600pt;}
.x52{left:542.337867pt;}
.x92{left:544.582933pt;}
.x8e{left:547.961600pt;}
.x60{left:549.085867pt;}
.x8b{left:550.276267pt;}
.x9{left:552.435733pt;}
.x51{left:554.797867pt;}
.x40{left:578.952533pt;}
.x47{left:583.572533pt;}
.x35{left:587.047200pt;}
.x2a{left:588.400533pt;}
.x2e{left:590.985867pt;}
.x41{left:598.748533pt;}
.x9b{left:600.256267pt;}
.x42{left:602.239200pt;}
.x29{left:603.445867pt;}
.x7b{left:604.460533pt;}
.x68{left:605.477867pt;}
.x54{left:606.373867pt;}
.x91{left:607.274933pt;}
.x78{left:608.165867pt;}
.x5d{left:609.855200pt;}
.x9a{left:613.509600pt;}
.x83{left:614.512533pt;}
.x67{left:616.052533pt;}
.x63{left:617.713867pt;}
.x53{left:618.833867pt;}
.x7{left:628.326400pt;}
.x19{left:635.081333pt;}
.x6{left:637.094933pt;}
.x2c{left:666.137867pt;}
.x5{left:667.611200pt;}
.x56{left:670.717867pt;}
.x2b{left:675.508533pt;}
.x36{left:678.187200pt;}
.x55{left:680.088533pt;}
.x5e{left:682.776533pt;}
}




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