
    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_acf6ef52ea5677a56f3b34c1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_eca0f9a4eb0d417e529c3eaa.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_78c5012eab0dea95e97a6d62.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_d3410e1eb0646fa4adc013f8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.032715;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_f0442792955c56229922168f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.026855;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_c1a3163fe3e5e4064d976239.woff')format("woff");}.ff6{font-family:ff6;line-height:1.011230;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_a91cf425616442d54f0a263c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.123000;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_79ce9f98dbd8a6ef079da113.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000048;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_7b4c5d3899369f7355be274f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.710938;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_e86b42e2ad71a647fa6399f7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_6044b2f747c61501202eb84f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_fa021cd14664fdfafcda1478.woff')format("woff");}.ffc{font-family:ffc;line-height:0.902832;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_4976148dca1213c1d2618abf.woff')format("woff");}.ffd{font-family:ffd;line-height:0.984000;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_3fd6f4d949bf0c7d10dc7966.woff')format("woff");}.ffe{font-family:ffe;line-height:0.976109;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_7a4e69f307bffc9909ab8ebc.woff')format("woff");}.fff{font-family:fff;line-height:1.011230;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_a5635ffc0c1f3f92bedb1ec4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.976091;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244997,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);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:27.006000px;}
.ls1c{letter-spacing:-12.408000px;}
.ls1a{letter-spacing:-11.880000px;}
.ls18{letter-spacing:-1.386000px;}
.ls7{letter-spacing:-1.320000px;}
.ls26{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.990000px;}
.ls20{letter-spacing:-0.864000px;}
.ls9{letter-spacing:-0.858000px;}
.ls12{letter-spacing:-0.840000px;}
.ls11{letter-spacing:-0.792000px;}
.ls24{letter-spacing:-0.756000px;}
.ls13{letter-spacing:-0.726000px;}
.ls4{letter-spacing:-0.691200px;}
.ls15{letter-spacing:-0.660000px;}
.ls22{letter-spacing:-0.648000px;}
.ls19{letter-spacing:-0.594000px;}
.ls17{letter-spacing:-0.528000px;}
.ls3{letter-spacing:-0.510000px;}
.ls21{letter-spacing:-0.486000px;}
.ls28{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.396000px;}
.ls1e{letter-spacing:-0.330000px;}
.ls27{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.264000px;}
.ls1d{letter-spacing:-0.066000px;}
.ls1f{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.264000px;}
.ls1{letter-spacing:0.324000px;}
.ls1b{letter-spacing:0.396000px;}
.ls23{letter-spacing:0.486000px;}
.ls25{letter-spacing:0.648000px;}
.ls6{letter-spacing:1.056000px;}
.ls0{letter-spacing:43.181364px;}
.lse{letter-spacing:84.882000px;}
.ls10{letter-spacing:130.788000px;}
.lsa{letter-spacing:139.314000px;}
.lsb{letter-spacing:140.868000px;}
.lsf{letter-spacing:149.394000px;}
.lsc{letter-spacing:150.948000px;}
.lsd{letter-spacing:217.728000px;}
.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;}
}
.ws2b{word-spacing:-17.928000px;}
.ws2c{word-spacing:-17.556000px;}
.wsdc{word-spacing:-16.500000px;}
.wsc7{word-spacing:-16.434000px;}
.wsf8{word-spacing:-16.302000px;}
.wsdb{word-spacing:-16.236000px;}
.ws101{word-spacing:-15.972000px;}
.wsec{word-spacing:-15.774000px;}
.ws5{word-spacing:-14.940000px;}
.ws190{word-spacing:-14.148000px;}
.ws6{word-spacing:-13.824000px;}
.ws122{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.366000px;}
.ws8{word-spacing:-12.150000px;}
.ws3{word-spacing:-10.896000px;}
.ws4{word-spacing:-9.892800px;}
.ws71{word-spacing:-9.619500px;}
.ws2{word-spacing:-9.618000px;}
.ws1{word-spacing:-9.542544px;}
.ws198{word-spacing:-7.668000px;}
.ws84{word-spacing:-5.940000px;}
.ws95{word-spacing:-4.752000px;}
.wsfc{word-spacing:-4.488000px;}
.ws120{word-spacing:-4.158000px;}
.wscd{word-spacing:-4.026000px;}
.ws104{word-spacing:-3.894000px;}
.ws145{word-spacing:-3.888000px;}
.ws1aa{word-spacing:-3.834000px;}
.ws32{word-spacing:-3.696000px;}
.ws102{word-spacing:-3.630000px;}
.wsed{word-spacing:-3.432000px;}
.ws5e{word-spacing:-3.234000px;}
.wsd6{word-spacing:-3.168000px;}
.ws36{word-spacing:-3.102000px;}
.ws6f{word-spacing:-3.036000px;}
.ws189{word-spacing:-3.024000px;}
.ws117{word-spacing:-2.970000px;}
.wsd4{word-spacing:-2.904000px;}
.ws78{word-spacing:-2.838000px;}
.wseb{word-spacing:-2.772000px;}
.ws19b{word-spacing:-2.754000px;}
.wsd8{word-spacing:-2.706000px;}
.ws172{word-spacing:-2.700000px;}
.ws147{word-spacing:-2.646000px;}
.ws8f{word-spacing:-2.640000px;}
.ws169{word-spacing:-2.592000px;}
.ws112{word-spacing:-2.574000px;}
.ws14b{word-spacing:-2.538000px;}
.wse0{word-spacing:-2.508000px;}
.ws1a2{word-spacing:-2.484000px;}
.ws3b{word-spacing:-2.442000px;}
.ws17d{word-spacing:-2.430000px;}
.ws121{word-spacing:-2.376000px;}
.ws1f{word-spacing:-2.322000px;}
.ws33{word-spacing:-2.310000px;}
.ws196{word-spacing:-2.268000px;}
.ws106{word-spacing:-2.244000px;}
.ws166{word-spacing:-2.214000px;}
.ws183{word-spacing:-2.160000px;}
.ws5d{word-spacing:-2.112000px;}
.ws16f{word-spacing:-2.106000px;}
.ws170{word-spacing:-2.052000px;}
.ws8b{word-spacing:-2.046000px;}
.ws1b0{word-spacing:-1.998000px;}
.wsb2{word-spacing:-1.980000px;}
.ws13c{word-spacing:-1.944000px;}
.ws99{word-spacing:-1.914000px;}
.ws12f{word-spacing:-1.890000px;}
.ws2d{word-spacing:-1.848000px;}
.ws21{word-spacing:-1.836000px;}
.wsc4{word-spacing:-1.782000px;}
.ws20{word-spacing:-1.728000px;}
.ws8a{word-spacing:-1.716000px;}
.ws1e{word-spacing:-1.674000px;}
.ws50{word-spacing:-1.650000px;}
.ws27{word-spacing:-1.620000px;}
.ws79{word-spacing:-1.584000px;}
.ws195{word-spacing:-1.566000px;}
.ws37{word-spacing:-1.518000px;}
.ws17b{word-spacing:-1.512000px;}
.ws191{word-spacing:-1.458000px;}
.ws2f{word-spacing:-1.452000px;}
.ws29{word-spacing:-1.440000px;}
.ws123{word-spacing:-1.404000px;}
.ws108{word-spacing:-1.386000px;}
.ws13a{word-spacing:-1.350000px;}
.ws34{word-spacing:-1.320000px;}
.wsaf{word-spacing:-1.302000px;}
.ws2a{word-spacing:-1.296000px;}
.ws91{word-spacing:-1.254000px;}
.ws25{word-spacing:-1.242000px;}
.ws31{word-spacing:-1.188000px;}
.ws148{word-spacing:-1.134000px;}
.wsd7{word-spacing:-1.122000px;}
.ws1af{word-spacing:-1.080000px;}
.ws4d{word-spacing:-1.056000px;}
.wsb0{word-spacing:-1.050000px;}
.ws1d{word-spacing:-1.026000px;}
.wsf3{word-spacing:-0.990000px;}
.ws12b{word-spacing:-0.972000px;}
.ws3d{word-spacing:-0.924000px;}
.ws144{word-spacing:-0.918000px;}
.ws13f{word-spacing:-0.864000px;}
.ws89{word-spacing:-0.858000px;}
.ws28{word-spacing:-0.810000px;}
.ws105{word-spacing:-0.792000px;}
.ws19f{word-spacing:-0.756000px;}
.wsee{word-spacing:-0.726000px;}
.wsa0{word-spacing:-0.702000px;}
.ws74{word-spacing:-0.660000px;}
.ws193{word-spacing:-0.648000px;}
.wscc{word-spacing:-0.594000px;}
.ws171{word-spacing:-0.540000px;}
.ws92{word-spacing:-0.528000px;}
.ws16{word-spacing:-0.486000px;}
.ws87{word-spacing:-0.462000px;}
.ws8d{word-spacing:-0.396000px;}
.ws158{word-spacing:-0.378000px;}
.ws11a{word-spacing:-0.330000px;}
.ws13{word-spacing:-0.324000px;}
.ws157{word-spacing:-0.270000px;}
.ws66{word-spacing:-0.264000px;}
.wsc{word-spacing:-0.216000px;}
.wsd2{word-spacing:-0.198000px;}
.wsc1{word-spacing:-0.162000px;}
.ws39{word-spacing:-0.132000px;}
.ws9{word-spacing:-0.111318px;}
.ws156{word-spacing:-0.108000px;}
.ws86{word-spacing:-0.066000px;}
.ws130{word-spacing:-0.054000px;}
.wsa{word-spacing:0.000000px;}
.ws16d{word-spacing:0.054000px;}
.ws11f{word-spacing:0.066000px;}
.ws26{word-spacing:0.108000px;}
.ws3c{word-spacing:0.132000px;}
.wsc2{word-spacing:0.162000px;}
.ws90{word-spacing:0.198000px;}
.ws146{word-spacing:0.216000px;}
.wsd5{word-spacing:0.264000px;}
.ws150{word-spacing:0.270000px;}
.wsbb{word-spacing:0.324000px;}
.ws10d{word-spacing:0.330000px;}
.ws131{word-spacing:0.378000px;}
.wsb1{word-spacing:0.396000px;}
.ws22{word-spacing:0.432000px;}
.ws46{word-spacing:0.462000px;}
.ws15d{word-spacing:0.486000px;}
.wsb{word-spacing:0.510000px;}
.wsb4{word-spacing:0.528000px;}
.ws9f{word-spacing:0.540000px;}
.ws52{word-spacing:0.594000px;}
.ws174{word-spacing:0.648000px;}
.ws30{word-spacing:0.660000px;}
.wsd{word-spacing:0.691200px;}
.ws16a{word-spacing:0.702000px;}
.ws59{word-spacing:0.726000px;}
.ws152{word-spacing:0.756000px;}
.ws41{word-spacing:0.792000px;}
.ws138{word-spacing:0.810000px;}
.wsae{word-spacing:0.840000px;}
.ws119{word-spacing:0.858000px;}
.ws19c{word-spacing:0.864000px;}
.ws14c{word-spacing:0.918000px;}
.ws43{word-spacing:0.924000px;}
.ws13b{word-spacing:0.972000px;}
.wse3{word-spacing:0.990000px;}
.ws13e{word-spacing:1.026000px;}
.ws11c{word-spacing:1.056000px;}
.wsad{word-spacing:1.080000px;}
.ws96{word-spacing:1.122000px;}
.ws1a{word-spacing:1.134000px;}
.wse7{word-spacing:1.188000px;}
.ws1b{word-spacing:1.242000px;}
.ws7f{word-spacing:1.254000px;}
.ws15{word-spacing:1.296000px;}
.ws6a{word-spacing:1.320000px;}
.ws159{word-spacing:1.350000px;}
.wsc9{word-spacing:1.386000px;}
.ws129{word-spacing:1.404000px;}
.ws5f{word-spacing:1.452000px;}
.ws18{word-spacing:1.512000px;}
.ws113{word-spacing:1.518000px;}
.ws16c{word-spacing:1.566000px;}
.wse6{word-spacing:1.584000px;}
.ws142{word-spacing:1.620000px;}
.ws51{word-spacing:1.650000px;}
.ws12{word-spacing:1.674000px;}
.wsf0{word-spacing:1.716000px;}
.ws1c{word-spacing:1.728000px;}
.ws98{word-spacing:1.782000px;}
.ws128{word-spacing:1.836000px;}
.wse2{word-spacing:1.848000px;}
.ws12e{word-spacing:1.890000px;}
.ws8c{word-spacing:1.914000px;}
.ws103{word-spacing:1.980000px;}
.ws14f{word-spacing:1.998000px;}
.ws44{word-spacing:2.046000px;}
.ws132{word-spacing:2.052000px;}
.ws140{word-spacing:2.106000px;}
.wse8{word-spacing:2.112000px;}
.ws15c{word-spacing:2.160000px;}
.ws4c{word-spacing:2.178000px;}
.wsbc{word-spacing:2.214000px;}
.wsde{word-spacing:2.244000px;}
.ws185{word-spacing:2.268000px;}
.wsd3{word-spacing:2.310000px;}
.ws5a{word-spacing:2.376000px;}
.wsba{word-spacing:2.430000px;}
.ws49{word-spacing:2.442000px;}
.ws16e{word-spacing:2.484000px;}
.ws62{word-spacing:2.508000px;}
.ws14{word-spacing:2.538000px;}
.ws54{word-spacing:2.574000px;}
.ws24{word-spacing:2.592000px;}
.ws76{word-spacing:2.640000px;}
.ws186{word-spacing:2.646000px;}
.ws149{word-spacing:2.700000px;}
.ws5b{word-spacing:2.706000px;}
.ws134{word-spacing:2.754000px;}
.wsff{word-spacing:2.772000px;}
.ws1a4{word-spacing:2.808000px;}
.ws7a{word-spacing:2.838000px;}
.ws139{word-spacing:2.862000px;}
.ws42{word-spacing:2.904000px;}
.ws194{word-spacing:2.916000px;}
.ws3e{word-spacing:2.970000px;}
.ws12a{word-spacing:3.024000px;}
.ws63{word-spacing:3.036000px;}
.ws1a1{word-spacing:3.078000px;}
.ws60{word-spacing:3.102000px;}
.wsac{word-spacing:3.132000px;}
.ws2e{word-spacing:3.168000px;}
.ws177{word-spacing:3.186000px;}
.ws9b{word-spacing:3.234000px;}
.ws15e{word-spacing:3.240000px;}
.wse{word-spacing:3.294000px;}
.ws7e{word-spacing:3.300000px;}
.ws57{word-spacing:3.366000px;}
.ws19d{word-spacing:3.402000px;}
.ws94{word-spacing:3.432000px;}
.ws19{word-spacing:3.456000px;}
.wsc5{word-spacing:3.498000px;}
.ws18a{word-spacing:3.510000px;}
.wsb6{word-spacing:3.564000px;}
.ws14d{word-spacing:3.618000px;}
.ws115{word-spacing:3.630000px;}
.ws184{word-spacing:3.672000px;}
.ws10b{word-spacing:3.696000px;}
.wsc6{word-spacing:3.762000px;}
.ws17a{word-spacing:3.780000px;}
.wsf4{word-spacing:3.828000px;}
.ws141{word-spacing:3.834000px;}
.ws153{word-spacing:3.888000px;}
.ws38{word-spacing:3.894000px;}
.ws163{word-spacing:3.942000px;}
.wsdd{word-spacing:3.960000px;}
.ws70{word-spacing:4.026000px;}
.ws167{word-spacing:4.050000px;}
.wsea{word-spacing:4.092000px;}
.ws175{word-spacing:4.104000px;}
.ws88{word-spacing:4.158000px;}
.ws155{word-spacing:4.212000px;}
.wsf9{word-spacing:4.224000px;}
.ws18f{word-spacing:4.266000px;}
.ws65{word-spacing:4.290000px;}
.ws199{word-spacing:4.320000px;}
.ws3f{word-spacing:4.356000px;}
.ws11{word-spacing:4.374000px;}
.wsfe{word-spacing:4.422000px;}
.ws173{word-spacing:4.428000px;}
.ws168{word-spacing:4.482000px;}
.wsb9{word-spacing:4.536000px;}
.ws6c{word-spacing:4.554000px;}
.ws1a7{word-spacing:4.590000px;}
.ws9c{word-spacing:4.620000px;}
.wsf7{word-spacing:4.686000px;}
.ws97{word-spacing:4.752000px;}
.ws12c{word-spacing:4.806000px;}
.ws11d{word-spacing:4.818000px;}
.ws45{word-spacing:4.884000px;}
.ws17{word-spacing:4.914000px;}
.ws143{word-spacing:4.968000px;}
.wsf5{word-spacing:5.016000px;}
.ws1a8{word-spacing:5.022000px;}
.wsf{word-spacing:5.076000px;}
.wsb5{word-spacing:5.082000px;}
.ws10{word-spacing:5.130000px;}
.ws100{word-spacing:5.148000px;}
.ws110{word-spacing:5.214000px;}
.ws15f{word-spacing:5.238000px;}
.ws72{word-spacing:5.280000px;}
.ws192{word-spacing:5.292000px;}
.ws1b1{word-spacing:5.346000px;}
.ws17c{word-spacing:5.400000px;}
.wse4{word-spacing:5.412000px;}
.ws154{word-spacing:5.454000px;}
.ws10f{word-spacing:5.478000px;}
.ws1a3{word-spacing:5.508000px;}
.wsf6{word-spacing:5.544000px;}
.ws15b{word-spacing:5.562000px;}
.ws61{word-spacing:5.610000px;}
.ws137{word-spacing:5.670000px;}
.wsaa{word-spacing:5.676000px;}
.ws19e{word-spacing:5.724000px;}
.wscb{word-spacing:5.742000px;}
.ws1ab{word-spacing:5.778000px;}
.wsda{word-spacing:5.808000px;}
.ws164{word-spacing:5.832000px;}
.ws93{word-spacing:5.874000px;}
.ws35{word-spacing:5.940000px;}
.ws14a{word-spacing:5.994000px;}
.ws55{word-spacing:6.006000px;}
.ws133{word-spacing:6.048000px;}
.ws4f{word-spacing:6.072000px;}
.ws16b{word-spacing:6.102000px;}
.ws75{word-spacing:6.138000px;}
.ws178{word-spacing:6.156000px;}
.ws10e{word-spacing:6.204000px;}
.ws125{word-spacing:6.264000px;}
.wsfd{word-spacing:6.270000px;}
.ws182{word-spacing:6.318000px;}
.wsb7{word-spacing:6.336000px;}
.ws11b{word-spacing:6.402000px;}
.ws82{word-spacing:6.468000px;}
.ws135{word-spacing:6.480000px;}
.wsdf{word-spacing:6.600000px;}
.wsc3{word-spacing:6.642000px;}
.ws7d{word-spacing:6.666000px;}
.ws48{word-spacing:6.732000px;}
.ws77{word-spacing:6.798000px;}
.ws1a5{word-spacing:6.804000px;}
.ws19a{word-spacing:6.858000px;}
.ws6b{word-spacing:6.864000px;}
.ws127{word-spacing:6.912000px;}
.wsf1{word-spacing:6.930000px;}
.ws181{word-spacing:6.966000px;}
.ws53{word-spacing:6.996000px;}
.ws126{word-spacing:7.020000px;}
.ws56{word-spacing:7.062000px;}
.ws8e{word-spacing:7.128000px;}
.wsca{word-spacing:7.194000px;}
.wsf2{word-spacing:7.260000px;}
.ws1a0{word-spacing:7.290000px;}
.wsef{word-spacing:7.326000px;}
.ws165{word-spacing:7.344000px;}
.wsd0{word-spacing:7.458000px;}
.ws47{word-spacing:7.590000px;}
.ws187{word-spacing:7.614000px;}
.ws5c{word-spacing:7.656000px;}
.wse9{word-spacing:7.722000px;}
.ws1a6{word-spacing:7.776000px;}
.wsd1{word-spacing:7.788000px;}
.ws23{word-spacing:7.830000px;}
.ws85{word-spacing:7.854000px;}
.ws1b2{word-spacing:7.884000px;}
.ws12d{word-spacing:7.938000px;}
.ws4e{word-spacing:7.986000px;}
.ws179{word-spacing:7.992000px;}
.ws188{word-spacing:8.046000px;}
.ws69{word-spacing:8.052000px;}
.ws197{word-spacing:8.100000px;}
.ws68{word-spacing:8.118000px;}
.ws124{word-spacing:8.154000px;}
.wsb8{word-spacing:8.184000px;}
.ws136{word-spacing:8.208000px;}
.ws80{word-spacing:8.250000px;}
.wse5{word-spacing:8.316000px;}
.ws107{word-spacing:8.382000px;}
.ws176{word-spacing:8.424000px;}
.wsfa{word-spacing:8.448000px;}
.ws14e{word-spacing:8.478000px;}
.wsa9{word-spacing:8.514000px;}
.ws3a{word-spacing:8.580000px;}
.ws109{word-spacing:8.646000px;}
.ws81{word-spacing:8.694000px;}
.wsab{word-spacing:8.712000px;}
.wscf{word-spacing:8.778000px;}
.wsb3{word-spacing:8.844000px;}
.ws40{word-spacing:8.910000px;}
.ws1b3{word-spacing:8.964000px;}
.ws9a{word-spacing:9.042000px;}
.ws13d{word-spacing:9.072000px;}
.ws111{word-spacing:9.108000px;}
.ws10a{word-spacing:9.174000px;}
.ws1ac{word-spacing:9.234000px;}
.wsce{word-spacing:9.240000px;}
.ws6d{word-spacing:9.306000px;}
.wse1{word-spacing:9.372000px;}
.wsc8{word-spacing:9.438000px;}
.ws151{word-spacing:9.450000px;}
.ws58{word-spacing:9.504000px;}
.ws18b{word-spacing:9.558000px;}
.ws67{word-spacing:9.570000px;}
.ws118{word-spacing:9.636000px;}
.ws7c{word-spacing:9.702000px;}
.ws10c{word-spacing:9.768000px;}
.wsfb{word-spacing:9.834000px;}
.ws9d{word-spacing:9.966000px;}
.ws18c{word-spacing:10.044000px;}
.wsd9{word-spacing:10.296000px;}
.ws9e{word-spacing:10.560000px;}
.ws4a{word-spacing:11.088000px;}
.ws116{word-spacing:11.814000px;}
.ws114{word-spacing:11.880000px;}
.ws7b{word-spacing:12.078000px;}
.ws1a9{word-spacing:12.096000px;}
.ws11e{word-spacing:12.408000px;}
.ws4b{word-spacing:12.474000px;}
.ws161{word-spacing:13.122000px;}
.ws17e{word-spacing:13.176000px;}
.ws160{word-spacing:13.770000px;}
.ws18e{word-spacing:14.310000px;}
.ws6e{word-spacing:15.510000px;}
.ws18d{word-spacing:15.714000px;}
.ws17f{word-spacing:15.768000px;}
.ws73{word-spacing:15.840000px;}
.ws64{word-spacing:15.906000px;}
.ws162{word-spacing:18.576000px;}
.ws83{word-spacing:18.612000px;}
.ws1ad{word-spacing:19.872000px;}
.ws15a{word-spacing:22.140000px;}
.ws1ae{word-spacing:25.704000px;}
.wsa2{word-spacing:28.980000px;}
.wsa4{word-spacing:31.584000px;}
.ws180{word-spacing:32.400000px;}
.ws0{word-spacing:33.650535px;}
.wsa3{word-spacing:52.710000px;}
.wsa8{word-spacing:120.036000px;}
.wsa6{word-spacing:157.584000px;}
.wsa5{word-spacing:183.540000px;}
.wsa1{word-spacing:198.576000px;}
.wsa7{word-spacing:203.952000px;}
.wsbd{word-spacing:226.590000px;}
.wsbf{word-spacing:274.638000px;}
.wsbe{word-spacing:278.418000px;}
.wsc0{word-spacing:282.198000px;}
._c{margin-left:-12.829200px;}
._a{margin-left:-11.088000px;}
._88{margin-left:-10.014000px;}
._8{margin-left:-8.974800px;}
._85{margin-left:-7.920000px;}
._9{margin-left:-6.679800px;}
._7{margin-left:-5.008200px;}
._6{margin-left:-3.650400px;}
._1{margin-left:-2.631600px;}
._0{margin-left:-1.326000px;}
._2{width:1.356600px;}
._4{width:2.862000px;}
._e{width:4.290000px;}
._5{width:5.925600px;}
._10{width:7.705800px;}
._b{width:8.976000px;}
._f{width:10.161600px;}
._86{width:12.681600px;}
._d{width:15.118200px;}
._16{width:18.846000px;}
._11{width:25.938000px;}
._21{width:31.416000px;}
._15{width:33.029400px;}
._3{width:36.369600px;}
._87{width:42.223200px;}
._4f{width:45.150000px;}
._4c{width:46.476000px;}
._34{width:49.518000px;}
._23{width:51.954000px;}
._40{width:54.768000px;}
._1d{width:58.254000px;}
._20{width:59.289600px;}
._22{width:60.396000px;}
._33{width:62.034000px;}
._41{width:63.882000px;}
._26{width:65.142000px;}
._30{width:66.570000px;}
._39{width:67.872000px;}
._1a{width:69.090000px;}
._25{width:70.686000px;}
._36{width:72.450000px;}
._24{width:73.668000px;}
._35{width:75.180000px;}
._2f{width:76.650000px;}
._27{width:78.204000px;}
._32{width:83.622000px;}
._1b{width:85.848000px;}
._2e{width:87.360000px;}
._38{width:88.410000px;}
._4a{width:91.014000px;}
._1f{width:93.576000px;}
._19{width:95.466000px;}
._37{width:97.608000px;}
._1c{width:100.464000px;}
._49{width:103.554000px;}
._45{width:105.615600px;}
._70{width:115.524000px;}
._3e{width:119.826000px;}
._1e{width:126.636000px;}
._53{width:129.486000px;}
._28{width:131.376000px;}
._77{width:132.972000px;}
._4b{width:136.752000px;}
._2b{width:140.154000px;}
._2c{width:141.708000px;}
._42{width:149.736000px;}
._2a{width:150.864000px;}
._3b{width:151.998000px;}
._2d{width:159.474000px;}
._47{width:164.934000px;}
._6e{width:167.184000px;}
._3f{width:169.032000px;}
._81{width:172.182000px;}
._4e{width:176.133600px;}
._43{width:178.374000px;}
._82{width:193.284000px;}
._7f{width:198.687600px;}
._48{width:201.180000px;}
._3c{width:203.952000px;}
._46{width:214.704000px;}
._7a{width:216.012000px;}
._3d{width:222.978000px;}
._29{width:226.044000px;}
._3a{width:232.680000px;}
._18{width:236.208000px;}
._50{width:241.668000px;}
._44{width:249.522000px;}
._65{width:255.444000px;}
._62{width:256.812000px;}
._4d{width:265.506000px;}
._6c{width:268.170000px;}
._7b{width:270.648000px;}
._79{width:274.428000px;}
._78{width:282.282000px;}
._7e{width:285.039600px;}
._31{width:286.254000px;}
._5c{width:288.204000px;}
._7c{width:291.927600px;}
._56{width:293.034000px;}
._5d{width:301.545000px;}
._5f{width:306.353400px;}
._75{width:310.338000px;}
._17{width:312.378000px;}
._5e{width:321.510000px;}
._7d{width:324.828000px;}
._67{width:331.632000px;}
._72{width:333.336000px;}
._57{width:364.587000px;}
._83{width:366.996000px;}
._59{width:371.346000px;}
._80{width:378.168000px;}
._84{width:389.994000px;}
._5b{width:400.218000px;}
._55{width:410.718000px;}
._6b{width:421.218000px;}
._61{width:424.998000px;}
._14{width:483.381000px;}
._12{width:547.008000px;}
._13{width:553.332600px;}
._52{width:620.550000px;}
._68{width:671.481000px;}
._73{width:727.786200px;}
._6f{width:738.765000px;}
._51{width:746.256000px;}
._58{width:756.027600px;}
._64{width:784.828200px;}
._69{width:811.410600px;}
._63{width:840.534000px;}
._71{width:852.396600px;}
._76{width:869.458800px;}
._74{width:877.731600px;}
._66{width:886.311000px;}
._5a{width:893.402400px;}
._6a{width:1109.492400px;}
._6d{width:1194.742200px;}
._54{width:1266.001800px;}
._60{width:1321.834200px;}
.fc3{color:rgb(67,33,78);}
.fc1{color:rgb(59,28,68);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:22.096800px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.fs9{font-size:111.318000px;}
.y0{bottom:0.000000px;}
.y40{bottom:1.204950px;}
.y41{bottom:45.774196px;}
.y1{bottom:68.124750px;}
.y43{bottom:71.212050px;}
.y44{bottom:75.040050px;}
.yca{bottom:110.560200px;}
.y22f{bottom:112.790850px;}
.y1dc{bottom:112.862850px;}
.y75{bottom:112.871700px;}
.y1ca{bottom:112.876500px;}
.y1b6{bottom:112.879350px;}
.y195{bottom:112.893000px;}
.ya0{bottom:112.980600px;}
.y12e{bottom:112.994850px;}
.y106{bottom:113.008350px;}
.yf1{bottom:113.024100px;}
.y1e9{bottom:113.033850px;}
.y167{bottom:113.038200px;}
.y1ff{bottom:113.066850px;}
.y1d1{bottom:113.069100px;}
.yc{bottom:117.205050px;}
.y122{bottom:117.590250px;}
.yc9{bottom:128.555700px;}
.y2e{bottom:130.023450px;}
.yb{bottom:131.601450px;}
.y22e{bottom:133.796850px;}
.y1db{bottom:133.867350px;}
.y74{bottom:133.876200px;}
.y1c9{bottom:133.881000px;}
.y1b5{bottom:133.883850px;}
.y194{bottom:133.897500px;}
.y9f{bottom:133.985100px;}
.y12d{bottom:133.999350px;}
.y105{bottom:134.012850px;}
.yf0{bottom:134.028600px;}
.y1e8{bottom:134.038350px;}
.y166{bottom:134.042700px;}
.y1fe{bottom:134.072850px;}
.y1d0{bottom:134.073600px;}
.y121{bottom:137.529750px;}
.ya{bottom:145.997850px;}
.yc8{bottom:146.551200px;}
.y2d{bottom:149.827950px;}
.y22d{bottom:154.802850px;}
.y1da{bottom:154.871850px;}
.y73{bottom:154.880700px;}
.y1c8{bottom:154.885500px;}
.y1b4{bottom:154.888350px;}
.y193{bottom:154.902000px;}
.y9e{bottom:154.989600px;}
.y12c{bottom:155.003850px;}
.y104{bottom:155.017350px;}
.yef{bottom:155.033100px;}
.y1e7{bottom:155.042850px;}
.y165{bottom:155.047200px;}
.y1cf{bottom:155.078100px;}
.y1fd{bottom:155.078850px;}
.y120{bottom:157.469250px;}
.y9{bottom:160.397850px;}
.y22c{bottom:175.808850px;}
.y1d9{bottom:175.876350px;}
.y72{bottom:175.885200px;}
.y1c7{bottom:175.890000px;}
.y1b3{bottom:175.892850px;}
.y192{bottom:175.906500px;}
.y9d{bottom:175.994100px;}
.y12b{bottom:176.008350px;}
.y103{bottom:176.021850px;}
.yee{bottom:176.037600px;}
.y1e6{bottom:176.047350px;}
.y164{bottom:176.051700px;}
.y11f{bottom:177.408750px;}
.y1ce{bottom:189.513600px;}
.y1fc{bottom:190.441050px;}
.y2c{bottom:190.757400px;}
.y22b{bottom:196.814850px;}
.y1d8{bottom:196.880850px;}
.y71{bottom:196.889700px;}
.y1c6{bottom:196.894500px;}
.y1b2{bottom:196.897350px;}
.yc7{bottom:196.963200px;}
.y9c{bottom:196.998600px;}
.y12a{bottom:197.012850px;}
.yed{bottom:197.042100px;}
.y1e5{bottom:197.051850px;}
.y163{bottom:197.056200px;}
.y11e{bottom:197.348250px;}
.y3c{bottom:203.456400px;}
.y2b{bottom:210.561900px;}
.y191{bottom:211.266000px;}
.y102{bottom:211.381350px;}
.y11d{bottom:217.287750px;}
.y22a{bottom:217.820850px;}
.y1d7{bottom:217.885350px;}
.y70{bottom:217.894200px;}
.y1c5{bottom:217.899000px;}
.y1b1{bottom:217.901850px;}
.yc6{bottom:217.967700px;}
.y9b{bottom:218.003100px;}
.y129{bottom:218.017350px;}
.yec{bottom:218.046600px;}
.y1e4{bottom:218.056350px;}
.y162{bottom:218.060700px;}
.y3b{bottom:221.451900px;}
.y1cd{bottom:221.811000px;}
.y2a{bottom:230.366400px;}
.y190{bottom:232.270500px;}
.y11c{bottom:237.227250px;}
.y229{bottom:238.826850px;}
.y1d6{bottom:238.889850px;}
.y6f{bottom:238.898700px;}
.y1c4{bottom:238.903500px;}
.y1b0{bottom:238.906350px;}
.yc5{bottom:238.972200px;}
.y9a{bottom:239.007600px;}
.y128{bottom:239.021850px;}
.yeb{bottom:239.051100px;}
.y1e3{bottom:239.060850px;}
.y161{bottom:239.065200px;}
.y1fb{bottom:239.078850px;}
.y3a{bottom:239.447400px;}
.y29{bottom:250.170900px;}
.y11b{bottom:257.166750px;}
.y39{bottom:257.442900px;}
.y228{bottom:259.832850px;}
.y1d5{bottom:259.894350px;}
.y6e{bottom:259.903200px;}
.y1c3{bottom:259.908000px;}
.y1af{bottom:259.910850px;}
.yc4{bottom:259.976700px;}
.y99{bottom:260.012100px;}
.y127{bottom:260.026350px;}
.yea{bottom:260.055600px;}
.y1e2{bottom:260.065350px;}
.y160{bottom:260.069700px;}
.y109{bottom:262.946550px;}
.y1fa{bottom:265.529400px;}
.y28{bottom:269.975400px;}
.y38{bottom:275.438400px;}
.y11a{bottom:277.106250px;}
.y227{bottom:280.838850px;}
.y1d4{bottom:280.898850px;}
.y6d{bottom:280.907700px;}
.y18f{bottom:280.912500px;}
.y1c2{bottom:280.915350px;}
.yc3{bottom:280.981200px;}
.y98{bottom:281.016600px;}
.y126{bottom:281.030850px;}
.ye9{bottom:281.060100px;}
.y1e1{bottom:281.069850px;}
.y15f{bottom:281.074200px;}
.y27{bottom:289.779900px;}
.y37{bottom:293.433900px;}
.y1ae{bottom:295.270350px;}
.y119{bottom:297.045750px;}
.y226{bottom:301.844850px;}
.y1d3{bottom:301.903350px;}
.y6c{bottom:301.912200px;}
.y18e{bottom:301.917000px;}
.y1c1{bottom:301.919850px;}
.yc2{bottom:301.985700px;}
.y97{bottom:302.021100px;}
.y125{bottom:302.035350px;}
.ye8{bottom:302.064600px;}
.y1f9{bottom:302.072850px;}
.y1e0{bottom:302.074350px;}
.y15e{bottom:302.078700px;}
.y26{bottom:309.584400px;}
.y36{bottom:311.429400px;}
.y1ad{bottom:316.274850px;}
.y118{bottom:316.985250px;}
.y225{bottom:322.850850px;}
.y1d2{bottom:322.907850px;}
.y6b{bottom:322.916700px;}
.y18d{bottom:322.921500px;}
.y1c0{bottom:322.924350px;}
.yc1{bottom:322.990200px;}
.y96{bottom:323.025600px;}
.y124{bottom:323.039850px;}
.ye7{bottom:323.069100px;}
.y1f8{bottom:323.072850px;}
.y1df{bottom:323.078850px;}
.y25{bottom:329.388900px;}
.y35{bottom:329.424900px;}
.y117{bottom:336.924750px;}
.y224{bottom:343.856850px;}
.y1b7{bottom:343.912350px;}
.y6a{bottom:343.921200px;}
.y18c{bottom:343.926000px;}
.y1bf{bottom:343.928850px;}
.yc0{bottom:343.994700px;}
.y95{bottom:344.030100px;}
.y123{bottom:344.044350px;}
.ye6{bottom:344.073600px;}
.y1f7{bottom:344.078850px;}
.y34{bottom:347.420400px;}
.y24{bottom:349.193400px;}
.y15d{bottom:351.068250px;}
.y116{bottom:356.864250px;}
.y1de{bottom:358.440900px;}
.y223{bottom:364.862850px;}
.y1ac{bottom:364.916850px;}
.y69{bottom:364.925700px;}
.y18b{bottom:364.930500px;}
.y1be{bottom:364.933350px;}
.ybf{bottom:364.999200px;}
.y94{bottom:365.034600px;}
.ye5{bottom:365.078100px;}
.y33{bottom:365.415900px;}
.y23{bottom:368.997900px;}
.y1f6{bottom:370.529400px;}
.y15c{bottom:371.438250px;}
.y115{bottom:376.803750px;}
.y222{bottom:385.868850px;}
.y1ab{bottom:385.921350px;}
.y68{bottom:385.930200px;}
.y18a{bottom:385.935000px;}
.y1bd{bottom:385.937850px;}
.ybe{bottom:386.003700px;}
.y22{bottom:388.802400px;}
.y15b{bottom:391.808250px;}
.y147{bottom:392.355600px;}
.y114{bottom:396.743250px;}
.y93{bottom:399.470100px;}
.ye4{bottom:399.513600px;}
.y32{bottom:400.421400px;}
.y221{bottom:406.874850px;}
.y1aa{bottom:406.925850px;}
.y67{bottom:406.934700px;}
.y189{bottom:406.939500px;}
.y1bc{bottom:406.942350px;}
.ybd{bottom:407.008200px;}
.y1f5{bottom:407.066850px;}
.y21{bottom:408.606900px;}
.y15a{bottom:412.178250px;}
.y146{bottom:413.576100px;}
.y113{bottom:416.682750px;}
.y31{bottom:418.421400px;}
.y220{bottom:427.880850px;}
.y1a9{bottom:427.930350px;}
.y66{bottom:427.939200px;}
.y188{bottom:427.944000px;}
.y1bb{bottom:427.946850px;}
.ybc{bottom:428.012700px;}
.y1f4{bottom:428.072850px;}
.y20{bottom:428.411400px;}
.y92{bottom:431.760600px;}
.ye3{bottom:431.811150px;}
.y159{bottom:432.548250px;}
.y145{bottom:434.796600px;}
.y30{bottom:436.421400px;}
.y112{bottom:436.622250px;}
.y1f{bottom:448.215900px;}
.y21f{bottom:448.886850px;}
.y1a8{bottom:448.934850px;}
.y65{bottom:448.943700px;}
.y187{bottom:448.948500px;}
.y1ba{bottom:448.951350px;}
.y1f3{bottom:449.078850px;}
.y158{bottom:452.918250px;}
.y2f{bottom:454.414950px;}
.y144{bottom:456.017100px;}
.y111{bottom:456.561750px;}
.y1cc{bottom:463.306350px;}
.y1e{bottom:468.020400px;}
.y21e{bottom:469.892850px;}
.y1a7{bottom:469.939350px;}
.y64{bottom:469.948200px;}
.y186{bottom:469.953000px;}
.y1b9{bottom:469.955850px;}
.ybb{bottom:470.005200px;}
.y157{bottom:473.288250px;}
.y1f2{bottom:475.529400px;}
.y110{bottom:476.501250px;}
.y143{bottom:477.237600px;}
.y1d{bottom:487.824900px;}
.y21d{bottom:490.898850px;}
.y1a6{bottom:490.943850px;}
.y63{bottom:490.952700px;}
.y185{bottom:490.957500px;}
.ye2{bottom:490.960350px;}
.yba{bottom:491.009700px;}
.y91{bottom:491.028600px;}
.y156{bottom:493.658250px;}
.y10f{bottom:496.745250px;}
.y142{bottom:498.458100px;}
.y1c{bottom:507.629400px;}
.y10e{bottom:510.248250px;}
.y21c{bottom:511.904850px;}
.y1a5{bottom:511.948350px;}
.y62{bottom:511.957200px;}
.y184{bottom:511.962000px;}
.ye1{bottom:511.964850px;}
.y101{bottom:512.011350px;}
.y90{bottom:512.033100px;}
.y1f1{bottom:512.078850px;}
.y155{bottom:514.028250px;}
.y141{bottom:519.678600px;}
.y1b{bottom:527.433900px;}
.y21b{bottom:532.910850px;}
.y1a4{bottom:532.952850px;}
.y61{bottom:532.961700px;}
.y183{bottom:532.966500px;}
.ye0{bottom:532.969350px;}
.yb9{bottom:533.002200px;}
.y100{bottom:533.015850px;}
.y8f{bottom:533.037600px;}
.y154{bottom:534.398250px;}
.y1f0{bottom:538.529400px;}
.y10d{bottom:539.333550px;}
.y140{bottom:540.899100px;}
.y1a{bottom:547.238400px;}
.y21a{bottom:553.916850px;}
.y1a3{bottom:553.957350px;}
.y60{bottom:553.966200px;}
.y182{bottom:553.971000px;}
.ydf{bottom:553.973850px;}
.yb8{bottom:554.006700px;}
.yff{bottom:554.020350px;}
.y8e{bottom:554.042100px;}
.y153{bottom:554.768250px;}
.y10c{bottom:559.138050px;}
.y13f{bottom:562.119600px;}
.y19{bottom:567.042900px;}
.y219{bottom:574.922850px;}
.y1a2{bottom:574.961850px;}
.y5f{bottom:574.970700px;}
.y181{bottom:574.975500px;}
.yde{bottom:574.978350px;}
.yb7{bottom:575.011200px;}
.yfe{bottom:575.024850px;}
.y8d{bottom:575.046600px;}
.y1ef{bottom:575.078850px;}
.y152{bottom:575.138250px;}
.y10b{bottom:578.942550px;}
.y13e{bottom:583.340100px;}
.y18{bottom:586.847400px;}
.y151{bottom:595.508250px;}
.y218{bottom:595.928850px;}
.y1a1{bottom:595.966350px;}
.y5e{bottom:595.975200px;}
.y180{bottom:595.980000px;}
.ydd{bottom:595.982850px;}
.yb6{bottom:596.015700px;}
.yfd{bottom:596.029350px;}
.y8c{bottom:596.051100px;}
.y1ee{bottom:601.529400px;}
.y13d{bottom:604.560600px;}
.y17{bottom:606.651900px;}
.y150{bottom:616.172250px;}
.y217{bottom:616.934850px;}
.y1a0{bottom:616.970850px;}
.y5d{bottom:616.979700px;}
.y17f{bottom:616.984500px;}
.ydc{bottom:616.987350px;}
.yb5{bottom:617.020200px;}
.yfc{bottom:617.033850px;}
.y8b{bottom:617.055600px;}
.y14e{bottom:618.755250px;}
.y14d{bottom:625.506750px;}
.y13c{bottom:625.781100px;}
.y16{bottom:626.456400px;}
.y10a{bottom:629.886600px;}
.y14f{bottom:634.841250px;}
.y216{bottom:637.940850px;}
.y19f{bottom:637.975350px;}
.y5c{bottom:637.984200px;}
.y17e{bottom:637.989000px;}
.ydb{bottom:637.991850px;}
.yb4{bottom:638.024700px;}
.yfb{bottom:638.038350px;}
.y8a{bottom:638.060100px;}
.y1ed{bottom:638.078850px;}
.y15{bottom:646.260900px;}
.y13b{bottom:647.001600px;}
.y215{bottom:658.946850px;}
.y19e{bottom:658.979850px;}
.y5b{bottom:658.988700px;}
.y17d{bottom:658.993500px;}
.yda{bottom:658.996350px;}
.yfa{bottom:659.042850px;}
.y89{bottom:659.064600px;}
.y14c{bottom:663.925800px;}
.y1ec{bottom:664.937100px;}
.y14{bottom:666.065400px;}
.y13a{bottom:668.222100px;}
.y214{bottom:679.952850px;}
.y19d{bottom:679.984350px;}
.y5a{bottom:679.993200px;}
.y17c{bottom:679.998000px;}
.yd9{bottom:680.000850px;}
.yb3{bottom:680.017200px;}
.yf9{bottom:680.047350px;}
.y88{bottom:680.069100px;}
.y14b{bottom:683.730300px;}
.y13{bottom:685.869900px;}
.y139{bottom:689.442600px;}
.y1dd{bottom:694.355850px;}
.y1eb{bottom:694.441050px;}
.y213{bottom:700.958850px;}
.y19c{bottom:700.988850px;}
.y59{bottom:700.997700px;}
.y17b{bottom:701.002500px;}
.yd8{bottom:701.005350px;}
.yb2{bottom:701.021700px;}
.yf8{bottom:701.051850px;}
.y87{bottom:701.073600px;}
.y14a{bottom:703.534800px;}
.y12{bottom:705.674400px;}
.y138{bottom:710.663100px;}
.y212{bottom:721.964850px;}
.y19b{bottom:721.993350px;}
.y58{bottom:722.002200px;}
.y17a{bottom:722.007000px;}
.yd7{bottom:722.009850px;}
.yf7{bottom:722.056350px;}
.y86{bottom:722.078100px;}
.y11{bottom:725.478900px;}
.y137{bottom:731.883600px;}
.yb1{bottom:736.381200px;}
.y211{bottom:742.970850px;}
.y19a{bottom:742.997850px;}
.y57{bottom:743.006700px;}
.y179{bottom:743.011500px;}
.yd6{bottom:743.014350px;}
.yf6{bottom:743.060850px;}
.y10{bottom:745.283400px;}
.y136{bottom:753.104100px;}
.y149{bottom:754.053600px;}
.y85{bottom:756.513600px;}
.y210{bottom:763.976850px;}
.y199{bottom:764.002350px;}
.y56{bottom:764.011200px;}
.y178{bottom:764.016000px;}
.yd5{bottom:764.018850px;}
.yf5{bottom:764.065350px;}
.yf{bottom:765.087900px;}
.y148{bottom:773.858100px;}
.y135{bottom:774.324600px;}
.y20f{bottom:784.982850px;}
.y198{bottom:785.006850px;}
.y55{bottom:785.015700px;}
.y177{bottom:785.020500px;}
.yb0{bottom:785.023200px;}
.yd4{bottom:785.023350px;}
.yf4{bottom:785.069850px;}
.y84{bottom:788.811000px;}
.y134{bottom:795.839100px;}
.ye{bottom:796.185300px;}
.y20e{bottom:805.988850px;}
.y197{bottom:806.011350px;}
.y54{bottom:806.020200px;}
.y176{bottom:806.025000px;}
.yaf{bottom:806.027700px;}
.yd3{bottom:806.027850px;}
.yf3{bottom:806.074350px;}
.y133{bottom:824.915400px;}
.y20d{bottom:826.994850px;}
.y196{bottom:827.015850px;}
.y53{bottom:827.024700px;}
.y175{bottom:827.029500px;}
.yae{bottom:827.032200px;}
.yd2{bottom:827.032350px;}
.yf2{bottom:827.078850px;}
.y1b8{bottom:841.387350px;}
.y132{bottom:844.719900px;}
.y20c{bottom:848.000850px;}
.y83{bottom:848.020350px;}
.y52{bottom:848.029200px;}
.y174{bottom:848.034000px;}
.yad{bottom:848.036700px;}
.yd1{bottom:848.036850px;}
.y1ea{bottom:862.441050px;}
.y131{bottom:864.524400px;}
.y108{bottom:866.857050px;}
.y20b{bottom:869.006850px;}
.y82{bottom:869.024850px;}
.y51{bottom:869.033700px;}
.y173{bottom:869.038500px;}
.yac{bottom:869.041200px;}
.yd0{bottom:869.041350px;}
.y8{bottom:875.466750px;}
.y130{bottom:884.328900px;}
.y107{bottom:886.661550px;}
.y20a{bottom:890.012850px;}
.y81{bottom:890.029350px;}
.y50{bottom:890.038200px;}
.y172{bottom:890.043000px;}
.yab{bottom:890.045700px;}
.ycf{bottom:890.045850px;}
.y7{bottom:893.466750px;}
.y12f{bottom:904.133400px;}
.y209{bottom:911.018850px;}
.y80{bottom:911.033850px;}
.y4f{bottom:911.042700px;}
.y171{bottom:911.047500px;}
.yaa{bottom:911.050200px;}
.yce{bottom:911.050350px;}
.y6{bottom:911.466750px;}
.y208{bottom:932.024850px;}
.y7f{bottom:932.038350px;}
.y4e{bottom:932.047200px;}
.y170{bottom:932.052000px;}
.ya9{bottom:932.054700px;}
.ycd{bottom:932.054850px;}
.y5{bottom:946.474800px;}
.y207{bottom:953.030850px;}
.y7e{bottom:953.042850px;}
.y4d{bottom:953.051700px;}
.y16f{bottom:953.056500px;}
.ya8{bottom:953.059200px;}
.ycc{bottom:953.059350px;}
.y206{bottom:974.036850px;}
.y7d{bottom:974.047350px;}
.y4c{bottom:974.056200px;}
.y16e{bottom:974.061000px;}
.ya7{bottom:974.063700px;}
.y4{bottom:983.288550px;}
.ycb{bottom:988.418850px;}
.y205{bottom:995.042850px;}
.y7c{bottom:995.051850px;}
.y4b{bottom:995.060700px;}
.y16d{bottom:995.065500px;}
.ya6{bottom:995.068200px;}
.y204{bottom:1016.048850px;}
.y7b{bottom:1016.056350px;}
.y4a{bottom:1016.065200px;}
.y16c{bottom:1016.070000px;}
.ya5{bottom:1016.072700px;}
.y3{bottom:1016.285550px;}
.y203{bottom:1037.054850px;}
.y7a{bottom:1037.060850px;}
.y49{bottom:1037.069700px;}
.y16b{bottom:1037.074500px;}
.ya4{bottom:1037.077200px;}
.y2{bottom:1049.282550px;}
.y202{bottom:1058.060850px;}
.y79{bottom:1058.065350px;}
.y48{bottom:1058.074200px;}
.y16a{bottom:1058.079000px;}
.ya3{bottom:1058.081700px;}
.y201{bottom:1079.066850px;}
.y78{bottom:1079.069850px;}
.y47{bottom:1079.078700px;}
.y169{bottom:1079.083500px;}
.y1cb{bottom:1089.742500px;}
.y200{bottom:1100.072850px;}
.ya2{bottom:1100.074200px;}
.y77{bottom:1100.074350px;}
.yd{bottom:1109.815500px;}
.y168{bottom:1110.747000px;}
.y46{bottom:1111.570800px;}
.ya1{bottom:1121.078700px;}
.y76{bottom:1121.078850px;}
.y3f{bottom:1135.732500px;}
.y42{bottom:1152.015600px;}
.y3e{bottom:1159.189500px;}
.y3d{bottom:1178.689500px;}
.y45{bottom:1178.692050px;}
.he{height:16.788389px;}
.h16{height:30.030000px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h18{height:35.868000px;}
.h10{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:41.053711px;}
.hc{height:43.057617px;}
.hb{height:43.321289px;}
.ha{height:46.116000px;}
.h19{height:46.140000px;}
.h9{height:47.343750px;}
.h14{height:49.500000px;}
.hd{height:50.566500px;}
.h4{height:50.836500px;}
.h13{height:52.078125px;}
.h12{height:56.364000px;}
.h11{height:56.812500px;}
.h15{height:56.826000px;}
.h17{height:57.036000px;}
.h3{height:77.545898px;}
.hf{height:80.825130px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:185.884500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.063850px;}
.xd{left:108.289650px;}
.xa{left:111.091350px;}
.x11{left:112.799850px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x12{left:166.927800px;}
.x4{left:300.189000px;}
.x17{left:304.444200px;}
.xc{left:317.200500px;}
.xe{left:334.208400px;}
.x13{left:352.313700px;}
.x3{left:402.741300px;}
.x14{left:449.827200px;}
.x10{left:525.542400px;}
.x16{left:529.879200px;}
.x15{left:535.769700px;}
.xf{left:538.296900px;}
.x9{left:651.929850px;}
.x8{left:672.545850px;}
.x1{left:801.157500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:24.005333pt;}
.ls1c{letter-spacing:-11.029333pt;}
.ls1a{letter-spacing:-10.560000pt;}
.ls18{letter-spacing:-1.232000pt;}
.ls7{letter-spacing:-1.173333pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.880000pt;}
.ls20{letter-spacing:-0.768000pt;}
.ls9{letter-spacing:-0.762667pt;}
.ls12{letter-spacing:-0.746667pt;}
.ls11{letter-spacing:-0.704000pt;}
.ls24{letter-spacing:-0.672000pt;}
.ls13{letter-spacing:-0.645333pt;}
.ls4{letter-spacing:-0.614400pt;}
.ls15{letter-spacing:-0.586667pt;}
.ls22{letter-spacing:-0.576000pt;}
.ls19{letter-spacing:-0.528000pt;}
.ls17{letter-spacing:-0.469333pt;}
.ls3{letter-spacing:-0.453333pt;}
.ls21{letter-spacing:-0.432000pt;}
.ls28{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.352000pt;}
.ls1e{letter-spacing:-0.293333pt;}
.ls27{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.234667pt;}
.ls1d{letter-spacing:-0.058667pt;}
.ls1f{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.234667pt;}
.ls1{letter-spacing:0.288000pt;}
.ls1b{letter-spacing:0.352000pt;}
.ls23{letter-spacing:0.432000pt;}
.ls25{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.938667pt;}
.ls0{letter-spacing:38.383435pt;}
.lse{letter-spacing:75.450667pt;}
.ls10{letter-spacing:116.256000pt;}
.lsa{letter-spacing:123.834667pt;}
.lsb{letter-spacing:125.216000pt;}
.lsf{letter-spacing:132.794667pt;}
.lsc{letter-spacing:134.176000pt;}
.lsd{letter-spacing:193.536000pt;}
.ws2b{word-spacing:-15.936000pt;}
.ws2c{word-spacing:-15.605333pt;}
.wsdc{word-spacing:-14.666667pt;}
.wsc7{word-spacing:-14.608000pt;}
.wsf8{word-spacing:-14.490667pt;}
.wsdb{word-spacing:-14.432000pt;}
.ws101{word-spacing:-14.197333pt;}
.wsec{word-spacing:-14.021333pt;}
.ws5{word-spacing:-13.280000pt;}
.ws190{word-spacing:-12.576000pt;}
.ws6{word-spacing:-12.288000pt;}
.ws122{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.992000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws3{word-spacing:-9.685333pt;}
.ws4{word-spacing:-8.793600pt;}
.ws71{word-spacing:-8.550667pt;}
.ws2{word-spacing:-8.549333pt;}
.ws1{word-spacing:-8.482261pt;}
.ws198{word-spacing:-6.816000pt;}
.ws84{word-spacing:-5.280000pt;}
.ws95{word-spacing:-4.224000pt;}
.wsfc{word-spacing:-3.989333pt;}
.ws120{word-spacing:-3.696000pt;}
.wscd{word-spacing:-3.578667pt;}
.ws104{word-spacing:-3.461333pt;}
.ws145{word-spacing:-3.456000pt;}
.ws1aa{word-spacing:-3.408000pt;}
.ws32{word-spacing:-3.285333pt;}
.ws102{word-spacing:-3.226667pt;}
.wsed{word-spacing:-3.050667pt;}
.ws5e{word-spacing:-2.874667pt;}
.wsd6{word-spacing:-2.816000pt;}
.ws36{word-spacing:-2.757333pt;}
.ws6f{word-spacing:-2.698667pt;}
.ws189{word-spacing:-2.688000pt;}
.ws117{word-spacing:-2.640000pt;}
.wsd4{word-spacing:-2.581333pt;}
.ws78{word-spacing:-2.522667pt;}
.wseb{word-spacing:-2.464000pt;}
.ws19b{word-spacing:-2.448000pt;}
.wsd8{word-spacing:-2.405333pt;}
.ws172{word-spacing:-2.400000pt;}
.ws147{word-spacing:-2.352000pt;}
.ws8f{word-spacing:-2.346667pt;}
.ws169{word-spacing:-2.304000pt;}
.ws112{word-spacing:-2.288000pt;}
.ws14b{word-spacing:-2.256000pt;}
.wse0{word-spacing:-2.229333pt;}
.ws1a2{word-spacing:-2.208000pt;}
.ws3b{word-spacing:-2.170667pt;}
.ws17d{word-spacing:-2.160000pt;}
.ws121{word-spacing:-2.112000pt;}
.ws1f{word-spacing:-2.064000pt;}
.ws33{word-spacing:-2.053333pt;}
.ws196{word-spacing:-2.016000pt;}
.ws106{word-spacing:-1.994667pt;}
.ws166{word-spacing:-1.968000pt;}
.ws183{word-spacing:-1.920000pt;}
.ws5d{word-spacing:-1.877333pt;}
.ws16f{word-spacing:-1.872000pt;}
.ws170{word-spacing:-1.824000pt;}
.ws8b{word-spacing:-1.818667pt;}
.ws1b0{word-spacing:-1.776000pt;}
.wsb2{word-spacing:-1.760000pt;}
.ws13c{word-spacing:-1.728000pt;}
.ws99{word-spacing:-1.701333pt;}
.ws12f{word-spacing:-1.680000pt;}
.ws2d{word-spacing:-1.642667pt;}
.ws21{word-spacing:-1.632000pt;}
.wsc4{word-spacing:-1.584000pt;}
.ws20{word-spacing:-1.536000pt;}
.ws8a{word-spacing:-1.525333pt;}
.ws1e{word-spacing:-1.488000pt;}
.ws50{word-spacing:-1.466667pt;}
.ws27{word-spacing:-1.440000pt;}
.ws79{word-spacing:-1.408000pt;}
.ws195{word-spacing:-1.392000pt;}
.ws37{word-spacing:-1.349333pt;}
.ws17b{word-spacing:-1.344000pt;}
.ws191{word-spacing:-1.296000pt;}
.ws2f{word-spacing:-1.290667pt;}
.ws29{word-spacing:-1.280000pt;}
.ws123{word-spacing:-1.248000pt;}
.ws108{word-spacing:-1.232000pt;}
.ws13a{word-spacing:-1.200000pt;}
.ws34{word-spacing:-1.173333pt;}
.wsaf{word-spacing:-1.157333pt;}
.ws2a{word-spacing:-1.152000pt;}
.ws91{word-spacing:-1.114667pt;}
.ws25{word-spacing:-1.104000pt;}
.ws31{word-spacing:-1.056000pt;}
.ws148{word-spacing:-1.008000pt;}
.wsd7{word-spacing:-0.997333pt;}
.ws1af{word-spacing:-0.960000pt;}
.ws4d{word-spacing:-0.938667pt;}
.wsb0{word-spacing:-0.933333pt;}
.ws1d{word-spacing:-0.912000pt;}
.wsf3{word-spacing:-0.880000pt;}
.ws12b{word-spacing:-0.864000pt;}
.ws3d{word-spacing:-0.821333pt;}
.ws144{word-spacing:-0.816000pt;}
.ws13f{word-spacing:-0.768000pt;}
.ws89{word-spacing:-0.762667pt;}
.ws28{word-spacing:-0.720000pt;}
.ws105{word-spacing:-0.704000pt;}
.ws19f{word-spacing:-0.672000pt;}
.wsee{word-spacing:-0.645333pt;}
.wsa0{word-spacing:-0.624000pt;}
.ws74{word-spacing:-0.586667pt;}
.ws193{word-spacing:-0.576000pt;}
.wscc{word-spacing:-0.528000pt;}
.ws171{word-spacing:-0.480000pt;}
.ws92{word-spacing:-0.469333pt;}
.ws16{word-spacing:-0.432000pt;}
.ws87{word-spacing:-0.410667pt;}
.ws8d{word-spacing:-0.352000pt;}
.ws158{word-spacing:-0.336000pt;}
.ws11a{word-spacing:-0.293333pt;}
.ws13{word-spacing:-0.288000pt;}
.ws157{word-spacing:-0.240000pt;}
.ws66{word-spacing:-0.234667pt;}
.wsc{word-spacing:-0.192000pt;}
.wsd2{word-spacing:-0.176000pt;}
.wsc1{word-spacing:-0.144000pt;}
.ws39{word-spacing:-0.117333pt;}
.ws9{word-spacing:-0.098949pt;}
.ws156{word-spacing:-0.096000pt;}
.ws86{word-spacing:-0.058667pt;}
.ws130{word-spacing:-0.048000pt;}
.wsa{word-spacing:0.000000pt;}
.ws16d{word-spacing:0.048000pt;}
.ws11f{word-spacing:0.058667pt;}
.ws26{word-spacing:0.096000pt;}
.ws3c{word-spacing:0.117333pt;}
.wsc2{word-spacing:0.144000pt;}
.ws90{word-spacing:0.176000pt;}
.ws146{word-spacing:0.192000pt;}
.wsd5{word-spacing:0.234667pt;}
.ws150{word-spacing:0.240000pt;}
.wsbb{word-spacing:0.288000pt;}
.ws10d{word-spacing:0.293333pt;}
.ws131{word-spacing:0.336000pt;}
.wsb1{word-spacing:0.352000pt;}
.ws22{word-spacing:0.384000pt;}
.ws46{word-spacing:0.410667pt;}
.ws15d{word-spacing:0.432000pt;}
.wsb{word-spacing:0.453333pt;}
.wsb4{word-spacing:0.469333pt;}
.ws9f{word-spacing:0.480000pt;}
.ws52{word-spacing:0.528000pt;}
.ws174{word-spacing:0.576000pt;}
.ws30{word-spacing:0.586667pt;}
.wsd{word-spacing:0.614400pt;}
.ws16a{word-spacing:0.624000pt;}
.ws59{word-spacing:0.645333pt;}
.ws152{word-spacing:0.672000pt;}
.ws41{word-spacing:0.704000pt;}
.ws138{word-spacing:0.720000pt;}
.wsae{word-spacing:0.746667pt;}
.ws119{word-spacing:0.762667pt;}
.ws19c{word-spacing:0.768000pt;}
.ws14c{word-spacing:0.816000pt;}
.ws43{word-spacing:0.821333pt;}
.ws13b{word-spacing:0.864000pt;}
.wse3{word-spacing:0.880000pt;}
.ws13e{word-spacing:0.912000pt;}
.ws11c{word-spacing:0.938667pt;}
.wsad{word-spacing:0.960000pt;}
.ws96{word-spacing:0.997333pt;}
.ws1a{word-spacing:1.008000pt;}
.wse7{word-spacing:1.056000pt;}
.ws1b{word-spacing:1.104000pt;}
.ws7f{word-spacing:1.114667pt;}
.ws15{word-spacing:1.152000pt;}
.ws6a{word-spacing:1.173333pt;}
.ws159{word-spacing:1.200000pt;}
.wsc9{word-spacing:1.232000pt;}
.ws129{word-spacing:1.248000pt;}
.ws5f{word-spacing:1.290667pt;}
.ws18{word-spacing:1.344000pt;}
.ws113{word-spacing:1.349333pt;}
.ws16c{word-spacing:1.392000pt;}
.wse6{word-spacing:1.408000pt;}
.ws142{word-spacing:1.440000pt;}
.ws51{word-spacing:1.466667pt;}
.ws12{word-spacing:1.488000pt;}
.wsf0{word-spacing:1.525333pt;}
.ws1c{word-spacing:1.536000pt;}
.ws98{word-spacing:1.584000pt;}
.ws128{word-spacing:1.632000pt;}
.wse2{word-spacing:1.642667pt;}
.ws12e{word-spacing:1.680000pt;}
.ws8c{word-spacing:1.701333pt;}
.ws103{word-spacing:1.760000pt;}
.ws14f{word-spacing:1.776000pt;}
.ws44{word-spacing:1.818667pt;}
.ws132{word-spacing:1.824000pt;}
.ws140{word-spacing:1.872000pt;}
.wse8{word-spacing:1.877333pt;}
.ws15c{word-spacing:1.920000pt;}
.ws4c{word-spacing:1.936000pt;}
.wsbc{word-spacing:1.968000pt;}
.wsde{word-spacing:1.994667pt;}
.ws185{word-spacing:2.016000pt;}
.wsd3{word-spacing:2.053333pt;}
.ws5a{word-spacing:2.112000pt;}
.wsba{word-spacing:2.160000pt;}
.ws49{word-spacing:2.170667pt;}
.ws16e{word-spacing:2.208000pt;}
.ws62{word-spacing:2.229333pt;}
.ws14{word-spacing:2.256000pt;}
.ws54{word-spacing:2.288000pt;}
.ws24{word-spacing:2.304000pt;}
.ws76{word-spacing:2.346667pt;}
.ws186{word-spacing:2.352000pt;}
.ws149{word-spacing:2.400000pt;}
.ws5b{word-spacing:2.405333pt;}
.ws134{word-spacing:2.448000pt;}
.wsff{word-spacing:2.464000pt;}
.ws1a4{word-spacing:2.496000pt;}
.ws7a{word-spacing:2.522667pt;}
.ws139{word-spacing:2.544000pt;}
.ws42{word-spacing:2.581333pt;}
.ws194{word-spacing:2.592000pt;}
.ws3e{word-spacing:2.640000pt;}
.ws12a{word-spacing:2.688000pt;}
.ws63{word-spacing:2.698667pt;}
.ws1a1{word-spacing:2.736000pt;}
.ws60{word-spacing:2.757333pt;}
.wsac{word-spacing:2.784000pt;}
.ws2e{word-spacing:2.816000pt;}
.ws177{word-spacing:2.832000pt;}
.ws9b{word-spacing:2.874667pt;}
.ws15e{word-spacing:2.880000pt;}
.wse{word-spacing:2.928000pt;}
.ws7e{word-spacing:2.933333pt;}
.ws57{word-spacing:2.992000pt;}
.ws19d{word-spacing:3.024000pt;}
.ws94{word-spacing:3.050667pt;}
.ws19{word-spacing:3.072000pt;}
.wsc5{word-spacing:3.109333pt;}
.ws18a{word-spacing:3.120000pt;}
.wsb6{word-spacing:3.168000pt;}
.ws14d{word-spacing:3.216000pt;}
.ws115{word-spacing:3.226667pt;}
.ws184{word-spacing:3.264000pt;}
.ws10b{word-spacing:3.285333pt;}
.wsc6{word-spacing:3.344000pt;}
.ws17a{word-spacing:3.360000pt;}
.wsf4{word-spacing:3.402667pt;}
.ws141{word-spacing:3.408000pt;}
.ws153{word-spacing:3.456000pt;}
.ws38{word-spacing:3.461333pt;}
.ws163{word-spacing:3.504000pt;}
.wsdd{word-spacing:3.520000pt;}
.ws70{word-spacing:3.578667pt;}
.ws167{word-spacing:3.600000pt;}
.wsea{word-spacing:3.637333pt;}
.ws175{word-spacing:3.648000pt;}
.ws88{word-spacing:3.696000pt;}
.ws155{word-spacing:3.744000pt;}
.wsf9{word-spacing:3.754667pt;}
.ws18f{word-spacing:3.792000pt;}
.ws65{word-spacing:3.813333pt;}
.ws199{word-spacing:3.840000pt;}
.ws3f{word-spacing:3.872000pt;}
.ws11{word-spacing:3.888000pt;}
.wsfe{word-spacing:3.930667pt;}
.ws173{word-spacing:3.936000pt;}
.ws168{word-spacing:3.984000pt;}
.wsb9{word-spacing:4.032000pt;}
.ws6c{word-spacing:4.048000pt;}
.ws1a7{word-spacing:4.080000pt;}
.ws9c{word-spacing:4.106667pt;}
.wsf7{word-spacing:4.165333pt;}
.ws97{word-spacing:4.224000pt;}
.ws12c{word-spacing:4.272000pt;}
.ws11d{word-spacing:4.282667pt;}
.ws45{word-spacing:4.341333pt;}
.ws17{word-spacing:4.368000pt;}
.ws143{word-spacing:4.416000pt;}
.wsf5{word-spacing:4.458667pt;}
.ws1a8{word-spacing:4.464000pt;}
.wsf{word-spacing:4.512000pt;}
.wsb5{word-spacing:4.517333pt;}
.ws10{word-spacing:4.560000pt;}
.ws100{word-spacing:4.576000pt;}
.ws110{word-spacing:4.634667pt;}
.ws15f{word-spacing:4.656000pt;}
.ws72{word-spacing:4.693333pt;}
.ws192{word-spacing:4.704000pt;}
.ws1b1{word-spacing:4.752000pt;}
.ws17c{word-spacing:4.800000pt;}
.wse4{word-spacing:4.810667pt;}
.ws154{word-spacing:4.848000pt;}
.ws10f{word-spacing:4.869333pt;}
.ws1a3{word-spacing:4.896000pt;}
.wsf6{word-spacing:4.928000pt;}
.ws15b{word-spacing:4.944000pt;}
.ws61{word-spacing:4.986667pt;}
.ws137{word-spacing:5.040000pt;}
.wsaa{word-spacing:5.045333pt;}
.ws19e{word-spacing:5.088000pt;}
.wscb{word-spacing:5.104000pt;}
.ws1ab{word-spacing:5.136000pt;}
.wsda{word-spacing:5.162667pt;}
.ws164{word-spacing:5.184000pt;}
.ws93{word-spacing:5.221333pt;}
.ws35{word-spacing:5.280000pt;}
.ws14a{word-spacing:5.328000pt;}
.ws55{word-spacing:5.338667pt;}
.ws133{word-spacing:5.376000pt;}
.ws4f{word-spacing:5.397333pt;}
.ws16b{word-spacing:5.424000pt;}
.ws75{word-spacing:5.456000pt;}
.ws178{word-spacing:5.472000pt;}
.ws10e{word-spacing:5.514667pt;}
.ws125{word-spacing:5.568000pt;}
.wsfd{word-spacing:5.573333pt;}
.ws182{word-spacing:5.616000pt;}
.wsb7{word-spacing:5.632000pt;}
.ws11b{word-spacing:5.690667pt;}
.ws82{word-spacing:5.749333pt;}
.ws135{word-spacing:5.760000pt;}
.wsdf{word-spacing:5.866667pt;}
.wsc3{word-spacing:5.904000pt;}
.ws7d{word-spacing:5.925333pt;}
.ws48{word-spacing:5.984000pt;}
.ws77{word-spacing:6.042667pt;}
.ws1a5{word-spacing:6.048000pt;}
.ws19a{word-spacing:6.096000pt;}
.ws6b{word-spacing:6.101333pt;}
.ws127{word-spacing:6.144000pt;}
.wsf1{word-spacing:6.160000pt;}
.ws181{word-spacing:6.192000pt;}
.ws53{word-spacing:6.218667pt;}
.ws126{word-spacing:6.240000pt;}
.ws56{word-spacing:6.277333pt;}
.ws8e{word-spacing:6.336000pt;}
.wsca{word-spacing:6.394667pt;}
.wsf2{word-spacing:6.453333pt;}
.ws1a0{word-spacing:6.480000pt;}
.wsef{word-spacing:6.512000pt;}
.ws165{word-spacing:6.528000pt;}
.wsd0{word-spacing:6.629333pt;}
.ws47{word-spacing:6.746667pt;}
.ws187{word-spacing:6.768000pt;}
.ws5c{word-spacing:6.805333pt;}
.wse9{word-spacing:6.864000pt;}
.ws1a6{word-spacing:6.912000pt;}
.wsd1{word-spacing:6.922667pt;}
.ws23{word-spacing:6.960000pt;}
.ws85{word-spacing:6.981333pt;}
.ws1b2{word-spacing:7.008000pt;}
.ws12d{word-spacing:7.056000pt;}
.ws4e{word-spacing:7.098667pt;}
.ws179{word-spacing:7.104000pt;}
.ws188{word-spacing:7.152000pt;}
.ws69{word-spacing:7.157333pt;}
.ws197{word-spacing:7.200000pt;}
.ws68{word-spacing:7.216000pt;}
.ws124{word-spacing:7.248000pt;}
.wsb8{word-spacing:7.274667pt;}
.ws136{word-spacing:7.296000pt;}
.ws80{word-spacing:7.333333pt;}
.wse5{word-spacing:7.392000pt;}
.ws107{word-spacing:7.450667pt;}
.ws176{word-spacing:7.488000pt;}
.wsfa{word-spacing:7.509333pt;}
.ws14e{word-spacing:7.536000pt;}
.wsa9{word-spacing:7.568000pt;}
.ws3a{word-spacing:7.626667pt;}
.ws109{word-spacing:7.685333pt;}
.ws81{word-spacing:7.728000pt;}
.wsab{word-spacing:7.744000pt;}
.wscf{word-spacing:7.802667pt;}
.wsb3{word-spacing:7.861333pt;}
.ws40{word-spacing:7.920000pt;}
.ws1b3{word-spacing:7.968000pt;}
.ws9a{word-spacing:8.037333pt;}
.ws13d{word-spacing:8.064000pt;}
.ws111{word-spacing:8.096000pt;}
.ws10a{word-spacing:8.154667pt;}
.ws1ac{word-spacing:8.208000pt;}
.wsce{word-spacing:8.213333pt;}
.ws6d{word-spacing:8.272000pt;}
.wse1{word-spacing:8.330667pt;}
.wsc8{word-spacing:8.389333pt;}
.ws151{word-spacing:8.400000pt;}
.ws58{word-spacing:8.448000pt;}
.ws18b{word-spacing:8.496000pt;}
.ws67{word-spacing:8.506667pt;}
.ws118{word-spacing:8.565333pt;}
.ws7c{word-spacing:8.624000pt;}
.ws10c{word-spacing:8.682667pt;}
.wsfb{word-spacing:8.741333pt;}
.ws9d{word-spacing:8.858667pt;}
.ws18c{word-spacing:8.928000pt;}
.wsd9{word-spacing:9.152000pt;}
.ws9e{word-spacing:9.386667pt;}
.ws4a{word-spacing:9.856000pt;}
.ws116{word-spacing:10.501333pt;}
.ws114{word-spacing:10.560000pt;}
.ws7b{word-spacing:10.736000pt;}
.ws1a9{word-spacing:10.752000pt;}
.ws11e{word-spacing:11.029333pt;}
.ws4b{word-spacing:11.088000pt;}
.ws161{word-spacing:11.664000pt;}
.ws17e{word-spacing:11.712000pt;}
.ws160{word-spacing:12.240000pt;}
.ws18e{word-spacing:12.720000pt;}
.ws6e{word-spacing:13.786667pt;}
.ws18d{word-spacing:13.968000pt;}
.ws17f{word-spacing:14.016000pt;}
.ws73{word-spacing:14.080000pt;}
.ws64{word-spacing:14.138667pt;}
.ws162{word-spacing:16.512000pt;}
.ws83{word-spacing:16.544000pt;}
.ws1ad{word-spacing:17.664000pt;}
.ws15a{word-spacing:19.680000pt;}
.ws1ae{word-spacing:22.848000pt;}
.wsa2{word-spacing:25.760000pt;}
.wsa4{word-spacing:28.074667pt;}
.ws180{word-spacing:28.800000pt;}
.ws0{word-spacing:29.911587pt;}
.wsa3{word-spacing:46.853333pt;}
.wsa8{word-spacing:106.698667pt;}
.wsa6{word-spacing:140.074667pt;}
.wsa5{word-spacing:163.146667pt;}
.wsa1{word-spacing:176.512000pt;}
.wsa7{word-spacing:181.290667pt;}
.wsbd{word-spacing:201.413333pt;}
.wsbf{word-spacing:244.122667pt;}
.wsbe{word-spacing:247.482667pt;}
.wsc0{word-spacing:250.842667pt;}
._c{margin-left:-11.403733pt;}
._a{margin-left:-9.856000pt;}
._88{margin-left:-8.901333pt;}
._8{margin-left:-7.977600pt;}
._85{margin-left:-7.040000pt;}
._9{margin-left:-5.937600pt;}
._7{margin-left:-4.451733pt;}
._6{margin-left:-3.244800pt;}
._1{margin-left:-2.339200pt;}
._0{margin-left:-1.178667pt;}
._2{width:1.205867pt;}
._4{width:2.544000pt;}
._e{width:3.813333pt;}
._5{width:5.267200pt;}
._10{width:6.849600pt;}
._b{width:7.978667pt;}
._f{width:9.032533pt;}
._86{width:11.272533pt;}
._d{width:13.438400pt;}
._16{width:16.752000pt;}
._11{width:23.056000pt;}
._21{width:27.925333pt;}
._15{width:29.359467pt;}
._3{width:32.328533pt;}
._87{width:37.531733pt;}
._4f{width:40.133333pt;}
._4c{width:41.312000pt;}
._34{width:44.016000pt;}
._23{width:46.181333pt;}
._40{width:48.682667pt;}
._1d{width:51.781333pt;}
._20{width:52.701867pt;}
._22{width:53.685333pt;}
._33{width:55.141333pt;}
._41{width:56.784000pt;}
._26{width:57.904000pt;}
._30{width:59.173333pt;}
._39{width:60.330667pt;}
._1a{width:61.413333pt;}
._25{width:62.832000pt;}
._36{width:64.400000pt;}
._24{width:65.482667pt;}
._35{width:66.826667pt;}
._2f{width:68.133333pt;}
._27{width:69.514667pt;}
._32{width:74.330667pt;}
._1b{width:76.309333pt;}
._2e{width:77.653333pt;}
._38{width:78.586667pt;}
._4a{width:80.901333pt;}
._1f{width:83.178667pt;}
._19{width:84.858667pt;}
._37{width:86.762667pt;}
._1c{width:89.301333pt;}
._49{width:92.048000pt;}
._45{width:93.880533pt;}
._70{width:102.688000pt;}
._3e{width:106.512000pt;}
._1e{width:112.565333pt;}
._53{width:115.098667pt;}
._28{width:116.778667pt;}
._77{width:118.197333pt;}
._4b{width:121.557333pt;}
._2b{width:124.581333pt;}
._2c{width:125.962667pt;}
._42{width:133.098667pt;}
._2a{width:134.101333pt;}
._3b{width:135.109333pt;}
._2d{width:141.754667pt;}
._47{width:146.608000pt;}
._6e{width:148.608000pt;}
._3f{width:150.250667pt;}
._81{width:153.050667pt;}
._4e{width:156.563200pt;}
._43{width:158.554667pt;}
._82{width:171.808000pt;}
._7f{width:176.611200pt;}
._48{width:178.826667pt;}
._3c{width:181.290667pt;}
._46{width:190.848000pt;}
._7a{width:192.010667pt;}
._3d{width:198.202667pt;}
._29{width:200.928000pt;}
._3a{width:206.826667pt;}
._18{width:209.962667pt;}
._50{width:214.816000pt;}
._44{width:221.797333pt;}
._65{width:227.061333pt;}
._62{width:228.277333pt;}
._4d{width:236.005333pt;}
._6c{width:238.373333pt;}
._7b{width:240.576000pt;}
._79{width:243.936000pt;}
._78{width:250.917333pt;}
._7e{width:253.368533pt;}
._31{width:254.448000pt;}
._5c{width:256.181333pt;}
._7c{width:259.491200pt;}
._56{width:260.474667pt;}
._5d{width:268.040000pt;}
._5f{width:272.314133pt;}
._75{width:275.856000pt;}
._17{width:277.669333pt;}
._5e{width:285.786667pt;}
._7d{width:288.736000pt;}
._67{width:294.784000pt;}
._72{width:296.298667pt;}
._57{width:324.077333pt;}
._83{width:326.218667pt;}
._59{width:330.085333pt;}
._80{width:336.149333pt;}
._84{width:346.661333pt;}
._5b{width:355.749333pt;}
._55{width:365.082667pt;}
._6b{width:374.416000pt;}
._61{width:377.776000pt;}
._14{width:429.672000pt;}
._12{width:486.229333pt;}
._13{width:491.851200pt;}
._52{width:551.600000pt;}
._68{width:596.872000pt;}
._73{width:646.921067pt;}
._6f{width:656.680000pt;}
._51{width:663.338667pt;}
._58{width:672.024533pt;}
._64{width:697.625067pt;}
._69{width:721.253867pt;}
._63{width:747.141333pt;}
._71{width:757.685867pt;}
._76{width:772.852267pt;}
._74{width:780.205867pt;}
._66{width:787.832000pt;}
._5a{width:794.135467pt;}
._6a{width:986.215467pt;}
._6d{width:1061.993067pt;}
._54{width:1125.334933pt;}
._60{width:1174.963733pt;}
.fs8{font-size:19.641600pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.fs9{font-size:98.949333pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:1.071067pt;}
.y41{bottom:40.688174pt;}
.y1{bottom:60.555333pt;}
.y43{bottom:63.299600pt;}
.y44{bottom:66.702267pt;}
.yca{bottom:98.275733pt;}
.y22f{bottom:100.258533pt;}
.y1dc{bottom:100.322533pt;}
.y75{bottom:100.330400pt;}
.y1ca{bottom:100.334667pt;}
.y1b6{bottom:100.337200pt;}
.y195{bottom:100.349333pt;}
.ya0{bottom:100.427200pt;}
.y12e{bottom:100.439867pt;}
.y106{bottom:100.451867pt;}
.yf1{bottom:100.465867pt;}
.y1e9{bottom:100.474533pt;}
.y167{bottom:100.478400pt;}
.y1ff{bottom:100.503867pt;}
.y1d1{bottom:100.505867pt;}
.yc{bottom:104.182267pt;}
.y122{bottom:104.524667pt;}
.yc9{bottom:114.271733pt;}
.y2e{bottom:115.576400pt;}
.yb{bottom:116.979067pt;}
.y22e{bottom:118.930533pt;}
.y1db{bottom:118.993200pt;}
.y74{bottom:119.001067pt;}
.y1c9{bottom:119.005333pt;}
.y1b5{bottom:119.007867pt;}
.y194{bottom:119.020000pt;}
.y9f{bottom:119.097867pt;}
.y12d{bottom:119.110533pt;}
.y105{bottom:119.122533pt;}
.yf0{bottom:119.136533pt;}
.y1e8{bottom:119.145200pt;}
.y166{bottom:119.149067pt;}
.y1fe{bottom:119.175867pt;}
.y1d0{bottom:119.176533pt;}
.y121{bottom:122.248667pt;}
.ya{bottom:129.775867pt;}
.yc8{bottom:130.267733pt;}
.y2d{bottom:133.180400pt;}
.y22d{bottom:137.602533pt;}
.y1da{bottom:137.663867pt;}
.y73{bottom:137.671733pt;}
.y1c8{bottom:137.676000pt;}
.y1b4{bottom:137.678533pt;}
.y193{bottom:137.690667pt;}
.y9e{bottom:137.768533pt;}
.y12c{bottom:137.781200pt;}
.y104{bottom:137.793200pt;}
.yef{bottom:137.807200pt;}
.y1e7{bottom:137.815867pt;}
.y165{bottom:137.819733pt;}
.y1cf{bottom:137.847200pt;}
.y1fd{bottom:137.847867pt;}
.y120{bottom:139.972667pt;}
.y9{bottom:142.575867pt;}
.y22c{bottom:156.274533pt;}
.y1d9{bottom:156.334533pt;}
.y72{bottom:156.342400pt;}
.y1c7{bottom:156.346667pt;}
.y1b3{bottom:156.349200pt;}
.y192{bottom:156.361333pt;}
.y9d{bottom:156.439200pt;}
.y12b{bottom:156.451867pt;}
.y103{bottom:156.463867pt;}
.yee{bottom:156.477867pt;}
.y1e6{bottom:156.486533pt;}
.y164{bottom:156.490400pt;}
.y11f{bottom:157.696667pt;}
.y1ce{bottom:168.456533pt;}
.y1fc{bottom:169.280933pt;}
.y2c{bottom:169.562133pt;}
.y22b{bottom:174.946533pt;}
.y1d8{bottom:175.005200pt;}
.y71{bottom:175.013067pt;}
.y1c6{bottom:175.017333pt;}
.y1b2{bottom:175.019867pt;}
.yc7{bottom:175.078400pt;}
.y9c{bottom:175.109867pt;}
.y12a{bottom:175.122533pt;}
.yed{bottom:175.148533pt;}
.y1e5{bottom:175.157200pt;}
.y163{bottom:175.161067pt;}
.y11e{bottom:175.420667pt;}
.y3c{bottom:180.850133pt;}
.y2b{bottom:187.166133pt;}
.y191{bottom:187.792000pt;}
.y102{bottom:187.894533pt;}
.y11d{bottom:193.144667pt;}
.y22a{bottom:193.618533pt;}
.y1d7{bottom:193.675867pt;}
.y70{bottom:193.683733pt;}
.y1c5{bottom:193.688000pt;}
.y1b1{bottom:193.690533pt;}
.yc6{bottom:193.749067pt;}
.y9b{bottom:193.780533pt;}
.y129{bottom:193.793200pt;}
.yec{bottom:193.819200pt;}
.y1e4{bottom:193.827867pt;}
.y162{bottom:193.831733pt;}
.y3b{bottom:196.846133pt;}
.y1cd{bottom:197.165333pt;}
.y2a{bottom:204.770133pt;}
.y190{bottom:206.462667pt;}
.y11c{bottom:210.868667pt;}
.y229{bottom:212.290533pt;}
.y1d6{bottom:212.346533pt;}
.y6f{bottom:212.354400pt;}
.y1c4{bottom:212.358667pt;}
.y1b0{bottom:212.361200pt;}
.yc5{bottom:212.419733pt;}
.y9a{bottom:212.451200pt;}
.y128{bottom:212.463867pt;}
.yeb{bottom:212.489867pt;}
.y1e3{bottom:212.498533pt;}
.y161{bottom:212.502400pt;}
.y1fb{bottom:212.514533pt;}
.y3a{bottom:212.842133pt;}
.y29{bottom:222.374133pt;}
.y11b{bottom:228.592667pt;}
.y39{bottom:228.838133pt;}
.y228{bottom:230.962533pt;}
.y1d5{bottom:231.017200pt;}
.y6e{bottom:231.025067pt;}
.y1c3{bottom:231.029333pt;}
.y1af{bottom:231.031867pt;}
.yc4{bottom:231.090400pt;}
.y99{bottom:231.121867pt;}
.y127{bottom:231.134533pt;}
.yea{bottom:231.160533pt;}
.y1e2{bottom:231.169200pt;}
.y160{bottom:231.173067pt;}
.y109{bottom:233.730267pt;}
.y1fa{bottom:236.026133pt;}
.y28{bottom:239.978133pt;}
.y38{bottom:244.834133pt;}
.y11a{bottom:246.316667pt;}
.y227{bottom:249.634533pt;}
.y1d4{bottom:249.687867pt;}
.y6d{bottom:249.695733pt;}
.y18f{bottom:249.700000pt;}
.y1c2{bottom:249.702533pt;}
.yc3{bottom:249.761067pt;}
.y98{bottom:249.792533pt;}
.y126{bottom:249.805200pt;}
.ye9{bottom:249.831200pt;}
.y1e1{bottom:249.839867pt;}
.y15f{bottom:249.843733pt;}
.y27{bottom:257.582133pt;}
.y37{bottom:260.830133pt;}
.y1ae{bottom:262.462533pt;}
.y119{bottom:264.040667pt;}
.y226{bottom:268.306533pt;}
.y1d3{bottom:268.358533pt;}
.y6c{bottom:268.366400pt;}
.y18e{bottom:268.370667pt;}
.y1c1{bottom:268.373200pt;}
.yc2{bottom:268.431733pt;}
.y97{bottom:268.463200pt;}
.y125{bottom:268.475867pt;}
.ye8{bottom:268.501867pt;}
.y1f9{bottom:268.509200pt;}
.y1e0{bottom:268.510533pt;}
.y15e{bottom:268.514400pt;}
.y26{bottom:275.186133pt;}
.y36{bottom:276.826133pt;}
.y1ad{bottom:281.133200pt;}
.y118{bottom:281.764667pt;}
.y225{bottom:286.978533pt;}
.y1d2{bottom:287.029200pt;}
.y6b{bottom:287.037067pt;}
.y18d{bottom:287.041333pt;}
.y1c0{bottom:287.043867pt;}
.yc1{bottom:287.102400pt;}
.y96{bottom:287.133867pt;}
.y124{bottom:287.146533pt;}
.ye7{bottom:287.172533pt;}
.y1f8{bottom:287.175867pt;}
.y1df{bottom:287.181200pt;}
.y25{bottom:292.790133pt;}
.y35{bottom:292.822133pt;}
.y117{bottom:299.488667pt;}
.y224{bottom:305.650533pt;}
.y1b7{bottom:305.699867pt;}
.y6a{bottom:305.707733pt;}
.y18c{bottom:305.712000pt;}
.y1bf{bottom:305.714533pt;}
.yc0{bottom:305.773067pt;}
.y95{bottom:305.804533pt;}
.y123{bottom:305.817200pt;}
.ye6{bottom:305.843200pt;}
.y1f7{bottom:305.847867pt;}
.y34{bottom:308.818133pt;}
.y24{bottom:310.394133pt;}
.y15d{bottom:312.060667pt;}
.y116{bottom:317.212667pt;}
.y1de{bottom:318.614133pt;}
.y223{bottom:324.322533pt;}
.y1ac{bottom:324.370533pt;}
.y69{bottom:324.378400pt;}
.y18b{bottom:324.382667pt;}
.y1be{bottom:324.385200pt;}
.ybf{bottom:324.443733pt;}
.y94{bottom:324.475200pt;}
.ye5{bottom:324.513867pt;}
.y33{bottom:324.814133pt;}
.y23{bottom:327.998133pt;}
.y1f6{bottom:329.359467pt;}
.y15c{bottom:330.167333pt;}
.y115{bottom:334.936667pt;}
.y222{bottom:342.994533pt;}
.y1ab{bottom:343.041200pt;}
.y68{bottom:343.049067pt;}
.y18a{bottom:343.053333pt;}
.y1bd{bottom:343.055867pt;}
.ybe{bottom:343.114400pt;}
.y22{bottom:345.602133pt;}
.y15b{bottom:348.274000pt;}
.y147{bottom:348.760533pt;}
.y114{bottom:352.660667pt;}
.y93{bottom:355.084533pt;}
.ye4{bottom:355.123200pt;}
.y32{bottom:355.930133pt;}
.y221{bottom:361.666533pt;}
.y1aa{bottom:361.711867pt;}
.y67{bottom:361.719733pt;}
.y189{bottom:361.724000pt;}
.y1bc{bottom:361.726533pt;}
.ybd{bottom:361.785067pt;}
.y1f5{bottom:361.837200pt;}
.y21{bottom:363.206133pt;}
.y15a{bottom:366.380667pt;}
.y146{bottom:367.623200pt;}
.y113{bottom:370.384667pt;}
.y31{bottom:371.930133pt;}
.y220{bottom:380.338533pt;}
.y1a9{bottom:380.382533pt;}
.y66{bottom:380.390400pt;}
.y188{bottom:380.394667pt;}
.y1bb{bottom:380.397200pt;}
.ybc{bottom:380.455733pt;}
.y1f4{bottom:380.509200pt;}
.y20{bottom:380.810133pt;}
.y92{bottom:383.787200pt;}
.ye3{bottom:383.832133pt;}
.y159{bottom:384.487333pt;}
.y145{bottom:386.485867pt;}
.y30{bottom:387.930133pt;}
.y112{bottom:388.108667pt;}
.y1f{bottom:398.414133pt;}
.y21f{bottom:399.010533pt;}
.y1a8{bottom:399.053200pt;}
.y65{bottom:399.061067pt;}
.y187{bottom:399.065333pt;}
.y1ba{bottom:399.067867pt;}
.y1f3{bottom:399.181200pt;}
.y158{bottom:402.594000pt;}
.y2f{bottom:403.924400pt;}
.y144{bottom:405.348533pt;}
.y111{bottom:405.832667pt;}
.y1cc{bottom:411.827867pt;}
.y1e{bottom:416.018133pt;}
.y21e{bottom:417.682533pt;}
.y1a7{bottom:417.723867pt;}
.y64{bottom:417.731733pt;}
.y186{bottom:417.736000pt;}
.y1b9{bottom:417.738533pt;}
.ybb{bottom:417.782400pt;}
.y157{bottom:420.700667pt;}
.y1f2{bottom:422.692800pt;}
.y110{bottom:423.556667pt;}
.y143{bottom:424.211200pt;}
.y1d{bottom:433.622133pt;}
.y21d{bottom:436.354533pt;}
.y1a6{bottom:436.394533pt;}
.y63{bottom:436.402400pt;}
.y185{bottom:436.406667pt;}
.ye2{bottom:436.409200pt;}
.yba{bottom:436.453067pt;}
.y91{bottom:436.469867pt;}
.y156{bottom:438.807333pt;}
.y10f{bottom:441.551333pt;}
.y142{bottom:443.073867pt;}
.y1c{bottom:451.226133pt;}
.y10e{bottom:453.554000pt;}
.y21c{bottom:455.026533pt;}
.y1a5{bottom:455.065200pt;}
.y62{bottom:455.073067pt;}
.y184{bottom:455.077333pt;}
.ye1{bottom:455.079867pt;}
.y101{bottom:455.121200pt;}
.y90{bottom:455.140533pt;}
.y1f1{bottom:455.181200pt;}
.y155{bottom:456.914000pt;}
.y141{bottom:461.936533pt;}
.y1b{bottom:468.830133pt;}
.y21b{bottom:473.698533pt;}
.y1a4{bottom:473.735867pt;}
.y61{bottom:473.743733pt;}
.y183{bottom:473.748000pt;}
.ye0{bottom:473.750533pt;}
.yb9{bottom:473.779733pt;}
.y100{bottom:473.791867pt;}
.y8f{bottom:473.811200pt;}
.y154{bottom:475.020667pt;}
.y1f0{bottom:478.692800pt;}
.y10d{bottom:479.407600pt;}
.y140{bottom:480.799200pt;}
.y1a{bottom:486.434133pt;}
.y21a{bottom:492.370533pt;}
.y1a3{bottom:492.406533pt;}
.y60{bottom:492.414400pt;}
.y182{bottom:492.418667pt;}
.ydf{bottom:492.421200pt;}
.yb8{bottom:492.450400pt;}
.yff{bottom:492.462533pt;}
.y8e{bottom:492.481867pt;}
.y153{bottom:493.127333pt;}
.y10c{bottom:497.011600pt;}
.y13f{bottom:499.661867pt;}
.y19{bottom:504.038133pt;}
.y219{bottom:511.042533pt;}
.y1a2{bottom:511.077200pt;}
.y5f{bottom:511.085067pt;}
.y181{bottom:511.089333pt;}
.yde{bottom:511.091867pt;}
.yb7{bottom:511.121067pt;}
.yfe{bottom:511.133200pt;}
.y8d{bottom:511.152533pt;}
.y1ef{bottom:511.181200pt;}
.y152{bottom:511.234000pt;}
.y10b{bottom:514.615600pt;}
.y13e{bottom:518.524533pt;}
.y18{bottom:521.642133pt;}
.y151{bottom:529.340667pt;}
.y218{bottom:529.714533pt;}
.y1a1{bottom:529.747867pt;}
.y5e{bottom:529.755733pt;}
.y180{bottom:529.760000pt;}
.ydd{bottom:529.762533pt;}
.yb6{bottom:529.791733pt;}
.yfd{bottom:529.803867pt;}
.y8c{bottom:529.823200pt;}
.y1ee{bottom:534.692800pt;}
.y13d{bottom:537.387200pt;}
.y17{bottom:539.246133pt;}
.y150{bottom:547.708667pt;}
.y217{bottom:548.386533pt;}
.y1a0{bottom:548.418533pt;}
.y5d{bottom:548.426400pt;}
.y17f{bottom:548.430667pt;}
.ydc{bottom:548.433200pt;}
.yb5{bottom:548.462400pt;}
.yfc{bottom:548.474533pt;}
.y8b{bottom:548.493867pt;}
.y14e{bottom:550.004667pt;}
.y14d{bottom:556.006000pt;}
.y13c{bottom:556.249867pt;}
.y16{bottom:556.850133pt;}
.y10a{bottom:559.899200pt;}
.y14f{bottom:564.303333pt;}
.y216{bottom:567.058533pt;}
.y19f{bottom:567.089200pt;}
.y5c{bottom:567.097067pt;}
.y17e{bottom:567.101333pt;}
.ydb{bottom:567.103867pt;}
.yb4{bottom:567.133067pt;}
.yfb{bottom:567.145200pt;}
.y8a{bottom:567.164533pt;}
.y1ed{bottom:567.181200pt;}
.y15{bottom:574.454133pt;}
.y13b{bottom:575.112533pt;}
.y215{bottom:585.730533pt;}
.y19e{bottom:585.759867pt;}
.y5b{bottom:585.767733pt;}
.y17d{bottom:585.772000pt;}
.yda{bottom:585.774533pt;}
.yfa{bottom:585.815867pt;}
.y89{bottom:585.835200pt;}
.y14c{bottom:590.156267pt;}
.y1ec{bottom:591.055200pt;}
.y14{bottom:592.058133pt;}
.y13a{bottom:593.975200pt;}
.y214{bottom:604.402533pt;}
.y19d{bottom:604.430533pt;}
.y5a{bottom:604.438400pt;}
.y17c{bottom:604.442667pt;}
.yd9{bottom:604.445200pt;}
.yb3{bottom:604.459733pt;}
.yf9{bottom:604.486533pt;}
.y88{bottom:604.505867pt;}
.y14b{bottom:607.760267pt;}
.y13{bottom:609.662133pt;}
.y139{bottom:612.837867pt;}
.y1dd{bottom:617.205200pt;}
.y1eb{bottom:617.280933pt;}
.y213{bottom:623.074533pt;}
.y19c{bottom:623.101200pt;}
.y59{bottom:623.109067pt;}
.y17b{bottom:623.113333pt;}
.yd8{bottom:623.115867pt;}
.yb2{bottom:623.130400pt;}
.yf8{bottom:623.157200pt;}
.y87{bottom:623.176533pt;}
.y14a{bottom:625.364267pt;}
.y12{bottom:627.266133pt;}
.y138{bottom:631.700533pt;}
.y212{bottom:641.746533pt;}
.y19b{bottom:641.771867pt;}
.y58{bottom:641.779733pt;}
.y17a{bottom:641.784000pt;}
.yd7{bottom:641.786533pt;}
.yf7{bottom:641.827867pt;}
.y86{bottom:641.847200pt;}
.y11{bottom:644.870133pt;}
.y137{bottom:650.563200pt;}
.yb1{bottom:654.561067pt;}
.y211{bottom:660.418533pt;}
.y19a{bottom:660.442533pt;}
.y57{bottom:660.450400pt;}
.y179{bottom:660.454667pt;}
.yd6{bottom:660.457200pt;}
.yf6{bottom:660.498533pt;}
.y10{bottom:662.474133pt;}
.y136{bottom:669.425867pt;}
.y149{bottom:670.269867pt;}
.y85{bottom:672.456533pt;}
.y210{bottom:679.090533pt;}
.y199{bottom:679.113200pt;}
.y56{bottom:679.121067pt;}
.y178{bottom:679.125333pt;}
.yd5{bottom:679.127867pt;}
.yf5{bottom:679.169200pt;}
.yf{bottom:680.078133pt;}
.y148{bottom:687.873867pt;}
.y135{bottom:688.288533pt;}
.y20f{bottom:697.762533pt;}
.y198{bottom:697.783867pt;}
.y55{bottom:697.791733pt;}
.y177{bottom:697.796000pt;}
.yb0{bottom:697.798400pt;}
.yd4{bottom:697.798533pt;}
.yf4{bottom:697.839867pt;}
.y84{bottom:701.165333pt;}
.y134{bottom:707.412533pt;}
.ye{bottom:707.720267pt;}
.y20e{bottom:716.434533pt;}
.y197{bottom:716.454533pt;}
.y54{bottom:716.462400pt;}
.y176{bottom:716.466667pt;}
.yaf{bottom:716.469067pt;}
.yd3{bottom:716.469200pt;}
.yf3{bottom:716.510533pt;}
.y133{bottom:733.258133pt;}
.y20d{bottom:735.106533pt;}
.y196{bottom:735.125200pt;}
.y53{bottom:735.133067pt;}
.y175{bottom:735.137333pt;}
.yae{bottom:735.139733pt;}
.yd2{bottom:735.139867pt;}
.yf2{bottom:735.181200pt;}
.y1b8{bottom:747.899867pt;}
.y132{bottom:750.862133pt;}
.y20c{bottom:753.778533pt;}
.y83{bottom:753.795867pt;}
.y52{bottom:753.803733pt;}
.y174{bottom:753.808000pt;}
.yad{bottom:753.810400pt;}
.yd1{bottom:753.810533pt;}
.y1ea{bottom:766.614267pt;}
.y131{bottom:768.466133pt;}
.y108{bottom:770.539600pt;}
.y20b{bottom:772.450533pt;}
.y82{bottom:772.466533pt;}
.y51{bottom:772.474400pt;}
.y173{bottom:772.478667pt;}
.yac{bottom:772.481067pt;}
.yd0{bottom:772.481200pt;}
.y8{bottom:778.192667pt;}
.y130{bottom:786.070133pt;}
.y107{bottom:788.143600pt;}
.y20a{bottom:791.122533pt;}
.y81{bottom:791.137200pt;}
.y50{bottom:791.145067pt;}
.y172{bottom:791.149333pt;}
.yab{bottom:791.151733pt;}
.ycf{bottom:791.151867pt;}
.y7{bottom:794.192667pt;}
.y12f{bottom:803.674133pt;}
.y209{bottom:809.794533pt;}
.y80{bottom:809.807867pt;}
.y4f{bottom:809.815733pt;}
.y171{bottom:809.820000pt;}
.yaa{bottom:809.822400pt;}
.yce{bottom:809.822533pt;}
.y6{bottom:810.192667pt;}
.y208{bottom:828.466533pt;}
.y7f{bottom:828.478533pt;}
.y4e{bottom:828.486400pt;}
.y170{bottom:828.490667pt;}
.ya9{bottom:828.493067pt;}
.ycd{bottom:828.493200pt;}
.y5{bottom:841.310933pt;}
.y207{bottom:847.138533pt;}
.y7e{bottom:847.149200pt;}
.y4d{bottom:847.157067pt;}
.y16f{bottom:847.161333pt;}
.ya8{bottom:847.163733pt;}
.ycc{bottom:847.163867pt;}
.y206{bottom:865.810533pt;}
.y7d{bottom:865.819867pt;}
.y4c{bottom:865.827733pt;}
.y16e{bottom:865.832000pt;}
.ya7{bottom:865.834400pt;}
.y4{bottom:874.034267pt;}
.ycb{bottom:878.594533pt;}
.y205{bottom:884.482533pt;}
.y7c{bottom:884.490533pt;}
.y4b{bottom:884.498400pt;}
.y16d{bottom:884.502667pt;}
.ya6{bottom:884.505067pt;}
.y204{bottom:903.154533pt;}
.y7b{bottom:903.161200pt;}
.y4a{bottom:903.169067pt;}
.y16c{bottom:903.173333pt;}
.ya5{bottom:903.175733pt;}
.y3{bottom:903.364933pt;}
.y203{bottom:921.826533pt;}
.y7a{bottom:921.831867pt;}
.y49{bottom:921.839733pt;}
.y16b{bottom:921.844000pt;}
.ya4{bottom:921.846400pt;}
.y2{bottom:932.695600pt;}
.y202{bottom:940.498533pt;}
.y79{bottom:940.502533pt;}
.y48{bottom:940.510400pt;}
.y16a{bottom:940.514667pt;}
.ya3{bottom:940.517067pt;}
.y201{bottom:959.170533pt;}
.y78{bottom:959.173200pt;}
.y47{bottom:959.181067pt;}
.y169{bottom:959.185333pt;}
.y1cb{bottom:968.660000pt;}
.y200{bottom:977.842533pt;}
.ya2{bottom:977.843733pt;}
.y77{bottom:977.843867pt;}
.yd{bottom:986.502667pt;}
.y168{bottom:987.330667pt;}
.y46{bottom:988.062933pt;}
.ya1{bottom:996.514400pt;}
.y76{bottom:996.514533pt;}
.y3f{bottom:1009.540000pt;}
.y42{bottom:1024.013867pt;}
.y3e{bottom:1030.390667pt;}
.y3d{bottom:1047.724000pt;}
.y45{bottom:1047.726267pt;}
.he{height:14.923012pt;}
.h16{height:26.693333pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h18{height:31.882667pt;}
.h10{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:36.492188pt;}
.hc{height:38.273438pt;}
.hb{height:38.507812pt;}
.ha{height:40.992000pt;}
.h19{height:41.013333pt;}
.h9{height:42.083333pt;}
.h14{height:44.000000pt;}
.hd{height:44.948000pt;}
.h4{height:45.188000pt;}
.h13{height:46.291667pt;}
.h12{height:50.101333pt;}
.h11{height:50.500000pt;}
.h15{height:50.512000pt;}
.h17{height:50.698667pt;}
.h3{height:68.929688pt;}
.hf{height:71.844560pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:165.230667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.167867pt;}
.xd{left:96.257467pt;}
.xa{left:98.747867pt;}
.x11{left:100.266533pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x12{left:148.380267pt;}
.x4{left:266.834667pt;}
.x17{left:270.617067pt;}
.xc{left:281.956000pt;}
.xe{left:297.074133pt;}
.x13{left:313.167733pt;}
.x3{left:357.992267pt;}
.x14{left:399.846400pt;}
.x10{left:467.148800pt;}
.x16{left:471.003733pt;}
.x15{left:476.239733pt;}
.xf{left:478.486133pt;}
.x9{left:579.493200pt;}
.x8{left:597.818533pt;}
.x1{left:712.140000pt;}
}




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