
    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_587e6de13dbb0fd8c0725288.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_29bcc944a618376d0c8cde14.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_f2e922cc3dd43665d3d70da3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_e12bc89e8e153585e588ae62.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_29c6b0bbeb78c475d3f5ebf9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.007324;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_70b4ea45d7cf9f52617d0e1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9d123f79c18df0f3368a2833.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.860840;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_50d89f56de34e1e8b53a0176.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-56.220000px;}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-5.662080px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880600px;}
.v7{vertical-align:27.352080px;}
.v4{vertical-align:32.265600px;}
.v6{vertical-align:50.400000px;}
.lsc0{letter-spacing:-1.013040px;}
.lsbf{letter-spacing:-0.964800px;}
.ls11c{letter-spacing:-0.916560px;}
.ls101{letter-spacing:-0.868320px;}
.lsc1{letter-spacing:-0.820080px;}
.ls1d{letter-spacing:-0.756000px;}
.lsa7{letter-spacing:-0.675360px;}
.ls23{letter-spacing:-0.594000px;}
.lsa0{letter-spacing:-0.578880px;}
.ls18{letter-spacing:-0.530640px;}
.lsff{letter-spacing:-0.482400px;}
.lsa6{letter-spacing:-0.478080px;}
.ls5f{letter-spacing:-0.434160px;}
.ls21{letter-spacing:-0.378000px;}
.ls52{letter-spacing:-0.341280px;}
.ls17{letter-spacing:-0.337680px;}
.ls9e{letter-spacing:-0.289440px;}
.ls9f{letter-spacing:-0.241200px;}
.ls1f{letter-spacing:-0.239040px;}
.ls1c{letter-spacing:-0.216000px;}
.ls11a{letter-spacing:-0.192960px;}
.ls81{letter-spacing:-0.179735px;}
.ls100{letter-spacing:-0.144720px;}
.ls22{letter-spacing:-0.108000px;}
.lsd5{letter-spacing:-0.096480px;}
.ls1b{letter-spacing:-0.083520px;}
.ls60{letter-spacing:-0.059760px;}
.ls27{letter-spacing:-0.056880px;}
.lsa8{letter-spacing:-0.048240px;}
.ls19{letter-spacing:-0.041760px;}
.ls16{letter-spacing:0.000000px;}
.ls94{letter-spacing:0.035856px;}
.lsa3{letter-spacing:0.048240px;}
.lsc8{letter-spacing:0.053280px;}
.ls20{letter-spacing:0.059760px;}
.ls80{letter-spacing:0.089867px;}
.ls8{letter-spacing:0.108000px;}
.lsae{letter-spacing:0.110952px;}
.ls9d{letter-spacing:0.119520px;}
.lsef{letter-spacing:0.120600px;}
.lse1{letter-spacing:0.153360px;}
.lsa9{letter-spacing:0.154368px;}
.ls6{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.167040px;}
.ls113{letter-spacing:0.172800px;}
.lsbe{letter-spacing:0.178488px;}
.ls37{letter-spacing:0.179280px;}
.ls9c{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.192960px;}
.ls55{letter-spacing:0.197784px;}
.lsa1{letter-spacing:0.202608px;}
.lsc7{letter-spacing:0.206640px;}
.ls1e{letter-spacing:0.216000px;}
.lsc3{letter-spacing:0.217080px;}
.ls91{letter-spacing:0.227520px;}
.lsb6{letter-spacing:0.239040px;}
.ls11b{letter-spacing:0.241200px;}
.ls7a{letter-spacing:0.250992px;}
.ls96{letter-spacing:0.256968px;}
.lsbd{letter-spacing:0.289440px;}
.ls15{letter-spacing:0.300672px;}
.ls10{letter-spacing:0.319536px;}
.ls1{letter-spacing:0.337680px;}
.ls2{letter-spacing:0.341280px;}
.ls5e{letter-spacing:0.358560px;}
.ls3{letter-spacing:0.360000px;}
.lsb9{letter-spacing:0.361800px;}
.lsa{letter-spacing:0.378000px;}
.ls40{letter-spacing:0.385920px;}
.ls5a{letter-spacing:0.429840px;}
.ls3a{letter-spacing:0.478080px;}
.ls25{letter-spacing:0.540000px;}
.ls43{letter-spacing:0.597600px;}
.ls2e{letter-spacing:0.657360px;}
.ls69{letter-spacing:0.717120px;}
.ls5{letter-spacing:0.720000px;}
.ls66{letter-spacing:0.737280px;}
.ls7f{letter-spacing:0.738720px;}
.ls108{letter-spacing:0.773280px;}
.ls41{letter-spacing:0.776880px;}
.ls78{letter-spacing:0.832968px;}
.ls2a{letter-spacing:0.836640px;}
.ls14{letter-spacing:0.896400px;}
.lsb0{letter-spacing:0.902376px;}
.ls6f{letter-spacing:0.908640px;}
.lsc5{letter-spacing:0.916560px;}
.lsb3{letter-spacing:0.926280px;}
.ls38{letter-spacing:0.938232px;}
.ls64{letter-spacing:0.944640px;}
.lsb4{letter-spacing:0.950184px;}
.ls12{letter-spacing:0.956160px;}
.ls3d{letter-spacing:0.962136px;}
.ls31{letter-spacing:0.974088px;}
.ls75{letter-spacing:0.978984px;}
.ls4e{letter-spacing:1.003968px;}
.ls57{letter-spacing:1.015920px;}
.ls9a{letter-spacing:1.027872px;}
.ls59{letter-spacing:1.039824px;}
.ls45{letter-spacing:1.051776px;}
.ls28{letter-spacing:1.075680px;}
.ls97{letter-spacing:1.087632px;}
.ls93{letter-spacing:1.088640px;}
.ls92{letter-spacing:1.127520px;}
.ls51{letter-spacing:1.195200px;}
.lsb1{letter-spacing:1.199520px;}
.ls6c{letter-spacing:1.206000px;}
.ls65{letter-spacing:1.209888px;}
.ls72{letter-spacing:1.210320px;}
.ls8b{letter-spacing:1.218960px;}
.ls70{letter-spacing:1.223352px;}
.ls8e{letter-spacing:1.225440px;}
.ls24{letter-spacing:1.242000px;}
.ls42{letter-spacing:1.254960px;}
.ls89{letter-spacing:1.271520px;}
.ls5c{letter-spacing:1.276560px;}
.ls3f{letter-spacing:1.314720px;}
.ls6b{letter-spacing:1.352808px;}
.ls2c{letter-spacing:1.374480px;}
.ls8a{letter-spacing:1.433376px;}
.ls7e{letter-spacing:1.434240px;}
.ls76{letter-spacing:1.438560px;}
.ls5d{letter-spacing:1.440000px;}
.ls5b{letter-spacing:1.457280px;}
.ls90{letter-spacing:1.494000px;}
.ls84{letter-spacing:1.523880px;}
.ls2d{letter-spacing:1.553760px;}
.ls87{letter-spacing:1.586880px;}
.ls34{letter-spacing:1.613520px;}
.ls77{letter-spacing:1.617840px;}
.ls4d{letter-spacing:1.619496px;}
.ls85{letter-spacing:1.625472px;}
.lsa2{letter-spacing:1.631448px;}
.ls68{letter-spacing:1.632240px;}
.ls9b{letter-spacing:1.637424px;}
.ls7b{letter-spacing:1.649376px;}
.ls3b{letter-spacing:1.655352px;}
.ls95{letter-spacing:1.667304px;}
.ls2b{letter-spacing:1.673280px;}
.lsad{letter-spacing:1.679256px;}
.ls4f{letter-spacing:1.685232px;}
.ls98{letter-spacing:1.697184px;}
.lsac{letter-spacing:1.703160px;}
.ls83{letter-spacing:1.727064px;}
.ls71{letter-spacing:1.736424px;}
.ls4a{letter-spacing:1.739016px;}
.ls46{letter-spacing:1.774872px;}
.ls26{letter-spacing:1.782000px;}
.ls29{letter-spacing:1.792800px;}
.ls74{letter-spacing:1.794240px;}
.ls73{letter-spacing:1.872000px;}
.ls4b{letter-spacing:2.330640px;}
.ls4c{letter-spacing:2.378448px;}
.ls11{letter-spacing:3.047760px;}
.ls50{letter-spacing:3.095568px;}
.ls4{letter-spacing:3.600000px;}
.lsc2{letter-spacing:3.762720px;}
.ls49{letter-spacing:3.764880px;}
.ls88{letter-spacing:3.770856px;}
.ls56{letter-spacing:3.884400px;}
.ls62{letter-spacing:4.275600px;}
.ls32{letter-spacing:4.482000px;}
.lsb2{letter-spacing:4.750920px;}
.ls13{letter-spacing:5.199120px;}
.lsd{letter-spacing:5.238000px;}
.ls9{letter-spacing:5.259600px;}
.ls33{letter-spacing:5.916240px;}
.ls7{letter-spacing:5.940000px;}
.lsa5{letter-spacing:6.633360px;}
.ls30{letter-spacing:6.750000px;}
.ls99{letter-spacing:7.350480px;}
.lsbc{letter-spacing:7.380720px;}
.ls44{letter-spacing:7.410240px;}
.ls47{letter-spacing:8.127360px;}
.lse{letter-spacing:8.802000px;}
.lsaf{letter-spacing:8.838504px;}
.ls48{letter-spacing:8.844480px;}
.lsbb{letter-spacing:8.924400px;}
.lsb{letter-spacing:9.558000px;}
.lsb5{letter-spacing:9.561600px;}
.lsc{letter-spacing:10.260000px;}
.ls36{letter-spacing:10.278720px;}
.ls54{letter-spacing:10.954008px;}
.lsab{letter-spacing:10.989864px;}
.lsaa{letter-spacing:10.995840px;}
.ls2f{letter-spacing:12.420000px;}
.ls3c{letter-spacing:12.430080px;}
.ls86{letter-spacing:13.147200px;}
.lsa4{letter-spacing:13.864320px;}
.lsc4{letter-spacing:14.568480px;}
.lsb7{letter-spacing:14.581440px;}
.lsf{letter-spacing:15.282000px;}
.ls39{letter-spacing:15.298560px;}
.ls3e{letter-spacing:16.015680px;}
.ls35{letter-spacing:18.884160px;}
.ls82{letter-spacing:19.075392px;}
.ls79{letter-spacing:19.601280px;}
.ls8c{letter-spacing:21.035520px;}
.ls8d{letter-spacing:21.752640px;}
.lsba{letter-spacing:22.479840px;}
.ls8f{letter-spacing:22.529520px;}
.ls53{letter-spacing:23.246640px;}
.lsb8{letter-spacing:32.687424px;}
.ls58{letter-spacing:35.198640px;}
.lsc6{letter-spacing:49.880160px;}
.lsde{letter-spacing:53.449920px;}
.ls63{letter-spacing:54.060000px;}
.ls7c{letter-spacing:59.582746px;}
.ls7d{letter-spacing:62.651901px;}
.lsce{letter-spacing:63.532080px;}
.lsf0{letter-spacing:65.702880px;}
.lsdd{letter-spacing:70.681248px;}
.lse6{letter-spacing:77.237064px;}
.lsd8{letter-spacing:77.955840px;}
.lsd3{letter-spacing:87.314400px;}
.ls106{letter-spacing:95.225760px;}
.ls61{letter-spacing:106.102800px;}
.lscb{letter-spacing:113.918760px;}
.lsc9{letter-spacing:116.113680px;}
.ls6d{letter-spacing:126.718234px;}
.lsd7{letter-spacing:128.342520px;}
.lsdb{letter-spacing:153.547920px;}
.lscf{letter-spacing:154.271520px;}
.lsea{letter-spacing:164.329560px;}
.lsda{letter-spacing:165.077280px;}
.lsd6{letter-spacing:166.476240px;}
.lsd9{letter-spacing:185.916960px;}
.lse5{letter-spacing:188.087760px;}
.ls10d{letter-spacing:199.617120px;}
.lse9{letter-spacing:203.958720px;}
.lse3{letter-spacing:208.194192px;}
.lse2{letter-spacing:224.123040px;}
.lse7{letter-spacing:224.798400px;}
.lse0{letter-spacing:234.181080px;}
.lsd2{letter-spacing:249.280200px;}
.lsdf{letter-spacing:250.027920px;}
.lsdc{letter-spacing:257.939280px;}
.ls107{letter-spacing:275.098248px;}
.lse8{letter-spacing:283.096440px;}
.lsd0{letter-spacing:289.632960px;}
.lsd1{letter-spacing:290.356560px;}
.lsca{letter-spacing:293.202720px;}
.lsec{letter-spacing:306.902880px;}
.lsd4{letter-spacing:313.367040px;}
.lsf1{letter-spacing:319.155840px;}
.lscc{letter-spacing:355.866480px;}
.lse4{letter-spacing:363.777840px;}
.ls10a{letter-spacing:387.434736px;}
.ls114{letter-spacing:387.560160px;}
.lsfc{letter-spacing:389.682720px;}
.lscd{letter-spacing:391.853520px;}
.lseb{letter-spacing:404.106480px;}
.lsee{letter-spacing:426.441600px;}
.ls10b{letter-spacing:435.800160px;}
.lsf4{letter-spacing:442.264320px;}
.ls116{letter-spacing:471.787200px;}
.lsf7{letter-spacing:497.499120px;}
.ls119{letter-spacing:548.826480px;}
.lsfe{letter-spacing:581.919120px;}
.lsf3{letter-spacing:584.813520px;}
.ls102{letter-spacing:594.172080px;}
.lsfb{letter-spacing:594.895680px;}
.ls103{letter-spacing:602.083440px;}
.ls105{letter-spacing:603.530640px;}
.lsf2{letter-spacing:614.336400px;}
.ls10e{letter-spacing:626.589360px;}
.lsfa{letter-spacing:639.517680px;}
.ls10f{letter-spacing:640.964880px;}
.ls10c{letter-spacing:645.306480px;}
.lsf6{letter-spacing:665.470800px;}
.ls112{letter-spacing:667.641600px;}
.lsf5{letter-spacing:669.764160px;}
.ls117{letter-spacing:678.399120px;}
.ls118{letter-spacing:695.717280px;}
.ls115{letter-spacing:697.116240px;}
.ls110{letter-spacing:714.434400px;}
.ls109{letter-spacing:784.961280px;}
.ls104{letter-spacing:816.654960px;}
.ls111{letter-spacing:851.175504px;}
.lsfd{letter-spacing:874.977120px;}
.ls6e{letter-spacing:892.980000px;}
.ls6a{letter-spacing:932.554800px;}
.lsf9{letter-spacing:1039.137840px;}
.ls67{letter-spacing:1057.154400px;}
.lsf8{letter-spacing:1431.522000px;}
.lsed{letter-spacing:1589.942160px;}
.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;}
}
.wsbd{word-spacing:-62.651901px;}
.wsbc{word-spacing:-59.582746px;}
.ws151{word-spacing:-48.288240px;}
.ws5{word-spacing:-26.244000px;}
.ws8f{word-spacing:-18.000000px;}
.ws12{word-spacing:-16.732800px;}
.ws10{word-spacing:-16.613280px;}
.ws8c{word-spacing:-16.493760px;}
.wsc1{word-spacing:-16.434000px;}
.wsb2{word-spacing:-16.374240px;}
.ws13{word-spacing:-16.314480px;}
.ws5d{word-spacing:-16.254720px;}
.ws8d{word-spacing:-16.135200px;}
.ws14{word-spacing:-16.015680px;}
.ws11{word-spacing:-15.896160px;}
.wsb1{word-spacing:-15.836400px;}
.ws5f{word-spacing:-15.776640px;}
.wsb6{word-spacing:-15.716880px;}
.wsb4{word-spacing:-15.657120px;}
.ws8b{word-spacing:-15.597360px;}
.ws8e{word-spacing:-15.537600px;}
.ws5e{word-spacing:-15.418080px;}
.wsa8{word-spacing:-15.298560px;}
.wsf6{word-spacing:-15.179040px;}
.wse3{word-spacing:-15.119280px;}
.wsf7{word-spacing:-15.059520px;}
.ws6{word-spacing:-14.940000px;}
.wsc2{word-spacing:-14.880240px;}
.wsb8{word-spacing:-14.798215px;}
.wse{word-spacing:-14.742000px;}
.wsf3{word-spacing:-14.700960px;}
.ws2{word-spacing:-14.561280px;}
.wse1{word-spacing:-14.461920px;}
.wsc3{word-spacing:-14.447520px;}
.wsf{word-spacing:-14.163120px;}
.ws9{word-spacing:-13.878000px;}
.wsd{word-spacing:-13.716000px;}
.wsc{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.122000px;}
.wsdb{word-spacing:-12.445920px;}
.ws104{word-spacing:-12.349440px;}
.ws155{word-spacing:-12.301200px;}
.ws103{word-spacing:-12.252960px;}
.wsdc{word-spacing:-12.108240px;}
.ws1{word-spacing:-12.060000px;}
.wse4{word-spacing:-12.011760px;}
.ws140{word-spacing:-11.963520px;}
.ws152{word-spacing:-11.915280px;}
.ws100{word-spacing:-11.818800px;}
.wsd5{word-spacing:-11.770560px;}
.ws0{word-spacing:-11.722320px;}
.wsa9{word-spacing:-11.625840px;}
.ws102{word-spacing:-11.529360px;}
.wsd6{word-spacing:-11.481120px;}
.wse2{word-spacing:-11.384640px;}
.ws153{word-spacing:-11.191680px;}
.wsb3{word-spacing:-11.158560px;}
.ws101{word-spacing:-11.095200px;}
.wsc4{word-spacing:-10.847520px;}
.wsc5{word-spacing:-10.808640px;}
.ws16{word-spacing:-10.607040px;}
.wsb5{word-spacing:-10.458720px;}
.ws15{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.398240px;}
.ws4{word-spacing:-10.356480px;}
.ws7{word-spacing:-9.000000px;}
.ws156{word-spacing:-7.560000px;}
.wsb7{word-spacing:-7.488900px;}
.wsa1{word-spacing:-5.199120px;}
.wsa2{word-spacing:-4.482000px;}
.wsf8{word-spacing:-4.063680px;}
.ws77{word-spacing:-3.764880px;}
.ws76{word-spacing:-3.645360px;}
.ws75{word-spacing:-3.525840px;}
.wse5{word-spacing:-3.346560px;}
.ws108{word-spacing:-3.087360px;}
.ws5a{word-spacing:-3.047760px;}
.wsf9{word-spacing:-2.928240px;}
.ws3f{word-spacing:-2.916000px;}
.ws144{word-spacing:-2.894400px;}
.ws72{word-spacing:-2.808720px;}
.ws137{word-spacing:-2.749680px;}
.ws78{word-spacing:-2.629440px;}
.wsce{word-spacing:-2.509920px;}
.ws136{word-spacing:-2.363760px;}
.ws58{word-spacing:-2.330640px;}
.ws118{word-spacing:-2.267280px;}
.ws114{word-spacing:-2.170800px;}
.ws59{word-spacing:-2.091600px;}
.ws132{word-spacing:-2.026080px;}
.ws71{word-spacing:-1.912320px;}
.ws6a{word-spacing:-1.792800px;}
.ws3e{word-spacing:-1.782000px;}
.wsa4{word-spacing:-1.673280px;}
.ws117{word-spacing:-1.640160px;}
.ws57{word-spacing:-1.613520px;}
.ws74{word-spacing:-1.553760px;}
.ws116{word-spacing:-1.543680px;}
.wscb{word-spacing:-1.494000px;}
.ws115{word-spacing:-1.447200px;}
.ws69{word-spacing:-1.374480px;}
.ws138{word-spacing:-1.302480px;}
.ws9f{word-spacing:-1.254960px;}
.ws9a{word-spacing:-1.195200px;}
.ws133{word-spacing:-1.157760px;}
.ws64{word-spacing:-1.075680px;}
.ws73{word-spacing:-0.956160px;}
.wsda{word-spacing:-0.916560px;}
.ws56{word-spacing:-0.896400px;}
.ws4c{word-spacing:-0.836640px;}
.ws11f{word-spacing:-0.820080px;}
.ws80{word-spacing:-0.776880px;}
.wsae{word-spacing:-0.723600px;}
.ws67{word-spacing:-0.657360px;}
.ws8a{word-spacing:-0.597600px;}
.ws68{word-spacing:-0.478080px;}
.ws113{word-spacing:-0.385920px;}
.ws3a{word-spacing:-0.378000px;}
.wsef{word-spacing:-0.358560px;}
.ws26{word-spacing:-0.324000px;}
.ws107{word-spacing:-0.298800px;}
.wsd9{word-spacing:-0.289440px;}
.ws12e{word-spacing:-0.241200px;}
.ws109{word-spacing:-0.227520px;}
.ws17{word-spacing:-0.216000px;}
.ws19{word-spacing:-0.192960px;}
.ws4e{word-spacing:-0.179280px;}
.ws135{word-spacing:-0.096480px;}
.wsbf{word-spacing:-0.089867px;}
.wsba{word-spacing:-0.059760px;}
.ws47{word-spacing:-0.054000px;}
.ws14f{word-spacing:-0.048240px;}
.ws18{word-spacing:0.000000px;}
.ws147{word-spacing:0.048240px;}
.ws83{word-spacing:0.059760px;}
.ws21{word-spacing:0.108000px;}
.ws23{word-spacing:0.119520px;}
.ws134{word-spacing:0.144720px;}
.wsf0{word-spacing:0.192960px;}
.ws1d{word-spacing:0.208800px;}
.ws27{word-spacing:0.216000px;}
.wsa6{word-spacing:0.227520px;}
.ws54{word-spacing:0.239040px;}
.ws154{word-spacing:0.241200px;}
.ws25{word-spacing:0.270000px;}
.ws150{word-spacing:0.289440px;}
.wsd8{word-spacing:0.298800px;}
.ws20{word-spacing:0.324000px;}
.ws1b{word-spacing:0.337680px;}
.wsa7{word-spacing:0.341280px;}
.wsc6{word-spacing:0.358560px;}
.ws1c{word-spacing:0.375840px;}
.ws24{word-spacing:0.378000px;}
.ws158{word-spacing:0.385920px;}
.ws22{word-spacing:0.418320px;}
.wse0{word-spacing:0.434160px;}
.ws1e{word-spacing:0.459360px;}
.ws11e{word-spacing:0.482400px;}
.ws1a{word-spacing:0.530640px;}
.ws55{word-spacing:0.537840px;}
.ws1f{word-spacing:0.540000px;}
.wsdd{word-spacing:0.627120px;}
.wsf2{word-spacing:0.657360px;}
.ws65{word-spacing:0.723600px;}
.ws157{word-spacing:0.771840px;}
.ws66{word-spacing:0.776880px;}
.ws139{word-spacing:0.868320px;}
.wsbb{word-spacing:0.896400px;}
.ws159{word-spacing:0.916560px;}
.ws9c{word-spacing:0.956160px;}
.ws149{word-spacing:0.964800px;}
.ws2e{word-spacing:1.134000px;}
.ws14c{word-spacing:1.157760px;}
.ws14b{word-spacing:1.254240px;}
.ws5c{word-spacing:1.254960px;}
.ws126{word-spacing:1.350720px;}
.wsa0{word-spacing:1.374480px;}
.ws34{word-spacing:1.404000px;}
.ws127{word-spacing:1.447200px;}
.ws86{word-spacing:1.494000px;}
.ws35{word-spacing:1.512000px;}
.ws9b{word-spacing:1.673280px;}
.wse6{word-spacing:1.792800px;}
.wse7{word-spacing:1.852560px;}
.ws61{word-spacing:1.972080px;}
.ws124{word-spacing:1.977840px;}
.ws9e{word-spacing:2.151360px;}
.ws125{word-spacing:2.170800px;}
.ws60{word-spacing:2.211120px;}
.ws93{word-spacing:2.390400px;}
.wscd{word-spacing:2.509920px;}
.ws3d{word-spacing:2.538000px;}
.wsfa{word-spacing:2.569680px;}
.ws123{word-spacing:2.653200px;}
.ws4b{word-spacing:2.689200px;}
.ws92{word-spacing:2.808720px;}
.ws4d{word-spacing:2.928240px;}
.ws5b{word-spacing:3.107520px;}
.ws51{word-spacing:3.406320px;}
.wsa3{word-spacing:3.525840px;}
.ws13e{word-spacing:3.569760px;}
.wsb9{word-spacing:3.645360px;}
.ws63{word-spacing:3.824640px;}
.wsf4{word-spacing:3.944160px;}
.ws3c{word-spacing:3.996000px;}
.ws141{word-spacing:4.100400px;}
.ws3b{word-spacing:4.104000px;}
.ws50{word-spacing:4.123440px;}
.ws13c{word-spacing:4.196880px;}
.ws13f{word-spacing:4.293360px;}
.ws4f{word-spacing:4.362480px;}
.wsf5{word-spacing:4.541760px;}
.ws7b{word-spacing:4.661280px;}
.ws30{word-spacing:4.698000px;}
.ws62{word-spacing:4.840560px;}
.ws2f{word-spacing:4.860000px;}
.ws13d{word-spacing:5.016960px;}
.ws98{word-spacing:5.079600px;}
.ws99{word-spacing:5.258880px;}
.ws39{word-spacing:5.454000px;}
.ws128{word-spacing:5.547600px;}
.ws4a{word-spacing:5.557680px;}
.ws29{word-spacing:5.562000px;}
.ws49{word-spacing:5.616000px;}
.ws53{word-spacing:5.617440px;}
.ws2a{word-spacing:5.724000px;}
.ws10f{word-spacing:5.740560px;}
.ws79{word-spacing:5.796720px;}
.ws31{word-spacing:5.832000px;}
.ws90{word-spacing:5.856480px;}
.ws2b{word-spacing:5.940000px;}
.wsff{word-spacing:6.035760px;}
.ws48{word-spacing:6.102000px;}
.ws28{word-spacing:6.156000px;}
.ws110{word-spacing:6.271200px;}
.ws7a{word-spacing:6.334560px;}
.ws11d{word-spacing:6.367680px;}
.ws11b{word-spacing:6.464160px;}
.wsab{word-spacing:6.573600px;}
.wsc8{word-spacing:6.752880px;}
.ws12a{word-spacing:6.946560px;}
.ws146{word-spacing:6.994800px;}
.ws95{word-spacing:7.051680px;}
.ws12b{word-spacing:7.091280px;}
.wsc7{word-spacing:7.171200px;}
.ws11c{word-spacing:7.187760px;}
.wsa5{word-spacing:7.290720px;}
.wsc0{word-spacing:7.470000px;}
.ws129{word-spacing:7.670160px;}
.ws12c{word-spacing:7.718400px;}
.ws97{word-spacing:7.768800px;}
.ws145{word-spacing:7.814880px;}
.wsac{word-spacing:7.888320px;}
.ws12d{word-spacing:7.911360px;}
.wsdf{word-spacing:8.007840px;}
.ws33{word-spacing:8.100000px;}
.wsad{word-spacing:8.187120px;}
.ws32{word-spacing:8.316000px;}
.ws11a{word-spacing:8.442000px;}
.ws6d{word-spacing:8.485920px;}
.ws13a{word-spacing:8.538480px;}
.ws41{word-spacing:8.586000px;}
.ws119{word-spacing:8.634960px;}
.ws2d{word-spacing:8.694000px;}
.ws94{word-spacing:8.724960px;}
.ws96{word-spacing:8.904240px;}
.ws2c{word-spacing:9.018000px;}
.wsfe{word-spacing:9.083520px;}
.ws111{word-spacing:9.165600px;}
.ws42{word-spacing:9.180000px;}
.ws6f{word-spacing:9.203040px;}
.ws13b{word-spacing:9.358560px;}
.wsaa{word-spacing:9.442080px;}
.ws37{word-spacing:9.450000px;}
.wsf1{word-spacing:9.501840px;}
.wsee{word-spacing:9.621360px;}
.ws36{word-spacing:9.774000px;}
.ws91{word-spacing:9.920160px;}
.wsd1{word-spacing:10.039680px;}
.ws112{word-spacing:10.082160px;}
.ws40{word-spacing:10.152000px;}
.wsea{word-spacing:10.159200px;}
.ws6e{word-spacing:10.218960px;}
.wsc9{word-spacing:10.338480px;}
.ws38{word-spacing:10.476000px;}
.wse9{word-spacing:10.517760px;}
.ws82{word-spacing:10.637280px;}
.ws131{word-spacing:10.805760px;}
.ws7f{word-spacing:10.876320px;}
.ws81{word-spacing:11.055600px;}
.ws12f{word-spacing:11.239920px;}
.ws84{word-spacing:11.354400px;}
.wsde{word-spacing:11.593440px;}
.ws85{word-spacing:11.772720px;}
.ws130{word-spacing:11.963520px;}
.wscc{word-spacing:12.071520px;}
.wsca{word-spacing:12.310560px;}
.ws10a{word-spacing:12.735360px;}
.ws87{word-spacing:12.788640px;}
.ws10e{word-spacing:12.880080px;}
.ws10d{word-spacing:12.928320px;}
.ws10c{word-spacing:12.976560px;}
.ws106{word-spacing:13.027680px;}
.wse8{word-spacing:13.087440px;}
.ws7e{word-spacing:13.206960px;}
.ws10b{word-spacing:13.458960px;}
.ws7d{word-spacing:13.505760px;}
.ws105{word-spacing:13.685040px;}
.ws88{word-spacing:13.744800px;}
.ws7c{word-spacing:14.222880px;}
.ws14a{word-spacing:14.375520px;}
.wsfd{word-spacing:14.641200px;}
.ws45{word-spacing:14.904000px;}
.ws9d{word-spacing:14.940000px;}
.ws43{word-spacing:14.958000px;}
.ws44{word-spacing:15.174000px;}
.wsfc{word-spacing:15.179040px;}
.ws89{word-spacing:15.358320px;}
.ws46{word-spacing:15.498000px;}
.wsfb{word-spacing:15.657120px;}
.wsbe{word-spacing:15.896160px;}
.ws52{word-spacing:16.374240px;}
.wsaf{word-spacing:16.613280px;}
.ws70{word-spacing:17.091360px;}
.ws6b{word-spacing:17.808480px;}
.wsb0{word-spacing:18.047520px;}
.ws6c{word-spacing:18.525600px;}
.wsd0{word-spacing:19.481760px;}
.wscf{word-spacing:19.959840px;}
.wsed{word-spacing:20.019600px;}
.wsec{word-spacing:20.437920px;}
.wseb{word-spacing:20.975760px;}
.wsd7{word-spacing:21.155040px;}
.wsd3{word-spacing:21.453840px;}
.wsd4{word-spacing:21.692880px;}
.wsd2{word-spacing:22.170960px;}
.ws121{word-spacing:22.817520px;}
.ws120{word-spacing:23.010480px;}
.ws122{word-spacing:23.541120px;}
.ws148{word-spacing:33.623280px;}
.ws14e{word-spacing:49.494240px;}
.ws14d{word-spacing:50.121360px;}
.ws142{word-spacing:68.934960px;}
.ws143{word-spacing:70.575120px;}
._12{margin-left:-1645.013520px;}
._16{margin-left:-14.327280px;}
._6{margin-left:-2.345040px;}
._0{margin-left:-1.117800px;}
._1{width:1.350720px;}
._9{width:2.485440px;}
._4{width:3.510000px;}
._2{width:5.445000px;}
._5{width:6.804000px;}
._3{width:8.797680px;}
._c{width:9.885240px;}
._b{width:12.598200px;}
._15{width:14.549760px;}
._a{width:16.302240px;}
._8{width:18.937440px;}
._11{width:23.288760px;}
._14{width:34.588080px;}
._17{width:49.532040px;}
._7{width:56.160000px;}
._1b{width:104.068800px;}
._19{width:141.064560px;}
._1a{width:224.683200px;}
._18{width:355.175280px;}
._1c{width:648.383760px;}
._13{width:685.626480px;}
._10{width:844.542000px;}
._e{width:887.971680px;}
._f{width:985.143600px;}
._d{width:1029.067200px;}
.fc4{color:rgb(48,79,170);}
.fc3{color:transparent;}
.fc1{color:rgb(231,235,19);}
.fc2{color:rgb(25,26,29);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:29.955600px;}
.fsc{font-size:29.971200px;}
.fsa{font-size:30.000000px;}
.fs10{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fsf{font-size:59.911800px;}
.fsb{font-size:59.942400px;}
.fs9{font-size:60.000000px;}
.fsd{font-size:71.931000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1a8{bottom:1.620000px;}
.y124{bottom:2.520000px;}
.y232{bottom:2.700000px;}
.y6{bottom:3.240000px;}
.y1cb{bottom:3.420000px;}
.yca{bottom:3.793507px;}
.yb3{bottom:6.667973px;}
.ya0{bottom:6.828750px;}
.ya3{bottom:6.843900px;}
.ycd{bottom:8.427051px;}
.y1a6{bottom:10.800150px;}
.y1c9{bottom:10.957500px;}
.y227{bottom:16.380000px;}
.ya5{bottom:19.440000px;}
.yd0{bottom:20.160000px;}
.yb2{bottom:20.709480px;}
.yb5{bottom:20.724466px;}
.ya2{bottom:20.898900px;}
.ycc{bottom:22.461390px;}
.yb{bottom:25.380000px;}
.yba{bottom:27.449500px;}
.yc9{bottom:29.300700px;}
.y223{bottom:30.060000px;}
.y233{bottom:30.239850px;}
.y230{bottom:30.419850px;}
.y23d{bottom:30.420000px;}
.yb1{bottom:30.734846px;}
.ya{bottom:31.140000px;}
.y9f{bottom:32.238750px;}
.ya1{bottom:32.238900px;}
.ybc{bottom:33.480000px;}
.ycb{bottom:33.934500px;}
.yb9{bottom:38.742667px;}
.yb8{bottom:39.066356px;}
.yc{bottom:44.460000px;}
.yae{bottom:44.499300px;}
.yb4{bottom:44.506613px;}
.y9{bottom:45.538560px;}
.yb7{bottom:49.550299px;}
.yb0{bottom:55.551000px;}
.y13f{bottom:57.779850px;}
.y120{bottom:57.780000px;}
.yb6{bottom:59.296950px;}
.y8{bottom:61.920000px;}
.yaf{bottom:66.134700px;}
.y144{bottom:71.459850px;}
.y164{bottom:71.460000px;}
.y1a0{bottom:71.640000px;}
.y35{bottom:77.581650px;}
.y25a{bottom:78.480000px;}
.y1fd{bottom:80.823060px;}
.y103{bottom:85.488840px;}
.y1c7{bottom:85.931820px;}
.yda{bottom:88.168140px;}
.y34{bottom:89.639850px;}
.y13d{bottom:91.438380px;}
.y1fc{bottom:94.680000px;}
.y59{bottom:94.885740px;}
.y82{bottom:96.260220px;}
.y19e{bottom:96.619500px;}
.y33{bottom:102.600000px;}
.y102{bottom:102.774420px;}
.y22c{bottom:102.780900px;}
.y1c6{bottom:103.217400px;}
.y27e{bottom:103.494420px;}
.y259{bottom:103.860390px;}
.yd9{bottom:105.453720px;}
.y181{bottom:105.788880px;}
.y1fb{bottom:108.366120px;}
.y58{bottom:112.171320px;}
.y81{bottom:113.545800px;}
.y19d{bottom:113.725800px;}
.y101{bottom:120.054420px;}
.y1c5{bottom:120.502980px;}
.y27d{bottom:120.780000px;}
.y1fa{bottom:122.223060px;}
.y180{bottom:123.074460px;}
.y13c{bottom:123.120000px;}
.y11e{bottom:123.428880px;}
.yd8{bottom:123.814980px;}
.y9c{bottom:125.454420px;}
.y22b{bottom:128.881080px;}
.y57{bottom:129.456900px;}
.y258{bottom:130.139850px;}
.y80{bottom:130.831380px;}
.y19c{bottom:131.011380px;}
.y32{bottom:131.697180px;}
.y1f9{bottom:136.080000px;}
.y100{bottom:137.322540px;}
.y1c4{bottom:137.609280px;}
.y17f{bottom:140.180760px;}
.y11d{bottom:140.714460px;}
.y27c{bottom:141.842340px;}
.yd7{bottom:142.176240px;}
.y9b{bottom:142.738740px;}
.y13b{bottom:143.359380px;}
.y56{bottom:146.563200px;}
.y7f{bottom:148.116960px;}
.y19b{bottom:148.296960px;}
.y31{bottom:148.982760px;}
.y1f8{bottom:149.765970px;}
.yff{bottom:154.608120px;}
.y1c3{bottom:154.894860px;}
.y22a{bottom:155.160540px;}
.y17e{bottom:157.466340px;}
.y11c{bottom:157.820760px;}
.y143{bottom:160.020000px;}
.y257{bottom:160.207020px;}
.yd6{bottom:160.537500px;}
.y9a{bottom:161.093160px;}
.y27b{bottom:163.085580px;}
.y1f7{bottom:163.622910px;}
.y55{bottom:163.848780px;}
.y7e{bottom:165.402540px;}
.y19a{bottom:165.582540px;}
.y30{bottom:166.089060px;}
.yfe{bottom:171.714420px;}
.y1c2{bottom:172.180440px;}
.y17d{bottom:174.751920px;}
.y11b{bottom:175.106340px;}
.y148{bottom:176.230080px;}
.y1f6{bottom:177.479850px;}
.yd5{bottom:177.643800px;}
.y99{bottom:179.454420px;}
.y54{bottom:181.134360px;}
.y229{bottom:181.440000px;}
.y256{bottom:181.444680px;}
.y7d{bottom:182.688120px;}
.y199{bottom:182.868120px;}
.y2f{bottom:183.374640px;}
.y27a{bottom:184.142340px;}
.yfd{bottom:189.000000px;}
.y1c1{bottom:189.466020px;}
.y147{bottom:190.087020px;}
.y1f5{bottom:191.163060px;}
.y17c{bottom:192.037500px;}
.y11a{bottom:192.391920px;}
.y98{bottom:196.715520px;}
.y53{bottom:198.419940px;}
.y7c{bottom:199.794420px;}
.y198{bottom:199.974420px;}
.y2e{bottom:200.660220px;}
.y255{bottom:202.682340px;}
.yd4{bottom:203.923260px;}
.y146{bottom:203.943960px;}
.y1f4{bottom:205.020000px;}
.y279{bottom:205.380000px;}
.y1c0{bottom:206.751600px;}
.y17b{bottom:209.323080px;}
.y119{bottom:209.677500px;}
.y228{bottom:211.500000px;}
.y97{bottom:214.897500px;}
.y52{bottom:215.705520px;}
.y7b{bottom:217.080000px;}
.y197{bottom:217.260000px;}
.y145{bottom:217.620000px;}
.y2d{bottom:217.945800px;}
.y1f3{bottom:218.887020px;}
.yfc{bottom:221.940000px;}
.y1bf{bottom:223.857900px;}
.y254{bottom:223.920000px;}
.y226{bottom:226.440000px;}
.y278{bottom:226.625760px;}
.y96{bottom:232.183080px;}
.y1f2{bottom:232.563060px;}
.y51{bottom:232.811820px;}
.y162{bottom:233.763840px;}
.y2c{bottom:235.231380px;}
.y17a{bottom:235.602540px;}
.y225{bottom:235.800000px;}
.y118{bottom:235.956960px;}
.yd3{bottom:236.328120px;}
.y1be{bottom:241.143480px;}
.y253{bottom:245.160000px;}
.y1f1{bottom:246.420000px;}
.y277{bottom:248.587020px;}
.y95{bottom:249.468660px;}
.y7a{bottom:250.020000px;}
.y50{bottom:250.097400px;}
.y161{bottom:250.870140px;}
.y196{bottom:251.820000px;}
.y2b{bottom:252.337680px;}
.y222{bottom:254.880000px;}
.y1bd{bottom:258.429060px;}
.y1f0{bottom:260.287020px;}
.y221{bottom:264.243060px;}
.yfb{bottom:266.011380px;}
.y94{bottom:266.754240px;}
.y252{bottom:267.120000px;}
.y4f{bottom:267.382980px;}
.y179{bottom:267.828120px;}
.y160{bottom:268.155720px;}
.y117{bottom:268.182540px;}
.yd2{bottom:268.553700px;}
.y2a{bottom:269.623260px;}
.y276{bottom:269.824680px;}
.y224{bottom:271.080000px;}
.y195{bottom:272.129040px;}
.y1ef{bottom:273.963060px;}
.y1bc{bottom:275.714640px;}
.y220{bottom:278.100000px;}
.yfa{bottom:283.296960px;}
.y93{bottom:284.039820px;}
.y4e{bottom:284.668560px;}
.y178{bottom:285.113700px;}
.y15f{bottom:285.441300px;}
.y116{bottom:285.468120px;}
.yd1{bottom:285.660000px;}
.y29{bottom:286.908840px;}
.y1ee{bottom:287.820000px;}
.y275{bottom:291.062340px;}
.y1bb{bottom:293.000220px;}
.y79{bottom:293.914080px;}
.y251{bottom:295.020000px;}
.yf9{bottom:300.403260px;}
.y1ed{bottom:301.683960px;}
.y4d{bottom:301.954140px;}
.y177{bottom:302.220000px;}
.y15e{bottom:302.726880px;}
.y115{bottom:302.753700px;}
.y28{bottom:304.194420px;}
.y21f{bottom:309.240000px;}
.y92{bottom:310.140000px;}
.y1ba{bottom:310.285800px;}
.ycf{bottom:310.320000px;}
.yc8{bottom:310.410000px;}
.y78{bottom:311.199660px;}
.y274{bottom:312.300000px;}
.y1ec{bottom:315.360000px;}
.yf8{bottom:317.688840px;}
.y4c{bottom:319.239720px;}
.y114{bottom:319.860000px;}
.y15d{bottom:320.012460px;}
.y27{bottom:321.480000px;}
.y1b9{bottom:327.392100px;}
.y77{bottom:328.305960px;}
.y13a{bottom:328.944060px;}
.y1eb{bottom:329.223060px;}
.yc7{bottom:330.472080px;}
.yce{bottom:333.000000px;}
.y273{bottom:333.540000px;}
.y250{bottom:334.081080px;}
.yf7{bottom:334.974420px;}
.y4b{bottom:336.346020px;}
.y176{bottom:336.780000px;}
.y15c{bottom:337.298040px;}
.y1ea{bottom:343.080000px;}
.y1b8{bottom:344.677680px;}
.y91{bottom:344.700000px;}
.y76{bottom:345.591540px;}
.y139{bottom:346.229640px;}
.y21e{bottom:348.136380px;}
.yf6{bottom:352.130940px;}
.y1a5{bottom:352.800000px;}
.y4a{bottom:353.631600px;}
.y15b{bottom:354.404340px;}
.y26{bottom:354.420000px;}
.y272{bottom:355.500000px;}
.y24f{bottom:356.042340px;}
.y1e9{bottom:356.767020px;}
.y175{bottom:357.075180px;}
.y1b7{bottom:361.963260px;}
.y75{bottom:362.877120px;}
.y138{bottom:363.335940px;}
.y90{bottom:364.984380px;}
.y21d{bottom:369.374040px;}
.yf5{bottom:369.416520px;}
.y187{bottom:370.260000px;}
.y1e8{bottom:370.623960px;}
.y49{bottom:370.917180px;}
.yc6{bottom:370.974420px;}
.y15a{bottom:371.689920px;}
.y113{bottom:374.664780px;}
.y24e{bottom:377.280000px;}
.y1b6{bottom:379.248840px;}
.y74{bottom:380.162700px;}
.y137{bottom:380.621520px;}
.y271{bottom:383.400000px;}
.y1e7{bottom:384.300000px;}
.y18b{bottom:386.470080px;}
.yf4{bottom:386.522820px;}
.y48{bottom:388.202760px;}
.yc5{bottom:388.260540px;}
.y11f{bottom:388.980000px;}
.y21c{bottom:390.611700px;}
.y1b5{bottom:396.534420px;}
.y73{bottom:397.448280px;}
.y25{bottom:397.750500px;}
.y136{bottom:397.907100px;}
.y159{bottom:397.969380px;}
.y1e6{bottom:398.167020px;}
.y24d{bottom:398.521080px;}
.y18a{bottom:400.327020px;}
.y270{bottom:400.680000px;}
.y123{bottom:405.367020px;}
.y47{bottom:405.488340px;}
.y21b{bottom:411.849360px;}
.y1e5{bottom:412.023960px;}
.yf3{bottom:412.802280px;}
.y24{bottom:413.586000px;}
.y1b4{bottom:413.820000px;}
.y189{bottom:414.183960px;}
.yc4{bottom:414.534240px;}
.y72{bottom:414.733860px;}
.y135{bottom:415.192680px;}
.y122{bottom:419.043060px;}
.y24c{bottom:420.482340px;}
.y46{bottom:422.773920px;}
.y1e4{bottom:425.700000px;}
.y188{bottom:427.860000px;}
.y158{bottom:430.194960px;}
.y71{bottom:431.840160px;}
.y134{bottom:432.478260px;}
.y121{bottom:432.900000px;}
.y21a{bottom:433.087020px;}
.y1e3{bottom:439.567020px;}
.y26f{bottom:439.742340px;}
.y45{bottom:439.880220px;}
.yc3{bottom:440.813700px;}
.y24b{bottom:441.720000px;}
.y23{bottom:443.826000px;}
.yf2{bottom:445.027860px;}
.y1b3{bottom:446.580000px;}
.y157{bottom:447.480540px;}
.y70{bottom:449.125740px;}
.y133{bottom:449.763840px;}
.y1e2{bottom:453.423960px;}
.y219{bottom:454.324680px;}
.y44{bottom:457.165800px;}
.yc2{bottom:457.914960px;}
.y22{bottom:459.661500px;}
.y26e{bottom:460.984680px;}
.yf1{bottom:462.313440px;}
.y24a{bottom:462.963420px;}
.y6f{bottom:466.411320px;}
.y132{bottom:466.870140px;}
.y1e1{bottom:467.100000px;}
.y156{bottom:473.760000px;}
.y43{bottom:474.451380px;}
.y21{bottom:475.146000px;}
.yc1{bottom:475.200540px;}
.y218{bottom:475.562340px;}
.yf0{bottom:479.599020px;}
.y1e0{bottom:480.963060px;}
.y26d{bottom:482.222340px;}
.y6e{bottom:483.696900px;}
.y131{bottom:484.155720px;}
.y249{bottom:484.924680px;}
.y1b2{bottom:489.960000px;}
.y20{bottom:490.630500px;}
.y42{bottom:491.736960px;}
.y1df{bottom:494.820000px;}
.y217{bottom:496.800000px;}
.yef{bottom:496.884600px;}
.y6d{bottom:500.982480px;}
.y130{bottom:501.441300px;}
.yc0{bottom:501.480540px;}
.y26c{bottom:503.460000px;}
.y1a7{bottom:505.260000px;}
.y1f{bottom:506.115000px;}
.y248{bottom:506.162340px;}
.y1ca{bottom:507.060000px;}
.y155{bottom:508.140000px;}
.y1de{bottom:508.506120px;}
.y41{bottom:509.022540px;}
.y1b1{bottom:510.256620px;}
.yee{bottom:514.170180px;}
.y216{bottom:518.040000px;}
.y6c{bottom:518.088780px;}
.y1e{bottom:521.775000px;}
.y1dd{bottom:522.363060px;}
.y26b{bottom:524.705760px;}
.y40{bottom:526.308120px;}
.y247{bottom:527.400000px;}
.y12f{bottom:527.720760px;}
.ybf{bottom:527.760540px;}
.y154{bottom:528.427260px;}
.yed{bottom:531.455760px;}
.y6b{bottom:535.374360px;}
.y1dc{bottom:536.220000px;}
.y174{bottom:536.534460px;}
.y1d{bottom:537.259500px;}
.y1c8{bottom:537.480000px;}
.y215{bottom:540.000000px;}
.y194{bottom:540.511200px;}
.y163{bottom:542.700000px;}
.y3f{bottom:543.414420px;}
.y26a{bottom:546.667020px;}
.yec{bottom:548.562060px;}
.y246{bottom:548.640000px;}
.y1db{bottom:549.903060px;}
.y6a{bottom:552.659940px;}
.y1c{bottom:552.744000px;}
.y173{bottom:553.820040px;}
.ybe{bottom:554.040540px;}
.y112{bottom:556.469640px;}
.y193{bottom:557.796780px;}
.y168{bottom:559.090080px;}
.y12e{bottom:559.946340px;}
.y3e{bottom:560.700000px;}
.y1da{bottom:563.760000px;}
.y214{bottom:567.900000px;}
.y269{bottom:567.904680px;}
.y1b{bottom:568.228500px;}
.y69{bottom:569.945520px;}
.y245{bottom:570.600000px;}
.y172{bottom:571.105620px;}
.y167{bottom:572.766120px;}
.y111{bottom:573.755220px;}
.yeb{bottom:574.841520px;}
.y192{bottom:574.903080px;}
.y12d{bottom:577.231920px;}
.y1d9{bottom:577.623960px;}
.ybd{bottom:580.320000px;}
.y1a{bottom:583.713000px;}
.y166{bottom:586.623060px;}
.y68{bottom:587.231100px;}
.y171{bottom:588.211920px;}
.y268{bottom:589.142340px;}
.y110{bottom:591.040800px;}
.y1d8{bottom:591.300000px;}
.y191{bottom:592.188660px;}
.y12c{bottom:594.517500px;}
.y213{bottom:594.900000px;}
.y3d{bottom:595.260000px;}
.y244{bottom:598.500000px;}
.y19{bottom:599.373000px;}
.y165{bottom:600.480000px;}
.y67{bottom:604.516680px;}
.yad{bottom:604.980000px;}
.y1d7{bottom:605.163060px;}
.y170{bottom:605.497500px;}
.yea{bottom:607.067100px;}
.y10f{bottom:608.147100px;}
.y190{bottom:609.474240px;}
.y267{bottom:610.380000px;}
.y12b{bottom:611.623800px;}
.y212{bottom:614.197260px;}
.y18{bottom:614.857500px;}
.y3c{bottom:615.572280px;}
.y1d6{bottom:619.020000px;}
.y66{bottom:621.622980px;}
.y16f{bottom:622.783080px;}
.ye9{bottom:624.352680px;}
.y10e{bottom:625.432680px;}
.ybb{bottom:625.860000px;}
.y18f{bottom:626.759820px;}
.y211{bottom:628.054200px;}
.y12a{bottom:628.909380px;}
.y17{bottom:630.342000px;}
.y266{bottom:631.440000px;}
.y1d5{bottom:632.703060px;}
.y243{bottom:637.562340px;}
.yac{bottom:638.450100px;}
.y65{bottom:638.908560px;}
.y16e{bottom:640.068660px;}
.ye8{bottom:641.638260px;}
.y210{bottom:641.730240px;}
.y10d{bottom:642.718260px;}
.y16{bottom:645.826500px;}
.y129{bottom:646.194960px;}
.y1d4{bottom:646.560000px;}
.y18e{bottom:652.860000px;}
.y265{bottom:653.580000px;}
.y20f{bottom:655.587180px;}
.y64{bottom:656.194140px;}
.y16d{bottom:657.354240px;}
.y242{bottom:658.800000px;}
.ye7{bottom:658.923840px;}
.y10c{bottom:660.003840px;}
.y1d3{bottom:660.430080px;}
.y15{bottom:661.486500px;}
.y128{bottom:663.480540px;}
.y20e{bottom:669.444120px;}
.y63{bottom:673.479720px;}
.y1d2{bottom:674.106120px;}
.y16c{bottom:674.639820px;}
.y14{bottom:676.971000px;}
.y10b{bottom:677.289420px;}
.y241{bottom:680.040000px;}
.y264{bottom:681.479850px;}
.y20d{bottom:683.120160px;}
.ye6{bottom:685.203300px;}
.y18d{bottom:687.420000px;}
.y1d1{bottom:687.963060px;}
.y127{bottom:689.760000px;}
.y62{bottom:690.765300px;}
.yab{bottom:692.443260px;}
.y13{bottom:692.455500px;}
.y23c{bottom:695.700000px;}
.y20c{bottom:696.977100px;}
.y263{bottom:698.760000px;}
.y8f{bottom:699.057720px;}
.y16b{bottom:700.740000px;}
.y1d0{bottom:701.820000px;}
.y10a{bottom:703.389600px;}
.y23b{bottom:705.241980px;}
.y240{bottom:705.243060px;}
.y18c{bottom:707.752080px;}
.y61{bottom:708.050880px;}
.yaa{bottom:709.728840px;}
.y20b{bottom:710.834040px;}
.y23a{bottom:712.080000px;}
.y23e{bottom:712.260000px;}
.y153{bottom:716.163300px;}
.y8e{bottom:716.164020px;}
.y1b0{bottom:716.174640px;}
.ye5{bottom:717.428880px;}
.y23f{bottom:719.100000px;}
.y109{bottom:720.854460px;}
.y12{bottom:723.060000px;}
.y19f{bottom:723.600000px;}
.y126{bottom:724.139850px;}
.y20a{bottom:724.510080px;}
.y60{bottom:725.157180px;}
.ya9{bottom:727.014420px;}
.y1cf{bottom:731.880000px;}
.y152{bottom:733.448880px;}
.y8d{bottom:733.449600px;}
.y1af{bottom:733.460220px;}
.ye4{bottom:734.714460px;}
.y16a{bottom:735.300000px;}
.y262{bottom:737.651550px;}
.y209{bottom:738.367020px;}
.y1a4{bottom:739.990080px;}
.y5f{bottom:742.442760px;}
.ya8{bottom:744.299820px;}
.y125{bottom:744.479850px;}
.y11{bottom:747.535500px;}
.y239{bottom:750.240000px;}
.y151{bottom:750.734460px;}
.y8c{bottom:750.735180px;}
.y1ae{bottom:750.745800px;}
.ye3{bottom:752.000040px;}
.y208{bottom:752.223960px;}
.y108{bottom:753.080040px;}
.y1a3{bottom:753.847020px;}
.y169{bottom:755.639850px;}
.y261{bottom:758.889210px;}
.y5e{bottom:759.728340px;}
.y13e{bottom:763.380000px;}
.y207{bottom:765.900000px;}
.y10{bottom:767.520000px;}
.y1a2{bottom:767.523060px;}
.y150{bottom:768.020040px;}
.y8b{bottom:768.020760px;}
.y1ad{bottom:768.031380px;}
.ye2{bottom:769.106340px;}
.y107{bottom:770.186340px;}
.ya7{bottom:770.400000px;}
.y182{bottom:772.200000px;}
.y1ce{bottom:775.263060px;}
.y5d{bottom:777.013920px;}
.y142{bottom:779.767020px;}
.y260{bottom:780.126870px;}
.y1a1{bottom:781.380000px;}
.y14f{bottom:785.305620px;}
.y8a{bottom:785.306340px;}
.y1ac{bottom:785.316960px;}
.ye1{bottom:786.391920px;}
.y106{bottom:787.471920px;}
.y186{bottom:788.410080px;}
.y1cd{bottom:789.120000px;}
.y238{bottom:790.921080px;}
.y141{bottom:793.443060px;}
.y206{bottom:793.623960px;}
.yf{bottom:793.979850px;}
.y5c{bottom:794.299500px;}
.ya6{bottom:796.680000px;}
.y237{bottom:797.940000px;}
.y25f{bottom:801.364530px;}
.y185{bottom:802.267020px;}
.y14e{bottom:802.411920px;}
.y89{bottom:802.412640px;}
.y1ab{bottom:802.423260px;}
.ye0{bottom:803.677500px;}
.y105{bottom:804.757500px;}
.y140{bottom:807.300000px;}
.y5b{bottom:811.405800px;}
.y184{bottom:816.123960px;}
.y1cc{bottom:819.180000px;}
.y14d{bottom:819.697500px;}
.y88{bottom:819.698220px;}
.y1aa{bottom:819.708840px;}
.ydf{bottom:820.963080px;}
.y205{bottom:821.173140px;}
.y9e{bottom:821.340000px;}
.y25e{bottom:822.602190px;}
.y5a{bottom:828.691380px;}
.ye{bottom:828.729000px;}
.y236{bottom:829.261980px;}
.y183{bottom:829.800000px;}
.y104{bottom:831.036960px;}
.y204{bottom:835.030080px;}
.y235{bottom:836.100000px;}
.y14c{bottom:836.983080px;}
.y87{bottom:836.983800px;}
.y1a9{bottom:836.994420px;}
.y9d{bottom:840.762900px;}
.ya4{bottom:842.400000px;}
.y25d{bottom:843.839850px;}
.y3b{bottom:845.976960px;}
.yde{bottom:847.242540px;}
.y203{bottom:848.706120px;}
.y14b{bottom:854.268660px;}
.y86{bottom:854.269380px;}
.yd{bottom:859.860000px;}
.y22f{bottom:860.400000px;}
.y202{bottom:862.563060px;}
.y3a{bottom:863.262540px;}
.y25c{bottom:865.080000px;}
.y22e{bottom:869.943060px;}
.y14a{bottom:871.554240px;}
.y85{bottom:871.554960px;}
.y201{bottom:876.420000px;}
.y234{bottom:876.780000px;}
.y231{bottom:876.960000px;}
.ydd{bottom:879.468120px;}
.y39{bottom:880.548120px;}
.y22d{bottom:883.800000px;}
.y25b{bottom:887.040000px;}
.y7{bottom:888.120000px;}
.y149{bottom:888.839820px;}
.y84{bottom:888.840540px;}
.y200{bottom:890.100000px;}
.ydc{bottom:896.753700px;}
.y38{bottom:897.833700px;}
.y1ff{bottom:903.962910px;}
.y5{bottom:904.680000px;}
.ydb{bottom:913.860000px;}
.y37{bottom:914.940000px;}
.y83{bottom:915.120000px;}
.y1fe{bottom:917.819850px;}
.y4{bottom:923.767020px;}
.y3{bottom:937.443060px;}
.y36{bottom:941.044500px;}
.y2{bottom:951.300000px;}
.y1{bottom:965.520000px;}
.h33{height:12.778500px;}
.h36{height:14.580000px;}
.h5{height:16.560000px;}
.h1c{height:20.810081px;}
.h26{height:21.501334px;}
.hb{height:25.839844px;}
.h38{height:27.540000px;}
.h8{height:29.974219px;}
.h3c{height:32.693906px;}
.h4{height:33.494766px;}
.h3{height:34.625391px;}
.h7{height:35.100000px;}
.hd{height:36.597656px;}
.h2{height:37.494141px;}
.hc{height:38.759766px;}
.h10{height:40.501406px;}
.h6{height:40.826953px;}
.h37{height:41.400000px;}
.h2a{height:41.493516px;}
.h39{height:41.580000px;}
.h27{height:41.598916px;}
.h1d{height:41.620163px;}
.h15{height:41.660156px;}
.h22{height:42.891981px;}
.hf{height:42.894141px;}
.h19{height:42.894861px;}
.h23{height:42.914301px;}
.h2d{height:42.916461px;}
.h24{height:42.917181px;}
.h34{height:42.936621px;}
.h2c{height:42.963981px;}
.h1b{height:43.025063px;}
.h13{height:43.066406px;}
.h2b{height:43.410381px;}
.ha{height:48.787631px;}
.he{height:48.796875px;}
.h12{height:49.395000px;}
.h18{height:49.500000px;}
.h25{height:50.926500px;}
.h29{height:51.118500px;}
.h14{height:53.095678px;}
.h11{height:55.353867px;}
.h28{height:55.494475px;}
.h1e{height:55.522819px;}
.h17{height:55.576172px;}
.h16{height:59.993086px;}
.h3a{height:61.977471px;}
.h3b{height:62.701071px;}
.h1f{height:66.627494px;}
.h2f{height:68.938500px;}
.h2e{height:68.940000px;}
.h9{height:77.519531px;}
.h1a{height:77.656500px;}
.h21{height:77.941500px;}
.h31{height:82.800000px;}
.h30{height:82.801500px;}
.h20{height:93.294141px;}
.h32{height:144.901500px;}
.h35{height:176.040000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.wc{width:12.960000px;}
.wa{width:14.220000px;}
.w5{width:42.660000px;}
.w15{width:56.341500px;}
.w12{width:66.240000px;}
.w4{width:73.500000px;}
.w14{width:76.498500px;}
.w13{width:82.261500px;}
.w17{width:85.501500px;}
.w7{width:86.925000px;}
.w11{width:89.280000px;}
.w10{width:89.281500px;}
.w16{width:89.458500px;}
.w6{width:91.498500px;}
.we{width:93.420000px;}
.wf{width:93.600000px;}
.w18{width:118.980000px;}
.wd{width:154.080000px;}
.w8{width:211.498500px;}
.w9{width:211.500000px;}
.wb{width:337.500000px;}
.w3{width:519.660000px;}
.w2{width:581.940000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1b{left:2.771250px;}
.x2{left:8.100000px;}
.x6{left:10.800000px;}
.x1e{left:14.865150px;}
.x21{left:24.120000px;}
.x19{left:27.286800px;}
.x1a{left:35.156250px;}
.x27{left:37.260000px;}
.x25{left:43.119150px;}
.x1d{left:46.125150px;}
.x1c{left:48.056250px;}
.x18{left:55.921800px;}
.x24{left:60.234150px;}
.x2b{left:63.788700px;}
.x29{left:72.078450px;}
.x2a{left:73.479744px;}
.x5{left:76.140000px;}
.x23{left:80.015400px;}
.x7{left:86.940000px;}
.x1{left:89.280000px;}
.x52{left:97.380000px;}
.xf{left:102.060000px;}
.xb{left:104.040000px;}
.x64{left:105.480000px;}
.x40{left:107.640000px;}
.x16{left:110.524680px;}
.x62{left:113.400000px;}
.xe{left:114.840000px;}
.x61{left:116.820000px;}
.x60{left:124.560000px;}
.x8{left:126.720000px;}
.x5f{left:128.880000px;}
.x17{left:131.925420px;}
.x9{left:142.380000px;}
.x3d{left:143.640000px;}
.x5c{left:151.560000px;}
.x3e{left:158.760000px;}
.x53{left:164.698920px;}
.x41{left:166.140000px;}
.x3c{left:170.314560px;}
.x38{left:173.093400px;}
.x3b{left:178.740000px;}
.x48{left:181.256580px;}
.x31{left:186.840000px;}
.x46{left:191.520000px;}
.x39{left:192.600000px;}
.x63{left:197.280000px;}
.x54{left:215.640000px;}
.x44{left:224.640000px;}
.x49{left:232.740000px;}
.x32{left:234.540000px;}
.x15{left:237.600000px;}
.x4a{left:240.840000px;}
.x47{left:244.080000px;}
.x13{left:254.700000px;}
.x42{left:257.400000px;}
.xd{left:264.244500px;}
.x11{left:267.840000px;}
.xa{left:272.880000px;}
.x2e{left:275.760000px;}
.x2f{left:286.560000px;}
.x55{left:297.900000px;}
.x10{left:305.280000px;}
.x4b{left:326.160000px;}
.x22{left:335.040000px;}
.x28{left:337.215000px;}
.x45{left:341.820000px;}
.x5d{left:342.900000px;}
.xc{left:344.164500px;}
.x3a{left:345.780000px;}
.x30{left:348.480000px;}
.x36{left:359.100000px;}
.x34{left:362.700000px;}
.x37{left:369.900000px;}
.x35{left:373.500000px;}
.x33{left:380.538360px;}
.x56{left:382.500000px;}
.x1f{left:417.420000px;}
.x4c{left:419.760000px;}
.x2c{left:424.080000px;}
.x26{left:426.420000px;}
.x4d{left:427.860000px;}
.x57{left:430.740000px;}
.x58{left:438.840000px;}
.x5e{left:461.880000px;}
.x4e{left:509.040000px;}
.x4f{left:517.140000px;}
.x59{left:520.200000px;}
.x5a{left:528.300000px;}
.x43{left:535.855140px;}
.x12{left:578.490300px;}
.x3f{left:593.131500px;}
.x51{left:598.320000px;}
.x50{left:606.420000px;}
.x5b{left:613.800000px;}
.x20{left:629.280000px;}
.x4{left:650.524680px;}
.x14{left:663.991920px;}
.x2d{left:667.771740px;}
.x3{left:671.940000px;}
@media print{
.v5{vertical-align:-49.973333pt;}
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-5.032960pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560533pt;}
.v7{vertical-align:24.312960pt;}
.v4{vertical-align:28.680533pt;}
.v6{vertical-align:44.800000pt;}
.lsc0{letter-spacing:-0.900480pt;}
.lsbf{letter-spacing:-0.857600pt;}
.ls11c{letter-spacing:-0.814720pt;}
.ls101{letter-spacing:-0.771840pt;}
.lsc1{letter-spacing:-0.728960pt;}
.ls1d{letter-spacing:-0.672000pt;}
.lsa7{letter-spacing:-0.600320pt;}
.ls23{letter-spacing:-0.528000pt;}
.lsa0{letter-spacing:-0.514560pt;}
.ls18{letter-spacing:-0.471680pt;}
.lsff{letter-spacing:-0.428800pt;}
.lsa6{letter-spacing:-0.424960pt;}
.ls5f{letter-spacing:-0.385920pt;}
.ls21{letter-spacing:-0.336000pt;}
.ls52{letter-spacing:-0.303360pt;}
.ls17{letter-spacing:-0.300160pt;}
.ls9e{letter-spacing:-0.257280pt;}
.ls9f{letter-spacing:-0.214400pt;}
.ls1f{letter-spacing:-0.212480pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls11a{letter-spacing:-0.171520pt;}
.ls81{letter-spacing:-0.159765pt;}
.ls100{letter-spacing:-0.128640pt;}
.ls22{letter-spacing:-0.096000pt;}
.lsd5{letter-spacing:-0.085760pt;}
.ls1b{letter-spacing:-0.074240pt;}
.ls60{letter-spacing:-0.053120pt;}
.ls27{letter-spacing:-0.050560pt;}
.lsa8{letter-spacing:-0.042880pt;}
.ls19{letter-spacing:-0.037120pt;}
.ls16{letter-spacing:0.000000pt;}
.ls94{letter-spacing:0.031872pt;}
.lsa3{letter-spacing:0.042880pt;}
.lsc8{letter-spacing:0.047360pt;}
.ls20{letter-spacing:0.053120pt;}
.ls80{letter-spacing:0.079882pt;}
.ls8{letter-spacing:0.096000pt;}
.lsae{letter-spacing:0.098624pt;}
.ls9d{letter-spacing:0.106240pt;}
.lsef{letter-spacing:0.107200pt;}
.lse1{letter-spacing:0.136320pt;}
.lsa9{letter-spacing:0.137216pt;}
.ls6{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.148480pt;}
.ls113{letter-spacing:0.153600pt;}
.lsbe{letter-spacing:0.158656pt;}
.ls37{letter-spacing:0.159360pt;}
.ls9c{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.171520pt;}
.ls55{letter-spacing:0.175808pt;}
.lsa1{letter-spacing:0.180096pt;}
.lsc7{letter-spacing:0.183680pt;}
.ls1e{letter-spacing:0.192000pt;}
.lsc3{letter-spacing:0.192960pt;}
.ls91{letter-spacing:0.202240pt;}
.lsb6{letter-spacing:0.212480pt;}
.ls11b{letter-spacing:0.214400pt;}
.ls7a{letter-spacing:0.223104pt;}
.ls96{letter-spacing:0.228416pt;}
.lsbd{letter-spacing:0.257280pt;}
.ls15{letter-spacing:0.267264pt;}
.ls10{letter-spacing:0.284032pt;}
.ls1{letter-spacing:0.300160pt;}
.ls2{letter-spacing:0.303360pt;}
.ls5e{letter-spacing:0.318720pt;}
.ls3{letter-spacing:0.320000pt;}
.lsb9{letter-spacing:0.321600pt;}
.lsa{letter-spacing:0.336000pt;}
.ls40{letter-spacing:0.343040pt;}
.ls5a{letter-spacing:0.382080pt;}
.ls3a{letter-spacing:0.424960pt;}
.ls25{letter-spacing:0.480000pt;}
.ls43{letter-spacing:0.531200pt;}
.ls2e{letter-spacing:0.584320pt;}
.ls69{letter-spacing:0.637440pt;}
.ls5{letter-spacing:0.640000pt;}
.ls66{letter-spacing:0.655360pt;}
.ls7f{letter-spacing:0.656640pt;}
.ls108{letter-spacing:0.687360pt;}
.ls41{letter-spacing:0.690560pt;}
.ls78{letter-spacing:0.740416pt;}
.ls2a{letter-spacing:0.743680pt;}
.ls14{letter-spacing:0.796800pt;}
.lsb0{letter-spacing:0.802112pt;}
.ls6f{letter-spacing:0.807680pt;}
.lsc5{letter-spacing:0.814720pt;}
.lsb3{letter-spacing:0.823360pt;}
.ls38{letter-spacing:0.833984pt;}
.ls64{letter-spacing:0.839680pt;}
.lsb4{letter-spacing:0.844608pt;}
.ls12{letter-spacing:0.849920pt;}
.ls3d{letter-spacing:0.855232pt;}
.ls31{letter-spacing:0.865856pt;}
.ls75{letter-spacing:0.870208pt;}
.ls4e{letter-spacing:0.892416pt;}
.ls57{letter-spacing:0.903040pt;}
.ls9a{letter-spacing:0.913664pt;}
.ls59{letter-spacing:0.924288pt;}
.ls45{letter-spacing:0.934912pt;}
.ls28{letter-spacing:0.956160pt;}
.ls97{letter-spacing:0.966784pt;}
.ls93{letter-spacing:0.967680pt;}
.ls92{letter-spacing:1.002240pt;}
.ls51{letter-spacing:1.062400pt;}
.lsb1{letter-spacing:1.066240pt;}
.ls6c{letter-spacing:1.072000pt;}
.ls65{letter-spacing:1.075456pt;}
.ls72{letter-spacing:1.075840pt;}
.ls8b{letter-spacing:1.083520pt;}
.ls70{letter-spacing:1.087424pt;}
.ls8e{letter-spacing:1.089280pt;}
.ls24{letter-spacing:1.104000pt;}
.ls42{letter-spacing:1.115520pt;}
.ls89{letter-spacing:1.130240pt;}
.ls5c{letter-spacing:1.134720pt;}
.ls3f{letter-spacing:1.168640pt;}
.ls6b{letter-spacing:1.202496pt;}
.ls2c{letter-spacing:1.221760pt;}
.ls8a{letter-spacing:1.274112pt;}
.ls7e{letter-spacing:1.274880pt;}
.ls76{letter-spacing:1.278720pt;}
.ls5d{letter-spacing:1.280000pt;}
.ls5b{letter-spacing:1.295360pt;}
.ls90{letter-spacing:1.328000pt;}
.ls84{letter-spacing:1.354560pt;}
.ls2d{letter-spacing:1.381120pt;}
.ls87{letter-spacing:1.410560pt;}
.ls34{letter-spacing:1.434240pt;}
.ls77{letter-spacing:1.438080pt;}
.ls4d{letter-spacing:1.439552pt;}
.ls85{letter-spacing:1.444864pt;}
.lsa2{letter-spacing:1.450176pt;}
.ls68{letter-spacing:1.450880pt;}
.ls9b{letter-spacing:1.455488pt;}
.ls7b{letter-spacing:1.466112pt;}
.ls3b{letter-spacing:1.471424pt;}
.ls95{letter-spacing:1.482048pt;}
.ls2b{letter-spacing:1.487360pt;}
.lsad{letter-spacing:1.492672pt;}
.ls4f{letter-spacing:1.497984pt;}
.ls98{letter-spacing:1.508608pt;}
.lsac{letter-spacing:1.513920pt;}
.ls83{letter-spacing:1.535168pt;}
.ls71{letter-spacing:1.543488pt;}
.ls4a{letter-spacing:1.545792pt;}
.ls46{letter-spacing:1.577664pt;}
.ls26{letter-spacing:1.584000pt;}
.ls29{letter-spacing:1.593600pt;}
.ls74{letter-spacing:1.594880pt;}
.ls73{letter-spacing:1.664000pt;}
.ls4b{letter-spacing:2.071680pt;}
.ls4c{letter-spacing:2.114176pt;}
.ls11{letter-spacing:2.709120pt;}
.ls50{letter-spacing:2.751616pt;}
.ls4{letter-spacing:3.200000pt;}
.lsc2{letter-spacing:3.344640pt;}
.ls49{letter-spacing:3.346560pt;}
.ls88{letter-spacing:3.351872pt;}
.ls56{letter-spacing:3.452800pt;}
.ls62{letter-spacing:3.800533pt;}
.ls32{letter-spacing:3.984000pt;}
.lsb2{letter-spacing:4.223040pt;}
.ls13{letter-spacing:4.621440pt;}
.lsd{letter-spacing:4.656000pt;}
.ls9{letter-spacing:4.675200pt;}
.ls33{letter-spacing:5.258880pt;}
.ls7{letter-spacing:5.280000pt;}
.lsa5{letter-spacing:5.896320pt;}
.ls30{letter-spacing:6.000000pt;}
.ls99{letter-spacing:6.533760pt;}
.lsbc{letter-spacing:6.560640pt;}
.ls44{letter-spacing:6.586880pt;}
.ls47{letter-spacing:7.224320pt;}
.lse{letter-spacing:7.824000pt;}
.lsaf{letter-spacing:7.856448pt;}
.ls48{letter-spacing:7.861760pt;}
.lsbb{letter-spacing:7.932800pt;}
.lsb{letter-spacing:8.496000pt;}
.lsb5{letter-spacing:8.499200pt;}
.lsc{letter-spacing:9.120000pt;}
.ls36{letter-spacing:9.136640pt;}
.ls54{letter-spacing:9.736896pt;}
.lsab{letter-spacing:9.768768pt;}
.lsaa{letter-spacing:9.774080pt;}
.ls2f{letter-spacing:11.040000pt;}
.ls3c{letter-spacing:11.048960pt;}
.ls86{letter-spacing:11.686400pt;}
.lsa4{letter-spacing:12.323840pt;}
.lsc4{letter-spacing:12.949760pt;}
.lsb7{letter-spacing:12.961280pt;}
.lsf{letter-spacing:13.584000pt;}
.ls39{letter-spacing:13.598720pt;}
.ls3e{letter-spacing:14.236160pt;}
.ls35{letter-spacing:16.785920pt;}
.ls82{letter-spacing:16.955904pt;}
.ls79{letter-spacing:17.423360pt;}
.ls8c{letter-spacing:18.698240pt;}
.ls8d{letter-spacing:19.335680pt;}
.lsba{letter-spacing:19.982080pt;}
.ls8f{letter-spacing:20.026240pt;}
.ls53{letter-spacing:20.663680pt;}
.lsb8{letter-spacing:29.055488pt;}
.ls58{letter-spacing:31.287680pt;}
.lsc6{letter-spacing:44.337920pt;}
.lsde{letter-spacing:47.511040pt;}
.ls63{letter-spacing:48.053333pt;}
.ls7c{letter-spacing:52.962441pt;}
.ls7d{letter-spacing:55.690579pt;}
.lsce{letter-spacing:56.472960pt;}
.lsf0{letter-spacing:58.402560pt;}
.lsdd{letter-spacing:62.827776pt;}
.lse6{letter-spacing:68.655168pt;}
.lsd8{letter-spacing:69.294080pt;}
.lsd3{letter-spacing:77.612800pt;}
.ls106{letter-spacing:84.645120pt;}
.ls61{letter-spacing:94.313600pt;}
.lscb{letter-spacing:101.261120pt;}
.lsc9{letter-spacing:103.212160pt;}
.ls6d{letter-spacing:112.638430pt;}
.lsd7{letter-spacing:114.082240pt;}
.lsdb{letter-spacing:136.487040pt;}
.lscf{letter-spacing:137.130240pt;}
.lsea{letter-spacing:146.070720pt;}
.lsda{letter-spacing:146.735360pt;}
.lsd6{letter-spacing:147.978880pt;}
.lsd9{letter-spacing:165.259520pt;}
.lse5{letter-spacing:167.189120pt;}
.ls10d{letter-spacing:177.437440pt;}
.lse9{letter-spacing:181.296640pt;}
.lse3{letter-spacing:185.061504pt;}
.lse2{letter-spacing:199.220480pt;}
.lse7{letter-spacing:199.820800pt;}
.lse0{letter-spacing:208.160960pt;}
.lsd2{letter-spacing:221.582400pt;}
.lsdf{letter-spacing:222.247040pt;}
.lsdc{letter-spacing:229.279360pt;}
.ls107{letter-spacing:244.531776pt;}
.lse8{letter-spacing:251.641280pt;}
.lsd0{letter-spacing:257.451520pt;}
.lsd1{letter-spacing:258.094720pt;}
.lsca{letter-spacing:260.624640pt;}
.lsec{letter-spacing:272.802560pt;}
.lsd4{letter-spacing:278.548480pt;}
.lsf1{letter-spacing:283.694080pt;}
.lscc{letter-spacing:316.325760pt;}
.lse4{letter-spacing:323.358080pt;}
.ls10a{letter-spacing:344.386432pt;}
.ls114{letter-spacing:344.497920pt;}
.lsfc{letter-spacing:346.384640pt;}
.lscd{letter-spacing:348.314240pt;}
.lseb{letter-spacing:359.205760pt;}
.lsee{letter-spacing:379.059200pt;}
.ls10b{letter-spacing:387.377920pt;}
.lsf4{letter-spacing:393.123840pt;}
.ls116{letter-spacing:419.366400pt;}
.lsf7{letter-spacing:442.221440pt;}
.ls119{letter-spacing:487.845760pt;}
.lsfe{letter-spacing:517.261440pt;}
.lsf3{letter-spacing:519.834240pt;}
.ls102{letter-spacing:528.152960pt;}
.lsfb{letter-spacing:528.796160pt;}
.ls103{letter-spacing:535.185280pt;}
.ls105{letter-spacing:536.471680pt;}
.lsf2{letter-spacing:546.076800pt;}
.ls10e{letter-spacing:556.968320pt;}
.lsfa{letter-spacing:568.460160pt;}
.ls10f{letter-spacing:569.746560pt;}
.ls10c{letter-spacing:573.605760pt;}
.lsf6{letter-spacing:591.529600pt;}
.ls112{letter-spacing:593.459200pt;}
.lsf5{letter-spacing:595.345920pt;}
.ls117{letter-spacing:603.021440pt;}
.ls118{letter-spacing:618.415360pt;}
.ls115{letter-spacing:619.658880pt;}
.ls110{letter-spacing:635.052800pt;}
.ls109{letter-spacing:697.743360pt;}
.ls104{letter-spacing:725.915520pt;}
.ls111{letter-spacing:756.600448pt;}
.lsfd{letter-spacing:777.757440pt;}
.ls6e{letter-spacing:793.760000pt;}
.ls6a{letter-spacing:828.937600pt;}
.lsf9{letter-spacing:923.678080pt;}
.ls67{letter-spacing:939.692800pt;}
.lsf8{letter-spacing:1272.464000pt;}
.lsed{letter-spacing:1413.281920pt;}
.wsbd{word-spacing:-55.690579pt;}
.wsbc{word-spacing:-52.962441pt;}
.ws151{word-spacing:-42.922880pt;}
.ws5{word-spacing:-23.328000pt;}
.ws8f{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.873600pt;}
.ws10{word-spacing:-14.767360pt;}
.ws8c{word-spacing:-14.661120pt;}
.wsc1{word-spacing:-14.608000pt;}
.wsb2{word-spacing:-14.554880pt;}
.ws13{word-spacing:-14.501760pt;}
.ws5d{word-spacing:-14.448640pt;}
.ws8d{word-spacing:-14.342400pt;}
.ws14{word-spacing:-14.236160pt;}
.ws11{word-spacing:-14.129920pt;}
.wsb1{word-spacing:-14.076800pt;}
.ws5f{word-spacing:-14.023680pt;}
.wsb6{word-spacing:-13.970560pt;}
.wsb4{word-spacing:-13.917440pt;}
.ws8b{word-spacing:-13.864320pt;}
.ws8e{word-spacing:-13.811200pt;}
.ws5e{word-spacing:-13.704960pt;}
.wsa8{word-spacing:-13.598720pt;}
.wsf6{word-spacing:-13.492480pt;}
.wse3{word-spacing:-13.439360pt;}
.wsf7{word-spacing:-13.386240pt;}
.ws6{word-spacing:-13.280000pt;}
.wsc2{word-spacing:-13.226880pt;}
.wsb8{word-spacing:-13.153969pt;}
.wse{word-spacing:-13.104000pt;}
.wsf3{word-spacing:-13.067520pt;}
.ws2{word-spacing:-12.943360pt;}
.wse1{word-spacing:-12.855040pt;}
.wsc3{word-spacing:-12.842240pt;}
.wsf{word-spacing:-12.589440pt;}
.ws9{word-spacing:-12.336000pt;}
.wsd{word-spacing:-12.192000pt;}
.wsc{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.664000pt;}
.wsdb{word-spacing:-11.063040pt;}
.ws104{word-spacing:-10.977280pt;}
.ws155{word-spacing:-10.934400pt;}
.ws103{word-spacing:-10.891520pt;}
.wsdc{word-spacing:-10.762880pt;}
.ws1{word-spacing:-10.720000pt;}
.wse4{word-spacing:-10.677120pt;}
.ws140{word-spacing:-10.634240pt;}
.ws152{word-spacing:-10.591360pt;}
.ws100{word-spacing:-10.505600pt;}
.wsd5{word-spacing:-10.462720pt;}
.ws0{word-spacing:-10.419840pt;}
.wsa9{word-spacing:-10.334080pt;}
.ws102{word-spacing:-10.248320pt;}
.wsd6{word-spacing:-10.205440pt;}
.wse2{word-spacing:-10.119680pt;}
.ws153{word-spacing:-9.948160pt;}
.wsb3{word-spacing:-9.918720pt;}
.ws101{word-spacing:-9.862400pt;}
.wsc4{word-spacing:-9.642240pt;}
.wsc5{word-spacing:-9.607680pt;}
.ws16{word-spacing:-9.428480pt;}
.wsb5{word-spacing:-9.296640pt;}
.ws15{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.242880pt;}
.ws4{word-spacing:-9.205760pt;}
.ws7{word-spacing:-8.000000pt;}
.ws156{word-spacing:-6.720000pt;}
.wsb7{word-spacing:-6.656800pt;}
.wsa1{word-spacing:-4.621440pt;}
.wsa2{word-spacing:-3.984000pt;}
.wsf8{word-spacing:-3.612160pt;}
.ws77{word-spacing:-3.346560pt;}
.ws76{word-spacing:-3.240320pt;}
.ws75{word-spacing:-3.134080pt;}
.wse5{word-spacing:-2.974720pt;}
.ws108{word-spacing:-2.744320pt;}
.ws5a{word-spacing:-2.709120pt;}
.wsf9{word-spacing:-2.602880pt;}
.ws3f{word-spacing:-2.592000pt;}
.ws144{word-spacing:-2.572800pt;}
.ws72{word-spacing:-2.496640pt;}
.ws137{word-spacing:-2.444160pt;}
.ws78{word-spacing:-2.337280pt;}
.wsce{word-spacing:-2.231040pt;}
.ws136{word-spacing:-2.101120pt;}
.ws58{word-spacing:-2.071680pt;}
.ws118{word-spacing:-2.015360pt;}
.ws114{word-spacing:-1.929600pt;}
.ws59{word-spacing:-1.859200pt;}
.ws132{word-spacing:-1.800960pt;}
.ws71{word-spacing:-1.699840pt;}
.ws6a{word-spacing:-1.593600pt;}
.ws3e{word-spacing:-1.584000pt;}
.wsa4{word-spacing:-1.487360pt;}
.ws117{word-spacing:-1.457920pt;}
.ws57{word-spacing:-1.434240pt;}
.ws74{word-spacing:-1.381120pt;}
.ws116{word-spacing:-1.372160pt;}
.wscb{word-spacing:-1.328000pt;}
.ws115{word-spacing:-1.286400pt;}
.ws69{word-spacing:-1.221760pt;}
.ws138{word-spacing:-1.157760pt;}
.ws9f{word-spacing:-1.115520pt;}
.ws9a{word-spacing:-1.062400pt;}
.ws133{word-spacing:-1.029120pt;}
.ws64{word-spacing:-0.956160pt;}
.ws73{word-spacing:-0.849920pt;}
.wsda{word-spacing:-0.814720pt;}
.ws56{word-spacing:-0.796800pt;}
.ws4c{word-spacing:-0.743680pt;}
.ws11f{word-spacing:-0.728960pt;}
.ws80{word-spacing:-0.690560pt;}
.wsae{word-spacing:-0.643200pt;}
.ws67{word-spacing:-0.584320pt;}
.ws8a{word-spacing:-0.531200pt;}
.ws68{word-spacing:-0.424960pt;}
.ws113{word-spacing:-0.343040pt;}
.ws3a{word-spacing:-0.336000pt;}
.wsef{word-spacing:-0.318720pt;}
.ws26{word-spacing:-0.288000pt;}
.ws107{word-spacing:-0.265600pt;}
.wsd9{word-spacing:-0.257280pt;}
.ws12e{word-spacing:-0.214400pt;}
.ws109{word-spacing:-0.202240pt;}
.ws17{word-spacing:-0.192000pt;}
.ws19{word-spacing:-0.171520pt;}
.ws4e{word-spacing:-0.159360pt;}
.ws135{word-spacing:-0.085760pt;}
.wsbf{word-spacing:-0.079882pt;}
.wsba{word-spacing:-0.053120pt;}
.ws47{word-spacing:-0.048000pt;}
.ws14f{word-spacing:-0.042880pt;}
.ws18{word-spacing:0.000000pt;}
.ws147{word-spacing:0.042880pt;}
.ws83{word-spacing:0.053120pt;}
.ws21{word-spacing:0.096000pt;}
.ws23{word-spacing:0.106240pt;}
.ws134{word-spacing:0.128640pt;}
.wsf0{word-spacing:0.171520pt;}
.ws1d{word-spacing:0.185600pt;}
.ws27{word-spacing:0.192000pt;}
.wsa6{word-spacing:0.202240pt;}
.ws54{word-spacing:0.212480pt;}
.ws154{word-spacing:0.214400pt;}
.ws25{word-spacing:0.240000pt;}
.ws150{word-spacing:0.257280pt;}
.wsd8{word-spacing:0.265600pt;}
.ws20{word-spacing:0.288000pt;}
.ws1b{word-spacing:0.300160pt;}
.wsa7{word-spacing:0.303360pt;}
.wsc6{word-spacing:0.318720pt;}
.ws1c{word-spacing:0.334080pt;}
.ws24{word-spacing:0.336000pt;}
.ws158{word-spacing:0.343040pt;}
.ws22{word-spacing:0.371840pt;}
.wse0{word-spacing:0.385920pt;}
.ws1e{word-spacing:0.408320pt;}
.ws11e{word-spacing:0.428800pt;}
.ws1a{word-spacing:0.471680pt;}
.ws55{word-spacing:0.478080pt;}
.ws1f{word-spacing:0.480000pt;}
.wsdd{word-spacing:0.557440pt;}
.wsf2{word-spacing:0.584320pt;}
.ws65{word-spacing:0.643200pt;}
.ws157{word-spacing:0.686080pt;}
.ws66{word-spacing:0.690560pt;}
.ws139{word-spacing:0.771840pt;}
.wsbb{word-spacing:0.796800pt;}
.ws159{word-spacing:0.814720pt;}
.ws9c{word-spacing:0.849920pt;}
.ws149{word-spacing:0.857600pt;}
.ws2e{word-spacing:1.008000pt;}
.ws14c{word-spacing:1.029120pt;}
.ws14b{word-spacing:1.114880pt;}
.ws5c{word-spacing:1.115520pt;}
.ws126{word-spacing:1.200640pt;}
.wsa0{word-spacing:1.221760pt;}
.ws34{word-spacing:1.248000pt;}
.ws127{word-spacing:1.286400pt;}
.ws86{word-spacing:1.328000pt;}
.ws35{word-spacing:1.344000pt;}
.ws9b{word-spacing:1.487360pt;}
.wse6{word-spacing:1.593600pt;}
.wse7{word-spacing:1.646720pt;}
.ws61{word-spacing:1.752960pt;}
.ws124{word-spacing:1.758080pt;}
.ws9e{word-spacing:1.912320pt;}
.ws125{word-spacing:1.929600pt;}
.ws60{word-spacing:1.965440pt;}
.ws93{word-spacing:2.124800pt;}
.wscd{word-spacing:2.231040pt;}
.ws3d{word-spacing:2.256000pt;}
.wsfa{word-spacing:2.284160pt;}
.ws123{word-spacing:2.358400pt;}
.ws4b{word-spacing:2.390400pt;}
.ws92{word-spacing:2.496640pt;}
.ws4d{word-spacing:2.602880pt;}
.ws5b{word-spacing:2.762240pt;}
.ws51{word-spacing:3.027840pt;}
.wsa3{word-spacing:3.134080pt;}
.ws13e{word-spacing:3.173120pt;}
.wsb9{word-spacing:3.240320pt;}
.ws63{word-spacing:3.399680pt;}
.wsf4{word-spacing:3.505920pt;}
.ws3c{word-spacing:3.552000pt;}
.ws141{word-spacing:3.644800pt;}
.ws3b{word-spacing:3.648000pt;}
.ws50{word-spacing:3.665280pt;}
.ws13c{word-spacing:3.730560pt;}
.ws13f{word-spacing:3.816320pt;}
.ws4f{word-spacing:3.877760pt;}
.wsf5{word-spacing:4.037120pt;}
.ws7b{word-spacing:4.143360pt;}
.ws30{word-spacing:4.176000pt;}
.ws62{word-spacing:4.302720pt;}
.ws2f{word-spacing:4.320000pt;}
.ws13d{word-spacing:4.459520pt;}
.ws98{word-spacing:4.515200pt;}
.ws99{word-spacing:4.674560pt;}
.ws39{word-spacing:4.848000pt;}
.ws128{word-spacing:4.931200pt;}
.ws4a{word-spacing:4.940160pt;}
.ws29{word-spacing:4.944000pt;}
.ws49{word-spacing:4.992000pt;}
.ws53{word-spacing:4.993280pt;}
.ws2a{word-spacing:5.088000pt;}
.ws10f{word-spacing:5.102720pt;}
.ws79{word-spacing:5.152640pt;}
.ws31{word-spacing:5.184000pt;}
.ws90{word-spacing:5.205760pt;}
.ws2b{word-spacing:5.280000pt;}
.wsff{word-spacing:5.365120pt;}
.ws48{word-spacing:5.424000pt;}
.ws28{word-spacing:5.472000pt;}
.ws110{word-spacing:5.574400pt;}
.ws7a{word-spacing:5.630720pt;}
.ws11d{word-spacing:5.660160pt;}
.ws11b{word-spacing:5.745920pt;}
.wsab{word-spacing:5.843200pt;}
.wsc8{word-spacing:6.002560pt;}
.ws12a{word-spacing:6.174720pt;}
.ws146{word-spacing:6.217600pt;}
.ws95{word-spacing:6.268160pt;}
.ws12b{word-spacing:6.303360pt;}
.wsc7{word-spacing:6.374400pt;}
.ws11c{word-spacing:6.389120pt;}
.wsa5{word-spacing:6.480640pt;}
.wsc0{word-spacing:6.640000pt;}
.ws129{word-spacing:6.817920pt;}
.ws12c{word-spacing:6.860800pt;}
.ws97{word-spacing:6.905600pt;}
.ws145{word-spacing:6.946560pt;}
.wsac{word-spacing:7.011840pt;}
.ws12d{word-spacing:7.032320pt;}
.wsdf{word-spacing:7.118080pt;}
.ws33{word-spacing:7.200000pt;}
.wsad{word-spacing:7.277440pt;}
.ws32{word-spacing:7.392000pt;}
.ws11a{word-spacing:7.504000pt;}
.ws6d{word-spacing:7.543040pt;}
.ws13a{word-spacing:7.589760pt;}
.ws41{word-spacing:7.632000pt;}
.ws119{word-spacing:7.675520pt;}
.ws2d{word-spacing:7.728000pt;}
.ws94{word-spacing:7.755520pt;}
.ws96{word-spacing:7.914880pt;}
.ws2c{word-spacing:8.016000pt;}
.wsfe{word-spacing:8.074240pt;}
.ws111{word-spacing:8.147200pt;}
.ws42{word-spacing:8.160000pt;}
.ws6f{word-spacing:8.180480pt;}
.ws13b{word-spacing:8.318720pt;}
.wsaa{word-spacing:8.392960pt;}
.ws37{word-spacing:8.400000pt;}
.wsf1{word-spacing:8.446080pt;}
.wsee{word-spacing:8.552320pt;}
.ws36{word-spacing:8.688000pt;}
.ws91{word-spacing:8.817920pt;}
.wsd1{word-spacing:8.924160pt;}
.ws112{word-spacing:8.961920pt;}
.ws40{word-spacing:9.024000pt;}
.wsea{word-spacing:9.030400pt;}
.ws6e{word-spacing:9.083520pt;}
.wsc9{word-spacing:9.189760pt;}
.ws38{word-spacing:9.312000pt;}
.wse9{word-spacing:9.349120pt;}
.ws82{word-spacing:9.455360pt;}
.ws131{word-spacing:9.605120pt;}
.ws7f{word-spacing:9.667840pt;}
.ws81{word-spacing:9.827200pt;}
.ws12f{word-spacing:9.991040pt;}
.ws84{word-spacing:10.092800pt;}
.wsde{word-spacing:10.305280pt;}
.ws85{word-spacing:10.464640pt;}
.ws130{word-spacing:10.634240pt;}
.wscc{word-spacing:10.730240pt;}
.wsca{word-spacing:10.942720pt;}
.ws10a{word-spacing:11.320320pt;}
.ws87{word-spacing:11.367680pt;}
.ws10e{word-spacing:11.448960pt;}
.ws10d{word-spacing:11.491840pt;}
.ws10c{word-spacing:11.534720pt;}
.ws106{word-spacing:11.580160pt;}
.wse8{word-spacing:11.633280pt;}
.ws7e{word-spacing:11.739520pt;}
.ws10b{word-spacing:11.963520pt;}
.ws7d{word-spacing:12.005120pt;}
.ws105{word-spacing:12.164480pt;}
.ws88{word-spacing:12.217600pt;}
.ws7c{word-spacing:12.642560pt;}
.ws14a{word-spacing:12.778240pt;}
.wsfd{word-spacing:13.014400pt;}
.ws45{word-spacing:13.248000pt;}
.ws9d{word-spacing:13.280000pt;}
.ws43{word-spacing:13.296000pt;}
.ws44{word-spacing:13.488000pt;}
.wsfc{word-spacing:13.492480pt;}
.ws89{word-spacing:13.651840pt;}
.ws46{word-spacing:13.776000pt;}
.wsfb{word-spacing:13.917440pt;}
.wsbe{word-spacing:14.129920pt;}
.ws52{word-spacing:14.554880pt;}
.wsaf{word-spacing:14.767360pt;}
.ws70{word-spacing:15.192320pt;}
.ws6b{word-spacing:15.829760pt;}
.wsb0{word-spacing:16.042240pt;}
.ws6c{word-spacing:16.467200pt;}
.wsd0{word-spacing:17.317120pt;}
.wscf{word-spacing:17.742080pt;}
.wsed{word-spacing:17.795200pt;}
.wsec{word-spacing:18.167040pt;}
.wseb{word-spacing:18.645120pt;}
.wsd7{word-spacing:18.804480pt;}
.wsd3{word-spacing:19.070080pt;}
.wsd4{word-spacing:19.282560pt;}
.wsd2{word-spacing:19.707520pt;}
.ws121{word-spacing:20.282240pt;}
.ws120{word-spacing:20.453760pt;}
.ws122{word-spacing:20.925440pt;}
.ws148{word-spacing:29.887360pt;}
.ws14e{word-spacing:43.994880pt;}
.ws14d{word-spacing:44.552320pt;}
.ws142{word-spacing:61.275520pt;}
.ws143{word-spacing:62.733440pt;}
._12{margin-left:-1462.234240pt;}
._16{margin-left:-12.735360pt;}
._6{margin-left:-2.084480pt;}
._0{margin-left:-0.993600pt;}
._1{width:1.200640pt;}
._9{width:2.209280pt;}
._4{width:3.120000pt;}
._2{width:4.840000pt;}
._5{width:6.048000pt;}
._3{width:7.820160pt;}
._c{width:8.786880pt;}
._b{width:11.198400pt;}
._15{width:12.933120pt;}
._a{width:14.490880pt;}
._8{width:16.833280pt;}
._11{width:20.701120pt;}
._14{width:30.744960pt;}
._17{width:44.028480pt;}
._7{width:49.920000pt;}
._1b{width:92.505600pt;}
._19{width:125.390720pt;}
._1a{width:199.718400pt;}
._18{width:315.711360pt;}
._1c{width:576.341120pt;}
._13{width:609.445760pt;}
._10{width:750.704000pt;}
._e{width:789.308160pt;}
._f{width:875.683200pt;}
._d{width:914.726400pt;}
.fse{font-size:26.627200pt;}
.fsc{font-size:26.641067pt;}
.fsa{font-size:26.666667pt;}
.fs10{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fsf{font-size:53.254933pt;}
.fsb{font-size:53.282133pt;}
.fs9{font-size:53.333333pt;}
.fsd{font-size:63.938667pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1a8{bottom:1.440000pt;}
.y124{bottom:2.240000pt;}
.y232{bottom:2.400000pt;}
.y6{bottom:2.880000pt;}
.y1cb{bottom:3.040000pt;}
.yca{bottom:3.372006pt;}
.yb3{bottom:5.927087pt;}
.ya0{bottom:6.070000pt;}
.ya3{bottom:6.083467pt;}
.ycd{bottom:7.490712pt;}
.y1a6{bottom:9.600133pt;}
.y1c9{bottom:9.740000pt;}
.y227{bottom:14.560000pt;}
.ya5{bottom:17.280000pt;}
.yd0{bottom:17.920000pt;}
.yb2{bottom:18.408427pt;}
.yb5{bottom:18.421747pt;}
.ya2{bottom:18.576800pt;}
.ycc{bottom:19.965680pt;}
.yb{bottom:22.560000pt;}
.yba{bottom:24.399555pt;}
.yc9{bottom:26.045067pt;}
.y223{bottom:26.720000pt;}
.y233{bottom:26.879867pt;}
.y230{bottom:27.039867pt;}
.y23d{bottom:27.040000pt;}
.yb1{bottom:27.319863pt;}
.ya{bottom:27.680000pt;}
.y9f{bottom:28.656667pt;}
.ya1{bottom:28.656800pt;}
.ybc{bottom:29.760000pt;}
.ycb{bottom:30.164000pt;}
.yb9{bottom:34.437926pt;}
.yb8{bottom:34.725650pt;}
.yc{bottom:39.520000pt;}
.yae{bottom:39.554933pt;}
.yb4{bottom:39.561434pt;}
.y9{bottom:40.478720pt;}
.yb7{bottom:44.044711pt;}
.yb0{bottom:49.378667pt;}
.y13f{bottom:51.359867pt;}
.y120{bottom:51.360000pt;}
.yb6{bottom:52.708400pt;}
.y8{bottom:55.040000pt;}
.yaf{bottom:58.786400pt;}
.y144{bottom:63.519867pt;}
.y164{bottom:63.520000pt;}
.y1a0{bottom:63.680000pt;}
.y35{bottom:68.961467pt;}
.y25a{bottom:69.760000pt;}
.y1fd{bottom:71.842720pt;}
.y103{bottom:75.990080pt;}
.y1c7{bottom:76.383840pt;}
.yda{bottom:78.371680pt;}
.y34{bottom:79.679867pt;}
.y13d{bottom:81.278560pt;}
.y1fc{bottom:84.160000pt;}
.y59{bottom:84.342880pt;}
.y82{bottom:85.564640pt;}
.y19e{bottom:85.884000pt;}
.y33{bottom:91.200000pt;}
.y102{bottom:91.355040pt;}
.y22c{bottom:91.360800pt;}
.y1c6{bottom:91.748800pt;}
.y27e{bottom:91.995040pt;}
.y259{bottom:92.320347pt;}
.yd9{bottom:93.736640pt;}
.y181{bottom:94.034560pt;}
.y1fb{bottom:96.325440pt;}
.y58{bottom:99.707840pt;}
.y81{bottom:100.929600pt;}
.y19d{bottom:101.089600pt;}
.y101{bottom:106.715040pt;}
.y1c5{bottom:107.113760pt;}
.y27d{bottom:107.360000pt;}
.y1fa{bottom:108.642720pt;}
.y180{bottom:109.399520pt;}
.y13c{bottom:109.440000pt;}
.y11e{bottom:109.714560pt;}
.yd8{bottom:110.057760pt;}
.y9c{bottom:111.515040pt;}
.y22b{bottom:114.560960pt;}
.y57{bottom:115.072800pt;}
.y258{bottom:115.679867pt;}
.y80{bottom:116.294560pt;}
.y19c{bottom:116.454560pt;}
.y32{bottom:117.064160pt;}
.y1f9{bottom:120.960000pt;}
.y100{bottom:122.064480pt;}
.y1c4{bottom:122.319360pt;}
.y17f{bottom:124.605120pt;}
.y11d{bottom:125.079520pt;}
.y27c{bottom:126.082080pt;}
.yd7{bottom:126.378880pt;}
.y9b{bottom:126.878880pt;}
.y13b{bottom:127.430560pt;}
.y56{bottom:130.278400pt;}
.y7f{bottom:131.659520pt;}
.y19b{bottom:131.819520pt;}
.y31{bottom:132.429120pt;}
.y1f8{bottom:133.125307pt;}
.yff{bottom:137.429440pt;}
.y1c3{bottom:137.684320pt;}
.y22a{bottom:137.920480pt;}
.y17e{bottom:139.970080pt;}
.y11c{bottom:140.285120pt;}
.y143{bottom:142.240000pt;}
.y257{bottom:142.406240pt;}
.yd6{bottom:142.700000pt;}
.y9a{bottom:143.193920pt;}
.y27b{bottom:144.964960pt;}
.y1f7{bottom:145.442587pt;}
.y55{bottom:145.643360pt;}
.y7e{bottom:147.024480pt;}
.y19a{bottom:147.184480pt;}
.y30{bottom:147.634720pt;}
.yfe{bottom:152.635040pt;}
.y1c2{bottom:153.049280pt;}
.y17d{bottom:155.335040pt;}
.y11b{bottom:155.650080pt;}
.y148{bottom:156.648960pt;}
.y1f6{bottom:157.759867pt;}
.yd5{bottom:157.905600pt;}
.y99{bottom:159.515040pt;}
.y54{bottom:161.008320pt;}
.y229{bottom:161.280000pt;}
.y256{bottom:161.284160pt;}
.y7d{bottom:162.389440pt;}
.y199{bottom:162.549440pt;}
.y2f{bottom:162.999680pt;}
.y27a{bottom:163.682080pt;}
.yfd{bottom:168.000000pt;}
.y1c1{bottom:168.414240pt;}
.y147{bottom:168.966240pt;}
.y1f5{bottom:169.922720pt;}
.y17c{bottom:170.700000pt;}
.y11a{bottom:171.015040pt;}
.y98{bottom:174.858240pt;}
.y53{bottom:176.373280pt;}
.y7c{bottom:177.595040pt;}
.y198{bottom:177.755040pt;}
.y2e{bottom:178.364640pt;}
.y255{bottom:180.162080pt;}
.yd4{bottom:181.265120pt;}
.y146{bottom:181.283520pt;}
.y1f4{bottom:182.240000pt;}
.y279{bottom:182.560000pt;}
.y1c0{bottom:183.779200pt;}
.y17b{bottom:186.064960pt;}
.y119{bottom:186.380000pt;}
.y228{bottom:188.000000pt;}
.y97{bottom:191.020000pt;}
.y52{bottom:191.738240pt;}
.y7b{bottom:192.960000pt;}
.y197{bottom:193.120000pt;}
.y145{bottom:193.440000pt;}
.y2d{bottom:193.729600pt;}
.y1f3{bottom:194.566240pt;}
.yfc{bottom:197.280000pt;}
.y1bf{bottom:198.984800pt;}
.y254{bottom:199.040000pt;}
.y226{bottom:201.280000pt;}
.y278{bottom:201.445120pt;}
.y96{bottom:206.384960pt;}
.y1f2{bottom:206.722720pt;}
.y51{bottom:206.943840pt;}
.y162{bottom:207.790080pt;}
.y2c{bottom:209.094560pt;}
.y17a{bottom:209.424480pt;}
.y225{bottom:209.600000pt;}
.y118{bottom:209.739520pt;}
.yd3{bottom:210.069440pt;}
.y1be{bottom:214.349760pt;}
.y253{bottom:217.920000pt;}
.y1f1{bottom:219.040000pt;}
.y277{bottom:220.966240pt;}
.y95{bottom:221.749920pt;}
.y7a{bottom:222.240000pt;}
.y50{bottom:222.308800pt;}
.y161{bottom:222.995680pt;}
.y196{bottom:223.840000pt;}
.y2b{bottom:224.300160pt;}
.y222{bottom:226.560000pt;}
.y1bd{bottom:229.714720pt;}
.y1f0{bottom:231.366240pt;}
.y221{bottom:234.882720pt;}
.yfb{bottom:236.454560pt;}
.y94{bottom:237.114880pt;}
.y252{bottom:237.440000pt;}
.y4f{bottom:237.673760pt;}
.y179{bottom:238.069440pt;}
.y160{bottom:238.360640pt;}
.y117{bottom:238.384480pt;}
.yd2{bottom:238.714400pt;}
.y2a{bottom:239.665120pt;}
.y276{bottom:239.844160pt;}
.y224{bottom:240.960000pt;}
.y195{bottom:241.892480pt;}
.y1ef{bottom:243.522720pt;}
.y1bc{bottom:245.079680pt;}
.y220{bottom:247.200000pt;}
.yfa{bottom:251.819520pt;}
.y93{bottom:252.479840pt;}
.y4e{bottom:253.038720pt;}
.y178{bottom:253.434400pt;}
.y15f{bottom:253.725600pt;}
.y116{bottom:253.749440pt;}
.yd1{bottom:253.920000pt;}
.y29{bottom:255.030080pt;}
.y1ee{bottom:255.840000pt;}
.y275{bottom:258.722080pt;}
.y1bb{bottom:260.444640pt;}
.y79{bottom:261.256960pt;}
.y251{bottom:262.240000pt;}
.yf9{bottom:267.025120pt;}
.y1ed{bottom:268.163520pt;}
.y4d{bottom:268.403680pt;}
.y177{bottom:268.640000pt;}
.y15e{bottom:269.090560pt;}
.y115{bottom:269.114400pt;}
.y28{bottom:270.395040pt;}
.y21f{bottom:274.880000pt;}
.y92{bottom:275.680000pt;}
.y1ba{bottom:275.809600pt;}
.ycf{bottom:275.840000pt;}
.yc8{bottom:275.920000pt;}
.y78{bottom:276.621920pt;}
.y274{bottom:277.600000pt;}
.y1ec{bottom:280.320000pt;}
.yf8{bottom:282.390080pt;}
.y4c{bottom:283.768640pt;}
.y114{bottom:284.320000pt;}
.y15d{bottom:284.455520pt;}
.y27{bottom:285.760000pt;}
.y1b9{bottom:291.015200pt;}
.y77{bottom:291.827520pt;}
.y13a{bottom:292.394720pt;}
.y1eb{bottom:292.642720pt;}
.yc7{bottom:293.752960pt;}
.yce{bottom:296.000000pt;}
.y273{bottom:296.480000pt;}
.y250{bottom:296.960960pt;}
.yf7{bottom:297.755040pt;}
.y4b{bottom:298.974240pt;}
.y176{bottom:299.360000pt;}
.y15c{bottom:299.820480pt;}
.y1ea{bottom:304.960000pt;}
.y1b8{bottom:306.380160pt;}
.y91{bottom:306.400000pt;}
.y76{bottom:307.192480pt;}
.y139{bottom:307.759680pt;}
.y21e{bottom:309.454560pt;}
.yf6{bottom:313.005280pt;}
.y1a5{bottom:313.600000pt;}
.y4a{bottom:314.339200pt;}
.y15b{bottom:315.026080pt;}
.y26{bottom:315.040000pt;}
.y272{bottom:316.000000pt;}
.y24f{bottom:316.482080pt;}
.y1e9{bottom:317.126240pt;}
.y175{bottom:317.400160pt;}
.y1b7{bottom:321.745120pt;}
.y75{bottom:322.557440pt;}
.y138{bottom:322.965280pt;}
.y90{bottom:324.430560pt;}
.y21d{bottom:328.332480pt;}
.yf5{bottom:328.370240pt;}
.y187{bottom:329.120000pt;}
.y1e8{bottom:329.443520pt;}
.y49{bottom:329.704160pt;}
.yc6{bottom:329.755040pt;}
.y15a{bottom:330.391040pt;}
.y113{bottom:333.035360pt;}
.y24e{bottom:335.360000pt;}
.y1b6{bottom:337.110080pt;}
.y74{bottom:337.922400pt;}
.y137{bottom:338.330240pt;}
.y271{bottom:340.800000pt;}
.y1e7{bottom:341.600000pt;}
.y18b{bottom:343.528960pt;}
.yf4{bottom:343.575840pt;}
.y48{bottom:345.069120pt;}
.yc5{bottom:345.120480pt;}
.y11f{bottom:345.760000pt;}
.y21c{bottom:347.210400pt;}
.y1b5{bottom:352.475040pt;}
.y73{bottom:353.287360pt;}
.y25{bottom:353.556000pt;}
.y136{bottom:353.695200pt;}
.y159{bottom:353.750560pt;}
.y1e6{bottom:353.926240pt;}
.y24d{bottom:354.240960pt;}
.y18a{bottom:355.846240pt;}
.y270{bottom:356.160000pt;}
.y123{bottom:360.326240pt;}
.y47{bottom:360.434080pt;}
.y21b{bottom:366.088320pt;}
.y1e5{bottom:366.243520pt;}
.yf3{bottom:366.935360pt;}
.y24{bottom:367.632000pt;}
.y1b4{bottom:367.840000pt;}
.y189{bottom:368.163520pt;}
.yc4{bottom:368.474880pt;}
.y72{bottom:368.652320pt;}
.y135{bottom:369.060160pt;}
.y122{bottom:372.482720pt;}
.y24c{bottom:373.762080pt;}
.y46{bottom:375.799040pt;}
.y1e4{bottom:378.400000pt;}
.y188{bottom:380.320000pt;}
.y158{bottom:382.395520pt;}
.y71{bottom:383.857920pt;}
.y134{bottom:384.425120pt;}
.y121{bottom:384.800000pt;}
.y21a{bottom:384.966240pt;}
.y1e3{bottom:390.726240pt;}
.y26f{bottom:390.882080pt;}
.y45{bottom:391.004640pt;}
.yc3{bottom:391.834400pt;}
.y24b{bottom:392.640000pt;}
.y23{bottom:394.512000pt;}
.yf2{bottom:395.580320pt;}
.y1b3{bottom:396.960000pt;}
.y157{bottom:397.760480pt;}
.y70{bottom:399.222880pt;}
.y133{bottom:399.790080pt;}
.y1e2{bottom:403.043520pt;}
.y219{bottom:403.844160pt;}
.y44{bottom:406.369600pt;}
.yc2{bottom:407.035520pt;}
.y22{bottom:408.588000pt;}
.y26e{bottom:409.764160pt;}
.yf1{bottom:410.945280pt;}
.y24a{bottom:411.523040pt;}
.y6f{bottom:414.587840pt;}
.y132{bottom:414.995680pt;}
.y1e1{bottom:415.200000pt;}
.y156{bottom:421.120000pt;}
.y43{bottom:421.734560pt;}
.y21{bottom:422.352000pt;}
.yc1{bottom:422.400480pt;}
.y218{bottom:422.722080pt;}
.yf0{bottom:426.310240pt;}
.y1e0{bottom:427.522720pt;}
.y26d{bottom:428.642080pt;}
.y6e{bottom:429.952800pt;}
.y131{bottom:430.360640pt;}
.y249{bottom:431.044160pt;}
.y1b2{bottom:435.520000pt;}
.y20{bottom:436.116000pt;}
.y42{bottom:437.099520pt;}
.y1df{bottom:439.840000pt;}
.y217{bottom:441.600000pt;}
.yef{bottom:441.675200pt;}
.y6d{bottom:445.317760pt;}
.y130{bottom:445.725600pt;}
.yc0{bottom:445.760480pt;}
.y26c{bottom:447.520000pt;}
.y1a7{bottom:449.120000pt;}
.y1f{bottom:449.880000pt;}
.y248{bottom:449.922080pt;}
.y1ca{bottom:450.720000pt;}
.y155{bottom:451.680000pt;}
.y1de{bottom:452.005440pt;}
.y41{bottom:452.464480pt;}
.y1b1{bottom:453.561440pt;}
.yee{bottom:457.040160pt;}
.y216{bottom:460.480000pt;}
.y6c{bottom:460.523360pt;}
.y1e{bottom:463.800000pt;}
.y1dd{bottom:464.322720pt;}
.y26b{bottom:466.405120pt;}
.y40{bottom:467.829440pt;}
.y247{bottom:468.800000pt;}
.y12f{bottom:469.085120pt;}
.ybf{bottom:469.120480pt;}
.y154{bottom:469.713120pt;}
.yed{bottom:472.405120pt;}
.y6b{bottom:475.888320pt;}
.y1dc{bottom:476.640000pt;}
.y174{bottom:476.919520pt;}
.y1d{bottom:477.564000pt;}
.y1c8{bottom:477.760000pt;}
.y215{bottom:480.000000pt;}
.y194{bottom:480.454400pt;}
.y163{bottom:482.400000pt;}
.y3f{bottom:483.035040pt;}
.y26a{bottom:485.926240pt;}
.yec{bottom:487.610720pt;}
.y246{bottom:487.680000pt;}
.y1db{bottom:488.802720pt;}
.y6a{bottom:491.253280pt;}
.y1c{bottom:491.328000pt;}
.y173{bottom:492.284480pt;}
.ybe{bottom:492.480480pt;}
.y112{bottom:494.639680pt;}
.y193{bottom:495.819360pt;}
.y168{bottom:496.968960pt;}
.y12e{bottom:497.730080pt;}
.y3e{bottom:498.400000pt;}
.y1da{bottom:501.120000pt;}
.y214{bottom:504.800000pt;}
.y269{bottom:504.804160pt;}
.y1b{bottom:505.092000pt;}
.y69{bottom:506.618240pt;}
.y245{bottom:507.200000pt;}
.y172{bottom:507.649440pt;}
.y167{bottom:509.125440pt;}
.y111{bottom:510.004640pt;}
.yeb{bottom:510.970240pt;}
.y192{bottom:511.024960pt;}
.y12d{bottom:513.095040pt;}
.y1d9{bottom:513.443520pt;}
.ybd{bottom:515.840000pt;}
.y1a{bottom:518.856000pt;}
.y166{bottom:521.442720pt;}
.y68{bottom:521.983200pt;}
.y171{bottom:522.855040pt;}
.y268{bottom:523.682080pt;}
.y110{bottom:525.369600pt;}
.y1d8{bottom:525.600000pt;}
.y191{bottom:526.389920pt;}
.y12c{bottom:528.460000pt;}
.y213{bottom:528.800000pt;}
.y3d{bottom:529.120000pt;}
.y244{bottom:532.000000pt;}
.y19{bottom:532.776000pt;}
.y165{bottom:533.760000pt;}
.y67{bottom:537.348160pt;}
.yad{bottom:537.760000pt;}
.y1d7{bottom:537.922720pt;}
.y170{bottom:538.220000pt;}
.yea{bottom:539.615200pt;}
.y10f{bottom:540.575200pt;}
.y190{bottom:541.754880pt;}
.y267{bottom:542.560000pt;}
.y12b{bottom:543.665600pt;}
.y212{bottom:545.953120pt;}
.y18{bottom:546.540000pt;}
.y3c{bottom:547.175360pt;}
.y1d6{bottom:550.240000pt;}
.y66{bottom:552.553760pt;}
.y16f{bottom:553.584960pt;}
.ye9{bottom:554.980160pt;}
.y10e{bottom:555.940160pt;}
.ybb{bottom:556.320000pt;}
.y18f{bottom:557.119840pt;}
.y211{bottom:558.270400pt;}
.y12a{bottom:559.030560pt;}
.y17{bottom:560.304000pt;}
.y266{bottom:561.280000pt;}
.y1d5{bottom:562.402720pt;}
.y243{bottom:566.722080pt;}
.yac{bottom:567.511200pt;}
.y65{bottom:567.918720pt;}
.y16e{bottom:568.949920pt;}
.ye8{bottom:570.345120pt;}
.y210{bottom:570.426880pt;}
.y10d{bottom:571.305120pt;}
.y16{bottom:574.068000pt;}
.y129{bottom:574.395520pt;}
.y1d4{bottom:574.720000pt;}
.y18e{bottom:580.320000pt;}
.y265{bottom:580.960000pt;}
.y20f{bottom:582.744160pt;}
.y64{bottom:583.283680pt;}
.y16d{bottom:584.314880pt;}
.y242{bottom:585.600000pt;}
.ye7{bottom:585.710080pt;}
.y10c{bottom:586.670080pt;}
.y1d3{bottom:587.048960pt;}
.y15{bottom:587.988000pt;}
.y128{bottom:589.760480pt;}
.y20e{bottom:595.061440pt;}
.y63{bottom:598.648640pt;}
.y1d2{bottom:599.205440pt;}
.y16c{bottom:599.679840pt;}
.y14{bottom:601.752000pt;}
.y10b{bottom:602.035040pt;}
.y241{bottom:604.480000pt;}
.y264{bottom:605.759867pt;}
.y20d{bottom:607.217920pt;}
.ye6{bottom:609.069600pt;}
.y18d{bottom:611.040000pt;}
.y1d1{bottom:611.522720pt;}
.y127{bottom:613.120000pt;}
.y62{bottom:614.013600pt;}
.yab{bottom:615.505120pt;}
.y13{bottom:615.516000pt;}
.y23c{bottom:618.400000pt;}
.y20c{bottom:619.535200pt;}
.y263{bottom:621.120000pt;}
.y8f{bottom:621.384640pt;}
.y16b{bottom:622.880000pt;}
.y1d0{bottom:623.840000pt;}
.y10a{bottom:625.235200pt;}
.y23b{bottom:626.881760pt;}
.y240{bottom:626.882720pt;}
.y18c{bottom:629.112960pt;}
.y61{bottom:629.378560pt;}
.yaa{bottom:630.870080pt;}
.y20b{bottom:631.852480pt;}
.y23a{bottom:632.960000pt;}
.y23e{bottom:633.120000pt;}
.y153{bottom:636.589600pt;}
.y8e{bottom:636.590240pt;}
.y1b0{bottom:636.599680pt;}
.ye5{bottom:637.714560pt;}
.y23f{bottom:639.200000pt;}
.y109{bottom:640.759520pt;}
.y12{bottom:642.720000pt;}
.y19f{bottom:643.200000pt;}
.y126{bottom:643.679867pt;}
.y20a{bottom:644.008960pt;}
.y60{bottom:644.584160pt;}
.ya9{bottom:646.235040pt;}
.y1cf{bottom:650.560000pt;}
.y152{bottom:651.954560pt;}
.y8d{bottom:651.955200pt;}
.y1af{bottom:651.964640pt;}
.ye4{bottom:653.079520pt;}
.y16a{bottom:653.600000pt;}
.y262{bottom:655.690267pt;}
.y209{bottom:656.326240pt;}
.y1a4{bottom:657.768960pt;}
.y5f{bottom:659.949120pt;}
.ya8{bottom:661.599840pt;}
.y125{bottom:661.759867pt;}
.y11{bottom:664.476000pt;}
.y239{bottom:666.880000pt;}
.y151{bottom:667.319520pt;}
.y8c{bottom:667.320160pt;}
.y1ae{bottom:667.329600pt;}
.ye3{bottom:668.444480pt;}
.y208{bottom:668.643520pt;}
.y108{bottom:669.404480pt;}
.y1a3{bottom:670.086240pt;}
.y169{bottom:671.679867pt;}
.y261{bottom:674.568187pt;}
.y5e{bottom:675.314080pt;}
.y13e{bottom:678.560000pt;}
.y207{bottom:680.800000pt;}
.y10{bottom:682.240000pt;}
.y1a2{bottom:682.242720pt;}
.y150{bottom:682.684480pt;}
.y8b{bottom:682.685120pt;}
.y1ad{bottom:682.694560pt;}
.ye2{bottom:683.650080pt;}
.y107{bottom:684.610080pt;}
.ya7{bottom:684.800000pt;}
.y182{bottom:686.400000pt;}
.y1ce{bottom:689.122720pt;}
.y5d{bottom:690.679040pt;}
.y142{bottom:693.126240pt;}
.y260{bottom:693.446107pt;}
.y1a1{bottom:694.560000pt;}
.y14f{bottom:698.049440pt;}
.y8a{bottom:698.050080pt;}
.y1ac{bottom:698.059520pt;}
.ye1{bottom:699.015040pt;}
.y106{bottom:699.975040pt;}
.y186{bottom:700.808960pt;}
.y1cd{bottom:701.440000pt;}
.y238{bottom:703.040960pt;}
.y141{bottom:705.282720pt;}
.y206{bottom:705.443520pt;}
.yf{bottom:705.759867pt;}
.y5c{bottom:706.044000pt;}
.ya6{bottom:708.160000pt;}
.y237{bottom:709.280000pt;}
.y25f{bottom:712.324027pt;}
.y185{bottom:713.126240pt;}
.y14e{bottom:713.255040pt;}
.y89{bottom:713.255680pt;}
.y1ab{bottom:713.265120pt;}
.ye0{bottom:714.380000pt;}
.y105{bottom:715.340000pt;}
.y140{bottom:717.600000pt;}
.y5b{bottom:721.249600pt;}
.y184{bottom:725.443520pt;}
.y1cc{bottom:728.160000pt;}
.y14d{bottom:728.620000pt;}
.y88{bottom:728.620640pt;}
.y1aa{bottom:728.630080pt;}
.ydf{bottom:729.744960pt;}
.y205{bottom:729.931680pt;}
.y9e{bottom:730.080000pt;}
.y25e{bottom:731.201947pt;}
.y5a{bottom:736.614560pt;}
.ye{bottom:736.648000pt;}
.y236{bottom:737.121760pt;}
.y183{bottom:737.600000pt;}
.y104{bottom:738.699520pt;}
.y204{bottom:742.248960pt;}
.y235{bottom:743.200000pt;}
.y14c{bottom:743.984960pt;}
.y87{bottom:743.985600pt;}
.y1a9{bottom:743.995040pt;}
.y9d{bottom:747.344800pt;}
.ya4{bottom:748.800000pt;}
.y25d{bottom:750.079867pt;}
.y3b{bottom:751.979520pt;}
.yde{bottom:753.104480pt;}
.y203{bottom:754.405440pt;}
.y14b{bottom:759.349920pt;}
.y86{bottom:759.350560pt;}
.yd{bottom:764.320000pt;}
.y22f{bottom:764.800000pt;}
.y202{bottom:766.722720pt;}
.y3a{bottom:767.344480pt;}
.y25c{bottom:768.960000pt;}
.y22e{bottom:773.282720pt;}
.y14a{bottom:774.714880pt;}
.y85{bottom:774.715520pt;}
.y201{bottom:779.040000pt;}
.y234{bottom:779.360000pt;}
.y231{bottom:779.520000pt;}
.ydd{bottom:781.749440pt;}
.y39{bottom:782.709440pt;}
.y22d{bottom:785.600000pt;}
.y25b{bottom:788.480000pt;}
.y7{bottom:789.440000pt;}
.y149{bottom:790.079840pt;}
.y84{bottom:790.080480pt;}
.y200{bottom:791.200000pt;}
.ydc{bottom:797.114400pt;}
.y38{bottom:798.074400pt;}
.y1ff{bottom:803.522587pt;}
.y5{bottom:804.160000pt;}
.ydb{bottom:812.320000pt;}
.y37{bottom:813.280000pt;}
.y83{bottom:813.440000pt;}
.y1fe{bottom:815.839867pt;}
.y4{bottom:821.126240pt;}
.y3{bottom:833.282720pt;}
.y36{bottom:836.484000pt;}
.y2{bottom:845.600000pt;}
.y1{bottom:858.240000pt;}
.h33{height:11.358667pt;}
.h36{height:12.960000pt;}
.h5{height:14.720000pt;}
.h1c{height:18.497850pt;}
.h26{height:19.112297pt;}
.hb{height:22.968750pt;}
.h38{height:24.480000pt;}
.h8{height:26.643750pt;}
.h3c{height:29.061250pt;}
.h4{height:29.773125pt;}
.h3{height:30.778125pt;}
.h7{height:31.200000pt;}
.hd{height:32.531250pt;}
.h2{height:33.328125pt;}
.hc{height:34.453125pt;}
.h10{height:36.001250pt;}
.h6{height:36.290625pt;}
.h37{height:36.800000pt;}
.h2a{height:36.883125pt;}
.h39{height:36.960000pt;}
.h27{height:36.976814pt;}
.h1d{height:36.995700pt;}
.h15{height:37.031250pt;}
.h22{height:38.126205pt;}
.hf{height:38.128125pt;}
.h19{height:38.128765pt;}
.h23{height:38.146045pt;}
.h2d{height:38.147965pt;}
.h24{height:38.148605pt;}
.h34{height:38.165885pt;}
.h2c{height:38.190205pt;}
.h1b{height:38.244500pt;}
.h13{height:38.281250pt;}
.h2b{height:38.587005pt;}
.ha{height:43.366783pt;}
.he{height:43.375000pt;}
.h12{height:43.906667pt;}
.h18{height:44.000000pt;}
.h25{height:45.268000pt;}
.h29{height:45.438667pt;}
.h14{height:47.196158pt;}
.h11{height:49.203438pt;}
.h28{height:49.328422pt;}
.h1e{height:49.353617pt;}
.h17{height:49.401042pt;}
.h16{height:53.327188pt;}
.h3a{height:55.091085pt;}
.h3b{height:55.734285pt;}
.h1f{height:59.224439pt;}
.h2f{height:61.278667pt;}
.h2e{height:61.280000pt;}
.h9{height:68.906250pt;}
.h1a{height:69.028000pt;}
.h21{height:69.281333pt;}
.h31{height:73.600000pt;}
.h30{height:73.601333pt;}
.h20{height:82.928125pt;}
.h32{height:128.801333pt;}
.h35{height:156.480000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.wc{width:11.520000pt;}
.wa{width:12.640000pt;}
.w5{width:37.920000pt;}
.w15{width:50.081333pt;}
.w12{width:58.880000pt;}
.w4{width:65.333333pt;}
.w14{width:67.998667pt;}
.w13{width:73.121333pt;}
.w17{width:76.001333pt;}
.w7{width:77.266667pt;}
.w11{width:79.360000pt;}
.w10{width:79.361333pt;}
.w16{width:79.518667pt;}
.w6{width:81.332000pt;}
.we{width:83.040000pt;}
.wf{width:83.200000pt;}
.w18{width:105.760000pt;}
.wd{width:136.960000pt;}
.w8{width:187.998667pt;}
.w9{width:188.000000pt;}
.wb{width:300.000000pt;}
.w3{width:461.920000pt;}
.w2{width:517.280000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1b{left:2.463333pt;}
.x2{left:7.200000pt;}
.x6{left:9.600000pt;}
.x1e{left:13.213467pt;}
.x21{left:21.440000pt;}
.x19{left:24.254933pt;}
.x1a{left:31.250000pt;}
.x27{left:33.120000pt;}
.x25{left:38.328133pt;}
.x1d{left:41.000133pt;}
.x1c{left:42.716667pt;}
.x18{left:49.708267pt;}
.x24{left:53.541467pt;}
.x2b{left:56.701067pt;}
.x29{left:64.069733pt;}
.x2a{left:65.315328pt;}
.x5{left:67.680000pt;}
.x23{left:71.124800pt;}
.x7{left:77.280000pt;}
.x1{left:79.360000pt;}
.x52{left:86.560000pt;}
.xf{left:90.720000pt;}
.xb{left:92.480000pt;}
.x64{left:93.760000pt;}
.x40{left:95.680000pt;}
.x16{left:98.244160pt;}
.x62{left:100.800000pt;}
.xe{left:102.080000pt;}
.x61{left:103.840000pt;}
.x60{left:110.720000pt;}
.x8{left:112.640000pt;}
.x5f{left:114.560000pt;}
.x17{left:117.267040pt;}
.x9{left:126.560000pt;}
.x3d{left:127.680000pt;}
.x5c{left:134.720000pt;}
.x3e{left:141.120000pt;}
.x53{left:146.399040pt;}
.x41{left:147.680000pt;}
.x3c{left:151.390720pt;}
.x38{left:153.860800pt;}
.x3b{left:158.880000pt;}
.x48{left:161.116960pt;}
.x31{left:166.080000pt;}
.x46{left:170.240000pt;}
.x39{left:171.200000pt;}
.x63{left:175.360000pt;}
.x54{left:191.680000pt;}
.x44{left:199.680000pt;}
.x49{left:206.880000pt;}
.x32{left:208.480000pt;}
.x15{left:211.200000pt;}
.x4a{left:214.080000pt;}
.x47{left:216.960000pt;}
.x13{left:226.400000pt;}
.x42{left:228.800000pt;}
.xd{left:234.884000pt;}
.x11{left:238.080000pt;}
.xa{left:242.560000pt;}
.x2e{left:245.120000pt;}
.x2f{left:254.720000pt;}
.x55{left:264.800000pt;}
.x10{left:271.360000pt;}
.x4b{left:289.920000pt;}
.x22{left:297.813333pt;}
.x28{left:299.746667pt;}
.x45{left:303.840000pt;}
.x5d{left:304.800000pt;}
.xc{left:305.924000pt;}
.x3a{left:307.360000pt;}
.x30{left:309.760000pt;}
.x36{left:319.200000pt;}
.x34{left:322.400000pt;}
.x37{left:328.800000pt;}
.x35{left:332.000000pt;}
.x33{left:338.256320pt;}
.x56{left:340.000000pt;}
.x1f{left:371.040000pt;}
.x4c{left:373.120000pt;}
.x2c{left:376.960000pt;}
.x26{left:379.040000pt;}
.x4d{left:380.320000pt;}
.x57{left:382.880000pt;}
.x58{left:390.080000pt;}
.x5e{left:410.560000pt;}
.x4e{left:452.480000pt;}
.x4f{left:459.680000pt;}
.x59{left:462.400000pt;}
.x5a{left:469.600000pt;}
.x43{left:476.315680pt;}
.x12{left:514.213600pt;}
.x3f{left:527.228000pt;}
.x51{left:531.840000pt;}
.x50{left:539.040000pt;}
.x5b{left:545.600000pt;}
.x20{left:559.360000pt;}
.x4{left:578.244160pt;}
.x14{left:590.215040pt;}
.x2d{left:593.574880pt;}
.x3{left:597.280000pt;}
}




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