
    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_ef7dc7837d94d830a82043b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_8f5d2f9f3800733bfea33a40.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ff4aa261a75f59daf5291b66.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3fabf7d4d40c6c6af1f5f494.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_da2e54e4bc9ed8dce18eef39.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_4c55644d1d27f8e9a328d11c.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;}
.mc{transform:matrix(0.000000,-0.248988,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248988,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248988,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249318,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249318,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249318,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249874,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249874,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249874,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m1{transform:matrix(0.240713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240713,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.241516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241516,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.241664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241664,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.241864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241864,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250726,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-52.780410px;}
.v4{vertical-align:-42.470853px;}
.v2{vertical-align:-27.354875px;}
.v9{vertical-align:-17.939400px;}
.vb{vertical-align:-12.603492px;}
.va{vertical-align:-10.422000px;}
.v3{vertical-align:-9.131045px;}
.v7{vertical-align:-5.759649px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.360000px;}
.v8{vertical-align:17.063149px;}
.v1{vertical-align:27.386451px;}
.lsa2{letter-spacing:-1.767805px;}
.ls97{letter-spacing:-1.761608px;}
.lsbc{letter-spacing:-1.667437px;}
.lsa7{letter-spacing:-1.541682px;}
.lsb9{letter-spacing:-1.480871px;}
.lsa0{letter-spacing:-1.474980px;}
.ls99{letter-spacing:-1.470994px;}
.lsa4{letter-spacing:-1.470945px;}
.ls9e{letter-spacing:-1.457550px;}
.lsa8{letter-spacing:-1.136852px;}
.lsba{letter-spacing:-1.107738px;}
.lsb5{letter-spacing:-0.955958px;}
.lsb0{letter-spacing:-0.699689px;}
.ls94{letter-spacing:-0.669171px;}
.lsa5{letter-spacing:-0.452046px;}
.ls2b{letter-spacing:-0.388358px;}
.ls58{letter-spacing:-0.382383px;}
.ls5a{letter-spacing:-0.376409px;}
.ls2a{letter-spacing:-0.370434px;}
.ls74{letter-spacing:-0.364459px;}
.ls5d{letter-spacing:-0.358484px;}
.ls37{letter-spacing:-0.352510px;}
.ls6a{letter-spacing:-0.346535px;}
.ls32{letter-spacing:-0.340560px;}
.lsb6{letter-spacing:-0.334585px;}
.ls28{letter-spacing:-0.328611px;}
.ls7b{letter-spacing:-0.322636px;}
.ls76{letter-spacing:-0.316661px;}
.ls22{letter-spacing:-0.304712px;}
.ls33{letter-spacing:-0.298737px;}
.ls57{letter-spacing:-0.292762px;}
.ls78{letter-spacing:-0.286788px;}
.lsc2{letter-spacing:-0.262889px;}
.ls93{letter-spacing:-0.238990px;}
.ls5b{letter-spacing:-0.233015px;}
.ls75{letter-spacing:-0.227040px;}
.ls95{letter-spacing:-0.108599px;}
.ls2f{letter-spacing:-0.077672px;}
.ls23{letter-spacing:-0.071697px;}
.ls9b{letter-spacing:-0.070185px;}
.ls79{letter-spacing:-0.065722px;}
.lsc3{letter-spacing:-0.059747px;}
.lsb3{letter-spacing:-0.049644px;}
.ls62{letter-spacing:-0.043466px;}
.ls5f{letter-spacing:-0.043439px;}
.ls66{letter-spacing:-0.043303px;}
.ls5c{letter-spacing:-0.041823px;}
.ls63{letter-spacing:-0.035848px;}
.lsb4{letter-spacing:-0.029874px;}
.ls69{letter-spacing:-0.023899px;}
.ls25{letter-spacing:-0.017924px;}
.ls5e{letter-spacing:-0.011949px;}
.ls7a{letter-spacing:-0.005975px;}
.ls21{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.003887px;}
.ls87{letter-spacing:0.004036px;}
.ls51{letter-spacing:0.004200px;}
.ls35{letter-spacing:0.005975px;}
.ls55{letter-spacing:0.006709px;}
.ls7e{letter-spacing:0.007774px;}
.ls83{letter-spacing:0.008077px;}
.ls19{letter-spacing:0.011949px;}
.ls65{letter-spacing:0.012372px;}
.lsb2{letter-spacing:0.012411px;}
.ls2e{letter-spacing:0.017924px;}
.ls64{letter-spacing:0.023323px;}
.lsbe{letter-spacing:0.023899px;}
.ls48{letter-spacing:0.029874px;}
.ls27{letter-spacing:0.035848px;}
.ls18{letter-spacing:0.041823px;}
.ls20{letter-spacing:0.047798px;}
.ls1e{letter-spacing:0.053773px;}
.ls59{letter-spacing:0.059747px;}
.ls53{letter-spacing:0.061927px;}
.ls26{letter-spacing:0.065722px;}
.ls5{letter-spacing:0.071697px;}
.ls30{letter-spacing:0.077672px;}
.lsad{letter-spacing:0.081581px;}
.ls12{letter-spacing:0.083646px;}
.ls31{letter-spacing:0.089621px;}
.lsac{letter-spacing:0.093722px;}
.ls7c{letter-spacing:0.094369px;}
.ls3b{letter-spacing:0.095596px;}
.ls71{letter-spacing:0.101571px;}
.ls4e{letter-spacing:0.107545px;}
.lsae{letter-spacing:0.113140px;}
.ls1{letter-spacing:0.113520px;}
.ls11{letter-spacing:0.119495px;}
.ls2{letter-spacing:0.125470px;}
.lsb{letter-spacing:0.131444px;}
.ls13{letter-spacing:0.137419px;}
.ls0{letter-spacing:0.143394px;}
.ls7f{letter-spacing:0.145315px;}
.lsa{letter-spacing:0.149369px;}
.lsf{letter-spacing:0.155343px;}
.ls17{letter-spacing:0.161318px;}
.lsc{letter-spacing:0.167293px;}
.ls3d{letter-spacing:0.173267px;}
.ls88{letter-spacing:0.174906px;}
.ls3{letter-spacing:0.179242px;}
.ls8{letter-spacing:0.185217px;}
.lsd{letter-spacing:0.191192px;}
.ls84{letter-spacing:0.192397px;}
.ls46{letter-spacing:0.197166px;}
.ls85{letter-spacing:0.198227px;}
.ls6e{letter-spacing:0.209116px;}
.ls6b{letter-spacing:0.215091px;}
.ls14{letter-spacing:0.221065px;}
.ls9{letter-spacing:0.227040px;}
.ls6{letter-spacing:0.233015px;}
.ls2c{letter-spacing:0.238990px;}
.ls4f{letter-spacing:0.239202px;}
.ls68{letter-spacing:0.244964px;}
.ls2d{letter-spacing:0.250939px;}
.lsaf{letter-spacing:0.255716px;}
.ls1a{letter-spacing:0.256914px;}
.lse{letter-spacing:0.262889px;}
.ls72{letter-spacing:0.267542px;}
.ls7{letter-spacing:0.268863px;}
.ls36{letter-spacing:0.274838px;}
.ls34{letter-spacing:0.280813px;}
.ls70{letter-spacing:0.286788px;}
.ls24{letter-spacing:0.292762px;}
.ls61{letter-spacing:0.298737px;}
.ls60{letter-spacing:0.304712px;}
.lsb1{letter-spacing:0.310686px;}
.ls15{letter-spacing:0.316061px;}
.ls3a{letter-spacing:0.316661px;}
.lsc0{letter-spacing:0.322636px;}
.lsbf{letter-spacing:0.328611px;}
.ls7d{letter-spacing:0.334585px;}
.ls50{letter-spacing:0.339742px;}
.lsc1{letter-spacing:0.340560px;}
.ls54{letter-spacing:0.352510px;}
.ls10{letter-spacing:0.358484px;}
.ls4b{letter-spacing:0.364459px;}
.ls52{letter-spacing:0.389648px;}
.lsaa{letter-spacing:0.404140px;}
.ls91{letter-spacing:0.407952px;}
.ls77{letter-spacing:0.412257px;}
.ls8e{letter-spacing:0.715385px;}
.ls8f{letter-spacing:0.720931px;}
.ls8c{letter-spacing:0.726476px;}
.ls1d{letter-spacing:0.830489px;}
.ls1f{letter-spacing:0.896211px;}
.ls44{letter-spacing:0.908160px;}
.ls56{letter-spacing:0.920110px;}
.ls1b{letter-spacing:0.955958px;}
.ls38{letter-spacing:0.961933px;}
.ls6f{letter-spacing:0.979857px;}
.ls80{letter-spacing:0.985832px;}
.ls3f{letter-spacing:0.997782px;}
.ls9a{letter-spacing:1.031945px;}
.lsbb{letter-spacing:1.032466px;}
.ls9c{letter-spacing:1.475784px;}
.lsa9{letter-spacing:1.541682px;}
.lsa6{letter-spacing:1.544524px;}
.ls8d{letter-spacing:1.553372px;}
.ls90{letter-spacing:1.557072px;}
.lsb7{letter-spacing:2.241290px;}
.ls9f{letter-spacing:2.244194px;}
.ls8a{letter-spacing:2.244535px;}
.ls81{letter-spacing:2.244627px;}
.ls9d{letter-spacing:2.740194px;}
.ls86{letter-spacing:2.752885px;}
.ls89{letter-spacing:2.783728px;}
.lsbd{letter-spacing:3.976196px;}
.ls98{letter-spacing:3.978201px;}
.lsa3{letter-spacing:3.992196px;}
.ls29{letter-spacing:4.498979px;}
.ls4{letter-spacing:10.072200px;}
.lsb8{letter-spacing:11.981061px;}
.ls8b{letter-spacing:13.920160px;}
.ls82{letter-spacing:13.920625px;}
.ls67{letter-spacing:16.012303px;}
.ls47{letter-spacing:16.669525px;}
.ls49{letter-spacing:16.789019px;}
.ls42{letter-spacing:17.619508px;}
.ls41{letter-spacing:17.625483px;}
.ls43{letter-spacing:18.222957px;}
.ls92{letter-spacing:18.748734px;}
.ls6c{letter-spacing:19.059421px;}
.ls6d{letter-spacing:19.420200px;}
.ls3c{letter-spacing:22.524770px;}
.ls4c{letter-spacing:23.540476px;}
.ls4a{letter-spacing:23.958707px;}
.ls45{letter-spacing:24.741398px;}
.lsab{letter-spacing:25.386670px;}
.ls4d{letter-spacing:26.288856px;}
.ls40{letter-spacing:28.320268px;}
.ls3e{letter-spacing:30.471174px;}
.ls1c{letter-spacing:34.772987px;}
.ls39{letter-spacing:35.489956px;}
.lsa1{letter-spacing:376.323918px;}
.ls96{letter-spacing:376.345240px;}
.ls73{letter-spacing:623.750907px;}
.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;}
}
.ws11f{word-spacing:-390.920740px;}
.ws12d{word-spacing:-390.898818px;}
.wsa{word-spacing:-64.246379px;}
.ws5{word-spacing:-60.040162px;}
.wsb{word-spacing:-60.010289px;}
.ws7{word-spacing:-59.926642px;}
.ws9{word-spacing:-59.896769px;}
.ws6{word-spacing:-59.729476px;}
.ws8{word-spacing:-59.418789px;}
.ws121{word-spacing:-37.922940px;}
.ws12f{word-spacing:-37.921672px;}
.ws11d{word-spacing:-37.475509px;}
.ws52{word-spacing:-34.068524px;}
.ws15a{word-spacing:-33.757281px;}
.ws15d{word-spacing:-33.112009px;}
.ws58{word-spacing:-32.801323px;}
.ws12e{word-spacing:-32.136593px;}
.ws120{word-spacing:-32.023939px;}
.ws166{word-spacing:-32.007798px;}
.ws136{word-spacing:-29.308602px;}
.ws163{word-spacing:-26.556561px;}
.ws130{word-spacing:-17.938350px;}
.ws11b{word-spacing:-17.065350px;}
.ws11e{word-spacing:-16.820127px;}
.ws12c{word-spacing:-16.819435px;}
.ws125{word-spacing:-16.058634px;}
.ws165{word-spacing:-15.615316px;}
.ws122{word-spacing:-15.607445px;}
.ws4e{word-spacing:-15.513900px;}
.ws4f{word-spacing:-15.470461px;}
.ws57{word-spacing:-15.465450px;}
.ws15f{word-spacing:-15.464256px;}
.wsc{word-spacing:-15.295334px;}
.ws1a2{word-spacing:-15.277410px;}
.ws4c{word-spacing:-15.253511px;}
.wsbd{word-spacing:-15.235587px;}
.ws4b{word-spacing:-15.205713px;}
.ws53{word-spacing:-15.175840px;}
.ws5a{word-spacing:-15.128042px;}
.ws15b{word-spacing:-15.092193px;}
.ws162{word-spacing:-15.032446px;}
.wsbf{word-spacing:-14.954774px;}
.wsd{word-spacing:-14.936850px;}
.ws4{word-spacing:-14.865153px;}
.ws19d{word-spacing:-14.859178px;}
.ws127{word-spacing:-14.582850px;}
.ws4d{word-spacing:-14.578366px;}
.ws161{word-spacing:-13.980892px;}
.ws133{word-spacing:-13.902000px;}
.ws131{word-spacing:-13.864050px;}
.ws123{word-spacing:-13.426965px;}
.ws129{word-spacing:-13.117950px;}
.ws12b{word-spacing:-13.099920px;}
.ws12a{word-spacing:-12.334994px;}
.ws135{word-spacing:-12.322368px;}
.ws134{word-spacing:-11.102224px;}
.ws138{word-spacing:-9.939552px;}
.ws118{word-spacing:-9.725674px;}
.wsc0{word-spacing:-9.721787px;}
.ws1{word-spacing:-9.717900px;}
.ws159{word-spacing:-9.018211px;}
.ws19b{word-spacing:-8.337186px;}
.ws155{word-spacing:-7.847449px;}
.ws154{word-spacing:-7.841619px;}
.ws157{word-spacing:-4.032541px;}
.ws158{word-spacing:-3.466013px;}
.ws137{word-spacing:-2.243171px;}
.ws128{word-spacing:-1.093297px;}
.ws1a5{word-spacing:-1.081428px;}
.ws1a0{word-spacing:-1.075453px;}
.ws19f{word-spacing:-0.507853px;}
.wsbe{word-spacing:-0.466030px;}
.ws19e{word-spacing:-0.358484px;}
.ws3{word-spacing:-0.161318px;}
.ws143{word-spacing:-0.155343px;}
.ws1ab{word-spacing:-0.149369px;}
.ws1bd{word-spacing:-0.143394px;}
.ws1bf{word-spacing:-0.137419px;}
.ws150{word-spacing:-0.125470px;}
.ws194{word-spacing:-0.107545px;}
.ws33{word-spacing:-0.083646px;}
.ws144{word-spacing:-0.077672px;}
.ws107{word-spacing:-0.071697px;}
.ws178{word-spacing:-0.065722px;}
.wsd1{word-spacing:-0.059747px;}
.ws19{word-spacing:-0.053773px;}
.ws14{word-spacing:-0.047798px;}
.wsa5{word-spacing:-0.041823px;}
.wsc7{word-spacing:-0.035848px;}
.ws1c5{word-spacing:-0.017924px;}
.ws12{word-spacing:0.000000px;}
.ws70{word-spacing:0.005975px;}
.wsd9{word-spacing:0.011949px;}
.ws34{word-spacing:0.017924px;}
.wsf{word-spacing:0.023899px;}
.wsb9{word-spacing:0.029874px;}
.ws11{word-spacing:0.035848px;}
.ws7d{word-spacing:0.041823px;}
.ws23{word-spacing:0.053773px;}
.ws10{word-spacing:0.065722px;}
.ws1e7{word-spacing:0.071697px;}
.ws1d5{word-spacing:0.077672px;}
.ws38{word-spacing:0.089621px;}
.ws25{word-spacing:0.095596px;}
.ws35{word-spacing:0.101571px;}
.ws18{word-spacing:0.113520px;}
.ws2{word-spacing:0.125470px;}
.ws103{word-spacing:0.137419px;}
.ws193{word-spacing:0.149369px;}
.ws86{word-spacing:0.161318px;}
.ws189{word-spacing:0.167293px;}
.ws152{word-spacing:0.173267px;}
.ws1d0{word-spacing:0.179242px;}
.ws195{word-spacing:0.197166px;}
.ws171{word-spacing:0.221065px;}
.ws0{word-spacing:0.256914px;}
.wsc8{word-spacing:0.406282px;}
.ws14f{word-spacing:0.418232px;}
.ws1b6{word-spacing:0.442131px;}
.ws1aa{word-spacing:0.477979px;}
.ws13{word-spacing:0.483954px;}
.wsd8{word-spacing:0.495903px;}
.ws106{word-spacing:0.537727px;}
.ws24{word-spacing:0.549676px;}
.ws196{word-spacing:0.627348px;}
.ws82{word-spacing:0.633322px;}
.ws14d{word-spacing:0.752817px;}
.ws17b{word-spacing:0.758792px;}
.ws14e{word-spacing:0.770741px;}
.ws44{word-spacing:0.842438px;}
.ws81{word-spacing:0.866337px;}
.ws43{word-spacing:0.890236px;}
.wsad{word-spacing:0.920110px;}
.ws1e3{word-spacing:0.926085px;}
.ws1c1{word-spacing:0.955958px;}
.ws15c{word-spacing:1.021681px;}
.ws1a1{word-spacing:1.075453px;}
.ws47{word-spacing:1.338342px;}
.ws8a{word-spacing:1.416013px;}
.wsc4{word-spacing:1.433938px;}
.ws1b3{word-spacing:1.481736px;}
.ws117{word-spacing:1.493685px;}
.ws1a3{word-spacing:1.876068px;}
.ws1ce{word-spacing:2.025437px;}
.ws77{word-spacing:2.079210px;}
.ws7e{word-spacing:2.132982px;}
.wsd3{word-spacing:2.144932px;}
.ws26{word-spacing:2.150906px;}
.ws27{word-spacing:2.162856px;}
.ws4a{word-spacing:2.168831px;}
.ws16{word-spacing:2.180780px;}
.ws15{word-spacing:2.186755px;}
.ws1cd{word-spacing:2.276376px;}
.ws91{word-spacing:2.288325px;}
.ws17d{word-spacing:2.342098px;}
.ws1c3{word-spacing:2.360022px;}
.ws49{word-spacing:2.628886px;}
.wsfd{word-spacing:2.760330px;}
.ws1c8{word-spacing:2.772279px;}
.ws148{word-spacing:2.778254px;}
.ws1d1{word-spacing:2.784229px;}
.wsd4{word-spacing:2.802153px;}
.ws64{word-spacing:2.843976px;}
.ws1dc{word-spacing:2.849951px;}
.wsba{word-spacing:2.879825px;}
.ws17{word-spacing:2.975421px;}
.wsab{word-spacing:3.005294px;}
.ws1a{word-spacing:3.011269px;}
.wsa4{word-spacing:3.017244px;}
.wsc2{word-spacing:3.029193px;}
.ws32{word-spacing:3.035168px;}
.ws97{word-spacing:3.041143px;}
.ws16d{word-spacing:3.059067px;}
.ws13b{word-spacing:3.429501px;}
.wsb5{word-spacing:3.459374px;}
.ws1bc{word-spacing:3.477299px;}
.wsb0{word-spacing:3.483273px;}
.wseb{word-spacing:3.495223px;}
.ws88{word-spacing:3.507172px;}
.ws100{word-spacing:3.513147px;}
.ws1c4{word-spacing:3.519122px;}
.ws1d{word-spacing:3.537046px;}
.ws65{word-spacing:3.572895px;}
.ws1c{word-spacing:3.578869px;}
.ws13c{word-spacing:3.602768px;}
.wsdb{word-spacing:3.608743px;}
.wscc{word-spacing:3.614718px;}
.ws39{word-spacing:3.620692px;}
.ws8f{word-spacing:3.626667px;}
.wscb{word-spacing:3.716288px;}
.wse0{word-spacing:3.722263px;}
.wsca{word-spacing:4.206217px;}
.ws1b{word-spacing:4.212192px;}
.ws13e{word-spacing:4.236091px;}
.ws146{word-spacing:4.283889px;}
.ws141{word-spacing:4.295838px;}
.ws60{word-spacing:4.319737px;}
.ws30{word-spacing:4.325712px;}
.wsc3{word-spacing:4.331687px;}
.ws2d{word-spacing:4.343636px;}
.ws1e{word-spacing:4.349611px;}
.ws190{word-spacing:4.355585px;}
.ws3a{word-spacing:4.397409px;}
.ws41{word-spacing:4.403383px;}
.ws18f{word-spacing:4.433257px;}
.ws29{word-spacing:4.439232px;}
.ws1da{word-spacing:4.457156px;}
.ws2c{word-spacing:4.463131px;}
.ws1ae{word-spacing:4.487030px;}
.ws1af{word-spacing:4.839539px;}
.ws2a{word-spacing:4.959034px;}
.ws20{word-spacing:5.006832px;}
.ws13a{word-spacing:5.012807px;}
.ws1f{word-spacing:5.030731px;}
.wsec{word-spacing:5.036706px;}
.ws6e{word-spacing:5.072554px;}
.wsff{word-spacing:5.078529px;}
.ws98{word-spacing:5.084504px;}
.ws153{word-spacing:5.144829px;}
.ws156{word-spacing:5.162928px;}
.ws13f{word-spacing:5.192049px;}
.ws6f{word-spacing:5.198024px;}
.ws31{word-spacing:5.215948px;}
.ws59{word-spacing:5.427675px;}
.ws28{word-spacing:5.586382px;}
.ws126{word-spacing:5.586901px;}
.wsd6{word-spacing:5.658079px;}
.ws108{word-spacing:5.670028px;}
.wsd5{word-spacing:5.693927px;}
.wsaa{word-spacing:5.717826px;}
.ws79{word-spacing:5.735750px;}
.ws66{word-spacing:5.747700px;}
.ws92{word-spacing:5.807447px;}
.wsf8{word-spacing:5.914993px;}
.wsa9{word-spacing:5.938892px;}
.ws90{word-spacing:5.956816px;}
.ws11a{word-spacing:6.131796px;}
.ws73{word-spacing:6.297376px;}
.ws75{word-spacing:6.315300px;}
.ws2b{word-spacing:6.381022px;}
.wsf3{word-spacing:6.452719px;}
.ws6d{word-spacing:6.476618px;}
.ws42{word-spacing:6.482593px;}
.ws17e{word-spacing:6.500517px;}
.ws2e{word-spacing:6.506492px;}
.ws183{word-spacing:6.512467px;}
.ws179{word-spacing:6.524416px;}
.ws69{word-spacing:6.536366px;}
.ws1bb{word-spacing:6.584163px;}
.ws16c{word-spacing:6.637936px;}
.ws2f{word-spacing:6.709633px;}
.ws198{word-spacing:6.996421px;}
.ws1a8{word-spacing:7.092016px;}
.ws10c{word-spacing:7.097991px;}
.ws1a7{word-spacing:7.109941px;}
.wsd7{word-spacing:7.169688px;}
.ws114{word-spacing:7.277233px;}
.ws116{word-spacing:7.313082px;}
.ws10d{word-spacing:7.331006px;}
.ws113{word-spacing:7.444526px;}
.ws68{word-spacing:7.671566px;}
.ws18b{word-spacing:7.707415px;}
.wsfa{word-spacing:7.820935px;}
.ws147{word-spacing:7.844834px;}
.wsfc{word-spacing:7.928480px;}
.ws9b{word-spacing:7.940429px;}
.wsbb{word-spacing:7.952379px;}
.ws21{word-spacing:7.958354px;}
.ws22{word-spacing:7.964328px;}
.wse4{word-spacing:7.970303px;}
.ws169{word-spacing:7.976278px;}
.wsc9{word-spacing:8.071874px;}
.ws18c{word-spacing:8.089798px;}
.ws95{word-spacing:8.095773px;}
.ws115{word-spacing:8.107722px;}
.ws48{word-spacing:8.448282px;}
.ws1c6{word-spacing:8.484131px;}
.ws7f{word-spacing:8.567777px;}
.wsf2{word-spacing:8.609600px;}
.ws80{word-spacing:8.645449px;}
.wsb1{word-spacing:8.693247px;}
.ws13d{word-spacing:8.705196px;}
.ws16a{word-spacing:8.764944px;}
.wse9{word-spacing:8.836640px;}
.ws16b{word-spacing:8.878464px;}
.ws83{word-spacing:9.195125px;}
.wse6{word-spacing:9.296695px;}
.wsf9{word-spacing:9.332544px;}
.ws1d7{word-spacing:9.344493px;}
.ws139{word-spacing:9.374367px;}
.ws175{word-spacing:9.386317px;}
.wsb4{word-spacing:9.392291px;}
.ws181{word-spacing:9.428140px;}
.wsf6{word-spacing:9.446064px;}
.wsf7{word-spacing:9.517761px;}
.wsd0{word-spacing:9.523736px;}
.ws84{word-spacing:9.595432px;}
.ws176{word-spacing:9.930018px;}
.ws111{word-spacing:10.025614px;}
.ws7b{word-spacing:10.109260px;}
.wsdc{word-spacing:10.115235px;}
.wscd{word-spacing:10.133159px;}
.ws1c0{word-spacing:10.270578px;}
.ws96{word-spacing:10.288502px;}
.wse{word-spacing:10.449075px;}
.ws1b4{word-spacing:10.694785px;}
.ws1b5{word-spacing:10.784406px;}
.wsd2{word-spacing:10.826229px;}
.ws17c{word-spacing:10.880002px;}
.ws168{word-spacing:10.897926px;}
.ws87{word-spacing:10.939749px;}
.ws1a6{word-spacing:10.969623px;}
.ws3b{word-spacing:11.334082px;}
.ws167{word-spacing:11.411753px;}
.ws151{word-spacing:11.417728px;}
.ws63{word-spacing:11.441627px;}
.ws14c{word-spacing:11.447602px;}
.ws149{word-spacing:11.459551px;}
.wsa2{word-spacing:11.579046px;}
.ws5c{word-spacing:11.674642px;}
.wse2{word-spacing:11.698541px;}
.wse1{word-spacing:11.734389px;}
.wsb8{word-spacing:12.057025px;}
.ws17a{word-spacing:12.140672px;}
.ws6a{word-spacing:12.254192px;}
.ws71{word-spacing:12.307964px;}
.ws105{word-spacing:12.313939px;}
.ws62{word-spacing:12.331863px;}
.ws1c9{word-spacing:12.869590px;}
.ws1cb{word-spacing:12.905438px;}
.ws10b{word-spacing:12.953236px;}
.ws7c{word-spacing:12.959211px;}
.wsfe{word-spacing:12.983110px;}
.wsf4{word-spacing:13.001034px;}
.wsa1{word-spacing:13.126504px;}
.wsf5{word-spacing:13.180276px;}
.wsb6{word-spacing:13.490963px;}
.ws186{word-spacing:13.586559px;}
.wsdf{word-spacing:13.700079px;}
.ws187{word-spacing:13.718003px;}
.wsde{word-spacing:13.825548px;}
.ws19c{word-spacing:14.027461px;}
.ws76{word-spacing:14.094412px;}
.ws1e6{word-spacing:14.321452px;}
.ws72{word-spacing:14.446921px;}
.ws1ca{word-spacing:14.584340px;}
.ws1a4{word-spacing:14.656037px;}
.ws15e{word-spacing:14.805675px;}
.ws9a{word-spacing:14.877103px;}
.wse7{word-spacing:15.026471px;}
.ws1d9{word-spacing:15.062320px;}
.wse8{word-spacing:15.068294px;}
.ws109{word-spacing:15.122067px;}
.ws140{word-spacing:15.157915px;}
.ws104{word-spacing:15.163890px;}
.ws74{word-spacing:15.235587px;}
.ws10a{word-spacing:15.247536px;}
.wsac{word-spacing:15.289360px;}
.ws1b0{word-spacing:15.623945px;}
.ws18d{word-spacing:15.767339px;}
.ws1ad{word-spacing:16.520156px;}
.ws1b7{word-spacing:16.532106px;}
.ws1ac{word-spacing:16.561979px;}
.ws6c{word-spacing:16.645626px;}
.ws78{word-spacing:16.651600px;}
.ws50{word-spacing:16.661929px;}
.ws6b{word-spacing:16.663550px;}
.wsfb{word-spacing:16.729272px;}
.ws18e{word-spacing:16.753171px;}
.ws142{word-spacing:17.141529px;}
.ws170{word-spacing:17.428317px;}
.ws1b2{word-spacing:17.446241px;}
.ws172{word-spacing:17.476115px;}
.ws119{word-spacing:17.673075px;}
.ws1b1{word-spacing:17.972018px;}
.ws102{word-spacing:18.103462px;}
.wsea{word-spacing:18.151260px;}
.wsc5{word-spacing:18.527669px;}
.ws37{word-spacing:18.533643px;}
.ws3e{word-spacing:18.599366px;}
.wsf0{word-spacing:18.629239px;}
.wsf1{word-spacing:18.724835px;}
.ws14a{word-spacing:18.772633px;}
.wsef{word-spacing:19.238663px;}
.wsc6{word-spacing:19.334259px;}
.ws8b{word-spacing:19.364132px;}
.ws110{word-spacing:19.435829px;}
.ws1b8{word-spacing:19.447779px;}
.ws10f{word-spacing:19.453753px;}
.ws85{word-spacing:19.483627px;}
.ws182{word-spacing:19.519476px;}
.ws3f{word-spacing:19.525450px;}
.ws101{word-spacing:19.883935px;}
.ws5e{word-spacing:19.997455px;}
.ws188{word-spacing:20.128899px;}
.ws5d{word-spacing:20.134874px;}
.ws185{word-spacing:20.146823px;}
.ws94{word-spacing:20.164748px;}
.ws1cc{word-spacing:20.194621px;}
.wsa7{word-spacing:20.272293px;}
.wsa0{word-spacing:20.302167px;}
.ws1c7{word-spacing:20.678575px;}
.ws1e1{word-spacing:20.839893px;}
.ws40{word-spacing:20.905615px;}
.ws14b{word-spacing:20.911590px;}
.ws1b9{word-spacing:20.917565px;}
.wsa3{word-spacing:21.371645px;}
.ws1df{word-spacing:21.592710px;}
.ws18a{word-spacing:21.610635px;}
.ws9f{word-spacing:21.616609px;}
.ws16e{word-spacing:21.682331px;}
.ws8e{word-spacing:21.688306px;}
.ws16f{word-spacing:21.694281px;}
.ws1d4{word-spacing:22.781684px;}
.ws1e0{word-spacing:22.841431px;}
.ws9d{word-spacing:23.020673px;}
.ws184{word-spacing:23.068471px;}
.ws1d6{word-spacing:23.086395px;}
.wsda{word-spacing:23.092370px;}
.wsbc{word-spacing:23.140168px;}
.wscf{word-spacing:23.713743px;}
.ws8c{word-spacing:23.833238px;}
.ws7a{word-spacing:23.928834px;}
.ws55{word-spacing:24.042088px;}
.ws191{word-spacing:24.287318px;}
.ws145{word-spacing:24.508383px;}
.ws1e5{word-spacing:24.538257px;}
.ws9e{word-spacing:25.147681px;}
.wsdd{word-spacing:25.249251px;}
.ws17f{word-spacing:25.392645px;}
.ws1be{word-spacing:25.410569px;}
.ws180{word-spacing:26.073765px;}
.wsb3{word-spacing:26.545770px;}
.ws1a9{word-spacing:26.653315px;}
.ws112{word-spacing:26.736962px;}
.ws5b{word-spacing:26.808658px;}
.wsb2{word-spacing:26.862431px;}
.ws192{word-spacing:27.418082px;}
.ws1c2{word-spacing:27.483804px;}
.ws3c{word-spacing:27.501728px;}
.ws67{word-spacing:27.507703px;}
.ws3d{word-spacing:27.842288px;}
.wsed{word-spacing:28.696676px;}
.wsee{word-spacing:28.732525px;}
.ws61{word-spacing:28.822146px;}
.ws1cf{word-spacing:29.449493px;}
.ws10e{word-spacing:30.268033px;}
.ws1ba{word-spacing:30.871482px;}
.ws1dd{word-spacing:30.985002px;}
.wsa8{word-spacing:31.008901px;}
.wse5{word-spacing:31.140345px;}
.wse3{word-spacing:33.058236px;}
.ws1de{word-spacing:33.231504px;}
.ws8d{word-spacing:35.065749px;}
.wsa6{word-spacing:36.499687px;}
.wsaf{word-spacing:37.216655px;}
.ws1d3{word-spacing:38.118841px;}
.ws197{word-spacing:40.944893px;}
.ws1db{word-spacing:41.076338px;}
.ws9c{word-spacing:41.715635px;}
.ws177{word-spacing:41.865003px;}
.wsae{word-spacing:41.906826px;}
.ws36{word-spacing:42.020346px;}
.wsce{word-spacing:43.191395px;}
.ws1e2{word-spacing:44.039809px;}
.ws19a{word-spacing:44.589485px;}
.wsb7{word-spacing:46.728442px;}
.ws5f{word-spacing:47.517107px;}
.ws1d2{word-spacing:48.389419px;}
.ws174{word-spacing:50.355109px;}
.ws173{word-spacing:51.884642px;}
.ws1e4{word-spacing:52.488091px;}
.ws99{word-spacing:54.716669px;}
.ws1d8{word-spacing:56.198404px;}
.ws89{word-spacing:61.235110px;}
.ws93{word-spacing:61.253034px;}
.ws46{word-spacing:68.452596px;}
.ws45{word-spacing:68.578066px;}
.ws54{word-spacing:93.992596px;}
.ws199{word-spacing:94.191776px;}
.ws51{word-spacing:101.212684px;}
.ws11c{word-spacing:138.024551px;}
.ws164{word-spacing:164.295036px;}
.ws56{word-spacing:175.273038px;}
.ws124{word-spacing:256.144007px;}
.ws160{word-spacing:318.407284px;}
.ws132{word-spacing:366.859400px;}
.wsc1{word-spacing:439.842435px;}
._29{margin-left:-374.100613px;}
._35{margin-left:-227.408952px;}
._11{margin-left:-210.380895px;}
._34{margin-left:-202.065445px;}
._33{margin-left:-190.634803px;}
._28{margin-left:-163.950231px;}
._f{margin-left:-152.731243px;}
._25{margin-left:-144.516210px;}
._12{margin-left:-118.619279px;}
._26{margin-left:-115.416375px;}
._31{margin-left:-108.597300px;}
._15{margin-left:-83.451568px;}
._16{margin-left:-77.141665px;}
._27{margin-left:-68.691447px;}
._d{margin-left:-56.818107px;}
._10{margin-left:-53.100977px;}
._e{margin-left:-49.638274px;}
._32{margin-left:-46.541700px;}
._2b{margin-left:-44.851729px;}
._1c{margin-left:-41.793306px;}
._2a{margin-left:-26.918033px;}
._21{margin-left:-19.137092px;}
._22{margin-left:-17.756927px;}
._19{margin-left:-16.370788px;}
._1a{margin-left:-15.038421px;}
._38{margin-left:-13.981742px;}
._1f{margin-left:-10.360199px;}
._2f{margin-left:-8.373089px;}
._5{margin-left:-5.078529px;}
._6{margin-left:-3.817859px;}
._7{margin-left:-2.730456px;}
._1{margin-left:-1.649028px;}
._0{width:1.081428px;}
._2{width:2.551214px;}
._2c{width:4.546634px;}
._3{width:5.616256px;}
._4{width:6.697684px;}
._8{width:7.952379px;}
._17{width:11.770238px;}
._c{width:13.012984px;}
._1b{width:14.321452px;}
._9{width:16.603802px;}
._a{width:18.264780px;}
._b{width:19.465703px;}
._13{width:23.462804px;}
._30{width:24.926615px;}
._1e{width:26.297953px;}
._3c{width:28.248571px;}
._1d{width:29.359872px;}
._23{width:31.331537px;}
._14{width:32.849121px;}
._20{width:34.229285px;}
._24{width:49.805433px;}
._3b{width:57.554670px;}
._37{width:58.648048px;}
._36{width:65.602645px;}
._18{width:77.450555px;}
._39{width:186.012450px;}
._3a{width:196.497644px;}
._2e{width:286.420235px;}
._2d{width:304.353931px;}
.fc2{color:transparent;}
.fc1{color:rgb(34,30,31);}
.fc0{color:rgb(35,31,32);}
.fs16{font-size:38.126400px;}
.fs15{font-size:38.230800px;}
.fs1{font-size:38.871600px;}
.fse{font-size:40.363200px;}
.fsd{font-size:40.383600px;}
.fs6{font-size:43.439400px;}
.fsc{font-size:53.988600px;}
.fs13{font-size:55.456200px;}
.fs14{font-size:55.608000px;}
.fs10{font-size:58.299600px;}
.fs8{font-size:58.302000px;}
.fs9{font-size:58.331400px;}
.fs11{font-size:58.536600px;}
.fs0{font-size:59.747400px;}
.fs5{font-size:61.861800px;}
.fs2{font-size:62.055600px;}
.fs3{font-size:62.094600px;}
.fs4{font-size:62.979289px;}
.fsb{font-size:67.271400px;}
.fs7{font-size:68.261400px;}
.fs12{font-size:71.753400px;}
.fsa{font-size:71.755800px;}
.fsf{font-size:89.315400px;}
.y0{bottom:0.000000px;}
.y103{bottom:2.698500px;}
.y118{bottom:116.242436px;}
.y32{bottom:116.536084px;}
.y2a{bottom:116.567451px;}
.yff{bottom:118.439302px;}
.y195{bottom:119.652311px;}
.ycb{bottom:119.915232px;}
.ya6{bottom:120.039350px;}
.y117{bottom:133.525865px;}
.y31{bottom:134.893473px;}
.y29{bottom:134.924840px;}
.yfe{bottom:136.241458px;}
.yca{bottom:137.017926px;}
.ya5{bottom:137.321286px;}
.y194{bottom:137.651215px;}
.y1f2{bottom:142.889893px;}
.y128{bottom:145.057909px;}
.y116{bottom:150.807801px;}
.y30{bottom:152.175408px;}
.y28{bottom:153.461471px;}
.y127{bottom:154.173063px;}
.yfd{bottom:154.240362px;}
.ya4{bottom:154.603221px;}
.yc9{bottom:155.554556px;}
.y193{bottom:155.650119px;}
.y6a{bottom:156.158850px;}
.y12a{bottom:158.035200px;}
.y1f1{bottom:160.171829px;}
.y6d{bottom:162.442462px;}
.y126{bottom:166.099350px;}
.y6e{bottom:168.832350px;}
.y129{bottom:169.249749px;}
.y2f{bottom:169.278101px;}
.y6b{bottom:169.304483px;}
.y27{bottom:170.562670px;}
.ya3{bottom:171.885157px;}
.yfc{bottom:172.240760px;}
.yc8{bottom:172.837986px;}
.y192{bottom:173.649023px;}
.y1f0{bottom:177.453764px;}
.y6c{bottom:179.889036px;}
.y115{bottom:185.370178px;}
.y2e{bottom:187.635490px;}
.y26{bottom:188.921553px;}
.ya2{bottom:188.969805px;}
.yc7{bottom:190.121415px;}
.yfb{bottom:190.241158px;}
.y191{bottom:191.647928px;}
.y1ef{bottom:194.737193px;}
.y2d{bottom:206.172121px;}
.y25{bottom:206.203488px;}
.y125{bottom:207.343111px;}
.yc6{bottom:207.404844px;}
.ya1{bottom:207.506436px;}
.yfa{bottom:208.240062px;}
.y190{bottom:209.646832px;}
.y1af{bottom:216.077421px;}
.y69{bottom:221.374807px;}
.y2c{bottom:223.454056px;}
.yc5{bottom:224.506043px;}
.ya0{bottom:224.609129px;}
.y124{bottom:225.681547px;}
.yf9{bottom:226.238966px;}
.y1ee{bottom:228.806654px;}
.y1ae{bottom:233.359356px;}
.y68{bottom:236.137500px;}
.y113{bottom:236.596882px;}
.y114{bottom:236.857500px;}
.y66{bottom:238.471580px;}
.y67{bottom:238.477500px;}
.y24{bottom:240.407381px;}
.y2b{bottom:240.735992px;}
.yc4{bottom:241.789473px;}
.y9f{bottom:241.891065px;}
.yf8{bottom:244.237871px;}
.y18f{bottom:245.106914px;}
.y1ed{bottom:246.088590px;}
.y1ad{bottom:250.642785px;}
.y112{bottom:255.133513px;}
.y65{bottom:256.828968px;}
.yc3{bottom:259.071408px;}
.y9e{bottom:259.166571px;}
.yf7{bottom:262.236775px;}
.y18e{bottom:262.390343px;}
.y1ec{bottom:263.372019px;}
.y1ac{bottom:267.924721px;}
.y111{bottom:272.415448px;}
.yc2{bottom:276.353343px;}
.y9d{bottom:276.403301px;}
.y123{bottom:278.602807px;}
.y18d{bottom:279.672278px;}
.yf6{bottom:280.237173px;}
.y1ab{bottom:285.206656px;}
.y13b{bottom:292.105500px;}
.yc1{bottom:293.635279px;}
.y9c{bottom:293.685236px;}
.y5f{bottom:294.891000px;}
.y121{bottom:295.396509px;}
.y122{bottom:295.705500px;}
.y18c{bottom:296.774972px;}
.y1eb{bottom:297.934396px;}
.yf5{bottom:298.236077px;}
.y60{bottom:299.160004px;}
.y1aa{bottom:302.488591px;}
.y15c{bottom:307.111500px;}
.y23{bottom:309.714365px;}
.yc0{bottom:310.737972px;}
.y9b{bottom:310.787930px;}
.y64{bottom:311.542650px;}
.y63{bottom:312.355106px;}
.y18b{bottom:314.056907px;}
.y1ea{bottom:315.216332px;}
.yf4{bottom:316.234981px;}
.y15f{bottom:316.941150px;}
.y1a9{bottom:319.591285px;}
.y62{bottom:322.977940px;}
.y9a{bottom:328.069865px;}
.ybf{bottom:329.274603px;}
.y61{bottom:330.643518px;}
.y18a{bottom:331.338843px;}
.y16d{bottom:332.310150px;}
.y1e9{bottom:332.319025px;}
.y153{bottom:332.866650px;}
.yf3{bottom:334.233886px;}
.ybe{bottom:346.377296px;}
.y189{bottom:348.620778px;}
.yf2{bottom:352.232790px;}
.y1a8{bottom:353.798165px;}
.y160{bottom:356.713650px;}
.y22{bottom:361.560171px;}
.y99{bottom:362.275251px;}
.ybd{bottom:363.659232px;}
.y5e{bottom:366.065184px;}
.y218{bottom:366.854872px;}
.y1e8{bottom:366.884389px;}
.yf1{bottom:370.231694px;}
.y21{bottom:378.842107px;}
.y154{bottom:380.726249px;}
.ybc{bottom:380.941167px;}
.y188{bottom:382.826164px;}
.y5d{bottom:383.167877px;}
.y217{bottom:384.136807px;}
.y1e7{bottom:384.166325px;}
.y161{bottom:384.455614px;}
.yf0{bottom:388.230598px;}
.y20{bottom:395.887411px;}
.y216{bottom:401.418743px;}
.y1a7{bottom:406.717931px;}
.y15a{bottom:410.702446px;}
.y162{bottom:412.196192px;}
.y98{bottom:414.078996px;}
.y1f{bottom:414.244800px;}
.ybb{bottom:415.506532px;}
.y215{bottom:418.702172px;}
.y1e6{bottom:418.728702px;}
.y5a{bottom:419.018985px;}
.y1a6{bottom:424.001360px;}
.yef{bottom:424.407649px;}
.y155{bottom:428.582933px;}
.y5c{bottom:431.757450px;}
.y59{bottom:432.205800px;}
.y1e{bottom:432.603682px;}
.y97{bottom:432.615627px;}
.yba{bottom:432.788467px;}
.y187{bottom:434.851213px;}
.y1e5{bottom:435.831395px;}
.y15b{bottom:439.525800px;}
.y163{bottom:439.938156px;}
.y5b{bottom:442.821962px;}
.y96{bottom:449.718321px;}
.yb9{bottom:449.891160px;}
.y1d{bottom:451.138819px;}
.y214{bottom:453.086800px;}
.y1e4{bottom:453.114824px;}
.y16c{bottom:456.226950px;}
.y1c5{bottom:461.217450px;}
.y95{bottom:466.819520px;}
.y164{bottom:467.680120px;}
.y1c{bottom:468.241513px;}
.yb8{bottom:468.248549px;}
.y213{bottom:470.368736px;}
.y1b9{bottom:471.340950px;}
.yee{bottom:475.894971px;}
.y156{bottom:476.439617px;}
.y58{bottom:481.059445px;}
.y1c3{bottom:483.673551px;}
.y94{bottom:485.356151px;}
.y1b{bottom:485.523448px;}
.yb7{bottom:486.785180px;}
.y212{bottom:487.650671px;}
.y1e3{bottom:487.678695px;}
.y1b7{bottom:490.805142px;}
.yed{bottom:493.893875px;}
.y165{bottom:495.420697px;}
.y57{bottom:498.160645px;}
.y1bf{bottom:501.551860px;}
.y93{bottom:502.638086px;}
.y1a{bottom:502.806877px;}
.yb6{bottom:503.886379px;}
.y211{bottom:504.934100px;}
.y1e2{bottom:504.960631px;}
.y16b{bottom:506.579871px;}
.y1b0{bottom:508.683450px;}
.yec{bottom:511.892779px;}
.y56{bottom:516.519527px;}
.y19{bottom:519.908077px;}
.y92{bottom:519.920022px;}
.yb5{bottom:521.168315px;}
.y1e1{bottom:522.063324px;}
.y166{bottom:523.162661px;}
.y157{bottom:524.296302px;}
.yeb{bottom:529.891684px;}
.y1bc{bottom:531.274950px;}
.y91{bottom:537.201957px;}
.y18{bottom:538.266959px;}
.yb4{bottom:538.450250px;}
.y210{bottom:539.318729px;}
.yea{bottom:547.890588px;}
.y167{bottom:550.904626px;}
.y53{bottom:552.340140px;}
.y90{bottom:554.483893px;}
.yb3{bottom:555.732186px;}
.y1b1{bottom:556.542104px;}
.y20f{bottom:556.600665px;}
.y1e0{bottom:556.627195px;}
.y15e{bottom:560.586600px;}
.y55{bottom:565.109100px;}
.y52{bottom:565.526955px;}
.ye9{bottom:565.889492px;}
.y158{bottom:572.152986px;}
.y1c4{bottom:572.916600px;}
.yb2{bottom:573.014121px;}
.y17{bottom:573.727041px;}
.y20e{bottom:573.882600px;}
.y1df{bottom:573.909130px;}
.y51{bottom:574.059600px;}
.y54{bottom:576.143117px;}
.y168{bottom:578.645203px;}
.ye8{bottom:583.888396px;}
.y171{bottom:585.649991px;}
.y16f{bottom:586.271100px;}
.y8f{bottom:588.868521px;}
.y15d{bottom:589.224600px;}
.yb1{bottom:590.116815px;}
.y20d{bottom:591.152230px;}
.y1de{bottom:591.191066px;}
.y1c0{bottom:597.269168px;}
.ye7{bottom:601.887301px;}
.y1b2{bottom:604.400758px;}
.y8e{bottom:606.150457px;}
.y169{bottom:606.387167px;}
.yb0{bottom:607.219665px;}
.y1dd{bottom:608.473001px;}
.y50{bottom:614.465531px;}
.y170{bottom:615.599111px;}
.y1b8{bottom:615.719250px;}
.y16e{bottom:616.182750px;}
.y152{bottom:619.052250px;}
.ye6{bottom:619.887699px;}
.y159{bottom:620.009670px;}
.y8d{bottom:623.433886px;}
.y20c{bottom:625.536859px;}
.yaf{bottom:625.577054px;}
.y16{bottom:625.647532px;}
.y4f{bottom:631.566731px;}
.y16a{bottom:634.129131px;}
.ye5{bottom:637.886603px;}
.y8c{bottom:640.715822px;}
.y20b{bottom:642.820288px;}
.y1dc{bottom:642.857630px;}
.yae{bottom:642.858989px;}
.y132{bottom:649.058250px;}
.y4e{bottom:650.103362px;}
.y1b3{bottom:652.260870px;}
.ye4{bottom:655.885507px;}
.y8b{bottom:657.818515px;}
.y20a{bottom:660.102223px;}
.y1db{bottom:660.141059px;}
.yad{bottom:660.142418px;}
.y15{bottom:660.211403px;}
.y14b{bottom:667.049400px;}
.y4d{bottom:667.206055px;}
.y130{bottom:667.404857px;}
.y8a{bottom:676.353652px;}
.y13c{bottom:677.225291px;}
.y209{bottom:677.384159px;}
.y1da{bottom:677.422995px;}
.y14{bottom:677.493338px;}
.y138{bottom:683.085900px;}
.y149{bottom:683.524092px;}
.y4c{bottom:684.487990px;}
.y12b{bottom:685.280250px;}
.y137{bottom:691.212750px;}
.ye3{bottom:691.345589px;}
.y136{bottom:692.653714px;}
.y1c1{bottom:692.987934px;}
.y89{bottom:693.456345px;}
.y208{bottom:694.666094px;}
.yac{bottom:694.704796px;}
.y13{bottom:694.775273px;}
.y1b4{bottom:700.119525px;}
.y13d{bottom:701.402400px;}
.y4b{bottom:702.845379px;}
.y1be{bottom:705.968875px;}
.ye2{bottom:708.629018px;}
.y88{bottom:710.738281px;}
.y1d9{bottom:711.985372px;}
.yab{bottom:711.986731px;}
.y12{bottom:712.057209px;}
.y4a{bottom:720.128808px;}
.y1bd{bottom:723.908400px;}
.ye1{bottom:725.912447px;}
.y13e{bottom:727.507121px;}
.y87{bottom:728.020216px;}
.y207{bottom:729.050723px;}
.y1d8{bottom:729.088065px;}
.y11{bottom:729.159902px;}
.y49{bottom:737.410743px;}
.ye0{bottom:743.013647px;}
.y100{bottom:745.250769px;}
.y86{bottom:745.302152px;}
.y206{bottom:746.334152px;}
.y1d7{bottom:746.370000px;}
.y10{bottom:746.441838px;}
.y1bb{bottom:747.440400px;}
.y1b5{bottom:747.978179px;}
.y12c{bottom:749.093247px;}
.y13f{bottom:753.611841px;}
.y48{bottom:754.513437px;}
.ydf{bottom:760.297076px;}
.y85{bottom:762.584087px;}
.y205{bottom:763.616087px;}
.yf{bottom:763.725267px;}
.y105{bottom:772.784609px;}
.y1ba{bottom:772.801050px;}
.y47{bottom:773.048574px;}
.y133{bottom:773.588550px;}
.yde{bottom:777.580505px;}
.y140{bottom:779.716562px;}
.y84{bottom:779.866022px;}
.y204{bottom:780.898023px;}
.y1d6{bottom:780.933871px;}
.ye{bottom:781.007202px;}
.y139{bottom:783.592050px;}
.y1c2{bottom:788.705243px;}
.y46{bottom:790.332003px;}
.y131{bottom:791.942550px;}
.ydd{bottom:794.863934px;}
.y1b6{bottom:795.838291px;}
.y83{bottom:796.968716px;}
.y14a{bottom:797.989050px;}
.y203{bottom:798.179958px;}
.y1d5{bottom:798.215807px;}
.yd{bottom:798.289138px;}
.y104{bottom:798.698550px;}
.y141{bottom:805.821282px;}
.y45{bottom:807.613938px;}
.ydc{bottom:812.147363px;}
.y12d{bottom:812.906243px;}
.y82{bottom:814.250651px;}
.y1d4{bottom:815.318500px;}
.yc{bottom:815.391831px;}
.y44{bottom:824.716632px;}
.y135{bottom:827.958080px;}
.ydb{bottom:829.430793px;}
.y81{bottom:831.534080px;}
.y186{bottom:831.618760px;}
.y142{bottom:831.926003px;}
.y202{bottom:832.564587px;}
.y1d3{bottom:832.600436px;}
.yb{bottom:832.673766px;}
.yda{bottom:846.533486px;}
.y106{bottom:848.008050px;}
.y185{bottom:848.721453px;}
.y80{bottom:848.816016px;}
.y201{bottom:849.848016px;}
.ya{bottom:849.955702px;}
.y1a5{bottom:854.974293px;}
.y143{bottom:858.032181px;}
.y43{bottom:859.101260px;}
.yd9{bottom:863.815421px;}
.y7f{bottom:866.097951px;}
.y184{bottom:867.078841px;}
.y200{bottom:867.129952px;}
.y1d2{bottom:867.165800px;}
.y9{bottom:867.239131px;}
.y1a4{bottom:872.974691px;}
.y12e{bottom:876.719240px;}
.y42{bottom:877.458649px;}
.yd8{bottom:881.097357px;}
.y7e{bottom:883.381380px;}
.y144{bottom:884.136901px;}
.y1ff{bottom:884.411887px;}
.y1d1{bottom:884.447736px;}
.y8{bottom:884.521066px;}
.y107{bottom:884.720700px;}
.y183{bottom:885.615472px;}
.y1a3{bottom:890.975089px;}
.y41{bottom:895.995280px;}
.yd7{bottom:898.379292px;}
.y14e{bottom:900.286350px;}
.y7d{bottom:900.482580px;}
.y150{bottom:900.742563px;}
.y1fe{bottom:901.693823px;}
.y1d0{bottom:901.729671px;}
.y13a{bottom:904.516350px;}
.y1a2{bottom:908.975487px;}
.y145{bottom:910.241622px;}
.y40{bottom:914.352669px;}
.yd6{bottom:915.662721px;}
.y7c{bottom:917.766009px;}
.y7{bottom:918.532274px;}
.y17f{bottom:920.019399px;}
.y1a1{bottom:926.974391px;}
.y17e{bottom:929.132264px;}
.y3f{bottom:931.634604px;}
.y151{bottom:932.138850px;}
.y14d{bottom:932.648850px;}
.yd5{bottom:932.763921px;}
.y182{bottom:932.950350px;}
.y17d{bottom:933.400138px;}
.y181{bottom:933.401689px;}
.y7b{bottom:935.047944px;}
.y1fd{bottom:936.078451px;}
.y1cf{bottom:936.114300px;}
.y146{bottom:936.347800px;}
.y12f{bottom:940.532236px;}
.y17c{bottom:941.059350px;}
.y180{bottom:944.211774px;}
.y1a0{bottom:944.973295px;}
.y3e{bottom:948.916539px;}
.yd4{bottom:949.854416px;}
.y7a{bottom:952.150638px;}
.y1fc{bottom:953.360387px;}
.y1ce{bottom:953.397729px;}
.y134{bottom:955.085591px;}
.y147{bottom:962.452520px;}
.y19f{bottom:962.972199px;}
.y14f{bottom:964.931608px;}
.y14c{bottom:965.009850px;}
.y3d{bottom:966.019233px;}
.yd3{bottom:968.211805px;}
.y1fb{bottom:970.642322px;}
.y1cd{bottom:970.679664px;}
.y79{bottom:970.685775px;}
.y19e{bottom:980.972597px;}
.y17b{bottom:982.229826px;}
.y3c{bottom:984.555864px;}
.yd2{bottom:985.314498px;}
.y1fa{bottom:987.924258px;}
.y1cc{bottom:987.961600px;}
.y78{bottom:987.969204px;}
.y148{bottom:988.557241px;}
.y6{bottom:994.857000px;}
.y110{bottom:998.256737px;}
.y19d{bottom:998.971502px;}
.y17a{bottom:999.511762px;}
.y3b{bottom:1001.837799px;}
.yd1{bottom:1003.849635px;}
.y77{bottom:1005.251139px;}
.y5{bottom:1012.134000px;}
.y10f{bottom:1016.255641px;}
.y179{bottom:1016.795191px;}
.y3a{bottom:1018.940492px;}
.y102{bottom:1020.232500px;}
.y120{bottom:1021.237798px;}
.y1f9{bottom:1022.308886px;}
.y1cb{bottom:1022.346228px;}
.y76{bottom:1022.353833px;}
.y4{bottom:1022.386065px;}
.y101{bottom:1022.931292px;}
.y178{bottom:1033.896390px;}
.y19c{bottom:1034.252341px;}
.y10e{bottom:1034.256039px;}
.y39{bottom:1037.297881px;}
.y11f{bottom:1038.340491px;}
.yd0{bottom:1038.415000px;}
.y1f8{bottom:1039.592315px;}
.y1ca{bottom:1039.628164px;}
.y75{bottom:1039.635768px;}
.y3{bottom:1046.506719px;}
.y19b{bottom:1052.252739px;}
.y10d{bottom:1052.256437px;}
.y177{bottom:1052.433021px;}
.y38{bottom:1055.834512px;}
.y1f7{bottom:1056.874251px;}
.y11e{bottom:1056.875628px;}
.yaa{bottom:1056.909965px;}
.y74{bottom:1056.917704px;}
.y176{bottom:1069.714957px;}
.y19a{bottom:1070.251644px;}
.y10c{bottom:1070.255341px;}
.ycf{bottom:1072.618893px;}
.y37{bottom:1073.116447px;}
.y2{bottom:1073.852537px;}
.y1f6{bottom:1074.156186px;}
.y11d{bottom:1074.159057px;}
.ya9{bottom:1074.191900px;}
.y1c9{bottom:1074.192035px;}
.y73{bottom:1074.199639px;}
.y175{bottom:1086.815768px;}
.y199{bottom:1088.250548px;}
.y10b{bottom:1088.254246px;}
.y36{bottom:1090.219140px;}
.y11c{bottom:1091.440993px;}
.ya8{bottom:1091.473836px;}
.y1c8{bottom:1091.473970px;}
.y72{bottom:1091.481574px;}
.y174{bottom:1105.172611px;}
.y10a{bottom:1106.246491px;}
.y198{bottom:1106.250946px;}
.yce{bottom:1107.362006px;}
.y35{bottom:1107.501076px;}
.y1f5{bottom:1108.721551px;}
.y11b{bottom:1108.722928px;}
.ya7{bottom:1108.755771px;}
.y1c7{bottom:1108.755906px;}
.y71{bottom:1108.763510px;}
.y173{bottom:1123.528711px;}
.y197{bottom:1124.021042px;}
.y109{bottom:1124.245396px;}
.ycd{bottom:1125.719394px;}
.y1f4{bottom:1125.824244px;}
.y11a{bottom:1125.825621px;}
.y34{bottom:1125.858465px;}
.y70{bottom:1125.866203px;}
.y172{bottom:1141.885650px;}
.y196{bottom:1142.019946px;}
.y108{bottom:1142.244300px;}
.y1c6{bottom:1142.782050px;}
.y1{bottom:1142.786100px;}
.ycc{bottom:1143.001330px;}
.y1f3{bottom:1143.106180px;}
.y119{bottom:1143.107557px;}
.y33{bottom:1143.140400px;}
.y6f{bottom:1143.148139px;}
.h16{height:17.815500px;}
.h3{height:38.150350px;}
.h5{height:41.484767px;}
.h19{height:42.633396px;}
.hc{height:42.952871px;}
.h2c{height:43.087433px;}
.h9{height:43.114512px;}
.ha{height:43.728784px;}
.h20{height:52.986858px;}
.h26{height:54.427228px;}
.h27{height:54.576211px;}
.h23{height:57.217869px;}
.h1c{height:57.220225px;}
.h1d{height:57.249079px;}
.h24{height:57.450472px;}
.h21{height:57.553673px;}
.h2e{height:57.554273px;}
.h12{height:58.609632px;}
.h4{height:58.638806px;}
.h2b{height:58.646335px;}
.h10{height:58.664522px;}
.h17{height:58.665440px;}
.h11{height:58.710986px;}
.h18{height:58.714617px;}
.hf{height:58.825602px;}
.h6{height:58.868361px;}
.h15{height:59.431775px;}
.he{height:59.524020px;}
.h22{height:59.529063px;}
.h2d{height:59.554040px;}
.h1{height:60.214177px;}
.hd{height:60.713974px;}
.h7{height:60.904178px;}
.h8{height:60.942454px;}
.h28{height:65.506750px;}
.h29{height:65.510104px;}
.h2a{height:65.512504px;}
.h1f{height:66.023200px;}
.h13{height:66.220689px;}
.h14{height:66.276085px;}
.h2{height:66.561735px;}
.h1b{height:66.994831px;}
.hb{height:67.998806px;}
.h25{height:70.422038px;}
.h1e{height:70.424394px;}
.h1a{height:84.057980px;}
.h0{height:1263.000000px;}
.w2{width:29.512500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x21{left:19.797450px;}
.x43{left:25.724850px;}
.x32{left:44.922450px;}
.x47{left:47.430450px;}
.x44{left:50.691150px;}
.x30{left:52.905450px;}
.x45{left:55.441395px;}
.x57{left:61.000200px;}
.x58{left:77.464238px;}
.x31{left:80.586616px;}
.x46{left:83.219939px;}
.x8{left:85.064495px;}
.x13{left:87.719632px;}
.xd{left:89.201447px;}
.xe{left:91.068647px;}
.x1c{left:93.357415px;}
.x1{left:96.060000px;}
.x39{left:110.996850px;}
.x54{left:117.621376px;}
.x1b{left:119.913923px;}
.x15{left:123.151190px;}
.x11{left:136.645356px;}
.x14{left:138.756912px;}
.xf{left:144.050550px;}
.x4{left:147.006483px;}
.x1d{left:153.104815px;}
.x10{left:155.953800px;}
.x12{left:159.235111px;}
.x16{left:167.685300px;}
.xc{left:169.725567px;}
.x19{left:177.278374px;}
.x1a{left:180.276244px;}
.x1e{left:182.082231px;}
.x3{left:183.702241px;}
.xb{left:187.743300px;}
.x53{left:194.500174px;}
.x59{left:204.781950px;}
.x52{left:209.676416px;}
.x18{left:211.067777px;}
.x17{left:215.002950px;}
.x5{left:222.753450px;}
.x20{left:225.631500px;}
.x1f{left:236.429960px;}
.x48{left:237.633450px;}
.x33{left:244.929450px;}
.x51{left:252.203163px;}
.x22{left:254.425950px;}
.x37{left:261.573450px;}
.x5a{left:268.282950px;}
.x50{left:280.818606px;}
.x36{left:290.992225px;}
.x4f{left:296.883600px;}
.x2{left:305.534384px;}
.x34{left:317.390100px;}
.x24{left:327.131100px;}
.x38{left:356.277750px;}
.x23{left:369.962485px;}
.x35{left:377.308114px;}
.x6{left:379.320750px;}
.x3a{left:387.237750px;}
.x9{left:405.241849px;}
.x7{left:408.641476px;}
.x49{left:411.893400px;}
.x3b{left:417.471428px;}
.x5f{left:457.685400px;}
.x4b{left:462.119400px;}
.x3e{left:463.332900px;}
.x5d{left:466.169010px;}
.xa{left:467.462081px;}
.x2a{left:470.376121px;}
.x2d{left:471.590189px;}
.x2e{left:473.650589px;}
.x25{left:475.768152px;}
.x3c{left:477.566400px;}
.x5e{left:479.513776px;}
.x4a{left:498.747234px;}
.x3d{left:505.249024px;}
.x4d{left:538.201050px;}
.x56{left:548.971219px;}
.x2c{left:550.510252px;}
.x40{left:555.706050px;}
.x2b{left:573.146550px;}
.x5b{left:611.291700px;}
.x55{left:613.945023px;}
.x26{left:617.230200px;}
.x60{left:619.199700px;}
.x3f{left:623.017200px;}
.x27{left:626.587200px;}
.x5c{left:638.213099px;}
.x4e{left:643.022130px;}
.x4c{left:646.040700px;}
.x42{left:654.617147px;}
.x28{left:657.361200px;}
.x29{left:666.539850px;}
.x41{left:671.444297px;}
.x2f{left:790.171500px;}
@media print{
.v5{vertical-align:-46.915920pt;}
.v4{vertical-align:-37.751869pt;}
.v2{vertical-align:-24.315445pt;}
.v9{vertical-align:-15.946133pt;}
.vb{vertical-align:-11.203104pt;}
.va{vertical-align:-9.264000pt;}
.v3{vertical-align:-8.116484pt;}
.v7{vertical-align:-5.119688pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.320000pt;}
.v8{vertical-align:15.167244pt;}
.v1{vertical-align:24.343512pt;}
.lsa2{letter-spacing:-1.571383pt;}
.ls97{letter-spacing:-1.565874pt;}
.lsbc{letter-spacing:-1.482166pt;}
.lsa7{letter-spacing:-1.370384pt;}
.lsb9{letter-spacing:-1.316330pt;}
.lsa0{letter-spacing:-1.311093pt;}
.ls99{letter-spacing:-1.307550pt;}
.lsa4{letter-spacing:-1.307506pt;}
.ls9e{letter-spacing:-1.295600pt;}
.lsa8{letter-spacing:-1.010535pt;}
.lsba{letter-spacing:-0.984656pt;}
.lsb5{letter-spacing:-0.849741pt;}
.lsb0{letter-spacing:-0.621946pt;}
.ls94{letter-spacing:-0.594819pt;}
.lsa5{letter-spacing:-0.401819pt;}
.ls2b{letter-spacing:-0.345207pt;}
.ls58{letter-spacing:-0.339896pt;}
.ls5a{letter-spacing:-0.334585pt;}
.ls2a{letter-spacing:-0.329275pt;}
.ls74{letter-spacing:-0.323964pt;}
.ls5d{letter-spacing:-0.318653pt;}
.ls37{letter-spacing:-0.313342pt;}
.ls6a{letter-spacing:-0.308031pt;}
.ls32{letter-spacing:-0.302720pt;}
.lsb6{letter-spacing:-0.297409pt;}
.ls28{letter-spacing:-0.292098pt;}
.ls7b{letter-spacing:-0.286788pt;}
.ls76{letter-spacing:-0.281477pt;}
.ls22{letter-spacing:-0.270855pt;}
.ls33{letter-spacing:-0.265544pt;}
.ls57{letter-spacing:-0.260233pt;}
.ls78{letter-spacing:-0.254922pt;}
.lsc2{letter-spacing:-0.233679pt;}
.ls93{letter-spacing:-0.212435pt;}
.ls5b{letter-spacing:-0.207124pt;}
.ls75{letter-spacing:-0.201813pt;}
.ls95{letter-spacing:-0.096532pt;}
.ls2f{letter-spacing:-0.069041pt;}
.ls23{letter-spacing:-0.063731pt;}
.ls9b{letter-spacing:-0.062387pt;}
.ls79{letter-spacing:-0.058420pt;}
.lsc3{letter-spacing:-0.053109pt;}
.lsb3{letter-spacing:-0.044128pt;}
.ls62{letter-spacing:-0.038637pt;}
.ls5f{letter-spacing:-0.038612pt;}
.ls66{letter-spacing:-0.038492pt;}
.ls5c{letter-spacing:-0.037176pt;}
.ls63{letter-spacing:-0.031865pt;}
.lsb4{letter-spacing:-0.026554pt;}
.ls69{letter-spacing:-0.021244pt;}
.ls25{letter-spacing:-0.015933pt;}
.ls5e{letter-spacing:-0.010622pt;}
.ls7a{letter-spacing:-0.005311pt;}
.ls21{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.003455pt;}
.ls87{letter-spacing:0.003588pt;}
.ls51{letter-spacing:0.003733pt;}
.ls35{letter-spacing:0.005311pt;}
.ls55{letter-spacing:0.005964pt;}
.ls7e{letter-spacing:0.006911pt;}
.ls83{letter-spacing:0.007179pt;}
.ls19{letter-spacing:0.010622pt;}
.ls65{letter-spacing:0.010998pt;}
.lsb2{letter-spacing:0.011032pt;}
.ls2e{letter-spacing:0.015933pt;}
.ls64{letter-spacing:0.020732pt;}
.lsbe{letter-spacing:0.021244pt;}
.ls48{letter-spacing:0.026554pt;}
.ls27{letter-spacing:0.031865pt;}
.ls18{letter-spacing:0.037176pt;}
.ls20{letter-spacing:0.042487pt;}
.ls1e{letter-spacing:0.047798pt;}
.ls59{letter-spacing:0.053109pt;}
.ls53{letter-spacing:0.055046pt;}
.ls26{letter-spacing:0.058420pt;}
.ls5{letter-spacing:0.063731pt;}
.ls30{letter-spacing:0.069041pt;}
.lsad{letter-spacing:0.072517pt;}
.ls12{letter-spacing:0.074352pt;}
.ls31{letter-spacing:0.079663pt;}
.lsac{letter-spacing:0.083308pt;}
.ls7c{letter-spacing:0.083883pt;}
.ls3b{letter-spacing:0.084974pt;}
.ls71{letter-spacing:0.090285pt;}
.ls4e{letter-spacing:0.095596pt;}
.lsae{letter-spacing:0.100569pt;}
.ls1{letter-spacing:0.100907pt;}
.ls11{letter-spacing:0.106218pt;}
.ls2{letter-spacing:0.111528pt;}
.lsb{letter-spacing:0.116839pt;}
.ls13{letter-spacing:0.122150pt;}
.ls0{letter-spacing:0.127461pt;}
.ls7f{letter-spacing:0.129169pt;}
.lsa{letter-spacing:0.132772pt;}
.lsf{letter-spacing:0.138083pt;}
.ls17{letter-spacing:0.143394pt;}
.lsc{letter-spacing:0.148705pt;}
.ls3d{letter-spacing:0.154016pt;}
.ls88{letter-spacing:0.155472pt;}
.ls3{letter-spacing:0.159326pt;}
.ls8{letter-spacing:0.164637pt;}
.lsd{letter-spacing:0.169948pt;}
.ls84{letter-spacing:0.171019pt;}
.ls46{letter-spacing:0.175259pt;}
.ls85{letter-spacing:0.176202pt;}
.ls6e{letter-spacing:0.185881pt;}
.ls6b{letter-spacing:0.191192pt;}
.ls14{letter-spacing:0.196503pt;}
.ls9{letter-spacing:0.201813pt;}
.ls6{letter-spacing:0.207124pt;}
.ls2c{letter-spacing:0.212435pt;}
.ls4f{letter-spacing:0.212624pt;}
.ls68{letter-spacing:0.217746pt;}
.ls2d{letter-spacing:0.223057pt;}
.lsaf{letter-spacing:0.227303pt;}
.ls1a{letter-spacing:0.228368pt;}
.lse{letter-spacing:0.233679pt;}
.ls72{letter-spacing:0.237816pt;}
.ls7{letter-spacing:0.238990pt;}
.ls36{letter-spacing:0.244300pt;}
.ls34{letter-spacing:0.249611pt;}
.ls70{letter-spacing:0.254922pt;}
.ls24{letter-spacing:0.260233pt;}
.ls61{letter-spacing:0.265544pt;}
.ls60{letter-spacing:0.270855pt;}
.lsb1{letter-spacing:0.276166pt;}
.ls15{letter-spacing:0.280943pt;}
.ls3a{letter-spacing:0.281477pt;}
.lsc0{letter-spacing:0.286788pt;}
.lsbf{letter-spacing:0.292098pt;}
.ls7d{letter-spacing:0.297409pt;}
.ls50{letter-spacing:0.301993pt;}
.lsc1{letter-spacing:0.302720pt;}
.ls54{letter-spacing:0.313342pt;}
.ls10{letter-spacing:0.318653pt;}
.ls4b{letter-spacing:0.323964pt;}
.ls52{letter-spacing:0.346354pt;}
.lsaa{letter-spacing:0.359235pt;}
.ls91{letter-spacing:0.362624pt;}
.ls77{letter-spacing:0.366451pt;}
.ls8e{letter-spacing:0.635898pt;}
.ls8f{letter-spacing:0.640827pt;}
.ls8c{letter-spacing:0.645757pt;}
.ls1d{letter-spacing:0.738212pt;}
.ls1f{letter-spacing:0.796632pt;}
.ls44{letter-spacing:0.807254pt;}
.ls56{letter-spacing:0.817876pt;}
.ls1b{letter-spacing:0.849741pt;}
.ls38{letter-spacing:0.855052pt;}
.ls6f{letter-spacing:0.870984pt;}
.ls80{letter-spacing:0.876295pt;}
.ls3f{letter-spacing:0.886917pt;}
.ls9a{letter-spacing:0.917285pt;}
.lsbb{letter-spacing:0.917747pt;}
.ls9c{letter-spacing:1.311808pt;}
.lsa9{letter-spacing:1.370384pt;}
.lsa6{letter-spacing:1.372911pt;}
.ls8d{letter-spacing:1.380775pt;}
.ls90{letter-spacing:1.384064pt;}
.lsb7{letter-spacing:1.992258pt;}
.ls9f{letter-spacing:1.994839pt;}
.ls8a{letter-spacing:1.995142pt;}
.ls81{letter-spacing:1.995224pt;}
.ls9d{letter-spacing:2.435728pt;}
.ls86{letter-spacing:2.447008pt;}
.ls89{letter-spacing:2.474425pt;}
.lsbd{letter-spacing:3.534397pt;}
.ls98{letter-spacing:3.536179pt;}
.lsa3{letter-spacing:3.548619pt;}
.ls29{letter-spacing:3.999093pt;}
.ls4{letter-spacing:8.953067pt;}
.lsb8{letter-spacing:10.649832pt;}
.ls8b{letter-spacing:12.373475pt;}
.ls82{letter-spacing:12.373889pt;}
.ls67{letter-spacing:14.233158pt;}
.ls47{letter-spacing:14.817355pt;}
.ls49{letter-spacing:14.923573pt;}
.ls42{letter-spacing:15.661785pt;}
.ls41{letter-spacing:15.667096pt;}
.ls43{letter-spacing:16.198184pt;}
.ls92{letter-spacing:16.665541pt;}
.ls6c{letter-spacing:16.941707pt;}
.ls6d{letter-spacing:17.262400pt;}
.ls3c{letter-spacing:20.022018pt;}
.ls4c{letter-spacing:20.924867pt;}
.ls4a{letter-spacing:21.296629pt;}
.ls45{letter-spacing:21.992354pt;}
.lsab{letter-spacing:22.565929pt;}
.ls4d{letter-spacing:23.367872pt;}
.ls40{letter-spacing:25.173571pt;}
.ls3e{letter-spacing:27.085488pt;}
.ls1c{letter-spacing:30.909322pt;}
.ls39{letter-spacing:31.546627pt;}
.lsa1{letter-spacing:334.510149pt;}
.ls96{letter-spacing:334.529102pt;}
.ls73{letter-spacing:554.445250pt;}
.ws11f{word-spacing:-347.485102pt;}
.ws12d{word-spacing:-347.465616pt;}
.wsa{word-spacing:-57.107893pt;}
.ws5{word-spacing:-53.369033pt;}
.wsb{word-spacing:-53.342479pt;}
.ws7{word-spacing:-53.268126pt;}
.ws9{word-spacing:-53.241572pt;}
.ws6{word-spacing:-53.092867pt;}
.ws8{word-spacing:-52.816702pt;}
.ws121{word-spacing:-33.709280pt;}
.ws12f{word-spacing:-33.708153pt;}
.ws11d{word-spacing:-33.311563pt;}
.ws52{word-spacing:-30.283133pt;}
.ws15a{word-spacing:-30.006472pt;}
.ws15d{word-spacing:-29.432897pt;}
.ws58{word-spacing:-29.156731pt;}
.ws12e{word-spacing:-28.565861pt;}
.ws120{word-spacing:-28.465723pt;}
.ws166{word-spacing:-28.451376pt;}
.ws136{word-spacing:-26.052090pt;}
.ws163{word-spacing:-23.605832pt;}
.ws130{word-spacing:-15.945200pt;}
.ws11b{word-spacing:-15.169200pt;}
.ws11e{word-spacing:-14.951224pt;}
.ws12c{word-spacing:-14.950609pt;}
.ws125{word-spacing:-14.274342pt;}
.ws165{word-spacing:-13.880281pt;}
.ws122{word-spacing:-13.873285pt;}
.ws4e{word-spacing:-13.790133pt;}
.ws4f{word-spacing:-13.751521pt;}
.ws57{word-spacing:-13.747067pt;}
.ws15f{word-spacing:-13.746005pt;}
.wsc{word-spacing:-13.595853pt;}
.ws1a2{word-spacing:-13.579920pt;}
.ws4c{word-spacing:-13.558677pt;}
.wsbd{word-spacing:-13.542744pt;}
.ws4b{word-spacing:-13.516190pt;}
.ws53{word-spacing:-13.489635pt;}
.ws5a{word-spacing:-13.447148pt;}
.ws15b{word-spacing:-13.415283pt;}
.ws162{word-spacing:-13.362174pt;}
.wsbf{word-spacing:-13.293133pt;}
.wsd{word-spacing:-13.277200pt;}
.ws4{word-spacing:-13.213469pt;}
.ws19d{word-spacing:-13.208159pt;}
.ws127{word-spacing:-12.962533pt;}
.ws4d{word-spacing:-12.958547pt;}
.ws161{word-spacing:-12.427459pt;}
.ws133{word-spacing:-12.357333pt;}
.ws131{word-spacing:-12.323600pt;}
.ws123{word-spacing:-11.935080pt;}
.ws129{word-spacing:-11.660400pt;}
.ws12b{word-spacing:-11.644373pt;}
.ws12a{word-spacing:-10.964439pt;}
.ws135{word-spacing:-10.953216pt;}
.ws134{word-spacing:-9.868644pt;}
.ws138{word-spacing:-8.835158pt;}
.ws118{word-spacing:-8.645044pt;}
.wsc0{word-spacing:-8.641589pt;}
.ws1{word-spacing:-8.638133pt;}
.ws159{word-spacing:-8.016188pt;}
.ws19b{word-spacing:-7.410832pt;}
.ws155{word-spacing:-6.975510pt;}
.ws154{word-spacing:-6.970328pt;}
.ws157{word-spacing:-3.584481pt;}
.ws158{word-spacing:-3.080900pt;}
.ws137{word-spacing:-1.993929pt;}
.ws128{word-spacing:-0.971819pt;}
.ws1a5{word-spacing:-0.961269pt;}
.ws1a0{word-spacing:-0.955958pt;}
.ws19f{word-spacing:-0.451425pt;}
.wsbe{word-spacing:-0.414249pt;}
.ws19e{word-spacing:-0.318653pt;}
.ws3{word-spacing:-0.143394pt;}
.ws143{word-spacing:-0.138083pt;}
.ws1ab{word-spacing:-0.132772pt;}
.ws1bd{word-spacing:-0.127461pt;}
.ws1bf{word-spacing:-0.122150pt;}
.ws150{word-spacing:-0.111528pt;}
.ws194{word-spacing:-0.095596pt;}
.ws33{word-spacing:-0.074352pt;}
.ws144{word-spacing:-0.069041pt;}
.ws107{word-spacing:-0.063731pt;}
.ws178{word-spacing:-0.058420pt;}
.wsd1{word-spacing:-0.053109pt;}
.ws19{word-spacing:-0.047798pt;}
.ws14{word-spacing:-0.042487pt;}
.wsa5{word-spacing:-0.037176pt;}
.wsc7{word-spacing:-0.031865pt;}
.ws1c5{word-spacing:-0.015933pt;}
.ws12{word-spacing:0.000000pt;}
.ws70{word-spacing:0.005311pt;}
.wsd9{word-spacing:0.010622pt;}
.ws34{word-spacing:0.015933pt;}
.wsf{word-spacing:0.021244pt;}
.wsb9{word-spacing:0.026554pt;}
.ws11{word-spacing:0.031865pt;}
.ws7d{word-spacing:0.037176pt;}
.ws23{word-spacing:0.047798pt;}
.ws10{word-spacing:0.058420pt;}
.ws1e7{word-spacing:0.063731pt;}
.ws1d5{word-spacing:0.069041pt;}
.ws38{word-spacing:0.079663pt;}
.ws25{word-spacing:0.084974pt;}
.ws35{word-spacing:0.090285pt;}
.ws18{word-spacing:0.100907pt;}
.ws2{word-spacing:0.111528pt;}
.ws103{word-spacing:0.122150pt;}
.ws193{word-spacing:0.132772pt;}
.ws86{word-spacing:0.143394pt;}
.ws189{word-spacing:0.148705pt;}
.ws152{word-spacing:0.154016pt;}
.ws1d0{word-spacing:0.159326pt;}
.ws195{word-spacing:0.175259pt;}
.ws171{word-spacing:0.196503pt;}
.ws0{word-spacing:0.228368pt;}
.wsc8{word-spacing:0.361140pt;}
.ws14f{word-spacing:0.371762pt;}
.ws1b6{word-spacing:0.393005pt;}
.ws1aa{word-spacing:0.424870pt;}
.ws13{word-spacing:0.430181pt;}
.wsd8{word-spacing:0.440803pt;}
.ws106{word-spacing:0.477979pt;}
.ws24{word-spacing:0.488601pt;}
.ws196{word-spacing:0.557642pt;}
.ws82{word-spacing:0.562953pt;}
.ws14d{word-spacing:0.669171pt;}
.ws17b{word-spacing:0.674482pt;}
.ws14e{word-spacing:0.685104pt;}
.ws44{word-spacing:0.748834pt;}
.ws81{word-spacing:0.770078pt;}
.ws43{word-spacing:0.791321pt;}
.wsad{word-spacing:0.817876pt;}
.ws1e3{word-spacing:0.823186pt;}
.ws1c1{word-spacing:0.849741pt;}
.ws15c{word-spacing:0.908160pt;}
.ws1a1{word-spacing:0.955958pt;}
.ws47{word-spacing:1.189637pt;}
.ws8a{word-spacing:1.258679pt;}
.wsc4{word-spacing:1.274611pt;}
.ws1b3{word-spacing:1.317098pt;}
.ws117{word-spacing:1.327720pt;}
.ws1a3{word-spacing:1.667616pt;}
.ws1ce{word-spacing:1.800388pt;}
.ws77{word-spacing:1.848186pt;}
.ws7e{word-spacing:1.895984pt;}
.wsd3{word-spacing:1.906606pt;}
.ws26{word-spacing:1.911917pt;}
.ws27{word-spacing:1.922539pt;}
.ws4a{word-spacing:1.927849pt;}
.ws16{word-spacing:1.938471pt;}
.ws15{word-spacing:1.943782pt;}
.ws1cd{word-spacing:2.023445pt;}
.ws91{word-spacing:2.034067pt;}
.ws17d{word-spacing:2.081865pt;}
.ws1c3{word-spacing:2.097798pt;}
.ws49{word-spacing:2.336787pt;}
.wsfd{word-spacing:2.453627pt;}
.ws1c8{word-spacing:2.464248pt;}
.ws148{word-spacing:2.469559pt;}
.ws1d1{word-spacing:2.474870pt;}
.wsd4{word-spacing:2.490803pt;}
.ws64{word-spacing:2.527979pt;}
.ws1dc{word-spacing:2.533290pt;}
.wsba{word-spacing:2.559844pt;}
.ws17{word-spacing:2.644818pt;}
.wsab{word-spacing:2.671373pt;}
.ws1a{word-spacing:2.676684pt;}
.wsa4{word-spacing:2.681994pt;}
.wsc2{word-spacing:2.692616pt;}
.ws32{word-spacing:2.697927pt;}
.ws97{word-spacing:2.703238pt;}
.ws16d{word-spacing:2.719171pt;}
.ws13b{word-spacing:3.048445pt;}
.wsb5{word-spacing:3.075000pt;}
.ws1bc{word-spacing:3.090932pt;}
.wsb0{word-spacing:3.096243pt;}
.wseb{word-spacing:3.106865pt;}
.ws88{word-spacing:3.117487pt;}
.ws100{word-spacing:3.122797pt;}
.ws1c4{word-spacing:3.128108pt;}
.ws1d{word-spacing:3.144041pt;}
.ws65{word-spacing:3.175906pt;}
.ws1c{word-spacing:3.181217pt;}
.ws13c{word-spacing:3.202461pt;}
.wsdb{word-spacing:3.207772pt;}
.wscc{word-spacing:3.213082pt;}
.ws39{word-spacing:3.218393pt;}
.ws8f{word-spacing:3.223704pt;}
.wscb{word-spacing:3.303367pt;}
.wse0{word-spacing:3.308678pt;}
.wsca{word-spacing:3.738860pt;}
.ws1b{word-spacing:3.744170pt;}
.ws13e{word-spacing:3.765414pt;}
.ws146{word-spacing:3.807901pt;}
.ws141{word-spacing:3.818523pt;}
.ws60{word-spacing:3.839766pt;}
.ws30{word-spacing:3.845077pt;}
.wsc3{word-spacing:3.850388pt;}
.ws2d{word-spacing:3.861010pt;}
.ws1e{word-spacing:3.866321pt;}
.ws190{word-spacing:3.871632pt;}
.ws3a{word-spacing:3.908808pt;}
.ws41{word-spacing:3.914119pt;}
.ws18f{word-spacing:3.940673pt;}
.ws29{word-spacing:3.945984pt;}
.ws1da{word-spacing:3.961916pt;}
.ws2c{word-spacing:3.967227pt;}
.ws1ae{word-spacing:3.988471pt;}
.ws1af{word-spacing:4.301813pt;}
.ws2a{word-spacing:4.408030pt;}
.ws20{word-spacing:4.450517pt;}
.ws13a{word-spacing:4.455828pt;}
.ws1f{word-spacing:4.471761pt;}
.wsec{word-spacing:4.477072pt;}
.ws6e{word-spacing:4.508937pt;}
.wsff{word-spacing:4.514248pt;}
.ws98{word-spacing:4.519559pt;}
.ws153{word-spacing:4.573182pt;}
.ws156{word-spacing:4.589269pt;}
.ws13f{word-spacing:4.615155pt;}
.ws6f{word-spacing:4.620466pt;}
.ws31{word-spacing:4.636398pt;}
.ws59{word-spacing:4.824600pt;}
.ws28{word-spacing:4.965673pt;}
.ws126{word-spacing:4.966134pt;}
.wsd6{word-spacing:5.029403pt;}
.ws108{word-spacing:5.040025pt;}
.wsd5{word-spacing:5.061269pt;}
.wsaa{word-spacing:5.082512pt;}
.ws79{word-spacing:5.098445pt;}
.ws66{word-spacing:5.109067pt;}
.ws92{word-spacing:5.162175pt;}
.wsf8{word-spacing:5.257771pt;}
.wsa9{word-spacing:5.279015pt;}
.ws90{word-spacing:5.294947pt;}
.ws11a{word-spacing:5.450485pt;}
.ws73{word-spacing:5.597668pt;}
.ws75{word-spacing:5.613600pt;}
.ws2b{word-spacing:5.672020pt;}
.wsf3{word-spacing:5.735750pt;}
.ws6d{word-spacing:5.756994pt;}
.ws42{word-spacing:5.762305pt;}
.ws17e{word-spacing:5.778237pt;}
.ws2e{word-spacing:5.783548pt;}
.ws183{word-spacing:5.788859pt;}
.ws179{word-spacing:5.799481pt;}
.ws69{word-spacing:5.810103pt;}
.ws1bb{word-spacing:5.852590pt;}
.ws16c{word-spacing:5.900388pt;}
.ws2f{word-spacing:5.964118pt;}
.ws198{word-spacing:6.219040pt;}
.ws1a8{word-spacing:6.304015pt;}
.ws10c{word-spacing:6.309325pt;}
.ws1a7{word-spacing:6.319947pt;}
.wsd7{word-spacing:6.373056pt;}
.ws114{word-spacing:6.468652pt;}
.ws116{word-spacing:6.500517pt;}
.ws10d{word-spacing:6.516450pt;}
.ws113{word-spacing:6.617356pt;}
.ws68{word-spacing:6.819170pt;}
.ws18b{word-spacing:6.851035pt;}
.wsfa{word-spacing:6.951942pt;}
.ws147{word-spacing:6.973185pt;}
.wsfc{word-spacing:7.047538pt;}
.ws9b{word-spacing:7.058160pt;}
.wsbb{word-spacing:7.068781pt;}
.ws21{word-spacing:7.074092pt;}
.ws22{word-spacing:7.079403pt;}
.wse4{word-spacing:7.084714pt;}
.ws169{word-spacing:7.090025pt;}
.wsc9{word-spacing:7.174999pt;}
.ws18c{word-spacing:7.190932pt;}
.ws95{word-spacing:7.196242pt;}
.ws115{word-spacing:7.206864pt;}
.ws48{word-spacing:7.509584pt;}
.ws1c6{word-spacing:7.541450pt;}
.ws7f{word-spacing:7.615802pt;}
.wsf2{word-spacing:7.652978pt;}
.ws80{word-spacing:7.684843pt;}
.wsb1{word-spacing:7.727330pt;}
.ws13d{word-spacing:7.737952pt;}
.ws16a{word-spacing:7.791061pt;}
.wse9{word-spacing:7.854792pt;}
.ws16b{word-spacing:7.891968pt;}
.ws83{word-spacing:8.173444pt;}
.wse6{word-spacing:8.263729pt;}
.wsf9{word-spacing:8.295595pt;}
.ws1d7{word-spacing:8.306216pt;}
.ws139{word-spacing:8.332771pt;}
.ws175{word-spacing:8.343392pt;}
.wsb4{word-spacing:8.348703pt;}
.ws181{word-spacing:8.380569pt;}
.wsf6{word-spacing:8.396501pt;}
.wsf7{word-spacing:8.460232pt;}
.wsd0{word-spacing:8.465543pt;}
.ws84{word-spacing:8.529273pt;}
.ws176{word-spacing:8.826683pt;}
.ws111{word-spacing:8.911657pt;}
.ws7b{word-spacing:8.986009pt;}
.wsdc{word-spacing:8.991320pt;}
.wscd{word-spacing:9.007252pt;}
.ws1c0{word-spacing:9.129403pt;}
.ws96{word-spacing:9.145335pt;}
.wse{word-spacing:9.288067pt;}
.ws1b4{word-spacing:9.506475pt;}
.ws1b5{word-spacing:9.586138pt;}
.wsd2{word-spacing:9.623315pt;}
.ws17c{word-spacing:9.671112pt;}
.ws168{word-spacing:9.687045pt;}
.ws87{word-spacing:9.724221pt;}
.ws1a6{word-spacing:9.750776pt;}
.ws3b{word-spacing:10.074739pt;}
.ws167{word-spacing:10.143781pt;}
.ws151{word-spacing:10.149092pt;}
.ws63{word-spacing:10.170335pt;}
.ws14c{word-spacing:10.175646pt;}
.ws149{word-spacing:10.186268pt;}
.wsa2{word-spacing:10.292485pt;}
.ws5c{word-spacing:10.377460pt;}
.wse2{word-spacing:10.398703pt;}
.wse1{word-spacing:10.430568pt;}
.wsb8{word-spacing:10.717356pt;}
.ws17a{word-spacing:10.791708pt;}
.ws6a{word-spacing:10.892615pt;}
.ws71{word-spacing:10.940413pt;}
.ws105{word-spacing:10.945724pt;}
.ws62{word-spacing:10.961656pt;}
.ws1c9{word-spacing:11.439636pt;}
.ws1cb{word-spacing:11.471501pt;}
.ws10b{word-spacing:11.513988pt;}
.ws7c{word-spacing:11.519299pt;}
.wsfe{word-spacing:11.540542pt;}
.wsf4{word-spacing:11.556475pt;}
.wsa1{word-spacing:11.668003pt;}
.wsf5{word-spacing:11.715801pt;}
.wsb6{word-spacing:11.991967pt;}
.ws186{word-spacing:12.076941pt;}
.wsdf{word-spacing:12.177848pt;}
.ws187{word-spacing:12.193780pt;}
.wsde{word-spacing:12.289376pt;}
.ws19c{word-spacing:12.468854pt;}
.ws76{word-spacing:12.528366pt;}
.ws1e6{word-spacing:12.730179pt;}
.ws72{word-spacing:12.841708pt;}
.ws1ca{word-spacing:12.963858pt;}
.ws1a4{word-spacing:13.027589pt;}
.ws15e{word-spacing:13.160600pt;}
.ws9a{word-spacing:13.224091pt;}
.wse7{word-spacing:13.356863pt;}
.ws1d9{word-spacing:13.388728pt;}
.wse8{word-spacing:13.394039pt;}
.ws109{word-spacing:13.441837pt;}
.ws140{word-spacing:13.473703pt;}
.ws104{word-spacing:13.479013pt;}
.ws74{word-spacing:13.542744pt;}
.ws10a{word-spacing:13.553366pt;}
.wsac{word-spacing:13.590542pt;}
.ws1b0{word-spacing:13.887951pt;}
.ws18d{word-spacing:14.015412pt;}
.ws1ad{word-spacing:14.684583pt;}
.ws1b7{word-spacing:14.695205pt;}
.ws1ac{word-spacing:14.721759pt;}
.ws6c{word-spacing:14.796112pt;}
.ws78{word-spacing:14.801423pt;}
.ws50{word-spacing:14.810603pt;}
.ws6b{word-spacing:14.812044pt;}
.wsfb{word-spacing:14.870464pt;}
.ws18e{word-spacing:14.891708pt;}
.ws142{word-spacing:15.236915pt;}
.ws170{word-spacing:15.491837pt;}
.ws1b2{word-spacing:15.507770pt;}
.ws172{word-spacing:15.534324pt;}
.ws119{word-spacing:15.709400pt;}
.ws1b1{word-spacing:15.975127pt;}
.ws102{word-spacing:16.091966pt;}
.wsea{word-spacing:16.134453pt;}
.wsc5{word-spacing:16.469039pt;}
.ws37{word-spacing:16.474350pt;}
.ws3e{word-spacing:16.532769pt;}
.wsf0{word-spacing:16.559324pt;}
.wsf1{word-spacing:16.644298pt;}
.ws14a{word-spacing:16.686785pt;}
.wsef{word-spacing:17.101034pt;}
.wsc6{word-spacing:17.186008pt;}
.ws8b{word-spacing:17.212562pt;}
.ws110{word-spacing:17.276293pt;}
.ws1b8{word-spacing:17.286914pt;}
.ws10f{word-spacing:17.292225pt;}
.ws85{word-spacing:17.318780pt;}
.ws182{word-spacing:17.350645pt;}
.ws3f{word-spacing:17.355956pt;}
.ws101{word-spacing:17.674609pt;}
.ws5e{word-spacing:17.775515pt;}
.ws188{word-spacing:17.892355pt;}
.ws5d{word-spacing:17.897666pt;}
.ws185{word-spacing:17.908287pt;}
.ws94{word-spacing:17.924220pt;}
.ws1cc{word-spacing:17.950774pt;}
.wsa7{word-spacing:18.019816pt;}
.wsa0{word-spacing:18.046370pt;}
.ws1c7{word-spacing:18.380956pt;}
.ws1e1{word-spacing:18.524349pt;}
.ws40{word-spacing:18.582769pt;}
.ws14b{word-spacing:18.588080pt;}
.ws1b9{word-spacing:18.593391pt;}
.wsa3{word-spacing:18.997018pt;}
.ws1df{word-spacing:19.193520pt;}
.ws18a{word-spacing:19.209453pt;}
.ws9f{word-spacing:19.214764pt;}
.ws16e{word-spacing:19.273184pt;}
.ws8e{word-spacing:19.278494pt;}
.ws16f{word-spacing:19.283805pt;}
.ws1d4{word-spacing:20.250385pt;}
.ws1e0{word-spacing:20.303494pt;}
.ws9d{word-spacing:20.462821pt;}
.ws184{word-spacing:20.505308pt;}
.ws1d6{word-spacing:20.521240pt;}
.wsda{word-spacing:20.526551pt;}
.wsbc{word-spacing:20.569038pt;}
.wscf{word-spacing:21.078883pt;}
.ws8c{word-spacing:21.185100pt;}
.ws7a{word-spacing:21.270074pt;}
.ws55{word-spacing:21.370745pt;}
.ws191{word-spacing:21.588727pt;}
.ws145{word-spacing:21.785230pt;}
.ws1e5{word-spacing:21.811784pt;}
.ws9e{word-spacing:22.353494pt;}
.wsdd{word-spacing:22.443779pt;}
.ws17f{word-spacing:22.571240pt;}
.ws1be{word-spacing:22.587173pt;}
.ws180{word-spacing:23.176680pt;}
.wsb3{word-spacing:23.596240pt;}
.ws1a9{word-spacing:23.691836pt;}
.ws112{word-spacing:23.766188pt;}
.ws5b{word-spacing:23.829919pt;}
.wsb2{word-spacing:23.877716pt;}
.ws192{word-spacing:24.371628pt;}
.ws1c2{word-spacing:24.430048pt;}
.ws3c{word-spacing:24.445981pt;}
.ws67{word-spacing:24.451292pt;}
.ws3d{word-spacing:24.748701pt;}
.wsed{word-spacing:25.508157pt;}
.wsee{word-spacing:25.540022pt;}
.ws61{word-spacing:25.619685pt;}
.ws1cf{word-spacing:26.177328pt;}
.ws10e{word-spacing:26.904918pt;}
.ws1ba{word-spacing:27.441317pt;}
.ws1dd{word-spacing:27.542224pt;}
.wsa8{word-spacing:27.563467pt;}
.wse5{word-spacing:27.680307pt;}
.wse3{word-spacing:29.385099pt;}
.ws1de{word-spacing:29.539115pt;}
.ws8d{word-spacing:31.169555pt;}
.wsa6{word-spacing:32.444166pt;}
.wsaf{word-spacing:33.081472pt;}
.ws1d3{word-spacing:33.883414pt;}
.ws197{word-spacing:36.395461pt;}
.ws1db{word-spacing:36.512300pt;}
.ws9c{word-spacing:37.080564pt;}
.ws177{word-spacing:37.213336pt;}
.wsae{word-spacing:37.250512pt;}
.ws36{word-spacing:37.351419pt;}
.wsce{word-spacing:38.392352pt;}
.ws1e2{word-spacing:39.146496pt;}
.ws19a{word-spacing:39.635097pt;}
.wsb7{word-spacing:41.536392pt;}
.ws5f{word-spacing:42.237429pt;}
.ws1d2{word-spacing:43.012817pt;}
.ws174{word-spacing:44.760097pt;}
.ws173{word-spacing:46.119682pt;}
.ws1e4{word-spacing:46.656081pt;}
.ws99{word-spacing:48.637039pt;}
.ws1d8{word-spacing:49.954137pt;}
.ws89{word-spacing:54.431209pt;}
.ws93{word-spacing:54.447142pt;}
.ws46{word-spacing:60.846752pt;}
.ws45{word-spacing:60.958281pt;}
.ws54{word-spacing:83.548974pt;}
.ws199{word-spacing:83.726023pt;}
.ws51{word-spacing:89.966830pt;}
.ws11c{word-spacing:122.688490pt;}
.ws164{word-spacing:146.040032pt;}
.ws56{word-spacing:155.798256pt;}
.ws124{word-spacing:227.683562pt;}
.ws160{word-spacing:283.028697pt;}
.ws132{word-spacing:326.097244pt;}
.wsc1{word-spacing:390.971053pt;}
._29{margin-left:-332.533878pt;}
._35{margin-left:-202.141290pt;}
._11{margin-left:-187.005240pt;}
._34{margin-left:-179.613729pt;}
._33{margin-left:-169.453158pt;}
._28{margin-left:-145.733538pt;}
._f{margin-left:-135.761105pt;}
._25{margin-left:-128.458853pt;}
._12{margin-left:-105.439359pt;}
._26{margin-left:-102.592333pt;}
._31{margin-left:-96.530933pt;}
._15{margin-left:-74.179172pt;}
._16{margin-left:-68.570369pt;}
._27{margin-left:-61.059064pt;}
._d{margin-left:-50.504984pt;}
._10{margin-left:-47.200868pt;}
._e{margin-left:-44.122911pt;}
._32{margin-left:-41.370400pt;}
._2b{margin-left:-39.868203pt;}
._1c{margin-left:-37.149606pt;}
._2a{margin-left:-23.927141pt;}
._21{margin-left:-17.010749pt;}
._22{margin-left:-15.783935pt;}
._19{margin-left:-14.551811pt;}
._1a{margin-left:-13.367485pt;}
._38{margin-left:-12.428215pt;}
._1f{margin-left:-9.209066pt;}
._2f{margin-left:-7.442746pt;}
._5{margin-left:-4.514248pt;}
._6{margin-left:-3.393652pt;}
._7{margin-left:-2.427072pt;}
._1{margin-left:-1.465803pt;}
._0{width:0.961269pt;}
._2{width:2.267746pt;}
._2c{width:4.041452pt;}
._3{width:4.992227pt;}
._4{width:5.953496pt;}
._8{width:7.068781pt;}
._17{width:10.462434pt;}
._c{width:11.567097pt;}
._1b{width:12.730179pt;}
._9{width:14.758936pt;}
._a{width:16.235360pt;}
._b{width:17.302847pt;}
._13{width:20.855826pt;}
._30{width:22.156991pt;}
._1e{width:23.375958pt;}
._3c{width:25.109841pt;}
._1d{width:26.097664pt;}
._23{width:27.850255pt;}
._14{width:29.199218pt;}
._20{width:30.426032pt;}
._24{width:44.271496pt;}
._3b{width:51.159707pt;}
._37{width:52.131598pt;}
._36{width:58.313462pt;}
._18{width:68.844937pt;}
._39{width:165.344400pt;}
._3a{width:174.664573pt;}
._2e{width:254.595765pt;}
._2d{width:270.536827pt;}
.fs16{font-size:33.890133pt;}
.fs15{font-size:33.982933pt;}
.fs1{font-size:34.552533pt;}
.fse{font-size:35.878400pt;}
.fsd{font-size:35.896533pt;}
.fs6{font-size:38.612800pt;}
.fsc{font-size:47.989867pt;}
.fs13{font-size:49.294400pt;}
.fs14{font-size:49.429333pt;}
.fs10{font-size:51.821867pt;}
.fs8{font-size:51.824000pt;}
.fs9{font-size:51.850133pt;}
.fs11{font-size:52.032533pt;}
.fs0{font-size:53.108800pt;}
.fs5{font-size:54.988267pt;}
.fs2{font-size:55.160533pt;}
.fs3{font-size:55.195200pt;}
.fs4{font-size:55.981591pt;}
.fsb{font-size:59.796800pt;}
.fs7{font-size:60.676800pt;}
.fs12{font-size:63.780800pt;}
.fsa{font-size:63.782933pt;}
.fsf{font-size:79.391467pt;}
.y0{bottom:0.000000pt;}
.y103{bottom:2.398667pt;}
.y118{bottom:103.326610pt;}
.y32{bottom:103.587630pt;}
.y2a{bottom:103.615512pt;}
.yff{bottom:105.279380pt;}
.y195{bottom:106.357609pt;}
.ycb{bottom:106.591318pt;}
.ya6{bottom:106.701645pt;}
.y117{bottom:118.689658pt;}
.y31{bottom:119.905309pt;}
.y29{bottom:119.933191pt;}
.yfe{bottom:121.103518pt;}
.yca{bottom:121.793712pt;}
.ya5{bottom:122.063365pt;}
.y194{bottom:122.356635pt;}
.y1f2{bottom:127.013238pt;}
.y128{bottom:128.940364pt;}
.y116{bottom:134.051379pt;}
.y30{bottom:135.267029pt;}
.y28{bottom:136.410196pt;}
.y127{bottom:137.042722pt;}
.yfd{bottom:137.102544pt;}
.ya4{bottom:137.425086pt;}
.yc9{bottom:138.270717pt;}
.y193{bottom:138.355661pt;}
.y6a{bottom:138.807867pt;}
.y12a{bottom:140.475733pt;}
.y1f1{bottom:142.374959pt;}
.y6d{bottom:144.393300pt;}
.y126{bottom:147.643867pt;}
.y6e{bottom:150.073200pt;}
.y129{bottom:150.444222pt;}
.y2f{bottom:150.469423pt;}
.y6b{bottom:150.492873pt;}
.y27{bottom:151.611263pt;}
.ya3{bottom:152.786806pt;}
.yfc{bottom:153.102898pt;}
.yc8{bottom:153.633765pt;}
.y192{bottom:154.354687pt;}
.y1f0{bottom:157.736679pt;}
.y6c{bottom:159.901366pt;}
.y115{bottom:164.773492pt;}
.y2e{bottom:166.787102pt;}
.y26{bottom:167.930269pt;}
.ya2{bottom:167.973160pt;}
.yc7{bottom:168.996813pt;}
.yfb{bottom:169.103251pt;}
.y191{bottom:170.353713pt;}
.y1ef{bottom:173.099727pt;}
.y2d{bottom:183.264107pt;}
.y25{bottom:183.291989pt;}
.y125{bottom:184.304988pt;}
.yc6{bottom:184.359861pt;}
.ya1{bottom:184.450165pt;}
.yfa{bottom:185.102277pt;}
.y190{bottom:186.352739pt;}
.y1af{bottom:192.068818pt;}
.y69{bottom:196.777606pt;}
.y2c{bottom:198.625828pt;}
.yc5{bottom:199.560927pt;}
.ya0{bottom:199.652559pt;}
.y124{bottom:200.605820pt;}
.yf9{bottom:201.101303pt;}
.y1ee{bottom:203.383693pt;}
.y1ae{bottom:207.430539pt;}
.y68{bottom:209.900000pt;}
.y113{bottom:210.308339pt;}
.y114{bottom:210.540000pt;}
.y66{bottom:211.974738pt;}
.y67{bottom:211.980000pt;}
.y24{bottom:213.695450pt;}
.y2b{bottom:213.987548pt;}
.yc4{bottom:214.923976pt;}
.y9f{bottom:215.014280pt;}
.yf8{bottom:217.100329pt;}
.y18f{bottom:217.872812pt;}
.y1ed{bottom:218.745413pt;}
.y1ad{bottom:222.793587pt;}
.y112{bottom:226.785345pt;}
.y65{bottom:228.292416pt;}
.yc3{bottom:230.285696pt;}
.y9e{bottom:230.370285pt;}
.yf7{bottom:233.099355pt;}
.y18e{bottom:233.235860pt;}
.y1ec{bottom:234.108461pt;}
.y1ac{bottom:238.155307pt;}
.y111{bottom:242.147065pt;}
.yc2{bottom:245.647416pt;}
.y9d{bottom:245.691823pt;}
.y123{bottom:247.646939pt;}
.y18d{bottom:248.597581pt;}
.yf6{bottom:249.099709pt;}
.y1ab{bottom:253.517028pt;}
.y13b{bottom:259.649333pt;}
.yc1{bottom:261.009137pt;}
.y9c{bottom:261.053543pt;}
.y5f{bottom:262.125333pt;}
.y121{bottom:262.574675pt;}
.y122{bottom:262.849333pt;}
.y18c{bottom:263.799975pt;}
.y1eb{bottom:264.830574pt;}
.yf5{bottom:265.098735pt;}
.y60{bottom:265.920003pt;}
.y1aa{bottom:268.878748pt;}
.y15c{bottom:272.988000pt;}
.y23{bottom:275.301658pt;}
.yc0{bottom:276.211531pt;}
.y9b{bottom:276.255937pt;}
.y64{bottom:276.926800pt;}
.y63{bottom:277.648983pt;}
.y18b{bottom:279.161695pt;}
.y1ea{bottom:280.192295pt;}
.yf4{bottom:281.097761pt;}
.y15f{bottom:281.725467pt;}
.y1a9{bottom:284.081142pt;}
.y62{bottom:287.091502pt;}
.y9a{bottom:291.617658pt;}
.ybf{bottom:292.688536pt;}
.y61{bottom:293.905350pt;}
.y18a{bottom:294.523416pt;}
.y16d{bottom:295.386800pt;}
.y1e9{bottom:295.394689pt;}
.y153{bottom:295.881467pt;}
.yf3{bottom:297.096787pt;}
.ybe{bottom:307.890930pt;}
.y189{bottom:309.885136pt;}
.yf2{bottom:313.095813pt;}
.y1a8{bottom:314.487258pt;}
.y160{bottom:317.078800pt;}
.y22{bottom:321.386819pt;}
.y99{bottom:322.022446pt;}
.ybd{bottom:323.252650pt;}
.y5e{bottom:325.391274pt;}
.y218{bottom:326.093219pt;}
.y1e8{bottom:326.119457pt;}
.yf1{bottom:329.094839pt;}
.y21{bottom:336.748539pt;}
.y154{bottom:338.423333pt;}
.ybc{bottom:338.614371pt;}
.y188{bottom:340.289924pt;}
.y5d{bottom:340.593668pt;}
.y217{bottom:341.454940pt;}
.y1e7{bottom:341.481178pt;}
.y161{bottom:341.738324pt;}
.yf0{bottom:345.093865pt;}
.y20{bottom:351.899921pt;}
.y216{bottom:356.816660pt;}
.y1a7{bottom:361.527050pt;}
.y15a{bottom:365.068841pt;}
.y162{bottom:366.396615pt;}
.y98{bottom:368.070219pt;}
.y1f{bottom:368.217600pt;}
.ybb{bottom:369.339139pt;}
.y215{bottom:372.179708pt;}
.y1e6{bottom:372.203291pt;}
.y5a{bottom:372.461320pt;}
.y1a6{bottom:376.890098pt;}
.yef{bottom:377.251244pt;}
.y155{bottom:380.962607pt;}
.y5c{bottom:383.784400pt;}
.y59{bottom:384.182933pt;}
.y1e{bottom:384.536606pt;}
.y97{bottom:384.547224pt;}
.yba{bottom:384.700860pt;}
.y187{bottom:386.534412pt;}
.y1e5{bottom:387.405685pt;}
.y15b{bottom:390.689600pt;}
.y163{bottom:391.056138pt;}
.y5b{bottom:393.619522pt;}
.y96{bottom:399.749618pt;}
.yb9{bottom:399.903254pt;}
.y1d{bottom:401.012284pt;}
.y214{bottom:402.743823pt;}
.y1e4{bottom:402.768733pt;}
.y16c{bottom:405.535067pt;}
.y1c5{bottom:409.971067pt;}
.y95{bottom:414.950685pt;}
.y164{bottom:415.715662pt;}
.y1c{bottom:416.214678pt;}
.yb8{bottom:416.220933pt;}
.y213{bottom:418.105543pt;}
.y1b9{bottom:418.969733pt;}
.yee{bottom:423.017752pt;}
.y156{bottom:423.501882pt;}
.y58{bottom:427.608396pt;}
.y1c3{bottom:429.932046pt;}
.y94{bottom:431.427690pt;}
.y1b{bottom:431.576398pt;}
.yb7{bottom:432.697938pt;}
.y212{bottom:433.467263pt;}
.y1e3{bottom:433.492174pt;}
.y1b7{bottom:436.271237pt;}
.yed{bottom:439.016778pt;}
.y165{bottom:440.373953pt;}
.y57{bottom:442.809462pt;}
.y1bf{bottom:445.823875pt;}
.y93{bottom:446.789410pt;}
.y1a{bottom:446.939446pt;}
.yb6{bottom:447.899004pt;}
.y211{bottom:448.830311pt;}
.y1e2{bottom:448.853894pt;}
.y16b{bottom:450.293219pt;}
.y1b0{bottom:452.163067pt;}
.yec{bottom:455.015804pt;}
.y56{bottom:459.128468pt;}
.y19{bottom:462.140513pt;}
.y92{bottom:462.151131pt;}
.yb5{bottom:463.260724pt;}
.y1e1{bottom:464.056288pt;}
.y166{bottom:465.033477pt;}
.y157{bottom:466.041157pt;}
.yeb{bottom:471.014830pt;}
.y1bc{bottom:472.244400pt;}
.y91{bottom:477.512851pt;}
.y18{bottom:478.459519pt;}
.yb4{bottom:478.622445pt;}
.y210{bottom:479.394426pt;}
.yea{bottom:487.013856pt;}
.y167{bottom:489.693000pt;}
.y53{bottom:490.969013pt;}
.y90{bottom:492.874571pt;}
.yb3{bottom:493.984165pt;}
.y1b1{bottom:494.704093pt;}
.y20f{bottom:494.756146pt;}
.y1e0{bottom:494.779729pt;}
.y15e{bottom:498.299200pt;}
.y55{bottom:502.319200pt;}
.y52{bottom:502.690627pt;}
.ye9{bottom:503.012882pt;}
.y158{bottom:508.580432pt;}
.y1c4{bottom:509.259200pt;}
.yb2{bottom:509.345886pt;}
.y17{bottom:509.979592pt;}
.y20e{bottom:510.117867pt;}
.y1df{bottom:510.141449pt;}
.y51{bottom:510.275200pt;}
.y54{bottom:512.127215pt;}
.y168{bottom:514.351292pt;}
.ye8{bottom:519.011908pt;}
.y171{bottom:520.577769pt;}
.y16f{bottom:521.129867pt;}
.y8f{bottom:523.438686pt;}
.y15d{bottom:523.755200pt;}
.yb1{bottom:524.548280pt;}
.y20d{bottom:525.468649pt;}
.y1de{bottom:525.503170pt;}
.y1c0{bottom:530.905927pt;}
.ye7{bottom:535.010934pt;}
.y1b2{bottom:537.245119pt;}
.y8e{bottom:538.800406pt;}
.y169{bottom:539.010815pt;}
.yb0{bottom:539.750813pt;}
.y1dd{bottom:540.864890pt;}
.y50{bottom:546.191583pt;}
.y170{bottom:547.199210pt;}
.y1b8{bottom:547.306000pt;}
.y16e{bottom:547.718000pt;}
.y152{bottom:550.268667pt;}
.ye6{bottom:551.011288pt;}
.y159{bottom:551.119707pt;}
.y8d{bottom:554.163454pt;}
.y20c{bottom:556.032763pt;}
.yaf{bottom:556.068492pt;}
.y16{bottom:556.131139pt;}
.y4f{bottom:561.392649pt;}
.y16a{bottom:563.670339pt;}
.ye5{bottom:567.010314pt;}
.y8c{bottom:569.525175pt;}
.y20b{bottom:571.395811pt;}
.y1dc{bottom:571.429004pt;}
.yae{bottom:571.430213pt;}
.y132{bottom:576.940667pt;}
.y4e{bottom:577.869655pt;}
.y1b3{bottom:579.787440pt;}
.ye4{bottom:583.009340pt;}
.y8b{bottom:584.727569pt;}
.y20a{bottom:586.757532pt;}
.y1db{bottom:586.792053pt;}
.yad{bottom:586.793261pt;}
.y15{bottom:586.854580pt;}
.y14b{bottom:592.932800pt;}
.y4d{bottom:593.072049pt;}
.y130{bottom:593.248762pt;}
.y8a{bottom:601.203246pt;}
.y13c{bottom:601.978036pt;}
.y209{bottom:602.119252pt;}
.y1da{bottom:602.153773pt;}
.y14{bottom:602.216300pt;}
.y138{bottom:607.187467pt;}
.y149{bottom:607.576970pt;}
.y4c{bottom:608.433769pt;}
.y12b{bottom:609.138000pt;}
.y137{bottom:614.411333pt;}
.ye3{bottom:614.529412pt;}
.y136{bottom:615.692190pt;}
.y1c1{bottom:615.989275pt;}
.y89{bottom:616.405640pt;}
.y208{bottom:617.480973pt;}
.yac{bottom:617.515374pt;}
.y13{bottom:617.578021pt;}
.y1b4{bottom:622.328466pt;}
.y13d{bottom:623.468800pt;}
.y4b{bottom:624.751448pt;}
.y1be{bottom:627.527889pt;}
.ye2{bottom:629.892461pt;}
.y88{bottom:631.767361pt;}
.y1d9{bottom:632.875886pt;}
.yab{bottom:632.877094pt;}
.y12{bottom:632.939741pt;}
.y4a{bottom:640.114496pt;}
.y1bd{bottom:643.474133pt;}
.ye1{bottom:645.255509pt;}
.y13e{bottom:646.672996pt;}
.y87{bottom:647.129081pt;}
.y207{bottom:648.045087pt;}
.y1d8{bottom:648.078280pt;}
.y11{bottom:648.142135pt;}
.y49{bottom:655.476216pt;}
.ye0{bottom:660.456575pt;}
.y100{bottom:662.445128pt;}
.y86{bottom:662.490801pt;}
.y206{bottom:663.408135pt;}
.y1d7{bottom:663.440000pt;}
.y10{bottom:663.503856pt;}
.y1bb{bottom:664.391467pt;}
.y1b5{bottom:664.869492pt;}
.y12c{bottom:665.860664pt;}
.y13f{bottom:669.877192pt;}
.y48{bottom:670.678610pt;}
.ydf{bottom:675.819623pt;}
.y85{bottom:677.852522pt;}
.y205{bottom:678.769856pt;}
.yf{bottom:678.866904pt;}
.y105{bottom:686.919652pt;}
.y1ba{bottom:686.934267pt;}
.y47{bottom:687.154288pt;}
.y133{bottom:687.634267pt;}
.yde{bottom:691.182671pt;}
.y140{bottom:693.081388pt;}
.y84{bottom:693.214242pt;}
.y204{bottom:694.131576pt;}
.y1d6{bottom:694.163441pt;}
.ye{bottom:694.228624pt;}
.y139{bottom:696.526267pt;}
.y1c2{bottom:701.071327pt;}
.y46{bottom:702.517336pt;}
.y131{bottom:703.948933pt;}
.ydd{bottom:706.545719pt;}
.y1b6{bottom:707.411814pt;}
.y83{bottom:708.416636pt;}
.y14a{bottom:709.323600pt;}
.y203{bottom:709.493296pt;}
.y1d5{bottom:709.525162pt;}
.yd{bottom:709.590345pt;}
.y104{bottom:709.954267pt;}
.y141{bottom:716.285584pt;}
.y45{bottom:717.879056pt;}
.ydc{bottom:721.908767pt;}
.y12d{bottom:722.583327pt;}
.y82{bottom:723.778357pt;}
.y1d4{bottom:724.727556pt;}
.yc{bottom:724.792739pt;}
.y44{bottom:733.081450pt;}
.y135{bottom:735.962738pt;}
.ydb{bottom:737.271816pt;}
.y81{bottom:739.141405pt;}
.y186{bottom:739.216675pt;}
.y142{bottom:739.489780pt;}
.y202{bottom:740.057411pt;}
.y1d3{bottom:740.089276pt;}
.yb{bottom:740.154459pt;}
.yda{bottom:752.474210pt;}
.y106{bottom:753.784933pt;}
.y185{bottom:754.419069pt;}
.y80{bottom:754.503125pt;}
.y201{bottom:755.420459pt;}
.ya{bottom:755.516179pt;}
.y1a5{bottom:759.977149pt;}
.y143{bottom:762.695272pt;}
.y43{bottom:763.645565pt;}
.yd9{bottom:767.835930pt;}
.y7f{bottom:769.864845pt;}
.y184{bottom:770.736748pt;}
.y200{bottom:770.782179pt;}
.y1d2{bottom:770.814045pt;}
.y9{bottom:770.879227pt;}
.y1a4{bottom:775.977503pt;}
.y12e{bottom:779.305991pt;}
.y42{bottom:779.963244pt;}
.yd8{bottom:783.197650pt;}
.y7e{bottom:785.227894pt;}
.y144{bottom:785.899468pt;}
.y1ff{bottom:786.143900pt;}
.y1d1{bottom:786.175765pt;}
.y8{bottom:786.240948pt;}
.y107{bottom:786.418400pt;}
.y183{bottom:787.213753pt;}
.y1a3{bottom:791.977857pt;}
.y41{bottom:796.440249pt;}
.yd7{bottom:798.559371pt;}
.y14e{bottom:800.254533pt;}
.y7d{bottom:800.428960pt;}
.y150{bottom:800.660056pt;}
.y1fe{bottom:801.505620pt;}
.y1d0{bottom:801.537485pt;}
.y13a{bottom:804.014533pt;}
.y1a2{bottom:807.978210pt;}
.y145{bottom:809.103664pt;}
.y40{bottom:812.757928pt;}
.yd6{bottom:813.922419pt;}
.y7c{bottom:815.792008pt;}
.y7{bottom:816.473132pt;}
.y17f{bottom:817.795021pt;}
.y1a1{bottom:823.977236pt;}
.y17e{bottom:825.895345pt;}
.y3f{bottom:828.119648pt;}
.y151{bottom:828.567867pt;}
.y14d{bottom:829.021200pt;}
.yd5{bottom:829.123485pt;}
.y182{bottom:829.289200pt;}
.y17d{bottom:829.689011pt;}
.y181{bottom:829.690390pt;}
.y7b{bottom:831.153728pt;}
.y1fd{bottom:832.069734pt;}
.y1cf{bottom:832.101600pt;}
.y146{bottom:832.309155pt;}
.y12f{bottom:836.028654pt;}
.y17c{bottom:836.497200pt;}
.y180{bottom:839.299355pt;}
.y1a0{bottom:839.976262pt;}
.y3e{bottom:843.481368pt;}
.yd4{bottom:844.315037pt;}
.y7a{bottom:846.356122pt;}
.y1fc{bottom:847.431455pt;}
.y1ce{bottom:847.464648pt;}
.y134{bottom:848.964970pt;}
.y147{bottom:855.513351pt;}
.y19f{bottom:855.975288pt;}
.y14f{bottom:857.716985pt;}
.y14c{bottom:857.786533pt;}
.y3d{bottom:858.683762pt;}
.yd3{bottom:860.632715pt;}
.y1fb{bottom:862.793175pt;}
.y1cd{bottom:862.826368pt;}
.y79{bottom:862.831800pt;}
.y19e{bottom:871.975642pt;}
.y17b{bottom:873.093179pt;}
.y3c{bottom:875.160768pt;}
.yd2{bottom:875.835109pt;}
.y1fa{bottom:878.154896pt;}
.y1cc{bottom:878.188089pt;}
.y78{bottom:878.194848pt;}
.y148{bottom:878.717547pt;}
.y6{bottom:884.317333pt;}
.y110{bottom:887.339322pt;}
.y19d{bottom:887.974668pt;}
.y17a{bottom:888.454899pt;}
.y3b{bottom:890.522488pt;}
.yd1{bottom:892.310787pt;}
.y77{bottom:893.556568pt;}
.y5{bottom:899.674667pt;}
.y10f{bottom:903.338348pt;}
.y179{bottom:903.817947pt;}
.y3a{bottom:905.724882pt;}
.y102{bottom:906.873333pt;}
.y120{bottom:907.766931pt;}
.y1f9{bottom:908.719010pt;}
.y1cb{bottom:908.752203pt;}
.y76{bottom:908.758962pt;}
.y4{bottom:908.787613pt;}
.y101{bottom:909.272259pt;}
.y178{bottom:919.019014pt;}
.y19c{bottom:919.335415pt;}
.y10e{bottom:919.338702pt;}
.y39{bottom:922.042561pt;}
.y11f{bottom:922.969325pt;}
.yd0{bottom:923.035555pt;}
.y1f8{bottom:924.082058pt;}
.y1ca{bottom:924.113923pt;}
.y75{bottom:924.120683pt;}
.y3{bottom:930.228195pt;}
.y19b{bottom:935.335768pt;}
.y10d{bottom:935.339055pt;}
.y177{bottom:935.496019pt;}
.y38{bottom:938.519566pt;}
.y1f7{bottom:939.443779pt;}
.y11e{bottom:939.445003pt;}
.yaa{bottom:939.475524pt;}
.y74{bottom:939.482403pt;}
.y176{bottom:950.857739pt;}
.y19a{bottom:951.334794pt;}
.y10c{bottom:951.338081pt;}
.ycf{bottom:953.439016pt;}
.y37{bottom:953.881286pt;}
.y2{bottom:954.535589pt;}
.y1f6{bottom:954.805499pt;}
.y11d{bottom:954.808051pt;}
.ya9{bottom:954.837245pt;}
.y1c9{bottom:954.837364pt;}
.y73{bottom:954.844124pt;}
.y175{bottom:966.058460pt;}
.y199{bottom:967.333820pt;}
.y10b{bottom:967.337107pt;}
.y36{bottom:969.083680pt;}
.y11c{bottom:970.169771pt;}
.ya8{bottom:970.198965pt;}
.y1c8{bottom:970.199085pt;}
.y72{bottom:970.205844pt;}
.y174{bottom:982.375655pt;}
.y10a{bottom:983.330215pt;}
.y198{bottom:983.334174pt;}
.yce{bottom:984.321783pt;}
.y35{bottom:984.445401pt;}
.y1f5{bottom:985.530268pt;}
.y11b{bottom:985.531492pt;}
.ya7{bottom:985.560686pt;}
.y1c7{bottom:985.560805pt;}
.y71{bottom:985.567564pt;}
.y173{bottom:998.692188pt;}
.y197{bottom:999.129815pt;}
.y109{bottom:999.329241pt;}
.ycd{bottom:1000.639462pt;}
.y1f4{bottom:1000.732662pt;}
.y11a{bottom:1000.733886pt;}
.y34{bottom:1000.763080pt;}
.y70{bottom:1000.769958pt;}
.y172{bottom:1015.009467pt;}
.y196{bottom:1015.128841pt;}
.y108{bottom:1015.328267pt;}
.y1c6{bottom:1015.806267pt;}
.y1{bottom:1015.809867pt;}
.ycc{bottom:1016.001182pt;}
.y1f3{bottom:1016.094382pt;}
.y119{bottom:1016.095606pt;}
.y33{bottom:1016.124800pt;}
.y6f{bottom:1016.131679pt;}
.h16{height:15.836000pt;}
.h3{height:33.911422pt;}
.h5{height:36.875348pt;}
.h19{height:37.896352pt;}
.hc{height:38.180330pt;}
.h2c{height:38.299941pt;}
.h9{height:38.324011pt;}
.ha{height:38.870030pt;}
.h20{height:47.099430pt;}
.h26{height:48.379758pt;}
.h27{height:48.512187pt;}
.h23{height:50.860328pt;}
.h1c{height:50.862422pt;}
.h1d{height:50.888070pt;}
.h24{height:51.067086pt;}
.h21{height:51.158821pt;}
.h2e{height:51.159354pt;}
.h12{height:52.097451pt;}
.h4{height:52.123383pt;}
.h2b{height:52.130076pt;}
.h10{height:52.146242pt;}
.h17{height:52.147057pt;}
.h11{height:52.187543pt;}
.h18{height:52.190771pt;}
.hf{height:52.289424pt;}
.h6{height:52.327432pt;}
.h15{height:52.828244pt;}
.he{height:52.910240pt;}
.h22{height:52.914723pt;}
.h2d{height:52.936924pt;}
.h1{height:53.523712pt;}
.hd{height:53.967977pt;}
.h7{height:54.137047pt;}
.h8{height:54.171070pt;}
.h28{height:58.228222pt;}
.h29{height:58.231204pt;}
.h2a{height:58.233337pt;}
.h1f{height:58.687289pt;}
.h13{height:58.862835pt;}
.h14{height:58.912075pt;}
.h2{height:59.165987pt;}
.h1b{height:59.550961pt;}
.hb{height:60.443383pt;}
.h25{height:62.597367pt;}
.h1e{height:62.599461pt;}
.h1a{height:74.718205pt;}
.h0{height:1122.666667pt;}
.w2{width:26.233333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x21{left:17.597733pt;}
.x43{left:22.866533pt;}
.x32{left:39.931067pt;}
.x47{left:42.160400pt;}
.x44{left:45.058800pt;}
.x30{left:47.027067pt;}
.x45{left:49.281240pt;}
.x57{left:54.222400pt;}
.x58{left:68.857100pt;}
.x31{left:71.632547pt;}
.x46{left:73.973279pt;}
.x8{left:75.612884pt;}
.x13{left:77.973006pt;}
.xd{left:79.290175pt;}
.xe{left:80.949908pt;}
.x1c{left:82.984369pt;}
.x1{left:85.386667pt;}
.x39{left:98.663867pt;}
.x54{left:104.552334pt;}
.x1b{left:106.590154pt;}
.x15{left:109.467724pt;}
.x11{left:121.462538pt;}
.x14{left:123.339477pt;}
.xf{left:128.044933pt;}
.x4{left:130.672430pt;}
.x1d{left:136.093169pt;}
.x10{left:138.625600pt;}
.x12{left:141.542321pt;}
.x16{left:149.053600pt;}
.xc{left:150.867171pt;}
.x19{left:157.580777pt;}
.x1a{left:160.245550pt;}
.x1e{left:161.850872pt;}
.x3{left:163.290880pt;}
.xb{left:166.882933pt;}
.x53{left:172.889044pt;}
.x59{left:182.028400pt;}
.x52{left:186.379036pt;}
.x18{left:187.615801pt;}
.x17{left:191.113733pt;}
.x5{left:198.003067pt;}
.x20{left:200.561333pt;}
.x1f{left:210.159965pt;}
.x48{left:211.229733pt;}
.x33{left:217.715067pt;}
.x51{left:224.180589pt;}
.x22{left:226.156400pt;}
.x37{left:232.509733pt;}
.x5a{left:238.473733pt;}
.x50{left:249.616539pt;}
.x36{left:258.659755pt;}
.x4f{left:263.896533pt;}
.x2{left:271.586119pt;}
.x34{left:282.124533pt;}
.x24{left:290.783200pt;}
.x38{left:316.691333pt;}
.x23{left:328.855542pt;}
.x35{left:335.384990pt;}
.x6{left:337.174000pt;}
.x3a{left:344.211333pt;}
.x9{left:360.214977pt;}
.x7{left:363.236868pt;}
.x49{left:366.127467pt;}
.x3b{left:371.085714pt;}
.x5f{left:406.831467pt;}
.x4b{left:410.772800pt;}
.x3e{left:411.851467pt;}
.x5d{left:414.372453pt;}
.xa{left:415.521849pt;}
.x2a{left:418.112108pt;}
.x2d{left:419.191279pt;}
.x2e{left:421.022746pt;}
.x25{left:422.905024pt;}
.x3c{left:424.503467pt;}
.x5e{left:426.234468pt;}
.x4a{left:443.330875pt;}
.x3d{left:449.110244pt;}
.x4d{left:478.400933pt;}
.x56{left:487.974417pt;}
.x2c{left:489.342446pt;}
.x40{left:493.960933pt;}
.x2b{left:509.463600pt;}
.x5b{left:543.370400pt;}
.x55{left:545.728909pt;}
.x26{left:548.649067pt;}
.x60{left:550.399733pt;}
.x3f{left:553.793067pt;}
.x27{left:556.966400pt;}
.x5c{left:567.300533pt;}
.x4e{left:571.575227pt;}
.x4c{left:574.258400pt;}
.x42{left:581.881908pt;}
.x28{left:584.321067pt;}
.x29{left:592.479867pt;}
.x41{left:596.839375pt;}
.x2f{left:702.374667pt;}
}




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