
    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_b3062f268d79738b02117475.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_bd5127b88ad12cc050322d04.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_b2e8936bbad36a23d964cbe0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.168000;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_ef331484995ebf4b044db782.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.174000;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_658a70d94c237cb28ce59db4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_658a70d94c237cb28ce59db4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_8f1671437e285e653afd1465.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.200900;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_ccf501613ae851a9ee22b17a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.168000;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_9c4b803ec6235f98855936bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-19.979400px;}
.v5{vertical-align:-18.581400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.581400px;}
.v2{vertical-align:19.979400px;}
.v1{vertical-align:31.968000px;}
.v6{vertical-align:39.947160px;}
.ls5b{letter-spacing:-4.200000px;}
.lseb{letter-spacing:-3.840000px;}
.ls7b{letter-spacing:-3.600000px;}
.lsdf{letter-spacing:-3.360000px;}
.ls6f{letter-spacing:-3.132000px;}
.ls44{letter-spacing:-3.000000px;}
.lsab{letter-spacing:-2.820000px;}
.lsc7{letter-spacing:-2.760000px;}
.lsc8{letter-spacing:-2.700000px;}
.lsa9{letter-spacing:-2.640000px;}
.lsac{letter-spacing:-2.580000px;}
.lsaa{letter-spacing:-2.460000px;}
.ls103{letter-spacing:-2.280000px;}
.lsf9{letter-spacing:-2.232000px;}
.ls5d{letter-spacing:-2.100000px;}
.lsc9{letter-spacing:-1.980000px;}
.ls5a{letter-spacing:-1.860000px;}
.lsdc{letter-spacing:-1.620000px;}
.ls6b{letter-spacing:-1.531800px;}
.ls7{letter-spacing:-1.479000px;}
.lsec{letter-spacing:-1.200000px;}
.lsed{letter-spacing:-1.140000px;}
.ls78{letter-spacing:-1.080000px;}
.ls5e{letter-spacing:-0.948600px;}
.lse9{letter-spacing:-0.944460px;}
.lsdd{letter-spacing:-0.840000px;}
.lsea{letter-spacing:-0.780000px;}
.ls68{letter-spacing:-0.769560px;}
.ls6c{letter-spacing:-0.703800px;}
.ls7c{letter-spacing:-0.699600px;}
.ls7a{letter-spacing:-0.664620px;}
.ls76{letter-spacing:-0.660000px;}
.ls6d{letter-spacing:-0.621000px;}
.ls77{letter-spacing:-0.600000px;}
.ls63{letter-spacing:-0.594660px;}
.lsa{letter-spacing:-0.561000px;}
.ls17{letter-spacing:-0.540000px;}
.lse0{letter-spacing:-0.524700px;}
.lsde{letter-spacing:-0.489720px;}
.ls4b{letter-spacing:-0.480000px;}
.ls74{letter-spacing:-0.432000px;}
.ls7e{letter-spacing:-0.420000px;}
.ls30{letter-spacing:-0.414000px;}
.ls7f{letter-spacing:-0.390600px;}
.ls102{letter-spacing:-0.378000px;}
.ls57{letter-spacing:-0.372600px;}
.ls75{letter-spacing:-0.360000px;}
.ls2e{letter-spacing:-0.349800px;}
.ls79{letter-spacing:-0.314820px;}
.ls5c{letter-spacing:-0.300000px;}
.lsf8{letter-spacing:-0.279840px;}
.ls73{letter-spacing:-0.279000px;}
.ls42{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.223200px;}
.ls56{letter-spacing:-0.209880px;}
.ls8{letter-spacing:-0.204000px;}
.ls4c{letter-spacing:-0.180000px;}
.ls6a{letter-spacing:-0.174900px;}
.ls31{letter-spacing:-0.167400px;}
.ls43{letter-spacing:-0.139920px;}
.ls1c{letter-spacing:-0.130126px;}
.ls19{letter-spacing:-0.120000px;}
.ls33{letter-spacing:-0.111600px;}
.ls4d{letter-spacing:-0.104940px;}
.ls9{letter-spacing:-0.102000px;}
.ls7d{letter-spacing:-0.069960px;}
.ls34{letter-spacing:-0.065063px;}
.lsb{letter-spacing:-0.060000px;}
.ls32{letter-spacing:-0.055800px;}
.ls71{letter-spacing:-0.034980px;}
.ls6{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.000240px;}
.lsd1{letter-spacing:0.004592px;}
.ls15{letter-spacing:0.019680px;}
.ls101{letter-spacing:0.021731px;}
.ls22{letter-spacing:0.030000px;}
.ls70{letter-spacing:0.034980px;}
.ls53{letter-spacing:0.049592px;}
.ls0{letter-spacing:0.051000px;}
.ls3d{letter-spacing:0.055800px;}
.lse{letter-spacing:0.060000px;}
.ls4a{letter-spacing:0.069960px;}
.ls13{letter-spacing:0.071880px;}
.ls14{letter-spacing:0.072360px;}
.ls52{letter-spacing:0.083700px;}
.ls2{letter-spacing:0.093900px;}
.ls97{letter-spacing:0.097500px;}
.ls25{letter-spacing:0.104940px;}
.ls23{letter-spacing:0.111600px;}
.ls12{letter-spacing:0.120000px;}
.ls49{letter-spacing:0.139920px;}
.lsd7{letter-spacing:0.142931px;}
.lse5{letter-spacing:0.143792px;}
.lsa2{letter-spacing:0.146792px;}
.ls96{letter-spacing:0.150000px;}
.lsae{letter-spacing:0.152220px;}
.ls55{letter-spacing:0.162000px;}
.ls38{letter-spacing:0.167400px;}
.ls41{letter-spacing:0.174900px;}
.ls10{letter-spacing:0.179160px;}
.ls1{letter-spacing:0.180000px;}
.ls9c{letter-spacing:0.195131px;}
.ls26{letter-spacing:0.209880px;}
.ls58{letter-spacing:0.210000px;}
.ls9f{letter-spacing:0.213131px;}
.ls8d{letter-spacing:0.213240px;}
.ls8c{letter-spacing:0.213840px;}
.ls62{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.222000px;}
.ls16{letter-spacing:0.223200px;}
.lsef{letter-spacing:0.227370px;}
.ls9a{letter-spacing:0.229440px;}
.ls20{letter-spacing:0.240000px;}
.ls4e{letter-spacing:0.244860px;}
.lsa3{letter-spacing:0.245520px;}
.lsa4{letter-spacing:0.251100px;}
.lsf5{letter-spacing:0.258900px;}
.ls81{letter-spacing:0.262350px;}
.ls50{letter-spacing:0.271200px;}
.ls5{letter-spacing:0.279000px;}
.ls2f{letter-spacing:0.279840px;}
.ls8f{letter-spacing:0.297330px;}
.ls91{letter-spacing:0.297840px;}
.ls3{letter-spacing:0.300000px;}
.ls85{letter-spacing:0.306900px;}
.ls3f{letter-spacing:0.314820px;}
.ls45{letter-spacing:0.330000px;}
.lsb0{letter-spacing:0.332400px;}
.lsd{letter-spacing:0.333000px;}
.ls67{letter-spacing:0.334800px;}
.lsf0{letter-spacing:0.345000px;}
.lsfb{letter-spacing:0.349800px;}
.lsfe{letter-spacing:0.354000px;}
.ls11{letter-spacing:0.360000px;}
.ls99{letter-spacing:0.366000px;}
.ls72{letter-spacing:0.384780px;}
.ls8e{letter-spacing:0.390000px;}
.ls54{letter-spacing:0.390600px;}
.lsf1{letter-spacing:0.409440px;}
.lsf2{letter-spacing:0.410040px;}
.ls35{letter-spacing:0.414000px;}
.lsf4{letter-spacing:0.415800px;}
.lsfd{letter-spacing:0.419760px;}
.ls21{letter-spacing:0.420000px;}
.ls1e{letter-spacing:0.422908px;}
.lsee{letter-spacing:0.432000px;}
.ls4f{letter-spacing:0.446400px;}
.ls80{letter-spacing:0.450000px;}
.ls65{letter-spacing:0.454740px;}
.lse8{letter-spacing:0.470531px;}
.ls4{letter-spacing:0.480000px;}
.ls46{letter-spacing:0.502200px;}
.ls37{letter-spacing:0.510000px;}
.lscb{letter-spacing:0.524700px;}
.lsce{letter-spacing:0.525840px;}
.ls40{letter-spacing:0.540000px;}
.ls29{letter-spacing:0.558000px;}
.lsfa{letter-spacing:0.559680px;}
.lsbb{letter-spacing:0.585300px;}
.lsbc{letter-spacing:0.594660px;}
.lsf{letter-spacing:0.600000px;}
.ls2b{letter-spacing:0.613800px;}
.ls94{letter-spacing:0.629640px;}
.lsf3{letter-spacing:0.630000px;}
.ls105{letter-spacing:0.648000px;}
.ls6e{letter-spacing:0.660000px;}
.lsb8{letter-spacing:0.699600px;}
.lsb7{letter-spacing:0.700620px;}
.lsb6{letter-spacing:0.701100px;}
.ls66{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.725400px;}
.ls64{letter-spacing:0.734580px;}
.lsfc{letter-spacing:0.750000px;}
.ls69{letter-spacing:0.769560px;}
.ls61{letter-spacing:0.780000px;}
.ls8a{letter-spacing:0.781200px;}
.lscc{letter-spacing:0.810000px;}
.lsb1{letter-spacing:0.826500px;}
.lsb2{letter-spacing:0.827100px;}
.ls2a{letter-spacing:0.837000px;}
.lsb3{letter-spacing:0.839520px;}
.ls60{letter-spacing:0.840000px;}
.lscd{letter-spacing:0.873600px;}
.lsf7{letter-spacing:0.892800px;}
.lsca{letter-spacing:0.900000px;}
.ls18{letter-spacing:0.918000px;}
.ls2c{letter-spacing:0.948600px;}
.ls95{letter-spacing:0.960000px;}
.ls36{letter-spacing:1.004400px;}
.lsba{letter-spacing:1.020000px;}
.ls28{letter-spacing:1.060200px;}
.ls92{letter-spacing:1.080000px;}
.lse3{letter-spacing:1.116000px;}
.lsb9{letter-spacing:1.140000px;}
.ls27{letter-spacing:1.200000px;}
.ls104{letter-spacing:1.224000px;}
.ls5f{letter-spacing:1.260000px;}
.lsb4{letter-spacing:1.320000px;}
.ls3e{letter-spacing:1.350000px;}
.ls47{letter-spacing:1.400580px;}
.ls48{letter-spacing:1.404000px;}
.ls93{letter-spacing:1.422000px;}
.ls1a{letter-spacing:1.440000px;}
.ls1f{letter-spacing:1.512000px;}
.ls8b{letter-spacing:1.566000px;}
.lsc6{letter-spacing:1.674000px;}
.ls24{letter-spacing:1.728000px;}
.ls82{letter-spacing:1.740000px;}
.lsa8{letter-spacing:1.800000px;}
.ls2d{letter-spacing:1.836000px;}
.ls98{letter-spacing:2.040000px;}
.ls89{letter-spacing:2.106000px;}
.lscf{letter-spacing:2.160000px;}
.lsad{letter-spacing:2.220000px;}
.lsaf{letter-spacing:2.400000px;}
.ls100{letter-spacing:4.129200px;}
.ls90{letter-spacing:4.620000px;}
.lsff{letter-spacing:5.077800px;}
.lsf6{letter-spacing:5.700000px;}
.lsb5{letter-spacing:8.100000px;}
.lse4{letter-spacing:9.765000px;}
.lsbd{letter-spacing:10.434600px;}
.lsd4{letter-spacing:10.657800px;}
.lsc4{letter-spacing:10.825200px;}
.ls87{letter-spacing:11.048400px;}
.ls9d{letter-spacing:11.271600px;}
.lsd8{letter-spacing:13.168800px;}
.lsd3{letter-spacing:13.336200px;}
.lse6{letter-spacing:13.615200px;}
.lsc0{letter-spacing:13.671000px;}
.lsa7{letter-spacing:13.782600px;}
.lsc2{letter-spacing:13.894200px;}
.lsc1{letter-spacing:14.061600px;}
.lsd5{letter-spacing:14.117400px;}
.lsd0{letter-spacing:14.229000px;}
.lsbf{letter-spacing:14.284800px;}
.ls9b{letter-spacing:14.508000px;}
.lsa5{letter-spacing:14.731200px;}
.ls88{letter-spacing:14.898600px;}
.lsa0{letter-spacing:15.121800px;}
.lsa1{letter-spacing:15.345000px;}
.lse7{letter-spacing:16.628400px;}
.lsd6{letter-spacing:17.521200px;}
.lsc3{letter-spacing:17.688600px;}
.lse1{letter-spacing:17.967600px;}
.lsd2{letter-spacing:18.079200px;}
.lsa6{letter-spacing:18.135000px;}
.lsd9{letter-spacing:18.358200px;}
.lsda{letter-spacing:18.581400px;}
.ls84{letter-spacing:19.195200px;}
.lsdb{letter-spacing:19.251000px;}
.lse2{letter-spacing:19.697400px;}
.lsbe{letter-spacing:19.864800px;}
.ls86{letter-spacing:20.088000px;}
.lsc5{letter-spacing:20.255400px;}
.ls9e{letter-spacing:20.701800px;}
.ls83{letter-spacing:23.938200px;}
.ls3c{letter-spacing:29.239200px;}
.ls51{letter-spacing:29.518200px;}
.ls3a{letter-spacing:30.132000px;}
.ls39{letter-spacing:30.299400px;}
.ls3b{letter-spacing:33.591600px;}
.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;}
}
.ws115{word-spacing:-15.060000px;}
.ws108{word-spacing:-14.904000px;}
.ws1d{word-spacing:-14.700000px;}
.ws50{word-spacing:-14.634000px;}
.ws14a{word-spacing:-14.526000px;}
.ws129{word-spacing:-14.472000px;}
.wsac{word-spacing:-14.310000px;}
.ws81{word-spacing:-14.202000px;}
.ws12e{word-spacing:-13.980000px;}
.ws130{word-spacing:-13.740000px;}
.ws13e{word-spacing:-13.440000px;}
.ws0{word-spacing:-13.264416px;}
.ws15a{word-spacing:-13.260000px;}
.ws88{word-spacing:-12.960000px;}
.wsd4{word-spacing:-12.900000px;}
.ws12d{word-spacing:-12.840000px;}
.ws12a{word-spacing:-12.780000px;}
.ws3b{word-spacing:-12.720000px;}
.ws1e{word-spacing:-12.660000px;}
.wse2{word-spacing:-12.600000px;}
.ws84{word-spacing:-12.540000px;}
.ws175{word-spacing:-12.495000px;}
.ws14e{word-spacing:-12.480000px;}
.ws132{word-spacing:-12.420000px;}
.wsf0{word-spacing:-12.366000px;}
.ws1c{word-spacing:-12.258000px;}
.ws14c{word-spacing:-12.240000px;}
.ws140{word-spacing:-12.090000px;}
.ws15e{word-spacing:-12.052800px;}
.wsf2{word-spacing:-12.000000px;}
.ws22{word-spacing:-11.997000px;}
.ws14f{word-spacing:-11.941200px;}
.ws144{word-spacing:-11.940000px;}
.ws15b{word-spacing:-11.910000px;}
.ws11a{word-spacing:-11.760000px;}
.ws10a{word-spacing:-11.640000px;}
.ws116{word-spacing:-11.610000px;}
.ws9b{word-spacing:-11.520000px;}
.ws120{word-spacing:-11.494800px;}
.wsb3{word-spacing:-11.460000px;}
.ws54{word-spacing:-11.439000px;}
.ws11c{word-spacing:-11.430000px;}
.wsb1{word-spacing:-11.400000px;}
.ws15f{word-spacing:-11.383200px;}
.ws8a{word-spacing:-11.340000px;}
.ws8b{word-spacing:-11.280000px;}
.wsad{word-spacing:-11.220000px;}
.ws11f{word-spacing:-11.160000px;}
.ws86{word-spacing:-11.100000px;}
.ws15d{word-spacing:-11.048400px;}
.wsb0{word-spacing:-11.040000px;}
.ws10b{word-spacing:-10.992600px;}
.wsb2{word-spacing:-10.980000px;}
.ws176{word-spacing:-10.965000px;}
.ws145{word-spacing:-10.920000px;}
.ws142{word-spacing:-10.860000px;}
.ws85{word-spacing:-10.800000px;}
.wsf4{word-spacing:-10.740000px;}
.wsae{word-spacing:-10.680000px;}
.ws133{word-spacing:-10.560000px;}
.wsb4{word-spacing:-10.440000px;}
.ws16d{word-spacing:-10.260000px;}
.ws118{word-spacing:-10.080000px;}
.ws11e{word-spacing:-9.960000px;}
.ws117{word-spacing:-9.900000px;}
.ws12c{word-spacing:-9.840000px;}
.ws1{word-spacing:-9.792000px;}
.ws12b{word-spacing:-9.780000px;}
.ws11d{word-spacing:-9.720000px;}
.ws6c{word-spacing:-9.540000px;}
.ws56{word-spacing:-9.315000px;}
.ws143{word-spacing:-9.180000px;}
.wsf5{word-spacing:-8.940000px;}
.ws2{word-spacing:-8.901000px;}
.ws14d{word-spacing:-8.700000px;}
.ws9d{word-spacing:-8.528400px;}
.ws53{word-spacing:-8.487000px;}
.wsaf{word-spacing:-8.340000px;}
.wsd7{word-spacing:-8.280000px;}
.wsd6{word-spacing:-8.197200px;}
.ws12f{word-spacing:-8.150340px;}
.wsd2{word-spacing:-8.080380px;}
.wsc6{word-spacing:-8.045400px;}
.ws131{word-spacing:-8.010420px;}
.ws11b{word-spacing:-7.940460px;}
.ws134{word-spacing:-7.905480px;}
.ws16a{word-spacing:-7.870500px;}
.ws13f{word-spacing:-7.835520px;}
.wsc7{word-spacing:-7.765560px;}
.ws16c{word-spacing:-7.730580px;}
.wse5{word-spacing:-7.695600px;}
.ws16b{word-spacing:-7.660620px;}
.ws69{word-spacing:-7.625640px;}
.ws119{word-spacing:-7.608150px;}
.ws52{word-spacing:-7.590660px;}
.ws109{word-spacing:-7.573170px;}
.ws89{word-spacing:-7.555680px;}
.ws159{word-spacing:-7.538190px;}
.ws3d{word-spacing:-7.520700px;}
.ws6a{word-spacing:-7.485720px;}
.ws82{word-spacing:-7.450740px;}
.ws23{word-spacing:-7.417159px;}
.ws3c{word-spacing:-7.415760px;}
.ws83{word-spacing:-7.380780px;}
.wsd5{word-spacing:-7.369200px;}
.wse3{word-spacing:-7.345800px;}
.ws1f{word-spacing:-7.310820px;}
.wse4{word-spacing:-7.275840px;}
.wsf7{word-spacing:-7.240860px;}
.ws87{word-spacing:-7.205880px;}
.ws6b{word-spacing:-7.170900px;}
.wsd3{word-spacing:-7.135920px;}
.ws9c{word-spacing:-7.100940px;}
.ws15c{word-spacing:-7.030980px;}
.wsf1{word-spacing:-6.996000px;}
.ws21{word-spacing:-6.994251px;}
.ws51{word-spacing:-6.961020px;}
.ws55{word-spacing:-6.929188px;}
.ws20{word-spacing:-6.864125px;}
.ws141{word-spacing:-6.821100px;}
.ws146{word-spacing:-6.786120px;}
.wsc5{word-spacing:-6.716160px;}
.wsf3{word-spacing:-6.646200px;}
.wsf6{word-spacing:-6.611220px;}
.wsd1{word-spacing:-6.541260px;}
.ws14b{word-spacing:-6.366360px;}
.ws153{word-spacing:-4.320000px;}
.ws154{word-spacing:-3.900000px;}
.ws102{word-spacing:-3.013200px;}
.wsc1{word-spacing:-2.734200px;}
.wse9{word-spacing:-2.460000px;}
.wsfa{word-spacing:-2.400000px;}
.ws151{word-spacing:-2.280000px;}
.wsd8{word-spacing:-2.220000px;}
.wsfc{word-spacing:-2.160000px;}
.ws179{word-spacing:-2.120400px;}
.wsba{word-spacing:-2.040000px;}
.ws173{word-spacing:-2.008800px;}
.ws70{word-spacing:-1.980000px;}
.ws2f{word-spacing:-1.920000px;}
.ws37{word-spacing:-1.897200px;}
.wsf{word-spacing:-1.860000px;}
.ws63{word-spacing:-1.841400px;}
.wscf{word-spacing:-1.800000px;}
.ws4e{word-spacing:-1.785600px;}
.wsfb{word-spacing:-1.740000px;}
.ws5{word-spacing:-1.734000px;}
.ws74{word-spacing:-1.729800px;}
.ws3e{word-spacing:-1.728000px;}
.wsec{word-spacing:-1.680000px;}
.wsdb{word-spacing:-1.674000px;}
.wsa{word-spacing:-1.632000px;}
.ws7e{word-spacing:-1.618200px;}
.wsc{word-spacing:-1.581000px;}
.ws75{word-spacing:-1.562400px;}
.wscc{word-spacing:-1.560000px;}
.ws7f{word-spacing:-1.506600px;}
.ws16{word-spacing:-1.500000px;}
.wsa5{word-spacing:-1.450800px;}
.ws4a{word-spacing:-1.440000px;}
.ws4f{word-spacing:-1.395000px;}
.wsc0{word-spacing:-1.339200px;}
.ws5a{word-spacing:-1.320000px;}
.ws13c{word-spacing:-1.283400px;}
.ws33{word-spacing:-1.227600px;}
.ws48{word-spacing:-1.200000px;}
.ws7d{word-spacing:-1.171800px;}
.wse7{word-spacing:-1.140000px;}
.wsbc{word-spacing:-1.116000px;}
.ws90{word-spacing:-1.080000px;}
.wse0{word-spacing:-1.060200px;}
.ws10{word-spacing:-1.020000px;}
.ws5e{word-spacing:-1.004400px;}
.ws4c{word-spacing:-0.960000px;}
.wsbd{word-spacing:-0.948600px;}
.ws47{word-spacing:-0.900000px;}
.wsc2{word-spacing:-0.892800px;}
.ws8f{word-spacing:-0.840000px;}
.wsa9{word-spacing:-0.837000px;}
.ws61{word-spacing:-0.781200px;}
.wsc3{word-spacing:-0.725400px;}
.wsb6{word-spacing:-0.720000px;}
.ws17a{word-spacing:-0.714000px;}
.ws34{word-spacing:-0.669600px;}
.wsb{word-spacing:-0.663000px;}
.ws43{word-spacing:-0.660000px;}
.wsef{word-spacing:-0.613800px;}
.ws163{word-spacing:-0.600000px;}
.ws65{word-spacing:-0.558000px;}
.wsa3{word-spacing:-0.540000px;}
.ws79{word-spacing:-0.502200px;}
.ws93{word-spacing:-0.480000px;}
.ws38{word-spacing:-0.446400px;}
.ws15{word-spacing:-0.420000px;}
.ws157{word-spacing:-0.390600px;}
.ws96{word-spacing:-0.360000px;}
.ws3{word-spacing:-0.355200px;}
.ws16f{word-spacing:-0.349800px;}
.ws66{word-spacing:-0.334800px;}
.ws94{word-spacing:-0.300000px;}
.ws68{word-spacing:-0.279000px;}
.ws28{word-spacing:-0.240000px;}
.ws19{word-spacing:-0.223200px;}
.ws1b{word-spacing:-0.222000px;}
.wsd{word-spacing:-0.204000px;}
.ws46{word-spacing:-0.180000px;}
.ws114{word-spacing:-0.167400px;}
.ws17{word-spacing:-0.120000px;}
.ws13d{word-spacing:-0.111600px;}
.ws97{word-spacing:-0.055800px;}
.ws4{word-spacing:0.000000px;}
.wsa7{word-spacing:0.055800px;}
.ws12{word-spacing:0.060000px;}
.ws7b{word-spacing:0.111600px;}
.ws29{word-spacing:0.120000px;}
.ws7a{word-spacing:0.167400px;}
.ws44{word-spacing:0.180000px;}
.wsa4{word-spacing:0.223200px;}
.ws152{word-spacing:0.240000px;}
.ws9{word-spacing:0.255000px;}
.wsed{word-spacing:0.279000px;}
.ws6{word-spacing:0.306000px;}
.wsee{word-spacing:0.334800px;}
.ws71{word-spacing:0.360000px;}
.wsbe{word-spacing:0.390600px;}
.ws31{word-spacing:0.420000px;}
.ws91{word-spacing:0.480000px;}
.ws3a{word-spacing:0.502200px;}
.ws105{word-spacing:0.540000px;}
.ws76{word-spacing:0.558000px;}
.wse{word-spacing:0.561000px;}
.wsca{word-spacing:0.600000px;}
.ws9a{word-spacing:0.613800px;}
.ws59{word-spacing:0.660000px;}
.ws80{word-spacing:0.669600px;}
.wscb{word-spacing:0.720000px;}
.ws167{word-spacing:0.725400px;}
.ws72{word-spacing:0.780000px;}
.wsdf{word-spacing:0.781200px;}
.ws112{word-spacing:0.837000px;}
.ws5b{word-spacing:0.840000px;}
.ws77{word-spacing:0.892800px;}
.ws2e{word-spacing:0.900000px;}
.ws7c{word-spacing:0.948600px;}
.ws40{word-spacing:0.960000px;}
.ws36{word-spacing:1.004400px;}
.wsa0{word-spacing:1.020000px;}
.ws58{word-spacing:1.080000px;}
.wsdc{word-spacing:1.116000px;}
.wsfd{word-spacing:1.140000px;}
.wsd0{word-spacing:1.171800px;}
.ws4d{word-spacing:1.200000px;}
.wsa6{word-spacing:1.227600px;}
.ws13{word-spacing:1.260000px;}
.wsc4{word-spacing:1.283400px;}
.ws5f{word-spacing:1.339200px;}
.ws25{word-spacing:1.440000px;}
.ws125{word-spacing:1.450800px;}
.ws7{word-spacing:1.479000px;}
.wsb7{word-spacing:1.500000px;}
.wsab{word-spacing:1.506600px;}
.wscd{word-spacing:1.560000px;}
.ws98{word-spacing:1.562400px;}
.wse1{word-spacing:1.618200px;}
.wsb9{word-spacing:1.620000px;}
.ws8{word-spacing:1.632000px;}
.wsdd{word-spacing:1.674000px;}
.wsa1{word-spacing:1.680000px;}
.ws149{word-spacing:1.729800px;}
.ws27{word-spacing:1.740000px;}
.ws60{word-spacing:1.785600px;}
.ws165{word-spacing:1.800000px;}
.ws35{word-spacing:1.841400px;}
.ws11{word-spacing:1.860000px;}
.ws128{word-spacing:1.897200px;}
.ws26{word-spacing:1.920000px;}
.ws107{word-spacing:1.953000px;}
.ws9f{word-spacing:1.980000px;}
.wsbb{word-spacing:2.008800px;}
.wsa2{word-spacing:2.040000px;}
.ws1a{word-spacing:2.064600px;}
.ws5c{word-spacing:2.100000px;}
.ws62{word-spacing:2.120400px;}
.ws49{word-spacing:2.160000px;}
.wsbf{word-spacing:2.176200px;}
.ws106{word-spacing:2.220000px;}
.ws14{word-spacing:2.280000px;}
.wsda{word-spacing:2.287800px;}
.ws6f{word-spacing:2.340000px;}
.ws73{word-spacing:2.343600px;}
.ws110{word-spacing:2.399400px;}
.ws2b{word-spacing:2.400000px;}
.ws4b{word-spacing:2.460000px;}
.ws92{word-spacing:2.520000px;}
.ws32{word-spacing:2.580000px;}
.ws124{word-spacing:2.622600px;}
.ws100{word-spacing:2.640000px;}
.wsde{word-spacing:2.678400px;}
.ws30{word-spacing:2.700000px;}
.wsb8{word-spacing:2.760000px;}
.ws111{word-spacing:2.790000px;}
.ws45{word-spacing:2.820000px;}
.ws127{word-spacing:2.845800px;}
.ws2c{word-spacing:2.880000px;}
.ws8d{word-spacing:2.940000px;}
.ws67{word-spacing:2.957400px;}
.wsff{word-spacing:3.000000px;}
.ws126{word-spacing:3.013200px;}
.ws8e{word-spacing:3.060000px;}
.wseb{word-spacing:3.120000px;}
.ws139{word-spacing:3.180000px;}
.wsa8{word-spacing:3.180600px;}
.ws156{word-spacing:3.236400px;}
.wsc9{word-spacing:3.300000px;}
.ws95{word-spacing:3.360000px;}
.ws78{word-spacing:3.403800px;}
.ws42{word-spacing:3.480000px;}
.ws10d{word-spacing:3.540000px;}
.ws169{word-spacing:3.571200px;}
.ws104{word-spacing:3.660000px;}
.ws5d{word-spacing:3.720000px;}
.wsaa{word-spacing:3.738600px;}
.ws13b{word-spacing:3.780000px;}
.wse8{word-spacing:3.840000px;}
.ws18{word-spacing:3.900000px;}
.ws99{word-spacing:3.906000px;}
.wsfe{word-spacing:3.960000px;}
.ws64{word-spacing:3.961800px;}
.ws2d{word-spacing:4.020000px;}
.ws6e{word-spacing:4.080000px;}
.wsf9{word-spacing:4.140000px;}
.ws13a{word-spacing:4.200000px;}
.ws164{word-spacing:4.260000px;}
.ws138{word-spacing:4.380000px;}
.ws155{word-spacing:4.464000px;}
.ws41{word-spacing:4.800000px;}
.ws172{word-spacing:4.854600px;}
.ws137{word-spacing:4.860000px;}
.ws166{word-spacing:4.966200px;}
.ws2a{word-spacing:5.040000px;}
.ws162{word-spacing:5.220000px;}
.ws10e{word-spacing:5.280000px;}
.ws171{word-spacing:5.468400px;}
.wsea{word-spacing:5.520000px;}
.wsce{word-spacing:5.640000px;}
.ws39{word-spacing:5.691600px;}
.ws161{word-spacing:5.700000px;}
.wsd9{word-spacing:5.760000px;}
.ws10f{word-spacing:5.940000px;}
.ws158{word-spacing:6.584400px;}
.ws136{word-spacing:6.720000px;}
.ws113{word-spacing:6.919200px;}
.ws174{word-spacing:6.975000px;}
.ws101{word-spacing:7.020000px;}
.ws148{word-spacing:7.440000px;}
.ws168{word-spacing:7.700400px;}
.ws123{word-spacing:8.160000px;}
.ws122{word-spacing:9.060000px;}
.ws170{word-spacing:11.048400px;}
.ws178{word-spacing:14.619600px;}
.ws10c{word-spacing:1566.486000px;}
.ws57{word-spacing:1566.756000px;}
.ws150{word-spacing:1566.864000px;}
.ws135{word-spacing:1566.918000px;}
.wsb5{word-spacing:1567.134000px;}
.ws8c{word-spacing:1567.188000px;}
.ws16e{word-spacing:1568.970000px;}
.wsf8{word-spacing:1569.024000px;}
.ws24{word-spacing:1569.186000px;}
.ws103{word-spacing:1585.656000px;}
.ws121{word-spacing:1585.980000px;}
.ws3f{word-spacing:1586.088000px;}
.ws6d{word-spacing:1586.412000px;}
.ws17b{word-spacing:1587.762000px;}
.ws160{word-spacing:1588.248000px;}
.wsc8{word-spacing:1588.626000px;}
.ws9e{word-spacing:1588.734000px;}
.ws177{word-spacing:1589.112000px;}
.ws147{word-spacing:1592.298000px;}
.wse6{word-spacing:1595.376000px;}
._9{margin-left:-1569.591600px;}
._1d{margin-left:-1568.524200px;}
._18{margin-left:-1567.436400px;}
._11{margin-left:-1566.198600px;}
._26{margin-left:-19.310400px;}
._1b{margin-left:-15.043320px;}
._2c{margin-left:-13.258800px;}
._28{margin-left:-11.150700px;}
._29{margin-left:-8.156340px;}
._2{margin-left:-7.087200px;}
._f{margin-left:-6.012000px;}
._6{margin-left:-4.914600px;}
._1{margin-left:-3.849600px;}
._0{margin-left:-1.920000px;}
._a{width:1.232400px;}
._3{width:2.325600px;}
._4{width:3.391500px;}
._5{width:4.464900px;}
._25{width:5.533260px;}
._1e{width:6.735600px;}
._2a{width:8.146560px;}
._20{width:10.656600px;}
._21{width:12.051600px;}
._27{width:13.168200px;}
._22{width:14.338800px;}
._2b{width:15.511200px;}
._1f{width:16.905600px;}
._24{width:17.910600px;}
._2d{width:19.407600px;}
._23{width:20.755800px;}
._1a{width:22.876800px;}
._1c{width:25.611600px;}
._15{width:26.950200px;}
._17{width:28.567800px;}
._16{width:30.298200px;}
._e{width:31.804800px;}
._14{width:32.809800px;}
._19{width:34.037400px;}
._12{width:35.767200px;}
._10{width:37.552200px;}
._13{width:38.692200px;}
._d{width:44.082000px;}
._8{width:49.438200px;}
._c{width:51.838200px;}
._b{width:53.233200px;}
._7{width:57.640800px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:22.200000px;}
.fsa{font-size:32.531400px;}
.fs5{font-size:34.980000px;}
.fs6{font-size:41.400000px;}
.fs3{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:55.800000px;}
.fs1{font-size:55.968000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y10b{bottom:90.542550px;}
.y136{bottom:90.548550px;}
.y7f{bottom:90.548700px;}
.y1df{bottom:90.554850px;}
.ycf{bottom:90.560850px;}
.y22{bottom:90.561000px;}
.y61{bottom:90.567000px;}
.y4d{bottom:90.567150px;}
.y281{bottom:94.637550px;}
.y251{bottom:94.675800px;}
.y10a{bottom:107.798700px;}
.y135{bottom:107.804700px;}
.y60{bottom:107.804850px;}
.y159{bottom:107.805000px;}
.y1de{bottom:107.811000px;}
.yce{bottom:107.817000px;}
.y21{bottom:107.817150px;}
.y9b{bottom:107.817300px;}
.y17c{bottom:108.000150px;}
.y19f{bottom:109.768200px;}
.y280{bottom:111.888300px;}
.y250{bottom:111.926550px;}
.y9a{bottom:125.036550px;}
.ye3{bottom:125.042850px;}
.y109{bottom:125.054850px;}
.yab{bottom:125.055150px;}
.y134{bottom:125.060850px;}
.y5f{bottom:125.061000px;}
.y4c{bottom:125.061150px;}
.ycd{bottom:125.067000px;}
.y1af{bottom:125.067150px;}
.y20{bottom:125.067300px;}
.y1c5{bottom:125.067450px;}
.y17b{bottom:125.250300px;}
.y19e{bottom:127.018500px;}
.y27f{bottom:129.139050px;}
.y24f{bottom:129.177300px;}
.ycc{bottom:142.280250px;}
.y99{bottom:142.292700px;}
.ye2{bottom:142.299000px;}
.y108{bottom:142.311000px;}
.yaa{bottom:142.311300px;}
.y133{bottom:142.317000px;}
.y5e{bottom:142.317150px;}
.y4b{bottom:142.317300px;}
.y1ae{bottom:142.317450px;}
.y1c4{bottom:142.317600px;}
.y17a{bottom:142.500450px;}
.y19d{bottom:144.268500px;}
.y27e{bottom:146.389800px;}
.y24e{bottom:146.428050px;}
.ycb{bottom:159.536400px;}
.y98{bottom:159.548850px;}
.ye1{bottom:159.555150px;}
.y4a{bottom:159.561300px;}
.y7e{bottom:159.567150px;}
.yef{bottom:159.567300px;}
.y5d{bottom:159.567450px;}
.y1ad{bottom:159.567600px;}
.y179{bottom:159.750600px;}
.y19c{bottom:161.518500px;}
.y27d{bottom:163.640550px;}
.y24d{bottom:163.678800px;}
.y1f{bottom:165.118050px;}
.yca{bottom:176.792550px;}
.y97{bottom:176.805000px;}
.y7d{bottom:176.811000px;}
.y1dd{bottom:176.811150px;}
.ye0{bottom:176.811300px;}
.y1e1{bottom:176.811450px;}
.y107{bottom:176.817150px;}
.y132{bottom:176.817300px;}
.y49{bottom:176.817450px;}
.ya9{bottom:176.817600px;}
.y1c3{bottom:176.817750px;}
.y178{bottom:176.988450px;}
.y19b{bottom:178.768500px;}
.y27c{bottom:180.891300px;}
.y24c{bottom:180.929550px;}
.y1e{bottom:183.568050px;}
.yc9{bottom:194.048700px;}
.y14d{bottom:194.055450px;}
.y96{bottom:194.061150px;}
.y48{bottom:194.061450px;}
.y1ac{bottom:194.061750px;}
.y7c{bottom:194.067150px;}
.y1dc{bottom:194.067300px;}
.ydf{bottom:194.067450px;}
.y11d{bottom:194.067600px;}
.ya8{bottom:194.067750px;}
.y1c2{bottom:194.068050px;}
.y177{bottom:194.244600px;}
.y19a{bottom:196.012500px;}
.y27b{bottom:198.142050px;}
.y24b{bottom:198.180300px;}
.y1d{bottom:202.018050px;}
.y106{bottom:211.298700px;}
.yc8{bottom:211.304850px;}
.y131{bottom:211.305300px;}
.y1c1{bottom:211.305900px;}
.y47{bottom:211.311450px;}
.y14c{bottom:211.311600px;}
.y7b{bottom:211.317300px;}
.y1db{bottom:211.317450px;}
.yde{bottom:211.317600px;}
.ya7{bottom:211.317900px;}
.y176{bottom:211.500750px;}
.y199{bottom:213.268650px;}
.y27a{bottom:215.392800px;}
.y24a{bottom:215.431050px;}
.y1c{bottom:220.468050px;}
.yee{bottom:228.530850px;}
.y95{bottom:228.542700px;}
.y105{bottom:228.554850px;}
.y1da{bottom:228.555150px;}
.yc7{bottom:228.561000px;}
.y7a{bottom:228.561300px;}
.y130{bottom:228.561450px;}
.y1c0{bottom:228.562050px;}
.y46{bottom:228.567600px;}
.y14b{bottom:228.567750px;}
.y11c{bottom:228.567900px;}
.ya6{bottom:228.568050px;}
.y175{bottom:228.750900px;}
.y198{bottom:230.518800px;}
.y279{bottom:232.643550px;}
.y249{bottom:232.681800px;}
.y1b{bottom:238.918050px;}
.y221{bottom:245.455050px;}
.y201{bottom:245.480550px;}
.yed{bottom:245.787000px;}
.y79{bottom:245.792850px;}
.y94{bottom:245.798850px;}
.y45{bottom:245.799300px;}
.y1ab{bottom:245.805900px;}
.y104{bottom:245.811000px;}
.y1d9{bottom:245.811300px;}
.y14a{bottom:245.811750px;}
.yc6{bottom:245.817150px;}
.y12f{bottom:245.817600px;}
.ydd{bottom:245.817900px;}
.ya5{bottom:245.818200px;}
.y174{bottom:245.988750px;}
.y197{bottom:247.769100px;}
.y278{bottom:249.894300px;}
.y248{bottom:249.932550px;}
.y1a{bottom:257.368050px;}
.y220{bottom:262.705800px;}
.y200{bottom:262.731300px;}
.y11b{bottom:263.037450px;}
.yec{bottom:263.043150px;}
.yc5{bottom:263.048700px;}
.y78{bottom:263.049000px;}
.y93{bottom:263.055000px;}
.y44{bottom:263.055450px;}
.y158{bottom:263.055750px;}
.y1d8{bottom:263.061300px;}
.y1aa{bottom:263.062050px;}
.y103{bottom:263.067150px;}
.y12e{bottom:263.067600px;}
.y149{bottom:263.067900px;}
.ydc{bottom:263.068050px;}
.y1bf{bottom:263.068200px;}
.ya4{bottom:263.068350px;}
.y173{bottom:263.244900px;}
.y196{bottom:265.019100px;}
.y277{bottom:267.145050px;}
.y247{bottom:267.183300px;}
.y19{bottom:275.818050px;}
.y21f{bottom:279.956550px;}
.y1ff{bottom:279.982050px;}
.y11a{bottom:280.293600px;}
.yeb{bottom:280.299300px;}
.yc4{bottom:280.304850px;}
.y77{bottom:280.305150px;}
.ya3{bottom:280.306200px;}
.y92{bottom:280.311150px;}
.y43{bottom:280.311600px;}
.y148{bottom:280.311900px;}
.y1be{bottom:280.312050px;}
.y1d7{bottom:280.317450px;}
.y12d{bottom:280.317750px;}
.ydb{bottom:280.318200px;}
.y125{bottom:280.318500px;}
.y172{bottom:280.501050px;}
.y195{bottom:282.256800px;}
.y276{bottom:284.395800px;}
.y246{bottom:284.434050px;}
.y18{bottom:294.268050px;}
.y21e{bottom:297.207300px;}
.y1fe{bottom:297.232800px;}
.y119{bottom:297.549750px;}
.yea{bottom:297.555450px;}
.y12c{bottom:297.555600px;}
.y1a9{bottom:297.555900px;}
.yc3{bottom:297.561000px;}
.y76{bottom:297.561300px;}
.y1d6{bottom:297.561450px;}
.ya2{bottom:297.562350px;}
.y91{bottom:297.567300px;}
.y42{bottom:297.567750px;}
.y147{bottom:297.568050px;}
.yda{bottom:297.568200px;}
.y124{bottom:297.568650px;}
.y171{bottom:297.751050px;}
.y194{bottom:299.512950px;}
.y275{bottom:301.646550px;}
.y245{bottom:301.684800px;}
.y17{bottom:312.718050px;}
.y21d{bottom:314.458050px;}
.y1fd{bottom:314.483550px;}
.y118{bottom:314.805900px;}
.ye9{bottom:314.811600px;}
.y12b{bottom:314.811750px;}
.yd9{bottom:314.812050px;}
.yc2{bottom:314.817150px;}
.y75{bottom:314.817450px;}
.y1d5{bottom:314.817600px;}
.y41{bottom:314.817900px;}
.y1bd{bottom:314.818200px;}
.ya1{bottom:314.818500px;}
.y123{bottom:314.818800px;}
.y170{bottom:315.001200px;}
.y193{bottom:316.769100px;}
.y274{bottom:318.897300px;}
.y244{bottom:318.935550px;}
.y5c{bottom:331.168050px;}
.y16{bottom:331.168200px;}
.y21c{bottom:331.708800px;}
.y1fc{bottom:331.734300px;}
.y40{bottom:332.061900px;}
.y117{bottom:332.062050px;}
.y102{bottom:332.067150px;}
.yc1{bottom:332.067300px;}
.y74{bottom:332.067600px;}
.ye8{bottom:332.067750px;}
.y12a{bottom:332.067900px;}
.yd8{bottom:332.068200px;}
.y1bc{bottom:332.068500px;}
.ya0{bottom:332.068650px;}
.y122{bottom:332.068950px;}
.y16f{bottom:332.239050px;}
.y192{bottom:334.013250px;}
.y273{bottom:336.148050px;}
.y243{bottom:336.186300px;}
.y21b{bottom:348.959550px;}
.y1fb{bottom:348.985050px;}
.yd7{bottom:349.275150px;}
.y73{bottom:349.305300px;}
.yc0{bottom:349.311300px;}
.y1d4{bottom:349.311600px;}
.y146{bottom:349.312200px;}
.y1a8{bottom:349.312350px;}
.y9f{bottom:349.312650px;}
.y101{bottom:349.317300px;}
.y90{bottom:349.317600px;}
.ye7{bottom:349.317900px;}
.y3f{bottom:349.318050px;}
.y116{bottom:349.318200px;}
.y1bb{bottom:349.318650px;}
.y121{bottom:349.319100px;}
.y16e{bottom:349.495200px;}
.y5b{bottom:349.618050px;}
.y15{bottom:349.618200px;}
.y191{bottom:351.269400px;}
.y272{bottom:353.398800px;}
.y242{bottom:353.437050px;}
.y21a{bottom:366.210300px;}
.y1fa{bottom:366.235800px;}
.y129{bottom:366.531000px;}
.yd6{bottom:366.531300px;}
.y157{bottom:366.549900px;}
.y1ba{bottom:366.550350px;}
.y72{bottom:366.561450px;}
.y3e{bottom:366.562050px;}
.ybf{bottom:366.567450px;}
.y1d3{bottom:366.567750px;}
.y8f{bottom:366.567900px;}
.ye6{bottom:366.568050px;}
.y115{bottom:366.568200px;}
.y145{bottom:366.568350px;}
.y1a7{bottom:366.568500px;}
.y9e{bottom:366.568800px;}
.y120{bottom:366.569100px;}
.y16d{bottom:366.751350px;}
.y5a{bottom:368.068050px;}
.y14{bottom:368.068200px;}
.y190{bottom:368.513250px;}
.y271{bottom:370.649550px;}
.y241{bottom:370.687800px;}
.y219{bottom:383.461050px;}
.y1f9{bottom:383.486550px;}
.y128{bottom:383.787150px;}
.yd5{bottom:383.787450px;}
.y144{bottom:383.787750px;}
.y156{bottom:383.806050px;}
.y1b9{bottom:383.806500px;}
.ybe{bottom:383.811450px;}
.y1a6{bottom:383.812350px;}
.y71{bottom:383.817600px;}
.y1d2{bottom:383.817750px;}
.y8e{bottom:383.818050px;}
.y3d{bottom:383.818200px;}
.y11f{bottom:383.819250px;}
.y16c{bottom:384.001500px;}
.y18f{bottom:385.769400px;}
.y59{bottom:386.518050px;}
.y270{bottom:387.900300px;}
.y240{bottom:387.938550px;}
.y218{bottom:400.711800px;}
.y1f8{bottom:400.737300px;}
.y127{bottom:401.043300px;}
.yd4{bottom:401.043600px;}
.y143{bottom:401.043900px;}
.y1d1{bottom:401.055600px;}
.y70{bottom:401.061600px;}
.y155{bottom:401.062200px;}
.y1b8{bottom:401.062650px;}
.ybd{bottom:401.067600px;}
.y100{bottom:401.067750px;}
.y8d{bottom:401.068200px;}
.ye5{bottom:401.068350px;}
.y114{bottom:401.068500px;}
.y16b{bottom:401.251500px;}
.y18e{bottom:403.019550px;}
.y58{bottom:404.968050px;}
.y26f{bottom:405.151050px;}
.y23f{bottom:405.189300px;}
.y217{bottom:417.962550px;}
.y1f7{bottom:417.988050px;}
.ybc{bottom:418.299150px;}
.y126{bottom:418.299450px;}
.yd3{bottom:418.299750px;}
.y142{bottom:418.300050px;}
.ye4{bottom:418.306200px;}
.y1d0{bottom:418.311750px;}
.y6f{bottom:418.317750px;}
.y8c{bottom:418.318200px;}
.y154{bottom:418.318350px;}
.y1a5{bottom:418.318500px;}
.y113{bottom:418.318650px;}
.y1b7{bottom:418.318800px;}
.y16a{bottom:418.495500px;}
.y18d{bottom:420.257400px;}
.y26e{bottom:422.401800px;}
.y23e{bottom:422.440050px;}
.y57{bottom:423.418050px;}
.y11e{bottom:423.418200px;}
.y216{bottom:435.213300px;}
.y1f6{bottom:435.238800px;}
.yff{bottom:435.531000px;}
.y1a4{bottom:435.550200px;}
.ybb{bottom:435.555300px;}
.y6e{bottom:435.555600px;}
.yd2{bottom:435.555900px;}
.y141{bottom:435.556200px;}
.y1b6{bottom:435.556500px;}
.y8b{bottom:435.562350px;}
.y1cf{bottom:435.567900px;}
.y112{bottom:435.568650px;}
.y169{bottom:435.751650px;}
.y18c{bottom:437.513550px;}
.y26d{bottom:439.652550px;}
.y23d{bottom:439.690800px;}
.y13{bottom:440.208450px;}
.y3c{bottom:441.868050px;}
.y9d{bottom:441.868200px;}
.y215{bottom:452.464050px;}
.y1f5{bottom:452.489550px;}
.yfe{bottom:452.787150px;}
.y1a3{bottom:452.806350px;}
.yba{bottom:452.811450px;}
.y6d{bottom:452.811750px;}
.y1ce{bottom:452.811900px;}
.yd1{bottom:452.812050px;}
.y140{bottom:452.812350px;}
.y1b5{bottom:452.812650px;}
.y8a{bottom:452.818500px;}
.y111{bottom:452.818800px;}
.y168{bottom:453.001650px;}
.y18b{bottom:454.769700px;}
.y26c{bottom:456.903300px;}
.y23c{bottom:456.941550px;}
.y12{bottom:457.459200px;}
.y3b{bottom:460.318050px;}
.y214{bottom:469.714800px;}
.y1f4{bottom:469.740300px;}
.yfd{bottom:470.043300px;}
.y1cd{bottom:470.061900px;}
.y1a2{bottom:470.062500px;}
.yb9{bottom:470.067600px;}
.y6c{bottom:470.067900px;}
.yd0{bottom:470.068200px;}
.y13f{bottom:470.068500px;}
.y89{bottom:470.068650px;}
.y110{bottom:470.068800px;}
.y167{bottom:470.245650px;}
.y18a{bottom:472.019850px;}
.y26b{bottom:474.154050px;}
.y23b{bottom:474.192300px;}
.y11{bottom:474.709950px;}
.y3a{bottom:478.768050px;}
.y213{bottom:486.965550px;}
.y1f3{bottom:486.991050px;}
.yfc{bottom:487.299450px;}
.y1b4{bottom:487.300350px;}
.y13e{bottom:487.306350px;}
.yb8{bottom:487.311600px;}
.y88{bottom:487.312650px;}
.y6b{bottom:487.318050px;}
.y153{bottom:487.318650px;}
.y10f{bottom:487.318800px;}
.y166{bottom:487.501800px;}
.y189{bottom:489.270150px;}
.y26a{bottom:491.404800px;}
.y23a{bottom:491.443050px;}
.y39{bottom:497.218050px;}
.y212{bottom:504.216300px;}
.y1f2{bottom:504.241800px;}
.yfb{bottom:504.555600px;}
.y1b3{bottom:504.556500px;}
.y13d{bottom:504.562500px;}
.yb7{bottom:504.567750px;}
.y6a{bottom:504.568200px;}
.y87{bottom:504.568800px;}
.y165{bottom:504.745800px;}
.y188{bottom:506.520150px;}
.y269{bottom:508.655550px;}
.y239{bottom:508.693800px;}
.y10{bottom:509.211450px;}
.y38{bottom:515.668050px;}
.y211{bottom:521.467050px;}
.y1f1{bottom:521.492550px;}
.yb6{bottom:521.805450px;}
.y86{bottom:521.806500px;}
.y152{bottom:521.806650px;}
.yfa{bottom:521.811750px;}
.y1b2{bottom:521.812650px;}
.y1cc{bottom:521.818350px;}
.y13c{bottom:521.818650px;}
.y1a1{bottom:521.818800px;}
.y164{bottom:522.001950px;}
.y187{bottom:523.764150px;}
.y268{bottom:525.906300px;}
.y238{bottom:525.944550px;}
.yf{bottom:526.462200px;}
.y37{bottom:534.118050px;}
.y10e{bottom:534.118200px;}
.y210{bottom:538.717800px;}
.y1f0{bottom:538.743300px;}
.yb5{bottom:539.061600px;}
.y13b{bottom:539.062500px;}
.y85{bottom:539.062650px;}
.y151{bottom:539.062800px;}
.yf9{bottom:539.067900px;}
.y1cb{bottom:539.068500px;}
.y1b1{bottom:539.068800px;}
.y163{bottom:539.245950px;}
.y186{bottom:541.020300px;}
.y267{bottom:543.157050px;}
.y237{bottom:543.195300px;}
.ye{bottom:543.712950px;}
.y69{bottom:552.568050px;}
.y36{bottom:552.568200px;}
.y20f{bottom:555.968550px;}
.y1ef{bottom:555.994050px;}
.yb4{bottom:556.317750px;}
.yf8{bottom:556.318050px;}
.y13a{bottom:556.318650px;}
.y84{bottom:556.318800px;}
.y150{bottom:556.318950px;}
.y162{bottom:556.502100px;}
.y185{bottom:558.270600px;}
.y266{bottom:560.407800px;}
.y236{bottom:560.446050px;}
.yd{bottom:560.963700px;}
.y56{bottom:571.018050px;}
.y35{bottom:571.018200px;}
.y20e{bottom:573.219300px;}
.y1ee{bottom:573.244800px;}
.y83{bottom:573.550350px;}
.y139{bottom:573.556350px;}
.y1ca{bottom:573.556500px;}
.yf7{bottom:573.561900px;}
.yb3{bottom:573.567750px;}
.y1b0{bottom:573.568800px;}
.y14f{bottom:573.569100px;}
.y161{bottom:573.746100px;}
.y184{bottom:575.514450px;}
.y265{bottom:577.658550px;}
.y235{bottom:577.696800px;}
.yc{bottom:578.214450px;}
.y55{bottom:589.468050px;}
.y34{bottom:589.468200px;}
.y20d{bottom:590.470050px;}
.y1ed{bottom:590.495550px;}
.y82{bottom:590.806500px;}
.y138{bottom:590.812500px;}
.y1c9{bottom:590.812650px;}
.yb2{bottom:590.817750px;}
.yf6{bottom:590.818050px;}
.y14e{bottom:590.819100px;}
.y160{bottom:591.002250px;}
.y183{bottom:592.770600px;}
.y264{bottom:594.909300px;}
.y234{bottom:594.947550px;}
.yb{bottom:595.465200px;}
.y20c{bottom:607.720800px;}
.y1ec{bottom:607.746300px;}
.y54{bottom:607.918050px;}
.y33{bottom:607.918200px;}
.y81{bottom:608.062650px;}
.yb1{bottom:608.068050px;}
.yf5{bottom:608.068200px;}
.y137{bottom:608.068650px;}
.y1c8{bottom:608.068800px;}
.y15f{bottom:608.240100px;}
.y182{bottom:610.014600px;}
.y263{bottom:612.160050px;}
.y233{bottom:612.198300px;}
.ya{bottom:612.715950px;}
.y1a0{bottom:612.913050px;}
.y20b{bottom:624.971550px;}
.y1eb{bottom:624.997050px;}
.yb0{bottom:625.318200px;}
.y80{bottom:625.318800px;}
.y15e{bottom:625.496250px;}
.y53{bottom:626.368050px;}
.y32{bottom:626.368200px;}
.y181{bottom:627.270750px;}
.y262{bottom:629.410800px;}
.y232{bottom:629.449050px;}
.y9{bottom:629.966700px;}
.y20a{bottom:642.222300px;}
.y1ea{bottom:642.247800px;}
.yf4{bottom:642.543600px;}
.yaf{bottom:642.555900px;}
.y1c7{bottom:642.568950px;}
.y15d{bottom:642.752400px;}
.y180{bottom:644.514600px;}
.y52{bottom:644.818050px;}
.y31{bottom:644.818200px;}
.y261{bottom:646.661550px;}
.y291{bottom:646.687050px;}
.y231{bottom:646.699800px;}
.y8{bottom:647.217450px;}
.y209{bottom:659.473050px;}
.y1e9{bottom:659.498550px;}
.yf3{bottom:659.799750px;}
.yae{bottom:659.812050px;}
.y1c6{bottom:659.819100px;}
.y15c{bottom:660.002550px;}
.y17f{bottom:661.770750px;}
.y51{bottom:663.268050px;}
.y30{bottom:663.268200px;}
.y260{bottom:663.912300px;}
.y290{bottom:663.937800px;}
.y230{bottom:663.950550px;}
.y7{bottom:664.468200px;}
.y208{bottom:676.723800px;}
.y1e8{bottom:676.749300px;}
.yf2{bottom:677.055900px;}
.yad{bottom:677.062050px;}
.y15b{bottom:677.246400px;}
.y17e{bottom:679.014750px;}
.y25f{bottom:681.163050px;}
.y28f{bottom:681.188550px;}
.y22f{bottom:681.201300px;}
.y2f{bottom:681.718050px;}
.y10d{bottom:681.718200px;}
.y207{bottom:693.974550px;}
.y1e7{bottom:694.000050px;}
.yf1{bottom:694.312050px;}
.yac{bottom:694.318200px;}
.y15a{bottom:694.502550px;}
.y17d{bottom:696.270900px;}
.y25e{bottom:698.413800px;}
.y28e{bottom:698.439300px;}
.y22e{bottom:698.452050px;}
.y2e{bottom:700.168050px;}
.y10c{bottom:700.168200px;}
.y206{bottom:711.225300px;}
.y1e6{bottom:711.250800px;}
.yf0{bottom:711.568200px;}
.y25d{bottom:715.664550px;}
.y28d{bottom:715.690050px;}
.y22d{bottom:715.702800px;}
.y2d{bottom:718.618050px;}
.y9c{bottom:718.618200px;}
.y205{bottom:728.476050px;}
.y1e5{bottom:728.501550px;}
.y6{bottom:729.289800px;}
.y25c{bottom:732.915300px;}
.y28c{bottom:732.940800px;}
.y22c{bottom:732.953550px;}
.y50{bottom:737.068050px;}
.y68{bottom:737.068200px;}
.y204{bottom:745.726800px;}
.y1e4{bottom:745.752300px;}
.y25b{bottom:750.166050px;}
.y28b{bottom:750.191550px;}
.y22b{bottom:750.204300px;}
.y2c{bottom:755.518050px;}
.y67{bottom:755.518200px;}
.y5{bottom:759.295800px;}
.y203{bottom:762.977550px;}
.y1e3{bottom:763.003050px;}
.y25a{bottom:767.416800px;}
.y28a{bottom:767.442300px;}
.y22a{bottom:767.455050px;}
.y4f{bottom:773.968050px;}
.y66{bottom:773.968200px;}
.y202{bottom:780.228300px;}
.y1e2{bottom:780.253800px;}
.y259{bottom:784.667550px;}
.y289{bottom:784.693050px;}
.y229{bottom:784.705800px;}
.y4e{bottom:792.418050px;}
.y65{bottom:792.418200px;}
.y258{bottom:801.918300px;}
.y288{bottom:801.943800px;}
.y228{bottom:801.956550px;}
.y4{bottom:806.303700px;}
.y2b{bottom:810.868050px;}
.y64{bottom:810.868200px;}
.y1e0{bottom:814.468200px;}
.y257{bottom:819.169050px;}
.y287{bottom:819.194550px;}
.y227{bottom:819.207300px;}
.y2a{bottom:829.318050px;}
.y63{bottom:829.318200px;}
.y3{bottom:836.303700px;}
.y256{bottom:836.419800px;}
.y286{bottom:836.445300px;}
.y226{bottom:836.458050px;}
.y29{bottom:847.768050px;}
.y62{bottom:847.768200px;}
.y255{bottom:853.670550px;}
.y285{bottom:853.696050px;}
.y225{bottom:853.708800px;}
.y24{bottom:857.391000px;}
.y23{bottom:864.889050px;}
.y28{bottom:866.218050px;}
.y2{bottom:866.303700px;}
.y254{bottom:870.921300px;}
.y284{bottom:870.946800px;}
.y224{bottom:870.959550px;}
.y27{bottom:884.668050px;}
.y253{bottom:888.172050px;}
.y283{bottom:888.197550px;}
.y223{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.y26{bottom:903.118050px;}
.y252{bottom:905.422800px;}
.y282{bottom:905.448300px;}
.y222{bottom:905.461050px;}
.y25{bottom:955.942350px;}
.h8{height:15.295800px;}
.h13{height:34.140000px;}
.h15{height:45.747000px;}
.h5{height:46.002000px;}
.h14{height:46.104000px;}
.h4{height:48.195000px;}
.h7{height:50.443200px;}
.hc{height:50.467800px;}
.hd{height:50.492400px;}
.hf{height:50.517000px;}
.he{height:50.541600px;}
.h10{height:50.566200px;}
.h12{height:50.590800px;}
.h11{height:50.615400px;}
.h9{height:50.868000px;}
.h6{height:54.120000px;}
.hb{height:54.120600px;}
.ha{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x8{left:25.966350px;}
.x7{left:28.835700px;}
.x5{left:72.283500px;}
.x1{left:80.787450px;}
.xb{left:85.033500px;}
.x6{left:93.543300px;}
.x2{left:102.041700px;}
.xd{left:353.408250px;}
.xa{left:361.912200px;}
.xc{left:366.158250px;}
.x9{left:374.662200px;}
.x4{left:651.643500px;}
.x3{left:654.512850px;}
@media print{
.v3{vertical-align:-17.759467pt;}
.v5{vertical-align:-16.516800pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.516800pt;}
.v2{vertical-align:17.759467pt;}
.v1{vertical-align:28.416000pt;}
.v6{vertical-align:35.508587pt;}
.ls5b{letter-spacing:-3.733333pt;}
.lseb{letter-spacing:-3.413333pt;}
.ls7b{letter-spacing:-3.200000pt;}
.lsdf{letter-spacing:-2.986667pt;}
.ls6f{letter-spacing:-2.784000pt;}
.ls44{letter-spacing:-2.666667pt;}
.lsab{letter-spacing:-2.506667pt;}
.lsc7{letter-spacing:-2.453333pt;}
.lsc8{letter-spacing:-2.400000pt;}
.lsa9{letter-spacing:-2.346667pt;}
.lsac{letter-spacing:-2.293333pt;}
.lsaa{letter-spacing:-2.186667pt;}
.ls103{letter-spacing:-2.026667pt;}
.lsf9{letter-spacing:-1.984000pt;}
.ls5d{letter-spacing:-1.866667pt;}
.lsc9{letter-spacing:-1.760000pt;}
.ls5a{letter-spacing:-1.653333pt;}
.lsdc{letter-spacing:-1.440000pt;}
.ls6b{letter-spacing:-1.361600pt;}
.ls7{letter-spacing:-1.314667pt;}
.lsec{letter-spacing:-1.066667pt;}
.lsed{letter-spacing:-1.013333pt;}
.ls78{letter-spacing:-0.960000pt;}
.ls5e{letter-spacing:-0.843200pt;}
.lse9{letter-spacing:-0.839520pt;}
.lsdd{letter-spacing:-0.746667pt;}
.lsea{letter-spacing:-0.693333pt;}
.ls68{letter-spacing:-0.684053pt;}
.ls6c{letter-spacing:-0.625600pt;}
.ls7c{letter-spacing:-0.621867pt;}
.ls7a{letter-spacing:-0.590773pt;}
.ls76{letter-spacing:-0.586667pt;}
.ls6d{letter-spacing:-0.552000pt;}
.ls77{letter-spacing:-0.533333pt;}
.ls63{letter-spacing:-0.528587pt;}
.lsa{letter-spacing:-0.498667pt;}
.ls17{letter-spacing:-0.480000pt;}
.lse0{letter-spacing:-0.466400pt;}
.lsde{letter-spacing:-0.435307pt;}
.ls4b{letter-spacing:-0.426667pt;}
.ls74{letter-spacing:-0.384000pt;}
.ls7e{letter-spacing:-0.373333pt;}
.ls30{letter-spacing:-0.368000pt;}
.ls7f{letter-spacing:-0.347200pt;}
.ls102{letter-spacing:-0.336000pt;}
.ls57{letter-spacing:-0.331200pt;}
.ls75{letter-spacing:-0.320000pt;}
.ls2e{letter-spacing:-0.310933pt;}
.ls79{letter-spacing:-0.279840pt;}
.ls5c{letter-spacing:-0.266667pt;}
.lsf8{letter-spacing:-0.248747pt;}
.ls73{letter-spacing:-0.248000pt;}
.ls42{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.198400pt;}
.ls56{letter-spacing:-0.186560pt;}
.ls8{letter-spacing:-0.181333pt;}
.ls4c{letter-spacing:-0.160000pt;}
.ls6a{letter-spacing:-0.155467pt;}
.ls31{letter-spacing:-0.148800pt;}
.ls43{letter-spacing:-0.124373pt;}
.ls1c{letter-spacing:-0.115667pt;}
.ls19{letter-spacing:-0.106667pt;}
.ls33{letter-spacing:-0.099200pt;}
.ls4d{letter-spacing:-0.093280pt;}
.ls9{letter-spacing:-0.090667pt;}
.ls7d{letter-spacing:-0.062187pt;}
.ls34{letter-spacing:-0.057834pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls32{letter-spacing:-0.049600pt;}
.ls71{letter-spacing:-0.031093pt;}
.ls6{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.000213pt;}
.lsd1{letter-spacing:0.004082pt;}
.ls15{letter-spacing:0.017493pt;}
.ls101{letter-spacing:0.019316pt;}
.ls22{letter-spacing:0.026667pt;}
.ls70{letter-spacing:0.031093pt;}
.ls53{letter-spacing:0.044082pt;}
.ls0{letter-spacing:0.045333pt;}
.ls3d{letter-spacing:0.049600pt;}
.lse{letter-spacing:0.053333pt;}
.ls4a{letter-spacing:0.062187pt;}
.ls13{letter-spacing:0.063893pt;}
.ls14{letter-spacing:0.064320pt;}
.ls52{letter-spacing:0.074400pt;}
.ls2{letter-spacing:0.083467pt;}
.ls97{letter-spacing:0.086667pt;}
.ls25{letter-spacing:0.093280pt;}
.ls23{letter-spacing:0.099200pt;}
.ls12{letter-spacing:0.106667pt;}
.ls49{letter-spacing:0.124373pt;}
.lsd7{letter-spacing:0.127050pt;}
.lse5{letter-spacing:0.127815pt;}
.lsa2{letter-spacing:0.130482pt;}
.ls96{letter-spacing:0.133333pt;}
.lsae{letter-spacing:0.135307pt;}
.ls55{letter-spacing:0.144000pt;}
.ls38{letter-spacing:0.148800pt;}
.ls41{letter-spacing:0.155467pt;}
.ls10{letter-spacing:0.159253pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9c{letter-spacing:0.173450pt;}
.ls26{letter-spacing:0.186560pt;}
.ls58{letter-spacing:0.186667pt;}
.ls9f{letter-spacing:0.189450pt;}
.ls8d{letter-spacing:0.189547pt;}
.ls8c{letter-spacing:0.190080pt;}
.ls62{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.197333pt;}
.ls16{letter-spacing:0.198400pt;}
.lsef{letter-spacing:0.202107pt;}
.ls9a{letter-spacing:0.203947pt;}
.ls20{letter-spacing:0.213333pt;}
.ls4e{letter-spacing:0.217653pt;}
.lsa3{letter-spacing:0.218240pt;}
.lsa4{letter-spacing:0.223200pt;}
.lsf5{letter-spacing:0.230133pt;}
.ls81{letter-spacing:0.233200pt;}
.ls50{letter-spacing:0.241067pt;}
.ls5{letter-spacing:0.248000pt;}
.ls2f{letter-spacing:0.248747pt;}
.ls8f{letter-spacing:0.264293pt;}
.ls91{letter-spacing:0.264747pt;}
.ls3{letter-spacing:0.266667pt;}
.ls85{letter-spacing:0.272800pt;}
.ls3f{letter-spacing:0.279840pt;}
.ls45{letter-spacing:0.293333pt;}
.lsb0{letter-spacing:0.295467pt;}
.lsd{letter-spacing:0.296000pt;}
.ls67{letter-spacing:0.297600pt;}
.lsf0{letter-spacing:0.306667pt;}
.lsfb{letter-spacing:0.310933pt;}
.lsfe{letter-spacing:0.314667pt;}
.ls11{letter-spacing:0.320000pt;}
.ls99{letter-spacing:0.325333pt;}
.ls72{letter-spacing:0.342027pt;}
.ls8e{letter-spacing:0.346667pt;}
.ls54{letter-spacing:0.347200pt;}
.lsf1{letter-spacing:0.363947pt;}
.lsf2{letter-spacing:0.364480pt;}
.ls35{letter-spacing:0.368000pt;}
.lsf4{letter-spacing:0.369600pt;}
.lsfd{letter-spacing:0.373120pt;}
.ls21{letter-spacing:0.373333pt;}
.ls1e{letter-spacing:0.375918pt;}
.lsee{letter-spacing:0.384000pt;}
.ls4f{letter-spacing:0.396800pt;}
.ls80{letter-spacing:0.400000pt;}
.ls65{letter-spacing:0.404213pt;}
.lse8{letter-spacing:0.418250pt;}
.ls4{letter-spacing:0.426667pt;}
.ls46{letter-spacing:0.446400pt;}
.ls37{letter-spacing:0.453333pt;}
.lscb{letter-spacing:0.466400pt;}
.lsce{letter-spacing:0.467413pt;}
.ls40{letter-spacing:0.480000pt;}
.ls29{letter-spacing:0.496000pt;}
.lsfa{letter-spacing:0.497493pt;}
.lsbb{letter-spacing:0.520267pt;}
.lsbc{letter-spacing:0.528587pt;}
.lsf{letter-spacing:0.533333pt;}
.ls2b{letter-spacing:0.545600pt;}
.ls94{letter-spacing:0.559680pt;}
.lsf3{letter-spacing:0.560000pt;}
.ls105{letter-spacing:0.576000pt;}
.ls6e{letter-spacing:0.586667pt;}
.lsb8{letter-spacing:0.621867pt;}
.lsb7{letter-spacing:0.622773pt;}
.lsb6{letter-spacing:0.623200pt;}
.ls66{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.644800pt;}
.ls64{letter-spacing:0.652960pt;}
.lsfc{letter-spacing:0.666667pt;}
.ls69{letter-spacing:0.684053pt;}
.ls61{letter-spacing:0.693333pt;}
.ls8a{letter-spacing:0.694400pt;}
.lscc{letter-spacing:0.720000pt;}
.lsb1{letter-spacing:0.734667pt;}
.lsb2{letter-spacing:0.735200pt;}
.ls2a{letter-spacing:0.744000pt;}
.lsb3{letter-spacing:0.746240pt;}
.ls60{letter-spacing:0.746667pt;}
.lscd{letter-spacing:0.776533pt;}
.lsf7{letter-spacing:0.793600pt;}
.lsca{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.816000pt;}
.ls2c{letter-spacing:0.843200pt;}
.ls95{letter-spacing:0.853333pt;}
.ls36{letter-spacing:0.892800pt;}
.lsba{letter-spacing:0.906667pt;}
.ls28{letter-spacing:0.942400pt;}
.ls92{letter-spacing:0.960000pt;}
.lse3{letter-spacing:0.992000pt;}
.lsb9{letter-spacing:1.013333pt;}
.ls27{letter-spacing:1.066667pt;}
.ls104{letter-spacing:1.088000pt;}
.ls5f{letter-spacing:1.120000pt;}
.lsb4{letter-spacing:1.173333pt;}
.ls3e{letter-spacing:1.200000pt;}
.ls47{letter-spacing:1.244960pt;}
.ls48{letter-spacing:1.248000pt;}
.ls93{letter-spacing:1.264000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:1.344000pt;}
.ls8b{letter-spacing:1.392000pt;}
.lsc6{letter-spacing:1.488000pt;}
.ls24{letter-spacing:1.536000pt;}
.ls82{letter-spacing:1.546667pt;}
.lsa8{letter-spacing:1.600000pt;}
.ls2d{letter-spacing:1.632000pt;}
.ls98{letter-spacing:1.813333pt;}
.ls89{letter-spacing:1.872000pt;}
.lscf{letter-spacing:1.920000pt;}
.lsad{letter-spacing:1.973333pt;}
.lsaf{letter-spacing:2.133333pt;}
.ls100{letter-spacing:3.670400pt;}
.ls90{letter-spacing:4.106667pt;}
.lsff{letter-spacing:4.513600pt;}
.lsf6{letter-spacing:5.066667pt;}
.lsb5{letter-spacing:7.200000pt;}
.lse4{letter-spacing:8.680000pt;}
.lsbd{letter-spacing:9.275200pt;}
.lsd4{letter-spacing:9.473600pt;}
.lsc4{letter-spacing:9.622400pt;}
.ls87{letter-spacing:9.820800pt;}
.ls9d{letter-spacing:10.019200pt;}
.lsd8{letter-spacing:11.705600pt;}
.lsd3{letter-spacing:11.854400pt;}
.lse6{letter-spacing:12.102400pt;}
.lsc0{letter-spacing:12.152000pt;}
.lsa7{letter-spacing:12.251200pt;}
.lsc2{letter-spacing:12.350400pt;}
.lsc1{letter-spacing:12.499200pt;}
.lsd5{letter-spacing:12.548800pt;}
.lsd0{letter-spacing:12.648000pt;}
.lsbf{letter-spacing:12.697600pt;}
.ls9b{letter-spacing:12.896000pt;}
.lsa5{letter-spacing:13.094400pt;}
.ls88{letter-spacing:13.243200pt;}
.lsa0{letter-spacing:13.441600pt;}
.lsa1{letter-spacing:13.640000pt;}
.lse7{letter-spacing:14.780800pt;}
.lsd6{letter-spacing:15.574400pt;}
.lsc3{letter-spacing:15.723200pt;}
.lse1{letter-spacing:15.971200pt;}
.lsd2{letter-spacing:16.070400pt;}
.lsa6{letter-spacing:16.120000pt;}
.lsd9{letter-spacing:16.318400pt;}
.lsda{letter-spacing:16.516800pt;}
.ls84{letter-spacing:17.062400pt;}
.lsdb{letter-spacing:17.112000pt;}
.lse2{letter-spacing:17.508800pt;}
.lsbe{letter-spacing:17.657600pt;}
.ls86{letter-spacing:17.856000pt;}
.lsc5{letter-spacing:18.004800pt;}
.ls9e{letter-spacing:18.401600pt;}
.ls83{letter-spacing:21.278400pt;}
.ls3c{letter-spacing:25.990400pt;}
.ls51{letter-spacing:26.238400pt;}
.ls3a{letter-spacing:26.784000pt;}
.ls39{letter-spacing:26.932800pt;}
.ls3b{letter-spacing:29.859200pt;}
.ws115{word-spacing:-13.386667pt;}
.ws108{word-spacing:-13.248000pt;}
.ws1d{word-spacing:-13.066667pt;}
.ws50{word-spacing:-13.008000pt;}
.ws14a{word-spacing:-12.912000pt;}
.ws129{word-spacing:-12.864000pt;}
.wsac{word-spacing:-12.720000pt;}
.ws81{word-spacing:-12.624000pt;}
.ws12e{word-spacing:-12.426667pt;}
.ws130{word-spacing:-12.213333pt;}
.ws13e{word-spacing:-11.946667pt;}
.ws0{word-spacing:-11.790592pt;}
.ws15a{word-spacing:-11.786667pt;}
.ws88{word-spacing:-11.520000pt;}
.wsd4{word-spacing:-11.466667pt;}
.ws12d{word-spacing:-11.413333pt;}
.ws12a{word-spacing:-11.360000pt;}
.ws3b{word-spacing:-11.306667pt;}
.ws1e{word-spacing:-11.253333pt;}
.wse2{word-spacing:-11.200000pt;}
.ws84{word-spacing:-11.146667pt;}
.ws175{word-spacing:-11.106667pt;}
.ws14e{word-spacing:-11.093333pt;}
.ws132{word-spacing:-11.040000pt;}
.wsf0{word-spacing:-10.992000pt;}
.ws1c{word-spacing:-10.896000pt;}
.ws14c{word-spacing:-10.880000pt;}
.ws140{word-spacing:-10.746667pt;}
.ws15e{word-spacing:-10.713600pt;}
.wsf2{word-spacing:-10.666667pt;}
.ws22{word-spacing:-10.664000pt;}
.ws14f{word-spacing:-10.614400pt;}
.ws144{word-spacing:-10.613333pt;}
.ws15b{word-spacing:-10.586667pt;}
.ws11a{word-spacing:-10.453333pt;}
.ws10a{word-spacing:-10.346667pt;}
.ws116{word-spacing:-10.320000pt;}
.ws9b{word-spacing:-10.240000pt;}
.ws120{word-spacing:-10.217600pt;}
.wsb3{word-spacing:-10.186667pt;}
.ws54{word-spacing:-10.168000pt;}
.ws11c{word-spacing:-10.160000pt;}
.wsb1{word-spacing:-10.133333pt;}
.ws15f{word-spacing:-10.118400pt;}
.ws8a{word-spacing:-10.080000pt;}
.ws8b{word-spacing:-10.026667pt;}
.wsad{word-spacing:-9.973333pt;}
.ws11f{word-spacing:-9.920000pt;}
.ws86{word-spacing:-9.866667pt;}
.ws15d{word-spacing:-9.820800pt;}
.wsb0{word-spacing:-9.813333pt;}
.ws10b{word-spacing:-9.771200pt;}
.wsb2{word-spacing:-9.760000pt;}
.ws176{word-spacing:-9.746667pt;}
.ws145{word-spacing:-9.706667pt;}
.ws142{word-spacing:-9.653333pt;}
.ws85{word-spacing:-9.600000pt;}
.wsf4{word-spacing:-9.546667pt;}
.wsae{word-spacing:-9.493333pt;}
.ws133{word-spacing:-9.386667pt;}
.wsb4{word-spacing:-9.280000pt;}
.ws16d{word-spacing:-9.120000pt;}
.ws118{word-spacing:-8.960000pt;}
.ws11e{word-spacing:-8.853333pt;}
.ws117{word-spacing:-8.800000pt;}
.ws12c{word-spacing:-8.746667pt;}
.ws1{word-spacing:-8.704000pt;}
.ws12b{word-spacing:-8.693333pt;}
.ws11d{word-spacing:-8.640000pt;}
.ws6c{word-spacing:-8.480000pt;}
.ws56{word-spacing:-8.280000pt;}
.ws143{word-spacing:-8.160000pt;}
.wsf5{word-spacing:-7.946667pt;}
.ws2{word-spacing:-7.912000pt;}
.ws14d{word-spacing:-7.733333pt;}
.ws9d{word-spacing:-7.580800pt;}
.ws53{word-spacing:-7.544000pt;}
.wsaf{word-spacing:-7.413333pt;}
.wsd7{word-spacing:-7.360000pt;}
.wsd6{word-spacing:-7.286400pt;}
.ws12f{word-spacing:-7.244747pt;}
.wsd2{word-spacing:-7.182560pt;}
.wsc6{word-spacing:-7.151467pt;}
.ws131{word-spacing:-7.120373pt;}
.ws11b{word-spacing:-7.058187pt;}
.ws134{word-spacing:-7.027093pt;}
.ws16a{word-spacing:-6.996000pt;}
.ws13f{word-spacing:-6.964907pt;}
.wsc7{word-spacing:-6.902720pt;}
.ws16c{word-spacing:-6.871627pt;}
.wse5{word-spacing:-6.840533pt;}
.ws16b{word-spacing:-6.809440pt;}
.ws69{word-spacing:-6.778347pt;}
.ws119{word-spacing:-6.762800pt;}
.ws52{word-spacing:-6.747253pt;}
.ws109{word-spacing:-6.731707pt;}
.ws89{word-spacing:-6.716160pt;}
.ws159{word-spacing:-6.700613pt;}
.ws3d{word-spacing:-6.685067pt;}
.ws6a{word-spacing:-6.653973pt;}
.ws82{word-spacing:-6.622880pt;}
.ws23{word-spacing:-6.593030pt;}
.ws3c{word-spacing:-6.591787pt;}
.ws83{word-spacing:-6.560693pt;}
.wsd5{word-spacing:-6.550400pt;}
.wse3{word-spacing:-6.529600pt;}
.ws1f{word-spacing:-6.498507pt;}
.wse4{word-spacing:-6.467413pt;}
.wsf7{word-spacing:-6.436320pt;}
.ws87{word-spacing:-6.405227pt;}
.ws6b{word-spacing:-6.374133pt;}
.wsd3{word-spacing:-6.343040pt;}
.ws9c{word-spacing:-6.311947pt;}
.ws15c{word-spacing:-6.249760pt;}
.wsf1{word-spacing:-6.218667pt;}
.ws21{word-spacing:-6.217112pt;}
.ws51{word-spacing:-6.187573pt;}
.ws55{word-spacing:-6.159278pt;}
.ws20{word-spacing:-6.101445pt;}
.ws141{word-spacing:-6.063200pt;}
.ws146{word-spacing:-6.032107pt;}
.wsc5{word-spacing:-5.969920pt;}
.wsf3{word-spacing:-5.907733pt;}
.wsf6{word-spacing:-5.876640pt;}
.wsd1{word-spacing:-5.814453pt;}
.ws14b{word-spacing:-5.658987pt;}
.ws153{word-spacing:-3.840000pt;}
.ws154{word-spacing:-3.466667pt;}
.ws102{word-spacing:-2.678400pt;}
.wsc1{word-spacing:-2.430400pt;}
.wse9{word-spacing:-2.186667pt;}
.wsfa{word-spacing:-2.133333pt;}
.ws151{word-spacing:-2.026667pt;}
.wsd8{word-spacing:-1.973333pt;}
.wsfc{word-spacing:-1.920000pt;}
.ws179{word-spacing:-1.884800pt;}
.wsba{word-spacing:-1.813333pt;}
.ws173{word-spacing:-1.785600pt;}
.ws70{word-spacing:-1.760000pt;}
.ws2f{word-spacing:-1.706667pt;}
.ws37{word-spacing:-1.686400pt;}
.wsf{word-spacing:-1.653333pt;}
.ws63{word-spacing:-1.636800pt;}
.wscf{word-spacing:-1.600000pt;}
.ws4e{word-spacing:-1.587200pt;}
.wsfb{word-spacing:-1.546667pt;}
.ws5{word-spacing:-1.541333pt;}
.ws74{word-spacing:-1.537600pt;}
.ws3e{word-spacing:-1.536000pt;}
.wsec{word-spacing:-1.493333pt;}
.wsdb{word-spacing:-1.488000pt;}
.wsa{word-spacing:-1.450667pt;}
.ws7e{word-spacing:-1.438400pt;}
.wsc{word-spacing:-1.405333pt;}
.ws75{word-spacing:-1.388800pt;}
.wscc{word-spacing:-1.386667pt;}
.ws7f{word-spacing:-1.339200pt;}
.ws16{word-spacing:-1.333333pt;}
.wsa5{word-spacing:-1.289600pt;}
.ws4a{word-spacing:-1.280000pt;}
.ws4f{word-spacing:-1.240000pt;}
.wsc0{word-spacing:-1.190400pt;}
.ws5a{word-spacing:-1.173333pt;}
.ws13c{word-spacing:-1.140800pt;}
.ws33{word-spacing:-1.091200pt;}
.ws48{word-spacing:-1.066667pt;}
.ws7d{word-spacing:-1.041600pt;}
.wse7{word-spacing:-1.013333pt;}
.wsbc{word-spacing:-0.992000pt;}
.ws90{word-spacing:-0.960000pt;}
.wse0{word-spacing:-0.942400pt;}
.ws10{word-spacing:-0.906667pt;}
.ws5e{word-spacing:-0.892800pt;}
.ws4c{word-spacing:-0.853333pt;}
.wsbd{word-spacing:-0.843200pt;}
.ws47{word-spacing:-0.800000pt;}
.wsc2{word-spacing:-0.793600pt;}
.ws8f{word-spacing:-0.746667pt;}
.wsa9{word-spacing:-0.744000pt;}
.ws61{word-spacing:-0.694400pt;}
.wsc3{word-spacing:-0.644800pt;}
.wsb6{word-spacing:-0.640000pt;}
.ws17a{word-spacing:-0.634667pt;}
.ws34{word-spacing:-0.595200pt;}
.wsb{word-spacing:-0.589333pt;}
.ws43{word-spacing:-0.586667pt;}
.wsef{word-spacing:-0.545600pt;}
.ws163{word-spacing:-0.533333pt;}
.ws65{word-spacing:-0.496000pt;}
.wsa3{word-spacing:-0.480000pt;}
.ws79{word-spacing:-0.446400pt;}
.ws93{word-spacing:-0.426667pt;}
.ws38{word-spacing:-0.396800pt;}
.ws15{word-spacing:-0.373333pt;}
.ws157{word-spacing:-0.347200pt;}
.ws96{word-spacing:-0.320000pt;}
.ws3{word-spacing:-0.315733pt;}
.ws16f{word-spacing:-0.310933pt;}
.ws66{word-spacing:-0.297600pt;}
.ws94{word-spacing:-0.266667pt;}
.ws68{word-spacing:-0.248000pt;}
.ws28{word-spacing:-0.213333pt;}
.ws19{word-spacing:-0.198400pt;}
.ws1b{word-spacing:-0.197333pt;}
.wsd{word-spacing:-0.181333pt;}
.ws46{word-spacing:-0.160000pt;}
.ws114{word-spacing:-0.148800pt;}
.ws17{word-spacing:-0.106667pt;}
.ws13d{word-spacing:-0.099200pt;}
.ws97{word-spacing:-0.049600pt;}
.ws4{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.049600pt;}
.ws12{word-spacing:0.053333pt;}
.ws7b{word-spacing:0.099200pt;}
.ws29{word-spacing:0.106667pt;}
.ws7a{word-spacing:0.148800pt;}
.ws44{word-spacing:0.160000pt;}
.wsa4{word-spacing:0.198400pt;}
.ws152{word-spacing:0.213333pt;}
.ws9{word-spacing:0.226667pt;}
.wsed{word-spacing:0.248000pt;}
.ws6{word-spacing:0.272000pt;}
.wsee{word-spacing:0.297600pt;}
.ws71{word-spacing:0.320000pt;}
.wsbe{word-spacing:0.347200pt;}
.ws31{word-spacing:0.373333pt;}
.ws91{word-spacing:0.426667pt;}
.ws3a{word-spacing:0.446400pt;}
.ws105{word-spacing:0.480000pt;}
.ws76{word-spacing:0.496000pt;}
.wse{word-spacing:0.498667pt;}
.wsca{word-spacing:0.533333pt;}
.ws9a{word-spacing:0.545600pt;}
.ws59{word-spacing:0.586667pt;}
.ws80{word-spacing:0.595200pt;}
.wscb{word-spacing:0.640000pt;}
.ws167{word-spacing:0.644800pt;}
.ws72{word-spacing:0.693333pt;}
.wsdf{word-spacing:0.694400pt;}
.ws112{word-spacing:0.744000pt;}
.ws5b{word-spacing:0.746667pt;}
.ws77{word-spacing:0.793600pt;}
.ws2e{word-spacing:0.800000pt;}
.ws7c{word-spacing:0.843200pt;}
.ws40{word-spacing:0.853333pt;}
.ws36{word-spacing:0.892800pt;}
.wsa0{word-spacing:0.906667pt;}
.ws58{word-spacing:0.960000pt;}
.wsdc{word-spacing:0.992000pt;}
.wsfd{word-spacing:1.013333pt;}
.wsd0{word-spacing:1.041600pt;}
.ws4d{word-spacing:1.066667pt;}
.wsa6{word-spacing:1.091200pt;}
.ws13{word-spacing:1.120000pt;}
.wsc4{word-spacing:1.140800pt;}
.ws5f{word-spacing:1.190400pt;}
.ws25{word-spacing:1.280000pt;}
.ws125{word-spacing:1.289600pt;}
.ws7{word-spacing:1.314667pt;}
.wsb7{word-spacing:1.333333pt;}
.wsab{word-spacing:1.339200pt;}
.wscd{word-spacing:1.386667pt;}
.ws98{word-spacing:1.388800pt;}
.wse1{word-spacing:1.438400pt;}
.wsb9{word-spacing:1.440000pt;}
.ws8{word-spacing:1.450667pt;}
.wsdd{word-spacing:1.488000pt;}
.wsa1{word-spacing:1.493333pt;}
.ws149{word-spacing:1.537600pt;}
.ws27{word-spacing:1.546667pt;}
.ws60{word-spacing:1.587200pt;}
.ws165{word-spacing:1.600000pt;}
.ws35{word-spacing:1.636800pt;}
.ws11{word-spacing:1.653333pt;}
.ws128{word-spacing:1.686400pt;}
.ws26{word-spacing:1.706667pt;}
.ws107{word-spacing:1.736000pt;}
.ws9f{word-spacing:1.760000pt;}
.wsbb{word-spacing:1.785600pt;}
.wsa2{word-spacing:1.813333pt;}
.ws1a{word-spacing:1.835200pt;}
.ws5c{word-spacing:1.866667pt;}
.ws62{word-spacing:1.884800pt;}
.ws49{word-spacing:1.920000pt;}
.wsbf{word-spacing:1.934400pt;}
.ws106{word-spacing:1.973333pt;}
.ws14{word-spacing:2.026667pt;}
.wsda{word-spacing:2.033600pt;}
.ws6f{word-spacing:2.080000pt;}
.ws73{word-spacing:2.083200pt;}
.ws110{word-spacing:2.132800pt;}
.ws2b{word-spacing:2.133333pt;}
.ws4b{word-spacing:2.186667pt;}
.ws92{word-spacing:2.240000pt;}
.ws32{word-spacing:2.293333pt;}
.ws124{word-spacing:2.331200pt;}
.ws100{word-spacing:2.346667pt;}
.wsde{word-spacing:2.380800pt;}
.ws30{word-spacing:2.400000pt;}
.wsb8{word-spacing:2.453333pt;}
.ws111{word-spacing:2.480000pt;}
.ws45{word-spacing:2.506667pt;}
.ws127{word-spacing:2.529600pt;}
.ws2c{word-spacing:2.560000pt;}
.ws8d{word-spacing:2.613333pt;}
.ws67{word-spacing:2.628800pt;}
.wsff{word-spacing:2.666667pt;}
.ws126{word-spacing:2.678400pt;}
.ws8e{word-spacing:2.720000pt;}
.wseb{word-spacing:2.773333pt;}
.ws139{word-spacing:2.826667pt;}
.wsa8{word-spacing:2.827200pt;}
.ws156{word-spacing:2.876800pt;}
.wsc9{word-spacing:2.933333pt;}
.ws95{word-spacing:2.986667pt;}
.ws78{word-spacing:3.025600pt;}
.ws42{word-spacing:3.093333pt;}
.ws10d{word-spacing:3.146667pt;}
.ws169{word-spacing:3.174400pt;}
.ws104{word-spacing:3.253333pt;}
.ws5d{word-spacing:3.306667pt;}
.wsaa{word-spacing:3.323200pt;}
.ws13b{word-spacing:3.360000pt;}
.wse8{word-spacing:3.413333pt;}
.ws18{word-spacing:3.466667pt;}
.ws99{word-spacing:3.472000pt;}
.wsfe{word-spacing:3.520000pt;}
.ws64{word-spacing:3.521600pt;}
.ws2d{word-spacing:3.573333pt;}
.ws6e{word-spacing:3.626667pt;}
.wsf9{word-spacing:3.680000pt;}
.ws13a{word-spacing:3.733333pt;}
.ws164{word-spacing:3.786667pt;}
.ws138{word-spacing:3.893333pt;}
.ws155{word-spacing:3.968000pt;}
.ws41{word-spacing:4.266667pt;}
.ws172{word-spacing:4.315200pt;}
.ws137{word-spacing:4.320000pt;}
.ws166{word-spacing:4.414400pt;}
.ws2a{word-spacing:4.480000pt;}
.ws162{word-spacing:4.640000pt;}
.ws10e{word-spacing:4.693333pt;}
.ws171{word-spacing:4.860800pt;}
.wsea{word-spacing:4.906667pt;}
.wsce{word-spacing:5.013333pt;}
.ws39{word-spacing:5.059200pt;}
.ws161{word-spacing:5.066667pt;}
.wsd9{word-spacing:5.120000pt;}
.ws10f{word-spacing:5.280000pt;}
.ws158{word-spacing:5.852800pt;}
.ws136{word-spacing:5.973333pt;}
.ws113{word-spacing:6.150400pt;}
.ws174{word-spacing:6.200000pt;}
.ws101{word-spacing:6.240000pt;}
.ws148{word-spacing:6.613333pt;}
.ws168{word-spacing:6.844800pt;}
.ws123{word-spacing:7.253333pt;}
.ws122{word-spacing:8.053333pt;}
.ws170{word-spacing:9.820800pt;}
.ws178{word-spacing:12.995200pt;}
.ws10c{word-spacing:1392.432000pt;}
.ws57{word-spacing:1392.672000pt;}
.ws150{word-spacing:1392.768000pt;}
.ws135{word-spacing:1392.816000pt;}
.wsb5{word-spacing:1393.008000pt;}
.ws8c{word-spacing:1393.056000pt;}
.ws16e{word-spacing:1394.640000pt;}
.wsf8{word-spacing:1394.688000pt;}
.ws24{word-spacing:1394.832000pt;}
.ws103{word-spacing:1409.472000pt;}
.ws121{word-spacing:1409.760000pt;}
.ws3f{word-spacing:1409.856000pt;}
.ws6d{word-spacing:1410.144000pt;}
.ws17b{word-spacing:1411.344000pt;}
.ws160{word-spacing:1411.776000pt;}
.wsc8{word-spacing:1412.112000pt;}
.ws9e{word-spacing:1412.208000pt;}
.ws177{word-spacing:1412.544000pt;}
.ws147{word-spacing:1415.376000pt;}
.wse6{word-spacing:1418.112000pt;}
._9{margin-left:-1395.192533pt;}
._1d{margin-left:-1394.243733pt;}
._18{margin-left:-1393.276800pt;}
._11{margin-left:-1392.176533pt;}
._26{margin-left:-17.164800pt;}
._1b{margin-left:-13.371840pt;}
._2c{margin-left:-11.785600pt;}
._28{margin-left:-9.911733pt;}
._29{margin-left:-7.250080pt;}
._2{margin-left:-6.299733pt;}
._f{margin-left:-5.344000pt;}
._6{margin-left:-4.368533pt;}
._1{margin-left:-3.421867pt;}
._0{margin-left:-1.706667pt;}
._a{width:1.095467pt;}
._3{width:2.067200pt;}
._4{width:3.014667pt;}
._5{width:3.968800pt;}
._25{width:4.918453pt;}
._1e{width:5.987200pt;}
._2a{width:7.241387pt;}
._20{width:9.472533pt;}
._21{width:10.712533pt;}
._27{width:11.705067pt;}
._22{width:12.745600pt;}
._2b{width:13.787733pt;}
._1f{width:15.027200pt;}
._24{width:15.920533pt;}
._2d{width:17.251200pt;}
._23{width:18.449600pt;}
._1a{width:20.334933pt;}
._1c{width:22.765867pt;}
._15{width:23.955733pt;}
._17{width:25.393600pt;}
._16{width:26.931733pt;}
._e{width:28.270933pt;}
._14{width:29.164267pt;}
._19{width:30.255467pt;}
._12{width:31.793067pt;}
._10{width:33.379733pt;}
._13{width:34.393067pt;}
._d{width:39.184000pt;}
._8{width:43.945067pt;}
._c{width:46.078400pt;}
._b{width:47.318400pt;}
._7{width:51.236267pt;}
.fs8{font-size:19.733333pt;}
.fsa{font-size:28.916800pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:36.800000pt;}
.fs3{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:49.600000pt;}
.fs1{font-size:49.749333pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y10b{bottom:80.482267pt;}
.y136{bottom:80.487600pt;}
.y7f{bottom:80.487733pt;}
.y1df{bottom:80.493200pt;}
.ycf{bottom:80.498533pt;}
.y22{bottom:80.498667pt;}
.y61{bottom:80.504000pt;}
.y4d{bottom:80.504133pt;}
.y281{bottom:84.122267pt;}
.y251{bottom:84.156267pt;}
.y10a{bottom:95.821067pt;}
.y135{bottom:95.826400pt;}
.y60{bottom:95.826533pt;}
.y159{bottom:95.826667pt;}
.y1de{bottom:95.832000pt;}
.yce{bottom:95.837333pt;}
.y21{bottom:95.837467pt;}
.y9b{bottom:95.837600pt;}
.y17c{bottom:96.000133pt;}
.y19f{bottom:97.571733pt;}
.y280{bottom:99.456267pt;}
.y250{bottom:99.490267pt;}
.y9a{bottom:111.143600pt;}
.ye3{bottom:111.149200pt;}
.y109{bottom:111.159867pt;}
.yab{bottom:111.160133pt;}
.y134{bottom:111.165200pt;}
.y5f{bottom:111.165333pt;}
.y4c{bottom:111.165467pt;}
.ycd{bottom:111.170667pt;}
.y1af{bottom:111.170800pt;}
.y20{bottom:111.170933pt;}
.y1c5{bottom:111.171067pt;}
.y17b{bottom:111.333600pt;}
.y19e{bottom:112.905333pt;}
.y27f{bottom:114.790267pt;}
.y24f{bottom:114.824267pt;}
.ycc{bottom:126.471333pt;}
.y99{bottom:126.482400pt;}
.ye2{bottom:126.488000pt;}
.y108{bottom:126.498667pt;}
.yaa{bottom:126.498933pt;}
.y133{bottom:126.504000pt;}
.y5e{bottom:126.504133pt;}
.y4b{bottom:126.504267pt;}
.y1ae{bottom:126.504400pt;}
.y1c4{bottom:126.504533pt;}
.y17a{bottom:126.667067pt;}
.y19d{bottom:128.238667pt;}
.y27e{bottom:130.124267pt;}
.y24e{bottom:130.158267pt;}
.ycb{bottom:141.810133pt;}
.y98{bottom:141.821200pt;}
.ye1{bottom:141.826800pt;}
.y4a{bottom:141.832267pt;}
.y7e{bottom:141.837467pt;}
.yef{bottom:141.837600pt;}
.y5d{bottom:141.837733pt;}
.y1ad{bottom:141.837867pt;}
.y179{bottom:142.000533pt;}
.y19c{bottom:143.572000pt;}
.y27d{bottom:145.458267pt;}
.y24d{bottom:145.492267pt;}
.y1f{bottom:146.771600pt;}
.yca{bottom:157.148933pt;}
.y97{bottom:157.160000pt;}
.y7d{bottom:157.165333pt;}
.y1dd{bottom:157.165467pt;}
.ye0{bottom:157.165600pt;}
.y1e1{bottom:157.165733pt;}
.y107{bottom:157.170800pt;}
.y132{bottom:157.170933pt;}
.y49{bottom:157.171067pt;}
.ya9{bottom:157.171200pt;}
.y1c3{bottom:157.171333pt;}
.y178{bottom:157.323067pt;}
.y19b{bottom:158.905333pt;}
.y27c{bottom:160.792267pt;}
.y24c{bottom:160.826267pt;}
.y1e{bottom:163.171600pt;}
.yc9{bottom:172.487733pt;}
.y14d{bottom:172.493733pt;}
.y96{bottom:172.498800pt;}
.y48{bottom:172.499067pt;}
.y1ac{bottom:172.499333pt;}
.y7c{bottom:172.504133pt;}
.y1dc{bottom:172.504267pt;}
.ydf{bottom:172.504400pt;}
.y11d{bottom:172.504533pt;}
.ya8{bottom:172.504667pt;}
.y1c2{bottom:172.504933pt;}
.y177{bottom:172.661867pt;}
.y19a{bottom:174.233333pt;}
.y27b{bottom:176.126267pt;}
.y24b{bottom:176.160267pt;}
.y1d{bottom:179.571600pt;}
.y106{bottom:187.821067pt;}
.yc8{bottom:187.826533pt;}
.y131{bottom:187.826933pt;}
.y1c1{bottom:187.827467pt;}
.y47{bottom:187.832400pt;}
.y14c{bottom:187.832533pt;}
.y7b{bottom:187.837600pt;}
.y1db{bottom:187.837733pt;}
.yde{bottom:187.837867pt;}
.ya7{bottom:187.838133pt;}
.y176{bottom:188.000667pt;}
.y199{bottom:189.572133pt;}
.y27a{bottom:191.460267pt;}
.y24a{bottom:191.494267pt;}
.y1c{bottom:195.971600pt;}
.yee{bottom:203.138533pt;}
.y95{bottom:203.149067pt;}
.y105{bottom:203.159867pt;}
.y1da{bottom:203.160133pt;}
.yc7{bottom:203.165333pt;}
.y7a{bottom:203.165600pt;}
.y130{bottom:203.165733pt;}
.y1c0{bottom:203.166267pt;}
.y46{bottom:203.171200pt;}
.y14b{bottom:203.171333pt;}
.y11c{bottom:203.171467pt;}
.ya6{bottom:203.171600pt;}
.y175{bottom:203.334133pt;}
.y198{bottom:204.905600pt;}
.y279{bottom:206.794267pt;}
.y249{bottom:206.828267pt;}
.y1b{bottom:212.371600pt;}
.y221{bottom:218.182267pt;}
.y201{bottom:218.204933pt;}
.yed{bottom:218.477333pt;}
.y79{bottom:218.482533pt;}
.y94{bottom:218.487867pt;}
.y45{bottom:218.488267pt;}
.y1ab{bottom:218.494133pt;}
.y104{bottom:218.498667pt;}
.y1d9{bottom:218.498933pt;}
.y14a{bottom:218.499333pt;}
.yc6{bottom:218.504133pt;}
.y12f{bottom:218.504533pt;}
.ydd{bottom:218.504800pt;}
.ya5{bottom:218.505067pt;}
.y174{bottom:218.656667pt;}
.y197{bottom:220.239200pt;}
.y278{bottom:222.128267pt;}
.y248{bottom:222.162267pt;}
.y1a{bottom:228.771600pt;}
.y220{bottom:233.516267pt;}
.y200{bottom:233.538933pt;}
.y11b{bottom:233.811067pt;}
.yec{bottom:233.816133pt;}
.yc5{bottom:233.821067pt;}
.y78{bottom:233.821333pt;}
.y93{bottom:233.826667pt;}
.y44{bottom:233.827067pt;}
.y158{bottom:233.827333pt;}
.y1d8{bottom:233.832267pt;}
.y1aa{bottom:233.832933pt;}
.y103{bottom:233.837467pt;}
.y12e{bottom:233.837867pt;}
.y149{bottom:233.838133pt;}
.ydc{bottom:233.838267pt;}
.y1bf{bottom:233.838400pt;}
.ya4{bottom:233.838533pt;}
.y173{bottom:233.995467pt;}
.y196{bottom:235.572533pt;}
.y277{bottom:237.462267pt;}
.y247{bottom:237.496267pt;}
.y19{bottom:245.171600pt;}
.y21f{bottom:248.850267pt;}
.y1ff{bottom:248.872933pt;}
.y11a{bottom:249.149867pt;}
.yeb{bottom:249.154933pt;}
.yc4{bottom:249.159867pt;}
.y77{bottom:249.160133pt;}
.ya3{bottom:249.161067pt;}
.y92{bottom:249.165467pt;}
.y43{bottom:249.165867pt;}
.y148{bottom:249.166133pt;}
.y1be{bottom:249.166267pt;}
.y1d7{bottom:249.171067pt;}
.y12d{bottom:249.171333pt;}
.ydb{bottom:249.171733pt;}
.y125{bottom:249.172000pt;}
.y172{bottom:249.334267pt;}
.y195{bottom:250.894933pt;}
.y276{bottom:252.796267pt;}
.y246{bottom:252.830267pt;}
.y18{bottom:261.571600pt;}
.y21e{bottom:264.184267pt;}
.y1fe{bottom:264.206933pt;}
.y119{bottom:264.488667pt;}
.yea{bottom:264.493733pt;}
.y12c{bottom:264.493867pt;}
.y1a9{bottom:264.494133pt;}
.yc3{bottom:264.498667pt;}
.y76{bottom:264.498933pt;}
.y1d6{bottom:264.499067pt;}
.ya2{bottom:264.499867pt;}
.y91{bottom:264.504267pt;}
.y42{bottom:264.504667pt;}
.y147{bottom:264.504933pt;}
.yda{bottom:264.505067pt;}
.y124{bottom:264.505467pt;}
.y171{bottom:264.667600pt;}
.y194{bottom:266.233733pt;}
.y275{bottom:268.130267pt;}
.y245{bottom:268.164267pt;}
.y17{bottom:277.971600pt;}
.y21d{bottom:279.518267pt;}
.y1fd{bottom:279.540933pt;}
.y118{bottom:279.827467pt;}
.ye9{bottom:279.832533pt;}
.y12b{bottom:279.832667pt;}
.yd9{bottom:279.832933pt;}
.yc2{bottom:279.837467pt;}
.y75{bottom:279.837733pt;}
.y1d5{bottom:279.837867pt;}
.y41{bottom:279.838133pt;}
.y1bd{bottom:279.838400pt;}
.ya1{bottom:279.838667pt;}
.y123{bottom:279.838933pt;}
.y170{bottom:280.001067pt;}
.y193{bottom:281.572533pt;}
.y274{bottom:283.464267pt;}
.y244{bottom:283.498267pt;}
.y5c{bottom:294.371600pt;}
.y16{bottom:294.371733pt;}
.y21c{bottom:294.852267pt;}
.y1fc{bottom:294.874933pt;}
.y40{bottom:295.166133pt;}
.y117{bottom:295.166267pt;}
.y102{bottom:295.170800pt;}
.yc1{bottom:295.170933pt;}
.y74{bottom:295.171200pt;}
.ye8{bottom:295.171333pt;}
.y12a{bottom:295.171467pt;}
.yd8{bottom:295.171733pt;}
.y1bc{bottom:295.172000pt;}
.ya0{bottom:295.172133pt;}
.y122{bottom:295.172400pt;}
.y16f{bottom:295.323600pt;}
.y192{bottom:296.900667pt;}
.y273{bottom:298.798267pt;}
.y243{bottom:298.832267pt;}
.y21b{bottom:310.186267pt;}
.y1fb{bottom:310.208933pt;}
.yd7{bottom:310.466800pt;}
.y73{bottom:310.493600pt;}
.yc0{bottom:310.498933pt;}
.y1d4{bottom:310.499200pt;}
.y146{bottom:310.499733pt;}
.y1a8{bottom:310.499867pt;}
.y9f{bottom:310.500133pt;}
.y101{bottom:310.504267pt;}
.y90{bottom:310.504533pt;}
.ye7{bottom:310.504800pt;}
.y3f{bottom:310.504933pt;}
.y116{bottom:310.505067pt;}
.y1bb{bottom:310.505467pt;}
.y121{bottom:310.505867pt;}
.y16e{bottom:310.662400pt;}
.y5b{bottom:310.771600pt;}
.y15{bottom:310.771733pt;}
.y191{bottom:312.239467pt;}
.y272{bottom:314.132267pt;}
.y242{bottom:314.166267pt;}
.y21a{bottom:325.520267pt;}
.y1fa{bottom:325.542933pt;}
.y129{bottom:325.805333pt;}
.yd6{bottom:325.805600pt;}
.y157{bottom:325.822133pt;}
.y1ba{bottom:325.822533pt;}
.y72{bottom:325.832400pt;}
.y3e{bottom:325.832933pt;}
.ybf{bottom:325.837733pt;}
.y1d3{bottom:325.838000pt;}
.y8f{bottom:325.838133pt;}
.ye6{bottom:325.838267pt;}
.y115{bottom:325.838400pt;}
.y145{bottom:325.838533pt;}
.y1a7{bottom:325.838667pt;}
.y9e{bottom:325.838933pt;}
.y120{bottom:325.839200pt;}
.y16d{bottom:326.001200pt;}
.y5a{bottom:327.171600pt;}
.y14{bottom:327.171733pt;}
.y190{bottom:327.567333pt;}
.y271{bottom:329.466267pt;}
.y241{bottom:329.500267pt;}
.y219{bottom:340.854267pt;}
.y1f9{bottom:340.876933pt;}
.y128{bottom:341.144133pt;}
.yd5{bottom:341.144400pt;}
.y144{bottom:341.144667pt;}
.y156{bottom:341.160933pt;}
.y1b9{bottom:341.161333pt;}
.ybe{bottom:341.165733pt;}
.y1a6{bottom:341.166533pt;}
.y71{bottom:341.171200pt;}
.y1d2{bottom:341.171333pt;}
.y8e{bottom:341.171600pt;}
.y3d{bottom:341.171733pt;}
.y11f{bottom:341.172667pt;}
.y16c{bottom:341.334667pt;}
.y18f{bottom:342.906133pt;}
.y59{bottom:343.571600pt;}
.y270{bottom:344.800267pt;}
.y240{bottom:344.834267pt;}
.y218{bottom:356.188267pt;}
.y1f8{bottom:356.210933pt;}
.y127{bottom:356.482933pt;}
.yd4{bottom:356.483200pt;}
.y143{bottom:356.483467pt;}
.y1d1{bottom:356.493867pt;}
.y70{bottom:356.499200pt;}
.y155{bottom:356.499733pt;}
.y1b8{bottom:356.500133pt;}
.ybd{bottom:356.504533pt;}
.y100{bottom:356.504667pt;}
.y8d{bottom:356.505067pt;}
.ye5{bottom:356.505200pt;}
.y114{bottom:356.505333pt;}
.y16b{bottom:356.668000pt;}
.y18e{bottom:358.239600pt;}
.y58{bottom:359.971600pt;}
.y26f{bottom:360.134267pt;}
.y23f{bottom:360.168267pt;}
.y217{bottom:371.522267pt;}
.y1f7{bottom:371.544933pt;}
.ybc{bottom:371.821467pt;}
.y126{bottom:371.821733pt;}
.yd3{bottom:371.822000pt;}
.y142{bottom:371.822267pt;}
.ye4{bottom:371.827733pt;}
.y1d0{bottom:371.832667pt;}
.y6f{bottom:371.838000pt;}
.y8c{bottom:371.838400pt;}
.y154{bottom:371.838533pt;}
.y1a5{bottom:371.838667pt;}
.y113{bottom:371.838800pt;}
.y1b7{bottom:371.838933pt;}
.y16a{bottom:371.996000pt;}
.y18d{bottom:373.562133pt;}
.y26e{bottom:375.468267pt;}
.y23e{bottom:375.502267pt;}
.y57{bottom:376.371600pt;}
.y11e{bottom:376.371733pt;}
.y216{bottom:386.856267pt;}
.y1f6{bottom:386.878933pt;}
.yff{bottom:387.138667pt;}
.y1a4{bottom:387.155733pt;}
.ybb{bottom:387.160267pt;}
.y6e{bottom:387.160533pt;}
.yd2{bottom:387.160800pt;}
.y141{bottom:387.161067pt;}
.y1b6{bottom:387.161333pt;}
.y8b{bottom:387.166533pt;}
.y1cf{bottom:387.171467pt;}
.y112{bottom:387.172133pt;}
.y169{bottom:387.334800pt;}
.y18c{bottom:388.900933pt;}
.y26d{bottom:390.802267pt;}
.y23d{bottom:390.836267pt;}
.y13{bottom:391.296400pt;}
.y3c{bottom:392.771600pt;}
.y9d{bottom:392.771733pt;}
.y215{bottom:402.190267pt;}
.y1f5{bottom:402.212933pt;}
.yfe{bottom:402.477467pt;}
.y1a3{bottom:402.494533pt;}
.yba{bottom:402.499067pt;}
.y6d{bottom:402.499333pt;}
.y1ce{bottom:402.499467pt;}
.yd1{bottom:402.499600pt;}
.y140{bottom:402.499867pt;}
.y1b5{bottom:402.500133pt;}
.y8a{bottom:402.505333pt;}
.y111{bottom:402.505600pt;}
.y168{bottom:402.668133pt;}
.y18b{bottom:404.239733pt;}
.y26c{bottom:406.136267pt;}
.y23c{bottom:406.170267pt;}
.y12{bottom:406.630400pt;}
.y3b{bottom:409.171600pt;}
.y214{bottom:417.524267pt;}
.y1f4{bottom:417.546933pt;}
.yfd{bottom:417.816267pt;}
.y1cd{bottom:417.832800pt;}
.y1a2{bottom:417.833333pt;}
.yb9{bottom:417.837867pt;}
.y6c{bottom:417.838133pt;}
.yd0{bottom:417.838400pt;}
.y13f{bottom:417.838667pt;}
.y89{bottom:417.838800pt;}
.y110{bottom:417.838933pt;}
.y167{bottom:417.996133pt;}
.y18a{bottom:419.573200pt;}
.y26b{bottom:421.470267pt;}
.y23b{bottom:421.504267pt;}
.y11{bottom:421.964400pt;}
.y3a{bottom:425.571600pt;}
.y213{bottom:432.858267pt;}
.y1f3{bottom:432.880933pt;}
.yfc{bottom:433.155067pt;}
.y1b4{bottom:433.155867pt;}
.y13e{bottom:433.161200pt;}
.yb8{bottom:433.165867pt;}
.y88{bottom:433.166800pt;}
.y6b{bottom:433.171600pt;}
.y153{bottom:433.172133pt;}
.y10f{bottom:433.172267pt;}
.y166{bottom:433.334933pt;}
.y189{bottom:434.906800pt;}
.y26a{bottom:436.804267pt;}
.y23a{bottom:436.838267pt;}
.y39{bottom:441.971600pt;}
.y212{bottom:448.192267pt;}
.y1f2{bottom:448.214933pt;}
.yfb{bottom:448.493867pt;}
.y1b3{bottom:448.494667pt;}
.y13d{bottom:448.500000pt;}
.yb7{bottom:448.504667pt;}
.y6a{bottom:448.505067pt;}
.y87{bottom:448.505600pt;}
.y165{bottom:448.662933pt;}
.y188{bottom:450.240133pt;}
.y269{bottom:452.138267pt;}
.y239{bottom:452.172267pt;}
.y10{bottom:452.632400pt;}
.y38{bottom:458.371600pt;}
.y211{bottom:463.526267pt;}
.y1f1{bottom:463.548933pt;}
.yb6{bottom:463.827067pt;}
.y86{bottom:463.828000pt;}
.y152{bottom:463.828133pt;}
.yfa{bottom:463.832667pt;}
.y1b2{bottom:463.833467pt;}
.y1cc{bottom:463.838533pt;}
.y13c{bottom:463.838800pt;}
.y1a1{bottom:463.838933pt;}
.y164{bottom:464.001733pt;}
.y187{bottom:465.568133pt;}
.y268{bottom:467.472267pt;}
.y238{bottom:467.506267pt;}
.yf{bottom:467.966400pt;}
.y37{bottom:474.771600pt;}
.y10e{bottom:474.771733pt;}
.y210{bottom:478.860267pt;}
.y1f0{bottom:478.882933pt;}
.yb5{bottom:479.165867pt;}
.y13b{bottom:479.166667pt;}
.y85{bottom:479.166800pt;}
.y151{bottom:479.166933pt;}
.yf9{bottom:479.171467pt;}
.y1cb{bottom:479.172000pt;}
.y1b1{bottom:479.172267pt;}
.y163{bottom:479.329733pt;}
.y186{bottom:480.906933pt;}
.y267{bottom:482.806267pt;}
.y237{bottom:482.840267pt;}
.ye{bottom:483.300400pt;}
.y69{bottom:491.171600pt;}
.y36{bottom:491.171733pt;}
.y20f{bottom:494.194267pt;}
.y1ef{bottom:494.216933pt;}
.yb4{bottom:494.504667pt;}
.yf8{bottom:494.504933pt;}
.y13a{bottom:494.505467pt;}
.y84{bottom:494.505600pt;}
.y150{bottom:494.505733pt;}
.y162{bottom:494.668533pt;}
.y185{bottom:496.240533pt;}
.y266{bottom:498.140267pt;}
.y236{bottom:498.174267pt;}
.yd{bottom:498.634400pt;}
.y56{bottom:507.571600pt;}
.y35{bottom:507.571733pt;}
.y20e{bottom:509.528267pt;}
.y1ee{bottom:509.550933pt;}
.y83{bottom:509.822533pt;}
.y139{bottom:509.827867pt;}
.y1ca{bottom:509.828000pt;}
.yf7{bottom:509.832800pt;}
.yb3{bottom:509.838000pt;}
.y1b0{bottom:509.838933pt;}
.y14f{bottom:509.839200pt;}
.y161{bottom:509.996533pt;}
.y184{bottom:511.568400pt;}
.y265{bottom:513.474267pt;}
.y235{bottom:513.508267pt;}
.yc{bottom:513.968400pt;}
.y55{bottom:523.971600pt;}
.y34{bottom:523.971733pt;}
.y20d{bottom:524.862267pt;}
.y1ed{bottom:524.884933pt;}
.y82{bottom:525.161333pt;}
.y138{bottom:525.166667pt;}
.y1c9{bottom:525.166800pt;}
.yb2{bottom:525.171333pt;}
.yf6{bottom:525.171600pt;}
.y14e{bottom:525.172533pt;}
.y160{bottom:525.335333pt;}
.y183{bottom:526.907200pt;}
.y264{bottom:528.808267pt;}
.y234{bottom:528.842267pt;}
.yb{bottom:529.302400pt;}
.y20c{bottom:540.196267pt;}
.y1ec{bottom:540.218933pt;}
.y54{bottom:540.371600pt;}
.y33{bottom:540.371733pt;}
.y81{bottom:540.500133pt;}
.yb1{bottom:540.504933pt;}
.yf5{bottom:540.505067pt;}
.y137{bottom:540.505467pt;}
.y1c8{bottom:540.505600pt;}
.y15f{bottom:540.657867pt;}
.y182{bottom:542.235200pt;}
.y263{bottom:544.142267pt;}
.y233{bottom:544.176267pt;}
.ya{bottom:544.636400pt;}
.y1a0{bottom:544.811600pt;}
.y20b{bottom:555.530267pt;}
.y1eb{bottom:555.552933pt;}
.yb0{bottom:555.838400pt;}
.y80{bottom:555.838933pt;}
.y15e{bottom:555.996667pt;}
.y53{bottom:556.771600pt;}
.y32{bottom:556.771733pt;}
.y181{bottom:557.574000pt;}
.y262{bottom:559.476267pt;}
.y232{bottom:559.510267pt;}
.y9{bottom:559.970400pt;}
.y20a{bottom:570.864267pt;}
.y1ea{bottom:570.886933pt;}
.yf4{bottom:571.149867pt;}
.yaf{bottom:571.160800pt;}
.y1c7{bottom:571.172400pt;}
.y15d{bottom:571.335467pt;}
.y180{bottom:572.901867pt;}
.y52{bottom:573.171600pt;}
.y31{bottom:573.171733pt;}
.y261{bottom:574.810267pt;}
.y291{bottom:574.832933pt;}
.y231{bottom:574.844267pt;}
.y8{bottom:575.304400pt;}
.y209{bottom:586.198267pt;}
.y1e9{bottom:586.220933pt;}
.yf3{bottom:586.488667pt;}
.yae{bottom:586.499600pt;}
.y1c6{bottom:586.505867pt;}
.y15c{bottom:586.668933pt;}
.y17f{bottom:588.240667pt;}
.y51{bottom:589.571600pt;}
.y30{bottom:589.571733pt;}
.y260{bottom:590.144267pt;}
.y290{bottom:590.166933pt;}
.y230{bottom:590.178267pt;}
.y7{bottom:590.638400pt;}
.y208{bottom:601.532267pt;}
.y1e8{bottom:601.554933pt;}
.yf2{bottom:601.827467pt;}
.yad{bottom:601.832933pt;}
.y15b{bottom:601.996800pt;}
.y17e{bottom:603.568667pt;}
.y25f{bottom:605.478267pt;}
.y28f{bottom:605.500933pt;}
.y22f{bottom:605.512267pt;}
.y2f{bottom:605.971600pt;}
.y10d{bottom:605.971733pt;}
.y207{bottom:616.866267pt;}
.y1e7{bottom:616.888933pt;}
.yf1{bottom:617.166267pt;}
.yac{bottom:617.171733pt;}
.y15a{bottom:617.335600pt;}
.y17d{bottom:618.907467pt;}
.y25e{bottom:620.812267pt;}
.y28e{bottom:620.834933pt;}
.y22e{bottom:620.846267pt;}
.y2e{bottom:622.371600pt;}
.y10c{bottom:622.371733pt;}
.y206{bottom:632.200267pt;}
.y1e6{bottom:632.222933pt;}
.yf0{bottom:632.505067pt;}
.y25d{bottom:636.146267pt;}
.y28d{bottom:636.168933pt;}
.y22d{bottom:636.180267pt;}
.y2d{bottom:638.771600pt;}
.y9c{bottom:638.771733pt;}
.y205{bottom:647.534267pt;}
.y1e5{bottom:647.556933pt;}
.y6{bottom:648.257600pt;}
.y25c{bottom:651.480267pt;}
.y28c{bottom:651.502933pt;}
.y22c{bottom:651.514267pt;}
.y50{bottom:655.171600pt;}
.y68{bottom:655.171733pt;}
.y204{bottom:662.868267pt;}
.y1e4{bottom:662.890933pt;}
.y25b{bottom:666.814267pt;}
.y28b{bottom:666.836933pt;}
.y22b{bottom:666.848267pt;}
.y2c{bottom:671.571600pt;}
.y67{bottom:671.571733pt;}
.y5{bottom:674.929600pt;}
.y203{bottom:678.202267pt;}
.y1e3{bottom:678.224933pt;}
.y25a{bottom:682.148267pt;}
.y28a{bottom:682.170933pt;}
.y22a{bottom:682.182267pt;}
.y4f{bottom:687.971600pt;}
.y66{bottom:687.971733pt;}
.y202{bottom:693.536267pt;}
.y1e2{bottom:693.558933pt;}
.y259{bottom:697.482267pt;}
.y289{bottom:697.504933pt;}
.y229{bottom:697.516267pt;}
.y4e{bottom:704.371600pt;}
.y65{bottom:704.371733pt;}
.y258{bottom:712.816267pt;}
.y288{bottom:712.838933pt;}
.y228{bottom:712.850267pt;}
.y4{bottom:716.714400pt;}
.y2b{bottom:720.771600pt;}
.y64{bottom:720.771733pt;}
.y1e0{bottom:723.971733pt;}
.y257{bottom:728.150267pt;}
.y287{bottom:728.172933pt;}
.y227{bottom:728.184267pt;}
.y2a{bottom:737.171600pt;}
.y63{bottom:737.171733pt;}
.y3{bottom:743.381067pt;}
.y256{bottom:743.484267pt;}
.y286{bottom:743.506933pt;}
.y226{bottom:743.518267pt;}
.y29{bottom:753.571600pt;}
.y62{bottom:753.571733pt;}
.y255{bottom:758.818267pt;}
.y285{bottom:758.840933pt;}
.y225{bottom:758.852267pt;}
.y24{bottom:762.125333pt;}
.y23{bottom:768.790267pt;}
.y28{bottom:769.971600pt;}
.y2{bottom:770.047733pt;}
.y254{bottom:774.152267pt;}
.y284{bottom:774.174933pt;}
.y224{bottom:774.186267pt;}
.y27{bottom:786.371600pt;}
.y253{bottom:789.486267pt;}
.y283{bottom:789.508933pt;}
.y223{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.y26{bottom:802.771600pt;}
.y252{bottom:804.820267pt;}
.y282{bottom:804.842933pt;}
.y222{bottom:804.854267pt;}
.y25{bottom:849.726533pt;}
.h8{height:13.596267pt;}
.h13{height:30.346667pt;}
.h15{height:40.664000pt;}
.h5{height:40.890667pt;}
.h14{height:40.981333pt;}
.h4{height:42.840000pt;}
.h7{height:44.838400pt;}
.hc{height:44.860267pt;}
.hd{height:44.882133pt;}
.hf{height:44.904000pt;}
.he{height:44.925867pt;}
.h10{height:44.947733pt;}
.h12{height:44.969600pt;}
.h11{height:44.991467pt;}
.h9{height:45.216000pt;}
.h6{height:48.106667pt;}
.hb{height:48.107200pt;}
.ha{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x8{left:23.081200pt;}
.x7{left:25.631733pt;}
.x5{left:64.252000pt;}
.x1{left:71.811067pt;}
.xb{left:75.585333pt;}
.x6{left:83.149600pt;}
.x2{left:90.703733pt;}
.xd{left:314.140667pt;}
.xa{left:321.699733pt;}
.xc{left:325.474000pt;}
.x9{left:333.033067pt;}
.x4{left:579.238667pt;}
.x3{left:581.789200pt;}
}




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