
    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_4316b33dc98e07a249865253.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4d647f1618bcc66fae643ae6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_2eefe538dbf208a97007fdd9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f7ead053f9c4b24c6f0c4d3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3cf5f58d9780b08e36ebb9c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_f0127cf0c67a0079d87ab833.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_2aa12421b1da43f597383ded.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_a4fd3b9cb79931649436ce85.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6423521ccf799b22460b3602.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bea0cde19b8c70da0f782039.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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:ffb;src:url('chunks/assets/font_63a440f7a6d279fb603ee697.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.091309;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:ffc;src:url('chunks/assets/font_d76b396e4036bf03efc70f51.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.091309;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:ffd;src:url('chunks/assets/font_74a49c7240074a73bec91632.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.091309;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:ffe;src:url('chunks/assets/font_fbb38f19e1cb29f1fba8e3bf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e832af0dbaa5d2a2082532e8.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_99b92e751b1c09a795609133.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.091309;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000010,-0.250000,0.250000,0.000010,0,0);-ms-transform:matrix(0.000010,-0.250000,0.250000,0.000010,0,0);-webkit-transform:matrix(0.000010,-0.250000,0.250000,0.000010,0,0);}
.m5{transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);-ms-transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);-webkit-transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);}
.m2{transform:matrix(0.000012,-0.250000,0.250000,0.000012,0,0);-ms-transform:matrix(0.000012,-0.250000,0.250000,0.000012,0,0);-webkit-transform:matrix(0.000012,-0.250000,0.250000,0.000012,0,0);}
.m6{transform:matrix(0.000012,-0.250000,0.250000,0.000012,0,0);-ms-transform:matrix(0.000012,-0.250000,0.250000,0.000012,0,0);-webkit-transform:matrix(0.000012,-0.250000,0.250000,0.000012,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-19.428000px;}
.v7{vertical-align:-11.615240px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.620000px;}
.v5{vertical-align:22.452000px;}
.v4{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.v6{vertical-align:50.585400px;}
.ls63{letter-spacing:-6.780000px;}
.ls37{letter-spacing:-6.480000px;}
.ls55{letter-spacing:-6.360000px;}
.ls72{letter-spacing:-6.240000px;}
.ls56{letter-spacing:-5.880000px;}
.ls58{letter-spacing:-2.640000px;}
.lsa6{letter-spacing:-2.304000px;}
.lsf{letter-spacing:-2.025600px;}
.ls61{letter-spacing:-1.527604px;}
.lse{letter-spacing:-1.266000px;}
.lsd{letter-spacing:-0.780000px;}
.lsa5{letter-spacing:-0.432000px;}
.ls48{letter-spacing:-0.300000px;}
.lsa4{letter-spacing:-0.288000px;}
.ls6f{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.225000px;}
.ls54{letter-spacing:-0.180000px;}
.lsa3{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.120000px;}
.ls5a{letter-spacing:-0.096000px;}
.ls36{letter-spacing:-0.060000px;}
.ls9c{letter-spacing:-0.048000px;}
.ls12{letter-spacing:-0.045000px;}
.lsc{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003540px;}
.ls53{letter-spacing:0.034980px;}
.ls7e{letter-spacing:0.048000px;}
.ls15{letter-spacing:0.060000px;}
.ls97{letter-spacing:0.096000px;}
.ls2c{letter-spacing:0.120000px;}
.ls90{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.180000px;}
.ls99{letter-spacing:0.192000px;}
.ls33{letter-spacing:0.240000px;}
.ls59{letter-spacing:0.244860px;}
.ls77{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.300000px;}
.ls84{letter-spacing:0.336000px;}
.lsb{letter-spacing:0.360000px;}
.ls7f{letter-spacing:0.384000px;}
.ls40{letter-spacing:0.404400px;}
.ls17{letter-spacing:0.420000px;}
.ls28{letter-spacing:0.480000px;}
.ls7a{letter-spacing:0.528000px;}
.ls2f{letter-spacing:0.540000px;}
.ls88{letter-spacing:0.576000px;}
.ls2a{letter-spacing:0.600000px;}
.ls92{letter-spacing:0.624000px;}
.ls9{letter-spacing:0.660000px;}
.ls9d{letter-spacing:0.672000px;}
.ls7{letter-spacing:0.720000px;}
.ls82{letter-spacing:0.768000px;}
.ls1a{letter-spacing:0.780000px;}
.ls8a{letter-spacing:0.816000px;}
.ls19{letter-spacing:0.840000px;}
.lsa2{letter-spacing:0.864000px;}
.ls4b{letter-spacing:0.900000px;}
.ls8c{letter-spacing:0.912000px;}
.ls1d{letter-spacing:0.960000px;}
.ls91{letter-spacing:1.008000px;}
.ls52{letter-spacing:1.020000px;}
.ls8d{letter-spacing:1.056000px;}
.ls23{letter-spacing:1.080000px;}
.ls62{letter-spacing:1.104000px;}
.ls2{letter-spacing:1.140000px;}
.ls8f{letter-spacing:1.152000px;}
.ls41{letter-spacing:1.200000px;}
.ls87{letter-spacing:1.248000px;}
.ls21{letter-spacing:1.260000px;}
.ls44{letter-spacing:1.293600px;}
.ls81{letter-spacing:1.296000px;}
.ls16{letter-spacing:1.320000px;}
.ls7b{letter-spacing:1.344000px;}
.ls18{letter-spacing:1.380000px;}
.ls85{letter-spacing:1.392000px;}
.ls2d{letter-spacing:1.440000px;}
.ls94{letter-spacing:1.488000px;}
.ls42{letter-spacing:1.492200px;}
.ls6{letter-spacing:1.500000px;}
.ls9a{letter-spacing:1.536000px;}
.ls47{letter-spacing:1.557600px;}
.ls3f{letter-spacing:1.560000px;}
.ls98{letter-spacing:1.584000px;}
.ls29{letter-spacing:1.620000px;}
.ls80{letter-spacing:1.632000px;}
.ls3{letter-spacing:1.680000px;}
.ls3b{letter-spacing:1.740000px;}
.ls86{letter-spacing:1.776000px;}
.ls1f{letter-spacing:1.800000px;}
.ls76{letter-spacing:1.824000px;}
.ls13{letter-spacing:1.860000px;}
.ls4d{letter-spacing:1.920000px;}
.ls3c{letter-spacing:1.980000px;}
.ls96{letter-spacing:2.016000px;}
.ls20{letter-spacing:2.040000px;}
.ls3e{letter-spacing:2.100000px;}
.ls89{letter-spacing:2.112000px;}
.ls5{letter-spacing:2.160000px;}
.ls78{letter-spacing:2.208000px;}
.ls1{letter-spacing:2.220000px;}
.ls7d{letter-spacing:2.256000px;}
.ls43{letter-spacing:2.280000px;}
.lsa0{letter-spacing:2.304000px;}
.ls1c{letter-spacing:2.340000px;}
.ls8b{letter-spacing:2.352000px;}
.ls50{letter-spacing:2.400000px;}
.ls93{letter-spacing:2.448000px;}
.ls25{letter-spacing:2.460000px;}
.lsa1{letter-spacing:2.496000px;}
.ls45{letter-spacing:2.520000px;}
.ls83{letter-spacing:2.544000px;}
.ls35{letter-spacing:2.580000px;}
.ls46{letter-spacing:2.640000px;}
.ls2e{letter-spacing:2.700000px;}
.ls95{letter-spacing:2.736000px;}
.ls8{letter-spacing:2.760000px;}
.ls1e{letter-spacing:2.820000px;}
.ls1b{letter-spacing:2.880000px;}
.ls79{letter-spacing:2.928000px;}
.ls3d{letter-spacing:2.940000px;}
.ls8e{letter-spacing:2.976000px;}
.ls49{letter-spacing:3.000000px;}
.ls30{letter-spacing:3.060000px;}
.ls4f{letter-spacing:3.120000px;}
.ls9e{letter-spacing:3.168000px;}
.ls32{letter-spacing:3.180000px;}
.ls66{letter-spacing:3.240000px;}
.ls31{letter-spacing:3.300000px;}
.ls51{letter-spacing:3.360000px;}
.ls27{letter-spacing:3.420000px;}
.ls4a{letter-spacing:3.480000px;}
.ls9f{letter-spacing:3.504000px;}
.ls39{letter-spacing:3.600000px;}
.ls2b{letter-spacing:3.660000px;}
.lsa{letter-spacing:3.720000px;}
.ls4e{letter-spacing:3.780000px;}
.ls9b{letter-spacing:3.936000px;}
.ls64{letter-spacing:4.080000px;}
.ls7c{letter-spacing:4.176000px;}
.ls4{letter-spacing:4.200000px;}
.ls24{letter-spacing:4.260000px;}
.ls22{letter-spacing:4.320000px;}
.ls67{letter-spacing:4.380000px;}
.ls65{letter-spacing:4.500000px;}
.ls71{letter-spacing:4.620000px;}
.ls73{letter-spacing:4.740000px;}
.ls6e{letter-spacing:4.860000px;}
.ls57{letter-spacing:5.040000px;}
.ls70{letter-spacing:5.100000px;}
.ls4c{letter-spacing:5.160000px;}
.ls38{letter-spacing:5.280000px;}
.ls3a{letter-spacing:5.460000px;}
.ls75{letter-spacing:5.700000px;}
.ls34{letter-spacing:6.000000px;}
.ls74{letter-spacing:6.960000px;}
.ls60{letter-spacing:16.498085px;}
.ls6b{letter-spacing:25.879117px;}
.ls5e{letter-spacing:29.189626px;}
.ls5f{letter-spacing:29.272199px;}
.ls5d{letter-spacing:30.799804px;}
.ls5c{letter-spacing:40.254435px;}
.ls5b{letter-spacing:49.832926px;}
.ls69{letter-spacing:81.808788px;}
.ls6a{letter-spacing:81.849287px;}
.ls68{letter-spacing:83.266766px;}
.ls6c{letter-spacing:122.632183px;}
.ls6d{letter-spacing:126.844121px;}
.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;}
}
.ws6d{word-spacing:-132.757033px;}
.ws74{word-spacing:-126.844121px;}
.ws4d{word-spacing:-60.154576px;}
.ws4e{word-spacing:-50.576085px;}
.ws4f{word-spacing:-41.121454px;}
.ws51{word-spacing:-39.593849px;}
.ws50{word-spacing:-39.511276px;}
.ws6a{word-spacing:-36.003967px;}
.ws53{word-spacing:-28.884035px;}
.ws8b{word-spacing:-18.660000px;}
.ws80{word-spacing:-18.180000px;}
.ws76{word-spacing:-17.820000px;}
.ws81{word-spacing:-17.640000px;}
.ws21{word-spacing:-17.280000px;}
.wsa{word-spacing:-16.860000px;}
.ws24{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.ws4b{word-spacing:-16.620000px;}
.ws22{word-spacing:-16.380000px;}
.ws20{word-spacing:-16.320000px;}
.ws9b{word-spacing:-15.936000px;}
.ws1f{word-spacing:-15.780000px;}
.ws75{word-spacing:-15.720000px;}
.ws1c{word-spacing:-15.540000px;}
.ws1d{word-spacing:-15.480000px;}
.ws23{word-spacing:-15.240000px;}
.ws60{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.060000px;}
.wsc{word-spacing:-15.000000px;}
.ws1e{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.880000px;}
.ws39{word-spacing:-14.820000px;}
.ws95{word-spacing:-14.352000px;}
.wsbe{word-spacing:-14.304000px;}
.wsba{word-spacing:-14.256000px;}
.ws99{word-spacing:-14.160000px;}
.ws98{word-spacing:-14.016000px;}
.wsb9{word-spacing:-13.632000px;}
.ws9a{word-spacing:-13.584000px;}
.ws97{word-spacing:-13.488000px;}
.ws4{word-spacing:-13.344000px;}
.ws92{word-spacing:-13.248000px;}
.wsbd{word-spacing:-12.864000px;}
.ws94{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.510000px;}
.ws93{word-spacing:-12.384000px;}
.ws90{word-spacing:-12.336000px;}
.wsbc{word-spacing:-12.288000px;}
.ws91{word-spacing:-12.000000px;}
.ws96{word-spacing:-11.904000px;}
.ws0{word-spacing:-10.210662px;}
.ws6b{word-spacing:-10.124850px;}
.wsbb{word-spacing:-9.696000px;}
.ws4c{word-spacing:-8.989860px;}
.ws54{word-spacing:-8.794046px;}
.ws37{word-spacing:-8.779980px;}
.ws38{word-spacing:-8.745000px;}
.ws3d{word-spacing:-6.996000px;}
.ws1{word-spacing:-5.684250px;}
.ws7{word-spacing:-4.684200px;}
.wsb8{word-spacing:-3.936000px;}
.ws7f{word-spacing:-3.300000px;}
.ws88{word-spacing:-3.060000px;}
.ws6{word-spacing:-2.886000px;}
.wsad{word-spacing:-2.640000px;}
.ws33{word-spacing:-2.580000px;}
.ws85{word-spacing:-2.340000px;}
.ws2d{word-spacing:-2.280000px;}
.wsca{word-spacing:-2.256000px;}
.ws16{word-spacing:-2.220000px;}
.wsb6{word-spacing:-2.160000px;}
.wsc5{word-spacing:-2.112000px;}
.ws34{word-spacing:-1.980000px;}
.wsb3{word-spacing:-1.920000px;}
.ws2e{word-spacing:-1.860000px;}
.wsc8{word-spacing:-1.632000px;}
.wscf{word-spacing:-1.584000px;}
.ws29{word-spacing:-1.500000px;}
.wsb5{word-spacing:-1.488000px;}
.ws41{word-spacing:-1.440000px;}
.ws2f{word-spacing:-1.380000px;}
.ws9e{word-spacing:-1.344000px;}
.ws2b{word-spacing:-1.320000px;}
.wsaa{word-spacing:-1.248000px;}
.ws28{word-spacing:-1.140000px;}
.ws7a{word-spacing:-0.960000px;}
.wsc9{word-spacing:-0.912000px;}
.ws4a{word-spacing:-0.864000px;}
.wsb0{word-spacing:-0.816000px;}
.wsa4{word-spacing:-0.768000px;}
.wsbf{word-spacing:-0.624000px;}
.wsaf{word-spacing:-0.528000px;}
.ws2c{word-spacing:-0.480000px;}
.wsa3{word-spacing:-0.384000px;}
.ws19{word-spacing:-0.360000px;}
.wsa9{word-spacing:-0.336000px;}
.ws25{word-spacing:-0.300000px;}
.wsa8{word-spacing:-0.288000px;}
.ws27{word-spacing:-0.240000px;}
.wscb{word-spacing:-0.192000px;}
.ws86{word-spacing:-0.180000px;}
.ws15{word-spacing:-0.120000px;}
.ws43{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.wsa5{word-spacing:0.048000px;}
.ws5c{word-spacing:0.060000px;}
.ws31{word-spacing:0.120000px;}
.wsc3{word-spacing:0.144000px;}
.ws5d{word-spacing:0.180000px;}
.ws5f{word-spacing:0.192000px;}
.wsb2{word-spacing:0.240000px;}
.ws26{word-spacing:0.360000px;}
.wsc2{word-spacing:0.432000px;}
.ws12{word-spacing:0.480000px;}
.ws64{word-spacing:0.540000px;}
.wsb7{word-spacing:0.576000px;}
.ws83{word-spacing:0.660000px;}
.wse{word-spacing:0.720000px;}
.wsb1{word-spacing:0.816000px;}
.wsf{word-spacing:0.840000px;}
.ws13{word-spacing:0.900000px;}
.wsab{word-spacing:0.912000px;}
.ws73{word-spacing:0.960000px;}
.wsce{word-spacing:1.008000px;}
.ws8d{word-spacing:1.020000px;}
.ws32{word-spacing:1.140000px;}
.ws42{word-spacing:1.200000px;}
.ws79{word-spacing:1.260000px;}
.ws9d{word-spacing:1.296000px;}
.ws7d{word-spacing:1.380000px;}
.wsac{word-spacing:1.392000px;}
.ws2a{word-spacing:1.440000px;}
.wsc4{word-spacing:1.488000px;}
.ws3f{word-spacing:1.560000px;}
.wsa0{word-spacing:1.584000px;}
.ws84{word-spacing:1.620000px;}
.wsd0{word-spacing:1.680000px;}
.ws7b{word-spacing:1.800000px;}
.wscd{word-spacing:1.968000px;}
.ws89{word-spacing:1.980000px;}
.wsa1{word-spacing:2.016000px;}
.ws9f{word-spacing:2.064000px;}
.ws7c{word-spacing:2.100000px;}
.wscc{word-spacing:2.256000px;}
.wsc1{word-spacing:2.352000px;}
.ws77{word-spacing:2.520000px;}
.wsa7{word-spacing:2.544000px;}
.ws44{word-spacing:2.580000px;}
.ws5e{word-spacing:2.640000px;}
.ws14{word-spacing:2.700000px;}
.wsa6{word-spacing:2.736000px;}
.wsb4{word-spacing:2.832000px;}
.ws35{word-spacing:2.880000px;}
.ws18{word-spacing:2.940000px;}
.ws36{word-spacing:3.000000px;}
.ws8c{word-spacing:3.120000px;}
.wsae{word-spacing:3.216000px;}
.wsc0{word-spacing:3.312000px;}
.ws1a{word-spacing:3.360000px;}
.ws9c{word-spacing:3.408000px;}
.ws71{word-spacing:3.420000px;}
.ws8a{word-spacing:3.480000px;}
.ws17{word-spacing:3.540000px;}
.wsa2{word-spacing:3.552000px;}
.ws65{word-spacing:3.600000px;}
.ws3e{word-spacing:3.660000px;}
.ws10{word-spacing:3.780000px;}
.ws66{word-spacing:3.840000px;}
.ws67{word-spacing:3.936000px;}
.ws8f{word-spacing:3.984000px;}
.wsc6{word-spacing:4.080000px;}
.ws49{word-spacing:4.140000px;}
.ws1b{word-spacing:4.200000px;}
.ws30{word-spacing:4.260000px;}
.ws40{word-spacing:4.320000px;}
.ws46{word-spacing:4.440000px;}
.ws68{word-spacing:4.500000px;}
.ws82{word-spacing:4.560000px;}
.ws45{word-spacing:4.620000px;}
.ws72{word-spacing:4.680000px;}
.ws7e{word-spacing:4.800000px;}
.ws9{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws8e{word-spacing:5.520000px;}
.ws48{word-spacing:5.880000px;}
.ws87{word-spacing:6.240000px;}
.ws47{word-spacing:6.360000px;}
.wsc7{word-spacing:6.384000px;}
.ws11{word-spacing:6.480000px;}
.ws63{word-spacing:6.720000px;}
.ws62{word-spacing:6.780000px;}
.ws78{word-spacing:12.720000px;}
.ws70{word-spacing:15.794766px;}
.ws52{word-spacing:26.517388px;}
.ws58{word-spacing:27.011455px;}
.ws55{word-spacing:27.055663px;}
.ws56{word-spacing:31.388106px;}
.ws59{word-spacing:31.476523px;}
.ws5a{word-spacing:32.360695px;}
.ws5b{word-spacing:32.404904px;}
.ws57{word-spacing:32.449112px;}
.ws6c{word-spacing:51.434238px;}
.ws3c{word-spacing:97.536000px;}
.ws3a{word-spacing:158.016000px;}
.ws6f{word-spacing:166.452534px;}
.ws69{word-spacing:167.656500px;}
.ws61{word-spacing:220.176000px;}
.ws3b{word-spacing:369.830856px;}
.ws6e{word-spacing:858.951775px;}
._c{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._21{margin-left:-1056.302846px;}
._3d{margin-left:-597.592738px;}
._37{margin-left:-402.781500px;}
._3c{margin-left:-235.382513px;}
._34{margin-left:-118.520921px;}
._1e{margin-left:-116.923368px;}
._36{margin-left:-109.382881px;}
._20{margin-left:-92.201012px;}
._3a{margin-left:-52.851717px;}
._1a{margin-left:-41.699466px;}
._30{margin-left:-34.199550px;}
._1b{margin-left:-30.799804px;}
._1c{margin-left:-29.189626px;}
._39{margin-left:-25.919616px;}
._1f{margin-left:-16.498085px;}
._9{margin-left:-8.100000px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._6{margin-left:-4.320000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.020000px;}
._7{width:1.020000px;}
._a{width:2.100000px;}
._b{width:3.240000px;}
._3{width:4.684200px;}
._8{width:6.180000px;}
._d{width:7.230000px;}
._1d{width:16.498085px;}
._38{width:20.542500px;}
._10{width:34.464000px;}
._f{width:53.184000px;}
._4{width:59.520828px;}
._3b{width:67.391002px;}
._35{width:109.382881px;}
._33{width:118.520921px;}
._19{width:149.980200px;}
._53{width:153.456000px;}
._12{width:170.016000px;}
._4e{width:194.592000px;}
._26{width:198.144000px;}
._13{width:205.830000px;}
._29{width:232.176000px;}
._45{width:236.592000px;}
._41{width:239.184000px;}
._43{width:252.144000px;}
._11{width:256.128000px;}
._2c{width:262.272000px;}
._52{width:264.144000px;}
._2a{width:274.176000px;}
._4a{width:276.144000px;}
._4b{width:288.144000px;}
._25{width:291.312000px;}
._40{width:292.992000px;}
._24{width:300.192000px;}
._23{width:316.176000px;}
._4d{width:331.920000px;}
._3f{width:333.504000px;}
._55{width:363.216000px;}
._47{width:375.216000px;}
._3e{width:382.800329px;}
._15{width:390.720000px;}
._50{width:401.232000px;}
._14{width:402.624000px;}
._18{width:426.768000px;}
._16{width:493.344000px;}
._28{width:555.936000px;}
._17{width:580.998000px;}
._2d{width:605.376000px;}
._54{width:673.632000px;}
._48{width:685.632000px;}
._51{width:711.648000px;}
._42{width:796.176000px;}
._44{width:800.208000px;}
._56{width:808.224000px;}
._32{width:879.566827px;}
._4c{width:895.536000px;}
._46{width:926.976000px;}
._2b{width:930.672000px;}
._4f{width:952.992000px;}
._57{width:1008.288000px;}
._58{width:1010.880000px;}
._27{width:1046.496000px;}
._22{width:1133.430000px;}
._49{width:1255.392000px;}
._31{width:1461.369571px;}
._2f{width:2007.168000px;}
._2e{width:2203.104000px;}
.fc2{color:rgb(4,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:22.737000px;}
.fs16{font-size:24.750000px;}
.fs5{font-size:26.235000px;}
.fsc{font-size:27.984000px;}
.fsb{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs8{font-size:39.000000px;}
.fs14{font-size:40.499400px;}
.fse{font-size:41.286600px;}
.fs0{font-size:42.000000px;}
.fsf{font-size:44.208600px;}
.fs6{font-size:45.000000px;}
.fs12{font-size:45.599400px;}
.fsa{font-size:48.000000px;}
.fs15{font-size:49.500000px;}
.fsd{font-size:49.543800px;}
.fs10{font-size:54.033600px;}
.fs13{font-size:54.718800px;}
.fs11{font-size:58.942800px;}
.fs9{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y116{bottom:40.421550px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.y18d{bottom:57.866400px;}
.yf4{bottom:82.822500px;}
.y164{bottom:83.141400px;}
.y1c6{bottom:83.635350px;}
.y63{bottom:83.770350px;}
.y83{bottom:83.912100px;}
.y1b8{bottom:84.062100px;}
.y22{bottom:88.025700px;}
.ya7{bottom:88.820700px;}
.y1a9{bottom:90.324750px;}
.y1d0{bottom:92.121900px;}
.y14e{bottom:92.528850px;}
.y211{bottom:95.263500px;}
.yf3{bottom:98.566500px;}
.y163{bottom:98.885400px;}
.y1c5{bottom:101.635350px;}
.y62{bottom:101.770350px;}
.y82{bottom:101.912100px;}
.y96{bottom:101.920350px;}
.y1b7{bottom:102.062100px;}
.y21{bottom:103.023000px;}
.y1a8{bottom:106.572750px;}
.y1cf{bottom:107.121900px;}
.ya6{bottom:108.670350px;}
.y14d{bottom:108.776850px;}
.y210{bottom:110.263500px;}
.y159{bottom:112.165500px;}
.y1c4{bottom:119.635350px;}
.y61{bottom:119.770350px;}
.y81{bottom:119.912100px;}
.y95{bottom:119.920350px;}
.y1b6{bottom:120.062100px;}
.yfe{bottom:121.713000px;}
.y1ce{bottom:122.121900px;}
.y16b{bottom:122.137500px;}
.y1a7{bottom:122.820750px;}
.y14c{bottom:125.024850px;}
.y11c{bottom:125.149800px;}
.y20f{bottom:125.263500px;}
.y16e{bottom:125.933100px;}
.ya5{bottom:131.302350px;}
.y1c3{bottom:137.635350px;}
.y60{bottom:137.770350px;}
.y80{bottom:137.912100px;}
.y94{bottom:137.920350px;}
.y1b5{bottom:138.062100px;}
.y170{bottom:138.070650px;}
.y1a6{bottom:139.068750px;}
.y107{bottom:139.252800px;}
.y100{bottom:139.579200px;}
.y20e{bottom:140.263500px;}
.y14b{bottom:141.272850px;}
.ya4{bottom:153.973950px;}
.y1cd{bottom:155.230350px;}
.y20d{bottom:155.263500px;}
.y1a5{bottom:155.316750px;}
.y1c2{bottom:155.635350px;}
.y5f{bottom:155.770350px;}
.y7f{bottom:155.912100px;}
.y93{bottom:155.920350px;}
.y14a{bottom:157.520850px;}
.y28{bottom:159.953700px;}
.y108{bottom:160.229781px;}
.y101{bottom:160.556181px;}
.ya3{bottom:170.221950px;}
.y20c{bottom:170.263500px;}
.y1a4{bottom:171.564750px;}
.y188{bottom:173.141897px;}
.y184{bottom:173.446650px;}
.y1c1{bottom:173.635350px;}
.y1b4{bottom:173.657100px;}
.y149{bottom:173.768850px;}
.y5e{bottom:173.770350px;}
.y7e{bottom:173.912100px;}
.y92{bottom:173.920350px;}
.y27{bottom:177.953700px;}
.y21b{bottom:179.914350px;}
.y18f{bottom:180.002700px;}
.y109{bottom:181.206761px;}
.y102{bottom:181.533161px;}
.y20b{bottom:185.263500px;}
.y175{bottom:185.572448px;}
.ya2{bottom:186.469950px;}
.y1a3{bottom:187.812750px;}
.y148{bottom:190.016850px;}
.y18e{bottom:191.214300px;}
.y1c0{bottom:191.635350px;}
.y5d{bottom:191.770350px;}
.y7d{bottom:191.912100px;}
.y91{bottom:191.920350px;}
.y17a{bottom:192.214349px;}
.y26{bottom:195.953700px;}
.y21a{bottom:197.914350px;}
.y20a{bottom:200.263500px;}
.y10a{bottom:202.183742px;}
.y103{bottom:202.510142px;}
.ya1{bottom:202.717950px;}
.y1a2{bottom:204.060750px;}
.y1bf{bottom:209.635350px;}
.y5c{bottom:209.770350px;}
.y7c{bottom:209.912100px;}
.y90{bottom:209.920350px;}
.y25{bottom:213.953700px;}
.y209{bottom:215.263500px;}
.yeb{bottom:215.754750px;}
.y219{bottom:215.914350px;}
.ya0{bottom:218.965950px;}
.y1a1{bottom:220.308750px;}
.y147{bottom:221.528850px;}
.y10b{bottom:223.160723px;}
.y104{bottom:223.487123px;}
.y187{bottom:225.841737px;}
.y1cc{bottom:227.365350px;}
.yff{bottom:227.485500px;}
.y1be{bottom:227.635350px;}
.y5b{bottom:227.770350px;}
.y7b{bottom:227.912100px;}
.y8f{bottom:227.920350px;}
.y208{bottom:230.263500px;}
.y24{bottom:231.953700px;}
.y177{bottom:232.470753px;}
.y218{bottom:233.914350px;}
.y9f{bottom:235.213950px;}
.y1a0{bottom:236.556750px;}
.y10c{bottom:244.137703px;}
.y105{bottom:244.464103px;}
.y207{bottom:245.263500px;}
.y1bd{bottom:245.635350px;}
.y5a{bottom:245.770350px;}
.y7a{bottom:245.912100px;}
.y8e{bottom:245.920350px;}
.y2a{bottom:249.953700px;}
.y9e{bottom:251.461950px;}
.y19f{bottom:252.804750px;}
.y146{bottom:256.423950px;}
.y206{bottom:260.263500px;}
.y1cb{bottom:263.365350px;}
.y1bc{bottom:263.635350px;}
.y59{bottom:263.770350px;}
.y79{bottom:263.912100px;}
.y8d{bottom:263.920350px;}
.y118{bottom:264.966540px;}
.y10d{bottom:265.114684px;}
.y106{bottom:265.441084px;}
.y11b{bottom:265.832091px;}
.y178{bottom:266.996491px;}
.y23{bottom:267.548700px;}
.y9d{bottom:267.709950px;}
.y29{bottom:267.953700px;}
.y19e{bottom:269.052750px;}
.y217{bottom:269.914350px;}
.y205{bottom:275.263500px;}
.y185{bottom:275.920257px;}
.y145{bottom:275.923950px;}
.y186{bottom:278.318839px;}
.y1bb{bottom:281.635350px;}
.y16c{bottom:281.723850px;}
.y58{bottom:281.770350px;}
.y78{bottom:281.912100px;}
.y8c{bottom:281.920350px;}
.y19d{bottom:285.300750px;}
.y216{bottom:287.914350px;}
.y204{bottom:290.263500px;}
.y9c{bottom:296.713950px;}
.y1ba{bottom:299.635350px;}
.y57{bottom:299.770350px;}
.y77{bottom:299.912100px;}
.y8b{bottom:299.920350px;}
.y19c{bottom:301.548750px;}
.yf5{bottom:301.900050px;}
.y11d{bottom:302.571600px;}
.y203{bottom:305.263500px;}
.y215{bottom:305.914350px;}
.y9a{bottom:311.209950px;}
.y190{bottom:313.350600px;}
.y179{bottom:315.089529px;}
.y10e{bottom:316.962750px;}
.yf6{bottom:317.077800px;}
.y56{bottom:317.770350px;}
.y19b{bottom:317.796750px;}
.y76{bottom:317.912100px;}
.y8a{bottom:317.920350px;}
.y202{bottom:320.263500px;}
.y176{bottom:320.668321px;}
.y144{bottom:321.570600px;}
.y214{bottom:323.914350px;}
.y9b{bottom:325.717950px;}
.y16f{bottom:327.473700px;}
.y19a{bottom:334.044750px;}
.y1b9{bottom:335.230350px;}
.y201{bottom:335.263500px;}
.y1ca{bottom:335.365350px;}
.y10f{bottom:335.618779px;}
.yf7{bottom:335.733829px;}
.y55{bottom:335.770350px;}
.y75{bottom:335.912100px;}
.y89{bottom:335.920350px;}
.y143{bottom:337.314600px;}
.y20{bottom:341.914200px;}
.y169{bottom:348.190950px;}
.y166{bottom:348.217200px;}
.y200{bottom:350.263500px;}
.y199{bottom:350.292750px;}
.y119{bottom:352.364550px;}
.y54{bottom:353.770350px;}
.y74{bottom:353.912100px;}
.y88{bottom:353.920350px;}
.y110{bottom:354.274808px;}
.yf8{bottom:354.389858px;}
.y99{bottom:358.120350px;}
.y213{bottom:359.509350px;}
.y165{bottom:360.126450px;}
.y180{bottom:360.258073px;}
.y17b{bottom:360.752602px;}
.y168{bottom:360.759300px;}
.y17c{bottom:360.894350px;}
.y158{bottom:362.905500px;}
.y1ff{bottom:365.263500px;}
.y198{bottom:366.540750px;}
.y157{bottom:367.100700px;}
.y1f{bottom:369.259200px;}
.y53{bottom:371.770350px;}
.y73{bottom:371.912100px;}
.y87{bottom:371.920350px;}
.y111{bottom:372.908733px;}
.yf9{bottom:373.012731px;}
.y98{bottom:377.620350px;}
.y1fe{bottom:380.263500px;}
.y14f{bottom:380.290950px;}
.y197{bottom:382.788750px;}
.y1e{bottom:387.259200px;}
.y1c9{bottom:389.365350px;}
.y52{bottom:389.770350px;}
.y72{bottom:389.912100px;}
.y86{bottom:389.920350px;}
.y183{bottom:390.616676px;}
.y112{bottom:391.564763px;}
.yfa{bottom:391.668760px;}
.y1fd{bottom:395.263500px;}
.y150{bottom:396.009450px;}
.y97{bottom:397.120350px;}
.y196{bottom:399.036750px;}
.y18b{bottom:403.860300px;}
.y1d{bottom:405.259200px;}
.y51{bottom:407.770350px;}
.y71{bottom:407.912100px;}
.y85{bottom:407.920350px;}
.y15a{bottom:409.690350px;}
.y113{bottom:410.231844px;}
.y1fc{bottom:410.263500px;}
.yfb{bottom:410.324790px;}
.y172{bottom:414.880050px;}
.y18a{bottom:422.309459px;}
.y1c{bottom:423.259200px;}
.y1fb{bottom:425.263500px;}
.y50{bottom:425.770350px;}
.y70{bottom:425.912100px;}
.y1b3{bottom:425.920350px;}
.y195{bottom:428.040750px;}
.y114{bottom:428.854717px;}
.yfc{bottom:428.947662px;}
.y17f{bottom:431.382722px;}
.y1fa{bottom:440.263500px;}
.y1b{bottom:441.259200px;}
.y193{bottom:442.536750px;}
.y174{bottom:442.682889px;}
.y84{bottom:443.515350px;}
.y182{bottom:443.730631px;}
.y4f{bottom:443.770350px;}
.y6f{bottom:443.912100px;}
.y1b2{bottom:443.920350px;}
.y117{bottom:445.906200px;}
.y115{bottom:447.499694px;}
.yfd{bottom:447.603692px;}
.y11a{bottom:448.112700px;}
.y1f9{bottom:455.263500px;}
.y194{bottom:457.044750px;}
.y1a{bottom:459.259200px;}
.y4e{bottom:461.770350px;}
.y6e{bottom:461.912100px;}
.y1b1{bottom:461.920350px;}
.y1f8{bottom:470.263500px;}
.y17e{bottom:471.122763px;}
.y189{bottom:471.870600px;}
.y151{bottom:472.835700px;}
.y19{bottom:477.259200px;}
.y4d{bottom:479.770350px;}
.y6d{bottom:479.912100px;}
.y1b0{bottom:479.920350px;}
.y1f7{bottom:485.263500px;}
.y192{bottom:489.430350px;}
.yc6{bottom:494.814450px;}
.y18{bottom:495.259200px;}
.y181{bottom:496.460850px;}
.y1c8{bottom:497.365350px;}
.y4c{bottom:497.770350px;}
.yc5{bottom:497.912100px;}
.y6c{bottom:497.920350px;}
.y1f6{bottom:500.263500px;}
.y153{bottom:506.554800px;}
.y191{bottom:508.930350px;}
.y17d{bottom:510.498300px;}
.y17{bottom:513.259200px;}
.y1f5{bottom:515.263500px;}
.y4b{bottom:515.770350px;}
.yc4{bottom:515.912100px;}
.y6b{bottom:515.920350px;}
.y1f4{bottom:530.263500px;}
.y16{bottom:531.259200px;}
.y171{bottom:531.346200px;}
.y173{bottom:533.492668px;}
.yea{bottom:533.598000px;}
.y4a{bottom:533.770350px;}
.yc3{bottom:533.912100px;}
.y6a{bottom:533.920350px;}
.y18c{bottom:537.208200px;}
.y16d{bottom:537.209250px;}
.yd9{bottom:537.396150px;}
.y1f3{bottom:545.263500px;}
.y167{bottom:547.129950px;}
.y155{bottom:548.688646px;}
.y15{bottom:549.259200px;}
.y16a{bottom:550.163400px;}
.y65{bottom:551.365350px;}
.y49{bottom:551.770350px;}
.yc2{bottom:551.912100px;}
.y69{bottom:551.920350px;}
.yf2{bottom:552.763540px;}
.y1f2{bottom:560.263500px;}
.y156{bottom:563.041057px;}
.yda{bottom:563.821650px;}
.y154{bottom:566.791607px;}
.y14{bottom:567.259200px;}
.y48{bottom:569.770350px;}
.yc1{bottom:569.912100px;}
.y1af{bottom:569.920350px;}
.y1f1{bottom:575.263500px;}
.ydb{bottom:578.220352px;}
.y13{bottom:585.259200px;}
.y64{bottom:587.230350px;}
.y68{bottom:587.515350px;}
.y47{bottom:587.770350px;}
.yc0{bottom:587.912100px;}
.y162{bottom:587.920350px;}
.y1f0{bottom:590.263500px;}
.ydc{bottom:592.629375px;}
.y152{bottom:595.988280px;}
.y15b{bottom:599.731950px;}
.y12{bottom:603.259200px;}
.y1ef{bottom:605.263500px;}
.y46{bottom:605.770350px;}
.ybf{bottom:605.912100px;}
.y161{bottom:605.920350px;}
.ydd{bottom:607.059042px;}
.y1ee{bottom:620.263500px;}
.y11{bottom:621.259200px;}
.yde{bottom:621.457744px;}
.y45{bottom:623.770350px;}
.ybe{bottom:623.912100px;}
.y1ae{bottom:623.920350px;}
.y1ed{bottom:635.263500px;}
.ydf{bottom:635.856445px;}
.y10{bottom:639.259200px;}
.y160{bottom:641.515350px;}
.y44{bottom:641.770350px;}
.ybd{bottom:641.907600px;}
.y1ad{bottom:641.920350px;}
.y1ec{bottom:650.263500px;}
.ye0{bottom:650.286112px;}
.yd8{bottom:656.436000px;}
.yed{bottom:659.258087px;}
.y15f{bottom:659.515350px;}
.y43{bottom:659.770350px;}
.ybc{bottom:659.907600px;}
.y1ac{bottom:659.920350px;}
.ye1{bottom:664.684814px;}
.y1eb{bottom:665.263500px;}
.yf1{bottom:677.449072px;}
.y42{bottom:677.770350px;}
.y142{bottom:677.785350px;}
.ybb{bottom:677.907600px;}
.y12d{bottom:677.920350px;}
.y1ea{bottom:680.263500px;}
.yf{bottom:684.417300px;}
.ye2{bottom:688.965900px;}
.y1e9{bottom:695.263500px;}
.y1c7{bottom:695.365350px;}
.y15e{bottom:695.380350px;}
.y41{bottom:695.770350px;}
.y141{bottom:695.785350px;}
.yba{bottom:695.907600px;}
.y12c{bottom:695.920350px;}
.ye{bottom:696.868050px;}
.ye3{bottom:703.106561px;}
.y1e8{bottom:710.263500px;}
.yd{bottom:713.425050px;}
.y40{bottom:713.770350px;}
.y140{bottom:713.785350px;}
.yb9{bottom:713.907600px;}
.y12b{bottom:713.920350px;}
.ye4{bottom:717.247221px;}
.y1e7{bottom:725.263500px;}
.ye5{bottom:731.387882px;}
.y3f{bottom:731.770350px;}
.y13f{bottom:731.785350px;}
.yb8{bottom:731.907600px;}
.y12a{bottom:731.920350px;}
.y1e6{bottom:740.263500px;}
.ye6{bottom:745.549185px;}
.yc{bottom:745.708950px;}
.y3e{bottom:749.770350px;}
.y13e{bottom:749.785350px;}
.yb7{bottom:749.907600px;}
.y129{bottom:749.920350px;}
.yb{bottom:753.783600px;}
.y1e5{bottom:755.263500px;}
.ye7{bottom:759.689846px;}
.ya{bottom:767.283600px;}
.y3d{bottom:767.770350px;}
.y13d{bottom:767.785350px;}
.yb6{bottom:767.907600px;}
.y128{bottom:767.920350px;}
.y1e4{bottom:770.263500px;}
.ye8{bottom:773.851150px;}
.y1e3{bottom:785.263500px;}
.y3c{bottom:785.770350px;}
.y13c{bottom:785.785350px;}
.yb5{bottom:785.907600px;}
.y127{bottom:785.920350px;}
.y9{bottom:786.208950px;}
.yec{bottom:787.700700px;}
.ye9{bottom:787.991810px;}
.y1e2{bottom:800.263500px;}
.y1ab{bottom:803.515350px;}
.y3b{bottom:803.770350px;}
.y13b{bottom:803.785350px;}
.yb4{bottom:803.907600px;}
.y126{bottom:803.920350px;}
.yf0{bottom:807.925050px;}
.y8{bottom:814.930800px;}
.y1e1{bottom:815.263500px;}
.yd0{bottom:818.029200px;}
.y3a{bottom:821.770350px;}
.y13a{bottom:821.785350px;}
.yb3{bottom:821.907600px;}
.y125{bottom:821.920350px;}
.y1e0{bottom:830.263500px;}
.yd1{bottom:831.540240px;}
.y39{bottom:839.770350px;}
.y139{bottom:839.785350px;}
.yb2{bottom:839.907600px;}
.y124{bottom:839.920350px;}
.yd2{bottom:845.051280px;}
.y1df{bottom:845.263500px;}
.y38{bottom:857.770350px;}
.y138{bottom:857.785350px;}
.yb1{bottom:857.907600px;}
.y123{bottom:857.920350px;}
.yd3{bottom:858.562320px;}
.y1de{bottom:860.263500px;}
.y7{bottom:861.082800px;}
.yd4{bottom:872.073359px;}
.y1dd{bottom:875.263500px;}
.y37{bottom:875.770350px;}
.y137{bottom:875.785350px;}
.yb0{bottom:875.907600px;}
.y122{bottom:875.920350px;}
.yd5{bottom:885.594721px;}
.y1dc{bottom:890.263500px;}
.y36{bottom:893.770350px;}
.y136{bottom:893.785350px;}
.yaf{bottom:893.907600px;}
.y121{bottom:893.920350px;}
.y6{bottom:897.543600px;}
.yd6{bottom:899.095439px;}
.y1db{bottom:905.263500px;}
.ycf{bottom:910.917600px;}
.y35{bottom:911.770350px;}
.y135{bottom:911.785350px;}
.yae{bottom:911.907600px;}
.y120{bottom:911.920350px;}
.yee{bottom:912.313980px;}
.yd7{bottom:912.616801px;}
.y1da{bottom:920.263500px;}
.y34{bottom:929.770350px;}
.y134{bottom:929.785350px;}
.yad{bottom:929.907600px;}
.y11f{bottom:929.920350px;}
.yc8{bottom:931.271100px;}
.y5{bottom:934.004400px;}
.y1d9{bottom:935.263500px;}
.yc9{bottom:940.939800px;}
.y33{bottom:947.770350px;}
.y133{bottom:947.785350px;}
.yac{bottom:947.907600px;}
.y15d{bottom:947.920350px;}
.y1d8{bottom:950.263500px;}
.yca{bottom:958.951079px;}
.y1d7{bottom:965.263500px;}
.y11e{bottom:965.515350px;}
.y32{bottom:965.770350px;}
.y132{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.ycb{bottom:976.972680px;}
.y1d6{bottom:980.263500px;}
.yab{bottom:983.502600px;}
.y15c{bottom:983.515350px;}
.y31{bottom:983.770350px;}
.y131{bottom:983.785350px;}
.ycc{bottom:994.994281px;}
.y1d5{bottom:995.263500px;}
.yaa{bottom:1001.502600px;}
.y30{bottom:1001.770350px;}
.y130{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y1d4{bottom:1010.263500px;}
.ycd{bottom:1012.995239px;}
.y2f{bottom:1019.770350px;}
.y12f{bottom:1019.785350px;}
.y1d3{bottom:1025.263500px;}
.yce{bottom:1031.016840px;}
.yc7{bottom:1033.634700px;}
.yef{bottom:1034.460387px;}
.y67{bottom:1037.365350px;}
.ya9{bottom:1037.367600px;}
.y2e{bottom:1037.770350px;}
.y12e{bottom:1037.785350px;}
.y1d2{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1d1{bottom:1132.413900px;}
.y66{bottom:1132.418700px;}
.y212{bottom:1132.423500px;}
.ya8{bottom:1132.424100px;}
.y1aa{bottom:1132.500750px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:19.905977px;}
.h2c{height:21.668335px;}
.h15{height:24.499664px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.h25{height:30.904281px;}
.h24{height:31.661302px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h28{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h29{height:35.456750px;}
.h2f{height:35.497249px;}
.h2e{height:35.983242px;}
.h2d{height:36.023742px;}
.h19{height:36.145934px;}
.h1e{height:38.704111px;}
.h1d{height:38.748320px;}
.h22{height:39.921740px;}
.h23{height:39.967340px;}
.h11{height:41.689453px;}
.h13{height:42.023438px;}
.h2a{height:43.336670px;}
.h18{height:43.375016px;}
.h30{height:43.386170px;}
.h1b{height:43.424560px;}
.hc{height:43.681641px;}
.hb{height:43.710938px;}
.ha{height:43.740234px;}
.h14{height:46.951664px;}
.h1c{height:47.110064px;}
.h20{height:47.305784px;}
.h26{height:47.905668px;}
.h21{height:51.603731px;}
.he{height:52.529297px;}
.h31{height:54.149297px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h12{height:58.887580px;}
.h16{height:58.905580px;}
.h4{height:92.168262px;}
.h17{height:92.608837px;}
.h27{height:279.603000px;}
.h1f{height:346.306500px;}
.h2b{height:440.181000px;}
.h1a{height:516.639000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:208.117500px;}
.w4{width:433.708500px;}
.w5{width:468.748500px;}
.w3{width:500.824500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x56{left:5.142300px;}
.x1f{left:10.299000px;}
.x38{left:11.368950px;}
.xa{left:76.535400px;}
.x14{left:78.661350px;}
.x2f{left:89.329350px;}
.x5a{left:91.417350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x60{left:102.047250px;}
.x4{left:106.299300px;}
.xb{left:110.555400px;}
.x5d{left:123.307050px;}
.x3{left:125.427900px;}
.x6{left:131.816400px;}
.x5b{left:190.115400px;}
.x27{left:206.674500px;}
.x5{left:212.876400px;}
.x37{left:218.973000px;}
.x42{left:222.712500px;}
.x26{left:225.537900px;}
.x43{left:228.593100px;}
.x25{left:231.063975px;}
.x18{left:232.365300px;}
.x24{left:236.590050px;}
.x31{left:250.671600px;}
.x41{left:252.333000px;}
.x2a{left:256.497600px;}
.x30{left:257.942850px;}
.x16{left:260.389350px;}
.x17{left:262.374150px;}
.x23{left:272.327700px;}
.x4a{left:279.197016px;}
.x52{left:290.451000px;}
.x33{left:302.878817px;}
.x4f{left:304.964759px;}
.x15{left:306.925350px;}
.x40{left:316.738950px;}
.x47{left:325.153710px;}
.x53{left:333.192150px;}
.x32{left:349.766400px;}
.x46{left:354.505650px;}
.x4b{left:359.335203px;}
.x59{left:376.969350px;}
.x36{left:405.483900px;}
.x3f{left:430.689150px;}
.x45{left:434.705850px;}
.x9{left:455.041500px;}
.xc{left:457.070400px;}
.x55{left:476.523900px;}
.x11{left:478.342050px;}
.x7{left:480.476400px;}
.x2b{left:481.544250px;}
.x54{left:482.706000px;}
.x57{left:485.746800px;}
.x29{left:489.918423px;}
.xd{left:491.090400px;}
.x28{left:495.455550px;}
.x3e{left:502.812300px;}
.x5e{left:503.851050px;}
.x12{left:512.362050px;}
.x2c{left:516.696600px;}
.x2d{left:518.744862px;}
.xe{left:525.245400px;}
.x58{left:527.353350px;}
.x3a{left:529.156050px;}
.x51{left:530.247463px;}
.x2e{left:533.965950px;}
.x39{left:538.142400px;}
.x1e{left:543.303000px;}
.x3d{left:545.913900px;}
.x44{left:548.937300px;}
.x50{left:556.460700px;}
.x1c{left:569.125741px;}
.x1b{left:571.561650px;}
.x35{left:575.676890px;}
.x19{left:588.560400px;}
.x1a{left:594.608250px;}
.x3b{left:600.670350px;}
.x4c{left:610.451733px;}
.x48{left:617.306257px;}
.x4e{left:618.318742px;}
.x1d{left:622.541850px;}
.x34{left:631.102961px;}
.x4d{left:639.955546px;}
.x10{left:663.492300px;}
.x49{left:668.031755px;}
.x3c{left:681.335700px;}
.x2{left:693.365400px;}
.x20{left:713.567550px;}
.x22{left:716.777583px;}
.x21{left:717.974895px;}
.x5c{left:721.722600px;}
.xf{left:728.391600px;}
.x5f{left:743.882400px;}
.x13{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-17.269333pt;}
.v7{vertical-align:-10.324658pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.440000pt;}
.v5{vertical-align:19.957333pt;}
.v4{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.v6{vertical-align:44.964800pt;}
.ls63{letter-spacing:-6.026667pt;}
.ls37{letter-spacing:-5.760000pt;}
.ls55{letter-spacing:-5.653333pt;}
.ls72{letter-spacing:-5.546667pt;}
.ls56{letter-spacing:-5.226667pt;}
.ls58{letter-spacing:-2.346667pt;}
.lsa6{letter-spacing:-2.048000pt;}
.lsf{letter-spacing:-1.800533pt;}
.ls61{letter-spacing:-1.357870pt;}
.lse{letter-spacing:-1.125333pt;}
.lsd{letter-spacing:-0.693333pt;}
.lsa5{letter-spacing:-0.384000pt;}
.ls48{letter-spacing:-0.266667pt;}
.lsa4{letter-spacing:-0.256000pt;}
.ls6f{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.200000pt;}
.ls54{letter-spacing:-0.160000pt;}
.lsa3{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls5a{letter-spacing:-0.085333pt;}
.ls36{letter-spacing:-0.053333pt;}
.ls9c{letter-spacing:-0.042667pt;}
.ls12{letter-spacing:-0.040000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003147pt;}
.ls53{letter-spacing:0.031093pt;}
.ls7e{letter-spacing:0.042667pt;}
.ls15{letter-spacing:0.053333pt;}
.ls97{letter-spacing:0.085333pt;}
.ls2c{letter-spacing:0.106667pt;}
.ls90{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.160000pt;}
.ls99{letter-spacing:0.170667pt;}
.ls33{letter-spacing:0.213333pt;}
.ls59{letter-spacing:0.217653pt;}
.ls77{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.266667pt;}
.ls84{letter-spacing:0.298667pt;}
.lsb{letter-spacing:0.320000pt;}
.ls7f{letter-spacing:0.341333pt;}
.ls40{letter-spacing:0.359467pt;}
.ls17{letter-spacing:0.373333pt;}
.ls28{letter-spacing:0.426667pt;}
.ls7a{letter-spacing:0.469333pt;}
.ls2f{letter-spacing:0.480000pt;}
.ls88{letter-spacing:0.512000pt;}
.ls2a{letter-spacing:0.533333pt;}
.ls92{letter-spacing:0.554667pt;}
.ls9{letter-spacing:0.586667pt;}
.ls9d{letter-spacing:0.597333pt;}
.ls7{letter-spacing:0.640000pt;}
.ls82{letter-spacing:0.682667pt;}
.ls1a{letter-spacing:0.693333pt;}
.ls8a{letter-spacing:0.725333pt;}
.ls19{letter-spacing:0.746667pt;}
.lsa2{letter-spacing:0.768000pt;}
.ls4b{letter-spacing:0.800000pt;}
.ls8c{letter-spacing:0.810667pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls91{letter-spacing:0.896000pt;}
.ls52{letter-spacing:0.906667pt;}
.ls8d{letter-spacing:0.938667pt;}
.ls23{letter-spacing:0.960000pt;}
.ls62{letter-spacing:0.981333pt;}
.ls2{letter-spacing:1.013333pt;}
.ls8f{letter-spacing:1.024000pt;}
.ls41{letter-spacing:1.066667pt;}
.ls87{letter-spacing:1.109333pt;}
.ls21{letter-spacing:1.120000pt;}
.ls44{letter-spacing:1.149867pt;}
.ls81{letter-spacing:1.152000pt;}
.ls16{letter-spacing:1.173333pt;}
.ls7b{letter-spacing:1.194667pt;}
.ls18{letter-spacing:1.226667pt;}
.ls85{letter-spacing:1.237333pt;}
.ls2d{letter-spacing:1.280000pt;}
.ls94{letter-spacing:1.322667pt;}
.ls42{letter-spacing:1.326400pt;}
.ls6{letter-spacing:1.333333pt;}
.ls9a{letter-spacing:1.365333pt;}
.ls47{letter-spacing:1.384533pt;}
.ls3f{letter-spacing:1.386667pt;}
.ls98{letter-spacing:1.408000pt;}
.ls29{letter-spacing:1.440000pt;}
.ls80{letter-spacing:1.450667pt;}
.ls3{letter-spacing:1.493333pt;}
.ls3b{letter-spacing:1.546667pt;}
.ls86{letter-spacing:1.578667pt;}
.ls1f{letter-spacing:1.600000pt;}
.ls76{letter-spacing:1.621333pt;}
.ls13{letter-spacing:1.653333pt;}
.ls4d{letter-spacing:1.706667pt;}
.ls3c{letter-spacing:1.760000pt;}
.ls96{letter-spacing:1.792000pt;}
.ls20{letter-spacing:1.813333pt;}
.ls3e{letter-spacing:1.866667pt;}
.ls89{letter-spacing:1.877333pt;}
.ls5{letter-spacing:1.920000pt;}
.ls78{letter-spacing:1.962667pt;}
.ls1{letter-spacing:1.973333pt;}
.ls7d{letter-spacing:2.005333pt;}
.ls43{letter-spacing:2.026667pt;}
.lsa0{letter-spacing:2.048000pt;}
.ls1c{letter-spacing:2.080000pt;}
.ls8b{letter-spacing:2.090667pt;}
.ls50{letter-spacing:2.133333pt;}
.ls93{letter-spacing:2.176000pt;}
.ls25{letter-spacing:2.186667pt;}
.lsa1{letter-spacing:2.218667pt;}
.ls45{letter-spacing:2.240000pt;}
.ls83{letter-spacing:2.261333pt;}
.ls35{letter-spacing:2.293333pt;}
.ls46{letter-spacing:2.346667pt;}
.ls2e{letter-spacing:2.400000pt;}
.ls95{letter-spacing:2.432000pt;}
.ls8{letter-spacing:2.453333pt;}
.ls1e{letter-spacing:2.506667pt;}
.ls1b{letter-spacing:2.560000pt;}
.ls79{letter-spacing:2.602667pt;}
.ls3d{letter-spacing:2.613333pt;}
.ls8e{letter-spacing:2.645333pt;}
.ls49{letter-spacing:2.666667pt;}
.ls30{letter-spacing:2.720000pt;}
.ls4f{letter-spacing:2.773333pt;}
.ls9e{letter-spacing:2.816000pt;}
.ls32{letter-spacing:2.826667pt;}
.ls66{letter-spacing:2.880000pt;}
.ls31{letter-spacing:2.933333pt;}
.ls51{letter-spacing:2.986667pt;}
.ls27{letter-spacing:3.040000pt;}
.ls4a{letter-spacing:3.093333pt;}
.ls9f{letter-spacing:3.114667pt;}
.ls39{letter-spacing:3.200000pt;}
.ls2b{letter-spacing:3.253333pt;}
.lsa{letter-spacing:3.306667pt;}
.ls4e{letter-spacing:3.360000pt;}
.ls9b{letter-spacing:3.498667pt;}
.ls64{letter-spacing:3.626667pt;}
.ls7c{letter-spacing:3.712000pt;}
.ls4{letter-spacing:3.733333pt;}
.ls24{letter-spacing:3.786667pt;}
.ls22{letter-spacing:3.840000pt;}
.ls67{letter-spacing:3.893333pt;}
.ls65{letter-spacing:4.000000pt;}
.ls71{letter-spacing:4.106667pt;}
.ls73{letter-spacing:4.213333pt;}
.ls6e{letter-spacing:4.320000pt;}
.ls57{letter-spacing:4.480000pt;}
.ls70{letter-spacing:4.533333pt;}
.ls4c{letter-spacing:4.586667pt;}
.ls38{letter-spacing:4.693333pt;}
.ls3a{letter-spacing:4.853333pt;}
.ls75{letter-spacing:5.066667pt;}
.ls34{letter-spacing:5.333333pt;}
.ls74{letter-spacing:6.186667pt;}
.ls60{letter-spacing:14.664965pt;}
.ls6b{letter-spacing:23.003659pt;}
.ls5e{letter-spacing:25.946334pt;}
.ls5f{letter-spacing:26.019733pt;}
.ls5d{letter-spacing:27.377603pt;}
.ls5c{letter-spacing:35.781720pt;}
.ls5b{letter-spacing:44.295934pt;}
.ls69{letter-spacing:72.718923pt;}
.ls6a{letter-spacing:72.754922pt;}
.ls68{letter-spacing:74.014903pt;}
.ls6c{letter-spacing:109.006385pt;}
.ls6d{letter-spacing:112.750330pt;}
.ws6d{word-spacing:-118.006252pt;}
.ws74{word-spacing:-112.750330pt;}
.ws4d{word-spacing:-53.470734pt;}
.ws4e{word-spacing:-44.956520pt;}
.ws4f{word-spacing:-36.552403pt;}
.ws51{word-spacing:-35.194533pt;}
.ws50{word-spacing:-35.121134pt;}
.ws6a{word-spacing:-32.003526pt;}
.ws53{word-spacing:-25.674698pt;}
.ws8b{word-spacing:-16.586667pt;}
.ws80{word-spacing:-16.160000pt;}
.ws76{word-spacing:-15.840000pt;}
.ws81{word-spacing:-15.680000pt;}
.ws21{word-spacing:-15.360000pt;}
.wsa{word-spacing:-14.986667pt;}
.ws24{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws4b{word-spacing:-14.773333pt;}
.ws22{word-spacing:-14.560000pt;}
.ws20{word-spacing:-14.506667pt;}
.ws9b{word-spacing:-14.165333pt;}
.ws1f{word-spacing:-14.026667pt;}
.ws75{word-spacing:-13.973333pt;}
.ws1c{word-spacing:-13.813333pt;}
.ws1d{word-spacing:-13.760000pt;}
.ws23{word-spacing:-13.546667pt;}
.ws60{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.386667pt;}
.wsc{word-spacing:-13.333333pt;}
.ws1e{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.226667pt;}
.ws39{word-spacing:-13.173333pt;}
.ws95{word-spacing:-12.757333pt;}
.wsbe{word-spacing:-12.714667pt;}
.wsba{word-spacing:-12.672000pt;}
.ws99{word-spacing:-12.586667pt;}
.ws98{word-spacing:-12.458667pt;}
.wsb9{word-spacing:-12.117333pt;}
.ws9a{word-spacing:-12.074667pt;}
.ws97{word-spacing:-11.989333pt;}
.ws4{word-spacing:-11.861333pt;}
.ws92{word-spacing:-11.776000pt;}
.wsbd{word-spacing:-11.434667pt;}
.ws94{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.120000pt;}
.ws93{word-spacing:-11.008000pt;}
.ws90{word-spacing:-10.965333pt;}
.wsbc{word-spacing:-10.922667pt;}
.ws91{word-spacing:-10.666667pt;}
.ws96{word-spacing:-10.581333pt;}
.ws0{word-spacing:-9.076144pt;}
.ws6b{word-spacing:-8.999867pt;}
.wsbb{word-spacing:-8.618667pt;}
.ws4c{word-spacing:-7.990987pt;}
.ws54{word-spacing:-7.816930pt;}
.ws37{word-spacing:-7.804427pt;}
.ws38{word-spacing:-7.773333pt;}
.ws3d{word-spacing:-6.218667pt;}
.ws1{word-spacing:-5.052667pt;}
.ws7{word-spacing:-4.163733pt;}
.wsb8{word-spacing:-3.498667pt;}
.ws7f{word-spacing:-2.933333pt;}
.ws88{word-spacing:-2.720000pt;}
.ws6{word-spacing:-2.565333pt;}
.wsad{word-spacing:-2.346667pt;}
.ws33{word-spacing:-2.293333pt;}
.ws85{word-spacing:-2.080000pt;}
.ws2d{word-spacing:-2.026667pt;}
.wsca{word-spacing:-2.005333pt;}
.ws16{word-spacing:-1.973333pt;}
.wsb6{word-spacing:-1.920000pt;}
.wsc5{word-spacing:-1.877333pt;}
.ws34{word-spacing:-1.760000pt;}
.wsb3{word-spacing:-1.706667pt;}
.ws2e{word-spacing:-1.653333pt;}
.wsc8{word-spacing:-1.450667pt;}
.wscf{word-spacing:-1.408000pt;}
.ws29{word-spacing:-1.333333pt;}
.wsb5{word-spacing:-1.322667pt;}
.ws41{word-spacing:-1.280000pt;}
.ws2f{word-spacing:-1.226667pt;}
.ws9e{word-spacing:-1.194667pt;}
.ws2b{word-spacing:-1.173333pt;}
.wsaa{word-spacing:-1.109333pt;}
.ws28{word-spacing:-1.013333pt;}
.ws7a{word-spacing:-0.853333pt;}
.wsc9{word-spacing:-0.810667pt;}
.ws4a{word-spacing:-0.768000pt;}
.wsb0{word-spacing:-0.725333pt;}
.wsa4{word-spacing:-0.682667pt;}
.wsbf{word-spacing:-0.554667pt;}
.wsaf{word-spacing:-0.469333pt;}
.ws2c{word-spacing:-0.426667pt;}
.wsa3{word-spacing:-0.341333pt;}
.ws19{word-spacing:-0.320000pt;}
.wsa9{word-spacing:-0.298667pt;}
.ws25{word-spacing:-0.266667pt;}
.wsa8{word-spacing:-0.256000pt;}
.ws27{word-spacing:-0.213333pt;}
.wscb{word-spacing:-0.170667pt;}
.ws86{word-spacing:-0.160000pt;}
.ws15{word-spacing:-0.106667pt;}
.ws43{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.wsa5{word-spacing:0.042667pt;}
.ws5c{word-spacing:0.053333pt;}
.ws31{word-spacing:0.106667pt;}
.wsc3{word-spacing:0.128000pt;}
.ws5d{word-spacing:0.160000pt;}
.ws5f{word-spacing:0.170667pt;}
.wsb2{word-spacing:0.213333pt;}
.ws26{word-spacing:0.320000pt;}
.wsc2{word-spacing:0.384000pt;}
.ws12{word-spacing:0.426667pt;}
.ws64{word-spacing:0.480000pt;}
.wsb7{word-spacing:0.512000pt;}
.ws83{word-spacing:0.586667pt;}
.wse{word-spacing:0.640000pt;}
.wsb1{word-spacing:0.725333pt;}
.wsf{word-spacing:0.746667pt;}
.ws13{word-spacing:0.800000pt;}
.wsab{word-spacing:0.810667pt;}
.ws73{word-spacing:0.853333pt;}
.wsce{word-spacing:0.896000pt;}
.ws8d{word-spacing:0.906667pt;}
.ws32{word-spacing:1.013333pt;}
.ws42{word-spacing:1.066667pt;}
.ws79{word-spacing:1.120000pt;}
.ws9d{word-spacing:1.152000pt;}
.ws7d{word-spacing:1.226667pt;}
.wsac{word-spacing:1.237333pt;}
.ws2a{word-spacing:1.280000pt;}
.wsc4{word-spacing:1.322667pt;}
.ws3f{word-spacing:1.386667pt;}
.wsa0{word-spacing:1.408000pt;}
.ws84{word-spacing:1.440000pt;}
.wsd0{word-spacing:1.493333pt;}
.ws7b{word-spacing:1.600000pt;}
.wscd{word-spacing:1.749333pt;}
.ws89{word-spacing:1.760000pt;}
.wsa1{word-spacing:1.792000pt;}
.ws9f{word-spacing:1.834667pt;}
.ws7c{word-spacing:1.866667pt;}
.wscc{word-spacing:2.005333pt;}
.wsc1{word-spacing:2.090667pt;}
.ws77{word-spacing:2.240000pt;}
.wsa7{word-spacing:2.261333pt;}
.ws44{word-spacing:2.293333pt;}
.ws5e{word-spacing:2.346667pt;}
.ws14{word-spacing:2.400000pt;}
.wsa6{word-spacing:2.432000pt;}
.wsb4{word-spacing:2.517333pt;}
.ws35{word-spacing:2.560000pt;}
.ws18{word-spacing:2.613333pt;}
.ws36{word-spacing:2.666667pt;}
.ws8c{word-spacing:2.773333pt;}
.wsae{word-spacing:2.858667pt;}
.wsc0{word-spacing:2.944000pt;}
.ws1a{word-spacing:2.986667pt;}
.ws9c{word-spacing:3.029333pt;}
.ws71{word-spacing:3.040000pt;}
.ws8a{word-spacing:3.093333pt;}
.ws17{word-spacing:3.146667pt;}
.wsa2{word-spacing:3.157333pt;}
.ws65{word-spacing:3.200000pt;}
.ws3e{word-spacing:3.253333pt;}
.ws10{word-spacing:3.360000pt;}
.ws66{word-spacing:3.413333pt;}
.ws67{word-spacing:3.498667pt;}
.ws8f{word-spacing:3.541333pt;}
.wsc6{word-spacing:3.626667pt;}
.ws49{word-spacing:3.680000pt;}
.ws1b{word-spacing:3.733333pt;}
.ws30{word-spacing:3.786667pt;}
.ws40{word-spacing:3.840000pt;}
.ws46{word-spacing:3.946667pt;}
.ws68{word-spacing:4.000000pt;}
.ws82{word-spacing:4.053333pt;}
.ws45{word-spacing:4.106667pt;}
.ws72{word-spacing:4.160000pt;}
.ws7e{word-spacing:4.266667pt;}
.ws9{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws8e{word-spacing:4.906667pt;}
.ws48{word-spacing:5.226667pt;}
.ws87{word-spacing:5.546667pt;}
.ws47{word-spacing:5.653333pt;}
.wsc7{word-spacing:5.674667pt;}
.ws11{word-spacing:5.760000pt;}
.ws63{word-spacing:5.973333pt;}
.ws62{word-spacing:6.026667pt;}
.ws78{word-spacing:11.306667pt;}
.ws70{word-spacing:14.039792pt;}
.ws52{word-spacing:23.571011pt;}
.ws58{word-spacing:24.010182pt;}
.ws55{word-spacing:24.049478pt;}
.ws56{word-spacing:27.900539pt;}
.ws59{word-spacing:27.979132pt;}
.ws5a{word-spacing:28.765062pt;}
.ws5b{word-spacing:28.804359pt;}
.ws57{word-spacing:28.843655pt;}
.ws6c{word-spacing:45.719323pt;}
.ws3c{word-spacing:86.698667pt;}
.ws3a{word-spacing:140.458667pt;}
.ws6f{word-spacing:147.957808pt;}
.ws69{word-spacing:149.028000pt;}
.ws61{word-spacing:195.712000pt;}
.ws3b{word-spacing:328.738539pt;}
.ws6e{word-spacing:763.512689pt;}
._c{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._21{margin-left:-938.935863pt;}
._3d{margin-left:-531.193545pt;}
._37{margin-left:-358.028000pt;}
._3c{margin-left:-209.228900pt;}
._34{margin-left:-105.351930pt;}
._1e{margin-left:-103.931883pt;}
._36{margin-left:-97.229228pt;}
._20{margin-left:-81.956455pt;}
._3a{margin-left:-46.979304pt;}
._1a{margin-left:-37.066192pt;}
._30{margin-left:-30.399600pt;}
._1b{margin-left:-27.377603pt;}
._1c{margin-left:-25.946334pt;}
._39{margin-left:-23.039659pt;}
._1f{margin-left:-14.664965pt;}
._9{margin-left:-7.200000pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._6{margin-left:-3.840000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.906667pt;}
._7{width:0.906667pt;}
._a{width:1.866667pt;}
._b{width:2.880000pt;}
._3{width:4.163733pt;}
._8{width:5.493333pt;}
._d{width:6.426667pt;}
._1d{width:14.664965pt;}
._38{width:18.260000pt;}
._10{width:30.634667pt;}
._f{width:47.274667pt;}
._4{width:52.907403pt;}
._3b{width:59.903113pt;}
._35{width:97.229228pt;}
._33{width:105.351930pt;}
._19{width:133.315733pt;}
._53{width:136.405333pt;}
._12{width:151.125333pt;}
._4e{width:172.970667pt;}
._26{width:176.128000pt;}
._13{width:182.960000pt;}
._29{width:206.378667pt;}
._45{width:210.304000pt;}
._41{width:212.608000pt;}
._43{width:224.128000pt;}
._11{width:227.669333pt;}
._2c{width:233.130667pt;}
._52{width:234.794667pt;}
._2a{width:243.712000pt;}
._4a{width:245.461333pt;}
._4b{width:256.128000pt;}
._25{width:258.944000pt;}
._40{width:260.437333pt;}
._24{width:266.837333pt;}
._23{width:281.045333pt;}
._4d{width:295.040000pt;}
._3f{width:296.448000pt;}
._55{width:322.858667pt;}
._47{width:333.525333pt;}
._3e{width:340.266959pt;}
._15{width:347.306667pt;}
._50{width:356.650667pt;}
._14{width:357.888000pt;}
._18{width:379.349333pt;}
._16{width:438.528000pt;}
._28{width:494.165333pt;}
._17{width:516.442667pt;}
._2d{width:538.112000pt;}
._54{width:598.784000pt;}
._48{width:609.450667pt;}
._51{width:632.576000pt;}
._42{width:707.712000pt;}
._44{width:711.296000pt;}
._56{width:718.421333pt;}
._32{width:781.837179pt;}
._4c{width:796.032000pt;}
._46{width:823.978667pt;}
._2b{width:827.264000pt;}
._4f{width:847.104000pt;}
._57{width:896.256000pt;}
._58{width:898.560000pt;}
._27{width:930.218667pt;}
._22{width:1007.493333pt;}
._49{width:1115.904000pt;}
._31{width:1298.995174pt;}
._2f{width:1784.149333pt;}
._2e{width:1958.314667pt;}
.fs7{font-size:20.210667pt;}
.fs16{font-size:22.000000pt;}
.fs5{font-size:23.320000pt;}
.fsc{font-size:24.874667pt;}
.fsb{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs8{font-size:34.666667pt;}
.fs14{font-size:35.999467pt;}
.fse{font-size:36.699200pt;}
.fs0{font-size:37.333333pt;}
.fsf{font-size:39.296533pt;}
.fs6{font-size:40.000000pt;}
.fs12{font-size:40.532800pt;}
.fsa{font-size:42.666667pt;}
.fs15{font-size:44.000000pt;}
.fsd{font-size:44.038933pt;}
.fs10{font-size:48.029867pt;}
.fs13{font-size:48.638933pt;}
.fs11{font-size:52.393600pt;}
.fs9{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y116{bottom:35.930267pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.y18d{bottom:51.436800pt;}
.yf4{bottom:73.620000pt;}
.y164{bottom:73.903467pt;}
.y1c6{bottom:74.342533pt;}
.y63{bottom:74.462533pt;}
.y83{bottom:74.588533pt;}
.y1b8{bottom:74.721867pt;}
.y22{bottom:78.245067pt;}
.ya7{bottom:78.951733pt;}
.y1a9{bottom:80.288667pt;}
.y1d0{bottom:81.886133pt;}
.y14e{bottom:82.247867pt;}
.y211{bottom:84.678667pt;}
.yf3{bottom:87.614667pt;}
.y163{bottom:87.898133pt;}
.y1c5{bottom:90.342533pt;}
.y62{bottom:90.462533pt;}
.y82{bottom:90.588533pt;}
.y96{bottom:90.595867pt;}
.y1b7{bottom:90.721867pt;}
.y21{bottom:91.576000pt;}
.y1a8{bottom:94.731333pt;}
.y1cf{bottom:95.219467pt;}
.ya6{bottom:96.595867pt;}
.y14d{bottom:96.690533pt;}
.y210{bottom:98.012000pt;}
.y159{bottom:99.702667pt;}
.y1c4{bottom:106.342533pt;}
.y61{bottom:106.462533pt;}
.y81{bottom:106.588533pt;}
.y95{bottom:106.595867pt;}
.y1b6{bottom:106.721867pt;}
.yfe{bottom:108.189333pt;}
.y1ce{bottom:108.552800pt;}
.y16b{bottom:108.566667pt;}
.y1a7{bottom:109.174000pt;}
.y14c{bottom:111.133200pt;}
.y11c{bottom:111.244267pt;}
.y20f{bottom:111.345333pt;}
.y16e{bottom:111.940533pt;}
.ya5{bottom:116.713200pt;}
.y1c3{bottom:122.342533pt;}
.y60{bottom:122.462533pt;}
.y80{bottom:122.588533pt;}
.y94{bottom:122.595867pt;}
.y1b5{bottom:122.721867pt;}
.y170{bottom:122.729467pt;}
.y1a6{bottom:123.616667pt;}
.y107{bottom:123.780267pt;}
.y100{bottom:124.070400pt;}
.y20e{bottom:124.678667pt;}
.y14b{bottom:125.575867pt;}
.ya4{bottom:136.865733pt;}
.y1cd{bottom:137.982533pt;}
.y20d{bottom:138.012000pt;}
.y1a5{bottom:138.059333pt;}
.y1c2{bottom:138.342533pt;}
.y5f{bottom:138.462533pt;}
.y7f{bottom:138.588533pt;}
.y93{bottom:138.595867pt;}
.y14a{bottom:140.018533pt;}
.y28{bottom:142.181067pt;}
.y108{bottom:142.426472pt;}
.y101{bottom:142.716605pt;}
.ya3{bottom:151.308400pt;}
.y20c{bottom:151.345333pt;}
.y1a4{bottom:152.502000pt;}
.y188{bottom:153.903908pt;}
.y184{bottom:154.174800pt;}
.y1c1{bottom:154.342533pt;}
.y1b4{bottom:154.361867pt;}
.y149{bottom:154.461200pt;}
.y5e{bottom:154.462533pt;}
.y7e{bottom:154.588533pt;}
.y92{bottom:154.595867pt;}
.y27{bottom:158.181067pt;}
.y21b{bottom:159.923867pt;}
.y18f{bottom:160.002400pt;}
.y109{bottom:161.072677pt;}
.y102{bottom:161.362810pt;}
.y20b{bottom:164.678667pt;}
.y175{bottom:164.953287pt;}
.ya2{bottom:165.751067pt;}
.y1a3{bottom:166.944667pt;}
.y148{bottom:168.903867pt;}
.y18e{bottom:169.968267pt;}
.y1c0{bottom:170.342533pt;}
.y5d{bottom:170.462533pt;}
.y7d{bottom:170.588533pt;}
.y91{bottom:170.595867pt;}
.y17a{bottom:170.857199pt;}
.y26{bottom:174.181067pt;}
.y21a{bottom:175.923867pt;}
.y20a{bottom:178.012000pt;}
.y10a{bottom:179.718882pt;}
.y103{bottom:180.009015pt;}
.ya1{bottom:180.193733pt;}
.y1a2{bottom:181.387333pt;}
.y1bf{bottom:186.342533pt;}
.y5c{bottom:186.462533pt;}
.y7c{bottom:186.588533pt;}
.y90{bottom:186.595867pt;}
.y25{bottom:190.181067pt;}
.y209{bottom:191.345333pt;}
.yeb{bottom:191.782000pt;}
.y219{bottom:191.923867pt;}
.ya0{bottom:194.636400pt;}
.y1a1{bottom:195.830000pt;}
.y147{bottom:196.914533pt;}
.y10b{bottom:198.365087pt;}
.y104{bottom:198.655220pt;}
.y187{bottom:200.748210pt;}
.y1cc{bottom:202.102533pt;}
.yff{bottom:202.209333pt;}
.y1be{bottom:202.342533pt;}
.y5b{bottom:202.462533pt;}
.y7b{bottom:202.588533pt;}
.y8f{bottom:202.595867pt;}
.y208{bottom:204.678667pt;}
.y24{bottom:206.181067pt;}
.y177{bottom:206.640669pt;}
.y218{bottom:207.923867pt;}
.y9f{bottom:209.079067pt;}
.y1a0{bottom:210.272667pt;}
.y10c{bottom:217.011292pt;}
.y105{bottom:217.301425pt;}
.y207{bottom:218.012000pt;}
.y1bd{bottom:218.342533pt;}
.y5a{bottom:218.462533pt;}
.y7a{bottom:218.588533pt;}
.y8e{bottom:218.595867pt;}
.y2a{bottom:222.181067pt;}
.y9e{bottom:223.521733pt;}
.y19f{bottom:224.715333pt;}
.y146{bottom:227.932400pt;}
.y206{bottom:231.345333pt;}
.y1cb{bottom:234.102533pt;}
.y1bc{bottom:234.342533pt;}
.y59{bottom:234.462533pt;}
.y79{bottom:234.588533pt;}
.y8d{bottom:234.595867pt;}
.y118{bottom:235.525813pt;}
.y10d{bottom:235.657497pt;}
.y106{bottom:235.947630pt;}
.y11b{bottom:236.295192pt;}
.y178{bottom:237.330215pt;}
.y23{bottom:237.821067pt;}
.y9d{bottom:237.964400pt;}
.y29{bottom:238.181067pt;}
.y19e{bottom:239.158000pt;}
.y217{bottom:239.923867pt;}
.y205{bottom:244.678667pt;}
.y185{bottom:245.262451pt;}
.y145{bottom:245.265733pt;}
.y186{bottom:247.394523pt;}
.y1bb{bottom:250.342533pt;}
.y16c{bottom:250.421200pt;}
.y58{bottom:250.462533pt;}
.y78{bottom:250.588533pt;}
.y8c{bottom:250.595867pt;}
.y19d{bottom:253.600667pt;}
.y216{bottom:255.923867pt;}
.y204{bottom:258.012000pt;}
.y9c{bottom:263.745733pt;}
.y1ba{bottom:266.342533pt;}
.y57{bottom:266.462533pt;}
.y77{bottom:266.588533pt;}
.y8b{bottom:266.595867pt;}
.y19c{bottom:268.043333pt;}
.yf5{bottom:268.355600pt;}
.y11d{bottom:268.952533pt;}
.y203{bottom:271.345333pt;}
.y215{bottom:271.923867pt;}
.y9a{bottom:276.631067pt;}
.y190{bottom:278.533867pt;}
.y179{bottom:280.079581pt;}
.y10e{bottom:281.744667pt;}
.yf6{bottom:281.846933pt;}
.y56{bottom:282.462533pt;}
.y19b{bottom:282.486000pt;}
.y76{bottom:282.588533pt;}
.y8a{bottom:282.595867pt;}
.y202{bottom:284.678667pt;}
.y176{bottom:285.038508pt;}
.y144{bottom:285.840533pt;}
.y214{bottom:287.923867pt;}
.y9b{bottom:289.527067pt;}
.y16f{bottom:291.087733pt;}
.y19a{bottom:296.928667pt;}
.y1b9{bottom:297.982533pt;}
.y201{bottom:298.012000pt;}
.y1ca{bottom:298.102533pt;}
.y10f{bottom:298.327804pt;}
.yf7{bottom:298.430070pt;}
.y55{bottom:298.462533pt;}
.y75{bottom:298.588533pt;}
.y89{bottom:298.595867pt;}
.y143{bottom:299.835200pt;}
.y20{bottom:303.923733pt;}
.y169{bottom:309.503067pt;}
.y166{bottom:309.526400pt;}
.y200{bottom:311.345333pt;}
.y199{bottom:311.371333pt;}
.y119{bottom:313.212933pt;}
.y54{bottom:314.462533pt;}
.y74{bottom:314.588533pt;}
.y88{bottom:314.595867pt;}
.y110{bottom:314.910941pt;}
.yf8{bottom:315.013207pt;}
.y99{bottom:318.329200pt;}
.y213{bottom:319.563867pt;}
.y165{bottom:320.112400pt;}
.y180{bottom:320.229398pt;}
.y17b{bottom:320.668980pt;}
.y168{bottom:320.674933pt;}
.y17c{bottom:320.794978pt;}
.y158{bottom:322.582667pt;}
.y1ff{bottom:324.678667pt;}
.y198{bottom:325.814000pt;}
.y157{bottom:326.311733pt;}
.y1f{bottom:328.230400pt;}
.y53{bottom:330.462533pt;}
.y73{bottom:330.588533pt;}
.y87{bottom:330.595867pt;}
.y111{bottom:331.474430pt;}
.yf9{bottom:331.566872pt;}
.y98{bottom:335.662533pt;}
.y1fe{bottom:338.012000pt;}
.y14f{bottom:338.036400pt;}
.y197{bottom:340.256667pt;}
.y1e{bottom:344.230400pt;}
.y1c9{bottom:346.102533pt;}
.y52{bottom:346.462533pt;}
.y72{bottom:346.588533pt;}
.y86{bottom:346.595867pt;}
.y183{bottom:347.214823pt;}
.y112{bottom:348.057567pt;}
.yfa{bottom:348.150009pt;}
.y1fd{bottom:351.345333pt;}
.y150{bottom:352.008400pt;}
.y97{bottom:352.995867pt;}
.y196{bottom:354.699333pt;}
.y18b{bottom:358.986933pt;}
.y1d{bottom:360.230400pt;}
.y51{bottom:362.462533pt;}
.y71{bottom:362.588533pt;}
.y85{bottom:362.595867pt;}
.y15a{bottom:364.169200pt;}
.y113{bottom:364.650528pt;}
.y1fc{bottom:364.678667pt;}
.yfb{bottom:364.733146pt;}
.y172{bottom:368.782267pt;}
.y18a{bottom:375.386186pt;}
.y1c{bottom:376.230400pt;}
.y1fb{bottom:378.012000pt;}
.y50{bottom:378.462533pt;}
.y70{bottom:378.588533pt;}
.y1b3{bottom:378.595867pt;}
.y195{bottom:380.480667pt;}
.y114{bottom:381.204193pt;}
.yfc{bottom:381.286811pt;}
.y17f{bottom:383.451308pt;}
.y1fa{bottom:391.345333pt;}
.y1b{bottom:392.230400pt;}
.y193{bottom:393.366000pt;}
.y174{bottom:393.495901pt;}
.y84{bottom:394.235867pt;}
.y182{bottom:394.427227pt;}
.y4f{bottom:394.462533pt;}
.y6f{bottom:394.588533pt;}
.y1b2{bottom:394.595867pt;}
.y117{bottom:396.361067pt;}
.y115{bottom:397.777505pt;}
.yfd{bottom:397.869948pt;}
.y11a{bottom:398.322400pt;}
.y1f9{bottom:404.678667pt;}
.y194{bottom:406.262000pt;}
.y1a{bottom:408.230400pt;}
.y4e{bottom:410.462533pt;}
.y6e{bottom:410.588533pt;}
.y1b1{bottom:410.595867pt;}
.y1f8{bottom:418.012000pt;}
.y17e{bottom:418.775790pt;}
.y189{bottom:419.440533pt;}
.y151{bottom:420.298400pt;}
.y19{bottom:424.230400pt;}
.y4d{bottom:426.462533pt;}
.y6d{bottom:426.588533pt;}
.y1b0{bottom:426.595867pt;}
.y1f7{bottom:431.345333pt;}
.y192{bottom:435.049200pt;}
.yc6{bottom:439.835067pt;}
.y18{bottom:440.230400pt;}
.y181{bottom:441.298533pt;}
.y1c8{bottom:442.102533pt;}
.y4c{bottom:442.462533pt;}
.yc5{bottom:442.588533pt;}
.y6c{bottom:442.595867pt;}
.y1f6{bottom:444.678667pt;}
.y153{bottom:450.270933pt;}
.y191{bottom:452.382533pt;}
.y17d{bottom:453.776267pt;}
.y17{bottom:456.230400pt;}
.y1f5{bottom:458.012000pt;}
.y4b{bottom:458.462533pt;}
.yc4{bottom:458.588533pt;}
.y6b{bottom:458.595867pt;}
.y1f4{bottom:471.345333pt;}
.y16{bottom:472.230400pt;}
.y171{bottom:472.307733pt;}
.y173{bottom:474.215705pt;}
.yea{bottom:474.309333pt;}
.y4a{bottom:474.462533pt;}
.yc3{bottom:474.588533pt;}
.y6a{bottom:474.595867pt;}
.y18c{bottom:477.518400pt;}
.y16d{bottom:477.519333pt;}
.yd9{bottom:477.685467pt;}
.y1f3{bottom:484.678667pt;}
.y167{bottom:486.337733pt;}
.y155{bottom:487.723241pt;}
.y15{bottom:488.230400pt;}
.y16a{bottom:489.034133pt;}
.y65{bottom:490.102533pt;}
.y49{bottom:490.462533pt;}
.yc2{bottom:490.588533pt;}
.y69{bottom:490.595867pt;}
.yf2{bottom:491.345369pt;}
.y1f2{bottom:498.012000pt;}
.y156{bottom:500.480939pt;}
.yda{bottom:501.174800pt;}
.y154{bottom:503.814762pt;}
.y14{bottom:504.230400pt;}
.y48{bottom:506.462533pt;}
.yc1{bottom:506.588533pt;}
.y1af{bottom:506.595867pt;}
.y1f1{bottom:511.345333pt;}
.ydb{bottom:513.973646pt;}
.y13{bottom:520.230400pt;}
.y64{bottom:521.982533pt;}
.y68{bottom:522.235867pt;}
.y47{bottom:522.462533pt;}
.yc0{bottom:522.588533pt;}
.y162{bottom:522.595867pt;}
.y1f0{bottom:524.678667pt;}
.ydc{bottom:526.781667pt;}
.y152{bottom:529.767360pt;}
.y15b{bottom:533.095067pt;}
.y12{bottom:536.230400pt;}
.y1ef{bottom:538.012000pt;}
.y46{bottom:538.462533pt;}
.ybf{bottom:538.588533pt;}
.y161{bottom:538.595867pt;}
.ydd{bottom:539.608037pt;}
.y1ee{bottom:551.345333pt;}
.y11{bottom:552.230400pt;}
.yde{bottom:552.406883pt;}
.y45{bottom:554.462533pt;}
.ybe{bottom:554.588533pt;}
.y1ae{bottom:554.595867pt;}
.y1ed{bottom:564.678667pt;}
.ydf{bottom:565.205729pt;}
.y10{bottom:568.230400pt;}
.y160{bottom:570.235867pt;}
.y44{bottom:570.462533pt;}
.ybd{bottom:570.584533pt;}
.y1ad{bottom:570.595867pt;}
.y1ec{bottom:578.012000pt;}
.ye0{bottom:578.032100pt;}
.yd8{bottom:583.498667pt;}
.yed{bottom:586.007189pt;}
.y15f{bottom:586.235867pt;}
.y43{bottom:586.462533pt;}
.ybc{bottom:586.584533pt;}
.y1ac{bottom:586.595867pt;}
.ye1{bottom:590.830946pt;}
.y1eb{bottom:591.345333pt;}
.yf1{bottom:602.176953pt;}
.y42{bottom:602.462533pt;}
.y142{bottom:602.475867pt;}
.ybb{bottom:602.584533pt;}
.y12d{bottom:602.595867pt;}
.y1ea{bottom:604.678667pt;}
.yf{bottom:608.370933pt;}
.ye2{bottom:612.414133pt;}
.y1e9{bottom:618.012000pt;}
.y1c7{bottom:618.102533pt;}
.y15e{bottom:618.115867pt;}
.y41{bottom:618.462533pt;}
.y141{bottom:618.475867pt;}
.yba{bottom:618.584533pt;}
.y12c{bottom:618.595867pt;}
.ye{bottom:619.438267pt;}
.ye3{bottom:624.983609pt;}
.y1e8{bottom:631.345333pt;}
.yd{bottom:634.155600pt;}
.y40{bottom:634.462533pt;}
.y140{bottom:634.475867pt;}
.yb9{bottom:634.584533pt;}
.y12b{bottom:634.595867pt;}
.ye4{bottom:637.553085pt;}
.y1e7{bottom:644.678667pt;}
.ye5{bottom:650.122561pt;}
.y3f{bottom:650.462533pt;}
.y13f{bottom:650.475867pt;}
.yb8{bottom:650.584533pt;}
.y12a{bottom:650.595867pt;}
.y1e6{bottom:658.012000pt;}
.ye6{bottom:662.710387pt;}
.yc{bottom:662.852400pt;}
.y3e{bottom:666.462533pt;}
.y13e{bottom:666.475867pt;}
.yb7{bottom:666.584533pt;}
.y129{bottom:666.595867pt;}
.yb{bottom:670.029867pt;}
.y1e5{bottom:671.345333pt;}
.ye7{bottom:675.279863pt;}
.ya{bottom:682.029867pt;}
.y3d{bottom:682.462533pt;}
.y13d{bottom:682.475867pt;}
.yb6{bottom:682.584533pt;}
.y128{bottom:682.595867pt;}
.y1e4{bottom:684.678667pt;}
.ye8{bottom:687.867689pt;}
.y1e3{bottom:698.012000pt;}
.y3c{bottom:698.462533pt;}
.y13c{bottom:698.475867pt;}
.yb5{bottom:698.584533pt;}
.y127{bottom:698.595867pt;}
.y9{bottom:698.852400pt;}
.yec{bottom:700.178400pt;}
.ye9{bottom:700.437165pt;}
.y1e2{bottom:711.345333pt;}
.y1ab{bottom:714.235867pt;}
.y3b{bottom:714.462533pt;}
.y13b{bottom:714.475867pt;}
.yb4{bottom:714.584533pt;}
.y126{bottom:714.595867pt;}
.yf0{bottom:718.155600pt;}
.y8{bottom:724.382933pt;}
.y1e1{bottom:724.678667pt;}
.yd0{bottom:727.137067pt;}
.y3a{bottom:730.462533pt;}
.y13a{bottom:730.475867pt;}
.yb3{bottom:730.584533pt;}
.y125{bottom:730.595867pt;}
.y1e0{bottom:738.012000pt;}
.yd1{bottom:739.146880pt;}
.y39{bottom:746.462533pt;}
.y139{bottom:746.475867pt;}
.yb2{bottom:746.584533pt;}
.y124{bottom:746.595867pt;}
.yd2{bottom:751.156693pt;}
.y1df{bottom:751.345333pt;}
.y38{bottom:762.462533pt;}
.y138{bottom:762.475867pt;}
.yb1{bottom:762.584533pt;}
.y123{bottom:762.595867pt;}
.yd3{bottom:763.166506pt;}
.y1de{bottom:764.678667pt;}
.y7{bottom:765.406933pt;}
.yd4{bottom:775.176319pt;}
.y1dd{bottom:778.012000pt;}
.y37{bottom:778.462533pt;}
.y137{bottom:778.475867pt;}
.yb0{bottom:778.584533pt;}
.y122{bottom:778.595867pt;}
.yd5{bottom:787.195307pt;}
.y1dc{bottom:791.345333pt;}
.y36{bottom:794.462533pt;}
.y136{bottom:794.475867pt;}
.yaf{bottom:794.584533pt;}
.y121{bottom:794.595867pt;}
.y6{bottom:797.816533pt;}
.yd6{bottom:799.195946pt;}
.y1db{bottom:804.678667pt;}
.ycf{bottom:809.704533pt;}
.y35{bottom:810.462533pt;}
.y135{bottom:810.475867pt;}
.yae{bottom:810.584533pt;}
.y120{bottom:810.595867pt;}
.yee{bottom:810.945760pt;}
.yd7{bottom:811.214934pt;}
.y1da{bottom:818.012000pt;}
.y34{bottom:826.462533pt;}
.y134{bottom:826.475867pt;}
.yad{bottom:826.584533pt;}
.y11f{bottom:826.595867pt;}
.yc8{bottom:827.796533pt;}
.y5{bottom:830.226133pt;}
.y1d9{bottom:831.345333pt;}
.yc9{bottom:836.390933pt;}
.y33{bottom:842.462533pt;}
.y133{bottom:842.475867pt;}
.yac{bottom:842.584533pt;}
.y15d{bottom:842.595867pt;}
.y1d8{bottom:844.678667pt;}
.yca{bottom:852.400959pt;}
.y1d7{bottom:858.012000pt;}
.y11e{bottom:858.235867pt;}
.y32{bottom:858.462533pt;}
.y132{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.ycb{bottom:868.420160pt;}
.y1d6{bottom:871.345333pt;}
.yab{bottom:874.224533pt;}
.y15c{bottom:874.235867pt;}
.y31{bottom:874.462533pt;}
.y131{bottom:874.475867pt;}
.ycc{bottom:884.439361pt;}
.y1d5{bottom:884.678667pt;}
.yaa{bottom:890.224533pt;}
.y30{bottom:890.462533pt;}
.y130{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y1d4{bottom:898.012000pt;}
.ycd{bottom:900.440212pt;}
.y2f{bottom:906.462533pt;}
.y12f{bottom:906.475867pt;}
.y1d3{bottom:911.345333pt;}
.yce{bottom:916.459413pt;}
.yc7{bottom:918.786400pt;}
.yef{bottom:919.520344pt;}
.y67{bottom:922.102533pt;}
.ya9{bottom:922.104533pt;}
.y2e{bottom:922.462533pt;}
.y12e{bottom:922.475867pt;}
.y1d2{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1d1{bottom:1006.590133pt;}
.y66{bottom:1006.594400pt;}
.y212{bottom:1006.598667pt;}
.ya8{bottom:1006.599200pt;}
.y1aa{bottom:1006.667333pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:17.694202pt;}
.h2c{height:19.260742pt;}
.h15{height:21.777479pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.h25{height:27.470472pt;}
.h24{height:28.143380pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h28{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h29{height:31.517111pt;}
.h2f{height:31.553111pt;}
.h2e{height:31.985104pt;}
.h2d{height:32.021104pt;}
.h19{height:32.129720pt;}
.h1e{height:34.403654pt;}
.h1d{height:34.442951pt;}
.h22{height:35.485991pt;}
.h23{height:35.526524pt;}
.h11{height:37.057292pt;}
.h13{height:37.354167pt;}
.h2a{height:38.521484pt;}
.h18{height:38.555570pt;}
.h30{height:38.565484pt;}
.h1b{height:38.599609pt;}
.hc{height:38.828125pt;}
.hb{height:38.854167pt;}
.ha{height:38.880208pt;}
.h14{height:41.734812pt;}
.h1c{height:41.875612pt;}
.h20{height:42.049585pt;}
.h26{height:42.582816pt;}
.h21{height:45.869983pt;}
.he{height:46.692708pt;}
.h31{height:48.132708pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h12{height:52.344516pt;}
.h16{height:52.360516pt;}
.h4{height:81.927344pt;}
.h17{height:82.318967pt;}
.h27{height:248.536000pt;}
.h1f{height:307.828000pt;}
.h2b{height:391.272000pt;}
.h1a{height:459.234667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:184.993333pt;}
.w4{width:385.518667pt;}
.w5{width:416.665333pt;}
.w3{width:445.177333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x56{left:4.570933pt;}
.x1f{left:9.154667pt;}
.x38{left:10.105733pt;}
.xa{left:68.031467pt;}
.x14{left:69.921200pt;}
.x2f{left:79.403867pt;}
.x5a{left:81.259867pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x60{left:90.708667pt;}
.x4{left:94.488267pt;}
.xb{left:98.271467pt;}
.x5d{left:109.606267pt;}
.x3{left:111.491467pt;}
.x6{left:117.170133pt;}
.x5b{left:168.991467pt;}
.x27{left:183.710667pt;}
.x5{left:189.223467pt;}
.x37{left:194.642667pt;}
.x42{left:197.966667pt;}
.x26{left:200.478133pt;}
.x43{left:203.193867pt;}
.x25{left:205.390200pt;}
.x18{left:206.546933pt;}
.x24{left:210.302267pt;}
.x31{left:222.819200pt;}
.x41{left:224.296000pt;}
.x2a{left:227.997867pt;}
.x30{left:229.282533pt;}
.x16{left:231.457200pt;}
.x17{left:233.221467pt;}
.x23{left:242.069067pt;}
.x4a{left:248.175125pt;}
.x52{left:258.178667pt;}
.x33{left:269.225615pt;}
.x4f{left:271.079786pt;}
.x15{left:272.822533pt;}
.x40{left:281.545733pt;}
.x47{left:289.025520pt;}
.x53{left:296.170800pt;}
.x32{left:310.903467pt;}
.x46{left:315.116133pt;}
.x4b{left:319.409070pt;}
.x59{left:335.083867pt;}
.x36{left:360.430133pt;}
.x3f{left:382.834800pt;}
.x45{left:386.405200pt;}
.x9{left:404.481333pt;}
.xc{left:406.284800pt;}
.x55{left:423.576800pt;}
.x11{left:425.192933pt;}
.x7{left:427.090133pt;}
.x2b{left:428.039333pt;}
.x54{left:429.072000pt;}
.x57{left:431.774933pt;}
.x29{left:435.483043pt;}
.xd{left:436.524800pt;}
.x28{left:440.404933pt;}
.x3e{left:446.944267pt;}
.x5e{left:447.867600pt;}
.x12{left:455.432933pt;}
.x2c{left:459.285867pt;}
.x2d{left:461.106544pt;}
.xe{left:466.884800pt;}
.x58{left:468.758533pt;}
.x3a{left:470.360933pt;}
.x51{left:471.331079pt;}
.x2e{left:474.636400pt;}
.x39{left:478.348800pt;}
.x1e{left:482.936000pt;}
.x3d{left:485.256800pt;}
.x44{left:487.944267pt;}
.x50{left:494.631733pt;}
.x1c{left:505.889547pt;}
.x1b{left:508.054800pt;}
.x35{left:511.712791pt;}
.x19{left:523.164800pt;}
.x1a{left:528.540667pt;}
.x3b{left:533.929200pt;}
.x4c{left:542.623763pt;}
.x48{left:548.716673pt;}
.x4e{left:549.616659pt;}
.x1d{left:553.370533pt;}
.x34{left:560.980410pt;}
.x4d{left:568.849374pt;}
.x10{left:589.770933pt;}
.x49{left:593.806005pt;}
.x3c{left:605.631733pt;}
.x2{left:616.324800pt;}
.x20{left:634.282267pt;}
.x22{left:637.135629pt;}
.x21{left:638.199906pt;}
.x5c{left:641.531200pt;}
.xf{left:647.459200pt;}
.x5f{left:661.228800pt;}
.x13{left:666.356800pt;}
}




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