
    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_da9483494081a424196992fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_8e5b9f932a258ff2288d323d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_0005b8a2fa25bf672f3303bf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_81630ab3491503f259026386.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_3c6312805c367d89d37f3b80.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_309de2c2182c5fa90ddba892.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.950684;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_8583dc26e66458d43ca20abc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.950684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-80.640000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls40{letter-spacing:-1.096452px;}
.ls63{letter-spacing:-0.353808px;}
.ls43{letter-spacing:-0.336960px;}
.ls4f{letter-spacing:-0.332748px;}
.ls4a{letter-spacing:-0.315900px;}
.ls61{letter-spacing:-0.290628px;}
.ls11{letter-spacing:-0.216432px;}
.ls8f{letter-spacing:-0.176904px;}
.ls79{letter-spacing:-0.158400px;}
.ls92{letter-spacing:-0.138996px;}
.ls56{letter-spacing:-0.130572px;}
.ls90{letter-spacing:-0.122148px;}
.ls7f{letter-spacing:-0.117180px;}
.ls78{letter-spacing:-0.115200px;}
.ls6d{letter-spacing:-0.114228px;}
.ls21{letter-spacing:-0.108000px;}
.ls6f{letter-spacing:-0.102204px;}
.ls80{letter-spacing:-0.101556px;}
.ls8d{letter-spacing:-0.101088px;}
.ls91{letter-spacing:-0.096876px;}
.ls6b{letter-spacing:-0.096192px;}
.ls3f{letter-spacing:-0.095760px;}
.lsf{letter-spacing:-0.090180px;}
.ls66{letter-spacing:-0.086400px;}
.ls8e{letter-spacing:-0.084240px;}
.ls6e{letter-spacing:-0.084168px;}
.lsd{letter-spacing:-0.078156px;}
.ls8{letter-spacing:-0.076896px;}
.ls8b{letter-spacing:-0.075816px;}
.ls14{letter-spacing:-0.072144px;}
.ls75{letter-spacing:-0.072000px;}
.ls73{letter-spacing:-0.071820px;}
.ls1b{letter-spacing:-0.067284px;}
.ls6a{letter-spacing:-0.066132px;}
.ls23{letter-spacing:-0.064800px;}
.ls8c{letter-spacing:-0.063180px;}
.ls6c{letter-spacing:-0.060120px;}
.ls4e{letter-spacing:-0.058968px;}
.ls20{letter-spacing:-0.057600px;}
.ls3c{letter-spacing:-0.057456px;}
.ls65{letter-spacing:-0.054756px;}
.ls94{letter-spacing:-0.054000px;}
.ls1c{letter-spacing:-0.050400px;}
.lse{letter-spacing:-0.048096px;}
.ls7{letter-spacing:-0.048060px;}
.ls41{letter-spacing:-0.047880px;}
.ls7e{letter-spacing:-0.046872px;}
.ls50{letter-spacing:-0.046332px;}
.ls15{letter-spacing:-0.043200px;}
.ls47{letter-spacing:-0.042120px;}
.ls81{letter-spacing:-0.039060px;}
.ls5d{letter-spacing:-0.038304px;}
.ls13{letter-spacing:-0.036072px;}
.ls17{letter-spacing:-0.036000px;}
.ls54{letter-spacing:-0.033696px;}
.ls5e{letter-spacing:-0.033516px;}
.lsc{letter-spacing:-0.030060px;}
.ls46{letter-spacing:-0.029484px;}
.ls19{letter-spacing:-0.028800px;}
.ls4b{letter-spacing:-0.025272px;}
.lsb{letter-spacing:-0.024048px;}
.ls42{letter-spacing:-0.023940px;}
.ls85{letter-spacing:-0.023436px;}
.ls1a{letter-spacing:-0.021600px;}
.ls49{letter-spacing:-0.021060px;}
.ls3e{letter-spacing:-0.019152px;}
.ls10{letter-spacing:-0.018036px;}
.ls45{letter-spacing:-0.016848px;}
.ls84{letter-spacing:-0.015624px;}
.ls16{letter-spacing:-0.014400px;}
.ls74{letter-spacing:-0.014364px;}
.ls4c{letter-spacing:-0.012636px;}
.lsa{letter-spacing:-0.012024px;}
.ls3b{letter-spacing:-0.009576px;}
.ls48{letter-spacing:-0.008424px;}
.ls83{letter-spacing:-0.007812px;}
.ls18{letter-spacing:-0.007200px;}
.ls55{letter-spacing:-0.004788px;}
.ls44{letter-spacing:-0.004212px;}
.ls6{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.004212px;}
.ls5b{letter-spacing:0.004788px;}
.ls1{letter-spacing:0.006012px;}
.ls3{letter-spacing:0.007200px;}
.ls7d{letter-spacing:0.007812px;}
.ls37{letter-spacing:0.008424px;}
.ls26{letter-spacing:0.009576px;}
.ls31{letter-spacing:0.012636px;}
.ls93{letter-spacing:0.014364px;}
.ls5{letter-spacing:0.014400px;}
.ls7b{letter-spacing:0.015624px;}
.ls2d{letter-spacing:0.016848px;}
.ls2{letter-spacing:0.018036px;}
.ls69{letter-spacing:0.019152px;}
.ls28{letter-spacing:0.021060px;}
.ls4{letter-spacing:0.021600px;}
.ls87{letter-spacing:0.023940px;}
.ls0{letter-spacing:0.024048px;}
.ls2b{letter-spacing:0.025272px;}
.ls27{letter-spacing:0.028728px;}
.ls1f{letter-spacing:0.028800px;}
.ls2f{letter-spacing:0.029484px;}
.ls7c{letter-spacing:0.031248px;}
.ls51{letter-spacing:0.033516px;}
.ls29{letter-spacing:0.033696px;}
.ls58{letter-spacing:0.036000px;}
.ls2c{letter-spacing:0.037908px;}
.ls25{letter-spacing:0.038304px;}
.ls52{letter-spacing:0.043092px;}
.ls24{letter-spacing:0.043200px;}
.ls36{letter-spacing:0.046332px;}
.ls8a{letter-spacing:0.047880px;}
.ls33{letter-spacing:0.050544px;}
.ls70{letter-spacing:0.052668px;}
.ls2e{letter-spacing:0.054756px;}
.ls4d{letter-spacing:0.057456px;}
.ls1d{letter-spacing:0.057600px;}
.ls34{letter-spacing:0.058968px;}
.ls67{letter-spacing:0.059292px;}
.ls64{letter-spacing:0.062244px;}
.ls7a{letter-spacing:0.062496px;}
.ls5a{letter-spacing:0.065880px;}
.ls88{letter-spacing:0.067032px;}
.ls32{letter-spacing:0.067392px;}
.ls39{letter-spacing:0.071604px;}
.ls89{letter-spacing:0.071820px;}
.ls82{letter-spacing:0.078120px;}
.ls1e{letter-spacing:0.079056px;}
.ls5c{letter-spacing:0.079200px;}
.ls60{letter-spacing:0.080028px;}
.ls30{letter-spacing:0.084240px;}
.ls59{letter-spacing:0.085644px;}
.ls62{letter-spacing:0.090972px;}
.ls35{letter-spacing:0.095760px;}
.ls38{letter-spacing:0.100548px;}
.ls9{letter-spacing:0.108216px;}
.ls12{letter-spacing:0.126252px;}
.ls76{letter-spacing:0.144000px;}
.ls5f{letter-spacing:0.153216px;}
.ls3a{letter-spacing:0.158400px;}
.ls68{letter-spacing:0.174348px;}
.ls86{letter-spacing:0.286416px;}
.ls77{letter-spacing:0.288000px;}
.ls72{letter-spacing:0.373464px;}
.ls53{letter-spacing:0.378252px;}
.ls95{letter-spacing:0.632016px;}
.ls3d{letter-spacing:0.703836px;}
.ls57{letter-spacing:7.209360px;}
.ls22{letter-spacing:265.680000px;}
.ls71{letter-spacing:1189.800000px;}
.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;}
}
.ws212{word-spacing:-42.120000px;}
.ws200{word-spacing:-21.678300px;}
.ws1ff{word-spacing:-21.600180px;}
.ws2d{word-spacing:-20.073600px;}
.ws1dc{word-spacing:-20.044800px;}
.ws1dd{word-spacing:-20.030400px;}
.ws1da{word-spacing:-20.016000px;}
.ws1db{word-spacing:-20.008800px;}
.ws2e{word-spacing:-19.987200px;}
.ws3{word-spacing:-16.839612px;}
.ws0{word-spacing:-16.821576px;}
.ws1{word-spacing:-16.635204px;}
.ws2{word-spacing:-16.496928px;}
.ws7{word-spacing:-0.529056px;}
.ws75{word-spacing:-0.360000px;}
.ws206{word-spacing:-0.273420px;}
.wsa7{word-spacing:-0.252720px;}
.ws9a{word-spacing:-0.248508px;}
.wsa0{word-spacing:-0.240084px;}
.ws6b{word-spacing:-0.223200px;}
.wsb1{word-spacing:-0.208800px;}
.ws94{word-spacing:-0.206388px;}
.wsa5{word-spacing:-0.202176px;}
.ws95{word-spacing:-0.197964px;}
.wsa8{word-spacing:-0.181116px;}
.ws8d{word-spacing:-0.176904px;}
.ws85{word-spacing:-0.172692px;}
.ws91{word-spacing:-0.168480px;}
.ws207{word-spacing:-0.164052px;}
.ws6{word-spacing:-0.163404px;}
.ws10{word-spacing:-0.162324px;}
.ws9f{word-spacing:-0.160056px;}
.ws1f1{word-spacing:-0.158400px;}
.ws9c{word-spacing:-0.155844px;}
.wsd{word-spacing:-0.150300px;}
.wsf{word-spacing:-0.144288px;}
.ws216{word-spacing:-0.138996px;}
.ws8{word-spacing:-0.132264px;}
.wse{word-spacing:-0.126252px;}
.ws9{word-spacing:-0.120240px;}
.ws215{word-spacing:-0.117936px;}
.wsa{word-spacing:-0.114228px;}
.ws20e{word-spacing:-0.109368px;}
.ws11{word-spacing:-0.108216px;}
.ws20f{word-spacing:-0.101556px;}
.wsb{word-spacing:-0.096192px;}
.ws208{word-spacing:-0.085932px;}
.ws144{word-spacing:-0.084168px;}
.ws141{word-spacing:-0.078156px;}
.ws20d{word-spacing:-0.078120px;}
.ws12{word-spacing:-0.072144px;}
.ws145{word-spacing:-0.066132px;}
.ws146{word-spacing:-0.060120px;}
.wsc{word-spacing:-0.054108px;}
.ws22a{word-spacing:-0.052668px;}
.wsa4{word-spacing:-0.050544px;}
.ws143{word-spacing:-0.048096px;}
.ws21e{word-spacing:-0.047880px;}
.ws148{word-spacing:-0.042084px;}
.ws22b{word-spacing:-0.038304px;}
.ws229{word-spacing:-0.033516px;}
.ws227{word-spacing:-0.028728px;}
.wsec{word-spacing:-0.026352px;}
.wsa3{word-spacing:-0.023940px;}
.ws48{word-spacing:-0.019764px;}
.ws5{word-spacing:-0.019224px;}
.ws78{word-spacing:-0.019152px;}
.ws9e{word-spacing:-0.014364px;}
.ws178{word-spacing:-0.009576px;}
.wsed{word-spacing:-0.006588px;}
.ws225{word-spacing:-0.004788px;}
.ws4{word-spacing:0.000000px;}
.ws7d{word-spacing:0.009576px;}
.ws22{word-spacing:0.009612px;}
.wsea{word-spacing:0.021600px;}
.wsa2{word-spacing:0.023940px;}
.ws76{word-spacing:0.028728px;}
.ws177{word-spacing:0.033516px;}
.ws197{word-spacing:0.036000px;}
.wsee{word-spacing:0.038304px;}
.ws179{word-spacing:0.043092px;}
.ws15f{word-spacing:0.043200px;}
.ws1e9{word-spacing:0.050400px;}
.wsf1{word-spacing:0.052668px;}
.wsf0{word-spacing:0.057456px;}
.wsef{word-spacing:0.067032px;}
.ws77{word-spacing:0.076608px;}
.ws2c{word-spacing:0.079200px;}
.ws176{word-spacing:0.090972px;}
.ws92{word-spacing:0.092664px;}
.ws1d3{word-spacing:0.093600px;}
.wsf7{word-spacing:0.096876px;}
.ws98{word-spacing:0.109512px;}
.ws79{word-spacing:0.114912px;}
.ws19b{word-spacing:0.115200px;}
.wsa9{word-spacing:0.117936px;}
.ws8e{word-spacing:0.122148px;}
.ws9b{word-spacing:0.126360px;}
.ws19c{word-spacing:0.129600px;}
.ws86{word-spacing:0.138996px;}
.ws8a{word-spacing:0.143208px;}
.ws2f{word-spacing:0.144000px;}
.ws8f{word-spacing:0.147420px;}
.ws140{word-spacing:0.151200px;}
.ws83{word-spacing:0.151632px;}
.ws7f{word-spacing:0.155844px;}
.ws21{word-spacing:0.158400px;}
.ws8c{word-spacing:0.160056px;}
.ws96{word-spacing:0.164268px;}
.ws20{word-spacing:0.165600px;}
.wsa6{word-spacing:0.168480px;}
.ws82{word-spacing:0.172692px;}
.ws1f{word-spacing:0.172800px;}
.ws87{word-spacing:0.176904px;}
.ws12f{word-spacing:0.180000px;}
.ws80{word-spacing:0.181116px;}
.ws93{word-spacing:0.185328px;}
.ws47{word-spacing:0.187200px;}
.ws90{word-spacing:0.189540px;}
.ws81{word-spacing:0.193752px;}
.ws175{word-spacing:0.194400px;}
.ws88{word-spacing:0.197964px;}
.ws13{word-spacing:0.201600px;}
.ws8b{word-spacing:0.202176px;}
.ws185{word-spacing:0.208800px;}
.wsa1{word-spacing:0.210600px;}
.ws84{word-spacing:0.219024px;}
.ws15e{word-spacing:0.223200px;}
.ws9d{word-spacing:0.223236px;}
.ws97{word-spacing:0.235872px;}
.wsc0{word-spacing:0.252000px;}
.ws214{word-spacing:0.252720px;}
.ws186{word-spacing:0.273600px;}
.ws182{word-spacing:0.288000px;}
.ws1e4{word-spacing:0.295200px;}
.ws213{word-spacing:0.307476px;}
.ws130{word-spacing:0.316800px;}
.ws2b{word-spacing:0.324000px;}
.ws7b{word-spacing:0.387828px;}
.ws7c{word-spacing:0.402192px;}
.ws6d{word-spacing:0.482400px;}
.ws89{word-spacing:0.492804px;}
.ws99{word-spacing:0.509652px;}
.ws7e{word-spacing:0.513864px;}
.ws54{word-spacing:0.583200px;}
.ws6c{word-spacing:0.669600px;}
.ws53{word-spacing:0.691200px;}
.ws52{word-spacing:0.748800px;}
.ws125{word-spacing:0.885600px;}
.ws1de{word-spacing:0.892800px;}
.wsfa{word-spacing:0.909792px;}
.ws66{word-spacing:0.914400px;}
.ws61{word-spacing:1.188000px;}
.ws60{word-spacing:1.252800px;}
.ws1c2{word-spacing:1.303200px;}
.ws149{word-spacing:1.422036px;}
.ws7a{word-spacing:1.474704px;}
.ws1c1{word-spacing:1.476000px;}
.ws16e{word-spacing:1.555200px;}
.ws153{word-spacing:1.620000px;}
.ws1d2{word-spacing:1.627200px;}
.ws16d{word-spacing:1.692000px;}
.ws1d1{word-spacing:1.699200px;}
.ws1d0{word-spacing:1.735200px;}
.ws26{word-spacing:1.929600px;}
.wsc5{word-spacing:1.944000px;}
.ws1a7{word-spacing:1.965600px;}
.wsc4{word-spacing:1.972800px;}
.ws25{word-spacing:1.987200px;}
.ws1a8{word-spacing:1.994400px;}
.wsba{word-spacing:2.066400px;}
.wsc9{word-spacing:2.080800px;}
.ws1a9{word-spacing:2.095200px;}
.wsbb{word-spacing:2.109600px;}
.ws1bd{word-spacing:2.311200px;}
.ws1be{word-spacing:2.390400px;}
.ws202{word-spacing:2.460780px;}
.wsac{word-spacing:2.678400px;}
.ws142{word-spacing:2.735460px;}
.ws184{word-spacing:2.736000px;}
.ws201{word-spacing:2.820132px;}
.ws183{word-spacing:2.880000px;}
.ws116{word-spacing:3.032640px;}
.ws18e{word-spacing:3.132000px;}
.ws228{word-spacing:3.207960px;}
.ws1cf{word-spacing:3.412800px;}
.ws1ce{word-spacing:3.427200px;}
.ws18f{word-spacing:3.456000px;}
.ws14a{word-spacing:3.591000px;}
.ws169{word-spacing:3.679200px;}
.ws1b2{word-spacing:3.736800px;}
.ws1b3{word-spacing:3.765600px;}
.ws1e1{word-spacing:3.772800px;}
.ws31{word-spacing:3.780000px;}
.ws111{word-spacing:3.786588px;}
.wsfc{word-spacing:3.799224px;}
.ws1c{word-spacing:3.823200px;}
.ws32{word-spacing:3.837600px;}
.ws1e2{word-spacing:3.852000px;}
.ws13c{word-spacing:3.866400px;}
.ws1b{word-spacing:3.873600px;}
.ws13d{word-spacing:3.880800px;}
.ws1a0{word-spacing:3.888000px;}
.ws63{word-spacing:4.118400px;}
.ws62{word-spacing:4.132800px;}
.ws12b{word-spacing:4.140000px;}
.wsce{word-spacing:4.154400px;}
.wsc6{word-spacing:4.161600px;}
.ws12c{word-spacing:4.183200px;}
.wseb{word-spacing:4.262400px;}
.wscf{word-spacing:4.291200px;}
.wsd0{word-spacing:4.327200px;}
.ws11c{word-spacing:4.468932px;}
.ws124{word-spacing:4.471200px;}
.wsc8{word-spacing:4.485600px;}
.ws36{word-spacing:4.500000px;}
.wsc7{word-spacing:4.514400px;}
.ws165{word-spacing:4.543200px;}
.ws123{word-spacing:4.557600px;}
.ws164{word-spacing:4.600800px;}
.ws1c6{word-spacing:4.622400px;}
.ws35{word-spacing:4.658400px;}
.ws154{word-spacing:4.816800px;}
.ws33{word-spacing:4.881600px;}
.ws34{word-spacing:4.888800px;}
.ws131{word-spacing:4.932000px;}
.ws155{word-spacing:5.032800px;}
.ws156{word-spacing:5.133600px;}
.ws1e5{word-spacing:5.140800px;}
.ws12e{word-spacing:5.220000px;}
.ws12d{word-spacing:5.227200px;}
.ws1b5{word-spacing:5.241600px;}
.ws1b4{word-spacing:5.270400px;}
.ws21d{word-spacing:5.381712px;}
.ws56{word-spacing:5.551200px;}
.ws57{word-spacing:5.580000px;}
.ws17a{word-spacing:5.623200px;}
.ws17b{word-spacing:5.644800px;}
.ws55{word-spacing:5.673600px;}
.ws19d{word-spacing:5.738400px;}
.ws1b9{word-spacing:5.947200px;}
.ws1ba{word-spacing:5.954400px;}
.ws174{word-spacing:6.271200px;}
.ws16b{word-spacing:6.278400px;}
.ws16c{word-spacing:6.285600px;}
.ws1e{word-spacing:6.307200px;}
.ws1d4{word-spacing:6.314400px;}
.ws16a{word-spacing:6.364800px;}
.ws1d{word-spacing:6.372000px;}
.ws18{word-spacing:6.616800px;}
.ws167{word-spacing:6.624000px;}
.ws17{word-spacing:6.631200px;}
.wsdf{word-spacing:6.645600px;}
.wsf5{word-spacing:6.646536px;}
.ws166{word-spacing:6.660000px;}
.wsde{word-spacing:6.667200px;}
.ws17c{word-spacing:6.724800px;}
.ws19{word-spacing:6.746400px;}
.ws1ab{word-spacing:6.991200px;}
.wsb3{word-spacing:7.012800px;}
.wsb2{word-spacing:7.034400px;}
.ws14{word-spacing:7.401600px;}
.ws18a{word-spacing:7.423200px;}
.ws18b{word-spacing:7.466400px;}
.ws21f{word-spacing:7.517160px;}
.ws220{word-spacing:7.526736px;}
.ws15{word-spacing:7.552800px;}
.ws16{word-spacing:7.574400px;}
.wsf6{word-spacing:7.699536px;}
.ws15a{word-spacing:7.704000px;}
.ws127{word-spacing:7.725600px;}
.ws117{word-spacing:7.741656px;}
.ws15b{word-spacing:7.747200px;}
.ws128{word-spacing:7.754400px;}
.ws5b{word-spacing:7.826400px;}
.ws5a{word-spacing:7.840800px;}
.ws59{word-spacing:7.855200px;}
.ws223{word-spacing:7.895412px;}
.ws65{word-spacing:8.085600px;}
.ws64{word-spacing:8.092800px;}
.ws129{word-spacing:8.128800px;}
.ws19f{word-spacing:8.143200px;}
.ws19e{word-spacing:8.172000px;}
.ws1c7{word-spacing:8.179200px;}
.ws1c8{word-spacing:8.186400px;}
.ws71{word-spacing:8.229600px;}
.ws195{word-spacing:8.244000px;}
.ws70{word-spacing:8.265600px;}
.ws196{word-spacing:8.308800px;}
.ws108{word-spacing:8.436636px;}
.ws3d{word-spacing:8.438400px;}
.wse2{word-spacing:8.445600px;}
.ws1a4{word-spacing:8.452800px;}
.ws1a5{word-spacing:8.460000px;}
.ws1a6{word-spacing:8.517600px;}
.wse3{word-spacing:8.568000px;}
.ws27{word-spacing:8.719200px;}
.ws1af{word-spacing:8.805600px;}
.ws68{word-spacing:8.820000px;}
.ws103{word-spacing:8.845200px;}
.ws28{word-spacing:8.848800px;}
.ws1ae{word-spacing:8.935200px;}
.wscd{word-spacing:9.165600px;}
.ws72{word-spacing:9.187200px;}
.ws168{word-spacing:9.194400px;}
.ws21b{word-spacing:9.705276px;}
.ws132{word-spacing:9.871200px;}
.ws133{word-spacing:9.878400px;}
.ws172{word-spacing:9.892800px;}
.ws1fa{word-spacing:9.900000px;}
.ws173{word-spacing:9.914400px;}
.ws118{word-spacing:10.230948px;}
.wscb{word-spacing:10.245600px;}
.ws194{word-spacing:10.252800px;}
.wscc{word-spacing:10.296000px;}
.wsca{word-spacing:10.303200px;}
.ws193{word-spacing:10.310400px;}
.ws44{word-spacing:10.569600px;}
.ws41{word-spacing:10.598400px;}
.ws43{word-spacing:10.605600px;}
.wsab{word-spacing:10.612800px;}
.ws10c{word-spacing:10.622664px;}
.ws42{word-spacing:10.663200px;}
.ws40{word-spacing:10.684800px;}
.wsaa{word-spacing:10.785600px;}
.ws1fe{word-spacing:10.915200px;}
.ws1c0{word-spacing:10.922400px;}
.ws45{word-spacing:10.972800px;}
.ws1bf{word-spacing:10.987200px;}
.ws1fd{word-spacing:11.001600px;}
.ws1e8{word-spacing:11.037600px;}
.ws46{word-spacing:11.073600px;}
.wsb6{word-spacing:11.311200px;}
.wsb7{word-spacing:11.340000px;}
.wsd2{word-spacing:11.347200px;}
.ws187{word-spacing:11.383200px;}
.wse4{word-spacing:11.404800px;}
.wsd3{word-spacing:11.419200px;}
.ws189{word-spacing:11.455200px;}
.ws188{word-spacing:11.505600px;}
.wse6{word-spacing:11.527200px;}
.wse5{word-spacing:11.541600px;}
.ws1ca{word-spacing:11.649600px;}
.ws24{word-spacing:11.671200px;}
.ws23{word-spacing:11.678400px;}
.ws119{word-spacing:11.692512px;}
.ws14c{word-spacing:11.692800px;}
.ws14b{word-spacing:11.736000px;}
.ws14d{word-spacing:11.750400px;}
.ws1c9{word-spacing:11.764800px;}
.ws1b1{word-spacing:11.786400px;}
.ws1b0{word-spacing:11.822400px;}
.ws1bc{word-spacing:12.074400px;}
.ws1bb{word-spacing:12.146400px;}
.wse9{word-spacing:12.384000px;}
.ws17d{word-spacing:12.391200px;}
.ws1aa{word-spacing:12.405600px;}
.ws18c{word-spacing:12.412800px;}
.wsfe{word-spacing:12.416976px;}
.ws210{word-spacing:12.436704px;}
.ws18d{word-spacing:12.506400px;}
.ws211{word-spacing:12.522636px;}
.wse7{word-spacing:12.535200px;}
.ws17e{word-spacing:12.650400px;}
.wse8{word-spacing:12.657600px;}
.ws1f7{word-spacing:12.873600px;}
.ws204{word-spacing:12.960108px;}
.ws14f{word-spacing:13.111200px;}
.ws14e{word-spacing:13.118400px;}
.ws203{word-spacing:13.131972px;}
.ws11b{word-spacing:13.133016px;}
.ws11a{word-spacing:13.141440px;}
.ws12a{word-spacing:13.154400px;}
.ws205{word-spacing:13.335084px;}
.ws102{word-spacing:13.503672px;}
.wsd8{word-spacing:13.845600px;}
.ws3a{word-spacing:13.867200px;}
.ws39{word-spacing:13.874400px;}
.wsd6{word-spacing:13.939200px;}
.ws157{word-spacing:13.946400px;}
.wsd7{word-spacing:13.975200px;}
.ws13b{word-spacing:14.241600px;}
.ws2a{word-spacing:14.277600px;}
.ws29{word-spacing:14.407200px;}
.ws13a{word-spacing:14.551200px;}
.ws110{word-spacing:14.590368px;}
.ws10a{word-spacing:14.902056px;}
.ws10b{word-spacing:15.260076px;}
.wsad{word-spacing:15.285600px;}
.ws113{word-spacing:15.306408px;}
.wsae{word-spacing:15.364800px;}
.ws20c{word-spacing:15.608376px;}
.ws161{word-spacing:15.616800px;}
.ws160{word-spacing:15.638400px;}
.ws190{word-spacing:15.660000px;}
.ws20b{word-spacing:15.733368px;}
.ws192{word-spacing:15.753600px;}
.ws191{word-spacing:15.818400px;}
.wsc2{word-spacing:15.991200px;}
.wsc3{word-spacing:16.099200px;}
.wsc1{word-spacing:16.113600px;}
.ws107{word-spacing:16.372044px;}
.ws1c4{word-spacing:16.380000px;}
.ws1c5{word-spacing:16.416000px;}
.ws1ed{word-spacing:16.567200px;}
.ws1ee{word-spacing:16.588800px;}
.ws13e{word-spacing:16.596000px;}
.ws13f{word-spacing:16.610400px;}
.ws1f8{word-spacing:16.718400px;}
.ws1f9{word-spacing:16.732800px;}
.ws1ec{word-spacing:16.740000px;}
.ws158{word-spacing:17.013600px;}
.ws159{word-spacing:17.085600px;}
.ws67{word-spacing:17.114400px;}
.ws181{word-spacing:17.431200px;}
.ws180{word-spacing:17.712000px;}
.ws1a2{word-spacing:18.144000px;}
.ws114{word-spacing:18.204264px;}
.ws1a1{word-spacing:18.223200px;}
.ws1a3{word-spacing:18.266400px;}
.ws4a{word-spacing:18.885600px;}
.ws49{word-spacing:18.979200px;}
.ws109{word-spacing:19.969092px;}
.ws1cd{word-spacing:20.275200px;}
.ws1cc{word-spacing:20.332800px;}
.ws122{word-spacing:20.347200px;}
.ws121{word-spacing:20.354400px;}
.ws21c{word-spacing:20.511792px;}
.wsb4{word-spacing:20.671200px;}
.ws3f{word-spacing:20.692800px;}
.ws1f2{word-spacing:20.707200px;}
.wsb5{word-spacing:20.721600px;}
.ws3e{word-spacing:20.728800px;}
.ws1f3{word-spacing:20.836800px;}
.ws1f4{word-spacing:20.901600px;}
.ws139{word-spacing:21.031200px;}
.ws6a{word-spacing:21.052800px;}
.ws134{word-spacing:21.067200px;}
.ws69{word-spacing:21.081600px;}
.ws217{word-spacing:21.220416px;}
.wsbf{word-spacing:21.362400px;}
.wsbe{word-spacing:21.463200px;}
.ws37{word-spacing:21.528000px;}
.ws38{word-spacing:21.542400px;}
.ws5d{word-spacing:21.715200px;}
.ws5c{word-spacing:21.880800px;}
.ws1fb{word-spacing:22.132800px;}
.ws1fc{word-spacing:22.147200px;}
.ws1d7{word-spacing:22.449600px;}
.ws1d6{word-spacing:22.485600px;}
.ws1d5{word-spacing:22.744800px;}
.wsd5{word-spacing:22.809600px;}
.ws1b8{word-spacing:22.845600px;}
.wsd4{word-spacing:22.860000px;}
.wse1{word-spacing:22.867200px;}
.ws152{word-spacing:22.874400px;}
.wse0{word-spacing:22.910400px;}
.ws3b{word-spacing:23.191200px;}
.ws3c{word-spacing:23.212800px;}
.ws1cb{word-spacing:23.234400px;}
.ws30{word-spacing:23.954400px;}
.wsd9{word-spacing:24.314400px;}
.ws58{word-spacing:24.674400px;}
.ws1d9{word-spacing:24.991200px;}
.ws1d8{word-spacing:25.041600px;}
.ws151{word-spacing:25.358400px;}
.ws150{word-spacing:25.466400px;}
.ws199{word-spacing:25.747200px;}
.ws198{word-spacing:25.840800px;}
.ws51{word-spacing:26.776800px;}
.ws136{word-spacing:26.798400px;}
.ws126{word-spacing:26.812800px;}
.ws135{word-spacing:26.834400px;}
.ws50{word-spacing:26.935200px;}
.ws74{word-spacing:27.144000px;}
.ws1c3{word-spacing:27.158400px;}
.wsf9{word-spacing:27.201096px;}
.ws73{word-spacing:27.252000px;}
.ws10d{word-spacing:27.525420px;}
.ws224{word-spacing:27.674640px;}
.ws106{word-spacing:28.957500px;}
.ws11e{word-spacing:29.642400px;}
.ws11d{word-spacing:29.685600px;}
.wsd1{word-spacing:30.765600px;}
.wsdd{word-spacing:31.212000px;}
.wsdc{word-spacing:31.233600px;}
.ws1e7{word-spacing:31.860000px;}
.ws1e6{word-spacing:31.874400px;}
.ws120{word-spacing:32.558400px;}
.ws11f{word-spacing:32.587200px;}
.ws1ad{word-spacing:33.624000px;}
.ws1f5{word-spacing:33.645600px;}
.ws1f6{word-spacing:33.652800px;}
.ws1ac{word-spacing:33.724800px;}
.ws147{word-spacing:34.875612px;}
.wsf8{word-spacing:35.085960px;}
.ws221{word-spacing:35.263620px;}
.ws4b{word-spacing:35.424000px;}
.ws4d{word-spacing:35.496000px;}
.ws4c{word-spacing:35.647200px;}
.ws104{word-spacing:36.155808px;}
.ws1a{word-spacing:36.165600px;}
.wsb8{word-spacing:36.986400px;}
.wsb9{word-spacing:37.022400px;}
.ws162{word-spacing:37.245600px;}
.ws1b7{word-spacing:37.598400px;}
.ws163{word-spacing:37.634400px;}
.ws1b6{word-spacing:37.692000px;}
.ws20a{word-spacing:38.763144px;}
.ws115{word-spacing:39.011544px;}
.ws209{word-spacing:39.177180px;}
.ws10f{word-spacing:40.127724px;}
.ws10e{word-spacing:40.144572px;}
.wsb0{word-spacing:40.766400px;}
.wsaf{word-spacing:40.838400px;}
.ws112{word-spacing:40.864824px;}
.ws1df{word-spacing:40.968000px;}
.ws1e0{word-spacing:41.018400px;}
.wsbc{word-spacing:41.565600px;}
.wsbd{word-spacing:41.637600px;}
.ws219{word-spacing:42.100884px;}
.ws218{word-spacing:42.115248px;}
.ws21a{word-spacing:43.537284px;}
.ws171{word-spacing:43.711200px;}
.ws16f{word-spacing:43.804800px;}
.ws170{word-spacing:43.884000px;}
.ws6e{word-spacing:44.812800px;}
.ws6f{word-spacing:44.820000px;}
.ws5f{word-spacing:45.180000px;}
.ws5e{word-spacing:45.273600px;}
.ws1e3{word-spacing:46.620000px;}
.ws138{word-spacing:46.987200px;}
.ws137{word-spacing:47.001600px;}
.ws222{word-spacing:47.851272px;}
.ws19a{word-spacing:49.514400px;}
.ws17f{word-spacing:50.565600px;}
.ws15c{word-spacing:52.264800px;}
.ws15d{word-spacing:52.365600px;}
.wsf4{word-spacing:54.178956px;}
.wsff{word-spacing:54.511704px;}
.wsda{word-spacing:55.562400px;}
.wsdb{word-spacing:55.742400px;}
.ws101{word-spacing:58.854276px;}
.ws4e{word-spacing:59.212800px;}
.ws4f{word-spacing:59.227200px;}
.ws105{word-spacing:60.269508px;}
.wsfb{word-spacing:60.657012px;}
.ws226{word-spacing:64.053864px;}
.ws1eb{word-spacing:67.435200px;}
.ws1ea{word-spacing:67.471200px;}
.ws1f0{word-spacing:77.932800px;}
.ws1ef{word-spacing:77.940000px;}
.ws100{word-spacing:92.697696px;}
.wsf3{word-spacing:95.966208px;}
.wsfd{word-spacing:101.344932px;}
.ws22c{word-spacing:192.724272px;}
.ws22d{word-spacing:198.890640px;}
.wsf2{word-spacing:421.612128px;}
._14{margin-left:-34.647156px;}
._1b{margin-left:-33.200028px;}
._20{margin-left:-21.990852px;}
._1d{margin-left:-10.878912px;}
._4{margin-left:-3.052800px;}
._0{margin-left:-1.268532px;}
._1{width:1.016028px;}
._2{width:2.171808px;}
._1e{width:17.997876px;}
._1f{width:23.039640px;}
._1c{width:40.953600px;}
._19{width:51.751296px;}
._13{width:75.240180px;}
._c{width:92.163960px;}
._8{width:101.446488px;}
._11{width:105.480540px;}
._16{width:108.312192px;}
._a{width:122.037588px;}
._b{width:140.879196px;}
._f{width:143.187804px;}
._9{width:159.624612px;}
._3{width:166.864644px;}
._17{width:184.814892px;}
._5{width:232.920000px;}
._1a{width:245.049120px;}
._d{width:253.333656px;}
._15{width:260.193348px;}
._12{width:292.814460px;}
._10{width:330.022728px;}
._18{width:331.201080px;}
._e{width:356.271120px;}
._7{width:391.681800px;}
._6{width:439.560000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs7{font-size:42.120000px;}
.fs0{font-size:47.880000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:78.120000px;}
.fs1{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y35{bottom:112.890450px;}
.y15e{bottom:115.680450px;}
.y114{bottom:121.530099px;}
.y5e{bottom:121.980450px;}
.y1c7{bottom:123.690450px;}
.y18b{bottom:124.410450px;}
.y1cf{bottom:128.460450px;}
.yeb{bottom:129.900600px;}
.y34{bottom:133.680450px;}
.y113{bottom:135.300387px;}
.y15d{bottom:139.440450px;}
.y5d{bottom:142.680450px;}
.y1bd{bottom:142.770450px;}
.y1c6{bottom:144.390450px;}
.y18a{bottom:145.110450px;}
.y112{bottom:149.160450px;}
.yea{bottom:150.600600px;}
.y243{bottom:153.479649px;}
.y33{bottom:154.380450px;}
.y247{bottom:155.820000px;}
.y1bc{bottom:160.410450px;}
.y15c{bottom:160.590450px;}
.y5c{bottom:163.380450px;}
.y1c5{bottom:165.090450px;}
.y189{bottom:165.810450px;}
.y242{bottom:167.339712px;}
.y245{bottom:169.050000px;}
.y1ce{bottom:169.860450px;}
.y246{bottom:170.399991px;}
.ye9{bottom:171.300600px;}
.y111{bottom:172.110720px;}
.y32{bottom:175.080450px;}
.y1bb{bottom:179.310450px;}
.y241{bottom:181.110000px;}
.y15b{bottom:181.560450px;}
.y244{bottom:182.460000px;}
.y5b{bottom:184.080450px;}
.y1c4{bottom:185.790450px;}
.y188{bottom:186.510450px;}
.y1cd{bottom:190.560450px;}
.y110{bottom:191.100630px;}
.ye8{bottom:192.000600px;}
.y240{bottom:195.689712px;}
.y31{bottom:195.780450px;}
.y1ba{bottom:198.120450px;}
.y15a{bottom:202.260450px;}
.y5a{bottom:204.870450px;}
.y1c3{bottom:206.490450px;}
.y187{bottom:207.210450px;}
.y23f{bottom:209.460000px;}
.y10f{bottom:210.090540px;}
.y1cc{bottom:211.260450px;}
.ye7{bottom:212.700600px;}
.y30{bottom:216.480450px;}
.y1b9{bottom:218.820450px;}
.y159{bottom:222.960450px;}
.y23e{bottom:223.949937px;}
.y59{bottom:225.570450px;}
.y1c2{bottom:227.190450px;}
.y186{bottom:227.910450px;}
.y10e{bottom:229.080450px;}
.y1cb{bottom:231.960450px;}
.ye4{bottom:232.410909px;}
.y2f{bottom:237.180450px;}
.y23d{bottom:237.810000px;}
.y1b8{bottom:239.520450px;}
.y158{bottom:243.660450px;}
.ye6{bottom:243.750441px;}
.ye3{bottom:244.470918px;}
.y58{bottom:246.270450px;}
.y1c1{bottom:247.890450px;}
.y185{bottom:248.610450px;}
.ydf{bottom:251.760099px;}
.y23c{bottom:252.299937px;}
.y10d{bottom:252.660450px;}
.ye5{bottom:255.810450px;}
.ye2{bottom:256.530927px;}
.y2e{bottom:257.880450px;}
.y1b7{bottom:260.220450px;}
.y157{bottom:264.360450px;}
.yde{bottom:265.530387px;}
.y23b{bottom:266.160000px;}
.y23a{bottom:266.879649px;}
.y57{bottom:266.880450px;}
.y1c0{bottom:268.590450px;}
.ye1{bottom:268.680441px;}
.y184{bottom:269.310450px;}
.y10c{bottom:273.360450px;}
.y1d9{bottom:273.450450px;}
.y2d{bottom:278.490450px;}
.ydd{bottom:279.390450px;}
.y239{bottom:280.649937px;}
.ye0{bottom:280.740450px;}
.y1b6{bottom:280.920450px;}
.y156{bottom:285.060450px;}
.y56{bottom:287.580450px;}
.y1bf{bottom:289.559739px;}
.y183{bottom:290.010450px;}
.ydc{bottom:293.520927px;}
.y10b{bottom:294.060450px;}
.y238{bottom:294.510000px;}
.y2c{bottom:299.280450px;}
.yd5{bottom:299.819811px;}
.y1b5{bottom:301.620450px;}
.ydb{bottom:305.580936px;}
.y155{bottom:305.850450px;}
.yd9{bottom:306.390423px;}
.y1be{bottom:307.200450px;}
.y55{bottom:308.280450px;}
.y237{bottom:309.450000px;}
.y182{bottom:310.800450px;}
.yd4{bottom:313.679874px;}
.y10a{bottom:314.760450px;}
.yda{bottom:317.730450px;}
.yd8{bottom:318.450432px;}
.y2b{bottom:319.980450px;}
.y1b4{bottom:322.320450px;}
.y236{bottom:325.289937px;}
.y154{bottom:326.460450px;}
.yd3{bottom:327.450162px;}
.y54{bottom:328.980450px;}
.yd7{bottom:330.510441px;}
.y181{bottom:331.410450px;}
.y109{bottom:335.460450px;}
.y235{bottom:339.150000px;}
.yd2{bottom:341.220450px;}
.y2a{bottom:341.760756px;}
.yd6{bottom:342.570450px;}
.y1b3{bottom:343.020450px;}
.y153{bottom:347.160450px;}
.y53{bottom:349.680450px;}
.y180{bottom:352.110450px;}
.y234{bottom:353.640000px;}
.y233{bottom:354.449424px;}
.y108{bottom:356.160450px;}
.y1d8{bottom:356.250450px;}
.y1b2{bottom:363.720450px;}
.yd1{bottom:367.230312px;}
.y152{bottom:367.860450px;}
.ycd{bottom:367.949811px;}
.y232{bottom:368.219712px;}
.y29{bottom:369.390450px;}
.y52{bottom:370.380450px;}
.y17f{bottom:372.810450px;}
.y1ca{bottom:376.770450px;}
.y107{bottom:376.860450px;}
.yd0{bottom:381.000600px;}
.ycc{bottom:381.720099px;}
.y231{bottom:381.990000px;}
.y1b1{bottom:384.420450px;}
.y151{bottom:388.560450px;}
.y51{bottom:391.080450px;}
.y17e{bottom:393.510450px;}
.ycf{bottom:395.578965px;}
.ycb{bottom:395.580162px;}
.y28{bottom:395.850450px;}
.y22e{bottom:396.569361px;}
.y106{bottom:397.560450px;}
.y1b0{bottom:405.120450px;}
.y150{bottom:409.260450px;}
.yce{bottom:409.349253px;}
.yca{bottom:409.350450px;}
.y22d{bottom:410.339649px;}
.y50{bottom:411.780450px;}
.y17d{bottom:414.210450px;}
.y27{bottom:416.550450px;}
.y105{bottom:418.260450px;}
.yc9{bottom:423.930312px;}
.y230{bottom:424.108740px;}
.y22c{bottom:424.109937px;}
.y1af{bottom:425.820450px;}
.y14f{bottom:430.050450px;}
.y4f{bottom:432.480450px;}
.y17c{bottom:434.910450px;}
.y26{bottom:437.160450px;}
.yc8{bottom:437.700600px;}
.y22f{bottom:437.968803px;}
.y22b{bottom:437.970000px;}
.y104{bottom:438.960450px;}
.y1ae{bottom:446.610450px;}
.y14e{bottom:450.660450px;}
.ybf{bottom:452.279673px;}
.y22a{bottom:452.459937px;}
.y4e{bottom:453.180450px;}
.y17b{bottom:455.610450px;}
.y25{bottom:457.950450px;}
.yc7{bottom:458.941086px;}
.y103{bottom:459.660450px;}
.y1d7{bottom:459.750450px;}
.yc4{bottom:460.470909px;}
.ybe{bottom:466.049961px;}
.y229{bottom:466.320000px;}
.y1ad{bottom:467.130450px;}
.yc6{bottom:471.090600px;}
.y14d{bottom:471.360450px;}
.yc3{bottom:472.530918px;}
.y4d{bottom:473.880450px;}
.y17a{bottom:476.400450px;}
.y24{bottom:478.650450px;}
.ybd{bottom:479.820249px;}
.y102{bottom:480.360450px;}
.y228{bottom:480.809937px;}
.yc5{bottom:483.870600px;}
.yc2{bottom:484.590927px;}
.y1ac{bottom:487.920450px;}
.y14c{bottom:492.060450px;}
.ybc{bottom:493.590537px;}
.y4c{bottom:494.580450px;}
.y227{bottom:494.670000px;}
.yc1{bottom:496.740441px;}
.y179{bottom:497.010450px;}
.y23{bottom:499.350450px;}
.y101{bottom:501.060450px;}
.ybb{bottom:507.450600px;}
.y1ab{bottom:508.620450px;}
.yc0{bottom:508.800450px;}
.y226{bottom:509.159361px;}
.y14b{bottom:512.760450px;}
.y4b{bottom:515.280450px;}
.y178{bottom:517.710450px;}
.y22{bottom:520.050450px;}
.yb0{bottom:521.579847px;}
.y100{bottom:521.760450px;}
.y1d6{bottom:521.850450px;}
.y225{bottom:523.019424px;}
.y1aa{bottom:529.320450px;}
.y14a{bottom:533.460450px;}
.yba{bottom:533.637750px;}
.yb5{bottom:533.638803px;}
.yaf{bottom:533.639856px;}
.y4a{bottom:535.980450px;}
.y224{bottom:536.789712px;}
.y177{bottom:538.410450px;}
.yaa{bottom:539.219811px;}
.y21{bottom:540.750450px;}
.yff{bottom:542.460450px;}
.yb9{bottom:545.788317px;}
.yb4{bottom:545.789370px;}
.yae{bottom:545.790423px;}
.y1a9{bottom:550.020450px;}
.y223{bottom:550.560000px;}
.ya9{bottom:552.990099px;}
.y149{bottom:554.160450px;}
.y49{bottom:556.680450px;}
.yb8{bottom:557.848326px;}
.yb3{bottom:557.849379px;}
.yad{bottom:557.850432px;}
.y176{bottom:559.110450px;}
.y20{bottom:561.450450px;}
.yfe{bottom:563.160450px;}
.y222{bottom:565.124997px;}
.y21e{bottom:565.126194px;}
.y21a{bottom:565.127391px;}
.y216{bottom:565.128588px;}
.y212{bottom:565.129785px;}
.y20e{bottom:565.130982px;}
.y20a{bottom:565.132179px;}
.y206{bottom:565.133376px;}
.y202{bottom:565.134573px;}
.y1fe{bottom:565.135770px;}
.y1fa{bottom:565.136967px;}
.y1f6{bottom:565.138164px;}
.y1f2{bottom:565.139361px;}
.ya8{bottom:566.850162px;}
.yb7{bottom:569.908335px;}
.yb2{bottom:569.909388px;}
.yac{bottom:569.910441px;}
.y1a8{bottom:570.720450px;}
.y148{bottom:574.860450px;}
.y48{bottom:577.470450px;}
.y221{bottom:578.895285px;}
.y21d{bottom:578.896482px;}
.y219{bottom:578.897679px;}
.y215{bottom:578.898876px;}
.y211{bottom:578.900073px;}
.y20d{bottom:578.901270px;}
.y209{bottom:578.902467px;}
.y205{bottom:578.903664px;}
.y201{bottom:578.904861px;}
.y1fd{bottom:578.906058px;}
.y1f9{bottom:578.907255px;}
.y1f5{bottom:578.908452px;}
.y1f1{bottom:578.909649px;}
.y175{bottom:579.810450px;}
.ya7{bottom:580.620450px;}
.yb6{bottom:581.968344px;}
.yb1{bottom:581.969397px;}
.yab{bottom:581.970450px;}
.y1f{bottom:582.150450px;}
.y1d5{bottom:583.770450px;}
.yfd{bottom:583.860450px;}
.y1a7{bottom:591.420450px;}
.y220{bottom:592.755348px;}
.y21c{bottom:592.756545px;}
.y218{bottom:592.757742px;}
.y214{bottom:592.758939px;}
.y210{bottom:592.760136px;}
.y20c{bottom:592.761333px;}
.y208{bottom:592.762530px;}
.y204{bottom:592.763727px;}
.y200{bottom:592.764924px;}
.y1fc{bottom:592.766121px;}
.y1f8{bottom:592.767318px;}
.y1f4{bottom:592.768515px;}
.y1f0{bottom:592.769712px;}
.ya6{bottom:594.840441px;}
.y147{bottom:595.560450px;}
.y174{bottom:600.600450px;}
.y1e{bottom:602.310450px;}
.y47{bottom:604.110450px;}
.yfc{bottom:604.560450px;}
.y21f{bottom:606.525636px;}
.y21b{bottom:606.526833px;}
.y217{bottom:606.528030px;}
.y213{bottom:606.529227px;}
.y20f{bottom:606.530424px;}
.y20b{bottom:606.531621px;}
.y207{bottom:606.532818px;}
.y203{bottom:606.534015px;}
.y1ff{bottom:606.535212px;}
.y1fb{bottom:606.536409px;}
.y1f7{bottom:606.537606px;}
.y1f3{bottom:606.538803px;}
.y1ef{bottom:606.540000px;}
.ya5{bottom:606.900450px;}
.y9d{bottom:609.147687px;}
.y1a6{bottom:612.120450px;}
.y146{bottom:616.260450px;}
.ya4{bottom:619.680441px;}
.y1ed{bottom:621.120000px;}
.y9c{bottom:621.207696px;}
.y91{bottom:621.208749px;}
.y86{bottom:621.209802px;}
.y1d{bottom:621.660450px;}
.y1ee{bottom:622.469991px;}
.y173{bottom:624.810450px;}
.yfb{bottom:625.260450px;}
.ya3{bottom:631.740450px;}
.y1eb{bottom:632.550189px;}
.y1a5{bottom:632.910450px;}
.y9b{bottom:633.267705px;}
.y90{bottom:633.268758px;}
.y85{bottom:633.269811px;}
.y1ec{bottom:634.530000px;}
.y145{bottom:636.960450px;}
.y1c{bottom:641.820855px;}
.ya2{bottom:644.610414px;}
.y9a{bottom:645.327714px;}
.y8f{bottom:645.328767px;}
.y84{bottom:645.329820px;}
.yfa{bottom:645.870450px;}
.y1c9{bottom:645.960450px;}
.y1d4{bottom:646.050450px;}
.y172{bottom:649.649874px;}
.y1ea{bottom:649.740000px;}
.y1a4{bottom:652.979523px;}
.ya1{bottom:656.670423px;}
.y99{bottom:657.387723px;}
.y8e{bottom:657.388776px;}
.y83{bottom:657.389829px;}
.y144{bottom:657.660450px;}
.y7b{bottom:657.749172px;}
.y1b{bottom:659.100846px;}
.y171{bottom:663.420162px;}
.yf9{bottom:666.570450px;}
.y1c8{bottom:666.660450px;}
.y1a3{bottom:666.749811px;}
.y1e9{bottom:667.740000px;}
.ya0{bottom:668.730432px;}
.y98{bottom:669.447732px;}
.y8d{bottom:669.448785px;}
.y82{bottom:669.449838px;}
.y7a{bottom:671.609235px;}
.y1a{bottom:676.290657px;}
.y170{bottom:677.190450px;}
.y143{bottom:678.360450px;}
.y1a2{bottom:680.520099px;}
.y9f{bottom:680.790441px;}
.y97{bottom:681.598299px;}
.y8c{bottom:681.599352px;}
.y81{bottom:681.600405px;}
.y79{bottom:685.379523px;}
.y1e8{bottom:686.190000px;}
.yf8{bottom:687.360450px;}
.y16f{bottom:691.680450px;}
.y9e{bottom:692.850450px;}
.y19{bottom:693.570648px;}
.y96{bottom:693.658308px;}
.y8b{bottom:693.659361px;}
.y80{bottom:693.660414px;}
.y1a1{bottom:694.380162px;}
.y78{bottom:699.149811px;}
.y142{bottom:699.150450px;}
.y95{bottom:705.718317px;}
.y8a{bottom:705.719370px;}
.y7f{bottom:705.720423px;}
.y1e7{bottom:706.440000px;}
.yf7{bottom:708.060450px;}
.y1a0{bottom:708.150450px;}
.y18{bottom:710.850639px;}
.y77{bottom:713.009874px;}
.y16e{bottom:717.150450px;}
.y94{bottom:717.778326px;}
.y89{bottom:717.779379px;}
.y7e{bottom:717.780432px;}
.y141{bottom:719.850450px;}
.y19f{bottom:722.729235px;}
.y76{bottom:726.780162px;}
.y17{bottom:728.040459px;}
.yf6{bottom:728.760450px;}
.y93{bottom:729.838335px;}
.y88{bottom:729.839388px;}
.y7d{bottom:729.840441px;}
.y19e{bottom:736.499523px;}
.y75{bottom:740.550450px;}
.y92{bottom:741.898344px;}
.y87{bottom:741.899397px;}
.y7c{bottom:741.900450px;}
.y16d{bottom:742.710639px;}
.y13d{bottom:742.980909px;}
.y16{bottom:745.320450px;}
.y46{bottom:746.040450px;}
.y1e6{bottom:748.650000px;}
.y1d3{bottom:749.370450px;}
.yf5{bottom:749.460450px;}
.y19d{bottom:750.269811px;}
.y13c{bottom:755.040918px;}
.y74{bottom:755.130162px;}
.y70{bottom:755.849811px;}
.y16c{bottom:759.900450px;}
.y15{bottom:761.250450px;}
.y140{bottom:762.330099px;}
.y19c{bottom:764.040099px;}
.y13b{bottom:767.190432px;}
.y73{bottom:768.900450px;}
.y6f{bottom:769.709874px;}
.y45{bottom:769.800450px;}
.yf4{bottom:770.160450px;}
.y14{bottom:772.950648px;}
.y13f{bottom:776.190162px;}
.y19b{bottom:777.900162px;}
.y13a{bottom:779.250441px;}
.y72{bottom:783.478965px;}
.y6e{bottom:783.480162px;}
.y16b{bottom:784.740450px;}
.y13e{bottom:789.960450px;}
.y13{bottom:790.140459px;}
.y44{bottom:790.410450px;}
.yf3{bottom:790.860450px;}
.y139{bottom:791.310450px;}
.y19a{bottom:791.670450px;}
.y71{bottom:797.249253px;}
.y6d{bottom:797.250450px;}
.y16a{bottom:799.230450px;}
.y199{bottom:806.249235px;}
.y12{bottom:807.420459px;}
.y43{bottom:811.110450px;}
.yf2{bottom:811.560450px;}
.y132{bottom:811.650270px;}
.y1d2{bottom:811.650450px;}
.y6c{bottom:811.830162px;}
.y198{bottom:820.019523px;}
.y131{bottom:823.710279px;}
.y11{bottom:824.700450px;}
.y6b{bottom:825.600450px;}
.y42{bottom:831.810450px;}
.yf1{bottom:832.260450px;}
.y197{bottom:833.789811px;}
.y130{bottom:835.770288px;}
.y1e5{bottom:839.280450px;}
.y10{bottom:840.630450px;}
.y6a{bottom:841.080630px;}
.y196{bottom:847.649874px;}
.y12f{bottom:847.830297px;}
.y169{bottom:850.260450px;}
.yf{bottom:852.240468px;}
.y41{bottom:852.510450px;}
.yf0{bottom:852.960450px;}
.y12e{bottom:859.890306px;}
.y69{bottom:860.070540px;}
.y195{bottom:861.420162px;}
.y1e4{bottom:861.510450px;}
.ye{bottom:869.520459px;}
.y12d{bottom:872.040873px;}
.y40{bottom:873.210450px;}
.yef{bottom:873.660450px;}
.y194{bottom:875.190450px;}
.y168{bottom:875.730459px;}
.y68{bottom:879.060450px;}
.y1e3{bottom:882.390450px;}
.y12c{bottom:884.100882px;}
.yd{bottom:886.800639px;}
.y193{bottom:889.769523px;}
.y167{bottom:893.010450px;}
.y3f{bottom:893.910450px;}
.yee{bottom:894.360450px;}
.y12b{bottom:896.160891px;}
.y138{bottom:898.229460px;}
.y67{bottom:898.320450px;}
.y192{bottom:903.539811px;}
.yc{bottom:903.990450px;}
.y1e2{bottom:904.710450px;}
.y12a{bottom:908.220900px;}
.y137{bottom:911.999748px;}
.y3e{bottom:914.610450px;}
.yed{bottom:914.970450px;}
.y66{bottom:915.060450px;}
.y191{bottom:917.399874px;}
.y166{bottom:918.480450px;}
.yb{bottom:919.920450px;}
.y129{bottom:920.280909px;}
.y1e1{bottom:925.410450px;}
.y136{bottom:925.859811px;}
.y190{bottom:931.170162px;}
.ya{bottom:931.620648px;}
.y128{bottom:932.340918px;}
.y3d{bottom:935.310450px;}
.y65{bottom:935.670450px;}
.y135{bottom:939.630099px;}
.y165{bottom:943.950468px;}
.y127{bottom:944.400927px;}
.y18f{bottom:944.940450px;}
.y1e0{bottom:946.289100px;}
.y9{bottom:948.810459px;}
.y134{bottom:953.400387px;}
.y3c{bottom:956.010450px;}
.y64{bottom:956.370450px;}
.y1d1{bottom:956.460450px;}
.y126{bottom:956.550441px;}
.y18e{bottom:960.420630px;}
.y164{bottom:961.230459px;}
.y8{bottom:966.090459px;}
.y133{bottom:967.260450px;}
.y125{bottom:968.610450px;}
.y1df{bottom:968.699775px;}
.y3b{bottom:976.710450px;}
.y63{bottom:977.070450px;}
.y163{bottom:978.510450px;}
.y18d{bottom:979.410540px;}
.y7{bottom:983.370450px;}
.y11c{bottom:988.949838px;}
.y1de{bottom:991.110450px;}
.y3a{bottom:997.410450px;}
.y62{bottom:997.770450px;}
.y6{bottom:999.300450px;}
.y11b{bottom:1001.009847px;}
.y162{bottom:1003.980450px;}
.y5{bottom:1009.650450px;}
.y11a{bottom:1013.069856px;}
.y1dd{bottom:1013.430450px;}
.y39{bottom:1018.110450px;}
.y61{bottom:1018.470450px;}
.y18c{bottom:1018.560450px;}
.y124{bottom:1018.649811px;}
.y4{bottom:1020.000450px;}
.y120{bottom:1025.128812px;}
.y119{bottom:1025.129865px;}
.y161{bottom:1030.170450px;}
.y123{bottom:1032.420099px;}
.y3{bottom:1033.410756px;}
.y1dc{bottom:1034.219100px;}
.y11f{bottom:1037.188821px;}
.y118{bottom:1037.189874px;}
.y38{bottom:1038.810450px;}
.y60{bottom:1039.170450px;}
.y122{bottom:1046.190387px;}
.y11e{bottom:1049.248830px;}
.y117{bottom:1049.249883px;}
.y1db{bottom:1056.629775px;}
.y160{bottom:1058.700540px;}
.y37{bottom:1059.600450px;}
.y1d0{bottom:1059.780450px;}
.y5f{bottom:1059.870450px;}
.y121{bottom:1060.050450px;}
.y2{bottom:1061.040450px;}
.y11d{bottom:1061.399397px;}
.y116{bottom:1061.400450px;}
.y15f{bottom:1077.690450px;}
.y1da{bottom:1079.040450px;}
.y36{bottom:1080.480450px;}
.yec{bottom:1080.570450px;}
.y115{bottom:1082.010450px;}
.y1{bottom:1086.150450px;}
.y249{bottom:1098.210450px;}
.y248{bottom:1140.150450px;}
.h4{height:32.273438px;}
.h3{height:32.501953px;}
.hd{height:35.991211px;}
.hf{height:37.759922px;}
.h1c{height:38.027285px;}
.h1b{height:38.438613px;}
.h14{height:40.070215px;}
.he{height:42.923672px;}
.h1{height:43.227598px;}
.h13{height:43.695176px;}
.h11{height:43.929844px;}
.h9{height:47.988281px;}
.h1d{height:48.752930px;}
.h5{height:53.896641px;}
.h1a{height:54.278262px;}
.h12{height:54.865371px;}
.hc{height:59.060391px;}
.h7{height:59.478574px;}
.h8{height:64.546875px;}
.h6{height:65.003906px;}
.h15{height:70.033359px;}
.h17{height:70.529238px;}
.hb{height:70.664062px;}
.ha{height:75.093750px;}
.h10{height:76.043672px;}
.h16{height:81.476719px;}
.h2{height:86.780215px;}
.h19{height:892.500000px;}
.h18{height:892.830000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:1263.000000px;}
.x0{left:0.000000px;}
.x4f{left:106.365900px;}
.x7b{left:114.556341px;}
.x69{left:116.895279px;}
.x52{left:120.856314px;}
.x7f{left:123.195090px;}
.x1{left:127.620000px;}
.x13{left:131.670000px;}
.x12{left:135.630000px;}
.x2c{left:137.070441px;}
.x31{left:138.329874px;}
.x25{left:139.410576px;}
.x18{left:144.089649px;}
.x2f{left:145.709190px;}
.x26{left:150.120135px;}
.x2d{left:153.720711px;}
.x19{left:157.409865px;}
.x49{left:158.760000px;}
.x34{left:164.429676px;}
.x3c{left:170.100000px;}
.x17{left:171.720000px;}
.x45{left:173.430000px;}
.x4b{left:179.640000px;}
.x33{left:184.410000px;}
.x48{left:185.940000px;}
.x47{left:187.560000px;}
.x4e{left:189.450000px;}
.x42{left:193.770000px;}
.x4a{left:201.330000px;}
.x43{left:203.850000px;}
.x32{left:215.910162px;}
.x10{left:224.370180px;}
.x4c{left:228.240720px;}
.xa{left:231.840090px;}
.x6{left:246.870090px;}
.x15{left:248.490000px;}
.x1b{left:285.569064px;}
.x1c{left:291.508578px;}
.x3d{left:294.839721px;}
.x14{left:314.999523px;}
.x36{left:320.489748px;}
.x1a{left:327.509550px;}
.x53{left:330.915594px;}
.x46{left:341.280531px;}
.xb{left:345.961377px;}
.x2e{left:349.920000px;}
.x37{left:364.499847px;}
.xd{left:373.410666px;}
.x7{left:375.929694px;}
.x35{left:380.519298px;}
.x51{left:383.025750px;}
.x11{left:394.380522px;}
.x41{left:419.400000px;}
.x16{left:421.559442px;}
.x44{left:422.999937px;}
.x4d{left:429.570000px;}
.x30{left:437.850000px;}
.x2{left:446.490000px;}
.x27{left:447.569892px;}
.x81{left:460.605750px;}
.x1f{left:465.390000px;}
.x20{left:484.739505px;}
.x50{left:488.865750px;}
.x82{left:489.945750px;}
.x55{left:492.825750px;}
.x3e{left:509.760180px;}
.x7e{left:521.805750px;}
.x1d{left:523.077804px;}
.x56{left:528.555750px;}
.x57{left:537.915867px;}
.x6a{left:545.925216px;}
.x7c{left:550.876008px;}
.x1e{left:552.417471px;}
.xe{left:554.400000px;}
.x28{left:555.569784px;}
.x39{left:556.919991px;}
.x3a{left:559.620423px;}
.x21{left:564.029982px;}
.x22{left:583.650009px;}
.xc{left:587.880000px;}
.x38{left:592.559469px;}
.x29{left:600.209613px;}
.x58{left:610.996173px;}
.x6b{left:616.665522px;}
.x8{left:617.760000px;}
.x4{left:620.370000px;}
.x5{left:646.020198px;}
.xf{left:650.969253px;}
.x9{left:656.009847px;}
.x5a{left:663.015426px;}
.x2a{left:664.739559px;}
.x59{left:676.155813px;}
.x6d{left:681.915189px;}
.x6c{left:685.245243px;}
.x23{left:686.970261px;}
.x24{left:692.640450px;}
.x2b{left:709.199325px;}
.x3b{left:722.790675px;}
.x40{left:725.849811px;}
.x3f{left:731.520000px;}
.x5c{left:738.794571px;}
.x5b{left:742.574841px;}
.x6f{left:748.335522px;}
.x6e{left:751.665576px;}
.x3{left:765.360000px;}
.x54{left:779.655783px;}
.x5e{left:798.734490px;}
.x5d{left:801.074256px;}
.x71{left:806.745531px;}
.x70{left:810.075585px;}
.x60{left:856.694769px;}
.x5f{left:859.574724px;}
.x73{left:865.335090px;}
.x72{left:868.665144px;}
.x61{left:906.554319px;}
.x62{left:919.604148px;}
.x80{left:923.298618px;}
.x75{left:928.244622px;}
.x74{left:931.574676px;}
.x64{left:979.814688px;}
.x63{left:990.974382px;}
.x77{left:996.914118px;}
.x76{left:1000.244172px;}
.x66{left:1050.735291px;}
.x78{left:1053.794361px;}
.x7d{left:1058.743956px;}
.x65{left:1062.075048px;}
.x68{left:1105.546047px;}
.x67{left:1113.105534px;}
.x7a{left:1118.864478px;}
.x79{left:1122.194532px;}
@media print{
.v2{vertical-align:-71.680000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls40{letter-spacing:-0.974624pt;}
.ls63{letter-spacing:-0.314496pt;}
.ls43{letter-spacing:-0.299520pt;}
.ls4f{letter-spacing:-0.295776pt;}
.ls4a{letter-spacing:-0.280800pt;}
.ls61{letter-spacing:-0.258336pt;}
.ls11{letter-spacing:-0.192384pt;}
.ls8f{letter-spacing:-0.157248pt;}
.ls79{letter-spacing:-0.140800pt;}
.ls92{letter-spacing:-0.123552pt;}
.ls56{letter-spacing:-0.116064pt;}
.ls90{letter-spacing:-0.108576pt;}
.ls7f{letter-spacing:-0.104160pt;}
.ls78{letter-spacing:-0.102400pt;}
.ls6d{letter-spacing:-0.101536pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls6f{letter-spacing:-0.090848pt;}
.ls80{letter-spacing:-0.090272pt;}
.ls8d{letter-spacing:-0.089856pt;}
.ls91{letter-spacing:-0.086112pt;}
.ls6b{letter-spacing:-0.085504pt;}
.ls3f{letter-spacing:-0.085120pt;}
.lsf{letter-spacing:-0.080160pt;}
.ls66{letter-spacing:-0.076800pt;}
.ls8e{letter-spacing:-0.074880pt;}
.ls6e{letter-spacing:-0.074816pt;}
.lsd{letter-spacing:-0.069472pt;}
.ls8{letter-spacing:-0.068352pt;}
.ls8b{letter-spacing:-0.067392pt;}
.ls14{letter-spacing:-0.064128pt;}
.ls75{letter-spacing:-0.064000pt;}
.ls73{letter-spacing:-0.063840pt;}
.ls1b{letter-spacing:-0.059808pt;}
.ls6a{letter-spacing:-0.058784pt;}
.ls23{letter-spacing:-0.057600pt;}
.ls8c{letter-spacing:-0.056160pt;}
.ls6c{letter-spacing:-0.053440pt;}
.ls4e{letter-spacing:-0.052416pt;}
.ls20{letter-spacing:-0.051200pt;}
.ls3c{letter-spacing:-0.051072pt;}
.ls65{letter-spacing:-0.048672pt;}
.ls94{letter-spacing:-0.048000pt;}
.ls1c{letter-spacing:-0.044800pt;}
.lse{letter-spacing:-0.042752pt;}
.ls7{letter-spacing:-0.042720pt;}
.ls41{letter-spacing:-0.042560pt;}
.ls7e{letter-spacing:-0.041664pt;}
.ls50{letter-spacing:-0.041184pt;}
.ls15{letter-spacing:-0.038400pt;}
.ls47{letter-spacing:-0.037440pt;}
.ls81{letter-spacing:-0.034720pt;}
.ls5d{letter-spacing:-0.034048pt;}
.ls13{letter-spacing:-0.032064pt;}
.ls17{letter-spacing:-0.032000pt;}
.ls54{letter-spacing:-0.029952pt;}
.ls5e{letter-spacing:-0.029792pt;}
.lsc{letter-spacing:-0.026720pt;}
.ls46{letter-spacing:-0.026208pt;}
.ls19{letter-spacing:-0.025600pt;}
.ls4b{letter-spacing:-0.022464pt;}
.lsb{letter-spacing:-0.021376pt;}
.ls42{letter-spacing:-0.021280pt;}
.ls85{letter-spacing:-0.020832pt;}
.ls1a{letter-spacing:-0.019200pt;}
.ls49{letter-spacing:-0.018720pt;}
.ls3e{letter-spacing:-0.017024pt;}
.ls10{letter-spacing:-0.016032pt;}
.ls45{letter-spacing:-0.014976pt;}
.ls84{letter-spacing:-0.013888pt;}
.ls16{letter-spacing:-0.012800pt;}
.ls74{letter-spacing:-0.012768pt;}
.ls4c{letter-spacing:-0.011232pt;}
.lsa{letter-spacing:-0.010688pt;}
.ls3b{letter-spacing:-0.008512pt;}
.ls48{letter-spacing:-0.007488pt;}
.ls83{letter-spacing:-0.006944pt;}
.ls18{letter-spacing:-0.006400pt;}
.ls55{letter-spacing:-0.004256pt;}
.ls44{letter-spacing:-0.003744pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.003744pt;}
.ls5b{letter-spacing:0.004256pt;}
.ls1{letter-spacing:0.005344pt;}
.ls3{letter-spacing:0.006400pt;}
.ls7d{letter-spacing:0.006944pt;}
.ls37{letter-spacing:0.007488pt;}
.ls26{letter-spacing:0.008512pt;}
.ls31{letter-spacing:0.011232pt;}
.ls93{letter-spacing:0.012768pt;}
.ls5{letter-spacing:0.012800pt;}
.ls7b{letter-spacing:0.013888pt;}
.ls2d{letter-spacing:0.014976pt;}
.ls2{letter-spacing:0.016032pt;}
.ls69{letter-spacing:0.017024pt;}
.ls28{letter-spacing:0.018720pt;}
.ls4{letter-spacing:0.019200pt;}
.ls87{letter-spacing:0.021280pt;}
.ls0{letter-spacing:0.021376pt;}
.ls2b{letter-spacing:0.022464pt;}
.ls27{letter-spacing:0.025536pt;}
.ls1f{letter-spacing:0.025600pt;}
.ls2f{letter-spacing:0.026208pt;}
.ls7c{letter-spacing:0.027776pt;}
.ls51{letter-spacing:0.029792pt;}
.ls29{letter-spacing:0.029952pt;}
.ls58{letter-spacing:0.032000pt;}
.ls2c{letter-spacing:0.033696pt;}
.ls25{letter-spacing:0.034048pt;}
.ls52{letter-spacing:0.038304pt;}
.ls24{letter-spacing:0.038400pt;}
.ls36{letter-spacing:0.041184pt;}
.ls8a{letter-spacing:0.042560pt;}
.ls33{letter-spacing:0.044928pt;}
.ls70{letter-spacing:0.046816pt;}
.ls2e{letter-spacing:0.048672pt;}
.ls4d{letter-spacing:0.051072pt;}
.ls1d{letter-spacing:0.051200pt;}
.ls34{letter-spacing:0.052416pt;}
.ls67{letter-spacing:0.052704pt;}
.ls64{letter-spacing:0.055328pt;}
.ls7a{letter-spacing:0.055552pt;}
.ls5a{letter-spacing:0.058560pt;}
.ls88{letter-spacing:0.059584pt;}
.ls32{letter-spacing:0.059904pt;}
.ls39{letter-spacing:0.063648pt;}
.ls89{letter-spacing:0.063840pt;}
.ls82{letter-spacing:0.069440pt;}
.ls1e{letter-spacing:0.070272pt;}
.ls5c{letter-spacing:0.070400pt;}
.ls60{letter-spacing:0.071136pt;}
.ls30{letter-spacing:0.074880pt;}
.ls59{letter-spacing:0.076128pt;}
.ls62{letter-spacing:0.080864pt;}
.ls35{letter-spacing:0.085120pt;}
.ls38{letter-spacing:0.089376pt;}
.ls9{letter-spacing:0.096192pt;}
.ls12{letter-spacing:0.112224pt;}
.ls76{letter-spacing:0.128000pt;}
.ls5f{letter-spacing:0.136192pt;}
.ls3a{letter-spacing:0.140800pt;}
.ls68{letter-spacing:0.154976pt;}
.ls86{letter-spacing:0.254592pt;}
.ls77{letter-spacing:0.256000pt;}
.ls72{letter-spacing:0.331968pt;}
.ls53{letter-spacing:0.336224pt;}
.ls95{letter-spacing:0.561792pt;}
.ls3d{letter-spacing:0.625632pt;}
.ls57{letter-spacing:6.408320pt;}
.ls22{letter-spacing:236.160000pt;}
.ls71{letter-spacing:1057.600000pt;}
.ws212{word-spacing:-37.440000pt;}
.ws200{word-spacing:-19.269600pt;}
.ws1ff{word-spacing:-19.200160pt;}
.ws2d{word-spacing:-17.843200pt;}
.ws1dc{word-spacing:-17.817600pt;}
.ws1dd{word-spacing:-17.804800pt;}
.ws1da{word-spacing:-17.792000pt;}
.ws1db{word-spacing:-17.785600pt;}
.ws2e{word-spacing:-17.766400pt;}
.ws3{word-spacing:-14.968544pt;}
.ws0{word-spacing:-14.952512pt;}
.ws1{word-spacing:-14.786848pt;}
.ws2{word-spacing:-14.663936pt;}
.ws7{word-spacing:-0.470272pt;}
.ws75{word-spacing:-0.320000pt;}
.ws206{word-spacing:-0.243040pt;}
.wsa7{word-spacing:-0.224640pt;}
.ws9a{word-spacing:-0.220896pt;}
.wsa0{word-spacing:-0.213408pt;}
.ws6b{word-spacing:-0.198400pt;}
.wsb1{word-spacing:-0.185600pt;}
.ws94{word-spacing:-0.183456pt;}
.wsa5{word-spacing:-0.179712pt;}
.ws95{word-spacing:-0.175968pt;}
.wsa8{word-spacing:-0.160992pt;}
.ws8d{word-spacing:-0.157248pt;}
.ws85{word-spacing:-0.153504pt;}
.ws91{word-spacing:-0.149760pt;}
.ws207{word-spacing:-0.145824pt;}
.ws6{word-spacing:-0.145248pt;}
.ws10{word-spacing:-0.144288pt;}
.ws9f{word-spacing:-0.142272pt;}
.ws1f1{word-spacing:-0.140800pt;}
.ws9c{word-spacing:-0.138528pt;}
.wsd{word-spacing:-0.133600pt;}
.wsf{word-spacing:-0.128256pt;}
.ws216{word-spacing:-0.123552pt;}
.ws8{word-spacing:-0.117568pt;}
.wse{word-spacing:-0.112224pt;}
.ws9{word-spacing:-0.106880pt;}
.ws215{word-spacing:-0.104832pt;}
.wsa{word-spacing:-0.101536pt;}
.ws20e{word-spacing:-0.097216pt;}
.ws11{word-spacing:-0.096192pt;}
.ws20f{word-spacing:-0.090272pt;}
.wsb{word-spacing:-0.085504pt;}
.ws208{word-spacing:-0.076384pt;}
.ws144{word-spacing:-0.074816pt;}
.ws141{word-spacing:-0.069472pt;}
.ws20d{word-spacing:-0.069440pt;}
.ws12{word-spacing:-0.064128pt;}
.ws145{word-spacing:-0.058784pt;}
.ws146{word-spacing:-0.053440pt;}
.wsc{word-spacing:-0.048096pt;}
.ws22a{word-spacing:-0.046816pt;}
.wsa4{word-spacing:-0.044928pt;}
.ws143{word-spacing:-0.042752pt;}
.ws21e{word-spacing:-0.042560pt;}
.ws148{word-spacing:-0.037408pt;}
.ws22b{word-spacing:-0.034048pt;}
.ws229{word-spacing:-0.029792pt;}
.ws227{word-spacing:-0.025536pt;}
.wsec{word-spacing:-0.023424pt;}
.wsa3{word-spacing:-0.021280pt;}
.ws48{word-spacing:-0.017568pt;}
.ws5{word-spacing:-0.017088pt;}
.ws78{word-spacing:-0.017024pt;}
.ws9e{word-spacing:-0.012768pt;}
.ws178{word-spacing:-0.008512pt;}
.wsed{word-spacing:-0.005856pt;}
.ws225{word-spacing:-0.004256pt;}
.ws4{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.008512pt;}
.ws22{word-spacing:0.008544pt;}
.wsea{word-spacing:0.019200pt;}
.wsa2{word-spacing:0.021280pt;}
.ws76{word-spacing:0.025536pt;}
.ws177{word-spacing:0.029792pt;}
.ws197{word-spacing:0.032000pt;}
.wsee{word-spacing:0.034048pt;}
.ws179{word-spacing:0.038304pt;}
.ws15f{word-spacing:0.038400pt;}
.ws1e9{word-spacing:0.044800pt;}
.wsf1{word-spacing:0.046816pt;}
.wsf0{word-spacing:0.051072pt;}
.wsef{word-spacing:0.059584pt;}
.ws77{word-spacing:0.068096pt;}
.ws2c{word-spacing:0.070400pt;}
.ws176{word-spacing:0.080864pt;}
.ws92{word-spacing:0.082368pt;}
.ws1d3{word-spacing:0.083200pt;}
.wsf7{word-spacing:0.086112pt;}
.ws98{word-spacing:0.097344pt;}
.ws79{word-spacing:0.102144pt;}
.ws19b{word-spacing:0.102400pt;}
.wsa9{word-spacing:0.104832pt;}
.ws8e{word-spacing:0.108576pt;}
.ws9b{word-spacing:0.112320pt;}
.ws19c{word-spacing:0.115200pt;}
.ws86{word-spacing:0.123552pt;}
.ws8a{word-spacing:0.127296pt;}
.ws2f{word-spacing:0.128000pt;}
.ws8f{word-spacing:0.131040pt;}
.ws140{word-spacing:0.134400pt;}
.ws83{word-spacing:0.134784pt;}
.ws7f{word-spacing:0.138528pt;}
.ws21{word-spacing:0.140800pt;}
.ws8c{word-spacing:0.142272pt;}
.ws96{word-spacing:0.146016pt;}
.ws20{word-spacing:0.147200pt;}
.wsa6{word-spacing:0.149760pt;}
.ws82{word-spacing:0.153504pt;}
.ws1f{word-spacing:0.153600pt;}
.ws87{word-spacing:0.157248pt;}
.ws12f{word-spacing:0.160000pt;}
.ws80{word-spacing:0.160992pt;}
.ws93{word-spacing:0.164736pt;}
.ws47{word-spacing:0.166400pt;}
.ws90{word-spacing:0.168480pt;}
.ws81{word-spacing:0.172224pt;}
.ws175{word-spacing:0.172800pt;}
.ws88{word-spacing:0.175968pt;}
.ws13{word-spacing:0.179200pt;}
.ws8b{word-spacing:0.179712pt;}
.ws185{word-spacing:0.185600pt;}
.wsa1{word-spacing:0.187200pt;}
.ws84{word-spacing:0.194688pt;}
.ws15e{word-spacing:0.198400pt;}
.ws9d{word-spacing:0.198432pt;}
.ws97{word-spacing:0.209664pt;}
.wsc0{word-spacing:0.224000pt;}
.ws214{word-spacing:0.224640pt;}
.ws186{word-spacing:0.243200pt;}
.ws182{word-spacing:0.256000pt;}
.ws1e4{word-spacing:0.262400pt;}
.ws213{word-spacing:0.273312pt;}
.ws130{word-spacing:0.281600pt;}
.ws2b{word-spacing:0.288000pt;}
.ws7b{word-spacing:0.344736pt;}
.ws7c{word-spacing:0.357504pt;}
.ws6d{word-spacing:0.428800pt;}
.ws89{word-spacing:0.438048pt;}
.ws99{word-spacing:0.453024pt;}
.ws7e{word-spacing:0.456768pt;}
.ws54{word-spacing:0.518400pt;}
.ws6c{word-spacing:0.595200pt;}
.ws53{word-spacing:0.614400pt;}
.ws52{word-spacing:0.665600pt;}
.ws125{word-spacing:0.787200pt;}
.ws1de{word-spacing:0.793600pt;}
.wsfa{word-spacing:0.808704pt;}
.ws66{word-spacing:0.812800pt;}
.ws61{word-spacing:1.056000pt;}
.ws60{word-spacing:1.113600pt;}
.ws1c2{word-spacing:1.158400pt;}
.ws149{word-spacing:1.264032pt;}
.ws7a{word-spacing:1.310848pt;}
.ws1c1{word-spacing:1.312000pt;}
.ws16e{word-spacing:1.382400pt;}
.ws153{word-spacing:1.440000pt;}
.ws1d2{word-spacing:1.446400pt;}
.ws16d{word-spacing:1.504000pt;}
.ws1d1{word-spacing:1.510400pt;}
.ws1d0{word-spacing:1.542400pt;}
.ws26{word-spacing:1.715200pt;}
.wsc5{word-spacing:1.728000pt;}
.ws1a7{word-spacing:1.747200pt;}
.wsc4{word-spacing:1.753600pt;}
.ws25{word-spacing:1.766400pt;}
.ws1a8{word-spacing:1.772800pt;}
.wsba{word-spacing:1.836800pt;}
.wsc9{word-spacing:1.849600pt;}
.ws1a9{word-spacing:1.862400pt;}
.wsbb{word-spacing:1.875200pt;}
.ws1bd{word-spacing:2.054400pt;}
.ws1be{word-spacing:2.124800pt;}
.ws202{word-spacing:2.187360pt;}
.wsac{word-spacing:2.380800pt;}
.ws142{word-spacing:2.431520pt;}
.ws184{word-spacing:2.432000pt;}
.ws201{word-spacing:2.506784pt;}
.ws183{word-spacing:2.560000pt;}
.ws116{word-spacing:2.695680pt;}
.ws18e{word-spacing:2.784000pt;}
.ws228{word-spacing:2.851520pt;}
.ws1cf{word-spacing:3.033600pt;}
.ws1ce{word-spacing:3.046400pt;}
.ws18f{word-spacing:3.072000pt;}
.ws14a{word-spacing:3.192000pt;}
.ws169{word-spacing:3.270400pt;}
.ws1b2{word-spacing:3.321600pt;}
.ws1b3{word-spacing:3.347200pt;}
.ws1e1{word-spacing:3.353600pt;}
.ws31{word-spacing:3.360000pt;}
.ws111{word-spacing:3.365856pt;}
.wsfc{word-spacing:3.377088pt;}
.ws1c{word-spacing:3.398400pt;}
.ws32{word-spacing:3.411200pt;}
.ws1e2{word-spacing:3.424000pt;}
.ws13c{word-spacing:3.436800pt;}
.ws1b{word-spacing:3.443200pt;}
.ws13d{word-spacing:3.449600pt;}
.ws1a0{word-spacing:3.456000pt;}
.ws63{word-spacing:3.660800pt;}
.ws62{word-spacing:3.673600pt;}
.ws12b{word-spacing:3.680000pt;}
.wsce{word-spacing:3.692800pt;}
.wsc6{word-spacing:3.699200pt;}
.ws12c{word-spacing:3.718400pt;}
.wseb{word-spacing:3.788800pt;}
.wscf{word-spacing:3.814400pt;}
.wsd0{word-spacing:3.846400pt;}
.ws11c{word-spacing:3.972384pt;}
.ws124{word-spacing:3.974400pt;}
.wsc8{word-spacing:3.987200pt;}
.ws36{word-spacing:4.000000pt;}
.wsc7{word-spacing:4.012800pt;}
.ws165{word-spacing:4.038400pt;}
.ws123{word-spacing:4.051200pt;}
.ws164{word-spacing:4.089600pt;}
.ws1c6{word-spacing:4.108800pt;}
.ws35{word-spacing:4.140800pt;}
.ws154{word-spacing:4.281600pt;}
.ws33{word-spacing:4.339200pt;}
.ws34{word-spacing:4.345600pt;}
.ws131{word-spacing:4.384000pt;}
.ws155{word-spacing:4.473600pt;}
.ws156{word-spacing:4.563200pt;}
.ws1e5{word-spacing:4.569600pt;}
.ws12e{word-spacing:4.640000pt;}
.ws12d{word-spacing:4.646400pt;}
.ws1b5{word-spacing:4.659200pt;}
.ws1b4{word-spacing:4.684800pt;}
.ws21d{word-spacing:4.783744pt;}
.ws56{word-spacing:4.934400pt;}
.ws57{word-spacing:4.960000pt;}
.ws17a{word-spacing:4.998400pt;}
.ws17b{word-spacing:5.017600pt;}
.ws55{word-spacing:5.043200pt;}
.ws19d{word-spacing:5.100800pt;}
.ws1b9{word-spacing:5.286400pt;}
.ws1ba{word-spacing:5.292800pt;}
.ws174{word-spacing:5.574400pt;}
.ws16b{word-spacing:5.580800pt;}
.ws16c{word-spacing:5.587200pt;}
.ws1e{word-spacing:5.606400pt;}
.ws1d4{word-spacing:5.612800pt;}
.ws16a{word-spacing:5.657600pt;}
.ws1d{word-spacing:5.664000pt;}
.ws18{word-spacing:5.881600pt;}
.ws167{word-spacing:5.888000pt;}
.ws17{word-spacing:5.894400pt;}
.wsdf{word-spacing:5.907200pt;}
.wsf5{word-spacing:5.908032pt;}
.ws166{word-spacing:5.920000pt;}
.wsde{word-spacing:5.926400pt;}
.ws17c{word-spacing:5.977600pt;}
.ws19{word-spacing:5.996800pt;}
.ws1ab{word-spacing:6.214400pt;}
.wsb3{word-spacing:6.233600pt;}
.wsb2{word-spacing:6.252800pt;}
.ws14{word-spacing:6.579200pt;}
.ws18a{word-spacing:6.598400pt;}
.ws18b{word-spacing:6.636800pt;}
.ws21f{word-spacing:6.681920pt;}
.ws220{word-spacing:6.690432pt;}
.ws15{word-spacing:6.713600pt;}
.ws16{word-spacing:6.732800pt;}
.wsf6{word-spacing:6.844032pt;}
.ws15a{word-spacing:6.848000pt;}
.ws127{word-spacing:6.867200pt;}
.ws117{word-spacing:6.881472pt;}
.ws15b{word-spacing:6.886400pt;}
.ws128{word-spacing:6.892800pt;}
.ws5b{word-spacing:6.956800pt;}
.ws5a{word-spacing:6.969600pt;}
.ws59{word-spacing:6.982400pt;}
.ws223{word-spacing:7.018144pt;}
.ws65{word-spacing:7.187200pt;}
.ws64{word-spacing:7.193600pt;}
.ws129{word-spacing:7.225600pt;}
.ws19f{word-spacing:7.238400pt;}
.ws19e{word-spacing:7.264000pt;}
.ws1c7{word-spacing:7.270400pt;}
.ws1c8{word-spacing:7.276800pt;}
.ws71{word-spacing:7.315200pt;}
.ws195{word-spacing:7.328000pt;}
.ws70{word-spacing:7.347200pt;}
.ws196{word-spacing:7.385600pt;}
.ws108{word-spacing:7.499232pt;}
.ws3d{word-spacing:7.500800pt;}
.wse2{word-spacing:7.507200pt;}
.ws1a4{word-spacing:7.513600pt;}
.ws1a5{word-spacing:7.520000pt;}
.ws1a6{word-spacing:7.571200pt;}
.wse3{word-spacing:7.616000pt;}
.ws27{word-spacing:7.750400pt;}
.ws1af{word-spacing:7.827200pt;}
.ws68{word-spacing:7.840000pt;}
.ws103{word-spacing:7.862400pt;}
.ws28{word-spacing:7.865600pt;}
.ws1ae{word-spacing:7.942400pt;}
.wscd{word-spacing:8.147200pt;}
.ws72{word-spacing:8.166400pt;}
.ws168{word-spacing:8.172800pt;}
.ws21b{word-spacing:8.626912pt;}
.ws132{word-spacing:8.774400pt;}
.ws133{word-spacing:8.780800pt;}
.ws172{word-spacing:8.793600pt;}
.ws1fa{word-spacing:8.800000pt;}
.ws173{word-spacing:8.812800pt;}
.ws118{word-spacing:9.094176pt;}
.wscb{word-spacing:9.107200pt;}
.ws194{word-spacing:9.113600pt;}
.wscc{word-spacing:9.152000pt;}
.wsca{word-spacing:9.158400pt;}
.ws193{word-spacing:9.164800pt;}
.ws44{word-spacing:9.395200pt;}
.ws41{word-spacing:9.420800pt;}
.ws43{word-spacing:9.427200pt;}
.wsab{word-spacing:9.433600pt;}
.ws10c{word-spacing:9.442368pt;}
.ws42{word-spacing:9.478400pt;}
.ws40{word-spacing:9.497600pt;}
.wsaa{word-spacing:9.587200pt;}
.ws1fe{word-spacing:9.702400pt;}
.ws1c0{word-spacing:9.708800pt;}
.ws45{word-spacing:9.753600pt;}
.ws1bf{word-spacing:9.766400pt;}
.ws1fd{word-spacing:9.779200pt;}
.ws1e8{word-spacing:9.811200pt;}
.ws46{word-spacing:9.843200pt;}
.wsb6{word-spacing:10.054400pt;}
.wsb7{word-spacing:10.080000pt;}
.wsd2{word-spacing:10.086400pt;}
.ws187{word-spacing:10.118400pt;}
.wse4{word-spacing:10.137600pt;}
.wsd3{word-spacing:10.150400pt;}
.ws189{word-spacing:10.182400pt;}
.ws188{word-spacing:10.227200pt;}
.wse6{word-spacing:10.246400pt;}
.wse5{word-spacing:10.259200pt;}
.ws1ca{word-spacing:10.355200pt;}
.ws24{word-spacing:10.374400pt;}
.ws23{word-spacing:10.380800pt;}
.ws119{word-spacing:10.393344pt;}
.ws14c{word-spacing:10.393600pt;}
.ws14b{word-spacing:10.432000pt;}
.ws14d{word-spacing:10.444800pt;}
.ws1c9{word-spacing:10.457600pt;}
.ws1b1{word-spacing:10.476800pt;}
.ws1b0{word-spacing:10.508800pt;}
.ws1bc{word-spacing:10.732800pt;}
.ws1bb{word-spacing:10.796800pt;}
.wse9{word-spacing:11.008000pt;}
.ws17d{word-spacing:11.014400pt;}
.ws1aa{word-spacing:11.027200pt;}
.ws18c{word-spacing:11.033600pt;}
.wsfe{word-spacing:11.037312pt;}
.ws210{word-spacing:11.054848pt;}
.ws18d{word-spacing:11.116800pt;}
.ws211{word-spacing:11.131232pt;}
.wse7{word-spacing:11.142400pt;}
.ws17e{word-spacing:11.244800pt;}
.wse8{word-spacing:11.251200pt;}
.ws1f7{word-spacing:11.443200pt;}
.ws204{word-spacing:11.520096pt;}
.ws14f{word-spacing:11.654400pt;}
.ws14e{word-spacing:11.660800pt;}
.ws203{word-spacing:11.672864pt;}
.ws11b{word-spacing:11.673792pt;}
.ws11a{word-spacing:11.681280pt;}
.ws12a{word-spacing:11.692800pt;}
.ws205{word-spacing:11.853408pt;}
.ws102{word-spacing:12.003264pt;}
.wsd8{word-spacing:12.307200pt;}
.ws3a{word-spacing:12.326400pt;}
.ws39{word-spacing:12.332800pt;}
.wsd6{word-spacing:12.390400pt;}
.ws157{word-spacing:12.396800pt;}
.wsd7{word-spacing:12.422400pt;}
.ws13b{word-spacing:12.659200pt;}
.ws2a{word-spacing:12.691200pt;}
.ws29{word-spacing:12.806400pt;}
.ws13a{word-spacing:12.934400pt;}
.ws110{word-spacing:12.969216pt;}
.ws10a{word-spacing:13.246272pt;}
.ws10b{word-spacing:13.564512pt;}
.wsad{word-spacing:13.587200pt;}
.ws113{word-spacing:13.605696pt;}
.wsae{word-spacing:13.657600pt;}
.ws20c{word-spacing:13.874112pt;}
.ws161{word-spacing:13.881600pt;}
.ws160{word-spacing:13.900800pt;}
.ws190{word-spacing:13.920000pt;}
.ws20b{word-spacing:13.985216pt;}
.ws192{word-spacing:14.003200pt;}
.ws191{word-spacing:14.060800pt;}
.wsc2{word-spacing:14.214400pt;}
.wsc3{word-spacing:14.310400pt;}
.wsc1{word-spacing:14.323200pt;}
.ws107{word-spacing:14.552928pt;}
.ws1c4{word-spacing:14.560000pt;}
.ws1c5{word-spacing:14.592000pt;}
.ws1ed{word-spacing:14.726400pt;}
.ws1ee{word-spacing:14.745600pt;}
.ws13e{word-spacing:14.752000pt;}
.ws13f{word-spacing:14.764800pt;}
.ws1f8{word-spacing:14.860800pt;}
.ws1f9{word-spacing:14.873600pt;}
.ws1ec{word-spacing:14.880000pt;}
.ws158{word-spacing:15.123200pt;}
.ws159{word-spacing:15.187200pt;}
.ws67{word-spacing:15.212800pt;}
.ws181{word-spacing:15.494400pt;}
.ws180{word-spacing:15.744000pt;}
.ws1a2{word-spacing:16.128000pt;}
.ws114{word-spacing:16.181568pt;}
.ws1a1{word-spacing:16.198400pt;}
.ws1a3{word-spacing:16.236800pt;}
.ws4a{word-spacing:16.787200pt;}
.ws49{word-spacing:16.870400pt;}
.ws109{word-spacing:17.750304pt;}
.ws1cd{word-spacing:18.022400pt;}
.ws1cc{word-spacing:18.073600pt;}
.ws122{word-spacing:18.086400pt;}
.ws121{word-spacing:18.092800pt;}
.ws21c{word-spacing:18.232704pt;}
.wsb4{word-spacing:18.374400pt;}
.ws3f{word-spacing:18.393600pt;}
.ws1f2{word-spacing:18.406400pt;}
.wsb5{word-spacing:18.419200pt;}
.ws3e{word-spacing:18.425600pt;}
.ws1f3{word-spacing:18.521600pt;}
.ws1f4{word-spacing:18.579200pt;}
.ws139{word-spacing:18.694400pt;}
.ws6a{word-spacing:18.713600pt;}
.ws134{word-spacing:18.726400pt;}
.ws69{word-spacing:18.739200pt;}
.ws217{word-spacing:18.862592pt;}
.wsbf{word-spacing:18.988800pt;}
.wsbe{word-spacing:19.078400pt;}
.ws37{word-spacing:19.136000pt;}
.ws38{word-spacing:19.148800pt;}
.ws5d{word-spacing:19.302400pt;}
.ws5c{word-spacing:19.449600pt;}
.ws1fb{word-spacing:19.673600pt;}
.ws1fc{word-spacing:19.686400pt;}
.ws1d7{word-spacing:19.955200pt;}
.ws1d6{word-spacing:19.987200pt;}
.ws1d5{word-spacing:20.217600pt;}
.wsd5{word-spacing:20.275200pt;}
.ws1b8{word-spacing:20.307200pt;}
.wsd4{word-spacing:20.320000pt;}
.wse1{word-spacing:20.326400pt;}
.ws152{word-spacing:20.332800pt;}
.wse0{word-spacing:20.364800pt;}
.ws3b{word-spacing:20.614400pt;}
.ws3c{word-spacing:20.633600pt;}
.ws1cb{word-spacing:20.652800pt;}
.ws30{word-spacing:21.292800pt;}
.wsd9{word-spacing:21.612800pt;}
.ws58{word-spacing:21.932800pt;}
.ws1d9{word-spacing:22.214400pt;}
.ws1d8{word-spacing:22.259200pt;}
.ws151{word-spacing:22.540800pt;}
.ws150{word-spacing:22.636800pt;}
.ws199{word-spacing:22.886400pt;}
.ws198{word-spacing:22.969600pt;}
.ws51{word-spacing:23.801600pt;}
.ws136{word-spacing:23.820800pt;}
.ws126{word-spacing:23.833600pt;}
.ws135{word-spacing:23.852800pt;}
.ws50{word-spacing:23.942400pt;}
.ws74{word-spacing:24.128000pt;}
.ws1c3{word-spacing:24.140800pt;}
.wsf9{word-spacing:24.178752pt;}
.ws73{word-spacing:24.224000pt;}
.ws10d{word-spacing:24.467040pt;}
.ws224{word-spacing:24.599680pt;}
.ws106{word-spacing:25.740000pt;}
.ws11e{word-spacing:26.348800pt;}
.ws11d{word-spacing:26.387200pt;}
.wsd1{word-spacing:27.347200pt;}
.wsdd{word-spacing:27.744000pt;}
.wsdc{word-spacing:27.763200pt;}
.ws1e7{word-spacing:28.320000pt;}
.ws1e6{word-spacing:28.332800pt;}
.ws120{word-spacing:28.940800pt;}
.ws11f{word-spacing:28.966400pt;}
.ws1ad{word-spacing:29.888000pt;}
.ws1f5{word-spacing:29.907200pt;}
.ws1f6{word-spacing:29.913600pt;}
.ws1ac{word-spacing:29.977600pt;}
.ws147{word-spacing:31.000544pt;}
.wsf8{word-spacing:31.187520pt;}
.ws221{word-spacing:31.345440pt;}
.ws4b{word-spacing:31.488000pt;}
.ws4d{word-spacing:31.552000pt;}
.ws4c{word-spacing:31.686400pt;}
.ws104{word-spacing:32.138496pt;}
.ws1a{word-spacing:32.147200pt;}
.wsb8{word-spacing:32.876800pt;}
.wsb9{word-spacing:32.908800pt;}
.ws162{word-spacing:33.107200pt;}
.ws1b7{word-spacing:33.420800pt;}
.ws163{word-spacing:33.452800pt;}
.ws1b6{word-spacing:33.504000pt;}
.ws20a{word-spacing:34.456128pt;}
.ws115{word-spacing:34.676928pt;}
.ws209{word-spacing:34.824160pt;}
.ws10f{word-spacing:35.669088pt;}
.ws10e{word-spacing:35.684064pt;}
.wsb0{word-spacing:36.236800pt;}
.wsaf{word-spacing:36.300800pt;}
.ws112{word-spacing:36.324288pt;}
.ws1df{word-spacing:36.416000pt;}
.ws1e0{word-spacing:36.460800pt;}
.wsbc{word-spacing:36.947200pt;}
.wsbd{word-spacing:37.011200pt;}
.ws219{word-spacing:37.423008pt;}
.ws218{word-spacing:37.435776pt;}
.ws21a{word-spacing:38.699808pt;}
.ws171{word-spacing:38.854400pt;}
.ws16f{word-spacing:38.937600pt;}
.ws170{word-spacing:39.008000pt;}
.ws6e{word-spacing:39.833600pt;}
.ws6f{word-spacing:39.840000pt;}
.ws5f{word-spacing:40.160000pt;}
.ws5e{word-spacing:40.243200pt;}
.ws1e3{word-spacing:41.440000pt;}
.ws138{word-spacing:41.766400pt;}
.ws137{word-spacing:41.779200pt;}
.ws222{word-spacing:42.534464pt;}
.ws19a{word-spacing:44.012800pt;}
.ws17f{word-spacing:44.947200pt;}
.ws15c{word-spacing:46.457600pt;}
.ws15d{word-spacing:46.547200pt;}
.wsf4{word-spacing:48.159072pt;}
.wsff{word-spacing:48.454848pt;}
.wsda{word-spacing:49.388800pt;}
.wsdb{word-spacing:49.548800pt;}
.ws101{word-spacing:52.314912pt;}
.ws4e{word-spacing:52.633600pt;}
.ws4f{word-spacing:52.646400pt;}
.ws105{word-spacing:53.572896pt;}
.wsfb{word-spacing:53.917344pt;}
.ws226{word-spacing:56.936768pt;}
.ws1eb{word-spacing:59.942400pt;}
.ws1ea{word-spacing:59.974400pt;}
.ws1f0{word-spacing:69.273600pt;}
.ws1ef{word-spacing:69.280000pt;}
.ws100{word-spacing:82.397952pt;}
.wsf3{word-spacing:85.303296pt;}
.wsfd{word-spacing:90.084384pt;}
.ws22c{word-spacing:171.310464pt;}
.ws22d{word-spacing:176.791680pt;}
.wsf2{word-spacing:374.766336pt;}
._14{margin-left:-30.797472pt;}
._1b{margin-left:-29.511136pt;}
._20{margin-left:-19.547424pt;}
._1d{margin-left:-9.670144pt;}
._4{margin-left:-2.713600pt;}
._0{margin-left:-1.127584pt;}
._1{width:0.903136pt;}
._2{width:1.930496pt;}
._1e{width:15.998112pt;}
._1f{width:20.479680pt;}
._1c{width:36.403200pt;}
._19{width:46.001152pt;}
._13{width:66.880160pt;}
._c{width:81.923520pt;}
._8{width:90.174656pt;}
._11{width:93.760480pt;}
._16{width:96.277504pt;}
._a{width:108.477856pt;}
._b{width:125.225952pt;}
._f{width:127.278048pt;}
._9{width:141.888544pt;}
._3{width:148.324128pt;}
._17{width:164.279904pt;}
._5{width:207.040000pt;}
._1a{width:217.821440pt;}
._d{width:225.185472pt;}
._15{width:231.282976pt;}
._12{width:260.279520pt;}
._10{width:293.353536pt;}
._18{width:294.400960pt;}
._e{width:316.685440pt;}
._7{width:348.161600pt;}
._6{width:390.720000pt;}
.fs2{font-size:32.000000pt;}
.fs7{font-size:37.440000pt;}
.fs0{font-size:42.560000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:69.440000pt;}
.fs1{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:100.347067pt;}
.y15e{bottom:102.827067pt;}
.y114{bottom:108.026755pt;}
.y5e{bottom:108.427067pt;}
.y1c7{bottom:109.947067pt;}
.y18b{bottom:110.587067pt;}
.y1cf{bottom:114.187067pt;}
.yeb{bottom:115.467200pt;}
.y34{bottom:118.827067pt;}
.y113{bottom:120.267011pt;}
.y15d{bottom:123.947067pt;}
.y5d{bottom:126.827067pt;}
.y1bd{bottom:126.907067pt;}
.y1c6{bottom:128.347067pt;}
.y18a{bottom:128.987067pt;}
.y112{bottom:132.587067pt;}
.yea{bottom:133.867200pt;}
.y243{bottom:136.426355pt;}
.y33{bottom:137.227067pt;}
.y247{bottom:138.506667pt;}
.y1bc{bottom:142.587067pt;}
.y15c{bottom:142.747067pt;}
.y5c{bottom:145.227067pt;}
.y1c5{bottom:146.747067pt;}
.y189{bottom:147.387067pt;}
.y242{bottom:148.746411pt;}
.y245{bottom:150.266667pt;}
.y1ce{bottom:150.987067pt;}
.y246{bottom:151.466659pt;}
.ye9{bottom:152.267200pt;}
.y111{bottom:152.987307pt;}
.y32{bottom:155.627067pt;}
.y1bb{bottom:159.387067pt;}
.y241{bottom:160.986667pt;}
.y15b{bottom:161.387067pt;}
.y244{bottom:162.186667pt;}
.y5b{bottom:163.627067pt;}
.y1c4{bottom:165.147067pt;}
.y188{bottom:165.787067pt;}
.y1cd{bottom:169.387067pt;}
.y110{bottom:169.867227pt;}
.ye8{bottom:170.667200pt;}
.y240{bottom:173.946411pt;}
.y31{bottom:174.027067pt;}
.y1ba{bottom:176.107067pt;}
.y15a{bottom:179.787067pt;}
.y5a{bottom:182.107067pt;}
.y1c3{bottom:183.547067pt;}
.y187{bottom:184.187067pt;}
.y23f{bottom:186.186667pt;}
.y10f{bottom:186.747147pt;}
.y1cc{bottom:187.787067pt;}
.ye7{bottom:189.067200pt;}
.y30{bottom:192.427067pt;}
.y1b9{bottom:194.507067pt;}
.y159{bottom:198.187067pt;}
.y23e{bottom:199.066611pt;}
.y59{bottom:200.507067pt;}
.y1c2{bottom:201.947067pt;}
.y186{bottom:202.587067pt;}
.y10e{bottom:203.627067pt;}
.y1cb{bottom:206.187067pt;}
.ye4{bottom:206.587475pt;}
.y2f{bottom:210.827067pt;}
.y23d{bottom:211.386667pt;}
.y1b8{bottom:212.907067pt;}
.y158{bottom:216.587067pt;}
.ye6{bottom:216.667059pt;}
.ye3{bottom:217.307483pt;}
.y58{bottom:218.907067pt;}
.y1c1{bottom:220.347067pt;}
.y185{bottom:220.987067pt;}
.ydf{bottom:223.786755pt;}
.y23c{bottom:224.266611pt;}
.y10d{bottom:224.587067pt;}
.ye5{bottom:227.387067pt;}
.ye2{bottom:228.027491pt;}
.y2e{bottom:229.227067pt;}
.y1b7{bottom:231.307067pt;}
.y157{bottom:234.987067pt;}
.yde{bottom:236.027011pt;}
.y23b{bottom:236.586667pt;}
.y23a{bottom:237.226355pt;}
.y57{bottom:237.227067pt;}
.y1c0{bottom:238.747067pt;}
.ye1{bottom:238.827059pt;}
.y184{bottom:239.387067pt;}
.y10c{bottom:242.987067pt;}
.y1d9{bottom:243.067067pt;}
.y2d{bottom:247.547067pt;}
.ydd{bottom:248.347067pt;}
.y239{bottom:249.466611pt;}
.ye0{bottom:249.547067pt;}
.y1b6{bottom:249.707067pt;}
.y156{bottom:253.387067pt;}
.y56{bottom:255.627067pt;}
.y1bf{bottom:257.386435pt;}
.y183{bottom:257.787067pt;}
.ydc{bottom:260.907491pt;}
.y10b{bottom:261.387067pt;}
.y238{bottom:261.786667pt;}
.y2c{bottom:266.027067pt;}
.yd5{bottom:266.506499pt;}
.y1b5{bottom:268.107067pt;}
.ydb{bottom:271.627499pt;}
.y155{bottom:271.867067pt;}
.yd9{bottom:272.347043pt;}
.y1be{bottom:273.067067pt;}
.y55{bottom:274.027067pt;}
.y237{bottom:275.066667pt;}
.y182{bottom:276.267067pt;}
.yd4{bottom:278.826555pt;}
.y10a{bottom:279.787067pt;}
.yda{bottom:282.427067pt;}
.yd8{bottom:283.067051pt;}
.y2b{bottom:284.427067pt;}
.y1b4{bottom:286.507067pt;}
.y236{bottom:289.146611pt;}
.y154{bottom:290.187067pt;}
.yd3{bottom:291.066811pt;}
.y54{bottom:292.427067pt;}
.yd7{bottom:293.787059pt;}
.y181{bottom:294.587067pt;}
.y109{bottom:298.187067pt;}
.y235{bottom:301.466667pt;}
.yd2{bottom:303.307067pt;}
.y2a{bottom:303.787339pt;}
.yd6{bottom:304.507067pt;}
.y1b3{bottom:304.907067pt;}
.y153{bottom:308.587067pt;}
.y53{bottom:310.827067pt;}
.y180{bottom:312.987067pt;}
.y234{bottom:314.346667pt;}
.y233{bottom:315.066155pt;}
.y108{bottom:316.587067pt;}
.y1d8{bottom:316.667067pt;}
.y1b2{bottom:323.307067pt;}
.yd1{bottom:326.426944pt;}
.y152{bottom:326.987067pt;}
.ycd{bottom:327.066499pt;}
.y232{bottom:327.306411pt;}
.y29{bottom:328.347067pt;}
.y52{bottom:329.227067pt;}
.y17f{bottom:331.387067pt;}
.y1ca{bottom:334.907067pt;}
.y107{bottom:334.987067pt;}
.yd0{bottom:338.667200pt;}
.ycc{bottom:339.306755pt;}
.y231{bottom:339.546667pt;}
.y1b1{bottom:341.707067pt;}
.y151{bottom:345.387067pt;}
.y51{bottom:347.627067pt;}
.y17e{bottom:349.787067pt;}
.ycf{bottom:351.625747pt;}
.ycb{bottom:351.626811pt;}
.y28{bottom:351.867067pt;}
.y22e{bottom:352.506099pt;}
.y106{bottom:353.387067pt;}
.y1b0{bottom:360.107067pt;}
.y150{bottom:363.787067pt;}
.yce{bottom:363.866003pt;}
.yca{bottom:363.867067pt;}
.y22d{bottom:364.746355pt;}
.y50{bottom:366.027067pt;}
.y17d{bottom:368.187067pt;}
.y27{bottom:370.267067pt;}
.y105{bottom:371.787067pt;}
.yc9{bottom:376.826944pt;}
.y230{bottom:376.985547pt;}
.y22c{bottom:376.986611pt;}
.y1af{bottom:378.507067pt;}
.y14f{bottom:382.267067pt;}
.y4f{bottom:384.427067pt;}
.y17c{bottom:386.587067pt;}
.y26{bottom:388.587067pt;}
.yc8{bottom:389.067200pt;}
.y22f{bottom:389.305603pt;}
.y22b{bottom:389.306667pt;}
.y104{bottom:390.187067pt;}
.y1ae{bottom:396.987067pt;}
.y14e{bottom:400.587067pt;}
.ybf{bottom:402.026376pt;}
.y22a{bottom:402.186611pt;}
.y4e{bottom:402.827067pt;}
.y17b{bottom:404.987067pt;}
.y25{bottom:407.067067pt;}
.yc7{bottom:407.947632pt;}
.y103{bottom:408.587067pt;}
.y1d7{bottom:408.667067pt;}
.yc4{bottom:409.307475pt;}
.ybe{bottom:414.266632pt;}
.y229{bottom:414.506667pt;}
.y1ad{bottom:415.227067pt;}
.yc6{bottom:418.747200pt;}
.y14d{bottom:418.987067pt;}
.yc3{bottom:420.027483pt;}
.y4d{bottom:421.227067pt;}
.y17a{bottom:423.467067pt;}
.y24{bottom:425.467067pt;}
.ybd{bottom:426.506888pt;}
.y102{bottom:426.987067pt;}
.y228{bottom:427.386611pt;}
.yc5{bottom:430.107200pt;}
.yc2{bottom:430.747491pt;}
.y1ac{bottom:433.707067pt;}
.y14c{bottom:437.387067pt;}
.ybc{bottom:438.747144pt;}
.y4c{bottom:439.627067pt;}
.y227{bottom:439.706667pt;}
.yc1{bottom:441.547059pt;}
.y179{bottom:441.787067pt;}
.y23{bottom:443.867067pt;}
.y101{bottom:445.387067pt;}
.ybb{bottom:451.067200pt;}
.y1ab{bottom:452.107067pt;}
.yc0{bottom:452.267067pt;}
.y226{bottom:452.586099pt;}
.y14b{bottom:455.787067pt;}
.y4b{bottom:458.027067pt;}
.y178{bottom:460.187067pt;}
.y22{bottom:462.267067pt;}
.yb0{bottom:463.626531pt;}
.y100{bottom:463.787067pt;}
.y1d6{bottom:463.867067pt;}
.y225{bottom:464.906155pt;}
.y1aa{bottom:470.507067pt;}
.y14a{bottom:474.187067pt;}
.yba{bottom:474.344667pt;}
.yb5{bottom:474.345603pt;}
.yaf{bottom:474.346539pt;}
.y4a{bottom:476.427067pt;}
.y224{bottom:477.146411pt;}
.y177{bottom:478.587067pt;}
.yaa{bottom:479.306499pt;}
.y21{bottom:480.667067pt;}
.yff{bottom:482.187067pt;}
.yb9{bottom:485.145171pt;}
.yb4{bottom:485.146107pt;}
.yae{bottom:485.147043pt;}
.y1a9{bottom:488.907067pt;}
.y223{bottom:489.386667pt;}
.ya9{bottom:491.546755pt;}
.y149{bottom:492.587067pt;}
.y49{bottom:494.827067pt;}
.yb8{bottom:495.865179pt;}
.yb3{bottom:495.866115pt;}
.yad{bottom:495.867051pt;}
.y176{bottom:496.987067pt;}
.y20{bottom:499.067067pt;}
.yfe{bottom:500.587067pt;}
.y222{bottom:502.333331pt;}
.y21e{bottom:502.334395pt;}
.y21a{bottom:502.335459pt;}
.y216{bottom:502.336523pt;}
.y212{bottom:502.337587pt;}
.y20e{bottom:502.338651pt;}
.y20a{bottom:502.339715pt;}
.y206{bottom:502.340779pt;}
.y202{bottom:502.341843pt;}
.y1fe{bottom:502.342907pt;}
.y1fa{bottom:502.343971pt;}
.y1f6{bottom:502.345035pt;}
.y1f2{bottom:502.346099pt;}
.ya8{bottom:503.866811pt;}
.yb7{bottom:506.585187pt;}
.yb2{bottom:506.586123pt;}
.yac{bottom:506.587059pt;}
.y1a8{bottom:507.307067pt;}
.y148{bottom:510.987067pt;}
.y48{bottom:513.307067pt;}
.y221{bottom:514.573587pt;}
.y21d{bottom:514.574651pt;}
.y219{bottom:514.575715pt;}
.y215{bottom:514.576779pt;}
.y211{bottom:514.577843pt;}
.y20d{bottom:514.578907pt;}
.y209{bottom:514.579971pt;}
.y205{bottom:514.581035pt;}
.y201{bottom:514.582099pt;}
.y1fd{bottom:514.583163pt;}
.y1f9{bottom:514.584227pt;}
.y1f5{bottom:514.585291pt;}
.y1f1{bottom:514.586355pt;}
.y175{bottom:515.387067pt;}
.ya7{bottom:516.107067pt;}
.yb6{bottom:517.305195pt;}
.yb1{bottom:517.306131pt;}
.yab{bottom:517.307067pt;}
.y1f{bottom:517.467067pt;}
.y1d5{bottom:518.907067pt;}
.yfd{bottom:518.987067pt;}
.y1a7{bottom:525.707067pt;}
.y220{bottom:526.893643pt;}
.y21c{bottom:526.894707pt;}
.y218{bottom:526.895771pt;}
.y214{bottom:526.896835pt;}
.y210{bottom:526.897899pt;}
.y20c{bottom:526.898963pt;}
.y208{bottom:526.900027pt;}
.y204{bottom:526.901091pt;}
.y200{bottom:526.902155pt;}
.y1fc{bottom:526.903219pt;}
.y1f8{bottom:526.904283pt;}
.y1f4{bottom:526.905347pt;}
.y1f0{bottom:526.906411pt;}
.ya6{bottom:528.747059pt;}
.y147{bottom:529.387067pt;}
.y174{bottom:533.867067pt;}
.y1e{bottom:535.387067pt;}
.y47{bottom:536.987067pt;}
.yfc{bottom:537.387067pt;}
.y21f{bottom:539.133899pt;}
.y21b{bottom:539.134963pt;}
.y217{bottom:539.136027pt;}
.y213{bottom:539.137091pt;}
.y20f{bottom:539.138155pt;}
.y20b{bottom:539.139219pt;}
.y207{bottom:539.140283pt;}
.y203{bottom:539.141347pt;}
.y1ff{bottom:539.142411pt;}
.y1fb{bottom:539.143475pt;}
.y1f7{bottom:539.144539pt;}
.y1f3{bottom:539.145603pt;}
.y1ef{bottom:539.146667pt;}
.ya5{bottom:539.467067pt;}
.y9d{bottom:541.464611pt;}
.y1a6{bottom:544.107067pt;}
.y146{bottom:547.787067pt;}
.ya4{bottom:550.827059pt;}
.y1ed{bottom:552.106667pt;}
.y9c{bottom:552.184619pt;}
.y91{bottom:552.185555pt;}
.y86{bottom:552.186491pt;}
.y1d{bottom:552.587067pt;}
.y1ee{bottom:553.306659pt;}
.y173{bottom:555.387067pt;}
.yfb{bottom:555.787067pt;}
.ya3{bottom:561.547067pt;}
.y1eb{bottom:562.266835pt;}
.y1a5{bottom:562.587067pt;}
.y9b{bottom:562.904627pt;}
.y90{bottom:562.905563pt;}
.y85{bottom:562.906499pt;}
.y1ec{bottom:564.026667pt;}
.y145{bottom:566.187067pt;}
.y1c{bottom:570.507427pt;}
.ya2{bottom:572.987035pt;}
.y9a{bottom:573.624635pt;}
.y8f{bottom:573.625571pt;}
.y84{bottom:573.626507pt;}
.yfa{bottom:574.107067pt;}
.y1c9{bottom:574.187067pt;}
.y1d4{bottom:574.267067pt;}
.y172{bottom:577.466555pt;}
.y1ea{bottom:577.546667pt;}
.y1a4{bottom:580.426243pt;}
.ya1{bottom:583.707043pt;}
.y99{bottom:584.344643pt;}
.y8e{bottom:584.345579pt;}
.y83{bottom:584.346515pt;}
.y144{bottom:584.587067pt;}
.y7b{bottom:584.665931pt;}
.y1b{bottom:585.867419pt;}
.y171{bottom:589.706811pt;}
.yf9{bottom:592.507067pt;}
.y1c8{bottom:592.587067pt;}
.y1a3{bottom:592.666499pt;}
.y1e9{bottom:593.546667pt;}
.ya0{bottom:594.427051pt;}
.y98{bottom:595.064651pt;}
.y8d{bottom:595.065587pt;}
.y82{bottom:595.066523pt;}
.y7a{bottom:596.985987pt;}
.y1a{bottom:601.147251pt;}
.y170{bottom:601.947067pt;}
.y143{bottom:602.987067pt;}
.y1a2{bottom:604.906755pt;}
.y9f{bottom:605.147059pt;}
.y97{bottom:605.865155pt;}
.y8c{bottom:605.866091pt;}
.y81{bottom:605.867027pt;}
.y79{bottom:609.226243pt;}
.y1e8{bottom:609.946667pt;}
.yf8{bottom:610.987067pt;}
.y16f{bottom:614.827067pt;}
.y9e{bottom:615.867067pt;}
.y19{bottom:616.507243pt;}
.y96{bottom:616.585163pt;}
.y8b{bottom:616.586099pt;}
.y80{bottom:616.587035pt;}
.y1a1{bottom:617.226811pt;}
.y78{bottom:621.466499pt;}
.y142{bottom:621.467067pt;}
.y95{bottom:627.305171pt;}
.y8a{bottom:627.306107pt;}
.y7f{bottom:627.307043pt;}
.y1e7{bottom:627.946667pt;}
.yf7{bottom:629.387067pt;}
.y1a0{bottom:629.467067pt;}
.y18{bottom:631.867235pt;}
.y77{bottom:633.786555pt;}
.y16e{bottom:637.467067pt;}
.y94{bottom:638.025179pt;}
.y89{bottom:638.026115pt;}
.y7e{bottom:638.027051pt;}
.y141{bottom:639.867067pt;}
.y19f{bottom:642.425987pt;}
.y76{bottom:646.026811pt;}
.y17{bottom:647.147075pt;}
.yf6{bottom:647.787067pt;}
.y93{bottom:648.745187pt;}
.y88{bottom:648.746123pt;}
.y7d{bottom:648.747059pt;}
.y19e{bottom:654.666243pt;}
.y75{bottom:658.267067pt;}
.y92{bottom:659.465195pt;}
.y87{bottom:659.466131pt;}
.y7c{bottom:659.467067pt;}
.y16d{bottom:660.187235pt;}
.y13d{bottom:660.427475pt;}
.y16{bottom:662.507067pt;}
.y46{bottom:663.147067pt;}
.y1e6{bottom:665.466667pt;}
.y1d3{bottom:666.107067pt;}
.yf5{bottom:666.187067pt;}
.y19d{bottom:666.906499pt;}
.y13c{bottom:671.147483pt;}
.y74{bottom:671.226811pt;}
.y70{bottom:671.866499pt;}
.y16c{bottom:675.467067pt;}
.y15{bottom:676.667067pt;}
.y140{bottom:677.626755pt;}
.y19c{bottom:679.146755pt;}
.y13b{bottom:681.947051pt;}
.y73{bottom:683.467067pt;}
.y6f{bottom:684.186555pt;}
.y45{bottom:684.267067pt;}
.yf4{bottom:684.587067pt;}
.y14{bottom:687.067243pt;}
.y13f{bottom:689.946811pt;}
.y19b{bottom:691.466811pt;}
.y13a{bottom:692.667059pt;}
.y72{bottom:696.425747pt;}
.y6e{bottom:696.426811pt;}
.y16b{bottom:697.547067pt;}
.y13e{bottom:702.187067pt;}
.y13{bottom:702.347075pt;}
.y44{bottom:702.587067pt;}
.yf3{bottom:702.987067pt;}
.y139{bottom:703.387067pt;}
.y19a{bottom:703.707067pt;}
.y71{bottom:708.666003pt;}
.y6d{bottom:708.667067pt;}
.y16a{bottom:710.427067pt;}
.y199{bottom:716.665987pt;}
.y12{bottom:717.707075pt;}
.y43{bottom:720.987067pt;}
.yf2{bottom:721.387067pt;}
.y132{bottom:721.466907pt;}
.y1d2{bottom:721.467067pt;}
.y6c{bottom:721.626811pt;}
.y198{bottom:728.906243pt;}
.y131{bottom:732.186915pt;}
.y11{bottom:733.067067pt;}
.y6b{bottom:733.867067pt;}
.y42{bottom:739.387067pt;}
.yf1{bottom:739.787067pt;}
.y197{bottom:741.146499pt;}
.y130{bottom:742.906923pt;}
.y1e5{bottom:746.027067pt;}
.y10{bottom:747.227067pt;}
.y6a{bottom:747.627227pt;}
.y196{bottom:753.466555pt;}
.y12f{bottom:753.626931pt;}
.y169{bottom:755.787067pt;}
.yf{bottom:757.547083pt;}
.y41{bottom:757.787067pt;}
.yf0{bottom:758.187067pt;}
.y12e{bottom:764.346939pt;}
.y69{bottom:764.507147pt;}
.y195{bottom:765.706811pt;}
.y1e4{bottom:765.787067pt;}
.ye{bottom:772.907075pt;}
.y12d{bottom:775.147443pt;}
.y40{bottom:776.187067pt;}
.yef{bottom:776.587067pt;}
.y194{bottom:777.947067pt;}
.y168{bottom:778.427075pt;}
.y68{bottom:781.387067pt;}
.y1e3{bottom:784.347067pt;}
.y12c{bottom:785.867451pt;}
.yd{bottom:788.267235pt;}
.y193{bottom:790.906243pt;}
.y167{bottom:793.787067pt;}
.y3f{bottom:794.587067pt;}
.yee{bottom:794.987067pt;}
.y12b{bottom:796.587459pt;}
.y138{bottom:798.426187pt;}
.y67{bottom:798.507067pt;}
.y192{bottom:803.146499pt;}
.yc{bottom:803.547067pt;}
.y1e2{bottom:804.187067pt;}
.y12a{bottom:807.307467pt;}
.y137{bottom:810.666443pt;}
.y3e{bottom:812.987067pt;}
.yed{bottom:813.307067pt;}
.y66{bottom:813.387067pt;}
.y191{bottom:815.466555pt;}
.y166{bottom:816.427067pt;}
.yb{bottom:817.707067pt;}
.y129{bottom:818.027475pt;}
.y1e1{bottom:822.587067pt;}
.y136{bottom:822.986499pt;}
.y190{bottom:827.706811pt;}
.ya{bottom:828.107243pt;}
.y128{bottom:828.747483pt;}
.y3d{bottom:831.387067pt;}
.y65{bottom:831.707067pt;}
.y135{bottom:835.226755pt;}
.y165{bottom:839.067083pt;}
.y127{bottom:839.467491pt;}
.y18f{bottom:839.947067pt;}
.y1e0{bottom:841.145867pt;}
.y9{bottom:843.387075pt;}
.y134{bottom:847.467011pt;}
.y3c{bottom:849.787067pt;}
.y64{bottom:850.107067pt;}
.y1d1{bottom:850.187067pt;}
.y126{bottom:850.267059pt;}
.y18e{bottom:853.707227pt;}
.y164{bottom:854.427075pt;}
.y8{bottom:858.747075pt;}
.y133{bottom:859.787067pt;}
.y125{bottom:860.987067pt;}
.y1df{bottom:861.066467pt;}
.y3b{bottom:868.187067pt;}
.y63{bottom:868.507067pt;}
.y163{bottom:869.787067pt;}
.y18d{bottom:870.587147pt;}
.y7{bottom:874.107067pt;}
.y11c{bottom:879.066523pt;}
.y1de{bottom:880.987067pt;}
.y3a{bottom:886.587067pt;}
.y62{bottom:886.907067pt;}
.y6{bottom:888.267067pt;}
.y11b{bottom:889.786531pt;}
.y162{bottom:892.427067pt;}
.y5{bottom:897.467067pt;}
.y11a{bottom:900.506539pt;}
.y1dd{bottom:900.827067pt;}
.y39{bottom:904.987067pt;}
.y61{bottom:905.307067pt;}
.y18c{bottom:905.387067pt;}
.y124{bottom:905.466499pt;}
.y4{bottom:906.667067pt;}
.y120{bottom:911.225611pt;}
.y119{bottom:911.226547pt;}
.y161{bottom:915.707067pt;}
.y123{bottom:917.706755pt;}
.y3{bottom:918.587339pt;}
.y1dc{bottom:919.305867pt;}
.y11f{bottom:921.945619pt;}
.y118{bottom:921.946555pt;}
.y38{bottom:923.387067pt;}
.y60{bottom:923.707067pt;}
.y122{bottom:929.947011pt;}
.y11e{bottom:932.665627pt;}
.y117{bottom:932.666563pt;}
.y1db{bottom:939.226467pt;}
.y160{bottom:941.067147pt;}
.y37{bottom:941.867067pt;}
.y1d0{bottom:942.027067pt;}
.y5f{bottom:942.107067pt;}
.y121{bottom:942.267067pt;}
.y2{bottom:943.147067pt;}
.y11d{bottom:943.466131pt;}
.y116{bottom:943.467067pt;}
.y15f{bottom:957.947067pt;}
.y1da{bottom:959.147067pt;}
.y36{bottom:960.427067pt;}
.yec{bottom:960.507067pt;}
.y115{bottom:961.787067pt;}
.y1{bottom:965.467067pt;}
.y249{bottom:976.187067pt;}
.y248{bottom:1013.467067pt;}
.h4{height:28.687500pt;}
.h3{height:28.890625pt;}
.hd{height:31.992188pt;}
.hf{height:33.564375pt;}
.h1c{height:33.802031pt;}
.h1b{height:34.167656pt;}
.h14{height:35.617969pt;}
.he{height:38.154375pt;}
.h1{height:38.424531pt;}
.h13{height:38.840156pt;}
.h11{height:39.048750pt;}
.h9{height:42.656250pt;}
.h1d{height:43.335938pt;}
.h5{height:47.908125pt;}
.h1a{height:48.247344pt;}
.h12{height:48.769219pt;}
.hc{height:52.498125pt;}
.h7{height:52.869844pt;}
.h8{height:57.375000pt;}
.h6{height:57.781250pt;}
.h15{height:62.251875pt;}
.h17{height:62.692656pt;}
.hb{height:62.812500pt;}
.ha{height:66.750000pt;}
.h10{height:67.594375pt;}
.h16{height:72.423750pt;}
.h2{height:77.137969pt;}
.h19{height:793.333333pt;}
.h18{height:793.626667pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4f{left:94.547467pt;}
.x7b{left:101.827859pt;}
.x69{left:103.906915pt;}
.x52{left:107.427835pt;}
.x7f{left:109.506747pt;}
.x1{left:113.440000pt;}
.x13{left:117.040000pt;}
.x12{left:120.560000pt;}
.x2c{left:121.840392pt;}
.x31{left:122.959888pt;}
.x25{left:123.920512pt;}
.x18{left:128.079688pt;}
.x2f{left:129.519280pt;}
.x26{left:133.440120pt;}
.x2d{left:136.640632pt;}
.x19{left:139.919880pt;}
.x49{left:141.120000pt;}
.x34{left:146.159712pt;}
.x3c{left:151.200000pt;}
.x17{left:152.640000pt;}
.x45{left:154.160000pt;}
.x4b{left:159.680000pt;}
.x33{left:163.920000pt;}
.x48{left:165.280000pt;}
.x47{left:166.720000pt;}
.x4e{left:168.400000pt;}
.x42{left:172.240000pt;}
.x4a{left:178.960000pt;}
.x43{left:181.200000pt;}
.x32{left:191.920144pt;}
.x10{left:199.440160pt;}
.x4c{left:202.880640pt;}
.xa{left:206.080080pt;}
.x6{left:219.440080pt;}
.x15{left:220.880000pt;}
.x1b{left:253.839168pt;}
.x1c{left:259.118736pt;}
.x3d{left:262.079752pt;}
.x14{left:279.999576pt;}
.x36{left:284.879776pt;}
.x1a{left:291.119600pt;}
.x53{left:294.147195pt;}
.x46{left:303.360472pt;}
.xb{left:307.521224pt;}
.x2e{left:311.040000pt;}
.x37{left:323.999864pt;}
.xd{left:331.920592pt;}
.x7{left:334.159728pt;}
.x35{left:338.239376pt;}
.x51{left:340.467333pt;}
.x11{left:350.560464pt;}
.x41{left:372.800000pt;}
.x16{left:374.719504pt;}
.x44{left:375.999944pt;}
.x4d{left:381.840000pt;}
.x30{left:389.200000pt;}
.x2{left:396.880000pt;}
.x27{left:397.839904pt;}
.x81{left:409.427333pt;}
.x1f{left:413.680000pt;}
.x20{left:430.879560pt;}
.x50{left:434.547333pt;}
.x82{left:435.507333pt;}
.x55{left:438.067333pt;}
.x3e{left:453.120160pt;}
.x7e{left:463.827333pt;}
.x1d{left:464.958048pt;}
.x56{left:469.827333pt;}
.x57{left:478.147437pt;}
.x6a{left:485.266859pt;}
.x7c{left:489.667563pt;}
.x1e{left:491.037752pt;}
.xe{left:492.800000pt;}
.x28{left:493.839808pt;}
.x39{left:495.039992pt;}
.x3a{left:497.440376pt;}
.x21{left:501.359984pt;}
.x22{left:518.800008pt;}
.xc{left:522.560000pt;}
.x38{left:526.719528pt;}
.x29{left:533.519656pt;}
.x58{left:543.107709pt;}
.x6b{left:548.147131pt;}
.x8{left:549.120000pt;}
.x4{left:551.440000pt;}
.x5{left:574.240176pt;}
.xf{left:578.639336pt;}
.x9{left:583.119864pt;}
.x5a{left:589.347045pt;}
.x2a{left:590.879608pt;}
.x59{left:601.027389pt;}
.x6d{left:606.146835pt;}
.x6c{left:609.106883pt;}
.x23{left:610.640232pt;}
.x24{left:615.680400pt;}
.x2b{left:630.399400pt;}
.x3b{left:642.480600pt;}
.x40{left:645.199832pt;}
.x3f{left:650.240000pt;}
.x5c{left:656.706285pt;}
.x5b{left:660.066525pt;}
.x6f{left:665.187131pt;}
.x6e{left:668.147179pt;}
.x3{left:680.320000pt;}
.x54{left:693.027363pt;}
.x5e{left:709.986213pt;}
.x5d{left:712.066005pt;}
.x71{left:717.107139pt;}
.x70{left:720.067187pt;}
.x60{left:761.506461pt;}
.x5f{left:764.066421pt;}
.x73{left:769.186747pt;}
.x72{left:772.146795pt;}
.x61{left:805.826061pt;}
.x62{left:817.425909pt;}
.x80{left:820.709883pt;}
.x75{left:825.106331pt;}
.x74{left:828.066379pt;}
.x64{left:870.946389pt;}
.x63{left:880.866117pt;}
.x77{left:886.145883pt;}
.x76{left:889.105931pt;}
.x66{left:933.986925pt;}
.x78{left:936.706099pt;}
.x7d{left:941.105739pt;}
.x65{left:944.066709pt;}
.x68{left:982.707597pt;}
.x67{left:989.427141pt;}
.x7a{left:994.546203pt;}
.x79{left:997.506251pt;}
}




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