
    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_37f89af439d6dd5aa21595d7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ad39dad2e2ecee6d36c1da42.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_4786ef3e66ffd227889b2a50.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0467655b7c03b915c311fc94.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740723;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_bb399c5f23572b41e411913e.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_f3c5271a3f4ef730584da417.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_648cbc935eea15a8923d98ea.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1188e70f0a1f0e437cdd12a0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9a45a4a981efadfba5ac7c1f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d040f7cd128a9bddeb5e79ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.810000;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_9010f22eee306f041379aa62.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f50b636c6b205e680dae6ff0.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_86178f8db04fda6886c814cc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908000;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_cbfc5b6cb4e541d1b789c931.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1a32e48380a0d777dd25c858.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_930e3f67c4b5b37290ed6cfe.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m8{transform:matrix(-0.000450,-0.250000,0.250000,-0.000450,0,0);-ms-transform:matrix(-0.000450,-0.250000,0.250000,-0.000450,0,0);-webkit-transform:matrix(-0.000450,-0.250000,0.250000,-0.000450,0,0);}
.m2{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);}
.m5{transform:matrix(0.241779,0.063582,-0.063582,0.241779,0,0);-ms-transform:matrix(0.241779,0.063582,-0.063582,0.241779,0,0);-webkit-transform:matrix(0.241779,0.063582,-0.063582,0.241779,0,0);}
.m3{transform:matrix(0.247799,-0.033099,0.033099,0.247799,0,0);-ms-transform:matrix(0.247799,-0.033099,0.033099,0.247799,0,0);-webkit-transform:matrix(0.247799,-0.033099,0.033099,0.247799,0,0);}
.m4{transform:matrix(0.247824,0.032910,-0.032910,0.247824,0,0);-ms-transform:matrix(0.247824,0.032910,-0.032910,0.247824,0,0);-webkit-transform:matrix(0.247824,0.032910,-0.032910,0.247824,0,0);}
.m6{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-18.811800px;}
.vd{vertical-align:-15.865800px;}
.v4{vertical-align:-11.706000px;}
.v9{vertical-align:-9.357600px;}
.v6{vertical-align:-2.940000px;}
.vb{vertical-align:-1.280449px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.412909px;}
.vc{vertical-align:2.560897px;}
.v5{vertical-align:11.697000px;}
.v8{vertical-align:22.578600px;}
.v7{vertical-align:28.254000px;}
.v1{vertical-align:30.381600px;}
.ls40{letter-spacing:-2.520000px;}
.ls67{letter-spacing:-2.280000px;}
.ls17{letter-spacing:-0.780000px;}
.ls83{letter-spacing:-0.660000px;}
.ls4a{letter-spacing:-0.420000px;}
.ls9c{letter-spacing:-0.384000px;}
.ls51{letter-spacing:-0.300000px;}
.ls4b{letter-spacing:-0.244860px;}
.ls86{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.225000px;}
.ls3e{letter-spacing:-0.180000px;}
.ls85{letter-spacing:-0.144000px;}
.ls3c{letter-spacing:-0.120000px;}
.ls9b{letter-spacing:-0.096000px;}
.ls3d{letter-spacing:-0.060000px;}
.ls87{letter-spacing:-0.048000px;}
.ls19{letter-spacing:-0.045000px;}
.ls16{letter-spacing:0.000000px;}
.ls9a{letter-spacing:0.000600px;}
.ls1{letter-spacing:0.003828px;}
.ls0{letter-spacing:0.004140px;}
.ls4e{letter-spacing:0.005400px;}
.ls4f{letter-spacing:0.007800px;}
.ls35{letter-spacing:0.024000px;}
.ls3f{letter-spacing:0.034980px;}
.ls52{letter-spacing:0.048000px;}
.ls7{letter-spacing:0.060000px;}
.ls44{letter-spacing:0.120000px;}
.ls92{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.180000px;}
.ls8d{letter-spacing:0.192000px;}
.ls42{letter-spacing:0.240000px;}
.ls8f{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.300000px;}
.ls29{letter-spacing:0.315000px;}
.ls50{letter-spacing:0.336000px;}
.ls1a{letter-spacing:0.360000px;}
.ls94{letter-spacing:0.384000px;}
.ls33{letter-spacing:0.420000px;}
.ls78{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.480000px;}
.ls95{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.540000px;}
.ls7e{letter-spacing:0.576000px;}
.ls97{letter-spacing:0.582600px;}
.ls2a{letter-spacing:0.600000px;}
.ls34{letter-spacing:0.623400px;}
.ls6c{letter-spacing:0.624000px;}
.ls49{letter-spacing:0.629640px;}
.ls71{letter-spacing:0.640200px;}
.ls6{letter-spacing:0.660000px;}
.ls82{letter-spacing:0.672000px;}
.ls26{letter-spacing:0.720000px;}
.ls96{letter-spacing:0.723000px;}
.ls93{letter-spacing:0.768000px;}
.ls24{letter-spacing:0.780000px;}
.ls91{letter-spacing:0.816000px;}
.ls21{letter-spacing:0.840000px;}
.ls6f{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.900000px;}
.ls73{letter-spacing:0.912000px;}
.ls9{letter-spacing:0.960000px;}
.ls80{letter-spacing:1.008000px;}
.ls15{letter-spacing:1.020000px;}
.ls8a{letter-spacing:1.056000px;}
.ls1e{letter-spacing:1.080000px;}
.ls70{letter-spacing:1.104000px;}
.ls48{letter-spacing:1.140000px;}
.ls74{letter-spacing:1.152000px;}
.ls81{letter-spacing:1.161000px;}
.lse{letter-spacing:1.200000px;}
.ls75{letter-spacing:1.248000px;}
.ls7b{letter-spacing:1.249200px;}
.ls11{letter-spacing:1.260000px;}
.ls6b{letter-spacing:1.296000px;}
.ls41{letter-spacing:1.312800px;}
.ls20{letter-spacing:1.320000px;}
.ls7d{letter-spacing:1.344000px;}
.ls5{letter-spacing:1.380000px;}
.ls76{letter-spacing:1.392000px;}
.lsb{letter-spacing:1.440000px;}
.ls6d{letter-spacing:1.488000px;}
.ls2b{letter-spacing:1.500000px;}
.lsa{letter-spacing:1.560000px;}
.ls7f{letter-spacing:1.584000px;}
.ls46{letter-spacing:1.620000px;}
.ls8c{letter-spacing:1.632000px;}
.ls39{letter-spacing:1.680000px;}
.ls1f{letter-spacing:1.740000px;}
.ls90{letter-spacing:1.776000px;}
.ls38{letter-spacing:1.800000px;}
.ls89{letter-spacing:1.824000px;}
.ls13{letter-spacing:1.860000px;}
.ls1c{letter-spacing:1.920000px;}
.ls79{letter-spacing:1.968000px;}
.ls43{letter-spacing:1.980000px;}
.ls3{letter-spacing:2.024400px;}
.ls8{letter-spacing:2.040000px;}
.ls4{letter-spacing:2.100000px;}
.ls7a{letter-spacing:2.112000px;}
.ls22{letter-spacing:2.160000px;}
.ls1d{letter-spacing:2.220000px;}
.ls12{letter-spacing:2.280000px;}
.ls30{letter-spacing:2.289000px;}
.ls65{letter-spacing:2.340000px;}
.ls3a{letter-spacing:2.400000px;}
.ls8b{letter-spacing:2.448000px;}
.ls2c{letter-spacing:2.460000px;}
.ls88{letter-spacing:2.544000px;}
.ls3b{letter-spacing:2.580000px;}
.ls2e{letter-spacing:2.640000px;}
.ls45{letter-spacing:2.700000px;}
.ls32{letter-spacing:2.760000px;}
.ls14{letter-spacing:2.820000px;}
.ls36{letter-spacing:2.880000px;}
.ls62{letter-spacing:3.000000px;}
.ls7c{letter-spacing:3.024000px;}
.lsd{letter-spacing:3.060000px;}
.ls8e{letter-spacing:3.072000px;}
.ls4c{letter-spacing:3.120000px;}
.ls60{letter-spacing:3.180000px;}
.ls72{letter-spacing:3.216000px;}
.ls64{letter-spacing:3.240000px;}
.ls31{letter-spacing:3.300000px;}
.ls77{letter-spacing:3.312000px;}
.ls61{letter-spacing:3.360000px;}
.ls2{letter-spacing:3.480000px;}
.ls23{letter-spacing:3.540000px;}
.ls37{letter-spacing:3.600000px;}
.ls98{letter-spacing:3.648000px;}
.ls25{letter-spacing:3.660000px;}
.ls99{letter-spacing:3.744000px;}
.ls5f{letter-spacing:3.780000px;}
.ls2f{letter-spacing:3.900000px;}
.ls2d{letter-spacing:4.020000px;}
.ls6e{letter-spacing:4.224000px;}
.ls66{letter-spacing:4.320000px;}
.ls84{letter-spacing:4.440000px;}
.ls1b{letter-spacing:5.340000px;}
.ls68{letter-spacing:5.400000px;}
.ls27{letter-spacing:5.700000px;}
.ls6a{letter-spacing:7.620000px;}
.ls69{letter-spacing:9.360000px;}
.ls57{letter-spacing:21.326092px;}
.ls5e{letter-spacing:23.533762px;}
.ls5c{letter-spacing:27.242648px;}
.ls5a{letter-spacing:28.478943px;}
.ls5d{letter-spacing:31.878755px;}
.ls5b{letter-spacing:35.101953px;}
.ls58{letter-spacing:35.675947px;}
.ls56{letter-spacing:36.647322px;}
.ls55{letter-spacing:37.795310px;}
.ls59{letter-spacing:39.384833px;}
.ls4d{letter-spacing:122.928000px;}
.ls63{letter-spacing:351.927600px;}
.ls53{letter-spacing:480.552600px;}
.ls54{letter-spacing:484.896000px;}
.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;}
}
.ws16{word-spacing:-17.220000px;}
.ws32{word-spacing:-16.680000px;}
.ws17{word-spacing:-16.080000px;}
.ws80{word-spacing:-16.020000px;}
.ws13{word-spacing:-15.720000px;}
.wsb6{word-spacing:-15.648000px;}
.ws15{word-spacing:-15.540000px;}
.ws12{word-spacing:-15.360000px;}
.ws94{word-spacing:-15.312000px;}
.ws33{word-spacing:-15.000000px;}
.wsaf{word-spacing:-14.448000px;}
.wsb3{word-spacing:-13.968000px;}
.ws97{word-spacing:-13.488000px;}
.wsb2{word-spacing:-13.440000px;}
.ws5{word-spacing:-13.344000px;}
.ws93{word-spacing:-13.296000px;}
.ws79{word-spacing:-13.245088px;}
.wsb1{word-spacing:-13.056000px;}
.wsb5{word-spacing:-13.008000px;}
.wsb4{word-spacing:-12.816000px;}
.ws95{word-spacing:-12.624000px;}
.ws4{word-spacing:-12.465000px;}
.wsb0{word-spacing:-12.432000px;}
.ws92{word-spacing:-12.240000px;}
.ws96{word-spacing:-12.048000px;}
.ws40{word-spacing:-12.000000px;}
.ws2{word-spacing:-10.210662px;}
.ws31{word-spacing:-9.374640px;}
.ws18{word-spacing:-8.779980px;}
.ws14{word-spacing:-8.745000px;}
.ws34{word-spacing:-8.500140px;}
.ws3{word-spacing:-7.293330px;}
.ws3f{word-spacing:-6.996000px;}
.ws4b{word-spacing:-5.889078px;}
.ws9e{word-spacing:-4.440000px;}
.ws65{word-spacing:-4.106266px;}
.ws63{word-spacing:-3.973806px;}
.ws62{word-spacing:-3.797192px;}
.ws9d{word-spacing:-3.780000px;}
.wsd4{word-spacing:-3.696000px;}
.ws82{word-spacing:-3.480000px;}
.wsaa{word-spacing:-3.312000px;}
.ws5f{word-spacing:-3.267352px;}
.wsba{word-spacing:-3.120000px;}
.ws7{word-spacing:-2.886000px;}
.ws5e{word-spacing:-2.825818px;}
.ws98{word-spacing:-2.820000px;}
.ws68{word-spacing:-2.737511px;}
.ws9f{word-spacing:-2.700000px;}
.ws51{word-spacing:-2.640000px;}
.ws86{word-spacing:-2.580000px;}
.ws88{word-spacing:-2.460000px;}
.wsb8{word-spacing:-2.448000px;}
.ws1b{word-spacing:-2.220000px;}
.wsa6{word-spacing:-2.160000px;}
.wsc9{word-spacing:-1.968000px;}
.wsb7{word-spacing:-1.824000px;}
.wsbb{word-spacing:-1.776000px;}
.ws6b{word-spacing:-1.633676px;}
.wsc0{word-spacing:-1.584000px;}
.ws9a{word-spacing:-1.560000px;}
.ws24{word-spacing:-1.500000px;}
.wsa5{word-spacing:-1.488000px;}
.ws67{word-spacing:-1.457062px;}
.wsac{word-spacing:-1.344000px;}
.wsa0{word-spacing:-1.296000px;}
.ws4c{word-spacing:-1.268417px;}
.ws8a{word-spacing:-1.260000px;}
.ws2a{word-spacing:-1.200000px;}
.ws87{word-spacing:-1.140000px;}
.wsbf{word-spacing:-1.104000px;}
.ws11{word-spacing:-1.020000px;}
.wsae{word-spacing:-1.008000px;}
.wsc6{word-spacing:-0.960000px;}
.wsab{word-spacing:-0.912000px;}
.wsa7{word-spacing:-0.864000px;}
.ws3c{word-spacing:-0.840000px;}
.wsca{word-spacing:-0.816000px;}
.wsa3{word-spacing:-0.768000px;}
.ws1e{word-spacing:-0.720000px;}
.wsbe{word-spacing:-0.672000px;}
.ws61{word-spacing:-0.662301px;}
.wsa1{word-spacing:-0.624000px;}
.wsc1{word-spacing:-0.576000px;}
.ws66{word-spacing:-0.573994px;}
.wsc7{word-spacing:-0.528000px;}
.ws50{word-spacing:-0.480000px;}
.wsc4{word-spacing:-0.432000px;}
.ws29{word-spacing:-0.420000px;}
.ws1a{word-spacing:-0.360000px;}
.ws55{word-spacing:-0.336000px;}
.ws8c{word-spacing:-0.300000px;}
.ws35{word-spacing:-0.240000px;}
.wscb{word-spacing:-0.192000px;}
.ws37{word-spacing:-0.120000px;}
.ws2c{word-spacing:-0.060000px;}
.ws53{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:0.045000px;}
.wsa9{word-spacing:0.048000px;}
.ws3b{word-spacing:0.060000px;}
.wsce{word-spacing:0.096000px;}
.ws6d{word-spacing:0.120000px;}
.wsa8{word-spacing:0.144000px;}
.ws27{word-spacing:0.180000px;}
.wsd2{word-spacing:0.192000px;}
.ws4f{word-spacing:0.240000px;}
.wsd3{word-spacing:0.336000px;}
.wsbd{word-spacing:0.384000px;}
.ws81{word-spacing:0.480000px;}
.ws5d{word-spacing:0.529841px;}
.ws8b{word-spacing:0.660000px;}
.ws64{word-spacing:0.662301px;}
.ws70{word-spacing:0.768000px;}
.ws3d{word-spacing:0.780000px;}
.ws69{word-spacing:0.838915px;}
.ws2d{word-spacing:0.900000px;}
.ws6a{word-spacing:0.971375px;}
.wsc2{word-spacing:1.008000px;}
.ws9c{word-spacing:1.020000px;}
.wscd{word-spacing:1.248000px;}
.wsc8{word-spacing:1.296000px;}
.ws8e{word-spacing:1.320000px;}
.ws6e{word-spacing:1.380000px;}
.wsa2{word-spacing:1.392000px;}
.ws7f{word-spacing:1.440000px;}
.ws2e{word-spacing:1.500000px;}
.ws60{word-spacing:1.501216px;}
.ws23{word-spacing:1.560000px;}
.ws28{word-spacing:1.620000px;}
.ws52{word-spacing:1.680000px;}
.wsb{word-spacing:1.800000px;}
.ws3a{word-spacing:1.860000px;}
.wsb9{word-spacing:1.920000px;}
.ws19{word-spacing:2.040000px;}
.ws90{word-spacing:2.100000px;}
.ws36{word-spacing:2.280000px;}
.ws84{word-spacing:2.340000px;}
.ws20{word-spacing:2.400000px;}
.ws1d{word-spacing:2.460000px;}
.wsad{word-spacing:2.496000px;}
.ws2b{word-spacing:2.520000px;}
.wsbc{word-spacing:2.544000px;}
.ws7e{word-spacing:2.580000px;}
.ws7d{word-spacing:2.700000px;}
.ws30{word-spacing:2.760000px;}
.wscc{word-spacing:2.784000px;}
.ws7b{word-spacing:2.820000px;}
.wsd{word-spacing:2.880000px;}
.wsd0{word-spacing:2.928000px;}
.wsf{word-spacing:2.940000px;}
.ws83{word-spacing:3.000000px;}
.wsc5{word-spacing:3.024000px;}
.ws21{word-spacing:3.120000px;}
.ws39{word-spacing:3.180000px;}
.ws22{word-spacing:3.240000px;}
.ws7c{word-spacing:3.300000px;}
.wsc3{word-spacing:3.360000px;}
.wsd1{word-spacing:3.408000px;}
.ws3e{word-spacing:3.420000px;}
.ws8d{word-spacing:3.480000px;}
.ws1f{word-spacing:3.600000px;}
.wscf{word-spacing:3.696000px;}
.ws38{word-spacing:3.720000px;}
.wse{word-spacing:3.780000px;}
.ws6f{word-spacing:3.840000px;}
.wsa4{word-spacing:3.936000px;}
.ws26{word-spacing:3.960000px;}
.ws54{word-spacing:3.984000px;}
.ws89{word-spacing:4.080000px;}
.ws25{word-spacing:4.140000px;}
.ws4a{word-spacing:4.258256px;}
.ws9b{word-spacing:4.320000px;}
.ws85{word-spacing:4.380000px;}
.ws10{word-spacing:4.440000px;}
.ws1c{word-spacing:4.500000px;}
.ws91{word-spacing:4.560000px;}
.ws99{word-spacing:4.680000px;}
.wsa{word-spacing:4.740000px;}
.ws8f{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.ws6c{word-spacing:6.004862px;}
.ws2f{word-spacing:8.280000px;}
.ws76{word-spacing:25.833744px;}
.ws75{word-spacing:29.941733px;}
.ws77{word-spacing:30.068784px;}
.ws74{word-spacing:31.678099px;}
.ws73{word-spacing:34.303824px;}
.ws78{word-spacing:36.633096px;}
.ws7a{word-spacing:36.675446px;}
.ws0{word-spacing:49.321242px;}
.ws1{word-spacing:49.322028px;}
.ws4d{word-spacing:116.627424px;}
.ws5b{word-spacing:188.002659px;}
.ws46{word-spacing:228.672000px;}
.ws43{word-spacing:240.672000px;}
.ws49{word-spacing:244.176000px;}
.ws44{word-spacing:264.672000px;}
.ws41{word-spacing:274.190808px;}
.ws45{word-spacing:339.264000px;}
.ws42{word-spacing:346.560000px;}
.ws47{word-spacing:351.264000px;}
.ws48{word-spacing:357.264000px;}
.ws72{word-spacing:378.240000px;}
.ws59{word-spacing:390.240000px;}
.ws71{word-spacing:402.240000px;}
.ws57{word-spacing:432.864000px;}
.ws58{word-spacing:450.240000px;}
.ws5c{word-spacing:526.124126px;}
.ws5a{word-spacing:565.296000px;}
.ws56{word-spacing:914.688000px;}
.ws4e{word-spacing:1162.413396px;}
._a{margin-left:-2898.144000px;}
._c{margin-left:-2874.336000px;}
._41{margin-left:-65.982030px;}
._42{margin-left:-62.721044px;}
._45{margin-left:-54.039198px;}
._3f{margin-left:-51.879324px;}
._48{margin-left:-50.185305px;}
._4b{margin-left:-47.898380px;}
._47{margin-left:-46.585515px;}
._40{margin-left:-45.018548px;}
._46{margin-left:-43.409230px;}
._43{margin-left:-41.672861px;}
._49{margin-left:-40.275296px;}
._3d{margin-left:-39.174183px;}
._4a{margin-left:-37.734267px;}
._3e{margin-left:-36.082599px;}
._44{margin-left:-31.889903px;}
._3c{margin-left:-26.807847px;}
._4{margin-left:-7.581600px;}
._b{margin-left:-6.525000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.303800px;}
._5{width:1.059600px;}
._6{width:3.030000px;}
._9{width:4.290000px;}
._7{width:5.400000px;}
._8{width:7.260000px;}
._4c{width:8.460000px;}
._4d{width:9.630000px;}
._2f{width:22.120853px;}
._1d{width:28.312875px;}
._1e{width:39.578143px;}
._2e{width:125.649541px;}
._1f{width:151.467396px;}
._e{width:194.160000px;}
._16{width:240.672000px;}
._13{width:254.070000px;}
._14{width:256.176000px;}
._1a{width:258.672000px;}
._10{width:276.672000px;}
._f{width:278.058000px;}
._15{width:285.216000px;}
._12{width:298.080000px;}
._11{width:300.720000px;}
._1b{width:318.368794px;}
._1c{width:331.192594px;}
._30{width:352.998000px;}
._18{width:362.064000px;}
._31{width:364.896000px;}
._19{width:369.360000px;}
._34{width:382.224000px;}
._3b{width:394.224000px;}
._29{width:402.240000px;}
._35{width:414.240000px;}
._32{width:421.248000px;}
._38{width:426.240000px;}
._25{width:432.240000px;}
._2d{width:435.264000px;}
._28{width:443.232000px;}
._22{width:444.240000px;}
._2b{width:447.264000px;}
._3a{width:459.792000px;}
._33{width:471.792000px;}
._20{width:484.896000px;}
._37{width:486.240000px;}
._39{width:509.760000px;}
._36{width:533.760000px;}
._d{width:549.600000px;}
._17{width:594.384000px;}
._2c{width:658.848000px;}
._27{width:666.864000px;}
._2a{width:670.848000px;}
._26{width:764.640000px;}
._24{width:942.720000px;}
._21{width:968.982000px;}
._23{width:1009.344000px;}
.fc8{color:rgb(34,31,32);}
.fc7{color:rgb(145,191,215);}
.fc6{color:rgb(236,161,127);}
.fc5{color:rgb(192,35,40);}
.fc4{color:rgb(19,108,166);}
.fc3{color:rgb(62,58,57);}
.fc2{color:rgb(25,26,27);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:22.737000px;}
.fs5{font-size:26.235000px;}
.fs17{font-size:27.776400px;}
.fsc{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs8{font-size:39.000000px;}
.fs12{font-size:40.474200px;}
.fs0{font-size:42.000000px;}
.fs15{font-size:42.350400px;}
.fs14{font-size:42.350469px;}
.fs13{font-size:44.153400px;}
.fs6{font-size:45.000000px;}
.fs11{font-size:45.300378px;}
.fsf{font-size:45.300385px;}
.fse{font-size:45.300600px;}
.fs10{font-size:45.300628px;}
.fs16{font-size:47.644200px;}
.fsb{font-size:48.000000px;}
.fsd{font-size:49.418400px;}
.fs9{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y31{bottom:47.777250px;}
.y1f5{bottom:80.263500px;}
.y188{bottom:83.770350px;}
.yd2{bottom:83.912100px;}
.ya2{bottom:83.920350px;}
.y95{bottom:84.053850px;}
.y1c{bottom:88.029450px;}
.y1b4{bottom:89.121900px;}
.y145{bottom:91.906800px;}
.ye5{bottom:92.537100px;}
.y121{bottom:92.753100px;}
.y1f4{bottom:95.263500px;}
.y187{bottom:101.770350px;}
.yd1{bottom:101.912100px;}
.ya1{bottom:101.920350px;}
.y94{bottom:102.053850px;}
.y1b{bottom:103.023000px;}
.y1b3{bottom:104.121900px;}
.y144{bottom:108.154800px;}
.ye4{bottom:108.785100px;}
.y120{bottom:109.001100px;}
.y1f3{bottom:110.263500px;}
.y1b2{bottom:119.121900px;}
.y186{bottom:119.770350px;}
.yd0{bottom:119.912100px;}
.ya0{bottom:119.920350px;}
.y93{bottom:120.053850px;}
.y143{bottom:124.402800px;}
.ye3{bottom:125.033100px;}
.y11f{bottom:125.249100px;}
.y1f2{bottom:125.263500px;}
.y1b1{bottom:134.121900px;}
.y185{bottom:137.770350px;}
.ycf{bottom:137.912100px;}
.y9f{bottom:137.920350px;}
.y92{bottom:138.053850px;}
.y1f1{bottom:140.263500px;}
.y142{bottom:140.650800px;}
.ye2{bottom:141.281100px;}
.y11e{bottom:141.497100px;}
.y1b0{bottom:149.121900px;}
.y1f0{bottom:155.263500px;}
.y63{bottom:155.770350px;}
.yce{bottom:155.912100px;}
.y9e{bottom:155.920350px;}
.y91{bottom:156.053850px;}
.y141{bottom:156.898800px;}
.y139{bottom:157.196100px;}
.ye1{bottom:157.529100px;}
.y2b{bottom:162.183750px;}
.y1af{bottom:164.121900px;}
.y1ef{bottom:170.263500px;}
.y11d{bottom:173.009100px;}
.y140{bottom:173.146800px;}
.y62{bottom:173.770350px;}
.ye0{bottom:173.777100px;}
.ycd{bottom:173.912100px;}
.y9d{bottom:173.920350px;}
.y90{bottom:174.053850px;}
.y1ae{bottom:179.121900px;}
.y2a{bottom:180.183750px;}
.y1ee{bottom:185.263500px;}
.y13f{bottom:189.394800px;}
.ydf{bottom:190.025100px;}
.y61{bottom:191.770350px;}
.y9c{bottom:191.920350px;}
.ycc{bottom:191.935350px;}
.y8f{bottom:192.053850px;}
.y1ad{bottom:194.121900px;}
.y29{bottom:198.183750px;}
.y1ed{bottom:200.263500px;}
.y13e{bottom:205.642800px;}
.yde{bottom:206.273100px;}
.y11c{bottom:207.904200px;}
.y1ac{bottom:209.121900px;}
.y60{bottom:209.770350px;}
.y9b{bottom:209.920350px;}
.ycb{bottom:209.935350px;}
.y8e{bottom:210.053850px;}
.y1ec{bottom:215.263500px;}
.y28{bottom:216.183750px;}
.ydd{bottom:222.521100px;}
.y1ab{bottom:224.121900px;}
.y11b{bottom:227.404200px;}
.y5f{bottom:227.770350px;}
.y9a{bottom:227.920350px;}
.y8d{bottom:228.053850px;}
.y1eb{bottom:230.263500px;}
.y27{bottom:234.183750px;}
.y13d{bottom:237.154800px;}
.ydc{bottom:238.769100px;}
.y1aa{bottom:239.121900px;}
.y1ea{bottom:245.263500px;}
.yca{bottom:245.530350px;}
.y5e{bottom:245.770350px;}
.y8c{bottom:246.053850px;}
.y11a{bottom:246.904200px;}
.y26{bottom:252.183750px;}
.y1a9{bottom:254.121900px;}
.ydb{bottom:255.017100px;}
.y1e9{bottom:260.263500px;}
.y99{bottom:263.515350px;}
.y5d{bottom:263.770350px;}
.y8b{bottom:264.053850px;}
.y1a8{bottom:269.121900px;}
.y25{bottom:270.183750px;}
.yda{bottom:271.265100px;}
.y13c{bottom:272.050350px;}
.y1e8{bottom:275.263500px;}
.y5c{bottom:281.770350px;}
.yc9{bottom:281.785350px;}
.y8a{bottom:282.053850px;}
.y1a7{bottom:284.121900px;}
.y24{bottom:288.183750px;}
.y1e7{bottom:290.263500px;}
.y13b{bottom:291.550350px;}
.y5b{bottom:299.770350px;}
.yc8{bottom:299.785350px;}
.y89{bottom:300.062100px;}
.yd9{bottom:300.280950px;}
.y119{bottom:301.072050px;}
.y113{bottom:302.421900px;}
.y1e6{bottom:305.263500px;}
.y23{bottom:306.183750px;}
.yd7{bottom:314.776950px;}
.y1a6{bottom:317.232600px;}
.y118{bottom:317.320050px;}
.y5a{bottom:317.770350px;}
.yc7{bottom:317.785350px;}
.y88{bottom:318.062100px;}
.y1e5{bottom:320.263500px;}
.y22{bottom:324.183750px;}
.yd8{bottom:329.284950px;}
.y117{bottom:333.568050px;}
.y1e4{bottom:335.263500px;}
.y59{bottom:335.770350px;}
.yc6{bottom:335.785350px;}
.y87{bottom:336.062100px;}
.y147{bottom:337.546800px;}
.y21{bottom:342.183750px;}
.y1e3{bottom:350.263500px;}
.y146{bottom:353.290800px;}
.y58{bottom:353.770350px;}
.yc5{bottom:353.785350px;}
.y86{bottom:354.062100px;}
.y20{bottom:360.183750px;}
.yd6{bottom:361.675350px;}
.y116{bottom:365.080050px;}
.y1e2{bottom:365.263500px;}
.y57{bottom:371.770350px;}
.y1a5{bottom:371.772600px;}
.yc4{bottom:371.785350px;}
.y85{bottom:372.062100px;}
.y148{bottom:373.570500px;}
.y1f{bottom:378.183750px;}
.y1e1{bottom:380.263500px;}
.yd5{bottom:381.175350px;}
.y15a{bottom:382.020600px;}
.y149{bottom:383.498700px;}
.y1a4{bottom:389.367600px;}
.y56{bottom:389.770350px;}
.yc3{bottom:389.785350px;}
.y84{bottom:390.062100px;}
.y1e0{bottom:395.263500px;}
.y170{bottom:395.278500px;}
.y2e{bottom:396.183750px;}
.y1e{bottom:396.186000px;}
.y183{bottom:398.209714px;}
.y115{bottom:399.970350px;}
.yd4{bottom:400.675350px;}
.y178{bottom:403.674467px;}
.y55{bottom:407.770350px;}
.yc2{bottom:407.785350px;}
.y181{bottom:408.056182px;}
.y83{bottom:408.062100px;}
.y1df{bottom:410.263500px;}
.y2d{bottom:414.183750px;}
.yd3{bottom:420.175350px;}
.y14e{bottom:422.585850px;}
.y171{bottom:422.890961px;}
.y156{bottom:423.358800px;}
.y14b{bottom:424.300950px;}
.y1de{bottom:425.263500px;}
.y1a3{bottom:425.367600px;}
.y182{bottom:425.451608px;}
.y54{bottom:425.770350px;}
.y82{bottom:426.062100px;}
.y1d{bottom:431.781000px;}
.y2c{bottom:432.183750px;}
.y1dd{bottom:440.263500px;}
.y172{bottom:441.355735px;}
.yc1{bottom:443.380350px;}
.y53{bottom:443.770350px;}
.y81{bottom:444.062100px;}
.y17b{bottom:445.737450px;}
.y124{bottom:447.425100px;}
.y1dc{bottom:455.263500px;}
.y173{bottom:461.016908px;}
.y52{bottom:461.770350px;}
.y1a2{bottom:461.772600px;}
.y123{bottom:463.169100px;}
.y17c{bottom:465.398623px;}
.yeb{bottom:465.773100px;}
.y1db{bottom:470.263500px;}
.y122{bottom:478.913100px;}
.yc0{bottom:479.245350px;}
.y1a1{bottom:479.367600px;}
.y80{bottom:479.657100px;}
.y51{bottom:479.770350px;}
.yea{bottom:481.517100px;}
.y174{bottom:483.272044px;}
.y1da{bottom:485.263500px;}
.y17d{bottom:487.653758px;}
.ye9{bottom:497.261100px;}
.y50{bottom:497.770350px;}
.y1d9{bottom:500.263500px;}
.y138{bottom:501.949500px;}
.y175{bottom:503.452009px;}
.y1a{bottom:505.264200px;}
.y126{bottom:506.351274px;}
.y128{bottom:506.462578px;}
.y17e{bottom:507.833724px;}
.ye8{bottom:513.005100px;}
.y1d8{bottom:515.263500px;}
.y4f{bottom:515.770350px;}
.y1a0{bottom:515.772600px;}
.y7f{bottom:515.912100px;}
.y16f{bottom:522.818382px;}
.y176{bottom:523.780201px;}
.y17f{bottom:528.161916px;}
.ye7{bottom:528.749100px;}
.y127{bottom:529.441805px;}
.y1d7{bottom:530.263500px;}
.y19{bottom:532.609200px;}
.y19f{bottom:533.367600px;}
.y4e{bottom:533.770350px;}
.ybf{bottom:533.785350px;}
.y125{bottom:533.802900px;}
.y7e{bottom:533.912100px;}
.y177{bottom:542.774356px;}
.y16e{bottom:544.085700px;}
.ye6{bottom:544.493100px;}
.y1d6{bottom:545.263500px;}
.y180{bottom:547.156070px;}
.y18{bottom:550.609200px;}
.y4d{bottom:551.770350px;}
.ybe{bottom:551.785350px;}
.y7d{bottom:551.912100px;}
.y1d5{bottom:560.263500px;}
.y112{bottom:567.699000px;}
.y17{bottom:568.609200px;}
.y159{bottom:569.380654px;}
.y4c{bottom:569.770350px;}
.y19e{bottom:569.772600px;}
.ybd{bottom:569.785350px;}
.y7c{bottom:569.912100px;}
.y136{bottom:571.109132px;}
.y134{bottom:571.561704px;}
.yfb{bottom:571.711650px;}
.y132{bottom:571.848701px;}
.y130{bottom:571.937008px;}
.y17a{bottom:572.091420px;}
.y1d4{bottom:575.263500px;}
.y158{bottom:582.911606px;}
.yee{bottom:584.212650px;}
.y179{bottom:585.622373px;}
.y16{bottom:586.609200px;}
.y131{bottom:587.169931px;}
.y133{bottom:587.754964px;}
.y4b{bottom:587.770350px;}
.y19d{bottom:587.772600px;}
.ybc{bottom:587.785350px;}
.y12f{bottom:587.854309px;}
.y7b{bottom:587.912100px;}
.y135{bottom:588.384150px;}
.y13a{bottom:588.471450px;}
.y107{bottom:588.929614px;}
.y137{bottom:589.702500px;}
.y1d3{bottom:590.263500px;}
.y12e{bottom:598.793314px;}
.y106{bottom:599.233350px;}
.y184{bottom:600.782264px;}
.y15d{bottom:601.173000px;}
.y14d{bottom:601.969140px;}
.y15{bottom:604.609200px;}
.y1d2{bottom:605.263500px;}
.y4a{bottom:605.770350px;}
.y19c{bottom:605.772600px;}
.ybb{bottom:605.785350px;}
.y7a{bottom:605.912100px;}
.y16d{bottom:611.808606px;}
.y165{bottom:612.046465px;}
.y15c{bottom:613.176737px;}
.yf5{bottom:613.905450px;}
.yfc{bottom:619.244700px;}
.y1d1{bottom:620.263500px;}
.y14{bottom:622.609200px;}
.y49{bottom:623.770350px;}
.y19b{bottom:623.772600px;}
.yba{bottom:623.785350px;}
.y79{bottom:623.912100px;}
.y166{bottom:631.025100px;}
.y15e{bottom:631.262959px;}
.y150{bottom:632.218004px;}
.yf6{bottom:634.624114px;}
.y1d0{bottom:635.263500px;}
.y13{bottom:640.609200px;}
.y102{bottom:640.936800px;}
.y48{bottom:641.770350px;}
.y19a{bottom:641.772600px;}
.yb9{bottom:641.785350px;}
.y78{bottom:641.912100px;}
.y167{bottom:649.489874px;}
.y15f{bottom:649.727734px;}
.y1cf{bottom:650.263500px;}
.y129{bottom:650.397600px;}
.y151{bottom:650.682779px;}
.yf7{bottom:655.330424px;}
.y12{bottom:658.609200px;}
.y199{bottom:659.367600px;}
.y47{bottom:659.770350px;}
.yb8{bottom:659.785350px;}
.y77{bottom:659.912100px;}
.y1ce{bottom:665.263500px;}
.y108{bottom:667.449600px;}
.y168{bottom:669.151048px;}
.y160{bottom:669.388907px;}
.y152{bottom:670.354540px;}
.yf8{bottom:676.036733px;}
.y11{bottom:676.609200px;}
.y46{bottom:677.770350px;}
.yb7{bottom:677.785350px;}
.y76{bottom:677.912100px;}
.y1cd{bottom:680.263500px;}
.y111{bottom:684.467700px;}
.y169{bottom:691.406183px;}
.y153{bottom:691.445039px;}
.y161{bottom:691.644042px;}
.y10{bottom:694.609200px;}
.y1cc{bottom:695.263500px;}
.y45{bottom:695.770350px;}
.y198{bottom:695.772600px;}
.yb6{bottom:695.785350px;}
.y75{bottom:695.912100px;}
.yf9{bottom:696.755398px;}
.y110{bottom:696.786000px;}
.y103{bottom:697.310840px;}
.y10d{bottom:701.725382px;}
.y12a{bottom:702.918069px;}
.y1cb{bottom:710.263500px;}
.y16a{bottom:711.586148px;}
.y154{bottom:711.625004px;}
.y162{bottom:711.824008px;}
.yf{bottom:712.609200px;}
.y10c{bottom:712.708621px;}
.y10f{bottom:712.728070px;}
.y44{bottom:713.770350px;}
.y197{bottom:713.772600px;}
.yb5{bottom:713.785350px;}
.y74{bottom:713.912100px;}
.yfa{bottom:717.461707px;}
.yec{bottom:722.914200px;}
.y10b{bottom:723.691861px;}
.y1ca{bottom:725.263500px;}
.ye{bottom:730.609200px;}
.y43{bottom:731.770350px;}
.y196{bottom:731.772600px;}
.yb4{bottom:731.785350px;}
.y73{bottom:731.912100px;}
.y16b{bottom:731.914340px;}
.y155{bottom:731.953196px;}
.y163{bottom:732.152200px;}
.y10a{bottom:734.675100px;}
.y14a{bottom:735.791100px;}
.y1c9{bottom:740.263500px;}
.y10e{bottom:741.510150px;}
.y109{bottom:746.765100px;}
.yd{bottom:748.609200px;}
.y195{bottom:749.367600px;}
.y42{bottom:749.770350px;}
.yb3{bottom:749.785350px;}
.y72{bottom:749.912100px;}
.y15b{bottom:750.889650px;}
.y16c{bottom:750.908495px;}
.y164{bottom:751.146354px;}
.y104{bottom:753.697234px;}
.y12b{bottom:754.842468px;}
.y1c8{bottom:755.263500px;}
.yef{bottom:756.498150px;}
.y41{bottom:767.770350px;}
.yb2{bottom:767.785350px;}
.y71{bottom:767.912100px;}
.y1c7{bottom:770.263500px;}
.yf0{bottom:777.204460px;}
.y14f{bottom:782.625450px;}
.y157{bottom:783.398400px;}
.y14c{bottom:784.340550px;}
.y1c6{bottom:785.263500px;}
.y40{bottom:785.770350px;}
.y194{bottom:785.772600px;}
.yb1{bottom:785.785350px;}
.y70{bottom:785.912100px;}
.y101{bottom:788.832010px;}
.yc{bottom:793.767300px;}
.yf1{bottom:797.910769px;}
.y1c5{bottom:800.263500px;}
.y100{bottom:802.520906px;}
.y3f{bottom:803.770350px;}
.y193{bottom:803.772600px;}
.yb0{bottom:803.785350px;}
.y6f{bottom:803.912100px;}
.yb{bottom:806.218050px;}
.y12c{bottom:807.462282px;}
.y105{bottom:810.071274px;}
.y1c4{bottom:815.263500px;}
.yff{bottom:816.209803px;}
.yf2{bottom:818.629433px;}
.y3e{bottom:821.770350px;}
.y192{bottom:821.772600px;}
.yaf{bottom:821.785350px;}
.y6e{bottom:821.912100px;}
.ya{bottom:822.621000px;}
.yfe{bottom:829.898700px;}
.y1c3{bottom:830.263500px;}
.yf3{bottom:839.335743px;}
.y3d{bottom:839.770350px;}
.y191{bottom:839.772600px;}
.yae{bottom:839.785350px;}
.y6d{bottom:839.912100px;}
.yfd{bottom:844.968450px;}
.y1c2{bottom:845.263500px;}
.y9{bottom:855.058950px;}
.y12d{bottom:855.335606px;}
.y3c{bottom:857.770350px;}
.y190{bottom:857.772600px;}
.yad{bottom:857.785350px;}
.y6c{bottom:857.912100px;}
.yf4{bottom:860.042053px;}
.y1c1{bottom:860.263500px;}
.y8{bottom:863.133600px;}
.yed{bottom:865.506450px;}
.y1c0{bottom:875.263500px;}
.y3b{bottom:875.770350px;}
.y18f{bottom:875.772600px;}
.yac{bottom:875.785350px;}
.y6b{bottom:875.912100px;}
.y7{bottom:876.633600px;}
.y1bf{bottom:890.263500px;}
.y3a{bottom:893.770350px;}
.y18e{bottom:893.772600px;}
.yab{bottom:893.785350px;}
.y6a{bottom:893.912100px;}
.y6{bottom:895.558950px;}
.y1be{bottom:905.263500px;}
.y39{bottom:911.770350px;}
.y18d{bottom:911.772600px;}
.yaa{bottom:911.785350px;}
.y69{bottom:911.912100px;}
.y1bd{bottom:920.263500px;}
.y5{bottom:924.280950px;}
.y38{bottom:929.770350px;}
.y18c{bottom:929.772600px;}
.ya9{bottom:929.785350px;}
.y68{bottom:929.905350px;}
.y1bc{bottom:935.263500px;}
.y37{bottom:947.770350px;}
.y18b{bottom:947.772600px;}
.ya8{bottom:947.785350px;}
.y67{bottom:947.905350px;}
.y1bb{bottom:950.263500px;}
.y1ba{bottom:965.263500px;}
.y36{bottom:965.770350px;}
.y18a{bottom:965.772600px;}
.ya7{bottom:965.785350px;}
.y66{bottom:965.905350px;}
.y4{bottom:970.465200px;}
.y1b9{bottom:980.263500px;}
.y35{bottom:983.770350px;}
.y189{bottom:983.772600px;}
.ya6{bottom:983.785350px;}
.y1fa{bottom:995.263500px;}
.y1b8{bottom:995.265900px;}
.y65{bottom:1001.500350px;}
.y34{bottom:1001.770350px;}
.y98{bottom:1001.772600px;}
.ya5{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y1f9{bottom:1010.263500px;}
.y1b7{bottom:1010.265900px;}
.y33{bottom:1019.770350px;}
.ya4{bottom:1019.785350px;}
.y1f8{bottom:1025.263500px;}
.y1b6{bottom:1025.265900px;}
.y64{bottom:1037.365350px;}
.y97{bottom:1037.367600px;}
.y32{bottom:1037.770350px;}
.ya3{bottom:1037.785350px;}
.y1f7{bottom:1040.263500px;}
.y1b5{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y96{bottom:1132.418700px;}
.y114{bottom:1132.421700px;}
.y1f6{bottom:1132.423500px;}
.y30{bottom:1136.092500px;}
.y2f{bottom:1150.492500px;}
.h8{height:16.553158px;}
.h6{height:19.125417px;}
.h9{height:28.393066px;}
.h20{height:29.466324px;}
.h2{height:30.577148px;}
.h29{height:30.832249px;}
.h28{height:30.832299px;}
.h21{height:32.144883px;}
.h1c{height:32.163268px;}
.h1a{height:32.163273px;}
.h1e{height:32.163426px;}
.h1b{height:32.163446px;}
.h25{height:32.498110px;}
.he{height:32.783203px;}
.h7{height:32.805176px;}
.hd{height:32.815976px;}
.h19{height:32.980075px;}
.h16{height:33.351562px;}
.h22{height:33.557791px;}
.h24{height:33.646098px;}
.h2a{height:33.669726px;}
.h2b{height:34.686280px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h23{height:35.235621px;}
.h18{height:35.977946px;}
.hf{height:41.689453px;}
.h12{height:41.716453px;}
.h17{height:42.022561px;}
.h1f{height:42.054361px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.hc{height:43.740234px;}
.h13{height:44.100000px;}
.h14{height:52.558951px;}
.h15{height:52.567951px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1d{height:311.899500px;}
.h26{height:416.041500px;}
.h27{height:433.384500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w3{width:555.522000px;}
.w2{width:576.160500px;}
.w4{width:633.412500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:9.471600px;}
.x2c{left:70.582650px;}
.xb{left:76.535400px;}
.x19{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x2d{left:99.921300px;}
.x61{left:102.047400px;}
.x4{left:106.299150px;}
.xc{left:110.554200px;}
.x42{left:115.489350px;}
.x40{left:119.119500px;}
.x63{left:123.307050px;}
.x3{left:125.439150px;}
.x6{left:131.816400px;}
.x41{left:141.778350px;}
.x4b{left:146.288730px;}
.x2b{left:147.745500px;}
.x47{left:150.596172px;}
.x48{left:152.205487px;}
.x46{left:158.812150px;}
.x20{left:160.965600px;}
.x43{left:168.065695px;}
.x1e{left:170.702850px;}
.x3c{left:179.326500px;}
.x60{left:190.132500px;}
.x1d{left:193.732200px;}
.x33{left:196.878221px;}
.x32{left:203.732944px;}
.x31{left:205.410750px;}
.x5{left:212.876400px;}
.x54{left:224.643900px;}
.x1b{left:226.259100px;}
.x1c{left:227.289150px;}
.x34{left:231.792048px;}
.x16{left:235.917900px;}
.x55{left:238.213162px;}
.x59{left:246.739848px;}
.x57{left:249.958478px;}
.x58{left:251.567794px;}
.x1a{left:258.253350px;}
.x56{left:266.803350px;}
.x35{left:268.284337px;}
.x1f{left:278.679900px;}
.x49{left:280.823610px;}
.x2e{left:326.544150px;}
.x44{left:327.707100px;}
.x18{left:342.021900px;}
.x4f{left:350.661791px;}
.x36{left:353.035637px;}
.x4e{left:354.738017px;}
.x4d{left:362.085811px;}
.x4c{left:368.840700px;}
.x17{left:371.601900px;}
.x21{left:377.104500px;}
.x22{left:385.907550px;}
.x37{left:389.737652px;}
.x2f{left:394.357667px;}
.x45{left:430.161750px;}
.x4a{left:444.409200px;}
.x5c{left:448.162720px;}
.x5a{left:451.381350px;}
.x5b{left:452.990665px;}
.xa{left:455.041500px;}
.xe{left:457.099200px;}
.x5d{left:461.153705px;}
.x26{left:462.432750px;}
.x5e{left:469.390858px;}
.x23{left:474.923850px;}
.x12{left:478.339350px;}
.x7{left:480.474750px;}
.x62{left:482.603400px;}
.xf{left:491.119200px;}
.x30{left:492.951356px;}
.x64{left:503.863200px;}
.x38{left:511.312387px;}
.x13{left:512.359350px;}
.x8{left:514.494750px;}
.x24{left:517.607850px;}
.xd{left:525.289200px;}
.x53{left:545.207442px;}
.x51{left:548.426072px;}
.x52{left:550.035388px;}
.x50{left:556.642050px;}
.x5f{left:564.732196px;}
.x25{left:568.619993px;}
.x3f{left:579.425400px;}
.x3e{left:592.798200px;}
.x39{left:608.051171px;}
.x14{left:612.904350px;}
.x29{left:624.233250px;}
.x2a{left:625.365900px;}
.x3a{left:640.525556px;}
.x11{left:663.492300px;}
.x27{left:692.270700px;}
.x2{left:693.365400px;}
.x28{left:706.731300px;}
.x3b{left:712.151250px;}
.x10{left:735.065400px;}
.x15{left:756.325200px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-16.721600pt;}
.vd{vertical-align:-14.102933pt;}
.v4{vertical-align:-10.405333pt;}
.v9{vertical-align:-8.317867pt;}
.v6{vertical-align:-2.613333pt;}
.vb{vertical-align:-1.138177pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.255919pt;}
.vc{vertical-align:2.276353pt;}
.v5{vertical-align:10.397333pt;}
.v8{vertical-align:20.069867pt;}
.v7{vertical-align:25.114667pt;}
.v1{vertical-align:27.005867pt;}
.ls40{letter-spacing:-2.240000pt;}
.ls67{letter-spacing:-2.026667pt;}
.ls17{letter-spacing:-0.693333pt;}
.ls83{letter-spacing:-0.586667pt;}
.ls4a{letter-spacing:-0.373333pt;}
.ls9c{letter-spacing:-0.341333pt;}
.ls51{letter-spacing:-0.266667pt;}
.ls4b{letter-spacing:-0.217653pt;}
.ls86{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.200000pt;}
.ls3e{letter-spacing:-0.160000pt;}
.ls85{letter-spacing:-0.128000pt;}
.ls3c{letter-spacing:-0.106667pt;}
.ls9b{letter-spacing:-0.085333pt;}
.ls3d{letter-spacing:-0.053333pt;}
.ls87{letter-spacing:-0.042667pt;}
.ls19{letter-spacing:-0.040000pt;}
.ls16{letter-spacing:0.000000pt;}
.ls9a{letter-spacing:0.000533pt;}
.ls1{letter-spacing:0.003403pt;}
.ls0{letter-spacing:0.003680pt;}
.ls4e{letter-spacing:0.004800pt;}
.ls4f{letter-spacing:0.006933pt;}
.ls35{letter-spacing:0.021333pt;}
.ls3f{letter-spacing:0.031093pt;}
.ls52{letter-spacing:0.042667pt;}
.ls7{letter-spacing:0.053333pt;}
.ls44{letter-spacing:0.106667pt;}
.ls92{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.160000pt;}
.ls8d{letter-spacing:0.170667pt;}
.ls42{letter-spacing:0.213333pt;}
.ls8f{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.266667pt;}
.ls29{letter-spacing:0.280000pt;}
.ls50{letter-spacing:0.298667pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls94{letter-spacing:0.341333pt;}
.ls33{letter-spacing:0.373333pt;}
.ls78{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls95{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.480000pt;}
.ls7e{letter-spacing:0.512000pt;}
.ls97{letter-spacing:0.517867pt;}
.ls2a{letter-spacing:0.533333pt;}
.ls34{letter-spacing:0.554133pt;}
.ls6c{letter-spacing:0.554667pt;}
.ls49{letter-spacing:0.559680pt;}
.ls71{letter-spacing:0.569067pt;}
.ls6{letter-spacing:0.586667pt;}
.ls82{letter-spacing:0.597333pt;}
.ls26{letter-spacing:0.640000pt;}
.ls96{letter-spacing:0.642667pt;}
.ls93{letter-spacing:0.682667pt;}
.ls24{letter-spacing:0.693333pt;}
.ls91{letter-spacing:0.725333pt;}
.ls21{letter-spacing:0.746667pt;}
.ls6f{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls73{letter-spacing:0.810667pt;}
.ls9{letter-spacing:0.853333pt;}
.ls80{letter-spacing:0.896000pt;}
.ls15{letter-spacing:0.906667pt;}
.ls8a{letter-spacing:0.938667pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls70{letter-spacing:0.981333pt;}
.ls48{letter-spacing:1.013333pt;}
.ls74{letter-spacing:1.024000pt;}
.ls81{letter-spacing:1.032000pt;}
.lse{letter-spacing:1.066667pt;}
.ls75{letter-spacing:1.109333pt;}
.ls7b{letter-spacing:1.110400pt;}
.ls11{letter-spacing:1.120000pt;}
.ls6b{letter-spacing:1.152000pt;}
.ls41{letter-spacing:1.166933pt;}
.ls20{letter-spacing:1.173333pt;}
.ls7d{letter-spacing:1.194667pt;}
.ls5{letter-spacing:1.226667pt;}
.ls76{letter-spacing:1.237333pt;}
.lsb{letter-spacing:1.280000pt;}
.ls6d{letter-spacing:1.322667pt;}
.ls2b{letter-spacing:1.333333pt;}
.lsa{letter-spacing:1.386667pt;}
.ls7f{letter-spacing:1.408000pt;}
.ls46{letter-spacing:1.440000pt;}
.ls8c{letter-spacing:1.450667pt;}
.ls39{letter-spacing:1.493333pt;}
.ls1f{letter-spacing:1.546667pt;}
.ls90{letter-spacing:1.578667pt;}
.ls38{letter-spacing:1.600000pt;}
.ls89{letter-spacing:1.621333pt;}
.ls13{letter-spacing:1.653333pt;}
.ls1c{letter-spacing:1.706667pt;}
.ls79{letter-spacing:1.749333pt;}
.ls43{letter-spacing:1.760000pt;}
.ls3{letter-spacing:1.799467pt;}
.ls8{letter-spacing:1.813333pt;}
.ls4{letter-spacing:1.866667pt;}
.ls7a{letter-spacing:1.877333pt;}
.ls22{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:1.973333pt;}
.ls12{letter-spacing:2.026667pt;}
.ls30{letter-spacing:2.034667pt;}
.ls65{letter-spacing:2.080000pt;}
.ls3a{letter-spacing:2.133333pt;}
.ls8b{letter-spacing:2.176000pt;}
.ls2c{letter-spacing:2.186667pt;}
.ls88{letter-spacing:2.261333pt;}
.ls3b{letter-spacing:2.293333pt;}
.ls2e{letter-spacing:2.346667pt;}
.ls45{letter-spacing:2.400000pt;}
.ls32{letter-spacing:2.453333pt;}
.ls14{letter-spacing:2.506667pt;}
.ls36{letter-spacing:2.560000pt;}
.ls62{letter-spacing:2.666667pt;}
.ls7c{letter-spacing:2.688000pt;}
.lsd{letter-spacing:2.720000pt;}
.ls8e{letter-spacing:2.730667pt;}
.ls4c{letter-spacing:2.773333pt;}
.ls60{letter-spacing:2.826667pt;}
.ls72{letter-spacing:2.858667pt;}
.ls64{letter-spacing:2.880000pt;}
.ls31{letter-spacing:2.933333pt;}
.ls77{letter-spacing:2.944000pt;}
.ls61{letter-spacing:2.986667pt;}
.ls2{letter-spacing:3.093333pt;}
.ls23{letter-spacing:3.146667pt;}
.ls37{letter-spacing:3.200000pt;}
.ls98{letter-spacing:3.242667pt;}
.ls25{letter-spacing:3.253333pt;}
.ls99{letter-spacing:3.328000pt;}
.ls5f{letter-spacing:3.360000pt;}
.ls2f{letter-spacing:3.466667pt;}
.ls2d{letter-spacing:3.573333pt;}
.ls6e{letter-spacing:3.754667pt;}
.ls66{letter-spacing:3.840000pt;}
.ls84{letter-spacing:3.946667pt;}
.ls1b{letter-spacing:4.746667pt;}
.ls68{letter-spacing:4.800000pt;}
.ls27{letter-spacing:5.066667pt;}
.ls6a{letter-spacing:6.773333pt;}
.ls69{letter-spacing:8.320000pt;}
.ls57{letter-spacing:18.956526pt;}
.ls5e{letter-spacing:20.918900pt;}
.ls5c{letter-spacing:24.215687pt;}
.ls5a{letter-spacing:25.314616pt;}
.ls5d{letter-spacing:28.336671pt;}
.ls5b{letter-spacing:31.201736pt;}
.ls58{letter-spacing:31.711953pt;}
.ls56{letter-spacing:32.575397pt;}
.ls55{letter-spacing:33.595831pt;}
.ls59{letter-spacing:35.008740pt;}
.ls4d{letter-spacing:109.269333pt;}
.ls63{letter-spacing:312.824533pt;}
.ls53{letter-spacing:427.157867pt;}
.ls54{letter-spacing:431.018667pt;}
.ws16{word-spacing:-15.306667pt;}
.ws32{word-spacing:-14.826667pt;}
.ws17{word-spacing:-14.293333pt;}
.ws80{word-spacing:-14.240000pt;}
.ws13{word-spacing:-13.973333pt;}
.wsb6{word-spacing:-13.909333pt;}
.ws15{word-spacing:-13.813333pt;}
.ws12{word-spacing:-13.653333pt;}
.ws94{word-spacing:-13.610667pt;}
.ws33{word-spacing:-13.333333pt;}
.wsaf{word-spacing:-12.842667pt;}
.wsb3{word-spacing:-12.416000pt;}
.ws97{word-spacing:-11.989333pt;}
.wsb2{word-spacing:-11.946667pt;}
.ws5{word-spacing:-11.861333pt;}
.ws93{word-spacing:-11.818667pt;}
.ws79{word-spacing:-11.773411pt;}
.wsb1{word-spacing:-11.605333pt;}
.wsb5{word-spacing:-11.562667pt;}
.wsb4{word-spacing:-11.392000pt;}
.ws95{word-spacing:-11.221333pt;}
.ws4{word-spacing:-11.080000pt;}
.wsb0{word-spacing:-11.050667pt;}
.ws92{word-spacing:-10.880000pt;}
.ws96{word-spacing:-10.709333pt;}
.ws40{word-spacing:-10.666667pt;}
.ws2{word-spacing:-9.076144pt;}
.ws31{word-spacing:-8.333013pt;}
.ws18{word-spacing:-7.804427pt;}
.ws14{word-spacing:-7.773333pt;}
.ws34{word-spacing:-7.555680pt;}
.ws3{word-spacing:-6.482960pt;}
.ws3f{word-spacing:-6.218667pt;}
.ws4b{word-spacing:-5.234736pt;}
.ws9e{word-spacing:-3.946667pt;}
.ws65{word-spacing:-3.650014pt;}
.ws63{word-spacing:-3.532272pt;}
.ws62{word-spacing:-3.375282pt;}
.ws9d{word-spacing:-3.360000pt;}
.wsd4{word-spacing:-3.285333pt;}
.ws82{word-spacing:-3.093333pt;}
.wsaa{word-spacing:-2.944000pt;}
.ws5f{word-spacing:-2.904313pt;}
.wsba{word-spacing:-2.773333pt;}
.ws7{word-spacing:-2.565333pt;}
.ws5e{word-spacing:-2.511838pt;}
.ws98{word-spacing:-2.506667pt;}
.ws68{word-spacing:-2.433343pt;}
.ws9f{word-spacing:-2.400000pt;}
.ws51{word-spacing:-2.346667pt;}
.ws86{word-spacing:-2.293333pt;}
.ws88{word-spacing:-2.186667pt;}
.wsb8{word-spacing:-2.176000pt;}
.ws1b{word-spacing:-1.973333pt;}
.wsa6{word-spacing:-1.920000pt;}
.wsc9{word-spacing:-1.749333pt;}
.wsb7{word-spacing:-1.621333pt;}
.wsbb{word-spacing:-1.578667pt;}
.ws6b{word-spacing:-1.452156pt;}
.wsc0{word-spacing:-1.408000pt;}
.ws9a{word-spacing:-1.386667pt;}
.ws24{word-spacing:-1.333333pt;}
.wsa5{word-spacing:-1.322667pt;}
.ws67{word-spacing:-1.295166pt;}
.wsac{word-spacing:-1.194667pt;}
.wsa0{word-spacing:-1.152000pt;}
.ws4c{word-spacing:-1.127482pt;}
.ws8a{word-spacing:-1.120000pt;}
.ws2a{word-spacing:-1.066667pt;}
.ws87{word-spacing:-1.013333pt;}
.wsbf{word-spacing:-0.981333pt;}
.ws11{word-spacing:-0.906667pt;}
.wsae{word-spacing:-0.896000pt;}
.wsc6{word-spacing:-0.853333pt;}
.wsab{word-spacing:-0.810667pt;}
.wsa7{word-spacing:-0.768000pt;}
.ws3c{word-spacing:-0.746667pt;}
.wsca{word-spacing:-0.725333pt;}
.wsa3{word-spacing:-0.682667pt;}
.ws1e{word-spacing:-0.640000pt;}
.wsbe{word-spacing:-0.597333pt;}
.ws61{word-spacing:-0.588712pt;}
.wsa1{word-spacing:-0.554667pt;}
.wsc1{word-spacing:-0.512000pt;}
.ws66{word-spacing:-0.510217pt;}
.wsc7{word-spacing:-0.469333pt;}
.ws50{word-spacing:-0.426667pt;}
.wsc4{word-spacing:-0.384000pt;}
.ws29{word-spacing:-0.373333pt;}
.ws1a{word-spacing:-0.320000pt;}
.ws55{word-spacing:-0.298667pt;}
.ws8c{word-spacing:-0.266667pt;}
.ws35{word-spacing:-0.213333pt;}
.wscb{word-spacing:-0.170667pt;}
.ws37{word-spacing:-0.106667pt;}
.ws2c{word-spacing:-0.053333pt;}
.ws53{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:0.040000pt;}
.wsa9{word-spacing:0.042667pt;}
.ws3b{word-spacing:0.053333pt;}
.wsce{word-spacing:0.085333pt;}
.ws6d{word-spacing:0.106667pt;}
.wsa8{word-spacing:0.128000pt;}
.ws27{word-spacing:0.160000pt;}
.wsd2{word-spacing:0.170667pt;}
.ws4f{word-spacing:0.213333pt;}
.wsd3{word-spacing:0.298667pt;}
.wsbd{word-spacing:0.341333pt;}
.ws81{word-spacing:0.426667pt;}
.ws5d{word-spacing:0.470970pt;}
.ws8b{word-spacing:0.586667pt;}
.ws64{word-spacing:0.588712pt;}
.ws70{word-spacing:0.682667pt;}
.ws3d{word-spacing:0.693333pt;}
.ws69{word-spacing:0.745702pt;}
.ws2d{word-spacing:0.800000pt;}
.ws6a{word-spacing:0.863444pt;}
.wsc2{word-spacing:0.896000pt;}
.ws9c{word-spacing:0.906667pt;}
.wscd{word-spacing:1.109333pt;}
.wsc8{word-spacing:1.152000pt;}
.ws8e{word-spacing:1.173333pt;}
.ws6e{word-spacing:1.226667pt;}
.wsa2{word-spacing:1.237333pt;}
.ws7f{word-spacing:1.280000pt;}
.ws2e{word-spacing:1.333333pt;}
.ws60{word-spacing:1.334414pt;}
.ws23{word-spacing:1.386667pt;}
.ws28{word-spacing:1.440000pt;}
.ws52{word-spacing:1.493333pt;}
.wsb{word-spacing:1.600000pt;}
.ws3a{word-spacing:1.653333pt;}
.wsb9{word-spacing:1.706667pt;}
.ws19{word-spacing:1.813333pt;}
.ws90{word-spacing:1.866667pt;}
.ws36{word-spacing:2.026667pt;}
.ws84{word-spacing:2.080000pt;}
.ws20{word-spacing:2.133333pt;}
.ws1d{word-spacing:2.186667pt;}
.wsad{word-spacing:2.218667pt;}
.ws2b{word-spacing:2.240000pt;}
.wsbc{word-spacing:2.261333pt;}
.ws7e{word-spacing:2.293333pt;}
.ws7d{word-spacing:2.400000pt;}
.ws30{word-spacing:2.453333pt;}
.wscc{word-spacing:2.474667pt;}
.ws7b{word-spacing:2.506667pt;}
.wsd{word-spacing:2.560000pt;}
.wsd0{word-spacing:2.602667pt;}
.wsf{word-spacing:2.613333pt;}
.ws83{word-spacing:2.666667pt;}
.wsc5{word-spacing:2.688000pt;}
.ws21{word-spacing:2.773333pt;}
.ws39{word-spacing:2.826667pt;}
.ws22{word-spacing:2.880000pt;}
.ws7c{word-spacing:2.933333pt;}
.wsc3{word-spacing:2.986667pt;}
.wsd1{word-spacing:3.029333pt;}
.ws3e{word-spacing:3.040000pt;}
.ws8d{word-spacing:3.093333pt;}
.ws1f{word-spacing:3.200000pt;}
.wscf{word-spacing:3.285333pt;}
.ws38{word-spacing:3.306667pt;}
.wse{word-spacing:3.360000pt;}
.ws6f{word-spacing:3.413333pt;}
.wsa4{word-spacing:3.498667pt;}
.ws26{word-spacing:3.520000pt;}
.ws54{word-spacing:3.541333pt;}
.ws89{word-spacing:3.626667pt;}
.ws25{word-spacing:3.680000pt;}
.ws4a{word-spacing:3.785117pt;}
.ws9b{word-spacing:3.840000pt;}
.ws85{word-spacing:3.893333pt;}
.ws10{word-spacing:3.946667pt;}
.ws1c{word-spacing:4.000000pt;}
.ws91{word-spacing:4.053333pt;}
.ws99{word-spacing:4.160000pt;}
.wsa{word-spacing:4.213333pt;}
.ws8f{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.ws6c{word-spacing:5.337655pt;}
.ws2f{word-spacing:7.360000pt;}
.ws76{word-spacing:22.963328pt;}
.ws75{word-spacing:26.614874pt;}
.ws77{word-spacing:26.727808pt;}
.ws74{word-spacing:28.158310pt;}
.ws73{word-spacing:30.492288pt;}
.ws78{word-spacing:32.562752pt;}
.ws7a{word-spacing:32.600397pt;}
.ws0{word-spacing:43.841104pt;}
.ws1{word-spacing:43.841803pt;}
.ws4d{word-spacing:103.668821pt;}
.ws5b{word-spacing:167.113475pt;}
.ws46{word-spacing:203.264000pt;}
.ws43{word-spacing:213.930667pt;}
.ws49{word-spacing:217.045333pt;}
.ws44{word-spacing:235.264000pt;}
.ws41{word-spacing:243.725163pt;}
.ws45{word-spacing:301.568000pt;}
.ws42{word-spacing:308.053333pt;}
.ws47{word-spacing:312.234667pt;}
.ws48{word-spacing:317.568000pt;}
.ws72{word-spacing:336.213333pt;}
.ws59{word-spacing:346.880000pt;}
.ws71{word-spacing:357.546667pt;}
.ws57{word-spacing:384.768000pt;}
.ws58{word-spacing:400.213333pt;}
.ws5c{word-spacing:467.665890pt;}
.ws5a{word-spacing:502.485333pt;}
.ws56{word-spacing:813.056000pt;}
.ws4e{word-spacing:1033.256352pt;}
._a{margin-left:-2576.128000pt;}
._c{margin-left:-2554.965333pt;}
._41{margin-left:-58.650693pt;}
._42{margin-left:-55.752039pt;}
._45{margin-left:-48.034843pt;}
._3f{margin-left:-46.114955pt;}
._48{margin-left:-44.609160pt;}
._4b{margin-left:-42.576338pt;}
._47{margin-left:-41.409347pt;}
._40{margin-left:-40.016487pt;}
._46{margin-left:-38.585982pt;}
._43{margin-left:-37.042543pt;}
._49{margin-left:-35.800263pt;}
._3d{margin-left:-34.821496pt;}
._4a{margin-left:-33.541571pt;}
._3e{margin-left:-32.073422pt;}
._44{margin-left:-28.346580pt;}
._3c{margin-left:-23.829197pt;}
._4{margin-left:-6.739200pt;}
._b{margin-left:-5.800000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-1.158933pt;}
._5{width:0.941867pt;}
._6{width:2.693333pt;}
._9{width:3.813333pt;}
._7{width:4.800000pt;}
._8{width:6.453333pt;}
._4c{width:7.520000pt;}
._4d{width:8.560000pt;}
._2f{width:19.662981pt;}
._1d{width:25.167000pt;}
._1e{width:35.180571pt;}
._2e{width:111.688481pt;}
._1f{width:134.637685pt;}
._e{width:172.586667pt;}
._16{width:213.930667pt;}
._13{width:225.840000pt;}
._14{width:227.712000pt;}
._1a{width:229.930667pt;}
._10{width:245.930667pt;}
._f{width:247.162667pt;}
._15{width:253.525333pt;}
._12{width:264.960000pt;}
._11{width:267.306667pt;}
._1b{width:282.994483pt;}
._1c{width:294.393417pt;}
._30{width:313.776000pt;}
._18{width:321.834667pt;}
._31{width:324.352000pt;}
._19{width:328.320000pt;}
._34{width:339.754667pt;}
._3b{width:350.421333pt;}
._29{width:357.546667pt;}
._35{width:368.213333pt;}
._32{width:374.442667pt;}
._38{width:378.880000pt;}
._25{width:384.213333pt;}
._2d{width:386.901333pt;}
._28{width:393.984000pt;}
._22{width:394.880000pt;}
._2b{width:397.568000pt;}
._3a{width:408.704000pt;}
._33{width:419.370667pt;}
._20{width:431.018667pt;}
._37{width:432.213333pt;}
._39{width:453.120000pt;}
._36{width:474.453333pt;}
._d{width:488.533333pt;}
._17{width:528.341333pt;}
._2c{width:585.642667pt;}
._27{width:592.768000pt;}
._2a{width:596.309333pt;}
._26{width:679.680000pt;}
._24{width:837.973333pt;}
._21{width:861.317333pt;}
._23{width:897.194667pt;}
.fs7{font-size:20.210667pt;}
.fs5{font-size:23.320000pt;}
.fs17{font-size:24.690133pt;}
.fsc{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs8{font-size:34.666667pt;}
.fs12{font-size:35.977067pt;}
.fs0{font-size:37.333333pt;}
.fs15{font-size:37.644800pt;}
.fs14{font-size:37.644861pt;}
.fs13{font-size:39.247467pt;}
.fs6{font-size:40.000000pt;}
.fs11{font-size:40.267003pt;}
.fsf{font-size:40.267009pt;}
.fse{font-size:40.267200pt;}
.fs10{font-size:40.267225pt;}
.fs16{font-size:42.350400pt;}
.fsb{font-size:42.666667pt;}
.fsd{font-size:43.927467pt;}
.fs9{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y31{bottom:42.468667pt;}
.y1f5{bottom:71.345333pt;}
.y188{bottom:74.462533pt;}
.yd2{bottom:74.588533pt;}
.ya2{bottom:74.595867pt;}
.y95{bottom:74.714533pt;}
.y1c{bottom:78.248400pt;}
.y1b4{bottom:79.219467pt;}
.y145{bottom:81.694933pt;}
.ye5{bottom:82.255200pt;}
.y121{bottom:82.447200pt;}
.y1f4{bottom:84.678667pt;}
.y187{bottom:90.462533pt;}
.yd1{bottom:90.588533pt;}
.ya1{bottom:90.595867pt;}
.y94{bottom:90.714533pt;}
.y1b{bottom:91.576000pt;}
.y1b3{bottom:92.552800pt;}
.y144{bottom:96.137600pt;}
.ye4{bottom:96.697867pt;}
.y120{bottom:96.889867pt;}
.y1f3{bottom:98.012000pt;}
.y1b2{bottom:105.886133pt;}
.y186{bottom:106.462533pt;}
.yd0{bottom:106.588533pt;}
.ya0{bottom:106.595867pt;}
.y93{bottom:106.714533pt;}
.y143{bottom:110.580267pt;}
.ye3{bottom:111.140533pt;}
.y11f{bottom:111.332533pt;}
.y1f2{bottom:111.345333pt;}
.y1b1{bottom:119.219467pt;}
.y185{bottom:122.462533pt;}
.ycf{bottom:122.588533pt;}
.y9f{bottom:122.595867pt;}
.y92{bottom:122.714533pt;}
.y1f1{bottom:124.678667pt;}
.y142{bottom:125.022933pt;}
.ye2{bottom:125.583200pt;}
.y11e{bottom:125.775200pt;}
.y1b0{bottom:132.552800pt;}
.y1f0{bottom:138.012000pt;}
.y63{bottom:138.462533pt;}
.yce{bottom:138.588533pt;}
.y9e{bottom:138.595867pt;}
.y91{bottom:138.714533pt;}
.y141{bottom:139.465600pt;}
.y139{bottom:139.729867pt;}
.ye1{bottom:140.025867pt;}
.y2b{bottom:144.163333pt;}
.y1af{bottom:145.886133pt;}
.y1ef{bottom:151.345333pt;}
.y11d{bottom:153.785867pt;}
.y140{bottom:153.908267pt;}
.y62{bottom:154.462533pt;}
.ye0{bottom:154.468533pt;}
.ycd{bottom:154.588533pt;}
.y9d{bottom:154.595867pt;}
.y90{bottom:154.714533pt;}
.y1ae{bottom:159.219467pt;}
.y2a{bottom:160.163333pt;}
.y1ee{bottom:164.678667pt;}
.y13f{bottom:168.350933pt;}
.ydf{bottom:168.911200pt;}
.y61{bottom:170.462533pt;}
.y9c{bottom:170.595867pt;}
.ycc{bottom:170.609200pt;}
.y8f{bottom:170.714533pt;}
.y1ad{bottom:172.552800pt;}
.y29{bottom:176.163333pt;}
.y1ed{bottom:178.012000pt;}
.y13e{bottom:182.793600pt;}
.yde{bottom:183.353867pt;}
.y11c{bottom:184.803733pt;}
.y1ac{bottom:185.886133pt;}
.y60{bottom:186.462533pt;}
.y9b{bottom:186.595867pt;}
.ycb{bottom:186.609200pt;}
.y8e{bottom:186.714533pt;}
.y1ec{bottom:191.345333pt;}
.y28{bottom:192.163333pt;}
.ydd{bottom:197.796533pt;}
.y1ab{bottom:199.219467pt;}
.y11b{bottom:202.137067pt;}
.y5f{bottom:202.462533pt;}
.y9a{bottom:202.595867pt;}
.y8d{bottom:202.714533pt;}
.y1eb{bottom:204.678667pt;}
.y27{bottom:208.163333pt;}
.y13d{bottom:210.804267pt;}
.ydc{bottom:212.239200pt;}
.y1aa{bottom:212.552800pt;}
.y1ea{bottom:218.012000pt;}
.yca{bottom:218.249200pt;}
.y5e{bottom:218.462533pt;}
.y8c{bottom:218.714533pt;}
.y11a{bottom:219.470400pt;}
.y26{bottom:224.163333pt;}
.y1a9{bottom:225.886133pt;}
.ydb{bottom:226.681867pt;}
.y1e9{bottom:231.345333pt;}
.y99{bottom:234.235867pt;}
.y5d{bottom:234.462533pt;}
.y8b{bottom:234.714533pt;}
.y1a8{bottom:239.219467pt;}
.y25{bottom:240.163333pt;}
.yda{bottom:241.124533pt;}
.y13c{bottom:241.822533pt;}
.y1e8{bottom:244.678667pt;}
.y5c{bottom:250.462533pt;}
.yc9{bottom:250.475867pt;}
.y8a{bottom:250.714533pt;}
.y1a7{bottom:252.552800pt;}
.y24{bottom:256.163333pt;}
.y1e7{bottom:258.012000pt;}
.y13b{bottom:259.155867pt;}
.y5b{bottom:266.462533pt;}
.yc8{bottom:266.475867pt;}
.y89{bottom:266.721867pt;}
.yd9{bottom:266.916400pt;}
.y119{bottom:267.619600pt;}
.y113{bottom:268.819467pt;}
.y1e6{bottom:271.345333pt;}
.y23{bottom:272.163333pt;}
.yd7{bottom:279.801733pt;}
.y1a6{bottom:281.984533pt;}
.y118{bottom:282.062267pt;}
.y5a{bottom:282.462533pt;}
.yc7{bottom:282.475867pt;}
.y88{bottom:282.721867pt;}
.y1e5{bottom:284.678667pt;}
.y22{bottom:288.163333pt;}
.yd8{bottom:292.697733pt;}
.y117{bottom:296.504933pt;}
.y1e4{bottom:298.012000pt;}
.y59{bottom:298.462533pt;}
.yc6{bottom:298.475867pt;}
.y87{bottom:298.721867pt;}
.y147{bottom:300.041600pt;}
.y21{bottom:304.163333pt;}
.y1e3{bottom:311.345333pt;}
.y146{bottom:314.036267pt;}
.y58{bottom:314.462533pt;}
.yc5{bottom:314.475867pt;}
.y86{bottom:314.721867pt;}
.y20{bottom:320.163333pt;}
.yd6{bottom:321.489200pt;}
.y116{bottom:324.515600pt;}
.y1e2{bottom:324.678667pt;}
.y57{bottom:330.462533pt;}
.y1a5{bottom:330.464533pt;}
.yc4{bottom:330.475867pt;}
.y85{bottom:330.721867pt;}
.y148{bottom:332.062667pt;}
.y1f{bottom:336.163333pt;}
.y1e1{bottom:338.012000pt;}
.yd5{bottom:338.822533pt;}
.y15a{bottom:339.573867pt;}
.y149{bottom:340.887733pt;}
.y1a4{bottom:346.104533pt;}
.y56{bottom:346.462533pt;}
.yc3{bottom:346.475867pt;}
.y84{bottom:346.721867pt;}
.y1e0{bottom:351.345333pt;}
.y170{bottom:351.358667pt;}
.y2e{bottom:352.163333pt;}
.y1e{bottom:352.165333pt;}
.y183{bottom:353.964190pt;}
.y115{bottom:355.529200pt;}
.yd4{bottom:356.155867pt;}
.y178{bottom:358.821748pt;}
.y55{bottom:362.462533pt;}
.yc2{bottom:362.475867pt;}
.y181{bottom:362.716606pt;}
.y83{bottom:362.721867pt;}
.y1df{bottom:364.678667pt;}
.y2d{bottom:368.163333pt;}
.yd3{bottom:373.489200pt;}
.y14e{bottom:375.631867pt;}
.y171{bottom:375.903076pt;}
.y156{bottom:376.318933pt;}
.y14b{bottom:377.156400pt;}
.y1de{bottom:378.012000pt;}
.y1a3{bottom:378.104533pt;}
.y182{bottom:378.179207pt;}
.y54{bottom:378.462533pt;}
.y82{bottom:378.721867pt;}
.y1d{bottom:383.805333pt;}
.y2c{bottom:384.163333pt;}
.y1dd{bottom:391.345333pt;}
.y172{bottom:392.316209pt;}
.yc1{bottom:394.115867pt;}
.y53{bottom:394.462533pt;}
.y81{bottom:394.721867pt;}
.y17b{bottom:396.211067pt;}
.y124{bottom:397.711200pt;}
.y1dc{bottom:404.678667pt;}
.y173{bottom:409.792807pt;}
.y52{bottom:410.462533pt;}
.y1a2{bottom:410.464533pt;}
.y123{bottom:411.705867pt;}
.y17c{bottom:413.687665pt;}
.yeb{bottom:414.020533pt;}
.y1db{bottom:418.012000pt;}
.y122{bottom:425.700533pt;}
.yc0{bottom:425.995867pt;}
.y1a1{bottom:426.104533pt;}
.y80{bottom:426.361867pt;}
.y51{bottom:426.462533pt;}
.yea{bottom:428.015200pt;}
.y174{bottom:429.575150pt;}
.y1da{bottom:431.345333pt;}
.y17d{bottom:433.470007pt;}
.ye9{bottom:442.009867pt;}
.y50{bottom:442.462533pt;}
.y1d9{bottom:444.678667pt;}
.y138{bottom:446.177333pt;}
.y175{bottom:447.512897pt;}
.y1a{bottom:449.123733pt;}
.y126{bottom:450.090021pt;}
.y128{bottom:450.188958pt;}
.y17e{bottom:451.407755pt;}
.ye8{bottom:456.004533pt;}
.y1d8{bottom:458.012000pt;}
.y4f{bottom:458.462533pt;}
.y1a0{bottom:458.464533pt;}
.y7f{bottom:458.588533pt;}
.y16f{bottom:464.727451pt;}
.y176{bottom:465.582401pt;}
.y17f{bottom:469.477259pt;}
.ye7{bottom:469.999200pt;}
.y127{bottom:470.614938pt;}
.y1d7{bottom:471.345333pt;}
.y19{bottom:473.430400pt;}
.y19f{bottom:474.104533pt;}
.y4e{bottom:474.462533pt;}
.ybf{bottom:474.475867pt;}
.y125{bottom:474.491467pt;}
.y7e{bottom:474.588533pt;}
.y177{bottom:482.466094pt;}
.y16e{bottom:483.631733pt;}
.ye6{bottom:483.993867pt;}
.y1d6{bottom:484.678667pt;}
.y180{bottom:486.360951pt;}
.y18{bottom:489.430400pt;}
.y4d{bottom:490.462533pt;}
.ybe{bottom:490.475867pt;}
.y7d{bottom:490.588533pt;}
.y1d5{bottom:498.012000pt;}
.y112{bottom:504.621333pt;}
.y17{bottom:505.430400pt;}
.y159{bottom:506.116137pt;}
.y4c{bottom:506.462533pt;}
.y19e{bottom:506.464533pt;}
.ybd{bottom:506.475867pt;}
.y7c{bottom:506.588533pt;}
.y136{bottom:507.652562pt;}
.y134{bottom:508.054848pt;}
.yfb{bottom:508.188133pt;}
.y132{bottom:508.309957pt;}
.y130{bottom:508.388452pt;}
.y17a{bottom:508.525707pt;}
.y1d4{bottom:511.345333pt;}
.y158{bottom:518.143650pt;}
.yee{bottom:519.300133pt;}
.y179{bottom:520.553220pt;}
.y16{bottom:521.430400pt;}
.y131{bottom:521.928828pt;}
.y133{bottom:522.448857pt;}
.y4b{bottom:522.462533pt;}
.y19d{bottom:522.464533pt;}
.ybc{bottom:522.475867pt;}
.y12f{bottom:522.537163pt;}
.y7b{bottom:522.588533pt;}
.y135{bottom:523.008133pt;}
.y13a{bottom:523.085733pt;}
.y107{bottom:523.492990pt;}
.y137{bottom:524.180000pt;}
.y1d3{bottom:524.678667pt;}
.y12e{bottom:532.260723pt;}
.y106{bottom:532.651867pt;}
.y184{bottom:534.028679pt;}
.y15d{bottom:534.376000pt;}
.y14d{bottom:535.083680pt;}
.y15{bottom:537.430400pt;}
.y1d2{bottom:538.012000pt;}
.y4a{bottom:538.462533pt;}
.y19c{bottom:538.464533pt;}
.ybb{bottom:538.475867pt;}
.y7a{bottom:538.588533pt;}
.y16d{bottom:543.829872pt;}
.y165{bottom:544.041302pt;}
.y15c{bottom:545.045988pt;}
.yf5{bottom:545.693733pt;}
.yfc{bottom:550.439733pt;}
.y1d1{bottom:551.345333pt;}
.y14{bottom:553.430400pt;}
.y49{bottom:554.462533pt;}
.y19b{bottom:554.464533pt;}
.yba{bottom:554.475867pt;}
.y79{bottom:554.588533pt;}
.y166{bottom:560.911200pt;}
.y15e{bottom:561.122630pt;}
.y150{bottom:561.971559pt;}
.yf6{bottom:564.110324pt;}
.y1d0{bottom:564.678667pt;}
.y13{bottom:569.430400pt;}
.y102{bottom:569.721600pt;}
.y48{bottom:570.462533pt;}
.y19a{bottom:570.464533pt;}
.yb9{bottom:570.475867pt;}
.y78{bottom:570.588533pt;}
.y167{bottom:577.324333pt;}
.y15f{bottom:577.535763pt;}
.y1cf{bottom:578.012000pt;}
.y129{bottom:578.131200pt;}
.y151{bottom:578.384692pt;}
.yf7{bottom:582.515932pt;}
.y12{bottom:585.430400pt;}
.y199{bottom:586.104533pt;}
.y47{bottom:586.462533pt;}
.yb8{bottom:586.475867pt;}
.y77{bottom:586.588533pt;}
.y1ce{bottom:591.345333pt;}
.y108{bottom:593.288533pt;}
.y168{bottom:594.800931pt;}
.y160{bottom:595.012362pt;}
.y152{bottom:595.870702pt;}
.yf8{bottom:600.921541pt;}
.y11{bottom:601.430400pt;}
.y46{bottom:602.462533pt;}
.yb7{bottom:602.475867pt;}
.y76{bottom:602.588533pt;}
.y1cd{bottom:604.678667pt;}
.y111{bottom:608.415733pt;}
.y169{bottom:614.583274pt;}
.y153{bottom:614.617812pt;}
.y161{bottom:614.794704pt;}
.y10{bottom:617.430400pt;}
.y1cc{bottom:618.012000pt;}
.y45{bottom:618.462533pt;}
.y198{bottom:618.464533pt;}
.yb6{bottom:618.475867pt;}
.y75{bottom:618.588533pt;}
.yf9{bottom:619.338131pt;}
.y110{bottom:619.365333pt;}
.y103{bottom:619.831858pt;}
.y10d{bottom:623.755895pt;}
.y12a{bottom:624.816062pt;}
.y1cb{bottom:631.345333pt;}
.y16a{bottom:632.521021pt;}
.y154{bottom:632.555559pt;}
.y162{bottom:632.732451pt;}
.yf{bottom:633.430400pt;}
.y10c{bottom:633.518774pt;}
.y10f{bottom:633.536062pt;}
.y44{bottom:634.462533pt;}
.y197{bottom:634.464533pt;}
.yb5{bottom:634.475867pt;}
.y74{bottom:634.588533pt;}
.yfa{bottom:637.743740pt;}
.yec{bottom:642.590400pt;}
.y10b{bottom:643.281654pt;}
.y1ca{bottom:644.678667pt;}
.ye{bottom:649.430400pt;}
.y43{bottom:650.462533pt;}
.y196{bottom:650.464533pt;}
.yb4{bottom:650.475867pt;}
.y73{bottom:650.588533pt;}
.y16b{bottom:650.590525pt;}
.y155{bottom:650.625063pt;}
.y163{bottom:650.801955pt;}
.y10a{bottom:653.044533pt;}
.y14a{bottom:654.036533pt;}
.y1c9{bottom:658.012000pt;}
.y10e{bottom:659.120133pt;}
.y109{bottom:663.791200pt;}
.yd{bottom:665.430400pt;}
.y195{bottom:666.104533pt;}
.y42{bottom:666.462533pt;}
.yb3{bottom:666.475867pt;}
.y72{bottom:666.588533pt;}
.y15b{bottom:667.457467pt;}
.y16c{bottom:667.474218pt;}
.y164{bottom:667.685648pt;}
.y104{bottom:669.953097pt;}
.y12b{bottom:670.971082pt;}
.y1c8{bottom:671.345333pt;}
.yef{bottom:672.442800pt;}
.y41{bottom:682.462533pt;}
.yb2{bottom:682.475867pt;}
.y71{bottom:682.588533pt;}
.y1c7{bottom:684.678667pt;}
.yf0{bottom:690.848409pt;}
.y14f{bottom:695.667067pt;}
.y157{bottom:696.354133pt;}
.y14c{bottom:697.191600pt;}
.y1c6{bottom:698.012000pt;}
.y40{bottom:698.462533pt;}
.y194{bottom:698.464533pt;}
.yb1{bottom:698.475867pt;}
.y70{bottom:698.588533pt;}
.y101{bottom:701.184009pt;}
.yc{bottom:705.570933pt;}
.yf1{bottom:709.254017pt;}
.y1c5{bottom:711.345333pt;}
.y100{bottom:713.351917pt;}
.y3f{bottom:714.462533pt;}
.y193{bottom:714.464533pt;}
.yb0{bottom:714.475867pt;}
.y6f{bottom:714.588533pt;}
.yb{bottom:716.638267pt;}
.y12c{bottom:717.744251pt;}
.y105{bottom:720.063355pt;}
.y1c4{bottom:724.678667pt;}
.yff{bottom:725.519825pt;}
.yf2{bottom:727.670607pt;}
.y3e{bottom:730.462533pt;}
.y192{bottom:730.464533pt;}
.yaf{bottom:730.475867pt;}
.y6e{bottom:730.588533pt;}
.ya{bottom:731.218667pt;}
.yfe{bottom:737.687733pt;}
.y1c3{bottom:738.012000pt;}
.yf3{bottom:746.076216pt;}
.y3d{bottom:746.462533pt;}
.y191{bottom:746.464533pt;}
.yae{bottom:746.475867pt;}
.y6d{bottom:746.588533pt;}
.yfd{bottom:751.083067pt;}
.y1c2{bottom:751.345333pt;}
.y9{bottom:760.052400pt;}
.y12d{bottom:760.298317pt;}
.y3c{bottom:762.462533pt;}
.y190{bottom:762.464533pt;}
.yad{bottom:762.475867pt;}
.y6c{bottom:762.588533pt;}
.yf4{bottom:764.481825pt;}
.y1c1{bottom:764.678667pt;}
.y8{bottom:767.229867pt;}
.yed{bottom:769.339067pt;}
.y1c0{bottom:778.012000pt;}
.y3b{bottom:778.462533pt;}
.y18f{bottom:778.464533pt;}
.yac{bottom:778.475867pt;}
.y6b{bottom:778.588533pt;}
.y7{bottom:779.229867pt;}
.y1bf{bottom:791.345333pt;}
.y3a{bottom:794.462533pt;}
.y18e{bottom:794.464533pt;}
.yab{bottom:794.475867pt;}
.y6a{bottom:794.588533pt;}
.y6{bottom:796.052400pt;}
.y1be{bottom:804.678667pt;}
.y39{bottom:810.462533pt;}
.y18d{bottom:810.464533pt;}
.yaa{bottom:810.475867pt;}
.y69{bottom:810.588533pt;}
.y1bd{bottom:818.012000pt;}
.y5{bottom:821.583067pt;}
.y38{bottom:826.462533pt;}
.y18c{bottom:826.464533pt;}
.ya9{bottom:826.475867pt;}
.y68{bottom:826.582533pt;}
.y1bc{bottom:831.345333pt;}
.y37{bottom:842.462533pt;}
.y18b{bottom:842.464533pt;}
.ya8{bottom:842.475867pt;}
.y67{bottom:842.582533pt;}
.y1bb{bottom:844.678667pt;}
.y1ba{bottom:858.012000pt;}
.y36{bottom:858.462533pt;}
.y18a{bottom:858.464533pt;}
.ya7{bottom:858.475867pt;}
.y66{bottom:858.582533pt;}
.y4{bottom:862.635733pt;}
.y1b9{bottom:871.345333pt;}
.y35{bottom:874.462533pt;}
.y189{bottom:874.464533pt;}
.ya6{bottom:874.475867pt;}
.y1fa{bottom:884.678667pt;}
.y1b8{bottom:884.680800pt;}
.y65{bottom:890.222533pt;}
.y34{bottom:890.462533pt;}
.y98{bottom:890.464533pt;}
.ya5{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y1f9{bottom:898.012000pt;}
.y1b7{bottom:898.014133pt;}
.y33{bottom:906.462533pt;}
.ya4{bottom:906.475867pt;}
.y1f8{bottom:911.345333pt;}
.y1b6{bottom:911.347467pt;}
.y64{bottom:922.102533pt;}
.y97{bottom:922.104533pt;}
.y32{bottom:922.462533pt;}
.ya3{bottom:922.475867pt;}
.y1f7{bottom:924.678667pt;}
.y1b5{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y96{bottom:1006.594400pt;}
.y114{bottom:1006.597067pt;}
.y1f6{bottom:1006.598667pt;}
.y30{bottom:1009.860000pt;}
.y2f{bottom:1022.660000pt;}
.h8{height:14.713918pt;}
.h6{height:17.000371pt;}
.h9{height:25.238281pt;}
.h20{height:26.192288pt;}
.h2{height:27.179688pt;}
.h29{height:27.406444pt;}
.h28{height:27.406488pt;}
.h21{height:28.573229pt;}
.h1c{height:28.589572pt;}
.h1a{height:28.589576pt;}
.h1e{height:28.589712pt;}
.h1b{height:28.589730pt;}
.h25{height:28.887209pt;}
.he{height:29.140625pt;}
.h7{height:29.160156pt;}
.hd{height:29.169756pt;}
.h19{height:29.315623pt;}
.h16{height:29.645833pt;}
.h22{height:29.829148pt;}
.h24{height:29.907643pt;}
.h2a{height:29.928645pt;}
.h2b{height:30.832249pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h23{height:31.320552pt;}
.h18{height:31.980397pt;}
.hf{height:37.057292pt;}
.h12{height:37.081292pt;}
.h17{height:37.353387pt;}
.h1f{height:37.381654pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.hc{height:38.880208pt;}
.h13{height:39.200000pt;}
.h14{height:46.719068pt;}
.h15{height:46.727068pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1d{height:277.244000pt;}
.h26{height:369.814667pt;}
.h27{height:385.230667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w3{width:493.797333pt;}
.w2{width:512.142667pt;}
.w4{width:563.033333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:8.419200pt;}
.x2c{left:62.740133pt;}
.xb{left:68.031467pt;}
.x19{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x2d{left:88.818933pt;}
.x61{left:90.708800pt;}
.x4{left:94.488133pt;}
.xc{left:98.270400pt;}
.x42{left:102.657200pt;}
.x40{left:105.884000pt;}
.x63{left:109.606267pt;}
.x3{left:111.501467pt;}
.x6{left:117.170133pt;}
.x41{left:126.025200pt;}
.x4b{left:130.034427pt;}
.x2b{left:131.329333pt;}
.x47{left:133.863264pt;}
.x48{left:135.293766pt;}
.x46{left:141.166355pt;}
.x20{left:143.080533pt;}
.x43{left:149.391729pt;}
.x1e{left:151.735867pt;}
.x3c{left:159.401333pt;}
.x60{left:169.006667pt;}
.x1d{left:172.206400pt;}
.x33{left:175.002863pt;}
.x32{left:181.095950pt;}
.x31{left:182.587333pt;}
.x5{left:189.223467pt;}
.x54{left:199.683467pt;}
.x1b{left:201.119200pt;}
.x1c{left:202.034800pt;}
.x34{left:206.037376pt;}
.x16{left:209.704800pt;}
.x55{left:211.745033pt;}
.x59{left:219.324309pt;}
.x57{left:222.185314pt;}
.x58{left:223.615817pt;}
.x1a{left:229.558533pt;}
.x56{left:237.158533pt;}
.x35{left:238.474966pt;}
.x1f{left:247.715467pt;}
.x49{left:249.620987pt;}
.x2e{left:290.261467pt;}
.x44{left:291.295200pt;}
.x18{left:304.019467pt;}
.x4f{left:311.699370pt;}
.x36{left:313.809455pt;}
.x4e{left:315.322682pt;}
.x4d{left:321.854054pt;}
.x4c{left:327.858400pt;}
.x17{left:330.312800pt;}
.x21{left:335.204000pt;}
.x22{left:343.028933pt;}
.x37{left:346.433468pt;}
.x2f{left:350.540148pt;}
.x45{left:382.366000pt;}
.x4a{left:395.030400pt;}
.x5c{left:398.366862pt;}
.x5a{left:401.227867pt;}
.x5b{left:402.658369pt;}
.xa{left:404.481333pt;}
.xe{left:406.310400pt;}
.x5d{left:409.914404pt;}
.x26{left:411.051333pt;}
.x5e{left:417.236318pt;}
.x23{left:422.154533pt;}
.x12{left:425.190533pt;}
.x7{left:427.088667pt;}
.x62{left:428.980800pt;}
.xf{left:436.550400pt;}
.x30{left:438.178983pt;}
.x64{left:447.878400pt;}
.x38{left:454.499899pt;}
.x13{left:455.430533pt;}
.x8{left:457.328667pt;}
.x24{left:460.095867pt;}
.xd{left:466.923733pt;}
.x53{left:484.628837pt;}
.x51{left:487.489842pt;}
.x52{left:488.920345pt;}
.x50{left:494.792933pt;}
.x5f{left:501.984174pt;}
.x25{left:505.439994pt;}
.x3f{left:515.044800pt;}
.x3e{left:526.931733pt;}
.x39{left:540.489930pt;}
.x14{left:544.803867pt;}
.x29{left:554.874000pt;}
.x2a{left:555.880800pt;}
.x3a{left:569.356050pt;}
.x11{left:589.770933pt;}
.x27{left:615.351733pt;}
.x2{left:616.324800pt;}
.x28{left:628.205600pt;}
.x3b{left:633.023333pt;}
.x10{left:653.391467pt;}
.x15{left:672.289067pt;}
}




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