
    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_5a44d0da1f1c7eaa830c67a1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_8464fa4a08dfdb3543d932ed.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8b619292d446fb2d315bcfe4.woff')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_d31ac8fed9b2382dc420b725.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1f8e0a8ac909bd49eebb613c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_a2a784b7e911542345c2bf2b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6dc5f43081e08cc0b02be77a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0c22df88877ac46f80ad6fd6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.809082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ed6e46b96335f5f1941bdf67.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d40305ccc11ae88b6983e500.woff')format("woff");}.ffa{font-family:ffa;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;}
.m1{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,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);}
.v6{vertical-align:-13.680000px;}
.v7{vertical-align:-12.240504px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.680000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:26.991000px;}
.v2{vertical-align:29.160000px;}
.v3{vertical-align:30.600432px;}
.lsb4{letter-spacing:-3.018271px;}
.lsac{letter-spacing:-0.983455px;}
.lsab{letter-spacing:-0.622855px;}
.lsc8{letter-spacing:-0.423822px;}
.lsbe{letter-spacing:-0.421481px;}
.lsaf{letter-spacing:-0.412115px;}
.lscb{letter-spacing:-0.405090px;}
.lsee{letter-spacing:-0.402804px;}
.lsc3{letter-spacing:-0.386357px;}
.lsce{letter-spacing:-0.356115px;}
.ls3e{letter-spacing:-0.337392px;}
.lsea{letter-spacing:-0.312624px;}
.lsef{letter-spacing:-0.294588px;}
.lscf{letter-spacing:-0.282043px;}
.lse7{letter-spacing:-0.276552px;}
.lse8{letter-spacing:-0.270540px;}
.lsa3{letter-spacing:-0.270108px;}
.lsec{letter-spacing:-0.246492px;}
.lsf4{letter-spacing:-0.240480px;}
.lse6{letter-spacing:-0.222444px;}
.lse9{letter-spacing:-0.216432px;}
.lsc4{letter-spacing:-0.206057px;}
.lsb6{letter-spacing:-0.201374px;}
.lsc2{letter-spacing:-0.199033px;}
.ls68{letter-spacing:-0.189540px;}
.lsb1{letter-spacing:-0.187325px;}
.lsf1{letter-spacing:-0.186372px;}
.lsbc{letter-spacing:-0.182642px;}
.ls69{letter-spacing:-0.181116px;}
.lsa{letter-spacing:-0.180360px;}
.lsb2{letter-spacing:-0.180300px;}
.lsc1{letter-spacing:-0.177959px;}
.ls62{letter-spacing:-0.177876px;}
.ls41{letter-spacing:-0.168696px;}
.ls34{letter-spacing:-0.148248px;}
.lse3{letter-spacing:-0.144288px;}
.lse4{letter-spacing:-0.138276px;}
.ls53{letter-spacing:-0.127800px;}
.ls56{letter-spacing:-0.126252px;}
.lsc9{letter-spacing:-0.124103px;}
.ls4d{letter-spacing:-0.122688px;}
.ls8c{letter-spacing:-0.118584px;}
.ls4c{letter-spacing:-0.117576px;}
.lse5{letter-spacing:-0.114228px;}
.ls4b{letter-spacing:-0.112464px;}
.ls52{letter-spacing:-0.107352px;}
.ls4f{letter-spacing:-0.102240px;}
.ls33{letter-spacing:-0.097128px;}
.lsb9{letter-spacing:-0.096004px;}
.ls4e{letter-spacing:-0.092016px;}
.ls31{letter-spacing:-0.086904px;}
.lsd3{letter-spacing:-0.086638px;}
.lsbd{letter-spacing:-0.081955px;}
.ls40{letter-spacing:-0.081792px;}
.lscc{letter-spacing:-0.079613px;}
.ls61{letter-spacing:-0.079056px;}
.lsb7{letter-spacing:-0.077271px;}
.ls32{letter-spacing:-0.076680px;}
.ls99{letter-spacing:-0.076032px;}
.lsd5{letter-spacing:-0.074930px;}
.lsb8{letter-spacing:-0.072588px;}
.ls37{letter-spacing:-0.071568px;}
.lsc5{letter-spacing:-0.070247px;}
.ls95{letter-spacing:-0.069120px;}
.lsc6{letter-spacing:-0.067905px;}
.ls36{letter-spacing:-0.066456px;}
.lsf2{letter-spacing:-0.066132px;}
.lsb3{letter-spacing:-0.063222px;}
.ls94{letter-spacing:-0.062208px;}
.ls2f{letter-spacing:-0.061344px;}
.lsba{letter-spacing:-0.060881px;}
.lsc7{letter-spacing:-0.060765px;}
.lsed{letter-spacing:-0.060120px;}
.lsa2{letter-spacing:-0.059292px;}
.lsb5{letter-spacing:-0.058539px;}
.ls3b{letter-spacing:-0.056232px;}
.lsd1{letter-spacing:-0.056197px;}
.ls91{letter-spacing:-0.055296px;}
.lsd0{letter-spacing:-0.053856px;}
.lsbb{letter-spacing:-0.051514px;}
.ls2e{letter-spacing:-0.051120px;}
.lsc0{letter-spacing:-0.049173px;}
.ls93{letter-spacing:-0.048384px;}
.lseb{letter-spacing:-0.048096px;}
.ls8f{letter-spacing:-0.046116px;}
.ls35{letter-spacing:-0.046008px;}
.lsd2{letter-spacing:-0.044490px;}
.lscd{letter-spacing:-0.043886px;}
.lsd{letter-spacing:-0.043200px;}
.ls98{letter-spacing:-0.041472px;}
.ls3d{letter-spacing:-0.040896px;}
.lsca{letter-spacing:-0.040510px;}
.ls9d{letter-spacing:-0.038304px;}
.lsb0{letter-spacing:-0.037465px;}
.ls39{letter-spacing:-0.035784px;}
.lsd4{letter-spacing:-0.035123px;}
.ls92{letter-spacing:-0.034560px;}
.ls90{letter-spacing:-0.032940px;}
.lsad{letter-spacing:-0.032782px;}
.ls2c{letter-spacing:-0.030672px;}
.lsf{letter-spacing:-0.026352px;}
.lsae{letter-spacing:-0.025757px;}
.ls38{letter-spacing:-0.025560px;}
.lse1{letter-spacing:-0.024048px;}
.lsc{letter-spacing:-0.021600px;}
.ls96{letter-spacing:-0.020736px;}
.ls30{letter-spacing:-0.020448px;}
.lsa6{letter-spacing:-0.019764px;}
.ls9e{letter-spacing:-0.019152px;}
.ls2d{letter-spacing:-0.015336px;}
.ls97{letter-spacing:-0.013824px;}
.ls88{letter-spacing:-0.013176px;}
.ls3a{letter-spacing:-0.010224px;}
.ls60{letter-spacing:-0.006588px;}
.lsf3{letter-spacing:-0.006012px;}
.ls3c{letter-spacing:-0.005112px;}
.lsbf{letter-spacing:-0.003376px;}
.ls9{letter-spacing:0.000000px;}
.lsa9{letter-spacing:0.004683px;}
.ls12{letter-spacing:0.005112px;}
.ls5e{letter-spacing:0.006588px;}
.ls42{letter-spacing:0.010224px;}
.lsdd{letter-spacing:0.012024px;}
.ls5f{letter-spacing:0.013176px;}
.ls82{letter-spacing:0.014364px;}
.ls29{letter-spacing:0.015336px;}
.lsaa{letter-spacing:0.017094px;}
.ls6{letter-spacing:0.019764px;}
.lsd8{letter-spacing:0.024048px;}
.ls2{letter-spacing:0.026352px;}
.lsd6{letter-spacing:0.030060px;}
.ls1{letter-spacing:0.032940px;}
.ls6e{letter-spacing:0.039240px;}
.ls59{letter-spacing:0.039528px;}
.lsf0{letter-spacing:0.042084px;}
.ls47{letter-spacing:0.046008px;}
.ls4{letter-spacing:0.046116px;}
.ls50{letter-spacing:0.051120px;}
.ls3{letter-spacing:0.052704px;}
.ls2a{letter-spacing:0.056232px;}
.ls5a{letter-spacing:0.059292px;}
.ls5b{letter-spacing:0.065880px;}
.ls65{letter-spacing:0.072468px;}
.lsdc{letter-spacing:0.078156px;}
.ls57{letter-spacing:0.079056px;}
.ls51{letter-spacing:0.085644px;}
.ls28{letter-spacing:0.086904px;}
.ls63{letter-spacing:0.092232px;}
.lse{letter-spacing:0.098820px;}
.ls3f{letter-spacing:0.102240px;}
.ls54{letter-spacing:0.105408px;}
.lsdb{letter-spacing:0.108216px;}
.ls55{letter-spacing:0.111996px;}
.ls4a{letter-spacing:0.112464px;}
.ls5{letter-spacing:0.118584px;}
.ls9c{letter-spacing:0.125172px;}
.lsda{letter-spacing:0.126252px;}
.ls5d{letter-spacing:0.131760px;}
.ls15{letter-spacing:0.132912px;}
.lsa0{letter-spacing:0.138348px;}
.ls7{letter-spacing:0.144936px;}
.ls8{letter-spacing:0.150300px;}
.ls5c{letter-spacing:0.151524px;}
.ls9b{letter-spacing:0.158112px;}
.lsdf{letter-spacing:0.162324px;}
.ls27{letter-spacing:0.163584px;}
.lsa1{letter-spacing:0.164700px;}
.ls2b{letter-spacing:0.171288px;}
.ls64{letter-spacing:0.177876px;}
.ls66{letter-spacing:0.180360px;}
.ls7d{letter-spacing:0.223992px;}
.ls8a{letter-spacing:0.243756px;}
.ls67{letter-spacing:0.263520px;}
.lsa7{letter-spacing:0.447984px;}
.ls7c{letter-spacing:0.955260px;}
.ls73{letter-spacing:1.067256px;}
.ls7b{letter-spacing:1.311012px;}
.ls7e{letter-spacing:2.193804px;}
.ls79{letter-spacing:2.384856px;}
.lsb{letter-spacing:2.912436px;}
.ls0{letter-spacing:2.950884px;}
.ls6d{letter-spacing:2.974680px;}
.ls76{letter-spacing:3.465288px;}
.ls6c{letter-spacing:4.184280px;}
.ls81{letter-spacing:4.209732px;}
.ls71{letter-spacing:4.301964px;}
.ls70{letter-spacing:4.544280px;}
.ls7a{letter-spacing:6.704280px;}
.ls72{letter-spacing:7.784280px;}
.ls86{letter-spacing:11.041488px;}
.ls58{letter-spacing:12.642372px;}
.ls84{letter-spacing:14.500188px;}
.ls75{letter-spacing:14.519952px;}
.ls77{letter-spacing:14.664888px;}
.ls83{letter-spacing:14.862528px;}
.ls78{letter-spacing:14.882292px;}
.ls74{letter-spacing:15.027228px;}
.ls87{letter-spacing:15.844140px;}
.ls6f{letter-spacing:17.374680px;}
.ls9a{letter-spacing:18.334404px;}
.ls6b{letter-spacing:18.466164px;}
.ls89{letter-spacing:19.540008px;}
.ls8e{letter-spacing:19.968228px;}
.ls80{letter-spacing:20.020932px;}
.ls8d{letter-spacing:20.146104px;}
.ls8b{letter-spacing:20.396448px;}
.ls85{letter-spacing:20.521620px;}
.ls7f{letter-spacing:21.237480px;}
.ls6a{letter-spacing:22.904280px;}
.ls24{letter-spacing:55.628784px;}
.ls11{letter-spacing:70.387128px;}
.ls1f{letter-spacing:232.380000px;}
.lse2{letter-spacing:254.968920px;}
.ls17{letter-spacing:260.460000px;}
.ls23{letter-spacing:297.540000px;}
.ls45{letter-spacing:300.420000px;}
.ls48{letter-spacing:303.300000px;}
.ls21{letter-spacing:314.460000px;}
.ls1e{letter-spacing:315.180000px;}
.ls19{letter-spacing:331.380000px;}
.ls16{letter-spacing:334.980000px;}
.ls14{letter-spacing:342.900000px;}
.ls1b{letter-spacing:354.060000px;}
.ls1d{letter-spacing:371.340000px;}
.ls22{letter-spacing:380.340000px;}
.ls26{letter-spacing:383.220000px;}
.ls25{letter-spacing:391.500000px;}
.ls20{letter-spacing:397.260000px;}
.ls18{letter-spacing:405.900000px;}
.ls43{letter-spacing:406.980000px;}
.ls13{letter-spacing:417.060000px;}
.ls1a{letter-spacing:428.580000px;}
.ls49{letter-spacing:433.980000px;}
.ls1c{letter-spacing:453.780000px;}
.ls44{letter-spacing:473.940000px;}
.ls46{letter-spacing:476.460000px;}
.lsa8{letter-spacing:847.530000px;}
.ls10{letter-spacing:847.533024px;}
.lsa4{letter-spacing:1528.290828px;}
.ls9f{letter-spacing:1674.807948px;}
.lsa5{letter-spacing:1729.527876px;}
.lse0{letter-spacing:1749.690396px;}
.lsd7{letter-spacing:1872.810144px;}
.lsd9{letter-spacing:1922.487300px;}
.lsde{letter-spacing:1945.892016px;}
.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;}
}
.wsb3{word-spacing:-86.401620px;}
.wsba{word-spacing:-86.276448px;}
.wsbc{word-spacing:-86.026104px;}
.wsbd{word-spacing:-85.848228px;}
.wsb8{word-spacing:-85.420008px;}
.wsb6{word-spacing:-81.724140px;}
.wsdf{word-spacing:-80.742528px;}
.wsdd{word-spacing:-66.051288px;}
.wsd9{word-spacing:-65.912940px;}
.wsdc{word-spacing:-65.899764px;}
.ws96{word-spacing:-65.880000px;}
.wsd{word-spacing:-51.120000px;}
.wse0{word-spacing:-47.860848px;}
.wsb5{word-spacing:-41.221332px;}
.wsde{word-spacing:-28.778760px;}
.wsb2{word-spacing:-28.621332px;}
.wsda{word-spacing:-28.418160px;}
.wsb4{word-spacing:-25.535088px;}
.wsdb{word-spacing:-24.951420px;}
.ws12e{word-spacing:-23.415600px;}
.wsb7{word-spacing:-16.647876px;}
.ws1{word-spacing:-16.614936px;}
.ws52{word-spacing:-16.601760px;}
.ws105{word-spacing:-16.595172px;}
.ws4b{word-spacing:-16.568820px;}
.wseb{word-spacing:-16.549056px;}
.ws104{word-spacing:-16.535880px;}
.ws53{word-spacing:-16.529292px;}
.ws54{word-spacing:-16.509528px;}
.wse2{word-spacing:-16.496352px;}
.wse3{word-spacing:-16.489764px;}
.wsec{word-spacing:-16.483176px;}
.wse1{word-spacing:-16.476588px;}
.wsb1{word-spacing:-16.470000px;}
.ws0{word-spacing:-16.443648px;}
.ws16a{word-spacing:-15.210360px;}
.ws16b{word-spacing:-15.192324px;}
.ws163{word-spacing:-15.156252px;}
.ws167{word-spacing:-15.108156px;}
.ws15d{word-spacing:-15.060060px;}
.ws168{word-spacing:-15.042024px;}
.ws15e{word-spacing:-15.005952px;}
.ws162{word-spacing:-14.981904px;}
.ws165{word-spacing:-14.969880px;}
.ws15f{word-spacing:-14.915772px;}
.ws166{word-spacing:-14.885712px;}
.ws169{word-spacing:-14.843628px;}
.ws160{word-spacing:-14.807556px;}
.ws16c{word-spacing:-14.789520px;}
.ws164{word-spacing:-14.783508px;}
.ws161{word-spacing:-14.753448px;}
.wsbe{word-spacing:-14.447484px;}
.ws10{word-spacing:-12.780000px;}
.wse{word-spacing:-12.733992px;}
.wsf{word-spacing:-12.723768px;}
.ws33{word-spacing:-12.657312px;}
.ws32{word-spacing:-12.631752px;}
.ws95{word-spacing:-10.348884px;}
.ws94{word-spacing:-10.340460px;}
.ws13c{word-spacing:-7.637955px;}
.ws13a{word-spacing:-7.563883px;}
.ws120{word-spacing:-6.458022px;}
.ws11a{word-spacing:-6.450998px;}
.ws11f{word-spacing:-6.448656px;}
.ws118{word-spacing:-6.446315px;}
.ws12c{word-spacing:-6.441632px;}
.ws12b{word-spacing:-6.439290px;}
.ws11d{word-spacing:-6.436948px;}
.ws15b{word-spacing:-6.434607px;}
.ws11c{word-spacing:-6.432265px;}
.ws139{word-spacing:-6.429924px;}
.ws122{word-spacing:-6.427582px;}
.ws150{word-spacing:-6.422899px;}
.ws11e{word-spacing:-6.413533px;}
.ws131{word-spacing:-6.385434px;}
.ws127{word-spacing:-6.331578px;}
.ws117{word-spacing:-6.329237px;}
.ws121{word-spacing:-6.326895px;}
.ws116{word-spacing:-6.322212px;}
.ws128{word-spacing:-6.310504px;}
.ws11b{word-spacing:-6.308163px;}
.ws12a{word-spacing:-6.303480px;}
.ws129{word-spacing:-6.123179px;}
.ws123{word-spacing:-6.088056px;}
.ws13b{word-spacing:-6.085714px;}
.wsb9{word-spacing:-4.025268px;}
.ws13f{word-spacing:-3.583872px;}
.wse4{word-spacing:-3.570696px;}
.ws7e{word-spacing:-3.564108px;}
.ws7c{word-spacing:-3.557520px;}
.ws7d{word-spacing:-3.517992px;}
.wsbb{word-spacing:-3.300588px;}
.ws55{word-spacing:-3.195180px;}
.ws5f{word-spacing:-3.182004px;}
.ws56{word-spacing:-3.175416px;}
.ws61{word-spacing:-3.149064px;}
.ws60{word-spacing:-3.142476px;}
.wsa8{word-spacing:-2.852604px;}
.wsad{word-spacing:-2.846016px;}
.wsb0{word-spacing:-2.839428px;}
.wsae{word-spacing:-2.832840px;}
.wsa7{word-spacing:-2.826252px;}
.wsaf{word-spacing:-2.786724px;}
.ws17b{word-spacing:-2.457324px;}
.ws87{word-spacing:-2.101572px;}
.ws5a{word-spacing:-2.094984px;}
.ws59{word-spacing:-2.088396px;}
.ws13e{word-spacing:-1.416420px;}
.ws13d{word-spacing:-1.396656px;}
.ws8d{word-spacing:-0.691740px;}
.wsf0{word-spacing:-0.652212px;}
.ws173{word-spacing:-0.450900px;}
.wsfb{word-spacing:-0.434808px;}
.wse9{word-spacing:-0.428220px;}
.ws180{word-spacing:-0.421632px;}
.ws17c{word-spacing:-0.415044px;}
.wsfa{word-spacing:-0.408456px;}
.wse8{word-spacing:-0.401868px;}
.ws106{word-spacing:-0.395280px;}
.ws17d{word-spacing:-0.388692px;}
.ws178{word-spacing:-0.378756px;}
.ws108{word-spacing:-0.375516px;}
.ws10a{word-spacing:-0.368928px;}
.wsfc{word-spacing:-0.362340px;}
.ws103{word-spacing:-0.355752px;}
.wsfe{word-spacing:-0.349164px;}
.ws10b{word-spacing:-0.342576px;}
.ws82{word-spacing:-0.335988px;}
.ws83{word-spacing:-0.329400px;}
.ws109{word-spacing:-0.322812px;}
.ws2c{word-spacing:-0.311832px;}
.ws102{word-spacing:-0.303048px;}
.ws172{word-spacing:-0.294588px;}
.ws17f{word-spacing:-0.283284px;}
.ws107{word-spacing:-0.250344px;}
.ws171{word-spacing:-0.246492px;}
.ws2e{word-spacing:-0.235152px;}
.ws38{word-spacing:-0.224928px;}
.ws17a{word-spacing:-0.204408px;}
.ws1f{word-spacing:-0.168696px;}
.ws47{word-spacing:-0.158472px;}
.ws5{word-spacing:-0.153792px;}
.ws1d{word-spacing:-0.153360px;}
.ws1e{word-spacing:-0.148248px;}
.ws2f{word-spacing:-0.138024px;}
.ws175{word-spacing:-0.132264px;}
.ws23{word-spacing:-0.127800px;}
.ws174{word-spacing:-0.126252px;}
.ws1c{word-spacing:-0.117576px;}
.ws1b{word-spacing:-0.112464px;}
.ws22{word-spacing:-0.107352px;}
.ws21{word-spacing:-0.102240px;}
.ws24{word-spacing:-0.092016px;}
.ws37{word-spacing:-0.061344px;}
.wsc{word-spacing:-0.060120px;}
.ws51{word-spacing:-0.059292px;}
.ws176{word-spacing:-0.054108px;}
.wsea{word-spacing:-0.032940px;}
.ws97{word-spacing:-0.026352px;}
.ws17e{word-spacing:-0.019764px;}
.ws145{word-spacing:-0.016879px;}
.ws4f{word-spacing:-0.013176px;}
.ws144{word-spacing:-0.011396px;}
.wsa{word-spacing:-0.006588px;}
.ws2{word-spacing:0.000000px;}
.ws4a{word-spacing:0.006588px;}
.ws48{word-spacing:0.013176px;}
.wsd6{word-spacing:0.013824px;}
.ws4{word-spacing:0.019224px;}
.ws49{word-spacing:0.019764px;}
.ws147{word-spacing:0.020255px;}
.wsd5{word-spacing:0.020736px;}
.ws148{word-spacing:0.023631px;}
.ws179{word-spacing:0.024048px;}
.ws50{word-spacing:0.026352px;}
.ws4e{word-spacing:0.032940px;}
.wsd1{word-spacing:0.034560px;}
.ws7{word-spacing:0.039528px;}
.ws146{word-spacing:0.040510px;}
.wsd7{word-spacing:0.041472px;}
.ws177{word-spacing:0.042084px;}
.ws6{word-spacing:0.043200px;}
.ws4d{word-spacing:0.046116px;}
.wsd2{word-spacing:0.048384px;}
.ws4c{word-spacing:0.052704px;}
.wsd0{word-spacing:0.055296px;}
.ws3{word-spacing:0.057672px;}
.ws8{word-spacing:0.059292px;}
.wsd3{word-spacing:0.062208px;}
.ws9{word-spacing:0.065880px;}
.wsd4{word-spacing:0.069120px;}
.wsb{word-spacing:0.072468px;}
.wsd8{word-spacing:0.076032px;}
.ws73{word-spacing:0.079056px;}
.ws98{word-spacing:0.085644px;}
.ws10c{word-spacing:0.105408px;}
.ws3c{word-spacing:0.122688px;}
.ws100{word-spacing:0.151524px;}
.ws36{word-spacing:0.168696px;}
.ws1a{word-spacing:0.173808px;}
.ws31{word-spacing:0.178920px;}
.ws29{word-spacing:0.184032px;}
.ws28{word-spacing:0.189144px;}
.ws12{word-spacing:0.194256px;}
.ws25{word-spacing:0.199368px;}
.ws27{word-spacing:0.204480px;}
.ws14{word-spacing:0.209592px;}
.ws26{word-spacing:0.214704px;}
.ws2a{word-spacing:0.219816px;}
.ws35{word-spacing:0.224928px;}
.ws13{word-spacing:0.230040px;}
.ws2b{word-spacing:0.235152px;}
.ws142{word-spacing:0.236498px;}
.ws20{word-spacing:0.240264px;}
.ws2d{word-spacing:0.245376px;}
.ws3b{word-spacing:0.250488px;}
.ws16{word-spacing:0.255600px;}
.ws17{word-spacing:0.260712px;}
.ws15{word-spacing:0.265824px;}
.ws3a{word-spacing:0.270936px;}
.ws18{word-spacing:0.276048px;}
.ws45{word-spacing:0.286272px;}
.ws34{word-spacing:0.291384px;}
.ws46{word-spacing:0.306720px;}
.ws19{word-spacing:0.327168px;}
.ws30{word-spacing:0.347616px;}
.wsa2{word-spacing:0.349164px;}
.ws15c{word-spacing:0.362340px;}
.wsa3{word-spacing:0.382104px;}
.wsa1{word-spacing:0.388692px;}
.ws5d{word-spacing:0.421632px;}
.wsff{word-spacing:0.428220px;}
.ws101{word-spacing:0.434808px;}
.wsfd{word-spacing:0.441396px;}
.ws5e{word-spacing:0.454572px;}
.wsf9{word-spacing:0.507276px;}
.ws141{word-spacing:0.597098px;}
.ws86{word-spacing:0.764208px;}
.ws84{word-spacing:0.783972px;}
.ws85{word-spacing:0.797148px;}
.ws143{word-spacing:0.957698px;}
.ws119{word-spacing:1.088825px;}
.ws9a{word-spacing:1.824876px;}
.ws72{word-spacing:1.838052px;}
.ws99{word-spacing:1.851228px;}
.wsab{word-spacing:2.523204px;}
.wsaa{word-spacing:2.569320px;}
.wsac{word-spacing:2.575908px;}
.ws5c{word-spacing:2.898720px;}
.ws5b{word-spacing:2.905308px;}
.ws6f{word-spacing:2.931660px;}
.ws93{word-spacing:2.938248px;}
.ws6e{word-spacing:2.944836px;}
.ws170{word-spacing:3.603636px;}
.wsa4{word-spacing:3.610224px;}
.ws16f{word-spacing:3.636576px;}
.ws8b{word-spacing:3.643164px;}
.ws8c{word-spacing:3.656340px;}
.wsa6{word-spacing:3.662928px;}
.wsa5{word-spacing:3.689280px;}
.ws64{word-spacing:3.933036px;}
.ws62{word-spacing:4.005504px;}
.ws63{word-spacing:4.018680px;}
.wscf{word-spacing:4.341492px;}
.wsf5{word-spacing:4.361256px;}
.wsca{word-spacing:4.367844px;}
.wsc5{word-spacing:4.710420px;}
.ws140{word-spacing:4.717008px;}
.wsf3{word-spacing:4.723596px;}
.wsf4{word-spacing:4.769712px;}
.ws9e{word-spacing:5.099112px;}
.ws70{word-spacing:5.408748px;}
.wsef{word-spacing:5.435100px;}
.ws71{word-spacing:5.441688px;}
.wsc7{word-spacing:5.448276px;}
.wsc6{word-spacing:5.461452px;}
.ws79{word-spacing:5.790852px;}
.ws9f{word-spacing:5.797440px;}
.ws78{word-spacing:5.804028px;}
.wsa9{word-spacing:5.817204px;}
.wsa0{word-spacing:5.823792px;}
.ws74{word-spacing:6.153192px;}
.ws75{word-spacing:6.166368px;}
.wsc4{word-spacing:6.871284px;}
.ws89{word-spacing:6.884460px;}
.wsc3{word-spacing:6.897636px;}
.ws8a{word-spacing:6.904224px;}
.wsf1{word-spacing:7.266564px;}
.wsf2{word-spacing:7.273152px;}
.wsc8{word-spacing:7.964892px;}
.wsc9{word-spacing:8.011008px;}
.ws80{word-spacing:8.340408px;}
.ws81{word-spacing:8.353584px;}
.ws7f{word-spacing:8.676396px;}
.ws7b{word-spacing:8.682984px;}
.ws7a{word-spacing:8.696160px;}
.ws88{word-spacing:8.709336px;}
.ws9d{word-spacing:9.012384px;}
.ws9b{word-spacing:9.032148px;}
.ws9c{word-spacing:9.058500px;}
.wscb{word-spacing:9.071676px;}
.wscc{word-spacing:9.104616px;}
.ws57{word-spacing:9.394488px;}
.ws58{word-spacing:9.420840px;}
.wsc2{word-spacing:9.743652px;}
.wsc0{word-spacing:9.750240px;}
.wsc1{word-spacing:9.770004px;}
.ws77{word-spacing:10.441980px;}
.ws76{word-spacing:10.474920px;}
.wsbf{word-spacing:10.481508px;}
.ws92{word-spacing:11.199600px;}
.ws91{word-spacing:11.206188px;}
.wse5{word-spacing:11.219364px;}
.wse6{word-spacing:11.911104px;}
.wse7{word-spacing:11.924280px;}
.ws65{word-spacing:12.306384px;}
.wsee{word-spacing:14.071968px;}
.ws6c{word-spacing:14.085144px;}
.wsed{word-spacing:14.104908px;}
.ws6d{word-spacing:14.118084px;}
.ws68{word-spacing:14.447484px;}
.ws90{word-spacing:14.454072px;}
.ws69{word-spacing:14.473836px;}
.ws6b{word-spacing:15.152400px;}
.ws6a{word-spacing:15.185340px;}
.ws155{word-spacing:18.001913px;}
.wsf8{word-spacing:18.077472px;}
.ws154{word-spacing:18.360172px;}
.ws158{word-spacing:19.114154px;}
.ws15a{word-spacing:19.121179px;}
.ws16e{word-spacing:20.910312px;}
.ws134{word-spacing:20.916339px;}
.ws136{word-spacing:20.918681px;}
.ws135{word-spacing:20.925705px;}
.ws16d{word-spacing:20.943252px;}
.wsf7{word-spacing:22.320144px;}
.wsf6{word-spacing:22.346496px;}
.ws159{word-spacing:25.178795px;}
.ws156{word-spacing:25.183478px;}
.ws157{word-spacing:25.197527px;}
.ws137{word-spacing:26.679735px;}
.wscd{word-spacing:27.373140px;}
.ws132{word-spacing:27.393910px;}
.ws133{word-spacing:27.400935px;}
.wsce{word-spacing:27.419256px;}
.ws138{word-spacing:34.198484px;}
.ws67{word-spacing:34.969104px;}
.ws66{word-spacing:34.982280px;}
.ws8f{word-spacing:35.996832px;}
.ws8e{word-spacing:36.029772px;}
.ws126{word-spacing:57.607059px;}
.ws125{word-spacing:57.630475px;}
.ws124{word-spacing:58.351675px;}
.ws14b{word-spacing:62.655462px;}
.ws14c{word-spacing:62.660146px;}
.ws149{word-spacing:62.664829px;}
.ws14a{word-spacing:62.669512px;}
.ws112{word-spacing:69.094752px;}
.ws152{word-spacing:71.258354px;}
.ws151{word-spacing:71.277086px;}
.ws153{word-spacing:71.637687px;}
.ws113{word-spacing:75.920400px;}
.ws115{word-spacing:75.943815px;}
.ws114{word-spacing:76.693115px;}
.ws42{word-spacing:77.247432px;}
.ws14f{word-spacing:81.357502px;}
.ws14d{word-spacing:81.750884px;}
.ws14e{word-spacing:81.755567px;}
.ws12d{word-spacing:84.223572px;}
.ws12f{word-spacing:84.991603px;}
.ws130{word-spacing:84.996286px;}
.ws40{word-spacing:179.139816px;}
.ws3d{word-spacing:247.180536px;}
.ws3f{word-spacing:252.936648px;}
.ws43{word-spacing:263.768976px;}
.ws11{word-spacing:309.091968px;}
.ws41{word-spacing:309.306672px;}
.ws3e{word-spacing:315.221256px;}
.ws39{word-spacing:334.682640px;}
.ws44{word-spacing:468.218304px;}
.ws111{word-spacing:1392.887664px;}
.ws110{word-spacing:1539.424548px;}
.ws10d{word-spacing:1582.931700px;}
.ws10f{word-spacing:1608.881832px;}
.ws10e{word-spacing:1755.398952px;}
._2c{margin-left:-467.998488px;}
._3{margin-left:-309.219768px;}
._1f{margin-left:-253.136016px;}
._5f{margin-left:-13.675536px;}
._5b{margin-left:-12.381984px;}
._5a{margin-left:-10.435392px;}
._56{margin-left:-7.003044px;}
._55{margin-left:-4.375404px;}
._5{margin-left:-2.418840px;}
._4{margin-left:-1.022400px;}
._0{width:1.106784px;}
._3f{width:2.280708px;}
._59{width:3.860568px;}
._60{width:5.118840px;}
._5c{width:7.270344px;}
._58{width:9.829296px;}
._57{width:11.029356px;}
._38{width:14.349924px;}
._cd{width:15.856848px;}
._5d{width:19.572948px;}
._70{width:21.351708px;}
._67{width:25.607556px;}
._bc{width:27.986211px;}
._63{width:29.171664px;}
._69{width:38.210400px;}
._6d{width:39.422592px;}
._b7{width:40.797774px;}
._66{width:43.968312px;}
._c4{width:45.013320px;}
._64{width:46.807740px;}
._6a{width:54.034776px;}
._71{width:55.538100px;}
._78{width:57.241488px;}
._41{width:58.679316px;}
._c5{width:59.811636px;}
._65{width:61.973316px;}
._a9{width:65.644956px;}
._6f{width:67.072428px;}
._6c{width:68.943420px;}
._6b{width:70.741944px;}
._73{width:72.819972px;}
._b3{width:75.497483px;}
._2{width:76.680000px;}
._2b{width:78.694128px;}
._1c{width:80.738928px;}
._1b{width:82.921752px;}
._b9{width:84.221230px;}
._6e{width:85.420008px;}
._96{width:87.604956px;}
._b4{width:88.663901px;}
._97{width:90.206460px;}
._2e{width:91.443456px;}
._74{width:92.750976px;}
._10{width:94.165920px;}
._b6{width:96.795407px;}
._13{width:98.059320px;}
._f{width:99.911808px;}
._30{width:101.161368px;}
._bf{width:102.195000px;}
._76{width:103.682088px;}
._2a{width:106.477848px;}
._77{width:108.236376px;}
._9c{width:110.184564px;}
._c1{width:112.498488px;}
._28{width:115.071120px;}
._c6{width:119.931852px;}
._54{width:121.766004px;}
._ca{width:123.964272px;}
._9e{width:126.744564px;}
._7e{width:128.953152px;}
._7b{width:130.196376px;}
._bd{width:131.867640px;}
._c3{width:132.896808px;}
._1{width:135.667368px;}
._62{width:136.701000px;}
._1a{width:140.881608px;}
._e{width:142.545888px;}
._b5{width:160.339776px;}
._d{width:162.503136px;}
._2f{width:165.189168px;}
._33{width:166.400712px;}
._1e{width:175.402944px;}
._22{width:180.612072px;}
._ba{width:186.834598px;}
._b8{width:187.978827px;}
._15{width:190.969920px;}
._a{width:196.773984px;}
._5e{width:198.105444px;}
._16{width:203.879664px;}
._37{width:213.993432px;}
._68{width:217.081188px;}
._a4{width:220.315536px;}
._9{width:221.718600px;}
._20{width:224.999568px;}
._61{width:226.798488px;}
._46{width:231.212448px;}
._35{width:235.003752px;}
._18{width:243.792216px;}
._3a{width:253.229544px;}
._31{width:260.921592px;}
._43{width:263.875752px;}
._19{width:266.555016px;}
._a7{width:282.594384px;}
._11{width:286.704288px;}
._ad{width:293.589756px;}
._86{width:297.555732px;}
._7{width:300.443400px;}
._8{width:303.676128px;}
._c{width:307.019376px;}
._21{width:311.479272px;}
._c2{width:313.921080px;}
._12{width:315.751392px;}
._c8{width:317.604924px;}
._94{width:319.515732px;}
._c7{width:320.899032px;}
._a3{width:322.710912px;}
._3c{width:325.796364px;}
._88{width:333.423000px;}
._50{width:336.482100px;}
._29{width:340.781256px;}
._1d{width:349.032024px;}
._14{width:354.295152px;}
._3e{width:357.082776px;}
._8d{width:359.603712px;}
._9b{width:364.424652px;}
._85{width:367.195536px;}
._a5{width:370.451952px;}
._b{width:372.279168px;}
._6{width:374.165496px;}
._80{width:375.195312px;}
._8a{width:381.595536px;}
._cf{width:383.751288px;}
._8f{width:388.142928px;}
._b0{width:389.155536px;}
._98{width:392.411952px;}
._c0{width:393.964272px;}
._25{width:397.391544px;}
._a0{width:401.606604px;}
._24{width:405.294696px;}
._9d{width:407.240064px;}
._23{width:412.947360px;}
._cc{width:414.119556px;}
._8c{width:418.500432px;}
._8e{width:423.566604px;}
._87{width:425.515536px;}
._8b{width:429.115536px;}
._27{width:434.576232px;}
._3d{width:437.759424px;}
._26{width:439.795584px;}
._ce{width:444.324924px;}
._a1{width:447.221916px;}
._82{width:451.220832px;}
._2d{width:456.486264px;}
._17{width:459.622800px;}
._84{width:462.262320px;}
._cb{width:467.404272px;}
._89{width:469.181916px;}
._9f{width:472.684032px;}
._90{width:473.813280px;}
._7a{width:480.418848px;}
._a2{width:484.222320px;}
._79{width:491.868792px;}
._92{width:494.644032px;}
._b1{width:502.378848px;}
._ae{width:505.934172px;}
._75{width:510.150492px;}
._b2{width:513.828792px;}
._32{width:525.503376px;}
._81{width:527.872212px;}
._7c{width:532.398168px;}
._95{width:542.875536px;}
._36{width:543.983256px;}
._4b{width:549.254736px;}
._7d{width:554.035536px;}
._7f{width:557.274456px;}
._a8{width:561.477600px;}
._72{width:573.112188px;}
._aa{width:575.995536px;}
._83{width:579.535308px;}
._93{width:583.437600px;}
._be{width:586.630152px;}
._34{width:593.641224px;}
._ab{width:595.078596px;}
._39{width:596.879388px;}
._53{width:600.199740px;}
._af{width:601.495308px;}
._91{width:605.230704px;}
._a6{width:632.884932px;}
._51{width:640.900404px;}
._c9{width:646.390152px;}
._99{width:654.844932px;}
._52{width:684.809424px;}
._ac{width:697.124520px;}
._4d{width:709.949232px;}
._9a{width:719.084520px;}
._3b{width:728.639388px;}
._44{width:764.280468px;}
._47{width:808.123608px;}
._bb{width:818.281296px;}
._4a{width:859.674708px;}
._40{width:864.681588px;}
._4c{width:1003.391928px;}
._49{width:1011.956328px;}
._4e{width:1033.920720px;}
._45{width:1052.274888px;}
._42{width:1090.794924px;}
._48{width:1096.559424px;}
._4f{width:1139.822820px;}
.fc5{color:rgb(148,138,84);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(77,77,77);}
.fc6{color:rgb(26,26,26);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:23.415600px;}
.fsb{font-size:28.489200px;}
.fs6{font-size:33.120000px;}
.fsc{font-size:33.758400px;}
.fs7{font-size:42.120000px;}
.fs8{font-size:47.880000px;}
.fs5{font-size:51.120000px;}
.fsd{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs9{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.120000px;}
.fs2{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y83{bottom:2.789850px;}
.y2d{bottom:2.790000px;}
.y35{bottom:2.880000px;}
.y27b{bottom:3.240000px;}
.y143{bottom:3.600000px;}
.y2{bottom:57.240000px;}
.y2c0{bottom:115.929765px;}
.y1f3{bottom:117.180000px;}
.y1e7{bottom:120.780000px;}
.y150{bottom:131.940090px;}
.y1b9{bottom:133.290000px;}
.y1b8{bottom:136.890000px;}
.y2c4{bottom:138.420000px;}
.y77{bottom:140.670000px;}
.yca{bottom:141.660000px;}
.y1e6{bottom:144.270000px;}
.y14f{bottom:150.930000px;}
.y2b1{bottom:152.640360px;}
.y11d{bottom:153.902070px;}
.y2bf{bottom:153.909585px;}
.y76{bottom:156.240000px;}
.y2c3{bottom:156.690000px;}
.yc9{bottom:157.770000px;}
.y1b7{bottom:160.380000px;}
.yc8{bottom:160.560000px;}
.y1f2{bottom:164.160000px;}
.y14d{bottom:167.040000px;}
.y1e5{bottom:167.760000px;}
.yc5{bottom:168.300000px;}
.y75{bottom:168.930000px;}
.y14e{bottom:170.640000px;}
.y74{bottom:171.720000px;}
.y2c2{bottom:172.899495px;}
.yc6{bottom:173.160000px;}
.yc7{bottom:175.950000px;}
.y1b6{bottom:180.180000px;}
.y1b5{bottom:183.780000px;}
.y14b{bottom:186.030000px;}
.y73{bottom:186.300000px;}
.y1f1{bottom:187.650000px;}
.y14c{bottom:189.630000px;}
.y2b0{bottom:190.620180px;}
.y1e4{bottom:191.250000px;}
.yc4{bottom:191.339550px;}
.y11c{bottom:191.791305px;}
.y2be{bottom:191.798820px;}
.y2c1{bottom:191.889405px;}
.y70{bottom:193.680000px;}
.yc3{bottom:198.720000px;}
.y72{bottom:200.970000px;}
.y149{bottom:205.020000px;}
.y1b4{bottom:207.270000px;}
.y14a{bottom:208.620000px;}
.y1fe{bottom:211.140000px;}
.y1e3{bottom:214.740000px;}
.y71{bottom:215.640000px;}
.yc2{bottom:221.490288px;}
.y147{bottom:223.920000px;}
.y256{bottom:226.171710px;}
.y148{bottom:227.520000px;}
.y2af{bottom:228.600000px;}
.yc1{bottom:228.780000px;}
.y11b{bottom:229.771125px;}
.y2bd{bottom:229.778640px;}
.y1b3{bottom:230.760000px;}
.y24c{bottom:230.940000px;}
.y6f{bottom:231.120000px;}
.y1fd{bottom:234.540000px;}
.y1e2{bottom:238.140000px;}
.y241{bottom:239.130000px;}
.y145{bottom:242.910000px;}
.y6e{bottom:245.790000px;}
.y6c{bottom:245.880000px;}
.y146{bottom:246.510000px;}
.y2ae{bottom:248.040000px;}
.ybf{bottom:248.760000px;}
.y26a{bottom:250.740040px;}
.y2ad{bottom:251.280000px;}
.yc0{bottom:251.550000px;}
.ybe{bottom:251.550126px;}
.y242{bottom:251.999799px;}
.y1b2{bottom:254.250000px;}
.y1fc{bottom:258.030000px;}
.y6d{bottom:260.730000px;}
.y26b{bottom:261.270035px;}
.y1e1{bottom:261.630000px;}
.y142{bottom:261.900000px;}
.y203{bottom:263.340000px;}
.y243{bottom:264.599734px;}
.y144{bottom:265.500000px;}
.yb5{bottom:266.220000px;}
.ybb{bottom:266.220288px;}
.y11a{bottom:267.750945px;}
.y2bc{bottom:267.758460px;}
.y2ac{bottom:269.820000px;}
.y26c{bottom:271.800031px;}
.y2ab{bottom:273.060000px;}
.y6b{bottom:273.330000px;}
.yba{bottom:273.510000px;}
.y6a{bottom:276.120000px;}
.y244{bottom:277.199668px;}
.y1b1{bottom:277.740000px;}
.ybd{bottom:280.799712px;}
.y26d{bottom:282.330026px;}
.y202{bottom:284.040000px;}
.y141{bottom:284.491980px;}
.y1e0{bottom:285.120000px;}
.y245{bottom:289.799602px;}
.y69{bottom:290.790000px;}
.y5e{bottom:290.880000px;}
.y2aa{bottom:291.600000px;}
.y26e{bottom:292.860021px;}
.y2a9{bottom:294.840000px;}
.ybc{bottom:295.469874px;}
.y1b0{bottom:297.540000px;}
.y1af{bottom:301.140000px;}
.y246{bottom:302.399537px;}
.y26f{bottom:303.480167px;}
.y140{bottom:303.481890px;}
.y1f9{bottom:305.010000px;}
.y119{bottom:305.640180px;}
.y2bb{bottom:305.647695px;}
.y68{bottom:305.730000px;}
.yb8{bottom:308.160000px;}
.y1df{bottom:308.610000px;}
.yb9{bottom:310.950000px;}
.y2a8{bottom:313.290000px;}
.y270{bottom:314.010162px;}
.y247{bottom:315.089621px;}
.y2a7{bottom:316.530000px;}
.yb7{bottom:318.240000px;}
.y67{bottom:321.120000px;}
.y13f{bottom:322.381215px;}
.y271{bottom:324.540157px;}
.y1ae{bottom:324.630000px;}
.y248{bottom:327.599405px;}
.y1f8{bottom:328.500000px;}
.y1de{bottom:332.100000px;}
.y2a6{bottom:335.070000px;}
.y272{bottom:335.070152px;}
.y66{bottom:335.790000px;}
.y64{bottom:335.880000px;}
.y2a5{bottom:338.310000px;}
.y249{bottom:340.289490px;}
.yb6{bottom:341.009838px;}
.y13e{bottom:341.371125px;}
.y118{bottom:343.620000px;}
.y2ba{bottom:343.627515px;}
.y1ad{bottom:344.520000px;}
.y273{bottom:345.600148px;}
.y1ac{bottom:348.120000px;}
.y65{bottom:350.730000px;}
.y1ee{bottom:351.990000px;}
.y24a{bottom:352.889424px;}
.y1dd{bottom:355.590000px;}
.y274{bottom:356.130143px;}
.yb4{bottom:356.400000px;}
.y2a4{bottom:356.850000px;}
.y2a3{bottom:360.090000px;}
.y13d{bottom:360.361035px;}
.y24b{bottom:365.489358px;}
.y63{bottom:366.120000px;}
.y275{bottom:366.750289px;}
.y1ab{bottom:371.610000px;}
.yb3{bottom:371.789838px;}
.y1ed{bottom:375.390000px;}
.y22{bottom:377.190090px;}
.y240{bottom:378.630000px;}
.y1dc{bottom:378.990000px;}
.y13c{bottom:379.350945px;}
.y62{bottom:380.790000px;}
.y117{bottom:381.607155px;}
.y2b9{bottom:381.607335px;}
.y2a2{bottom:381.780000px;}
.yb1{bottom:386.460000px;}
.y5f{bottom:388.170000px;}
.y24d{bottom:391.770000px;}
.y1aa{bottom:395.100000px;}
.y61{bottom:395.460000px;}
.y21{bottom:396.180000px;}
.y13b{bottom:398.340855px;}
.yb2{bottom:401.130162px;}
.y1db{bottom:402.480000px;}
.y2a1{bottom:403.560000px;}
.y23e{bottom:406.530000px;}
.y60{bottom:410.130000px;}
.y182{bottom:411.749271px;}
.yaf{bottom:413.730000px;}
.y232{bottom:414.720000px;}
.y1a9{bottom:414.990000px;}
.y20{bottom:415.174050px;}
.yb0{bottom:416.520000px;}
.y13a{bottom:417.330765px;}
.y1a8{bottom:418.590000px;}
.y116{bottom:419.496390px;}
.y2b8{bottom:419.496570px;}
.y2a0{bottom:422.100000px;}
.y5d{bottom:422.730000px;}
.y29f{bottom:425.340000px;}
.y5c{bottom:425.520000px;}
.y1da{bottom:425.970000px;}
.y233{bottom:426.959920px;}
.yae{bottom:431.190000px;}
.y1f{bottom:434.163960px;}
.y139{bottom:436.230090px;}
.y234{bottom:438.390245px;}
.y164{bottom:440.101908px;}
.y5b{bottom:441.180000px;}
.y1a7{bottom:441.990000px;}
.y29e{bottom:443.790000px;}
.yad{bottom:446.760000px;}
.y29d{bottom:447.030000px;}
.y1d9{bottom:449.460000px;}
.y235{bottom:449.910134px;}
.y181{bottom:450.630720px;}
.y1e{bottom:453.063285px;}
.y138{bottom:455.220000px;}
.y5a{bottom:455.850000px;}
.y115{bottom:457.476210px;}
.y2b7{bottom:457.476390px;}
.y236{bottom:461.430024px;}
.yac{bottom:462.150000px;}
.y1a6{bottom:465.480000px;}
.y29c{bottom:465.570000px;}
.y29b{bottom:468.810000px;}
.y1fb{bottom:469.350000px;}
.y59{bottom:470.520000px;}
.y1d{bottom:472.053195px;}
.y237{bottom:472.860349px;}
.y1d8{bottom:472.950000px;}
.y137{bottom:474.210000px;}
.yab{bottom:474.840000px;}
.yaa{bottom:477.630000px;}
.y163{bottom:477.991143px;}
.y238{bottom:484.380239px;}
.y58{bottom:485.190000px;}
.y29a{bottom:487.350000px;}
.y1a5{bottom:488.970000px;}
.y180{bottom:490.410000px;}
.y299{bottom:490.590000px;}
.y1c{bottom:491.043105px;}
.ya9{bottom:493.020000px;}
.y136{bottom:493.921485px;}
.y114{bottom:495.456030px;}
.y2b6{bottom:495.456210px;}
.y239{bottom:495.810564px;}
.y1d7{bottom:496.350000px;}
.y57{bottom:500.760000px;}
.y23a{bottom:507.330454px;}
.ya8{bottom:508.410000px;}
.y298{bottom:509.040000px;}
.y1b{bottom:510.033015px;}
.y17f{bottom:510.210000px;}
.y297{bottom:512.280000px;}
.y1a4{bottom:512.460000px;}
.y56{bottom:515.430000px;}
.y201{bottom:516.240000px;}
.y161{bottom:516.420594px;}
.y23b{bottom:518.850344px;}
.y162{bottom:519.480720px;}
.y1d6{bottom:519.840000px;}
.ya7{bottom:523.800000px;}
.y1a{bottom:529.022925px;}
.y255{bottom:529.379975px;}
.y17e{bottom:530.010000px;}
.y23c{bottom:530.280669px;}
.y296{bottom:530.820000px;}
.y55{bottom:531.000000px;}
.y135{bottom:532.621044px;}
.y113{bottom:533.345265px;}
.y2b5{bottom:533.345445px;}
.y295{bottom:534.060000px;}
.y1a3{bottom:535.950000px;}
.ya6{bottom:539.280198px;}
.y1d5{bottom:539.730000px;}
.y254{bottom:540.630000px;}
.y23d{bottom:541.710994px;}
.y1d4{bottom:543.330000px;}
.y54{bottom:543.600000px;}
.y53{bottom:546.390000px;}
.y19{bottom:548.012835px;}
.y17d{bottom:549.900000px;}
.yee{bottom:551.340000px;}
.y294{bottom:552.600000px;}
.y253{bottom:552.690000px;}
.y231{bottom:554.220000px;}
.ya5{bottom:554.670000px;}
.y1a2{bottom:555.750000px;}
.y293{bottom:555.840000px;}
.y160{bottom:556.111431px;}
.y52{bottom:558.990000px;}
.y1a1{bottom:559.350000px;}
.y51{bottom:561.780000px;}
.y1ec{bottom:563.220000px;}
.y1d3{bottom:566.820000px;}
.y18{bottom:566.912160px;}
.y23f{bottom:567.450000px;}
.y17c{bottom:569.700000px;}
.yed{bottom:570.240000px;}
.ya4{bottom:570.330000px;}
.y134{bottom:570.600864px;}
.y195{bottom:570.780765px;}
.y112{bottom:571.325085px;}
.y2b4{bottom:571.325265px;}
.y292{bottom:574.290000px;}
.y252{bottom:576.450075px;}
.y50{bottom:577.260000px;}
.y291{bottom:577.530000px;}
.y22f{bottom:582.120000px;}
.y1a0{bottom:582.840000px;}
.y4c{bottom:584.910000px;}
.ya3{bottom:585.000000px;}
.yec{bottom:585.630000px;}
.y17{bottom:585.902070px;}
.y1d2{bottom:586.710000px;}
.y251{bottom:587.609950px;}
.y17b{bottom:589.590000px;}
.y1d1{bottom:590.310000px;}
.y219{bottom:590.400000px;}
.y4f{bottom:592.650000px;}
.y15f{bottom:594.361359px;}
.yea{bottom:598.320000px;}
.y250{bottom:598.950125px;}
.y290{bottom:599.310000px;}
.y21a{bottom:599.310221px;}
.ya2{bottom:599.670000px;}
.yeb{bottom:601.110000px;}
.ye9{bottom:601.110288px;}
.y19f{bottom:602.730000px;}
.y16{bottom:604.891980px;}
.y21b{bottom:605.340324px;}
.y19e{bottom:606.330000px;}
.y4e{bottom:608.040000px;}
.ye8{bottom:608.400000px;}
.y194{bottom:608.670000px;}
.y133{bottom:608.941377px;}
.y111{bottom:609.214320px;}
.y2b3{bottom:609.214500px;}
.y17a{bottom:609.390000px;}
.y24f{bottom:610.110000px;}
.y1eb{bottom:610.200000px;}
.y21c{bottom:611.460576px;}
.y1d0{bottom:613.800000px;}
.ya1{bottom:614.340000px;}
.y21d{bottom:617.490678px;}
.y28f{bottom:621.090000px;}
.y24e{bottom:622.260000px;}
.y4d{bottom:623.430000px;}
.y21e{bottom:623.520781px;}
.y15{bottom:623.881890px;}
.y192{bottom:628.200000px;}
.y105{bottom:628.200360px;}
.ya0{bottom:628.920000px;}
.y179{bottom:629.190000px;}
.y21f{bottom:629.641033px;}
.y19d{bottom:629.820000px;}
.ye7{bottom:631.170288px;}
.y193{bottom:631.800000px;}
.y191{bottom:631.801368px;}
.y15e{bottom:632.250594px;}
.y1cf{bottom:633.600000px;}
.y220{bottom:635.671136px;}
.y4a{bottom:636.030000px;}
.y1ce{bottom:637.200000px;}
.ye6{bottom:638.460000px;}
.y4b{bottom:638.820000px;}
.y28e{bottom:639.540000px;}
.y221{bottom:641.791388px;}
.y28d{bottom:642.780000px;}
.y14{bottom:642.871800px;}
.y9f{bottom:643.590000px;}
.ye0{bottom:645.030000px;}
.y104{bottom:647.190270px;}
.y132{bottom:647.191305px;}
.y110{bottom:647.194140px;}
.y2b2{bottom:647.194320px;}
.y222{bottom:647.821490px;}
.y178{bottom:649.080000px;}
.y19c{bottom:653.310000px;}
.y49{bottom:653.490000px;}
.y223{bottom:653.941743px;}
.y190{bottom:655.290882px;}
.y1f7{bottom:657.090000px;}
.y9e{bottom:658.260000px;}
.y224{bottom:659.971845px;}
.y1cd{bottom:660.690000px;}
.ye5{bottom:661.229928px;}
.y28c{bottom:661.320000px;}
.y13{bottom:661.771125px;}
.y28b{bottom:664.560000px;}
.y225{bottom:666.092098px;}
.y103{bottom:666.180180px;}
.y177{bottom:668.880000px;}
.y48{bottom:669.060000px;}
.y15d{bottom:670.230414px;}
.y226{bottom:672.122200px;}
.y9d{bottom:672.930000px;}
.ye3{bottom:675.900090px;}
.y19b{bottom:676.800000px;}
.y227{bottom:678.242453px;}
.y18f{bottom:678.780396px;}
.y1cc{bottom:680.580000px;}
.y12{bottom:680.761035px;}
.y28a{bottom:683.010000px;}
.y47{bottom:683.730000px;}
.y1cb{bottom:684.180000px;}
.y228{bottom:684.272555px;}
.y102{bottom:685.170090px;}
.y131{bottom:685.171125px;}
.y10f{bottom:685.173960px;}
.y126{bottom:685.174140px;}
.y289{bottom:686.250000px;}
.y9c{bottom:688.500000px;}
.y176{bottom:688.770000px;}
.y229{bottom:690.302657px;}
.ye1{bottom:690.570252px;}
.y22a{bottom:696.422910px;}
.y46{bottom:699.300000px;}
.y11{bottom:699.750945px;}
.y19a{bottom:700.200000px;}
.y18e{bottom:702.269910px;}
.y22b{bottom:702.453012px;}
.y9b{bottom:703.889550px;}
.y1ea{bottom:704.070000px;}
.y101{bottom:704.160000px;}
.y288{bottom:704.790000px;}
.ye2{bottom:705.240414px;}
.y1ca{bottom:707.670000px;}
.y287{bottom:708.030000px;}
.y22c{bottom:708.483115px;}
.y175{bottom:708.570000px;}
.y15c{bottom:708.659865px;}
.y9a{bottom:711.270000px;}
.y45{bottom:713.970000px;}
.y22d{bottom:714.603367px;}
.y10{bottom:718.740855px;}
.ye4{bottom:719.819838px;}
.y22e{bottom:720.633469px;}
.y130{bottom:723.060360px;}
.y10e{bottom:723.063195px;}
.y125{bottom:723.063375px;}
.y100{bottom:723.150000px;}
.y199{bottom:723.690000px;}
.y18d{bottom:725.759424px;}
.y286{bottom:726.570000px;}
.y1f6{bottom:727.560000px;}
.y174{bottom:728.370000px;}
.y44{bottom:728.640000px;}
.y285{bottom:729.810000px;}
.y218{bottom:729.900000px;}
.y1c9{bottom:731.160000px;}
.y99{bottom:734.039010px;}
.ydf{bottom:735.299838px;}
.yf{bottom:737.730765px;}
.y96{bottom:741.330000px;}
.yff{bottom:742.050000px;}
.y230{bottom:743.040000px;}
.y43{bottom:743.310000px;}
.y18b{bottom:745.560000px;}
.y15b{bottom:746.819208px;}
.y198{bottom:747.180000px;}
.y173{bottom:748.260000px;}
.y18c{bottom:749.160000px;}
.y18a{bottom:749.161944px;}
.ydd{bottom:749.970000px;}
.y1fa{bottom:750.960000px;}
.y284{bottom:751.500000px;}
.y1c8{bottom:754.560000px;}
.ye{bottom:756.720675px;}
.y216{bottom:757.800000px;}
.y42{bottom:757.980000px;}
.yfe{bottom:761.040090px;}
.y12f{bottom:761.040180px;}
.y10d{bottom:761.043015px;}
.y124{bottom:761.043195px;}
.y98{bottom:764.100126px;}
.yde{bottom:764.549424px;}
.y205{bottom:765.990000px;}
.y172{bottom:768.060000px;}
.y197{bottom:770.670000px;}
.y97{bottom:771.389838px;}
.y41{bottom:772.650000px;}
.y189{bottom:772.651458px;}
.y283{bottom:773.280000px;}
.y1f5{bottom:774.450000px;}
.y257{bottom:775.350386px;}
.yd{bottom:775.620000px;}
.y206{bottom:776.069830px;}
.y12d{bottom:777.780765px;}
.y1c7{bottom:778.050000px;}
.ydc{bottom:780.029838px;}
.yfd{bottom:780.030000px;}
.y258{bottom:782.010368px;}
.y15a{bottom:783.810000px;}
.y207{bottom:783.990157px;}
.y159{bottom:787.230747px;}
.y40{bottom:787.320000px;}
.y171{bottom:787.950000px;}
.y259{bottom:788.670350px;}
.y208{bottom:791.909898px;}
.y95{bottom:794.160000px;}
.yda{bottom:794.700000px;}
.yc{bottom:794.880000px;}
.y196{bottom:794.882457px;}
.y282{bottom:795.060000px;}
.y25a{bottom:795.420482px;}
.y188{bottom:796.140972px;}
.y1f4{bottom:797.940000px;}
.yfc{bottom:799.020000px;}
.y12e{bottom:799.020765px;}
.y10c{bottom:799.022835px;}
.y123{bottom:799.023015px;}
.y209{bottom:799.830225px;}
.y1c6{bottom:801.540000px;}
.y25b{bottom:802.080464px;}
.y3f{bottom:802.890000px;}
.y170{bottom:807.750000px;}
.y20a{bottom:807.840116px;}
.y25c{bottom:808.830596px;}
.ydb{bottom:809.370162px;}
.y94{bottom:809.730000px;}
.y281{bottom:813.510000px;}
.y3e{bottom:815.490000px;}
.y25d{bottom:815.490578px;}
.y12c{bottom:815.670000px;}
.y20b{bottom:815.760443px;}
.y280{bottom:816.750000px;}
.yfb{bottom:818.010000px;}
.y3d{bottom:818.280000px;}
.yb{bottom:818.730000px;}
.y187{bottom:819.630486px;}
.y1f0{bottom:821.430000px;}
.y25e{bottom:822.240710px;}
.y20c{bottom:823.680770px;}
.yd9{bottom:824.759838px;}
.y1c5{bottom:825.030000px;}
.y90{bottom:825.119676px;}
.y16f{bottom:827.550000px;}
.y158{bottom:827.910162px;}
.y25f{bottom:828.900693px;}
.y3c{bottom:830.880000px;}
.y20d{bottom:831.601097px;}
.y3b{bottom:833.670000px;}
.y27f{bottom:835.290000px;}
.y12b{bottom:835.470765px;}
.y260{bottom:835.650825px;}
.yfa{bottom:836.911035px;}
.y10b{bottom:836.912070px;}
.y122{bottom:836.912250px;}
.y27e{bottom:838.530000px;}
.yd7{bottom:839.430000px;}
.y93{bottom:839.609640px;}
.y20e{bottom:839.610988px;}
.y8f{bottom:839.789838px;}
.y261{bottom:842.310807px;}
.ya{bottom:842.490000px;}
.y186{bottom:843.120000px;}
.y1ef{bottom:844.920000px;}
.y16e{bottom:847.440000px;}
.y20f{bottom:847.531315px;}
.y1c4{bottom:848.520000px;}
.y262{bottom:848.970789px;}
.y36{bottom:849.150000px;}
.yd8{bottom:854.100162px;}
.y92{bottom:854.279802px;}
.y8c{bottom:854.460000px;}
.y12a{bottom:854.460675px;}
.y210{bottom:855.451056px;}
.y263{bottom:855.720921px;}
.yf9{bottom:855.900945px;}
.y27d{bottom:857.070000px;}
.y27c{bottom:860.310000px;}
.y3a{bottom:861.750000px;}
.y264{bottom:862.380903px;}
.y211{bottom:863.371383px;}
.y39{bottom:864.540000px;}
.y157{bottom:865.260000px;}
.y9{bottom:866.340000px;}
.y16d{bottom:867.240000px;}
.y185{bottom:867.329235px;}
.y200{bottom:868.320000px;}
.y156{bottom:868.679469px;}
.y91{bottom:868.949964px;}
.y8e{bottom:869.130162px;}
.y265{bottom:869.131035px;}
.yd6{bottom:869.489838px;}
.y212{bottom:871.291709px;}
.y1c3{bottom:871.920000px;}
.y129{bottom:873.360000px;}
.yf8{bottom:874.890855px;}
.y10a{bottom:874.891890px;}
.y121{bottom:874.892070px;}
.y266{bottom:875.791017px;}
.y38{bottom:877.140000px;}
.y27a{bottom:878.760000px;}
.y213{bottom:879.301601px;}
.y37{bottom:879.930000px;}
.y279{bottom:882.000000px;}
.y267{bottom:882.541149px;}
.y8d{bottom:883.800324px;}
.ycb{bottom:884.160000px;}
.y8{bottom:887.040000px;}
.y16c{bottom:887.130000px;}
.y214{bottom:887.221927px;}
.y268{bottom:889.201131px;}
.y1e9{bottom:891.810000px;}
.y128{bottom:892.350000px;}
.y34{bottom:892.530000px;}
.yf7{bottom:893.880765px;}
.y215{bottom:895.142254px;}
.y33{bottom:895.410000px;}
.y269{bottom:895.861113px;}
.yd5{bottom:898.830162px;}
.y8b{bottom:899.190000px;}
.y278{bottom:903.780000px;}
.y204{bottom:905.490000px;}
.y155{bottom:906.390000px;}
.y16b{bottom:906.930000px;}
.y32{bottom:908.100000px;}
.y154{bottom:909.809865px;}
.y31{bottom:910.890000px;}
.y8a{bottom:911.790000px;}
.y184{bottom:911.790441px;}
.y127{bottom:912.061566px;}
.y109{bottom:912.781125px;}
.y120{bottom:912.781305px;}
.yf6{bottom:912.870675px;}
.yd4{bottom:914.219838px;}
.y89{bottom:914.580000px;}
.y1ff{bottom:915.300000px;}
.y7{bottom:918.000225px;}
.y217{bottom:918.630000px;}
.y1c2{bottom:918.900000px;}
.y277{bottom:925.560000px;}
.y2a{bottom:926.190000px;}
.y30{bottom:926.280000px;}
.y16a{bottom:926.730000px;}
.y88{bottom:927.180000px;}
.yd2{bottom:928.890000px;}
.y87{bottom:929.970000px;}
.yf5{bottom:931.770000px;}
.y2f{bottom:938.880000px;}
.y2e{bottom:941.670000px;}
.y1c1{bottom:942.390000px;}
.y86{bottom:942.660000px;}
.yd3{bottom:943.560162px;}
.y85{bottom:945.450000px;}
.y6{bottom:945.629919px;}
.y169{bottom:946.620000px;}
.y153{bottom:947.969208px;}
.y276{bottom:948.060000px;}
.y183{bottom:950.491017px;}
.yf4{bottom:950.760000px;}
.y108{bottom:950.760945px;}
.y11f{bottom:950.761125px;}
.y2c{bottom:954.360000px;}
.y2b{bottom:957.150000px;}
.yd1{bottom:958.949838px;}
.y84{bottom:960.840000px;}
.y1c0{bottom:962.280000px;}
.y1bf{bottom:965.880000px;}
.y168{bottom:966.420000px;}
.y7b{bottom:968.129838px;}
.yf3{bottom:969.751035px;}
.y29{bottom:972.540000px;}
.y5{bottom:973.259613px;}
.y82{bottom:973.440000px;}
.ycf{bottom:973.620000px;}
.y81{bottom:976.229850px;}
.y7a{bottom:982.800000px;}
.y80{bottom:983.610000px;}
.y152{bottom:984.960000px;}
.y1be{bottom:985.770000px;}
.y167{bottom:986.310000px;}
.y28{bottom:987.210000px;}
.yd0{bottom:988.290162px;}
.y151{bottom:988.380252px;}
.y107{bottom:988.740765px;}
.yf2{bottom:988.740945px;}
.y1bd{bottom:989.370000px;}
.y27{bottom:1002.780000px;}
.yce{bottom:1003.679838px;}
.y166{bottom:1006.110000px;}
.y7f{bottom:1006.290000px;}
.yf1{bottom:1007.730855px;}
.y1e8{bottom:1009.170000px;}
.y1bc{bottom:1012.770000px;}
.y7e{bottom:1013.670000px;}
.y4{bottom:1013.940000px;}
.y26{bottom:1017.450000px;}
.ycc{bottom:1018.350000px;}
.y165{bottom:1025.909850px;}
.y106{bottom:1026.630000px;}
.y11e{bottom:1026.630180px;}
.yf0{bottom:1026.720765px;}
.y25{bottom:1033.020000px;}
.ycd{bottom:1033.020162px;}
.y7c{bottom:1033.560000px;}
.y1bb{bottom:1036.260000px;}
.y7d{bottom:1036.350000px;}
.yef{bottom:1045.620090px;}
.y24{bottom:1048.409850px;}
.y3{bottom:1049.130000px;}
.y79{bottom:1051.830000px;}
.y1ba{bottom:1060.470000px;}
.y23{bottom:1064.610000px;}
.y78{bottom:1066.500000px;}
.y1{bottom:1118.610000px;}
.hc{height:14.130000px;}
.hd{height:14.220000px;}
.h24{height:16.740000px;}
.h20{height:17.058630px;}
.h1b{height:18.270000px;}
.h21{height:20.754827px;}
.h22{height:24.593522px;}
.h8{height:34.645781px;}
.hb{height:35.519414px;}
.he{height:36.068555px;}
.ha{height:37.241719px;}
.h25{height:37.520508px;}
.h9{height:40.446562px;}
.h23{height:40.745391px;}
.h15{height:41.012578px;}
.h2{height:41.772832px;}
.h7{height:44.649141px;}
.h1e{height:45.742852px;}
.h1{height:45.775020px;}
.h1a{height:46.482715px;}
.h16{height:47.994609px;}
.h1f{height:48.026250px;}
.h6{height:49.992188px;}
.h17{height:49.998724px;}
.h5{height:50.027344px;}
.h18{height:56.256996px;}
.h19{height:56.262936px;}
.h1d{height:59.455020px;}
.h1c{height:60.162715px;}
.h13{height:64.678262px;}
.hf{height:64.679414px;}
.h10{height:65.039414px;}
.h11{height:65.040014px;}
.h12{height:65.041214px;}
.h4{height:65.143828px;}
.h14{height:66.119846px;}
.h3{height:89.542266px;}
.h0{height:1188.000000px;}
.w17{width:4.230000px;}
.w1f{width:21.240000px;}
.w28{width:28.890000px;}
.w20{width:35.370000px;}
.w1b{width:39.690000px;}
.w19{width:40.320000px;}
.w18{width:43.560000px;}
.w9{width:45.360000px;}
.w1d{width:50.310000px;}
.w7{width:52.020000px;}
.wa{width:52.560000px;}
.w1{width:54.810000px;}
.w8{width:56.790000px;}
.w5{width:57.600000px;}
.w14{width:57.780000px;}
.w2c{width:58.590000px;}
.wd{width:59.490000px;}
.w2{width:59.580000px;}
.w12{width:60.930000px;}
.w6{width:62.460000px;}
.w22{width:62.730000px;}
.w13{width:63.000000px;}
.wf{width:63.720000px;}
.w35{width:64.170000px;}
.we{width:66.690000px;}
.w37{width:67.140000px;}
.w1c{width:69.480000px;}
.w1a{width:70.200000px;}
.w23{width:70.470000px;}
.w10{width:70.920000px;}
.w15{width:73.980000px;}
.w3{width:75.330000px;}
.w34{width:78.750000px;}
.wb{width:80.010000px;}
.w4{width:80.190000px;}
.w1e{width:81.450000px;}
.wc{width:87.210000px;}
.w25{width:89.550000px;}
.w31{width:90.720000px;}
.w33{width:95.310000px;}
.w45{width:103.320000px;}
.w30{width:105.300000px;}
.w36{width:105.390000px;}
.w32{width:107.190000px;}
.w49{width:109.170000px;}
.w43{width:110.880000px;}
.w2f{width:111.780000px;}
.w24{width:112.500000px;}
.w47{width:116.640000px;}
.w42{width:120.870000px;}
.w38{width:121.680000px;}
.w2e{width:121.860000px;}
.w3d{width:122.490000px;}
.w4a{width:124.200000px;}
.w46{width:126.720000px;}
.w3a{width:127.530000px;}
.w40{width:128.340000px;}
.w4b{width:129.960000px;}
.w21{width:130.950000px;}
.w16{width:135.270000px;}
.w39{width:139.140000px;}
.w2d{width:139.320000px;}
.w3c{width:140.040000px;}
.w3b{width:144.990000px;}
.w3f{width:145.800000px;}
.w2b{width:147.510000px;}
.w3e{width:153.270000px;}
.w41{width:159.120000px;}
.w44{width:189.180000px;}
.w48{width:194.940000px;}
.w27{width:218.250000px;}
.w29{width:228.420000px;}
.w26{width:294.480000px;}
.w2a{width:352.260000px;}
.w11{width:408.330000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3c{left:17.730000px;}
.x90{left:19.170000px;}
.x82{left:26.640000px;}
.x34{left:33.930000px;}
.x32{left:40.050000px;}
.x1c{left:41.850000px;}
.x38{left:43.920000px;}
.xe{left:48.420000px;}
.x16{left:51.300000px;}
.x10{left:53.280000px;}
.x18{left:56.160000px;}
.x25{left:57.420000px;}
.x41{left:59.220000px;}
.x23{left:60.300000px;}
.x36{left:63.180000px;}
.x27{left:64.620000px;}
.x2e{left:67.680000px;}
.x12{left:68.940000px;}
.x14{left:73.800000px;}
.x3a{left:77.130000px;}
.x20{left:80.910000px;}
.x5f{left:85.230000px;}
.x63{left:90.720000px;}
.x84{left:94.950000px;}
.x96{left:97.470000px;}
.x5d{left:100.710000px;}
.x61{left:102.600000px;}
.x5b{left:107.190000px;}
.x47{left:108.270000px;}
.x88{left:112.500000px;}
.x58{left:117.270000px;}
.x3f{left:124.650000px;}
.x8a{left:127.530000px;}
.x30{left:131.760000px;}
.x1{left:135.000000px;}
.x54{left:138.421350px;}
.x8f{left:141.660000px;}
.xa{left:143.100000px;}
.x4d{left:146.880000px;}
.x93{left:154.980000px;}
.x74{left:159.027808px;}
.x81{left:160.105942px;}
.x4b{left:161.999991px;}
.x76{left:166.947805px;}
.x6a{left:168.567825px;}
.xb{left:170.100000px;}
.x79{left:172.167194px;}
.x55{left:173.249109px;}
.x7a{left:175.047313px;}
.x4{left:176.397786px;}
.x6e{left:178.288226px;}
.x6c{left:180.087715px;}
.x6b{left:183.507563px;}
.x6d{left:184.858058px;}
.x69{left:186.297532px;}
.x8{left:189.000189px;}
.x7e{left:190.347681px;}
.x4e{left:194.760000px;}
.xc{left:197.100000px;}
.x6f{left:199.888532px;}
.x29{left:203.490000px;}
.x70{left:206.008784px;}
.x83{left:207.450000px;}
.x95{left:214.200000px;}
.x3d{left:218.340000px;}
.x78{left:220.410000px;}
.x8c{left:225.000000px;}
.x80{left:228.060000px;}
.x86{left:233.280000px;}
.x73{left:238.500000px;}
.x7f{left:241.290000px;}
.x8d{left:244.980000px;}
.x3{left:249.300000px;}
.x92{left:254.160000px;}
.x87{left:258.300000px;}
.x91{left:264.870000px;}
.x68{left:266.580000px;}
.x4f{left:273.510000px;}
.x85{left:275.760000px;}
.xd{left:278.100000px;}
.x50{left:279.450000px;}
.x2b{left:282.780000px;}
.x89{left:293.220000px;}
.x5{left:304.917435px;}
.x8e{left:307.350000px;}
.x8b{left:312.390000px;}
.x35{left:318.420000px;}
.x4a{left:319.860000px;}
.x1d{left:323.460000px;}
.x51{left:325.530000px;}
.x39{left:328.410000px;}
.x1a{left:329.760000px;}
.xf{left:332.640000px;}
.x17{left:335.430000px;}
.x22{left:337.590000px;}
.x2a{left:339.030000px;}
.x2c{left:340.560000px;}
.x26{left:341.820000px;}
.x94{left:343.260000px;}
.x52{left:351.000000px;}
.x13{left:353.160000px;}
.x1f{left:358.110000px;}
.x3b{left:359.550000px;}
.x56{left:363.690000px;}
.x66{left:369.270000px;}
.x67{left:371.970000px;}
.x65{left:383.850000px;}
.x60{left:395.820000px;}
.x64{left:400.410000px;}
.x53{left:405.000000px;}
.x5e{left:410.400000px;}
.x62{left:412.290000px;}
.x6{left:413.730000px;}
.x5c{left:416.880000px;}
.x97{left:420.480000px;}
.x59{left:426.960000px;}
.x44{left:429.660000px;}
.x9{left:439.740000px;}
.x57{left:444.420000px;}
.x3e{left:446.490000px;}
.x5a{left:452.610000px;}
.x7{left:459.000000px;}
.x7b{left:464.760000px;}
.x72{left:472.140000px;}
.x75{left:474.750000px;}
.x77{left:477.450000px;}
.x33{left:483.660000px;}
.x71{left:490.140000px;}
.x1e{left:492.570000px;}
.x1b{left:496.890000px;}
.x11{left:499.680000px;}
.x19{left:502.560000px;}
.x24{left:506.790000px;}
.x37{left:509.580000px;}
.x28{left:511.020000px;}
.x15{left:520.290000px;}
.x21{left:527.310000px;}
.x2d{left:588.600000px;}
.x45{left:602.100090px;}
.x42{left:640.710000px;}
.x46{left:656.730000px;}
.x2f{left:662.580000px;}
.x43{left:711.180000px;}
.x40{left:719.550000px;}
.x31{left:723.870000px;}
.x4c{left:767.969850px;}
.x48{left:769.139850px;}
.x2{left:775.530000px;}
.x49{left:802.530000px;}
.x7c{left:817.290000px;}
.x7d{left:837.000810px;}
@media print{
.v6{vertical-align:-12.160000pt;}
.v7{vertical-align:-10.880448pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.160000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:23.992000pt;}
.v2{vertical-align:25.920000pt;}
.v3{vertical-align:27.200384pt;}
.lsb4{letter-spacing:-2.682907pt;}
.lsac{letter-spacing:-0.874182pt;}
.lsab{letter-spacing:-0.553649pt;}
.lsc8{letter-spacing:-0.376731pt;}
.lsbe{letter-spacing:-0.374650pt;}
.lsaf{letter-spacing:-0.366324pt;}
.lscb{letter-spacing:-0.360080pt;}
.lsee{letter-spacing:-0.358048pt;}
.lsc3{letter-spacing:-0.343429pt;}
.lsce{letter-spacing:-0.316547pt;}
.ls3e{letter-spacing:-0.299904pt;}
.lsea{letter-spacing:-0.277888pt;}
.lsef{letter-spacing:-0.261856pt;}
.lscf{letter-spacing:-0.250705pt;}
.lse7{letter-spacing:-0.245824pt;}
.lse8{letter-spacing:-0.240480pt;}
.lsa3{letter-spacing:-0.240096pt;}
.lsec{letter-spacing:-0.219104pt;}
.lsf4{letter-spacing:-0.213760pt;}
.lse6{letter-spacing:-0.197728pt;}
.lse9{letter-spacing:-0.192384pt;}
.lsc4{letter-spacing:-0.183162pt;}
.lsb6{letter-spacing:-0.178999pt;}
.lsc2{letter-spacing:-0.176918pt;}
.ls68{letter-spacing:-0.168480pt;}
.lsb1{letter-spacing:-0.166511pt;}
.lsf1{letter-spacing:-0.165664pt;}
.lsbc{letter-spacing:-0.162348pt;}
.ls69{letter-spacing:-0.160992pt;}
.lsa{letter-spacing:-0.160320pt;}
.lsb2{letter-spacing:-0.160267pt;}
.lsc1{letter-spacing:-0.158185pt;}
.ls62{letter-spacing:-0.158112pt;}
.ls41{letter-spacing:-0.149952pt;}
.ls34{letter-spacing:-0.131776pt;}
.lse3{letter-spacing:-0.128256pt;}
.lse4{letter-spacing:-0.122912pt;}
.ls53{letter-spacing:-0.113600pt;}
.ls56{letter-spacing:-0.112224pt;}
.lsc9{letter-spacing:-0.110313pt;}
.ls4d{letter-spacing:-0.109056pt;}
.ls8c{letter-spacing:-0.105408pt;}
.ls4c{letter-spacing:-0.104512pt;}
.lse5{letter-spacing:-0.101536pt;}
.ls4b{letter-spacing:-0.099968pt;}
.ls52{letter-spacing:-0.095424pt;}
.ls4f{letter-spacing:-0.090880pt;}
.ls33{letter-spacing:-0.086336pt;}
.lsb9{letter-spacing:-0.085337pt;}
.ls4e{letter-spacing:-0.081792pt;}
.ls31{letter-spacing:-0.077248pt;}
.lsd3{letter-spacing:-0.077011pt;}
.lsbd{letter-spacing:-0.072849pt;}
.ls40{letter-spacing:-0.072704pt;}
.lscc{letter-spacing:-0.070767pt;}
.ls61{letter-spacing:-0.070272pt;}
.lsb7{letter-spacing:-0.068686pt;}
.ls32{letter-spacing:-0.068160pt;}
.ls99{letter-spacing:-0.067584pt;}
.lsd5{letter-spacing:-0.066604pt;}
.lsb8{letter-spacing:-0.064523pt;}
.ls37{letter-spacing:-0.063616pt;}
.lsc5{letter-spacing:-0.062442pt;}
.ls95{letter-spacing:-0.061440pt;}
.lsc6{letter-spacing:-0.060360pt;}
.ls36{letter-spacing:-0.059072pt;}
.lsf2{letter-spacing:-0.058784pt;}
.lsb3{letter-spacing:-0.056197pt;}
.ls94{letter-spacing:-0.055296pt;}
.ls2f{letter-spacing:-0.054528pt;}
.lsba{letter-spacing:-0.054116pt;}
.lsc7{letter-spacing:-0.054013pt;}
.lsed{letter-spacing:-0.053440pt;}
.lsa2{letter-spacing:-0.052704pt;}
.lsb5{letter-spacing:-0.052035pt;}
.ls3b{letter-spacing:-0.049984pt;}
.lsd1{letter-spacing:-0.049953pt;}
.ls91{letter-spacing:-0.049152pt;}
.lsd0{letter-spacing:-0.047872pt;}
.lsbb{letter-spacing:-0.045791pt;}
.ls2e{letter-spacing:-0.045440pt;}
.lsc0{letter-spacing:-0.043709pt;}
.ls93{letter-spacing:-0.043008pt;}
.lseb{letter-spacing:-0.042752pt;}
.ls8f{letter-spacing:-0.040992pt;}
.ls35{letter-spacing:-0.040896pt;}
.lsd2{letter-spacing:-0.039546pt;}
.lscd{letter-spacing:-0.039010pt;}
.lsd{letter-spacing:-0.038400pt;}
.ls98{letter-spacing:-0.036864pt;}
.ls3d{letter-spacing:-0.036352pt;}
.lsca{letter-spacing:-0.036009pt;}
.ls9d{letter-spacing:-0.034048pt;}
.lsb0{letter-spacing:-0.033302pt;}
.ls39{letter-spacing:-0.031808pt;}
.lsd4{letter-spacing:-0.031221pt;}
.ls92{letter-spacing:-0.030720pt;}
.ls90{letter-spacing:-0.029280pt;}
.lsad{letter-spacing:-0.029139pt;}
.ls2c{letter-spacing:-0.027264pt;}
.lsf{letter-spacing:-0.023424pt;}
.lsae{letter-spacing:-0.022895pt;}
.ls38{letter-spacing:-0.022720pt;}
.lse1{letter-spacing:-0.021376pt;}
.lsc{letter-spacing:-0.019200pt;}
.ls96{letter-spacing:-0.018432pt;}
.ls30{letter-spacing:-0.018176pt;}
.lsa6{letter-spacing:-0.017568pt;}
.ls9e{letter-spacing:-0.017024pt;}
.ls2d{letter-spacing:-0.013632pt;}
.ls97{letter-spacing:-0.012288pt;}
.ls88{letter-spacing:-0.011712pt;}
.ls3a{letter-spacing:-0.009088pt;}
.ls60{letter-spacing:-0.005856pt;}
.lsf3{letter-spacing:-0.005344pt;}
.ls3c{letter-spacing:-0.004544pt;}
.lsbf{letter-spacing:-0.003001pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa9{letter-spacing:0.004163pt;}
.ls12{letter-spacing:0.004544pt;}
.ls5e{letter-spacing:0.005856pt;}
.ls42{letter-spacing:0.009088pt;}
.lsdd{letter-spacing:0.010688pt;}
.ls5f{letter-spacing:0.011712pt;}
.ls82{letter-spacing:0.012768pt;}
.ls29{letter-spacing:0.013632pt;}
.lsaa{letter-spacing:0.015194pt;}
.ls6{letter-spacing:0.017568pt;}
.lsd8{letter-spacing:0.021376pt;}
.ls2{letter-spacing:0.023424pt;}
.lsd6{letter-spacing:0.026720pt;}
.ls1{letter-spacing:0.029280pt;}
.ls6e{letter-spacing:0.034880pt;}
.ls59{letter-spacing:0.035136pt;}
.lsf0{letter-spacing:0.037408pt;}
.ls47{letter-spacing:0.040896pt;}
.ls4{letter-spacing:0.040992pt;}
.ls50{letter-spacing:0.045440pt;}
.ls3{letter-spacing:0.046848pt;}
.ls2a{letter-spacing:0.049984pt;}
.ls5a{letter-spacing:0.052704pt;}
.ls5b{letter-spacing:0.058560pt;}
.ls65{letter-spacing:0.064416pt;}
.lsdc{letter-spacing:0.069472pt;}
.ls57{letter-spacing:0.070272pt;}
.ls51{letter-spacing:0.076128pt;}
.ls28{letter-spacing:0.077248pt;}
.ls63{letter-spacing:0.081984pt;}
.lse{letter-spacing:0.087840pt;}
.ls3f{letter-spacing:0.090880pt;}
.ls54{letter-spacing:0.093696pt;}
.lsdb{letter-spacing:0.096192pt;}
.ls55{letter-spacing:0.099552pt;}
.ls4a{letter-spacing:0.099968pt;}
.ls5{letter-spacing:0.105408pt;}
.ls9c{letter-spacing:0.111264pt;}
.lsda{letter-spacing:0.112224pt;}
.ls5d{letter-spacing:0.117120pt;}
.ls15{letter-spacing:0.118144pt;}
.lsa0{letter-spacing:0.122976pt;}
.ls7{letter-spacing:0.128832pt;}
.ls8{letter-spacing:0.133600pt;}
.ls5c{letter-spacing:0.134688pt;}
.ls9b{letter-spacing:0.140544pt;}
.lsdf{letter-spacing:0.144288pt;}
.ls27{letter-spacing:0.145408pt;}
.lsa1{letter-spacing:0.146400pt;}
.ls2b{letter-spacing:0.152256pt;}
.ls64{letter-spacing:0.158112pt;}
.ls66{letter-spacing:0.160320pt;}
.ls7d{letter-spacing:0.199104pt;}
.ls8a{letter-spacing:0.216672pt;}
.ls67{letter-spacing:0.234240pt;}
.lsa7{letter-spacing:0.398208pt;}
.ls7c{letter-spacing:0.849120pt;}
.ls73{letter-spacing:0.948672pt;}
.ls7b{letter-spacing:1.165344pt;}
.ls7e{letter-spacing:1.950048pt;}
.ls79{letter-spacing:2.119872pt;}
.lsb{letter-spacing:2.588832pt;}
.ls0{letter-spacing:2.623008pt;}
.ls6d{letter-spacing:2.644160pt;}
.ls76{letter-spacing:3.080256pt;}
.ls6c{letter-spacing:3.719360pt;}
.ls81{letter-spacing:3.741984pt;}
.ls71{letter-spacing:3.823968pt;}
.ls70{letter-spacing:4.039360pt;}
.ls7a{letter-spacing:5.959360pt;}
.ls72{letter-spacing:6.919360pt;}
.ls86{letter-spacing:9.814656pt;}
.ls58{letter-spacing:11.237664pt;}
.ls84{letter-spacing:12.889056pt;}
.ls75{letter-spacing:12.906624pt;}
.ls77{letter-spacing:13.035456pt;}
.ls83{letter-spacing:13.211136pt;}
.ls78{letter-spacing:13.228704pt;}
.ls74{letter-spacing:13.357536pt;}
.ls87{letter-spacing:14.083680pt;}
.ls6f{letter-spacing:15.444160pt;}
.ls9a{letter-spacing:16.297248pt;}
.ls6b{letter-spacing:16.414368pt;}
.ls89{letter-spacing:17.368896pt;}
.ls8e{letter-spacing:17.749536pt;}
.ls80{letter-spacing:17.796384pt;}
.ls8d{letter-spacing:17.907648pt;}
.ls8b{letter-spacing:18.130176pt;}
.ls85{letter-spacing:18.241440pt;}
.ls7f{letter-spacing:18.877760pt;}
.ls6a{letter-spacing:20.359360pt;}
.ls24{letter-spacing:49.447808pt;}
.ls11{letter-spacing:62.566336pt;}
.ls1f{letter-spacing:206.560000pt;}
.lse2{letter-spacing:226.639040pt;}
.ls17{letter-spacing:231.520000pt;}
.ls23{letter-spacing:264.480000pt;}
.ls45{letter-spacing:267.040000pt;}
.ls48{letter-spacing:269.600000pt;}
.ls21{letter-spacing:279.520000pt;}
.ls1e{letter-spacing:280.160000pt;}
.ls19{letter-spacing:294.560000pt;}
.ls16{letter-spacing:297.760000pt;}
.ls14{letter-spacing:304.800000pt;}
.ls1b{letter-spacing:314.720000pt;}
.ls1d{letter-spacing:330.080000pt;}
.ls22{letter-spacing:338.080000pt;}
.ls26{letter-spacing:340.640000pt;}
.ls25{letter-spacing:348.000000pt;}
.ls20{letter-spacing:353.120000pt;}
.ls18{letter-spacing:360.800000pt;}
.ls43{letter-spacing:361.760000pt;}
.ls13{letter-spacing:370.720000pt;}
.ls1a{letter-spacing:380.960000pt;}
.ls49{letter-spacing:385.760000pt;}
.ls1c{letter-spacing:403.360000pt;}
.ls44{letter-spacing:421.280000pt;}
.ls46{letter-spacing:423.520000pt;}
.lsa8{letter-spacing:753.360000pt;}
.ls10{letter-spacing:753.362688pt;}
.lsa4{letter-spacing:1358.480736pt;}
.ls9f{letter-spacing:1488.718176pt;}
.lsa5{letter-spacing:1537.358112pt;}
.lse0{letter-spacing:1555.280352pt;}
.lsd7{letter-spacing:1664.720128pt;}
.lsd9{letter-spacing:1708.877600pt;}
.lsde{letter-spacing:1729.681792pt;}
.wsb3{word-spacing:-76.801440pt;}
.wsba{word-spacing:-76.690176pt;}
.wsbc{word-spacing:-76.467648pt;}
.wsbd{word-spacing:-76.309536pt;}
.wsb8{word-spacing:-75.928896pt;}
.wsb6{word-spacing:-72.643680pt;}
.wsdf{word-spacing:-71.771136pt;}
.wsdd{word-spacing:-58.712256pt;}
.wsd9{word-spacing:-58.589280pt;}
.wsdc{word-spacing:-58.577568pt;}
.ws96{word-spacing:-58.560000pt;}
.wsd{word-spacing:-45.440000pt;}
.wse0{word-spacing:-42.542976pt;}
.wsb5{word-spacing:-36.641184pt;}
.wsde{word-spacing:-25.581120pt;}
.wsb2{word-spacing:-25.441184pt;}
.wsda{word-spacing:-25.260587pt;}
.wsb4{word-spacing:-22.697856pt;}
.wsdb{word-spacing:-22.179040pt;}
.ws12e{word-spacing:-20.813867pt;}
.wsb7{word-spacing:-14.798112pt;}
.ws1{word-spacing:-14.768832pt;}
.ws52{word-spacing:-14.757120pt;}
.ws105{word-spacing:-14.751264pt;}
.ws4b{word-spacing:-14.727840pt;}
.wseb{word-spacing:-14.710272pt;}
.ws104{word-spacing:-14.698560pt;}
.ws53{word-spacing:-14.692704pt;}
.ws54{word-spacing:-14.675136pt;}
.wse2{word-spacing:-14.663424pt;}
.wse3{word-spacing:-14.657568pt;}
.wsec{word-spacing:-14.651712pt;}
.wse1{word-spacing:-14.645856pt;}
.wsb1{word-spacing:-14.640000pt;}
.ws0{word-spacing:-14.616576pt;}
.ws16a{word-spacing:-13.520320pt;}
.ws16b{word-spacing:-13.504288pt;}
.ws163{word-spacing:-13.472224pt;}
.ws167{word-spacing:-13.429472pt;}
.ws15d{word-spacing:-13.386720pt;}
.ws168{word-spacing:-13.370688pt;}
.ws15e{word-spacing:-13.338624pt;}
.ws162{word-spacing:-13.317248pt;}
.ws165{word-spacing:-13.306560pt;}
.ws15f{word-spacing:-13.258464pt;}
.ws166{word-spacing:-13.231744pt;}
.ws169{word-spacing:-13.194336pt;}
.ws160{word-spacing:-13.162272pt;}
.ws16c{word-spacing:-13.146240pt;}
.ws164{word-spacing:-13.140896pt;}
.ws161{word-spacing:-13.114176pt;}
.wsbe{word-spacing:-12.842208pt;}
.ws10{word-spacing:-11.360000pt;}
.wse{word-spacing:-11.319104pt;}
.wsf{word-spacing:-11.310016pt;}
.ws33{word-spacing:-11.250944pt;}
.ws32{word-spacing:-11.228224pt;}
.ws95{word-spacing:-9.199008pt;}
.ws94{word-spacing:-9.191520pt;}
.ws13c{word-spacing:-6.789293pt;}
.ws13a{word-spacing:-6.723451pt;}
.ws120{word-spacing:-5.740464pt;}
.ws11a{word-spacing:-5.734220pt;}
.ws11f{word-spacing:-5.732139pt;}
.ws118{word-spacing:-5.730057pt;}
.ws12c{word-spacing:-5.725895pt;}
.ws12b{word-spacing:-5.723813pt;}
.ws11d{word-spacing:-5.721732pt;}
.ws15b{word-spacing:-5.719651pt;}
.ws11c{word-spacing:-5.717569pt;}
.ws139{word-spacing:-5.715488pt;}
.ws122{word-spacing:-5.713406pt;}
.ws150{word-spacing:-5.709244pt;}
.ws11e{word-spacing:-5.700918pt;}
.ws131{word-spacing:-5.675941pt;}
.ws127{word-spacing:-5.628070pt;}
.ws117{word-spacing:-5.625988pt;}
.ws121{word-spacing:-5.623907pt;}
.ws116{word-spacing:-5.619744pt;}
.ws128{word-spacing:-5.609337pt;}
.ws11b{word-spacing:-5.607256pt;}
.ws12a{word-spacing:-5.603093pt;}
.ws129{word-spacing:-5.442826pt;}
.ws123{word-spacing:-5.411605pt;}
.ws13b{word-spacing:-5.409524pt;}
.wsb9{word-spacing:-3.578016pt;}
.ws13f{word-spacing:-3.185664pt;}
.wse4{word-spacing:-3.173952pt;}
.ws7e{word-spacing:-3.168096pt;}
.ws7c{word-spacing:-3.162240pt;}
.ws7d{word-spacing:-3.127104pt;}
.wsbb{word-spacing:-2.933856pt;}
.ws55{word-spacing:-2.840160pt;}
.ws5f{word-spacing:-2.828448pt;}
.ws56{word-spacing:-2.822592pt;}
.ws61{word-spacing:-2.799168pt;}
.ws60{word-spacing:-2.793312pt;}
.wsa8{word-spacing:-2.535648pt;}
.wsad{word-spacing:-2.529792pt;}
.wsb0{word-spacing:-2.523936pt;}
.wsae{word-spacing:-2.518080pt;}
.wsa7{word-spacing:-2.512224pt;}
.wsaf{word-spacing:-2.477088pt;}
.ws17b{word-spacing:-2.184288pt;}
.ws87{word-spacing:-1.868064pt;}
.ws5a{word-spacing:-1.862208pt;}
.ws59{word-spacing:-1.856352pt;}
.ws13e{word-spacing:-1.259040pt;}
.ws13d{word-spacing:-1.241472pt;}
.ws8d{word-spacing:-0.614880pt;}
.wsf0{word-spacing:-0.579744pt;}
.ws173{word-spacing:-0.400800pt;}
.wsfb{word-spacing:-0.386496pt;}
.wse9{word-spacing:-0.380640pt;}
.ws180{word-spacing:-0.374784pt;}
.ws17c{word-spacing:-0.368928pt;}
.wsfa{word-spacing:-0.363072pt;}
.wse8{word-spacing:-0.357216pt;}
.ws106{word-spacing:-0.351360pt;}
.ws17d{word-spacing:-0.345504pt;}
.ws178{word-spacing:-0.336672pt;}
.ws108{word-spacing:-0.333792pt;}
.ws10a{word-spacing:-0.327936pt;}
.wsfc{word-spacing:-0.322080pt;}
.ws103{word-spacing:-0.316224pt;}
.wsfe{word-spacing:-0.310368pt;}
.ws10b{word-spacing:-0.304512pt;}
.ws82{word-spacing:-0.298656pt;}
.ws83{word-spacing:-0.292800pt;}
.ws109{word-spacing:-0.286944pt;}
.ws2c{word-spacing:-0.277184pt;}
.ws102{word-spacing:-0.269376pt;}
.ws172{word-spacing:-0.261856pt;}
.ws17f{word-spacing:-0.251808pt;}
.ws107{word-spacing:-0.222528pt;}
.ws171{word-spacing:-0.219104pt;}
.ws2e{word-spacing:-0.209024pt;}
.ws38{word-spacing:-0.199936pt;}
.ws17a{word-spacing:-0.181696pt;}
.ws1f{word-spacing:-0.149952pt;}
.ws47{word-spacing:-0.140864pt;}
.ws5{word-spacing:-0.136704pt;}
.ws1d{word-spacing:-0.136320pt;}
.ws1e{word-spacing:-0.131776pt;}
.ws2f{word-spacing:-0.122688pt;}
.ws175{word-spacing:-0.117568pt;}
.ws23{word-spacing:-0.113600pt;}
.ws174{word-spacing:-0.112224pt;}
.ws1c{word-spacing:-0.104512pt;}
.ws1b{word-spacing:-0.099968pt;}
.ws22{word-spacing:-0.095424pt;}
.ws21{word-spacing:-0.090880pt;}
.ws24{word-spacing:-0.081792pt;}
.ws37{word-spacing:-0.054528pt;}
.wsc{word-spacing:-0.053440pt;}
.ws51{word-spacing:-0.052704pt;}
.ws176{word-spacing:-0.048096pt;}
.wsea{word-spacing:-0.029280pt;}
.ws97{word-spacing:-0.023424pt;}
.ws17e{word-spacing:-0.017568pt;}
.ws145{word-spacing:-0.015004pt;}
.ws4f{word-spacing:-0.011712pt;}
.ws144{word-spacing:-0.010129pt;}
.wsa{word-spacing:-0.005856pt;}
.ws2{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.005856pt;}
.ws48{word-spacing:0.011712pt;}
.wsd6{word-spacing:0.012288pt;}
.ws4{word-spacing:0.017088pt;}
.ws49{word-spacing:0.017568pt;}
.ws147{word-spacing:0.018004pt;}
.wsd5{word-spacing:0.018432pt;}
.ws148{word-spacing:0.021005pt;}
.ws179{word-spacing:0.021376pt;}
.ws50{word-spacing:0.023424pt;}
.ws4e{word-spacing:0.029280pt;}
.wsd1{word-spacing:0.030720pt;}
.ws7{word-spacing:0.035136pt;}
.ws146{word-spacing:0.036009pt;}
.wsd7{word-spacing:0.036864pt;}
.ws177{word-spacing:0.037408pt;}
.ws6{word-spacing:0.038400pt;}
.ws4d{word-spacing:0.040992pt;}
.wsd2{word-spacing:0.043008pt;}
.ws4c{word-spacing:0.046848pt;}
.wsd0{word-spacing:0.049152pt;}
.ws3{word-spacing:0.051264pt;}
.ws8{word-spacing:0.052704pt;}
.wsd3{word-spacing:0.055296pt;}
.ws9{word-spacing:0.058560pt;}
.wsd4{word-spacing:0.061440pt;}
.wsb{word-spacing:0.064416pt;}
.wsd8{word-spacing:0.067584pt;}
.ws73{word-spacing:0.070272pt;}
.ws98{word-spacing:0.076128pt;}
.ws10c{word-spacing:0.093696pt;}
.ws3c{word-spacing:0.109056pt;}
.ws100{word-spacing:0.134688pt;}
.ws36{word-spacing:0.149952pt;}
.ws1a{word-spacing:0.154496pt;}
.ws31{word-spacing:0.159040pt;}
.ws29{word-spacing:0.163584pt;}
.ws28{word-spacing:0.168128pt;}
.ws12{word-spacing:0.172672pt;}
.ws25{word-spacing:0.177216pt;}
.ws27{word-spacing:0.181760pt;}
.ws14{word-spacing:0.186304pt;}
.ws26{word-spacing:0.190848pt;}
.ws2a{word-spacing:0.195392pt;}
.ws35{word-spacing:0.199936pt;}
.ws13{word-spacing:0.204480pt;}
.ws2b{word-spacing:0.209024pt;}
.ws142{word-spacing:0.210220pt;}
.ws20{word-spacing:0.213568pt;}
.ws2d{word-spacing:0.218112pt;}
.ws3b{word-spacing:0.222656pt;}
.ws16{word-spacing:0.227200pt;}
.ws17{word-spacing:0.231744pt;}
.ws15{word-spacing:0.236288pt;}
.ws3a{word-spacing:0.240832pt;}
.ws18{word-spacing:0.245376pt;}
.ws45{word-spacing:0.254464pt;}
.ws34{word-spacing:0.259008pt;}
.ws46{word-spacing:0.272640pt;}
.ws19{word-spacing:0.290816pt;}
.ws30{word-spacing:0.308992pt;}
.wsa2{word-spacing:0.310368pt;}
.ws15c{word-spacing:0.322080pt;}
.wsa3{word-spacing:0.339648pt;}
.wsa1{word-spacing:0.345504pt;}
.ws5d{word-spacing:0.374784pt;}
.wsff{word-spacing:0.380640pt;}
.ws101{word-spacing:0.386496pt;}
.wsfd{word-spacing:0.392352pt;}
.ws5e{word-spacing:0.404064pt;}
.wsf9{word-spacing:0.450912pt;}
.ws141{word-spacing:0.530754pt;}
.ws86{word-spacing:0.679296pt;}
.ws84{word-spacing:0.696864pt;}
.ws85{word-spacing:0.708576pt;}
.ws143{word-spacing:0.851287pt;}
.ws119{word-spacing:0.967845pt;}
.ws9a{word-spacing:1.622112pt;}
.ws72{word-spacing:1.633824pt;}
.ws99{word-spacing:1.645536pt;}
.wsab{word-spacing:2.242848pt;}
.wsaa{word-spacing:2.283840pt;}
.wsac{word-spacing:2.289696pt;}
.ws5c{word-spacing:2.576640pt;}
.ws5b{word-spacing:2.582496pt;}
.ws6f{word-spacing:2.605920pt;}
.ws93{word-spacing:2.611776pt;}
.ws6e{word-spacing:2.617632pt;}
.ws170{word-spacing:3.203232pt;}
.wsa4{word-spacing:3.209088pt;}
.ws16f{word-spacing:3.232512pt;}
.ws8b{word-spacing:3.238368pt;}
.ws8c{word-spacing:3.250080pt;}
.wsa6{word-spacing:3.255936pt;}
.wsa5{word-spacing:3.279360pt;}
.ws64{word-spacing:3.496032pt;}
.ws62{word-spacing:3.560448pt;}
.ws63{word-spacing:3.572160pt;}
.wscf{word-spacing:3.859104pt;}
.wsf5{word-spacing:3.876672pt;}
.wsca{word-spacing:3.882528pt;}
.wsc5{word-spacing:4.187040pt;}
.ws140{word-spacing:4.192896pt;}
.wsf3{word-spacing:4.198752pt;}
.wsf4{word-spacing:4.239744pt;}
.ws9e{word-spacing:4.532544pt;}
.ws70{word-spacing:4.807776pt;}
.wsef{word-spacing:4.831200pt;}
.ws71{word-spacing:4.837056pt;}
.wsc7{word-spacing:4.842912pt;}
.wsc6{word-spacing:4.854624pt;}
.ws79{word-spacing:5.147424pt;}
.ws9f{word-spacing:5.153280pt;}
.ws78{word-spacing:5.159136pt;}
.wsa9{word-spacing:5.170848pt;}
.wsa0{word-spacing:5.176704pt;}
.ws74{word-spacing:5.469504pt;}
.ws75{word-spacing:5.481216pt;}
.wsc4{word-spacing:6.107808pt;}
.ws89{word-spacing:6.119520pt;}
.wsc3{word-spacing:6.131232pt;}
.ws8a{word-spacing:6.137088pt;}
.wsf1{word-spacing:6.459168pt;}
.wsf2{word-spacing:6.465024pt;}
.wsc8{word-spacing:7.079904pt;}
.wsc9{word-spacing:7.120896pt;}
.ws80{word-spacing:7.413696pt;}
.ws81{word-spacing:7.425408pt;}
.ws7f{word-spacing:7.712352pt;}
.ws7b{word-spacing:7.718208pt;}
.ws7a{word-spacing:7.729920pt;}
.ws88{word-spacing:7.741632pt;}
.ws9d{word-spacing:8.011008pt;}
.ws9b{word-spacing:8.028576pt;}
.ws9c{word-spacing:8.052000pt;}
.wscb{word-spacing:8.063712pt;}
.wscc{word-spacing:8.092992pt;}
.ws57{word-spacing:8.350656pt;}
.ws58{word-spacing:8.374080pt;}
.wsc2{word-spacing:8.661024pt;}
.wsc0{word-spacing:8.666880pt;}
.wsc1{word-spacing:8.684448pt;}
.ws77{word-spacing:9.281760pt;}
.ws76{word-spacing:9.311040pt;}
.wsbf{word-spacing:9.316896pt;}
.ws92{word-spacing:9.955200pt;}
.ws91{word-spacing:9.961056pt;}
.wse5{word-spacing:9.972768pt;}
.wse6{word-spacing:10.587648pt;}
.wse7{word-spacing:10.599360pt;}
.ws65{word-spacing:10.939008pt;}
.wsee{word-spacing:12.508416pt;}
.ws6c{word-spacing:12.520128pt;}
.wsed{word-spacing:12.537696pt;}
.ws6d{word-spacing:12.549408pt;}
.ws68{word-spacing:12.842208pt;}
.ws90{word-spacing:12.848064pt;}
.ws69{word-spacing:12.865632pt;}
.ws6b{word-spacing:13.468800pt;}
.ws6a{word-spacing:13.498080pt;}
.ws155{word-spacing:16.001701pt;}
.wsf8{word-spacing:16.068864pt;}
.ws154{word-spacing:16.320153pt;}
.ws158{word-spacing:16.990359pt;}
.ws15a{word-spacing:16.996604pt;}
.ws16e{word-spacing:18.586944pt;}
.ws134{word-spacing:18.592301pt;}
.ws136{word-spacing:18.594383pt;}
.ws135{word-spacing:18.600627pt;}
.ws16d{word-spacing:18.616224pt;}
.wsf7{word-spacing:19.840128pt;}
.wsf6{word-spacing:19.863552pt;}
.ws159{word-spacing:22.381151pt;}
.ws156{word-spacing:22.385314pt;}
.ws157{word-spacing:22.397802pt;}
.ws137{word-spacing:23.715320pt;}
.wscd{word-spacing:24.331680pt;}
.ws132{word-spacing:24.350143pt;}
.ws133{word-spacing:24.356387pt;}
.wsce{word-spacing:24.372672pt;}
.ws138{word-spacing:30.398652pt;}
.ws67{word-spacing:31.083648pt;}
.ws66{word-spacing:31.095360pt;}
.ws8f{word-spacing:31.997184pt;}
.ws8e{word-spacing:32.026464pt;}
.ws126{word-spacing:51.206275pt;}
.ws125{word-spacing:51.227089pt;}
.ws124{word-spacing:51.868156pt;}
.ws14b{word-spacing:55.693744pt;}
.ws14c{word-spacing:55.697907pt;}
.ws149{word-spacing:55.702070pt;}
.ws14a{word-spacing:55.706233pt;}
.ws112{word-spacing:61.417558pt;}
.ws152{word-spacing:63.340759pt;}
.ws151{word-spacing:63.357410pt;}
.ws153{word-spacing:63.677944pt;}
.ws113{word-spacing:67.484800pt;}
.ws115{word-spacing:67.505614pt;}
.ws114{word-spacing:68.171657pt;}
.ws42{word-spacing:68.664384pt;}
.ws14f{word-spacing:72.317780pt;}
.ws14d{word-spacing:72.667453pt;}
.ws14e{word-spacing:72.671615pt;}
.ws12d{word-spacing:74.865397pt;}
.ws12f{word-spacing:75.548092pt;}
.ws130{word-spacing:75.552255pt;}
.ws40{word-spacing:159.235392pt;}
.ws3d{word-spacing:219.716032pt;}
.ws3f{word-spacing:224.832576pt;}
.ws43{word-spacing:234.461312pt;}
.ws11{word-spacing:274.748416pt;}
.ws41{word-spacing:274.939264pt;}
.ws3e{word-spacing:280.196672pt;}
.ws39{word-spacing:297.495680pt;}
.ws44{word-spacing:416.194048pt;}
.ws111{word-spacing:1238.122368pt;}
.ws110{word-spacing:1368.377376pt;}
.ws10d{word-spacing:1407.050400pt;}
.ws10f{word-spacing:1430.117184pt;}
.ws10e{word-spacing:1560.354624pt;}
._2c{margin-left:-415.998656pt;}
._3{margin-left:-274.862016pt;}
._1f{margin-left:-225.009792pt;}
._5f{margin-left:-12.156032pt;}
._5b{margin-left:-11.006208pt;}
._5a{margin-left:-9.275904pt;}
._56{margin-left:-6.224928pt;}
._55{margin-left:-3.889248pt;}
._5{margin-left:-2.150080pt;}
._4{margin-left:-0.908800pt;}
._0{width:0.983808pt;}
._3f{width:2.027296pt;}
._59{width:3.431616pt;}
._60{width:4.550080pt;}
._5c{width:6.462528pt;}
._58{width:8.737152pt;}
._57{width:9.803872pt;}
._38{width:12.755488pt;}
._cd{width:14.094976pt;}
._5d{width:17.398176pt;}
._70{width:18.979296pt;}
._67{width:22.762272pt;}
._bc{width:24.876632pt;}
._63{width:25.930368pt;}
._69{width:33.964800pt;}
._6d{width:35.042304pt;}
._b7{width:36.264688pt;}
._66{width:39.082944pt;}
._c4{width:40.011840pt;}
._64{width:41.606880pt;}
._6a{width:48.030912pt;}
._71{width:49.367200pt;}
._78{width:50.881323pt;}
._41{width:52.159392pt;}
._c5{width:53.165899pt;}
._65{width:55.087392pt;}
._a9{width:58.351072pt;}
._6f{width:59.619936pt;}
._6c{width:61.283040pt;}
._6b{width:62.881728pt;}
._73{width:64.728864pt;}
._b3{width:67.108873pt;}
._2{width:68.160000pt;}
._2b{width:69.950336pt;}
._1c{width:71.767936pt;}
._1b{width:73.708224pt;}
._b9{width:74.863316pt;}
._6e{width:75.928896pt;}
._96{width:77.871072pt;}
._b4{width:78.812356pt;}
._97{width:80.183520pt;}
._2e{width:81.283072pt;}
._74{width:82.445312pt;}
._10{width:83.703040pt;}
._b6{width:86.040362pt;}
._13{width:87.163840pt;}
._f{width:88.810496pt;}
._30{width:89.921216pt;}
._bf{width:90.840000pt;}
._76{width:92.161856pt;}
._2a{width:94.646976pt;}
._77{width:96.210112pt;}
._9c{width:97.941835pt;}
._c1{width:99.998656pt;}
._28{width:102.285440pt;}
._c6{width:106.606091pt;}
._54{width:108.236448pt;}
._ca{width:110.190464pt;}
._9e{width:112.661835pt;}
._7e{width:114.625024pt;}
._7b{width:115.730112pt;}
._bd{width:117.215680pt;}
._c3{width:118.130496pt;}
._1{width:120.593216pt;}
._62{width:121.512000pt;}
._1a{width:125.228096pt;}
._e{width:126.707456pt;}
._b5{width:142.524245pt;}
._d{width:144.447232pt;}
._2f{width:146.834816pt;}
._33{width:147.911744pt;}
._1e{width:155.913728pt;}
._22{width:160.544064pt;}
._ba{width:166.075198pt;}
._b8{width:167.092290pt;}
._15{width:169.751040pt;}
._a{width:174.910208pt;}
._5e{width:176.093728pt;}
._16{width:181.226368pt;}
._37{width:190.216384pt;}
._68{width:192.961056pt;}
._a4{width:195.836032pt;}
._9{width:197.083200pt;}
._20{width:199.999616pt;}
._61{width:201.598656pt;}
._46{width:205.522176pt;}
._35{width:208.892224pt;}
._18{width:216.704192pt;}
._3a{width:225.092928pt;}
._31{width:231.930304pt;}
._43{width:234.556224pt;}
._19{width:236.937792pt;}
._a7{width:251.195008pt;}
._11{width:254.848256pt;}
._ad{width:260.968672pt;}
._86{width:264.493984pt;}
._7{width:267.060800pt;}
._8{width:269.934336pt;}
._c{width:272.906112pt;}
._21{width:276.870464pt;}
._c2{width:279.040960pt;}
._12{width:280.667904pt;}
._c8{width:282.315488pt;}
._94{width:284.013984pt;}
._c7{width:285.243584pt;}
._a3{width:286.854144pt;}
._3c{width:289.596768pt;}
._88{width:296.376000pt;}
._50{width:299.095200pt;}
._29{width:302.916672pt;}
._1d{width:310.250688pt;}
._14{width:314.929024pt;}
._3e{width:317.406912pt;}
._8d{width:319.647744pt;}
._9b{width:323.933024pt;}
._85{width:326.396032pt;}
._a5{width:329.290624pt;}
._b{width:330.914816pt;}
._6{width:332.591552pt;}
._80{width:333.506944pt;}
._8a{width:339.196032pt;}
._cf{width:341.112256pt;}
._8f{width:345.015936pt;}
._b0{width:345.916032pt;}
._98{width:348.810624pt;}
._c0{width:350.190464pt;}
._25{width:353.236928pt;}
._a0{width:356.983648pt;}
._24{width:360.261952pt;}
._9d{width:361.991168pt;}
._23{width:367.064320pt;}
._cc{width:368.106272pt;}
._8c{width:372.000384pt;}
._8e{width:376.503648pt;}
._87{width:378.236032pt;}
._8b{width:381.436032pt;}
._27{width:386.289984pt;}
._3d{width:389.119488pt;}
._26{width:390.929408pt;}
._ce{width:394.955488pt;}
._a1{width:397.530592pt;}
._82{width:401.085184pt;}
._2d{width:405.765568pt;}
._17{width:408.553600pt;}
._84{width:410.899840pt;}
._cb{width:415.470464pt;}
._89{width:417.050592pt;}
._9f{width:420.163584pt;}
._90{width:421.167360pt;}
._7a{width:427.038976pt;}
._a2{width:430.419840pt;}
._79{width:437.216704pt;}
._92{width:439.683584pt;}
._b1{width:446.558976pt;}
._ae{width:449.719264pt;}
._75{width:453.467104pt;}
._b2{width:456.736704pt;}
._32{width:467.114112pt;}
._81{width:469.219744pt;}
._7c{width:473.242816pt;}
._95{width:482.556032pt;}
._36{width:483.540672pt;}
._4b{width:488.226432pt;}
._7d{width:492.476032pt;}
._7f{width:495.355072pt;}
._a8{width:499.091200pt;}
._72{width:509.433056pt;}
._aa{width:511.996032pt;}
._83{width:515.142496pt;}
._93{width:518.611200pt;}
._be{width:521.449024pt;}
._34{width:527.681088pt;}
._ab{width:528.958752pt;}
._39{width:530.559456pt;}
._53{width:533.510880pt;}
._af{width:534.662496pt;}
._91{width:537.982848pt;}
._a6{width:562.564384pt;}
._51{width:569.689248pt;}
._c9{width:574.569024pt;}
._99{width:582.084384pt;}
._52{width:608.719488pt;}
._ac{width:619.666240pt;}
._4d{width:631.065984pt;}
._9a{width:639.186240pt;}
._3b{width:647.679456pt;}
._44{width:679.360416pt;}
._47{width:718.332096pt;}
._bb{width:727.361152pt;}
._4a{width:764.155296pt;}
._40{width:768.605856pt;}
._4c{width:891.903936pt;}
._49{width:899.516736pt;}
._4e{width:919.040640pt;}
._45{width:935.355456pt;}
._42{width:969.595488pt;}
._48{width:974.719488pt;}
._4f{width:1013.175840pt;}
.fsa{font-size:20.813867pt;}
.fsb{font-size:25.323733pt;}
.fs6{font-size:29.440000pt;}
.fsc{font-size:30.007467pt;}
.fs7{font-size:37.440000pt;}
.fs8{font-size:42.560000pt;}
.fs5{font-size:45.440000pt;}
.fsd{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs9{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.440000pt;}
.fs2{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:2.479867pt;}
.y2d{bottom:2.480000pt;}
.y35{bottom:2.560000pt;}
.y27b{bottom:2.880000pt;}
.y143{bottom:3.200000pt;}
.y2{bottom:50.880000pt;}
.y2c0{bottom:103.048680pt;}
.y1f3{bottom:104.160000pt;}
.y1e7{bottom:107.360000pt;}
.y150{bottom:117.280080pt;}
.y1b9{bottom:118.480000pt;}
.y1b8{bottom:121.680000pt;}
.y2c4{bottom:123.040000pt;}
.y77{bottom:125.040000pt;}
.yca{bottom:125.920000pt;}
.y1e6{bottom:128.240000pt;}
.y14f{bottom:134.160000pt;}
.y2b1{bottom:135.680320pt;}
.y11d{bottom:136.801840pt;}
.y2bf{bottom:136.808520pt;}
.y76{bottom:138.880000pt;}
.y2c3{bottom:139.280000pt;}
.yc9{bottom:140.240000pt;}
.y1b7{bottom:142.560000pt;}
.yc8{bottom:142.720000pt;}
.y1f2{bottom:145.920000pt;}
.y14d{bottom:148.480000pt;}
.y1e5{bottom:149.120000pt;}
.yc5{bottom:149.600000pt;}
.y75{bottom:150.160000pt;}
.y14e{bottom:151.680000pt;}
.y74{bottom:152.640000pt;}
.y2c2{bottom:153.688440pt;}
.yc6{bottom:153.920000pt;}
.yc7{bottom:156.400000pt;}
.y1b6{bottom:160.160000pt;}
.y1b5{bottom:163.360000pt;}
.y14b{bottom:165.360000pt;}
.y73{bottom:165.600000pt;}
.y1f1{bottom:166.800000pt;}
.y14c{bottom:168.560000pt;}
.y2b0{bottom:169.440160pt;}
.y1e4{bottom:170.000000pt;}
.yc4{bottom:170.079600pt;}
.y11c{bottom:170.481160pt;}
.y2be{bottom:170.487840pt;}
.y2c1{bottom:170.568360pt;}
.y70{bottom:172.160000pt;}
.yc3{bottom:176.640000pt;}
.y72{bottom:178.640000pt;}
.y149{bottom:182.240000pt;}
.y1b4{bottom:184.240000pt;}
.y14a{bottom:185.440000pt;}
.y1fe{bottom:187.680000pt;}
.y1e3{bottom:190.880000pt;}
.y71{bottom:191.680000pt;}
.yc2{bottom:196.880256pt;}
.y147{bottom:199.040000pt;}
.y256{bottom:201.041520pt;}
.y148{bottom:202.240000pt;}
.y2af{bottom:203.200000pt;}
.yc1{bottom:203.360000pt;}
.y11b{bottom:204.241000pt;}
.y2bd{bottom:204.247680pt;}
.y1b3{bottom:205.120000pt;}
.y24c{bottom:205.280000pt;}
.y6f{bottom:205.440000pt;}
.y1fd{bottom:208.480000pt;}
.y1e2{bottom:211.680000pt;}
.y241{bottom:212.560000pt;}
.y145{bottom:215.920000pt;}
.y6e{bottom:218.480000pt;}
.y6c{bottom:218.560000pt;}
.y146{bottom:219.120000pt;}
.y2ae{bottom:220.480000pt;}
.ybf{bottom:221.120000pt;}
.y26a{bottom:222.880035pt;}
.y2ad{bottom:223.360000pt;}
.yc0{bottom:223.600000pt;}
.ybe{bottom:223.600112pt;}
.y242{bottom:223.999821pt;}
.y1b2{bottom:226.000000pt;}
.y1fc{bottom:229.360000pt;}
.y6d{bottom:231.760000pt;}
.y26b{bottom:232.240031pt;}
.y1e1{bottom:232.560000pt;}
.y142{bottom:232.800000pt;}
.y203{bottom:234.080000pt;}
.y243{bottom:235.199763pt;}
.y144{bottom:236.000000pt;}
.yb5{bottom:236.640000pt;}
.ybb{bottom:236.640256pt;}
.y11a{bottom:238.000840pt;}
.y2bc{bottom:238.007520pt;}
.y2ac{bottom:239.840000pt;}
.y26c{bottom:241.600027pt;}
.y2ab{bottom:242.720000pt;}
.y6b{bottom:242.960000pt;}
.yba{bottom:243.120000pt;}
.y6a{bottom:245.440000pt;}
.y244{bottom:246.399705pt;}
.y1b1{bottom:246.880000pt;}
.ybd{bottom:249.599744pt;}
.y26d{bottom:250.960023pt;}
.y202{bottom:252.480000pt;}
.y141{bottom:252.881760pt;}
.y1e0{bottom:253.440000pt;}
.y245{bottom:257.599646pt;}
.y69{bottom:258.480000pt;}
.y5e{bottom:258.560000pt;}
.y2aa{bottom:259.200000pt;}
.y26e{bottom:260.320019pt;}
.y2a9{bottom:262.080000pt;}
.ybc{bottom:262.639888pt;}
.y1b0{bottom:264.480000pt;}
.y1af{bottom:267.680000pt;}
.y246{bottom:268.799588pt;}
.y26f{bottom:269.760148pt;}
.y140{bottom:269.761680pt;}
.y1f9{bottom:271.120000pt;}
.y119{bottom:271.680160pt;}
.y2bb{bottom:271.686840pt;}
.y68{bottom:271.760000pt;}
.yb8{bottom:273.920000pt;}
.y1df{bottom:274.320000pt;}
.yb9{bottom:276.400000pt;}
.y2a8{bottom:278.480000pt;}
.y270{bottom:279.120144pt;}
.y247{bottom:280.079663pt;}
.y2a7{bottom:281.360000pt;}
.yb7{bottom:282.880000pt;}
.y67{bottom:285.440000pt;}
.y13f{bottom:286.561080pt;}
.y271{bottom:288.480140pt;}
.y1ae{bottom:288.560000pt;}
.y248{bottom:291.199471pt;}
.y1f8{bottom:292.000000pt;}
.y1de{bottom:295.200000pt;}
.y2a6{bottom:297.840000pt;}
.y272{bottom:297.840136pt;}
.y66{bottom:298.480000pt;}
.y64{bottom:298.560000pt;}
.y2a5{bottom:300.720000pt;}
.y249{bottom:302.479546pt;}
.yb6{bottom:303.119856pt;}
.y13e{bottom:303.441000pt;}
.y118{bottom:305.440000pt;}
.y2ba{bottom:305.446680pt;}
.y1ad{bottom:306.240000pt;}
.y273{bottom:307.200131pt;}
.y1ac{bottom:309.440000pt;}
.y65{bottom:311.760000pt;}
.y1ee{bottom:312.880000pt;}
.y24a{bottom:313.679488pt;}
.y1dd{bottom:316.080000pt;}
.y274{bottom:316.560127pt;}
.yb4{bottom:316.800000pt;}
.y2a4{bottom:317.200000pt;}
.y2a3{bottom:320.080000pt;}
.y13d{bottom:320.320920pt;}
.y24b{bottom:324.879430pt;}
.y63{bottom:325.440000pt;}
.y275{bottom:326.000256pt;}
.y1ab{bottom:330.320000pt;}
.yb3{bottom:330.479856pt;}
.y1ed{bottom:333.680000pt;}
.y22{bottom:335.280080pt;}
.y240{bottom:336.560000pt;}
.y1dc{bottom:336.880000pt;}
.y13c{bottom:337.200840pt;}
.y62{bottom:338.480000pt;}
.y117{bottom:339.206360pt;}
.y2b9{bottom:339.206520pt;}
.y2a2{bottom:339.360000pt;}
.yb1{bottom:343.520000pt;}
.y5f{bottom:345.040000pt;}
.y24d{bottom:348.240000pt;}
.y1aa{bottom:351.200000pt;}
.y61{bottom:351.520000pt;}
.y21{bottom:352.160000pt;}
.y13b{bottom:354.080760pt;}
.yb2{bottom:356.560144pt;}
.y1db{bottom:357.760000pt;}
.y2a1{bottom:358.720000pt;}
.y23e{bottom:361.360000pt;}
.y60{bottom:364.560000pt;}
.y182{bottom:365.999352pt;}
.yaf{bottom:367.760000pt;}
.y232{bottom:368.640000pt;}
.y1a9{bottom:368.880000pt;}
.y20{bottom:369.043600pt;}
.yb0{bottom:370.240000pt;}
.y13a{bottom:370.960680pt;}
.y1a8{bottom:372.080000pt;}
.y116{bottom:372.885680pt;}
.y2b8{bottom:372.885840pt;}
.y2a0{bottom:375.200000pt;}
.y5d{bottom:375.760000pt;}
.y29f{bottom:378.080000pt;}
.y5c{bottom:378.240000pt;}
.y1da{bottom:378.640000pt;}
.y233{bottom:379.519928pt;}
.yae{bottom:383.280000pt;}
.y1f{bottom:385.923520pt;}
.y139{bottom:387.760080pt;}
.y234{bottom:389.680217pt;}
.y164{bottom:391.201696pt;}
.y5b{bottom:392.160000pt;}
.y1a7{bottom:392.880000pt;}
.y29e{bottom:394.480000pt;}
.yad{bottom:397.120000pt;}
.y29d{bottom:397.360000pt;}
.y1d9{bottom:399.520000pt;}
.y235{bottom:399.920120pt;}
.y181{bottom:400.560640pt;}
.y1e{bottom:402.722920pt;}
.y138{bottom:404.640000pt;}
.y5a{bottom:405.200000pt;}
.y115{bottom:406.645520pt;}
.y2b7{bottom:406.645680pt;}
.y236{bottom:410.160022pt;}
.yac{bottom:410.800000pt;}
.y1a6{bottom:413.760000pt;}
.y29c{bottom:413.840000pt;}
.y29b{bottom:416.720000pt;}
.y1fb{bottom:417.200000pt;}
.y59{bottom:418.240000pt;}
.y1d{bottom:419.602840pt;}
.y237{bottom:420.320311pt;}
.y1d8{bottom:420.400000pt;}
.y137{bottom:421.520000pt;}
.yab{bottom:422.080000pt;}
.yaa{bottom:424.560000pt;}
.y163{bottom:424.881016pt;}
.y238{bottom:430.560213pt;}
.y58{bottom:431.280000pt;}
.y29a{bottom:433.200000pt;}
.y1a5{bottom:434.640000pt;}
.y180{bottom:435.920000pt;}
.y299{bottom:436.080000pt;}
.y1c{bottom:436.482760pt;}
.ya9{bottom:438.240000pt;}
.y136{bottom:439.041320pt;}
.y114{bottom:440.405360pt;}
.y2b6{bottom:440.405520pt;}
.y239{bottom:440.720502pt;}
.y1d7{bottom:441.200000pt;}
.y57{bottom:445.120000pt;}
.y23a{bottom:450.960404pt;}
.ya8{bottom:451.920000pt;}
.y298{bottom:452.480000pt;}
.y1b{bottom:453.362680pt;}
.y17f{bottom:453.520000pt;}
.y297{bottom:455.360000pt;}
.y1a4{bottom:455.520000pt;}
.y56{bottom:458.160000pt;}
.y201{bottom:458.880000pt;}
.y161{bottom:459.040528pt;}
.y23b{bottom:461.200306pt;}
.y162{bottom:461.760640pt;}
.y1d6{bottom:462.080000pt;}
.ya7{bottom:465.600000pt;}
.y1a{bottom:470.242600pt;}
.y255{bottom:470.559978pt;}
.y17e{bottom:471.120000pt;}
.y23c{bottom:471.360595pt;}
.y296{bottom:471.840000pt;}
.y55{bottom:472.000000pt;}
.y135{bottom:473.440928pt;}
.y113{bottom:474.084680pt;}
.y2b5{bottom:474.084840pt;}
.y295{bottom:474.720000pt;}
.y1a3{bottom:476.400000pt;}
.ya6{bottom:479.360176pt;}
.y1d5{bottom:479.760000pt;}
.y254{bottom:480.560000pt;}
.y23d{bottom:481.520884pt;}
.y1d4{bottom:482.960000pt;}
.y54{bottom:483.200000pt;}
.y53{bottom:485.680000pt;}
.y19{bottom:487.122520pt;}
.y17d{bottom:488.800000pt;}
.yee{bottom:490.080000pt;}
.y294{bottom:491.200000pt;}
.y253{bottom:491.280000pt;}
.y231{bottom:492.640000pt;}
.ya5{bottom:493.040000pt;}
.y1a2{bottom:494.000000pt;}
.y293{bottom:494.080000pt;}
.y160{bottom:494.321272pt;}
.y52{bottom:496.880000pt;}
.y1a1{bottom:497.200000pt;}
.y51{bottom:499.360000pt;}
.y1ec{bottom:500.640000pt;}
.y1d3{bottom:503.840000pt;}
.y18{bottom:503.921920pt;}
.y23f{bottom:504.400000pt;}
.y17c{bottom:506.400000pt;}
.yed{bottom:506.880000pt;}
.ya4{bottom:506.960000pt;}
.y134{bottom:507.200768pt;}
.y195{bottom:507.360680pt;}
.y112{bottom:507.844520pt;}
.y2b4{bottom:507.844680pt;}
.y292{bottom:510.480000pt;}
.y252{bottom:512.400067pt;}
.y50{bottom:513.120000pt;}
.y291{bottom:513.360000pt;}
.y22f{bottom:517.440000pt;}
.y1a0{bottom:518.080000pt;}
.y4c{bottom:519.920000pt;}
.ya3{bottom:520.000000pt;}
.yec{bottom:520.560000pt;}
.y17{bottom:520.801840pt;}
.y1d2{bottom:521.520000pt;}
.y251{bottom:522.319956pt;}
.y17b{bottom:524.080000pt;}
.y1d1{bottom:524.720000pt;}
.y219{bottom:524.800000pt;}
.y4f{bottom:526.800000pt;}
.y15f{bottom:528.321208pt;}
.yea{bottom:531.840000pt;}
.y250{bottom:532.400111pt;}
.y290{bottom:532.720000pt;}
.y21a{bottom:532.720197pt;}
.ya2{bottom:533.040000pt;}
.yeb{bottom:534.320000pt;}
.ye9{bottom:534.320256pt;}
.y19f{bottom:535.760000pt;}
.y16{bottom:537.681760pt;}
.y21b{bottom:538.080288pt;}
.y19e{bottom:538.960000pt;}
.y4e{bottom:540.480000pt;}
.ye8{bottom:540.800000pt;}
.y194{bottom:541.040000pt;}
.y133{bottom:541.281224pt;}
.y111{bottom:541.523840pt;}
.y2b3{bottom:541.524000pt;}
.y17a{bottom:541.680000pt;}
.y24f{bottom:542.320000pt;}
.y1eb{bottom:542.400000pt;}
.y21c{bottom:543.520512pt;}
.y1d0{bottom:545.600000pt;}
.ya1{bottom:546.080000pt;}
.y21d{bottom:548.880603pt;}
.y28f{bottom:552.080000pt;}
.y24e{bottom:553.120000pt;}
.y4d{bottom:554.160000pt;}
.y21e{bottom:554.240694pt;}
.y15{bottom:554.561680pt;}
.y192{bottom:558.400000pt;}
.y105{bottom:558.400320pt;}
.ya0{bottom:559.040000pt;}
.y179{bottom:559.280000pt;}
.y21f{bottom:559.680918pt;}
.y19d{bottom:559.840000pt;}
.ye7{bottom:561.040256pt;}
.y193{bottom:561.600000pt;}
.y191{bottom:561.601216pt;}
.y15e{bottom:562.000528pt;}
.y1cf{bottom:563.200000pt;}
.y220{bottom:565.041009pt;}
.y4a{bottom:565.360000pt;}
.y1ce{bottom:566.400000pt;}
.ye6{bottom:567.520000pt;}
.y4b{bottom:567.840000pt;}
.y28e{bottom:568.480000pt;}
.y221{bottom:570.481234pt;}
.y28d{bottom:571.360000pt;}
.y14{bottom:571.441600pt;}
.y9f{bottom:572.080000pt;}
.ye0{bottom:573.360000pt;}
.y104{bottom:575.280240pt;}
.y132{bottom:575.281160pt;}
.y110{bottom:575.283680pt;}
.y2b2{bottom:575.283840pt;}
.y222{bottom:575.841325pt;}
.y178{bottom:576.960000pt;}
.y19c{bottom:580.720000pt;}
.y49{bottom:580.880000pt;}
.y223{bottom:581.281549pt;}
.y190{bottom:582.480784pt;}
.y1f7{bottom:584.080000pt;}
.y9e{bottom:585.120000pt;}
.y224{bottom:586.641640pt;}
.y1cd{bottom:587.280000pt;}
.ye5{bottom:587.759936pt;}
.y28c{bottom:587.840000pt;}
.y13{bottom:588.241000pt;}
.y28b{bottom:590.720000pt;}
.y225{bottom:592.081865pt;}
.y103{bottom:592.160160pt;}
.y177{bottom:594.560000pt;}
.y48{bottom:594.720000pt;}
.y15d{bottom:595.760368pt;}
.y226{bottom:597.441956pt;}
.y9d{bottom:598.160000pt;}
.ye3{bottom:600.800080pt;}
.y19b{bottom:601.600000pt;}
.y227{bottom:602.882180pt;}
.y18f{bottom:603.360352pt;}
.y1cc{bottom:604.960000pt;}
.y12{bottom:605.120920pt;}
.y28a{bottom:607.120000pt;}
.y47{bottom:607.760000pt;}
.y1cb{bottom:608.160000pt;}
.y228{bottom:608.242271pt;}
.y102{bottom:609.040080pt;}
.y131{bottom:609.041000pt;}
.y10f{bottom:609.043520pt;}
.y126{bottom:609.043680pt;}
.y289{bottom:610.000000pt;}
.y9c{bottom:612.000000pt;}
.y176{bottom:612.240000pt;}
.y229{bottom:613.602362pt;}
.ye1{bottom:613.840224pt;}
.y22a{bottom:619.042587pt;}
.y46{bottom:621.600000pt;}
.y11{bottom:622.000840pt;}
.y19a{bottom:622.400000pt;}
.y18e{bottom:624.239920pt;}
.y22b{bottom:624.402678pt;}
.y9b{bottom:625.679600pt;}
.y1ea{bottom:625.840000pt;}
.y101{bottom:625.920000pt;}
.y288{bottom:626.480000pt;}
.ye2{bottom:626.880368pt;}
.y1ca{bottom:629.040000pt;}
.y287{bottom:629.360000pt;}
.y22c{bottom:629.762769pt;}
.y175{bottom:629.840000pt;}
.y15c{bottom:629.919880pt;}
.y9a{bottom:632.240000pt;}
.y45{bottom:634.640000pt;}
.y22d{bottom:635.202993pt;}
.y10{bottom:638.880760pt;}
.ye4{bottom:639.839856pt;}
.y22e{bottom:640.563084pt;}
.y130{bottom:642.720320pt;}
.y10e{bottom:642.722840pt;}
.y125{bottom:642.723000pt;}
.y100{bottom:642.800000pt;}
.y199{bottom:643.280000pt;}
.y18d{bottom:645.119488pt;}
.y286{bottom:645.840000pt;}
.y1f6{bottom:646.720000pt;}
.y174{bottom:647.440000pt;}
.y44{bottom:647.680000pt;}
.y285{bottom:648.720000pt;}
.y218{bottom:648.800000pt;}
.y1c9{bottom:649.920000pt;}
.y99{bottom:652.479120pt;}
.ydf{bottom:653.599856pt;}
.yf{bottom:655.760680pt;}
.y96{bottom:658.960000pt;}
.yff{bottom:659.600000pt;}
.y230{bottom:660.480000pt;}
.y43{bottom:660.720000pt;}
.y18b{bottom:662.720000pt;}
.y15b{bottom:663.839296pt;}
.y198{bottom:664.160000pt;}
.y173{bottom:665.120000pt;}
.y18c{bottom:665.920000pt;}
.y18a{bottom:665.921728pt;}
.ydd{bottom:666.640000pt;}
.y1fa{bottom:667.520000pt;}
.y284{bottom:668.000000pt;}
.y1c8{bottom:670.720000pt;}
.ye{bottom:672.640600pt;}
.y216{bottom:673.600000pt;}
.y42{bottom:673.760000pt;}
.yfe{bottom:676.480080pt;}
.y12f{bottom:676.480160pt;}
.y10d{bottom:676.482680pt;}
.y124{bottom:676.482840pt;}
.y98{bottom:679.200112pt;}
.yde{bottom:679.599488pt;}
.y205{bottom:680.880000pt;}
.y172{bottom:682.720000pt;}
.y197{bottom:685.040000pt;}
.y97{bottom:685.679856pt;}
.y41{bottom:686.800000pt;}
.y189{bottom:686.801296pt;}
.y283{bottom:687.360000pt;}
.y1f5{bottom:688.400000pt;}
.y257{bottom:689.200343pt;}
.yd{bottom:689.440000pt;}
.y206{bottom:689.839849pt;}
.y12d{bottom:691.360680pt;}
.y1c7{bottom:691.600000pt;}
.ydc{bottom:693.359856pt;}
.yfd{bottom:693.360000pt;}
.y258{bottom:695.120327pt;}
.y15a{bottom:696.720000pt;}
.y207{bottom:696.880140pt;}
.y159{bottom:699.760664pt;}
.y40{bottom:699.840000pt;}
.y171{bottom:700.400000pt;}
.y259{bottom:701.040311pt;}
.y208{bottom:703.919910pt;}
.y95{bottom:705.920000pt;}
.yda{bottom:706.400000pt;}
.yc{bottom:706.560000pt;}
.y196{bottom:706.562184pt;}
.y282{bottom:706.720000pt;}
.y25a{bottom:707.040429pt;}
.y188{bottom:707.680864pt;}
.y1f4{bottom:709.280000pt;}
.yfc{bottom:710.240000pt;}
.y12e{bottom:710.240680pt;}
.y10c{bottom:710.242520pt;}
.y123{bottom:710.242680pt;}
.y209{bottom:710.960200pt;}
.y1c6{bottom:712.480000pt;}
.y25b{bottom:712.960413pt;}
.y3f{bottom:713.680000pt;}
.y170{bottom:718.000000pt;}
.y20a{bottom:718.080104pt;}
.y25c{bottom:718.960530pt;}
.ydb{bottom:719.440144pt;}
.y94{bottom:719.760000pt;}
.y281{bottom:723.120000pt;}
.y3e{bottom:724.880000pt;}
.y25d{bottom:724.880514pt;}
.y12c{bottom:725.040000pt;}
.y20b{bottom:725.120394pt;}
.y280{bottom:726.000000pt;}
.yfb{bottom:727.120000pt;}
.y3d{bottom:727.360000pt;}
.yb{bottom:727.760000pt;}
.y187{bottom:728.560432pt;}
.y1f0{bottom:730.160000pt;}
.y25e{bottom:730.880632pt;}
.y20c{bottom:732.160684pt;}
.yd9{bottom:733.119856pt;}
.y1c5{bottom:733.360000pt;}
.y90{bottom:733.439712pt;}
.y16f{bottom:735.600000pt;}
.y158{bottom:735.920144pt;}
.y25f{bottom:736.800616pt;}
.y3c{bottom:738.560000pt;}
.y20d{bottom:739.200975pt;}
.y3b{bottom:741.040000pt;}
.y27f{bottom:742.480000pt;}
.y12b{bottom:742.640680pt;}
.y260{bottom:742.800733pt;}
.yfa{bottom:743.920920pt;}
.y10b{bottom:743.921840pt;}
.y122{bottom:743.922000pt;}
.y27e{bottom:745.360000pt;}
.yd7{bottom:746.160000pt;}
.y93{bottom:746.319680pt;}
.y20e{bottom:746.320878pt;}
.y8f{bottom:746.479856pt;}
.y261{bottom:748.720717pt;}
.ya{bottom:748.880000pt;}
.y186{bottom:749.440000pt;}
.y1ef{bottom:751.040000pt;}
.y16e{bottom:753.280000pt;}
.y20f{bottom:753.361169pt;}
.y1c4{bottom:754.240000pt;}
.y262{bottom:754.640701pt;}
.y36{bottom:754.800000pt;}
.yd8{bottom:759.200144pt;}
.y92{bottom:759.359824pt;}
.y8c{bottom:759.520000pt;}
.y12a{bottom:759.520600pt;}
.y210{bottom:760.400939pt;}
.y263{bottom:760.640818pt;}
.yf9{bottom:760.800840pt;}
.y27d{bottom:761.840000pt;}
.y27c{bottom:764.720000pt;}
.y3a{bottom:766.000000pt;}
.y264{bottom:766.560802pt;}
.y211{bottom:767.441229pt;}
.y39{bottom:768.480000pt;}
.y157{bottom:769.120000pt;}
.y9{bottom:770.080000pt;}
.y16d{bottom:770.880000pt;}
.y185{bottom:770.959320pt;}
.y200{bottom:771.840000pt;}
.y156{bottom:772.159528pt;}
.y91{bottom:772.399968pt;}
.y8e{bottom:772.560144pt;}
.y265{bottom:772.560920pt;}
.yd6{bottom:772.879856pt;}
.y212{bottom:774.481519pt;}
.y1c3{bottom:775.040000pt;}
.y129{bottom:776.320000pt;}
.yf8{bottom:777.680760pt;}
.y10a{bottom:777.681680pt;}
.y121{bottom:777.681840pt;}
.y266{bottom:778.480904pt;}
.y38{bottom:779.680000pt;}
.y27a{bottom:781.120000pt;}
.y213{bottom:781.601423pt;}
.y37{bottom:782.160000pt;}
.y279{bottom:784.000000pt;}
.y267{bottom:784.481021pt;}
.y8d{bottom:785.600288pt;}
.ycb{bottom:785.920000pt;}
.y8{bottom:788.480000pt;}
.y16c{bottom:788.560000pt;}
.y214{bottom:788.641713pt;}
.y268{bottom:790.401005pt;}
.y1e9{bottom:792.720000pt;}
.y128{bottom:793.200000pt;}
.y34{bottom:793.360000pt;}
.yf7{bottom:794.560680pt;}
.y215{bottom:795.682004pt;}
.y33{bottom:795.920000pt;}
.y269{bottom:796.320989pt;}
.yd5{bottom:798.960144pt;}
.y8b{bottom:799.280000pt;}
.y278{bottom:803.360000pt;}
.y204{bottom:804.880000pt;}
.y155{bottom:805.680000pt;}
.y16b{bottom:806.160000pt;}
.y32{bottom:807.200000pt;}
.y154{bottom:808.719880pt;}
.y31{bottom:809.680000pt;}
.y8a{bottom:810.480000pt;}
.y184{bottom:810.480392pt;}
.y127{bottom:810.721392pt;}
.y109{bottom:811.361000pt;}
.y120{bottom:811.361160pt;}
.yf6{bottom:811.440600pt;}
.yd4{bottom:812.639856pt;}
.y89{bottom:812.960000pt;}
.y1ff{bottom:813.600000pt;}
.y7{bottom:816.000200pt;}
.y217{bottom:816.560000pt;}
.y1c2{bottom:816.800000pt;}
.y277{bottom:822.720000pt;}
.y2a{bottom:823.280000pt;}
.y30{bottom:823.360000pt;}
.y16a{bottom:823.760000pt;}
.y88{bottom:824.160000pt;}
.yd2{bottom:825.680000pt;}
.y87{bottom:826.640000pt;}
.yf5{bottom:828.240000pt;}
.y2f{bottom:834.560000pt;}
.y2e{bottom:837.040000pt;}
.y1c1{bottom:837.680000pt;}
.y86{bottom:837.920000pt;}
.yd3{bottom:838.720144pt;}
.y85{bottom:840.400000pt;}
.y6{bottom:840.559928pt;}
.y169{bottom:841.440000pt;}
.y153{bottom:842.639296pt;}
.y276{bottom:842.720000pt;}
.y183{bottom:844.880904pt;}
.yf4{bottom:845.120000pt;}
.y108{bottom:845.120840pt;}
.y11f{bottom:845.121000pt;}
.y2c{bottom:848.320000pt;}
.y2b{bottom:850.800000pt;}
.yd1{bottom:852.399856pt;}
.y84{bottom:854.080000pt;}
.y1c0{bottom:855.360000pt;}
.y1bf{bottom:858.560000pt;}
.y168{bottom:859.040000pt;}
.y7b{bottom:860.559856pt;}
.yf3{bottom:862.000920pt;}
.y29{bottom:864.480000pt;}
.y5{bottom:865.119656pt;}
.y82{bottom:865.280000pt;}
.ycf{bottom:865.440000pt;}
.y81{bottom:867.759867pt;}
.y7a{bottom:873.600000pt;}
.y80{bottom:874.320000pt;}
.y152{bottom:875.520000pt;}
.y1be{bottom:876.240000pt;}
.y167{bottom:876.720000pt;}
.y28{bottom:877.520000pt;}
.yd0{bottom:878.480144pt;}
.y151{bottom:878.560224pt;}
.y107{bottom:878.880680pt;}
.yf2{bottom:878.880840pt;}
.y1bd{bottom:879.440000pt;}
.y27{bottom:891.360000pt;}
.yce{bottom:892.159856pt;}
.y166{bottom:894.320000pt;}
.y7f{bottom:894.480000pt;}
.yf1{bottom:895.760760pt;}
.y1e8{bottom:897.040000pt;}
.y1bc{bottom:900.240000pt;}
.y7e{bottom:901.040000pt;}
.y4{bottom:901.280000pt;}
.y26{bottom:904.400000pt;}
.ycc{bottom:905.200000pt;}
.y165{bottom:911.919867pt;}
.y106{bottom:912.560000pt;}
.y11e{bottom:912.560160pt;}
.yf0{bottom:912.640680pt;}
.y25{bottom:918.240000pt;}
.ycd{bottom:918.240144pt;}
.y7c{bottom:918.720000pt;}
.y1bb{bottom:921.120000pt;}
.y7d{bottom:921.200000pt;}
.yef{bottom:929.440080pt;}
.y24{bottom:931.919867pt;}
.y3{bottom:932.560000pt;}
.y79{bottom:934.960000pt;}
.y1ba{bottom:942.640000pt;}
.y23{bottom:946.320000pt;}
.y78{bottom:948.000000pt;}
.y1{bottom:994.320000pt;}
.hc{height:12.560000pt;}
.hd{height:12.640000pt;}
.h24{height:14.880000pt;}
.h20{height:15.163227pt;}
.h1b{height:16.240000pt;}
.h21{height:18.448735pt;}
.h22{height:21.860908pt;}
.h8{height:30.796250pt;}
.hb{height:31.572812pt;}
.he{height:32.060937pt;}
.ha{height:33.103750pt;}
.h25{height:33.351562pt;}
.h9{height:35.952500pt;}
.h23{height:36.218125pt;}
.h15{height:36.455625pt;}
.h2{height:37.131406pt;}
.h7{height:39.688125pt;}
.h1e{height:40.660312pt;}
.h1{height:40.688906pt;}
.h1a{height:41.317969pt;}
.h16{height:42.661875pt;}
.h1f{height:42.690000pt;}
.h6{height:44.437500pt;}
.h17{height:44.443310pt;}
.h5{height:44.468750pt;}
.h18{height:50.006219pt;}
.h19{height:50.011499pt;}
.h1d{height:52.848906pt;}
.h1c{height:53.477969pt;}
.h13{height:57.491789pt;}
.hf{height:57.492812pt;}
.h10{height:57.812813pt;}
.h11{height:57.813346pt;}
.h12{height:57.814412pt;}
.h4{height:57.905625pt;}
.h14{height:58.773196pt;}
.h3{height:79.593125pt;}
.h0{height:1056.000000pt;}
.w17{width:3.760000pt;}
.w1f{width:18.880000pt;}
.w28{width:25.680000pt;}
.w20{width:31.440000pt;}
.w1b{width:35.280000pt;}
.w19{width:35.840000pt;}
.w18{width:38.720000pt;}
.w9{width:40.320000pt;}
.w1d{width:44.720000pt;}
.w7{width:46.240000pt;}
.wa{width:46.720000pt;}
.w1{width:48.720000pt;}
.w8{width:50.480000pt;}
.w5{width:51.200000pt;}
.w14{width:51.360000pt;}
.w2c{width:52.080000pt;}
.wd{width:52.880000pt;}
.w2{width:52.960000pt;}
.w12{width:54.160000pt;}
.w6{width:55.520000pt;}
.w22{width:55.760000pt;}
.w13{width:56.000000pt;}
.wf{width:56.640000pt;}
.w35{width:57.040000pt;}
.we{width:59.280000pt;}
.w37{width:59.680000pt;}
.w1c{width:61.760000pt;}
.w1a{width:62.400000pt;}
.w23{width:62.640000pt;}
.w10{width:63.040000pt;}
.w15{width:65.760000pt;}
.w3{width:66.960000pt;}
.w34{width:70.000000pt;}
.wb{width:71.120000pt;}
.w4{width:71.280000pt;}
.w1e{width:72.400000pt;}
.wc{width:77.520000pt;}
.w25{width:79.600000pt;}
.w31{width:80.640000pt;}
.w33{width:84.720000pt;}
.w45{width:91.840000pt;}
.w30{width:93.600000pt;}
.w36{width:93.680000pt;}
.w32{width:95.280000pt;}
.w49{width:97.040000pt;}
.w43{width:98.560000pt;}
.w2f{width:99.360000pt;}
.w24{width:100.000000pt;}
.w47{width:103.680000pt;}
.w42{width:107.440000pt;}
.w38{width:108.160000pt;}
.w2e{width:108.320000pt;}
.w3d{width:108.880000pt;}
.w4a{width:110.400000pt;}
.w46{width:112.640000pt;}
.w3a{width:113.360000pt;}
.w40{width:114.080000pt;}
.w4b{width:115.520000pt;}
.w21{width:116.400000pt;}
.w16{width:120.240000pt;}
.w39{width:123.680000pt;}
.w2d{width:123.840000pt;}
.w3c{width:124.480000pt;}
.w3b{width:128.880000pt;}
.w3f{width:129.600000pt;}
.w2b{width:131.120000pt;}
.w3e{width:136.240000pt;}
.w41{width:141.440000pt;}
.w44{width:168.160000pt;}
.w48{width:173.280000pt;}
.w27{width:194.000000pt;}
.w29{width:203.040000pt;}
.w26{width:261.760000pt;}
.w2a{width:313.120000pt;}
.w11{width:362.960000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:15.760000pt;}
.x90{left:17.040000pt;}
.x82{left:23.680000pt;}
.x34{left:30.160000pt;}
.x32{left:35.600000pt;}
.x1c{left:37.200000pt;}
.x38{left:39.040000pt;}
.xe{left:43.040000pt;}
.x16{left:45.600000pt;}
.x10{left:47.360000pt;}
.x18{left:49.920000pt;}
.x25{left:51.040000pt;}
.x41{left:52.640000pt;}
.x23{left:53.600000pt;}
.x36{left:56.160000pt;}
.x27{left:57.440000pt;}
.x2e{left:60.160000pt;}
.x12{left:61.280000pt;}
.x14{left:65.600000pt;}
.x3a{left:68.560000pt;}
.x20{left:71.920000pt;}
.x5f{left:75.760000pt;}
.x63{left:80.640000pt;}
.x84{left:84.400000pt;}
.x96{left:86.640000pt;}
.x5d{left:89.520000pt;}
.x61{left:91.200000pt;}
.x5b{left:95.280000pt;}
.x47{left:96.240000pt;}
.x88{left:100.000000pt;}
.x58{left:104.240000pt;}
.x3f{left:110.800000pt;}
.x8a{left:113.360000pt;}
.x30{left:117.120000pt;}
.x1{left:120.000000pt;}
.x54{left:123.041200pt;}
.x8f{left:125.920000pt;}
.xa{left:127.200000pt;}
.x4d{left:130.560000pt;}
.x93{left:137.760000pt;}
.x74{left:141.358052pt;}
.x81{left:142.316393pt;}
.x4b{left:143.999992pt;}
.x76{left:148.398049pt;}
.x6a{left:149.838067pt;}
.xb{left:151.200000pt;}
.x79{left:153.037506pt;}
.x55{left:153.999208pt;}
.x7a{left:155.597611pt;}
.x4{left:156.798032pt;}
.x6e{left:158.478423pt;}
.x6c{left:160.077969pt;}
.x6b{left:163.117834pt;}
.x6d{left:164.318274pt;}
.x69{left:165.597806pt;}
.x8{left:168.000168pt;}
.x7e{left:169.197938pt;}
.x4e{left:173.120000pt;}
.xc{left:175.200000pt;}
.x6f{left:177.678695pt;}
.x29{left:180.880000pt;}
.x70{left:183.118919pt;}
.x83{left:184.400000pt;}
.x95{left:190.400000pt;}
.x3d{left:194.080000pt;}
.x78{left:195.920000pt;}
.x8c{left:200.000000pt;}
.x80{left:202.720000pt;}
.x86{left:207.360000pt;}
.x73{left:212.000000pt;}
.x7f{left:214.480000pt;}
.x8d{left:217.760000pt;}
.x3{left:221.600000pt;}
.x92{left:225.920000pt;}
.x87{left:229.600000pt;}
.x91{left:235.440000pt;}
.x68{left:236.960000pt;}
.x4f{left:243.120000pt;}
.x85{left:245.120000pt;}
.xd{left:247.200000pt;}
.x50{left:248.400000pt;}
.x2b{left:251.360000pt;}
.x89{left:260.640000pt;}
.x5{left:271.037720pt;}
.x8e{left:273.200000pt;}
.x8b{left:277.680000pt;}
.x35{left:283.040000pt;}
.x4a{left:284.320000pt;}
.x1d{left:287.520000pt;}
.x51{left:289.360000pt;}
.x39{left:291.920000pt;}
.x1a{left:293.120000pt;}
.xf{left:295.680000pt;}
.x17{left:298.160000pt;}
.x22{left:300.080000pt;}
.x2a{left:301.360000pt;}
.x2c{left:302.720000pt;}
.x26{left:303.840000pt;}
.x94{left:305.120000pt;}
.x52{left:312.000000pt;}
.x13{left:313.920000pt;}
.x1f{left:318.320000pt;}
.x3b{left:319.600000pt;}
.x56{left:323.280000pt;}
.x66{left:328.240000pt;}
.x67{left:330.640000pt;}
.x65{left:341.200000pt;}
.x60{left:351.840000pt;}
.x64{left:355.920000pt;}
.x53{left:360.000000pt;}
.x5e{left:364.800000pt;}
.x62{left:366.480000pt;}
.x6{left:367.760000pt;}
.x5c{left:370.560000pt;}
.x97{left:373.760000pt;}
.x59{left:379.520000pt;}
.x44{left:381.920000pt;}
.x9{left:390.880000pt;}
.x57{left:395.040000pt;}
.x3e{left:396.880000pt;}
.x5a{left:402.320000pt;}
.x7{left:408.000000pt;}
.x7b{left:413.120000pt;}
.x72{left:419.680000pt;}
.x75{left:422.000000pt;}
.x77{left:424.400000pt;}
.x33{left:429.920000pt;}
.x71{left:435.680000pt;}
.x1e{left:437.840000pt;}
.x1b{left:441.680000pt;}
.x11{left:444.160000pt;}
.x19{left:446.720000pt;}
.x24{left:450.480000pt;}
.x37{left:452.960000pt;}
.x28{left:454.240000pt;}
.x15{left:462.480000pt;}
.x21{left:468.720000pt;}
.x2d{left:523.200000pt;}
.x45{left:535.200080pt;}
.x42{left:569.520000pt;}
.x46{left:583.760000pt;}
.x2f{left:588.960000pt;}
.x43{left:632.160000pt;}
.x40{left:639.600000pt;}
.x31{left:643.440000pt;}
.x4c{left:682.639867pt;}
.x48{left:683.679867pt;}
.x2{left:689.360000pt;}
.x49{left:713.360000pt;}
.x7c{left:726.480000pt;}
.x7d{left:744.000720pt;}
}




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